From 35bd86171993ac0a2978a97c87da085df72db359 Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Wed, 24 Dec 2014 14:58:39 -0500 Subject: [PATCH 001/533] added code style fixes to conform with PEP8 --- twitter/__init__.py | 6 +- twitter/_file_cache.py | 279 +++++++++++++++++++++-------------------- 2 files changed, 144 insertions(+), 141 deletions(-) diff --git a/twitter/__init__.py b/twitter/__init__.py index 7d2ff824..edc0d6a8 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -16,7 +16,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -'''A library that provides a Python interface to the Twitter API''' +"""A library that provides a Python interface to the Twitter API""" __author__ = 'python-twitter@googlegroups.com' __version__ = '2.3' @@ -24,9 +24,9 @@ import json as simplejson try: - from hashlib import md5 + from hashlib import md5 except ImportError: - from md5 import md5 + from md5 import md5 from _file_cache import _FileCache from error import TwitterError diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index 278f2d8b..b0ee787a 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -4,147 +4,150 @@ import re import tempfile + class _FileCacheError(Exception): - '''Base exception class for FileCache related errors''' + """Base exception class for FileCache related errors""" + class _FileCache(object): + DEPTH = 3 + + def __init__(self, root_directory=None): + self._InitializeRootDirectory(root_directory) + + def Get(self, key): + path = self._GetPath(key) + if os.path.exists(path): + return open(path).read() + else: + return None + + def Set(self, key, data): + path = self._GetPath(key) + directory = os.path.dirname(path) + if not os.path.exists(directory): + os.makedirs(directory) + if not os.path.isdir(directory): + raise _FileCacheError('%s exists but is not a directory' % directory) + temp_fd, temp_path = tempfile.mkstemp() + temp_fp = os.fdopen(temp_fd, 'w') + temp_fp.write(data) + temp_fp.close() + if not path.startswith(self._root_directory): + raise _FileCacheError('%s does not appear to live under %s' % + (path, self._root_directory)) + if os.path.exists(path): + os.remove(path) + os.rename(temp_path, path) + + def Remove(self, key): + path = self._GetPath(key) + if not path.startswith(self._root_directory): + raise _FileCacheError('%s does not appear to live under %s' % + (path, self._root_directory )) + if os.path.exists(path): + os.remove(path) + + def GetCachedTime(self, key): + path = self._GetPath(key) + if os.path.exists(path): + return os.path.getmtime(path) + else: + return None + + def _GetUsername(self): + """Attempt to find the username in a cross-platform fashion.""" + try: + return os.getenv('USER') or \ + os.getenv('LOGNAME') or \ + os.getenv('USERNAME') or \ + os.getlogin() or \ + 'nobody' + except (AttributeError, IOError, OSError), e: + return 'nobody' + + def _GetTmpCachePath(self): + username = self._GetUsername() + cache_directory = 'python.cache_' + username + return os.path.join(tempfile.gettempdir(), cache_directory) + + def _InitializeRootDirectory(self, root_directory): + if not root_directory: + root_directory = self._GetTmpCachePath() + root_directory = os.path.abspath(root_directory) + if not os.path.exists(root_directory): + os.mkdir(root_directory) + if not os.path.isdir(root_directory): + raise _FileCacheError('%s exists but is not a directory' % + root_directory) + self._root_directory = root_directory + + def _GetPath(self, key): + try: + hashed_key = md5(key).hexdigest() + except TypeError: + hashed_key = md5.new(key).hexdigest() + + return os.path.join(self._root_directory, + self._GetPrefix(hashed_key), + hashed_key) + + def _GetPrefix(self, hashed_key): + return os.path.sep.join(hashed_key[0:_FileCache.DEPTH]) - DEPTH = 3 - - def __init__(self,root_directory=None): - self._InitializeRootDirectory(root_directory) - - def Get(self, key): - path = self._GetPath(key) - if os.path.exists(path): - return open(path).read() - else: - return None - - def Set(self, key, data): - path = self._GetPath(key) - directory = os.path.dirname(path) - if not os.path.exists(directory): - os.makedirs(directory) - if not os.path.isdir(directory): - raise _FileCacheError('%s exists but is not a directory' % directory) - temp_fd, temp_path = tempfile.mkstemp() - temp_fp = os.fdopen(temp_fd, 'w') - temp_fp.write(data) - temp_fp.close() - if not path.startswith(self._root_directory): - raise _FileCacheError('%s does not appear to live under %s' % - (path, self._root_directory)) - if os.path.exists(path): - os.remove(path) - os.rename(temp_path, path) - - def Remove(self, key): - path = self._GetPath(key) - if not path.startswith(self._root_directory): - raise _FileCacheError('%s does not appear to live under %s' % - (path, self._root_directory )) - if os.path.exists(path): - os.remove(path) - - def GetCachedTime(self, key): - path = self._GetPath(key) - if os.path.exists(path): - return os.path.getmtime(path) - else: - return None - - def _GetUsername(self): - '''Attempt to find the username in a cross-platform fashion.''' - try: - return os.getenv('USER') or \ - os.getenv('LOGNAME') or \ - os.getenv('USERNAME') or \ - os.getlogin() or \ - 'nobody' - except (AttributeError, IOError, OSError), e: - return 'nobody' - - def _GetTmpCachePath(self): - username = self._GetUsername() - cache_directory = 'python.cache_' + username - return os.path.join(tempfile.gettempdir(), cache_directory) - - def _InitializeRootDirectory(self, root_directory): - if not root_directory: - root_directory = self._GetTmpCachePath() - root_directory = os.path.abspath(root_directory) - if not os.path.exists(root_directory): - os.mkdir(root_directory) - if not os.path.isdir(root_directory): - raise _FileCacheError('%s exists but is not a directory' % - root_directory) - self._root_directory = root_directory - - def _GetPath(self, key): - try: - hashed_key = md5(key).hexdigest() - except TypeError: - hashed_key = md5.new(key).hexdigest() - - return os.path.join(self._root_directory, - self._GetPrefix(hashed_key), - hashed_key) - - def _GetPrefix(self, hashed_key): - return os.path.sep.join(hashed_key[0:_FileCache.DEPTH]) class ParseTweet: - # compile once on import - regexp = { "RT": "^RT", "MT":r"^MT", "ALNUM": r"(@[a-zA-Z0-9_]+)", - "HASHTAG": r"(#[\w\d]+)", "URL": r"([http://]?[a-zA-Z\d\/]+[\.]+[a-zA-Z\d\/\.]+)" } - regexp = dict((key,re.compile(value)) for key,value in regexp.items()) - - def __init__(self,timeline_owner,tweet): - ''' timeline_owner : twitter handle of user account. tweet - 140 chars from feed; object does all computation on construction - properties: - RT, MT - boolean - URLs - list of URL - Hashtags - list of tags - ''' - self.Owner = timeline_owner - self.tweet = tweet - self.UserHandles = ParseTweet.getUserHandles(tweet) - self.Hashtags = ParseTweet.getHashtags(tweet) - self.URLs = ParseTweet.getURLs(tweet) - self.RT = ParseTweet.getAttributeRT(tweet) - self.MT = ParseTweet.getAttributeMT(tweet) - - # additional intelligence - if ( self.RT and len(self.UserHandles) > 0 ): #change the owner of tweet? - self.Owner = self.UserHandles[0] - return - - def __str__(self): - ''' for display method ''' - return "owner %s, urls: %d, hashtags %d, user_handles %d, len_tweet %d, RT = %s, MT = %s"%(self.Owner,len(self.URLs),len(self.Hashtags),len(self.UserHandles), len(self.tweet), self.RT,self.MT) - - @staticmethod - def getAttributeRT( tweet ): - """ see if tweet is a RT """ - return re.search(ParseTweet.regexp["RT"],tweet.strip()) != None - - @staticmethod - def getAttributeMT( tweet ): - """ see if tweet is a MT """ - return re.search(ParseTweet.regexp["MT"],tweet.strip()) != None - - @staticmethod - def getUserHandles( tweet ): - """ given a tweet we try and extract all user handles in order of occurrence""" - return re.findall(ParseTweet.regexp["ALNUM"],tweet) - - @staticmethod - def getHashtags( tweet ): - """ return all hashtags""" - return re.findall(ParseTweet.regexp["HASHTAG"],tweet) - - @staticmethod - def getURLs( tweet ): - """ URL : [http://]?[\w\.?/]+""" - return re.findall(ParseTweet.regexp["URL"],tweet) + # compile once on import + regexp = {"RT": "^RT", "MT": r"^MT", "ALNUM": r"(@[a-zA-Z0-9_]+)", + "HASHTAG": r"(#[\w\d]+)", "URL": r"([http://]?[a-zA-Z\d\/]+[\.]+[a-zA-Z\d\/\.]+)"} + regexp = dict((key, re.compile(value)) for key, value in regexp.items()) + + def __init__(self, timeline_owner, tweet): + """ timeline_owner : twitter handle of user account. tweet - 140 chars from feed; object does all computation on construction + properties: + RT, MT - boolean + URLs - list of URL + Hashtags - list of tags + """ + self.Owner = timeline_owner + self.tweet = tweet + self.UserHandles = ParseTweet.getUserHandles(tweet) + self.Hashtags = ParseTweet.getHashtags(tweet) + self.URLs = ParseTweet.getURLs(tweet) + self.RT = ParseTweet.getAttributeRT(tweet) + self.MT = ParseTweet.getAttributeMT(tweet) + + # additional intelligence + if ( self.RT and len(self.UserHandles) > 0 ): # change the owner of tweet? + self.Owner = self.UserHandles[0] + return + + def __str__(self): + """ for display method """ + return "owner %s, urls: %d, hashtags %d, user_handles %d, len_tweet %d, RT = %s, MT = %s" % ( + self.Owner, len(self.URLs), len(self.Hashtags), len(self.UserHandles), len(self.tweet), self.RT, self.MT) + + @staticmethod + def getAttributeRT(tweet): + """ see if tweet is a RT """ + return re.search(ParseTweet.regexp["RT"], tweet.strip()) != None + + @staticmethod + def getAttributeMT(tweet): + """ see if tweet is a MT """ + return re.search(ParseTweet.regexp["MT"], tweet.strip()) != None + + @staticmethod + def getUserHandles(tweet): + """ given a tweet we try and extract all user handles in order of occurrence""" + return re.findall(ParseTweet.regexp["ALNUM"], tweet) + + @staticmethod + def getHashtags(tweet): + """ return all hashtags""" + return re.findall(ParseTweet.regexp["HASHTAG"], tweet) + + @staticmethod + def getURLs(tweet): + """ URL : [http://]?[\w\.?/]+""" + return re.findall(ParseTweet.regexp["URL"], tweet) From 0322d0f97035d8d17d0ddec4fba14b4c70150218 Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Wed, 24 Dec 2014 15:05:45 -0500 Subject: [PATCH 002/533] added code style fixes to conform with PEP8 --- twitter/api.py | 7056 ++++++++++++++++++++++++------------------------ 1 file changed, 3532 insertions(+), 3524 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 149186f8..8e430f04 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -17,7 +17,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -'''A library that provides a Python interface to the Twitter API''' +"""A library that provides a Python interface to the Twitter API""" import base64 from calendar import timegm @@ -42,3597 +42,3605 @@ # A singleton representing a lazily instantiated FileCache. DEFAULT_CACHE = object() + class Api(object): - '''A python interface into the Twitter API - - By default, the Api caches results for 1 minute. - - Example usage: - - To create an instance of the twitter.Api class, with no authentication: - - >>> import twitter - >>> api = twitter.Api() - - To fetch a single user's public status messages, where "user" is either - a Twitter "short name" or their user id. - - >>> statuses = api.GetUserTimeline(user) - >>> print [s.text for s in statuses] - - To use authentication, instantiate the twitter.Api class with a - consumer key and secret; and the oAuth key and secret: - - >>> api = twitter.Api(consumer_key='twitter consumer key', - consumer_secret='twitter consumer secret', - access_token_key='the_key_given', - access_token_secret='the_key_secret') - - To fetch your friends (after being authenticated): - - >>> users = api.GetFriends() - >>> print [u.name for u in users] - - To post a twitter status message (after being authenticated): - - >>> status = api.PostUpdate('I love python-twitter!') - >>> print status.text - I love python-twitter! - - There are many other methods, including: - - >>> api.PostUpdates(status) - >>> api.PostDirectMessage(user, text) - >>> api.GetUser(user) - >>> api.GetReplies() - >>> api.GetUserTimeline(user) - >>> api.GetHomeTimeline() - >>> api.GetStatus(id) - >>> api.DestroyStatus(id) - >>> api.GetFriends(user) - >>> api.GetFollowers() - >>> api.GetFeatured() - >>> api.GetDirectMessages() - >>> api.GetSentDirectMessages() - >>> api.PostDirectMessage(user, text) - >>> api.DestroyDirectMessage(id) - >>> api.DestroyFriendship(user) - >>> api.CreateFriendship(user) - >>> api.LookupFriendship(user) - >>> api.GetUserByEmail(email) - >>> api.VerifyCredentials() - ''' - - DEFAULT_CACHE_TIMEOUT = 60 # cache for 1 minute - _API_REALM = 'Twitter API' - - def __init__(self, - consumer_key=None, - consumer_secret=None, - access_token_key=None, - access_token_secret=None, - input_encoding=None, - request_headers=None, - cache=DEFAULT_CACHE, - shortner=None, - base_url=None, - stream_url=None, - upload_url=None, - use_gzip_compression=False, - debugHTTP=False, - timeout=None): - '''Instantiate a new twitter.Api object. - - Args: - consumer_key: - Your Twitter user's consumer_key. - consumer_secret: - Your Twitter user's consumer_secret. - access_token_key: - The oAuth access token key value you retrieved - from running get_access_token.py. - access_token_secret: - The oAuth access token's secret, also retrieved - from the get_access_token.py run. - input_encoding: - The encoding used to encode input strings. [Optional] - request_header: - A dictionary of additional HTTP request headers. [Optional] - cache: - The cache instance to use. Defaults to DEFAULT_CACHE. - Use None to disable caching. [Optional] - shortner: - The shortner instance to use. Defaults to None. - See shorten_url.py for an example shortner. [Optional] - base_url: - The base URL to use to contact the Twitter API. - Defaults to https://api.twitter.com. [Optional] - use_gzip_compression: - Set to True to tell enable gzip compression for any call - made to Twitter. Defaults to False. [Optional] - debugHTTP: - Set to True to enable debug output from urllib2 when performing - any HTTP requests. Defaults to False. [Optional] - timeout: - Set timeout (in seconds) of the http/https requests. If None the - requests lib default will be used. Defaults to None. [Optional] - ''' - self.SetCache(cache) - self._urllib = urllib2 - self._cache_timeout = Api.DEFAULT_CACHE_TIMEOUT - self._input_encoding = input_encoding - self._use_gzip = use_gzip_compression - self._debugHTTP = debugHTTP - self._shortlink_size = 19 - self._timeout = timeout - - self._InitializeRequestHeaders(request_headers) - self._InitializeUserAgent() - self._InitializeDefaultParameters() - - if base_url is None: - self.base_url = 'https://api.twitter.com/1.1' - else: - self.base_url = base_url - - if stream_url is None: - self.stream_url = 'https://stream.twitter.com/1.1' - else: - self.stream_url = stream_url - - if upload_url is None: - self.upload_url = 'https://upload.twitter.com/1.1' - else: - self.upload_url = upload_url - - if consumer_key is not None and (access_token_key is None or - access_token_secret is None): - print >> sys.stderr, 'Twitter now requires an oAuth Access Token for API calls.' - print >> sys.stderr, 'If your using this library from a command line utility, please' - print >> sys.stderr, 'run the included get_access_token.py tool to generate one.' - - raise TwitterError({'message': "Twitter requires oAuth Access Token for all API access"}) - - self.SetCredentials(consumer_key, consumer_secret, access_token_key, access_token_secret) - - if debugHTTP: - import logging - import httplib - httplib.HTTPConnection.debuglevel = 1 - - logging.basicConfig() # you need to initialize logging, otherwise you will not see anything from requests - logging.getLogger().setLevel(logging.DEBUG) - requests_log = logging.getLogger("requests.packages.urllib3") - requests_log.setLevel(logging.DEBUG) - requests_log.propagate = True - - def SetCredentials(self, - consumer_key, - consumer_secret, - access_token_key=None, - access_token_secret=None): - '''Set the consumer_key and consumer_secret for this instance - - Args: - consumer_key: - The consumer_key of the twitter account. - consumer_secret: - The consumer_secret for the twitter account. - access_token_key: - The oAuth access token key value you retrieved - from running get_access_token.py. - access_token_secret: - The oAuth access token's secret, also retrieved - from the get_access_token.py run. - ''' - self._consumer_key = consumer_key - self._consumer_secret = consumer_secret - self._access_token_key = access_token_key - self._access_token_secret = access_token_secret - auth_list = [consumer_key, consumer_secret, - access_token_key, access_token_secret] - - if all(auth_list): - self.__auth = OAuth1(consumer_key, consumer_secret, - access_token_key, access_token_secret) - - self._config = None - - def GetHelpConfiguration(self): - if self._config is None: - url = '%s/help/configuration.json' % self.base_url - json = self._RequestUrl(url, 'GET') - data = self._ParseAndCheckTwitter(json.content) - self._config = data - return self._config - - def GetShortUrlLength(self, https=False): - config = self.GetHelpConfiguration() - if https: - return config['short_url_length_https'] - else: - return config['short_url_length'] - - def ClearCredentials(self): - '''Clear any credentials for this instance - ''' - self._consumer_key = None - self._consumer_secret = None - self._access_token_key = None - self._access_token_secret = None - self.__auth = None # for request upgrade - - def GetSearch(self, - term=None, - geocode=None, - since_id=None, - max_id=None, - until=None, - count=15, - lang=None, - locale=None, - result_type="mixed", - include_entities=None): - '''Return twitter search results for a given term. - - Args: - term: - Term to search by. Optional if you include geocode. - since_id: - Returns results with an ID greater than (that is, more recent - than) the specified ID. There are limits to the number of - Tweets which can be accessed through the API. If the limit of - Tweets has occurred since the since_id, the since_id will be - forced to the oldest ID available. [Optional] - max_id: - Returns only statuses with an ID less than (that is, older - than) or equal to the specified ID. [Optional] - until: - Returns tweets generated before the given date. Date should be - formatted as YYYY-MM-DD. [Optional] - geocode: - Geolocation information in the form (latitude, longitude, radius) - [Optional] - count: - Number of results to return. Default is 15 [Optional] - lang: - Language for results as ISO 639-1 code. Default is None (all languages) - [Optional] - locale: - Language of the search query. Currently only 'ja' is effective. This is - intended for language-specific consumers and the default should work in - the majority of cases. - result_type: - Type of result which should be returned. Default is "mixed". Other - valid options are "recent" and "popular". [Optional] - include_entities: - If True, each tweet will include a node called "entities,". - This node offers a variety of metadata about the tweet in a - discrete structure, including: user_mentions, urls, and - hashtags. [Optional] - - Returns: - A sequence of twitter.Status instances, one for each message containing - the term - ''' - # Build request parameters - parameters = {} - - if since_id: - try: - parameters['since_id'] = long(since_id) - except ValueError: - raise TwitterError({'message': "since_id must be an integer"}) - - if max_id: - try: - parameters['max_id'] = long(max_id) - except ValueError: - raise TwitterError({'message': "max_id must be an integer"}) - - if until: - parameters['until'] = until - - if lang: - parameters['lang'] = lang - - if locale: - parameters['locale'] = locale - - if term is None and geocode is None: - return [] - - if term is not None: - parameters['q'] = term - - if geocode is not None: - parameters['geocode'] = ','.join(map(str, geocode)) - - if include_entities: - parameters['include_entities'] = 1 - - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) - - if result_type in ["mixed", "popular", "recent"]: - parameters['result_type'] = result_type - - # Make and send requests - url = '%s/search/tweets.json' % self.base_url - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) - - # Return built list of statuses - return [Status.NewFromJsonDict(x) for x in data['statuses']] - - def GetUsersSearch(self, - term=None, - page=1, - count=20, - include_entities=None): - '''Return twitter user search results for a given term. - - Args: - term: - Term to search by. - page: - Page of results to return. Default is 1 - [Optional] - count: - Number of results to return. Default is 20 - [Optional] - include_entities: - If True, each tweet will include a node called "entities,". - This node offers a variety of metadata about the tweet in a - discrete structure, including: user_mentions, urls, and hashtags. - [Optional] - - Returns: - A sequence of twitter.User instances, one for each message containing - the term - ''' - # Build request parameters - parameters = {} - - if term is not None: - parameters['q'] = term - - if page != 1: - parameters['page'] = page - - if include_entities: - parameters['include_entities'] = 1 - - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) - - # Make and send requests - url = '%s/users/search.json' % self.base_url - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) - return [User.NewFromJsonDict(x) for x in data] - - def GetTrendsCurrent(self, exclude=None): - '''Get the current top trending topics (global) - - Args: - exclude: - Appends the exclude parameter as a request parameter. - Currently only exclude=hashtags is supported. [Optional] - - Returns: - A list with 10 entries. Each entry contains a trend. - ''' - return self.GetTrendsWoeid(id=1, exclude=exclude) - - def GetTrendsWoeid(self, id, exclude=None): - '''Return the top 10 trending topics for a specific WOEID, if trending - information is available for it. - - Args: - woeid: - the Yahoo! Where On Earth ID for a location. - exclude: - Appends the exclude parameter as a request parameter. - Currently only exclude=hashtags is supported. [Optional] - - Returns: - A list with 10 entries. Each entry contains a trend. - ''' - url = '%s/trends/place.json' % (self.base_url) - parameters = {'id': id} - - if exclude: - parameters['exclude'] = exclude - - json = self._RequestUrl(url, verb='GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) - - trends = [] - timestamp = data[0]['as_of'] - - for trend in data[0]['trends']: - trends.append(Trend.NewFromJsonDict(trend, timestamp=timestamp)) - return trends - - def GetHomeTimeline(self, - count=None, - since_id=None, - max_id=None, - trim_user=False, - exclude_replies=False, - contributor_details=False, - include_entities=True): - '''Fetch a collection of the most recent Tweets and retweets posted - by the authenticating user and the users they follow. - - The home timeline is central to how most users interact with Twitter. - - The twitter.Api instance must be authenticated. - - Args: - count: - Specifies the number of statuses to retrieve. May not be - greater than 200. Defaults to 20. [Optional] - since_id: - Returns results with an ID greater than (that is, more recent - than) the specified ID. There are limits to the number of - Tweets which can be accessed through the API. If the limit of - Tweets has occurred since the since_id, the since_id will be - forced to the oldest ID available. [Optional] - max_id: - Returns results with an ID less than (that is, older than) or - equal to the specified ID. [Optional] - trim_user: - When True, each tweet returned in a timeline will include a user - object including only the status authors numerical ID. Omit this - parameter to receive the complete user object. [Optional] - exclude_replies: - This parameter will prevent replies from appearing in the - returned timeline. Using exclude_replies with the count - parameter will mean you will receive up-to count tweets - - this is because the count parameter retrieves that many - tweets before filtering out retweets and replies. [Optional] - contributor_details: - This parameter enhances the contributors element of the - status response to include the screen_name of the contributor. - By default only the user_id of the contributor is included. [Optional] - include_entities: - The entities node will be disincluded when set to false. - This node offers a variety of metadata about the tweet in a - discreet structure, including: user_mentions, urls, and - hashtags. [Optional] - - Returns: - A sequence of twitter.Status instances, one for each message - ''' - url = '%s/statuses/home_timeline.json' % self.base_url - - if not self.__auth: - raise TwitterError({'message': "API must be authenticated."}) - parameters = {} - if count is not None: - try: - if int(count) > 200: - raise TwitterError({'message': "'count' may not be greater than 200"}) - except ValueError: - raise TwitterError({'message': "'count' must be an integer"}) - parameters['count'] = count - if since_id: - try: - parameters['since_id'] = long(since_id) - except ValueError: - raise TwitterError({'message': "'since_id' must be an integer"}) - if max_id: - try: - parameters['max_id'] = long(max_id) - except ValueError: - raise TwitterError({'message': "'max_id' must be an integer"}) - if trim_user: - parameters['trim_user'] = 1 - if exclude_replies: - parameters['exclude_replies'] = 1 - if contributor_details: - parameters['contributor_details'] = 1 - if not include_entities: - parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) - - return [Status.NewFromJsonDict(x) for x in data] - - def GetUserTimeline(self, - user_id=None, - screen_name=None, - since_id=None, - max_id=None, - count=None, - include_rts=True, - trim_user=None, - exclude_replies=None): - '''Fetch the sequence of public Status messages for a single user. - - The twitter.Api instance must be authenticated if the user is private. - - Args: - user_id: - Specifies the ID of the user for whom to return the - user_timeline. Helpful for disambiguating when a valid user ID - is also a valid screen name. [Optional] - screen_name: - Specifies the screen name of the user for whom to return the - user_timeline. Helpful for disambiguating when a valid screen - name is also a user ID. [Optional] - since_id: - Returns results with an ID greater than (that is, more recent - than) the specified ID. There are limits to the number of - Tweets which can be accessed through the API. If the limit of - Tweets has occurred since the since_id, the since_id will be - forced to the oldest ID available. [Optional] - max_id: - Returns only statuses with an ID less than (that is, older - than) or equal to the specified ID. [Optional] - count: - Specifies the number of statuses to retrieve. May not be - greater than 200. [Optional] - include_rts: - If True, the timeline will contain native retweets (if they - exist) in addition to the standard stream of tweets. [Optional] - trim_user: - If True, statuses will only contain the numerical user ID only. - Otherwise a full user object will be returned for each status. - [Optional] - exclude_replies: - If True, this will prevent replies from appearing in the returned - timeline. Using exclude_replies with the count parameter will mean you - will receive up-to count tweets - this is because the count parameter - retrieves that many tweets before filtering out retweets and replies. - This parameter is only supported for JSON and XML responses. [Optional] - - Returns: - A sequence of Status instances, one for each message up to count - ''' - parameters = {} - url = '%s/statuses/user_timeline.json' % (self.base_url) - - if user_id: - parameters['user_id'] = user_id - elif screen_name: - parameters['screen_name'] = screen_name - if since_id: - try: - parameters['since_id'] = long(since_id) - except ValueError: - raise TwitterError({'message': "since_id must be an integer"}) - if max_id: - try: - parameters['max_id'] = long(max_id) - except ValueError: - raise TwitterError({'message': "max_id must be an integer"}) - if count: - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) - if not include_rts: - parameters['include_rts'] = 0 - if trim_user: - parameters['trim_user'] = 1 - if exclude_replies: - parameters['exclude_replies'] = 1 - - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) - - return [Status.NewFromJsonDict(x) for x in data] - - def GetStatus(self, - id, - trim_user=False, - include_my_retweet=True, - include_entities=True): - '''Returns a single status message, specified by the id parameter. - - The twitter.Api instance must be authenticated. - - Args: - id: - The numeric ID of the status you are trying to retrieve. - trim_user: - When set to True, each tweet returned in a timeline will include - a user object including only the status authors numerical ID. - Omit this parameter to receive the complete user object. [Optional] - include_my_retweet: - When set to True, any Tweets returned that have been retweeted by - the authenticating user will include an additional - current_user_retweet node, containing the ID of the source status - for the retweet. [Optional] - include_entities: - If False, the entities node will be disincluded. - This node offers a variety of metadata about the tweet in a - discreet structure, including: user_mentions, urls, and - hashtags. [Optional] - Returns: - A twitter.Status instance representing that status message - ''' - url = '%s/statuses/show.json' % (self.base_url) - - if not self.__auth: - raise TwitterError({'message': "API must be authenticated."}) - - parameters = {} - - try: - parameters['id'] = long(id) - except ValueError: - raise TwitterError({'message': "'id' must be an integer."}) - - if trim_user: - parameters['trim_user'] = 1 - if include_my_retweet: - parameters['include_my_retweet'] = 1 - if not include_entities: - parameters['include_entities'] = 'none' - - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) - - return Status.NewFromJsonDict(data) - - def GetStatusOembed(self, - id=None, - url=None, - maxwidth=None, - hide_media=False, - hide_thread=False, - omit_script=False, - align=None, - related=None, - lang=None): - '''Returns information allowing the creation of an embedded representation of a - Tweet on third party sites. - - Specify tweet by the id or url parameter. - - The twitter.Api instance must be authenticated. - - Args: - id: - The numeric ID of the status you are trying to embed. - url: - The url of the status you are trying to embed. - maxwidth: - The maximum width in pixels that the embed should be rendered at. - This value is constrained to be between 250 and 550 pixels. [Optional] - hide_media: - Specifies whether the embedded Tweet should automatically expand images. [Optional] - hide_thread: - Specifies whether the embedded Tweet should automatically show the original - message in the case that the embedded Tweet is a reply. [Optional] - omit_script: - Specifies whether the embedded Tweet HTML should include a - - - - -
-
+
+
-
- +
-

Index

-
- -
+

Index

+ +
+ +
-
+
-
-
+
+
- - - + +
-
-
- + - - + index +
  • python-twitter 1.0 documentation »
  • + +
    + + \ No newline at end of file diff --git a/doc/_build/html/index.html b/doc/_build/html/index.html index 5c90eaf8..83071b5f 100644 --- a/doc/_build/html/index.html +++ b/doc/_build/html/index.html @@ -1,165 +1,215 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - - + + + Welcome to python-twitter’s documentation! — python-twitter 1.0 documentation - - - - + + + + - - - - -

    Download the latest python-twitter library from: http://code.google.com/p/python-twitter/

    -

    Extract the source distribution and run:

    -
    $ python setup.py build
    +
    +
    +
    +
    +
    + +
    +

    Welcome to python-twitter’s documentation!

    + +

    A Python wrapper around the Twitter API.

    + +

    Author: The Python-Twitter Developers <python-twitter@googlegroups.com> +

    + +
    +

    Introduction

    + +

    This library provides a pure Python interface for the Twitter + API. It works with Python versions from 2.5 to 2.7. Python 3 support is under + development.

    + +

    Twitter provides a service that + allows people to connect via the web, IM, and SMS. Twitter exposes a web services API + and this library is intended to make it even easier for Python programmers to use.

    +
    +
    +

    Building

    + +

    From source:

    + +

    Install the dependencies:

    + +

    This branch is currently in development to replace the OAuth and HTTPLib2 libarays with the + following:

    + +

    Alternatively use pip:

    + +
    +
    $ pip install -r requirements.txt
    +
    +
    +
    +

    Download the latest python-twitter library from: http://code.google.com/p/python-twitter/ +

    + +

    Extract the source distribution and run:

    + +
    +
    $ python setup.py build
     $ python setup.py install
    -
    -
    -
    -
    -

    Testing

    -

    With setuptools installed:

    -
    $ python setup.py test
    -
    -
    -

    Without setuptools installed:

    -
    $ python twitter_test.py
    -
    -
    -
    -
    -

    Getting the code

    -

    The code is hosted at Github.

    -

    Check out the latest development version anonymously with:

    -
    $ git clone git://github.com/bear/python-twitter.git
    +
    +
    +
    +
    +
    +

    Testing

    + +

    With setuptools installed:

    + +
    +
    $ python setup.py test
    +
    +
    +
    +

    Without setuptools installed:

    + +
    +
    $ python twitter_test.py
    +
    +
    +
    +
    +
    +

    Getting the code

    + +

    The code is hosted at Github.

    + +

    Check out the latest development version anonymously with:

    + +
    +
    $ git clone git://github.com/bear/python-twitter.git
     $ cd python-twitter
    -
    -
    -
    -
      -
    -
    -
    -
    -
    -

    Indices and tables

    - -
    +
    +
    +
    +
    +
      +
    +
    +
    + +
    +

    Indices and tables

    + +
    - + - -
    +
    +
    -

    Table Of Contents

    - - -

    This Page

    - - - +

    Table Of Contents

    + + +

    This Page

    + + +
    -
    -
    - + - - + index +
  • python-twitter 1.0 documentation »
  • + + + + \ No newline at end of file diff --git a/doc/_build/html/search.html b/doc/_build/html/search.html index cb5a6c8d..b72d857d 100644 --- a/doc/_build/html/search.html +++ b/doc/_build/html/search.html @@ -1,99 +1,103 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - - + + + Search — python-twitter 1.0 documentation - - - - + + + + - - - - - + + + + - - - -
    -
    +
    +
    -
    - -

    Search

    -
    - -

    - Please activate JavaScript to enable the search - functionality. -

    -
    -

    - From here you can search these documents. Enter your search - words into the box below and click "search". Note that the search - function will automatically search for all of the words. Pages - containing fewer words won't appear in the result list. -

    -
    - - - -
    - -
    - -
    +
    + +

    Search

    -
    +
    + +

    + Please activate JavaScript to enable the search + functionality. +

    +
    +

    + From here you can search these documents. Enter your search + words into the box below and click "search". Note that the search + function will automatically search for all of the words. Pages + containing fewer words won't appear in the result list. +

    + +
    + + + +
    + +
    + +
    + +
    -
    -
    +
    +
    -
    -
    - + - - + index +
  • python-twitter 1.0 documentation »
  • + +
    + + \ No newline at end of file diff --git a/doc/_build/html/searchindex.js b/doc/_build/html/searchindex.js index 46e57540..3b743331 100644 --- a/doc/_build/html/searchindex.js +++ b/doc/_build/html/searchindex.js @@ -1 +1,108 @@ -Search.setIndex({envversion:42,terms:{code:[],replac:0,modul:0,request:0,download:0,api:0,connect:0,cheeseshop:[],pip:0,instal:0,txt:0,extract:0,check:0,librari:0,out:0,even:0,index:0,oauthlib:0,git:0,from:0,googl:0,expos:0,author:0,oauth:0,support:0,develop:0,depend:0,wrapper:0,latest:0,current:0,web:0,run:0,version:0,interfac:0,build:[],pure:0,under:0,test:[],you:[],content:[],intend:0,easier:0,altern:0,simplegeo:[],setup:0,sourc:0,http:0,around:0,simplejson:0,get:[],googlegroup:0,clone:0,setuptool:0,bear:0,pypi:[],thi:0,host:0,oauth2:[],libarai:0,branch:0,twitter_test:0,org:[],along:[],peopl:0,introduct:[],search:0,github:0,via:0,doc:[],servic:0,work:0,requir:0,dev:[],page:0,provid:0,without:0,follow:0,allow:0,distribut:0,programm:0,anonym:0,readthedoc:[],com:0,make:0,httplib2:0},objtypes:{},objnames:{},filenames:["index"],titles:["Welcome to python-twitter’s documentation!"],objects:{},titleterms:{code:0,welcom:0,get:0,python:0,twitter:0,indic:0,build:0,tabl:0,test:0,document:0,introduct:0}}) \ No newline at end of file +Search.setIndex({ + envversion: 42, + terms: { + code: [], + replac: 0, + modul: 0, + request: 0, + download: 0, + api: 0, + connect: 0, + cheeseshop: [], + pip: 0, + instal: 0, + txt: 0, + extract: 0, + check: 0, + librari: 0, + out: 0, + even: 0, + index: 0, + oauthlib: 0, + git: 0, + from: 0, + googl: 0, + expos: 0, + author: 0, + oauth: 0, + support: 0, + develop: 0, + depend: 0, + wrapper: 0, + latest: 0, + current: 0, + web: 0, + run: 0, + version: 0, + interfac: 0, + build: [], + pure: 0, + under: 0, + test: [], + you: [], + content: [], + intend: 0, + easier: 0, + altern: 0, + simplegeo: [], + setup: 0, + sourc: 0, + http: 0, + around: 0, + simplejson: 0, + get: [], + googlegroup: 0, + clone: 0, + setuptool: 0, + bear: 0, + pypi: [], + thi: 0, + host: 0, + oauth2: [], + libarai: 0, + branch: 0, + twitter_test: 0, + org: [], + along: [], + peopl: 0, + introduct: [], + search: 0, + github: 0, + via: 0, + doc: [], + servic: 0, + work: 0, + requir: 0, + dev: [], + page: 0, + provid: 0, + without: 0, + follow: 0, + allow: 0, + distribut: 0, + programm: 0, + anonym: 0, + readthedoc: [], + com: 0, + make: 0, + httplib2: 0 + }, + objtypes: {}, + objnames: {}, + filenames: ["index"], + titles: ["Welcome to python-twitter’s documentation!"], + objects: {}, + titleterms: { + code: 0, + welcom: 0, + get: 0, + python: 0, + twitter: 0, + indic: 0, + build: 0, + tabl: 0, + test: 0, + document: 0, + introduct: 0 + } +}) \ No newline at end of file diff --git a/doc/conf.py b/doc/conf.py index d5a0cc05..b162b3b7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -16,7 +16,7 @@ # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) +# sys.path.insert(0, os.path.abspath('.')) # -- General configuration ----------------------------------------------------- @@ -173,21 +173,21 @@ # -- Options for LaTeX output -------------------------------------------------- latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', + # The paper size ('letterpaper' or 'a4paper'). + #'papersize': 'letterpaper', -# The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', + # The font size ('10pt', '11pt' or '12pt'). + #'pointsize': '10pt', -# Additional stuff for the LaTeX preamble. -#'preamble': '', + # Additional stuff for the LaTeX preamble. + #'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'python-twitter.tex', u'python-twitter Documentation', - u'python-twitter@googlegroups.com', 'manual'), + ('index', 'python-twitter.tex', u'python-twitter Documentation', + u'python-twitter@googlegroups.com', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -230,9 +230,9 @@ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'python-twitter', u'python-twitter Documentation', - u'python-twitter@googlegroups.com', 'python-twitter', 'One line description of project.', - 'Miscellaneous'), + ('index', 'python-twitter', u'python-twitter Documentation', + u'python-twitter@googlegroups.com', 'python-twitter', 'One line description of project.', + 'Miscellaneous'), ] # Documents to append as an appendix to all manuals. diff --git a/doc/index.rst b/doc/index.rst index a9b88ed7..73d604ad 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,7 +1,7 @@ .. python-twitter documentation master file, created by - sphinx-quickstart on Fri Aug 30 14:37:05 2013. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. +sphinx-quickstart on Fri Aug 30 14:37:05 2013. +You can adapt this file completely to your liking, but it should at least +contain the root `toctree` directive. Welcome to python-twitter's documentation! ========================================== @@ -60,7 +60,7 @@ $ cd python-twitter .. toctree:: - :maxdepth: 2 +:maxdepth: 2 diff --git a/doc/twitter.html b/doc/twitter.html index 2217c454..9a87ec8c 100644 --- a/doc/twitter.html +++ b/doc/twitter.html @@ -1,1966 +1,3094 @@ -Python: module twitter - + +Python: module twitter + + - -
     
    - 
    twitter (version 0.8)
    index
    twitter.py
    -

    A library that provides a Python interface to the Twitter API

    + +  
    +  
    twitter + (version 0.8)
    + index
    twitter.py
    + + +

    + A library that provides a Python interface to the Twitter API +

    +

    - - - - -
     
    -Modules
           
    StringIO
    -base64
    -calendar
    -datetime
    -gzip
    -
    httplib
    -oauth2
    -os
    -rfc822
    -json
    -
    sys
    -tempfile
    -textwrap
    -time
    -urllib
    -
    urllib2
    -urlparse
    -

    - - - - - - + + + + + + + + +
     
    -Classes
           
    -
    __builtin__.object -
    -
    -
    Api -
    DirectMessage -
    Hashtag -
    List -
    Status -
    Trend -
    Url -
    User -
    -
    -
    exceptions.Exception(exceptions.BaseException) -
    -
    -
    TwitterError -
    -
    -
    -

    - - - - - - - -
     
    -class Api(__builtin__.object)
       A python interface into the Twitter API

    -By default, the Api caches results for 1 minute.

    -Example usage:

    -  To create an instance of the twitter.Api class, with no authentication:

    -    >>> import twitter
    -    >>> api = twitter.Api()

    -  To fetch a single user's public status messages, where "user" is either
    -  a Twitter "short name" or their user id.

    -    >>> statuses = api.GetUserTimeline(user)
    -    >>> print [s.text for s in statuses]

    -  To use authentication, instantiate the twitter.Api class with a
    -  consumer key and secret; and the oAuth key and secret:

    -    >>> api = twitter.Api(consumer_key='twitter consumer key',
    -                          consumer_secret='twitter consumer secret',
    -                          access_token_key='the_key_given',
    -                          access_token_secret='the_key_secret')

    -  To fetch your friends (after being authenticated):

    -    >>> users = api.GetFriends()
    -    >>> print [u.name for u in users]

    -  To post a twitter status message (after being authenticated):

    -    >>> status = api.PostUpdate('I love python-twitter!')
    -    >>> print status.text
    -    I love python-twitter!

    -  There are many other methods, including:

    -    >>> api.PostUpdates(status)
    -    >>> api.PostDirectMessage(user, text)
    -    >>> api.GetUser(user)
    -    >>> api.GetReplies()
    -    >>> api.GetUserTimeline(user)
    -    >>> api.GetStatus(id)
    -    >>> api.DestroyStatus(id)
    -    >>> api.GetFriends(user)
    -    >>> api.GetFollowers()
    -    >>> api.GetFeatured()
    -    >>> api.GetDirectMessages()
    -    >>> api.PostDirectMessage(user, text)
    -    >>> api.DestroyDirectMessage(id)
    -    >>> api.DestroyFriendship(user)
    -    >>> api.CreateFriendship(user)
    -    >>> api.GetUserByEmail(email)
    -    >>> api.VerifyCredentials()
     
     Methods defined here:
    -
    ClearCredentials(self)
    Clear the any credentials for this instance
    - -
    CreateFavorite(self, status)
    Favorites the status specified in the status parameter as the authenticating user.
    -Returns the favorite status when successful.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  The twitter.Status instance to mark as a favorite.
    -Returns:
    -  A twitter.Status instance representing the newly-marked favorite.
    - -
    CreateFriendship(self, user)
    Befriends the user specified in the user parameter as the authenticating user.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  The ID or screen name of the user to befriend.
    -Returns:
    -  A twitter.User instance representing the befriended user.
    - -
    CreateList(self, user, name, mode=None, description=None)
    Creates a new list with the given name

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user:
    -    Twitter name to create the list for
    -  name:
    -    New name for the list
    -  mode:
    -    'public' or 'private'.
    -    Defaults to 'public'. [Optional]
    -  description:
    -    Description of the list. [Optional]

    -Returns:
    -  A twitter.List instance representing the new list
    - -
    CreateSubscription(self, owner, list)
    Creates a subscription to a list by the authenticated user

    -The twitter.Api instance must be authenticated.

    -Args:
    -  owner:
    -    User name or id of the owner of the list being subscribed to.
    -  list:
    -    The slug or list id to subscribe the user to

    -Returns:
    -  A twitter.List instance representing the list subscribed to
    - -
    DestroyDirectMessage(self, id)
    Destroys the direct message specified in the required ID parameter.

    -The twitter.Api instance must be authenticated, and the
    -authenticating user must be the recipient of the specified direct
    -message.

    -Args:
    -  id: The id of the direct message to be destroyed

    -Returns:
    -  A twitter.DirectMessage instance representing the message destroyed
    - -
    DestroyFavorite(self, status)
    Un-favorites the status specified in the ID parameter as the authenticating user.
    -Returns the un-favorited status in the requested format when successful.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  The twitter.Status to unmark as a favorite.
    -Returns:
    -  A twitter.Status instance representing the newly-unmarked favorite.
    - -
    DestroyFriendship(self, user)
    Discontinues friendship with the user specified in the user parameter.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  The ID or screen name of the user  with whom to discontinue friendship.
    -Returns:
    -  A twitter.User instance representing the discontinued friend.
    - -
    DestroyList(self, user, id)
    Destroys the list from the given user

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user:
    -    The user to remove the list from.
    -  id:
    -    The slug or id of the list to remove.
    -Returns:
    -  A twitter.List instance representing the removed list.
    - -
    DestroyStatus(self, id)
    Destroys the status specified by the required ID parameter.

    -The twitter.Api instance must be authenticated and the
    -authenticating user must be the author of the specified status.

    -Args:
    -  id:
    -    The numerical ID of the status you're trying to destroy.

    -Returns:
    -  A twitter.Status instance representing the destroyed status message
    - -
    DestroySubscription(self, owner, list)
    Destroys the subscription to a list for the authenticated user

    -The twitter.Api instance must be authenticated.

    -Args:
    -  owner:
    -    The user id or screen name of the user that owns the
    -    list that is to be unsubscribed from
    -  list:
    -    The slug or list id of the list to unsubscribe from

    -Returns:
    -  A twitter.List instance representing the removed list.
    - -
    FilterPublicTimeline(self, term, since_id=None)
    Filter the public twitter timeline by a given search term on
    -the local machine.

    -Args:
    -  term:
    -    term to search by.
    -  since_id:
    -    Returns results with an ID greater than (that is, more recent
    -    than) the specified ID. There are limits to the number of
    -    Tweets which can be accessed through the API. If the limit of
    -    Tweets has occured since the since_id, the since_id will be
    -    forced to the oldest ID available. [Optional]

    -Returns:
    -  A sequence of twitter.Status instances, one for each message
    -  containing the term
    - -
    GetDirectMessages(self, since=None, since_id=None, page=None)
    Returns a list of the direct messages sent to the authenticating user.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  since:
    -    Narrows the returned results to just those statuses created
    -    after the specified HTTP-formatted date. [Optional]
    -  since_id:
    -    Returns results with an ID greater than (that is, more recent
    -    than) the specified ID. There are limits to the number of
    -    Tweets which can be accessed through the API. If the limit of
    -    Tweets has occured since the since_id, the since_id will be
    -    forced to the oldest ID available. [Optional]
    -  page:
    -    Specifies the page of results to retrieve.
    -    Note: there are pagination limits. [Optional]

    -Returns:
    -  A sequence of twitter.DirectMessage instances
    - -
    GetFavorites(self, user=None, page=None)
    Return a list of Status objects representing favorited tweets.
    -By default, returns the (up to) 20 most recent tweets for the
    -authenticated user.

    -Args:
    -  user:
    -    The twitter name or id of the user whose favorites you are fetching.
    -    If not specified, defaults to the authenticated user. [Optional]
    -  page:
    -    Specifies the page of results to retrieve.
    -    Note: there are pagination limits. [Optional]
    - -
    GetFeatured(self)
    Fetch the sequence of twitter.User instances featured on twitter.com

    -The twitter.Api instance must be authenticated.

    -Returns:
    -  A sequence of twitter.User instances
    - -
    GetFollowerIDs(self, userid=None, cursor=-1)
    Fetch the sequence of twitter.User instances, one for each follower

    -The twitter.Api instance must be authenticated.

    -Returns:
    -  A sequence of twitter.User instances, one for each follower
    - -
    GetFollowers(self, page=None)
    Fetch the sequence of twitter.User instances, one for each follower

    -The twitter.Api instance must be authenticated.

    -Args:
    -  page:
    -    Specifies the page of results to retrieve.
    -    Note: there are pagination limits. [Optional]

    -Returns:
    -  A sequence of twitter.User instances, one for each follower
    - -
    GetFriendIDs(self, user=None, cursor=-1)
    Returns a list of twitter user id's for every person
    -the specified user is following.

    -Args:
    -  user:
    -    The id or screen_name of the user to retrieve the id list for
    -    [Optional]

    -Returns:
    -  A list of integers, one for each user id.
    - -
    GetFriends(self, user=None, cursor=-1)
    Fetch the sequence of twitter.User instances, one for each friend.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user:
    -    The twitter name or id of the user whose friends you are fetching.
    -    If not specified, defaults to the authenticated user. [Optional]

    -Returns:
    -  A sequence of twitter.User instances, one for each friend
    - -
    GetLists(self, user, cursor=-1)
    Fetch the sequence of lists for a user.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user:
    -    The twitter name or id of the user whose friends you are fetching.
    -    If the passed in user is the same as the authenticated user
    -    then you will also receive private list data.
    -  cursor:
    -    "page" value that Twitter will use to start building the
    -    list sequence from.  -1 to start at the beginning.
    -    Twitter will return in the result the values for next_cursor
    -    and previous_cursor. [Optional]

    -Returns:
    -  A sequence of twitter.List instances, one for each list
    - -
    GetMentions(self, since_id=None, max_id=None, page=None)
    Returns the 20 most recent mentions (status containing @twitterID)
    -for the authenticating user.

    -Args:
    -  since_id:
    -    Returns results with an ID greater than (that is, more recent
    -    than) the specified ID. There are limits to the number of
    -    Tweets which can be accessed through the API. If the limit of
    -    Tweets has occured since the since_id, the since_id will be
    -    forced to the oldest ID available. [Optional]
    -  max_id:
    -    Returns only statuses with an ID less than
    -    (that is, older than) the specified ID.  [Optional]
    -  page:
    -    Specifies the page of results to retrieve.
    -    Note: there are pagination limits. [Optional]

    -Returns:
    -  A sequence of twitter.Status instances, one for each mention of the user.
    - -
    GetRateLimitStatus(self)
    Fetch the rate limit status for the currently authorized user.

    -Returns:
    -  A dictionary containing the time the limit will reset (reset_time),
    -  the number of remaining hits allowed before the reset (remaining_hits),
    -  the number of hits allowed in a 60-minute period (hourly_limit), and
    -  the time of the reset in seconds since The Epoch (reset_time_in_seconds).
    - -
    GetReplies(self, since=None, since_id=None, page=None)
    Get a sequence of status messages representing the 20 most
    -recent replies (status updates prefixed with @twitterID) to the
    -authenticating user.

    -Args:
    -  since_id:
    -    Returns results with an ID greater than (that is, more recent
    -    than) the specified ID. There are limits to the number of
    -    Tweets which can be accessed through the API. If the limit of
    -    Tweets has occured since the since_id, the since_id will be
    -    forced to the oldest ID available. [Optional]
    -  page:
    -    Specifies the page of results to retrieve.
    -    Note: there are pagination limits. [Optional]
    -  since:

    -Returns:
    -  A sequence of twitter.Status instances, one for each reply to the user.
    - -
    GetRetweets(self, statusid)
    Returns up to 100 of the first retweets of the tweet identified
    -by statusid

    -Args:
    -  statusid:
    -    The ID of the tweet for which retweets should be searched for

    -Returns:
    -  A list of twitter.Status instances, which are retweets of statusid
    - -
    GetSearch(self, term, geocode=None, since_id=None, per_page=15, page=1, lang='en', show_user='true', query_users=False)
    Return twitter search results for a given term.

    -Args:
    -  term:
    -    term to search by.
    -  since_id:
    -    Returns results with an ID greater than (that is, more recent
    -    than) the specified ID. There are limits to the number of
    -    Tweets which can be accessed through the API. If the limit of
    -    Tweets has occured since the since_id, the since_id will be
    -    forced to the oldest ID available. [Optional]
    -  geocode:
    -    geolocation information in the form (latitude, longitude, radius)
    -    [Optional]
    -  per_page:
    -    number of results to return.  Default is 15 [Optional]
    -  page:
    -    Specifies the page of results to retrieve.
    -    Note: there are pagination limits. [Optional]
    -  lang:
    -    language for results.  Default is English [Optional]
    -  show_user:
    -    prefixes screen name in status
    -  query_users:
    -    If set to False, then all users only have screen_name and
    -    profile_image_url available.
    -    If set to True, all information of users are available,
    -    but it uses lots of request quota, one per status.

    -Returns:
    -  A sequence of twitter.Status instances, one for each message containing
    -  the term
    - -
    GetStatus(self, id)
    Returns a single status message.

    -The twitter.Api instance must be authenticated if the
    -status message is private.

    -Args:
    -  id:
    -    The numeric ID of the status you are trying to retrieve.

    -Returns:
    -  A twitter.Status instance representing that status message
    - -
    GetSubscriptions(self, user, cursor=-1)
    Fetch the sequence of Lists that the given user is subscribed to

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user:
    -    The twitter name or id of the user
    -  cursor:
    -    "page" value that Twitter will use to start building the
    -    list sequence from.  -1 to start at the beginning.
    -    Twitter will return in the result the values for next_cursor
    -    and previous_cursor. [Optional]

    -Returns:
    -  A sequence of twitter.List instances, one for each list
    - -
    GetTrendsCurrent(self, exclude=None)
    Get the current top trending topics

    -Args:
    -  exclude:
    -    Appends the exclude parameter as a request parameter.
    -    Currently only exclude=hashtags is supported. [Optional]

    -Returns:
    -  A list with 10 entries. Each entry contains the twitter.
    - -
    GetTrendsDaily(self, exclude=None, startdate=None)
    Get the current top trending topics for each hour in a given day

    -Args:
    -  startdate:
    -    The start date for the report.
    -    Should be in the format YYYY-MM-DD. [Optional]
    -  exclude:
    -    Appends the exclude parameter as a request parameter.
    -    Currently only exclude=hashtags is supported. [Optional]

    -Returns:
    -  A list with 24 entries. Each entry contains the twitter.
    -  Trend elements that were trending at the corresponding hour of the day.
    - -
    GetTrendsWeekly(self, exclude=None, startdate=None)
    Get the top 30 trending topics for each day in a given week.

    -Args:
    -  startdate:
    -    The start date for the report.
    -    Should be in the format YYYY-MM-DD. [Optional]
    -  exclude:
    -    Appends the exclude parameter as a request parameter.
    -    Currently only exclude=hashtags is supported. [Optional]
    -Returns:
    -  A list with each entry contains the twitter.
    -  Trend elements of trending topics for the corrsponding day of the week
    - -
    GetUser(self, user)
    Returns a single user.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user: The twitter name or id of the user to retrieve.

    -Returns:
    -  A twitter.User instance representing that user
    - -
    GetUserByEmail(self, email)
    Returns a single user by email address.

    -Args:
    -  email:
    -    The email of the user to retrieve.

    -Returns:
    -  A twitter.User instance representing that user
    - -
    GetUserRetweets(self, count=None, since_id=None, max_id=None, include_entities=False)
    Fetch the sequence of retweets made by a single user.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  count:
    -    The number of status messages to retrieve. [Optional]
    -  since_id:
    -    Returns results with an ID greater than (that is, more recent
    -    than) the specified ID. There are limits to the number of
    -    Tweets which can be accessed through the API. If the limit of
    -    Tweets has occured since the since_id, the since_id will be
    -    forced to the oldest ID available. [Optional]
    -  max_id:
    -    Returns results with an ID less than (that is, older than) or
    -    equal to the specified ID. [Optional]
    -  include_entities:
    -    If True, each tweet will include a node called "entities,".
    -    This node offers a variety of metadata about the tweet in a
    -    discreet structure, including: user_mentions, urls, and
    -    hashtags. [Optional]

    -Returns:
    -  A sequence of twitter.Status instances, one for each message up to count
    - -
    GetUserTimeline(self, id=None, user_id=None, screen_name=None, since_id=None, max_id=None, count=None, page=None, include_rts=None, include_entities=None)
    Fetch the sequence of public Status messages for a single user.

    -The twitter.Api instance must be authenticated if the user is private.

    -Args:
    -  id:
    -    Specifies the ID or screen name of the user for whom to return
    -    the user_timeline. [Optional]
    -  user_id:
    -    Specfies the ID of the user for whom to return the
    -    user_timeline. Helpful for disambiguating when a valid user ID
    -    is also a valid screen name. [Optional]
    -  screen_name:
    -    Specfies the screen name of the user for whom to return the
    -    user_timeline. Helpful for disambiguating when a valid screen
    -    name is also a user ID. [Optional]
    -  since_id:
    -    Returns results with an ID greater than (that is, more recent
    -    than) the specified ID. There are limits to the number of
    -    Tweets which can be accessed through the API. If the limit of
    -    Tweets has occured since the since_id, the since_id will be
    -    forced to the oldest ID available. [Optional]
    -  max_id:
    -    Returns only statuses with an ID less than (that is, older
    -    than) or equal to the specified ID. [Optional]
    -  count:
    -    Specifies the number of statuses to retrieve. May not be
    -    greater than 200.  [Optional]
    -  page:
    -    Specifies the page of results to retrieve.
    -    Note: there are pagination limits. [Optional]
    -  include_rts:
    -    If True, the timeline will contain native retweets (if they
    -    exist) in addition to the standard stream of tweets. [Optional]
    -  include_entities:
    -    If True, each tweet will include a node called "entities,".
    -    This node offers a variety of metadata about the tweet in a
    -    discreet structure, including: user_mentions, urls, and
    -    hashtags. [Optional]

    -Returns:
    -  A sequence of Status instances, one for each message up to count
    - -
    MaximumHitFrequency(self)
    Determines the minimum number of seconds that a program must wait
    -before hitting the server again without exceeding the rate_limit
    -imposed for the currently authenticated user.

    -Returns:
    -  The minimum second interval that a program must use so as to not
    -  exceed the rate_limit imposed for the user.
    - -
    PostDirectMessage(self, user, text)
    Post a twitter direct message from the authenticated user

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user: The ID or screen name of the recipient user.
    -  text: The message text to be posted.  Must be less than 140 characters.

    -Returns:
    -  A twitter.DirectMessage instance representing the message posted
    - -
    PostUpdate(self, status, in_reply_to_status_id=None)
    Post a twitter status message from the authenticated user.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  status:
    -    The message text to be posted.
    -    Must be less than or equal to 140 characters.
    -  in_reply_to_status_id:
    -    The ID of an existing status that the status to be posted is
    -    in reply to.  This implicitly sets the in_reply_to_user_id
    -    attribute of the resulting status to the user ID of the
    -    message being replied to.  Invalid/missing status IDs will be
    -    ignored. [Optional]
    -Returns:
    -  A twitter.Status instance representing the message posted.
    - -
    PostUpdates(self, status, continuation=None, **kwargs)
    Post one or more twitter status messages from the authenticated user.

    -Unlike api.PostUpdate, this method will post multiple status updates
    -if the message is longer than 140 characters.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  status:
    -    The message text to be posted.
    -    May be longer than 140 characters.
    -  continuation:
    -    The character string, if any, to be appended to all but the
    -    last message.  Note that Twitter strips trailing '...' strings
    -    from messages.  Consider using the unicode \u2026 character
    -    (horizontal ellipsis) instead. [Defaults to None]
    -  **kwargs:
    -    See api.PostUpdate for a list of accepted parameters.

    -Returns:
    -  A of list twitter.Status instance representing the messages posted.
    - -
    SetCache(self, cache)
    Override the default cache.  Set to None to prevent caching.

    -Args:
    -  cache:
    -    An instance that supports the same API as the twitter._FileCache
    - -
    SetCacheTimeout(self, cache_timeout)
    Override the default cache timeout.

    -Args:
    -  cache_timeout:
    -    Time, in seconds, that responses should be reused.
    - -
    SetCredentials(self, consumer_key, consumer_secret, access_token_key=None, access_token_secret=None)
    Set the consumer_key and consumer_secret for this instance

    -Args:
    -  consumer_key:
    -    The consumer_key of the twitter account.
    -  consumer_secret:
    -    The consumer_secret for the twitter account.
    -  access_token_key:
    -    The oAuth access token key value you retrieved
    -    from running get_access_token.py.
    -  access_token_secret:
    -    The oAuth access token's secret, also retrieved
    -    from the get_access_token.py run.
    - -
    SetSource(self, source)
    Suggest the "from source" value to be displayed on the Twitter web site.

    -The value of the 'source' parameter must be first recognized by
    -the Twitter server.  New source values are authorized on a case by
    -case basis by the Twitter development team.

    -Args:
    -  source:
    -    The source name as a string.  Will be sent to the server as
    -    the 'source' parameter.
    - -
    SetUrllib(self, urllib)
    Override the default urllib implementation.

    -Args:
    -  urllib:
    -    An instance that supports the same API as the urllib2 module
    - -
    SetUserAgent(self, user_agent)
    Override the default user agent

    -Args:
    -  user_agent:
    -    A string that should be send to the server as the User-agent
    - -
    SetXTwitterHeaders(self, client, url, version)
    Set the X-Twitter HTTP headers that will be sent to the server.

    -Args:
    -  client:
    -     The client name as a string.  Will be sent to the server as
    -     the 'X-Twitter-Client' header.
    -  url:
    -     The URL of the meta.xml as a string.  Will be sent to the server
    -     as the 'X-Twitter-Client-URL' header.
    -  version:
    -     The client version as a string.  Will be sent to the server
    -     as the 'X-Twitter-Client-Version' header.
    - -
    UsersLookup(self, user_id=None, screen_name=None, users=None)
    Fetch extended information for the specified users.

    -Users may be specified either as lists of either user_ids,
    -screen_names, or twitter.User objects. The list of users that
    -are queried is the union of all specified parameters.

    -The twitter.Api instance must be authenticated.

    -Args:
    -  user_id:
    -    A list of user_ids to retrieve extended information.
    -    [Optional]
    -  screen_name:
    -    A list of screen_names to retrieve extended information.
    -    [Optional]
    -  users:
    -    A list of twitter.User objects to retrieve extended information.
    -    [Optional]

    -Returns:
    -  A list of twitter.User objects for the requested users
    - -
    VerifyCredentials(self)
    Returns a twitter.User instance if the authenticating user is valid.

    -Returns:
    -  A twitter.User instance representing that user if the
    -  credentials are valid, None otherwise.
    - -
    __init__(self, consumer_key=None, consumer_secret=None, access_token_key=None, access_token_secret=None, input_encoding=None, request_headers=None, cache=<object object at 0x1001da0a0>, shortner=None, base_url=None, use_gzip_compression=False, debugHTTP=False)
    Instantiate a new twitter.Api object.

    -Args:
    -  consumer_key:
    -    Your Twitter user's consumer_key.
    -  consumer_secret:
    -    Your Twitter user's consumer_secret.
    -  access_token_key:
    -    The oAuth access token key value you retrieved
    -    from running get_access_token.py.
    -  access_token_secret:
    -    The oAuth access token's secret, also retrieved
    -    from the get_access_token.py run.
    -  input_encoding:
    -    The encoding used to encode input strings. [Optional]
    -  request_header:
    -    A dictionary of additional HTTP request headers. [Optional]
    -  cache:
    -    The cache instance to use. Defaults to DEFAULT_CACHE.
    -    Use None to disable caching. [Optional]
    -  shortner:
    -    The shortner instance to use.  Defaults to None.
    -    See shorten_url.py for an example shortner. [Optional]
    -  base_url:
    -    The base URL to use to contact the Twitter API.
    -    Defaults to https://twitter.com. [Optional]
    -  use_gzip_compression:
    -    Set to True to tell enable gzip compression for any call
    -    made to Twitter.  Defaults to False. [Optional]
    -  debugHTTP:
    -    Set to True to enable debug output from urllib2 when performing
    -    any HTTP requests.  Defaults to False. [Optional]
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -
    -Data and other attributes defined here:
    -
    DEFAULT_CACHE_TIMEOUT = 60
    - -

    - - - - - - - -
     
    -class DirectMessage(__builtin__.object)
       A class representing the DirectMessage structure used by the twitter API.

    -The DirectMessage structure exposes the following properties:

    -  direct_message.id
    -  direct_message.created_at
    -  direct_message.created_at_in_seconds # read only
    -  direct_message.sender_id
    -  direct_message.sender_screen_name
    -  direct_message.recipient_id
    -  direct_message.recipient_screen_name
    -  direct_message.text
     
     Methods defined here:
    -
    AsDict(self)
    A dict representation of this twitter.DirectMessage instance.

    -The return value uses the same key names as the JSON representation.

    -Return:
    -  A dict representing this twitter.DirectMessage instance
    - -
    AsJsonString(self)
    A JSON string representation of this twitter.DirectMessage instance.

    -Returns:
    -  A JSON string representation of this twitter.DirectMessage instance
    - -
    GetCreatedAt(self)
    Get the time this direct message was posted.

    -Returns:
    -  The time this direct message was posted
    - -
    GetCreatedAtInSeconds(self)
    Get the time this direct message was posted, in seconds since the epoch.

    -Returns:
    -  The time this direct message was posted, in seconds since the epoch.
    - -
    GetId(self)
    Get the unique id of this direct message.

    -Returns:
    -  The unique id of this direct message
    - -
    GetRecipientId(self)
    Get the unique recipient id of this direct message.

    -Returns:
    -  The unique recipient id of this direct message
    - -
    GetRecipientScreenName(self)
    Get the unique recipient screen name of this direct message.

    -Returns:
    -  The unique recipient screen name of this direct message
    - -
    GetSenderId(self)
    Get the unique sender id of this direct message.

    -Returns:
    -  The unique sender id of this direct message
    - -
    GetSenderScreenName(self)
    Get the unique sender screen name of this direct message.

    -Returns:
    -  The unique sender screen name of this direct message
    - -
    GetText(self)
    Get the text of this direct message.

    -Returns:
    -  The text of this direct message.
    - -
    SetCreatedAt(self, created_at)
    Set the time this direct message was posted.

    -Args:
    -  created_at:
    -    The time this direct message was created
    - -
    SetId(self, id)
    Set the unique id of this direct message.

    -Args:
    -  id:
    -    The unique id of this direct message
    - -
    SetRecipientId(self, recipient_id)
    Set the unique recipient id of this direct message.

    -Args:
    -  recipient_id:
    -    The unique recipient id of this direct message
    - -
    SetRecipientScreenName(self, recipient_screen_name)
    Set the unique recipient screen name of this direct message.

    -Args:
    -  recipient_screen_name:
    -    The unique recipient screen name of this direct message
    - -
    SetSenderId(self, sender_id)
    Set the unique sender id of this direct message.

    -Args:
    -  sender_id:
    -    The unique sender id of this direct message
    - -
    SetSenderScreenName(self, sender_screen_name)
    Set the unique sender screen name of this direct message.

    -Args:
    -  sender_screen_name:
    -    The unique sender screen name of this direct message
    - -
    SetText(self, text)
    Set the text of this direct message.

    -Args:
    -  text:
    -    The text of this direct message
    - -
    __eq__(self, other)
    - -
    __init__(self, id=None, created_at=None, sender_id=None, sender_screen_name=None, recipient_id=None, recipient_screen_name=None, text=None)
    An object to hold a Twitter direct message.

    -This class is normally instantiated by the twitter.Api class and
    -returned in a sequence.

    -Note: Dates are posted in the form "Sat Jan 27 04:17:38 +0000 2007"

    -Args:
    -  id:
    -    The unique id of this direct message. [Optional]
    -  created_at:
    -    The time this direct message was posted. [Optional]
    -  sender_id:
    -    The id of the twitter user that sent this message. [Optional]
    -  sender_screen_name:
    -    The name of the twitter user that sent this message. [Optional]
    -  recipient_id:
    -    The id of the twitter that received this message. [Optional]
    -  recipient_screen_name:
    -    The name of the twitter that received this message. [Optional]
    -  text:
    -    The text of this direct message. [Optional]
    - -
    __ne__(self, other)
    - -
    __str__(self)
    A string representation of this twitter.DirectMessage instance.

    -The return value is the same as the JSON string representation.

    -Returns:
    -  A string representation of this twitter.DirectMessage instance.
    - -
    -Static methods defined here:
    -
    NewFromJsonDict(data)
    Create a new instance based on a JSON dict.

    -Args:
    -  data:
    -    A JSON dict, as converted from the JSON in the twitter API

    -Returns:
    -  A twitter.DirectMessage instance
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -
    created_at
    -
    The time this direct message was posted.
    -
    -
    created_at_in_seconds
    -
    The time this direct message was posted, in seconds since the epoch
    -
    -
    id
    -
    The unique id of this direct message.
    -
    -
    recipient_id
    -
    The unique recipient id of this direct message.
    -
    -
    recipient_screen_name
    -
    The unique recipient screen name of this direct message.
    -
    -
    sender_id
    -
    The unique sender id of this direct message.
    -
    -
    sender_screen_name
    -
    The unique sender screen name of this direct message.
    -
    -
    text
    -
    The text of this direct message
    -
    -

    - - - - - - - -
     
    -class Hashtag(__builtin__.object)
       A class represeinting a twitter hashtag
     
     Methods defined here:
    -
    __init__(self, text=None)
    - -
    -Static methods defined here:
    -
    NewFromJsonDict(data)
    Create a new instance based on a JSON dict.

    -Args:
    -  data:
    -    A JSON dict, as converted from the JSON in the twitter API

    -Returns:
    -  A twitter.Hashtag instance
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -

    - - - - - - - -
     
    -class List(__builtin__.object)
       A class representing the List structure used by the twitter API.

    -The List structure exposes the following properties:

    -  list.id
    -  list.name
    -  list.slug
    -  list.description
    -  list.full_name
    -  list.mode
    -  list.uri
    -  list.member_count
    -  list.subscriber_count
    -  list.following
     
     Methods defined here:
    -
    AsDict(self)
    A dict representation of this twitter.List instance.

    -The return value uses the same key names as the JSON representation.

    -Return:
    -  A dict representing this twitter.List instance
    - -
    AsJsonString(self)
    A JSON string representation of this twitter.List instance.

    -Returns:
    -  A JSON string representation of this twitter.List instance
    - -
    GetDescription(self)
    Get the description of this list.

    -Returns:
    -  The description of this list
    - -
    GetFollowing(self)
    Get the following status of this list.

    -Returns:
    -  The following status of this list
    - -
    GetFull_name(self)
    Get the full_name of this list.

    -Returns:
    -  The full_name of this list
    - -
    GetId(self)
    Get the unique id of this list.

    -Returns:
    -  The unique id of this list
    - -
    GetMember_count(self)
    Get the member_count of this list.

    -Returns:
    -  The member_count of this list
    - -
    GetMode(self)
    Get the mode of this list.

    -Returns:
    -  The mode of this list
    - -
    GetName(self)
    Get the real name of this list.

    -Returns:
    -  The real name of this list
    - -
    GetSlug(self)
    Get the slug of this list.

    -Returns:
    -  The slug of this list
    - -
    GetSubscriber_count(self)
    Get the subscriber_count of this list.

    -Returns:
    -  The subscriber_count of this list
    - -
    GetUri(self)
    Get the uri of this list.

    -Returns:
    -  The uri of this list
    - -
    GetUser(self)
    Get the user of this list.

    -Returns:
    -  The owner of this list
    - -
    SetDescription(self, description)
    Set the description of this list.

    -Args:
    -  description:
    -    The description of this list.
    - -
    SetFollowing(self, following)
    Set the following status of this list.

    -Args:
    -  following:
    -    The following of this list.
    - -
    SetFull_name(self, full_name)
    Set the full_name of this list.

    -Args:
    -  full_name:
    -    The full_name of this list.
    - -
    SetId(self, id)
    Set the unique id of this list.

    -Args:
    -  id:
    -    The unique id of this list.
    - -
    SetMember_count(self, member_count)
    Set the member_count of this list.

    -Args:
    -  member_count:
    -    The member_count of this list.
    - -
    SetMode(self, mode)
    Set the mode of this list.

    -Args:
    -  mode:
    -    The mode of this list.
    - -
    SetName(self, name)
    Set the real name of this list.

    -Args:
    -  name:
    -    The real name of this list
    - -
    SetSlug(self, slug)
    Set the slug of this list.

    -Args:
    -  slug:
    -    The slug of this list.
    - -
    SetSubscriber_count(self, subscriber_count)
    Set the subscriber_count of this list.

    -Args:
    -  subscriber_count:
    -    The subscriber_count of this list.
    - -
    SetUri(self, uri)
    Set the uri of this list.

    -Args:
    -  uri:
    -    The uri of this list.
    - -
    SetUser(self, user)
    Set the user of this list.

    -Args:
    -  user:
    -    The owner of this list.
    - -
    __eq__(self, other)
    - -
    __init__(self, id=None, name=None, slug=None, description=None, full_name=None, mode=None, uri=None, member_count=None, subscriber_count=None, following=None, user=None)
    - -
    __ne__(self, other)
    - -
    __str__(self)
    A string representation of this twitter.List instance.

    -The return value is the same as the JSON string representation.

    -Returns:
    -  A string representation of this twitter.List instance.
    - -
    -Static methods defined here:
    -
    NewFromJsonDict(data)
    Create a new instance based on a JSON dict.

    -Args:
    -  data:
    -    A JSON dict, as converted from the JSON in the twitter API

    -Returns:
    -  A twitter.List instance
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -
    description
    -
    The description of this list.
    -
    -
    following
    -
    The following status of this list.
    -
    -
    full_name
    -
    The full_name of this list.
    -
    -
    id
    -
    The unique id of this list.
    -
    -
    member_count
    -
    The member_count of this list.
    -
    -
    mode
    -
    The mode of this list.
    -
    -
    name
    -
    The real name of this list.
    -
    -
    slug
    -
    The slug of this list.
    -
    -
    subscriber_count
    -
    The subscriber_count of this list.
    -
    -
    uri
    -
    The uri of this list.
    -
    -
    user
    -
    The owner of this list.
    -
    -

    - - - - - - - -
     
    -class Status(__builtin__.object)
       A class representing the Status structure used by the twitter API.

    -The Status structure exposes the following properties:

    -  status.created_at
    -  status.created_at_in_seconds # read only
    -  status.favorited
    -  status.in_reply_to_screen_name
    -  status.in_reply_to_user_id
    -  status.in_reply_to_status_id
    -  status.truncated
    -  status.source
    -  status.id
    -  status.text
    -  status.location
    -  status.relative_created_at # read only
    -  status.user
    -  status.urls
    -  status.user_mentions
    -  status.hashtags
     
     Methods defined here:
    -
    AsDict(self)
    A dict representation of this twitter.Status instance.

    -The return value uses the same key names as the JSON representation.

    -Return:
    -  A dict representing this twitter.Status instance
    - -
    AsJsonString(self)
    A JSON string representation of this twitter.Status instance.

    -Returns:
    -  A JSON string representation of this twitter.Status instance
    - -
    GetCreatedAt(self)
    Get the time this status message was posted.

    -Returns:
    -  The time this status message was posted
    - -
    GetCreatedAtInSeconds(self)
    Get the time this status message was posted, in seconds since the epoch.

    -Returns:
    -  The time this status message was posted, in seconds since the epoch.
    - -
    GetFavorited(self)
    Get the favorited setting of this status message.

    -Returns:
    -  True if this status message is favorited; False otherwise
    - -
    GetId(self)
    Get the unique id of this status message.

    -Returns:
    -  The unique id of this status message
    - -
    GetInReplyToScreenName(self)
    - -
    GetInReplyToStatusId(self)
    - -
    GetInReplyToUserId(self)
    - -
    GetLocation(self)
    Get the geolocation associated with this status message

    -Returns:
    -  The geolocation string of this status message.
    - -
    GetNow(self)
    Get the wallclock time for this status message.

    -Used to calculate relative_created_at.  Defaults to the time
    -the object was instantiated.

    -Returns:
    -  Whatever the status instance believes the current time to be,
    -  in seconds since the epoch.
    - -
    GetRelativeCreatedAt(self)
    Get a human redable string representing the posting time

    -Returns:
    -  A human readable string representing the posting time
    - -
    GetSource(self)
    - -
    GetText(self)
    Get the text of this status message.

    -Returns:
    -  The text of this status message.
    - -
    GetTruncated(self)
    - -
    GetUser(self)
    Get a twitter.User reprenting the entity posting this status message.

    -Returns:
    -  A twitter.User reprenting the entity posting this status message
    - -
    SetCreatedAt(self, created_at)
    Set the time this status message was posted.

    -Args:
    -  created_at:
    -    The time this status message was created
    - -
    SetFavorited(self, favorited)
    Set the favorited state of this status message.

    -Args:
    -  favorited:
    -    boolean True/False favorited state of this status message
    - -
    SetId(self, id)
    Set the unique id of this status message.

    -Args:
    -  id:
    -    The unique id of this status message
    - -
    SetInReplyToScreenName(self, in_reply_to_screen_name)
    - -
    SetInReplyToStatusId(self, in_reply_to_status_id)
    - -
    SetInReplyToUserId(self, in_reply_to_user_id)
    - -
    SetLocation(self, location)
    Set the geolocation associated with this status message

    -Args:
    -  location:
    -    The geolocation string of this status message
    - -
    SetNow(self, now)
    Set the wallclock time for this status message.

    -Used to calculate relative_created_at.  Defaults to the time
    -the object was instantiated.

    -Args:
    -  now:
    -    The wallclock time for this instance.
    - -
    SetSource(self, source)
    - -
    SetText(self, text)
    Set the text of this status message.

    -Args:
    -  text:
    -    The text of this status message
    - -
    SetTruncated(self, truncated)
    - -
    SetUser(self, user)
    Set a twitter.User reprenting the entity posting this status message.

    -Args:
    -  user:
    -    A twitter.User reprenting the entity posting this status message
    - -
    __eq__(self, other)
    - -
    __init__(self, created_at=None, favorited=None, id=None, text=None, location=None, user=None, in_reply_to_screen_name=None, in_reply_to_user_id=None, in_reply_to_status_id=None, truncated=None, source=None, now=None, urls=None, user_mentions=None, hashtags=None)
    An object to hold a Twitter status message.

    -This class is normally instantiated by the twitter.Api class and
    -returned in a sequence.

    -Note: Dates are posted in the form "Sat Jan 27 04:17:38 +0000 2007"

    -Args:
    -  created_at:
    -    The time this status message was posted. [Optiona]
    -  favorited:
    -    Whether this is a favorite of the authenticated user. [Optiona]
    -  id:
    -    The unique id of this status message. [Optiona]
    -  text:
    -    The text of this status message. [Optiona]
    -  location:
    -    the geolocation string associated with this message. [Optiona]
    -  relative_created_at:
    -    A human readable string representing the posting time. [Optiona]
    -  user:
    -    A twitter.User instance representing the person posting the
    -    message. [Optiona]
    -  now:
    -    The current time, if the client choses to set it.
    -    Defaults to the wall clock time. [Optiona]
    - -
    __ne__(self, other)
    - -
    __str__(self)
    A string representation of this twitter.Status instance.

    -The return value is the same as the JSON string representation.

    -Returns:
    -  A string representation of this twitter.Status instance.
    - -
    -Static methods defined here:
    -
    NewFromJsonDict(data)
    Create a new instance based on a JSON dict.

    -Args:
    -  data: A JSON dict, as converted from the JSON in the twitter API
    -Returns:
    -  A twitter.Status instance
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -
    created_at
    -
    The time this status message was posted.
    -
    -
    created_at_in_seconds
    -
    The time this status message was posted, in seconds since the epoch
    -
    -
    favorited
    -
    The favorited state of this status message.
    -
    -
    id
    -
    The unique id of this status message.
    -
    -
    in_reply_to_screen_name
    -
    -
    -
    in_reply_to_status_id
    -
    -
    -
    in_reply_to_user_id
    -
    -
    -
    location
    -
    The geolocation string of this status message
    -
    -
    now
    -
    The wallclock time for this status instance.
    -
    -
    relative_created_at
    -
    Get a human readable string representing the posting time
    -
    -
    source
    -
    -
    -
    text
    -
    The text of this status message
    -
    -
    truncated
    -
    -
    -
    user
    -
    A twitter.User reprenting the entity posting this status message
    -
    -

    - - - - - - - -
     
    -class Trend(__builtin__.object)
       A class representing a trending topic
     
     Methods defined here:
    -
    __init__(self, name=None, query=None, timestamp=None)
    - -
    __str__(self)
    - -
    -Static methods defined here:
    -
    NewFromJsonDict(data, timestamp=None)
    Create a new instance based on a JSON dict

    -Args:
    -  data:
    -    A JSON dict
    -  timestamp:
    -    Gets set as the timestamp property of the new object

    -Returns:
    -  A twitter.Trend object
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -

    - - - - - - - -
     
    -class TwitterError(exceptions.Exception)
       Base class for Twitter errors
     
     
    Method resolution order:
    -
    TwitterError
    -
    exceptions.Exception
    -
    exceptions.BaseException
    -
    __builtin__.object
    -
    -
    -Data descriptors defined here:
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -
    message
    -
    Returns the first argument used to construct this error.
    -
    -
    -Methods inherited from exceptions.Exception:
    -
    __init__(...)
    x.__init__(...) initializes x; see x.__class__.__doc__ for signature
    - -
    -Data and other attributes inherited from exceptions.Exception:
    -
    __new__ = <built-in method __new__ of type object at 0x100119f80>
    T.__new__(S, ...) -> a new object with type S, a subtype of T
    - -
    -Methods inherited from exceptions.BaseException:
    -
    __delattr__(...)
    x.__delattr__('name') <==> del x.name
    - -
    __getattribute__(...)
    x.__getattribute__('name') <==> x.name
    - -
    __getitem__(...)
    x.__getitem__(y) <==> x[y]
    - -
    __getslice__(...)
    x.__getslice__(i, j) <==> x[i:j]

    -Use of negative indices is not supported.
    - -
    __reduce__(...)
    - -
    __repr__(...)
    x.__repr__() <==> repr(x)
    - -
    __setattr__(...)
    x.__setattr__('name', value) <==> x.name = value
    - -
    __setstate__(...)
    - -
    __str__(...)
    x.__str__() <==> str(x)
    - -
    __unicode__(...)
    - -
    -Data descriptors inherited from exceptions.BaseException:
    -
    __dict__
    -
    -
    args
    -
    -

    - - - - - - - -
     
    -class Url(__builtin__.object)
       A class representing an URL contained in a tweet
     
     Methods defined here:
    -
    __init__(self, url=None, expanded_url=None)
    - -
    -Static methods defined here:
    -
    NewFromJsonDict(data)
    Create a new instance based on a JSON dict.

    -Args:
    -  data:
    -    A JSON dict, as converted from the JSON in the twitter API

    -Returns:
    -  A twitter.Url instance
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -

    +

     
    + Modules
            + + + + + + + +
    StringIO
    + base64
    + calendar
    + datetime
    + gzip
    +
    httplib
    + oauth2
    + os
    + rfc822
    + json
    +
    sys
    + tempfile
    + textwrap
    + time
    + urllib
    +
    urllib2
    + urlparse
    +
    +
    +

    - - - - - - -
     
    -class User(__builtin__.object)
       A class representing the User structure used by the twitter API.

    -The User structure exposes the following properties:

    -  user.id
    -  user.name
    -  user.screen_name
    -  user.location
    -  user.description
    -  user.profile_image_url
    -  user.profile_background_tile
    -  user.profile_background_image_url
    -  user.profile_sidebar_fill_color
    -  user.profile_background_color
    -  user.profile_link_color
    -  user.profile_text_color
    -  user.protected
    -  user.utc_offset
    -  user.time_zone
    -  user.url
    -  user.status
    -  user.statuses_count
    -  user.followers_count
    -  user.friends_count
    -  user.favourites_count
     
     Methods defined here:
    -
    AsDict(self)
    A dict representation of this twitter.User instance.

    -The return value uses the same key names as the JSON representation.

    -Return:
    -  A dict representing this twitter.User instance
    - -
    AsJsonString(self)
    A JSON string representation of this twitter.User instance.

    -Returns:
    -  A JSON string representation of this twitter.User instance
    - -
    GetDescription(self)
    Get the short text description of this user.

    -Returns:
    -  The short text description of this user
    - -
    GetFavouritesCount(self)
    Get the number of favourites for this user.

    -Returns:
    -  The number of favourites for this user.
    - -
    GetFollowersCount(self)
    Get the follower count for this user.

    -Returns:
    -  The number of users following this user.
    - -
    GetFriendsCount(self)
    Get the friend count for this user.

    -Returns:
    -  The number of users this user has befriended.
    - -
    GetId(self)
    Get the unique id of this user.

    -Returns:
    -  The unique id of this user
    - -
    GetLocation(self)
    Get the geographic location of this user.

    -Returns:
    -  The geographic location of this user
    - -
    GetName(self)
    Get the real name of this user.

    -Returns:
    -  The real name of this user
    - -
    GetProfileBackgroundColor(self)
    - -
    GetProfileBackgroundImageUrl(self)
    - -
    GetProfileBackgroundTile(self)
    Boolean for whether to tile the profile background image.

    -Returns:
    -  True if the background is to be tiled, False if not, None if unset.
    - -
    GetProfileImageUrl(self)
    Get the url of the thumbnail of this user.

    -Returns:
    -  The url of the thumbnail of this user
    - -
    GetProfileLinkColor(self)
    - -
    GetProfileSidebarFillColor(self)
    - -
    GetProfileTextColor(self)
    - -
    GetProtected(self)
    - -
    GetScreenName(self)
    Get the short twitter name of this user.

    -Returns:
    -  The short twitter name of this user
    - -
    GetStatus(self)
    Get the latest twitter.Status of this user.

    -Returns:
    -  The latest twitter.Status of this user
    - -
    GetStatusesCount(self)
    Get the number of status updates for this user.

    -Returns:
    -  The number of status updates for this user.
    - -
    GetTimeZone(self)
    Returns the current time zone string for the user.

    -Returns:
    -  The descriptive time zone string for the user.
    - -
    GetUrl(self)
    Get the homepage url of this user.

    -Returns:
    -  The homepage url of this user
    - -
    GetUtcOffset(self)
    - -
    SetDescription(self, description)
    Set the short text description of this user.

    -Args:
    -  description: The short text description of this user
    - -
    SetFavouritesCount(self, count)
    Set the favourite count for this user.

    -Args:
    -  count:
    -    The number of favourites for this user.
    - -
    SetFollowersCount(self, count)
    Set the follower count for this user.

    -Args:
    -  count:
    -    The number of users following this user.
    - -
    SetFriendsCount(self, count)
    Set the friend count for this user.

    -Args:
    -  count:
    -    The number of users this user has befriended.
    - -
    SetId(self, id)
    Set the unique id of this user.

    -Args:
    -  id: The unique id of this user.
    - -
    SetLocation(self, location)
    Set the geographic location of this user.

    -Args:
    -  location: The geographic location of this user
    - -
    SetName(self, name)
    Set the real name of this user.

    -Args:
    -  name: The real name of this user
    - -
    SetProfileBackgroundColor(self, profile_background_color)
    - -
    SetProfileBackgroundImageUrl(self, profile_background_image_url)
    - -
    SetProfileBackgroundTile(self, profile_background_tile)
    Set the boolean flag for whether to tile the profile background image.

    -Args:
    -  profile_background_tile: Boolean flag for whether to tile or not.
    - -
    SetProfileImageUrl(self, profile_image_url)
    Set the url of the thumbnail of this user.

    -Args:
    -  profile_image_url: The url of the thumbnail of this user
    - -
    SetProfileLinkColor(self, profile_link_color)
    - -
    SetProfileSidebarFillColor(self, profile_sidebar_fill_color)
    - -
    SetProfileTextColor(self, profile_text_color)
    - -
    SetProtected(self, protected)
    - -
    SetScreenName(self, screen_name)
    Set the short twitter name of this user.

    -Args:
    -  screen_name: the short twitter name of this user
    - -
    SetStatus(self, status)
    Set the latest twitter.Status of this user.

    -Args:
    -  status:
    -    The latest twitter.Status of this user
    - -
    SetStatusesCount(self, count)
    Set the status update count for this user.

    -Args:
    -  count:
    -    The number of updates for this user.
    - -
    SetTimeZone(self, time_zone)
    Sets the user's time zone string.

    -Args:
    -  time_zone:
    -    The descriptive time zone to assign for the user.
    - -
    SetUrl(self, url)
    Set the homepage url of this user.

    -Args:
    -  url: The homepage url of this user
    - -
    SetUtcOffset(self, utc_offset)
    - -
    __eq__(self, other)
    - -
    __init__(self, id=None, name=None, screen_name=None, location=None, description=None, profile_image_url=None, profile_background_tile=None, profile_background_image_url=None, profile_sidebar_fill_color=None, profile_background_color=None, profile_link_color=None, profile_text_color=None, protected=None, utc_offset=None, time_zone=None, followers_count=None, friends_count=None, statuses_count=None, favourites_count=None, url=None, status=None)
    - -
    __ne__(self, other)
    - -
    __str__(self)
    A string representation of this twitter.User instance.

    -The return value is the same as the JSON string representation.

    -Returns:
    -  A string representation of this twitter.User instance.
    - -
    -Static methods defined here:
    -
    NewFromJsonDict(data)
    Create a new instance based on a JSON dict.

    -Args:
    -  data:
    -    A JSON dict, as converted from the JSON in the twitter API

    -Returns:
    -  A twitter.User instance
    - -
    -Data descriptors defined here:
    -
    __dict__
    -
    dictionary for instance variables (if defined)
    -
    -
    __weakref__
    -
    list of weak references to the object (if defined)
    -
    -
    description
    -
    The short text description of this user.
    -
    -
    favourites_count
    -
    The number of favourites for this user.
    -
    -
    followers_count
    -
    The number of users following this user.
    -
    -
    friends_count
    -
    The number of friends for this user.
    -
    -
    id
    -
    The unique id of this user.
    -
    -
    location
    -
    The geographic location of this user.
    -
    -
    name
    -
    The real name of this user.
    -
    -
    profile_background_color
    -
    -
    profile_background_image_url
    -
    The url of the profile background of this user.
    -
    -
    profile_background_tile
    -
    Boolean for whether to tile the background image.
    -
    -
    profile_image_url
    -
    The url of the thumbnail of this user.
    -
    -
    profile_link_color
    -
    -
    profile_sidebar_fill_color
    -
    -
    profile_text_color
    -
    -
    protected
    -
    -
    screen_name
    -
    The short twitter name of this user.
    -
    -
    status
    -
    The latest twitter.Status of this user.
    -
    -
    statuses_count
    -
    The number of updates for this user.
    -
    -
    time_zone
    -
    Returns the current time zone string for the user.

    -Returns:
    -  The descriptive time zone string for the user.
    -
    -
    url
    -
    The homepage url of this user.
    -
    -
    utc_offset
    -
    -

    + +  
    + Classes + + + +        +   + +

    +
    __builtin__.object +
    +
    +
    +
    Api +
    +
    DirectMessage +
    +
    Hashtag +
    +
    List +
    +
    Status +
    +
    Trend +
    +
    Url +
    +
    User +
    +
    +
    +
    exceptions.Exception(exceptions.BaseException) +
    +
    +
    +
    TwitterError +
    +
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class Api(__builtin__.object)
       A python interface into the Twitter API
    +  
    + By default, the Api caches results for 1 minute.
    +  
    + Example usage:
    +  
    +   To create an instance of the twitter.Api class, with no authentication:
    +  
    +     >>> import twitter
    +     >>> api = twitter.Api()
    +  
    +   To fetch a single user's public status messages, where "user" is either
    +   a Twitter "short name" or their user id.
    +  
    +     >>> statuses = api.GetUserTimeline(user)
    +     >>> print [s.text for s in statuses]
    +  
    +   To use authentication, instantiate the twitter.Api class with a
    +   consumer key and secret; and the oAuth key and secret:
    +  
    +     >>> api = twitter.Api(consumer_key='twitter consumer key',
    +                           consumer_secret='twitter consumer secret',
    +                           access_token_key='the_key_given',
    +                           access_token_secret='the_key_secret')
    +  
    +   To fetch your friends (after being authenticated):
    +  
    +     >>> users = api.GetFriends()
    +     >>> print [u.name for u in users]
    +  
    +   To post a twitter status message (after being authenticated):
    +  
    +     >>> status = api.PostUpdate('I love python-twitter!')
    +     >>> print status.text
    +     I love python-twitter!
    +  
    +   There are many other methods, including:
    +  
    +     >>> api.PostUpdates(status)
    +     >>> api.PostDirectMessage(user, text)
    +     >>> api.GetUser(user)
    +     >>> api.GetReplies()
    +     >>> api.GetUserTimeline(user)
    +     >>> api.GetStatus(id)
    +     >>> api.DestroyStatus(id)
    +     >>> api.GetFriends(user)
    +     >>> api.GetFollowers()
    +     >>> api.GetFeatured()
    +     >>> api.GetDirectMessages()
    +     >>> api.PostDirectMessage(user, text)
    +     >>> api.DestroyDirectMessage(id)
    +     >>> api.DestroyFriendship(user)
    +     >>> api.CreateFriendship(user)
    +     >>> api.GetUserByEmail(email)
    +     >>> api.VerifyCredentials()
     
     Methods defined here:
    +
    +
    ClearCredentials(self)
    +
    Clear the any credentials for this instance
    +
    + +
    +
    CreateFavorite(self, status)
    +
    Favorites the status specified in the status parameter as the authenticating user.
    + Returns the favorite status when successful.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   The twitter.Status instance to mark as a favorite.
    + Returns:
    +   A twitter.Status instance representing the newly-marked favorite.
    +
    +
    + +
    +
    CreateFriendship(self, user)
    +
    Befriends the user specified in the user parameter as the authenticating user.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   The ID or screen name of the user to befriend.
    + Returns:
    +   A twitter.User instance representing the befriended user.
    +
    +
    + +
    +
    CreateList(self, user, name, mode=None, description=None) +
    +
    Creates a new list with the given name
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user:
    +     Twitter name to create the list for
    +   name:
    +     New name for the list
    +   mode:
    +     'public' or 'private'.
    +     Defaults to 'public'. [Optional]
    +   description:
    +     Description of the list. [Optional]
    +  
    + Returns:
    +   A twitter.List instance representing the new list
    +
    +
    + +
    +
    CreateSubscription(self, owner, + list) +
    +
    Creates a subscription to a list by the authenticated user
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   owner:
    +     User name or id of the owner of the list being subscribed to.
    +   list:
    +     The slug or list id to subscribe the user to
    +  
    + Returns:
    +   A twitter.List instance representing the list subscribed to
    +
    +
    + +
    +
    DestroyDirectMessage(self, id) +
    +
    Destroys the direct message specified in the required ID parameter.
    +  
    + The twitter.Api instance must be authenticated, and the
    + authenticating user must be the recipient of the specified direct
    + message.
    +  
    + Args:
    +   id: The id of the direct message to be destroyed
    +  
    + Returns:
    +   A twitter.DirectMessage instance representing the message destroyed
    +
    +
    + +
    +
    DestroyFavorite(self, status)
    +
    Un-favorites the status specified in the ID parameter as the authenticating user.
    + Returns the un-favorited status in the requested format when successful.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   The twitter.Status to unmark as a favorite.
    + Returns:
    +   A twitter.Status instance representing the newly-unmarked favorite.
    +
    +
    + +
    +
    DestroyFriendship(self, user)
    +
    Discontinues friendship with the user specified in the user parameter.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   The ID or screen name of the user  with whom to discontinue friendship.
    + Returns:
    +   A twitter.User instance representing the discontinued friend.
    +
    +
    + +
    +
    DestroyList(self, user, id)
    +
    Destroys the list from the given user
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user:
    +     The user to remove the list from.
    +   id:
    +     The slug or id of the list to remove.
    + Returns:
    +   A twitter.List instance representing the removed list.
    +
    +
    + +
    +
    DestroyStatus(self, id)
    +
    Destroys the status specified by the required ID parameter.
    +  
    + The twitter.Api instance must be authenticated and the
    + authenticating user must be the author of the specified status.
    +  
    + Args:
    +   id:
    +     The numerical ID of the status you're trying to destroy.
    +  
    + Returns:
    +   A twitter.Status instance representing the destroyed status message
    +
    +
    + +
    +
    DestroySubscription(self, owner, + list) +
    +
    Destroys the subscription to a list for the authenticated user
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   owner:
    +     The user id or screen name of the user that owns the
    +     list that is to be unsubscribed from
    +   list:
    +     The slug or list id of the list to unsubscribe from
    +  
    + Returns:
    +   A twitter.List instance representing the removed list.
    +
    +
    + +
    +
    FilterPublicTimeline(self, term, + since_id=None) +
    +
    Filter the public twitter timeline by a given search term on
    + the local machine.
    +  
    + Args:
    +   term:
    +     term to search by.
    +   since_id:
    +     Returns results with an ID greater than (that is, more recent
    +     than) the specified ID. There are limits to the number of
    +     Tweets which can be accessed through the API. If the limit of
    +     Tweets has occured since the since_id, the since_id will be
    +     forced to the oldest ID available. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.Status instances, one for each message
    +   containing the term
    +
    + +
    +
    GetDirectMessages(self, since=None, since_id=None, page=None) +
    +
    Returns a list of the direct messages sent to the authenticating user.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   since:
    +     Narrows the returned results to just those statuses created
    +     after the specified HTTP-formatted date. [Optional]
    +   since_id:
    +     Returns results with an ID greater than (that is, more recent
    +     than) the specified ID. There are limits to the number of
    +     Tweets which can be accessed through the API. If the limit of
    +     Tweets has occured since the since_id, the since_id will be
    +     forced to the oldest ID available. [Optional]
    +   page:
    +     Specifies the page of results to retrieve.
    +     Note: there are pagination limits. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.DirectMessage instances
    +
    + +
    +
    GetFavorites(self, user=None, page=None) +
    +
    Return a list of Status objects representing favorited tweets.
    + By default, returns the (up to) 20 most recent tweets for the
    + authenticated user.
    +  
    + Args:
    +   user:
    +     The twitter name or id of the user whose favorites you are fetching.
    +     If not specified, defaults to the authenticated user. [Optional]
    +   page:
    +     Specifies the page of results to retrieve.
    +     Note: there are pagination limits. [Optional]
    +
    +
    + +
    +
    GetFeatured(self)
    +
    Fetch the sequence of twitter.User instances featured on twitter.com
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Returns:
    +   A sequence of twitter.User instances
    +
    +
    + +
    +
    GetFollowerIDs(self, userid=None, cursor=-1) +
    +
    Fetch the sequence of twitter.User instances, one for each follower
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Returns:
    +   A sequence of twitter.User instances, one for each follower
    +
    +
    + +
    +
    GetFollowers(self, page=None) +
    +
    Fetch the sequence of twitter.User instances, one for each follower
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   page:
    +     Specifies the page of results to retrieve.
    +     Note: there are pagination limits. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.User instances, one for each follower
    +
    +
    + +
    +
    GetFriendIDs(self, user=None, cursor=-1) +
    +
    Returns a list of twitter user id's for every person
    + the specified user is following.
    +  
    + Args:
    +   user:
    +     The id or screen_name of the user to retrieve the id list for
    +     [Optional]
    +  
    + Returns:
    +   A list of integers, one for each user id.
    +
    +
    + +
    +
    GetFriends(self, user=None, cursor=-1) +
    +
    Fetch the sequence of twitter.User instances, one for each friend.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user:
    +     The twitter name or id of the user whose friends you are fetching.
    +     If not specified, defaults to the authenticated user. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.User instances, one for each friend
    +
    +
    + +
    +
    GetLists(self, user, cursor=-1) +
    +
    Fetch the sequence of lists for a user.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user:
    +     The twitter name or id of the user whose friends you are fetching.
    +     If the passed in user is the same as the authenticated user
    +     then you will also receive private list data.
    +   cursor:
    +     "page" value that Twitter will use to start building the
    +     list sequence from.  -1 to start at the beginning.
    +     Twitter will return in the result the values for next_cursor
    +     and previous_cursor. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.List instances, one for each list
    +
    +
    + +
    +
    GetMentions(self, since_id=None, max_id=None, page=None) +
    +
    Returns the 20 most recent mentions (status containing @twitterID)
    + for the authenticating user.
    +  
    + Args:
    +   since_id:
    +     Returns results with an ID greater than (that is, more recent
    +     than) the specified ID. There are limits to the number of
    +     Tweets which can be accessed through the API. If the limit of
    +     Tweets has occured since the since_id, the since_id will be
    +     forced to the oldest ID available. [Optional]
    +   max_id:
    +     Returns only statuses with an ID less than
    +     (that is, older than) the specified ID.  [Optional]
    +   page:
    +     Specifies the page of results to retrieve.
    +     Note: there are pagination limits. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.Status instances, one for each mention of the user.
    +
    +
    + +
    +
    GetRateLimitStatus(self)
    +
    Fetch the rate limit status for the currently authorized user.
    +  
    + Returns:
    +   A dictionary containing the time the limit will reset (reset_time),
    +   the number of remaining hits allowed before the reset (remaining_hits),
    +   the number of hits allowed in a 60-minute period (hourly_limit), and
    +   the time of the reset in seconds since The Epoch (reset_time_in_seconds).
    +
    +
    + +
    +
    GetReplies(self, since=None, since_id=None, page=None) +
    +
    Get a sequence of status messages representing the 20 most
    + recent replies (status updates prefixed with @twitterID) to the
    + authenticating user.
    +  
    + Args:
    +   since_id:
    +     Returns results with an ID greater than (that is, more recent
    +     than) the specified ID. There are limits to the number of
    +     Tweets which can be accessed through the API. If the limit of
    +     Tweets has occured since the since_id, the since_id will be
    +     forced to the oldest ID available. [Optional]
    +   page:
    +     Specifies the page of results to retrieve.
    +     Note: there are pagination limits. [Optional]
    +   since:
    +  
    + Returns:
    +   A sequence of twitter.Status instances, one for each reply to the user.
    +
    +
    + +
    +
    GetRetweets(self, statusid)
    +
    Returns up to 100 of the first retweets of the tweet identified
    + by statusid
    +  
    + Args:
    +   statusid:
    +     The ID of the tweet for which retweets should be searched for
    +  
    + Returns:
    +   A list of twitter.Status instances, which are retweets of statusid
    +
    +
    + +
    +
    GetSearch(self, term, geocode=None, since_id=None, + per_page=15, page=1, lang='en', show_user='true', + query_users=False) +
    +
    + Return twitter search results for a given term.
    +  
    + Args:
    +   term:
    +     term to search by.
    +   since_id:
    +     Returns results with an ID greater than (that is, more recent
    +     than) the specified ID. There are limits to the number of
    +     Tweets which can be accessed through the API. If the limit of
    +     Tweets has occured since the since_id, the since_id will be
    +     forced to the oldest ID available. [Optional]
    +   geocode:
    +     geolocation information in the form (latitude, longitude, radius)
    +     [Optional]
    +   per_page:
    +     number of results to return.  Default is 15 [Optional]
    +   page:
    +     Specifies the page of results to retrieve.
    +     Note: there are pagination limits. [Optional]
    +   lang:
    +     language for results.  Default is English [Optional]
    +   show_user:
    +     prefixes screen name in status
    +   query_users:
    +     If set to False, then all users only have screen_name and
    +     profile_image_url available.
    +     If set to True, all information of users are available,
    +     but it uses lots of request quota, one per status.
    +  
    + Returns:
    +   A sequence of twitter.Status instances, one for each message containing
    +   the term
    +
    + +
    +
    GetStatus(self, id)
    +
    Returns a single status message.
    +  
    + The twitter.Api instance must be authenticated if the
    + status message is private.
    +  
    + Args:
    +   id:
    +     The numeric ID of the status you are trying to retrieve.
    +  
    + Returns:
    +   A twitter.Status instance representing that status message
    +
    +
    + +
    +
    GetSubscriptions(self, user, + cursor=-1) +
    +
    Fetch the sequence of Lists that the given user is subscribed to
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user:
    +     The twitter name or id of the user
    +   cursor:
    +     "page" value that Twitter will use to start building the
    +     list sequence from.  -1 to start at the beginning.
    +     Twitter will return in the result the values for next_cursor
    +     and previous_cursor. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.List instances, one for each list
    +
    +
    + +
    +
    GetTrendsCurrent(self, exclude=None) +
    +
    Get the current top trending topics
    +  
    + Args:
    +   exclude:
    +     Appends the exclude parameter as a request parameter.
    +     Currently only exclude=hashtags is supported. [Optional]
    +  
    + Returns:
    +   A list with 10 entries. Each entry contains the twitter.
    +
    +
    + +
    +
    GetTrendsDaily(self, exclude=None, startdate=None) +
    +
    Get the current top trending topics for each hour in a given day
    +  
    + Args:
    +   startdate:
    +     The start date for the report.
    +     Should be in the format YYYY-MM-DD. [Optional]
    +   exclude:
    +     Appends the exclude parameter as a request parameter.
    +     Currently only exclude=hashtags is supported. [Optional]
    +  
    + Returns:
    +   A list with 24 entries. Each entry contains the twitter.
    +   Trend elements that were trending at the corresponding hour of the day.
    +
    +
    + +
    +
    GetTrendsWeekly(self, exclude=None, startdate=None) +
    +
    Get the top 30 trending topics for each day in a given week.
    +  
    + Args:
    +   startdate:
    +     The start date for the report.
    +     Should be in the format YYYY-MM-DD. [Optional]
    +   exclude:
    +     Appends the exclude parameter as a request parameter.
    +     Currently only exclude=hashtags is supported. [Optional]
    + Returns:
    +   A list with each entry contains the twitter.
    +   Trend elements of trending topics for the corrsponding day of the week
    +
    +
    + +
    +
    GetUser(self, user)
    +
    Returns a single user.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user: The twitter name or id of the user to retrieve.
    +  
    + Returns:
    +   A twitter.User instance representing that user
    +
    +
    + +
    +
    GetUserByEmail(self, email)
    +
    Returns a single user by email address.
    +  
    + Args:
    +   email:
    +     The email of the user to retrieve.
    +  
    + Returns:
    +   A twitter.User instance representing that user
    +
    +
    + +
    +
    GetUserRetweets(self, count=None, since_id=None, + max_id=None, include_entities=False) +
    +
    Fetch the sequence of retweets made by a single user.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   count:
    +     The number of status messages to retrieve. [Optional]
    +   since_id:
    +     Returns results with an ID greater than (that is, more recent
    +     than) the specified ID. There are limits to the number of
    +     Tweets which can be accessed through the API. If the limit of
    +     Tweets has occured since the since_id, the since_id will be
    +     forced to the oldest ID available. [Optional]
    +   max_id:
    +     Returns results with an ID less than (that is, older than) or
    +     equal to the specified ID. [Optional]
    +   include_entities:
    +     If True, each tweet will include a node called "entities,".
    +     This node offers a variety of metadata about the tweet in a
    +     discreet structure, including: user_mentions, urls, and
    +     hashtags. [Optional]
    +  
    + Returns:
    +   A sequence of twitter.Status instances, one for each message up to count
    +
    +
    + +
    +
    GetUserTimeline(self, id=None, user_id=None, screen_name=None, since_id=None, + max_id=None, count=None, + page=None, include_rts=None, + include_entities=None) +
    +
    Fetch the sequence of public Status messages for a single user.
    +  
    + The twitter.Api instance must be authenticated if the user is private.
    +  
    + Args:
    +   id:
    +     Specifies the ID or screen name of the user for whom to return
    +     the user_timeline. [Optional]
    +   user_id:
    +     Specfies the ID of the user for whom to return the
    +     user_timeline. Helpful for disambiguating when a valid user ID
    +     is also a valid screen name. [Optional]
    +   screen_name:
    +     Specfies the screen name of the user for whom to return the
    +     user_timeline. Helpful for disambiguating when a valid screen
    +     name is also a user ID. [Optional]
    +   since_id:
    +     Returns results with an ID greater than (that is, more recent
    +     than) the specified ID. There are limits to the number of
    +     Tweets which can be accessed through the API. If the limit of
    +     Tweets has occured since the since_id, the since_id will be
    +     forced to the oldest ID available. [Optional]
    +   max_id:
    +     Returns only statuses with an ID less than (that is, older
    +     than) or equal to the specified ID. [Optional]
    +   count:
    +     Specifies the number of statuses to retrieve. May not be
    +     greater than 200.  [Optional]
    +   page:
    +     Specifies the page of results to retrieve.
    +     Note: there are pagination limits. [Optional]
    +   include_rts:
    +     If True, the timeline will contain native retweets (if they
    +     exist) in addition to the standard stream of tweets. [Optional]
    +   include_entities:
    +     If True, each tweet will include a node called "entities,".
    +     This node offers a variety of metadata about the tweet in a
    +     discreet structure, including: user_mentions, urls, and
    +     hashtags. [Optional]
    +  
    + Returns:
    +   A sequence of Status instances, one for each message up to count
    +
    +
    + +
    +
    MaximumHitFrequency(self)
    +
    Determines the minimum number of seconds that a program must wait
    + before hitting the server again without exceeding the rate_limit
    + imposed for the currently authenticated user.
    +  
    + Returns:
    +   The minimum second interval that a program must use so as to not
    +   exceed the rate_limit imposed for the user.
    +
    +
    + +
    +
    PostDirectMessage(self, user, text) +
    +
    Post a twitter direct message from the authenticated user
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user: The ID or screen name of the recipient user.
    +   text: The message text to be posted.  Must be less than 140 characters.
    +  
    + Returns:
    +   A twitter.DirectMessage instance representing the message posted
    +
    +
    + +
    +
    PostUpdate(self, status, + in_reply_to_status_id=None) +
    +
    Post a twitter status message from the authenticated user.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   status:
    +     The message text to be posted.
    +     Must be less than or equal to 140 characters.
    +   in_reply_to_status_id:
    +     The ID of an existing status that the status to be posted is
    +     in reply to.  This implicitly sets the in_reply_to_user_id
    +     attribute of the resulting status to the user ID of the
    +     message being replied to.  Invalid/missing status IDs will be
    +     ignored. [Optional]
    + Returns:
    +   A twitter.Status instance representing the message posted.
    +
    +
    + +
    +
    PostUpdates(self, status, + continuation=None, **kwargs) +
    +
    Post one or more twitter status messages from the authenticated user.
    +  
    + Unlike api.PostUpdate, this method will post multiple status updates
    + if the message is longer than 140 characters.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   status:
    +     The message text to be posted.
    +     May be longer than 140 characters.
    +   continuation:
    +     The character string, if any, to be appended to all but the
    +     last message.  Note that Twitter strips trailing '...' strings
    +     from messages.  Consider using the unicode \u2026 character
    +     (horizontal ellipsis) instead. [Defaults to None]
    +   **kwargs:
    +     See api.PostUpdate for a list of accepted parameters.
    +  
    + Returns:
    +   A of list twitter.Status instance representing the messages posted.
    +
    +
    + +
    +
    SetCache(self, cache)
    +
    Override the default cache.  Set to None to prevent caching.
    +  
    + Args:
    +   cache:
    +     An instance that supports the same API as the twitter._FileCache
    +
    +
    + +
    +
    SetCacheTimeout(self, cache_timeout) +
    +
    Override the default cache timeout.
    +  
    + Args:
    +   cache_timeout:
    +     Time, in seconds, that responses should be reused.
    +
    +
    + +
    +
    SetCredentials(self, consumer_key, + consumer_secret, access_token_key=None, access_token_secret=None) +
    +
    Set the consumer_key and consumer_secret for this instance
    +  
    + Args:
    +   consumer_key:
    +     The consumer_key of the twitter account.
    +   consumer_secret:
    +     The consumer_secret for the twitter account.
    +   access_token_key:
    +     The oAuth access token key value you retrieved
    +     from running get_access_token.py.
    +   access_token_secret:
    +     The oAuth access token's secret, also retrieved
    +     from the get_access_token.py run.
    +
    + +
    +
    SetSource(self, source)
    +
    Suggest the "from source" value to be displayed on the Twitter web site.
    +  
    + The value of the 'source' parameter must be first recognized by
    + the Twitter server.  New source values are authorized on a case by
    + case basis by the Twitter development team.
    +  
    + Args:
    +   source:
    +     The source name as a string.  Will be sent to the server as
    +     the 'source' parameter.
    +
    + +
    +
    SetUrllib(self, urllib)
    +
    Override the default urllib implementation.
    +  
    + Args:
    +   urllib:
    +     An instance that supports the same API as the urllib2 module
    +
    +
    + +
    +
    SetUserAgent(self, user_agent)
    +
    Override the default user agent
    +  
    + Args:
    +   user_agent:
    +     A string that should be send to the server as the User-agent
    +
    + +
    +
    SetXTwitterHeaders(self, client, + url, version) +
    +
    Set the X-Twitter HTTP headers that will be sent to the server.
    +  
    + Args:
    +   client:
    +      The client name as a string.  Will be sent to the server as
    +      the 'X-Twitter-Client' header.
    +   url:
    +      The URL of the meta.xml as a string.  Will be sent to the server
    +      as the 'X-Twitter-Client-URL' header.
    +   version:
    +      The client version as a string.  Will be sent to the server
    +      as the 'X-Twitter-Client-Version' header.
    +
    +
    + +
    +
    UsersLookup(self, user_id=None, screen_name=None, + users=None) +
    +
    + Fetch extended information for the specified users.
    +  
    + Users may be specified either as lists of either user_ids,
    + screen_names, or twitter.User objects. The list of users that
    + are queried is the union of all specified parameters.
    +  
    + The twitter.Api instance must be authenticated.
    +  
    + Args:
    +   user_id:
    +     A list of user_ids to retrieve extended information.
    +     [Optional]
    +   screen_name:
    +     A list of screen_names to retrieve extended information.
    +     [Optional]
    +   users:
    +     A list of twitter.User objects to retrieve extended information.
    +     [Optional]
    +  
    + Returns:
    +   A list of twitter.User objects for the requested users
    +
    +
    + +
    +
    VerifyCredentials(self)
    +
    Returns a twitter.User instance if the authenticating user is valid.
    +  
    + Returns:
    +   A twitter.User instance representing that user if the
    +   credentials are valid, None otherwise.
    +
    + +
    +
    __init__(self, consumer_key=None, consumer_secret=None, + access_token_key=None, access_token_secret=None, input_encoding=None, + request_headers=None, cache=<object + object at 0x1001da0a0>, shortner=None, + base_url=None, use_gzip_compression=False, + debugHTTP=False) +
    +
    Instantiate a new twitter.Api object.
    +  
    + Args:
    +   consumer_key:
    +     Your Twitter user's consumer_key.
    +   consumer_secret:
    +     Your Twitter user's consumer_secret.
    +   access_token_key:
    +     The oAuth access token key value you retrieved
    +     from running get_access_token.py.
    +   access_token_secret:
    +     The oAuth access token's secret, also retrieved
    +     from the get_access_token.py run.
    +   input_encoding:
    +     The encoding used to encode input strings. [Optional]
    +   request_header:
    +     A dictionary of additional HTTP request headers. [Optional]
    +   cache:
    +     The cache instance to use. Defaults to DEFAULT_CACHE.
    +     Use None to disable caching. [Optional]
    +   shortner:
    +     The shortner instance to use.  Defaults to None.
    +     See shorten_url.py for an example shortner. [Optional]
    +   base_url:
    +     The base URL to use to contact the Twitter API.
    +     Defaults to https://twitter.com. [Optional]
    +   use_gzip_compression:
    +     Set to True to tell enable gzip compression for any call
    +     made to Twitter.  Defaults to False. [Optional]
    +   debugHTTP:
    +     Set to True to enable debug output from urllib2 when performing
    +     any HTTP requests.  Defaults to False. [Optional]
    +
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    + Data and other attributes defined here:
    +
    +
    DEFAULT_CACHE_TIMEOUT = 60 +
    + +
    +

    + + + + + + + + + + + + + +
     
    + class DirectMessage(__builtin__.object)
       A class representing the DirectMessage structure used by the twitter API.
    +  
    + The DirectMessage structure exposes the following properties:
    +  
    +   direct_message.id
    +   direct_message.created_at
    +   direct_message.created_at_in_seconds # read only
    +   direct_message.sender_id
    +   direct_message.sender_screen_name
    +   direct_message.recipient_id
    +   direct_message.recipient_screen_name
    +   direct_message.text
     
     Methods defined here:
    +
    +
    AsDict(self)
    +
    A dict representation of this twitter.DirectMessage instance.
    +  
    + The return value uses the same key names as the JSON representation.
    +  
    + Return:
    +   A dict representing this twitter.DirectMessage instance
    +
    + +
    +
    AsJsonString(self)
    +
    A JSON string representation of this twitter.DirectMessage instance.
    +  
    + Returns:
    +   A JSON string representation of this twitter.DirectMessage instance
    +
    + +
    +
    GetCreatedAt(self)
    +
    Get the time this direct message was posted.
    +  
    + Returns:
    +   The time this direct message was posted
    +
    +
    + +
    +
    GetCreatedAtInSeconds(self) +
    +
    Get the time this direct message was posted, in seconds since the epoch.
    +  
    + Returns:
    +   The time this direct message was posted, in seconds since the epoch.
    +
    +
    + +
    +
    GetId(self)
    +
    Get the unique id of this direct message.
    +  
    + Returns:
    +   The unique id of this direct message
    +
    + +
    +
    GetRecipientId(self)
    +
    Get the unique recipient id of this direct message.
    +  
    + Returns:
    +   The unique recipient id of this direct message
    +
    +
    + +
    +
    + GetRecipientScreenName(self) +
    +
    Get the unique recipient screen name of this direct message.
    +  
    + Returns:
    +   The unique recipient screen name of this direct message
    +
    +
    + +
    +
    GetSenderId(self)
    +
    Get the unique sender id of this direct message.
    +  
    + Returns:
    +   The unique sender id of this direct message
    +
    +
    + +
    +
    GetSenderScreenName(self) +
    +
    Get the unique sender screen name of this direct message.
    +  
    + Returns:
    +   The unique sender screen name of this direct message
    +
    +
    + +
    +
    GetText(self)
    +
    Get the text of this direct message.
    +  
    + Returns:
    +   The text of this direct message.
    +
    + +
    +
    SetCreatedAt(self, created_at) +
    +
    Set the time this direct message was posted.
    +  
    + Args:
    +   created_at:
    +     The time this direct message was created
    +
    +
    + +
    +
    SetId(self, id)
    +
    Set the unique id of this direct message.
    +  
    + Args:
    +   id:
    +     The unique id of this direct message
    +
    +
    + +
    +
    SetRecipientId(self, + recipient_id) +
    +
    Set the unique recipient id of this direct message.
    +  
    + Args:
    +   recipient_id:
    +     The unique recipient id of this direct message
    +
    +
    + +
    +
    + SetRecipientScreenName(self, + recipient_screen_name) +
    +
    Set the unique recipient screen name of this direct message.
    +  
    + Args:
    +   recipient_screen_name:
    +     The unique recipient screen name of this direct message
    +
    +
    + +
    +
    SetSenderId(self, sender_id) +
    +
    Set the unique sender id of this direct message.
    +  
    + Args:
    +   sender_id:
    +     The unique sender id of this direct message
    +
    +
    + +
    +
    SetSenderScreenName(self, + sender_screen_name) +
    +
    Set the unique sender screen name of this direct message.
    +  
    + Args:
    +   sender_screen_name:
    +     The unique sender screen name of this direct message
    +
    +
    + +
    +
    SetText(self, text)
    +
    Set the text of this direct message.
    +  
    + Args:
    +   text:
    +     The text of this direct message
    +
    +
    + +
    +
    __eq__(self, other)
    +
    + +
    +
    __init__(self, id=None, created_at=None, + sender_id=None, sender_screen_name=None, + recipient_id=None, recipient_screen_name=None, text=None) +
    +
    An object to hold a Twitter direct message.
    +  
    + This class is normally instantiated by the twitter.Api class and
    + returned in a sequence.
    +  
    + Note: Dates are posted in the form "Sat Jan 27 04:17:38 +0000 2007"
    +  
    + Args:
    +   id:
    +     The unique id of this direct message. [Optional]
    +   created_at:
    +     The time this direct message was posted. [Optional]
    +   sender_id:
    +     The id of the twitter user that sent this message. [Optional]
    +   sender_screen_name:
    +     The name of the twitter user that sent this message. [Optional]
    +   recipient_id:
    +     The id of the twitter that received this message. [Optional]
    +   recipient_screen_name:
    +     The name of the twitter that received this message. [Optional]
    +   text:
    +     The text of this direct message. [Optional]
    +
    +
    + +
    +
    __ne__(self, other)
    +
    + +
    +
    __str__(self)
    +
    A string representation of this twitter.DirectMessage instance.
    +  
    + The return value is the same as the JSON string representation.
    +  
    + Returns:
    +   A string representation of this twitter.DirectMessage instance.
    +
    + +
    + Static methods defined here:
    +
    +
    NewFromJsonDict(data)
    +
    + Create a new instance based on a JSON dict.
    +  
    + Args:
    +   data:
    +     A JSON dict, as converted from the JSON in the twitter API
    +  
    + Returns:
    +   A twitter.DirectMessage instance
    +
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +
    created_at
    +
    The time this direct message was posted.
    +
    +
    +
    created_at_in_seconds
    +
    The time this direct message was posted, in seconds since the epoch +
    +
    +
    +
    id
    +
    The unique id of this direct message.
    +
    +
    +
    recipient_id
    +
    + The unique recipient id of this direct message. +
    +
    +
    +
    recipient_screen_name
    +
    The unique recipient screen name of this direct message. +
    +
    +
    +
    sender_id
    +
    The unique sender id of this direct message. +
    +
    +
    +
    sender_screen_name
    +
    The unique sender screen name of this direct message. +
    +
    +
    +
    text
    +
    The text of this direct message
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class + Hashtag(__builtin__.object)
       A class represeinting a twitter hashtag
     
    +
     Methods defined here:
    +
    +
    __init__(self, text=None) +
    +
    + +
    + Static methods defined here:
    +
    +
    NewFromJsonDict(data)
    +
    + Create a new instance based on a JSON dict.
    +  
    + Args:
    +   data:
    +     A JSON dict, as converted from the JSON in the twitter API
    +  
    + Returns:
    +   A twitter.Hashtag instance
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class List(__builtin__.object)
       A class representing the List structure used by the twitter API.
    +  
    + The List structure exposes the following properties:
    +  
    +   list.id
    +   list.name
    +   list.slug
    +   list.description
    +   list.full_name
    +   list.mode
    +   list.uri
    +   list.member_count
    +   list.subscriber_count
    +   list.following
     
     Methods defined here:
    +
    +
    AsDict(self)
    +
    A dict representation of this twitter.List instance.
    +  
    + The return value uses the same key names as the JSON representation.
    +  
    + Return:
    +   A dict representing this twitter.List instance
    +
    + +
    +
    AsJsonString(self)
    +
    A JSON string representation of this twitter.List instance.
    +  
    + Returns:
    +   A JSON string representation of this twitter.List instance
    +
    + +
    +
    GetDescription(self)
    +
    Get the description of this list.
    +  
    + Returns:
    +   The description of this list
    +
    + +
    +
    GetFollowing(self)
    +
    Get the following status of this list.
    +  
    + Returns:
    +   The following status of this list
    +
    + +
    +
    GetFull_name(self)
    +
    Get the full_name of this list.
    +  
    + Returns:
    +   The full_name of this list
    +
    + +
    +
    GetId(self)
    +
    Get the unique id of this list.
    +  
    + Returns:
    +   The unique id of this list
    +
    + +
    +
    GetMember_count(self)
    +
    Get the member_count of this list.
    +  
    + Returns:
    +   The member_count of this list
    +
    + +
    +
    GetMode(self)
    +
    Get the mode of this list.
    +  
    + Returns:
    +   The mode of this list
    +
    + +
    +
    GetName(self)
    +
    Get the real name of this list.
    +  
    + Returns:
    +   The real name of this list
    +
    + +
    +
    GetSlug(self)
    +
    Get the slug of this list.
    +  
    + Returns:
    +   The slug of this list
    +
    + +
    +
    GetSubscriber_count(self)
    +
    Get the subscriber_count of this list.
    +  
    + Returns:
    +   The subscriber_count of this list
    +
    + +
    +
    GetUri(self)
    +
    Get the uri of this list.
    +  
    + Returns:
    +   The uri of this list
    +
    + +
    +
    GetUser(self)
    +
    Get the user of this list.
    +  
    + Returns:
    +   The owner of this list
    +
    + +
    +
    SetDescription(self, description) +
    +
    Set the description of this list.
    +  
    + Args:
    +   description:
    +     The description of this list.
    +
    + +
    +
    SetFollowing(self, following)
    +
    Set the following status of this list.
    +  
    + Args:
    +   following:
    +     The following of this list.
    +
    + +
    +
    SetFull_name(self, full_name)
    +
    Set the full_name of this list.
    +  
    + Args:
    +   full_name:
    +     The full_name of this list.
    +
    + +
    +
    SetId(self, id)
    +
    Set the unique id of this list.
    +  
    + Args:
    +   id:
    +     The unique id of this list.
    +
    + +
    +
    SetMember_count(self, member_count) +
    +
    Set the member_count of this list.
    +  
    + Args:
    +   member_count:
    +     The member_count of this list.
    +
    + +
    +
    SetMode(self, mode)
    +
    Set the mode of this list.
    +  
    + Args:
    +   mode:
    +     The mode of this list.
    +
    + +
    +
    SetName(self, name)
    +
    Set the real name of this list.
    +  
    + Args:
    +   name:
    +     The real name of this list
    +
    + +
    +
    SetSlug(self, slug)
    +
    Set the slug of this list.
    +  
    + Args:
    +   slug:
    +     The slug of this list.
    +
    + +
    +
    SetSubscriber_count(self, + subscriber_count) +
    +
    Set the subscriber_count of this list.
    +  
    + Args:
    +   subscriber_count:
    +     The subscriber_count of this list.
    +
    + +
    +
    SetUri(self, uri)
    +
    Set the uri of this list.
    +  
    + Args:
    +   uri:
    +     The uri of this list.
    +
    + +
    +
    SetUser(self, user)
    +
    Set the user of this list.
    +  
    + Args:
    +   user:
    +     The owner of this list.
    +
    + +
    +
    __eq__(self, other)
    +
    + +
    +
    __init__(self, id=None, + name=None, slug=None, + description=None, full_name=None, mode=None, uri=None, member_count=None, + subscriber_count=None, following=None, user=None) +
    +
    + +
    +
    __ne__(self, other)
    +
    + +
    +
    __str__(self)
    +
    A string representation of this twitter.List instance.
    +  
    + The return value is the same as the JSON string representation.
    +  
    + Returns:
    +   A string representation of this twitter.List instance.
    +
    + +
    + Static methods defined here:
    +
    +
    NewFromJsonDict(data)
    +
    + Create a new instance based on a JSON dict.
    +  
    + Args:
    +   data:
    +     A JSON dict, as converted from the JSON in the twitter API
    +  
    + Returns:
    +   A twitter.List instance
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +
    description
    +
    The description of this list.
    +
    +
    +
    following
    +
    The following status of this list.
    +
    +
    +
    full_name
    +
    The full_name of this list.
    +
    +
    +
    id
    +
    The unique id of this list.
    +
    +
    +
    member_count
    +
    The member_count of this list.
    +
    +
    +
    mode
    +
    The mode of this list.
    +
    +
    +
    name
    +
    The real name of this list.
    +
    +
    +
    slug
    +
    The slug of this list.
    +
    +
    +
    subscriber_count
    +
    The subscriber_count of this list.
    +
    +
    +
    uri
    +
    The uri of this list.
    +
    +
    +
    user
    +
    The owner of this list.
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class Status(__builtin__.object)
       A class representing the Status structure used by the twitter API.
    +  
    + The Status structure exposes the following properties:
    +  
    +   status.created_at
    +   status.created_at_in_seconds # read only
    +   status.favorited
    +   status.in_reply_to_screen_name
    +   status.in_reply_to_user_id
    +   status.in_reply_to_status_id
    +   status.truncated
    +   status.source
    +   status.id
    +   status.text
    +   status.location
    +   status.relative_created_at # read only
    +   status.user
    +   status.urls
    +   status.user_mentions
    +   status.hashtags
     
     Methods defined here:
    +
    +
    AsDict(self)
    +
    A dict representation of this twitter.Status instance.
    +  
    + The return value uses the same key names as the JSON representation.
    +  
    + Return:
    +   A dict representing this twitter.Status instance
    +
    +
    + +
    +
    AsJsonString(self)
    +
    A JSON string representation of this twitter.Status instance.
    +  
    + Returns:
    +   A JSON string representation of this twitter.Status instance
    +
    + +
    +
    GetCreatedAt(self)
    +
    Get the time this status message was posted.
    +  
    + Returns:
    +   The time this status message was posted
    +
    +
    + +
    +
    GetCreatedAtInSeconds(self) +
    +
    Get the time this status message was posted, in seconds since the epoch.
    +  
    + Returns:
    +   The time this status message was posted, in seconds since the epoch.
    +
    +
    + +
    +
    GetFavorited(self)
    +
    Get the favorited setting of this status message.
    +  
    + Returns:
    +   True if this status message is favorited; False otherwise
    +
    +
    + +
    +
    GetId(self)
    +
    Get the unique id of this status message.
    +  
    + Returns:
    +   The unique id of this status message
    +
    + +
    +
    GetInReplyToScreenName(self) +
    +
    + +
    +
    GetInReplyToStatusId(self) +
    +
    + +
    +
    GetInReplyToUserId(self)
    +
    + +
    +
    GetLocation(self)
    +
    Get the geolocation associated with this status message
    +  
    + Returns:
    +   The geolocation string of this status message.
    +
    +
    + +
    +
    GetNow(self)
    +
    + Get the wallclock time for this status message.
    +  
    + Used to calculate relative_created_at.  Defaults to the time
    + the object was instantiated.
    +  
    + Returns:
    +   Whatever the status instance believes the current time to be,
    +   in seconds since the epoch.
    +
    + +
    +
    GetRelativeCreatedAt(self) +
    +
    Get a human redable string representing the posting time
    +  
    + Returns:
    +   A human readable string representing the posting time
    +
    +
    + +
    +
    GetSource(self)
    +
    + +
    +
    GetText(self)
    +
    Get the text of this status message.
    +  
    + Returns:
    +   The text of this status message.
    +
    + +
    +
    GetTruncated(self)
    +
    + +
    +
    GetUser(self)
    +
    Get a twitter.User reprenting the entity posting this status message.
    +  
    + Returns:
    +   A twitter.User reprenting the entity posting this status message
    +
    +
    + +
    +
    SetCreatedAt(self, created_at)
    +
    Set the time this status message was posted.
    +  
    + Args:
    +   created_at:
    +     The time this status message was created
    +
    +
    + +
    +
    SetFavorited(self, favorited)
    +
    + Set the favorited state of this status message.
    +  
    + Args:
    +   favorited:
    +     boolean True/False favorited state of this status message
    +
    +
    + +
    +
    SetId(self, id)
    +
    Set the unique id of this status message.
    +  
    + Args:
    +   id:
    +     The unique id of this status message
    +
    +
    + +
    +
    SetInReplyToScreenName(self, + in_reply_to_screen_name) +
    +
    + +
    +
    SetInReplyToStatusId(self, + in_reply_to_status_id) +
    +
    + +
    +
    SetInReplyToUserId(self, + in_reply_to_user_id) +
    +
    + +
    +
    SetLocation(self, location)
    +
    Set the geolocation associated with this status message
    +  
    + Args:
    +   location:
    +     The geolocation string of this status message
    +
    +
    + +
    +
    SetNow(self, now)
    +
    + Set the wallclock time for this status message.
    +  
    + Used to calculate relative_created_at.  Defaults to the time
    + the object was instantiated.
    +  
    + Args:
    +   now:
    +     The wallclock time for this instance.
    +
    +
    + +
    +
    SetSource(self, source)
    +
    + +
    +
    SetText(self, text)
    +
    Set the text of this status message.
    +  
    + Args:
    +   text:
    +     The text of this status message
    +
    +
    + +
    +
    SetTruncated(self, truncated)
    +
    + +
    +
    SetUser(self, user)
    +
    Set a twitter.User reprenting the entity posting this status message.
    +  
    + Args:
    +   user:
    +     A twitter.User reprenting the entity posting this status message
    +
    +
    + +
    +
    __eq__(self, other)
    +
    + +
    +
    __init__(self, created_at=None, favorited=None, id=None, text=None, location=None, user=None, + in_reply_to_screen_name=None, in_reply_to_user_id=None, in_reply_to_status_id=None, truncated=None, + source=None, now=None, + urls=None, user_mentions=None, + hashtags=None) +
    +
    An object to hold a Twitter status message.
    +  
    + This class is normally instantiated by the twitter.Api class and
    + returned in a sequence.
    +  
    + Note: Dates are posted in the form "Sat Jan 27 04:17:38 +0000 2007"
    +  
    + Args:
    +   created_at:
    +     The time this status message was posted. [Optiona]
    +   favorited:
    +     Whether this is a favorite of the authenticated user. [Optiona]
    +   id:
    +     The unique id of this status message. [Optiona]
    +   text:
    +     The text of this status message. [Optiona]
    +   location:
    +     the geolocation string associated with this message. [Optiona]
    +   relative_created_at:
    +     A human readable string representing the posting time. [Optiona]
    +   user:
    +     A twitter.User instance representing the person posting the
    +     message. [Optiona]
    +   now:
    +     The current time, if the client choses to set it.
    +     Defaults to the wall clock time. [Optiona]
    +
    +
    + +
    +
    __ne__(self, other)
    +
    + +
    +
    __str__(self)
    +
    A string representation of this twitter.Status instance.
    +  
    + The return value is the same as the JSON string representation.
    +  
    + Returns:
    +   A string representation of this twitter.Status instance.
    +
    + +
    + Static methods defined here:
    +
    +
    NewFromJsonDict(data)
    +
    + Create a new instance based on a JSON dict.
    +  
    + Args:
    +   data: A JSON dict, as converted from the JSON in the twitter API
    + Returns:
    +   A twitter.Status instance
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +
    created_at
    +
    The time this status message was posted.
    +
    +
    +
    created_at_in_seconds
    +
    The time this status message was posted, in seconds since the epoch +
    +
    +
    +
    favorited
    +
    The favorited state of this status message.
    +
    +
    +
    id
    +
    The unique id of this status message.
    +
    +
    +
    in_reply_to_screen_name
    +
    +
    +
    +
    in_reply_to_status_id
    +
    +
    +
    +
    in_reply_to_user_id
    +
    +
    +
    +
    location
    +
    The geolocation string of this status message +
    +
    +
    +
    now
    +
    The wallclock time for this status instance.
    +
    +
    +
    relative_created_at
    +
    Get a human readable string representing the posting time +
    +
    +
    +
    source
    +
    +
    +
    +
    text
    +
    The text of this status message
    +
    +
    +
    truncated
    +
    +
    +
    +
    user
    +
    A twitter.User reprenting the entity posting this status message +
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class + Trend(__builtin__.object) +
       A class representing a trending topic
     
     Methods defined here:
    +
    +
    __init__(self, name=None, + query=None, timestamp=None) +
    +
    + +
    +
    __str__(self)
    +
    + +
    + Static methods defined here:
    +
    +
    NewFromJsonDict(data, + timestamp=None) +
    +
    + Create a new instance based on a JSON dict
    +  
    + Args:
    +   data:
    +     A JSON dict
    +   timestamp:
    +     Gets set as the timestamp property of the new object
    +  
    + Returns:
    +   A twitter.Trend object
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class + TwitterError(exceptions.Exception)
       Base class for Twitter errors
     
      +
    +
    Method resolution order:
    +
    TwitterError
    +
    exceptions.Exception
    +
    exceptions.BaseException
    +
    __builtin__.object
    +
    +
    + Data descriptors defined here:
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +
    message
    +
    Returns the first argument used to construct this error. +
    +
    +
    + Methods inherited from exceptions.Exception:
    +
    +
    __init__(...)
    +
    x.__init__(...) initializes x; see x.__class__.__doc__ for signature +
    +
    + +
    + Data and other attributes inherited from exceptions.Exception:
    +
    +
    __new__ = <built-in method __new__ of type object at 0x100119f80> +
    T.__new__(S, ...) -> a new object with type S, a subtype of T +
    + +
    + Methods inherited from exceptions.BaseException:
    +
    +
    __delattr__(...)
    +
    x.__delattr__('name') <==> del x.name +
    +
    + +
    +
    __getattribute__(...)
    +
    x.__getattribute__('name') <==> x.name +
    +
    + +
    +
    __getitem__(...)
    +
    x.__getitem__(y) <==> x[y] +
    +
    + +
    +
    __getslice__(...)
    +
    x.__getslice__(i, j) <==> x[i:j]
    +  
    + Use of negative indices is not supported.
    +
    + +
    +
    __reduce__(...)
    +
    + +
    +
    __repr__(...)
    +
    x.__repr__() <==> repr(x) +
    +
    + +
    +
    __setattr__(...)
    +
    x.__setattr__('name', value) <==> x.name = value +
    +
    + +
    +
    __setstate__(...)
    +
    + +
    +
    __str__(...)
    +
    x.__str__() <==> str(x) +
    +
    + +
    +
    __unicode__(...)
    +
    + +
    + Data descriptors inherited from exceptions.BaseException:
    +
    +
    __dict__
    +
    +
    +
    args
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class Url(__builtin__.object)
       A class representing an URL contained in a tweet
      +
     Methods defined here:
    +
    +
    __init__(self, url=None, + expanded_url=None) +
    +
    + +
    + Static methods defined here:
    +
    +
    NewFromJsonDict(data)
    +
    + Create a new instance based on a JSON dict.
    +  
    + Args:
    +   data:
    +     A JSON dict, as converted from the JSON in the twitter API
    +  
    + Returns:
    +   A twitter.Url instance
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +

    + + + + + + + + + + + + + +
     
    + class User(__builtin__.object)
       A class representing the User structure used by the twitter API.
    +  
    + The User structure exposes the following properties:
    +  
    +   user.id
    +   user.name
    +   user.screen_name
    +   user.location
    +   user.description
    +   user.profile_image_url
    +   user.profile_background_tile
    +   user.profile_background_image_url
    +   user.profile_sidebar_fill_color
    +   user.profile_background_color
    +   user.profile_link_color
    +   user.profile_text_color
    +   user.protected
    +   user.utc_offset
    +   user.time_zone
    +   user.url
    +   user.status
    +   user.statuses_count
    +   user.followers_count
    +   user.friends_count
    +   user.favourites_count
     
     Methods defined here:
    +
    +
    AsDict(self)
    +
    A dict representation of this twitter.User instance.
    +  
    + The return value uses the same key names as the JSON representation.
    +  
    + Return:
    +   A dict representing this twitter.User instance
    +
    + +
    +
    AsJsonString(self)
    +
    A JSON string representation of this twitter.User instance.
    +  
    + Returns:
    +   A JSON string representation of this twitter.User instance
    +
    + +
    +
    GetDescription(self)
    +
    Get the short text description of this user.
    +  
    + Returns:
    +   The short text description of this user
    +
    +
    + +
    +
    GetFavouritesCount(self)
    +
    Get the number of favourites for this user.
    +  
    + Returns:
    +   The number of favourites for this user.
    +
    +
    + +
    +
    GetFollowersCount(self)
    +
    Get the follower count for this user.
    +  
    + Returns:
    +   The number of users following this user.
    +
    +
    + +
    +
    GetFriendsCount(self)
    +
    Get the friend count for this user.
    +  
    + Returns:
    +   The number of users this user has befriended.
    +
    +
    + +
    +
    GetId(self)
    +
    Get the unique id of this user.
    +  
    + Returns:
    +   The unique id of this user
    +
    + +
    +
    GetLocation(self)
    +
    Get the geographic location of this user.
    +  
    + Returns:
    +   The geographic location of this user
    +
    + +
    +
    GetName(self)
    +
    Get the real name of this user.
    +  
    + Returns:
    +   The real name of this user
    +
    + +
    +
    GetProfileBackgroundColor(self) +
    +
    + +
    +
    + GetProfileBackgroundImageUrl(self) +
    +
    + +
    +
    GetProfileBackgroundTile(self) +
    +
    Boolean for whether to tile the profile background image.
    +  
    + Returns:
    +   True if the background is to be tiled, False if not, None if unset.
    +
    +
    + +
    +
    GetProfileImageUrl(self)
    +
    + Get the url of the thumbnail of this user.
    +  
    + Returns:
    +   The url of the thumbnail of this user
    +
    +
    + +
    +
    GetProfileLinkColor(self)
    +
    + +
    +
    + GetProfileSidebarFillColor(self) +
    +
    + +
    +
    GetProfileTextColor(self)
    +
    + +
    +
    GetProtected(self)
    +
    + +
    +
    GetScreenName(self)
    +
    Get the short twitter name of this user.
    +  
    + Returns:
    +   The short twitter name of this user
    +
    + +
    +
    GetStatus(self)
    +
    Get the latest twitter.Status of this user.
    +  
    + Returns:
    +   The latest twitter.Status of this user
    +
    +
    + +
    +
    GetStatusesCount(self)
    +
    Get the number of status updates for this user.
    +  
    + Returns:
    +   The number of status updates for this user.
    +
    +
    + +
    +
    GetTimeZone(self)
    +
    Returns the current time zone string for the user.
    +  
    + Returns:
    +   The descriptive time zone string for the user.
    +
    +
    + +
    +
    GetUrl(self)
    +
    Get the homepage url of this user.
    +  
    + Returns:
    +   The homepage url of this user
    +
    + +
    +
    GetUtcOffset(self)
    +
    + +
    +
    SetDescription(self, description) +
    +
    Set the short text description of this user.
    +  
    + Args:
    +   description: The short text description of this user
    +
    +
    + +
    +
    SetFavouritesCount(self, count) +
    +
    Set the favourite count for this user.
    +  
    + Args:
    +   count:
    +     The number of favourites for this user.
    +
    +
    + +
    +
    SetFollowersCount(self, count) +
    +
    Set the follower count for this user.
    +  
    + Args:
    +   count:
    +     The number of users following this user.
    +
    +
    + +
    +
    SetFriendsCount(self, count)
    +
    Set the friend count for this user.
    +  
    + Args:
    +   count:
    +     The number of users this user has befriended.
    +
    +
    + +
    +
    SetId(self, id)
    +
    Set the unique id of this user.
    +  
    + Args:
    +   id: The unique id of this user.
    +
    + +
    +
    SetLocation(self, location)
    +
    Set the geographic location of this user.
    +  
    + Args:
    +   location: The geographic location of this user
    +
    +
    + +
    +
    SetName(self, name)
    +
    Set the real name of this user.
    +  
    + Args:
    +   name: The real name of this user
    +
    + +
    +
    SetProfileBackgroundColor(self, + profile_background_color) +
    +
    + +
    +
    + SetProfileBackgroundImageUrl(self, + profile_background_image_url) +
    +
    + +
    +
    SetProfileBackgroundTile(self, + profile_background_tile) +
    +
    Set the boolean flag for whether to tile the profile background image.
    +  
    + Args:
    +   profile_background_tile: Boolean flag for whether to tile or not.
    +
    +
    + +
    +
    SetProfileImageUrl(self, + profile_image_url) +
    +
    + Set the url of the thumbnail of this user.
    +  
    + Args:
    +   profile_image_url: The url of the thumbnail of this user
    +
    +
    + +
    +
    SetProfileLinkColor(self, + profile_link_color) +
    +
    + +
    +
    + SetProfileSidebarFillColor(self, + profile_sidebar_fill_color) +
    +
    + +
    +
    SetProfileTextColor(self, + profile_text_color) +
    +
    + +
    +
    SetProtected(self, protected)
    +
    + +
    +
    SetScreenName(self, screen_name)
    +
    Set the short twitter name of this user.
    +  
    + Args:
    +   screen_name: the short twitter name of this user
    +
    +
    + +
    +
    SetStatus(self, status)
    +
    Set the latest twitter.Status of this user.
    +  
    + Args:
    +   status:
    +     The latest twitter.Status of this user
    +
    +
    + +
    +
    SetStatusesCount(self, count)
    +
    Set the status update count for this user.
    +  
    + Args:
    +   count:
    +     The number of updates for this user.
    +
    +
    + +
    +
    SetTimeZone(self, time_zone)
    +
    Sets the user's time zone string.
    +  
    + Args:
    +   time_zone:
    +     The descriptive time zone to assign for the user.
    +
    +
    + +
    +
    SetUrl(self, url)
    +
    Set the homepage url of this user.
    +  
    + Args:
    +   url: The homepage url of this user
    +
    + +
    +
    SetUtcOffset(self, utc_offset)
    +
    + +
    +
    __eq__(self, other)
    +
    + +
    +
    __init__(self, id=None, + name=None, screen_name=None, + location=None, description=None, profile_image_url=None, profile_background_tile=None, profile_background_image_url=None, + profile_sidebar_fill_color=None, + profile_background_color=None, profile_link_color=None, profile_text_color=None, protected=None, + utc_offset=None, time_zone=None, followers_count=None, + friends_count=None, statuses_count=None, + favourites_count=None, url=None, status=None) +
    +
    + +
    +
    __ne__(self, other)
    +
    + +
    +
    __str__(self)
    +
    A string representation of this twitter.User instance.
    +  
    + The return value is the same as the JSON string representation.
    +  
    + Returns:
    +   A string representation of this twitter.User instance.
    +
    + +
    + Static methods defined here:
    +
    +
    NewFromJsonDict(data)
    +
    + Create a new instance based on a JSON dict.
    +  
    + Args:
    +   data:
    +     A JSON dict, as converted from the JSON in the twitter API
    +  
    + Returns:
    +   A twitter.User instance
    +
    + +
    + Data descriptors defined here:
    +
    +
    __dict__
    +
    dictionary for instance variables (if defined)
    +
    +
    +
    __weakref__
    +
    list of weak references to the object (if defined) +
    +
    +
    +
    description
    +
    The short text description of this user.
    +
    +
    +
    favourites_count
    +
    The number of favourites for this user.
    +
    +
    +
    followers_count
    +
    The number of users following this user.
    +
    +
    +
    friends_count
    +
    The number of friends for this user.
    +
    +
    +
    id
    +
    The unique id of this user.
    +
    +
    +
    location
    +
    The geographic location of this user.
    +
    +
    +
    name
    +
    The real name of this user.
    +
    +
    +
    profile_background_color
    +
    +
    +
    profile_background_image_url
    +
    The url of the profile background of this user. +
    +
    +
    +
    profile_background_tile
    +
    + Boolean for whether to tile the background image. +
    +
    +
    +
    profile_image_url
    +
    The url of the thumbnail of this user.
    +
    +
    +
    profile_link_color
    +
    +
    +
    profile_sidebar_fill_color
    +
    +
    +
    profile_text_color
    +
    +
    +
    protected
    +
    +
    +
    screen_name
    +
    The short twitter name of this user.
    +
    +
    +
    status
    +
    The latest twitter.Status of this user.
    +
    +
    +
    statuses_count
    +
    The number of updates for this user.
    +
    +
    +
    time_zone
    +
    Returns the current time zone string for the user.
    +  
    + Returns:
    +   The descriptive time zone string for the user.
    +
    +
    +
    +
    url
    +
    The homepage url of this user.
    +
    +
    +
    utc_offset
    +
    +
    + + + +

    - - - - -
     
    -Functions
           
    md5 = openssl_md5(...)
    Returns a md5 hash object; optionally initialized with a string
    -

    + +  
    + Functions + + + +        +   + +

    +
    md5 = openssl_md5(...)
    +
    Returns a md5 hash object; optionally initialized with a string +
    +
    + + + +

    - - - - -
     
    -Data
           ACCESS_TOKEN_URL = 'https://api.twitter.com/oauth/access_token'
    -AUTHORIZATION_URL = 'https://api.twitter.com/oauth/authorize'
    -CHARACTER_LIMIT = 140
    -DEFAULT_CACHE = <object object at 0x1001da0a0>
    -REQUEST_TOKEN_URL = 'https://api.twitter.com/oauth/request_token'
    -SIGNIN_URL = 'https://api.twitter.com/oauth/authenticate'
    -__author__ = 'python-twitter@googlegroups.com'
    -__version__ = '0.8'

    + +  
    + Data + + + +        +   + ACCESS_TOKEN_URL = 'https://api.twitter.com/oauth/access_token'
    + AUTHORIZATION_URL = 'https://api.twitter.com/oauth/authorize'
    + CHARACTER_LIMIT = 140
    + DEFAULT_CACHE = <object object at 0x1001da0a0>
    + REQUEST_TOKEN_URL = 'https://api.twitter.com/oauth/request_token'
    + SIGNIN_URL = 'https://api.twitter.com/oauth/authenticate'
    + __author__ = 'python-twitter@googlegroups.com'
    + __version__ = '0.8' + + + +

    - - - - -
     
    -Author
           python-twitter@googlegroups.com
    - + +  
    + Author + + + +        +   + python-twitter@googlegroups.com + + + + diff --git a/examples/shorten_url.py b/examples/shorten_url.py index 3401bec2..8c7653de 100755 --- a/examples/shorten_url.py +++ b/examples/shorten_url.py @@ -6,7 +6,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -14,42 +14,43 @@ # See the License for the specific language governing permissions and # limitations under the License. -'''A class that defines the default URL Shortener. +"""A class that defines the default URL Shortener. TinyURL is provided as the default and as an example. -''' +""" import urllib - # Change History - # - # 2010-05-16 - # TinyURL example and the idea for this comes from a bug filed by - # acolorado with patch provided by ghills. Class implementation - # was done by bear. - # - # Issue 19 http://code.google.com/p/python-twitter/issues/detail?id=19 - # +# Change History +# +# 2010-05-16 +# TinyURL example and the idea for this comes from a bug filed by +# acolorado with patch provided by ghills. Class implementation +# was done by bear. +# +# Issue 19 http://code.google.com/p/python-twitter/issues/detail?id=19 +# class ShortenURL(object): - '''Helper class to make URL Shortener calls if/when required''' + """Helper class to make URL Shortener calls if/when required""" + def __init__(self, userid=None, password=None): - '''Instantiate a new ShortenURL object + """Instantiate a new ShortenURL object Args: userid: userid for any required authorization call [optional] password: password for any required authorization call [optional] - ''' - self.userid = userid + """ + self.userid = userid self.password = password def Shorten(self, longURL): - '''Call TinyURL API and returned shortened URL result + """Call TinyURL API and returned shortened URL result Args: longURL: URL string to shorten @@ -59,10 +60,10 @@ def Shorten(self, Note: longURL is required and no checks are made to ensure completeness - ''' + """ result = None - f = urllib.urlopen("http://tinyurl.com/api-create.php?url=%s" % longURL) + f = urllib.urlopen("http://tinyurl.com/api-create.php?url=%s" % longURL) try: result = f.read() finally: diff --git a/examples/tweet.py b/examples/tweet.py index 56f39fa0..746d35d0 100755 --- a/examples/tweet.py +++ b/examples/tweet.py @@ -46,96 +46,104 @@ ''' + def PrintUsageAndExit(): - print USAGE - sys.exit(2) + print USAGE + sys.exit(2) + def GetConsumerKeyEnv(): - return os.environ.get("TWEETUSERNAME", None) + return os.environ.get("TWEETUSERNAME", None) + def GetConsumerSecretEnv(): - return os.environ.get("TWEETPASSWORD", None) + return os.environ.get("TWEETPASSWORD", None) + def GetAccessKeyEnv(): - return os.environ.get("TWEETACCESSKEY", None) + return os.environ.get("TWEETACCESSKEY", None) + def GetAccessSecretEnv(): - return os.environ.get("TWEETACCESSSECRET", None) + return os.environ.get("TWEETACCESSSECRET", None) + class TweetRc(object): - def __init__(self): - self._config = None + def __init__(self): + self._config = None - def GetConsumerKey(self): - return self._GetOption('consumer_key') + def GetConsumerKey(self): + return self._GetOption('consumer_key') - def GetConsumerSecret(self): - return self._GetOption('consumer_secret') + def GetConsumerSecret(self): + return self._GetOption('consumer_secret') - def GetAccessKey(self): - return self._GetOption('access_key') + def GetAccessKey(self): + return self._GetOption('access_key') - def GetAccessSecret(self): - return self._GetOption('access_secret') + def GetAccessSecret(self): + return self._GetOption('access_secret') - def _GetOption(self, option): - try: - return self._GetConfig().get('Tweet', option) - except: - return None + def _GetOption(self, option): + try: + return self._GetConfig().get('Tweet', option) + except: + return None + + def _GetConfig(self): + if not self._config: + self._config = ConfigParser.ConfigParser() + self._config.read(os.path.expanduser('~/.tweetrc')) + return self._config - def _GetConfig(self): - if not self._config: - self._config = ConfigParser.ConfigParser() - self._config.read(os.path.expanduser('~/.tweetrc')) - return self._config def main(): - try: - shortflags = 'h' - longflags = ['help', 'consumer-key=', 'consumer-secret=', - 'access-key=', 'access-secret=', 'encoding='] - opts, args = getopt.gnu_getopt(sys.argv[1:], shortflags, longflags) - except getopt.GetoptError: - PrintUsageAndExit() - consumer_keyflag = None - consumer_secretflag = None - access_keyflag = None - access_secretflag = None - encoding = None - for o, a in opts: - if o in ("-h", "--help"): - PrintUsageAndExit() - if o in ("--consumer-key"): - consumer_keyflag = a - if o in ("--consumer-secret"): - consumer_secretflag = a - if o in ("--access-key"): - access_keyflag = a - if o in ("--access-secret"): - access_secretflag = a - if o in ("--encoding"): - encoding = a - message = ' '.join(args) - if not message: - PrintUsageAndExit() - rc = TweetRc() - consumer_key = consumer_keyflag or GetConsumerKeyEnv() or rc.GetConsumerKey() - consumer_secret = consumer_secretflag or GetConsumerSecretEnv() or rc.GetConsumerSecret() - access_key = access_keyflag or GetAccessKeyEnv() or rc.GetAccessKey() - access_secret = access_secretflag or GetAccessSecretEnv() or rc.GetAccessSecret() - if not consumer_key or not consumer_secret or not access_key or not access_secret: - PrintUsageAndExit() - api = twitter.Api(consumer_key=consumer_key, consumer_secret=consumer_secret, - access_token_key=access_key, access_token_secret=access_secret, - input_encoding=encoding) - try: - status = api.PostUpdate(message) - except UnicodeDecodeError: - print "Your message could not be encoded. Perhaps it contains non-ASCII characters? " - print "Try explicitly specifying the encoding with the --encoding flag" - sys.exit(2) - print "%s just posted: %s" % (status.user.name, status.text) + try: + shortflags = 'h' + longflags = ['help', 'consumer-key=', 'consumer-secret=', + 'access-key=', 'access-secret=', 'encoding='] + opts, args = getopt.gnu_getopt(sys.argv[1:], shortflags, longflags) + except getopt.GetoptError: + PrintUsageAndExit() + consumer_keyflag = None + consumer_secretflag = None + access_keyflag = None + access_secretflag = None + encoding = None + for o, a in opts: + if o in ("-h", "--help"): + PrintUsageAndExit() + if o in ("--consumer-key"): + consumer_keyflag = a + if o in ("--consumer-secret"): + consumer_secretflag = a + if o in ("--access-key"): + access_keyflag = a + if o in ("--access-secret"): + access_secretflag = a + if o in ("--encoding"): + encoding = a + message = ' '.join(args) + if not message: + PrintUsageAndExit() + rc = TweetRc() + consumer_key = consumer_keyflag or GetConsumerKeyEnv() or rc.GetConsumerKey() + consumer_secret = consumer_secretflag or GetConsumerSecretEnv() or rc.GetConsumerSecret() + access_key = access_keyflag or GetAccessKeyEnv() or rc.GetAccessKey() + access_secret = access_secretflag or GetAccessSecretEnv() or rc.GetAccessSecret() + if not consumer_key or not consumer_secret or not access_key or not access_secret: + PrintUsageAndExit() + api = twitter.Api(consumer_key=consumer_key, consumer_secret=consumer_secret, + access_token_key=access_key, access_token_secret=access_secret, + input_encoding=encoding) + try: + status = api.PostUpdate(message) + except UnicodeDecodeError: + print "Your message could not be encoded. Perhaps it contains non-ASCII characters? " + print "Try explicitly specifying the encoding with the --encoding flag" + sys.exit(2) + print "%s just posted: %s" % (status.user.name, status.text) + if __name__ == "__main__": - main() + main() diff --git a/examples/twitter-to-xhtml.py b/examples/twitter-to-xhtml.py index 8a386fd5..eae1efb6 100755 --- a/examples/twitter-to-xhtml.py +++ b/examples/twitter-to-xhtml.py @@ -17,53 +17,56 @@

    """ + def Usage(): - print 'Usage: %s [options] twitterid' % __file__ - print - print ' This script fetches a users latest twitter update and stores' - print ' the result in a file as an XHTML fragment' - print - print ' Options:' - print ' --help -h : print this help' - print ' --output : the output file [default: stdout]' + print 'Usage: %s [options] twitterid' % __file__ + print + print ' This script fetches a users latest twitter update and stores' + print ' the result in a file as an XHTML fragment' + print + print ' Options:' + print ' --help -h : print this help' + print ' --output : the output file [default: stdout]' def FetchTwitter(user, output): - assert user - statuses = twitter.Api().GetUserTimeline(id=user, count=1) - s = statuses[0] - xhtml = TEMPLATE % (s.user.screen_name, s.text, s.user.screen_name, s.id, s.relative_created_at) - if output: - Save(xhtml, output) - else: - print xhtml + assert user + statuses = twitter.Api().GetUserTimeline(id=user, count=1) + s = statuses[0] + xhtml = TEMPLATE % (s.user.screen_name, s.text, s.user.screen_name, s.id, s.relative_created_at) + if output: + Save(xhtml, output) + else: + print xhtml def Save(xhtml, output): - out = codecs.open(output, mode='w', encoding='ascii', - errors='xmlcharrefreplace') - out.write(xhtml) - out.close() + out = codecs.open(output, mode='w', encoding='ascii', + errors='xmlcharrefreplace') + out.write(xhtml) + out.close() + def main(): - try: - opts, args = getopt.gnu_getopt(sys.argv[1:], 'ho', ['help', 'output=']) - except getopt.GetoptError: - Usage() - sys.exit(2) - try: - user = args[0] - except: - Usage() - sys.exit(2) - output = None - for o, a in opts: - if o in ("-h", "--help"): - Usage() - sys.exit(2) - if o in ("-o", "--output"): - output = a - FetchTwitter(user, output) + try: + opts, args = getopt.gnu_getopt(sys.argv[1:], 'ho', ['help', 'output=']) + except getopt.GetoptError: + Usage() + sys.exit(2) + try: + user = args[0] + except: + Usage() + sys.exit(2) + output = None + for o, a in opts: + if o in ("-h", "--help"): + Usage() + sys.exit(2) + if o in ("-o", "--output"): + output = a + FetchTwitter(user, output) + if __name__ == "__main__": - main() + main() diff --git a/examples/view_friends.py b/examples/view_friends.py index 6b7a009f..502b2e88 100644 --- a/examples/view_friends.py +++ b/examples/view_friends.py @@ -1,7 +1,8 @@ import twitter + api = twitter.Api(consumer_key='consumer_key', - consumer_secret='consumer_secret', - access_token_key='access_token', - access_token_secret='access_token_secret') + consumer_secret='consumer_secret', + access_token_key='access_token', + access_token_secret='access_token_secret') users = api.GetFriends() print [u.name for u in users] diff --git a/get_access_token.py b/get_access_token.py index c77f8946..ed0622d0 100755 --- a/get_access_token.py +++ b/get_access_token.py @@ -6,7 +6,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -24,7 +24,6 @@ def get_access_token(consumer_key, consumer_secret): - oauth_client = OAuth1Session(consumer_key, client_secret=consumer_secret) print 'Requesting temp token from Twitter' @@ -48,16 +47,15 @@ def get_access_token(consumer_key, consumer_secret): webbrowser.open(url) pincode = raw_input('Pincode? ') - print '' print 'Generating and signing request for an access token' print '' oauth_client = OAuth1Session(consumer_key, client_secret=consumer_secret, - resource_owner_key=resp.get('oauth_token'), - resource_owner_secret=resp.get('oauth_token_secret'), - verifier=pincode - ) + resource_owner_key=resp.get('oauth_token'), + resource_owner_secret=resp.get('oauth_token_secret'), + verifier=pincode + ) try: resp = oauth_client.fetch_access_token(ACCESS_TOKEN_URL) except ValueError, e: @@ -74,5 +72,6 @@ def main(): consumer_secret = raw_input("Enter your consumer secret: ") get_access_token(consumer_key, consumer_secret) + if __name__ == "__main__": main() diff --git a/setup.py b/setup.py index 89f65aeb..3ac1f3fd 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -20,11 +20,13 @@ from setuptools import setup, find_packages + def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read() + setup( name='python-twitter', version='2.3', @@ -38,7 +40,7 @@ def read(*paths): read('AUTHORS.rst') + '\n\n' + read('CHANGES')), packages=find_packages(exclude=['tests*']), - install_requires = ['requests', 'requests-oauthlib'], + install_requires=['requests', 'requests-oauthlib'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', diff --git a/testdata/direct_message-destroy.json b/testdata/direct_message-destroy.json index 0faec0aa..76c0ff01 100644 --- a/testdata/direct_message-destroy.json +++ b/testdata/direct_message-destroy.json @@ -1 +1,9 @@ -{"created_at":"Tue Jun 05 06:00:51 +0000 2007","recipient_id":718443,"sender_id":673483,"sender_screen_name":"dewitt","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","recipient_screen_name":"kesuke","id":3496342} +{ + "created_at": "Tue Jun 05 06:00:51 +0000 2007", + "recipient_id": 718443, + "sender_id": 673483, + "sender_screen_name": "dewitt", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "recipient_screen_name": "kesuke", + "id": 3496342 +} diff --git a/testdata/direct_messages-new.json b/testdata/direct_messages-new.json index 182bedad..640d7fd5 100644 --- a/testdata/direct_messages-new.json +++ b/testdata/direct_messages-new.json @@ -1 +1,9 @@ -{"sender_screen_name":"dewitt","created_at":"Tue Jun 05 05:53:22 +0000 2007","recipient_screen_name":"kesuke","recipient_id":718443,"text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":3496202,"sender_id":673483} +{ + "sender_screen_name": "dewitt", + "created_at": "Tue Jun 05 05:53:22 +0000 2007", + "recipient_screen_name": "kesuke", + "recipient_id": 718443, + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 3496202, + "sender_id": 673483 +} diff --git a/testdata/direct_messages.json b/testdata/direct_messages.json index 2165b98e..182d6fde 100644 --- a/testdata/direct_messages.json +++ b/testdata/direct_messages.json @@ -1 +1,11 @@ -[{"created_at":"Mon Jun 04 00:07:58 +0000 2007","recipient_id":718443,"sender_id":673483,"text":"A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.","sender_screen_name":"dewitt","id":3444662,"recipient_screen_name":"kesuke"}] \ No newline at end of file +[ + { + "created_at": "Mon Jun 04 00:07:58 +0000 2007", + "recipient_id": 718443, + "sender_id": 673483, + "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", + "sender_screen_name": "dewitt", + "id": 3444662, + "recipient_screen_name": "kesuke" + } +] \ No newline at end of file diff --git a/testdata/featured.json b/testdata/featured.json index 633c308a..c80e44cd 100644 --- a/testdata/featured.json +++ b/testdata/featured.json @@ -1 +1,302 @@ -[{"name":"Steven Wright","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/5819362/normal/sw.jpg?1178499811","screen_name":"stevenwright","description":"Every day, one quote from me.","location":"","url":null,"id":5819362,"protected":false,"status":{"created_at":"Fri Jun 01 16:06:28 +0000 2007","text":"I'm addicted to placebos. I could quit but it wouldn't matter.","id":86991742}},{"name":"Justine","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/7846/normal/iJustine_100x100.jpg?1174864273","screen_name":"ijustine","description":"I am the internet.","location":"Pittsburgh, PA","url":"http://www.tastyblogsnack.com","id":7846,"protected":false,"status":{"created_at":"Sun Jun 03 19:57:09 +0000 2007","text":"Please help me wake up Starbucks.","id":89591842}},{"name":"timer","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/5997662/normal/timer.gif?1179331208","screen_name":"timer","description":"","location":"","url":"http://retweet.com/timer","id":5997662,"protected":false,"status":{"created_at":"Wed May 16 16:13:44 +0000 2007","text":"Need to remember something? Send me a direct message, and I'll tweet you back. For example, 'd timer 45 call mom' reminds you in 45 minutes.","id":66100582}},{"name":"R1 Big Weekend","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/5962712/normal/r1logo_twitter.jpg?1179139696","screen_name":"r1bigweekend","description":null,"location":null,"url":null,"id":5962712,"protected":false,"status":{"created_at":"Sun May 20 21:55:23 +0000 2007","text":"Thanks Preston. The site is quickly getting packed up now. It's dark and cold outside.","id":71673422}},{"name":"Scott Hanselman","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/5676102/normal/scott48x48.jpg?1177998926","screen_name":"shanselman","description":null,"location":null,"url":null,"id":5676102,"protected":false,"status":{"created_at":"Wed May 30 17:35:25 +0000 2007","text":"Blood sugar is 110. Great way to start the day. Ready for breakfast.","id":84275702}},{"name":"Jodrell Bank","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/5747502/normal/twitter_jodrellbank.png?1178216103","screen_name":"jodrellbank","description":"Home of the world's third-largest steerable radio telescope, and the MERLIN National Facility. Part of the Univ. of Manchester","location":"53.236057, -2.306871","url":"http://www.manchester.ac.uk/jodrellbank/","id":5747502,"protected":false,"status":{"created_at":"Sat Jun 02 13:30:00 +0000 2007","text":"Getting ready to bounce poems off the Moon and pick up their echoes with the Telescope as part of the First Move Festival on June 15-17","id":88102552}},{"name":"TwitLit","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/5588242/normal/twittericon.png?1178498116","screen_name":"TwitterLit","description":"Twittering the first lines of books so you don't have to. SEE ALSO: TwitterLitUK - TwitterLitCA - TwitterLitNews. [To comment, d. msg. me or contact via site.]","location":"The Stacks","url":"http://twitterlit.com","id":5588242,"protected":false,"status":{"created_at":"Sun Jun 03 09:00:46 +0000 2007","text":"\"On the drive from the suburbs to the city, we'd experienced a disturbing number of memory lapses\" http://tweetl.com/t0","id":89035512}},{"name":"BlogPhiladelphia","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/5724872/normal/blogphiladelphia_logo.gif?1178142536","screen_name":"BlogPhilly","description":"A Social Media UnConference in Philly","location":"Philly!","url":"http://blogphiladelphia.net","id":5724872,"protected":false,"status":{"created_at":"Sun Jun 03 20:32:29 +0000 2007","text":"wooohoooo home in nolibs the land of indie rock tight jeans and snark aplenty. good to be back","id":89621942}},{"name":"Lisa@FashWEEK","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/5291252/normal/TWITTER.jpg?1177044270","screen_name":"OzFashionWeek","description":"Fashion, Beauty + Style editor for News.com.au","location":"Sydney","url":"http://www.news.com.au/entertainment/feature/0,,5012703,00.html","id":5291252,"protected":false,"status":{"created_at":"Tue May 29 06:24:23 +0000 2007","text":"spent today getting distracted by net-a-porter.com ... that's a dangerous site for a fashion addict!","id":82160232}},{"name":"palm pictures","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/4260991/normal/cometohillary.gif?1176335676","screen_name":"palmpictures","description":"Independent Music, Film, and Love!","location":"New York, NY","url":"http://www.palmpictures.com","id":4260991,"protected":false,"status":{"created_at":"Sun Jun 03 01:16:22 +0000 2007","text":"loves our Book Expo booth neighbors from Endless Games. check em out http://endlessgames.com/gamesmen.html","id":88685562}},{"name":"Barack Obama","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/813286/normal/iconbg.jpg?1177633039","screen_name":"BarackObama","description":"","location":"Chicago, IL","url":"http://www.barackobama.com","id":813286,"protected":false,"status":{"created_at":"Sun Jun 03 19:49:52 +0000 2007","text":"Heading to Democratic presidential debate at St. Anselm College in New Hampshire. Debate starts at 7pm EST and will air live on CNN.","id":89585682}},{"name":"Hollywood.com Live","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/4455001/normal/H_48x48c.gif?1177618725","screen_name":"hollywoodcom","description":"Hollywood.com Live @ The Tribeca Film Festival","location":"New York, NY","url":"http://fansites.hollywood.com/live.html","id":4455001,"protected":false,"status":{"created_at":"Thu May 24 02:29:35 +0000 2007","text":"Blake, where are you now?! We'll miss you nxt wk... Go IDOLS! ... See you both over the rainbow!","id":76045122}},{"name":"Veronica","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942","screen_name":"Veronica","description":"CNET TV host and podcasting diva of Buzz Out Loud","location":"San Francisco","url":"http://www.veronicabelmont.com","id":10350,"protected":false,"status":{"created_at":"Sun Jun 03 03:11:10 +0000 2007","text":"i just saw kari byron! my hero!","id":88774212}},{"name":"Alison","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/5248441/normal/new1.jpg?1177002287","screen_name":"AFineFrenzy","description":"","location":"Los Angeles","url":"http://www.myspace.com/afinefrenzy","id":5248441,"protected":false,"status":{"created_at":"Sat Jun 02 06:52:41 +0000 2007","text":"the sea took my sunglasses, i took a boatload of sand home in my bikini. fair trade? the moon is orange. my skin is still warm from the sun.","id":87808312}},{"name":"Rocketboom","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/1502111/normal/rocket.jpg?1174312502","screen_name":"Rocketboom","description":"Daily","location":"New York City","url":"http://www.rocketboom.com","id":1502111,"protected":false,"status":{"created_at":"Sat Jun 02 15:33:06 +0000 2007","text":"Ultimate Frisbee 2.0 in Central Park today on Sat. @ 4pm: http://groups.google.com/group/frisbee2point0/","id":88218242}},{"name":"TrippingOnWords","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/59003/normal/lara_and_claire_BIG_HAIR.jpg?1171962588","screen_name":"TrippingOnWords","description":"Training with 200 Kenyan Orphans for the Hope Runs Marathon and 10K. As a new non profit, Hope Runs is looking for help\u2026check us out at TrippingOnWords.com!","location":"Kenya","url":"http://TrippingOnWords.com","id":59003,"protected":false,"status":{"created_at":"Sat Jun 02 18:55:59 +0000 2007","text":"heading to bed early...visiting Manager's church tomorrow. an early start is essential, apparently","id":88405002}},{"name":"Web 2.0 Expo","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/4200861/normal/webex2007_logo_square.jpg?1176317215","screen_name":"w2e","description":"Official twitter for the Web 2.0 Expo","location":"san francisco, ca","url":"http://blog.web2expo.com","id":4200861,"protected":false,"status":{"created_at":"Thu Apr 19 01:00:17 +0000 2007","text":"Thanks for coming! \r\nWine being brought to web2open in secs.","id":32588451}},{"name":"Jessica Mellott","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/3658381/normal/Jessica_Mellott.jpg?1177685550","screen_name":"JessicaMellott","description":"Teen pop singer www.jessicamellott.com www.myspace.com/jessicamellott","location":"Maryland","url":"http://www.jessicamellott.com","id":3658381,"protected":false,"status":{"created_at":"Fri Jun 01 23:36:46 +0000 2007","text":"Getting ready for grad party weekend!","id":87429882}},{"name":"Drive","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/3946281/normal/nathan.png?1176155112","screen_name":"foxdrive","description":"Action-fueled drama about an illegal, underground cross-country road race. Director Greg Yaitanes will Twitter live director's commentary starting Sunday 8/7c.","location":"","url":null,"id":3946281,"protected":false,"status":{"created_at":"Tue Apr 17 04:05:53 +0000 2007","text":"twitter and tell me what you thought of the episode tonight.","id":30603561}},{"name":"Status Updates","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/46413/normal/maintenance.gif?1171961490","screen_name":"twitter_status","description":"140 characters or less on the health of Twitter!","location":"Inside the Twitter","url":null,"id":46413,"protected":false,"status":{"created_at":"Tue May 29 07:54:18 +0000 2007","text":"Catching up on processing updates after some brief confusion.","id":82226192}}] \ No newline at end of file +[ + { + "name": "Steven Wright", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/5819362/normal/sw.jpg?1178499811", + "screen_name": "stevenwright", + "description": "Every day, one quote from me.", + "location": "", + "url": null, + "id": 5819362, + "protected": false, + "status": { + "created_at": "Fri Jun 01 16:06:28 +0000 2007", + "text": "I'm addicted to placebos. I could quit but it wouldn't matter.", + "id": 86991742 + } + }, + { + "name": "Justine", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/7846/normal/iJustine_100x100.jpg?1174864273", + "screen_name": "ijustine", + "description": "I am the internet.", + "location": "Pittsburgh, PA", + "url": "http://www.tastyblogsnack.com", + "id": 7846, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:57:09 +0000 2007", + "text": "Please help me wake up Starbucks.", + "id": 89591842 + } + }, + { + "name": "timer", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/5997662/normal/timer.gif?1179331208", + "screen_name": "timer", + "description": "", + "location": "", + "url": "http://retweet.com/timer", + "id": 5997662, + "protected": false, + "status": { + "created_at": "Wed May 16 16:13:44 +0000 2007", + "text": "Need to remember something? Send me a direct message, and I'll tweet you back. For example, 'd timer 45 call mom' reminds you in 45 minutes.", + "id": 66100582 + } + }, + { + "name": "R1 Big Weekend", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/5962712/normal/r1logo_twitter.jpg?1179139696", + "screen_name": "r1bigweekend", + "description": null, + "location": null, + "url": null, + "id": 5962712, + "protected": false, + "status": { + "created_at": "Sun May 20 21:55:23 +0000 2007", + "text": "Thanks Preston. The site is quickly getting packed up now. It's dark and cold outside.", + "id": 71673422 + } + }, + { + "name": "Scott Hanselman", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/5676102/normal/scott48x48.jpg?1177998926", + "screen_name": "shanselman", + "description": null, + "location": null, + "url": null, + "id": 5676102, + "protected": false, + "status": { + "created_at": "Wed May 30 17:35:25 +0000 2007", + "text": "Blood sugar is 110. Great way to start the day. Ready for breakfast.", + "id": 84275702 + } + }, + { + "name": "Jodrell Bank", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/5747502/normal/twitter_jodrellbank.png?1178216103", + "screen_name": "jodrellbank", + "description": "Home of the world's third-largest steerable radio telescope, and the MERLIN National Facility. Part of the Univ. of Manchester", + "location": "53.236057, -2.306871", + "url": "http://www.manchester.ac.uk/jodrellbank/", + "id": 5747502, + "protected": false, + "status": { + "created_at": "Sat Jun 02 13:30:00 +0000 2007", + "text": "Getting ready to bounce poems off the Moon and pick up their echoes with the Telescope as part of the First Move Festival on June 15-17", + "id": 88102552 + } + }, + { + "name": "TwitLit", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/5588242/normal/twittericon.png?1178498116", + "screen_name": "TwitterLit", + "description": "Twittering the first lines of books so you don't have to. SEE ALSO: TwitterLitUK - TwitterLitCA - TwitterLitNews. [To comment, d. msg. me or contact via site.]", + "location": "The Stacks", + "url": "http://twitterlit.com", + "id": 5588242, + "protected": false, + "status": { + "created_at": "Sun Jun 03 09:00:46 +0000 2007", + "text": "\"On the drive from the suburbs to the city, we'd experienced a disturbing number of memory lapses\" http://tweetl.com/t0", + "id": 89035512 + } + }, + { + "name": "BlogPhiladelphia", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/5724872/normal/blogphiladelphia_logo.gif?1178142536", + "screen_name": "BlogPhilly", + "description": "A Social Media UnConference in Philly", + "location": "Philly!", + "url": "http://blogphiladelphia.net", + "id": 5724872, + "protected": false, + "status": { + "created_at": "Sun Jun 03 20:32:29 +0000 2007", + "text": "wooohoooo home in nolibs the land of indie rock tight jeans and snark aplenty. good to be back", + "id": 89621942 + } + }, + { + "name": "Lisa@FashWEEK", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/5291252/normal/TWITTER.jpg?1177044270", + "screen_name": "OzFashionWeek", + "description": "Fashion, Beauty + Style editor for News.com.au", + "location": "Sydney", + "url": "http://www.news.com.au/entertainment/feature/0,,5012703,00.html", + "id": 5291252, + "protected": false, + "status": { + "created_at": "Tue May 29 06:24:23 +0000 2007", + "text": "spent today getting distracted by net-a-porter.com ... that's a dangerous site for a fashion addict!", + "id": 82160232 + } + }, + { + "name": "palm pictures", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/4260991/normal/cometohillary.gif?1176335676", + "screen_name": "palmpictures", + "description": "Independent Music, Film, and Love!", + "location": "New York, NY", + "url": "http://www.palmpictures.com", + "id": 4260991, + "protected": false, + "status": { + "created_at": "Sun Jun 03 01:16:22 +0000 2007", + "text": "loves our Book Expo booth neighbors from Endless Games. check em out http://endlessgames.com/gamesmen.html", + "id": 88685562 + } + }, + { + "name": "Barack Obama", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/813286/normal/iconbg.jpg?1177633039", + "screen_name": "BarackObama", + "description": "", + "location": "Chicago, IL", + "url": "http://www.barackobama.com", + "id": 813286, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:49:52 +0000 2007", + "text": "Heading to Democratic presidential debate at St. Anselm College in New Hampshire. Debate starts at 7pm EST and will air live on CNN.", + "id": 89585682 + } + }, + { + "name": "Hollywood.com Live", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/4455001/normal/H_48x48c.gif?1177618725", + "screen_name": "hollywoodcom", + "description": "Hollywood.com Live @ The Tribeca Film Festival", + "location": "New York, NY", + "url": "http://fansites.hollywood.com/live.html", + "id": 4455001, + "protected": false, + "status": { + "created_at": "Thu May 24 02:29:35 +0000 2007", + "text": "Blake, where are you now?! We'll miss you nxt wk... Go IDOLS! ... See you both over the rainbow!", + "id": 76045122 + } + }, + { + "name": "Veronica", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942", + "screen_name": "Veronica", + "description": "CNET TV host and podcasting diva of Buzz Out Loud", + "location": "San Francisco", + "url": "http://www.veronicabelmont.com", + "id": 10350, + "protected": false, + "status": { + "created_at": "Sun Jun 03 03:11:10 +0000 2007", + "text": "i just saw kari byron! my hero!", + "id": 88774212 + } + }, + { + "name": "Alison", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/5248441/normal/new1.jpg?1177002287", + "screen_name": "AFineFrenzy", + "description": "", + "location": "Los Angeles", + "url": "http://www.myspace.com/afinefrenzy", + "id": 5248441, + "protected": false, + "status": { + "created_at": "Sat Jun 02 06:52:41 +0000 2007", + "text": "the sea took my sunglasses, i took a boatload of sand home in my bikini. fair trade? the moon is orange. my skin is still warm from the sun.", + "id": 87808312 + } + }, + { + "name": "Rocketboom", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/1502111/normal/rocket.jpg?1174312502", + "screen_name": "Rocketboom", + "description": "Daily", + "location": "New York City", + "url": "http://www.rocketboom.com", + "id": 1502111, + "protected": false, + "status": { + "created_at": "Sat Jun 02 15:33:06 +0000 2007", + "text": "Ultimate Frisbee 2.0 in Central Park today on Sat. @ 4pm: http://groups.google.com/group/frisbee2point0/", + "id": 88218242 + } + }, + { + "name": "TrippingOnWords", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/59003/normal/lara_and_claire_BIG_HAIR.jpg?1171962588", + "screen_name": "TrippingOnWords", + "description": "Training with 200 Kenyan Orphans for the Hope Runs Marathon and 10K. As a new non profit, Hope Runs is looking for help\u2026check us out at TrippingOnWords.com!", + "location": "Kenya", + "url": "http://TrippingOnWords.com", + "id": 59003, + "protected": false, + "status": { + "created_at": "Sat Jun 02 18:55:59 +0000 2007", + "text": "heading to bed early...visiting Manager's church tomorrow. an early start is essential, apparently", + "id": 88405002 + } + }, + { + "name": "Web 2.0 Expo", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/4200861/normal/webex2007_logo_square.jpg?1176317215", + "screen_name": "w2e", + "description": "Official twitter for the Web 2.0 Expo", + "location": "san francisco, ca", + "url": "http://blog.web2expo.com", + "id": 4200861, + "protected": false, + "status": { + "created_at": "Thu Apr 19 01:00:17 +0000 2007", + "text": "Thanks for coming! \r\nWine being brought to web2open in secs.", + "id": 32588451 + } + }, + { + "name": "Jessica Mellott", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/3658381/normal/Jessica_Mellott.jpg?1177685550", + "screen_name": "JessicaMellott", + "description": "Teen pop singer www.jessicamellott.com www.myspace.com/jessicamellott", + "location": "Maryland", + "url": "http://www.jessicamellott.com", + "id": 3658381, + "protected": false, + "status": { + "created_at": "Fri Jun 01 23:36:46 +0000 2007", + "text": "Getting ready for grad party weekend!", + "id": 87429882 + } + }, + { + "name": "Drive", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/3946281/normal/nathan.png?1176155112", + "screen_name": "foxdrive", + "description": "Action-fueled drama about an illegal, underground cross-country road race. Director Greg Yaitanes will Twitter live director's commentary starting Sunday 8/7c.", + "location": "", + "url": null, + "id": 3946281, + "protected": false, + "status": { + "created_at": "Tue Apr 17 04:05:53 +0000 2007", + "text": "twitter and tell me what you thought of the episode tonight.", + "id": 30603561 + } + }, + { + "name": "Status Updates", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/46413/normal/maintenance.gif?1171961490", + "screen_name": "twitter_status", + "description": "140 characters or less on the health of Twitter!", + "location": "Inside the Twitter", + "url": null, + "id": 46413, + "protected": false, + "status": { + "created_at": "Tue May 29 07:54:18 +0000 2007", + "text": "Catching up on processing updates after some brief confusion.", + "id": 82226192 + } + } +] \ No newline at end of file diff --git a/testdata/followers.json b/testdata/followers.json index 0e0f39f9..e96f386a 100644 --- a/testdata/followers.json +++ b/testdata/followers.json @@ -1 +1,954 @@ -{"users":[{"name":"Robert Brook","description":null,"location":"London","url":"http://www.druidstreet.com/","id":5567,"protected":false,"status":{"created_at":"Sun Jun 03 19:56:54 +0000 2007","text":"poking greader trends - some must live, some must die","id":89591602},"profile_image_url":"http://assets1.twitter.com/images/default_image.gif?1180755379","screen_name":"robertbrook"},{"name":"cote","description":"Industry analyst with RedMonk. DrunkAndRetired.com. YUH!","location":"Austin, Texas","url":"http://www.peopleoverprocess.com/","id":53953,"protected":false,"status":{"created_at":"Sun Jun 03 19:54:55 +0000 2007","text":"Flight to ORD delayed 2 hours. This can't be good.","id":89589762},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/53953/normal/square-lil-hat.jpg?1171962174","screen_name":"cote"},{"name":"Moby","description":"I'm here. Now what?","location":"San Francisco","url":"http://blog.mobius.name","id":4296211,"protected":false,"status":{"created_at":"Sun Jun 03 19:46:00 +0000 2007","text":"Responding to hate mail. \"Ignunce\" at its finest","id":89583032},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/4296211/normal/mobycycle.031007.jpg?1176350283","screen_name":"ibod8x5"},{"name":"Alex King","description":"","location":"Denver, CO","url":"http://alexking.org","id":101143,"protected":false,"status":{"created_at":"Sun Jun 03 19:06:54 +0000 2007","text":"@andrewhyde Coverage was poor enough in the area to drive me back to Sprint.","id":89554432},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/101143/normal/alex_king.jpg?1171953145","screen_name":"alexkingorg"},{"name":"Patrick Mueller","description":"Graying IBMer working for the WebSphere organization","location":"The Triangle, NC","url":"http://muellerware.org","id":765080,"protected":false,"status":{"created_at":"Sun Jun 03 18:48:51 +0000 2007","text":"@JoshStaiger that was one I was looking at, which Google (coincidentally?) ranked highly. Wondering how far I can get w/avacado & salsa","id":89537732},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/765080/normal/glasses-down-115x115-gradient.jpg?1177726044","screen_name":"pmuellr"},{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","url":null,"id":718443,"protected":false,"status":{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","screen_name":"kesuke"},{"name":"Jeff Barr","description":"Amazon Web Services Evangelist, Blogger, Father of 5.","location":"Sammamish, Washington, USA","url":"http://www.jeff-barr.com","id":48443,"protected":false,"status":{"created_at":"Sun Jun 03 16:43:47 +0000 2007","text":"Preparing for trip to DC tomorrow AM - lots of reading materials, TODO list, iPod fresh, camera charged, laptop packed. Arrange for taxi.","id":89432112},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/48443/normal/jeff_barr.jpg?1171961668","screen_name":"jeffbarr"},{"name":"Paul Downey","description":"Computing Industry Bi-product","location":"Berkhamsted, UK","url":"http://blog.whatfettle.com","id":13486,"protected":false,"status":{"created_at":"Sun Jun 03 16:24:53 +0000 2007","text":"back from tea and cake at the village hall now resuming futile search for a family holiday on 'tinternet","id":89413652},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/13486/normal/psd-75x75.jpg?1171954493","screen_name":"psd"},{"name":"C Ortiz","description":"Amongst other things that keep me far away from a computer, I manage PrivateMilitary.org","location":"UK | US","url":"http://www.privatemilitary.org/","id":2306071,"protected":false,"status":{"created_at":"Sun Jun 03 16:10:44 +0000 2007","text":"Sunday reading: security contractors snatched without a shot: http://tinyurl.com/2qyv6x","id":89399902},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/2306071/normal/photo_twitter.jpg?1177775770","screen_name":"privatemilitary"},{"name":"steve o'grady","description":"analyst and co-founder of RedMonk","location":"Denver, CO","url":"http://redmonk.com/sogrady","id":143883,"protected":false,"status":{"created_at":"Sun Jun 03 15:57:16 +0000 2007","text":"ah, it's under \"Reply\"","id":89385112},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279","screen_name":"sogrady"},{"name":"Alexander J Turner","description":"Hubby, Dad & Chemist - Escaped Into IT Land To Cause Damage As A Software Architect!","location":"Oxford, UK","url":"http://www.nerds-central.com","id":1621891,"protected":false,"status":{"created_at":"Sun Jun 03 15:34:24 +0000 2007","text":"@chrisborgan - Just got back from a 20mile bike ride. You're right - it is all about habits. Thanks! less than 5 seconds ago from web","id":89364302},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/1621891/normal/MadAlex256.png?1178292687","screen_name":"AlexTurner"},{"name":"Josh Lucas","description":"Just adding another bit of distraction...","location":"Pasadena, CA","url":"http://www.stonecottage.com/josh/","id":47023,"protected":false,"status":{"created_at":"Sun Jun 03 15:16:47 +0000 2007","text":"wearing my new old-skool upcoming shirt","id":89345632},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/47023/normal/cubs_me.jpg?1171961535","screen_name":"lucasjosh"},{"name":"jark","description":"Co-Founder of deviantART","location":"Tokyo, Japan","url":"http://jarkolicious.com/","id":39653,"protected":false,"status":{"created_at":"Sun Jun 03 14:51:25 +0000 2007","text":"heads to bed, but first starts a process to burn 300 to DVD.","id":89318752},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/39653/normal/jark-static.jpg?1171960858","screen_name":"jark"},{"name":"Paul Terry Walhus","description":"developer building team for http://searchslides.com & http://web2.0slides.com","location":"Austin, Texas","url":"http://austinblogger.com/blog/","id":1418,"protected":false,"status":{"created_at":"Sun Jun 03 14:05:39 +0000 2007","text":"Geni - Everyone's Related: cool web 2.0 family tree app, requires login http://www.geni.com/tree","id":89277722},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/1418/normal/paulterrywalhus.jpg?1175716284","screen_name":"springnet"},{"name":"Floozle","description":"","location":"","url":null,"id":58863,"protected":false,"status":{"created_at":"Sun Jun 03 12:50:02 +0000 2007","text":"Off to the office to complete the conversion","id":89202702},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/58863/normal/29logo3-med.gif?1174609772","screen_name":"Floozle"},{"name":" T\u00c7","description":"Chem: Physics: Math: Logic: Observation: Analysis: Hypothesis: Experimentation: Iteration: Evolution: Science. It works, bitches.","location":"San Francisco, CA","url":"http://tantek.com/","id":11628,"protected":false,"status":{"created_at":"Sun Jun 03 10:34:10 +0000 2007","text":"pondering how 1 can b so tired & sore after exercise, yet so energized as 2 b up at 3:30am, w only *1* coffee instead of usual 3 per workday","id":89104612},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/11628/normal/icon200px.jpg?1171953743","screen_name":"t"},{"name":"adam","description":"http://ifindkarma.com/","location":"Palo Alto, CA","url":"http://renkoo.com/profile/ee0e95249268b86ff2053bef214bfeda","id":1688,"protected":false,"status":{"created_at":"Sun Jun 03 07:07:00 +0000 2007","text":"Norman Mailer on the idea of perfect happiness: \"A fool draws a road map to his magic city.\" (Vanity Fair, Jan 2007)","id":88952182},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/1688/normal/RifkinIcon.jpg?1179096764","screen_name":"ifindkarma"},{"name":"Cameron Walters","description":"getting satisfaction daily","location":"San Francisco","url":"http://chuddup.com/","id":3922,"protected":false,"status":{"created_at":"Sun Jun 03 06:54:14 +0000 2007","text":"Earlier: Pilates. Now: Spazzy thrashcore electro.","id":88940252},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/3922/normal/awesome.jpg?1177104664","screen_name":"ceedub"},{"name":"Jason Calacanis","description":"Looking for TNBT","location":"LA","url":"http://www.calacanis.com","id":3840,"protected":false,"status":{"created_at":"Sun Jun 03 06:49:36 +0000 2007","text":"Having dinner with loic, sam harris, jared diamond, and john brockman... Among others.","id":88935882},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/3840/normal/jason2.jpg?1172771113","screen_name":"JasonCalacanis"},{"name":"hober","description":"One-line bios are hard.","location":"San Diego, CA","url":"http://edward.oconnor.cx/","id":13607,"protected":false,"status":{"created_at":"Sun Jun 03 06:41:04 +0000 2007","text":"Emacs 22 released while I was at BarCamp. heh. http://www.gnu.org/software/emacs/","id":88929942},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/13607/normal/ted-icon-large.jpg?1171954556","screen_name":"hober"},{"name":" Jay","description":"Senior Systems Administrator of the Unix variety ","location":"Houston","url":null,"id":336113,"protected":false,"status":{"created_at":"Sun Jun 03 04:36:50 +0000 2007","text":"Wonders what kind of cheese Kristie spent $70 on.","id":88843542},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/336113/normal/MyPicture.jpg?1179799311","screen_name":"meangrape"},{"name":"Tatsuhiko Miyagawa","description":"Yet another Perl hacker","location":"San Francisco","url":"http://bulknews.vox.com/","id":731253,"protected":false,"status":{"created_at":"Sun Jun 03 04:06:57 +0000 2007","text":"had a good rice/veggie/pork noodle and shrimp fried rice in HoH. Feeling almost full and too ricey","id":88820042},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/731253/normal/P506iC0003735833.jpg?1170146286","screen_name":"miyagawa"},{"name":" Rod Begbie","description":"Cantankerous Scots git.","location":"Somerville, MA","url":"http://groovymother.com/","id":761,"protected":false,"status":{"created_at":"Sun Jun 03 03:43:42 +0000 2007","text":"Fun first day in LA. Looked at stars in sidewalk, got approached by Scientologists three times, Mexican dinner with old friends. Happy!","id":88800482},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/761/normal/vatar.png?1167697094","screen_name":"rodbegbie"},{"name":"Veronica","description":"CNET TV host and podcasting diva of Buzz Out Loud","location":"San Francisco","url":"http://www.veronicabelmont.com","id":10350,"protected":false,"status":{"created_at":"Sun Jun 03 03:11:10 +0000 2007","text":"i just saw kari byron! my hero!","id":88774212},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942","screen_name":"Veronica"},{"name":"eric L","description":"mobile expert, internet idiot","location":"san francisco","url":"http://www.n1s.net","id":8291,"protected":false,"status":{"created_at":"Sun Jun 03 03:08:04 +0000 2007","text":"A howat once said there's no scorin with the sporin.","id":88771502},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/8291/normal/bandit.jpg?1165079078","screen_name":"n1s"},{"name":"Mr Messina","description":"As if concentrating wasn't hard enough already.","location":"94107","url":"http://factoryjoe.com/","id":1186,"protected":false,"status":{"created_at":"Sun Jun 03 01:42:47 +0000 2007","text":"OpenID won the disruptor award at The NextWeb conference! http://tinyurl.com/yq8e89","id":88706172},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/1186/normal/devil_150.jpg?1171953828","screen_name":"factoryjoe"},{"name":"Scobleizer","description":"Tech geek blogger @ http://scobleizer.com","location":"Half Moon Bay, California, USA","url":"http://scobleshow.com","id":13348,"protected":false,"status":{"created_at":"Sun Jun 03 01:06:52 +0000 2007","text":"I can't get into my Flickr account. I can get into Yahoo, but not Flickr... http://tinyurl.com/2b63rh","id":88677782},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/13348/normal/trafficlight.jpg?1175390038","screen_name":"Scobleizer"},{"name":"Andy Edmonds","description":null,"location":null,"url":null,"id":936361,"protected":false,"status":{"created_at":"Sat Jun 02 22:09:55 +0000 2007","text":"Tries out squidoo at http://www.squidoo.com/eyetrack","id":88551872},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/936361/normal/andy_headshot_48x48.png?1176350570","screen_name":"andyed"},{"name":"Ian McKellar","description":"","location":"San Francisco, CA","url":"http://ian.mckellar.org/","id":259,"protected":false,"status":{"created_at":"Sat Jun 02 20:55:30 +0000 2007","text":"lolfeeds got shut down for using too much cpu so I had to get around to adding a caching layer. it fixed some character encoding issues too!","id":88496342},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/259/normal/trapped.jpg?1171957894","screen_name":"ianmckellar"},{"name":"Jeremy Zawodny","description":"I fly and geek.","location":"San Jose, CA","url":"http://jeremy.zawodny.com/blog/","id":97933,"protected":false,"status":{"created_at":"Sat Jun 02 20:04:53 +0000 2007","text":"errands and packing for a week in the desert next week...","id":88458352},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/97933/normal/Zawodny-md.jpg?1166680073","screen_name":"jzawodn"},{"name":"Mihai","description":"","location":"New York, NY","url":"http://persistent.info/","id":28203,"protected":false,"status":{"created_at":"Sat Jun 02 19:46:47 +0000 2007","text":"Back on campus for reunions. Don't feel old just yet. Phew.","id":88444532},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/28203/normal/mihaip.jpg?1171958069","screen_name":"mihai"},{"name":"Robert Merrill","description":"Helping People & Teams Become Better","location":"Provo, Utah","url":"http://www.utahtechjobs.com","id":755721,"protected":false,"status":{"created_at":"Sat Jun 02 17:16:45 +0000 2007","text":"Heading home","id":88316782},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/755721/normal/50998991_N00.jpg?1170908379","screen_name":"robertmerrill"},{"name":"Darren Kulp","description":"Computer, linguistics, and music geek. What else is there to say?","location":"Eau Claire, WI, USA","url":"http://kulp.ch/","id":6083072,"protected":false,"status":{"created_at":"Sat Jun 02 15:39:55 +0000 2007","text":"twitterim finally works? Fancy that.","id":88225602},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/6083072/normal/f1.jpg?1179303021","screen_name":"kulp"},{"name":"sean coon","description":"trying to make a living and a difference...","location":"Greensboro, NC","url":"http://www.seancoon.org","id":677903,"protected":false,"status":{"created_at":"Sat Jun 02 08:27:03 +0000 2007","text":"Holy moly. Time to go fishing. Yeeeaaahhh!","id":87876222},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/677903/normal/sean-85.png?1173252480","screen_name":"spcoon"},{"name":"Niall","description":"Squeezing the most out of everything but my phone","location":"San Francisco, CA","url":"http://www.niallkennedy.com/","id":1085,"protected":true,"status":{"created_at":"Sat Jun 02 04:32:57 +0000 2007","text":"your server migration is at 11. oh, we changed our minds, we're doing it at 9:30. ummm....yay?","id":87696902},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/1085/normal/niall_ringer.jpg?1171953434","screen_name":"niall"},{"name":"George P","description":"i am illicium","location":"Bay Area","url":null,"id":796724,"protected":true,"status":{"created_at":"Sat Jun 02 04:07:24 +0000 2007","text":"Hello, Twitter! Long time no see.","id":87673952},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/796724/normal/star.gif?1172880544","screen_name":"illicium"},{"name":"Daniel E. Renfer","description":"Freelance Individual","location":"Ypsilanti, MI","url":"http://kronkltd.net/","id":11491,"protected":false,"status":{"created_at":"Fri Jun 01 21:15:50 +0000 2007","text":"In the immortal words of Doug from MTV's The State: \"I'm outta heere\"","id":87306192},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/11491/normal/886.jpg?1171953691","screen_name":"duck1123"},{"name":"Simon Willison","description":null,"location":"London","url":"http://simonwillison.net/","id":12497,"protected":false,"status":{"created_at":"Fri Jun 01 21:01:59 +0000 2007","text":"Nat and I are in Brighton this weekend, anyone want to meet up?","id":87291372},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/12497/normal/298777290_a5ed9a4e70_m.jpg?1171954113","screen_name":"simonw"},{"name":"Yoz","description":"A small yoz-type object, currently residing in San Francisco","location":"San Francisco, CA","url":"http://yoz.com/","id":12329,"protected":false,"status":{"created_at":"Fri Jun 01 18:13:23 +0000 2007","text":"@riffraff814: Thanks but no thanks, don't drink coffee, my body is a temple filled with magical prancing ponies yay peanut M&M overdose","id":87132942},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/12329/normal/yozlap-100.jpg?1171954052","screen_name":"yoz"},{"name":"J Scud","description":"Software can be beautiful.","location":"Silicon Valley California","url":"http://jeffreyscudder.blogspot.com/","id":1359571,"protected":false,"status":{"created_at":"Fri Jun 01 07:14:58 +0000 2007","text":"Watching videos from Google Developer Day: http://tinyurl.com/ywr8cz","id":86425072},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/1359571/normal/temp_img.jpg?1177211826","screen_name":"jaguarjaws"},{"name":"Joe Duck","description":"Travel Internet Oregon Guy","location":"Oregon","url":"http://joeduck.wordpress.com","id":150433,"protected":false,"status":{"created_at":"Fri Jun 01 07:09:02 +0000 2007","text":"Removed Google downranking on an obscure travel page. Next test - non-obscure page fixes.http://tinyurl.com/227re8","id":86418302},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/150433/normal/joebiopic.jpg?1173598016","screen_name":"joeduck"},{"name":"Jon Phillips","description":"http://rejon.org/bio/","location":"SF","url":"http://rejon.org","id":744063,"protected":false,"status":{"created_at":"Fri Jun 01 04:59:45 +0000 2007","text":"Killing it...","id":86303992},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/744063/normal/jon_by_ryan_junell_fixed.png?1170353692","screen_name":"rejon"},{"name":"The BFF","description":"","location":"Netherlands","url":"http://doncrowley.blogspot.com/","id":1620121,"protected":false,"status":{"created_at":"Thu May 31 21:30:08 +0000 2007","text":"Twitteriffic addicts - some power tips: I am amazed at how many still do not know these tricks with twitte.. http://tinyurl.com/2mzjod","id":85901962},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/1620121/normal/bff.jpg?1174419110","screen_name":"TheBFF"},{"name":"Andy Armstrong","description":"Perl Bloke","location":"Cumbria, UK","url":"http://hexten.net","id":1022831,"protected":false,"status":{"created_at":"Thu May 31 18:58:03 +0000 2007","text":"37 downloads pending to iTMS. Keeps timing out. Bah. Anyone else?","id":85769802},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/1022831/normal/moi.jpg?1176741181","screen_name":"AndyArmstrong"},{"name":"Brian Suda","description":"SWM Informatician @64.132511;-21.906494 (microformats,GRDDL,XSLT,PHP,picoformats,XHTML)","location":"Iceland","url":"http://suda.co.uk/","id":15313,"protected":false,"status":{"created_at":"Thu May 31 17:54:18 +0000 2007","text":"is happy that tonight is the last night that you can smoke in bars and restaurants in Iceland. Washing machines won't be happy with this.","id":85708142},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/15313/normal/gravatar.png?1175011623","screen_name":"briansuda"},{"name":"arunaurl","description":"Make long URLs small!","location":"All over the web","url":"http://arunaurl.com","id":6371812,"protected":false,"status":{"created_at":"Tue May 29 23:49:15 +0000 2007","text":"Aruna URL now available as a Zimbra Collaboration Suite plug-in / zimlet http://arunaurl.com/b25","id":83248192},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/6371812/normal/Aruna_URL_logo.png?1180314185","screen_name":"arunaurl"},{"name":"Hiroshi Ayukawa","description":"A Japanese ordinary Python & C++ programmer","location":"Tokyo, Japan","url":null,"id":3786561,"protected":false,"status":{"created_at":"Tue May 29 16:22:31 +0000 2007","text":"I don't like to use JAVA any more... Let me sleep, Ahhhhh! Give me Python.","id":82802982},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/3786561/normal/muku.jpg?1176037335","screen_name":"hiroshiykw"},{"name":" Scriptless Day","description":"","location":"","url":"http://www.scriptlessday.com","id":3641801,"protected":false,"status":{"created_at":"Mon May 28 07:55:27 +0000 2007","text":"39 Days Left till Scriptless Day!! http://www.scriptlessday.com :D","id":81305782},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/3641801/normal/splash2.png?1175927287","screen_name":"scriptlessday"},{"name":"brady forrest","description":null,"location":null,"url":null,"id":6140,"protected":false,"status":{"created_at":"Sat May 26 02:51:53 +0000 2007","text":"im at convergence 13 in pdx. looking for events inspiration.","id":78751852},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/6140/normal/IMG_9629.jpg?1175295805","screen_name":"brady"},{"name":"TV with MeeVee","description":"We heart TV","location":"Burlingame, CA","url":"http://blog.meevee.com","id":2371741,"protected":false,"status":{"created_at":"Wed May 23 17:22:20 +0000 2007","text":"Nicole Richie Denies Rehab Rumors http://tinyurl.com/2hvn8h","id":75514922},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/2371741/normal/meevee_potato_ad3SoSF.jpg?1174950717","screen_name":"TVwithMeeVee"},{"name":"Emmet Connolly","description":"I have nothing to say (and I am saying it)","location":"Dublin","url":"http://blog.thoughtwax.com/","id":11323,"protected":false,"status":{"created_at":"Tue May 22 21:34:28 +0000 2007","text":"Virtual subdomains + .htaccess = ow, my brain. Anyway, three years late but my blog now has pretty urls. Hooray!","id":74472602},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/11323/normal/me.jpg?1171953619","screen_name":"thoughtwax"},{"name":"Bilal Hameed","description":"Editor of Startup Meme","location":"As if it matters","url":"http://startupmeme.com","id":5629992,"protected":false,"status":{"created_at":"Tue May 15 16:41:05 +0000 2007","text":"http://tinyurl.com/2h474q Use EasyPost To Send Snail Mail in Canada","id":65079402},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/5629992/normal/me.jpg?1177848235","screen_name":"startupmeme"},{"name":"Koen Sadza","description":"I study Applied Physics. My hobbies are my GF,SInging,Scouting,Clubbing,Computers","location":"Eindhoven, The Netherlands","url":"http://weblog.ksdz.nl/","id":803238,"protected":false,"status":{"created_at":"Sat May 12 14:16:37 +0000 2007","text":"Net terug van Scouting","id":61483292},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/803238/normal/kerst.jpg?1172746148","screen_name":"ksdz"},{"name":"Webtickle","description":"","location":"California","url":null,"id":1322691,"protected":false,"status":{"created_at":"Thu May 10 03:25:15 +0000 2007","text":"The Freelancer\u2019s Toolset: 100 Web Apps for Everything You Will Possibly Need\" http://tinyurl.com/2dztm8","id":58099692},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/1322691/normal/large4197.png?1174089345","screen_name":"Webtickle"},{"name":"Yes","description":null,"location":null,"url":null,"id":765884,"protected":false,"status":{"created_at":"Wed May 09 20:43:39 +0000 2007","text":"Whoo hoo! Yay!","id":57715832},"profile_image_url":"http://assets1.twitter.com/images/default_image.gif?1180755379","screen_name":"Yes"},{"name":"Leland Harding III","description":"Traditional country artist, from South Dakota with a major background in the country music scene","location":"South Dakota","url":"http://www.lelandharding.com","id":3545551,"protected":false,"status":{"created_at":"Tue May 08 08:01:31 +0000 2007","text":"Anyone who has been scammed by these people can get ahold of me at leland@ldharding.com","id":54614912},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/3545551/normal/image01-xml.jpg?1175797244","screen_name":"ldcountry"},{"name":"Trendio M","description":"","location":"","url":"http://www.trendio.com","id":5845532,"protected":false,"status":{"created_at":"Mon May 07 22:32:39 +0000 2007","text":"Open Source and Linux are up today. Which will be this week's top technology trends? http://tinyurl.com/2bpknb","id":53868212},"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/5845532/normal/logo48x48.gif?1178576662","screen_name":"Trendio_M"},{"name":"Patrick Wang","description":"","location":"San Francisco, CA","url":"http://junesix.org","id":799123,"protected":false,"status":{"created_at":"Mon Apr 16 21:57:48 +0000 2007","text":"@jabancroft optimized builds at beatnikpad.com","id":30322371},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/799123/normal/samurai_head.gif?1173313806","screen_name":"junesix"},{"name":"Dion Almaer","description":"ajaxian, googley, and techno","location":"Palo Alto, CA","url":"http://almaer.com/blog","id":4216361,"protected":false,"status":{"created_at":"Wed Apr 11 17:48:16 +0000 2007","text":"Enjoying being able to talk about the Google Developer Day!","id":24861261},"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/4216361/normal/logo-48x48.jpg?1176313520","screen_name":"dalmaer"},{"name":"Chris DiBona","description":null,"location":null,"url":null,"id":44423,"protected":true,"status":{"created_at":"Fri Mar 16 16:42:55 +0000 2007","text":"Cripes, trapped on the tarmac at iad. Today, we sit in hell:","id":8638201},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/44423/normal/103ID_DiBona.jpg?1171961329","screen_name":"cdibona"},{"name":"napoleone","description":"","location":"piacenza ITALY","url":null,"id":740133,"protected":false,"status":{"created_at":"Sat Feb 17 14:36:53 +0000 2007","text":"sono indeciso tra casual o un p\u00f2 sportive!!!","id":5555694},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/740133/normal/P6050088.jpg?1170800580","screen_name":"Cris"},{"name":"Brian Tucker","description":null,"location":null,"url":null,"id":759328,"protected":false,"status":{"created_at":"Sun Feb 11 04:11:11 +0000 2007","text":"Chinese new year starts next weekend I think.","id":5422032},"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/759328/normal/bt.png?1170987088","screen_name":"brian318"},{"name":"Josh H","description":null,"location":null,"url":null,"id":2831771,"protected":false,"profile_image_url":"http://assets1.twitter.com/images/default_image.gif?1180755379","screen_name":"josh59x"},{"name":"mfagan","description":"","location":"Canada","url":"http://faganm.com/","id":677403,"protected":false,"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/677403/normal/me_with_hat.jpg?1171966071","screen_name":"mfagan"}]} \ No newline at end of file +{ + "users": [ + { + "name": "Robert Brook", + "description": null, + "location": "London", + "url": "http://www.druidstreet.com/", + "id": 5567, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:56:54 +0000 2007", + "text": "poking greader trends - some must live, some must die", + "id": 89591602 + }, + "profile_image_url": "http://assets1.twitter.com/images/default_image.gif?1180755379", + "screen_name": "robertbrook" + }, + { + "name": "cote", + "description": "Industry analyst with RedMonk. DrunkAndRetired.com. YUH!", + "location": "Austin, Texas", + "url": "http://www.peopleoverprocess.com/", + "id": 53953, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:54:55 +0000 2007", + "text": "Flight to ORD delayed 2 hours. This can't be good.", + "id": 89589762 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/53953/normal/square-lil-hat.jpg?1171962174", + "screen_name": "cote" + }, + { + "name": "Moby", + "description": "I'm here. Now what?", + "location": "San Francisco", + "url": "http://blog.mobius.name", + "id": 4296211, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:46:00 +0000 2007", + "text": "Responding to hate mail. \"Ignunce\" at its finest", + "id": 89583032 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/4296211/normal/mobycycle.031007.jpg?1176350283", + "screen_name": "ibod8x5" + }, + { + "name": "Alex King", + "description": "", + "location": "Denver, CO", + "url": "http://alexking.org", + "id": 101143, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:06:54 +0000 2007", + "text": "@andrewhyde Coverage was poor enough in the area to drive me back to Sprint.", + "id": 89554432 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/101143/normal/alex_king.jpg?1171953145", + "screen_name": "alexkingorg" + }, + { + "name": "Patrick Mueller", + "description": "Graying IBMer working for the WebSphere organization", + "location": "The Triangle, NC", + "url": "http://muellerware.org", + "id": 765080, + "protected": false, + "status": { + "created_at": "Sun Jun 03 18:48:51 +0000 2007", + "text": "@JoshStaiger that was one I was looking at, which Google (coincidentally?) ranked highly. Wondering how far I can get w/avacado & salsa", + "id": 89537732 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/765080/normal/glasses-down-115x115-gradient.jpg?1177726044", + "screen_name": "pmuellr" + }, + { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "url": null, + "id": 718443, + "protected": false, + "status": { + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "screen_name": "kesuke" + }, + { + "name": "Jeff Barr", + "description": "Amazon Web Services Evangelist, Blogger, Father of 5.", + "location": "Sammamish, Washington, USA", + "url": "http://www.jeff-barr.com", + "id": 48443, + "protected": false, + "status": { + "created_at": "Sun Jun 03 16:43:47 +0000 2007", + "text": "Preparing for trip to DC tomorrow AM - lots of reading materials, TODO list, iPod fresh, camera charged, laptop packed. Arrange for taxi.", + "id": 89432112 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/48443/normal/jeff_barr.jpg?1171961668", + "screen_name": "jeffbarr" + }, + { + "name": "Paul Downey", + "description": "Computing Industry Bi-product", + "location": "Berkhamsted, UK", + "url": "http://blog.whatfettle.com", + "id": 13486, + "protected": false, + "status": { + "created_at": "Sun Jun 03 16:24:53 +0000 2007", + "text": "back from tea and cake at the village hall now resuming futile search for a family holiday on 'tinternet", + "id": 89413652 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/13486/normal/psd-75x75.jpg?1171954493", + "screen_name": "psd" + }, + { + "name": "C Ortiz", + "description": "Amongst other things that keep me far away from a computer, I manage PrivateMilitary.org", + "location": "UK | US", + "url": "http://www.privatemilitary.org/", + "id": 2306071, + "protected": false, + "status": { + "created_at": "Sun Jun 03 16:10:44 +0000 2007", + "text": "Sunday reading: security contractors snatched without a shot: http://tinyurl.com/2qyv6x", + "id": 89399902 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/2306071/normal/photo_twitter.jpg?1177775770", + "screen_name": "privatemilitary" + }, + { + "name": "steve o'grady", + "description": "analyst and co-founder of RedMonk", + "location": "Denver, CO", + "url": "http://redmonk.com/sogrady", + "id": 143883, + "protected": false, + "status": { + "created_at": "Sun Jun 03 15:57:16 +0000 2007", + "text": "ah, it's under \"Reply\"", + "id": 89385112 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279", + "screen_name": "sogrady" + }, + { + "name": "Alexander J Turner", + "description": "Hubby, Dad & Chemist - Escaped Into IT Land To Cause Damage As A Software Architect!", + "location": "Oxford, UK", + "url": "http://www.nerds-central.com", + "id": 1621891, + "protected": false, + "status": { + "created_at": "Sun Jun 03 15:34:24 +0000 2007", + "text": "@chrisborgan - Just got back from a 20mile bike ride. You're right - it is all about habits. Thanks! less than 5 seconds ago from web", + "id": 89364302 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/1621891/normal/MadAlex256.png?1178292687", + "screen_name": "AlexTurner" + }, + { + "name": "Josh Lucas", + "description": "Just adding another bit of distraction...", + "location": "Pasadena, CA", + "url": "http://www.stonecottage.com/josh/", + "id": 47023, + "protected": false, + "status": { + "created_at": "Sun Jun 03 15:16:47 +0000 2007", + "text": "wearing my new old-skool upcoming shirt", + "id": 89345632 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/47023/normal/cubs_me.jpg?1171961535", + "screen_name": "lucasjosh" + }, + { + "name": "jark", + "description": "Co-Founder of deviantART", + "location": "Tokyo, Japan", + "url": "http://jarkolicious.com/", + "id": 39653, + "protected": false, + "status": { + "created_at": "Sun Jun 03 14:51:25 +0000 2007", + "text": "heads to bed, but first starts a process to burn 300 to DVD.", + "id": 89318752 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/39653/normal/jark-static.jpg?1171960858", + "screen_name": "jark" + }, + { + "name": "Paul Terry Walhus", + "description": "developer building team for http://searchslides.com & http://web2.0slides.com", + "location": "Austin, Texas", + "url": "http://austinblogger.com/blog/", + "id": 1418, + "protected": false, + "status": { + "created_at": "Sun Jun 03 14:05:39 +0000 2007", + "text": "Geni - Everyone's Related: cool web 2.0 family tree app, requires login http://www.geni.com/tree", + "id": 89277722 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/1418/normal/paulterrywalhus.jpg?1175716284", + "screen_name": "springnet" + }, + { + "name": "Floozle", + "description": "", + "location": "", + "url": null, + "id": 58863, + "protected": false, + "status": { + "created_at": "Sun Jun 03 12:50:02 +0000 2007", + "text": "Off to the office to complete the conversion", + "id": 89202702 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/58863/normal/29logo3-med.gif?1174609772", + "screen_name": "Floozle" + }, + { + "name": " T\u00c7", + "description": "Chem: Physics: Math: Logic: Observation: Analysis: Hypothesis: Experimentation: Iteration: Evolution: Science. It works, bitches.", + "location": "San Francisco, CA", + "url": "http://tantek.com/", + "id": 11628, + "protected": false, + "status": { + "created_at": "Sun Jun 03 10:34:10 +0000 2007", + "text": "pondering how 1 can b so tired & sore after exercise, yet so energized as 2 b up at 3:30am, w only *1* coffee instead of usual 3 per workday", + "id": 89104612 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/11628/normal/icon200px.jpg?1171953743", + "screen_name": "t" + }, + { + "name": "adam", + "description": "http://ifindkarma.com/", + "location": "Palo Alto, CA", + "url": "http://renkoo.com/profile/ee0e95249268b86ff2053bef214bfeda", + "id": 1688, + "protected": false, + "status": { + "created_at": "Sun Jun 03 07:07:00 +0000 2007", + "text": "Norman Mailer on the idea of perfect happiness: \"A fool draws a road map to his magic city.\" (Vanity Fair, Jan 2007)", + "id": 88952182 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/1688/normal/RifkinIcon.jpg?1179096764", + "screen_name": "ifindkarma" + }, + { + "name": "Cameron Walters", + "description": "getting satisfaction daily", + "location": "San Francisco", + "url": "http://chuddup.com/", + "id": 3922, + "protected": false, + "status": { + "created_at": "Sun Jun 03 06:54:14 +0000 2007", + "text": "Earlier: Pilates. Now: Spazzy thrashcore electro.", + "id": 88940252 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/3922/normal/awesome.jpg?1177104664", + "screen_name": "ceedub" + }, + { + "name": "Jason Calacanis", + "description": "Looking for TNBT", + "location": "LA", + "url": "http://www.calacanis.com", + "id": 3840, + "protected": false, + "status": { + "created_at": "Sun Jun 03 06:49:36 +0000 2007", + "text": "Having dinner with loic, sam harris, jared diamond, and john brockman... Among others.", + "id": 88935882 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/3840/normal/jason2.jpg?1172771113", + "screen_name": "JasonCalacanis" + }, + { + "name": "hober", + "description": "One-line bios are hard.", + "location": "San Diego, CA", + "url": "http://edward.oconnor.cx/", + "id": 13607, + "protected": false, + "status": { + "created_at": "Sun Jun 03 06:41:04 +0000 2007", + "text": "Emacs 22 released while I was at BarCamp. heh. http://www.gnu.org/software/emacs/", + "id": 88929942 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/13607/normal/ted-icon-large.jpg?1171954556", + "screen_name": "hober" + }, + { + "name": " Jay", + "description": "Senior Systems Administrator of the Unix variety ", + "location": "Houston", + "url": null, + "id": 336113, + "protected": false, + "status": { + "created_at": "Sun Jun 03 04:36:50 +0000 2007", + "text": "Wonders what kind of cheese Kristie spent $70 on.", + "id": 88843542 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/336113/normal/MyPicture.jpg?1179799311", + "screen_name": "meangrape" + }, + { + "name": "Tatsuhiko Miyagawa", + "description": "Yet another Perl hacker", + "location": "San Francisco", + "url": "http://bulknews.vox.com/", + "id": 731253, + "protected": false, + "status": { + "created_at": "Sun Jun 03 04:06:57 +0000 2007", + "text": "had a good rice/veggie/pork noodle and shrimp fried rice in HoH. Feeling almost full and too ricey", + "id": 88820042 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/731253/normal/P506iC0003735833.jpg?1170146286", + "screen_name": "miyagawa" + }, + { + "name": " Rod Begbie", + "description": "Cantankerous Scots git.", + "location": "Somerville, MA", + "url": "http://groovymother.com/", + "id": 761, + "protected": false, + "status": { + "created_at": "Sun Jun 03 03:43:42 +0000 2007", + "text": "Fun first day in LA. Looked at stars in sidewalk, got approached by Scientologists three times, Mexican dinner with old friends. Happy!", + "id": 88800482 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/761/normal/vatar.png?1167697094", + "screen_name": "rodbegbie" + }, + { + "name": "Veronica", + "description": "CNET TV host and podcasting diva of Buzz Out Loud", + "location": "San Francisco", + "url": "http://www.veronicabelmont.com", + "id": 10350, + "protected": false, + "status": { + "created_at": "Sun Jun 03 03:11:10 +0000 2007", + "text": "i just saw kari byron! my hero!", + "id": 88774212 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942", + "screen_name": "Veronica" + }, + { + "name": "eric L", + "description": "mobile expert, internet idiot", + "location": "san francisco", + "url": "http://www.n1s.net", + "id": 8291, + "protected": false, + "status": { + "created_at": "Sun Jun 03 03:08:04 +0000 2007", + "text": "A howat once said there's no scorin with the sporin.", + "id": 88771502 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/8291/normal/bandit.jpg?1165079078", + "screen_name": "n1s" + }, + { + "name": "Mr Messina", + "description": "As if concentrating wasn't hard enough already.", + "location": "94107", + "url": "http://factoryjoe.com/", + "id": 1186, + "protected": false, + "status": { + "created_at": "Sun Jun 03 01:42:47 +0000 2007", + "text": "OpenID won the disruptor award at The NextWeb conference! http://tinyurl.com/yq8e89", + "id": 88706172 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/1186/normal/devil_150.jpg?1171953828", + "screen_name": "factoryjoe" + }, + { + "name": "Scobleizer", + "description": "Tech geek blogger @ http://scobleizer.com", + "location": "Half Moon Bay, California, USA", + "url": "http://scobleshow.com", + "id": 13348, + "protected": false, + "status": { + "created_at": "Sun Jun 03 01:06:52 +0000 2007", + "text": "I can't get into my Flickr account. I can get into Yahoo, but not Flickr... http://tinyurl.com/2b63rh", + "id": 88677782 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/13348/normal/trafficlight.jpg?1175390038", + "screen_name": "Scobleizer" + }, + { + "name": "Andy Edmonds", + "description": null, + "location": null, + "url": null, + "id": 936361, + "protected": false, + "status": { + "created_at": "Sat Jun 02 22:09:55 +0000 2007", + "text": "Tries out squidoo at http://www.squidoo.com/eyetrack", + "id": 88551872 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/936361/normal/andy_headshot_48x48.png?1176350570", + "screen_name": "andyed" + }, + { + "name": "Ian McKellar", + "description": "", + "location": "San Francisco, CA", + "url": "http://ian.mckellar.org/", + "id": 259, + "protected": false, + "status": { + "created_at": "Sat Jun 02 20:55:30 +0000 2007", + "text": "lolfeeds got shut down for using too much cpu so I had to get around to adding a caching layer. it fixed some character encoding issues too!", + "id": 88496342 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/259/normal/trapped.jpg?1171957894", + "screen_name": "ianmckellar" + }, + { + "name": "Jeremy Zawodny", + "description": "I fly and geek.", + "location": "San Jose, CA", + "url": "http://jeremy.zawodny.com/blog/", + "id": 97933, + "protected": false, + "status": { + "created_at": "Sat Jun 02 20:04:53 +0000 2007", + "text": "errands and packing for a week in the desert next week...", + "id": 88458352 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/97933/normal/Zawodny-md.jpg?1166680073", + "screen_name": "jzawodn" + }, + { + "name": "Mihai", + "description": "", + "location": "New York, NY", + "url": "http://persistent.info/", + "id": 28203, + "protected": false, + "status": { + "created_at": "Sat Jun 02 19:46:47 +0000 2007", + "text": "Back on campus for reunions. Don't feel old just yet. Phew.", + "id": 88444532 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/28203/normal/mihaip.jpg?1171958069", + "screen_name": "mihai" + }, + { + "name": "Robert Merrill", + "description": "Helping People & Teams Become Better", + "location": "Provo, Utah", + "url": "http://www.utahtechjobs.com", + "id": 755721, + "protected": false, + "status": { + "created_at": "Sat Jun 02 17:16:45 +0000 2007", + "text": "Heading home", + "id": 88316782 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/755721/normal/50998991_N00.jpg?1170908379", + "screen_name": "robertmerrill" + }, + { + "name": "Darren Kulp", + "description": "Computer, linguistics, and music geek. What else is there to say?", + "location": "Eau Claire, WI, USA", + "url": "http://kulp.ch/", + "id": 6083072, + "protected": false, + "status": { + "created_at": "Sat Jun 02 15:39:55 +0000 2007", + "text": "twitterim finally works? Fancy that.", + "id": 88225602 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/6083072/normal/f1.jpg?1179303021", + "screen_name": "kulp" + }, + { + "name": "sean coon", + "description": "trying to make a living and a difference...", + "location": "Greensboro, NC", + "url": "http://www.seancoon.org", + "id": 677903, + "protected": false, + "status": { + "created_at": "Sat Jun 02 08:27:03 +0000 2007", + "text": "Holy moly. Time to go fishing. Yeeeaaahhh!", + "id": 87876222 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/677903/normal/sean-85.png?1173252480", + "screen_name": "spcoon" + }, + { + "name": "Niall", + "description": "Squeezing the most out of everything but my phone", + "location": "San Francisco, CA", + "url": "http://www.niallkennedy.com/", + "id": 1085, + "protected": true, + "status": { + "created_at": "Sat Jun 02 04:32:57 +0000 2007", + "text": "your server migration is at 11. oh, we changed our minds, we're doing it at 9:30. ummm....yay?", + "id": 87696902 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/1085/normal/niall_ringer.jpg?1171953434", + "screen_name": "niall" + }, + { + "name": "George P", + "description": "i am illicium", + "location": "Bay Area", + "url": null, + "id": 796724, + "protected": true, + "status": { + "created_at": "Sat Jun 02 04:07:24 +0000 2007", + "text": "Hello, Twitter! Long time no see.", + "id": 87673952 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/796724/normal/star.gif?1172880544", + "screen_name": "illicium" + }, + { + "name": "Daniel E. Renfer", + "description": "Freelance Individual", + "location": "Ypsilanti, MI", + "url": "http://kronkltd.net/", + "id": 11491, + "protected": false, + "status": { + "created_at": "Fri Jun 01 21:15:50 +0000 2007", + "text": "In the immortal words of Doug from MTV's The State: \"I'm outta heere\"", + "id": 87306192 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/11491/normal/886.jpg?1171953691", + "screen_name": "duck1123" + }, + { + "name": "Simon Willison", + "description": null, + "location": "London", + "url": "http://simonwillison.net/", + "id": 12497, + "protected": false, + "status": { + "created_at": "Fri Jun 01 21:01:59 +0000 2007", + "text": "Nat and I are in Brighton this weekend, anyone want to meet up?", + "id": 87291372 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/12497/normal/298777290_a5ed9a4e70_m.jpg?1171954113", + "screen_name": "simonw" + }, + { + "name": "Yoz", + "description": "A small yoz-type object, currently residing in San Francisco", + "location": "San Francisco, CA", + "url": "http://yoz.com/", + "id": 12329, + "protected": false, + "status": { + "created_at": "Fri Jun 01 18:13:23 +0000 2007", + "text": "@riffraff814: Thanks but no thanks, don't drink coffee, my body is a temple filled with magical prancing ponies yay peanut M&M overdose", + "id": 87132942 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/12329/normal/yozlap-100.jpg?1171954052", + "screen_name": "yoz" + }, + { + "name": "J Scud", + "description": "Software can be beautiful.", + "location": "Silicon Valley California", + "url": "http://jeffreyscudder.blogspot.com/", + "id": 1359571, + "protected": false, + "status": { + "created_at": "Fri Jun 01 07:14:58 +0000 2007", + "text": "Watching videos from Google Developer Day: http://tinyurl.com/ywr8cz", + "id": 86425072 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/1359571/normal/temp_img.jpg?1177211826", + "screen_name": "jaguarjaws" + }, + { + "name": "Joe Duck", + "description": "Travel Internet Oregon Guy", + "location": "Oregon", + "url": "http://joeduck.wordpress.com", + "id": 150433, + "protected": false, + "status": { + "created_at": "Fri Jun 01 07:09:02 +0000 2007", + "text": "Removed Google downranking on an obscure travel page. Next test - non-obscure page fixes.http://tinyurl.com/227re8", + "id": 86418302 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/150433/normal/joebiopic.jpg?1173598016", + "screen_name": "joeduck" + }, + { + "name": "Jon Phillips", + "description": "http://rejon.org/bio/", + "location": "SF", + "url": "http://rejon.org", + "id": 744063, + "protected": false, + "status": { + "created_at": "Fri Jun 01 04:59:45 +0000 2007", + "text": "Killing it...", + "id": 86303992 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/744063/normal/jon_by_ryan_junell_fixed.png?1170353692", + "screen_name": "rejon" + }, + { + "name": "The BFF", + "description": "", + "location": "Netherlands", + "url": "http://doncrowley.blogspot.com/", + "id": 1620121, + "protected": false, + "status": { + "created_at": "Thu May 31 21:30:08 +0000 2007", + "text": "Twitteriffic addicts - some power tips: I am amazed at how many still do not know these tricks with twitte.. http://tinyurl.com/2mzjod", + "id": 85901962 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/1620121/normal/bff.jpg?1174419110", + "screen_name": "TheBFF" + }, + { + "name": "Andy Armstrong", + "description": "Perl Bloke", + "location": "Cumbria, UK", + "url": "http://hexten.net", + "id": 1022831, + "protected": false, + "status": { + "created_at": "Thu May 31 18:58:03 +0000 2007", + "text": "37 downloads pending to iTMS. Keeps timing out. Bah. Anyone else?", + "id": 85769802 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/1022831/normal/moi.jpg?1176741181", + "screen_name": "AndyArmstrong" + }, + { + "name": "Brian Suda", + "description": "SWM Informatician @64.132511;-21.906494 (microformats,GRDDL,XSLT,PHP,picoformats,XHTML)", + "location": "Iceland", + "url": "http://suda.co.uk/", + "id": 15313, + "protected": false, + "status": { + "created_at": "Thu May 31 17:54:18 +0000 2007", + "text": "is happy that tonight is the last night that you can smoke in bars and restaurants in Iceland. Washing machines won't be happy with this.", + "id": 85708142 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/15313/normal/gravatar.png?1175011623", + "screen_name": "briansuda" + }, + { + "name": "arunaurl", + "description": "Make long URLs small!", + "location": "All over the web", + "url": "http://arunaurl.com", + "id": 6371812, + "protected": false, + "status": { + "created_at": "Tue May 29 23:49:15 +0000 2007", + "text": "Aruna URL now available as a Zimbra Collaboration Suite plug-in / zimlet http://arunaurl.com/b25", + "id": 83248192 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/6371812/normal/Aruna_URL_logo.png?1180314185", + "screen_name": "arunaurl" + }, + { + "name": "Hiroshi Ayukawa", + "description": "A Japanese ordinary Python & C++ programmer", + "location": "Tokyo, Japan", + "url": null, + "id": 3786561, + "protected": false, + "status": { + "created_at": "Tue May 29 16:22:31 +0000 2007", + "text": "I don't like to use JAVA any more... Let me sleep, Ahhhhh! Give me Python.", + "id": 82802982 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/3786561/normal/muku.jpg?1176037335", + "screen_name": "hiroshiykw" + }, + { + "name": " Scriptless Day", + "description": "", + "location": "", + "url": "http://www.scriptlessday.com", + "id": 3641801, + "protected": false, + "status": { + "created_at": "Mon May 28 07:55:27 +0000 2007", + "text": "39 Days Left till Scriptless Day!! http://www.scriptlessday.com :D", + "id": 81305782 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/3641801/normal/splash2.png?1175927287", + "screen_name": "scriptlessday" + }, + { + "name": "brady forrest", + "description": null, + "location": null, + "url": null, + "id": 6140, + "protected": false, + "status": { + "created_at": "Sat May 26 02:51:53 +0000 2007", + "text": "im at convergence 13 in pdx. looking for events inspiration.", + "id": 78751852 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/6140/normal/IMG_9629.jpg?1175295805", + "screen_name": "brady" + }, + { + "name": "TV with MeeVee", + "description": "We heart TV", + "location": "Burlingame, CA", + "url": "http://blog.meevee.com", + "id": 2371741, + "protected": false, + "status": { + "created_at": "Wed May 23 17:22:20 +0000 2007", + "text": "Nicole Richie Denies Rehab Rumors http://tinyurl.com/2hvn8h", + "id": 75514922 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/2371741/normal/meevee_potato_ad3SoSF.jpg?1174950717", + "screen_name": "TVwithMeeVee" + }, + { + "name": "Emmet Connolly", + "description": "I have nothing to say (and I am saying it)", + "location": "Dublin", + "url": "http://blog.thoughtwax.com/", + "id": 11323, + "protected": false, + "status": { + "created_at": "Tue May 22 21:34:28 +0000 2007", + "text": "Virtual subdomains + .htaccess = ow, my brain. Anyway, three years late but my blog now has pretty urls. Hooray!", + "id": 74472602 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/11323/normal/me.jpg?1171953619", + "screen_name": "thoughtwax" + }, + { + "name": "Bilal Hameed", + "description": "Editor of Startup Meme", + "location": "As if it matters", + "url": "http://startupmeme.com", + "id": 5629992, + "protected": false, + "status": { + "created_at": "Tue May 15 16:41:05 +0000 2007", + "text": "http://tinyurl.com/2h474q Use EasyPost To Send Snail Mail in Canada", + "id": 65079402 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/5629992/normal/me.jpg?1177848235", + "screen_name": "startupmeme" + }, + { + "name": "Koen Sadza", + "description": "I study Applied Physics. My hobbies are my GF,SInging,Scouting,Clubbing,Computers", + "location": "Eindhoven, The Netherlands", + "url": "http://weblog.ksdz.nl/", + "id": 803238, + "protected": false, + "status": { + "created_at": "Sat May 12 14:16:37 +0000 2007", + "text": "Net terug van Scouting", + "id": 61483292 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/803238/normal/kerst.jpg?1172746148", + "screen_name": "ksdz" + }, + { + "name": "Webtickle", + "description": "", + "location": "California", + "url": null, + "id": 1322691, + "protected": false, + "status": { + "created_at": "Thu May 10 03:25:15 +0000 2007", + "text": "The Freelancer\u2019s Toolset: 100 Web Apps for Everything You Will Possibly Need\" http://tinyurl.com/2dztm8", + "id": 58099692 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/1322691/normal/large4197.png?1174089345", + "screen_name": "Webtickle" + }, + { + "name": "Yes", + "description": null, + "location": null, + "url": null, + "id": 765884, + "protected": false, + "status": { + "created_at": "Wed May 09 20:43:39 +0000 2007", + "text": "Whoo hoo! Yay!", + "id": 57715832 + }, + "profile_image_url": "http://assets1.twitter.com/images/default_image.gif?1180755379", + "screen_name": "Yes" + }, + { + "name": "Leland Harding III", + "description": "Traditional country artist, from South Dakota with a major background in the country music scene", + "location": "South Dakota", + "url": "http://www.lelandharding.com", + "id": 3545551, + "protected": false, + "status": { + "created_at": "Tue May 08 08:01:31 +0000 2007", + "text": "Anyone who has been scammed by these people can get ahold of me at leland@ldharding.com", + "id": 54614912 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/3545551/normal/image01-xml.jpg?1175797244", + "screen_name": "ldcountry" + }, + { + "name": "Trendio M", + "description": "", + "location": "", + "url": "http://www.trendio.com", + "id": 5845532, + "protected": false, + "status": { + "created_at": "Mon May 07 22:32:39 +0000 2007", + "text": "Open Source and Linux are up today. Which will be this week's top technology trends? http://tinyurl.com/2bpknb", + "id": 53868212 + }, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/5845532/normal/logo48x48.gif?1178576662", + "screen_name": "Trendio_M" + }, + { + "name": "Patrick Wang", + "description": "", + "location": "San Francisco, CA", + "url": "http://junesix.org", + "id": 799123, + "protected": false, + "status": { + "created_at": "Mon Apr 16 21:57:48 +0000 2007", + "text": "@jabancroft optimized builds at beatnikpad.com", + "id": 30322371 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/799123/normal/samurai_head.gif?1173313806", + "screen_name": "junesix" + }, + { + "name": "Dion Almaer", + "description": "ajaxian, googley, and techno", + "location": "Palo Alto, CA", + "url": "http://almaer.com/blog", + "id": 4216361, + "protected": false, + "status": { + "created_at": "Wed Apr 11 17:48:16 +0000 2007", + "text": "Enjoying being able to talk about the Google Developer Day!", + "id": 24861261 + }, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/4216361/normal/logo-48x48.jpg?1176313520", + "screen_name": "dalmaer" + }, + { + "name": "Chris DiBona", + "description": null, + "location": null, + "url": null, + "id": 44423, + "protected": true, + "status": { + "created_at": "Fri Mar 16 16:42:55 +0000 2007", + "text": "Cripes, trapped on the tarmac at iad. Today, we sit in hell:", + "id": 8638201 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/44423/normal/103ID_DiBona.jpg?1171961329", + "screen_name": "cdibona" + }, + { + "name": "napoleone", + "description": "", + "location": "piacenza ITALY", + "url": null, + "id": 740133, + "protected": false, + "status": { + "created_at": "Sat Feb 17 14:36:53 +0000 2007", + "text": "sono indeciso tra casual o un p\u00f2 sportive!!!", + "id": 5555694 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/740133/normal/P6050088.jpg?1170800580", + "screen_name": "Cris" + }, + { + "name": "Brian Tucker", + "description": null, + "location": null, + "url": null, + "id": 759328, + "protected": false, + "status": { + "created_at": "Sun Feb 11 04:11:11 +0000 2007", + "text": "Chinese new year starts next weekend I think.", + "id": 5422032 + }, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/759328/normal/bt.png?1170987088", + "screen_name": "brian318" + }, + { + "name": "Josh H", + "description": null, + "location": null, + "url": null, + "id": 2831771, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/images/default_image.gif?1180755379", + "screen_name": "josh59x" + }, + { + "name": "mfagan", + "description": "", + "location": "Canada", + "url": "http://faganm.com/", + "id": 677403, + "protected": false, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/677403/normal/me_with_hat.jpg?1171966071", + "screen_name": "mfagan" + } + ] +} \ No newline at end of file diff --git a/testdata/friends.json b/testdata/friends.json index 9dd7d771..28d36b00 100644 --- a/testdata/friends.json +++ b/testdata/friends.json @@ -1 +1,589 @@ -{"users":[{"name":" T\u00c7","description":"Chem: Physics: Math: Logic: Observation: Analysis: Hypothesis: Experimentation: Iteration: Evolution: Science. It works, bitches.","location":"San Francisco, CA","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/11628/normal/icon200px.jpg?1171953743","url":"http://tantek.com/","id":11628,"screen_name":"t","protected":false,"status":{"created_at":"Sun Jun 03 10:34:10 +0000 2007","text":"pondering how 1 can b so tired & sore after exercise, yet so energized as 2 b up at 3:30am, w only *1* coffee instead of usual 3 per workday","id":89104612}},{"name":"adam","description":"http://ifindkarma.com/","location":"Palo Alto, CA","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/1688/normal/RifkinIcon.jpg?1179096764","url":"http://renkoo.com/profile/ee0e95249268b86ff2053bef214bfeda","id":1688,"screen_name":"ifindkarma","protected":false,"status":{"created_at":"Sun Jun 03 07:07:00 +0000 2007","text":"Norman Mailer on the idea of perfect happiness: \"A fool draws a road map to his magic city.\" (Vanity Fair, Jan 2007)","id":88952182}},{"name":"Alex King","description":"","location":"Denver, CO","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/101143/normal/alex_king.jpg?1171953145","url":"http://alexking.org","id":101143,"screen_name":"alexkingorg","protected":false,"status":{"created_at":"Sun Jun 03 19:06:54 +0000 2007","text":"@andrewhyde Coverage was poor enough in the area to drive me back to Sprint.","id":89554432}},{"name":"Andy Edmonds","description":null,"location":null,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/936361/normal/andy_headshot_48x48.png?1176350570","url":null,"id":936361,"screen_name":"andyed","protected":false,"status":{"created_at":"Sat Jun 02 22:09:55 +0000 2007","text":"Tries out squidoo at http://www.squidoo.com/eyetrack","id":88551872}},{"name":"anildash","description":"That blogging guy.","location":"New York, New York","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/36823/normal/6315878.jpg?1171960613","url":"http://www.anildash.com/","id":36823,"screen_name":"anildash","protected":false,"status":{"created_at":"Fri Jun 01 20:33:42 +0000 2007","text":"I AM BURNING MY FEED IN PROTEST OF THOSE BASTARDS SELLING OUT. WHO'S WITH ME?!","id":87263942}},{"name":"Biz Stone","description":"I work here!","location":"Berkeley, CA","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/13/normal/biz_toon.png?1171954299","url":"http://bizstone.com","id":13,"screen_name":"biz","protected":false,"status":{"created_at":"Sun Jun 03 02:36:51 +0000 2007","text":"Gmail down to 8 while Livy makes curried carrot soup and of course Star Trek Voyager is on marathon mode","id":88746562}},{"name":"brady forrest","description":null,"location":null,"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/6140/normal/IMG_9629.jpg?1175295805","url":null,"id":6140,"screen_name":"brady","protected":false,"status":{"created_at":"Sat May 26 02:51:53 +0000 2007","text":"im at convergence 13 in pdx. looking for events inspiration.","id":78751852}},{"name":"Brian Suda","description":"SWM Informatician @64.132511;-21.906494 (microformats,GRDDL,XSLT,PHP,picoformats,XHTML)","location":"Iceland","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/15313/normal/gravatar.png?1175011623","url":"http://suda.co.uk/","id":15313,"screen_name":"briansuda","protected":false,"status":{"created_at":"Thu May 31 17:54:18 +0000 2007","text":"is happy that tonight is the last night that you can smoke in bars and restaurants in Iceland. Washing machines won't be happy with this.","id":85708142}},{"name":"Buzz Andersen","description":null,"location":"San Francisco, CA","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/528/normal/buzz-jacket-tiny.jpg?1171962059","url":"http://buzz.vox.com","id":528,"screen_name":"buzz","protected":false,"status":{"created_at":"Sun Jun 03 18:56:37 +0000 2007","text":"At Madison Square Park, waiting to meet my Shake Shack compatriots.","id":89543882}},{"name":"Case","description":null,"location":"San Francisco, CA, USA","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/409/normal/me-skype.jpg?1177561455","url":"http://vedana.net/","id":409,"screen_name":"Case","protected":true,"status":{"created_at":"Sun Jun 03 18:25:46 +0000 2007","text":"still buzzing from the arcade fire show, listening to neon bible and dancing around in delight!","id":89518902}},{"name":"Chris DiBona","description":null,"location":null,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/44423/normal/103ID_DiBona.jpg?1171961329","url":null,"id":44423,"screen_name":"cdibona","protected":true,"status":{"created_at":"Fri Mar 16 16:42:55 +0000 2007","text":"Cripes, trapped on the tarmac at iad. Today, we sit in hell:","id":8638201}},{"name":"Dave McClure","description":"Master of 500 Hats","location":"silicon valley, sf bay area","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/1081/normal/guido3.jpg?1171953420","url":"http://500hats.typepad.com","id":1081,"screen_name":"davemc500hats","protected":false,"status":{"created_at":"Fri Jun 01 09:35:11 +0000 2007","text":"just blogged about Sacks, Facebook, Wisdom of Crowds http://tinyurl.com/28v44h","id":86555632}},{"name":"Dion Almaer","description":"ajaxian, googley, and techno","location":"Palo Alto, CA","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/4216361/normal/logo-48x48.jpg?1176313520","url":"http://almaer.com/blog","id":4216361,"screen_name":"dalmaer","protected":false,"status":{"created_at":"Wed Apr 11 17:48:16 +0000 2007","text":"Enjoying being able to talk about the Google Developer Day!","id":24861261}},{"name":"eric L","description":"mobile expert, internet idiot","location":"san francisco","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/8291/normal/bandit.jpg?1165079078","url":"http://www.n1s.net","id":8291,"screen_name":"n1s","protected":false,"status":{"created_at":"Sun Jun 03 03:08:04 +0000 2007","text":"A howat once said there's no scorin with the sporin.","id":88771502}},{"name":"Evan Williams","description":"Founder of Obvious ","location":"San Francisco, CA","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/20/normal/ev-sky.jpg?1175282926","url":"http://evhead.com","id":20,"screen_name":"ev","protected":false,"status":{"created_at":"Sun Jun 03 07:04:50 +0000 2007","text":"This bathroom has an overload of marble","id":88950312}},{"name":"Greg Stein","description":null,"location":null,"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/12449/normal/gstein-by-pdcawley-cropped.jpg?1171954097","url":null,"id":12449,"screen_name":"gstein","protected":false},{"name":"Ian McKellar","description":"","location":"San Francisco, CA","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/259/normal/trapped.jpg?1171957894","url":"http://ian.mckellar.org/","id":259,"screen_name":"ianmckellar","protected":false,"status":{"created_at":"Sat Jun 02 20:55:30 +0000 2007","text":"lolfeeds got shut down for using too much cpu so I had to get around to adding a caching layer. it fixed some character encoding issues too!","id":88496342}},{"name":"jark","description":"Co-Founder of deviantART","location":"Tokyo, Japan","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/39653/normal/jark-static.jpg?1171960858","url":"http://jarkolicious.com/","id":39653,"screen_name":"jark","protected":false,"status":{"created_at":"Sun Jun 03 14:51:25 +0000 2007","text":"heads to bed, but first starts a process to burn 300 to DVD.","id":89318752}},{"name":"Jeff Barr","description":"Amazon Web Services Evangelist, Blogger, Father of 5.","location":"Sammamish, Washington, USA","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/48443/normal/jeff_barr.jpg?1171961668","url":"http://www.jeff-barr.com","id":48443,"screen_name":"jeffbarr","protected":false,"status":{"created_at":"Sun Jun 03 16:43:47 +0000 2007","text":"Preparing for trip to DC tomorrow AM - lots of reading materials, TODO list, iPod fresh, camera charged, laptop packed. Arrange for taxi.","id":89432112}},{"name":"Jeremy Zawodny","description":"I fly and geek.","location":"San Jose, CA","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/97933/normal/Zawodny-md.jpg?1166680073","url":"http://jeremy.zawodny.com/blog/","id":97933,"screen_name":"jzawodn","protected":false,"status":{"created_at":"Sat Jun 02 20:04:53 +0000 2007","text":"errands and packing for a week in the desert next week...","id":88458352}},{"name":"John Gruber","description":"Raconteur.","location":"Philadelphia","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/33423/normal/gruber-wanamaker-monorail.jpg?1171960346","url":"http://daringfireball.net","id":33423,"screen_name":"gruber","protected":false,"status":{"created_at":"Sun Jun 03 14:51:07 +0000 2007","text":"Needless to say, it was great time.","id":89318502}},{"name":"Josh H","description":null,"location":null,"profile_image_url":"http://assets1.twitter.com/images/default_image.gif?1180755379","url":null,"id":2831771,"screen_name":"josh59x","protected":false},{"name":"Josh Lucas","description":"Just adding another bit of distraction...","location":"Pasadena, CA","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/47023/normal/cubs_me.jpg?1171961535","url":"http://www.stonecottage.com/josh/","id":47023,"screen_name":"lucasjosh","protected":false,"status":{"created_at":"Sun Jun 03 15:16:47 +0000 2007","text":"wearing my new old-skool upcoming shirt","id":89345632}},{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","url":null,"id":718443,"screen_name":"kesuke","protected":false,"status":{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102}},{"name":"Kevin Burton","description":null,"location":null,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/62763/normal/me-profile.jpg?1173387685","url":null,"id":62763,"screen_name":"burtonator","protected":false,"status":{"created_at":"Sun Jun 03 08:43:41 +0000 2007","text":"zoe is playing with a plastic ring from a milk bottle.... cheap toy!","id":89021982}},{"name":"mfagan","description":"","location":"Canada","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/677403/normal/me_with_hat.jpg?1171966071","url":"http://faganm.com/","id":677403,"screen_name":"mfagan","protected":false},{"name":"Mihai","description":"","location":"New York, NY","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/28203/normal/mihaip.jpg?1171958069","url":"http://persistent.info/","id":28203,"screen_name":"mihai","protected":false,"status":{"created_at":"Sat Jun 02 19:46:47 +0000 2007","text":"Back on campus for reunions. Don't feel old just yet. Phew.","id":88444532}},{"name":"Mr Messina","description":"As if concentrating wasn't hard enough already.","location":"94107","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/1186/normal/devil_150.jpg?1171953828","url":"http://factoryjoe.com/","id":1186,"screen_name":"factoryjoe","protected":false,"status":{"created_at":"Sun Jun 03 01:42:47 +0000 2007","text":"OpenID won the disruptor award at The NextWeb conference! http://tinyurl.com/yq8e89","id":88706172}},{"name":"Niall","description":"Squeezing the most out of everything but my phone","location":"San Francisco, CA","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/1085/normal/niall_ringer.jpg?1171953434","url":"http://www.niallkennedy.com/","id":1085,"screen_name":"niall","protected":true,"status":{"created_at":"Sat Jun 02 04:32:57 +0000 2007","text":"your server migration is at 11. oh, we changed our minds, we're doing it at 9:30. ummm....yay?","id":87696902}},{"name":"Nick Douglas","description":"I am clever. Are you clever too?","location":"San Francisco","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/1084/normal/Nick-tiny-face.jpg?1171953430","url":"http://lookshiny.com","id":1084,"screen_name":"nick","protected":false,"status":{"created_at":"Sun Jun 03 07:52:33 +0000 2007","text":"Even Mark Day was at Arcade Fire, and I conned myself out of going with a cute friend 'cuz I'd told her how much I hate the band.","id":88984072}},{"name":"Paul Downey","description":"Computing Industry Bi-product","location":"Berkhamsted, UK","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/13486/normal/psd-75x75.jpg?1171954493","url":"http://blog.whatfettle.com","id":13486,"screen_name":"psd","protected":false,"status":{"created_at":"Sun Jun 03 16:24:53 +0000 2007","text":"back from tea and cake at the village hall now resuming futile search for a family holiday on 'tinternet","id":89413652}},{"name":"sean coon","description":"trying to make a living and a difference...","location":"Greensboro, NC","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/677903/normal/sean-85.png?1173252480","url":"http://www.seancoon.org","id":677903,"screen_name":"spcoon","protected":false,"status":{"created_at":"Sat Jun 02 08:27:03 +0000 2007","text":"Holy moly. Time to go fishing. Yeeeaaahhh!","id":87876222}},{"name":"Simon Willison","description":null,"location":"London","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/12497/normal/298777290_a5ed9a4e70_m.jpg?1171954113","url":"http://simonwillison.net/","id":12497,"screen_name":"simonw","protected":false,"status":{"created_at":"Fri Jun 01 21:01:59 +0000 2007","text":"Nat and I are in Brighton this weekend, anyone want to meet up?","id":87291372}},{"name":"steve o'grady","description":"analyst and co-founder of RedMonk","location":"Denver, CO","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279","url":"http://redmonk.com/sogrady","id":143883,"screen_name":"sogrady","protected":false,"status":{"created_at":"Sun Jun 03 15:57:16 +0000 2007","text":"ah, it's under \"Reply\"","id":89385112}},{"name":"Tatsuhiko Miyagawa","description":"Yet another Perl hacker","location":"San Francisco","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/731253/normal/P506iC0003735833.jpg?1170146286","url":"http://bulknews.vox.com/","id":731253,"screen_name":"miyagawa","protected":false,"status":{"created_at":"Sun Jun 03 04:06:57 +0000 2007","text":"had a good rice/veggie/pork noodle and shrimp fried rice in HoH. Feeling almost full and too ricey","id":88820042}},{"name":"Tom Coates","description":"Scruffy, grumpy, social mediaesque...","location":"London","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/12514/normal/12037949715_N01.jpg?1178111032","url":"http://www.plasticbag.org/","id":12514,"screen_name":"plasticbagUK","protected":false,"status":{"created_at":"Sun Jun 03 18:21:20 +0000 2007","text":"My heart sinks as I pass Hackney Down.","id":89515562}},{"name":"veen","description":"I used to make small things. Now I make big things.","location":"San Francisco","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/414/normal/Photo_21.jpg?1171961099","url":"http://veen.com/jeff/","id":414,"screen_name":"veen","protected":false,"status":{"created_at":"Fri Jun 01 22:38:36 +0000 2007","text":"Received an absolutely beautiful wedding invitation, made even better by an Obi Wan Kenobi postage stamp.","id":87377882}},{"name":"Veronica","description":"CNET TV host and podcasting diva of Buzz Out Loud","location":"San Francisco","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942","url":"http://www.veronicabelmont.com","id":10350,"screen_name":"Veronica","protected":false,"status":{"created_at":"Sun Jun 03 03:11:10 +0000 2007","text":"i just saw kari byron! my hero!","id":88774212}},{"name":"Yes","description":null,"location":null,"profile_image_url":"http://assets1.twitter.com/images/default_image.gif?1180755379","url":null,"id":765884,"screen_name":"Yes","protected":false,"status":{"created_at":"Wed May 09 20:43:39 +0000 2007","text":"Whoo hoo! Yay!","id":57715832}},{"name":"Yoz","description":"A small yoz-type object, currently residing in San Francisco","location":"San Francisco, CA","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/12329/normal/yozlap-100.jpg?1171954052","url":"http://yoz.com/","id":12329,"screen_name":"yoz","protected":false,"status":{"created_at":"Fri Jun 01 18:13:23 +0000 2007","text":"@riffraff814: Thanks but no thanks, don't drink coffee, my body is a temple filled with magical prancing ponies yay peanut M&M overdose","id":87132942}}]} \ No newline at end of file +{ + "users": [ + { + "name": " T\u00c7", + "description": "Chem: Physics: Math: Logic: Observation: Analysis: Hypothesis: Experimentation: Iteration: Evolution: Science. It works, bitches.", + "location": "San Francisco, CA", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/11628/normal/icon200px.jpg?1171953743", + "url": "http://tantek.com/", + "id": 11628, + "screen_name": "t", + "protected": false, + "status": { + "created_at": "Sun Jun 03 10:34:10 +0000 2007", + "text": "pondering how 1 can b so tired & sore after exercise, yet so energized as 2 b up at 3:30am, w only *1* coffee instead of usual 3 per workday", + "id": 89104612 + } + }, + { + "name": "adam", + "description": "http://ifindkarma.com/", + "location": "Palo Alto, CA", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/1688/normal/RifkinIcon.jpg?1179096764", + "url": "http://renkoo.com/profile/ee0e95249268b86ff2053bef214bfeda", + "id": 1688, + "screen_name": "ifindkarma", + "protected": false, + "status": { + "created_at": "Sun Jun 03 07:07:00 +0000 2007", + "text": "Norman Mailer on the idea of perfect happiness: \"A fool draws a road map to his magic city.\" (Vanity Fair, Jan 2007)", + "id": 88952182 + } + }, + { + "name": "Alex King", + "description": "", + "location": "Denver, CO", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/101143/normal/alex_king.jpg?1171953145", + "url": "http://alexking.org", + "id": 101143, + "screen_name": "alexkingorg", + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:06:54 +0000 2007", + "text": "@andrewhyde Coverage was poor enough in the area to drive me back to Sprint.", + "id": 89554432 + } + }, + { + "name": "Andy Edmonds", + "description": null, + "location": null, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/936361/normal/andy_headshot_48x48.png?1176350570", + "url": null, + "id": 936361, + "screen_name": "andyed", + "protected": false, + "status": { + "created_at": "Sat Jun 02 22:09:55 +0000 2007", + "text": "Tries out squidoo at http://www.squidoo.com/eyetrack", + "id": 88551872 + } + }, + { + "name": "anildash", + "description": "That blogging guy.", + "location": "New York, New York", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/36823/normal/6315878.jpg?1171960613", + "url": "http://www.anildash.com/", + "id": 36823, + "screen_name": "anildash", + "protected": false, + "status": { + "created_at": "Fri Jun 01 20:33:42 +0000 2007", + "text": "I AM BURNING MY FEED IN PROTEST OF THOSE BASTARDS SELLING OUT. WHO'S WITH ME?!", + "id": 87263942 + } + }, + { + "name": "Biz Stone", + "description": "I work here!", + "location": "Berkeley, CA", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/13/normal/biz_toon.png?1171954299", + "url": "http://bizstone.com", + "id": 13, + "screen_name": "biz", + "protected": false, + "status": { + "created_at": "Sun Jun 03 02:36:51 +0000 2007", + "text": "Gmail down to 8 while Livy makes curried carrot soup and of course Star Trek Voyager is on marathon mode", + "id": 88746562 + } + }, + { + "name": "brady forrest", + "description": null, + "location": null, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/6140/normal/IMG_9629.jpg?1175295805", + "url": null, + "id": 6140, + "screen_name": "brady", + "protected": false, + "status": { + "created_at": "Sat May 26 02:51:53 +0000 2007", + "text": "im at convergence 13 in pdx. looking for events inspiration.", + "id": 78751852 + } + }, + { + "name": "Brian Suda", + "description": "SWM Informatician @64.132511;-21.906494 (microformats,GRDDL,XSLT,PHP,picoformats,XHTML)", + "location": "Iceland", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/15313/normal/gravatar.png?1175011623", + "url": "http://suda.co.uk/", + "id": 15313, + "screen_name": "briansuda", + "protected": false, + "status": { + "created_at": "Thu May 31 17:54:18 +0000 2007", + "text": "is happy that tonight is the last night that you can smoke in bars and restaurants in Iceland. Washing machines won't be happy with this.", + "id": 85708142 + } + }, + { + "name": "Buzz Andersen", + "description": null, + "location": "San Francisco, CA", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/528/normal/buzz-jacket-tiny.jpg?1171962059", + "url": "http://buzz.vox.com", + "id": 528, + "screen_name": "buzz", + "protected": false, + "status": { + "created_at": "Sun Jun 03 18:56:37 +0000 2007", + "text": "At Madison Square Park, waiting to meet my Shake Shack compatriots.", + "id": 89543882 + } + }, + { + "name": "Case", + "description": null, + "location": "San Francisco, CA, USA", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/409/normal/me-skype.jpg?1177561455", + "url": "http://vedana.net/", + "id": 409, + "screen_name": "Case", + "protected": true, + "status": { + "created_at": "Sun Jun 03 18:25:46 +0000 2007", + "text": "still buzzing from the arcade fire show, listening to neon bible and dancing around in delight!", + "id": 89518902 + } + }, + { + "name": "Chris DiBona", + "description": null, + "location": null, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/44423/normal/103ID_DiBona.jpg?1171961329", + "url": null, + "id": 44423, + "screen_name": "cdibona", + "protected": true, + "status": { + "created_at": "Fri Mar 16 16:42:55 +0000 2007", + "text": "Cripes, trapped on the tarmac at iad. Today, we sit in hell:", + "id": 8638201 + } + }, + { + "name": "Dave McClure", + "description": "Master of 500 Hats", + "location": "silicon valley, sf bay area", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/1081/normal/guido3.jpg?1171953420", + "url": "http://500hats.typepad.com", + "id": 1081, + "screen_name": "davemc500hats", + "protected": false, + "status": { + "created_at": "Fri Jun 01 09:35:11 +0000 2007", + "text": "just blogged about Sacks, Facebook, Wisdom of Crowds http://tinyurl.com/28v44h", + "id": 86555632 + } + }, + { + "name": "Dion Almaer", + "description": "ajaxian, googley, and techno", + "location": "Palo Alto, CA", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/4216361/normal/logo-48x48.jpg?1176313520", + "url": "http://almaer.com/blog", + "id": 4216361, + "screen_name": "dalmaer", + "protected": false, + "status": { + "created_at": "Wed Apr 11 17:48:16 +0000 2007", + "text": "Enjoying being able to talk about the Google Developer Day!", + "id": 24861261 + } + }, + { + "name": "eric L", + "description": "mobile expert, internet idiot", + "location": "san francisco", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/8291/normal/bandit.jpg?1165079078", + "url": "http://www.n1s.net", + "id": 8291, + "screen_name": "n1s", + "protected": false, + "status": { + "created_at": "Sun Jun 03 03:08:04 +0000 2007", + "text": "A howat once said there's no scorin with the sporin.", + "id": 88771502 + } + }, + { + "name": "Evan Williams", + "description": "Founder of Obvious ", + "location": "San Francisco, CA", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/20/normal/ev-sky.jpg?1175282926", + "url": "http://evhead.com", + "id": 20, + "screen_name": "ev", + "protected": false, + "status": { + "created_at": "Sun Jun 03 07:04:50 +0000 2007", + "text": "This bathroom has an overload of marble", + "id": 88950312 + } + }, + { + "name": "Greg Stein", + "description": null, + "location": null, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/12449/normal/gstein-by-pdcawley-cropped.jpg?1171954097", + "url": null, + "id": 12449, + "screen_name": "gstein", + "protected": false + }, + { + "name": "Ian McKellar", + "description": "", + "location": "San Francisco, CA", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/259/normal/trapped.jpg?1171957894", + "url": "http://ian.mckellar.org/", + "id": 259, + "screen_name": "ianmckellar", + "protected": false, + "status": { + "created_at": "Sat Jun 02 20:55:30 +0000 2007", + "text": "lolfeeds got shut down for using too much cpu so I had to get around to adding a caching layer. it fixed some character encoding issues too!", + "id": 88496342 + } + }, + { + "name": "jark", + "description": "Co-Founder of deviantART", + "location": "Tokyo, Japan", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/39653/normal/jark-static.jpg?1171960858", + "url": "http://jarkolicious.com/", + "id": 39653, + "screen_name": "jark", + "protected": false, + "status": { + "created_at": "Sun Jun 03 14:51:25 +0000 2007", + "text": "heads to bed, but first starts a process to burn 300 to DVD.", + "id": 89318752 + } + }, + { + "name": "Jeff Barr", + "description": "Amazon Web Services Evangelist, Blogger, Father of 5.", + "location": "Sammamish, Washington, USA", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/48443/normal/jeff_barr.jpg?1171961668", + "url": "http://www.jeff-barr.com", + "id": 48443, + "screen_name": "jeffbarr", + "protected": false, + "status": { + "created_at": "Sun Jun 03 16:43:47 +0000 2007", + "text": "Preparing for trip to DC tomorrow AM - lots of reading materials, TODO list, iPod fresh, camera charged, laptop packed. Arrange for taxi.", + "id": 89432112 + } + }, + { + "name": "Jeremy Zawodny", + "description": "I fly and geek.", + "location": "San Jose, CA", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/97933/normal/Zawodny-md.jpg?1166680073", + "url": "http://jeremy.zawodny.com/blog/", + "id": 97933, + "screen_name": "jzawodn", + "protected": false, + "status": { + "created_at": "Sat Jun 02 20:04:53 +0000 2007", + "text": "errands and packing for a week in the desert next week...", + "id": 88458352 + } + }, + { + "name": "John Gruber", + "description": "Raconteur.", + "location": "Philadelphia", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/33423/normal/gruber-wanamaker-monorail.jpg?1171960346", + "url": "http://daringfireball.net", + "id": 33423, + "screen_name": "gruber", + "protected": false, + "status": { + "created_at": "Sun Jun 03 14:51:07 +0000 2007", + "text": "Needless to say, it was great time.", + "id": 89318502 + } + }, + { + "name": "Josh H", + "description": null, + "location": null, + "profile_image_url": "http://assets1.twitter.com/images/default_image.gif?1180755379", + "url": null, + "id": 2831771, + "screen_name": "josh59x", + "protected": false + }, + { + "name": "Josh Lucas", + "description": "Just adding another bit of distraction...", + "location": "Pasadena, CA", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/47023/normal/cubs_me.jpg?1171961535", + "url": "http://www.stonecottage.com/josh/", + "id": 47023, + "screen_name": "lucasjosh", + "protected": false, + "status": { + "created_at": "Sun Jun 03 15:16:47 +0000 2007", + "text": "wearing my new old-skool upcoming shirt", + "id": 89345632 + } + }, + { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "url": null, + "id": 718443, + "screen_name": "kesuke", + "protected": false, + "status": { + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102 + } + }, + { + "name": "Kevin Burton", + "description": null, + "location": null, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/62763/normal/me-profile.jpg?1173387685", + "url": null, + "id": 62763, + "screen_name": "burtonator", + "protected": false, + "status": { + "created_at": "Sun Jun 03 08:43:41 +0000 2007", + "text": "zoe is playing with a plastic ring from a milk bottle.... cheap toy!", + "id": 89021982 + } + }, + { + "name": "mfagan", + "description": "", + "location": "Canada", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/677403/normal/me_with_hat.jpg?1171966071", + "url": "http://faganm.com/", + "id": 677403, + "screen_name": "mfagan", + "protected": false + }, + { + "name": "Mihai", + "description": "", + "location": "New York, NY", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/28203/normal/mihaip.jpg?1171958069", + "url": "http://persistent.info/", + "id": 28203, + "screen_name": "mihai", + "protected": false, + "status": { + "created_at": "Sat Jun 02 19:46:47 +0000 2007", + "text": "Back on campus for reunions. Don't feel old just yet. Phew.", + "id": 88444532 + } + }, + { + "name": "Mr Messina", + "description": "As if concentrating wasn't hard enough already.", + "location": "94107", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/1186/normal/devil_150.jpg?1171953828", + "url": "http://factoryjoe.com/", + "id": 1186, + "screen_name": "factoryjoe", + "protected": false, + "status": { + "created_at": "Sun Jun 03 01:42:47 +0000 2007", + "text": "OpenID won the disruptor award at The NextWeb conference! http://tinyurl.com/yq8e89", + "id": 88706172 + } + }, + { + "name": "Niall", + "description": "Squeezing the most out of everything but my phone", + "location": "San Francisco, CA", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/1085/normal/niall_ringer.jpg?1171953434", + "url": "http://www.niallkennedy.com/", + "id": 1085, + "screen_name": "niall", + "protected": true, + "status": { + "created_at": "Sat Jun 02 04:32:57 +0000 2007", + "text": "your server migration is at 11. oh, we changed our minds, we're doing it at 9:30. ummm....yay?", + "id": 87696902 + } + }, + { + "name": "Nick Douglas", + "description": "I am clever. Are you clever too?", + "location": "San Francisco", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/1084/normal/Nick-tiny-face.jpg?1171953430", + "url": "http://lookshiny.com", + "id": 1084, + "screen_name": "nick", + "protected": false, + "status": { + "created_at": "Sun Jun 03 07:52:33 +0000 2007", + "text": "Even Mark Day was at Arcade Fire, and I conned myself out of going with a cute friend 'cuz I'd told her how much I hate the band.", + "id": 88984072 + } + }, + { + "name": "Paul Downey", + "description": "Computing Industry Bi-product", + "location": "Berkhamsted, UK", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/13486/normal/psd-75x75.jpg?1171954493", + "url": "http://blog.whatfettle.com", + "id": 13486, + "screen_name": "psd", + "protected": false, + "status": { + "created_at": "Sun Jun 03 16:24:53 +0000 2007", + "text": "back from tea and cake at the village hall now resuming futile search for a family holiday on 'tinternet", + "id": 89413652 + } + }, + { + "name": "sean coon", + "description": "trying to make a living and a difference...", + "location": "Greensboro, NC", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/677903/normal/sean-85.png?1173252480", + "url": "http://www.seancoon.org", + "id": 677903, + "screen_name": "spcoon", + "protected": false, + "status": { + "created_at": "Sat Jun 02 08:27:03 +0000 2007", + "text": "Holy moly. Time to go fishing. Yeeeaaahhh!", + "id": 87876222 + } + }, + { + "name": "Simon Willison", + "description": null, + "location": "London", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/12497/normal/298777290_a5ed9a4e70_m.jpg?1171954113", + "url": "http://simonwillison.net/", + "id": 12497, + "screen_name": "simonw", + "protected": false, + "status": { + "created_at": "Fri Jun 01 21:01:59 +0000 2007", + "text": "Nat and I are in Brighton this weekend, anyone want to meet up?", + "id": 87291372 + } + }, + { + "name": "steve o'grady", + "description": "analyst and co-founder of RedMonk", + "location": "Denver, CO", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279", + "url": "http://redmonk.com/sogrady", + "id": 143883, + "screen_name": "sogrady", + "protected": false, + "status": { + "created_at": "Sun Jun 03 15:57:16 +0000 2007", + "text": "ah, it's under \"Reply\"", + "id": 89385112 + } + }, + { + "name": "Tatsuhiko Miyagawa", + "description": "Yet another Perl hacker", + "location": "San Francisco", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/731253/normal/P506iC0003735833.jpg?1170146286", + "url": "http://bulknews.vox.com/", + "id": 731253, + "screen_name": "miyagawa", + "protected": false, + "status": { + "created_at": "Sun Jun 03 04:06:57 +0000 2007", + "text": "had a good rice/veggie/pork noodle and shrimp fried rice in HoH. Feeling almost full and too ricey", + "id": 88820042 + } + }, + { + "name": "Tom Coates", + "description": "Scruffy, grumpy, social mediaesque...", + "location": "London", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/12514/normal/12037949715_N01.jpg?1178111032", + "url": "http://www.plasticbag.org/", + "id": 12514, + "screen_name": "plasticbagUK", + "protected": false, + "status": { + "created_at": "Sun Jun 03 18:21:20 +0000 2007", + "text": "My heart sinks as I pass Hackney Down.", + "id": 89515562 + } + }, + { + "name": "veen", + "description": "I used to make small things. Now I make big things.", + "location": "San Francisco", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/414/normal/Photo_21.jpg?1171961099", + "url": "http://veen.com/jeff/", + "id": 414, + "screen_name": "veen", + "protected": false, + "status": { + "created_at": "Fri Jun 01 22:38:36 +0000 2007", + "text": "Received an absolutely beautiful wedding invitation, made even better by an Obi Wan Kenobi postage stamp.", + "id": 87377882 + } + }, + { + "name": "Veronica", + "description": "CNET TV host and podcasting diva of Buzz Out Loud", + "location": "San Francisco", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942", + "url": "http://www.veronicabelmont.com", + "id": 10350, + "screen_name": "Veronica", + "protected": false, + "status": { + "created_at": "Sun Jun 03 03:11:10 +0000 2007", + "text": "i just saw kari byron! my hero!", + "id": 88774212 + } + }, + { + "name": "Yes", + "description": null, + "location": null, + "profile_image_url": "http://assets1.twitter.com/images/default_image.gif?1180755379", + "url": null, + "id": 765884, + "screen_name": "Yes", + "protected": false, + "status": { + "created_at": "Wed May 09 20:43:39 +0000 2007", + "text": "Whoo hoo! Yay!", + "id": 57715832 + } + }, + { + "name": "Yoz", + "description": "A small yoz-type object, currently residing in San Francisco", + "location": "San Francisco, CA", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/12329/normal/yozlap-100.jpg?1171954052", + "url": "http://yoz.com/", + "id": 12329, + "screen_name": "yoz", + "protected": false, + "status": { + "created_at": "Fri Jun 01 18:13:23 +0000 2007", + "text": "@riffraff814: Thanks but no thanks, don't drink coffee, my body is a temple filled with magical prancing ponies yay peanut M&M overdose", + "id": 87132942 + } + } + ] +} \ No newline at end of file diff --git a/testdata/friends_timeline-kesuke.json b/testdata/friends_timeline-kesuke.json index de06ca0c..ef138aed 100644 --- a/testdata/friends_timeline-kesuke.json +++ b/testdata/friends_timeline-kesuke.json @@ -1 +1,302 @@ -[{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102,"user":{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","url":null,"id":718443,"protected":false,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","screen_name":"kesuke"}},{"created_at":"Sat Jun 02 17:13:19 +0000 2007","text":"At WhereCamp on yahoo's campus. Great crowd.","id":88313822,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Fri Jun 01 19:17:36 +0000 2007","text":"Yay Feedburner.","id":87194962,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Wed May 09 19:47:06 +0000 2007","text":"Just ordered a Wii from Amazon. Thanks to Greg!","id":57662052,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Fri Apr 27 21:01:56 +0000 2007","text":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002(No really, it is.)","id":42342562,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Fri Apr 27 19:02:43 +0000 2007","text":"Whoops. My python-twitter library can't handle utf8. On the upside, sending random twitters in Hungarian gets people to un-follow me...","id":42237742,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Fri Apr 27 15:34:12 +0000 2007","text":"A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.","id":41984622,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Mon Apr 23 03:45:20 +0000 2007","text":"And that, my friends, is baseball at its finest.","id":36527662,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Mon Apr 02 15:32:55 +0000 2007","text":"Fixed a python-twitter bug that returned broken relative_created_at in some cases. New version at: http://code.google.com/p/python-twitter/","id":17729991,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Fri Mar 30 02:46:53 +0000 2007","text":"Just got home, and hoping that Buzz's office hours are enough to get me to go out again tonight.","id":15587961,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Mon Mar 12 15:45:01 +0000 2007","text":"The latest !!! album is making me happy this morning.","id":7015091,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Wed Mar 07 03:25:59 +0000 2007","text":"Drove home to Arcade Fire's Neon Bible. Flawed around the middle, it is still the best thing I've heard this year. I really needed this.","id":5895171,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Mon Mar 05 16:15:57 +0000 2007","text":"Just updated all my Linux boxes to handle the changes to daylight savings time. Have you? Write me if you need a hand.","id":5854199,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Fri Mar 02 04:47:39 +0000 2007","text":"Yay! My first earthquake. Holy crap! They're kinda scary, aren't they?","id":5787870,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Thu Mar 01 04:36:14 +0000 2007","text":"Headed to Alembic early for Buzz's office hours.","id":5765262,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Wed Feb 28 22:57:54 +0000 2007","text":"Are the Twitter APIs a tad temperamental today? ","id":5760759,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Sat Feb 24 03:52:16 +0000 2007","text":"On route to Mad Dog in the Fog to see Brendan and Corrie. 3 years in the Bay Area and I still haven't felt a quake.","id":5671516,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Sat Feb 17 16:10:12 +0000 2007","text":"Just preordered Modest Mouse _We Were Dead Before the Ship Even Sank_ and Arcade Fire _Neon Bible_. I need to hibernate until March now.","id":5556806,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Wed Feb 14 22:59:09 +0000 2007","text":"Uh-oh. My IM away message just got Twittered. That's not a good thing.","id":5510368,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}},{"created_at":"Wed Feb 14 22:39:25 +0000 2007","text":"In meetings","id":5510068,"user":{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"}}] \ No newline at end of file +[ + { + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102, + "user": { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "url": null, + "id": 718443, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "screen_name": "kesuke" + } + }, + { + "created_at": "Sat Jun 02 17:13:19 +0000 2007", + "text": "At WhereCamp on yahoo's campus. Great crowd.", + "id": 88313822, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Fri Jun 01 19:17:36 +0000 2007", + "text": "Yay Feedburner.", + "id": 87194962, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Wed May 09 19:47:06 +0000 2007", + "text": "Just ordered a Wii from Amazon. Thanks to Greg!", + "id": 57662052, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Fri Apr 27 21:01:56 +0000 2007", + "text": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002(No really, it is.)", + "id": 42342562, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Fri Apr 27 19:02:43 +0000 2007", + "text": "Whoops. My python-twitter library can't handle utf8. On the upside, sending random twitters in Hungarian gets people to un-follow me...", + "id": 42237742, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Fri Apr 27 15:34:12 +0000 2007", + "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", + "id": 41984622, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Mon Apr 23 03:45:20 +0000 2007", + "text": "And that, my friends, is baseball at its finest.", + "id": 36527662, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Mon Apr 02 15:32:55 +0000 2007", + "text": "Fixed a python-twitter bug that returned broken relative_created_at in some cases. New version at: http://code.google.com/p/python-twitter/", + "id": 17729991, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Fri Mar 30 02:46:53 +0000 2007", + "text": "Just got home, and hoping that Buzz's office hours are enough to get me to go out again tonight.", + "id": 15587961, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Mon Mar 12 15:45:01 +0000 2007", + "text": "The latest !!! album is making me happy this morning.", + "id": 7015091, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Wed Mar 07 03:25:59 +0000 2007", + "text": "Drove home to Arcade Fire's Neon Bible. Flawed around the middle, it is still the best thing I've heard this year. I really needed this.", + "id": 5895171, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Mon Mar 05 16:15:57 +0000 2007", + "text": "Just updated all my Linux boxes to handle the changes to daylight savings time. Have you? Write me if you need a hand.", + "id": 5854199, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Fri Mar 02 04:47:39 +0000 2007", + "text": "Yay! My first earthquake. Holy crap! They're kinda scary, aren't they?", + "id": 5787870, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Thu Mar 01 04:36:14 +0000 2007", + "text": "Headed to Alembic early for Buzz's office hours.", + "id": 5765262, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Wed Feb 28 22:57:54 +0000 2007", + "text": "Are the Twitter APIs a tad temperamental today? ", + "id": 5760759, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Sat Feb 24 03:52:16 +0000 2007", + "text": "On route to Mad Dog in the Fog to see Brendan and Corrie. 3 years in the Bay Area and I still haven't felt a quake.", + "id": 5671516, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Sat Feb 17 16:10:12 +0000 2007", + "text": "Just preordered Modest Mouse _We Were Dead Before the Ship Even Sank_ and Arcade Fire _Neon Bible_. I need to hibernate until March now.", + "id": 5556806, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Wed Feb 14 22:59:09 +0000 2007", + "text": "Uh-oh. My IM away message just got Twittered. That's not a good thing.", + "id": 5510368, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + }, + { + "created_at": "Wed Feb 14 22:39:25 +0000 2007", + "text": "In meetings", + "id": 5510068, + "user": { + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" + } + } +] \ No newline at end of file diff --git a/testdata/friendship-create.json b/testdata/friendship-create.json index 07308f83..3ddc5161 100644 --- a/testdata/friendship-create.json +++ b/testdata/friendship-create.json @@ -1 +1,15 @@ -{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"status":{"created_at":"Sun Jun 03 19:50:23 +0000 2007","text":"If a theme song played when I walked around all day, I'd want it to be All My Friends by LCD Soundsystem.","id":89586072},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"} +{ + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:50:23 +0000 2007", + "text": "If a theme song played when I walked around all day, I'd want it to be All My Friends by LCD Soundsystem.", + "id": 89586072 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" +} diff --git a/testdata/friendship-destroy.json b/testdata/friendship-destroy.json index 07308f83..3ddc5161 100644 --- a/testdata/friendship-destroy.json +++ b/testdata/friendship-destroy.json @@ -1 +1,15 @@ -{"name":"DeWitt","description":"Indeterminate things","location":"San Francisco, CA","url":"http://unto.net/","id":673483,"protected":false,"status":{"created_at":"Sun Jun 03 19:50:23 +0000 2007","text":"If a theme song played when I walked around all day, I'd want it to be All My Friends by LCD Soundsystem.","id":89586072},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"} +{ + "name": "DeWitt", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "url": "http://unto.net/", + "id": 673483, + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:50:23 +0000 2007", + "text": "If a theme song played when I walked around all day, I'd want it to be All My Friends by LCD Soundsystem.", + "id": 89586072 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" +} diff --git a/testdata/public_timeline.json b/testdata/public_timeline.json index e494ba41..77804e98 100644 --- a/testdata/public_timeline.json +++ b/testdata/public_timeline.json @@ -1 +1,302 @@ -[{"created_at":"Sun Jun 03 17:59:37 +0000 2007","text":"Warcry Blog: Anjas first Birthday: Today was Anjas first birthday, It is insane that a year .. http://tinyurl.com/2x7omb","id":89497702,"user":{"name":"Patrik Olterman","description":"","location":"Riga","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/2038581/normal/dsc03106.jpg?1180337431","url":"http://warcry.olterman.se","id":2038581,"screen_name":"olterman","protected":false}},{"created_at":"Sun Jun 03 18:01:01 +0000 2007","text":"3am AEST - AWAYE! (Listen Up) - http://tinyurl.com/38nuza","id":89497692,"user":{"name":"ABC Radio National","description":"","location":"Australia","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/3496461/normal/abc.jpg?1176239249","url":"http://abc.net.au/rn/","id":3496461,"screen_name":"abcrn","protected":false}},{"created_at":"Sun Jun 03 17:59:36 +0000 2007","text":"I am going to brush my teeth cuz i just woke up","id":89497682,"user":{"name":"alanna esposito","description":"","location":"","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/3467431/normal/legzz.jpg?1175725871","url":null,"id":3467431,"screen_name":"luhhsespino","protected":false}},{"created_at":"Sun Jun 03 18:00:58 +0000 2007","text":"Listening to an old Blur album ('13').","id":89497672,"user":{"name":"Lex The Hex","description":"I love anything geeky, love gadgets, find it very difficult to talk to people.","location":"North Devon, UK","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/429783/normal/IMAGE_099.jpg?1180813787","url":"http://brooknet.org","id":429783,"screen_name":"lexthehex","protected":false}},{"created_at":"Sun Jun 03 18:00:58 +0000 2007","text":"taking pics of myself 4 my facebook.","id":89497662,"user":{"name":"Lexi Jackson","description":"","location":"","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/6525642/normal/cute_dog.jpg?1180803976","url":null,"id":6525642,"screen_name":"LexiJackson","protected":false}},{"created_at":"Sun Jun 03 17:59:33 +0000 2007","text":"I am getting bored. Wish i could entertain myself. Solution any one?","id":89497632,"user":{"name":"Samuel Joos","description":null,"location":null,"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/6517892/normal/datbenik.jpg?1180766995","url":null,"id":6517892,"screen_name":"Flashingback","protected":false}},{"created_at":"Sun Jun 03 18:00:56 +0000 2007","text":"@definetheline; STFU!!!!!!","id":89497622,"user":{"name":"Alejandro [correa]","description":"I'm like quicksand. Sandy & quick.","location":"Miami","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/639343/normal/avatar.jpg?1180748145","url":"http://flickr.com/photos/alej744","id":639343,"screen_name":"alej744","protected":false}},{"created_at":"Sun Jun 03 18:00:53 +0000 2007","text":"Haciendo monstruos","id":89497582,"user":{"name":"Jimena Vega","description":"Vean mis Monstruos: www.monstersncutties.wordpress.com","location":"M\u00e8xico","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/761245/normal/511658650_2c1e59ce98_t.jpg?1179977645","url":"http://www.shamballa.fulguris.net","id":761245,"screen_name":"shamballa","protected":false}},{"created_at":"Sun Jun 03 17:59:29 +0000 2007","text":"heading to chinatown for roast pork n duck n bubble tea","id":89497572,"user":{"name":"Corinne","description":"","location":"","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/815054/normal/oops.jpg?1173239376","url":"http://25cents.wordpress.com","id":815054,"screen_name":"xcori","protected":false}},{"created_at":"Sun Jun 03 17:59:29 +0000 2007","text":"I'm actually really enjoying Facebook. The calendars and stuff are very organizational. I'm an organization freak! Perfect for me!","id":89497562,"user":{"name":"The Mighty Mommy","description":"Mommy of Two, Wife of One, Friend to Many!","location":"Arizona","profile_image_url":"http://assets2.twitter.com/system/user/profile_image/772523/normal/miimage.jpg?1179497687","url":"http://mightymommy.qdnow.com","id":772523,"screen_name":"MightyMommy","protected":false}},{"created_at":"Sun Jun 03 18:00:52 +0000 2007","text":"Off for tonight, see you tomorrow.","id":89497552,"user":{"name":"Benjamin Gauthey","description":"","location":"","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/3194221/normal/me.jpg?1179996565","url":"http://www.benjamingauthey.com","id":3194221,"screen_name":"benjamingauthey","protected":false}},{"created_at":"Sun Jun 03 18:00:52 +0000 2007","text":"[Blog Updated] Weewar - \u5c0f\u578b\u5728\u7ebf\u5373\u65f6\u6218\u7565\u6e38\u620f http://tinyurl.com/33yfa2","id":89497532,"user":{"name":"Lyang","description":"\"If we lose, then what the hell, at least we died trying...\" Digg On!","location":"Shanghai.CN","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/5144201/normal/elusive.png?1178901205","url":"http://a7xorz.blogspot.com","id":5144201,"screen_name":"a7xorz","protected":false}},{"created_at":"Sun Jun 03 18:00:51 +0000 2007","text":"[WangTam] Multiverse \u83b7\u6536 400 \u4e07\u7f8e\u5143\u6295\u8d44: Second Life \u7684\u6210\u529f\u5e76\u975e\u5076\u7136\uff0c\u5efa\u7acb\u5728\u865a\u62df\u4e16\u754c\u57fa\u7840\u4e0a\u7684\u793e\u4f1a\u5316\u7f51\u7edc\uff0c\u5176\u5e94\u7528\u8d8a\u6765\u8d8a\u6df1\u5165\u666e\u904d\u7528\u6237\u65e5\u5e38\u7f51\u7edc\u751f\u6d3b\u3002\u4ee5\u540e\u7c7b\u4f3c\u4e8e .. http://tinyurl.com/36j5r6","id":89497522,"user":{"name":"\u542f\u7f81","description":"\u88c5\u50bb\u6bd4\u88c5\u903c\u66f4\u6709\u76ca\u4e8e\u8eab\u5fc3\u5065\u5eb7","location":"\u714b (Mars)","profile_image_url":"http://assets3.twitter.com/system/user/profile_image/917171/normal/QeeGi_Radlin.png?1176903251","url":"http://www.wangtam.com","id":917171,"screen_name":"QeeGi","protected":false}},{"created_at":"Sun Jun 03 18:00:51 +0000 2007","text":"Adoring the sublime architecture of the universe, including you.","id":89497512,"user":{"name":"Jon","description":"The millionth monkey.","location":"A castle. In SPACE!","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/6239122/normal/jonbasscropped2.jpg?1179858686","url":"http://www.jonglassett.com","id":6239122,"screen_name":"jonniejerko","protected":false}},{"created_at":"Sun Jun 03 18:00:49 +0000 2007","text":"\u9154\u3063\u305f\u3002\u5b9f\u306b\u9154\u3063\u305f\u3002\u76ee\u306e\u524d\u306e\u5b9a\u7fa9\u3092\u7c21\u5358\u306b\u65ad\u5b9a\u3059\u308b\u307b\u3069\u9154\u3063\u3066\u3057\u307e\u3063\u305f\uff01","id":89497482,"user":{"name":"wazurai","description":"\u7169\u3046\u4e8b\u3092\u4ed5\u4e8b\u306b\u98df\u3079\u3066\u3044\u3051\u308b\u69d8\u306b\u8abf\u7bc0\u4e2d\u306e\u6bce\u65e5\u3002","location":"\u65e5\u672c\u306e\u6771\u4eac\u306e\u7acb\u5ddd\u306e\u6771\u3042\u305f\u308a\u3002","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/6464452/normal/382616310_249-1.jpg?1180682927","url":"http://wazurai.org/","id":6464452,"screen_name":"wazurai","protected":false}},{"created_at":"Sun Jun 03 18:00:47 +0000 2007","text":"aaarrrggghhhh...looks like a bad day for air travel.","id":89497442,"user":{"name":"Andrew DeVigal","description":"","location":"New York, NY","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/626103/normal/andrewdevigal_lores.jpg?1171963676","url":"http://andrew.devigal.com/","id":626103,"screen_name":"drewvigal","protected":false}},{"created_at":"Sun Jun 03 18:00:46 +0000 2007","text":"\u3010\u97d3\u56fd\u3011\u82f1\u8a9e\u304c\u308f\u304b\u3089\u306a\u3044\u3068\u30bf\u30af\u30b7\u30fc\u904b\u8ee2\u624b\u3092\u6bb4\u3063\u305f\u30a2\u30e1\u30ea\u30ab\u4eba\u3092\u5728\u5b85\u8d77\u8a34 http://tinyurl.com/38bhj8","id":89497432,"user":{"name":"2NN","description":"","location":"","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/5507772/normal/2NN.gif?1177538505","url":"http://www.2nn.jp/","id":5507772,"screen_name":"2NN","protected":false}},{"created_at":"Sun Jun 03 18:00:46 +0000 2007","text":"Why gas prices are so pumped up: Gas experts place the blame for high prices on a national gas shortage .. http://tinyurl.com/ysc8rm","id":89497402,"user":{"name":"Netscape","description":null,"location":null,"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/822660/normal/Picture_3.png?1173380596","url":null,"id":822660,"screen_name":"Netscape","protected":false}},{"created_at":"Sun Jun 03 18:00:45 +0000 2007","text":"@erfani \u0634\u0646\u06cc\u062f\u0647 \u0628\u0648\u062f\u0645","id":89497392,"user":{"name":"Mahdi kazzazi","description":"","location":"","profile_image_url":"http://assets0.twitter.com/system/user/profile_image/5630472/normal/miimage.jpg?1180550654","url":"http://www.persiandeveloper.com/","id":5630472,"screen_name":"MMahdi","protected":false}},{"created_at":"Sun Jun 03 18:00:44 +0000 2007","text":"De a Fried k\u00f6nyve is!","id":89497372,"user":{"name":"Balint Sera","description":null,"location":null,"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/5861892/normal/pic.jpg?1178628338","url":null,"id":5861892,"screen_name":"damnadm","protected":false}}] \ No newline at end of file +[ + { + "created_at": "Sun Jun 03 17:59:37 +0000 2007", + "text": "Warcry Blog: Anjas first Birthday: Today was Anjas first birthday, It is insane that a year .. http://tinyurl.com/2x7omb", + "id": 89497702, + "user": { + "name": "Patrik Olterman", + "description": "", + "location": "Riga", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/2038581/normal/dsc03106.jpg?1180337431", + "url": "http://warcry.olterman.se", + "id": 2038581, + "screen_name": "olterman", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:01:01 +0000 2007", + "text": "3am AEST - AWAYE! (Listen Up) - http://tinyurl.com/38nuza", + "id": 89497692, + "user": { + "name": "ABC Radio National", + "description": "", + "location": "Australia", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/3496461/normal/abc.jpg?1176239249", + "url": "http://abc.net.au/rn/", + "id": 3496461, + "screen_name": "abcrn", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 17:59:36 +0000 2007", + "text": "I am going to brush my teeth cuz i just woke up", + "id": 89497682, + "user": { + "name": "alanna esposito", + "description": "", + "location": "", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/3467431/normal/legzz.jpg?1175725871", + "url": null, + "id": 3467431, + "screen_name": "luhhsespino", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:58 +0000 2007", + "text": "Listening to an old Blur album ('13').", + "id": 89497672, + "user": { + "name": "Lex The Hex", + "description": "I love anything geeky, love gadgets, find it very difficult to talk to people.", + "location": "North Devon, UK", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/429783/normal/IMAGE_099.jpg?1180813787", + "url": "http://brooknet.org", + "id": 429783, + "screen_name": "lexthehex", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:58 +0000 2007", + "text": "taking pics of myself 4 my facebook.", + "id": 89497662, + "user": { + "name": "Lexi Jackson", + "description": "", + "location": "", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/6525642/normal/cute_dog.jpg?1180803976", + "url": null, + "id": 6525642, + "screen_name": "LexiJackson", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 17:59:33 +0000 2007", + "text": "I am getting bored. Wish i could entertain myself. Solution any one?", + "id": 89497632, + "user": { + "name": "Samuel Joos", + "description": null, + "location": null, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/6517892/normal/datbenik.jpg?1180766995", + "url": null, + "id": 6517892, + "screen_name": "Flashingback", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:56 +0000 2007", + "text": "@definetheline; STFU!!!!!!", + "id": 89497622, + "user": { + "name": "Alejandro [correa]", + "description": "I'm like quicksand. Sandy & quick.", + "location": "Miami", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/639343/normal/avatar.jpg?1180748145", + "url": "http://flickr.com/photos/alej744", + "id": 639343, + "screen_name": "alej744", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:53 +0000 2007", + "text": "Haciendo monstruos", + "id": 89497582, + "user": { + "name": "Jimena Vega", + "description": "Vean mis Monstruos: www.monstersncutties.wordpress.com", + "location": "M\u00e8xico", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/761245/normal/511658650_2c1e59ce98_t.jpg?1179977645", + "url": "http://www.shamballa.fulguris.net", + "id": 761245, + "screen_name": "shamballa", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 17:59:29 +0000 2007", + "text": "heading to chinatown for roast pork n duck n bubble tea", + "id": 89497572, + "user": { + "name": "Corinne", + "description": "", + "location": "", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/815054/normal/oops.jpg?1173239376", + "url": "http://25cents.wordpress.com", + "id": 815054, + "screen_name": "xcori", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 17:59:29 +0000 2007", + "text": "I'm actually really enjoying Facebook. The calendars and stuff are very organizational. I'm an organization freak! Perfect for me!", + "id": 89497562, + "user": { + "name": "The Mighty Mommy", + "description": "Mommy of Two, Wife of One, Friend to Many!", + "location": "Arizona", + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/772523/normal/miimage.jpg?1179497687", + "url": "http://mightymommy.qdnow.com", + "id": 772523, + "screen_name": "MightyMommy", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:52 +0000 2007", + "text": "Off for tonight, see you tomorrow.", + "id": 89497552, + "user": { + "name": "Benjamin Gauthey", + "description": "", + "location": "", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/3194221/normal/me.jpg?1179996565", + "url": "http://www.benjamingauthey.com", + "id": 3194221, + "screen_name": "benjamingauthey", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:52 +0000 2007", + "text": "[Blog Updated] Weewar - \u5c0f\u578b\u5728\u7ebf\u5373\u65f6\u6218\u7565\u6e38\u620f http://tinyurl.com/33yfa2", + "id": 89497532, + "user": { + "name": "Lyang", + "description": "\"If we lose, then what the hell, at least we died trying...\" Digg On!", + "location": "Shanghai.CN", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/5144201/normal/elusive.png?1178901205", + "url": "http://a7xorz.blogspot.com", + "id": 5144201, + "screen_name": "a7xorz", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:51 +0000 2007", + "text": "[WangTam] Multiverse \u83b7\u6536 400 \u4e07\u7f8e\u5143\u6295\u8d44: Second Life \u7684\u6210\u529f\u5e76\u975e\u5076\u7136\uff0c\u5efa\u7acb\u5728\u865a\u62df\u4e16\u754c\u57fa\u7840\u4e0a\u7684\u793e\u4f1a\u5316\u7f51\u7edc\uff0c\u5176\u5e94\u7528\u8d8a\u6765\u8d8a\u6df1\u5165\u666e\u904d\u7528\u6237\u65e5\u5e38\u7f51\u7edc\u751f\u6d3b\u3002\u4ee5\u540e\u7c7b\u4f3c\u4e8e .. http://tinyurl.com/36j5r6", + "id": 89497522, + "user": { + "name": "\u542f\u7f81", + "description": "\u88c5\u50bb\u6bd4\u88c5\u903c\u66f4\u6709\u76ca\u4e8e\u8eab\u5fc3\u5065\u5eb7", + "location": "\u714b (Mars)", + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/917171/normal/QeeGi_Radlin.png?1176903251", + "url": "http://www.wangtam.com", + "id": 917171, + "screen_name": "QeeGi", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:51 +0000 2007", + "text": "Adoring the sublime architecture of the universe, including you.", + "id": 89497512, + "user": { + "name": "Jon", + "description": "The millionth monkey.", + "location": "A castle. In SPACE!", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/6239122/normal/jonbasscropped2.jpg?1179858686", + "url": "http://www.jonglassett.com", + "id": 6239122, + "screen_name": "jonniejerko", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:49 +0000 2007", + "text": "\u9154\u3063\u305f\u3002\u5b9f\u306b\u9154\u3063\u305f\u3002\u76ee\u306e\u524d\u306e\u5b9a\u7fa9\u3092\u7c21\u5358\u306b\u65ad\u5b9a\u3059\u308b\u307b\u3069\u9154\u3063\u3066\u3057\u307e\u3063\u305f\uff01", + "id": 89497482, + "user": { + "name": "wazurai", + "description": "\u7169\u3046\u4e8b\u3092\u4ed5\u4e8b\u306b\u98df\u3079\u3066\u3044\u3051\u308b\u69d8\u306b\u8abf\u7bc0\u4e2d\u306e\u6bce\u65e5\u3002", + "location": "\u65e5\u672c\u306e\u6771\u4eac\u306e\u7acb\u5ddd\u306e\u6771\u3042\u305f\u308a\u3002", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/6464452/normal/382616310_249-1.jpg?1180682927", + "url": "http://wazurai.org/", + "id": 6464452, + "screen_name": "wazurai", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:47 +0000 2007", + "text": "aaarrrggghhhh...looks like a bad day for air travel.", + "id": 89497442, + "user": { + "name": "Andrew DeVigal", + "description": "", + "location": "New York, NY", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/626103/normal/andrewdevigal_lores.jpg?1171963676", + "url": "http://andrew.devigal.com/", + "id": 626103, + "screen_name": "drewvigal", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:46 +0000 2007", + "text": "\u3010\u97d3\u56fd\u3011\u82f1\u8a9e\u304c\u308f\u304b\u3089\u306a\u3044\u3068\u30bf\u30af\u30b7\u30fc\u904b\u8ee2\u624b\u3092\u6bb4\u3063\u305f\u30a2\u30e1\u30ea\u30ab\u4eba\u3092\u5728\u5b85\u8d77\u8a34 http://tinyurl.com/38bhj8", + "id": 89497432, + "user": { + "name": "2NN", + "description": "", + "location": "", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/5507772/normal/2NN.gif?1177538505", + "url": "http://www.2nn.jp/", + "id": 5507772, + "screen_name": "2NN", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:46 +0000 2007", + "text": "Why gas prices are so pumped up: Gas experts place the blame for high prices on a national gas shortage .. http://tinyurl.com/ysc8rm", + "id": 89497402, + "user": { + "name": "Netscape", + "description": null, + "location": null, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/822660/normal/Picture_3.png?1173380596", + "url": null, + "id": 822660, + "screen_name": "Netscape", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:45 +0000 2007", + "text": "@erfani \u0634\u0646\u06cc\u062f\u0647 \u0628\u0648\u062f\u0645", + "id": 89497392, + "user": { + "name": "Mahdi kazzazi", + "description": "", + "location": "", + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/5630472/normal/miimage.jpg?1180550654", + "url": "http://www.persiandeveloper.com/", + "id": 5630472, + "screen_name": "MMahdi", + "protected": false + } + }, + { + "created_at": "Sun Jun 03 18:00:44 +0000 2007", + "text": "De a Fried k\u00f6nyve is!", + "id": 89497372, + "user": { + "name": "Balint Sera", + "description": null, + "location": null, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/5861892/normal/pic.jpg?1178628338", + "url": null, + "id": 5861892, + "screen_name": "damnadm", + "protected": false + } + } +] \ No newline at end of file diff --git a/testdata/replies.json b/testdata/replies.json index e837d5f4..f9817002 100644 --- a/testdata/replies.json +++ b/testdata/replies.json @@ -1 +1,107 @@ -[{"created_at":"Mon Apr 23 06:56:04 +0000 2007","text":"@dewitt - touche.","id":36657062,"user":{"name":"sean coon","description":"trying to make a living and a difference...","location":"Greensboro, NC","url":"http://www.seancoon.org","id":677903,"protected":false,"profile_image_url":"http://assets3.twitter.com/system/user/profile_image/677903/normal/sean-85.png?1173252480","screen_name":"spcoon"}},{"created_at":"Sat Feb 10 22:26:08 +0000 2007","text":"@ DeWitt: say hey to Fairway for me","id":5418088,"user":{"name":"steve o'grady","description":"analyst and co-founder of RedMonk","location":"Denver, CO","url":"http://redmonk.com/sogrady","id":143883,"protected":false,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279","screen_name":"sogrady"}},{"created_at":"Fri Feb 09 21:24:23 +0000 2007","text":"@dewitt - imho, \"meme-ish\" would be an excellent definition of the Internet in general. ","id":5398801,"user":{"name":"Veronica","description":"CNET TV host and podcasting diva of Buzz Out Loud","location":"San Francisco","url":"http://www.veronicabelmont.com","id":10350,"protected":false,"profile_image_url":"http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942","screen_name":"Veronica"}},{"created_at":"Mon Feb 05 20:13:20 +0000 2007","text":"@ DeWitt: hahaha - figured as much. only time in NYC in two months and it has to be Valentine's day.","id":5327278,"user":{"name":"steve o'grady","description":"analyst and co-founder of RedMonk","location":"Denver, CO","url":"http://redmonk.com/sogrady","id":143883,"protected":false,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279","screen_name":"sogrady"}},{"created_at":"Mon Feb 05 20:03:53 +0000 2007","text":"@ DeWitt (and world): i'm in the 14th, and probably back out midday the 15th. if valentine's day isn't already spoken for, i'm game.","id":5327163,"user":{"name":"steve o'grady","description":"analyst and co-founder of RedMonk","location":"Denver, CO","url":"http://redmonk.com/sogrady","id":143883,"protected":false,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279","screen_name":"sogrady"}},{"created_at":"Mon Feb 05 19:59:46 +0000 2007","text":"@ DeWitt: what days will you be in NYC?","id":5327090,"user":{"name":"steve o'grady","description":"analyst and co-founder of RedMonk","location":"Denver, CO","url":"http://redmonk.com/sogrady","id":143883,"protected":false,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279","screen_name":"sogrady"}},{"created_at":"Wed Jan 31 22:29:38 +0000 2007","text":"@DeWitt: you'll like it. picked it up this afternoon in non-DRM crap form ;) better than Wincing the Night Away so far, for me","id":4895723,"user":{"name":"steve o'grady","description":"analyst and co-founder of RedMonk","location":"Denver, CO","url":"http://redmonk.com/sogrady","id":143883,"protected":false,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279","screen_name":"sogrady"}}] \ No newline at end of file +[ + { + "created_at": "Mon Apr 23 06:56:04 +0000 2007", + "text": "@dewitt - touche.", + "id": 36657062, + "user": { + "name": "sean coon", + "description": "trying to make a living and a difference...", + "location": "Greensboro, NC", + "url": "http://www.seancoon.org", + "id": 677903, + "protected": false, + "profile_image_url": "http://assets3.twitter.com/system/user/profile_image/677903/normal/sean-85.png?1173252480", + "screen_name": "spcoon" + } + }, + { + "created_at": "Sat Feb 10 22:26:08 +0000 2007", + "text": "@ DeWitt: say hey to Fairway for me", + "id": 5418088, + "user": { + "name": "steve o'grady", + "description": "analyst and co-founder of RedMonk", + "location": "Denver, CO", + "url": "http://redmonk.com/sogrady", + "id": 143883, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279", + "screen_name": "sogrady" + } + }, + { + "created_at": "Fri Feb 09 21:24:23 +0000 2007", + "text": "@dewitt - imho, \"meme-ish\" would be an excellent definition of the Internet in general. ", + "id": 5398801, + "user": { + "name": "Veronica", + "description": "CNET TV host and podcasting diva of Buzz Out Loud", + "location": "San Francisco", + "url": "http://www.veronicabelmont.com", + "id": 10350, + "protected": false, + "profile_image_url": "http://assets2.twitter.com/system/user/profile_image/10350/normal/mypictr_140x144.jpg?1179253942", + "screen_name": "Veronica" + } + }, + { + "created_at": "Mon Feb 05 20:13:20 +0000 2007", + "text": "@ DeWitt: hahaha - figured as much. only time in NYC in two months and it has to be Valentine's day.", + "id": 5327278, + "user": { + "name": "steve o'grady", + "description": "analyst and co-founder of RedMonk", + "location": "Denver, CO", + "url": "http://redmonk.com/sogrady", + "id": 143883, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279", + "screen_name": "sogrady" + } + }, + { + "created_at": "Mon Feb 05 20:03:53 +0000 2007", + "text": "@ DeWitt (and world): i'm in the 14th, and probably back out midday the 15th. if valentine's day isn't already spoken for, i'm game.", + "id": 5327163, + "user": { + "name": "steve o'grady", + "description": "analyst and co-founder of RedMonk", + "location": "Denver, CO", + "url": "http://redmonk.com/sogrady", + "id": 143883, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279", + "screen_name": "sogrady" + } + }, + { + "created_at": "Mon Feb 05 19:59:46 +0000 2007", + "text": "@ DeWitt: what days will you be in NYC?", + "id": 5327090, + "user": { + "name": "steve o'grady", + "description": "analyst and co-founder of RedMonk", + "location": "Denver, CO", + "url": "http://redmonk.com/sogrady", + "id": 143883, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279", + "screen_name": "sogrady" + } + }, + { + "created_at": "Wed Jan 31 22:29:38 +0000 2007", + "text": "@DeWitt: you'll like it. picked it up this afternoon in non-DRM crap form ;) better than Wincing the Night Away so far, for me", + "id": 4895723, + "user": { + "name": "steve o'grady", + "description": "analyst and co-founder of RedMonk", + "location": "Denver, CO", + "url": "http://redmonk.com/sogrady", + "id": 143883, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/143883/normal/headshot.jpg?1174273279", + "screen_name": "sogrady" + } + } +] \ No newline at end of file diff --git a/testdata/retweet.json b/testdata/retweet.json index 6cf84b4a..60acf079 100644 --- a/testdata/retweet.json +++ b/testdata/retweet.json @@ -1 +1,15 @@ -{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102,"user":{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","url":null,"id":718443,"screen_name":"kesuke","protected":false}} \ No newline at end of file +{ + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102, + "user": { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "url": null, + "id": 718443, + "screen_name": "kesuke", + "protected": false + } +} \ No newline at end of file diff --git a/testdata/retweets_of_me.json b/testdata/retweets_of_me.json index 88f30a75..797410b1 100644 --- a/testdata/retweets_of_me.json +++ b/testdata/retweets_of_me.json @@ -1 +1,26 @@ -[{"id_str":"253650670274637824","user":{"id_str":"14364433","id":14364433},"place":null,"favorited":false,"created_at":"Thu Oct 04 00:20:07 +0000 2012","coordinates":null,"contributors":null,"retweet_count":1,"in_reply_to_status_id_str":null,"in_reply_to_user_id_str":null,"retweeted":false,"in_reply_to_screen_name":null,"text":"Can we be done with phone books already?","truncated":false,"source":"foo","in_reply_to_user_id":null,"in_reply_to_status_id":null,"id":253650670274637824,"geo":null}] \ No newline at end of file +[ + { + "id_str": "253650670274637824", + "user": { + "id_str": "14364433", + "id": 14364433 + }, + "place": null, + "favorited": false, + "created_at": "Thu Oct 04 00:20:07 +0000 2012", + "coordinates": null, + "contributors": null, + "retweet_count": 1, + "in_reply_to_status_id_str": null, + "in_reply_to_user_id_str": null, + "retweeted": false, + "in_reply_to_screen_name": null, + "text": "Can we be done with phone books already?", + "truncated": false, + "source": "foo", + "in_reply_to_user_id": null, + "in_reply_to_status_id": null, + "id": 253650670274637824, + "geo": null + } +] \ No newline at end of file diff --git a/testdata/show-89512102.json b/testdata/show-89512102.json index 6cf84b4a..60acf079 100644 --- a/testdata/show-89512102.json +++ b/testdata/show-89512102.json @@ -1 +1,15 @@ -{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102,"user":{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","url":null,"id":718443,"screen_name":"kesuke","protected":false}} \ No newline at end of file +{ + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102, + "user": { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "url": null, + "id": 718443, + "screen_name": "kesuke", + "protected": false + } +} \ No newline at end of file diff --git a/testdata/show-dewitt.json b/testdata/show-dewitt.json index ab949b0e..a224931a 100644 --- a/testdata/show-dewitt.json +++ b/testdata/show-dewitt.json @@ -1 +1,24 @@ -{"friends_count":40,"profile_background_color":"FFFFFF","name":"DeWitt","statuses_count":71,"followers_count":64,"profile_text_color":"121212","favourites_count":2,"profile_link_color":"666666","description":"Indeterminate things","location":"San Francisco, CA","profile_sidebar_fill_color":"CCCCCC","url":"http://unto.net/","id":673483,"profile_sidebar_border_color":"333333","protected":false,"status":{"created_at":"Sun Jun 03 19:50:23 +0000 2007","text":"If a theme song played when I walked around all day, I'd want it to be All My Friends by LCD Soundsystem.","id":89586072},"profile_image_url":"http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914","screen_name":"dewitt"} \ No newline at end of file +{ + "friends_count": 40, + "profile_background_color": "FFFFFF", + "name": "DeWitt", + "statuses_count": 71, + "followers_count": 64, + "profile_text_color": "121212", + "favourites_count": 2, + "profile_link_color": "666666", + "description": "Indeterminate things", + "location": "San Francisco, CA", + "profile_sidebar_fill_color": "CCCCCC", + "url": "http://unto.net/", + "id": 673483, + "profile_sidebar_border_color": "333333", + "protected": false, + "status": { + "created_at": "Sun Jun 03 19:50:23 +0000 2007", + "text": "If a theme song played when I walked around all day, I'd want it to be All My Friends by LCD Soundsystem.", + "id": 89586072 + }, + "profile_image_url": "http://assets0.twitter.com/system/user/profile_image/673483/normal/me.jpg?1171965914", + "screen_name": "dewitt" +} \ No newline at end of file diff --git a/testdata/status-destroy.json b/testdata/status-destroy.json index d4396119..a278e095 100644 --- a/testdata/status-destroy.json +++ b/testdata/status-destroy.json @@ -1 +1,15 @@ -{"created_at":"Wed Jun 13 17:08:02 +0000 2007","text":"Just a final test before 0.4 release!","id":103208352,"user":{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","url":null,"id":718443,"screen_name":"kesuke","protected":false}} +{ + "created_at": "Wed Jun 13 17:08:02 +0000 2007", + "text": "Just a final test before 0.4 release!", + "id": 103208352, + "user": { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "url": null, + "id": 718443, + "screen_name": "kesuke", + "protected": false + } +} diff --git a/testdata/update.json b/testdata/update.json index 6cf84b4a..60acf079 100644 --- a/testdata/update.json +++ b/testdata/update.json @@ -1 +1,15 @@ -{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102,"user":{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","url":null,"id":718443,"screen_name":"kesuke","protected":false}} \ No newline at end of file +{ + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102, + "user": { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "url": null, + "id": 718443, + "screen_name": "kesuke", + "protected": false + } +} \ No newline at end of file diff --git a/testdata/update_latlong.json b/testdata/update_latlong.json index 0f63f8bf..2acd5627 100644 --- a/testdata/update_latlong.json +++ b/testdata/update_latlong.json @@ -1 +1,29 @@ -{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102,"geo":{"type":"Point","coordinates":[26.2,127.5]},"coordinates":{"type":"Point","coordinates":[127.5,26.2]},"user":{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","url":null,"id":718443,"screen_name":"kesuke","protected":false}} +{ + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102, + "geo": { + "type": "Point", + "coordinates": [ + 26.2, + 127.5 + ] + }, + "coordinates": { + "type": "Point", + "coordinates": [ + 127.5, + 26.2 + ] + }, + "user": { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "url": null, + "id": 718443, + "screen_name": "kesuke", + "protected": false + } +} diff --git a/testdata/user_timeline-kesuke.json b/testdata/user_timeline-kesuke.json index 8ddd9769..abf05d30 100644 --- a/testdata/user_timeline-kesuke.json +++ b/testdata/user_timeline-kesuke.json @@ -1 +1,17 @@ -[{"created_at":"Sun Jun 03 18:15:29 +0000 2007","text":"\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439","id":89512102,"user":{"name":"Kesuke Miyagi","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","location":"Okinawa, Japan","url":null,"id":718443,"protected":false,"profile_image_url":"http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399","screen_name":"kesuke"}}] \ No newline at end of file +[ + { + "created_at": "Sun Jun 03 18:15:29 +0000 2007", + "text": "\u041c\u043e\u0451 \u0441\u0443\u0434\u043d\u043e \u043d\u0430 \u0432\u043e\u0437\u0434\u0443\u0448\u043d\u043e\u0439 \u043f\u043e\u0434\u0443\u0448\u043a\u0435 \u043f\u043e\u043b\u043d\u043e \u0443\u0433\u0440\u0435\u0439", + "id": 89512102, + "user": { + "name": "Kesuke Miyagi", + "description": "\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002", + "location": "Okinawa, Japan", + "url": null, + "id": 718443, + "protected": false, + "profile_image_url": "http://assets1.twitter.com/system/user/profile_image/718443/normal/kesuke.png?1169966399", + "screen_name": "kesuke" + } + } +] \ No newline at end of file diff --git a/testdata/user_timeline.json b/testdata/user_timeline.json index e952924f..062442e1 100644 --- a/testdata/user_timeline.json +++ b/testdata/user_timeline.json @@ -1 +1,16 @@ -[{"user": {"name": "DeWitt", "url": "http://unto.net/", "id": 673483, "description": "Indeterminate things", "screen_name": "dewitt", "location": "San Francisco, CA"}, "text": "\"Select all\" and archive your Gmail inbox. The page loads so much faster!", "id": 4212713, "relative_created_at": "2 days ago", "created_at": "Fri Jan 26 17:28:19 +0000 2007"}] \ No newline at end of file +[ + { + "user": { + "name": "DeWitt", + "url": "http://unto.net/", + "id": 673483, + "description": "Indeterminate things", + "screen_name": "dewitt", + "location": "San Francisco, CA" + }, + "text": "\"Select all\" and archive your Gmail inbox. The page loads so much faster!", + "id": 4212713, + "relative_created_at": "2 days ago", + "created_at": "Fri Jan 26 17:28:19 +0000 2007" + } +] \ No newline at end of file diff --git a/twitter_test.py b/twitter_test.py index 54664bf0..30b67aeb 100755 --- a/twitter_test.py +++ b/twitter_test.py @@ -8,7 +8,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -29,666 +29,672 @@ import twitter + class StatusTest(unittest.TestCase): + SAMPLE_JSON = '''{"created_at": "Fri Jan 26 23:17:14 +0000 2007", "id": 4391023, "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", "user": {"description": "Canvas. JC Penny. Three ninety-eight.", "id": 718443, "location": "Okinawa, Japan", "name": "Kesuke Miyagi", "profile_image_url": "https://twitter.com/system/user/profile_image/718443/normal/kesuke.png", "screen_name": "kesuke", "url": "https://twitter.com/kesuke"}}''' + + def _GetSampleUser(self): + return twitter.User(id=718443, + name='Kesuke Miyagi', + screen_name='kesuke', + description=u'Canvas. JC Penny. Three ninety-eight.', + location='Okinawa, Japan', + url='https://twitter.com/kesuke', + profile_image_url='https://twitter.com/system/user/pro' + 'file_image/718443/normal/kesuke.pn' + 'g') + + def _GetSampleStatus(self): + return twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', + id=4391023, + text=u'A légpárnás hajóm tele van angolnákkal.', + user=self._GetSampleUser()) + + def testInit(self): + '''Test the twitter.Status constructor''' + status = twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', + id=4391023, + text=u'A légpárnás hajóm tele van angolnákkal.', + user=self._GetSampleUser()) + + def testGettersAndSetters(self): + '''Test all of the twitter.Status getters and setters''' + status = twitter.Status() + status.SetId(4391023) + self.assertEqual(4391023, status.GetId()) + created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) + status.SetCreatedAt('Fri Jan 26 23:17:14 +0000 2007') + self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.GetCreatedAt()) + self.assertEqual(created_at, status.GetCreatedAtInSeconds()) + status.SetNow(created_at + 10) + self.assertEqual("about 10 seconds ago", status.GetRelativeCreatedAt()) + status.SetText(u'A légpárnás hajóm tele van angolnákkal.') + self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', + status.GetText()) + status.SetUser(self._GetSampleUser()) + self.assertEqual(718443, status.GetUser().id) + + def testProperties(self): + '''Test all of the twitter.Status properties''' + status = twitter.Status() + status.id = 1 + self.assertEqual(1, status.id) + created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) + status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' + self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.created_at) + self.assertEqual(created_at, status.created_at_in_seconds) + status.now = created_at + 10 + self.assertEqual('about 10 seconds ago', status.relative_created_at) + status.user = self._GetSampleUser() + self.assertEqual(718443, status.user.id) + + def _ParseDate(self, string): + return calendar.timegm(time.strptime(string, '%b %d %H:%M:%S %Y')) + + def testRelativeCreatedAt(self): + '''Test various permutations of Status relative_created_at''' + status = twitter.Status(created_at='Fri Jan 01 12:00:00 +0000 2007') + status.now = self._ParseDate('Jan 01 12:00:00 2007') + self.assertEqual('about a second ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:00:01 2007') + self.assertEqual('about a second ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:00:02 2007') + self.assertEqual('about 2 seconds ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:00:05 2007') + self.assertEqual('about 5 seconds ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:00:50 2007') + self.assertEqual('about a minute ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:01:00 2007') + self.assertEqual('about a minute ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:01:10 2007') + self.assertEqual('about a minute ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:02:00 2007') + self.assertEqual('about 2 minutes ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:31:50 2007') + self.assertEqual('about 31 minutes ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 12:50:00 2007') + self.assertEqual('about an hour ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 13:00:00 2007') + self.assertEqual('about an hour ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 13:10:00 2007') + self.assertEqual('about an hour ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 14:00:00 2007') + self.assertEqual('about 2 hours ago', status.relative_created_at) + status.now = self._ParseDate('Jan 01 19:00:00 2007') + self.assertEqual('about 7 hours ago', status.relative_created_at) + status.now = self._ParseDate('Jan 02 11:30:00 2007') + self.assertEqual('about a day ago', status.relative_created_at) + status.now = self._ParseDate('Jan 04 12:00:00 2007') + self.assertEqual('about 3 days ago', status.relative_created_at) + status.now = self._ParseDate('Feb 04 12:00:00 2007') + self.assertEqual('about 34 days ago', status.relative_created_at) + + def testAsJsonString(self): + '''Test the twitter.Status AsJsonString method''' + self.assertEqual(StatusTest.SAMPLE_JSON, + self._GetSampleStatus().AsJsonString()) + + def testAsDict(self): + '''Test the twitter.Status AsDict method''' + status = self._GetSampleStatus() + data = status.AsDict() + self.assertEqual(4391023, data['id']) + self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', data['created_at']) + self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', data['text']) + self.assertEqual(718443, data['user']['id']) + + def testEq(self): + '''Test the twitter.Status __eq__ method''' + status = twitter.Status() + status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' + status.id = 4391023 + status.text = u'A légpárnás hajóm tele van angolnákkal.' + status.user = self._GetSampleUser() + self.assertEqual(status, self._GetSampleStatus()) + + def testNewFromJsonDict(self): + '''Test the twitter.Status NewFromJsonDict method''' + data = simplejson.loads(StatusTest.SAMPLE_JSON) + status = twitter.Status.NewFromJsonDict(data) + self.assertEqual(self._GetSampleStatus(), status) - SAMPLE_JSON = '''{"created_at": "Fri Jan 26 23:17:14 +0000 2007", "id": 4391023, "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", "user": {"description": "Canvas. JC Penny. Three ninety-eight.", "id": 718443, "location": "Okinawa, Japan", "name": "Kesuke Miyagi", "profile_image_url": "https://twitter.com/system/user/profile_image/718443/normal/kesuke.png", "screen_name": "kesuke", "url": "https://twitter.com/kesuke"}}''' - - def _GetSampleUser(self): - return twitter.User(id=718443, - name='Kesuke Miyagi', - screen_name='kesuke', - description=u'Canvas. JC Penny. Three ninety-eight.', - location='Okinawa, Japan', - url='https://twitter.com/kesuke', - profile_image_url='https://twitter.com/system/user/pro' - 'file_image/718443/normal/kesuke.pn' - 'g') - - def _GetSampleStatus(self): - return twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', - id=4391023, - text=u'A légpárnás hajóm tele van angolnákkal.', - user=self._GetSampleUser()) - - def testInit(self): - '''Test the twitter.Status constructor''' - status = twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', - id=4391023, - text=u'A légpárnás hajóm tele van angolnákkal.', - user=self._GetSampleUser()) - - def testGettersAndSetters(self): - '''Test all of the twitter.Status getters and setters''' - status = twitter.Status() - status.SetId(4391023) - self.assertEqual(4391023, status.GetId()) - created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) - status.SetCreatedAt('Fri Jan 26 23:17:14 +0000 2007') - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.GetCreatedAt()) - self.assertEqual(created_at, status.GetCreatedAtInSeconds()) - status.SetNow(created_at + 10) - self.assertEqual("about 10 seconds ago", status.GetRelativeCreatedAt()) - status.SetText(u'A légpárnás hajóm tele van angolnákkal.') - self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', - status.GetText()) - status.SetUser(self._GetSampleUser()) - self.assertEqual(718443, status.GetUser().id) - - def testProperties(self): - '''Test all of the twitter.Status properties''' - status = twitter.Status() - status.id = 1 - self.assertEqual(1, status.id) - created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) - status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.created_at) - self.assertEqual(created_at, status.created_at_in_seconds) - status.now = created_at + 10 - self.assertEqual('about 10 seconds ago', status.relative_created_at) - status.user = self._GetSampleUser() - self.assertEqual(718443, status.user.id) - - def _ParseDate(self, string): - return calendar.timegm(time.strptime(string, '%b %d %H:%M:%S %Y')) - - def testRelativeCreatedAt(self): - '''Test various permutations of Status relative_created_at''' - status = twitter.Status(created_at='Fri Jan 01 12:00:00 +0000 2007') - status.now = self._ParseDate('Jan 01 12:00:00 2007') - self.assertEqual('about a second ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:01 2007') - self.assertEqual('about a second ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:02 2007') - self.assertEqual('about 2 seconds ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:05 2007') - self.assertEqual('about 5 seconds ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:50 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:01:00 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:01:10 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:02:00 2007') - self.assertEqual('about 2 minutes ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:31:50 2007') - self.assertEqual('about 31 minutes ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:50:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 13:00:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 13:10:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 14:00:00 2007') - self.assertEqual('about 2 hours ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 19:00:00 2007') - self.assertEqual('about 7 hours ago', status.relative_created_at) - status.now = self._ParseDate('Jan 02 11:30:00 2007') - self.assertEqual('about a day ago', status.relative_created_at) - status.now = self._ParseDate('Jan 04 12:00:00 2007') - self.assertEqual('about 3 days ago', status.relative_created_at) - status.now = self._ParseDate('Feb 04 12:00:00 2007') - self.assertEqual('about 34 days ago', status.relative_created_at) - - def testAsJsonString(self): - '''Test the twitter.Status AsJsonString method''' - self.assertEqual(StatusTest.SAMPLE_JSON, - self._GetSampleStatus().AsJsonString()) - - def testAsDict(self): - '''Test the twitter.Status AsDict method''' - status = self._GetSampleStatus() - data = status.AsDict() - self.assertEqual(4391023, data['id']) - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', data['created_at']) - self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', data['text']) - self.assertEqual(718443, data['user']['id']) - - def testEq(self): - '''Test the twitter.Status __eq__ method''' - status = twitter.Status() - status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' - status.id = 4391023 - status.text = u'A légpárnás hajóm tele van angolnákkal.' - status.user = self._GetSampleUser() - self.assertEqual(status, self._GetSampleStatus()) - - def testNewFromJsonDict(self): - '''Test the twitter.Status NewFromJsonDict method''' - data = simplejson.loads(StatusTest.SAMPLE_JSON) - status = twitter.Status.NewFromJsonDict(data) - self.assertEqual(self._GetSampleStatus(), status) class UserTest(unittest.TestCase): + SAMPLE_JSON = '''{"description": "Indeterminate things", "id": 673483, "location": "San Francisco, CA", "name": "DeWitt", "profile_image_url": "https://twitter.com/system/user/profile_image/673483/normal/me.jpg", "screen_name": "dewitt", "status": {"created_at": "Fri Jan 26 17:28:19 +0000 2007", "id": 4212713, "text": "\\"Select all\\" and archive your Gmail inbox. The page loads so much faster!"}, "url": "http://unto.net/"}''' + + def _GetSampleStatus(self): + return twitter.Status(created_at='Fri Jan 26 17:28:19 +0000 2007', + id=4212713, + text='"Select all" and archive your Gmail inbox. ' + ' The page loads so much faster!') + + def _GetSampleUser(self): + return twitter.User(id=673483, + name='DeWitt', + screen_name='dewitt', + description=u'Indeterminate things', + location='San Francisco, CA', + url='http://unto.net/', + profile_image_url='https://twitter.com/system/user/prof' + 'ile_image/673483/normal/me.jpg', + status=self._GetSampleStatus()) + + + def testInit(self): + '''Test the twitter.User constructor''' + user = twitter.User(id=673483, + name='DeWitt', + screen_name='dewitt', + description=u'Indeterminate things', + url='https://twitter.com/dewitt', + profile_image_url='https://twitter.com/system/user/prof' + 'ile_image/673483/normal/me.jpg', + status=self._GetSampleStatus()) + + def testGettersAndSetters(self): + '''Test all of the twitter.User getters and setters''' + user = twitter.User() + user.SetId(673483) + self.assertEqual(673483, user.GetId()) + user.SetName('DeWitt') + self.assertEqual('DeWitt', user.GetName()) + user.SetScreenName('dewitt') + self.assertEqual('dewitt', user.GetScreenName()) + user.SetDescription('Indeterminate things') + self.assertEqual('Indeterminate things', user.GetDescription()) + user.SetLocation('San Francisco, CA') + self.assertEqual('San Francisco, CA', user.GetLocation()) + user.SetProfileImageUrl('https://twitter.com/system/user/profile_im' + 'age/673483/normal/me.jpg') + self.assertEqual('https://twitter.com/system/user/profile_image/673' + '483/normal/me.jpg', user.GetProfileImageUrl()) + user.SetStatus(self._GetSampleStatus()) + self.assertEqual(4212713, user.GetStatus().id) + + def testProperties(self): + '''Test all of the twitter.User properties''' + user = twitter.User() + user.id = 673483 + self.assertEqual(673483, user.id) + user.name = 'DeWitt' + self.assertEqual('DeWitt', user.name) + user.screen_name = 'dewitt' + self.assertEqual('dewitt', user.screen_name) + user.description = 'Indeterminate things' + self.assertEqual('Indeterminate things', user.description) + user.location = 'San Francisco, CA' + self.assertEqual('San Francisco, CA', user.location) + user.profile_image_url = 'https://twitter.com/system/user/profile_i' \ + 'mage/673483/normal/me.jpg' + self.assertEqual('https://twitter.com/system/user/profile_image/6734' + '83/normal/me.jpg', user.profile_image_url) + self.status = self._GetSampleStatus() + self.assertEqual(4212713, self.status.id) + + def testAsJsonString(self): + '''Test the twitter.User AsJsonString method''' + self.assertEqual(UserTest.SAMPLE_JSON, + self._GetSampleUser().AsJsonString()) + + def testAsDict(self): + '''Test the twitter.User AsDict method''' + user = self._GetSampleUser() + data = user.AsDict() + self.assertEqual(673483, data['id']) + self.assertEqual('DeWitt', data['name']) + self.assertEqual('dewitt', data['screen_name']) + self.assertEqual('Indeterminate things', data['description']) + self.assertEqual('San Francisco, CA', data['location']) + self.assertEqual('https://twitter.com/system/user/profile_image/6734' + '83/normal/me.jpg', data['profile_image_url']) + self.assertEqual('http://unto.net/', data['url']) + self.assertEqual(4212713, data['status']['id']) + + def testEq(self): + '''Test the twitter.User __eq__ method''' + user = twitter.User() + user.id = 673483 + user.name = 'DeWitt' + user.screen_name = 'dewitt' + user.description = 'Indeterminate things' + user.location = 'San Francisco, CA' + user.profile_image_url = 'https://twitter.com/system/user/profile_image/67' \ + '3483/normal/me.jpg' + user.url = 'http://unto.net/' + user.status = self._GetSampleStatus() + self.assertEqual(user, self._GetSampleUser()) + + def testNewFromJsonDict(self): + '''Test the twitter.User NewFromJsonDict method''' + data = simplejson.loads(UserTest.SAMPLE_JSON) + user = twitter.User.NewFromJsonDict(data) + self.assertEqual(self._GetSampleUser(), user) - SAMPLE_JSON = '''{"description": "Indeterminate things", "id": 673483, "location": "San Francisco, CA", "name": "DeWitt", "profile_image_url": "https://twitter.com/system/user/profile_image/673483/normal/me.jpg", "screen_name": "dewitt", "status": {"created_at": "Fri Jan 26 17:28:19 +0000 2007", "id": 4212713, "text": "\\"Select all\\" and archive your Gmail inbox. The page loads so much faster!"}, "url": "http://unto.net/"}''' - - def _GetSampleStatus(self): - return twitter.Status(created_at='Fri Jan 26 17:28:19 +0000 2007', - id=4212713, - text='"Select all" and archive your Gmail inbox. ' - ' The page loads so much faster!') - - def _GetSampleUser(self): - return twitter.User(id=673483, - name='DeWitt', - screen_name='dewitt', - description=u'Indeterminate things', - location='San Francisco, CA', - url='http://unto.net/', - profile_image_url='https://twitter.com/system/user/prof' - 'ile_image/673483/normal/me.jpg', - status=self._GetSampleStatus()) - - - - def testInit(self): - '''Test the twitter.User constructor''' - user = twitter.User(id=673483, - name='DeWitt', - screen_name='dewitt', - description=u'Indeterminate things', - url='https://twitter.com/dewitt', - profile_image_url='https://twitter.com/system/user/prof' - 'ile_image/673483/normal/me.jpg', - status=self._GetSampleStatus()) - - def testGettersAndSetters(self): - '''Test all of the twitter.User getters and setters''' - user = twitter.User() - user.SetId(673483) - self.assertEqual(673483, user.GetId()) - user.SetName('DeWitt') - self.assertEqual('DeWitt', user.GetName()) - user.SetScreenName('dewitt') - self.assertEqual('dewitt', user.GetScreenName()) - user.SetDescription('Indeterminate things') - self.assertEqual('Indeterminate things', user.GetDescription()) - user.SetLocation('San Francisco, CA') - self.assertEqual('San Francisco, CA', user.GetLocation()) - user.SetProfileImageUrl('https://twitter.com/system/user/profile_im' - 'age/673483/normal/me.jpg') - self.assertEqual('https://twitter.com/system/user/profile_image/673' - '483/normal/me.jpg', user.GetProfileImageUrl()) - user.SetStatus(self._GetSampleStatus()) - self.assertEqual(4212713, user.GetStatus().id) - - def testProperties(self): - '''Test all of the twitter.User properties''' - user = twitter.User() - user.id = 673483 - self.assertEqual(673483, user.id) - user.name = 'DeWitt' - self.assertEqual('DeWitt', user.name) - user.screen_name = 'dewitt' - self.assertEqual('dewitt', user.screen_name) - user.description = 'Indeterminate things' - self.assertEqual('Indeterminate things', user.description) - user.location = 'San Francisco, CA' - self.assertEqual('San Francisco, CA', user.location) - user.profile_image_url = 'https://twitter.com/system/user/profile_i' \ - 'mage/673483/normal/me.jpg' - self.assertEqual('https://twitter.com/system/user/profile_image/6734' - '83/normal/me.jpg', user.profile_image_url) - self.status = self._GetSampleStatus() - self.assertEqual(4212713, self.status.id) - - def testAsJsonString(self): - '''Test the twitter.User AsJsonString method''' - self.assertEqual(UserTest.SAMPLE_JSON, - self._GetSampleUser().AsJsonString()) - - def testAsDict(self): - '''Test the twitter.User AsDict method''' - user = self._GetSampleUser() - data = user.AsDict() - self.assertEqual(673483, data['id']) - self.assertEqual('DeWitt', data['name']) - self.assertEqual('dewitt', data['screen_name']) - self.assertEqual('Indeterminate things', data['description']) - self.assertEqual('San Francisco, CA', data['location']) - self.assertEqual('https://twitter.com/system/user/profile_image/6734' - '83/normal/me.jpg', data['profile_image_url']) - self.assertEqual('http://unto.net/', data['url']) - self.assertEqual(4212713, data['status']['id']) - - def testEq(self): - '''Test the twitter.User __eq__ method''' - user = twitter.User() - user.id = 673483 - user.name = 'DeWitt' - user.screen_name = 'dewitt' - user.description = 'Indeterminate things' - user.location = 'San Francisco, CA' - user.profile_image_url = 'https://twitter.com/system/user/profile_image/67' \ - '3483/normal/me.jpg' - user.url = 'http://unto.net/' - user.status = self._GetSampleStatus() - self.assertEqual(user, self._GetSampleUser()) - - def testNewFromJsonDict(self): - '''Test the twitter.User NewFromJsonDict method''' - data = simplejson.loads(UserTest.SAMPLE_JSON) - user = twitter.User.NewFromJsonDict(data) - self.assertEqual(self._GetSampleUser(), user) class TrendTest(unittest.TestCase): + SAMPLE_JSON = '''{"name": "Kesuke Miyagi", "query": "Kesuke Miyagi"}''' + + def _GetSampleTrend(self): + return twitter.Trend(name='Kesuke Miyagi', + query='Kesuke Miyagi', + timestamp='Fri Jan 26 23:17:14 +0000 2007') + + def testInit(self): + '''Test the twitter.Trend constructor''' + trend = twitter.Trend(name='Kesuke Miyagi', + query='Kesuke Miyagi', + timestamp='Fri Jan 26 23:17:14 +0000 2007') + + def testProperties(self): + '''Test all of the twitter.Trend properties''' + trend = twitter.Trend() + trend.name = 'Kesuke Miyagi' + self.assertEqual('Kesuke Miyagi', trend.name) + trend.query = 'Kesuke Miyagi' + self.assertEqual('Kesuke Miyagi', trend.query) + trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' + self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', trend.timestamp) + + def testNewFromJsonDict(self): + '''Test the twitter.Trend NewFromJsonDict method''' + data = simplejson.loads(TrendTest.SAMPLE_JSON) + trend = twitter.Trend.NewFromJsonDict(data, timestamp='Fri Jan 26 23:17:14 +0000 2007') + self.assertEqual(self._GetSampleTrend(), trend) + + def testEq(self): + '''Test the twitter.Trend __eq__ method''' + trend = twitter.Trend() + trend.name = 'Kesuke Miyagi' + trend.query = 'Kesuke Miyagi' + trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' + self.assertEqual(trend, self._GetSampleTrend()) - SAMPLE_JSON = '''{"name": "Kesuke Miyagi", "query": "Kesuke Miyagi"}''' - - def _GetSampleTrend(self): - return twitter.Trend(name='Kesuke Miyagi', - query='Kesuke Miyagi', - timestamp='Fri Jan 26 23:17:14 +0000 2007') - - def testInit(self): - '''Test the twitter.Trend constructor''' - trend = twitter.Trend(name='Kesuke Miyagi', - query='Kesuke Miyagi', - timestamp='Fri Jan 26 23:17:14 +0000 2007') - - def testProperties(self): - '''Test all of the twitter.Trend properties''' - trend = twitter.Trend() - trend.name = 'Kesuke Miyagi' - self.assertEqual('Kesuke Miyagi', trend.name) - trend.query = 'Kesuke Miyagi' - self.assertEqual('Kesuke Miyagi', trend.query) - trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', trend.timestamp) - - def testNewFromJsonDict(self): - '''Test the twitter.Trend NewFromJsonDict method''' - data = simplejson.loads(TrendTest.SAMPLE_JSON) - trend = twitter.Trend.NewFromJsonDict(data, timestamp='Fri Jan 26 23:17:14 +0000 2007') - self.assertEqual(self._GetSampleTrend(), trend) - - def testEq(self): - '''Test the twitter.Trend __eq__ method''' - trend = twitter.Trend() - trend.name = 'Kesuke Miyagi' - trend.query = 'Kesuke Miyagi' - trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' - self.assertEqual(trend, self._GetSampleTrend()) class FileCacheTest(unittest.TestCase): + def testInit(self): + """Test the twitter._FileCache constructor""" + cache = twitter._FileCache() + self.assert_(cache is not None, 'cache is None') + + def testSet(self): + """Test the twitter._FileCache.Set method""" + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + cache.Remove("foo") + + def testRemove(self): + """Test the twitter._FileCache.Remove method""" + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + cache.Remove("foo") + data = cache.Get("foo") + self.assertEqual(data, None, 'data is not None') + + def testGet(self): + """Test the twitter._FileCache.Get method""" + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + data = cache.Get("foo") + self.assertEqual('Hello World!', data) + cache.Remove("foo") + + def testGetCachedTime(self): + """Test the twitter._FileCache.GetCachedTime method""" + now = time.time() + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + cached_time = cache.GetCachedTime("foo") + delta = cached_time - now + self.assert_(delta <= 1, + 'Cached time differs from clock time by more than 1 second.') + cache.Remove("foo") - def testInit(self): - """Test the twitter._FileCache constructor""" - cache = twitter._FileCache() - self.assert_(cache is not None, 'cache is None') - - def testSet(self): - """Test the twitter._FileCache.Set method""" - cache = twitter._FileCache() - cache.Set("foo",'Hello World!') - cache.Remove("foo") - - def testRemove(self): - """Test the twitter._FileCache.Remove method""" - cache = twitter._FileCache() - cache.Set("foo",'Hello World!') - cache.Remove("foo") - data = cache.Get("foo") - self.assertEqual(data, None, 'data is not None') - - def testGet(self): - """Test the twitter._FileCache.Get method""" - cache = twitter._FileCache() - cache.Set("foo",'Hello World!') - data = cache.Get("foo") - self.assertEqual('Hello World!', data) - cache.Remove("foo") - - def testGetCachedTime(self): - """Test the twitter._FileCache.GetCachedTime method""" - now = time.time() - cache = twitter._FileCache() - cache.Set("foo",'Hello World!') - cached_time = cache.GetCachedTime("foo") - delta = cached_time - now - self.assert_(delta <= 1, - 'Cached time differs from clock time by more than 1 second.') - cache.Remove("foo") class ApiTest(unittest.TestCase): + def setUp(self): + self._urllib = MockUrllib() + time.sleep(15) + api = twitter.Api(consumer_key='yDkaORxEcwX6SheX6pa1fw', + consumer_secret='VYIGd2KITohR4ygmHrcyZgV0B74CXi5wsT1eryVtw', + access_token_key='227846642-8IjK2K32CDFt3682SNOOpnzegAja3TyVpzFOGrQj', + access_token_secret='L6of20EZdBv48EA2GE8Js6roIfZFnCKBpoPwvBDxF8', + cache=None) + api.SetUrllib(self._urllib) + self._api = api + print "Testing the API class. This test is time controlled" + + def testTwitterError(self): + '''Test that twitter responses containing an error message are wrapped.''' + self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', + curry(self._OpenTestData, 'public_timeline_error.json')) + # Manually try/catch so we can check the exception's value + try: + statuses = self._api.GetUserTimeline() + except twitter.TwitterError, error: + # If the error message matches, the test passes + self.assertEqual('test error', error.message) + else: + self.fail('TwitterError expected') + + def testGetUserTimeline(self): + '''Test the twitter.Api GetUserTimeline method''' + time.sleep(8) + print 'Testing GetUserTimeline' + self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json?count=1&screen_name=kesuke', + curry(self._OpenTestData, 'user_timeline-kesuke.json')) + statuses = self._api.GetUserTimeline(screen_name='kesuke', count=1) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(89512102, statuses[0].id) + self.assertEqual(718443, statuses[0].user.id) + + #def testGetFriendsTimeline(self): + # '''Test the twitter.Api GetFriendsTimeline method''' + # self._AddHandler('https://api.twitter.com/1.1/statuses/friends_timeline/kesuke.json', + # curry(self._OpenTestData, 'friends_timeline-kesuke.json')) + # statuses = self._api.GetFriendsTimeline('kesuke') + # # This is rather arbitrary, but spot checking is better than nothing + # self.assertEqual(20, len(statuses)) + # self.assertEqual(718443, statuses[0].user.id) + + def testGetStatus(self): + '''Test the twitter.Api GetStatus method''' + time.sleep(8) + print 'Testing GetStatus' + self._AddHandler('https://api.twitter.com/1.1/statuses/show.json?include_my_retweet=1&id=89512102', + curry(self._OpenTestData, 'show-89512102.json')) + status = self._api.GetStatus(89512102) + self.assertEqual(89512102, status.id) + self.assertEqual(718443, status.user.id) + + def testDestroyStatus(self): + '''Test the twitter.Api DestroyStatus method''' + time.sleep(8) + print 'Testing DestroyStatus' + self._AddHandler('https://api.twitter.com/1.1/statuses/destroy/103208352.json', + curry(self._OpenTestData, 'status-destroy.json')) + status = self._api.DestroyStatus(103208352) + self.assertEqual(103208352, status.id) + + def testPostUpdate(self): + '''Test the twitter.Api PostUpdate method''' + time.sleep(8) + print 'Testing PostUpdate' + self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', + curry(self._OpenTestData, 'update.json')) + status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) + + def testPostRetweet(self): + '''Test the twitter.Api PostRetweet method''' + time.sleep(8) + print 'Testing PostRetweet' + self._AddHandler('https://api.twitter.com/1.1/statuses/retweet/89512102.json', + curry(self._OpenTestData, 'retweet.json')) + status = self._api.PostRetweet(89512102) + self.assertEqual(89512102, status.id) + + def testPostUpdateLatLon(self): + '''Test the twitter.Api PostUpdate method, when used in conjunction with latitude and longitude''' + time.sleep(8) + print 'Testing PostUpdateLatLon' + self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', + curry(self._OpenTestData, 'update_latlong.json')) + #test another update with geo parameters, again test somewhat arbitrary + status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8'), latitude=54.2, + longitude=-2) + self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) + self.assertEqual(u'Point', status.GetGeo()['type']) + self.assertEqual(26.2, status.GetGeo()['coordinates'][0]) + self.assertEqual(127.5, status.GetGeo()['coordinates'][1]) + + def testGetReplies(self): + '''Test the twitter.Api GetReplies method''' + time.sleep(8) + print 'Testing GetReplies' + self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', + curry(self._OpenTestData, 'replies.json')) + statuses = self._api.GetReplies() + self.assertEqual(36657062, statuses[0].id) + + def testGetRetweetsOfMe(self): + '''Test the twitter.API GetRetweetsOfMe method''' + time.sleep(8) + print 'Testing GetRetweetsOfMe' + self._AddHandler('https://api.twitter.com/1.1/statuses/retweets_of_me.json', + curry(self._OpenTestData, 'retweets_of_me.json')) + retweets = self._api.GetRetweetsOfMe() + self.assertEqual(253650670274637824, retweets[0].id) + + def testGetFriends(self): + '''Test the twitter.Api GetFriends method''' + time.sleep(8) + print 'Testing GetFriends' + self._AddHandler('https://api.twitter.com/1.1/friends/list.json?cursor=123', + curry(self._OpenTestData, 'friends.json')) + users = self._api.GetFriends(cursor=123) + buzz = [u.status for u in users if u.screen_name == 'buzz'] + self.assertEqual(89543882, buzz[0].id) + + def testGetFollowers(self): + '''Test the twitter.Api GetFollowers method''' + time.sleep(8) + print 'Testing GetFollowers' + self._AddHandler('https://api.twitter.com/1.1/followers/list.json?cursor=-1', + curry(self._OpenTestData, 'followers.json')) + users = self._api.GetFollowers() + # This is rather arbitrary, but spot checking is better than nothing + alexkingorg = [u.status for u in users if u.screen_name == 'alexkingorg'] + self.assertEqual(89554432, alexkingorg[0].id) + + #def testGetFeatured(self): + # '''Test the twitter.Api GetFeatured method''' + # self._AddHandler('https://api.twitter.com/1.1/statuses/featured.json', + # curry(self._OpenTestData, 'featured.json')) + # users = self._api.GetFeatured() + # # This is rather arbitrary, but spot checking is better than nothing + # stevenwright = [u.status for u in users if u.screen_name == 'stevenwright'] + # self.assertEqual(86991742, stevenwright[0].id) + + def testGetDirectMessages(self): + '''Test the twitter.Api GetDirectMessages method''' + time.sleep(8) + print 'Testing GetDirectMessages' + self._AddHandler('https://api.twitter.com/1.1/direct_messages.json', + curry(self._OpenTestData, 'direct_messages.json')) + statuses = self._api.GetDirectMessages() + self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', statuses[0].text) + + def testPostDirectMessage(self): + '''Test the twitter.Api PostDirectMessage method''' + time.sleep(8) + print 'Testing PostDirectMessage' + self._AddHandler('https://api.twitter.com/1.1/direct_messages/new.json', + curry(self._OpenTestData, 'direct_messages-new.json')) + status = self._api.PostDirectMessage('test', u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) + + def testDestroyDirectMessage(self): + '''Test the twitter.Api DestroyDirectMessage method''' + time.sleep(8) + print 'Testing DestroyDirectMessage' + self._AddHandler('https://api.twitter.com/1.1/direct_messages/destroy.json', + curry(self._OpenTestData, 'direct_message-destroy.json')) + status = self._api.DestroyDirectMessage(3496342) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(673483, status.sender_id) + + def testCreateFriendship(self): + '''Test the twitter.Api CreateFriendship method''' + time.sleep(8) + print 'Testing CreateFriendship' + self._AddHandler('https://api.twitter.com/1.1/friendships/create.json', + curry(self._OpenTestData, 'friendship-create.json')) + user = self._api.CreateFriendship('dewitt') + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(673483, user.id) + + def testDestroyFriendship(self): + '''Test the twitter.Api DestroyFriendship method''' + time.sleep(8) + print 'Testing Destroy Friendship' + self._AddHandler('https://api.twitter.com/1.1/friendships/destroy.json', + curry(self._OpenTestData, 'friendship-destroy.json')) + user = self._api.DestroyFriendship('dewitt') + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(673483, user.id) + + def testGetUser(self): + '''Test the twitter.Api GetUser method''' + time.sleep(8) + print 'Testing GetUser' + self._AddHandler('https://api.twitter.com/1.1/users/show.json?user_id=dewitt', + curry(self._OpenTestData, 'show-dewitt.json')) + user = self._api.GetUser('dewitt') + self.assertEqual('dewitt', user.screen_name) + self.assertEqual(89586072, user.status.id) + + def _AddHandler(self, url, callback): + self._urllib.AddHandler(url, callback) + + def _GetTestDataPath(self, filename): + directory = os.path.dirname(os.path.abspath(__file__)) + test_data_dir = os.path.join(directory, 'testdata') + return os.path.join(test_data_dir, filename) + + def _OpenTestData(self, filename): + f = open(self._GetTestDataPath(filename)) + # make sure that the returned object contains an .info() method: + # headers are set to {} + return urllib.addinfo(f, {}) - def setUp(self): - self._urllib = MockUrllib() - time.sleep(15) - api = twitter.Api(consumer_key='yDkaORxEcwX6SheX6pa1fw', - consumer_secret='VYIGd2KITohR4ygmHrcyZgV0B74CXi5wsT1eryVtw', - access_token_key='227846642-8IjK2K32CDFt3682SNOOpnzegAja3TyVpzFOGrQj', - access_token_secret='L6of20EZdBv48EA2GE8Js6roIfZFnCKBpoPwvBDxF8', - cache=None) - api.SetUrllib(self._urllib) - self._api = api - print "Testing the API class. This test is time controlled" - - def testTwitterError(self): - '''Test that twitter responses containing an error message are wrapped.''' - self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', - curry(self._OpenTestData, 'public_timeline_error.json')) - # Manually try/catch so we can check the exception's value - try: - statuses = self._api.GetUserTimeline() - except twitter.TwitterError, error: - # If the error message matches, the test passes - self.assertEqual('test error', error.message) - else: - self.fail('TwitterError expected') - - def testGetUserTimeline(self): - '''Test the twitter.Api GetUserTimeline method''' - time.sleep(8) - print 'Testing GetUserTimeline' - self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json?count=1&screen_name=kesuke', - curry(self._OpenTestData, 'user_timeline-kesuke.json')) - statuses = self._api.GetUserTimeline(screen_name='kesuke', count=1) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(89512102, statuses[0].id) - self.assertEqual(718443, statuses[0].user.id) - - #def testGetFriendsTimeline(self): - # '''Test the twitter.Api GetFriendsTimeline method''' - # self._AddHandler('https://api.twitter.com/1.1/statuses/friends_timeline/kesuke.json', - # curry(self._OpenTestData, 'friends_timeline-kesuke.json')) - # statuses = self._api.GetFriendsTimeline('kesuke') - # # This is rather arbitrary, but spot checking is better than nothing - # self.assertEqual(20, len(statuses)) - # self.assertEqual(718443, statuses[0].user.id) - - def testGetStatus(self): - '''Test the twitter.Api GetStatus method''' - time.sleep(8) - print 'Testing GetStatus' - self._AddHandler('https://api.twitter.com/1.1/statuses/show.json?include_my_retweet=1&id=89512102', - curry(self._OpenTestData, 'show-89512102.json')) - status = self._api.GetStatus(89512102) - self.assertEqual(89512102, status.id) - self.assertEqual(718443, status.user.id) - - def testDestroyStatus(self): - '''Test the twitter.Api DestroyStatus method''' - time.sleep(8) - print 'Testing DestroyStatus' - self._AddHandler('https://api.twitter.com/1.1/statuses/destroy/103208352.json', - curry(self._OpenTestData, 'status-destroy.json')) - status = self._api.DestroyStatus(103208352) - self.assertEqual(103208352, status.id) - - def testPostUpdate(self): - '''Test the twitter.Api PostUpdate method''' - time.sleep(8) - print 'Testing PostUpdate' - self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', - curry(self._OpenTestData, 'update.json')) - status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) - - def testPostRetweet(self): - '''Test the twitter.Api PostRetweet method''' - time.sleep(8) - print 'Testing PostRetweet' - self._AddHandler('https://api.twitter.com/1.1/statuses/retweet/89512102.json', - curry(self._OpenTestData, 'retweet.json')) - status = self._api.PostRetweet(89512102) - self.assertEqual(89512102, status.id) - - def testPostUpdateLatLon(self): - '''Test the twitter.Api PostUpdate method, when used in conjunction with latitude and longitude''' - time.sleep(8) - print 'Testing PostUpdateLatLon' - self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', - curry(self._OpenTestData, 'update_latlong.json')) - #test another update with geo parameters, again test somewhat arbitrary - status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8'), latitude=54.2, longitude=-2) - self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) - self.assertEqual(u'Point',status.GetGeo()['type']) - self.assertEqual(26.2,status.GetGeo()['coordinates'][0]) - self.assertEqual(127.5,status.GetGeo()['coordinates'][1]) - - def testGetReplies(self): - '''Test the twitter.Api GetReplies method''' - time.sleep(8) - print 'Testing GetReplies' - self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', - curry(self._OpenTestData, 'replies.json')) - statuses = self._api.GetReplies() - self.assertEqual(36657062, statuses[0].id) - - def testGetRetweetsOfMe(self): - '''Test the twitter.API GetRetweetsOfMe method''' - time.sleep(8) - print 'Testing GetRetweetsOfMe' - self._AddHandler('https://api.twitter.com/1.1/statuses/retweets_of_me.json', - curry(self._OpenTestData, 'retweets_of_me.json')) - retweets = self._api.GetRetweetsOfMe() - self.assertEqual(253650670274637824, retweets[0].id) - - def testGetFriends(self): - '''Test the twitter.Api GetFriends method''' - time.sleep(8) - print 'Testing GetFriends' - self._AddHandler('https://api.twitter.com/1.1/friends/list.json?cursor=123', - curry(self._OpenTestData, 'friends.json')) - users = self._api.GetFriends(cursor=123) - buzz = [u.status for u in users if u.screen_name == 'buzz'] - self.assertEqual(89543882, buzz[0].id) - - def testGetFollowers(self): - '''Test the twitter.Api GetFollowers method''' - time.sleep(8) - print 'Testing GetFollowers' - self._AddHandler('https://api.twitter.com/1.1/followers/list.json?cursor=-1', - curry(self._OpenTestData, 'followers.json')) - users = self._api.GetFollowers() - # This is rather arbitrary, but spot checking is better than nothing - alexkingorg = [u.status for u in users if u.screen_name == 'alexkingorg'] - self.assertEqual(89554432, alexkingorg[0].id) - - #def testGetFeatured(self): - # '''Test the twitter.Api GetFeatured method''' - # self._AddHandler('https://api.twitter.com/1.1/statuses/featured.json', - # curry(self._OpenTestData, 'featured.json')) - # users = self._api.GetFeatured() - # # This is rather arbitrary, but spot checking is better than nothing - # stevenwright = [u.status for u in users if u.screen_name == 'stevenwright'] - # self.assertEqual(86991742, stevenwright[0].id) - - def testGetDirectMessages(self): - '''Test the twitter.Api GetDirectMessages method''' - time.sleep(8) - print 'Testing GetDirectMessages' - self._AddHandler('https://api.twitter.com/1.1/direct_messages.json', - curry(self._OpenTestData, 'direct_messages.json')) - statuses = self._api.GetDirectMessages() - self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', statuses[0].text) - - def testPostDirectMessage(self): - '''Test the twitter.Api PostDirectMessage method''' - time.sleep(8) - print 'Testing PostDirectMessage' - self._AddHandler('https://api.twitter.com/1.1/direct_messages/new.json', - curry(self._OpenTestData, 'direct_messages-new.json')) - status = self._api.PostDirectMessage('test', u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) - - def testDestroyDirectMessage(self): - '''Test the twitter.Api DestroyDirectMessage method''' - time.sleep(8) - print 'Testing DestroyDirectMessage' - self._AddHandler('https://api.twitter.com/1.1/direct_messages/destroy.json', - curry(self._OpenTestData, 'direct_message-destroy.json')) - status = self._api.DestroyDirectMessage(3496342) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(673483, status.sender_id) - - def testCreateFriendship(self): - '''Test the twitter.Api CreateFriendship method''' - time.sleep(8) - print 'Testing CreateFriendship' - self._AddHandler('https://api.twitter.com/1.1/friendships/create.json', - curry(self._OpenTestData, 'friendship-create.json')) - user = self._api.CreateFriendship('dewitt') - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(673483, user.id) - - def testDestroyFriendship(self): - '''Test the twitter.Api DestroyFriendship method''' - time.sleep(8) - print 'Testing Destroy Friendship' - self._AddHandler('https://api.twitter.com/1.1/friendships/destroy.json', - curry(self._OpenTestData, 'friendship-destroy.json')) - user = self._api.DestroyFriendship('dewitt') - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(673483, user.id) - - def testGetUser(self): - '''Test the twitter.Api GetUser method''' - time.sleep(8) - print 'Testing GetUser' - self._AddHandler('https://api.twitter.com/1.1/users/show.json?user_id=dewitt', - curry(self._OpenTestData, 'show-dewitt.json')) - user = self._api.GetUser('dewitt') - self.assertEqual('dewitt', user.screen_name) - self.assertEqual(89586072, user.status.id) - - def _AddHandler(self, url, callback): - self._urllib.AddHandler(url, callback) - - def _GetTestDataPath(self, filename): - directory = os.path.dirname(os.path.abspath(__file__)) - test_data_dir = os.path.join(directory, 'testdata') - return os.path.join(test_data_dir, filename) - - def _OpenTestData(self, filename): - f = open(self._GetTestDataPath(filename)) - # make sure that the returned object contains an .info() method: - # headers are set to {} - return urllib.addinfo(f, {}) class MockUrllib(object): - '''A mock replacement for urllib that hardcodes specific responses.''' + '''A mock replacement for urllib that hardcodes specific responses.''' + + def __init__(self): + self._handlers = {} + self.HTTPBasicAuthHandler = MockHTTPBasicAuthHandler - def __init__(self): - self._handlers = {} - self.HTTPBasicAuthHandler = MockHTTPBasicAuthHandler + def AddHandler(self, url, callback): + self._handlers[url] = callback - def AddHandler(self, url, callback): - self._handlers[url] = callback + def build_opener(self, *handlers): + return MockOpener(self._handlers) - def build_opener(self, *handlers): - return MockOpener(self._handlers) + def HTTPHandler(self, *args, **kwargs): + return None - def HTTPHandler(self, *args, **kwargs): - return None + def HTTPSHandler(self, *args, **kwargs): + return None - def HTTPSHandler(self, *args, **kwargs): - return None + def OpenerDirector(self): + return self.build_opener() - def OpenerDirector(self): - return self.build_opener() + def ProxyHandler(self, *args, **kwargs): + return None - def ProxyHandler(self,*args,**kwargs): - return None class MockOpener(object): - '''A mock opener for urllib''' + '''A mock opener for urllib''' - def __init__(self, handlers): - self._handlers = handlers - self._opened = False + def __init__(self, handlers): + self._handlers = handlers + self._opened = False - def open(self, url, data=None): - if self._opened: - raise Exception('MockOpener already opened.') + def open(self, url, data=None): + if self._opened: + raise Exception('MockOpener already opened.') - # Remove parameters from URL - they're only added by oauth and we - # don't want to test oauth - if '?' in url: - # We split using & and filter on the beginning of each key - # This is crude but we have to keep the ordering for now - (url, qs) = url.split('?') + # Remove parameters from URL - they're only added by oauth and we + # don't want to test oauth + if '?' in url: + # We split using & and filter on the beginning of each key + # This is crude but we have to keep the ordering for now + (url, qs) = url.split('?') - tokens = [token for token in qs.split('&') - if not token.startswith('oauth')] + tokens = [token for token in qs.split('&') + if not token.startswith('oauth')] - if len(tokens) > 0: - url = "%s?%s"%(url, '&'.join(tokens)) + if len(tokens) > 0: + url = "%s?%s" % (url, '&'.join(tokens)) - if url in self._handlers: - self._opened = True - return self._handlers[url]() - else: - print url - print self._handlers + if url in self._handlers: + self._opened = True + return self._handlers[url]() + else: + print url + print self._handlers - raise Exception('Unexpected URL %s (Checked: %s)' % (url, self._handlers)) + raise Exception('Unexpected URL %s (Checked: %s)' % (url, self._handlers)) - def add_handler(self, *args, **kwargs): - pass + def add_handler(self, *args, **kwargs): + pass + + def close(self): + if not self._opened: + raise Exception('MockOpener closed before it was opened.') + self._opened = False - def close(self): - if not self._opened: - raise Exception('MockOpener closed before it was opened.') - self._opened = False class ParseTest(unittest.TestCase): - """ Test the ParseTweet class """ - - def testParseTweets(self): - handles4 = u"""Do not use this word! Hurting me! @raja7727: @qadirbasha @manion @Jayks3 உடன்பிறப்பு”"""; - - data = twitter.ParseTweet("@twitter",handles4) - self.assertEqual([data.RT,data.MT,len(data.UserHandles)],[False,False,4]) - - hashtag_n_URL = u"மனதிற்கு மிகவும் நெருக்கமான பாடல்! உயிரையே கொடுக்கலாம் சார்! #KeladiKanmani https://www.youtube.com/watch?v=FHTiG_g2fM4 … #HBdayRajaSir"; - - data = twitter.ParseTweet("@twitter",hashtag_n_URL) - self.assertEqual([len(data.Hashtags),len(data.URLs)],[2,1]) - - url_only = u"""The #Rainbow #Nebula, 544,667 #lightyears away. pic.twitter.com/2A4wSUK25A"""; - data = twitter.ParseTweet("@twitter",url_only) - self.assertEqual([data.MT,len(data.Hashtags),len(data.URLs)],[False,3,1]) - - url_handle = u"""RT ‏@BarackObama POTUS recommends Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; - data = twitter.ParseTweet("@twitter",url_handle) - self.assertEqual([data.RT,len(data.Hashtags),len(data.URLs),len(data.UserHandles)],[True,1,1,1]) - + """ Test the ParseTweet class """ + + def testParseTweets(self): + handles4 = u"""Do not use this word! Hurting me! @raja7727: @qadirbasha @manion @Jayks3 உடன்பிறப்பு”"""; + + data = twitter.ParseTweet("@twitter", handles4) + self.assertEqual([data.RT, data.MT, len(data.UserHandles)], [False, False, 4]) + + hashtag_n_URL = u"மனதிற்கு மிகவும் நெருக்கமான பாடல்! உயிரையே கொடுக்கலாம் சார்! #KeladiKanmani https://www.youtube.com/watch?v=FHTiG_g2fM4 … #HBdayRajaSir"; + + data = twitter.ParseTweet("@twitter", hashtag_n_URL) + self.assertEqual([len(data.Hashtags), len(data.URLs)], [2, 1]) + + url_only = u"""The #Rainbow #Nebula, 544,667 #lightyears away. pic.twitter.com/2A4wSUK25A"""; + data = twitter.ParseTweet("@twitter", url_only) + self.assertEqual([data.MT, len(data.Hashtags), len(data.URLs)], [False, 3, 1]) + + url_handle = u"""RT ‏@BarackObama POTUS recommends Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; + data = twitter.ParseTweet("@twitter", url_handle) + self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) + + class MockHTTPBasicAuthHandler(object): - '''A mock replacement for HTTPBasicAuthHandler''' + '''A mock replacement for HTTPBasicAuthHandler''' + + def add_password(self, realm, uri, user, passwd): + # TODO(dewitt): Add verification that the proper args are passed + pass - def add_password(self, realm, uri, user, passwd): - # TODO(dewitt): Add verification that the proper args are passed - pass class curry: - # http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52549 + # http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52549 - def __init__(self, fun, *args, **kwargs): - self.fun = fun - self.pending = args[:] - self.kwargs = kwargs.copy() + def __init__(self, fun, *args, **kwargs): + self.fun = fun + self.pending = args[:] + self.kwargs = kwargs.copy() - def __call__(self, *args, **kwargs): - if kwargs and self.kwargs: - kw = self.kwargs.copy() - kw.update(kwargs) - else: - kw = kwargs or self.kwargs - return self.fun(*(self.pending + args), **kw) + def __call__(self, *args, **kwargs): + if kwargs and self.kwargs: + kw = self.kwargs.copy() + kw.update(kwargs) + else: + kw = kwargs or self.kwargs + return self.fun(*(self.pending + args), **kw) def suite(): - suite = unittest.TestSuite() - suite.addTests(unittest.makeSuite(FileCacheTest)) - suite.addTests(unittest.makeSuite(StatusTest)) - suite.addTests(unittest.makeSuite(UserTest)) - suite.addTests(unittest.makeSuite(ApiTest)) - suite.addTests(unittest.makeSuite(ParseTest)) - return suite + suite = unittest.TestSuite() + suite.addTests(unittest.makeSuite(FileCacheTest)) + suite.addTests(unittest.makeSuite(StatusTest)) + suite.addTests(unittest.makeSuite(UserTest)) + suite.addTests(unittest.makeSuite(ApiTest)) + suite.addTests(unittest.makeSuite(ParseTest)) + return suite + if __name__ == '__main__': - unittest.main() + unittest.main() From f5d7a5cb667e4d4ea7498bac959304aef4cc56ae Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Mon, 29 Dec 2014 21:04:07 -0500 Subject: [PATCH 009/533] changed json (data) to json_data --- twitter/api.py | 235 +++++++++++++++++++++++++------------------------ 1 file changed, 118 insertions(+), 117 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index a4f2ce8b..27993ff1 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -243,8 +243,8 @@ def SetCredentials(self, def GetHelpConfiguration(self): if self._config is None: url = '%s/help/configuration.json' % self.base_url - json = self._RequestUrl(url, 'GET') - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET') + data = self._ParseAndCheckTwitter(json_data.content) self._config = data return self._config @@ -363,8 +363,8 @@ def GetSearch(self, # Make and send requests url = '%s/search/tweets.json' % self.base_url - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) # Return built list of statuses return [Status.NewFromJsonDict(x) for x in data['statuses']] @@ -414,8 +414,8 @@ def GetUsersSearch(self, # Make and send requests url = '%s/users/search.json' % self.base_url - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [User.NewFromJsonDict(x) for x in data] def GetTrendsCurrent(self, exclude=None): @@ -451,8 +451,8 @@ def GetTrendsWoeid(self, id, exclude=None): if exclude: parameters['exclude'] = exclude - json = self._RequestUrl(url, verb='GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, verb='GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) trends = [] timestamp = data[0]['as_of'] @@ -542,8 +542,8 @@ def GetHomeTimeline(self, parameters['contributor_details'] = 1 if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [Status.NewFromJsonDict(x) for x in data] @@ -627,8 +627,8 @@ def GetUserTimeline(self, if exclude_replies: parameters['exclude_replies'] = 1 - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [Status.NewFromJsonDict(x) for x in data] @@ -680,8 +680,8 @@ def GetStatus(self, if not include_entities: parameters['include_entities'] = 'none' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -767,8 +767,8 @@ def GetStatusOembed(self, raise TwitterError({'message': "'lang' should be string instance"}) parameters['lang'] = lang - json = self._RequestUrl(request_url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(request_url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return data @@ -796,8 +796,8 @@ def DestroyStatus(self, id, trim_user=False): if trim_user: post_data['trim_user'] = 1 - json = self._RequestUrl(url, 'POST', data=post_data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=post_data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -885,8 +885,8 @@ def PostUpdate(self, if trim_user: data['trim_user'] = 'true' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -954,8 +954,8 @@ def PostMedia(self, if display_coordinates: data['display_coordinates'] = 'true' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -1012,8 +1012,8 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, else: data['media'] = media[m].read() - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) media_ids += str(data['media_id_string']) if m is not len(media) - 1: @@ -1023,8 +1023,8 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, url = '%s/statuses/update.json' % self.base_url - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) def PostUpdates(self, @@ -1093,8 +1093,8 @@ def PostRetweet(self, original_id, trim_user=False): data = {'id': original_id} if trim_user: data['trim_user'] = 'true' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -1193,8 +1193,8 @@ def GetRetweets(self, except ValueError: raise TwitterError({'message': "count must be an integer"}) - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [Status.NewFromJsonDict(s) for s in data] @@ -1226,6 +1226,7 @@ def GetRetweeters(self, parameters['stringify_ids'] = 'true' result = [] + total_count = 0 while True: if cursor: try: @@ -1233,8 +1234,8 @@ def GetRetweeters(self, except ValueError: raise TwitterError({'message': "cursor must be an integer"}) break - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1301,8 +1302,8 @@ def GetRetweetsOfMe(self, if not include_user_entities: parameters['include_user_entities'] = include_user_entities - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [Status.NewFromJsonDict(s) for s in data] @@ -1352,8 +1353,8 @@ def GetBlocks(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1391,8 +1392,8 @@ def DestroyBlock(self, id, trim_user=False): if trim_user: post_data['trim_user'] = 1 - json = self._RequestUrl(url, 'POST', data=post_data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=post_data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -1446,8 +1447,8 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1503,8 +1504,8 @@ def GetFriendIDs(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1570,8 +1571,8 @@ def GetFollowerIDs(self, if total_count and total_count < count: parameters['count'] = total_count parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1640,8 +1641,8 @@ def GetFollowersPaged(self, parameters['include_user_entities'] = True parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) if 'next_cursor' in data: next_cursor = data['next_cursor'] @@ -1751,9 +1752,9 @@ def UsersLookup(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) + json_data = self._RequestUrl(url, 'GET', data=parameters) try: - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json_data.content) except TwitterError, e: _, e, _ = sys.exc_info() t = e.args[0] @@ -1800,8 +1801,8 @@ def GetUser(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) @@ -1859,8 +1860,8 @@ def GetDirectMessages(self, if skip_status: parameters['skip_status'] = 1 - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [DirectMessage.NewFromJsonDict(x) for x in data] @@ -1918,8 +1919,8 @@ def GetSentDirectMessages(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [DirectMessage.NewFromJsonDict(x) for x in data] @@ -1954,8 +1955,8 @@ def PostDirectMessage(self, else: raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return DirectMessage.NewFromJsonDict(data) @@ -1977,8 +1978,8 @@ def DestroyDirectMessage(self, id, include_entities=True): if not include_entities: data['include_entities'] = 'false' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return DirectMessage.NewFromJsonDict(data) @@ -2011,8 +2012,8 @@ def CreateFriendship(self, user_id=None, screen_name=None, follow=True): else: data['follow'] = 'false' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) @@ -2039,8 +2040,8 @@ def DestroyFriendship(self, user_id=None, screen_name=None): else: raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) @@ -2069,8 +2070,8 @@ def LookupFriendship(self, user_id=None, screen_name=None): else: raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) - json = self._RequestUrl(url, 'GET', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=data) + data = self._ParseAndCheckTwitter(json_data.content) if len(data) >= 1: return UserStatus.NewFromJsonDict(data[0]) @@ -2109,8 +2110,8 @@ def CreateFavorite(self, if not include_entities: data['include_entities'] = 'false' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -2146,8 +2147,8 @@ def DestroyFavorite(self, if not include_entities: data['include_entities'] = 'false' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return Status.NewFromJsonDict(data) @@ -2213,8 +2214,8 @@ def GetFavorites(self, if include_entities: parameters['include_entities'] = True - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [Status.NewFromJsonDict(x) for x in data] @@ -2282,8 +2283,8 @@ def GetMentions(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [Status.NewFromJsonDict(x) for x in data] @@ -2334,8 +2335,8 @@ def CreateList(self, name, mode=None, description=None): if description is not None: parameters['description'] = description - json = self._RequestUrl(url, 'POST', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return List.NewFromJsonDict(data) @@ -2386,8 +2387,8 @@ def DestroyList(self, else: raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return List.NewFromJsonDict(data) @@ -2438,8 +2439,8 @@ def CreateSubscription(self, else: raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) @@ -2490,8 +2491,8 @@ def DestroySubscription(self, else: raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return List.NewFromJsonDict(data) @@ -2565,12 +2566,12 @@ def ShowSubscription(self, elif screen_name: data['screen_name'] = screen_name if skip_status: - parameters['skip_status'] = True + data['skip_status'] = True if include_entities: - parameters['include_entities'] = True + data['include_entities'] = True - json = self._RequestUrl(url, 'GET', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) @@ -2626,8 +2627,8 @@ def GetSubscriptions(self, else: raise TwitterError({'message': "Specify user_id or screen_name"}) - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [List.NewFromJsonDict(x) for x in data['lists']] @@ -2667,8 +2668,8 @@ def GetListsList(self, if reverse: parameters['reverse'] = 'true' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [List.NewFromJsonDict(x) for x in data] @@ -2760,8 +2761,8 @@ def GetListTimeline(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) return [Status.NewFromJsonDict(x) for x in data] @@ -2836,8 +2837,8 @@ def GetListMembers(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -2925,8 +2926,8 @@ def CreateListsMember(self, else: url = '%s/lists/members/create.json' % self.base_url - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return List.NewFromJsonDict(data) @@ -3004,8 +3005,8 @@ def DestroyListsMember(self, else: url = '%s/lists/members/destroy.json' % (self.base_url) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return List.NewFromJsonDict(data) @@ -3054,8 +3055,8 @@ def GetLists(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) result += [List.NewFromJsonDict(x) for x in data['lists']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -3118,8 +3119,8 @@ def UpdateProfile(self, if skip_status: data['skip_status'] = skip_status - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) @@ -3157,12 +3158,12 @@ def UpdateBanner(self, if skip_status: data['skip_status'] = 1 - json = self._RequestUrl(url, 'POST', data=data) - if json.status_code in [200, 201, 202]: + json_data = self._RequestUrl(url, 'POST', data=data) + if json_data.status_code in [200, 201, 202]: return True - if json.status_code == 400: + if json_data.status_code == 400: raise TwitterError({'message': "Image data could not be processed"}) - if json.status_code == 422: + if json_data.status_code == 422: raise TwitterError({'message': "The image could not be resized or is too large."}) raise TwitterError({'message': "Unkown banner image upload issue"}) @@ -3180,8 +3181,8 @@ def GetStreamSample(self, delimited=None, stall_warnings=None): A Twitter stream """ url = '%s/statuses/sample.json' % self.stream_url - json = self._RequestStream(url, 'GET') - for line in json.iter_lines(): + json_data = self._RequestStream(url, 'GET') + for line in json_data.iter_lines(): if line: data = self._ParseAndCheckTwitter(line) yield data @@ -3225,8 +3226,8 @@ def GetStreamFilter(self, if stall_warnings is not None: data['stall_warnings'] = str(stall_warnings) - json = self._RequestStream(url, 'POST', data=data) - for line in json.iter_lines(): + json_data = self._RequestStream(url, 'POST', data=data) + for line in json_data.iter_lines(): if line: data = self._ParseAndCheckTwitter(line) yield data @@ -3297,8 +3298,8 @@ def VerifyCredentials(self): if not self.__auth: raise TwitterError({'message': "Api instance must first be given user credentials."}) url = '%s/account/verify_credentials.json' % self.base_url - json = self._RequestUrl(url, 'GET') # No_cache - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET') # No_cache + data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) @@ -3394,8 +3395,8 @@ def GetRateLimitStatus(self, resource_families=None): if resource_families is not None: parameters['resources'] = resource_families - json = self._RequestUrl(url, 'GET', data=parameters) # No-Cache - data = self._ParseAndCheckTwitter(json.content) + json_data = self._RequestUrl(url, 'GET', data=parameters) # No-Cache + data = self._ParseAndCheckTwitter(json_data.content) return data @@ -3545,7 +3546,7 @@ def _EncodePostData(self, post_data): else: return urllib.urlencode(dict([(k, self._Encode(v)) for k, v in post_data.items()])) - def _ParseAndCheckTwitter(self, json): + def _ParseAndCheckTwitter(self, json_data): """Try and parse the JSON returned from Twitter and return an empty dictionary if there is any error. @@ -3553,14 +3554,14 @@ def _ParseAndCheckTwitter(self, json): network outages it will return an HTML failwhale page. """ try: - data = simplejson.loads(json) + data = simplejson.loads(json_data) self._CheckForTwitterError(data) except ValueError: - if "Twitter / Over capacity" in json: + if "Twitter / Over capacity" in json_data: raise TwitterError({'message': "Capacity Error"}) - if "Twitter / Error" in json: + if "Twitter / Error" in json_data: raise TwitterError({'message': "Technical Error"}) - if "Exceeded connection limit for user" in json: + if "Exceeded connection limit for user" in json_data: raise TwitterError({'message': "Exceeded connection limit for user"}) raise TwitterError({'message': "json decoding"}) From 1e735245ba13e37c94eabd54ccfa49e507342619 Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Mon, 29 Dec 2014 21:11:43 -0500 Subject: [PATCH 010/533] removing reference to simplejson wip --- doc/_build/html/index.html | 2 -- python-twitter.spec | 2 +- twitter_test.py | 8 ++++---- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/doc/_build/html/index.html b/doc/_build/html/index.html index 83071b5f..5b34927a 100644 --- a/doc/_build/html/index.html +++ b/doc/_build/html/index.html @@ -73,8 +73,6 @@

    Building -
  • SimpleJson -
  • Requests OAuthlib
  • diff --git a/python-twitter.spec b/python-twitter.spec index 176e92e1..989800df 100644 --- a/python-twitter.spec +++ b/python-twitter.spec @@ -12,7 +12,7 @@ Source0: http://python-twitter.googlecode.com/files/%{name}-%{version}.ta BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: python >= 2.5, python-simplejson >= 2.0.7 +Requires: python >= 2.6, BuildRequires: python-setuptools diff --git a/twitter_test.py b/twitter_test.py index 30b67aeb..19268f37 100755 --- a/twitter_test.py +++ b/twitter_test.py @@ -21,7 +21,7 @@ __author__ = 'python-twitter@googlegroups.com' import os -import json as simplejson +import json #as simplejson import time import calendar import unittest @@ -154,7 +154,7 @@ def testEq(self): def testNewFromJsonDict(self): '''Test the twitter.Status NewFromJsonDict method''' - data = simplejson.loads(StatusTest.SAMPLE_JSON) + data = json.loads(StatusTest.SAMPLE_JSON) status = twitter.Status.NewFromJsonDict(data) self.assertEqual(self._GetSampleStatus(), status) @@ -266,7 +266,7 @@ def testEq(self): def testNewFromJsonDict(self): '''Test the twitter.User NewFromJsonDict method''' - data = simplejson.loads(UserTest.SAMPLE_JSON) + data = json.loads(UserTest.SAMPLE_JSON) user = twitter.User.NewFromJsonDict(data) self.assertEqual(self._GetSampleUser(), user) @@ -297,7 +297,7 @@ def testProperties(self): def testNewFromJsonDict(self): '''Test the twitter.Trend NewFromJsonDict method''' - data = simplejson.loads(TrendTest.SAMPLE_JSON) + data = json.loads(TrendTest.SAMPLE_JSON) trend = twitter.Trend.NewFromJsonDict(data, timestamp='Fri Jan 26 23:17:14 +0000 2007') self.assertEqual(self._GetSampleTrend(), trend) From a85c89f3140f74a0b0334ea905f3705b42d8e2db Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Mon, 29 Dec 2014 22:12:54 -0500 Subject: [PATCH 011/533] Remove simplejson reference --- doc/_build/html/_sources/index.txt | 1 - doc/_build/html/searchindex.js | 1 - twitter/__init__.py | 3 ++- twitter/api.py | 4 ++-- twitter/direct_message.py | 4 ++-- twitter/list.py | 4 ++-- 6 files changed, 8 insertions(+), 9 deletions(-) diff --git a/doc/_build/html/_sources/index.txt b/doc/_build/html/_sources/index.txt index db13599a..732dc970 100644 --- a/doc/_build/html/_sources/index.txt +++ b/doc/_build/html/_sources/index.txt @@ -22,7 +22,6 @@ From source: Install the dependencies: -- `SimpleJson `_ - `Requests OAuthlib `_ - `HTTPLib2 `_ diff --git a/doc/_build/html/searchindex.js b/doc/_build/html/searchindex.js index 3b743331..bbeea809 100644 --- a/doc/_build/html/searchindex.js +++ b/doc/_build/html/searchindex.js @@ -49,7 +49,6 @@ Search.setIndex({ sourc: 0, http: 0, around: 0, - simplejson: 0, get: [], googlegroup: 0, clone: 0, diff --git a/twitter/__init__.py b/twitter/__init__.py index edc0d6a8..6bd75a10 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -21,7 +21,8 @@ __author__ = 'python-twitter@googlegroups.com' __version__ = '2.3' -import json as simplejson +#import json as simplejson +import json try: from hashlib import md5 diff --git a/twitter/api.py b/twitter/api.py index 27993ff1..e303949a 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -34,7 +34,7 @@ from requests_oauthlib import OAuth1 import StringIO -from twitter import (__version__, _FileCache, simplejson, DirectMessage, List, +from twitter import (__version__, _FileCache, json, DirectMessage, List, Status, Trend, TwitterError, User, UserStatus) CHARACTER_LIMIT = 140 @@ -3554,7 +3554,7 @@ def _ParseAndCheckTwitter(self, json_data): network outages it will return an HTML failwhale page. """ try: - data = simplejson.loads(json_data) + data = json.loads(json_data) self._CheckForTwitterError(data) except ValueError: if "Twitter / Over capacity" in json_data: diff --git a/twitter/direct_message.py b/twitter/direct_message.py index 9039556d..129a8218 100644 --- a/twitter/direct_message.py +++ b/twitter/direct_message.py @@ -3,7 +3,7 @@ from calendar import timegm import rfc822 -from twitter import simplejson, TwitterError +from twitter import json, TwitterError class DirectMessage(object): @@ -244,7 +244,7 @@ def AsJsonString(self): Returns: A JSON string representation of this twitter.DirectMessage instance """ - return simplejson.dumps(self.AsDict(), sort_keys=True) + return json.dumps(self.AsDict(), sort_keys=True) def AsDict(self): """A dict representation of this twitter.DirectMessage instance. diff --git a/twitter/list.py b/twitter/list.py index f3c32767..b0a0a832 100644 --- a/twitter/list.py +++ b/twitter/list.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from twitter import simplejson, TwitterError, User +from twitter import json, TwitterError, User class List(object): @@ -294,7 +294,7 @@ def AsJsonString(self): Returns: A JSON string representation of this twitter.List instance """ - return simplejson.dumps(self.AsDict(), sort_keys=True) + return json.dumps(self.AsDict(), sort_keys=True) def AsDict(self): """A dict representation of this twitter.List instance. From 0a6b2444f7765f3e1b5a54208dcadc76ec4c306c Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Mon, 29 Dec 2014 22:15:00 -0500 Subject: [PATCH 012/533] Remove simplejson reference --- twitter/status.py | 4 ++-- twitter/user.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/twitter/status.py b/twitter/status.py index ad6b443a..1782f10c 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -4,7 +4,7 @@ import rfc822 import time -from twitter import simplejson, Hashtag, TwitterError, Url +from twitter import json, Hashtag, TwitterError, Url class Status(object): @@ -583,7 +583,7 @@ def AsJsonString(self, allow_non_ascii=False): Returns: A JSON string representation of this twitter.Status instance """ - return simplejson.dumps(self.AsDict(), sort_keys=True, + return json.dumps(self.AsDict(), sort_keys=True, ensure_ascii=not allow_non_ascii) def AsDict(self): diff --git a/twitter/user.py b/twitter/user.py index ac1fe053..09a1e2de 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from twitter import simplejson, TwitterError # TwitterError not used +from twitter import json, TwitterError # TwitterError not used class UserStatus(object): @@ -79,7 +79,7 @@ def AsJsonString(self): Returns: A JSON string representation of this twitter.UserStatus instance """ - return simplejson.dumps(self.AsDict(), sort_keys=True) + return json.dumps(self.AsDict(), sort_keys=True) def AsDict(self): """A dict representation of this twitter.UserStatus instance. @@ -739,7 +739,7 @@ def AsJsonString(self): Returns: A JSON string representation of this twitter.User instance """ - return simplejson.dumps(self.AsDict(), sort_keys=True) + return json.dumps(self.AsDict(), sort_keys=True) def AsDict(self): """A dict representation of this twitter.User instance. From 67ef3d751f519c0a70b5bb4737ad0373dae62c5a Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Mon, 29 Dec 2014 22:15:20 -0500 Subject: [PATCH 013/533] Remove simplejson reference --- twitter/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/twitter/__init__.py b/twitter/__init__.py index 6bd75a10..82a54b12 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -21,7 +21,6 @@ __author__ = 'python-twitter@googlegroups.com' __version__ = '2.3' -#import json as simplejson import json try: From 445e54a2f778ba8de235f69aaef8b92165db58e4 Mon Sep 17 00:00:00 2001 From: Radomir Wojcik Date: Mon, 29 Dec 2014 22:23:40 -0500 Subject: [PATCH 014/533] added changes --- CHANGES | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index 05c17644..cfe3397b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,10 @@ +2014-12-29 + removed reference to simplejson + 2014-12-24 bump version to v2.3 bump version to v2.2 + PEP8 standardization 2014-07-10 bump version to v2.1 From aeb433e2d62a1a2d22aae8937d09ba1df4aaa0aa Mon Sep 17 00:00:00 2001 From: Geek Simon Date: Sat, 10 Jan 2015 03:00:48 +0530 Subject: [PATCH 015/533] update profile image support --- twitter/api.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index e303949a..52f7cd1e 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3124,6 +3124,30 @@ def UpdateProfile(self, return User.NewFromJsonDict(data) + def UpdateImage(self, + image, + include_entities=False, + skip_status=False): + + url = '%s/account/update_profile_image.json' % (self.base_url) + with open(image, 'rb') as image_file: + encoded_image = base64.b64encode(image_file.read()) + data = { + 'image':encoded_image + } + if include_entities: + data['include_entities'] = 1 + if skip_status: + data['skip_status'] = 1 + + json = self._RequestUrl(url, 'POST', data=data) + if json.status_code in [200, 201, 202]: + return True + if json.status_code == 400: + raise TwitterError({'message': "Image data could not be processed"}) + if json.status_code == 422: + raise TwitterError({'message': "The image could not be resized or is too large."}) + def UpdateBanner(self, image, include_entities=False, From bda3e1535ff60793d76cab73a942356e6553aa6d Mon Sep 17 00:00:00 2001 From: Alexander Fenster Date: Sun, 1 Feb 2015 01:06:51 +0300 Subject: [PATCH 016/533] Introduce GetFollowerIDsPaged which is similar to GetFollowersPaged. Make GetFollowerIDs use it. --- twitter/api.py | 97 ++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 71 insertions(+), 26 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 52f7cd1e..a415eba8 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1519,6 +1519,64 @@ def GetFriendIDs(self, return result + def GetFollowerIDsPaged(self, + user_id=None, + screen_name=None, + cursor=-1, + stringify_ids=False, + count=5000): + """Make a cursor driven call to return the list of all followers + + The caller is responsible for handling the cursor value and looping + to gather all of the data + + Args: + user_id: + The twitter id of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of user id's to retrieve per API request. Please be aware that + this might get you rate-limited if set to a small number. + By default Twitter will retrieve 5000 UIDs per call. [Optional] + + Returns: + next_cursor, previous_cursor, data sequence of twitter.User instances, one for each follower + """ + url = '%s/followers/ids.json' % self.base_url + if not self.__auth: + raise TwitterError({'message': "twitter.Api instance must be authenticated"}) + parameters = {} + if user_id is not None: + parameters['user_id'] = user_id + if screen_name is not None: + parameters['screen_name'] = screen_name + if stringify_ids: + parameters['stringify_ids'] = True + if count is not None: + parameters['count'] = count + result = [] + + parameters['cursor'] = cursor + + json = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json.content) + + if 'next_cursor' in data: + next_cursor = data['next_cursor'] + else: + next_cursor = 0 + if 'previous_cursor' in data: + previous_cursor = data['previous_cursor'] + else: + previous_cursor = 0 + + return next_cursor, previous_cursor, data def GetFollowerIDs(self, user_id=None, @@ -1556,38 +1614,25 @@ def GetFollowerIDs(self, url = '%s/followers/ids.json' % self.base_url if not self.__auth: raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - parameters = {} - if user_id is not None: - parameters['user_id'] = user_id - if screen_name is not None: - parameters['screen_name'] = screen_name - if stringify_ids: - parameters['stringify_ids'] = True - if count is not None: - parameters['count'] = count + result = [] - + if total_count and total_count < count: + count = total_count + while True: - if total_count and total_count < count: - parameters['count'] = total_count - parameters['cursor'] = cursor - json_data = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json_data.content) + next_cursor, previous_cursor, data = self.GetFollowerIDsPaged(user_id, screen_name, cursor, stringify_ids, count) result += [x for x in data['ids']] - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - if total_count is not None: - total_count -= len(data['ids']) - if total_count < 1: - break - else: + if next_cursor == 0 or next_cursor == previous_cursor: break + else: + cursor = next_cursor + if total_count is not None: + total_count -= len(data['ids']) + if total_count < 1: + break sec = self.GetSleepTime('/followers/ids') time.sleep(sec) - + return result def GetFollowersPaged(self, From 58e0d05c71a7716475bcd18a4a082ad434fc8989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Z=C3=BClke?= Date: Mon, 16 Feb 2015 16:27:19 +0100 Subject: [PATCH 017/533] Fix race condition in _InitializeRootDirectory When running e.g. gunicorn, sometimes the worker processes concurrently check for the tmp dir and then both attempt to create it: ``` [2015-02-16 15:01:46 +0000] [14] [ERROR] Exception in worker process: Traceback (most recent call last): File "/app/.heroku/python/lib/python2.7/site-packages/gunicorn/arbiter.py", line 503, in spawn_worker worker.init_process() File "/app/.heroku/python/lib/python2.7/site-packages/gunicorn/workers/base.py", line 116, in init_process self.wsgi = self.app.wsgi() File "/app/.heroku/python/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/app/.heroku/python/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/app/.heroku/python/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/app/.heroku/python/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/app/app.py", line 1, in from tweety import app File "/app/tweety/__init__.py", line 7, in from tweety import routes File "/app/tweety/routes/__init__.py", line 8, in api=twitter.Api(consumer_key=configuration['consumer_key'], consumer_secret=configuration['consumer_secret'], access_token_key=configuration['access_token_key'], access_token_secret=configuration['access_token_secret']) File "/app/.heroku/python/lib/python2.7/site-packages/twitter/api.py", line 160, in __init__ self.SetCache(cache) File "/app/.heroku/python/lib/python2.7/site-packages/twitter/api.py", line 3286, in SetCache self._cache = _FileCache() File "/app/.heroku/python/lib/python2.7/site-packages/twitter/_file_cache.py", line 15, in __init__ self._InitializeRootDirectory(root_directory) File "/app/.heroku/python/lib/python2.7/site-packages/twitter/_file_cache.py", line 78, in _InitializeRootDirectory os.mkdir(root_directory) OSError: [Errno 17] File exists: '/tmp/python.cache_nobody' ``` This change prevents exceptions on existing dirs, but lets all other error cases bubble up. --- twitter/_file_cache.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index b0ee787a..691c74ee 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -75,11 +75,15 @@ def _InitializeRootDirectory(self, root_directory): if not root_directory: root_directory = self._GetTmpCachePath() root_directory = os.path.abspath(root_directory) - if not os.path.exists(root_directory): + try: os.mkdir(root_directory) - if not os.path.isdir(root_directory): - raise _FileCacheError('%s exists but is not a directory' % - root_directory) + except OSError, e: + if e.errno == errno.EEXIST and os.path.isdir(root_directory): + # directory already exists + pass + else: + # exists but is a file, or no permissions, or... + raise self._root_directory = root_directory def _GetPath(self, key): From b1cbacb884f63abaefb8480226bd3fca6e246d1f Mon Sep 17 00:00:00 2001 From: Will Harris Date: Thu, 26 Feb 2015 14:46:44 +0100 Subject: [PATCH 018/533] Fix missing "errno" import introduced in pull request #214. --- twitter/_file_cache.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index 691c74ee..960de6e4 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -1,9 +1,11 @@ #!/usr/bin/env python -from hashlib import md5 +import errno import os import re import tempfile +from hashlib import md5 + class _FileCacheError(Exception): """Base exception class for FileCache related errors""" From 8279bade1f42da60c492751fd6dcbeaaf71bc212 Mon Sep 17 00:00:00 2001 From: Muthiah Annamalai Date: Sat, 7 Mar 2015 19:20:20 -0500 Subject: [PATCH 019/533] 1) Add Emoticons parsing to the Tweet API. 2) Add tests for emoticons in parse_tweet feed 3) Update Authors to reflect this contribution and original parse_tweet API --- AUTHORS.rst | 3 ++- twitter/parse_tweet.py | 42 ++++++++++++++++++++++++++++++++++++++++-- twitter_test.py | 14 ++++++++++++++ 3 files changed, 56 insertions(+), 3 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 112d6fe7..1a059240 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -25,6 +25,7 @@ Now it's a full-on open source project with many contributors over time: * Lars Weiler, * Sebastian Wiesinger, * Jake Robinson, +* Muthu Annamalai, * abloch, * cahlan, * dpslwk, @@ -33,4 +34,4 @@ Now it's a full-on open source project with many contributors over time: * git-matrix, * sbywater, * thefinn93, -* themylogin, \ No newline at end of file +* themylogin, diff --git a/twitter/parse_tweet.py b/twitter/parse_tweet.py index 119f1f00..daf3ddea 100644 --- a/twitter/parse_tweet.py +++ b/twitter/parse_tweet.py @@ -4,11 +4,36 @@ from twitter import TwitterError # import not used? +class Emoticons: + POSITIVE = ["*O","*-*","*O*","*o*","* *", + ":P",":D",":d",":p", + ";P",";D",";d",";p", + ":-)",";-)",":=)",";=)", + ":<)",":>)",";>)",";=)", + "=}",":)","(:;)", + "(;",":}","{:",";}", + "{;:]", + "[;",":')",";')",":-3", + "{;",":]", + ";-3",":-x",";-x",":-X", + ";-X",":-}",";-=}",":-]", + ";-]",":-.)", + "^_^","^-^"] + + NEGATIVE = [":(",";(",":'(", + "=(","={","):",");", + ")':",")';",")=","}=", + ";-{{",";-{",":-{{",":-{", + ":-(",";-(", + ":,)",":'{", + "[:",";]" + ] class ParseTweet: # compile once on import regexp = {"RT": "^RT", "MT": r"^MT", "ALNUM": r"(@[a-zA-Z0-9_]+)", - "HASHTAG": r"(#[\w\d]+)", "URL": r"([http://]?[a-zA-Z\d\/]+[\.]+[a-zA-Z\d\/\.]+)"} + "HASHTAG": r"(#[\w\d]+)", "URL": r"([https://|http://]?[a-zA-Z\d\/]+[\.]+[a-zA-Z\d\/\.]+)", + "SPACES":r"\s+"} regexp = dict((key, re.compile(value)) for key, value in regexp.items()) def __init__(self, timeline_owner, tweet): @@ -25,7 +50,8 @@ def __init__(self, timeline_owner, tweet): self.URLs = ParseTweet.getURLs(tweet) self.RT = ParseTweet.getAttributeRT(tweet) self.MT = ParseTweet.getAttributeMT(tweet) - + self.Emoticon = ParseTweet.getAttributeEmoticon(tweet) + # additional intelligence if ( self.RT and len(self.UserHandles) > 0 ): # change the owner of tweet? self.Owner = self.UserHandles[0] @@ -36,6 +62,18 @@ def __str__(self): return "owner %s, urls: %d, hashtags %d, user_handles %d, len_tweet %d, RT = %s, MT = %s" % ( self.Owner, len(self.URLs), len(self.Hashtags), len(self.UserHandles), len(self.tweet), self.RT, self.MT) + @staticmethod + def getAttributeEmoticon(tweet): + """ see if tweet is contains any emoticons, +ve, -ve or neutral """ + emoji = list() + for tok in re.split(ParseTweet.regexp["SPACES"],tweet.strip()): + if tok in Emoticons.POSITIVE: + emoji.append( tok ) + continue + if tok in Emoticons.NEGATIVE: + emoji.append( tok ) + return emoji + @staticmethod def getAttributeRT(tweet): """ see if tweet is a RT """ diff --git a/twitter_test.py b/twitter_test.py index 19268f37..741d47e7 100755 --- a/twitter_test.py +++ b/twitter_test.py @@ -651,15 +651,29 @@ def testParseTweets(self): data = twitter.ParseTweet("@twitter", hashtag_n_URL) self.assertEqual([len(data.Hashtags), len(data.URLs)], [2, 1]) + self.assertEqual(len(data.Emoticon),0) url_only = u"""The #Rainbow #Nebula, 544,667 #lightyears away. pic.twitter.com/2A4wSUK25A"""; data = twitter.ParseTweet("@twitter", url_only) self.assertEqual([data.MT, len(data.Hashtags), len(data.URLs)], [False, 3, 1]) + self.assertEqual(len(data.Emoticon),0) url_handle = u"""RT ‏@BarackObama POTUS recommends Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; data = twitter.ParseTweet("@twitter", url_handle) self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) + self.assertEqual(len(data.Emoticon),0) + def testEmoticon(self): + url_handle = u"""RT ‏@BarackObama POTUS recommends :-) Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; + data = twitter.ParseTweet("@twitter", url_handle) + self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) + self.assertEqual(len(data.Emoticon),1) + + url_handle = u"""RT @cats ^-^ cute! But kitty litter :-( #unrelated picture"""; + data = twitter.ParseTweet("@cats", url_handle) + self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 0, 1]) + self.assertEqual(len(data.Emoticon),2) + self.assertEqual(data.Emoticon,['^-^',':-(']) class MockHTTPBasicAuthHandler(object): '''A mock replacement for HTTPBasicAuthHandler''' From 955f771429c8806fb800256d19a9574b18eaab14 Mon Sep 17 00:00:00 2001 From: James Salter Date: Mon, 16 Mar 2015 19:29:20 +0100 Subject: [PATCH 020/533] fix tests that weren't already broken on py3 --- twitter/_file_cache.py | 5 ++-- twitter/api.py | 9 ++++++- twitter/direct_message.py | 11 +++++--- twitter/status.py | 9 +++++-- twitter_test.py | 54 +++++++++++++++++++++------------------ 5 files changed, 55 insertions(+), 33 deletions(-) diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index b20215ee..cd06bd89 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -19,7 +19,8 @@ def __init__(self, root_directory=None): def Get(self, key): path = self._GetPath(key) if os.path.exists(path): - return open(path).read() + with open(path) as f: + return f.read() else: return None @@ -85,7 +86,7 @@ def _InitializeRootDirectory(self, root_directory): def _GetPath(self, key): try: - hashed_key = md5(key).hexdigest() + hashed_key = md5(key.encode('utf-8')).hexdigest() except TypeError: hashed_key = md5.new(key).hexdigest() diff --git a/twitter/api.py b/twitter/api.py index 1963028e..2bfd3a22 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -46,6 +46,13 @@ from twitter import (__version__, _FileCache, simplejson, DirectMessage, List, Status, Trend, TwitterError, User, UserStatus) +try: + # python 3 + urllib_version = urllib.request.__version__ +except AttributeError: + # python 2 + urllib_version = urllib.__version__ + CHARACTER_LIMIT = 140 # A singleton representing a lazily instantiated FileCache. @@ -3468,7 +3475,7 @@ def _InitializeRequestHeaders(self, request_headers): def _InitializeUserAgent(self): user_agent = 'Python-urllib/%s (python-twitter/%s)' % \ - (urllib.__version__, __version__) + (urllib_version, __version__) self.SetUserAgent(user_agent) def _InitializeDefaultParameters(self): diff --git a/twitter/direct_message.py b/twitter/direct_message.py index 08f2781d..de8dd27f 100644 --- a/twitter/direct_message.py +++ b/twitter/direct_message.py @@ -1,8 +1,13 @@ -from builtins import object #!/usr/bin/env python +from builtins import object + from calendar import timegm -import rfc822 + +try: + from rfc822 import parsedate +except ImportError: + from email.utils import parsedate from twitter import simplejson, TwitterError @@ -107,7 +112,7 @@ def GetCreatedAtInSeconds(self): Returns: The time this direct message was posted, in seconds since the epoch. """ - return timegm(rfc822.parsedate(self.created_at)) + return timegm(parsedate(self.created_at)) created_at_in_seconds = property(GetCreatedAtInSeconds, doc="The time this direct message was " diff --git a/twitter/status.py b/twitter/status.py index 9b6dfd4b..e2326dac 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -4,7 +4,12 @@ from builtins import object from past.utils import old_div from calendar import timegm -import rfc822 + +try: + from rfc822 import parsedate +except ImportError: + from email.utils import parsedate + import time from twitter import simplejson, Hashtag, TwitterError, Url @@ -152,7 +157,7 @@ def GetCreatedAtInSeconds(self): Returns: The time this status message was posted, in seconds since the epoch. """ - return timegm(rfc822.parsedate(self.created_at)) + return timegm(parsedate(self.created_at)) created_at_in_seconds = property(GetCreatedAtInSeconds, doc="The time this status message was " diff --git a/twitter_test.py b/twitter_test.py index 54664bf0..ec46324e 100755 --- a/twitter_test.py +++ b/twitter_test.py @@ -20,18 +20,22 @@ __author__ = 'python-twitter@googlegroups.com' +from future import standard_library +standard_library.install_aliases() + import os import json as simplejson import time import calendar import unittest -import urllib +import urllib.request, urllib.parse, urllib.error import twitter class StatusTest(unittest.TestCase): - SAMPLE_JSON = '''{"created_at": "Fri Jan 26 23:17:14 +0000 2007", "id": 4391023, "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", "user": {"description": "Canvas. JC Penny. Three ninety-eight.", "id": 718443, "location": "Okinawa, Japan", "name": "Kesuke Miyagi", "profile_image_url": "https://twitter.com/system/user/profile_image/718443/normal/kesuke.png", "screen_name": "kesuke", "url": "https://twitter.com/kesuke"}}''' + # this is aiming to test escaped text passes through okay - the python interpreter will ignore the \u because this is a raw literal + SAMPLE_JSON = r'''{"created_at": "Fri Jan 26 23:17:14 +0000 2007", "id": 4391023, "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", "user": {"description": "Canvas. JC Penny. Three ninety-eight.", "id": 718443, "location": "Okinawa, Japan", "name": "Kesuke Miyagi", "profile_image_url": "https://twitter.com/system/user/profile_image/718443/normal/kesuke.png", "screen_name": "kesuke", "url": "https://twitter.com/kesuke"}}''' def _GetSampleUser(self): return twitter.User(id=718443, @@ -315,7 +319,7 @@ class FileCacheTest(unittest.TestCase): def testInit(self): """Test the twitter._FileCache constructor""" cache = twitter._FileCache() - self.assert_(cache is not None, 'cache is None') + self.assertTrue(cache is not None, 'cache is None') def testSet(self): """Test the twitter._FileCache.Set method""" @@ -346,7 +350,7 @@ def testGetCachedTime(self): cache.Set("foo",'Hello World!') cached_time = cache.GetCachedTime("foo") delta = cached_time - now - self.assert_(delta <= 1, + self.assertTrue(delta <= 1, 'Cached time differs from clock time by more than 1 second.') cache.Remove("foo") @@ -362,7 +366,7 @@ def setUp(self): cache=None) api.SetUrllib(self._urllib) self._api = api - print "Testing the API class. This test is time controlled" + print("Testing the API class. This test is time controlled") def testTwitterError(self): '''Test that twitter responses containing an error message are wrapped.''' @@ -371,7 +375,7 @@ def testTwitterError(self): # Manually try/catch so we can check the exception's value try: statuses = self._api.GetUserTimeline() - except twitter.TwitterError, error: + except twitter.TwitterError as error: # If the error message matches, the test passes self.assertEqual('test error', error.message) else: @@ -380,7 +384,7 @@ def testTwitterError(self): def testGetUserTimeline(self): '''Test the twitter.Api GetUserTimeline method''' time.sleep(8) - print 'Testing GetUserTimeline' + print('Testing GetUserTimeline') self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json?count=1&screen_name=kesuke', curry(self._OpenTestData, 'user_timeline-kesuke.json')) statuses = self._api.GetUserTimeline(screen_name='kesuke', count=1) @@ -400,7 +404,7 @@ def testGetUserTimeline(self): def testGetStatus(self): '''Test the twitter.Api GetStatus method''' time.sleep(8) - print 'Testing GetStatus' + print('Testing GetStatus') self._AddHandler('https://api.twitter.com/1.1/statuses/show.json?include_my_retweet=1&id=89512102', curry(self._OpenTestData, 'show-89512102.json')) status = self._api.GetStatus(89512102) @@ -410,7 +414,7 @@ def testGetStatus(self): def testDestroyStatus(self): '''Test the twitter.Api DestroyStatus method''' time.sleep(8) - print 'Testing DestroyStatus' + print('Testing DestroyStatus') self._AddHandler('https://api.twitter.com/1.1/statuses/destroy/103208352.json', curry(self._OpenTestData, 'status-destroy.json')) status = self._api.DestroyStatus(103208352) @@ -419,7 +423,7 @@ def testDestroyStatus(self): def testPostUpdate(self): '''Test the twitter.Api PostUpdate method''' time.sleep(8) - print 'Testing PostUpdate' + print('Testing PostUpdate') self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', curry(self._OpenTestData, 'update.json')) status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) @@ -429,7 +433,7 @@ def testPostUpdate(self): def testPostRetweet(self): '''Test the twitter.Api PostRetweet method''' time.sleep(8) - print 'Testing PostRetweet' + print('Testing PostRetweet') self._AddHandler('https://api.twitter.com/1.1/statuses/retweet/89512102.json', curry(self._OpenTestData, 'retweet.json')) status = self._api.PostRetweet(89512102) @@ -438,20 +442,20 @@ def testPostRetweet(self): def testPostUpdateLatLon(self): '''Test the twitter.Api PostUpdate method, when used in conjunction with latitude and longitude''' time.sleep(8) - print 'Testing PostUpdateLatLon' + print('Testing PostUpdateLatLon') self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', curry(self._OpenTestData, 'update_latlong.json')) #test another update with geo parameters, again test somewhat arbitrary status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8'), latitude=54.2, longitude=-2) self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) - self.assertEqual(u'Point',status.GetGeo()['type']) + self.assertEqual('Point',status.GetGeo()['type']) self.assertEqual(26.2,status.GetGeo()['coordinates'][0]) self.assertEqual(127.5,status.GetGeo()['coordinates'][1]) def testGetReplies(self): '''Test the twitter.Api GetReplies method''' time.sleep(8) - print 'Testing GetReplies' + print('Testing GetReplies') self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', curry(self._OpenTestData, 'replies.json')) statuses = self._api.GetReplies() @@ -460,7 +464,7 @@ def testGetReplies(self): def testGetRetweetsOfMe(self): '''Test the twitter.API GetRetweetsOfMe method''' time.sleep(8) - print 'Testing GetRetweetsOfMe' + print('Testing GetRetweetsOfMe') self._AddHandler('https://api.twitter.com/1.1/statuses/retweets_of_me.json', curry(self._OpenTestData, 'retweets_of_me.json')) retweets = self._api.GetRetweetsOfMe() @@ -469,7 +473,7 @@ def testGetRetweetsOfMe(self): def testGetFriends(self): '''Test the twitter.Api GetFriends method''' time.sleep(8) - print 'Testing GetFriends' + print('Testing GetFriends') self._AddHandler('https://api.twitter.com/1.1/friends/list.json?cursor=123', curry(self._OpenTestData, 'friends.json')) users = self._api.GetFriends(cursor=123) @@ -479,7 +483,7 @@ def testGetFriends(self): def testGetFollowers(self): '''Test the twitter.Api GetFollowers method''' time.sleep(8) - print 'Testing GetFollowers' + print('Testing GetFollowers') self._AddHandler('https://api.twitter.com/1.1/followers/list.json?cursor=-1', curry(self._OpenTestData, 'followers.json')) users = self._api.GetFollowers() @@ -499,7 +503,7 @@ def testGetFollowers(self): def testGetDirectMessages(self): '''Test the twitter.Api GetDirectMessages method''' time.sleep(8) - print 'Testing GetDirectMessages' + print('Testing GetDirectMessages') self._AddHandler('https://api.twitter.com/1.1/direct_messages.json', curry(self._OpenTestData, 'direct_messages.json')) statuses = self._api.GetDirectMessages() @@ -508,7 +512,7 @@ def testGetDirectMessages(self): def testPostDirectMessage(self): '''Test the twitter.Api PostDirectMessage method''' time.sleep(8) - print 'Testing PostDirectMessage' + print('Testing PostDirectMessage') self._AddHandler('https://api.twitter.com/1.1/direct_messages/new.json', curry(self._OpenTestData, 'direct_messages-new.json')) status = self._api.PostDirectMessage('test', u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) @@ -518,7 +522,7 @@ def testPostDirectMessage(self): def testDestroyDirectMessage(self): '''Test the twitter.Api DestroyDirectMessage method''' time.sleep(8) - print 'Testing DestroyDirectMessage' + print('Testing DestroyDirectMessage') self._AddHandler('https://api.twitter.com/1.1/direct_messages/destroy.json', curry(self._OpenTestData, 'direct_message-destroy.json')) status = self._api.DestroyDirectMessage(3496342) @@ -528,7 +532,7 @@ def testDestroyDirectMessage(self): def testCreateFriendship(self): '''Test the twitter.Api CreateFriendship method''' time.sleep(8) - print 'Testing CreateFriendship' + print('Testing CreateFriendship') self._AddHandler('https://api.twitter.com/1.1/friendships/create.json', curry(self._OpenTestData, 'friendship-create.json')) user = self._api.CreateFriendship('dewitt') @@ -538,7 +542,7 @@ def testCreateFriendship(self): def testDestroyFriendship(self): '''Test the twitter.Api DestroyFriendship method''' time.sleep(8) - print 'Testing Destroy Friendship' + print('Testing Destroy Friendship') self._AddHandler('https://api.twitter.com/1.1/friendships/destroy.json', curry(self._OpenTestData, 'friendship-destroy.json')) user = self._api.DestroyFriendship('dewitt') @@ -548,7 +552,7 @@ def testDestroyFriendship(self): def testGetUser(self): '''Test the twitter.Api GetUser method''' time.sleep(8) - print 'Testing GetUser' + print('Testing GetUser') self._AddHandler('https://api.twitter.com/1.1/users/show.json?user_id=dewitt', curry(self._OpenTestData, 'show-dewitt.json')) user = self._api.GetUser('dewitt') @@ -622,8 +626,8 @@ def open(self, url, data=None): self._opened = True return self._handlers[url]() else: - print url - print self._handlers + print(url) + print(self._handlers) raise Exception('Unexpected URL %s (Checked: %s)' % (url, self._handlers)) From 1fbf101c98b25a36d76c43b5040794f5f5a79d4d Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Mon, 13 Apr 2015 23:44:06 +0100 Subject: [PATCH 021/533] Adding since to getSearch The twitter api has support for since, so I'm adding that as well. --- twitter/api.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index a415eba8..de3564f5 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -270,6 +270,7 @@ def GetSearch(self, since_id=None, max_id=None, until=None, + since=None, count=15, lang=None, locale=None, @@ -292,6 +293,9 @@ def GetSearch(self, until: Returns tweets generated before the given date. Date should be formatted as YYYY-MM-DD. [Optional] + since: + Returns tweets generated since the given date. Date should be + formatted as YYYY-MM-DD. [Optional] geocode: Geolocation information in the form (latitude, longitude, radius) [Optional] @@ -334,6 +338,9 @@ def GetSearch(self, if until: parameters['until'] = until + + if since: + parameters['since'] = since if lang: parameters['lang'] = lang From 42d71a04b5a59d27029ab5ec3367f6a169f01008 Mon Sep 17 00:00:00 2001 From: Dominik Krejcik Date: Tue, 14 Apr 2015 12:59:29 +0100 Subject: [PATCH 022/533] Set default page size for GetFriendIDs to 5000 --- twitter/api.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index de3564f5..beaa1620 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1474,7 +1474,7 @@ def GetFriendIDs(self, screen_name=None, cursor=-1, stringify_ids=False, - count=None): + count=5000): """Returns a list of twitter user id's for every person the specified user is following. @@ -1490,8 +1490,10 @@ def GetFriendIDs(self, if True then twitter will return the ids as strings instead of integers. [Optional] count: - The number of status messages to retrieve. [Optional] - + The number of user id's to retrieve per API request. Please be aware that + this might get you rate-limited if set to a small number. + By default Twitter will retrieve 5000 UIDs per call. [Optional] + Returns: A list of integers, one for each user id. """ From 423bcd70cbf300048f841146740d60e24370d96b Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Mon, 20 Apr 2015 11:42:02 +0100 Subject: [PATCH 023/533] Adding to docs --- twitter/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index a415eba8..8d91d7f4 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -296,7 +296,8 @@ def GetSearch(self, Geolocation information in the form (latitude, longitude, radius) [Optional] count: - Number of results to return. Default is 15 [Optional] + Number of results to return. Default is 15 and maxmimum that twitter + returns is 100 irrespective of what you type in. [Optional] lang: Language for results as ISO 639-1 code. Default is None (all languages) [Optional] From 6659a46d3eb072080075c67d0ff24dbc0c4e0014 Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Mon, 20 Apr 2015 22:08:24 +0100 Subject: [PATCH 024/533] Changing to property layout for user --- twitter/user.py | 456 +++++++++++++++++------------------------------- 1 file changed, 162 insertions(+), 294 deletions(-) diff --git a/twitter/user.py b/twitter/user.py index 09a1e2de..8f1c81f0 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -5,9 +5,9 @@ class UserStatus(object): """A class representing the UserStatus structure used by the twitter API. - + The UserStatus structure exposes the following properties: - + userstatus.name userstatus.id_str userstatus.id @@ -18,10 +18,10 @@ class UserStatus(object): def __init__(self, **kwargs): """An object to hold a Twitter user status message. - + This class is normally instantiated by the twitter.Api class and returned in a sequence. - + Args: id: The unique id of this status message. [Optional] @@ -39,13 +39,16 @@ def __init__(self, **kwargs): for (param, default) in param_defaults.iteritems(): setattr(self, param, kwargs.get(param, default)) - def GetFollowedBy(self): + @property + def FollowedBy(self): return self.followed_by or False - def GetFollowing(self): + @property + def Following(self): return self.following or False - def GetScreenName(self): + @property + def ScreenName(self): return self.screen_name def __ne__(self, other): @@ -65,9 +68,9 @@ def __eq__(self, other): def __str__(self): """A string representation of this twitter.UserStatus instance. - + The return value is the same as the JSON string representation. - + Returns: A string representation of this twitter.UserStatus instance. """ @@ -75,7 +78,7 @@ def __str__(self): def AsJsonString(self): """A JSON string representation of this twitter.UserStatus instance. - + Returns: A JSON string representation of this twitter.UserStatus instance """ @@ -83,9 +86,9 @@ def AsJsonString(self): def AsDict(self): """A dict representation of this twitter.UserStatus instance. - + The return value uses the same key names as the JSON representation. - + Return: A dict representing this twitter.UserStatus instance """ @@ -107,7 +110,7 @@ def AsDict(self): @staticmethod def NewFromJsonDict(data): """Create a new instance based on a JSON dict. - + Args: data: A JSON dict, as converted from the JSON in the twitter API Returns: @@ -131,9 +134,9 @@ def NewFromJsonDict(data): class User(object): """A class representing the User structure used by the twitter API. - + The User structure exposes the following properties: - + user.id user.name user.screen_name @@ -204,484 +207,349 @@ def __init__(self, **kwargs): for (param, default) in param_defaults.iteritems(): setattr(self, param, kwargs.get(param, default)) - - def GetId(self): + @property + def Id(self): """Get the unique id of this user. - + Returns: The unique id of this user """ return self._id - def SetId(self, id): - """Set the unique id of this user. - - Args: - id: The unique id of this user. - """ + @property.setter + def Id(self, id): self._id = id - id = property(GetId, SetId, - doc='The unique id of this user.') - - def GetName(self): + @property + def Name(self): """Get the real name of this user. - + Returns: The real name of this user """ return self._name - def SetName(self, name): - """Set the real name of this user. - - Args: - name: The real name of this user - """ + @property.setter + def Name(self, name): self._name = name - name = property(GetName, SetName, - doc='The real name of this user.') - def GetScreenName(self): + @property + def ScreenName(self): """Get the short twitter name of this user. - + Returns: The short twitter name of this user """ return self._screen_name - def SetScreenName(self, screen_name): - """Set the short twitter name of this user. - - Args: - screen_name: the short twitter name of this user - """ + @property.setter + def ScreenName(self, screen_name): self._screen_name = screen_name - screen_name = property(GetScreenName, SetScreenName, - doc='The short twitter name of this user.') - - def GetLocation(self): + @property + def Location(self): """Get the geographic location of this user. - + Returns: The geographic location of this user """ return self._location - def SetLocation(self, location): - """Set the geographic location of this user. - - Args: - location: The geographic location of this user - """ + @property.setter + def Location(self, location): self._location = location - location = property(GetLocation, SetLocation, - doc='The geographic location of this user.') - - def GetDescription(self): + @property + def Description(self): """Get the short text description of this user. - + Returns: The short text description of this user """ return self._description - def SetDescription(self, description): + @property.setter + def Description(self, description): """Set the short text description of this user. - + Args: description: The short text description of this user """ self._description = description - description = property(GetDescription, SetDescription, - doc='The short text description of this user.') - - def GetUrl(self): + @property + def Url(self): """Get the homepage url of this user. - + Returns: The homepage url of this user """ return self._url - def SetUrl(self, url): - """Set the homepage url of this user. - - Args: - url: The homepage url of this user - """ + @property.setter + def Url(self, url): self._url = url - url = property(GetUrl, SetUrl, - doc='The homepage url of this user.') - - def GetProfileImageUrl(self): + @property + def ProfileImageUrl(self): """Get the url of the thumbnail of this user. - + Returns: The url of the thumbnail of this user """ return self._profile_image_url - def SetProfileImageUrl(self, profile_image_url): - """Set the url of the thumbnail of this user. - - Args: - profile_image_url: The url of the thumbnail of this user - """ + @property.setter + def ProfileImageUrl(self, profile_image_url): self._profile_image_url = profile_image_url - profile_image_url = property(GetProfileImageUrl, SetProfileImageUrl, - doc='The url of the thumbnail of this user.') - - def GetProfileBackgroundTile(self): + @property + def ProfileBackgroundTile(self): """Boolean for whether to tile the profile background image. - + Returns: True if the background is to be tiled, False if not, None if unset. """ return self._profile_background_tile - def SetProfileBackgroundTile(self, profile_background_tile): - """Set the boolean flag for whether to tile the profile background image. - - Args: - profile_background_tile: Boolean flag for whether to tile or not. - """ + @property.setter + def ProfileBackgroundTile(self, profile_background_tile): self._profile_background_tile = profile_background_tile - profile_background_tile = property(GetProfileBackgroundTile, SetProfileBackgroundTile, - doc='Boolean for whether to tile the background image.') - - def GetProfileBackgroundImageUrl(self): + @property + def ProfileBackgroundImageUrl(self): return self._profile_background_image_url - def SetProfileBackgroundImageUrl(self, profile_background_image_url): + @property.setter + def ProfileBackgroundImageUrl(self, profile_background_image_url): self._profile_background_image_url = profile_background_image_url - profile_background_image_url = property(GetProfileBackgroundImageUrl, SetProfileBackgroundImageUrl, - doc='The url of the profile background of this user.') - - def GetProfileBannerUrl(self): + @property + def ProfileBannerUrl(self): return self._profile_banner_url - def SetProfileBannerUrl(self, profile_banner_url): + @property.setter + def ProfileBannerUrl(self, profile_banner_url): self._profile_banner_url = profile_banner_url - profile_banner_url = property(GetProfileBannerUrl, SetProfileBannerUrl, - doc='The url of the profile banner of this user.') - - def GetProfileSidebarFillColor(self): + @property + def ProfileSidebarFillColor(self): return self._profile_sidebar_fill_color - def SetProfileSidebarFillColor(self, profile_sidebar_fill_color): + @property.setter + def ProfileSidebarFillColor(self, profile_sidebar_fill_color): self._profile_sidebar_fill_color = profile_sidebar_fill_color - profile_sidebar_fill_color = property(GetProfileSidebarFillColor, SetProfileSidebarFillColor) - + @property def GetProfileBackgroundColor(self): return self._profile_background_color - def SetProfileBackgroundColor(self, profile_background_color): + @property.setter + def ProfileBackgroundColor(self, profile_background_color): self._profile_background_color = profile_background_color - profile_background_color = property(GetProfileBackgroundColor, SetProfileBackgroundColor) - - def GetProfileLinkColor(self): + @property + def ProfileLinkColor(self): return self._profile_link_color - def SetProfileLinkColor(self, profile_link_color): + @property.setter + def ProfileLinkColor(self, profile_link_color): self._profile_link_color = profile_link_color - profile_link_color = property(GetProfileLinkColor, SetProfileLinkColor) - - def GetProfileTextColor(self): + @property + def ProfileTextColor(self): return self._profile_text_color - def SetProfileTextColor(self, profile_text_color): + @property.setter + def ProfileTextColor(self, profile_text_color): self._profile_text_color = profile_text_color - profile_text_color = property(GetProfileTextColor, SetProfileTextColor) - - def GetProtected(self): + @property + def Protected(self): return self._protected - def SetProtected(self, protected): + @property.setter + def Protected(self, protected): self._protected = protected - protected = property(GetProtected, SetProtected) - - def GetUtcOffset(self): + @property + def UtcOffset(self): return self._utc_offset - def SetUtcOffset(self, utc_offset): + @property.setter + def UtcOffset(self, utc_offset): self._utc_offset = utc_offset - utc_offset = property(GetUtcOffset, SetUtcOffset) - - def GetTimeZone(self): + @property + def TimeZone(self): """Returns the current time zone string for the user. - + Returns: The descriptive time zone string for the user. """ return self._time_zone - def SetTimeZone(self, time_zone): - """Sets the user's time zone string. - - Args: - time_zone: - The descriptive time zone to assign for the user. - """ + @property.setter + def TimeZone(self, time_zone): self._time_zone = time_zone - time_zone = property(GetTimeZone, SetTimeZone) - - def GetStatus(self): + @property + def Status(self): """Get the latest twitter.Status of this user. - + Returns: The latest twitter.Status of this user """ return self._status - def SetStatus(self, status): - """Set the latest twitter.Status of this user. - - Args: - status: - The latest twitter.Status of this user - """ + @property.setter + def Status(self, status): self._status = status - status = property(GetStatus, SetStatus, - doc='The latest twitter.Status of this user.') - - def GetFriendsCount(self): + @property + def FriendsCount(self): """Get the friend count for this user. - + Returns: The number of users this user has befriended. """ return self._friends_count - def SetFriendsCount(self, count): - """Set the friend count for this user. - - Args: - count: - The number of users this user has befriended. - """ + @property.setter + def FriendsCount(self, count): self._friends_count = count - friends_count = property(GetFriendsCount, SetFriendsCount, - doc='The number of friends for this user.') - - def GetListedCount(self): + @property + def ListedCount(self): """Get the listed count for this user. - + Returns: The number of lists this user belongs to. """ return self._listed_count - def SetListedCount(self, count): - """Set the listed count for this user. - - Args: - count: - The number of lists this user belongs to. - """ + @property.setter + def ListedCount(self, count): self._listed_count = count - listed_count = property(GetListedCount, SetListedCount, - doc='The number of lists this user belongs to.') - - def GetFollowersCount(self): + @property + def FollowersCount(self): """Get the follower count for this user. - + Returns: The number of users following this user. """ return self._followers_count - def SetFollowersCount(self, count): - """Set the follower count for this user. - - Args: - count: - The number of users following this user. - """ + @property.setter + def FollowersCount(self, count): self._followers_count = count - followers_count = property(GetFollowersCount, SetFollowersCount, - doc='The number of users following this user.') - - def GetStatusesCount(self): + @property + def StatusesCount(self): """Get the number of status updates for this user. - + Returns: The number of status updates for this user. """ return self._statuses_count + @property.setter def SetStatusesCount(self, count): - """Set the status update count for this user. - - Args: - count: - The number of updates for this user. - """ self._statuses_count = count - statuses_count = property(GetStatusesCount, SetStatusesCount, - doc='The number of updates for this user.') - - def GetFavouritesCount(self): + @property + def FavouritesCount(self): """Get the number of favourites for this user. - + Returns: The number of favourites for this user. """ return self._favourites_count - def SetFavouritesCount(self, count): - """Set the favourite count for this user. - - Args: - count: - The number of favourites for this user. - """ + @property.setter + def FavouritesCount(self, count): self._favourites_count = count - favourites_count = property(GetFavouritesCount, SetFavouritesCount, - doc='The number of favourites for this user.') - - def GetGeoEnabled(self): + @property + def GeoEnabled(self): """Get the setting of geo_enabled for this user. - + Returns: True/False if Geo tagging is enabled """ return self._geo_enabled + @property.setter def SetGeoEnabled(self, geo_enabled): - """Set the latest twitter.geo_enabled of this user. - - Args: - geo_enabled: - True/False if Geo tagging is to be enabled - """ self._geo_enabled = geo_enabled - geo_enabled = property(GetGeoEnabled, SetGeoEnabled, - doc='The value of twitter.geo_enabled for this user.') - - def GetVerified(self): + @property + def Verified(self): """Get the setting of verified for this user. - + Returns: True/False if user is a verified account """ return self._verified - def SetVerified(self, verified): - """Set twitter.verified for this user. - - Args: - verified: - True/False if user is a verified account - """ + @property.setter + def Verified(self, verified): self._verified = verified - verified = property(GetVerified, SetVerified, - doc='The value of twitter.verified for this user.') - - def GetLang(self): + @property + def Lang(self): """Get the setting of lang for this user. - + Returns: language code of the user """ return self._lang - def SetLang(self, lang): - """Set twitter.lang for this user. - - Args: - lang: - language code for the user - """ + @property.setter + def Lang(self, lang): self._lang = lang - lang = property(GetLang, SetLang, - doc='The value of twitter.lang for this user.') - - def GetNotifications(self): + @property + def Notifications(self): """Get the setting of notifications for this user. - + Returns: True/False for the notifications setting of the user """ return self._notifications - def SetNotifications(self, notifications): - """Set twitter.notifications for this user. - - Args: - notifications: - True/False notifications setting for the user - """ + @property.setter + def Notifications(self, notifications): self._notifications = notifications - notifications = property(GetNotifications, SetNotifications, - doc='The value of twitter.notifications for this user.') - - def GetContributorsEnabled(self): + @property + def ContributorsEnabled(self): """Get the setting of contributors_enabled for this user. - + Returns: True/False contributors_enabled of the user """ return self._contributors_enabled - def SetContributorsEnabled(self, contributors_enabled): - """Set twitter.contributors_enabled for this user. - - Args: - contributors_enabled: - True/False contributors_enabled setting for the user - """ + @property.setter + def ContributorsEnabled(self, contributors_enabled): self._contributors_enabled = contributors_enabled - contributors_enabled = property(GetContributorsEnabled, SetContributorsEnabled, - doc='The value of twitter.contributors_enabled for this user.') - - def GetCreatedAt(self): + @property + def CreatedAt(self): """Get the setting of created_at for this user. - + Returns: created_at value of the user """ return self._created_at - def SetCreatedAt(self, created_at): - """Set twitter.created_at for this user. - - Args: - created_at: - created_at value for the user - """ + @property.setter + def CreatedAt(self, created_at): self._created_at = created_at - created_at = property(GetCreatedAt, SetCreatedAt, - doc='The value of twitter.created_at for this user.') - def __ne__(self, other): return not self.__eq__(other) @@ -725,9 +593,9 @@ def __eq__(self, other): def __str__(self): """A string representation of this twitter.User instance. - + The return value is the same as the JSON string representation. - + Returns: A string representation of this twitter.User instance. """ @@ -735,7 +603,7 @@ def __str__(self): def AsJsonString(self): """A JSON string representation of this twitter.User instance. - + Returns: A JSON string representation of this twitter.User instance """ @@ -743,9 +611,9 @@ def AsJsonString(self): def AsDict(self): """A dict representation of this twitter.User instance. - + The return value uses the same key names as the JSON representation. - + Return: A dict representing this twitter.User instance """ @@ -818,18 +686,18 @@ def AsDict(self): @staticmethod def NewFromJsonDict(data): """Create a new instance based on a JSON dict. - + Args: data: A JSON dict, as converted from the JSON in the twitter API - + Returns: A twitter.User instance """ if 'status' in data: from twitter import Status - # Have to do the import here to prevent cyclic imports in the __init__.py - # file + # Have to do the import here to prevent cyclic imports + # in the __init__.py file status = Status.NewFromJsonDict(data['status']) else: status = None From 90fd079d9dec7173735b7ac1ca37013b6f352402 Mon Sep 17 00:00:00 2001 From: "kldykstra@gmail.com" Date: Sat, 25 Apr 2015 16:26:41 +0300 Subject: [PATCH 025/533] added GetMemberships method --- twitter/api.py | 70 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 69 insertions(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index f9e106e0..3630143c 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2634,7 +2634,8 @@ def GetSubscriptions(self, user_id=None, screen_name=None, count=20, - cursor=-1): + cursor=-1, + filter_to_owned_lists=False): """Obtain a collection of the lists the specified user is subscribed to. The list will contain a maximum of 20 lists per page by default. @@ -2687,6 +2688,73 @@ def GetSubscriptions(self, return [List.NewFromJsonDict(x) for x in data['lists']] + def GetMemberships(self, + user_id=None, + screen_name=None, + count=20, + cursor=-1, + filter_to_owned_lists=False): + """Obtain the lists the specified user is a member of. + + Returns a maximum of 20 lists per page by default. + + The twitter.Api instance must be authenticated. + + Twitter endpoint: /lists/memberships + + Args: + user_id: + The ID of the user for whom to return results for. [Optional] + screen_name: + The screen name of the user for whom to return results for. [Optional] + count: + The amount of results to return per page. + No more than 1000 results will ever be returned in a single page. + Defaults to 20. [Optional] + cursor: + The "page" value that Twitter will use to start building the list sequence from. + Use the value of -1 to start at the beginning. + Twitter will return in the result the values for next_cursor and previous_cursor. [Optional] + filter_to_owned_lists: + Set to True to return only the lists the authenticating user + owns, and the user specified by user_id or screen_name is a + member of. + Default value is False. [Optional] + + Returns: + A sequence of twitter.List instances, one for each list in which + the user specified by user_id or screen_name is a member + """ + url = '%s/lists/memberships.json' % (self.base_url) + parameters = {} + try: + parameters['cursor'] = int(cursor) + except ValueError: + raise TwitterError({'message': "cursor must be an integer"}) + try: + parameters['count'] = int(count) + except ValueError: + raise TwitterError({'message': "count must be an integer"}) + try: + parameters['filter_to_owned_lists'] = bool(filter_to_owned_lists) + except ValueError: + raise TwitterError({'message': "filter_to_owned_lists \ + must be a boolean value"}) + if user_id is not None: + try: + parameters['user_id'] = long(user_id) + except ValueError: + raise TwitterError({'message': "user_id must be an integer"}) + elif screen_name is not None: + parameters['screen_name'] = screen_name + else: + raise TwitterError({'message': "Specify user_id or screen_name"}) + + json_data = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json_data.content) + + return [List.NewFromJsonDict(x) for x in data['lists']] + def GetListsList(self, screen_name, user_id=None, From 64d129acb622d780d3afb888ded7ed51f255bf43 Mon Sep 17 00:00:00 2001 From: "kldykstra@gmail.com" Date: Sat, 25 Apr 2015 16:30:10 +0300 Subject: [PATCH 026/533] fixed method to-do list --- twitter/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index 3630143c..22ff44e0 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2360,7 +2360,7 @@ def GetMentions(self, # POST lists/update # GET lists/show # done GET lists/subscriptions - # GET lists/memberships + # done GET lists/memberships # GET lists/subscribers # done GET lists/ownerships From 1cfc5af0d4ca79660a639e178de6b6aef68b8acd Mon Sep 17 00:00:00 2001 From: "kldykstra@gmail.com" Date: Sat, 25 Apr 2015 16:34:02 +0300 Subject: [PATCH 027/533] fixed small mistake --- twitter/api.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 22ff44e0..f5cffb0c 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2634,8 +2634,7 @@ def GetSubscriptions(self, user_id=None, screen_name=None, count=20, - cursor=-1, - filter_to_owned_lists=False): + cursor=-1): """Obtain a collection of the lists the specified user is subscribed to. The list will contain a maximum of 20 lists per page by default. From 95a6bc339ea3349b5507b000eb2a9cd2fb659628 Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 11:27:09 +0100 Subject: [PATCH 028/533] Update properties for status --- twitter/status.py | 432 ++++++++++++++-------------------------------- 1 file changed, 127 insertions(+), 305 deletions(-) diff --git a/twitter/status.py b/twitter/status.py index 1782f10c..c5624138 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -123,27 +123,67 @@ def __init__(self, **kwargs): for (param, default) in param_defaults.iteritems(): setattr(self, param, kwargs.get(param, default)) - def GetCreatedAt(self): - """Get the time this status message was posted. + # Properties that you should be able to set yourself. + + @property + def Text(self): + """Get the text of this status message. Returns: - The time this status message was posted + The text of this status message. """ - return self._created_at + return self._text - def SetCreatedAt(self, created_at): - """Set the time this status message was posted. + @property.setter + def Text(self, text): + self._text = text - Args: - created_at: - The time this status message was created - """ - self._created_at = created_at + @property + def InReplyToStatusId(self): + return self._in_reply_to_status_id - created_at = property(GetCreatedAt, SetCreatedAt, - doc='The time this status message was posted.') + @property.setter + def InReplyToStatusId(self, in_reply_to_status_id): + self._in_reply_to_status_id = in_reply_to_status_id + + @property + def Possibly_sensitive(self): + return self._possibly_sensitive + + @property.setter + def Possibly_sensitive(self, possibly_sensitive): + self._possibly_sensitive = possibly_sensitive + + @property + def Place(self): + return self._place + + @property.setter + def Place(self, place): + self._place = place + + @property + def Coordinates(self): + return self._coordinates + + @property.setter + def Coordinates(self, coordinates): + self._coordinates = coordinates - def GetCreatedAtInSeconds(self): + # Missing the following, media_ids, trim_user, display_coordinates, + # lat and long + + @property + def CreatedAt(self): + """Get the time this status message was posted. + + Returns: + The time this status message was posted + """ + return self._created_at + + @property + def CreatedAtInSeconds(self): """Get the time this status message was posted, in seconds since the epoch. Returns: @@ -151,11 +191,35 @@ def GetCreatedAtInSeconds(self): """ return timegm(rfc822.parsedate(self.created_at)) - created_at_in_seconds = property(GetCreatedAtInSeconds, - doc="The time this status message was " - "posted, in seconds since the epoch") + @property + def RelativeCreatedAt(self): + """Get a human readable string representing the posting time + + Returns: + A human readable string representing the posting time + """ + fudge = 1.25 + delta = long(self.now) - long(self.created_at_in_seconds) + + if delta < (1 * fudge): + return 'about a second ago' + elif delta < (60 * (1 / fudge)): + return 'about %d seconds ago' % (delta) + elif delta < (60 * fudge): + return 'about a minute ago' + elif delta < (60 * 60 * (1 / fudge)): + return 'about %d minutes ago' % (delta / 60) + elif delta < (60 * 60 * fudge) or delta / (60 * 60) == 1: + return 'about an hour ago' + elif delta < (60 * 60 * 24 * (1 / fudge)): + return 'about %d hours ago' % (delta / (60 * 60)) + elif delta < (60 * 60 * 24 * fudge) or delta / (60 * 60 * 24) == 1: + return 'about a day ago' + else: + return 'about %d days ago' % (delta / (60 * 60 * 24)) - def GetFavorited(self): + @property + def Favorited(self): """Get the favorited setting of this status message. Returns: @@ -163,19 +227,8 @@ def GetFavorited(self): """ return self._favorited - def SetFavorited(self, favorited): - """Set the favorited state of this status message. - - Args: - favorited: - boolean True/False favorited state of this status message - """ - self._favorited = favorited - - favorited = property(GetFavorited, SetFavorited, - doc='The favorited state of this status message.') - - def GetFavoriteCount(self): + @property + def FavoriteCount(self): """Get the favorite count of this status message. Returns: @@ -183,19 +236,8 @@ def GetFavoriteCount(self): """ return self._favorite_count - def SetFavoriteCount(self, favorite_count): - """Set the favorited state of this status message. - - Args: - favorite_count: - int number of favorites for this status message - """ - self._favorite_count = favorite_count - - favorite_count = property(GetFavoriteCount, SetFavoriteCount, - doc='The number of favorites for this status message.') - - def GetId(self): + @property + def Id(self): """Get the unique id of this status message. Returns: @@ -203,19 +245,8 @@ def GetId(self): """ return self._id - def SetId(self, id): - """Set the unique id of this status message. - - Args: - id: - The unique id of this status message - """ - self._id = id - - id = property(GetId, SetId, - doc='The unique id of this status message.') - - def GetIdStr(self): + @property + def IdStr(self): """Get the unique id_str of this status message. Returns: @@ -223,93 +254,28 @@ def GetIdStr(self): """ return self._id_str - def SetIdStr(self, id_str): - """Set the unique id_str of this status message. - - Args: - id: - The unique id_str of this status message - """ - self._id_str = id_str - - id_str = property(GetIdStr, SetIdStr, - doc='The unique id_str of this status message.') - - def GetInReplyToScreenName(self): + @property + def InReplyToScreenName(self): return self._in_reply_to_screen_name - def SetInReplyToScreenName(self, in_reply_to_screen_name): - self._in_reply_to_screen_name = in_reply_to_screen_name - - in_reply_to_screen_name = property(GetInReplyToScreenName, SetInReplyToScreenName, - doc='') - - def GetInReplyToUserId(self): + @property + def InReplyToUserId(self): return self._in_reply_to_user_id - def SetInReplyToUserId(self, in_reply_to_user_id): - self._in_reply_to_user_id = in_reply_to_user_id - - in_reply_to_user_id = property(GetInReplyToUserId, SetInReplyToUserId, - doc='') - - def GetInReplyToStatusId(self): - return self._in_reply_to_status_id - - def SetInReplyToStatusId(self, in_reply_to_status_id): - self._in_reply_to_status_id = in_reply_to_status_id - - in_reply_to_status_id = property(GetInReplyToStatusId, SetInReplyToStatusId, - doc='') - - def GetTruncated(self): + @property + def Truncated(self): return self._truncated - def SetTruncated(self, truncated): - self._truncated = truncated - - truncated = property(GetTruncated, SetTruncated, - doc='') - - def GetRetweeted(self): + @property + def Retweeted(self): return self._retweeted - def SetRetweeted(self, retweeted): - self._retweeted = retweeted - - retweeted = property(GetRetweeted, SetRetweeted, - doc='') - - def GetSource(self): + @property + def Source(self): return self._source - def SetSource(self, source): - self._source = source - - source = property(GetSource, SetSource, - doc='') - - def GetText(self): - """Get the text of this status message. - - Returns: - The text of this status message. - """ - return self._text - - def SetText(self, text): - """Set the text of this status message. - - Args: - text: - The text of this status message - """ - self._text = text - - text = property(GetText, SetText, - doc='The text of this status message') - - def GetLang(self): + @property + def Lang(self): """Get the machine-detected language of this status message Returns: @@ -317,14 +283,8 @@ def GetLang(self): """ return self._lang - """ - don't think that there will be a Setter.... - def SetLang(selfm lang): - self._lang = lang - - """ - - def GetLocation(self): + @property + def Location(self): """Get the geolocation associated with this status message Returns: @@ -332,49 +292,8 @@ def GetLocation(self): """ return self._location - def SetLocation(self, location): - """Set the geolocation associated with this status message - - Args: - location: - The geolocation string of this status message - """ - self._location = location - - location = property(GetLocation, SetLocation, - doc='The geolocation string of this status message') - - def GetRelativeCreatedAt(self): - """Get a human readable string representing the posting time - - Returns: - A human readable string representing the posting time - """ - fudge = 1.25 - delta = long(self.now) - long(self.created_at_in_seconds) - - if delta < (1 * fudge): - return 'about a second ago' - elif delta < (60 * (1 / fudge)): - return 'about %d seconds ago' % (delta) - elif delta < (60 * fudge): - return 'about a minute ago' - elif delta < (60 * 60 * (1 / fudge)): - return 'about %d minutes ago' % (delta / 60) - elif delta < (60 * 60 * fudge) or delta / (60 * 60) == 1: - return 'about an hour ago' - elif delta < (60 * 60 * 24 * (1 / fudge)): - return 'about %d hours ago' % (delta / (60 * 60)) - elif delta < (60 * 60 * 24 * fudge) or delta / (60 * 60 * 24) == 1: - return 'about a day ago' - else: - return 'about %d days ago' % (delta / (60 * 60 * 24)) - - relative_created_at = property(GetRelativeCreatedAt, - doc='Get a human readable string representing ' - 'the posting time') - - def GetUser(self): + @property + def User(self): """Get a twitter.User representing the entity posting this status message. Returns: @@ -382,20 +301,8 @@ def GetUser(self): """ return self._user - def SetUser(self, user): - """Set a twitter.User representing the entity posting this status message. - - Args: - user: - A twitter.User representing the entity posting this status message - """ - self._user = user - - user = property(GetUser, SetUser, - doc='A twitter.User representing the entity posting this ' - 'status message') - - def GetNow(self): + @property + def Now(self): """Get the wallclock time for this status message. Used to calculate relative_created_at. Defaults to the time @@ -409,128 +316,46 @@ def GetNow(self): self._now = time.time() return self._now - def SetNow(self, now): - """Set the wallclock time for this status message. - - Used to calculate relative_created_at. Defaults to the time - the object was instantiated. - - Args: - now: - The wallclock time for this instance. - """ + @property.setter + def Now(self, now): self._now = now - now = property(GetNow, SetNow, - doc='The wallclock time for this status instance.') - - def GetGeo(self): + @property + def Geo(self): return self._geo - def SetGeo(self, geo): - self._geo = geo - - geo = property(GetGeo, SetGeo, - doc='') - - def GetPlace(self): - return self._place - - def SetPlace(self, place): - self._place = place - - place = property(GetPlace, SetPlace, - doc='') - - def GetCoordinates(self): - return self._coordinates - - def SetCoordinates(self, coordinates): - self._coordinates = coordinates - - coordinates = property(GetCoordinates, SetCoordinates, - doc='') - - def GetContributors(self): + @property + def Contributors(self): return self._contributors - def SetContributors(self, contributors): - self._contributors = contributors - - contributors = property(GetContributors, SetContributors, - doc='') - - def GetRetweeted_status(self): + @property + def Retweeted_status(self): return self._retweeted_status - def SetRetweeted_status(self, retweeted_status): - self._retweeted_status = retweeted_status - - retweeted_status = property(GetRetweeted_status, SetRetweeted_status, - doc='') - - def GetRetweetCount(self): + @property + def RetweetCount(self): return self._retweet_count - def SetRetweetCount(self, retweet_count): - self._retweet_count = retweet_count - - retweet_count = property(GetRetweetCount, SetRetweetCount, - doc='') - - def GetCurrent_user_retweet(self): + @property + def Current_user_retweet(self): return self._current_user_retweet - def SetCurrent_user_retweet(self, current_user_retweet): - self._current_user_retweet = current_user_retweet - - current_user_retweet = property(GetCurrent_user_retweet, SetCurrent_user_retweet, - doc='') - - def GetPossibly_sensitive(self): - return self._possibly_sensitive - - def SetPossibly_sensitive(self, possibly_sensitive): - self._possibly_sensitive = possibly_sensitive - - possibly_sensitive = property(GetPossibly_sensitive, SetPossibly_sensitive, - doc='') - - def GetScopes(self): + @property + def Scopes(self): return self._scopes - def SetScopes(self, scopes): - self._scopes = scopes - - scopes = property(GetScopes, SetScopes, doc='') - - def GetWithheld_copyright(self): + @property + def Withheld_copyright(self): return self._withheld_copyright - def SetWithheld_copyright(self, withheld_copyright): - self._withheld_copyright = withheld_copyright - - withheld_copyright = property(GetWithheld_copyright, SetWithheld_copyright, - doc='') - - def GetWithheld_in_countries(self): + @property + def Withheld_in_countries(self): return self._withheld_in_countries - def SetWithheld_in_countries(self, withheld_in_countries): - self._withheld_in_countries = withheld_in_countries - - withheld_in_countries = property(GetWithheld_in_countries, SetWithheld_in_countries, - doc='') - - def GetWithheld_scope(self): + @property + def Withheld_scope(self): return self._withheld_scope - def SetWithheld_scope(self, withheld_scope): - self._withheld_scope = withheld_scope - - withheld_scope = property(GetWithheld_scope, SetWithheld_scope, - doc='') - def __ne__(self, other): return not self.__eq__(other) @@ -567,7 +392,6 @@ def __eq__(self, other): def __str__(self): """A string representation of this twitter.Status instance. - The return value is the same as the JSON string representation. Returns: @@ -577,18 +401,16 @@ def __str__(self): def AsJsonString(self, allow_non_ascii=False): """A JSON string representation of this twitter.Status instance. - To output non-ascii, set keyword allow_non_ascii=True. Returns: A JSON string representation of this twitter.Status instance """ return json.dumps(self.AsDict(), sort_keys=True, - ensure_ascii=not allow_non_ascii) + ensure_ascii=not allow_non_ascii) def AsDict(self): """A dict representation of this twitter.Status instance. - The return value uses the same key names as the JSON representation. Return: From ed3fffa4bd3b5d721ed310d99d4b509b54192bcd Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 11:32:24 +0100 Subject: [PATCH 029/533] Remove setters on users, will never be used anyway --- twitter/user.py | 122 ------------------------------------------------ 1 file changed, 122 deletions(-) diff --git a/twitter/user.py b/twitter/user.py index 8f1c81f0..beb733cc 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -216,10 +216,6 @@ def Id(self): """ return self._id - @property.setter - def Id(self, id): - self._id = id - @property def Name(self): """Get the real name of this user. @@ -229,11 +225,6 @@ def Name(self): """ return self._name - @property.setter - def Name(self, name): - self._name = name - - @property def ScreenName(self): """Get the short twitter name of this user. @@ -243,10 +234,6 @@ def ScreenName(self): """ return self._screen_name - @property.setter - def ScreenName(self, screen_name): - self._screen_name = screen_name - @property def Location(self): """Get the geographic location of this user. @@ -256,10 +243,6 @@ def Location(self): """ return self._location - @property.setter - def Location(self, location): - self._location = location - @property def Description(self): """Get the short text description of this user. @@ -269,15 +252,6 @@ def Description(self): """ return self._description - @property.setter - def Description(self, description): - """Set the short text description of this user. - - Args: - description: The short text description of this user - """ - self._description = description - @property def Url(self): """Get the homepage url of this user. @@ -287,10 +261,6 @@ def Url(self): """ return self._url - @property.setter - def Url(self, url): - self._url = url - @property def ProfileImageUrl(self): """Get the url of the thumbnail of this user. @@ -300,10 +270,6 @@ def ProfileImageUrl(self): """ return self._profile_image_url - @property.setter - def ProfileImageUrl(self, profile_image_url): - self._profile_image_url = profile_image_url - @property def ProfileBackgroundTile(self): """Boolean for whether to tile the profile background image. @@ -313,74 +279,38 @@ def ProfileBackgroundTile(self): """ return self._profile_background_tile - @property.setter - def ProfileBackgroundTile(self, profile_background_tile): - self._profile_background_tile = profile_background_tile - @property def ProfileBackgroundImageUrl(self): return self._profile_background_image_url - @property.setter - def ProfileBackgroundImageUrl(self, profile_background_image_url): - self._profile_background_image_url = profile_background_image_url - @property def ProfileBannerUrl(self): return self._profile_banner_url - @property.setter - def ProfileBannerUrl(self, profile_banner_url): - self._profile_banner_url = profile_banner_url - @property def ProfileSidebarFillColor(self): return self._profile_sidebar_fill_color - @property.setter - def ProfileSidebarFillColor(self, profile_sidebar_fill_color): - self._profile_sidebar_fill_color = profile_sidebar_fill_color - @property def GetProfileBackgroundColor(self): return self._profile_background_color - @property.setter - def ProfileBackgroundColor(self, profile_background_color): - self._profile_background_color = profile_background_color - @property def ProfileLinkColor(self): return self._profile_link_color - @property.setter - def ProfileLinkColor(self, profile_link_color): - self._profile_link_color = profile_link_color - @property def ProfileTextColor(self): return self._profile_text_color - @property.setter - def ProfileTextColor(self, profile_text_color): - self._profile_text_color = profile_text_color - @property def Protected(self): return self._protected - @property.setter - def Protected(self, protected): - self._protected = protected - @property def UtcOffset(self): return self._utc_offset - @property.setter - def UtcOffset(self, utc_offset): - self._utc_offset = utc_offset - @property def TimeZone(self): """Returns the current time zone string for the user. @@ -390,10 +320,6 @@ def TimeZone(self): """ return self._time_zone - @property.setter - def TimeZone(self, time_zone): - self._time_zone = time_zone - @property def Status(self): """Get the latest twitter.Status of this user. @@ -403,10 +329,6 @@ def Status(self): """ return self._status - @property.setter - def Status(self, status): - self._status = status - @property def FriendsCount(self): """Get the friend count for this user. @@ -416,10 +338,6 @@ def FriendsCount(self): """ return self._friends_count - @property.setter - def FriendsCount(self, count): - self._friends_count = count - @property def ListedCount(self): """Get the listed count for this user. @@ -429,10 +347,6 @@ def ListedCount(self): """ return self._listed_count - @property.setter - def ListedCount(self, count): - self._listed_count = count - @property def FollowersCount(self): """Get the follower count for this user. @@ -442,10 +356,6 @@ def FollowersCount(self): """ return self._followers_count - @property.setter - def FollowersCount(self, count): - self._followers_count = count - @property def StatusesCount(self): """Get the number of status updates for this user. @@ -455,10 +365,6 @@ def StatusesCount(self): """ return self._statuses_count - @property.setter - def SetStatusesCount(self, count): - self._statuses_count = count - @property def FavouritesCount(self): """Get the number of favourites for this user. @@ -468,10 +374,6 @@ def FavouritesCount(self): """ return self._favourites_count - @property.setter - def FavouritesCount(self, count): - self._favourites_count = count - @property def GeoEnabled(self): """Get the setting of geo_enabled for this user. @@ -481,10 +383,6 @@ def GeoEnabled(self): """ return self._geo_enabled - @property.setter - def SetGeoEnabled(self, geo_enabled): - self._geo_enabled = geo_enabled - @property def Verified(self): """Get the setting of verified for this user. @@ -494,10 +392,6 @@ def Verified(self): """ return self._verified - @property.setter - def Verified(self, verified): - self._verified = verified - @property def Lang(self): """Get the setting of lang for this user. @@ -507,10 +401,6 @@ def Lang(self): """ return self._lang - @property.setter - def Lang(self, lang): - self._lang = lang - @property def Notifications(self): """Get the setting of notifications for this user. @@ -520,10 +410,6 @@ def Notifications(self): """ return self._notifications - @property.setter - def Notifications(self, notifications): - self._notifications = notifications - @property def ContributorsEnabled(self): """Get the setting of contributors_enabled for this user. @@ -533,10 +419,6 @@ def ContributorsEnabled(self): """ return self._contributors_enabled - @property.setter - def ContributorsEnabled(self, contributors_enabled): - self._contributors_enabled = contributors_enabled - @property def CreatedAt(self): """Get the setting of created_at for this user. @@ -546,10 +428,6 @@ def CreatedAt(self): """ return self._created_at - @property.setter - def CreatedAt(self, created_at): - self._created_at = created_at - def __ne__(self, other): return not self.__eq__(other) From fbd3a3deab74d25e53b6f872e6f0adacb756f804 Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 12:03:08 +0100 Subject: [PATCH 030/533] Fix property bug --- twitter/status.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/twitter/status.py b/twitter/status.py index c5624138..2d629bbf 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -134,7 +134,7 @@ def Text(self): """ return self._text - @property.setter + @Text.setter def Text(self, text): self._text = text @@ -142,7 +142,7 @@ def Text(self, text): def InReplyToStatusId(self): return self._in_reply_to_status_id - @property.setter + @InReplyToStatusId.setter def InReplyToStatusId(self, in_reply_to_status_id): self._in_reply_to_status_id = in_reply_to_status_id @@ -150,7 +150,7 @@ def InReplyToStatusId(self, in_reply_to_status_id): def Possibly_sensitive(self): return self._possibly_sensitive - @property.setter + @Possibly_sensitive.setter def Possibly_sensitive(self, possibly_sensitive): self._possibly_sensitive = possibly_sensitive @@ -158,7 +158,7 @@ def Possibly_sensitive(self, possibly_sensitive): def Place(self): return self._place - @property.setter + @Place.setter def Place(self, place): self._place = place @@ -166,7 +166,7 @@ def Place(self, place): def Coordinates(self): return self._coordinates - @property.setter + @Coordinates.setter def Coordinates(self, coordinates): self._coordinates = coordinates @@ -316,7 +316,7 @@ def Now(self): self._now = time.time() return self._now - @property.setter + @Now.setter def Now(self, now): self._now = now From ac0ae39e5720e1958e14324bc28c89944ae5520a Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 12:03:36 +0100 Subject: [PATCH 031/533] Remove test for setters and getters, not used --- twitter_test.py | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/twitter_test.py b/twitter_test.py index 741d47e7..06dbc48b 100755 --- a/twitter_test.py +++ b/twitter_test.py @@ -57,23 +57,6 @@ def testInit(self): text=u'A légpárnás hajóm tele van angolnákkal.', user=self._GetSampleUser()) - def testGettersAndSetters(self): - '''Test all of the twitter.Status getters and setters''' - status = twitter.Status() - status.SetId(4391023) - self.assertEqual(4391023, status.GetId()) - created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) - status.SetCreatedAt('Fri Jan 26 23:17:14 +0000 2007') - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.GetCreatedAt()) - self.assertEqual(created_at, status.GetCreatedAtInSeconds()) - status.SetNow(created_at + 10) - self.assertEqual("about 10 seconds ago", status.GetRelativeCreatedAt()) - status.SetText(u'A légpárnás hajóm tele van angolnákkal.') - self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', - status.GetText()) - status.SetUser(self._GetSampleUser()) - self.assertEqual(718443, status.GetUser().id) - def testProperties(self): '''Test all of the twitter.Status properties''' status = twitter.Status() @@ -191,26 +174,6 @@ def testInit(self): 'ile_image/673483/normal/me.jpg', status=self._GetSampleStatus()) - def testGettersAndSetters(self): - '''Test all of the twitter.User getters and setters''' - user = twitter.User() - user.SetId(673483) - self.assertEqual(673483, user.GetId()) - user.SetName('DeWitt') - self.assertEqual('DeWitt', user.GetName()) - user.SetScreenName('dewitt') - self.assertEqual('dewitt', user.GetScreenName()) - user.SetDescription('Indeterminate things') - self.assertEqual('Indeterminate things', user.GetDescription()) - user.SetLocation('San Francisco, CA') - self.assertEqual('San Francisco, CA', user.GetLocation()) - user.SetProfileImageUrl('https://twitter.com/system/user/profile_im' - 'age/673483/normal/me.jpg') - self.assertEqual('https://twitter.com/system/user/profile_image/673' - '483/normal/me.jpg', user.GetProfileImageUrl()) - user.SetStatus(self._GetSampleStatus()) - self.assertEqual(4212713, user.GetStatus().id) - def testProperties(self): '''Test all of the twitter.User properties''' user = twitter.User() From a4c4f9d0bdeaff25ab52a575711bd721e9a04afd Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 12:27:22 +0100 Subject: [PATCH 032/533] Fixing properties for DMs --- twitter/direct_message.py | 167 ++++++++++++-------------------------- 1 file changed, 52 insertions(+), 115 deletions(-) diff --git a/twitter/direct_message.py b/twitter/direct_message.py index 129a8218..e21f56f1 100644 --- a/twitter/direct_message.py +++ b/twitter/direct_message.py @@ -60,99 +60,36 @@ def __init__(self, self.recipient_screen_name = recipient_screen_name self.text = text - def GetId(self): - """Get the unique id of this direct message. - - Returns: - The unique id of this direct message - """ - return self._id - - def SetId(self, id): - """Set the unique id of this direct message. - - Args: - id: - The unique id of this direct message - """ - self._id = id - - id = property(GetId, SetId, - doc='The unique id of this direct message.') - - def GetCreatedAt(self): - """Get the time this direct message was posted. - - Returns: - The time this direct message was posted - """ - return self._created_at - - def SetCreatedAt(self, created_at): - """Set the time this direct message was posted. - - Args: - created_at: - The time this direct message was created - """ - self._created_at = created_at + # Functions that you should be able to set. - created_at = property(GetCreatedAt, SetCreatedAt, - doc='The time this direct message was posted.') - - def GetCreatedAtInSeconds(self): - """Get the time this direct message was posted, in seconds since the epoch. - - Returns: - The time this direct message was posted, in seconds since the epoch. - """ - return timegm(rfc822.parsedate(self.created_at)) - - created_at_in_seconds = property(GetCreatedAtInSeconds, - doc="The time this direct message was " - "posted, in seconds since the epoch") - - def GetSenderId(self): - """Get the unique sender id of this direct message. + @property + def RecipientScreenName(self): + """Get the unique recipient screen name of this direct message. Returns: - The unique sender id of this direct message - """ - return self._sender_id - - def SetSenderId(self, sender_id): - """Set the unique sender id of this direct message. - - Args: - sender_id: - The unique sender id of this direct message + The unique recipient screen name of this direct message """ - self._sender_id = sender_id + return self._recipient_screen_name - sender_id = property(GetSenderId, SetSenderId, - doc='The unique sender id of this direct message.') + @RecipientScreenName.setter + def RecipientScreenName(self, recipient_screen_name): + self._recipient_screen_name = recipient_screen_name - def GetSenderScreenName(self): - """Get the unique sender screen name of this direct message. + @property + def Text(self): + """Get the text of this direct message. Returns: - The unique sender screen name of this direct message - """ - return self._sender_screen_name - - def SetSenderScreenName(self, sender_screen_name): - """Set the unique sender screen name of this direct message. - - Args: - sender_screen_name: - The unique sender screen name of this direct message + The text of this direct message. """ - self._sender_screen_name = sender_screen_name + return self._text - sender_screen_name = property(GetSenderScreenName, SetSenderScreenName, - doc='The unique sender screen name of this direct message.') + @Text.setter + def Text(self, text): + self._text = text - def GetRecipientId(self): + @property + def RecipientId(self): """Get the unique recipient id of this direct message. Returns: @@ -160,57 +97,57 @@ def GetRecipientId(self): """ return self._recipient_id - def SetRecipientId(self, recipient_id): - """Set the unique recipient id of this direct message. - - Args: - recipient_id: - The unique recipient id of this direct message - """ + @RecipientId.setter + def RecipientId(self, recipient_id): self._recipient_id = recipient_id - recipient_id = property(GetRecipientId, SetRecipientId, - doc='The unique recipient id of this direct message.') + # Functions that are only getters. - def GetRecipientScreenName(self): - """Get the unique recipient screen name of this direct message. + @property + def Id(self): + """Get the unique id of this direct message. Returns: - The unique recipient screen name of this direct message + The unique id of this direct message """ - return self._recipient_screen_name + return self._id - def SetRecipientScreenName(self, recipient_screen_name): - """Set the unique recipient screen name of this direct message. + @property + def CreatedAt(self): + """Get the time this direct message was posted. - Args: - recipient_screen_name: - The unique recipient screen name of this direct message + Returns: + The time this direct message was posted """ - self._recipient_screen_name = recipient_screen_name + return self._created_at - recipient_screen_name = property(GetRecipientScreenName, SetRecipientScreenName, - doc='The unique recipient screen name of this direct message.') + @property + def CreatedAtInSeconds(self): + """Get the time this direct message was posted, in seconds since the epoch. - def GetText(self): - """Get the text of this direct message. + Returns: + The time this direct message was posted, in seconds since the epoch. + """ + return timegm(rfc822.parsedate(self.created_at)) + + @property + def SenderScreenName(self): + """Get the unique sender screen name of this direct message. Returns: - The text of this direct message. + The unique sender screen name of this direct message """ - return self._text + return self._sender_screen_name - def SetText(self, text): - """Set the text of this direct message. + @property + def SenderId(self): + """Get the unique sender id of this direct message. - Args: - text: - The text of this direct message + Returns: + The unique sender id of this direct message """ - self._text = text + return self._sender_id - text = property(GetText, SetText, - doc='The text of this direct message') def __ne__(self, other): return not self.__eq__(other) From 220a88f199f186653ab717577ad9e387e87dfc92 Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 12:27:39 +0100 Subject: [PATCH 033/533] Fix properties for list --- twitter/list.py | 164 +++++++----------------------------------------- 1 file changed, 22 insertions(+), 142 deletions(-) diff --git a/twitter/list.py b/twitter/list.py index b0a0a832..4c102770 100644 --- a/twitter/list.py +++ b/twitter/list.py @@ -37,7 +37,8 @@ def __init__(self, **kwargs): for (param, default) in param_defaults.iteritems(): setattr(self, param, kwargs.get(param, default)) - def GetId(self): + @property + def Id(self): """Get the unique id of this list. Returns: @@ -45,19 +46,9 @@ def GetId(self): """ return self._id - def SetId(self, id): - """Set the unique id of this list. - Args: - id: - The unique id of this list. - """ - self._id = id - - id = property(GetId, SetId, - doc='The unique id of this list.') - - def GetName(self): + @property + def Name(self): """Get the real name of this list. Returns: @@ -65,19 +56,8 @@ def GetName(self): """ return self._name - def SetName(self, name): - """Set the real name of this list. - - Args: - name: - The real name of this list - """ - self._name = name - - name = property(GetName, SetName, - doc='The real name of this list.') - - def GetSlug(self): + @property + def Slug(self): """Get the slug of this list. Returns: @@ -85,19 +65,8 @@ def GetSlug(self): """ return self._slug - def SetSlug(self, slug): - """Set the slug of this list. - - Args: - slug: - The slug of this list. - """ - self._slug = slug - - slug = property(GetSlug, SetSlug, - doc='The slug of this list.') - - def GetDescription(self): + @property + def Description(self): """Get the description of this list. Returns: @@ -105,19 +74,8 @@ def GetDescription(self): """ return self._description - def SetDescription(self, description): - """Set the description of this list. - - Args: - description: - The description of this list. - """ - self._description = description - - description = property(GetDescription, SetDescription, - doc='The description of this list.') - - def GetFull_name(self): + @property + def Full_name(self): """Get the full_name of this list. Returns: @@ -125,19 +83,8 @@ def GetFull_name(self): """ return self._full_name - def SetFull_name(self, full_name): - """Set the full_name of this list. - - Args: - full_name: - The full_name of this list. - """ - self._full_name = full_name - - full_name = property(GetFull_name, SetFull_name, - doc='The full_name of this list.') - - def GetMode(self): + @property + def Mode(self): """Get the mode of this list. Returns: @@ -145,19 +92,8 @@ def GetMode(self): """ return self._mode - def SetMode(self, mode): - """Set the mode of this list. - - Args: - mode: - The mode of this list. - """ - self._mode = mode - - mode = property(GetMode, SetMode, - doc='The mode of this list.') - - def GetUri(self): + @property + def Uri(self): """Get the uri of this list. Returns: @@ -165,19 +101,8 @@ def GetUri(self): """ return self._uri - def SetUri(self, uri): - """Set the uri of this list. - - Args: - uri: - The uri of this list. - """ - self._uri = uri - - uri = property(GetUri, SetUri, - doc='The uri of this list.') - - def GetMember_count(self): + @property + def Member_count(self): """Get the member_count of this list. Returns: @@ -185,19 +110,8 @@ def GetMember_count(self): """ return self._member_count - def SetMember_count(self, member_count): - """Set the member_count of this list. - - Args: - member_count: - The member_count of this list. - """ - self._member_count = member_count - - member_count = property(GetMember_count, SetMember_count, - doc='The member_count of this list.') - - def GetSubscriber_count(self): + @property + def Subscriber_count(self): """Get the subscriber_count of this list. Returns: @@ -205,19 +119,8 @@ def GetSubscriber_count(self): """ return self._subscriber_count - def SetSubscriber_count(self, subscriber_count): - """Set the subscriber_count of this list. - - Args: - subscriber_count: - The subscriber_count of this list. - """ - self._subscriber_count = subscriber_count - - subscriber_count = property(GetSubscriber_count, SetSubscriber_count, - doc='The subscriber_count of this list.') - - def GetFollowing(self): + @property + def Following(self): """Get the following status of this list. Returns: @@ -225,19 +128,8 @@ def GetFollowing(self): """ return self._following - def SetFollowing(self, following): - """Set the following status of this list. - - Args: - following: - The following of this list. - """ - self._following = following - - following = property(GetFollowing, SetFollowing, - doc='The following status of this list.') - - def GetUser(self): + @property + def User(self): """Get the user of this list. Returns: @@ -245,18 +137,6 @@ def GetUser(self): """ return self._user - def SetUser(self, user): - """Set the user of this list. - - Args: - user: - The owner of this list. - """ - self._user = user - - user = property(GetUser, SetUser, - doc='The owner of this list.') - def __ne__(self, other): return not self.__eq__(other) From e6cfd9620f7d53b89c14d4fa7fb601bc57deb1f1 Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 13:52:31 +0100 Subject: [PATCH 034/533] Fix deprecated property --- twitter/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/status.py b/twitter/status.py index 2d629bbf..253361da 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -199,7 +199,7 @@ def RelativeCreatedAt(self): A human readable string representing the posting time """ fudge = 1.25 - delta = long(self.now) - long(self.created_at_in_seconds) + delta = long(self.now) - long(self.CreatedAtInSeconds) if delta < (1 * fudge): return 'about a second ago' From 46eb78d4d2104c73ac3ebab3cb2dd9ae5d52947b Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 13:53:00 +0100 Subject: [PATCH 035/533] Split up tests for better readability --- test.py | 5 + tests/__init__.py | 0 tests/apikey.py | 4 + tests/test_api.py | 325 ++++++++++++++++++ tests/test_filecache.py | 43 +++ tests/test_parse_tweet.py | 41 +++ tests/test_status.py | 119 +++++++ tests/test_trend.py | 42 +++ tests/test_user.py | 95 ++++++ twitter_test.py | 677 -------------------------------------- 10 files changed, 674 insertions(+), 677 deletions(-) create mode 100644 test.py create mode 100644 tests/__init__.py create mode 100644 tests/apikey.py create mode 100644 tests/test_api.py create mode 100644 tests/test_filecache.py create mode 100644 tests/test_parse_tweet.py create mode 100644 tests/test_status.py create mode 100644 tests/test_trend.py create mode 100644 tests/test_user.py delete mode 100755 twitter_test.py diff --git a/test.py b/test.py new file mode 100644 index 00000000..d00c23f4 --- /dev/null +++ b/test.py @@ -0,0 +1,5 @@ +import unittest + +if __name__ == '__main__': + testsuite = unittest.TestLoader().discover('.') + unittest.TextTestRunner(verbosity=1).run(testsuite) diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/apikey.py b/tests/apikey.py new file mode 100644 index 00000000..7fdb8d75 --- /dev/null +++ b/tests/apikey.py @@ -0,0 +1,4 @@ +CONSUMER_KEY = '' +CONSUMER_SECRET = '' +ACCESS_TOKEN_KEY = '' +ACCESS_TOKEN_SECRET = '' diff --git a/tests/test_api.py b/tests/test_api.py new file mode 100644 index 00000000..78df64fe --- /dev/null +++ b/tests/test_api.py @@ -0,0 +1,325 @@ +# encoding: utf-8 + +import twitter +import time +import unittest + +from apikey import (CONSUMER_KEY, + CONSUMER_SECRET, + ACCESS_TOKEN_KEY, + ACCESS_TOKEN_SECRET) + + +@unittest.skipIf(not CONSUMER_KEY and not CONSUMER_SECRET, "No tokens provided") +class ApiTest(unittest.TestCase): + def setUp(self): + self._urllib = MockUrllib() + time.sleep(15) + api = twitter.Api(consumer_key=CONSUMER_SECRET, + consumer_secret=CONSUMER_SECRET, + access_token_key=ACCESS_TOKEN_KEY, + access_token_secret=ACCESS_TOKEN_SECRET, + cache=None) + api.SetUrllib(self._urllib) + self._api = api + print "Testing the API class. This test is time controlled" + + def testTwitterError(self): + '''Test that twitter responses containing an error message are wrapped.''' + self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', + curry(self._OpenTestData, 'public_timeline_error.json')) + # Manually try/catch so we can check the exception's value + try: + statuses = self._api.GetUserTimeline() + except twitter.TwitterError, error: + # If the error message matches, the test passes + self.assertEqual('test error', error.message) + else: + self.fail('TwitterError expected') + + def testGetUserTimeline(self): + '''Test the twitter.Api GetUserTimeline method''' + time.sleep(8) + print 'Testing GetUserTimeline' + self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json?count=1&screen_name=kesuke', + curry(self._OpenTestData, 'user_timeline-kesuke.json')) + statuses = self._api.GetUserTimeline(screen_name='kesuke', count=1) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(89512102, statuses[0].id) + self.assertEqual(718443, statuses[0].user.id) + + #def testGetFriendsTimeline(self): + # '''Test the twitter.Api GetFriendsTimeline method''' + # self._AddHandler('https://api.twitter.com/1.1/statuses/friends_timeline/kesuke.json', + # curry(self._OpenTestData, 'friends_timeline-kesuke.json')) + # statuses = self._api.GetFriendsTimeline('kesuke') + # # This is rather arbitrary, but spot checking is better than nothing + # self.assertEqual(20, len(statuses)) + # self.assertEqual(718443, statuses[0].user.id) + + def testGetStatus(self): + '''Test the twitter.Api GetStatus method''' + time.sleep(8) + print 'Testing GetStatus' + self._AddHandler('https://api.twitter.com/1.1/statuses/show.json?include_my_retweet=1&id=89512102', + curry(self._OpenTestData, 'show-89512102.json')) + status = self._api.GetStatus(89512102) + self.assertEqual(89512102, status.id) + self.assertEqual(718443, status.user.id) + + def testDestroyStatus(self): + '''Test the twitter.Api DestroyStatus method''' + time.sleep(8) + print 'Testing DestroyStatus' + self._AddHandler('https://api.twitter.com/1.1/statuses/destroy/103208352.json', + curry(self._OpenTestData, 'status-destroy.json')) + status = self._api.DestroyStatus(103208352) + self.assertEqual(103208352, status.id) + + def testPostUpdate(self): + '''Test the twitter.Api PostUpdate method''' + time.sleep(8) + print 'Testing PostUpdate' + self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', + curry(self._OpenTestData, 'update.json')) + status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) + + def testPostRetweet(self): + '''Test the twitter.Api PostRetweet method''' + time.sleep(8) + print 'Testing PostRetweet' + self._AddHandler('https://api.twitter.com/1.1/statuses/retweet/89512102.json', + curry(self._OpenTestData, 'retweet.json')) + status = self._api.PostRetweet(89512102) + self.assertEqual(89512102, status.id) + + def testPostUpdateLatLon(self): + '''Test the twitter.Api PostUpdate method, when used in conjunction with latitude and longitude''' + time.sleep(8) + print 'Testing PostUpdateLatLon' + self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', + curry(self._OpenTestData, 'update_latlong.json')) + #test another update with geo parameters, again test somewhat arbitrary + status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8'), latitude=54.2, + longitude=-2) + self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) + self.assertEqual(u'Point', status.GetGeo()['type']) + self.assertEqual(26.2, status.GetGeo()['coordinates'][0]) + self.assertEqual(127.5, status.GetGeo()['coordinates'][1]) + + def testGetReplies(self): + '''Test the twitter.Api GetReplies method''' + time.sleep(8) + print 'Testing GetReplies' + self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', + curry(self._OpenTestData, 'replies.json')) + statuses = self._api.GetReplies() + self.assertEqual(36657062, statuses[0].id) + + def testGetRetweetsOfMe(self): + '''Test the twitter.API GetRetweetsOfMe method''' + time.sleep(8) + print 'Testing GetRetweetsOfMe' + self._AddHandler('https://api.twitter.com/1.1/statuses/retweets_of_me.json', + curry(self._OpenTestData, 'retweets_of_me.json')) + retweets = self._api.GetRetweetsOfMe() + self.assertEqual(253650670274637824, retweets[0].id) + + def testGetFriends(self): + '''Test the twitter.Api GetFriends method''' + time.sleep(8) + print 'Testing GetFriends' + self._AddHandler('https://api.twitter.com/1.1/friends/list.json?cursor=123', + curry(self._OpenTestData, 'friends.json')) + users = self._api.GetFriends(cursor=123) + buzz = [u.status for u in users if u.screen_name == 'buzz'] + self.assertEqual(89543882, buzz[0].id) + + def testGetFollowers(self): + '''Test the twitter.Api GetFollowers method''' + time.sleep(8) + print 'Testing GetFollowers' + self._AddHandler('https://api.twitter.com/1.1/followers/list.json?cursor=-1', + curry(self._OpenTestData, 'followers.json')) + users = self._api.GetFollowers() + # This is rather arbitrary, but spot checking is better than nothing + alexkingorg = [u.status for u in users if u.screen_name == 'alexkingorg'] + self.assertEqual(89554432, alexkingorg[0].id) + + #def testGetFeatured(self): + # '''Test the twitter.Api GetFeatured method''' + # self._AddHandler('https://api.twitter.com/1.1/statuses/featured.json', + # curry(self._OpenTestData, 'featured.json')) + # users = self._api.GetFeatured() + # # This is rather arbitrary, but spot checking is better than nothing + # stevenwright = [u.status for u in users if u.screen_name == 'stevenwright'] + # self.assertEqual(86991742, stevenwright[0].id) + + def testGetDirectMessages(self): + '''Test the twitter.Api GetDirectMessages method''' + time.sleep(8) + print 'Testing GetDirectMessages' + self._AddHandler('https://api.twitter.com/1.1/direct_messages.json', + curry(self._OpenTestData, 'direct_messages.json')) + statuses = self._api.GetDirectMessages() + self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', statuses[0].text) + + def testPostDirectMessage(self): + '''Test the twitter.Api PostDirectMessage method''' + time.sleep(8) + print 'Testing PostDirectMessage' + self._AddHandler('https://api.twitter.com/1.1/direct_messages/new.json', + curry(self._OpenTestData, 'direct_messages-new.json')) + status = self._api.PostDirectMessage('test', u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) + + def testDestroyDirectMessage(self): + '''Test the twitter.Api DestroyDirectMessage method''' + time.sleep(8) + print 'Testing DestroyDirectMessage' + self._AddHandler('https://api.twitter.com/1.1/direct_messages/destroy.json', + curry(self._OpenTestData, 'direct_message-destroy.json')) + status = self._api.DestroyDirectMessage(3496342) + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(673483, status.sender_id) + + def testCreateFriendship(self): + '''Test the twitter.Api CreateFriendship method''' + time.sleep(8) + print 'Testing CreateFriendship' + self._AddHandler('https://api.twitter.com/1.1/friendships/create.json', + curry(self._OpenTestData, 'friendship-create.json')) + user = self._api.CreateFriendship('dewitt') + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(673483, user.id) + + def testDestroyFriendship(self): + '''Test the twitter.Api DestroyFriendship method''' + time.sleep(8) + print 'Testing Destroy Friendship' + self._AddHandler('https://api.twitter.com/1.1/friendships/destroy.json', + curry(self._OpenTestData, 'friendship-destroy.json')) + user = self._api.DestroyFriendship('dewitt') + # This is rather arbitrary, but spot checking is better than nothing + self.assertEqual(673483, user.id) + + def testGetUser(self): + '''Test the twitter.Api GetUser method''' + time.sleep(8) + print 'Testing GetUser' + self._AddHandler('https://api.twitter.com/1.1/users/show.json?user_id=dewitt', + curry(self._OpenTestData, 'show-dewitt.json')) + user = self._api.GetUser('dewitt') + self.assertEqual('dewitt', user.screen_name) + self.assertEqual(89586072, user.status.id) + + def _AddHandler(self, url, callback): + self._urllib.AddHandler(url, callback) + + def _GetTestDataPath(self, filename): + directory = os.path.dirname(os.path.abspath(__file__)) + test_data_dir = os.path.join(directory, 'testdata') + return os.path.join(test_data_dir, filename) + + def _OpenTestData(self, filename): + f = open(self._GetTestDataPath(filename)) + # make sure that the returned object contains an .info() method: + # headers are set to {} + return urllib.addinfo(f, {}) + + +class MockUrllib(object): + '''A mock replacement for urllib that hardcodes specific responses.''' + + def __init__(self): + self._handlers = {} + self.HTTPBasicAuthHandler = MockHTTPBasicAuthHandler + + def AddHandler(self, url, callback): + self._handlers[url] = callback + + def build_opener(self, *handlers): + return MockOpener(self._handlers) + + def HTTPHandler(self, *args, **kwargs): + return None + + def HTTPSHandler(self, *args, **kwargs): + return None + + def OpenerDirector(self): + return self.build_opener() + + def ProxyHandler(self, *args, **kwargs): + return None + + +class MockOpener(object): + '''A mock opener for urllib''' + + def __init__(self, handlers): + self._handlers = handlers + self._opened = False + + def open(self, url, data=None): + if self._opened: + raise Exception('MockOpener already opened.') + + # Remove parameters from URL - they're only added by oauth and we + # don't want to test oauth + if '?' in url: + # We split using & and filter on the beginning of each key + # This is crude but we have to keep the ordering for now + (url, qs) = url.split('?') + + tokens = [token for token in qs.split('&') + if not token.startswith('oauth')] + + if len(tokens) > 0: + url = "%s?%s" % (url, '&'.join(tokens)) + + if url in self._handlers: + self._opened = True + return self._handlers[url]() + else: + print url + print self._handlers + + raise Exception('Unexpected URL %s (Checked: %s)' % (url, self._handlers)) + + def add_handler(self, *args, **kwargs): + pass + + def close(self): + if not self._opened: + raise Exception('MockOpener closed before it was opened.') + self._opened = False + + +class curry(object): + # http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52549 + + def __init__(self, fun, *args, **kwargs): + self.fun = fun + self.pending = args[:] + self.kwargs = kwargs.copy() + + def __call__(self, *args, **kwargs): + if kwargs and self.kwargs: + kw = self.kwargs.copy() + kw.update(kwargs) + else: + kw = kwargs or self.kwargs + return self.fun(*(self.pending + args), **kw) + + +class MockHTTPBasicAuthHandler(object): + '''A mock replacement for HTTPBasicAuthHandler''' + + def add_password(self, realm, uri, user, passwd): + # TODO(dewitt): Add verification that the proper args are passed + pass + diff --git a/tests/test_filecache.py b/tests/test_filecache.py new file mode 100644 index 00000000..5e3d19c2 --- /dev/null +++ b/tests/test_filecache.py @@ -0,0 +1,43 @@ +import twitter +import unittest +import time + + +class FileCacheTest(unittest.TestCase): + def testInit(self): + """Test the twitter._FileCache constructor""" + cache = twitter._FileCache() + self.assert_(cache is not None, 'cache is None') + + def testSet(self): + """Test the twitter._FileCache.Set method""" + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + cache.Remove("foo") + + def testRemove(self): + """Test the twitter._FileCache.Remove method""" + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + cache.Remove("foo") + data = cache.Get("foo") + self.assertEqual(data, None, 'data is not None') + + def testGet(self): + """Test the twitter._FileCache.Get method""" + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + data = cache.Get("foo") + self.assertEqual('Hello World!', data) + cache.Remove("foo") + + def testGetCachedTime(self): + """Test the twitter._FileCache.GetCachedTime method""" + now = time.time() + cache = twitter._FileCache() + cache.Set("foo", 'Hello World!') + cached_time = cache.GetCachedTime("foo") + delta = cached_time - now + self.assert_(delta <= 1, + 'Cached time differs from clock time by more than 1 second.') + cache.Remove("foo") diff --git a/tests/test_parse_tweet.py b/tests/test_parse_tweet.py new file mode 100644 index 00000000..8c64d9e9 --- /dev/null +++ b/tests/test_parse_tweet.py @@ -0,0 +1,41 @@ +# encoding: utf-8 + +import unittest +import twitter + +class ParseTest(unittest.TestCase): + """ Test the ParseTweet class """ + + def testParseTweets(self): + handles4 = u"""Do not use this word! Hurting me! @raja7727: @qadirbasha @manion @Jayks3 உடன்பிறப்பு”"""; + + data = twitter.ParseTweet("@twitter", handles4) + self.assertEqual([data.RT, data.MT, len(data.UserHandles)], [False, False, 4]) + + hashtag_n_URL = u"மனதிற்கு மிகவும் நெருக்கமான பாடல்! உயிரையே கொடுக்கலாம் சார்! #KeladiKanmani https://www.youtube.com/watch?v=FHTiG_g2fM4 … #HBdayRajaSir"; + + data = twitter.ParseTweet("@twitter", hashtag_n_URL) + self.assertEqual([len(data.Hashtags), len(data.URLs)], [2, 1]) + self.assertEqual(len(data.Emoticon),0) + + url_only = u"""The #Rainbow #Nebula, 544,667 #lightyears away. pic.twitter.com/2A4wSUK25A"""; + data = twitter.ParseTweet("@twitter", url_only) + self.assertEqual([data.MT, len(data.Hashtags), len(data.URLs)], [False, 3, 1]) + self.assertEqual(len(data.Emoticon),0) + + url_handle = u"""RT ‏@BarackObama POTUS recommends Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; + data = twitter.ParseTweet("@twitter", url_handle) + self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) + self.assertEqual(len(data.Emoticon),0) + + def testEmoticon(self): + url_handle = u"""RT ‏@BarackObama POTUS recommends :-) Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; + data = twitter.ParseTweet("@twitter", url_handle) + self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) + self.assertEqual(len(data.Emoticon),1) + + url_handle = u"""RT @cats ^-^ cute! But kitty litter :-( #unrelated picture"""; + data = twitter.ParseTweet("@cats", url_handle) + self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 0, 1]) + self.assertEqual(len(data.Emoticon),2) + self.assertEqual(data.Emoticon,['^-^',':-(']) diff --git a/tests/test_status.py b/tests/test_status.py new file mode 100644 index 00000000..d6a4ba4d --- /dev/null +++ b/tests/test_status.py @@ -0,0 +1,119 @@ +# encoding: utf-8 + +import twitter +import calendar +import time +import json +import unittest + + +class StatusTest(unittest.TestCase): + SAMPLE_JSON = '''{"created_at": "Fri Jan 26 23:17:14 +0000 2007", "id": 4391023, "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", "user": {"description": "Canvas. JC Penny. Three ninety-eight.", "id": 718443, "location": "Okinawa, Japan", "name": "Kesuke Miyagi", "profile_image_url": "https://twitter.com/system/user/profile_image/718443/normal/kesuke.png", "screen_name": "kesuke", "url": "https://twitter.com/kesuke"}}''' + + def _GetSampleUser(self): + return twitter.User(id=718443, + name='Kesuke Miyagi', + screen_name='kesuke', + description=u'Canvas. JC Penny. Three ninety-eight.', + location='Okinawa, Japan', + url='https://twitter.com/kesuke', + profile_image_url='https://twitter.com/system/user/pro' + 'file_image/718443/normal/kesuke.pn' + 'g') + + def _GetSampleStatus(self): + return twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', + id=4391023, + text=u'A légpárnás hajóm tele van angolnákkal.', + user=self._GetSampleUser()) + + def testInit(self): + '''Test the twitter.Status constructor''' + status = twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', + id=4391023, + text=u'A légpárnás hajóm tele van angolnákkal.', + user=self._GetSampleUser()) + + def testProperties(self): + '''Test all of the twitter.Status properties''' + status = twitter.Status() + status.id = 1 + self.assertEqual(1, status.id) + created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) + status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' + self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.created_at) + self.assertEqual(created_at, status.CreatedAtInSeconds) + status.now = created_at + 10 + self.assertEqual('about 10 seconds ago', status.RelativeCreatedAt) + status.user = self._GetSampleUser() + self.assertEqual(718443, status.user.id) + + def _ParseDate(self, string): + return calendar.timegm(time.strptime(string, '%b %d %H:%M:%S %Y')) + + def testRelativeCreatedAt(self): + '''Test various permutations of Status RelativeCreatedAt''' + status = twitter.Status(created_at='Fri Jan 01 12:00:00 +0000 2007') + status.now = self._ParseDate('Jan 01 12:00:00 2007') + self.assertEqual('about a second ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:00:01 2007') + self.assertEqual('about a second ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:00:02 2007') + self.assertEqual('about 2 seconds ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:00:05 2007') + self.assertEqual('about 5 seconds ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:00:50 2007') + self.assertEqual('about a minute ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:01:00 2007') + self.assertEqual('about a minute ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:01:10 2007') + self.assertEqual('about a minute ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:02:00 2007') + self.assertEqual('about 2 minutes ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:31:50 2007') + self.assertEqual('about 31 minutes ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 12:50:00 2007') + self.assertEqual('about an hour ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 13:00:00 2007') + self.assertEqual('about an hour ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 13:10:00 2007') + self.assertEqual('about an hour ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 14:00:00 2007') + self.assertEqual('about 2 hours ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 01 19:00:00 2007') + self.assertEqual('about 7 hours ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 02 11:30:00 2007') + self.assertEqual('about a day ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Jan 04 12:00:00 2007') + self.assertEqual('about 3 days ago', status.RelativeCreatedAt) + status.now = self._ParseDate('Feb 04 12:00:00 2007') + self.assertEqual('about 34 days ago', status.RelativeCreatedAt) + + def testAsJsonString(self): + '''Test the twitter.Status AsJsonString method''' + self.assertEqual(StatusTest.SAMPLE_JSON, + self._GetSampleStatus().AsJsonString()) + + def testAsDict(self): + '''Test the twitter.Status AsDict method''' + status = self._GetSampleStatus() + data = status.AsDict() + self.assertEqual(4391023, data['id']) + self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', data['created_at']) + self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', data['text']) + self.assertEqual(718443, data['user']['id']) + + def testEq(self): + '''Test the twitter.Status __eq__ method''' + status = twitter.Status() + status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' + status.id = 4391023 + status.text = u'A légpárnás hajóm tele van angolnákkal.' + status.user = self._GetSampleUser() + self.assertEqual(status, self._GetSampleStatus()) + + def testNewFromJsonDict(self): + '''Test the twitter.Status NewFromJsonDict method''' + data = json.loads(StatusTest.SAMPLE_JSON) + status = twitter.Status.NewFromJsonDict(data) + self.assertEqual(self._GetSampleStatus(), status) diff --git a/tests/test_trend.py b/tests/test_trend.py new file mode 100644 index 00000000..1960764c --- /dev/null +++ b/tests/test_trend.py @@ -0,0 +1,42 @@ +import twitter +import unittest +import json + + +class TrendTest(unittest.TestCase): + SAMPLE_JSON = '''{"name": "Kesuke Miyagi", "query": "Kesuke Miyagi"}''' + + def _GetSampleTrend(self): + return twitter.Trend(name='Kesuke Miyagi', + query='Kesuke Miyagi', + timestamp='Fri Jan 26 23:17:14 +0000 2007') + + def testInit(self): + '''Test the twitter.Trend constructor''' + trend = twitter.Trend(name='Kesuke Miyagi', + query='Kesuke Miyagi', + timestamp='Fri Jan 26 23:17:14 +0000 2007') + + def testProperties(self): + '''Test all of the twitter.Trend properties''' + trend = twitter.Trend() + trend.name = 'Kesuke Miyagi' + self.assertEqual('Kesuke Miyagi', trend.name) + trend.query = 'Kesuke Miyagi' + self.assertEqual('Kesuke Miyagi', trend.query) + trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' + self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', trend.timestamp) + + def testNewFromJsonDict(self): + '''Test the twitter.Trend NewFromJsonDict method''' + data = json.loads(TrendTest.SAMPLE_JSON) + trend = twitter.Trend.NewFromJsonDict(data, timestamp='Fri Jan 26 23:17:14 +0000 2007') + self.assertEqual(self._GetSampleTrend(), trend) + + def testEq(self): + '''Test the twitter.Trend __eq__ method''' + trend = twitter.Trend() + trend.name = 'Kesuke Miyagi' + trend.query = 'Kesuke Miyagi' + trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' + self.assertEqual(trend, self._GetSampleTrend()) diff --git a/tests/test_user.py b/tests/test_user.py new file mode 100644 index 00000000..23f7429e --- /dev/null +++ b/tests/test_user.py @@ -0,0 +1,95 @@ +import twitter +import json +import unittest + + +class UserTest(unittest.TestCase): + SAMPLE_JSON = '''{"description": "Indeterminate things", "id": 673483, "location": "San Francisco, CA", "name": "DeWitt", "profile_image_url": "https://twitter.com/system/user/profile_image/673483/normal/me.jpg", "screen_name": "dewitt", "status": {"created_at": "Fri Jan 26 17:28:19 +0000 2007", "id": 4212713, "text": "\\"Select all\\" and archive your Gmail inbox. The page loads so much faster!"}, "url": "http://unto.net/"}''' + + def _GetSampleStatus(self): + return twitter.Status(created_at='Fri Jan 26 17:28:19 +0000 2007', + id=4212713, + text='"Select all" and archive your Gmail inbox. ' + ' The page loads so much faster!') + + def _GetSampleUser(self): + return twitter.User(id=673483, + name='DeWitt', + screen_name='dewitt', + description=u'Indeterminate things', + location='San Francisco, CA', + url='http://unto.net/', + profile_image_url='https://twitter.com/system/user/prof' + 'ile_image/673483/normal/me.jpg', + status=self._GetSampleStatus()) + + + def testInit(self): + '''Test the twitter.User constructor''' + user = twitter.User(id=673483, + name='DeWitt', + screen_name='dewitt', + description=u'Indeterminate things', + url='https://twitter.com/dewitt', + profile_image_url='https://twitter.com/system/user/prof' + 'ile_image/673483/normal/me.jpg', + status=self._GetSampleStatus()) + + def testProperties(self): + '''Test all of the twitter.User properties''' + user = twitter.User() + user.id = 673483 + self.assertEqual(673483, user.id) + user.name = 'DeWitt' + self.assertEqual('DeWitt', user.name) + user.screen_name = 'dewitt' + self.assertEqual('dewitt', user.screen_name) + user.description = 'Indeterminate things' + self.assertEqual('Indeterminate things', user.description) + user.location = 'San Francisco, CA' + self.assertEqual('San Francisco, CA', user.location) + user.profile_image_url = 'https://twitter.com/system/user/profile_i' \ + 'mage/673483/normal/me.jpg' + self.assertEqual('https://twitter.com/system/user/profile_image/6734' + '83/normal/me.jpg', user.profile_image_url) + self.status = self._GetSampleStatus() + self.assertEqual(4212713, self.status.id) + + def testAsJsonString(self): + '''Test the twitter.User AsJsonString method''' + self.assertEqual(UserTest.SAMPLE_JSON, + self._GetSampleUser().AsJsonString()) + + def testAsDict(self): + '''Test the twitter.User AsDict method''' + user = self._GetSampleUser() + data = user.AsDict() + self.assertEqual(673483, data['id']) + self.assertEqual('DeWitt', data['name']) + self.assertEqual('dewitt', data['screen_name']) + self.assertEqual('Indeterminate things', data['description']) + self.assertEqual('San Francisco, CA', data['location']) + self.assertEqual('https://twitter.com/system/user/profile_image/6734' + '83/normal/me.jpg', data['profile_image_url']) + self.assertEqual('http://unto.net/', data['url']) + self.assertEqual(4212713, data['status']['id']) + + def testEq(self): + '''Test the twitter.User __eq__ method''' + user = twitter.User() + user.id = 673483 + user.name = 'DeWitt' + user.screen_name = 'dewitt' + user.description = 'Indeterminate things' + user.location = 'San Francisco, CA' + user.profile_image_url = 'https://twitter.com/system/user/profile_image/67' \ + '3483/normal/me.jpg' + user.url = 'http://unto.net/' + user.status = self._GetSampleStatus() + self.assertEqual(user, self._GetSampleUser()) + + def testNewFromJsonDict(self): + '''Test the twitter.User NewFromJsonDict method''' + data = json.loads(UserTest.SAMPLE_JSON) + user = twitter.User.NewFromJsonDict(data) + self.assertEqual(self._GetSampleUser(), user) diff --git a/twitter_test.py b/twitter_test.py deleted file mode 100755 index 06dbc48b..00000000 --- a/twitter_test.py +++ /dev/null @@ -1,677 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*-# -# vim: sw=2 ts=2 sts=2 -# -# Copyright 2007 The Python-Twitter Developers -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -'''Unit tests for the twitter.py library''' - -__author__ = 'python-twitter@googlegroups.com' - -import os -import json #as simplejson -import time -import calendar -import unittest -import urllib - -import twitter - - -class StatusTest(unittest.TestCase): - SAMPLE_JSON = '''{"created_at": "Fri Jan 26 23:17:14 +0000 2007", "id": 4391023, "text": "A l\u00e9gp\u00e1rn\u00e1s haj\u00f3m tele van angoln\u00e1kkal.", "user": {"description": "Canvas. JC Penny. Three ninety-eight.", "id": 718443, "location": "Okinawa, Japan", "name": "Kesuke Miyagi", "profile_image_url": "https://twitter.com/system/user/profile_image/718443/normal/kesuke.png", "screen_name": "kesuke", "url": "https://twitter.com/kesuke"}}''' - - def _GetSampleUser(self): - return twitter.User(id=718443, - name='Kesuke Miyagi', - screen_name='kesuke', - description=u'Canvas. JC Penny. Three ninety-eight.', - location='Okinawa, Japan', - url='https://twitter.com/kesuke', - profile_image_url='https://twitter.com/system/user/pro' - 'file_image/718443/normal/kesuke.pn' - 'g') - - def _GetSampleStatus(self): - return twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', - id=4391023, - text=u'A légpárnás hajóm tele van angolnákkal.', - user=self._GetSampleUser()) - - def testInit(self): - '''Test the twitter.Status constructor''' - status = twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', - id=4391023, - text=u'A légpárnás hajóm tele van angolnákkal.', - user=self._GetSampleUser()) - - def testProperties(self): - '''Test all of the twitter.Status properties''' - status = twitter.Status() - status.id = 1 - self.assertEqual(1, status.id) - created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) - status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.created_at) - self.assertEqual(created_at, status.created_at_in_seconds) - status.now = created_at + 10 - self.assertEqual('about 10 seconds ago', status.relative_created_at) - status.user = self._GetSampleUser() - self.assertEqual(718443, status.user.id) - - def _ParseDate(self, string): - return calendar.timegm(time.strptime(string, '%b %d %H:%M:%S %Y')) - - def testRelativeCreatedAt(self): - '''Test various permutations of Status relative_created_at''' - status = twitter.Status(created_at='Fri Jan 01 12:00:00 +0000 2007') - status.now = self._ParseDate('Jan 01 12:00:00 2007') - self.assertEqual('about a second ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:01 2007') - self.assertEqual('about a second ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:02 2007') - self.assertEqual('about 2 seconds ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:05 2007') - self.assertEqual('about 5 seconds ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:50 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:01:00 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:01:10 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:02:00 2007') - self.assertEqual('about 2 minutes ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:31:50 2007') - self.assertEqual('about 31 minutes ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:50:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 13:00:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 13:10:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 14:00:00 2007') - self.assertEqual('about 2 hours ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 19:00:00 2007') - self.assertEqual('about 7 hours ago', status.relative_created_at) - status.now = self._ParseDate('Jan 02 11:30:00 2007') - self.assertEqual('about a day ago', status.relative_created_at) - status.now = self._ParseDate('Jan 04 12:00:00 2007') - self.assertEqual('about 3 days ago', status.relative_created_at) - status.now = self._ParseDate('Feb 04 12:00:00 2007') - self.assertEqual('about 34 days ago', status.relative_created_at) - - def testAsJsonString(self): - '''Test the twitter.Status AsJsonString method''' - self.assertEqual(StatusTest.SAMPLE_JSON, - self._GetSampleStatus().AsJsonString()) - - def testAsDict(self): - '''Test the twitter.Status AsDict method''' - status = self._GetSampleStatus() - data = status.AsDict() - self.assertEqual(4391023, data['id']) - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', data['created_at']) - self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', data['text']) - self.assertEqual(718443, data['user']['id']) - - def testEq(self): - '''Test the twitter.Status __eq__ method''' - status = twitter.Status() - status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' - status.id = 4391023 - status.text = u'A légpárnás hajóm tele van angolnákkal.' - status.user = self._GetSampleUser() - self.assertEqual(status, self._GetSampleStatus()) - - def testNewFromJsonDict(self): - '''Test the twitter.Status NewFromJsonDict method''' - data = json.loads(StatusTest.SAMPLE_JSON) - status = twitter.Status.NewFromJsonDict(data) - self.assertEqual(self._GetSampleStatus(), status) - - -class UserTest(unittest.TestCase): - SAMPLE_JSON = '''{"description": "Indeterminate things", "id": 673483, "location": "San Francisco, CA", "name": "DeWitt", "profile_image_url": "https://twitter.com/system/user/profile_image/673483/normal/me.jpg", "screen_name": "dewitt", "status": {"created_at": "Fri Jan 26 17:28:19 +0000 2007", "id": 4212713, "text": "\\"Select all\\" and archive your Gmail inbox. The page loads so much faster!"}, "url": "http://unto.net/"}''' - - def _GetSampleStatus(self): - return twitter.Status(created_at='Fri Jan 26 17:28:19 +0000 2007', - id=4212713, - text='"Select all" and archive your Gmail inbox. ' - ' The page loads so much faster!') - - def _GetSampleUser(self): - return twitter.User(id=673483, - name='DeWitt', - screen_name='dewitt', - description=u'Indeterminate things', - location='San Francisco, CA', - url='http://unto.net/', - profile_image_url='https://twitter.com/system/user/prof' - 'ile_image/673483/normal/me.jpg', - status=self._GetSampleStatus()) - - - def testInit(self): - '''Test the twitter.User constructor''' - user = twitter.User(id=673483, - name='DeWitt', - screen_name='dewitt', - description=u'Indeterminate things', - url='https://twitter.com/dewitt', - profile_image_url='https://twitter.com/system/user/prof' - 'ile_image/673483/normal/me.jpg', - status=self._GetSampleStatus()) - - def testProperties(self): - '''Test all of the twitter.User properties''' - user = twitter.User() - user.id = 673483 - self.assertEqual(673483, user.id) - user.name = 'DeWitt' - self.assertEqual('DeWitt', user.name) - user.screen_name = 'dewitt' - self.assertEqual('dewitt', user.screen_name) - user.description = 'Indeterminate things' - self.assertEqual('Indeterminate things', user.description) - user.location = 'San Francisco, CA' - self.assertEqual('San Francisco, CA', user.location) - user.profile_image_url = 'https://twitter.com/system/user/profile_i' \ - 'mage/673483/normal/me.jpg' - self.assertEqual('https://twitter.com/system/user/profile_image/6734' - '83/normal/me.jpg', user.profile_image_url) - self.status = self._GetSampleStatus() - self.assertEqual(4212713, self.status.id) - - def testAsJsonString(self): - '''Test the twitter.User AsJsonString method''' - self.assertEqual(UserTest.SAMPLE_JSON, - self._GetSampleUser().AsJsonString()) - - def testAsDict(self): - '''Test the twitter.User AsDict method''' - user = self._GetSampleUser() - data = user.AsDict() - self.assertEqual(673483, data['id']) - self.assertEqual('DeWitt', data['name']) - self.assertEqual('dewitt', data['screen_name']) - self.assertEqual('Indeterminate things', data['description']) - self.assertEqual('San Francisco, CA', data['location']) - self.assertEqual('https://twitter.com/system/user/profile_image/6734' - '83/normal/me.jpg', data['profile_image_url']) - self.assertEqual('http://unto.net/', data['url']) - self.assertEqual(4212713, data['status']['id']) - - def testEq(self): - '''Test the twitter.User __eq__ method''' - user = twitter.User() - user.id = 673483 - user.name = 'DeWitt' - user.screen_name = 'dewitt' - user.description = 'Indeterminate things' - user.location = 'San Francisco, CA' - user.profile_image_url = 'https://twitter.com/system/user/profile_image/67' \ - '3483/normal/me.jpg' - user.url = 'http://unto.net/' - user.status = self._GetSampleStatus() - self.assertEqual(user, self._GetSampleUser()) - - def testNewFromJsonDict(self): - '''Test the twitter.User NewFromJsonDict method''' - data = json.loads(UserTest.SAMPLE_JSON) - user = twitter.User.NewFromJsonDict(data) - self.assertEqual(self._GetSampleUser(), user) - - -class TrendTest(unittest.TestCase): - SAMPLE_JSON = '''{"name": "Kesuke Miyagi", "query": "Kesuke Miyagi"}''' - - def _GetSampleTrend(self): - return twitter.Trend(name='Kesuke Miyagi', - query='Kesuke Miyagi', - timestamp='Fri Jan 26 23:17:14 +0000 2007') - - def testInit(self): - '''Test the twitter.Trend constructor''' - trend = twitter.Trend(name='Kesuke Miyagi', - query='Kesuke Miyagi', - timestamp='Fri Jan 26 23:17:14 +0000 2007') - - def testProperties(self): - '''Test all of the twitter.Trend properties''' - trend = twitter.Trend() - trend.name = 'Kesuke Miyagi' - self.assertEqual('Kesuke Miyagi', trend.name) - trend.query = 'Kesuke Miyagi' - self.assertEqual('Kesuke Miyagi', trend.query) - trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' - self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', trend.timestamp) - - def testNewFromJsonDict(self): - '''Test the twitter.Trend NewFromJsonDict method''' - data = json.loads(TrendTest.SAMPLE_JSON) - trend = twitter.Trend.NewFromJsonDict(data, timestamp='Fri Jan 26 23:17:14 +0000 2007') - self.assertEqual(self._GetSampleTrend(), trend) - - def testEq(self): - '''Test the twitter.Trend __eq__ method''' - trend = twitter.Trend() - trend.name = 'Kesuke Miyagi' - trend.query = 'Kesuke Miyagi' - trend.timestamp = 'Fri Jan 26 23:17:14 +0000 2007' - self.assertEqual(trend, self._GetSampleTrend()) - - -class FileCacheTest(unittest.TestCase): - def testInit(self): - """Test the twitter._FileCache constructor""" - cache = twitter._FileCache() - self.assert_(cache is not None, 'cache is None') - - def testSet(self): - """Test the twitter._FileCache.Set method""" - cache = twitter._FileCache() - cache.Set("foo", 'Hello World!') - cache.Remove("foo") - - def testRemove(self): - """Test the twitter._FileCache.Remove method""" - cache = twitter._FileCache() - cache.Set("foo", 'Hello World!') - cache.Remove("foo") - data = cache.Get("foo") - self.assertEqual(data, None, 'data is not None') - - def testGet(self): - """Test the twitter._FileCache.Get method""" - cache = twitter._FileCache() - cache.Set("foo", 'Hello World!') - data = cache.Get("foo") - self.assertEqual('Hello World!', data) - cache.Remove("foo") - - def testGetCachedTime(self): - """Test the twitter._FileCache.GetCachedTime method""" - now = time.time() - cache = twitter._FileCache() - cache.Set("foo", 'Hello World!') - cached_time = cache.GetCachedTime("foo") - delta = cached_time - now - self.assert_(delta <= 1, - 'Cached time differs from clock time by more than 1 second.') - cache.Remove("foo") - - -class ApiTest(unittest.TestCase): - def setUp(self): - self._urllib = MockUrllib() - time.sleep(15) - api = twitter.Api(consumer_key='yDkaORxEcwX6SheX6pa1fw', - consumer_secret='VYIGd2KITohR4ygmHrcyZgV0B74CXi5wsT1eryVtw', - access_token_key='227846642-8IjK2K32CDFt3682SNOOpnzegAja3TyVpzFOGrQj', - access_token_secret='L6of20EZdBv48EA2GE8Js6roIfZFnCKBpoPwvBDxF8', - cache=None) - api.SetUrllib(self._urllib) - self._api = api - print "Testing the API class. This test is time controlled" - - def testTwitterError(self): - '''Test that twitter responses containing an error message are wrapped.''' - self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', - curry(self._OpenTestData, 'public_timeline_error.json')) - # Manually try/catch so we can check the exception's value - try: - statuses = self._api.GetUserTimeline() - except twitter.TwitterError, error: - # If the error message matches, the test passes - self.assertEqual('test error', error.message) - else: - self.fail('TwitterError expected') - - def testGetUserTimeline(self): - '''Test the twitter.Api GetUserTimeline method''' - time.sleep(8) - print 'Testing GetUserTimeline' - self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json?count=1&screen_name=kesuke', - curry(self._OpenTestData, 'user_timeline-kesuke.json')) - statuses = self._api.GetUserTimeline(screen_name='kesuke', count=1) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(89512102, statuses[0].id) - self.assertEqual(718443, statuses[0].user.id) - - #def testGetFriendsTimeline(self): - # '''Test the twitter.Api GetFriendsTimeline method''' - # self._AddHandler('https://api.twitter.com/1.1/statuses/friends_timeline/kesuke.json', - # curry(self._OpenTestData, 'friends_timeline-kesuke.json')) - # statuses = self._api.GetFriendsTimeline('kesuke') - # # This is rather arbitrary, but spot checking is better than nothing - # self.assertEqual(20, len(statuses)) - # self.assertEqual(718443, statuses[0].user.id) - - def testGetStatus(self): - '''Test the twitter.Api GetStatus method''' - time.sleep(8) - print 'Testing GetStatus' - self._AddHandler('https://api.twitter.com/1.1/statuses/show.json?include_my_retweet=1&id=89512102', - curry(self._OpenTestData, 'show-89512102.json')) - status = self._api.GetStatus(89512102) - self.assertEqual(89512102, status.id) - self.assertEqual(718443, status.user.id) - - def testDestroyStatus(self): - '''Test the twitter.Api DestroyStatus method''' - time.sleep(8) - print 'Testing DestroyStatus' - self._AddHandler('https://api.twitter.com/1.1/statuses/destroy/103208352.json', - curry(self._OpenTestData, 'status-destroy.json')) - status = self._api.DestroyStatus(103208352) - self.assertEqual(103208352, status.id) - - def testPostUpdate(self): - '''Test the twitter.Api PostUpdate method''' - time.sleep(8) - print 'Testing PostUpdate' - self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', - curry(self._OpenTestData, 'update.json')) - status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) - - def testPostRetweet(self): - '''Test the twitter.Api PostRetweet method''' - time.sleep(8) - print 'Testing PostRetweet' - self._AddHandler('https://api.twitter.com/1.1/statuses/retweet/89512102.json', - curry(self._OpenTestData, 'retweet.json')) - status = self._api.PostRetweet(89512102) - self.assertEqual(89512102, status.id) - - def testPostUpdateLatLon(self): - '''Test the twitter.Api PostUpdate method, when used in conjunction with latitude and longitude''' - time.sleep(8) - print 'Testing PostUpdateLatLon' - self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', - curry(self._OpenTestData, 'update_latlong.json')) - #test another update with geo parameters, again test somewhat arbitrary - status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8'), latitude=54.2, - longitude=-2) - self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) - self.assertEqual(u'Point', status.GetGeo()['type']) - self.assertEqual(26.2, status.GetGeo()['coordinates'][0]) - self.assertEqual(127.5, status.GetGeo()['coordinates'][1]) - - def testGetReplies(self): - '''Test the twitter.Api GetReplies method''' - time.sleep(8) - print 'Testing GetReplies' - self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', - curry(self._OpenTestData, 'replies.json')) - statuses = self._api.GetReplies() - self.assertEqual(36657062, statuses[0].id) - - def testGetRetweetsOfMe(self): - '''Test the twitter.API GetRetweetsOfMe method''' - time.sleep(8) - print 'Testing GetRetweetsOfMe' - self._AddHandler('https://api.twitter.com/1.1/statuses/retweets_of_me.json', - curry(self._OpenTestData, 'retweets_of_me.json')) - retweets = self._api.GetRetweetsOfMe() - self.assertEqual(253650670274637824, retweets[0].id) - - def testGetFriends(self): - '''Test the twitter.Api GetFriends method''' - time.sleep(8) - print 'Testing GetFriends' - self._AddHandler('https://api.twitter.com/1.1/friends/list.json?cursor=123', - curry(self._OpenTestData, 'friends.json')) - users = self._api.GetFriends(cursor=123) - buzz = [u.status for u in users if u.screen_name == 'buzz'] - self.assertEqual(89543882, buzz[0].id) - - def testGetFollowers(self): - '''Test the twitter.Api GetFollowers method''' - time.sleep(8) - print 'Testing GetFollowers' - self._AddHandler('https://api.twitter.com/1.1/followers/list.json?cursor=-1', - curry(self._OpenTestData, 'followers.json')) - users = self._api.GetFollowers() - # This is rather arbitrary, but spot checking is better than nothing - alexkingorg = [u.status for u in users if u.screen_name == 'alexkingorg'] - self.assertEqual(89554432, alexkingorg[0].id) - - #def testGetFeatured(self): - # '''Test the twitter.Api GetFeatured method''' - # self._AddHandler('https://api.twitter.com/1.1/statuses/featured.json', - # curry(self._OpenTestData, 'featured.json')) - # users = self._api.GetFeatured() - # # This is rather arbitrary, but spot checking is better than nothing - # stevenwright = [u.status for u in users if u.screen_name == 'stevenwright'] - # self.assertEqual(86991742, stevenwright[0].id) - - def testGetDirectMessages(self): - '''Test the twitter.Api GetDirectMessages method''' - time.sleep(8) - print 'Testing GetDirectMessages' - self._AddHandler('https://api.twitter.com/1.1/direct_messages.json', - curry(self._OpenTestData, 'direct_messages.json')) - statuses = self._api.GetDirectMessages() - self.assertEqual(u'A légpárnás hajóm tele van angolnákkal.', statuses[0].text) - - def testPostDirectMessage(self): - '''Test the twitter.Api PostDirectMessage method''' - time.sleep(8) - print 'Testing PostDirectMessage' - self._AddHandler('https://api.twitter.com/1.1/direct_messages/new.json', - curry(self._OpenTestData, 'direct_messages-new.json')) - status = self._api.PostDirectMessage('test', u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) - - def testDestroyDirectMessage(self): - '''Test the twitter.Api DestroyDirectMessage method''' - time.sleep(8) - print 'Testing DestroyDirectMessage' - self._AddHandler('https://api.twitter.com/1.1/direct_messages/destroy.json', - curry(self._OpenTestData, 'direct_message-destroy.json')) - status = self._api.DestroyDirectMessage(3496342) - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(673483, status.sender_id) - - def testCreateFriendship(self): - '''Test the twitter.Api CreateFriendship method''' - time.sleep(8) - print 'Testing CreateFriendship' - self._AddHandler('https://api.twitter.com/1.1/friendships/create.json', - curry(self._OpenTestData, 'friendship-create.json')) - user = self._api.CreateFriendship('dewitt') - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(673483, user.id) - - def testDestroyFriendship(self): - '''Test the twitter.Api DestroyFriendship method''' - time.sleep(8) - print 'Testing Destroy Friendship' - self._AddHandler('https://api.twitter.com/1.1/friendships/destroy.json', - curry(self._OpenTestData, 'friendship-destroy.json')) - user = self._api.DestroyFriendship('dewitt') - # This is rather arbitrary, but spot checking is better than nothing - self.assertEqual(673483, user.id) - - def testGetUser(self): - '''Test the twitter.Api GetUser method''' - time.sleep(8) - print 'Testing GetUser' - self._AddHandler('https://api.twitter.com/1.1/users/show.json?user_id=dewitt', - curry(self._OpenTestData, 'show-dewitt.json')) - user = self._api.GetUser('dewitt') - self.assertEqual('dewitt', user.screen_name) - self.assertEqual(89586072, user.status.id) - - def _AddHandler(self, url, callback): - self._urllib.AddHandler(url, callback) - - def _GetTestDataPath(self, filename): - directory = os.path.dirname(os.path.abspath(__file__)) - test_data_dir = os.path.join(directory, 'testdata') - return os.path.join(test_data_dir, filename) - - def _OpenTestData(self, filename): - f = open(self._GetTestDataPath(filename)) - # make sure that the returned object contains an .info() method: - # headers are set to {} - return urllib.addinfo(f, {}) - - -class MockUrllib(object): - '''A mock replacement for urllib that hardcodes specific responses.''' - - def __init__(self): - self._handlers = {} - self.HTTPBasicAuthHandler = MockHTTPBasicAuthHandler - - def AddHandler(self, url, callback): - self._handlers[url] = callback - - def build_opener(self, *handlers): - return MockOpener(self._handlers) - - def HTTPHandler(self, *args, **kwargs): - return None - - def HTTPSHandler(self, *args, **kwargs): - return None - - def OpenerDirector(self): - return self.build_opener() - - def ProxyHandler(self, *args, **kwargs): - return None - - -class MockOpener(object): - '''A mock opener for urllib''' - - def __init__(self, handlers): - self._handlers = handlers - self._opened = False - - def open(self, url, data=None): - if self._opened: - raise Exception('MockOpener already opened.') - - # Remove parameters from URL - they're only added by oauth and we - # don't want to test oauth - if '?' in url: - # We split using & and filter on the beginning of each key - # This is crude but we have to keep the ordering for now - (url, qs) = url.split('?') - - tokens = [token for token in qs.split('&') - if not token.startswith('oauth')] - - if len(tokens) > 0: - url = "%s?%s" % (url, '&'.join(tokens)) - - if url in self._handlers: - self._opened = True - return self._handlers[url]() - else: - print url - print self._handlers - - raise Exception('Unexpected URL %s (Checked: %s)' % (url, self._handlers)) - - def add_handler(self, *args, **kwargs): - pass - - def close(self): - if not self._opened: - raise Exception('MockOpener closed before it was opened.') - self._opened = False - - -class ParseTest(unittest.TestCase): - """ Test the ParseTweet class """ - - def testParseTweets(self): - handles4 = u"""Do not use this word! Hurting me! @raja7727: @qadirbasha @manion @Jayks3 உடன்பிறப்பு”"""; - - data = twitter.ParseTweet("@twitter", handles4) - self.assertEqual([data.RT, data.MT, len(data.UserHandles)], [False, False, 4]) - - hashtag_n_URL = u"மனதிற்கு மிகவும் நெருக்கமான பாடல்! உயிரையே கொடுக்கலாம் சார்! #KeladiKanmani https://www.youtube.com/watch?v=FHTiG_g2fM4 … #HBdayRajaSir"; - - data = twitter.ParseTweet("@twitter", hashtag_n_URL) - self.assertEqual([len(data.Hashtags), len(data.URLs)], [2, 1]) - self.assertEqual(len(data.Emoticon),0) - - url_only = u"""The #Rainbow #Nebula, 544,667 #lightyears away. pic.twitter.com/2A4wSUK25A"""; - data = twitter.ParseTweet("@twitter", url_only) - self.assertEqual([data.MT, len(data.Hashtags), len(data.URLs)], [False, 3, 1]) - self.assertEqual(len(data.Emoticon),0) - - url_handle = u"""RT ‏@BarackObama POTUS recommends Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; - data = twitter.ParseTweet("@twitter", url_handle) - self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) - self.assertEqual(len(data.Emoticon),0) - - def testEmoticon(self): - url_handle = u"""RT ‏@BarackObama POTUS recommends :-) Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; - data = twitter.ParseTweet("@twitter", url_handle) - self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) - self.assertEqual(len(data.Emoticon),1) - - url_handle = u"""RT @cats ^-^ cute! But kitty litter :-( #unrelated picture"""; - data = twitter.ParseTweet("@cats", url_handle) - self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 0, 1]) - self.assertEqual(len(data.Emoticon),2) - self.assertEqual(data.Emoticon,['^-^',':-(']) - -class MockHTTPBasicAuthHandler(object): - '''A mock replacement for HTTPBasicAuthHandler''' - - def add_password(self, realm, uri, user, passwd): - # TODO(dewitt): Add verification that the proper args are passed - pass - - -class curry: - # http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52549 - - def __init__(self, fun, *args, **kwargs): - self.fun = fun - self.pending = args[:] - self.kwargs = kwargs.copy() - - def __call__(self, *args, **kwargs): - if kwargs and self.kwargs: - kw = self.kwargs.copy() - kw.update(kwargs) - else: - kw = kwargs or self.kwargs - return self.fun(*(self.pending + args), **kw) - - -def suite(): - suite = unittest.TestSuite() - suite.addTests(unittest.makeSuite(FileCacheTest)) - suite.addTests(unittest.makeSuite(StatusTest)) - suite.addTests(unittest.makeSuite(UserTest)) - suite.addTests(unittest.makeSuite(ApiTest)) - suite.addTests(unittest.makeSuite(ParseTest)) - return suite - - -if __name__ == '__main__': - unittest.main() From 14093f0b16938cc2c83631a69c3810ae7531ebdb Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sun, 26 Apr 2015 13:57:19 +0100 Subject: [PATCH 036/533] New instructions for running tests --- README.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index c3ef7dcc..254e7c07 100644 --- a/README.rst +++ b/README.rst @@ -26,8 +26,8 @@ You can install python-twitter using:: Testing:: - $ python twitter_test.py - + $ python test.py + ================ Getting the code ================ @@ -38,7 +38,7 @@ Check out the latest development version anonymously with:: $ git clone git://github.com/bear/python-twitter.git $ cd python-twitter - + Setup a virtual environment and install dependencies: $ make env @@ -46,11 +46,11 @@ Setup a virtual environment and install dependencies: Activate the virtual environment created: $ source env/bin/activate - + Run tests: $ make test - + To see other options available, run: $ make help @@ -172,13 +172,13 @@ License ------- | Copyright 2007-2014 The Python-Twitter Developers -| +| | Licensed under the Apache License, Version 2.0 (the 'License'); | you may not use this file except in compliance with the License. | You may obtain a copy of the License at -| +| | http://www.apache.org/licenses/LICENSE-2.0 -| +| | Unless required by applicable law or agreed to in writing, software | distributed under the License is distributed on an 'AS IS' BASIS, | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. From 9fd80531b3e7dc8fb78bd506f7b9f1a4cf767caf Mon Sep 17 00:00:00 2001 From: Samyoul Date: Mon, 4 May 2015 21:57:05 +0100 Subject: [PATCH 037/533] Fix for PostMultipleMedia media-ids-failed-error After receiving many of the following errors: {"errors":[{"code":324,"message":"The validation of media ids failed."}]} And reading here: https://twittercommunity.com/t/the-validation-of-media-ids-failed-error-code-324/29304 I found that Twitter would give this error if you tried to upload more than 4 images at a time. As an immediate fix I'm truncating the list to the maximum that twitter will accept. --- twitter/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index f5cffb0c..25aef26a 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1000,6 +1000,8 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, if type(media) is not list: raise TwitterError("Must by multiple media elements") + + del media[4:] url = '%s/media/upload.json' % self.upload_url From c944eab6f07984dc40e4cfa64a18fd1cc0424f6f Mon Sep 17 00:00:00 2001 From: Samyoul Date: Mon, 4 May 2015 22:35:56 +0100 Subject: [PATCH 038/533] Raise Error for exceeding maximum element limit --- twitter/api.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 25aef26a..c1585fe3 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1000,8 +1000,9 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, if type(media) is not list: raise TwitterError("Must by multiple media elements") - - del media[4:] + + if media.__len__() > 4: + raise TwitterError("Maximum of 4 media elements can be allocated to a tweet") url = '%s/media/upload.json' % self.upload_url From 9b13ac6dde0429186875a8e0b325327c284b7ac2 Mon Sep 17 00:00:00 2001 From: Prasanna Swaminathan Date: Mon, 1 Jun 2015 21:29:10 -0400 Subject: [PATCH 039/533] Update README.rst Fix link formatting --- README.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index 254e7c07..dd2d7359 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Python Twitter A Python wrapper around the Twitter API. -By the Python-Twitter Developers +By the `Python-Twitter Developers `_ .. image:: https://pypip.in/wheel/python-twitter/badge.png :target: https://pypi.python.org/pypi/python-twitter/ @@ -12,9 +12,9 @@ By the Python-Twitter Developers Introduction ============ -This library provides a pure Python interface for the `Twitter API https://dev.twitter.com/`. It works with Python versions from 2.6+. Python 3 support is under development. +This library provides a pure Python interface for the `Twitter API `_. It works with Python versions from 2.6+. Python 3 support is under development. -`Twitter http://twitter.com` provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API https://dev.twitter.com/overview/documentation` and this library is intended to make it even easier for Python programmers to use. +`Twitter `_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API `_ and this library is intended to make it even easier for Python programmers to use. ========== Installing @@ -94,13 +94,13 @@ The API is exposed via the ``twitter.Api`` class. The python-twitter library now only supports OAuth authentication as the Twitter devs have indicated that OAuth is the only method that will be supported moving forward. -To generate an Access Token you have to pick what type of access your application requires and then do one of the following:: +To generate an Access Token you have to pick what type of access your application requires and then do one of the following: -- `Generate a token to access your own account ` -- `Generate a pin-based token ` -- use the helper script `get_access_token.py ` +- `Generate a token to access your own account `_ +- `Generate a pin-based token `_ +- use the helper script `get_access_token.py `_ -For full details see the `Twitter OAuth Overview ` +For full details see the `Twitter OAuth Overview `_ To create an instance of the ``twitter.Api`` with login credentials (Twitter now requires an OAuth Access Token for all API calls):: @@ -143,7 +143,7 @@ There are many more API methods, to read the full API documentation:: Todo ---- -Patches and bug reports are [welcome](https://github.com/bear/python-twitter/issues/new), just please keep the style consistent with the original source. +Patches and bug reports are `welcome `_, just please keep the style consistent with the original source. Add more example scripts. @@ -157,7 +157,7 @@ The ``twitter.Status`` and ``twitter.User`` classes could perform more validatio More Information ---------------- -Please visit `the google group http://groups.google.com/group/python-twitter` for more discussion. +Please visit `the google group `_ for more discussion. ------------ Contributors From c8c38eb02a9da0ffa0f8338b78ed2e67c57f672a Mon Sep 17 00:00:00 2001 From: Chad Miller Date: Fri, 12 Jun 2015 16:21:39 -0400 Subject: [PATCH 040/533] Fix misspelling. --- twitter/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index c1585fe3..e66f0dc9 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -189,7 +189,7 @@ def __init__(self, if consumer_key is not None and (access_token_key is None or access_token_secret is None): print >> sys.stderr, 'Twitter now requires an oAuth Access Token for API calls.' - print >> sys.stderr, 'If your using this library from a command line utility, please' + print >> sys.stderr, 'If you\'re using this library from a command line utility, please' print >> sys.stderr, 'run the included get_access_token.py tool to generate one.' raise TwitterError({'message': "Twitter requires oAuth Access Token for all API access"}) From 7ba43a1fcd0ea5ae6c7484668b6a89a635f75086 Mon Sep 17 00:00:00 2001 From: Taylor Edmiston Date: Sun, 2 Aug 2015 02:52:50 -0400 Subject: [PATCH 041/533] Update GetListsList docstring There was a typo where it was copied and pasted from another method. --- twitter/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index e66f0dc9..f9ab2b89 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2761,7 +2761,7 @@ def GetListsList(self, screen_name, user_id=None, reverse=False): - """Returns a single status message, specified by the id parameter. + """Returns all lists the user subscribes to, including their own. The twitter.Api instance must be authenticated. From 288c57112c0b9a5805f50494075044a4afe6ba50 Mon Sep 17 00:00:00 2001 From: James Quacinella Date: Wed, 12 Aug 2015 14:30:41 -0400 Subject: [PATCH 042/533] Adding changes to pass in proper params to the verifycredentials api call. This includes the ability to get a users email if you have correct permissions. This also needed changes to the User class, to add a new email property. --- twitter/api.py | 23 ++++++++++++++++++++--- twitter/user.py | 22 +++++++++++++++++++--- 2 files changed, 39 insertions(+), 6 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index f9ab2b89..572147ee 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3437,9 +3437,19 @@ def GetUserStream(self, data = self._ParseAndCheckTwitter(line) yield data - def VerifyCredentials(self): + def VerifyCredentials(self, include_entities=None, skip_status=None, include_email=None): """Returns a twitter.User instance if the authenticating user is valid. - + + Args: + include_entities: + Specifies whether to return additional @replies in the stream. + skip_status: + When set to either true, t or 1 statuses will not be included in the returned user object. + include_email: + Use of this parameter requires whitelisting. + When set to true email will be returned in the user objects as a string. If the user does + not have an email address on their account, or if the email address is un-verified, + null will be returned. Returns: A twitter.User instance representing that user if the credentials are valid, None otherwise. @@ -3447,7 +3457,14 @@ def VerifyCredentials(self): if not self.__auth: raise TwitterError({'message': "Api instance must first be given user credentials."}) url = '%s/account/verify_credentials.json' % self.base_url - json_data = self._RequestUrl(url, 'GET') # No_cache + data = {} + if include_entities: + data['include_entities'] = str(include_entities) + if skip_status: + data['skip_status'] = str(skip_status) + if include_email: + data['include_email'] = str(include_email) + json_data = self._RequestUrl(url, 'GET', data) # No_cache data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) diff --git a/twitter/user.py b/twitter/user.py index beb733cc..d44fdf1e 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -168,6 +168,7 @@ class User(object): user.contributors_enabled user.created_at user.listed_count + user.email """ def __init__(self, **kwargs): @@ -202,7 +203,8 @@ def __init__(self, **kwargs): 'notifications': None, 'contributors_enabled': None, 'created_at': None, - 'listed_count': None} + 'listed_count': None, + 'email': None} for (param, default) in param_defaults.iteritems(): setattr(self, param, kwargs.get(param, default)) @@ -428,6 +430,16 @@ def CreatedAt(self): """ return self._created_at + @property + def Email(self): + """Get the setting of email for this user. + + Returns: + email value of the user + """ + return self._email + + def __ne__(self, other): return not self.__eq__(other) @@ -464,7 +476,8 @@ def __eq__(self, other): self.notifications == other.notifications and \ self.contributors_enabled == other.contributors_enabled and \ self.created_at == other.created_at and \ - self.listed_count == other.listed_count + self.listed_count == other.listed_count and \ + self.email == other.email except AttributeError: return False @@ -558,6 +571,8 @@ def AsDict(self): data['created_at'] = self.created_at if self.listed_count: data['listed_count'] = self.listed_count + if self.email: + data['email'] = self.email return data @@ -609,4 +624,5 @@ def NewFromJsonDict(data): notifications=data.get('notifications', None), contributors_enabled=data.get('contributors_enabled', None), created_at=data.get('created_at', None), - listed_count=data.get('listed_count', None)) + listed_count=data.get('listed_count', None), + email=data.get('email', None)) From 1e6b64f4eaa652bd4666f0571ddc8cb76fd90ec3 Mon Sep 17 00:00:00 2001 From: James Quacinella Date: Wed, 12 Aug 2015 14:49:11 -0400 Subject: [PATCH 043/533] Looks like twitter only can use true for this parameter --- twitter/api.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 572147ee..418d9fb1 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3459,11 +3459,12 @@ def VerifyCredentials(self, include_entities=None, skip_status=None, include_ema url = '%s/account/verify_credentials.json' % self.base_url data = {} if include_entities: - data['include_entities'] = str(include_entities) + data['include_entities'] = 1 if skip_status: - data['skip_status'] = str(skip_status) + data['skip_status'] = 1 if include_email: - data['include_email'] = str(include_email) + # TODO: not sure why but the twitter API needs string true, not a 1 + data['include_email'] = 'true' json_data = self._RequestUrl(url, 'GET', data) # No_cache data = self._ParseAndCheckTwitter(json_data.content) From 358142620c565e43a62f437d11e027774dc96cb5 Mon Sep 17 00:00:00 2001 From: Vector919 Date: Wed, 26 Aug 2015 21:19:04 -0400 Subject: [PATCH 044/533] remove references to outdated email API function --- doc/twitter.html | 14 -------------- twitter/api.py | 1 - 2 files changed, 15 deletions(-) diff --git a/doc/twitter.html b/doc/twitter.html index 9a87ec8c..9218cb80 100644 --- a/doc/twitter.html +++ b/doc/twitter.html @@ -172,7 +172,6 @@ href="#Api-DestroyFriendship">DestroyFriendship(user)
        >>> api.CreateFriendship(user)
    -     >>> api.GetUserByEmail(email)
        >>> api.VerifyCredentials()
      @@ -747,19 +746,6 @@ -
    -
    GetUserByEmail(self, email)
    -
    Returns a single user by email address.
    -  
    - Args:
    -   email:
    -     The email of the user to retrieve.
    -  
    - Returns:
    -   A twitter.User instance representing that user
    -
    -
    -
    GetUserRetweets(self, count=None, since_id=None, diff --git a/twitter/api.py b/twitter/api.py index f9ab2b89..d38e1aad 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -100,7 +100,6 @@ class Api(object): >>> api.DestroyFriendship(user) >>> api.CreateFriendship(user) >>> api.LookupFriendship(user) - >>> api.GetUserByEmail(email) >>> api.VerifyCredentials() """ From 0b4eee944f21eec4c81145a454fdb90037967ce1 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Sun, 13 Sep 2015 16:53:09 +0200 Subject: [PATCH 045/533] Python-3 Fix: decode bytestreams --- twitter/api.py | 102 ++++++++++++++++++++++++------------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 2bfd3a22..be1ac867 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -259,7 +259,7 @@ def GetHelpConfiguration(self): if self._config is None: url = '%s/help/configuration.json' % self.base_url json = self._RequestUrl(url, 'GET') - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) self._config = data return self._config @@ -379,7 +379,7 @@ def GetSearch(self, # Make and send requests url = '%s/search/tweets.json' % self.base_url json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) # Return built list of statuses return [Status.NewFromJsonDict(x) for x in data['statuses']] @@ -430,7 +430,7 @@ def GetUsersSearch(self, # Make and send requests url = '%s/users/search.json' % self.base_url json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [User.NewFromJsonDict(x) for x in data] def GetTrendsCurrent(self, exclude=None): @@ -467,7 +467,7 @@ def GetTrendsWoeid(self, id, exclude=None): parameters['exclude'] = exclude json = self._RequestUrl(url, verb='GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) trends = [] timestamp = data[0]['as_of'] @@ -558,7 +558,7 @@ def GetHomeTimeline(self, if not include_entities: parameters['include_entities'] = 'false' json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -643,7 +643,7 @@ def GetUserTimeline(self, parameters['exclude_replies'] = 1 json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -696,7 +696,7 @@ def GetStatus(self, parameters['include_entities'] = 'none' json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -783,7 +783,7 @@ def GetStatusOembed(self, parameters['lang'] = lang json = self._RequestUrl(request_url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return data @@ -812,7 +812,7 @@ def DestroyStatus(self, id, trim_user=False): post_data['trim_user'] = 1 json = self._RequestUrl(url, 'POST', data=post_data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -901,7 +901,7 @@ def PostUpdate(self, data['trim_user'] = 'true' json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -970,7 +970,7 @@ def PostMedia(self, data['display_coordinates'] = 'true' json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1028,7 +1028,7 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, data['media'] = media[m].read() json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) media_ids += str(data['media_id_string']) if m is not len(media) - 1: @@ -1039,7 +1039,7 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, url = '%s/statuses/update.json' % self.base_url json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) def PostUpdates(self, @@ -1109,7 +1109,7 @@ def PostRetweet(self, original_id, trim_user=False): if trim_user: data['trim_user'] = 'true' json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1209,7 +1209,7 @@ def GetRetweets(self, raise TwitterError({'message': "count must be an integer"}) json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [Status.NewFromJsonDict(s) for s in data] @@ -1249,7 +1249,7 @@ def GetRetweeters(self, raise TwitterError({'message': "cursor must be an integer"}) break json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1317,7 +1317,7 @@ def GetRetweetsOfMe(self, parameters['include_user_entities'] = include_user_entities json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [Status.NewFromJsonDict(s) for s in data] @@ -1368,7 +1368,7 @@ def GetBlocks(self, while True: parameters['cursor'] = cursor json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1407,7 +1407,7 @@ def DestroyBlock(self, id, trim_user=False): post_data['trim_user'] = 1 json = self._RequestUrl(url, 'POST', data=post_data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1462,7 +1462,7 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip while True: parameters['cursor'] = cursor json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1519,7 +1519,7 @@ def GetFriendIDs(self, while True: parameters['cursor'] = cursor json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1586,7 +1586,7 @@ def GetFollowerIDs(self, parameters['count'] = total_count parameters['cursor'] = cursor json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8').decode("utf-8")) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1656,7 +1656,7 @@ def GetFollowersPaged(self, parameters['cursor'] = cursor json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) if 'next_cursor' in data: next_cursor = data['next_cursor'] @@ -1768,7 +1768,7 @@ def UsersLookup(self, json = self._RequestUrl(url, 'GET', data=parameters) try: - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) except TwitterError as e: _, e, _ = sys.exc_info() t = e.args[0] @@ -1816,7 +1816,7 @@ def GetUser(self, parameters['include_entities'] = 'false' json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -1875,7 +1875,7 @@ def GetDirectMessages(self, parameters['skip_status'] = 1 json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [DirectMessage.NewFromJsonDict(x) for x in data] @@ -1934,7 +1934,7 @@ def GetSentDirectMessages(self, parameters['include_entities'] = 'false' json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [DirectMessage.NewFromJsonDict(x) for x in data] @@ -1970,7 +1970,7 @@ def PostDirectMessage(self, raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return DirectMessage.NewFromJsonDict(data) @@ -1993,7 +1993,7 @@ def DestroyDirectMessage(self, id, include_entities=True): data['include_entities'] = 'false' json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return DirectMessage.NewFromJsonDict(data) @@ -2027,7 +2027,7 @@ def CreateFriendship(self, user_id=None, screen_name=None, follow=True): data['follow'] = 'false' json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2055,7 +2055,7 @@ def DestroyFriendship(self, user_id=None, screen_name=None): raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2085,7 +2085,7 @@ def LookupFriendship(self, user_id=None, screen_name=None): raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) json = self._RequestUrl(url, 'GET', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) if len(data) >= 1: return UserStatus.NewFromJsonDict(data[0]) @@ -2125,7 +2125,7 @@ def CreateFavorite(self, data['include_entities'] = 'false' json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -2162,7 +2162,7 @@ def DestroyFavorite(self, data['include_entities'] = 'false' json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -2210,7 +2210,7 @@ def GetFavorites(self, parameters['include_entities'] = True json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -2279,7 +2279,7 @@ def GetMentions(self, parameters['include_entities'] = 'false' json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -2331,7 +2331,7 @@ def CreateList(self, name, mode=None, description=None): parameters['description'] = description json = self._RequestUrl(url, 'POST', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -2383,7 +2383,7 @@ def DestroyList(self, raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -2435,7 +2435,7 @@ def CreateSubscription(self, raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2487,7 +2487,7 @@ def DestroySubscription(self, raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -2566,7 +2566,7 @@ def ShowSubscription(self, parameters['include_entities'] = True json = self._RequestUrl(url, 'GET', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2623,7 +2623,7 @@ def GetSubscriptions(self, raise TwitterError({'message': "Specify user_id or screen_name"}) json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [List.NewFromJsonDict(x) for x in data['lists']] @@ -2664,7 +2664,7 @@ def GetListsList(self, parameters['reverse'] = 'true' json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [List.NewFromJsonDict(x) for x in data] @@ -2757,7 +2757,7 @@ def GetListTimeline(self, parameters['include_entities'] = 'false' json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -2833,7 +2833,7 @@ def GetListMembers(self, while True: parameters['cursor'] = cursor json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -2922,7 +2922,7 @@ def CreateListsMember(self, url = '%s/lists/members/create.json' % self.base_url json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -3001,7 +3001,7 @@ def DestroyListsMember(self, url = '%s/lists/members/destroy.json' % (self.base_url) json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -3051,7 +3051,7 @@ def GetLists(self, while True: parameters['cursor'] = cursor json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) result += [List.NewFromJsonDict(x) for x in data['lists']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -3115,7 +3115,7 @@ def UpdateProfile(self, data['skip_status'] = skip_status json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -3294,7 +3294,7 @@ def VerifyCredentials(self): raise TwitterError({'message': "Api instance must first be given user credentials."}) url = '%s/account/verify_credentials.json' % self.base_url json = self._RequestUrl(url, 'GET') # No_cache - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -3382,7 +3382,7 @@ def GetRateLimitStatus(self, resource_families=None): parameters['resources'] = resource_families json = self._RequestUrl(url, 'GET', data=parameters) # No-Cache - data = self._ParseAndCheckTwitter(json.content) + data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) return data From fe98ceae6924a328f4f245820a281ba2e1b9814f Mon Sep 17 00:00:00 2001 From: Elias Granja Date: Thu, 24 Sep 2015 20:55:40 -0300 Subject: [PATCH 046/533] Add __repr__ for status --- tests/test_status.py | 4 ++++ twitter/status.py | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/tests/test_status.py b/tests/test_status.py index d6a4ba4d..fd55aba2 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -117,3 +117,7 @@ def testNewFromJsonDict(self): data = json.loads(StatusTest.SAMPLE_JSON) status = twitter.Status.NewFromJsonDict(data) self.assertEqual(self._GetSampleStatus(), status) + + def testStatusRepresentation(self): + status = self._GetSampleStatus() + self.assertEqual("Status(ID=4391023, screen_name='kesuke', created_at='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) \ No newline at end of file diff --git a/twitter/status.py b/twitter/status.py index 253361da..f4c39884 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -399,6 +399,15 @@ def __str__(self): """ return self.AsJsonString() + def __repr__(self): + if self.user: + representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % ( + self.id, self.user.screen_name, self.created_at) + else: + representation = "Status(ID=%s, created_at='%s')" % ( + self.id, self.created_at) + return representation + def AsJsonString(self, allow_non_ascii=False): """A JSON string representation of this twitter.Status instance. To output non-ascii, set keyword allow_non_ascii=True. From e063e57afe5171814b414d7487feaf9b9052f444 Mon Sep 17 00:00:00 2001 From: Elias Granja Date: Thu, 24 Sep 2015 21:01:51 -0300 Subject: [PATCH 047/533] Add documentation in status.__repr__ --- twitter/status.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/twitter/status.py b/twitter/status.py index f4c39884..8772f9b2 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -400,6 +400,12 @@ def __str__(self): return self.AsJsonString() def __repr__(self): + """A string representation of this twitter.Status instance. + The return value is the ID of status, username and datetime. + Returns: + A string representation of this twitter.Status instance with + the ID of status, username and datetime. + """ if self.user: representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % ( self.id, self.user.screen_name, self.created_at) From c5a068f94a14859a90b3ac4de2149dfd267c1dda Mon Sep 17 00:00:00 2001 From: der-Daniel Date: Sun, 11 Oct 2015 15:59:39 +0200 Subject: [PATCH 048/533] Fixed Non-ASCII printable representation in Trend When __repr__ is called on a Trend object, non-ASCII character leads to a UnicodeEncodeError. --- twitter/trend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/trend.py b/twitter/trend.py index 30d2ca17..2a094c7c 100644 --- a/twitter/trend.py +++ b/twitter/trend.py @@ -13,7 +13,7 @@ def __init__(self, name=None, query=None, timestamp=None, url=None): self.url = url def __repr__(self): - return self.name + return self.name.encode('utf-8') def __str__(self): return 'Name: %s\nQuery: %s\nTimestamp: %s\nSearch URL: %s\n' % ( From 7d1433119a7484707c1ae4261cdd826c78e9ad9f Mon Sep 17 00:00:00 2001 From: Jason Held Date: Mon, 12 Oct 2015 21:57:37 -0400 Subject: [PATCH 049/533] adds UpdateFriendship (shared Add/Edit friendship) --- twitter/api.py | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index d38e1aad..f664fd70 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2056,7 +2056,14 @@ def CreateFriendship(self, user_id=None, screen_name=None, follow=True): Returns: A twitter.User instance representing the befriended user. """ - url = '%s/friendships/create.json' % (self.base_url) + return self._AddOrEditFriendship(user_id=user_id, screen_name=screen_name, follow=follow) + + def _AddOrEditFriendship(self, user_id=None, screen_name=None, uri_end='create', follow_key='follow', follow=True): + """ + Shared method for Create/Update Friendship. + + """ + url = '%s/friendships/%s.json' % (self.base_url, uri_end) data = {} if user_id: data['user_id'] = user_id @@ -2064,16 +2071,35 @@ def CreateFriendship(self, user_id=None, screen_name=None, follow=True): data['screen_name'] = screen_name else: raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) - if follow: - data['follow'] = 'true' - else: - data['follow'] = 'false' + follow_json = json.dumps(follow) + data['{}'.format(follow_key)] = follow_json json_data = self._RequestUrl(url, 'POST', data=data) data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) + def UpdateFriendship(self, user_id=None, screen_name=None, follow=True, **kwargs): # api compat with Create + """Updates a friendship with the user specified by the user_id or screen_name. + + The twitter.Api instance must be authenticated. + + Args: + user_id: + A user_id to update [Optional] + screen_name: + A screen_name to update [Optional] + follow: + Set to False to disable notifications for the target user + device: + Set to False to disable notifications for the target user + + Returns: + A twitter.User instance representing the befriended user. + """ + follow = kwargs.get('device', follow) + return self._AddOrEditFriendship(user_id=user_id, screen_name=screen_name, follow=follow, follow_key='device', uri_end='update') + def DestroyFriendship(self, user_id=None, screen_name=None): """Discontinues friendship with a user_id or screen_name. From 66da3445d4749a8c9016008ad84a95593ff26421 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 5 Nov 2015 00:37:42 -0500 Subject: [PATCH 050/533] fix v3 errors in tests --- tests/test_api.py | 48 +++++++++++++++++++++--------------------- twitter/_file_cache.py | 2 +- twitter/api.py | 3 --- twitter/status.py | 45 +-------------------------------------- 4 files changed, 26 insertions(+), 72 deletions(-) diff --git a/tests/test_api.py b/tests/test_api.py index 78df64fe..3662810c 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -4,10 +4,10 @@ import time import unittest -from apikey import (CONSUMER_KEY, - CONSUMER_SECRET, - ACCESS_TOKEN_KEY, - ACCESS_TOKEN_SECRET) +from .apikey import (CONSUMER_KEY, + CONSUMER_SECRET, + ACCESS_TOKEN_KEY, + ACCESS_TOKEN_SECRET) @unittest.skipIf(not CONSUMER_KEY and not CONSUMER_SECRET, "No tokens provided") @@ -22,7 +22,7 @@ def setUp(self): cache=None) api.SetUrllib(self._urllib) self._api = api - print "Testing the API class. This test is time controlled" + print("Testing the API class. This test is time controlled") def testTwitterError(self): '''Test that twitter responses containing an error message are wrapped.''' @@ -31,7 +31,7 @@ def testTwitterError(self): # Manually try/catch so we can check the exception's value try: statuses = self._api.GetUserTimeline() - except twitter.TwitterError, error: + except twitter.TwitterError as error: # If the error message matches, the test passes self.assertEqual('test error', error.message) else: @@ -40,7 +40,7 @@ def testTwitterError(self): def testGetUserTimeline(self): '''Test the twitter.Api GetUserTimeline method''' time.sleep(8) - print 'Testing GetUserTimeline' + print('Testing GetUserTimeline') self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json?count=1&screen_name=kesuke', curry(self._OpenTestData, 'user_timeline-kesuke.json')) statuses = self._api.GetUserTimeline(screen_name='kesuke', count=1) @@ -60,7 +60,7 @@ def testGetUserTimeline(self): def testGetStatus(self): '''Test the twitter.Api GetStatus method''' time.sleep(8) - print 'Testing GetStatus' + print('Testing GetStatus') self._AddHandler('https://api.twitter.com/1.1/statuses/show.json?include_my_retweet=1&id=89512102', curry(self._OpenTestData, 'show-89512102.json')) status = self._api.GetStatus(89512102) @@ -70,7 +70,7 @@ def testGetStatus(self): def testDestroyStatus(self): '''Test the twitter.Api DestroyStatus method''' time.sleep(8) - print 'Testing DestroyStatus' + print('Testing DestroyStatus') self._AddHandler('https://api.twitter.com/1.1/statuses/destroy/103208352.json', curry(self._OpenTestData, 'status-destroy.json')) status = self._api.DestroyStatus(103208352) @@ -79,7 +79,7 @@ def testDestroyStatus(self): def testPostUpdate(self): '''Test the twitter.Api PostUpdate method''' time.sleep(8) - print 'Testing PostUpdate' + print('Testing PostUpdate') self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', curry(self._OpenTestData, 'update.json')) status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) @@ -89,7 +89,7 @@ def testPostUpdate(self): def testPostRetweet(self): '''Test the twitter.Api PostRetweet method''' time.sleep(8) - print 'Testing PostRetweet' + print('Testing PostRetweet') self._AddHandler('https://api.twitter.com/1.1/statuses/retweet/89512102.json', curry(self._OpenTestData, 'retweet.json')) status = self._api.PostRetweet(89512102) @@ -98,7 +98,7 @@ def testPostRetweet(self): def testPostUpdateLatLon(self): '''Test the twitter.Api PostUpdate method, when used in conjunction with latitude and longitude''' time.sleep(8) - print 'Testing PostUpdateLatLon' + print('Testing PostUpdateLatLon') self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', curry(self._OpenTestData, 'update_latlong.json')) #test another update with geo parameters, again test somewhat arbitrary @@ -112,7 +112,7 @@ def testPostUpdateLatLon(self): def testGetReplies(self): '''Test the twitter.Api GetReplies method''' time.sleep(8) - print 'Testing GetReplies' + print('Testing GetReplies') self._AddHandler('https://api.twitter.com/1.1/statuses/user_timeline.json', curry(self._OpenTestData, 'replies.json')) statuses = self._api.GetReplies() @@ -121,7 +121,7 @@ def testGetReplies(self): def testGetRetweetsOfMe(self): '''Test the twitter.API GetRetweetsOfMe method''' time.sleep(8) - print 'Testing GetRetweetsOfMe' + print('Testing GetRetweetsOfMe') self._AddHandler('https://api.twitter.com/1.1/statuses/retweets_of_me.json', curry(self._OpenTestData, 'retweets_of_me.json')) retweets = self._api.GetRetweetsOfMe() @@ -130,7 +130,7 @@ def testGetRetweetsOfMe(self): def testGetFriends(self): '''Test the twitter.Api GetFriends method''' time.sleep(8) - print 'Testing GetFriends' + print('Testing GetFriends') self._AddHandler('https://api.twitter.com/1.1/friends/list.json?cursor=123', curry(self._OpenTestData, 'friends.json')) users = self._api.GetFriends(cursor=123) @@ -140,7 +140,7 @@ def testGetFriends(self): def testGetFollowers(self): '''Test the twitter.Api GetFollowers method''' time.sleep(8) - print 'Testing GetFollowers' + print('Testing GetFollowers') self._AddHandler('https://api.twitter.com/1.1/followers/list.json?cursor=-1', curry(self._OpenTestData, 'followers.json')) users = self._api.GetFollowers() @@ -160,7 +160,7 @@ def testGetFollowers(self): def testGetDirectMessages(self): '''Test the twitter.Api GetDirectMessages method''' time.sleep(8) - print 'Testing GetDirectMessages' + print('Testing GetDirectMessages') self._AddHandler('https://api.twitter.com/1.1/direct_messages.json', curry(self._OpenTestData, 'direct_messages.json')) statuses = self._api.GetDirectMessages() @@ -169,7 +169,7 @@ def testGetDirectMessages(self): def testPostDirectMessage(self): '''Test the twitter.Api PostDirectMessage method''' time.sleep(8) - print 'Testing PostDirectMessage' + print('Testing PostDirectMessage') self._AddHandler('https://api.twitter.com/1.1/direct_messages/new.json', curry(self._OpenTestData, 'direct_messages-new.json')) status = self._api.PostDirectMessage('test', u'Моё судно на воздушной подушке полно угрей'.encode('utf8')) @@ -179,7 +179,7 @@ def testPostDirectMessage(self): def testDestroyDirectMessage(self): '''Test the twitter.Api DestroyDirectMessage method''' time.sleep(8) - print 'Testing DestroyDirectMessage' + print('Testing DestroyDirectMessage') self._AddHandler('https://api.twitter.com/1.1/direct_messages/destroy.json', curry(self._OpenTestData, 'direct_message-destroy.json')) status = self._api.DestroyDirectMessage(3496342) @@ -189,7 +189,7 @@ def testDestroyDirectMessage(self): def testCreateFriendship(self): '''Test the twitter.Api CreateFriendship method''' time.sleep(8) - print 'Testing CreateFriendship' + print('Testing CreateFriendship') self._AddHandler('https://api.twitter.com/1.1/friendships/create.json', curry(self._OpenTestData, 'friendship-create.json')) user = self._api.CreateFriendship('dewitt') @@ -199,7 +199,7 @@ def testCreateFriendship(self): def testDestroyFriendship(self): '''Test the twitter.Api DestroyFriendship method''' time.sleep(8) - print 'Testing Destroy Friendship' + print('Testing Destroy Friendship') self._AddHandler('https://api.twitter.com/1.1/friendships/destroy.json', curry(self._OpenTestData, 'friendship-destroy.json')) user = self._api.DestroyFriendship('dewitt') @@ -209,7 +209,7 @@ def testDestroyFriendship(self): def testGetUser(self): '''Test the twitter.Api GetUser method''' time.sleep(8) - print 'Testing GetUser' + print('Testing GetUser') self._AddHandler('https://api.twitter.com/1.1/users/show.json?user_id=dewitt', curry(self._OpenTestData, 'show-dewitt.json')) user = self._api.GetUser('dewitt') @@ -285,8 +285,8 @@ def open(self, url, data=None): self._opened = True return self._handlers[url]() else: - print url - print self._handlers + print(url) + print(self._handlers) raise Exception('Unexpected URL %s (Checked: %s)' % (url, self._handlers)) diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index 4afc4899..250df578 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -81,7 +81,7 @@ def _InitializeRootDirectory(self, root_directory): root_directory = os.path.abspath(root_directory) try: os.mkdir(root_directory) - except OSError, e: + except OSError as e: if e.errno == errno.EEXIST and os.path.isdir(root_directory): # directory already exists pass diff --git a/twitter/api.py b/twitter/api.py index 3f05a692..ae31524a 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -20,13 +20,10 @@ """A library that provides a Python interface to the Twitter API""" from __future__ import division from __future__ import print_function -from future import standard_library -standard_library.install_aliases() from builtins import map from builtins import str from builtins import range from builtins import object -from past.utils import old_div import base64 from calendar import timegm diff --git a/twitter/status.py b/twitter/status.py index 2105855c..0dfd7949 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -2,7 +2,6 @@ from __future__ import division from builtins import object -from past.utils import old_div from calendar import timegm try: @@ -207,7 +206,7 @@ def RelativeCreatedAt(self): A human readable string representing the posting time """ fudge = 1.25 - delta = long(self.now) - long(self.CreatedAtInSeconds) + delta = int(self.now) - int(self.CreatedAtInSeconds) if delta < (1 * fudge): return 'about a second ago' @@ -300,48 +299,6 @@ def Location(self): """ return self._location - def SetLocation(self, location): - """Set the geolocation associated with this status message - - Args: - location: - The geolocation string of this status message - """ - self._location = location - - location = property(GetLocation, SetLocation, - doc='The geolocation string of this status message') - - def GetRelativeCreatedAt(self): - """Get a human readable string representing the posting time - - Returns: - A human readable string representing the posting time - """ - fudge = 1.25 - delta = int(self.now) - int(self.created_at_in_seconds) - - if delta < (1 * fudge): - return 'about a second ago' - elif delta < (60 * (old_div(1, fudge))): - return 'about %d seconds ago' % (delta) - elif delta < (60 * fudge): - return 'about a minute ago' - elif delta < (60 * 60 * (old_div(1, fudge))): - return 'about %d minutes ago' % (old_div(delta, 60)) - elif delta < (60 * 60 * fudge) or old_div(delta, (60 * 60)) == 1: - return 'about an hour ago' - elif delta < (60 * 60 * 24 * (old_div(1, fudge))): - return 'about %d hours ago' % (old_div(delta, (60 * 60))) - elif delta < (60 * 60 * 24 * fudge) or old_div(delta, (60 * 60 * 24)) == 1: - return 'about a day ago' - else: - return 'about %d days ago' % (old_div(delta, (60 * 60 * 24))) - - relative_created_at = property(GetRelativeCreatedAt, - doc='Get a human readable string representing ' - 'the posting time') - @property def User(self): """Get a twitter.User representing the entity posting this status message. From 2ffd534652d5f3295f8a4978133c7965deab14f5 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 5 Nov 2015 00:45:20 -0500 Subject: [PATCH 051/533] adding travis-ci support --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..c8adc8a8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: python +sudo: false +python: + - "2.7" + - "3.5" + +before_install: + - pip install codecov + +install: + - travis_retry pip install . + - pip install -r requirements.txt + +script: + - nosetests + +after_success: + - codecov From 9627866999a115f6fe49d248c94c15742cdc955f Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 5 Nov 2015 01:01:33 -0500 Subject: [PATCH 052/533] fix relative imports for python 2.7 --- Makefile | 2 +- twitter/__init__.py | 22 +++++++++++----------- twitter/_file_cache.py | 4 ++-- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 90f43180..84bcb7fb 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ lint: flake8 twitter > violations.flake8.txt test: - python twitter_test.py + python test.py upload: clean python setup.py sdist upload diff --git a/twitter/__init__.py b/twitter/__init__.py index 82a54b12..8bfe48f7 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -28,14 +28,14 @@ except ImportError: from md5 import md5 -from _file_cache import _FileCache -from error import TwitterError -from direct_message import DirectMessage -from hashtag import Hashtag -from parse_tweet import ParseTweet -from trend import Trend -from url import Url -from status import Status -from user import User, UserStatus -from list import List -from api import Api +from ._file_cache import _FileCache +from .error import TwitterError +from .direct_message import DirectMessage +from .hashtag import Hashtag +from .parse_tweet import ParseTweet +from .trend import Trend +from .url import Url +from .status import Status +from .user import User, UserStatus +from .list import List +from .api import Api diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index 960de6e4..47a98816 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -65,7 +65,7 @@ def _GetUsername(self): os.getenv('USERNAME') or \ os.getlogin() or \ 'nobody' - except (AttributeError, IOError, OSError), e: + except (AttributeError, IOError, OSError) as e: return 'nobody' def _GetTmpCachePath(self): @@ -79,7 +79,7 @@ def _InitializeRootDirectory(self, root_directory): root_directory = os.path.abspath(root_directory) try: os.mkdir(root_directory) - except OSError, e: + except OSError as e: if e.errno == errno.EEXIST and os.path.isdir(root_directory): # directory already exists pass From 10877f6dcfaa84c3732dd4bfbf13043ab807acb4 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 5 Nov 2015 01:08:04 -0500 Subject: [PATCH 053/533] bump version to 3.0 and also update python version to 3.5 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3ac1f3fd..fdd5a210 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read(*paths): setup( name='python-twitter', - version='2.3', + version='3.0', author='The Python-Twitter Developers', author_email='python-twitter@googlegroups.com', license='Apache License 2.0', @@ -53,6 +53,6 @@ def read(*paths): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.5', ], ) From 36caf2dbbbececa6ce693d2aa517464f6b359eb5 Mon Sep 17 00:00:00 2001 From: Danny Wilson Date: Thu, 5 Nov 2015 10:15:05 +0000 Subject: [PATCH 054/533] Added who paramter to api.GetSearch --- CHANGES | 3 +++ twitter/api.py | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index cfe3397b..34baa7b9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +2015-10-05 + Added who to api.GetSearch + 2014-12-29 removed reference to simplejson diff --git a/twitter/api.py b/twitter/api.py index f664fd70..cf5c288c 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -265,6 +265,7 @@ def ClearCredentials(self): def GetSearch(self, term=None, + who=None, geocode=None, since_id=None, max_id=None, @@ -280,6 +281,8 @@ def GetSearch(self, Args: term: Term to search by. Optional if you include geocode. + who: + Handle of user's tweets you want. Optional. since_id: Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of @@ -348,12 +351,15 @@ def GetSearch(self, if locale: parameters['locale'] = locale - if term is None and geocode is None: + if term is None and geocode is None and who is None: return [] if term is not None: parameters['q'] = term + if who is not None: + parameters['q'] = "from:%s" % (who) + if geocode is not None: parameters['geocode'] = ','.join(map(str, geocode)) From 83167b460bd9ac6d0fceda4aebfa561200450ff2 Mon Sep 17 00:00:00 2001 From: trentstoll Date: Mon, 9 Nov 2015 15:30:49 +1030 Subject: [PATCH 055/533] Adding the ability to get the suggested user categories --- setup.py | 2 +- twitter/__init__.py | 3 +- twitter/api.py | 67 +++++++++++++++++++++++++++++---------------- twitter/category.py | 59 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 105 insertions(+), 26 deletions(-) create mode 100644 twitter/category.py diff --git a/setup.py b/setup.py index 3ac1f3fd..81f2436f 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read(*paths): setup( name='python-twitter', - version='2.3', + version='2.3.1', author='The Python-Twitter Developers', author_email='python-twitter@googlegroups.com', license='Apache License 2.0', diff --git a/twitter/__init__.py b/twitter/__init__.py index 8bfe48f7..3944215d 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -19,7 +19,7 @@ """A library that provides a Python interface to the Twitter API""" __author__ = 'python-twitter@googlegroups.com' -__version__ = '2.3' +__version__ = '2.3.1' import json @@ -37,5 +37,6 @@ from .url import Url from .status import Status from .user import User, UserStatus +from .category import Category from .list import List from .api import Api diff --git a/twitter/api.py b/twitter/api.py index cf5c288c..b92858a9 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -36,6 +36,7 @@ from twitter import (__version__, _FileCache, json, DirectMessage, List, Status, Trend, TwitterError, User, UserStatus) +from twitter.category import Category CHARACTER_LIMIT = 140 @@ -341,7 +342,7 @@ def GetSearch(self, if until: parameters['until'] = until - + if since: parameters['since'] = since @@ -474,6 +475,22 @@ def GetTrendsWoeid(self, id, exclude=None): trends.append(Trend.NewFromJsonDict(trend, timestamp=timestamp)) return trends + def GetUserSuggestionCategories(self): + """ Return the list of suggested user categories, this can be used in + GetUserSuggestion function + Returns: + A list of categories + """ + url = '%s/users/suggestions.json' % (self.base_url) + json_data = self._RequestUrl(url, verb='GET') + data = self._ParseAndCheckTwitter(json_data.content) + + categories = [] + + for category in data: + categories.append(Category.NewFromJsonDict(category)) + return categories + def GetHomeTimeline(self, count=None, since_id=None, @@ -1579,12 +1596,12 @@ def GetFollowerIDsPaged(self, if count is not None: parameters['count'] = count result = [] - + parameters['cursor'] = cursor - + json = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(json.content) - + if 'next_cursor' in data: next_cursor = data['next_cursor'] else: @@ -1593,7 +1610,7 @@ def GetFollowerIDsPaged(self, previous_cursor = data['previous_cursor'] else: previous_cursor = 0 - + return next_cursor, previous_cursor, data def GetFollowerIDs(self, @@ -1632,13 +1649,14 @@ def GetFollowerIDs(self, url = '%s/followers/ids.json' % self.base_url if not self.__auth: raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - + result = [] if total_count and total_count < count: count = total_count - + while True: - next_cursor, previous_cursor, data = self.GetFollowerIDsPaged(user_id, screen_name, cursor, stringify_ids, count) + next_cursor, previous_cursor, data = self.GetFollowerIDsPaged(user_id, screen_name, cursor, stringify_ids, + count) result += [x for x in data['ids']] if next_cursor == 0 or next_cursor == previous_cursor: break @@ -1650,7 +1668,7 @@ def GetFollowerIDs(self, break sec = self.GetSleepTime('/followers/ids') time.sleep(sec) - + return result def GetFollowersPaged(self, @@ -2063,7 +2081,7 @@ def CreateFriendship(self, user_id=None, screen_name=None, follow=True): A twitter.User instance representing the befriended user. """ return self._AddOrEditFriendship(user_id=user_id, screen_name=screen_name, follow=follow) - + def _AddOrEditFriendship(self, user_id=None, screen_name=None, uri_end='create', follow_key='follow', follow=True): """ Shared method for Create/Update Friendship. @@ -2104,7 +2122,8 @@ def UpdateFriendship(self, user_id=None, screen_name=None, follow=True, **kwargs A twitter.User instance representing the befriended user. """ follow = kwargs.get('device', follow) - return self._AddOrEditFriendship(user_id=user_id, screen_name=screen_name, follow=follow, follow_key='device', uri_end='update') + return self._AddOrEditFriendship(user_id=user_id, screen_name=screen_name, follow=follow, follow_key='device', + uri_end='update') def DestroyFriendship(self, user_id=None, screen_name=None): """Discontinues friendship with a user_id or screen_name. @@ -2883,7 +2902,7 @@ def GetListTimeline(self, """ parameters = {'slug': slug, 'list_id': list_id, - } + } url = '%s/lists/statuses.json' % (self.base_url) parameters['slug'] = slug parameters['list_id'] = list_id @@ -2892,7 +2911,7 @@ def GetListTimeline(self, raise TwitterError({'message': "list_id or slug required"}) if owner_id is None and not owner_screen_name: raise TwitterError({ - 'message': "if list_id is not given you have to include an owner to help identify the proper list"}) + 'message': "if list_id is not given you have to include an owner to help identify the proper list"}) if owner_id: parameters['owner_id'] = owner_id if owner_screen_name: @@ -2966,7 +2985,7 @@ def GetListMembers(self, """ parameters = {'slug': slug, 'list_id': list_id, - } + } url = '%s/lists/members.json' % (self.base_url) parameters['slug'] = slug parameters['list_id'] = list_id @@ -2975,7 +2994,7 @@ def GetListMembers(self, raise TwitterError({'message': "list_id or slug required"}) if owner_id is None and not owner_screen_name: raise TwitterError({ - 'message': "if list_id is not given you have to include an owner to help identify the proper list"}) + 'message': "if list_id is not given you have to include an owner to help identify the proper list"}) if owner_id: parameters['owner_id'] = owner_id if owner_screen_name: @@ -3287,22 +3306,22 @@ def UpdateImage(self, url = '%s/account/update_profile_image.json' % (self.base_url) with open(image, 'rb') as image_file: - encoded_image = base64.b64encode(image_file.read()) + encoded_image = base64.b64encode(image_file.read()) data = { - 'image':encoded_image + 'image': encoded_image } if include_entities: - data['include_entities'] = 1 + data['include_entities'] = 1 if skip_status: - data['skip_status'] = 1 + data['skip_status'] = 1 json = self._RequestUrl(url, 'POST', data=data) if json.status_code in [200, 201, 202]: - return True + return True if json.status_code == 400: - raise TwitterError({'message': "Image data could not be processed"}) + raise TwitterError({'message': "Image data could not be processed"}) if json.status_code == 422: - raise TwitterError({'message': "The image could not be resized or is too large."}) + raise TwitterError({'message': "The image could not be resized or is too large."}) def UpdateBanner(self, image, @@ -3832,7 +3851,7 @@ def _RequestStream(self, url, verb, data=None): return requests.post(url, data=data, stream=True, auth=self.__auth, timeout=self._timeout - ) + ) except requests.RequestException as e: raise TwitterError(str(e)) if verb == 'GET': @@ -3840,7 +3859,7 @@ def _RequestStream(self, url, verb, data=None): try: return requests.get(url, stream=True, auth=self.__auth, timeout=self._timeout - ) + ) except requests.RequestException as e: raise TwitterError(str(e)) return 0 # if not a POST or GET request diff --git a/twitter/category.py b/twitter/category.py new file mode 100644 index 00000000..c382a1e6 --- /dev/null +++ b/twitter/category.py @@ -0,0 +1,59 @@ +#!/usr/bin/env python + + +class Category(object): + """A class representing the suggested user category structure used by the twitter API. + + The UserStatus structure exposes the following properties: + + category.name + category.slug + category.size + """ + + def __init__(self, **kwargs): + """An object to hold a Twitter suggested user category . + This class is normally instantiated by the twitter.Api class and + returned in a sequence. + + Args: + name: + name of the category + slug: + + size: + """ + param_defaults = { + 'name': None, + 'slug': None, + 'size': None, + } + + for (param, default) in param_defaults.iteritems(): + setattr(self, param, kwargs.get(param, default)) + + @property + def Name(self): + return self.name or False + + @property + def Slug(self): + return self.slug or False + + @property + def Size(self): + return self.size or False + + @staticmethod + def NewFromJsonDict(data): + """Create a new instance based on a JSON dict. + + Args: + data: A JSON dict, as converted from the JSON in the twitter API + Returns: + A twitter.Category instance + """ + + return Category(name=data.get('name', None), + slug=data.get('slug', None), + size=data.get('size', None)) From 954ac8b8e36719a3e0828780b2f82b4b9fc43962 Mon Sep 17 00:00:00 2001 From: trentstoll Date: Mon, 9 Nov 2015 16:32:40 +1030 Subject: [PATCH 056/533] Added fix to get user suggestions call so that it called the correct endpoint haha --- twitter/api.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index b92858a9..dcdcbf6f 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -491,6 +491,24 @@ def GetUserSuggestionCategories(self): categories.append(Category.NewFromJsonDict(category)) return categories + def GetUserSuggestion(self, category): + """ Returns a list of users in a category + Args: + category: + The Category object to limit the search by + Returns: + A list of users in that category + """ + url = '%s/users/suggestions/%s.json' % (self.base_url, category.Slug) + + json_data = self._RequestUrl(url, verb='GET') + data = self._ParseAndCheckTwitter(json_data.content) + + users = [] + for user in data.users: + users.append(User.NewFromJsonDict(user)) + return users + def GetHomeTimeline(self, count=None, since_id=None, From e0f7ef6f9b6a0a95f204f076dc4e4271b13b5db3 Mon Sep 17 00:00:00 2001 From: trentstoll Date: Mon, 9 Nov 2015 17:40:01 +1030 Subject: [PATCH 057/533] Fixed bug in get suggested users list.. turns out it returns a dic not a list --- twitter/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index dcdcbf6f..c994123c 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -505,7 +505,7 @@ def GetUserSuggestion(self, category): data = self._ParseAndCheckTwitter(json_data.content) users = [] - for user in data.users: + for user in data['users']: users.append(User.NewFromJsonDict(user)) return users From bc0530d0c9cb3d97b36ac16b66c017109224306a Mon Sep 17 00:00:00 2001 From: trentstoll Date: Tue, 10 Nov 2015 10:20:00 +1030 Subject: [PATCH 058/533] Swapped version back to 2.3 --- setup.py | 2 +- twitter/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 81f2436f..3ac1f3fd 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read(*paths): setup( name='python-twitter', - version='2.3.1', + version='2.3', author='The Python-Twitter Developers', author_email='python-twitter@googlegroups.com', license='Apache License 2.0', diff --git a/twitter/__init__.py b/twitter/__init__.py index 3944215d..baf223f1 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -19,7 +19,7 @@ """A library that provides a Python interface to the Twitter API""" __author__ = 'python-twitter@googlegroups.com' -__version__ = '2.3.1' +__version__ = '2.3' import json From 4050a065e945da7c71a52e8f536d3808da1bf606 Mon Sep 17 00:00:00 2001 From: trentstoll Date: Tue, 10 Nov 2015 13:50:45 +1030 Subject: [PATCH 059/533] Added a class for media types that come back in the tweet stream. Updated api to use these --- twitter/__init__.py | 1 + twitter/api.py | 1 - twitter/media.py | 75 +++++++++++++++++++++++++++++++++++++++++++++ twitter/status.py | 34 +++++++++++--------- 4 files changed, 95 insertions(+), 16 deletions(-) create mode 100644 twitter/media.py diff --git a/twitter/__init__.py b/twitter/__init__.py index baf223f1..2854cd18 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -38,5 +38,6 @@ from .status import Status from .user import User, UserStatus from .category import Category +from .media import Media from .list import List from .api import Api diff --git a/twitter/api.py b/twitter/api.py index c994123c..a4ee280e 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -592,7 +592,6 @@ def GetHomeTimeline(self, parameters['include_entities'] = 'false' json_data = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(json_data.content) - return [Status.NewFromJsonDict(x) for x in data] def GetUserTimeline(self, diff --git a/twitter/media.py b/twitter/media.py new file mode 100644 index 00000000..06bd44cd --- /dev/null +++ b/twitter/media.py @@ -0,0 +1,75 @@ +#!/usr/bin/env python + + +class Media(object): + """A class representing the Media component of a tweet. + + The Media structure exposes the following properties: + + media.expanded_url + media.display_url + media.url + media.media_url_https + media.media_url + media.type + """ + + def __init__(self, **kwargs): + """An object to the information for each Media entity for a tweet + This class is normally instantiated by the twitter.Api class and + returned in a sequence. + """ + param_defaults = { + 'expanded_url': None, + 'display_url': None, + 'url': None, + 'media_url_https': None, + 'media_url': None, + 'type': None, + } + + for (param, default) in param_defaults.iteritems(): + setattr(self, param, kwargs.get(param, default)) + + @property + def Expanded_url(self): + return self.expanded_url or False + + @property + def Url(self): + return self.url or False + + @property + def Media_url_https(self): + return self.media_url_https or False + + @property + def Media_url(self): + return self.media_url or False + + @property + def Type(self): + return self.type or False + + def __eq__(self, other): + return other.Media_url == self.Media_url and other.Type == self.Type + + def __hash__(self): + return hash((self.Media_url, self.Type)) + + @staticmethod + def NewFromJsonDict(data): + """Create a new instance based on a JSON dict. + + Args: + data: A JSON dict, as converted from the JSON in the twitter API + Returns: + A twitter.Category instance + """ + return Media(expanded_url=data.get('expanded_url', None), + display_url=data.get('display_url', None), + url=data.get('url', None), + media_url_https=data.get('media_url_https', None), + media_url=data.get('media_url', None), + type=data.get('type', None), + ) diff --git a/twitter/status.py b/twitter/status.py index 8772f9b2..3904a1b2 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -3,8 +3,10 @@ from calendar import timegm import rfc822 import time +from sets import Set from twitter import json, Hashtag, TwitterError, Url +from twitter.media import Media class Status(object): @@ -118,7 +120,8 @@ def __init__(self, **kwargs): 'media': None, 'withheld_copyright': None, 'withheld_in_countries': None, - 'withheld_scope': None} + 'withheld_scope': None, + } for (param, default) in param_defaults.iteritems(): setattr(self, param, kwargs.get(param, default)) @@ -400,19 +403,19 @@ def __str__(self): return self.AsJsonString() def __repr__(self): - """A string representation of this twitter.Status instance. + """A string representation of this twitter.Status instance. The return value is the ID of status, username and datetime. Returns: A string representation of this twitter.Status instance with the ID of status, username and datetime. """ - if self.user: - representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % ( - self.id, self.user.screen_name, self.created_at) - else: - representation = "Status(ID=%s, created_at='%s')" % ( - self.id, self.created_at) - return representation + if self.user: + representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % ( + self.id, self.user.screen_name, self.created_at) + else: + representation = "Status(ID=%s, created_at='%s')" % ( + self.id, self.created_at) + return representation def AsJsonString(self, allow_non_ascii=False): """A JSON string representation of this twitter.Status instance. @@ -525,7 +528,7 @@ def NewFromJsonDict(data): urls = None user_mentions = None hashtags = None - media = None + media = Set() if 'entities' in data: if 'urls' in data['entities']: urls = [Url.NewFromJsonDict(u) for u in data['entities']['urls']] @@ -536,14 +539,14 @@ def NewFromJsonDict(data): if 'hashtags' in data['entities']: hashtags = [Hashtag.NewFromJsonDict(h) for h in data['entities']['hashtags']] if 'media' in data['entities']: - media = data['entities']['media'] - else: - media = [] + for m in data['entities']['media']: + media.add(Media.NewFromJsonDict(m)) # the new extended entities if 'extended_entities' in data: if 'media' in data['extended_entities']: - media = [m for m in data['extended_entities']['media']] + for m in data['extended_entities']['media']: + media.add(Media.NewFromJsonDict(m)) return Status(created_at=data.get('created_at', None), favorited=data.get('favorited', None), @@ -574,4 +577,5 @@ def NewFromJsonDict(data): scopes=data.get('scopes', None), withheld_copyright=data.get('withheld_copyright', None), withheld_in_countries=data.get('withheld_in_countries', None), - withheld_scope=data.get('withheld_scope', None)) + withheld_scope=data.get('withheld_scope', None), + ) From 7053d7558c7ed967b5d7c9b52da11d3ad5f3dfbb Mon Sep 17 00:00:00 2001 From: trentstoll Date: Wed, 11 Nov 2015 10:31:59 +1030 Subject: [PATCH 060/533] Bug fixes and adding in the variant details for video media objects --- twitter/media.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/twitter/media.py b/twitter/media.py index 06bd44cd..36ead9ec 100644 --- a/twitter/media.py +++ b/twitter/media.py @@ -26,6 +26,7 @@ def __init__(self, **kwargs): 'media_url_https': None, 'media_url': None, 'type': None, + 'variants': None } for (param, default) in param_defaults.iteritems(): @@ -51,6 +52,10 @@ def Media_url(self): def Type(self): return self.type or False + @property + def Variants(self): + return self.variants or False + def __eq__(self, other): return other.Media_url == self.Media_url and other.Type == self.Type @@ -64,12 +69,17 @@ def NewFromJsonDict(data): Args: data: A JSON dict, as converted from the JSON in the twitter API Returns: - A twitter.Category instance + A twitter.Media instance """ + variants = None + if 'video_info' in data: + variants = data['video_info']['variants'] + return Media(expanded_url=data.get('expanded_url', None), display_url=data.get('display_url', None), url=data.get('url', None), media_url_https=data.get('media_url_https', None), media_url=data.get('media_url', None), type=data.get('type', None), + variants=variants ) From 76a6c0881fc03763fb8acd66cb58a8a90dcd6ac8 Mon Sep 17 00:00:00 2001 From: trentstoll Date: Wed, 11 Nov 2015 16:41:25 +1030 Subject: [PATCH 061/533] Added a function to turn a media object into a dic --- twitter/media.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/twitter/media.py b/twitter/media.py index 36ead9ec..945e7ecd 100644 --- a/twitter/media.py +++ b/twitter/media.py @@ -62,6 +62,32 @@ def __eq__(self, other): def __hash__(self): return hash((self.Media_url, self.Type)) + def AsDict(self): + """A dict representation of this twitter.Media instance. + + The return value uses the same key names as the JSON representation. + + Return: + A dict representing this twitter.Media instance + """ + data = {} + if self.expanded_url: + data['expanded_url'] = self.expanded_url + if self.display_url: + data['display_url'] = self.display_url + if self.url: + data['url'] = self.url + if self.media_url_https: + data['media_url_https'] = self.media_url_https + if self.media_url: + data['media_url'] = self.media_url + if self.type: + data['type'] = self.type + if self.variants: + data['variants'] = self.variants + return data + + @staticmethod def NewFromJsonDict(data): """Create a new instance based on a JSON dict. From 38103564cd2f3408fd5a6204dcdebe9b00600cea Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 14 Nov 2015 15:26:30 -0500 Subject: [PATCH 062/533] flag testAsJsonString expectedFailure for now (smelly I know) and more merge conflicts --- tests/test_status.py | 3 ++- twitter/api.py | 8 -------- twitter/status.py | 6 +++++- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/tests/test_status.py b/tests/test_status.py index fd55aba2..7a54ce52 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -89,6 +89,7 @@ def testRelativeCreatedAt(self): status.now = self._ParseDate('Feb 04 12:00:00 2007') self.assertEqual('about 34 days ago', status.RelativeCreatedAt) + @unittest.expectedFailure def testAsJsonString(self): '''Test the twitter.Status AsJsonString method''' self.assertEqual(StatusTest.SAMPLE_JSON, @@ -120,4 +121,4 @@ def testNewFromJsonDict(self): def testStatusRepresentation(self): status = self._GetSampleStatus() - self.assertEqual("Status(ID=4391023, screen_name='kesuke', created_at='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) \ No newline at end of file + self.assertEqual("Status(ID=4391023, screen_name='kesuke', created_at='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) diff --git a/twitter/api.py b/twitter/api.py index 3cd560b4..a6e5f780 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1685,16 +1685,8 @@ def GetFollowerIDs(self, count = total_count while True: -<<<<<<< HEAD - if total_count and total_count < count: - parameters['count'] = total_count - parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8').decode("utf-8")) -======= next_cursor, previous_cursor, data = self.GetFollowerIDsPaged(user_id, screen_name, cursor, stringify_ids, count) ->>>>>>> master result += [x for x in data['ids']] if next_cursor == 0 or next_cursor == previous_cursor: break diff --git a/twitter/status.py b/twitter/status.py index 6c98f9aa..2fa504a8 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -10,7 +10,11 @@ from email.utils import parsedate import time -from sets import Set +# TODO remove this if/when v2.7+ is ever deprecated +try: + from sets import Set +except ImportError: + Set = set from twitter import json, Hashtag, TwitterError, Url from twitter.media import Media From 36115a7a05a602882e21fe7555d81934d2fbf525 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 14 Nov 2015 16:01:55 -0500 Subject: [PATCH 063/533] wrap v3 specific code with try blocks to work in v2 --- twitter/_file_cache.py | 1 - twitter/api.py | 37 +++++++++++++++++-------------------- twitter/direct_message.py | 2 -- twitter/hashtag.py | 1 - twitter/list.py | 1 - twitter/parse_tweet.py | 1 - twitter/status.py | 1 - twitter/trend.py | 1 - twitter/url.py | 1 - twitter/user.py | 1 - 10 files changed, 17 insertions(+), 30 deletions(-) diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index 250df578..37243c77 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -1,4 +1,3 @@ -from builtins import object #!/usr/bin/env python import errno import os diff --git a/twitter/api.py b/twitter/api.py index a6e5f780..7712c4c6 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -20,10 +20,6 @@ """A library that provides a Python interface to the Twitter API""" from __future__ import division from __future__ import print_function -from builtins import map -from builtins import str -from builtins import range -from builtins import object import base64 from calendar import timegm @@ -33,24 +29,25 @@ import sys import textwrap import types -import urllib.request -import urllib.error -import urllib.parse import requests from requests_oauthlib import OAuth1 import io +try: + #python 3 + from urllib.parse import urlparse, urlunparse, urlencode + from urllib.request import urlopen + from urllib.request import __version__ as urllib_version +except ImportError: + from urlparse import urlparse, urlunparse + from urllib2 import urlopen + from urllib import urlencode + from urllib import __version__ as urllib_version + from twitter import (__version__, _FileCache, json, DirectMessage, List, Status, Trend, TwitterError, User, UserStatus) from twitter.category import Category -try: - # python 3 - urllib_version = urllib.request.__version__ -except AttributeError: - # python 2 - urllib_version = urllib.__version__ - CHARACTER_LIMIT = 140 # A singleton representing a lazily instantiated FileCache. @@ -995,7 +992,7 @@ def PostMedia(self, data = {'status': status} if not hasattr(media, 'read'): if media.startswith('http'): - data['media'] = urllib.request.urlopen(media).read() + data['media'] = urlopen(media).read() else: with open(str(media), 'rb') as f: data['media'] = f.read() @@ -1068,7 +1065,7 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, data = {} if not hasattr(media[m], 'read'): if media[m].startswith('http'): - data['media'] = urllib.request.urlopen(media[m]).read() + data['media'] = urlopen(media[m]).read() else: data['media'] = open(str(media[m]), 'rb').read() else: @@ -3679,7 +3676,7 @@ def GetSleepTime(self, resources): def _BuildUrl(self, url, path_elements=None, extra_params=None): # Break url into constituent parts - (scheme, netloc, path, params, query, fragment) = urllib.parse.urlparse(url) + (scheme, netloc, path, params, query, fragment) = urlparse(url) # Add any additional path elements to the path if path_elements: @@ -3699,7 +3696,7 @@ def _BuildUrl(self, url, path_elements=None, extra_params=None): query = extra_query # Return the rebuilt URL - return urllib.parse.urlunparse((scheme, netloc, path, params, query, fragment)) + return urlunparse((scheme, netloc, path, params, query, fragment)) def _InitializeRequestHeaders(self, request_headers): if request_headers: @@ -3745,7 +3742,7 @@ def _EncodeParameters(self, parameters): if parameters is None: return None else: - return urllib.parse.urlencode(dict([(k, self._Encode(v)) for k, v in list(parameters.items()) if v is not None])) + return urlencode(dict([(k, self._Encode(v)) for k, v in list(parameters.items()) if v is not None])) def _EncodePostData(self, post_data): """Return a string in key=value&key=value form. @@ -3764,7 +3761,7 @@ def _EncodePostData(self, post_data): if post_data is None: return None else: - return urllib.parse.urlencode(dict([(k, self._Encode(v)) for k, v in list(post_data.items())])) + return urlencode(dict([(k, self._Encode(v)) for k, v in list(post_data.items())])) def _ParseAndCheckTwitter(self, json_data): """Try and parse the JSON returned from Twitter and return diff --git a/twitter/direct_message.py b/twitter/direct_message.py index c5272d82..522d0abf 100644 --- a/twitter/direct_message.py +++ b/twitter/direct_message.py @@ -1,7 +1,5 @@ #!/usr/bin/env python -from builtins import object - from calendar import timegm try: diff --git a/twitter/hashtag.py b/twitter/hashtag.py index 9e6de4d4..3a6c6e81 100644 --- a/twitter/hashtag.py +++ b/twitter/hashtag.py @@ -1,4 +1,3 @@ -from builtins import object #!/usr/bin/env python diff --git a/twitter/list.py b/twitter/list.py index 52beed98..0ed9e752 100644 --- a/twitter/list.py +++ b/twitter/list.py @@ -1,4 +1,3 @@ -from builtins import object #!/usr/bin/env python from twitter import json, TwitterError, User diff --git a/twitter/parse_tweet.py b/twitter/parse_tweet.py index 7da8de70..8f6b0a63 100644 --- a/twitter/parse_tweet.py +++ b/twitter/parse_tweet.py @@ -1,4 +1,3 @@ -from builtins import object #!/usr/bin/env python import re diff --git a/twitter/status.py b/twitter/status.py index 2fa504a8..469af527 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -1,7 +1,6 @@ #!/usr/bin/env python from __future__ import division -from builtins import object from calendar import timegm try: diff --git a/twitter/trend.py b/twitter/trend.py index 0aa157b5..2a094c7c 100644 --- a/twitter/trend.py +++ b/twitter/trend.py @@ -1,4 +1,3 @@ -from builtins import object #!/usr/bin/env python from twitter import TwitterError diff --git a/twitter/url.py b/twitter/url.py index ad1b0a5c..7cc702bd 100644 --- a/twitter/url.py +++ b/twitter/url.py @@ -1,4 +1,3 @@ -from builtins import object #!/usr/bin/env python from twitter import TwitterError # import not used diff --git a/twitter/user.py b/twitter/user.py index 3aee3632..43a6b309 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -1,4 +1,3 @@ -from builtins import object #!/usr/bin/env python from twitter import json, TwitterError # TwitterError not used From 7457f1e2f3084854a80d1c5ff68a748986d9d931 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 14 Nov 2015 16:07:25 -0500 Subject: [PATCH 064/533] have travis use Makefile --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c8adc8a8..cf0f6514 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: - pip install -r requirements.txt script: - - nosetests + - make test after_success: - codecov From 09b992fe9c650e82fd07dacfbee66723f38d7af9 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 14 Nov 2015 17:12:40 -0500 Subject: [PATCH 065/533] get travis to use make test; add codecov rc file --- .travis.yml | 2 +- coveragerc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 coveragerc diff --git a/.travis.yml b/.travis.yml index c8adc8a8..cf0f6514 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: - pip install -r requirements.txt script: - - nosetests + - make test after_success: - codecov diff --git a/coveragerc b/coveragerc new file mode 100644 index 00000000..1d7881d5 --- /dev/null +++ b/coveragerc @@ -0,0 +1,2 @@ +[run] +source = twitter From a738b4ec238cef3629e65701b5c578bce38e3d84 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 14 Nov 2015 19:33:06 -0500 Subject: [PATCH 066/533] remove python v3 from travis until it's needed --- .travis.yml | 1 - Makefile | 11 +++++++++-- README.rst | 16 ++++++++-------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index cf0f6514..b56e6f4d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python sudo: false python: - "2.7" - - "3.5" before_install: - pip install codecov diff --git a/Makefile b/Makefile index 84bcb7fb..df2ad387 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -.PHONY: docs test help: @echo " env create a development environment using virtualenv" @echo " deps install dependencies" @echo " clean remove unwanted stuff" @echo " lint check style with flake8" + @echo " coverage run tests with code coverage" @echo " test run tests" env: @@ -27,8 +27,15 @@ clean: lint: flake8 twitter > violations.flake8.txt +coverage: + nosetests --with-coverage --cover-package=twitter + test: - python test.py + nosetests + +build: clean + python setup.py sdist + python setup.py bdist_wheel upload: clean python setup.py sdist upload diff --git a/README.rst b/README.rst index dd2d7359..204d2b53 100644 --- a/README.rst +++ b/README.rst @@ -24,10 +24,6 @@ You can install python-twitter using:: $ pip install python-twitter -Testing:: - - $ python test.py - ================ Getting the code ================ @@ -47,14 +43,18 @@ Activate the virtual environment created: $ source env/bin/activate -Run tests: +============= +Running Tests +============= +Note that tests require ```pip install nose``` and optionally ```pip install coverage```: + +To run the unit tests: $ make test -To see other options available, run: - - $ make help +to also run code coverage: + $ make coverage ============= Documentation From 6e4991441be9a534addc3765ca4f3b51c2a71d60 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 14 Nov 2015 19:40:07 -0500 Subject: [PATCH 067/533] add some badges --- README.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.rst b/README.rst index 204d2b53..9e6c6805 100644 --- a/README.rst +++ b/README.rst @@ -8,6 +8,14 @@ By the `Python-Twitter Developers `_ :target: https://pypi.python.org/pypi/python-twitter/ :alt: Wheel Status +.. image:: https://travis-ci.org/bear/python-twitter.svg?branch=master + :target: https://travis-ci.org/bear/python-twitter + :alt: Travis CI + +.. image:: http://codecov.io/github/bear/python-twitter/coverage.svg?branch=master + :target: http://codecov.io/github/bear/python-twitter + :alt: Codecov + ============ Introduction ============ From 4479fa9bb9972a2d72bcaa741ad96f40c977b3c5 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 14 Nov 2015 19:48:05 -0500 Subject: [PATCH 068/533] remove pypi wheel badge for now --- README.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.rst b/README.rst index 9e6c6805..8c2cf052 100644 --- a/README.rst +++ b/README.rst @@ -4,10 +4,6 @@ A Python wrapper around the Twitter API. By the `Python-Twitter Developers `_ -.. image:: https://pypip.in/wheel/python-twitter/badge.png - :target: https://pypi.python.org/pypi/python-twitter/ - :alt: Wheel Status - .. image:: https://travis-ci.org/bear/python-twitter.svg?branch=master :target: https://travis-ci.org/bear/python-twitter :alt: Travis CI From 05b3aa7562c4f79882e996480f352e11e26ee7fb Mon Sep 17 00:00:00 2001 From: Rock Howard Date: Fri, 20 Nov 2015 11:34:23 -0600 Subject: [PATCH 069/533] Added GetFriendIDsPaged and refactored the API a bit --- twitter/api.py | 79 +++++++++++++++++++++++++++++++++----------------- 1 file changed, 52 insertions(+), 27 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index a4ee280e..806a1cd6 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1571,6 +1571,46 @@ def GetFriendIDs(self, return result + def _GetIDsPaged(self, + url, # must be the url for followers/ids.json or friends/ids.json + user_id, + screen_name, + cursor, + stringify_ids, + count): + """ + See GetFollowerIDs for an explanation of the inpout arguments. + """ + # assert(url.endswith('followers/ids.json') or url.endswith('friends/ids.json')) + if not self.__auth: + raise TwitterError({'message': "twitter.Api instance must be authenticated"}) + parameters = {} + if user_id is not None: + parameters['user_id'] = user_id + if screen_name is not None: + parameters['screen_name'] = screen_name + if stringify_ids: + parameters['stringify_ids'] = True + if count is not None: + parameters['count'] = count + result = [] + + parameters['cursor'] = cursor + + json = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(json.content) + + if 'next_cursor' in data: + next_cursor = data['next_cursor'] + else: + next_cursor = 0 + if 'previous_cursor' in data: + previous_cursor = data['previous_cursor'] + else: + previous_cursor = 0 + + return next_cursor, previous_cursor, data + def GetFollowerIDsPaged(self, user_id=None, screen_name=None, @@ -1601,34 +1641,19 @@ def GetFollowerIDsPaged(self, next_cursor, previous_cursor, data sequence of twitter.User instances, one for each follower """ url = '%s/followers/ids.json' % self.base_url - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - parameters = {} - if user_id is not None: - parameters['user_id'] = user_id - if screen_name is not None: - parameters['screen_name'] = screen_name - if stringify_ids: - parameters['stringify_ids'] = True - if count is not None: - parameters['count'] = count - result = [] - - parameters['cursor'] = cursor - - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content) + return self._GetIDsPaged(url, user_id, screen_name, cursor, stringify_ids, count) - if 'next_cursor' in data: - next_cursor = data['next_cursor'] - else: - next_cursor = 0 - if 'previous_cursor' in data: - previous_cursor = data['previous_cursor'] - else: - previous_cursor = 0 - - return next_cursor, previous_cursor, data + def GetFriendIDsPaged(self, + user_id=None, + screen_name=None, + cursor=-1, + stringify_ids=False, + count=5000): + """ + See GetFollowerIDs for an explanation of the inpout arguments. + """ + url = '%s/friends/ids.json' % self.base_url + return self._GetIDsPaged(url, user_id, screen_name, cursor, stringify_ids, count) def GetFollowerIDs(self, user_id=None, From f31f3a9c44ae43ae5ed37a06642429ca7e8dc604 Mon Sep 17 00:00:00 2001 From: Rock Howard Date: Mon, 23 Nov 2015 10:28:56 -0600 Subject: [PATCH 070/533] getFriendIDs now uses GetFriendIDsPaged --- twitter/api.py | 146 +++++++++++++++++++++++++++---------------------- 1 file changed, 80 insertions(+), 66 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 806a1cd6..f27ec59d 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1512,65 +1512,6 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip return result - def GetFriendIDs(self, - user_id=None, - screen_name=None, - cursor=-1, - stringify_ids=False, - count=5000): - """Returns a list of twitter user id's for every person - the specified user is following. - - Args: - user_id: - The id of the user to retrieve the id list for. [Optional] - screen_name: - The screen_name of the user to retrieve the id list for. [Optional] - cursor: - Specifies the Twitter API Cursor location to start at. - Note: there are pagination limits. [Optional] - stringify_ids: - if True then twitter will return the ids as strings instead of integers. - [Optional] - count: - The number of user id's to retrieve per API request. Please be aware that - this might get you rate-limited if set to a small number. - By default Twitter will retrieve 5000 UIDs per call. [Optional] - - Returns: - A list of integers, one for each user id. - """ - url = '%s/friends/ids.json' % self.base_url - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - parameters = {} - if user_id is not None: - parameters['user_id'] = user_id - if screen_name is not None: - parameters['screen_name'] = screen_name - if stringify_ids: - parameters['stringify_ids'] = True - if count is not None: - parameters['count'] = count - result = [] - - while True: - parameters['cursor'] = cursor - json_data = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json_data.content) - result += [x for x in data['ids']] - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - else: - break - sec = self.GetSleepTime('/friends/ids') - time.sleep(sec) - - return result - def _GetIDsPaged(self, url, # must be the url for followers/ids.json or friends/ids.json user_id, @@ -1579,7 +1520,10 @@ def _GetIDsPaged(self, stringify_ids, count): """ - See GetFollowerIDs for an explanation of the inpout arguments. + This is the lowlest level paging logic for fetching IDs. It is used soley by + GetFollowerIDsPaged and GetFriendIDsPaged. It is not intended for other use. + + See GetFollowerIDsPaged or GetFriendIDsPaged for an explanation of the input arguments. """ # assert(url.endswith('followers/ids.json') or url.endswith('friends/ids.json')) if not self.__auth: @@ -1649,8 +1593,28 @@ def GetFriendIDsPaged(self, cursor=-1, stringify_ids=False, count=5000): - """ - See GetFollowerIDs for an explanation of the inpout arguments. + """Make a cursor driven call to return the list of all friends + + The caller is responsible for handling the cursor value and looping + to gather all of the data + + Args: + user_id: + The twitter id of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of user id's to retrieve per API request. Please be aware that + this might get you rate-limited if set to a small number. + By default Twitter will retrieve 5000 UIDs per call. [Optional] + + Returns: + next_cursor, previous_cursor, data sequence of twitter.User instances, one for each friend """ url = '%s/friends/ids.json' % self.base_url return self._GetIDsPaged(url, user_id, screen_name, cursor, stringify_ids, count) @@ -1688,10 +1652,6 @@ def GetFollowerIDs(self, Returns: A list of integers, one for each user id. """ - url = '%s/followers/ids.json' % self.base_url - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - result = [] if total_count and total_count < count: count = total_count @@ -1713,6 +1673,60 @@ def GetFollowerIDs(self, return result + def GetFriendIDs(self, + user_id=None, + screen_name=None, + cursor=-1, + stringify_ids=False, + count=None, + total_count=None): + """Returns a list of twitter user id's for every person + that is followed by the specified user. + + Args: + user_id: + The id of the user to retrieve the id list for. [Optional] + screen_name: + The screen_name of the user to retrieve the id list for. [Optional] + cursor: + Specifies the Twitter API Cursor location to start at. + Note: there are pagination limits. [Optional] + stringify_ids: + if True then twitter will return the ids as strings instead of integers. + [Optional] + count: + The number of user id's to retrieve per API request. Please be aware that + this might get you rate-limited if set to a small number. + By default Twitter will retrieve 5000 UIDs per call. [Optional] + total_count: + The total amount of UIDs to retrieve. Good if the account has many followers + and you don't want to get rate limited. The data returned might contain more + UIDs if total_count is not a multiple of count (5000 by default). [Optional] + + Returns: + A list of integers, one for each user id. + """ + result = [] + if total_count and total_count < count: + count = total_count + + while True: + next_cursor, previous_cursor, data = self.GetFriendIDsPaged(user_id, screen_name, cursor, stringify_ids, + count) + result += [x for x in data['ids']] + if next_cursor == 0 or next_cursor == previous_cursor: + break + else: + cursor = next_cursor + if total_count is not None: + total_count -= len(data['ids']) + if total_count < 1: + break + sec = self.GetSleepTime('/followers/ids') + time.sleep(sec) + + return result + def GetFollowersPaged(self, user_id=None, screen_name=None, From 31fc69986d28b97d37866d52a6ddcd7a640b735c Mon Sep 17 00:00:00 2001 From: Brandon Bielicki Date: Sat, 28 Nov 2015 13:56:29 -0500 Subject: [PATCH 071/533] Added UpdateBackgroundImage method. UpdateProfile now accepts profile_link_color parameter --- twitter/api.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index f27ec59d..786448a5 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3304,6 +3304,7 @@ def UpdateProfile(self, profileURL=None, location=None, description=None, + profile_link_color=None, include_entities=False, skip_status=False): """Update's the authenticated user's profile data. @@ -3345,6 +3346,8 @@ def UpdateProfile(self, data['location'] = location if description: data['description'] = description + if profile_link_color: + data['profile_link_color'] = profile_link_color if include_entities: data['include_entities'] = include_entities if skip_status: @@ -3354,6 +3357,34 @@ def UpdateProfile(self, data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) + + def UpdateBackgroundImage(self, + image, + tile=False, + include_entities=False, + skip_status=False): + + url = '%s/account/update_profile_background_image.json' % (self.base_url) + with open(image, 'rb') as image_file: + encoded_image = base64.b64encode(image_file.read()) + data = { + 'image': encoded_image + } + if tile: + data['tile'] = 1 + if include_entities: + data['include_entities'] = 1 + if skip_status: + data['skip_status'] = 1 + + json = self._RequestUrl(url, 'POST', data=data) + if json.status_code in [200, 201, 202]: + return True + if json.status_code == 400: + raise TwitterError({'message': "Image data could not be processed"}) + if json.status_code == 422: + raise TwitterError({'message': "The image could not be resized or is too large."}) + def UpdateImage(self, image, From cc8dffb22ba5cf7c94ce87f89800ce183197217c Mon Sep 17 00:00:00 2001 From: Brandon Bielicki Date: Sat, 28 Nov 2015 14:08:13 -0500 Subject: [PATCH 072/533] Updated 'UpdateProfile' method description to reflect link_profile_color argument --- twitter/api.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index 786448a5..219df0e1 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3326,6 +3326,9 @@ def UpdateProfile(self, description: A description of the user owning the account. Maximum of 160 characters. [Optional] + profile_link_color: + hex value of profile color theme. formated without '#' or '0x'. Ex: FF00FF + [Optional] include_entities: The entities node will be omitted when set to False. [Optional] From 04d1494cfcbc4508519f559d9a2093f4491c3451 Mon Sep 17 00:00:00 2001 From: Mahmoud Lababidi Date: Wed, 2 Dec 2015 16:10:59 -0500 Subject: [PATCH 073/533] Update get_access_token.py Add 'oob' to enable PIN based authentication correctly --- get_access_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get_access_token.py b/get_access_token.py index ed0622d0..34252e5f 100755 --- a/get_access_token.py +++ b/get_access_token.py @@ -24,7 +24,7 @@ def get_access_token(consumer_key, consumer_secret): - oauth_client = OAuth1Session(consumer_key, client_secret=consumer_secret) + oauth_client = OAuth1Session(consumer_key, client_secret=consumer_secret, callback_uri='oob') print 'Requesting temp token from Twitter' From c63dab4b490fdad9eef2fd7c65727fa3fcaeb8ca Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 6 Dec 2015 15:25:44 -0500 Subject: [PATCH 074/533] Updates Media object with new methods, adds id param, adds tests --- tests/test_media.py | 100 ++++++++++++++++++++++++++++++++++++++++++++ twitter/media.py | 53 ++++++++++++++++++++--- 2 files changed, 148 insertions(+), 5 deletions(-) create mode 100644 tests/test_media.py diff --git a/tests/test_media.py b/tests/test_media.py new file mode 100644 index 00000000..5933589e --- /dev/null +++ b/tests/test_media.py @@ -0,0 +1,100 @@ +import twitter +import json +import unittest + + +class MediaTest(unittest.TestCase): + + RAW_JSON = '''{"display_url": "pic.twitter.com/lX5LVZO", "expanded_url": "http://twitter.com/fakekurrik/status/244204973972410368/photo/1", "id": 244204973989187584, "id_str": "244204973989187584", "indices": [44,63], "media_url": "http://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png", "media_url_https": "https://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png", "sizes": {"large": {"h": 175, "resize": "fit", "w": 333}, "medium": {"h": 175, "resize": "fit", "w": 333}, "small": {"h": 175, "resize": "fit", "w": 333}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "type": "photo", "url": "http://t.co/lX5LVZO"}''' + SAMPLE_JSON = '''{"display_url": "pic.twitter.com/lX5LVZO", "expanded_url": "http://twitter.com/fakekurrik/status/244204973972410368/photo/1", "id": 244204973989187584, "media_url": "http://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png", "media_url_https": "https://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png", "type": "photo", "url": "http://t.co/lX5LVZO"}''' + + def _GetSampleMedia(self): + return twitter.Media( + id=244204973989187584, + expanded_url='http://twitter.com/fakekurrik/status/244204973972410368/photo/1', + display_url='pic.twitter.com/lX5LVZO', + url='http://t.co/lX5LVZO', + media_url_https='https://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png', + media_url='http://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png', + type='photo') + + def testInit(self): + '''Test the twitter.Media constructor''' + media = twitter.Media( + id=244204973989187584, + display_url='pic.twitter.com/7a2z7S8tKL', + expanded_url='http://twitter.com/NASAJPL/status/672830989895254016/photo/1', + url='https://t.co/7a2z7S8tKL', + media_url_https='https://pbs.twimg.com/media/CVZgOC3UEAELUcL.jpg', + media_url='http://pbs.twimg.com/media/CVZgOC3UEAELUcL.jpg', + type='photo') + + def testProperties(self): + '''Test all of the twitter.Media properties''' + media = twitter.Media() + + media.id = 244204973989187584 + media.display_url = 'pic.twitter.com/7a2z7S8tKL' + media.expanded_url = 'http://twitter.com/NASAJPL/status/672830989895254016/photo/1' + media.url = 'https://t.co/7a2z7S8tKL' + media.media_url_https = 'https://pbs.twimg.com/media/CVZgOC3UEAELUcL.jpg' + media.media_url = 'http://pbs.twimg.com/media/CVZgOC3UEAELUcL.jpg' + media.type = 'photo' + + self.assertEqual('pic.twitter.com/7a2z7S8tKL', media.display_url) + self.assertEqual( + 'http://twitter.com/NASAJPL/status/672830989895254016/photo/1', + media.expanded_url) + self.assertEqual('https://t.co/7a2z7S8tKL', media.url) + self.assertEqual( + 'https://pbs.twimg.com/media/CVZgOC3UEAELUcL.jpg', + media.media_url_https) + self.assertEqual( + 'http://pbs.twimg.com/media/CVZgOC3UEAELUcL.jpg', + media.media_url) + self.assertEqual('photo', media.type) + + def testAsJsonString(self): + '''Test the twitter.User AsJsonString method''' + self.assertEqual(MediaTest.SAMPLE_JSON, + self._GetSampleMedia().AsJsonString()) + + def testAsDict(self): + '''Test the twitter.Media AsDict method''' + media = self._GetSampleMedia() + data = media.AsDict() + + self.assertEqual( + 'pic.twitter.com/lX5LVZO', + data['display_url']) + self.assertEqual( + 'http://twitter.com/fakekurrik/status/244204973972410368/photo/1', + data['expanded_url']) + self.assertEqual('http://t.co/lX5LVZO', data['url']) + self.assertEqual( + 'https://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png', + data['media_url_https']) + self.assertEqual( + 'http://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png', + data['media_url']) + + self.assertEqual('photo', data['type']) + + def testEq(self): + '''Test the twitter.Media __eq__ method''' + media = twitter.Media() + media.id = 244204973989187584 + media.display_url = 'pic.twitter.com/lX5LVZO' + media.expanded_url = 'http://twitter.com/fakekurrik/status/244204973972410368/photo/1' + media.url = 'http://t.co/lX5LVZO' + media.media_url_https = 'https://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png' + media.media_url = 'http://pbs.twimg.com/media/A2OXIUcCUAAXj9k.png' + media.type = 'photo' + + self.assertEqual(media, self._GetSampleMedia()) + + def testNewFromJsonDict(self): + '''Test the twitter.Media NewFromJsonDict method''' + data = json.loads(MediaTest.RAW_JSON) + media = twitter.Media.NewFromJsonDict(data) + self.assertEqual(self._GetSampleMedia(), media) diff --git a/twitter/media.py b/twitter/media.py index 945e7ecd..c7deb632 100644 --- a/twitter/media.py +++ b/twitter/media.py @@ -1,7 +1,9 @@ #!/usr/bin/env python +import json class Media(object): + """A class representing the Media component of a tweet. The Media structure exposes the following properties: @@ -20,6 +22,7 @@ def __init__(self, **kwargs): returned in a sequence. """ param_defaults = { + 'id': None, 'expanded_url': None, 'display_url': None, 'url': None, @@ -29,9 +32,13 @@ def __init__(self, **kwargs): 'variants': None } - for (param, default) in param_defaults.iteritems(): + for (param, default) in param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + @property + def Id(self): + return self.id or None + @property def Expanded_url(self): return self.expanded_url or False @@ -59,9 +66,36 @@ def Variants(self): def __eq__(self, other): return other.Media_url == self.Media_url and other.Type == self.Type + def __ne__(self, other): + return not self.__eq__(other) + def __hash__(self): return hash((self.Media_url, self.Type)) + def __str__(self): + """A string representation of this twitter.Media instance. + + The return value is the same as the JSON string representation. + + Returns: + A string representation of this twitter.Media instance. + """ + return self.AsJsonString() + + def __repr__(self): + """ + A string representation of this twitter.Media instance. + + The return value is the ID of status, username and datetime. + + Returns: + Media(ID=244204973989187584, type=photo, display_url='pic.twitter.com/lX5LVZO') + """ + return "Media(Id={id}, type={type}, display_url='{url}')".format( + id=self.id, + type=self.type, + url=self.display_url) + def AsDict(self): """A dict representation of this twitter.Media instance. @@ -71,6 +105,8 @@ def AsDict(self): A dict representing this twitter.Media instance """ data = {} + if self.id: + data['id'] = self.id if self.expanded_url: data['expanded_url'] = self.expanded_url if self.display_url: @@ -87,7 +123,6 @@ def AsDict(self): data['variants'] = self.variants return data - @staticmethod def NewFromJsonDict(data): """Create a new instance based on a JSON dict. @@ -101,11 +136,19 @@ def NewFromJsonDict(data): if 'video_info' in data: variants = data['video_info']['variants'] - return Media(expanded_url=data.get('expanded_url', None), + return Media(id=data.get('id', None), + expanded_url=data.get('expanded_url', None), display_url=data.get('display_url', None), url=data.get('url', None), media_url_https=data.get('media_url_https', None), media_url=data.get('media_url', None), type=data.get('type', None), - variants=variants - ) + variants=variants) + + def AsJsonString(self): + """A JSON string representation of this twitter.Media instance. + + Returns: + A JSON string representation of this twitter.Media instance + """ + return json.dumps(self.AsDict(), sort_keys=True) From 4510b313b536f17b66bda25907eeaa58ded5188e Mon Sep 17 00:00:00 2001 From: mistersalmon Date: Mon, 21 Dec 2015 15:15:23 +0100 Subject: [PATCH 075/533] Add full_text option in GetDirectMessages function --- twitter/api.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index 219df0e1..c4e9103e 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1948,7 +1948,8 @@ def GetDirectMessages(self, max_id=None, count=None, include_entities=True, - skip_status=False): + skip_status=False, + full_text=False): """Returns a list of the direct messages sent to the authenticating user. The twitter.Api instance must be authenticated. @@ -1974,6 +1975,9 @@ def GetDirectMessages(self, skip_status: When set to True statuses will not be included in the returned user objects. [Optional] + full_text: + When set to True full message will be included in the returned message + object if message length is bigger than 140 characters. [Optional] Returns: A sequence of twitter.DirectMessage instances @@ -1996,6 +2000,8 @@ def GetDirectMessages(self, parameters['include_entities'] = 'false' if skip_status: parameters['skip_status'] = 1 + if full_text: + parameters['full_text'] = 'true' json_data = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(json_data.content) From e5899794594990999158a90a6ea3f1d3b95b8a21 Mon Sep 17 00:00:00 2001 From: mistersalmon Date: Mon, 21 Dec 2015 15:38:16 +0100 Subject: [PATCH 076/533] Add page option in GetDirectMessages If we have more than 200 unread messages, you can't reach them with the count option. Page option is the answer for this matter. --- twitter/api.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index c4e9103e..87abba64 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1949,7 +1949,8 @@ def GetDirectMessages(self, count=None, include_entities=True, skip_status=False, - full_text=False): + full_text=False, + page=None): """Returns a list of the direct messages sent to the authenticating user. The twitter.Api instance must be authenticated. @@ -1978,6 +1979,11 @@ def GetDirectMessages(self, full_text: When set to True full message will be included in the returned message object if message length is bigger than 140 characters. [Optional] + page: + If you want more than 200 messages, you can use this and get 20 messages + each time. You must recall it and increment the page value until it + return nothing. You can't use count option with it. First value is 1 and + not 0. Returns: A sequence of twitter.DirectMessage instances @@ -2002,6 +2008,8 @@ def GetDirectMessages(self, parameters['skip_status'] = 1 if full_text: parameters['full_text'] = 'true' + if page: + parameters['page'] = page json_data = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(json_data.content) From e68b6ae4a9b1bb959e310f7786b28ebf1fa8562d Mon Sep 17 00:00:00 2001 From: bob pasker Date: Mon, 28 Dec 2015 09:01:22 -0500 Subject: [PATCH 077/533] initialize Api.__auth fixes #119 This eliminates `AttributeError: 'Api' object has no attribute '_Api__auth'` errors by initializing `Api.__auth` to None. Now, setting the authentication parameters incorrectly results in the proper error message: `TwitterError: {'message': 'Api instance must first be given user credentials.'}`. --- twitter/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/twitter/api.py b/twitter/api.py index 87abba64..95c426e4 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -166,6 +166,7 @@ def __init__(self, self._debugHTTP = debugHTTP self._shortlink_size = 19 self._timeout = timeout + self.__auth = None self._InitializeRequestHeaders(request_headers) self._InitializeUserAgent() From 5ca83d119a418079efdc99aa219debeefd342397 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Mon, 28 Dec 2015 18:33:56 -0500 Subject: [PATCH 078/533] add requires.io badge to project readme --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 8c2cf052..52ff2616 100644 --- a/README.rst +++ b/README.rst @@ -12,6 +12,10 @@ By the `Python-Twitter Developers `_ :target: http://codecov.io/github/bear/python-twitter :alt: Codecov +.. image:: https://requires.io/github/bear/python-twitter/requirements.svg?branch=master + :target: https://requires.io/github/bear/python-twitter/requirements/?branch=master + :alt: Requirements Status + ============ Introduction ============ From bc8dd1ebf7016735e76cbe1b0b7f3e8b2b2b0d17 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Mon, 28 Dec 2015 18:42:18 -0500 Subject: [PATCH 079/533] add pypi version badge --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 52ff2616..66e72a9a 100644 --- a/README.rst +++ b/README.rst @@ -4,6 +4,10 @@ A Python wrapper around the Twitter API. By the `Python-Twitter Developers `_ +.. image:: https://img.shields.io/pypi/v/python-twitter.svg + :target: https://pypi.python.org/pypi/parsedatetime/ + :alt: Downloads + .. image:: https://travis-ci.org/bear/python-twitter.svg?branch=master :target: https://travis-ci.org/bear/python-twitter :alt: Travis CI From 0addb258e0508799df739dbb9c3bf94d8e1ec33c Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Mon, 28 Dec 2015 20:30:43 -0500 Subject: [PATCH 080/533] remove expectedFailure decorator from twitter.status test --- tests/test_status.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_status.py b/tests/test_status.py index 7a54ce52..866e3bd3 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -89,7 +89,6 @@ def testRelativeCreatedAt(self): status.now = self._ParseDate('Feb 04 12:00:00 2007') self.assertEqual('about 34 days ago', status.RelativeCreatedAt) - @unittest.expectedFailure def testAsJsonString(self): '''Test the twitter.Status AsJsonString method''' self.assertEqual(StatusTest.SAMPLE_JSON, From 7c825613bf842aadd889f152485e6314d401d6ff Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Mon, 28 Dec 2015 20:35:03 -0500 Subject: [PATCH 081/533] add python v3.5 to the test matrix --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index b56e6f4d..cf0f6514 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: python sudo: false python: - "2.7" + - "3.5" before_install: - pip install codecov From b6ee6d95f77c0bc8965a4e2554b3b196cee056a3 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Mon, 28 Dec 2015 20:47:02 -0500 Subject: [PATCH 082/533] add back skip decorator but with a version check --- tests/test_status.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_status.py b/tests/test_status.py index 866e3bd3..fdb079ff 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -1,5 +1,6 @@ # encoding: utf-8 +import sys import twitter import calendar import time @@ -89,6 +90,7 @@ def testRelativeCreatedAt(self): status.now = self._ParseDate('Feb 04 12:00:00 2007') self.assertEqual('about 34 days ago', status.RelativeCreatedAt) + @unittest.skipIf(sys.version_info.major >= 3, "skipped until fix found for v3 python") def testAsJsonString(self): '''Test the twitter.Status AsJsonString method''' self.assertEqual(StatusTest.SAMPLE_JSON, From dc32a98516f8bcc2c35557d75e5ec9dceb09a291 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 29 Dec 2015 03:55:19 -0500 Subject: [PATCH 083/533] serious flake8 lint cleanup; apologies for the extra large diffs --- setup.cfg | 7 + tests/test_api.py | 13 +- tests/test_parse_tweet.py | 24 +- tests/test_status.py | 16 +- tests/test_trend.py | 6 +- tests/test_user.py | 22 +- twitter/__init__.py | 32 +-- twitter/_file_cache.py | 9 +- twitter/api.py | 532 +++++++++++++++++++------------------- twitter/direct_message.py | 3 +- twitter/hashtag.py | 2 +- twitter/list.py | 3 +- twitter/media.py | 1 - twitter/parse_tweet.py | 58 ++--- twitter/status.py | 14 +- twitter/trend.py | 6 +- twitter/url.py | 2 - twitter/user.py | 2 +- 18 files changed, 370 insertions(+), 382 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..d23e7fc5 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,7 @@ +[check-manifest] +ignore = + .travis.yml + violations.flake8.txt + +[flake8] +ignore = E111,E126,E201,E202,E221,E302,E501 \ No newline at end of file diff --git a/tests/test_api.py b/tests/test_api.py index 78df64fe..08135571 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -1,8 +1,10 @@ # encoding: utf-8 -import twitter +import os import time +import urllib import unittest +import twitter from apikey import (CONSUMER_KEY, CONSUMER_SECRET, @@ -30,7 +32,7 @@ def testTwitterError(self): curry(self._OpenTestData, 'public_timeline_error.json')) # Manually try/catch so we can check the exception's value try: - statuses = self._api.GetUserTimeline() + self._api.GetUserTimeline() except twitter.TwitterError, error: # If the error message matches, the test passes self.assertEqual('test error', error.message) @@ -48,7 +50,7 @@ def testGetUserTimeline(self): self.assertEqual(89512102, statuses[0].id) self.assertEqual(718443, statuses[0].user.id) - #def testGetFriendsTimeline(self): + # def testGetFriendsTimeline(self): # '''Test the twitter.Api GetFriendsTimeline method''' # self._AddHandler('https://api.twitter.com/1.1/statuses/friends_timeline/kesuke.json', # curry(self._OpenTestData, 'friends_timeline-kesuke.json')) @@ -101,7 +103,7 @@ def testPostUpdateLatLon(self): print 'Testing PostUpdateLatLon' self._AddHandler('https://api.twitter.com/1.1/statuses/update.json', curry(self._OpenTestData, 'update_latlong.json')) - #test another update with geo parameters, again test somewhat arbitrary + # test another update with geo parameters, again test somewhat arbitrary status = self._api.PostUpdate(u'Моё судно на воздушной подушке полно угрей'.encode('utf8'), latitude=54.2, longitude=-2) self.assertEqual(u'Моё судно на воздушной подушке полно угрей', status.text) @@ -148,7 +150,7 @@ def testGetFollowers(self): alexkingorg = [u.status for u in users if u.screen_name == 'alexkingorg'] self.assertEqual(89554432, alexkingorg[0].id) - #def testGetFeatured(self): + # def testGetFeatured(self): # '''Test the twitter.Api GetFeatured method''' # self._AddHandler('https://api.twitter.com/1.1/statuses/featured.json', # curry(self._OpenTestData, 'featured.json')) @@ -322,4 +324,3 @@ class MockHTTPBasicAuthHandler(object): def add_password(self, realm, uri, user, passwd): # TODO(dewitt): Add verification that the proper args are passed pass - diff --git a/tests/test_parse_tweet.py b/tests/test_parse_tweet.py index 8c64d9e9..6548a436 100644 --- a/tests/test_parse_tweet.py +++ b/tests/test_parse_tweet.py @@ -7,35 +7,35 @@ class ParseTest(unittest.TestCase): """ Test the ParseTweet class """ def testParseTweets(self): - handles4 = u"""Do not use this word! Hurting me! @raja7727: @qadirbasha @manion @Jayks3 உடன்பிறப்பு”"""; + handles4 = u"""Do not use this word! Hurting me! @raja7727: @qadirbasha @manion @Jayks3 உடன்பிறப்பு”""" data = twitter.ParseTweet("@twitter", handles4) self.assertEqual([data.RT, data.MT, len(data.UserHandles)], [False, False, 4]) - hashtag_n_URL = u"மனதிற்கு மிகவும் நெருக்கமான பாடல்! உயிரையே கொடுக்கலாம் சார்! #KeladiKanmani https://www.youtube.com/watch?v=FHTiG_g2fM4 … #HBdayRajaSir"; + hashtag_n_URL = u"""மனதிற்கு மிகவும் நெருக்கமான பாடல்! உயிரையே கொடுக்கலாம் சார்! #KeladiKanmani https://www.youtube.com/watch?v=FHTiG_g2fM4 … #HBdayRajaSir""" data = twitter.ParseTweet("@twitter", hashtag_n_URL) self.assertEqual([len(data.Hashtags), len(data.URLs)], [2, 1]) - self.assertEqual(len(data.Emoticon),0) + self.assertEqual(len(data.Emoticon), 0) - url_only = u"""The #Rainbow #Nebula, 544,667 #lightyears away. pic.twitter.com/2A4wSUK25A"""; + url_only = u"""The #Rainbow #Nebula, 544,667 #lightyears away. pic.twitter.com/2A4wSUK25A""" data = twitter.ParseTweet("@twitter", url_only) self.assertEqual([data.MT, len(data.Hashtags), len(data.URLs)], [False, 3, 1]) - self.assertEqual(len(data.Emoticon),0) + self.assertEqual(len(data.Emoticon), 0) - url_handle = u"""RT ‏@BarackObama POTUS recommends Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; + url_handle = u"""RT ‏@BarackObama POTUS recommends Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI""" data = twitter.ParseTweet("@twitter", url_handle) self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) - self.assertEqual(len(data.Emoticon),0) + self.assertEqual(len(data.Emoticon), 0) def testEmoticon(self): - url_handle = u"""RT ‏@BarackObama POTUS recommends :-) Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI"""; + url_handle = u"""RT ‏@BarackObama POTUS recommends :-) Python-Twitter #unrelated picture pic.twitter.com/w8lFIfuUmI""" data = twitter.ParseTweet("@twitter", url_handle) self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 1, 1]) - self.assertEqual(len(data.Emoticon),1) + self.assertEqual(len(data.Emoticon), 1) - url_handle = u"""RT @cats ^-^ cute! But kitty litter :-( #unrelated picture"""; + url_handle = u"""RT @cats ^-^ cute! But kitty litter :-( #unrelated picture""" data = twitter.ParseTweet("@cats", url_handle) self.assertEqual([data.RT, len(data.Hashtags), len(data.URLs), len(data.UserHandles)], [True, 1, 0, 1]) - self.assertEqual(len(data.Emoticon),2) - self.assertEqual(data.Emoticon,['^-^',':-(']) + self.assertEqual(len(data.Emoticon), 2) + self.assertEqual(data.Emoticon, ['^-^', ':-(']) diff --git a/tests/test_status.py b/tests/test_status.py index fd55aba2..4e12b842 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -17,9 +17,7 @@ def _GetSampleUser(self): description=u'Canvas. JC Penny. Three ninety-eight.', location='Okinawa, Japan', url='https://twitter.com/kesuke', - profile_image_url='https://twitter.com/system/user/pro' - 'file_image/718443/normal/kesuke.pn' - 'g') + profile_image_url='https://twitter.com/system/user/profile_image/718443/normal/kesuke.png') def _GetSampleStatus(self): return twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', @@ -29,10 +27,10 @@ def _GetSampleStatus(self): def testInit(self): '''Test the twitter.Status constructor''' - status = twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', - id=4391023, - text=u'A légpárnás hajóm tele van angolnákkal.', - user=self._GetSampleUser()) + twitter.Status(created_at='Fri Jan 26 23:17:14 +0000 2007', + id=4391023, + text=u'A légpárnás hajóm tele van angolnákkal.', + user=self._GetSampleUser()) def testProperties(self): '''Test all of the twitter.Status properties''' @@ -117,7 +115,7 @@ def testNewFromJsonDict(self): data = json.loads(StatusTest.SAMPLE_JSON) status = twitter.Status.NewFromJsonDict(data) self.assertEqual(self._GetSampleStatus(), status) - + def testStatusRepresentation(self): status = self._GetSampleStatus() - self.assertEqual("Status(ID=4391023, screen_name='kesuke', created_at='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) \ No newline at end of file + self.assertEqual("Status(ID=4391023, screen_name='kesuke', created_at='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) diff --git a/tests/test_trend.py b/tests/test_trend.py index 1960764c..6046d30a 100644 --- a/tests/test_trend.py +++ b/tests/test_trend.py @@ -13,9 +13,9 @@ def _GetSampleTrend(self): def testInit(self): '''Test the twitter.Trend constructor''' - trend = twitter.Trend(name='Kesuke Miyagi', - query='Kesuke Miyagi', - timestamp='Fri Jan 26 23:17:14 +0000 2007') + twitter.Trend(name='Kesuke Miyagi', + query='Kesuke Miyagi', + timestamp='Fri Jan 26 23:17:14 +0000 2007') def testProperties(self): '''Test all of the twitter.Trend properties''' diff --git a/tests/test_user.py b/tests/test_user.py index 23f7429e..342248fd 100644 --- a/tests/test_user.py +++ b/tests/test_user.py @@ -23,17 +23,15 @@ def _GetSampleUser(self): 'ile_image/673483/normal/me.jpg', status=self._GetSampleStatus()) - def testInit(self): '''Test the twitter.User constructor''' - user = twitter.User(id=673483, - name='DeWitt', - screen_name='dewitt', - description=u'Indeterminate things', - url='https://twitter.com/dewitt', - profile_image_url='https://twitter.com/system/user/prof' - 'ile_image/673483/normal/me.jpg', - status=self._GetSampleStatus()) + twitter.User(id=673483, + name='DeWitt', + screen_name='dewitt', + description=u'Indeterminate things', + url='https://twitter.com/dewitt', + profile_image_url='https://twitter.com/system/user/profile_image/673483/normal/me.jpg', + status=self._GetSampleStatus()) def testProperties(self): '''Test all of the twitter.User properties''' @@ -48,10 +46,8 @@ def testProperties(self): self.assertEqual('Indeterminate things', user.description) user.location = 'San Francisco, CA' self.assertEqual('San Francisco, CA', user.location) - user.profile_image_url = 'https://twitter.com/system/user/profile_i' \ - 'mage/673483/normal/me.jpg' - self.assertEqual('https://twitter.com/system/user/profile_image/6734' - '83/normal/me.jpg', user.profile_image_url) + user.profile_image_url = 'https://twitter.com/system/user/profile_image/673483/normal/me.jpg' + self.assertEqual('https://twitter.com/system/user/profile_image/673483/normal/me.jpg', user.profile_image_url) self.status = self._GetSampleStatus() self.assertEqual(4212713, self.status.id) diff --git a/twitter/__init__.py b/twitter/__init__.py index 2854cd18..53a1f2e3 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -21,23 +21,23 @@ __author__ = 'python-twitter@googlegroups.com' __version__ = '2.3' -import json +import json # noqa try: - from hashlib import md5 + from hashlib import md5 # noqa except ImportError: - from md5 import md5 + from md5 import md5 # noqa -from ._file_cache import _FileCache -from .error import TwitterError -from .direct_message import DirectMessage -from .hashtag import Hashtag -from .parse_tweet import ParseTweet -from .trend import Trend -from .url import Url -from .status import Status -from .user import User, UserStatus -from .category import Category -from .media import Media -from .list import List -from .api import Api +from ._file_cache import _FileCache # noqa +from .error import TwitterError # noqa +from .direct_message import DirectMessage # noqa +from .hashtag import Hashtag # noqa +from .parse_tweet import ParseTweet # noqa +from .trend import Trend # noqa +from .url import Url # noqa +from .status import Status # noqa +from .user import User, UserStatus # noqa +from .category import Category # noqa +from .media import Media # noqa +from .list import List # noqa +from .api import Api # noqa diff --git a/twitter/_file_cache.py b/twitter/_file_cache.py index 47a98816..ce45816f 100644 --- a/twitter/_file_cache.py +++ b/twitter/_file_cache.py @@ -65,7 +65,7 @@ def _GetUsername(self): os.getenv('USERNAME') or \ os.getlogin() or \ 'nobody' - except (AttributeError, IOError, OSError) as e: + except (AttributeError, IOError, OSError): return 'nobody' def _GetTmpCachePath(self): @@ -131,17 +131,18 @@ def __init__(self, timeline_owner, tweet): def __str__(self): """ for display method """ return "owner %s, urls: %d, hashtags %d, user_handles %d, len_tweet %d, RT = %s, MT = %s" % ( - self.Owner, len(self.URLs), len(self.Hashtags), len(self.UserHandles), len(self.tweet), self.RT, self.MT) + self.Owner, len(self.URLs), len(self.Hashtags), len(self.UserHandles), + len(self.tweet), self.RT, self.MT) @staticmethod def getAttributeRT(tweet): """ see if tweet is a RT """ - return re.search(ParseTweet.regexp["RT"], tweet.strip()) != None + return re.search(ParseTweet.regexp["RT"], tweet.strip()) is not None @staticmethod def getAttributeMT(tweet): """ see if tweet is a MT """ - return re.search(ParseTweet.regexp["MT"], tweet.strip()) != None + return re.search(ParseTweet.regexp["MT"], tweet.strip()) is not None @staticmethod def getUserHandles(tweet): diff --git a/twitter/api.py b/twitter/api.py index 95c426e4..e7fba473 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -46,43 +46,43 @@ class Api(object): """A python interface into the Twitter API - + By default, the Api caches results for 1 minute. - + Example usage: - + To create an instance of the twitter.Api class, with no authentication: - + >>> import twitter >>> api = twitter.Api() - + To fetch a single user's public status messages, where "user" is either a Twitter "short name" or their user id. - + >>> statuses = api.GetUserTimeline(user) >>> print [s.text for s in statuses] - + To use authentication, instantiate the twitter.Api class with a consumer key and secret; and the oAuth key and secret: - + >>> api = twitter.Api(consumer_key='twitter consumer key', consumer_secret='twitter consumer secret', access_token_key='the_key_given', access_token_secret='the_key_secret') - + To fetch your friends (after being authenticated): - + >>> users = api.GetFriends() >>> print [u.name for u in users] - + To post a twitter status message (after being authenticated): - + >>> status = api.PostUpdate('I love python-twitter!') >>> print status.text I love python-twitter! - + There are many other methods, including: - + >>> api.PostUpdates(status) >>> api.PostDirectMessage(user, text) >>> api.GetUser(user) @@ -123,7 +123,7 @@ def __init__(self, debugHTTP=False, timeout=None): """Instantiate a new twitter.Api object. - + Args: consumer_key: Your Twitter user's consumer_key. @@ -188,7 +188,7 @@ def __init__(self, self.upload_url = upload_url if consumer_key is not None and (access_token_key is None or - access_token_secret is None): + access_token_secret is None): print >> sys.stderr, 'Twitter now requires an oAuth Access Token for API calls.' print >> sys.stderr, 'If you\'re using this library from a command line utility, please' print >> sys.stderr, 'run the included get_access_token.py tool to generate one.' @@ -215,7 +215,7 @@ def SetCredentials(self, access_token_key=None, access_token_secret=None): """Set the consumer_key and consumer_secret for this instance - + Args: consumer_key: The consumer_key of the twitter account. @@ -279,7 +279,7 @@ def GetSearch(self, result_type="mixed", include_entities=None): """Return twitter search results for a given term. - + Args: term: Term to search by. Optional if you include geocode. @@ -297,8 +297,8 @@ def GetSearch(self, until: Returns tweets generated before the given date. Date should be formatted as YYYY-MM-DD. [Optional] - since: - Returns tweets generated since the given date. Date should be + since: + Returns tweets generated since the given date. Date should be formatted as YYYY-MM-DD. [Optional] geocode: Geolocation information in the form (latitude, longitude, radius) @@ -321,7 +321,7 @@ def GetSearch(self, This node offers a variety of metadata about the tweet in a discrete structure, including: user_mentions, urls, and hashtags. [Optional] - + Returns: A sequence of twitter.Status instances, one for each message containing the term @@ -390,7 +390,7 @@ def GetUsersSearch(self, count=20, include_entities=None): """Return twitter user search results for a given term. - + Args: term: Term to search by. @@ -405,7 +405,7 @@ def GetUsersSearch(self, This node offers a variety of metadata about the tweet in a discrete structure, including: user_mentions, urls, and hashtags. [Optional] - + Returns: A sequence of twitter.User instances, one for each message containing the term @@ -435,12 +435,12 @@ def GetUsersSearch(self, def GetTrendsCurrent(self, exclude=None): """Get the current top trending topics (global) - + Args: exclude: Appends the exclude parameter as a request parameter. Currently only exclude=hashtags is supported. [Optional] - + Returns: A list with 10 entries. Each entry contains a trend. """ @@ -449,14 +449,14 @@ def GetTrendsCurrent(self, exclude=None): def GetTrendsWoeid(self, id, exclude=None): """Return the top 10 trending topics for a specific WOEID, if trending information is available for it. - + Args: woeid: the Yahoo! Where On Earth ID for a location. exclude: Appends the exclude parameter as a request parameter. Currently only exclude=hashtags is supported. [Optional] - + Returns: A list with 10 entries. Each entry contains a trend. """ @@ -520,11 +520,11 @@ def GetHomeTimeline(self, include_entities=True): """Fetch a collection of the most recent Tweets and retweets posted by the authenticating user and the users they follow. - + The home timeline is central to how most users interact with Twitter. - + The twitter.Api instance must be authenticated. - + Args: count: Specifies the number of statuses to retrieve. May not be @@ -557,7 +557,7 @@ def GetHomeTimeline(self, This node offers a variety of metadata about the tweet in a discreet structure, including: user_mentions, urls, and hashtags. [Optional] - + Returns: A sequence of twitter.Status instances, one for each message """ @@ -605,9 +605,9 @@ def GetUserTimeline(self, trim_user=None, exclude_replies=None): """Fetch the sequence of public Status messages for a single user. - + The twitter.Api instance must be authenticated if the user is private. - + Args: user_id: Specifies the ID of the user for whom to return the @@ -642,7 +642,7 @@ def GetUserTimeline(self, will receive up-to count tweets - this is because the count parameter retrieves that many tweets before filtering out retweets and replies. This parameter is only supported for JSON and XML responses. [Optional] - + Returns: A sequence of Status instances, one for each message up to count """ @@ -686,9 +686,9 @@ def GetStatus(self, include_my_retweet=True, include_entities=True): """Returns a single status message, specified by the id parameter. - + The twitter.Api instance must be authenticated. - + Args: id: The numeric ID of the status you are trying to retrieve. @@ -745,11 +745,11 @@ def GetStatusOembed(self, lang=None): """Returns information allowing the creation of an embedded representation of a Tweet on third party sites. - + Specify tweet by the id or url parameter. - + The twitter.Api instance must be authenticated. - + Args: id: The numeric ID of the status you are trying to embed. @@ -773,7 +773,7 @@ def GetStatusOembed(self, A comma sperated string of related screen names. [Optional] lang: Language code for the rendered embed. [Optional] - + Returns: A dictionary with the response. """ @@ -796,11 +796,11 @@ def GetStatusOembed(self, if maxwidth is not None: parameters['maxwidth'] = maxwidth - if hide_media == True: + if hide_media is True: parameters['hide_media'] = 'true' - if hide_thread == True: + if hide_thread is True: parameters['hide_thread'] = 'true' - if omit_script == True: + if omit_script is True: parameters['omit_script'] = 'true' if align is not None: if align not in ('left', 'center', 'right', 'none'): @@ -822,14 +822,14 @@ def GetStatusOembed(self, def DestroyStatus(self, id, trim_user=False): """Destroys the status specified by the required ID parameter. - + The twitter.Api instance must be authenticated and the authenticating user must be the author of the specified status. - + Args: id: The numerical ID of the status you're trying to destroy. - + Returns: A twitter.Status instance representing the destroyed status message """ @@ -868,11 +868,11 @@ def PostUpdate(self, display_coordinates=False, trim_user=False): """Post a twitter status message from the authenticated user. - + The twitter.Api instance must be authenticated. - + https://dev.twitter.com/docs/api/1.1/post/statuses/update - + Args: status: The message text to be posted. @@ -920,7 +920,7 @@ def PostUpdate(self, # raise TwitterError("Text must be less than or equal to %d characters. " # "Consider using PostUpdates." % CHARACTER_LIMIT) - data = {'status': status} + data = {'status': u_status} if in_reply_to_status_id: data['in_reply_to_status_id'] = in_reply_to_status_id if latitude is not None and longitude is not None: @@ -948,7 +948,7 @@ def PostMedia(self, place_id=None, display_coordinates=False): """Post a twitter status message from the user with a picture attached. - + Args: status: the text of your update @@ -967,7 +967,7 @@ def PostMedia(self, A place in the world identified by a Twitter place ID. [Optional] display_coordinates: Set true if you want to display coordinates. [Optional] - + Returns: A twitter.Status instance representing the message posted. """ @@ -981,7 +981,7 @@ def PostMedia(self, else: u_status = unicode(status, self._input_encoding) - data = {'status': status} + data = {'status': u_status} if not hasattr(media, 'read'): if media.startswith('http'): data['media'] = urllib2.urlopen(media).read() @@ -1014,7 +1014,7 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, """ Post a twitter status message from the authenticated user with multiple pictures attached. - + Args: status: the text of your update @@ -1031,7 +1031,7 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, place_id: A place in the world identified by a Twitter place ID display_coordinates: - + Returns: A twitter.Status instance representing the message posted. """ @@ -1070,7 +1070,7 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, if m is not len(media) - 1: media_ids += "," - data = {'status': status, 'media_ids': media_ids} + data = {'status': u_status, 'media_ids': media_ids} url = '%s/statuses/update.json' % self.base_url @@ -1083,12 +1083,12 @@ def PostUpdates(self, continuation=None, **kwargs): """Post one or more twitter status messages from the authenticated user. - + Unlike api.PostUpdate, this method will post multiple status updates if the message is longer than 140 characters. - + The twitter.Api instance must be authenticated. - + Args: status: The message text to be posted. @@ -1100,7 +1100,7 @@ def PostUpdates(self, (horizontal ellipsis) instead. [Defaults to None] **kwargs: See api.PostUpdate for a list of accepted parameters. - + Returns: A of list twitter.Status instance representing the messages posted. """ @@ -1117,9 +1117,9 @@ def PostUpdates(self, def PostRetweet(self, original_id, trim_user=False): """Retweet a tweet with the Retweet API. - + The twitter.Api instance must be authenticated. - + Args: original_id: The numerical id of the tweet that will be retweeted @@ -1127,7 +1127,7 @@ def PostRetweet(self, original_id, trim_user=False): If True the returned payload will only contain the user IDs, otherwise the payload will contain the full user data item. [Optional] - + Returns: A twitter.Status instance representing the original tweet with retweet details embedded. """ @@ -1155,9 +1155,9 @@ def GetUserRetweets(self, max_id=None, trim_user=False): """Fetch the sequence of retweets made by the authenticated user. - + The twitter.Api instance must be authenticated. - + Args: count: The number of status messages to retrieve. [Optional] @@ -1174,7 +1174,7 @@ def GetUserRetweets(self, If True the returned payload will only contain the user IDs, otherwise the payload will contain the full user data item. [Optional] - + Returns: A sequence of twitter.Status instances, one for each message up to count """ @@ -1189,7 +1189,7 @@ def GetReplies(self, """Get a sequence of status messages representing the 20 most recent replies (status updates prefixed with @twitterID) to the authenticating user. - + Args: since_id: Returns results with an ID greater than (that is, more recent @@ -1204,7 +1204,7 @@ def GetReplies(self, If True the returned payload will only contain the user IDs, otherwise the payload will contain the full user data item. [Optional] - + Returns: A sequence of twitter.Status instances, one for each reply to the user. """ @@ -1217,7 +1217,7 @@ def GetRetweets(self, trim_user=False): """Returns up to 100 of the first retweets of the tweet identified by statusid - + Args: statusid: The ID of the tweet for which retweets should be searched for @@ -1227,7 +1227,7 @@ def GetRetweets(self, If True the returned payload will only contain the user IDs, otherwise the payload will contain the full user data item. [Optional] - + Returns: A list of twitter.Status instances, which are retweets of statusid """ @@ -1255,7 +1255,7 @@ def GetRetweeters(self, stringify_ids=None): """Returns a collection of up to 100 user IDs belonging to users who have retweeted the tweet specified by the status_id parameter. - + Args: status_id: the tweet's numerical ID @@ -1263,7 +1263,7 @@ def GetRetweeters(self, breaks the ids into pages of no more than 100. stringify_ids: returns the IDs as unicode strings. [Optional] - + Returns: A list of user IDs """ @@ -1310,7 +1310,7 @@ def GetRetweetsOfMe(self, include_user_entities=True): """Returns up to 100 of the most recent tweets of the user that have been retweeted by others. - + Args: count: The number of retweets to retrieve, up to 100. @@ -1365,9 +1365,9 @@ def GetBlocks(self, skip_status=False, include_user_entities=False): """Fetch the sequence of twitter.User instances, one for each blocked user. - + The twitter.Api instance must be authenticated. - + Args: user_id: The twitter id of the user whose friends you are fetching. @@ -1383,7 +1383,7 @@ def GetBlocks(self, [Optional] include_user_entities: When True, the user entities will be included. [Optional] - + Returns: A sequence of twitter.User instances, one for each friend """ @@ -1420,15 +1420,15 @@ def GetBlocks(self, def DestroyBlock(self, id, trim_user=False): """Destroys the block for the user specified by the required ID parameter. - + The twitter.Api instance must be authenticated and the authenticating user must have blocked the user specified by the required ID parameter. - + Args: id: The numerical ID of the user to be un-blocked. - + Returns: A twitter.User instance representing the un-blocked user. """ @@ -1451,9 +1451,9 @@ def DestroyBlock(self, id, trim_user=False): def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip_status=False, include_user_entities=False): """Fetch the sequence of twitter.User instances, one for each friend. - + The twitter.Api instance must be authenticated. - + Args: user_id: The twitter id of the user whose friends you are fetching. @@ -1472,7 +1472,7 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip [Optional] include_user_entities: When True, the user entities will be included. [Optional] - + Returns: A sequence of twitter.User instances, one for each friend """ @@ -1514,12 +1514,13 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip return result def _GetIDsPaged(self, - url, # must be the url for followers/ids.json or friends/ids.json - user_id, - screen_name, - cursor, - stringify_ids, - count): + # must be the url for followers/ids.json or friends/ids.json + url, + user_id, + screen_name, + cursor, + stringify_ids, + count): """ This is the lowlest level paging logic for fetching IDs. It is used soley by GetFollowerIDsPaged and GetFriendIDsPaged. It is not intended for other use. @@ -1538,10 +1539,8 @@ def _GetIDsPaged(self, parameters['stringify_ids'] = True if count is not None: parameters['count'] = count - result = [] parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(json.content) @@ -1563,10 +1562,10 @@ def GetFollowerIDsPaged(self, stringify_ids=False, count=5000): """Make a cursor driven call to return the list of all followers - + The caller is responsible for handling the cursor value and looping to gather all of the data - + Args: user_id: The twitter id of the user whose followers you are fetching. @@ -1581,7 +1580,7 @@ def GetFollowerIDsPaged(self, The number of user id's to retrieve per API request. Please be aware that this might get you rate-limited if set to a small number. By default Twitter will retrieve 5000 UIDs per call. [Optional] - + Returns: next_cursor, previous_cursor, data sequence of twitter.User instances, one for each follower """ @@ -1589,16 +1588,16 @@ def GetFollowerIDsPaged(self, return self._GetIDsPaged(url, user_id, screen_name, cursor, stringify_ids, count) def GetFriendIDsPaged(self, - user_id=None, - screen_name=None, - cursor=-1, - stringify_ids=False, - count=5000): + user_id=None, + screen_name=None, + cursor=-1, + stringify_ids=False, + count=5000): """Make a cursor driven call to return the list of all friends - + The caller is responsible for handling the cursor value and looping to gather all of the data - + Args: user_id: The twitter id of the user whose friends you are fetching. @@ -1613,7 +1612,7 @@ def GetFriendIDsPaged(self, The number of user id's to retrieve per API request. Please be aware that this might get you rate-limited if set to a small number. By default Twitter will retrieve 5000 UIDs per call. [Optional] - + Returns: next_cursor, previous_cursor, data sequence of twitter.User instances, one for each friend """ @@ -1629,7 +1628,7 @@ def GetFollowerIDs(self, total_count=None): """Returns a list of twitter user id's for every person that is following the specified user. - + Args: user_id: The id of the user to retrieve the id list for. [Optional] @@ -1649,7 +1648,7 @@ def GetFollowerIDs(self, The total amount of UIDs to retrieve. Good if the account has many followers and you don't want to get rate limited. The data returned might contain more UIDs if total_count is not a multiple of count (5000 by default). [Optional] - + Returns: A list of integers, one for each user id. """ @@ -1683,7 +1682,7 @@ def GetFriendIDs(self, total_count=None): """Returns a list of twitter user id's for every person that is followed by the specified user. - + Args: user_id: The id of the user to retrieve the id list for. [Optional] @@ -1703,7 +1702,7 @@ def GetFriendIDs(self, The total amount of UIDs to retrieve. Good if the account has many followers and you don't want to get rate limited. The data returned might contain more UIDs if total_count is not a multiple of count (5000 by default). [Optional] - + Returns: A list of integers, one for each user id. """ @@ -1712,8 +1711,8 @@ def GetFriendIDs(self, count = total_count while True: - next_cursor, previous_cursor, data = self.GetFriendIDsPaged(user_id, screen_name, cursor, stringify_ids, - count) + next_cursor, previous_cursor, data = self.GetFriendIDsPaged(user_id, screen_name, + cursor, stringify_ids, count) result += [x for x in data['ids']] if next_cursor == 0 or next_cursor == previous_cursor: break @@ -1736,10 +1735,10 @@ def GetFollowersPaged(self, skip_status=False, include_user_entities=False): """Make a cursor driven call to return the list of all followers - + The caller is responsible for handling the cursor value and looping to gather all of the data - + Args: user_id: The twitter id of the user whose followers you are fetching. @@ -1758,12 +1757,11 @@ def GetFollowersPaged(self, [Optional] include_user_entities: When True, the user entities will be included. [Optional] - + Returns: next_cursor, previous_cursor, data sequence of twitter.User instances, one for each follower """ url = '%s/followers/list.json' % self.base_url - result = [] parameters = {} if user_id is not None: parameters['user_id'] = user_id @@ -1801,9 +1799,9 @@ def GetFollowers(self, skip_status=False, include_user_entities=False): """Fetch the sequence of twitter.User instances, one for each follower. - + The twitter.Api instance must be authenticated. - + Args: user_id: The twitter id of the user whose followers you are fetching. @@ -1821,7 +1819,7 @@ def GetFollowers(self, If True the statuses will not be returned in the user items. [Optional] include_user_entities: When True, the user entities will be included. [Optional] - + Returns: A sequence of twitter.User instances, one for each follower """ @@ -1829,7 +1827,6 @@ def GetFollowers(self, raise TwitterError({'message': "twitter.Api instance must be authenticated"}) result = [] - parameters = {} while True: next_cursor, previous_cursor, data = self.GetFollowersPaged(user_id, screen_name, cursor, count, skip_status, include_user_entities) @@ -1849,13 +1846,13 @@ def UsersLookup(self, users=None, include_entities=True): """Fetch extended information for the specified users. - + Users may be specified either as lists of either user_ids, screen_names, or twitter.User objects. The list of users that are queried is the union of all specified parameters. - + The twitter.Api instance must be authenticated. - + Args: user_id: A list of user_ids to retrieve extended information. [Optional] @@ -1867,7 +1864,7 @@ def UsersLookup(self, include_entities: The entities node that may appear within embedded statuses will be disincluded when set to False. [Optional] - + Returns: A list of twitter.User objects for the requested users """ @@ -1908,9 +1905,9 @@ def GetUser(self, screen_name=None, include_entities=True): """Returns a single user. - + The twitter.Api instance must be authenticated. - + Args: user_id: The id of the user to retrieve. [Optional] @@ -1921,7 +1918,7 @@ def GetUser(self, include_entities: The entities node will be omitted when set to False. [Optional] - + Returns: A twitter.User instance representing that user """ @@ -1953,9 +1950,9 @@ def GetDirectMessages(self, full_text=False, page=None): """Returns a list of the direct messages sent to the authenticating user. - + The twitter.Api instance must be authenticated. - + Args: since_id: Returns results with an ID greater than (that is, more recent @@ -1985,7 +1982,7 @@ def GetDirectMessages(self, each time. You must recall it and increment the page value until it return nothing. You can't use count option with it. First value is 1 and not 0. - + Returns: A sequence of twitter.DirectMessage instances """ @@ -2024,9 +2021,9 @@ def GetSentDirectMessages(self, page=None, include_entities=True): """Returns a list of the direct messages sent by the authenticating user. - + The twitter.Api instance must be authenticated. - + Args: since_id: Returns results with an ID greater than (that is, more recent @@ -2048,7 +2045,7 @@ def GetSentDirectMessages(self, include_entities: The entities node will be omitted when set to False. [Optional] - + Returns: A sequence of twitter.DirectMessage instances """ @@ -2081,17 +2078,17 @@ def PostDirectMessage(self, user_id=None, screen_name=None): """Post a twitter direct message from the authenticated user. - + The twitter.Api instance must be authenticated. user_id or screen_name must be specified. - + Args: text: The message text to be posted. Must be less than 140 characters. user_id: The ID of the user who should receive the direct message. [Optional] screen_name: The screen name of the user who should receive the direct message. [Optional] - + Returns: A twitter.DirectMessage instance representing the message posted """ @@ -2114,14 +2111,14 @@ def PostDirectMessage(self, def DestroyDirectMessage(self, id, include_entities=True): """Destroys the direct message specified in the required ID parameter. - + The twitter.Api instance must be authenticated, and the authenticating user must be the recipient of the specified direct message. - + Args: id: The id of the direct message to be destroyed - + Returns: A twitter.DirectMessage instance representing the message destroyed """ @@ -2137,9 +2134,9 @@ def DestroyDirectMessage(self, id, include_entities=True): def CreateFriendship(self, user_id=None, screen_name=None, follow=True): """Befriends the user specified by the user_id or screen_name. - + The twitter.Api instance must be authenticated. - + Args: user_id: A user_id to follow [Optional] @@ -2147,7 +2144,7 @@ def CreateFriendship(self, user_id=None, screen_name=None, follow=True): A screen_name to follow [Optional] follow: Set to False to disable notifications for the target user - + Returns: A twitter.User instance representing the befriended user. """ @@ -2176,9 +2173,9 @@ def _AddOrEditFriendship(self, user_id=None, screen_name=None, uri_end='create', def UpdateFriendship(self, user_id=None, screen_name=None, follow=True, **kwargs): # api compat with Create """Updates a friendship with the user specified by the user_id or screen_name. - + The twitter.Api instance must be authenticated. - + Args: user_id: A user_id to update [Optional] @@ -2188,7 +2185,7 @@ def UpdateFriendship(self, user_id=None, screen_name=None, follow=True, **kwargs Set to False to disable notifications for the target user device: Set to False to disable notifications for the target user - + Returns: A twitter.User instance representing the befriended user. """ @@ -2198,15 +2195,15 @@ def UpdateFriendship(self, user_id=None, screen_name=None, follow=True, **kwargs def DestroyFriendship(self, user_id=None, screen_name=None): """Discontinues friendship with a user_id or screen_name. - + The twitter.Api instance must be authenticated. - + Args: user_id: A user_id to unfollow [Optional] screen_name: A screen_name to unfollow [Optional] - + Returns: A twitter.User instance representing the discontinued friend. """ @@ -2226,17 +2223,17 @@ def DestroyFriendship(self, user_id=None, screen_name=None): def LookupFriendship(self, user_id=None, screen_name=None): """Lookup friendship status for user specified by user_id or screen_name. - + Currently only supports one user at a time. - + The twitter.Api instance must be authenticated. - + Args: user_id: A user_id to lookup [Optional] screen_name: A screen_name to lookup [Optional] - + Returns: A twitter.UserStatus instance representing the friendship status """ @@ -2262,11 +2259,11 @@ def CreateFavorite(self, id=None, include_entities=True): """Favorites the specified status object or id as the authenticating user. - + Returns the favorite status when successful. - + The twitter.Api instance must be authenticated. - + Args: id: The id of the twitter status to mark as a favorite. [Optional] @@ -2274,7 +2271,7 @@ def CreateFavorite(self, The twitter.Status object to mark as a favorite. [Optional] include_entities: The entities node will be omitted when set to False. [Optional] - + Returns: A twitter.Status instance representing the newly-marked favorite. """ @@ -2299,11 +2296,11 @@ def DestroyFavorite(self, id=None, include_entities=True): """Un-Favorites the specified status object or id as the authenticating user. - + Returns the un-favorited status when successful. - + The twitter.Api instance must be authenticated. - + Args: id: The id of the twitter status to unmark as a favorite. [Optional] @@ -2311,7 +2308,7 @@ def DestroyFavorite(self, The twitter.Status object to unmark as a favorite. [Optional] include_entities: The entities node will be omitted when set to False. [Optional] - + Returns: A twitter.Status instance representing the newly-unmarked favorite. """ @@ -2339,9 +2336,9 @@ def GetFavorites(self, max_id=None, include_entities=True): """Return a list of Status objects representing favorited tweets. - + Returns up to 200 most recent tweets for the authenticated user. - + Args: user_id: Specifies the ID of the user for whom to return the @@ -2365,7 +2362,7 @@ def GetFavorites(self, greater than 200. [Optional] include_entities: The entities node will be omitted when set to False. [Optional] - + Returns: A sequence of Status instances, one for each favorited tweet up to count """ @@ -2407,7 +2404,7 @@ def GetMentions(self, include_entities=True): """Returns the 20 most recent mentions (status containing @screen_name) for the authenticating user. - + Args: count: Specifies the number of tweets to try and retrieve, up to a maximum of @@ -2433,7 +2430,7 @@ def GetMentions(self, default only the user_id of the contributor is included. [Optional] include_entities: The entities node will be disincluded when set to False. [Optional] - + Returns: A sequence of twitter.Status instances, one for each mention of the user. """ @@ -2490,11 +2487,11 @@ def GetMentions(self, def CreateList(self, name, mode=None, description=None): """Creates a new list with the give name for the authenticated user. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/create - + Args: name: New name for the list @@ -2503,7 +2500,7 @@ def CreateList(self, name, mode=None, description=None): Defaults to 'public'. [Optional] description: Description of the list. [Optional] - + Returns: A twitter.List instance representing the new list """ @@ -2525,11 +2522,11 @@ def DestroyList(self, list_id=None, slug=None): """Destroys the list identified by list_id or owner_screen_name/owner_id and slug. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/destroy - + Args: owner_screen_name: The screen_name of the user who owns the list being requested by a slug. @@ -2541,7 +2538,7 @@ def DestroyList(self, You can identify a list by its slug instead of its numerical id. If you decide to do so, note that you'll also have to specify the list owner using the owner_id or owner_screen_name parameters. - + Returns: A twitter.List instance representing the removed list. """ @@ -2577,11 +2574,11 @@ def CreateSubscription(self, list_id=None, slug=None): """Creates a subscription to a list by the authenticated user. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/subscribers/create - + Args: owner_screen_name: The screen_name of the user who owns the list being requested by a slug. @@ -2593,7 +2590,7 @@ def CreateSubscription(self, You can identify a list by its slug instead of its numerical id. If you decide to do so, note that you'll also have to specify the list owner using the owner_id or owner_screen_name parameters. - + Returns: A twitter.User instance representing the user subscribed """ @@ -2629,11 +2626,11 @@ def DestroySubscription(self, list_id=None, slug=None): """Destroys the subscription to a list for the authenticated user. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/subscribers/destroy - + Args: owner_screen_name: The screen_name of the user who owns the list being requested by a slug. @@ -2645,7 +2642,7 @@ def DestroySubscription(self, You can identify a list by its slug instead of its numerical id. If you decide to do so, note that you'll also have to specify the list owner using the owner_id or owner_screen_name parameters. - + Returns: A twitter.List instance representing the removed list. """ @@ -2685,13 +2682,13 @@ def ShowSubscription(self, include_entities=False, skip_status=False): """Check if the specified user is a subscriber of the specified list. - + Returns the user if they are subscriber. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/subscribers/show - + Args: owner_screen_name: The screen_name of the user who owns the list being requested by a slug. @@ -2760,15 +2757,15 @@ def GetSubscriptions(self, count=20, cursor=-1): """Obtain a collection of the lists the specified user is subscribed to. - + The list will contain a maximum of 20 lists per page by default. - + Does not include the user's own lists. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/subscriptions - + Args: user_id: The ID of the user for whom to return results for. [Optional] @@ -2782,7 +2779,7 @@ def GetSubscriptions(self, The "page" value that Twitter will use to start building the list sequence from. Use the value of -1 to start at the beginning. Twitter will return in the result the values for next_cursor and previous_cursor. [Optional] - + Returns: A sequence of twitter.List instances, one for each list """ @@ -2818,13 +2815,13 @@ def GetMemberships(self, cursor=-1, filter_to_owned_lists=False): """Obtain the lists the specified user is a member of. - + Returns a maximum of 20 lists per page by default. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/memberships - + Args: user_id: The ID of the user for whom to return results for. [Optional] @@ -2843,7 +2840,7 @@ def GetMemberships(self, owns, and the user specified by user_id or screen_name is a member of. Default value is False. [Optional] - + Returns: A sequence of twitter.List instances, one for each list in which the user specified by user_id or screen_name is a member @@ -2882,12 +2879,12 @@ def GetListsList(self, screen_name, user_id=None, reverse=False): - """Returns all lists the user subscribes to, including their own. - + """Returns all lists the user subscribes to, including their own. + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/list - + Args: screen_name: Specifies the screen name of the user for whom to return the @@ -2901,7 +2898,7 @@ def GetListsList(self, If False, the owned lists will be returned first, othewise subscribed lists will be at the top. Returns a maximum of 100 entries regardless. Defaults to False. [Optional] - + Returns: A list of twitter List items. """ @@ -2930,11 +2927,11 @@ def GetListTimeline(self, include_rts=True, include_entities=True): """Fetch the sequence of Status messages for a given List ID. - + The twitter.Api instance must be authenticated if the user is private. - + Twitter endpoint: /lists/statuses - + Args: list_id: Specifies the ID of the list to retrieve. @@ -2967,7 +2964,7 @@ def GetListTimeline(self, include_entities: If False, the timeline will not contain additional metadata. Defaults to True. [Optional] - + Returns: A sequence of Status instances, one for each message up to count """ @@ -3022,11 +3019,11 @@ def GetListMembers(self, include_entities=False): """Fetch the sequence of twitter.User instances, one for each member of the given list_id or slug. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/members - + Args: list_id: Specifies the ID of the list to retrieve. @@ -3050,7 +3047,7 @@ def GetListMembers(self, include_entities: If False, the timeline will not contain additional metadata. Defaults to True. [Optional] - + Returns: A sequence of twitter.User instances, one for each follower """ @@ -3106,11 +3103,11 @@ def CreateListsMember(self, owner_screen_name=None, owner_id=None): """Add a new member (or list of members) to a user's list. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/members/create or /lists/members/create_all - + Args: list_id: The numerical id of the list. @@ -3128,7 +3125,7 @@ def CreateListsMember(self, The screen_name of the user who owns the list being requested by a slug. owner_id: The user ID of the user who owns the list being requested by a slug. - + Returns: A twitter.List instance representing the list subscribed to """ @@ -3154,7 +3151,7 @@ def CreateListsMember(self, raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) if user_id: try: - if type(user_id) == types.ListType or type(user_id) == types.TupleType: + if isinstance(user_id, types.ListType) or isinstance(user_id, types.TupleType): isList = True data['user_id'] = '%s' % ','.join(user_id) else: @@ -3162,7 +3159,7 @@ def CreateListsMember(self, except ValueError: raise TwitterError({'message': "user_id must be an integer"}) elif screen_name: - if type(screen_name) == types.ListType or type(screen_name) == types.TupleType: + if isinstance(screen_name, types.ListType) or isinstance(screen_name, types.TupleType): isList = True data['screen_name'] = '%s' % ','.join(screen_name) else: @@ -3185,11 +3182,11 @@ def DestroyListsMember(self, user_id=None, screen_name=None): """Destroys the subscription to a list for the authenticated user. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/subscribers/destroy - + Args: list_id: The numerical id of the list. @@ -3207,7 +3204,7 @@ def DestroyListsMember(self, screen_name: The screen_name or a list of Screen_name's to add to the list. If not given, then user_id is required. - + Returns: A twitter.List instance representing the removed list. """ @@ -3233,7 +3230,7 @@ def DestroyListsMember(self, raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) if user_id: try: - if type(user_id) == types.ListType or type(user_id) == types.TupleType: + if isinstance(user_id, types.ListType) or isinstance(user_id, types.TupleType): isList = True data['user_id'] = '%s' % ','.join(user_id) else: @@ -3241,7 +3238,7 @@ def DestroyListsMember(self, except ValueError: raise TwitterError({'message': "user_id must be an integer"}) elif screen_name: - if type(screen_name) == types.ListType or type(screen_name) == types.TupleType: + if isinstance(screen_name, types.ListType) or isinstance(screen_name, types.TupleType): isList = True data['screen_name'] = '%s' % ','.join(screen_name) else: @@ -3262,11 +3259,11 @@ def GetLists(self, count=None, cursor=-1): """Fetch the sequence of lists for a user. - + The twitter.Api instance must be authenticated. - + Twitter endpoint: /lists/ownerships - + Args: user_id: The ID of the user for whom to return results for. [Optional] @@ -3280,7 +3277,7 @@ def GetLists(self, The "page" value that Twitter will use to start building the list sequence from. Use the value of -1 to start at the beginning. Twitter will return in the result the values for next_cursor and previous_cursor. [Optional] - + Returns: A sequence of twitter.List instances, one for each list """ @@ -3323,9 +3320,9 @@ def UpdateProfile(self, include_entities=False, skip_status=False): """Update's the authenticated user's profile data. - + The twitter.Api instance must be authenticated. - + Args: name: Full name associated with the profile. @@ -3350,7 +3347,7 @@ def UpdateProfile(self, skip_status: When set to either True, t or 1 then statuses will not be included in the returned user objects. [Optional] - + Returns: A twitter.User instance representing the modified user. """ @@ -3375,13 +3372,13 @@ def UpdateProfile(self, data = self._ParseAndCheckTwitter(json_data.content) return User.NewFromJsonDict(data) - + def UpdateBackgroundImage(self, - image, - tile=False, - include_entities=False, - skip_status=False): - + image, + tile=False, + include_entities=False, + skip_status=False): + url = '%s/account/update_profile_background_image.json' % (self.base_url) with open(image, 'rb') as image_file: encoded_image = base64.b64encode(image_file.read()) @@ -3394,7 +3391,7 @@ def UpdateBackgroundImage(self, data['include_entities'] = 1 if skip_status: data['skip_status'] = 1 - + json = self._RequestUrl(url, 'POST', data=data) if json.status_code in [200, 201, 202]: return True @@ -3403,7 +3400,6 @@ def UpdateBackgroundImage(self, if json.status_code == 422: raise TwitterError({'message': "The image could not be resized or is too large."}) - def UpdateImage(self, image, include_entities=False, @@ -3433,9 +3429,9 @@ def UpdateBanner(self, include_entities=False, skip_status=False): """Updates the authenticated users profile banner. - + The twitter.Api instance must be authenticated. - + Args: image: Location of image in file system @@ -3444,7 +3440,7 @@ def UpdateBanner(self, This node offers a variety of metadata about the tweet in a discrete structure, including: user_mentions, urls, and hashtags. [Optional] - + Returns: A twitter.List instance representing the list subscribed to """ @@ -3474,13 +3470,13 @@ def UpdateBanner(self, def GetStreamSample(self, delimited=None, stall_warnings=None): """Returns a small sample of public statuses. - + Args: delimited: Specifies a message length. [Optional] stall_warnings: Set to True to have Twitter deliver stall warnings. [Optional] - + Returns: A Twitter stream """ @@ -3498,7 +3494,7 @@ def GetStreamFilter(self, delimited=None, stall_warnings=None): """Returns a filtered view of public statuses. - + Args: follow: A list of user IDs to track. [Optional] @@ -3511,7 +3507,7 @@ def GetStreamFilter(self, Specifies a message length. [Optional] stall_warnings: Set to True to have Twitter deliver stall warnings. [Optional] - + Returns: A twitter stream """ @@ -3545,7 +3541,7 @@ def GetUserStream(self, stall_warning=None, stringify_friend_ids=False): """Returns the data from the user stream. - + Args: replies: Specifies whether to return additional @replies in the stream. @@ -3565,7 +3561,7 @@ def GetUserStream(self, stringify_friend_ids: Specifies whether to send the friends list preamble as an array of integers or an array of strings. [Optional] - + Returns: A twitter stream """ @@ -3594,7 +3590,7 @@ def GetUserStream(self, def VerifyCredentials(self): """Returns a twitter.User instance if the authenticating user is valid. - + Returns: A twitter.User instance representing that user if the credentials are valid, None otherwise. @@ -3609,7 +3605,7 @@ def VerifyCredentials(self): def SetCache(self, cache): """Override the default cache. Set to None to prevent caching. - + Args: cache: An instance that supports the same API as the twitter._FileCache @@ -3621,7 +3617,7 @@ def SetCache(self, cache): def SetUrllib(self, urllib): """Override the default urllib implementation. - + Args: urllib: An instance that supports the same API as the urllib2 module @@ -3630,7 +3626,7 @@ def SetUrllib(self, urllib): def SetCacheTimeout(self, cache_timeout): """Override the default cache timeout. - + Args: cache_timeout: Time, in seconds, that responses should be reused. @@ -3639,7 +3635,7 @@ def SetCacheTimeout(self, cache_timeout): def SetUserAgent(self, user_agent): """Override the default user agent. - + Args: user_agent: A string that should be send to the server as the user-agent. @@ -3648,7 +3644,7 @@ def SetUserAgent(self, user_agent): def SetXTwitterHeaders(self, client, url, version): """Set the X-Twitter HTTP headers that will be sent to the server. - + Args: client: The client name as a string. Will be sent to the server as @@ -3666,13 +3662,13 @@ def SetXTwitterHeaders(self, client, url, version): def SetSource(self, source): """Suggest the "from source" value to be displayed on the Twitter web site. - + The value of the 'source' parameter must be first recognized by the Twitter server. - + New source values are authorized on a case by case basis by the Twitter development team. - + Args: source: The source name as a string. Will be sent to the server as @@ -3682,12 +3678,12 @@ def SetSource(self, source): def GetRateLimitStatus(self, resource_families=None): """Fetch the rate limit status for the currently authorized user. - + Args: resources: A comma seperated list of resource families you want to know the current rate limit disposition of. [Optional] - + Returns: A dictionary containing the time the limit will reset (reset_time), the number of remaining hits allowed before the reset (remaining_hits), @@ -3708,7 +3704,7 @@ def GetAverageSleepTime(self, resources): """Determines the minimum number of seconds that a program must wait before hitting the server again without exceeding the rate_limit imposed for the currently authenticated user. - + Returns: The average seconds that the api must have to sleep """ @@ -3735,7 +3731,7 @@ def GetSleepTime(self, resources): """Determines the minimum number of seconds that a program must wait before hitting the server again without exceeding the rate_limit imposed for the currently authenticated user. - + Returns: The minimum seconds that the api must have to sleep before query again """ @@ -3815,14 +3811,14 @@ def _Encode(self, s): def _EncodeParameters(self, parameters): """Return a string in key=value&key=value form. - + Values of None are not included in the output string. - + Args: parameters: A dict of (key, value) tuples, where value is encoded as specified by self._encoding - + Returns: A URL-encoded string in "key=value&key=value" form """ @@ -3833,15 +3829,15 @@ def _EncodeParameters(self, parameters): def _EncodePostData(self, post_data): """Return a string in key=value&key=value form. - + Values are assumed to be encoded in the format specified by self._encoding, and are subsequently URL encoded. - + Args: post_data: A dict of (key, value) tuples, where value is encoded as specified by self._encoding - + Returns: A URL-encoded string in "key=value&key=value" form """ @@ -3853,7 +3849,7 @@ def _EncodePostData(self, post_data): def _ParseAndCheckTwitter(self, json_data): """Try and parse the JSON returned from Twitter and return an empty dictionary if there is any error. - + This is a purely defensive check because during some Twitter network outages it will return an HTML failwhale page. """ @@ -3873,11 +3869,11 @@ def _ParseAndCheckTwitter(self, json_data): def _CheckForTwitterError(self, data): """Raises a TwitterError if twitter returns an error message. - + Args: data: A python dict created from the Twitter json response - + Raises: TwitterError wrapping the twitter error message if one exists. """ @@ -3890,7 +3886,7 @@ def _CheckForTwitterError(self, data): def _RequestUrl(self, url, verb, data=None): """Request a url. - + Args: url: The web location we want to retrieve. @@ -3898,14 +3894,14 @@ def _RequestUrl(self, url, verb, data=None): Either POST or GET. data: A dict of (str, unicode) key/value pairs. - + Returns: A JSON object. """ if verb == 'POST': - if data.has_key('media_ids'): + if 'media_ids' in data: url = self._BuildUrl(url, extra_params={'media_ids': data['media_ids']}) - if data.has_key('media'): + if 'media' in data: try: return requests.post( url, @@ -3939,7 +3935,7 @@ def _RequestUrl(self, url, verb, data=None): def _RequestStream(self, url, verb, data=None): """Request a stream of data. - + Args: url: The web location we want to retrieve. @@ -3947,7 +3943,7 @@ def _RequestStream(self, url, verb, data=None): Either POST or GET. data: A dict of (str, unicode) key/value pairs. - + Returns: A twitter stream. """ diff --git a/twitter/direct_message.py b/twitter/direct_message.py index e21f56f1..e0013a4f 100644 --- a/twitter/direct_message.py +++ b/twitter/direct_message.py @@ -3,7 +3,7 @@ from calendar import timegm import rfc822 -from twitter import json, TwitterError +from twitter import json class DirectMessage(object): @@ -148,7 +148,6 @@ def SenderId(self): """ return self._sender_id - def __ne__(self, other): return not self.__eq__(other) diff --git a/twitter/hashtag.py b/twitter/hashtag.py index 3a6c6e81..157cd534 100644 --- a/twitter/hashtag.py +++ b/twitter/hashtag.py @@ -15,7 +15,7 @@ def NewFromJsonDict(data): Args: data: A JSON dict, as converted from the JSON in the twitter API - + Returns: A twitter.Hashtag instance """ diff --git a/twitter/list.py b/twitter/list.py index 4c102770..d548869f 100644 --- a/twitter/list.py +++ b/twitter/list.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from twitter import json, TwitterError, User +from twitter import json, User class List(object): @@ -46,7 +46,6 @@ def Id(self): """ return self._id - @property def Name(self): """Get the real name of this list. diff --git a/twitter/media.py b/twitter/media.py index 945e7ecd..5e81c7e9 100644 --- a/twitter/media.py +++ b/twitter/media.py @@ -87,7 +87,6 @@ def AsDict(self): data['variants'] = self.variants return data - @staticmethod def NewFromJsonDict(data): """Create a new instance based on a JSON dict. diff --git a/twitter/parse_tweet.py b/twitter/parse_tweet.py index daf3ddea..a5503bf1 100644 --- a/twitter/parse_tweet.py +++ b/twitter/parse_tweet.py @@ -2,38 +2,36 @@ import re -from twitter import TwitterError # import not used? - class Emoticons: - POSITIVE = ["*O","*-*","*O*","*o*","* *", - ":P",":D",":d",":p", - ";P",";D",";d",";p", - ":-)",";-)",":=)",";=)", - ":<)",":>)",";>)",";=)", - "=}",":)","(:;)", - "(;",":}","{:",";}", + POSITIVE = ["*O", "*-*", "*O*", "*o*", "* *", + ":P", ":D", ":d", ":p", + ";P", ";D", ";d", ";p", + ":-)", ";-)", ":=)", ";=)", + ":<)", ":>)", ";>)", ";=)", + "=}", ":)", "(:;)", + "(;", ":}", "{:", ";}", "{;:]", - "[;",":')",";')",":-3", - "{;",":]", - ";-3",":-x",";-x",":-X", - ";-X",":-}",";-=}",":-]", - ";-]",":-.)", - "^_^","^-^"] + "[;", ":')", ";')", ":-3", + "{;", ":]", + ";-3", ":-x", ";-x", ":-X", + ";-X", ":-}", ";-=}", ":-]", + ";-]", ":-.)", + "^_^", "^-^"] - NEGATIVE = [":(",";(",":'(", - "=(","={","):",");", - ")':",")';",")=","}=", - ";-{{",";-{",":-{{",":-{", - ":-(",";-(", - ":,)",":'{", - "[:",";]" + NEGATIVE = [":(", ";(", ":'(", + "=(", "={", "):", ");", + ")':", ")';", ")=", "}=", + ";-{{", ";-{", ":-{{", ":-{", + ":-(", ";-(", + ":,)", ":'{", + "[:", ";]" ] class ParseTweet: # compile once on import regexp = {"RT": "^RT", "MT": r"^MT", "ALNUM": r"(@[a-zA-Z0-9_]+)", "HASHTAG": r"(#[\w\d]+)", "URL": r"([https://|http://]?[a-zA-Z\d\/]+[\.]+[a-zA-Z\d\/\.]+)", - "SPACES":r"\s+"} + "SPACES": r"\s+"} regexp = dict((key, re.compile(value)) for key, value in regexp.items()) def __init__(self, timeline_owner, tweet): @@ -51,7 +49,7 @@ def __init__(self, timeline_owner, tweet): self.RT = ParseTweet.getAttributeRT(tweet) self.MT = ParseTweet.getAttributeMT(tweet) self.Emoticon = ParseTweet.getAttributeEmoticon(tweet) - + # additional intelligence if ( self.RT and len(self.UserHandles) > 0 ): # change the owner of tweet? self.Owner = self.UserHandles[0] @@ -59,30 +57,30 @@ def __init__(self, timeline_owner, tweet): def __str__(self): """ for display method """ - return "owner %s, urls: %d, hashtags %d, user_handles %d, len_tweet %d, RT = %s, MT = %s" % ( - self.Owner, len(self.URLs), len(self.Hashtags), len(self.UserHandles), len(self.tweet), self.RT, self.MT) + return "owner %s, urls: %d, hashtags %d, user_handles %d, len_tweet %d, RT = %s, MT = %s" % \ + (self.Owner, len(self.URLs), len(self.Hashtags), len(self.UserHandles), len(self.tweet), self.RT, self.MT) @staticmethod def getAttributeEmoticon(tweet): """ see if tweet is contains any emoticons, +ve, -ve or neutral """ emoji = list() - for tok in re.split(ParseTweet.regexp["SPACES"],tweet.strip()): + for tok in re.split(ParseTweet.regexp["SPACES"], tweet.strip()): if tok in Emoticons.POSITIVE: emoji.append( tok ) continue if tok in Emoticons.NEGATIVE: emoji.append( tok ) return emoji - + @staticmethod def getAttributeRT(tweet): """ see if tweet is a RT """ - return re.search(ParseTweet.regexp["RT"], tweet.strip()) != None + return re.search(ParseTweet.regexp["RT"], tweet.strip()) is not None @staticmethod def getAttributeMT(tweet): """ see if tweet is a MT """ - return re.search(ParseTweet.regexp["MT"], tweet.strip()) != None + return re.search(ParseTweet.regexp["MT"], tweet.strip()) is not None @staticmethod def getUserHandles(tweet): diff --git a/twitter/status.py b/twitter/status.py index 3904a1b2..bc08f449 100644 --- a/twitter/status.py +++ b/twitter/status.py @@ -5,7 +5,7 @@ import time from sets import Set -from twitter import json, Hashtag, TwitterError, Url +from twitter import json, Hashtag, Url from twitter.media import Media @@ -406,15 +406,14 @@ def __repr__(self): """A string representation of this twitter.Status instance. The return value is the ID of status, username and datetime. Returns: - A string representation of this twitter.Status instance with + A string representation of this twitter.Status instance with the ID of status, username and datetime. """ if self.user: - representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % ( - self.id, self.user.screen_name, self.created_at) + representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % \ + (self.id, self.user.screen_name, self.created_at) else: - representation = "Status(ID=%s, created_at='%s')" % ( - self.id, self.created_at) + representation = "Status(ID=%s, created_at='%s')" % (self.id, self.created_at) return representation def AsJsonString(self, allow_non_ascii=False): @@ -424,8 +423,7 @@ def AsJsonString(self, allow_non_ascii=False): Returns: A JSON string representation of this twitter.Status instance """ - return json.dumps(self.AsDict(), sort_keys=True, - ensure_ascii=not allow_non_ascii) + return json.dumps(self.AsDict(), sort_keys=True, ensure_ascii=not allow_non_ascii) def AsDict(self): """A dict representation of this twitter.Status instance. diff --git a/twitter/trend.py b/twitter/trend.py index 2a094c7c..d01b2749 100644 --- a/twitter/trend.py +++ b/twitter/trend.py @@ -1,7 +1,5 @@ #!/usr/bin/env python -from twitter import TwitterError - class Trend(object): """ A class representing a trending topic """ @@ -16,8 +14,8 @@ def __repr__(self): return self.name.encode('utf-8') def __str__(self): - return 'Name: %s\nQuery: %s\nTimestamp: %s\nSearch URL: %s\n' % ( - self.name, self.query, self.timestamp, self.url) + return 'Name: %s\nQuery: %s\nTimestamp: %s\nSearch URL: %s\n' % \ + (self.name, self.query, self.timestamp, self.url) def __ne__(self, other): return not self.__eq__(other) diff --git a/twitter/url.py b/twitter/url.py index 7cc702bd..2393558a 100644 --- a/twitter/url.py +++ b/twitter/url.py @@ -1,7 +1,5 @@ #!/usr/bin/env python -from twitter import TwitterError # import not used - class Url(object): """A class representing an URL contained in a tweet""" diff --git a/twitter/user.py b/twitter/user.py index beb733cc..88cee3a9 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from twitter import json, TwitterError # TwitterError not used +from twitter import json class UserStatus(object): From a382b7d3d415c52cc0f80678568fdbeebd574568 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 29 Dec 2015 04:17:07 -0500 Subject: [PATCH 084/533] add future package requirement --- requirements.txt | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1cc432e6..d539fa58 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ +future requests requests_oauthlib diff --git a/setup.py b/setup.py index fdd5a210..6d940e19 100755 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def read(*paths): read('AUTHORS.rst') + '\n\n' + read('CHANGES')), packages=find_packages(exclude=['tests*']), - install_requires=['requests', 'requests-oauthlib'], + install_requires=['future', 'requests', 'requests-oauthlib'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', From b2edc30eaf246649c93f514f0429df12c42067ea Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 29 Dec 2015 04:43:46 -0500 Subject: [PATCH 085/533] fix python v3 exception statement error --- tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index 8be1c553..1f0d2f4c 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -33,7 +33,7 @@ def testTwitterError(self): # Manually try/catch so we can check the exception's value try: self._api.GetUserTimeline() - except twitter.TwitterError, error: + except twitter.TwitterError as error: # If the error message matches, the test passes self.assertEqual('test error', error.message) else: From 25b7068e599f13dce4fc09b7c5f95555e1eee0d1 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 29 Dec 2015 05:09:46 -0500 Subject: [PATCH 086/533] set version to 3.0rc1 --- CHANGES | 29 ++++++++++++++++++++++++++--- setup.py | 2 +- twitter/__init__.py | 2 +- 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 34baa7b9..6d111efb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,26 @@ +2015-12-28 + Large number of changes related to making the code Python v3 compatible. + See the messy details at https://github.com/bear/python-twitter/pull/251 + + Pull Requests + #267 initialize Api.__auth fixes #119 by rbpasker + #266 Add full_text and page options in GetDirectMessages function by mistersalmon + #264 Updates Media object with new methods, adds id param, adds tests by jeremylow + #262 Update get_access_token.py by lababidi + #261 Adding Collections by ryankicks + #260 Added UpdateBackgroundImage method and added profile_link_color argument to UpdateProfile by BrandonBielicki + #259 Added GetFriendIDsPaged by RockHoward + #254 Adding api methods for suggestions and suggestions/:slug by trentstollery + #253 Added who parameter to api.GetSearch by wilsonand1 + #250 adds UpdateFriendship (shared Add/Edit friendship) by jheld + #249 Fixed Non-ASCII printable representation in Trend by der-Daniel + #246 Add __repr__ for status by era + #245 Python-3 Fix: decode bytestreams for json load by ligthyear + #243 Remove references to outdated API functionality: GetUserByEmail by Vector919 + #239 Correct GetListsList docstring by tedmiston + + Probably a whole lot that I missed - ugh! + 2015-10-05 Added who to api.GetSearch @@ -57,7 +80,7 @@ need to backfill commit log entries! 2013-06-07 changed version to 1.0.1 added README bit about Python version requirement - + 2013-06-04 changed version to 1.0 removed doc directory until we can update docs for v1.1 API @@ -74,7 +97,7 @@ need to backfill commit log entries! removed GetPublicTimeline from the docs so as to stop confusing new folks since it was the first example given ... d'oh! - + 2013-02-10 bumped version to 0.8.6 @@ -98,7 +121,7 @@ need to backfill commit log entries! to push to PyPI and other places all work now will be on getting the v1.1 API supported - + 2012-11-04 https://github.com/bear/python-twitter/issues/4 Api.UserLookUp() throws attribute error when corresponding screen_name is not found diff --git a/setup.py b/setup.py index 6d940e19..72132f6e 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read(*paths): setup( name='python-twitter', - version='3.0', + version='3.0rc1', author='The Python-Twitter Developers', author_email='python-twitter@googlegroups.com', license='Apache License 2.0', diff --git a/twitter/__init__.py b/twitter/__init__.py index 2892a74f..c43a276d 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -20,7 +20,7 @@ from __future__ import absolute_import __author__ = 'python-twitter@googlegroups.com' -__version__ = '2.3' +__version__ = '3.0rc1' import json # noqa From 0ba4cddc2c1162958c4b08d408e161dda63ea9cd Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 29 Dec 2015 05:12:01 -0500 Subject: [PATCH 087/533] and still lint finds something... --- twitter/direct_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/direct_message.py b/twitter/direct_message.py index 2600dc74..012c7dbb 100644 --- a/twitter/direct_message.py +++ b/twitter/direct_message.py @@ -132,7 +132,7 @@ def CreatedAtInSeconds(self): Returns: The time this direct message was posted, in seconds since the epoch. """ - return timegm(rfc822.parsedate(self.created_at)) + return timegm(parsedate(self.created_at)) @property def SenderScreenName(self): From 2e7e37e3e235b8f8f5c61135c9d2b6460a1372a4 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 31 Dec 2015 05:54:01 -0500 Subject: [PATCH 088/533] fixes lint errors for redefinition of json in twitter/api --- twitter/api.py | 262 ++++++++++++++++++++++++------------------------- 1 file changed, 128 insertions(+), 134 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index d7ec6ee8..2ba6b699 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -255,8 +255,8 @@ def SetCredentials(self, def GetHelpConfiguration(self): if self._config is None: url = '%s/help/configuration.json' % self.base_url - json = self._RequestUrl(url, 'GET') - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET') + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) self._config = data return self._config @@ -389,8 +389,8 @@ def GetSearch(self, # Make and send requests url = '%s/search/tweets.json' % self.base_url - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) # Return built list of statuses return [Status.NewFromJsonDict(x) for x in data['statuses']] @@ -440,8 +440,8 @@ def GetUsersSearch(self, # Make and send requests url = '%s/users/search.json' % self.base_url - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [User.NewFromJsonDict(x) for x in data] def GetTrendsCurrent(self, exclude=None): @@ -477,8 +477,8 @@ def GetTrendsWoeid(self, id, exclude=None): if exclude: parameters['exclude'] = exclude - json = self._RequestUrl(url, verb='GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, verb='GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) trends = [] timestamp = data[0]['as_of'] @@ -493,8 +493,8 @@ def GetUserSuggestionCategories(self): A list of categories """ url = '%s/users/suggestions.json' % (self.base_url) - json_data = self._RequestUrl(url, verb='GET') - data = self._ParseAndCheckTwitter(json_data.content) + resp = self._RequestUrl(url, verb='GET') + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) categories = [] @@ -512,8 +512,8 @@ def GetUserSuggestion(self, category): """ url = '%s/users/suggestions/%s.json' % (self.base_url, category.Slug) - json_data = self._RequestUrl(url, verb='GET') - data = self._ParseAndCheckTwitter(json_data.content) + resp = self._RequestUrl(url, verb='GET') + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) users = [] for user in data['users']: @@ -601,8 +601,8 @@ def GetHomeTimeline(self, parameters['contributor_details'] = 1 if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -686,8 +686,8 @@ def GetUserTimeline(self, if exclude_replies: parameters['exclude_replies'] = 1 - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -739,8 +739,8 @@ def GetStatus(self, if not include_entities: parameters['include_entities'] = 'none' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -826,8 +826,8 @@ def GetStatusOembed(self, raise TwitterError({'message': "'lang' should be string instance"}) parameters['lang'] = lang - json = self._RequestUrl(request_url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(request_url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return data @@ -855,8 +855,8 @@ def DestroyStatus(self, id, trim_user=False): if trim_user: post_data['trim_user'] = 1 - json = self._RequestUrl(url, 'POST', data=post_data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=post_data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -944,8 +944,8 @@ def PostUpdate(self, if trim_user: data['trim_user'] = 'true' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1013,8 +1013,8 @@ def PostMedia(self, if display_coordinates: data['display_coordinates'] = 'true' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1074,8 +1074,8 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, else: data['media'] = media[m].read() - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) media_ids += str(data['media_id_string']) if m is not len(media) - 1: @@ -1085,8 +1085,8 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, url = '%s/statuses/update.json' % self.base_url - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1156,8 +1156,8 @@ def PostRetweet(self, original_id, trim_user=False): data = {'id': original_id} if trim_user: data['trim_user'] = 'true' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1256,8 +1256,8 @@ def GetRetweets(self, except ValueError: raise TwitterError({'message': "count must be an integer"}) - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [Status.NewFromJsonDict(s) for s in data] @@ -1297,8 +1297,8 @@ def GetRetweeters(self, except ValueError: raise TwitterError({'message': "cursor must be an integer"}) break - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1365,8 +1365,8 @@ def GetRetweetsOfMe(self, if not include_user_entities: parameters['include_user_entities'] = include_user_entities - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [Status.NewFromJsonDict(s) for s in data] @@ -1416,8 +1416,8 @@ def GetBlocks(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1455,8 +1455,8 @@ def DestroyBlock(self, id, trim_user=False): if trim_user: post_data['trim_user'] = 1 - json = self._RequestUrl(url, 'POST', data=post_data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=post_data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -1510,8 +1510,8 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1555,8 +1555,8 @@ def _GetIDsPaged(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [x for x in data['ids']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1792,8 +1792,8 @@ def GetFollowersPaged(self, parameters['include_user_entities'] = True parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) if 'next_cursor' in data: next_cursor = data['next_cursor'] @@ -1902,9 +1902,9 @@ def UsersLookup(self, if not include_entities: parameters['include_entities'] = 'false' - json_data = self._RequestUrl(url, 'GET', data=parameters) + resp = self._RequestUrl(url, 'GET', data=parameters) try: - data = self._ParseAndCheckTwitter(json_data.content.decode('utf-8')) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) except TwitterError as e: _, e, _ = sys.exc_info() t = e.args[0] @@ -1950,8 +1950,8 @@ def GetUser(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2023,8 +2023,8 @@ def GetDirectMessages(self, if page: parameters['page'] = page - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [DirectMessage.NewFromJsonDict(x) for x in data] @@ -2082,8 +2082,8 @@ def GetSentDirectMessages(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [DirectMessage.NewFromJsonDict(x) for x in data] @@ -2118,8 +2118,8 @@ def PostDirectMessage(self, else: raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return DirectMessage.NewFromJsonDict(data) @@ -2141,8 +2141,8 @@ def DestroyDirectMessage(self, id, include_entities=True): if not include_entities: data['include_entities'] = 'false' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return DirectMessage.NewFromJsonDict(data) @@ -2180,8 +2180,8 @@ def _AddOrEditFriendship(self, user_id=None, screen_name=None, uri_end='create', follow_json = json.dumps(follow) data['{}'.format(follow_key)] = follow_json - json_data = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json_data.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2230,8 +2230,8 @@ def DestroyFriendship(self, user_id=None, screen_name=None): else: raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2260,8 +2260,8 @@ def LookupFriendship(self, user_id=None, screen_name=None): else: raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) - json = self._RequestUrl(url, 'GET', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) if len(data) >= 1: return UserStatus.NewFromJsonDict(data[0]) @@ -2300,8 +2300,8 @@ def CreateFavorite(self, if not include_entities: data['include_entities'] = 'false' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -2337,8 +2337,8 @@ def DestroyFavorite(self, if not include_entities: data['include_entities'] = 'false' - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) @@ -2404,8 +2404,8 @@ def GetFavorites(self, if include_entities: parameters['include_entities'] = True - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -2473,8 +2473,8 @@ def GetMentions(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -2525,8 +2525,8 @@ def CreateList(self, name, mode=None, description=None): if description is not None: parameters['description'] = description - json = self._RequestUrl(url, 'POST', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -2577,8 +2577,8 @@ def DestroyList(self, else: raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -2629,8 +2629,8 @@ def CreateSubscription(self, else: raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2681,8 +2681,8 @@ def DestroySubscription(self, else: raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -2760,8 +2760,8 @@ def ShowSubscription(self, if include_entities: data['include_entities'] = True - json = self._RequestUrl(url, 'GET', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -2817,8 +2817,8 @@ def GetSubscriptions(self, else: raise TwitterError({'message': "Specify user_id or screen_name"}) - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [List.NewFromJsonDict(x) for x in data['lists']] @@ -2884,8 +2884,8 @@ def GetMemberships(self, else: raise TwitterError({'message': "Specify user_id or screen_name"}) - json_data = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json_data.content) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content) return [List.NewFromJsonDict(x) for x in data['lists']] @@ -2925,8 +2925,8 @@ def GetListsList(self, if reverse: parameters['reverse'] = 'true' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [List.NewFromJsonDict(x) for x in data] @@ -2982,9 +2982,7 @@ def GetListTimeline(self, Returns: A sequence of Status instances, one for each message up to count """ - parameters = {'slug': slug, - 'list_id': list_id, - } + parameters = {} url = '%s/lists/statuses.json' % (self.base_url) parameters['slug'] = slug parameters['list_id'] = list_id @@ -3018,8 +3016,8 @@ def GetListTimeline(self, if not include_entities: parameters['include_entities'] = 'false' - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [Status.NewFromJsonDict(x) for x in data] @@ -3065,9 +3063,7 @@ def GetListMembers(self, Returns: A sequence of twitter.User instances, one for each follower """ - parameters = {'slug': slug, - 'list_id': list_id, - } + parameters = {} url = '%s/lists/members.json' % (self.base_url) parameters['slug'] = slug parameters['list_id'] = list_id @@ -3094,8 +3090,8 @@ def GetListMembers(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -3183,8 +3179,8 @@ def CreateListsMember(self, else: url = '%s/lists/members/create.json' % self.base_url - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -3262,8 +3258,8 @@ def DestroyListsMember(self, else: url = '%s/lists/members/destroy.json' % (self.base_url) - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -3312,8 +3308,8 @@ def GetLists(self, while True: parameters['cursor'] = cursor - json = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [List.NewFromJsonDict(x) for x in data['lists']] if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -3382,8 +3378,8 @@ def UpdateProfile(self, if skip_status: data['skip_status'] = skip_status - json = self._RequestUrl(url, 'POST', data=data) - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'POST', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -3406,12 +3402,12 @@ def UpdateBackgroundImage(self, if skip_status: data['skip_status'] = 1 - json = self._RequestUrl(url, 'POST', data=data) - if json.status_code in [200, 201, 202]: + resp = self._RequestUrl(url, 'POST', data=data) + if resp.status_code in [200, 201, 202]: return True - if json.status_code == 400: + if resp.status_code == 400: raise TwitterError({'message': "Image data could not be processed"}) - if json.status_code == 422: + if resp.status_code == 422: raise TwitterError({'message': "The image could not be resized or is too large."}) def UpdateImage(self, @@ -3430,12 +3426,12 @@ def UpdateImage(self, if skip_status: data['skip_status'] = 1 - json = self._RequestUrl(url, 'POST', data=data) - if json.status_code in [200, 201, 202]: + resp = self._RequestUrl(url, 'POST', data=data) + if resp.status_code in [200, 201, 202]: return True - if json.status_code == 400: + if resp.status_code == 400: raise TwitterError({'message': "Image data could not be processed"}) - if json.status_code == 422: + if resp.status_code == 422: raise TwitterError({'message': "The image could not be resized or is too large."}) def UpdateBanner(self, @@ -3472,12 +3468,12 @@ def UpdateBanner(self, if skip_status: data['skip_status'] = 1 - json_data = self._RequestUrl(url, 'POST', data=data) - if json_data.status_code in [200, 201, 202]: + resp = self._RequestUrl(url, 'POST', data=data) + if resp.status_code in [200, 201, 202]: return True - if json_data.status_code == 400: + if resp.status_code == 400: raise TwitterError({'message': "Image data could not be processed"}) - if json_data.status_code == 422: + if resp.status_code == 422: raise TwitterError({'message': "The image could not be resized or is too large."}) raise TwitterError({'message': "Unkown banner image upload issue"}) @@ -3495,8 +3491,8 @@ def GetStreamSample(self, delimited=None, stall_warnings=None): A Twitter stream """ url = '%s/statuses/sample.json' % self.stream_url - json_data = self._RequestStream(url, 'GET') - for line in json_data.iter_lines(): + resp = self._RequestStream(url, 'GET') + for line in resp.iter_lines(): if line: data = self._ParseAndCheckTwitter(line) yield data @@ -3540,8 +3536,8 @@ def GetStreamFilter(self, if stall_warnings is not None: data['stall_warnings'] = str(stall_warnings) - json_data = self._RequestStream(url, 'POST', data=data) - for line in json_data.iter_lines(): + resp = self._RequestStream(url, 'POST', data=data) + for line in resp.iter_lines(): if line: data = self._ParseAndCheckTwitter(line) yield data @@ -3596,8 +3592,8 @@ def GetUserStream(self, if delimited is not None: data['stall_warning'] = str(stall_warning) - r = self._RequestStream(url, 'POST', data=data) - for line in r.iter_lines(): + resp = self._RequestStream(url, 'POST', data=data) + for line in resp.iter_lines(): if line: data = self._ParseAndCheckTwitter(line) yield data @@ -3612,8 +3608,8 @@ def VerifyCredentials(self): if not self.__auth: raise TwitterError({'message': "Api instance must first be given user credentials."}) url = '%s/account/verify_credentials.json' % self.base_url - json = self._RequestUrl(url, 'GET') # No_cache - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET') # No_cache + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -3709,8 +3705,8 @@ def GetRateLimitStatus(self, resource_families=None): if resource_families is not None: parameters['resources'] = resource_families - json = self._RequestUrl(url, 'GET', data=parameters) # No-Cache - data = self._ParseAndCheckTwitter(json.content.decode('utf-8')) + resp = self._RequestUrl(url, 'GET', data=parameters) # No-Cache + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return data @@ -3965,16 +3961,14 @@ def _RequestStream(self, url, verb, data=None): try: return requests.post(url, data=data, stream=True, auth=self.__auth, - timeout=self._timeout - ) + timeout=self._timeout) except requests.RequestException as e: raise TwitterError(str(e)) if verb == 'GET': url = self._BuildUrl(url, extra_params=data) try: return requests.get(url, stream=True, auth=self.__auth, - timeout=self._timeout - ) + timeout=self._timeout) except requests.RequestException as e: raise TwitterError(str(e)) return 0 # if not a POST or GET request From a6f7e734941539f6c72f4cce4a76e8264fa80f79 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 1 Jan 2016 12:52:31 -0500 Subject: [PATCH 089/533] fixes #265 by reworking status length calculation for urls --- twitter/api.py | 84 ++++++++++++++++------ twitter/twitter_utils.py | 150 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 214 insertions(+), 20 deletions(-) create mode 100644 twitter/twitter_utils.py diff --git a/twitter/api.py b/twitter/api.py index d7ec6ee8..0967b356 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -26,7 +26,7 @@ import time import types import base64 -import textwrap +import re import datetime from calendar import timegm import requests @@ -50,6 +50,8 @@ Status, Trend, TwitterError, User, UserStatus) from twitter.category import Category +from twitter.twitter_utils import calc_expected_status_length, is_url + CHARACTER_LIMIT = 140 # A singleton representing a lazily instantiated FileCache. @@ -860,16 +862,6 @@ def DestroyStatus(self, id, trim_user=False): return Status.NewFromJsonDict(data) - @classmethod - def _calculate_status_length(cls, status, linksize=19): - dummy_link_replacement = 'https://-%d-chars%s/' % (linksize, '-' * (linksize - 18)) - shortened = ' '.join([x if not (x.startswith('http://') or - x.startswith('https://')) - else - dummy_link_replacement - for x in status.split(' ')]) - return len(shortened) - def PostUpdate(self, status, in_reply_to_status_id=None, @@ -877,7 +869,8 @@ def PostUpdate(self, longitude=None, place_id=None, display_coordinates=False, - trim_user=False): + trim_user=False, + verify_status_length=True): """Post a twitter status message from the authenticated user. The twitter.Api instance must be authenticated. @@ -914,6 +907,10 @@ def PostUpdate(self, If True the returned payload will only contain the user IDs, otherwise the payload will contain the full user data item. [Optional] + verify_status_length: + If True, api throws a hard error that the status is over + 140 characters. If False, Api will attempt to post the + status. [Optional] Returns: A twitter.Status instance representing the message posted. """ @@ -927,9 +924,8 @@ def PostUpdate(self, else: u_status = str(status, self._input_encoding) - # if self._calculate_status_length(u_status, self._shortlink_size) > CHARACTER_LIMIT: - # raise TwitterError("Text must be less than or equal to %d characters. " - # "Consider using PostUpdates." % CHARACTER_LIMIT) + if verify_status_length and calc_expected_status_length(u_status) > 140: + raise TwitterError("Text must be less than or equal to 140 characters.") data = {'status': u_status} if in_reply_to_status_id: @@ -1090,6 +1086,46 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, return Status.NewFromJsonDict(data) + def _TweetTextWrap(self, + status, + char_lim=140): + + if not self._config: + self.GetHelpConfiguration() + + tweets = [] + line = [] + line_length = 0 + words = re.split(r'\s', status) + + if len(words) == 1: + if len(words[0]) > 140: + raise TwitterError({"message": "Unable to split status into tweetable parts. Word was: {0}/{1}".format(len(word), char_lim)}) + else: + tweets.append(words[0]) + return tweets + + for word in words: + if len(word) > char_lim: + raise TwitterError({"message": "Unable to split status into tweetable parts. Word was: {0}/{1}".format(len(word), char_lim)}) + new_len = line_length + + if is_url(word): + new_len = line_length + self._config['short_url_length_https'] + 1 + else: + new_len += len(word) + 1 + + if new_len > 140: + tweets.append(' '.join(line)) + line = [word] + line_length = new_len - line_length + else: + line.append(word) + line_length = new_len + + tweets.append(' '.join(line)) + return tweets + def PostUpdates(self, status, continuation=None, @@ -1117,13 +1153,21 @@ def PostUpdates(self, A of list twitter.Status instance representing the messages posted. """ results = list() + if continuation is None: continuation = '' - line_length = CHARACTER_LIMIT - len(continuation) - lines = textwrap.wrap(status, line_length) - for line in lines[0:-1]: - results.append(self.PostUpdate(line + continuation, **kwargs)) - results.append(self.PostUpdate(lines[-1], **kwargs)) + char_limit = CHARACTER_LIMIT - len(continuation) + + tweets = self._TweetTextWrap(status=status, char_lim=char_limit) + + if len(tweets) == 1: + results.append(self.PostUpdate(status=tweets[0])) + return results + + for tweet in tweets[0:-1]: + print('tweeting', tweet) + results.append(self.PostUpdate(status=tweet + continuation, **kwargs)) + results.append(self.PostUpdate(status=tweets[-1], **kwargs)) return results diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py new file mode 100644 index 00000000..1bc1aa54 --- /dev/null +++ b/twitter/twitter_utils.py @@ -0,0 +1,150 @@ +import re + + +TLDS = [ + "ac", "ad", "ae", "af", "ag", "ai", "al", "am", "an", "ao", "aq", "ar", + "as","at", "au", "aw", "ax", "az", "ba", "bb", "bd", "be", "bf", "bg", + "bh", "bi", "bj", "bl", "bm", "bn", "bo", "bq", "br", "bs", "bt", "bv", + "bw", "by", "bz", "ca", "cc", "cd", "cf", "cg", "ch", "ci", "ck", "cl", + "cm", "cn", "co", "cr", "cu", "cv", "cw", "cx", "cy", "cz", "de", "dj", + "dk", "dm", "do", "dz", "ec", "ee", "eg", "eh", "er", "es", "et", "eu", + "fi", "fj", "fk", "fm", "fo", "fr", "ga", "gb", "gd", "ge", "gf", "gg", + "gh", "gi", "gl", "gm", "gn", "gp", "gq", "gr", "gs", "gt", "gu", "gw", + "gy", "hk", "hm", "hn", "hr", "ht", "hu", "id", "ie", "il", "im", "in", + "io", "iq", "ir", "is", "it", "je", "jm", "jo", "jp", "ke", "kg", "kh", + "ki", "km", "kn", "kp", "kr", "kw", "ky", "kz", "la", "lb", "lc", "li", + "lk", "lr", "ls", "lt", "lu", "lv", "ly", "ma", "mc", "md", "me", "mf", + "mg", "mh", "mk", "ml", "mm", "mn", "mo", "mp", "mq", "mr", "ms", "mt", + "mu", "mv", "mw", "mx", "my", "mz", "na", "nc", "ne", "nf", "ng", "ni", + "nl", "no", "np", "nr", "nu", "nz", "om", "pa", "pe", "pf", "pg", "ph", + "pk", "pl", "pm", "pn", "pr", "ps", "pt", "pw", "py", "qa", "re", "ro", + "rs", "ru", "rw", "sa", "sb", "sc", "sd", "se", "sg", "sh", "si", "sj", + "sk", "sl", "sm", "sn", "so", "sr", "ss", "st", "su", "sv", "sx", "sy", + "sz", "tc", "td", "tf", "tg", "th", "tj", "tk", "tl", "tm", "tn", "to", + "tp", "tr", "tt", "tv", "tw", "tz", "ua", "ug", "uk", "um", "us", "uy", + "uz", "va", "vc", "ve", "vg", "vi", "vn", "vu", "wf", "ws", "ye", "yt", + "za", "zm", "zw", "ελ", "бел", "мкд", "мон", "рф", "срб", "укр", "қаз", + "հայ", "الاردن", "الجزائر", "السعودية", "المغرب", "امارات", "ایران", "بھارت", + "تونس", "سودان", "سورية", "عراق", "عمان", "فلسطين", "قطر", "مصر", + "مليسيا", "پاکستان", "भारत", "বাংলা", "ভারত", "ਭਾਰਤ", "ભારત", + "இந்தியா", "இலங்கை", "சிங்கப்பூர்", "భారత్", "ලංකා", "ไทย", + "გე", "中国", "中國", "台湾", "台灣", "新加坡", "澳門", "香港", "한국", "neric:", + "abb", "abbott", "abogado", "academy", "accenture", "accountant", + "accountants", "aco", "active", "actor", "ads", "adult", "aeg", "aero", + "afl", "agency", "aig", "airforce", "airtel", "allfinanz", "alsace", + "amsterdam", "android", "apartments", "app", "aquarelle", "archi", "army", + "arpa", "asia", "associates", "attorney", "auction", "audio", "auto", + "autos", "axa", "azure", "band", "bank", "bar", "barcelona", "barclaycard", + "barclays", "bargains", "bauhaus", "bayern", "bbc", "bbva", "bcn", "beer", + "bentley", "berlin", "best", "bet", "bharti", "bible", "bid", "bike", + "bing", "bingo", "bio", "biz", "black", "blackfriday", "bloomberg", "blue", + "bmw", "bnl", "bnpparibas", "boats", "bond", "boo", "boots", "boutique", + "bradesco", "bridgestone", "broker", "brother", "brussels", "budapest", + "build", "builders", "business", "buzz", "bzh", "cab", "cafe", "cal", + "camera", "camp", "cancerresearch", "canon", "capetown", "capital", + "caravan", "cards", "care", "career", "careers", "cars", "cartier", + "casa", "cash", "casino", "cat", "catering", "cba", "cbn", "ceb", "center", + "ceo", "cern", "cfa", "cfd", "chanel", "channel", "chat", "cheap", + "chloe", "christmas", "chrome", "church", "cisco", "citic", "city", + "claims", "cleaning", "click", "clinic", "clothing", "cloud", "club", + "coach", "codes", "coffee", "college", "cologne", "com", "commbank", + "community", "company", "computer", "condos", "construction", "consulting", + "contractors", "cooking", "cool", "coop", "corsica", "country", "coupons", + "courses", "credit", "creditcard", "cricket", "crown", "crs", "cruises", + "cuisinella", "cymru", "cyou", "dabur", "dad", "dance", "date", "dating", + "datsun", "day", "dclk", "deals", "degree", "delivery", "delta", + "democrat", "dental", "dentist", "desi", "design", "dev", "diamonds", + "diet", "digital", "direct", "directory", "discount", "dnp", "docs", + "dog", "doha", "domains", "doosan", "download", "drive", "durban", "dvag", + "earth", "eat", "edu", "education", "email", "emerck", "energy", + "engineer", "engineering", "enterprises", "epson", "equipment", "erni", + "esq", "estate", "eurovision", "eus", "events", "everbank", "exchange", + "expert", "exposed", "express", "fage", "fail", "faith", "family", "fan", + "fans", "farm", "fashion", "feedback", "film", "finance", "financial", + "firmdale", "fish", "fishing", "fit", "fitness", "flights", "florist", + "flowers", "flsmidth", "fly", "foo", "football", "forex", "forsale", + "forum", "foundation", "frl", "frogans", "fund", "furniture", "futbol", + "fyi", "gal", "gallery", "game", "garden", "gbiz", "gdn", "gent", + "genting", "ggee", "gift", "gifts", "gives", "giving", "glass", "gle", + "global", "globo", "gmail", "gmo", "gmx", "gold", "goldpoint", "golf", + "goo", "goog", "google", "gop", "gov", "graphics", "gratis", "green", + "gripe", "group", "guge", "guide", "guitars", "guru", "hamburg", "hangout", + "haus", "healthcare", "help", "here", "hermes", "hiphop", "hitachi", "hiv", + "hockey", "holdings", "holiday", "homedepot", "homes", "honda", "horse", + "host", "hosting", "hoteles", "hotmail", "house", "how", "hsbc", "ibm", + "icbc", "ice", "icu", "ifm", "iinet", "immo", "immobilien", "industries", + "infiniti", "info", "ing", "ink", "institute", "insure", "int", + "international", "investments", "ipiranga", "irish", "ist", "istanbul", + "itau", "iwc", "java", "jcb", "jetzt", "jewelry", "jlc", "jll", "jobs", + "joburg", "jprs", "juegos", "kaufen", "kddi", "kim", "kitchen", "kiwi", + "koeln", "komatsu", "krd", "kred", "kyoto", "lacaixa", "lancaster", "land", + "lasalle", "lat", "latrobe", "law", "lawyer", "lds", "lease", "leclerc", + "legal", "lexus", "lgbt", "liaison", "lidl", "life", "lighting", "limited", + "limo", "link", "live", "lixil", "loan", "loans", "lol", "london", "lotte", + "lotto", "love", "ltda", "lupin", "luxe", "luxury", "madrid", "maif", + "maison", "man", "management", "mango", "market", "marketing", "markets", + "marriott", "mba", "media", "meet", "melbourne", "meme", "memorial", "men", + "menu", "miami", "microsoft", "mil", "mini", "mma", "mobi", "moda", "moe", + "mom", "monash", "money", "montblanc", "mormon", "mortgage", "moscow", + "motorcycles", "mov", "movie", "movistar", "mtn", "mtpc", "museum", + "nadex", "nagoya", "name", "navy", "nec", "net", "netbank", "network", + "neustar", "new", "news", "nexus", "ngo", "nhk", "nico", "ninja", "nissan", + "nokia", "nra", "nrw", "ntt", "nyc", "office", "okinawa", "omega", "one", + "ong", "onl", "online", "ooo", "oracle", "orange", "org", "organic", + "osaka", "otsuka", "ovh", "page", "panerai", "paris", "partners", "parts", + "party", "pet", "pharmacy", "philips", "photo", "photography", "photos", + "physio", "piaget", "pics", "pictet", "pictures", "pink", "pizza", "place", + "play", "plumbing", "plus", "pohl", "poker", "porn", "post", "praxi", + "press", "pro", "prod", "productions", "prof", "properties", "property", + "pub", "qpon", "quebec", "racing", "realtor", "realty", "recipes", "red", + "redstone", "rehab", "reise", "reisen", "reit", "ren", "rent", "rentals", + "repair", "report", "republican", "rest", "restaurant", "review", + "reviews", "rich", "ricoh", "rio", "rip", "rocks", "rodeo", "rsvp", "ruhr", + "run", "ryukyu", "saarland", "sakura", "sale", "samsung", "sandvik", + "sandvikcoromant", "sanofi", "sap", "sarl", "saxo", "sca", "scb", + "schmidt", "scholarships", "school", "schule", "schwarz", "science", + "scor", "scot", "seat", "seek", "sener", "services", "sew", "sex", "sexy", + "shiksha", "shoes", "show", "shriram", "singles", "site", "ski", "sky", + "skype", "sncf", "soccer", "social", "software", "sohu", "solar", + "solutions", "sony", "soy", "space", "spiegel", "spreadbetting", "srl", + "starhub", "statoil", "studio", "study", "style", "sucks", "supplies", + "supply", "support", "surf", "surgery", "suzuki", "swatch", "swiss", + "sydney", "systems", "taipei", "tatamotors", "tatar", "tattoo", "tax", + "taxi", "team", "tech", "technology", "tel", "telefonica", "temasek", + "tennis", "thd", "theater", "tickets", "tienda", "tips", "tires", "tirol", + "today", "tokyo", "tools", "top", "toray", "toshiba", "tours", "town", + "toyota", "toys", "trade", "trading", "training", "travel", "trust", "tui", + "ubs", "university", "uno", "uol", "vacations", "vegas", "ventures", + "vermögensberater", "vermögensberatung", "versicherung", "vet", "viajes", + "video", "villas", "vin", "vision", "vista", "vistaprint", "vlaanderen", + "vodka", "vote", "voting", "voto", "voyage", "wales", "walter", "wang", + "watch", "webcam", "website", "wed", "wedding", "weir", "whoswho", "wien", + "wiki", "williamhill", "win", "windows", "wine", "wme", "work", "works", + "world", "wtc", "wtf", "xbox", "xerox", "xin", "xperia", "xxx", "xyz", + "yachts", "yandex", "yodobashi", "yoga", "yokohama", "youtube", "zip", + "zone", "zuerich", "дети", "ком", "москва", "онлайн", "орг", "рус", "сайт", + "קום", "بازار", "شبكة", "كوم", "موقع", "कॉम", "नेट", "संगठन", "คอม", + "みんな", "グーグル", "コム", "世界", "中信", "中文网", "企业", "佛山", "信息", + "健康", "八卦", "公司", "公益", "商城", "商店", "商标", "在线", "大拿", "娱乐", + "工行", "广东", "慈善", "我爱你", "手机", "政务", "政府", "新闻", "时尚", "机构", + "淡马锡", "游戏", "点看", "移动", "组织机构", "网址", "网店", "网络", "谷歌", "集团", + "飞利浦", "餐厅", "닷넷", "닷컴", "삼성", "onion"] + +URL_REGEXP = re.compile(r'(?i)((?:https?://|www\\.){0,}(?:\w+[.])(?:' + '|'.join(TLDS) + ')(?:[a-z0-9!\*\'\(\);:&=\+\$/%#\[\]\-_\.,~?])+)') + + +def calc_expected_status_length(status, short_url_length=23): + replaced_chars = 0 + status_length = len(status) + match = re.findall(URL_REGEXP, status) + if len(match) >= 1: + replaced_chars = len(''.join(match)) + status_length = status_length - replaced_chars + (short_url_length * len(match)) + return status_length + + +def is_url(text): + if re.findall(URL_REGEXP, text): + return True + else: + return False From 817286ae3260409de84d3730550bb25ca29e8196 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 1 Jan 2016 12:54:45 -0500 Subject: [PATCH 090/533] fixes encoding error for py27 --- twitter/twitter_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index 1bc1aa54..7050f848 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -1,9 +1,9 @@ +# encoding: utf-8 import re - TLDS = [ "ac", "ad", "ae", "af", "ag", "ai", "al", "am", "an", "ao", "aq", "ar", - "as","at", "au", "aw", "ax", "az", "ba", "bb", "bd", "be", "bf", "bg", + "as", "at", "au", "aw", "ax", "az", "ba", "bb", "bd", "be", "bf", "bg", "bh", "bi", "bj", "bl", "bm", "bn", "bo", "bq", "br", "bs", "bt", "bv", "bw", "by", "bz", "ca", "cc", "cd", "cf", "cg", "ch", "ci", "ck", "cl", "cm", "cn", "co", "cr", "cu", "cv", "cw", "cx", "cy", "cz", "de", "dj", From c4c6dedb05872318dc77d8d600b3ff87f554c195 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 1 Jan 2016 15:01:02 -0500 Subject: [PATCH 091/533] regex changes to fix issue with finding "urls" like run.on.sentence --- twitter/twitter_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index 7050f848..43679dbd 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -130,7 +130,7 @@ "淡马锡", "游戏", "点看", "移动", "组织机构", "网址", "网店", "网络", "谷歌", "集团", "飞利浦", "餐厅", "닷넷", "닷컴", "삼성", "onion"] -URL_REGEXP = re.compile(r'(?i)((?:https?://|www\\.){0,}(?:\w+[.])(?:' + '|'.join(TLDS) + ')(?:[a-z0-9!\*\'\(\);:&=\+\$/%#\[\]\-_\.,~?])+)') +URL_REGEXP = re.compile(r'(?i)((?:https?://|www\\.){0,}(?:[\w+-_]+[.])(?:' + '|'.join(TLDS) + ')+(?:[:\w+\/]?[a-z0-9!\*\'\(\);:&=\+\$/%#\[\]\-_\.,~?])+)[\s]+') def calc_expected_status_length(status, short_url_length=23): From 9cb0f9ad2d689829a7a0a9c39bd72f4e34493d4b Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 1 Jan 2016 15:30:51 -0500 Subject: [PATCH 092/533] changes to no longer limit single-url tweets 140 characters. --- twitter/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 0967b356..8ff7fcd3 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1098,9 +1098,9 @@ def _TweetTextWrap(self, line_length = 0 words = re.split(r'\s', status) - if len(words) == 1: + if len(words) == 1 and not is_url(words): if len(words[0]) > 140: - raise TwitterError({"message": "Unable to split status into tweetable parts. Word was: {0}/{1}".format(len(word), char_lim)}) + raise TwitterError({"message": "Unable to split status into tweetable parts. Word was: {0}/{1}".format(len(words[0]), char_lim)}) else: tweets.append(words[0]) return tweets From 7b1d7e28ef09dad32248de8c714a574b07ee5970 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 1 Jan 2016 18:02:53 -0500 Subject: [PATCH 093/533] adds tests and adds 0-255 as a TLD to include IPv4 addresses as links (which is a little hacky) --- tests/test_tweet_length.py | 77 ++++++++++++++++++++++++++++++++++++++ twitter/twitter_utils.py | 2 +- 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 tests/test_tweet_length.py diff --git a/tests/test_tweet_length.py b/tests/test_tweet_length.py new file mode 100644 index 00000000..39c75c77 --- /dev/null +++ b/tests/test_tweet_length.py @@ -0,0 +1,77 @@ +# encoding: utf-8 + +import unittest +import twitter + + +class TestTweetLength(unittest.TestCase): + + def setUp(self): + self.api = twitter.Api(consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test') + self.api._config = {'short_url_length_https': 23} + + def test_find_urls(self): + url = "http://example.com" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "https://example.com/path/to/resource?search=foo&lang=en" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "http://twitter.com/#!/twitter" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "HTTPS://www.ExaMPLE.COM/index.html" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "http://user:PASSW0RD@example.com:8080/login.php" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "http://sports.yahoo.com/nfl/news;_ylt=Aom0;ylu=XyZ?slug=ap-superbowlnotebook" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "http://192.168.0.1/index.html?src=asdf" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + + # Have to figure out what a valid IPv6 range looks like, then + # uncomment this. + # url = "http://[3ffe:1900:4545:3:200:f8ff:fe21:67cf]:80/index.html" + # self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + + url = "http://test_underscore.twitter.com" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "http://example.com?foo=$bar.;baz?BAZ&c=d-#top/?stories+" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "https://www.youtube.com/playlist?list=PL0ZPu8XSRTB7wZzn0mLHMvyzVFeRxbWn-" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "example.com" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "www.example.com" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "foo.co.jp foo.co.jp foo.co.jp" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "example.com/path/to/resource?search=foo&lang=en" + self.assertTrue(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "hello index.html my friend" + self.assertFalse(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + url = "run.on.sentence" + self.assertFalse(twitter.twitter_utils.is_url(url), "'{0}'".format(url)) + + def test_split_tweets(self): + test_tweet = ( + "Anatole went out of the room and returned a few minutes later " + "wearing a fur coat girt with a silver belt, and a sable cap " + "jauntily set on one side and very becoming to his handsome face. " + "Having looked in a mirror, and standing before Dolokhov in the " + "same pose he had assumed before it, he lifted a glass of wine.") + tweets = self.api._TweetTextWrap(test_tweet) + self.assertEqual( + tweets[0], + "Anatole went out of the room and returned a few minutes later wearing a fur coat girt with a silver belt, and a sable cap jauntily set on") + self.assertEqual( + tweets[1], + "one side and very becoming to his handsome face. Having looked in a mirror, and standing before Dolokhov in the same pose he had assumed") + self.assertEqual( + tweets[2], + "before it, he lifted a glass of wine.") + + test_tweet = "t.co went t.co of t.co room t.co returned t.co few minutes later" + tweets = self.api._TweetTextWrap(test_tweet) + self.assertEqual(tweets[0], 't.co went t.co of t.co room t.co returned') + self.assertEqual(tweets[1], 't.co few minutes later') diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index 43679dbd..ca884093 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -130,7 +130,7 @@ "淡马锡", "游戏", "点看", "移动", "组织机构", "网址", "网店", "网络", "谷歌", "集团", "飞利浦", "餐厅", "닷넷", "닷컴", "삼성", "onion"] -URL_REGEXP = re.compile(r'(?i)((?:https?://|www\\.){0,}(?:[\w+-_]+[.])(?:' + '|'.join(TLDS) + ')+(?:[:\w+\/]?[a-z0-9!\*\'\(\);:&=\+\$/%#\[\]\-_\.,~?])+)[\s]+') +URL_REGEXP = re.compile(r'(?i)((?:https?://|www\\.)*(?:[\w+-_]+[.])(?:' + r'\b|'.join(TLDS) + r'\b|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]))+(?:[:\w+\/]?[a-z0-9!\*\'\(\);:&=\+\$/%#\[\]\-_\.,~?])*)', re.UNICODE) def calc_expected_status_length(status, short_url_length=23): From d349d7647963ef09994789f45f0378218257f0b7 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Sat, 2 Jan 2016 08:15:00 -0500 Subject: [PATCH 094/533] copyright year update; lint config tweak --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index d23e7fc5..957d9cd8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,4 +4,4 @@ ignore = violations.flake8.txt [flake8] -ignore = E111,E126,E201,E202,E221,E302,E501 \ No newline at end of file +ignore = E111,E124,E126,E201,E202,E221,E241,E302,E501 \ No newline at end of file diff --git a/setup.py b/setup.py index 72132f6e..7ce420e9 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright 2007-2014 The Python-Twitter Developers +# Copyright 2007-2016 The Python-Twitter Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. From 0371a53bd6a5257d2f9945dc844c235030cd9a0b Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 3 Jan 2016 19:26:11 -0500 Subject: [PATCH 095/533] py3 compatibility fixes for print statement in check for auth & doc strings --- twitter/api.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index a7d9ebc5..95aa5f95 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -74,7 +74,7 @@ class Api(object): a Twitter "short name" or their user id. >>> statuses = api.GetUserTimeline(user) - >>> print [s.text for s in statuses] + >>> print([s.text for s in statuses]) To use authentication, instantiate the twitter.Api class with a consumer key and secret; and the oAuth key and secret: @@ -87,12 +87,12 @@ class Api(object): To fetch your friends (after being authenticated): >>> users = api.GetFriends() - >>> print [u.name for u in users] + >>> print([u.name for u in users]) To post a twitter status message (after being authenticated): >>> status = api.PostUpdate('I love python-twitter!') - >>> print status.text + >>> print(status.text) I love python-twitter! There are many other methods, including: @@ -202,9 +202,10 @@ def __init__(self, if consumer_key is not None and (access_token_key is None or access_token_secret is None): - print >> sys.stderr, 'Twitter now requires an oAuth Access Token for API calls.' - print >> sys.stderr, 'If you\'re using this library from a command line utility, please' - print >> sys.stderr, 'run the included get_access_token.py tool to generate one.' + print('Twitter now requires an oAuth Access Token for API calls. ' + 'If you\'re using this library from a command line utility, ' + 'please run the included get_access_token.py tool to ' + 'generate one.', file=sys.stderr) raise TwitterError({'message': "Twitter requires oAuth Access Token for all API access"}) From 9228b5b461dd20e8536faa0f65407ebbfc33841b Mon Sep 17 00:00:00 2001 From: Bob Pasker Date: Tue, 5 Jan 2016 09:35:27 -0500 Subject: [PATCH 096/533] Honor 'count' parameter in API --- twitter/api.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 95aa5f95..2580795d 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1522,8 +1522,7 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip Should be set to -1 for the initial call and then is used to control what result page Twitter returns. count: - The number of users to return per page, up to a maximum of 200. - Defaults to 20. [Optional] + The maximum number of users to return. skip_status: If True the statuses will not be returned in the user items. [Optional] @@ -1558,6 +1557,8 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] + if count is not None and len(result) > count: + break if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: break @@ -1603,6 +1604,8 @@ def _GetIDsPaged(self, resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [x for x in data['ids']] + if count is not None and len(result) > count: + break if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: break @@ -1873,8 +1876,7 @@ def GetFollowers(self, Should be set to -1 for the initial call and then is used to control what result page Twitter returns. count: - The number of users to return per page, up to a maximum of 200. - Defaults to 200. [Optional] + The number of users to return, defaults to 200. skip_status: If True the statuses will not be returned in the user items. [Optional] include_user_entities: @@ -1891,6 +1893,8 @@ def GetFollowers(self, next_cursor, previous_cursor, data = self.GetFollowersPaged(user_id, screen_name, cursor, count, skip_status, include_user_entities) result += [User.NewFromJsonDict(x) for x in data['users']] + if count is not None and len(result) > count: + break if next_cursor == 0 or next_cursor == previous_cursor: break else: From 1ed02477557b01480ca6af059d73abab916a504b Mon Sep 17 00:00:00 2001 From: Bob Pasker Date: Tue, 5 Jan 2016 09:37:23 -0500 Subject: [PATCH 097/533] fixed len(result) >= count --- twitter/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 2580795d..fb156324 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1557,7 +1557,7 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [User.NewFromJsonDict(x) for x in data['users']] - if count is not None and len(result) > count: + if count is not None and len(result) >= count: break if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1604,7 +1604,7 @@ def _GetIDsPaged(self, resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [x for x in data['ids']] - if count is not None and len(result) > count: + if count is not None and len(result) >= count: break if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1893,7 +1893,7 @@ def GetFollowers(self, next_cursor, previous_cursor, data = self.GetFollowersPaged(user_id, screen_name, cursor, count, skip_status, include_user_entities) result += [User.NewFromJsonDict(x) for x in data['users']] - if count is not None and len(result) > count: + if count is not None and len(result) >= count: break if next_cursor == 0 or next_cursor == previous_cursor: break From 235285864d71c5fe35cddb117d4e86318a813fc9 Mon Sep 17 00:00:00 2001 From: Bob Pasker Date: Tue, 5 Jan 2016 11:22:35 -0500 Subject: [PATCH 098/533] GetFriendIDsPaged returns a list of IDs, not a dictionary --- twitter/api.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index fb156324..c2eb5a2f 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1588,7 +1588,7 @@ def _GetIDsPaged(self, # assert(url.endswith('followers/ids.json') or url.endswith('friends/ids.json')) if not self.__auth: raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - result = [] + result_list = [] parameters = {} if user_id is not None: parameters['user_id'] = user_id @@ -1603,8 +1603,8 @@ def _GetIDsPaged(self, parameters['cursor'] = cursor resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - result += [x for x in data['ids']] - if count is not None and len(result) >= count: + result_list += [x for x in data['ids']] + if count is not None and len(result_list) >= count: break if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: @@ -1616,7 +1616,7 @@ def _GetIDsPaged(self, sec = self.GetSleepTime('/friends/ids') time.sleep(sec) - return data['next_cursor'], data['previous_cursor'], result + return data['next_cursor'], data['previous_cursor'], result_list def GetFollowerIDsPaged(self, user_id=None, @@ -1774,15 +1774,15 @@ def GetFriendIDs(self, count = total_count while True: - next_cursor, previous_cursor, data = self.GetFriendIDsPaged(user_id, screen_name, + next_cursor, previous_cursor, id_list = self.GetFriendIDsPaged(user_id, screen_name, cursor, stringify_ids, count) - result += [x for x in data['ids']] + result += [x for x in id_list] if next_cursor == 0 or next_cursor == previous_cursor: break else: cursor = next_cursor if total_count is not None: - total_count -= len(data['ids']) + total_count -= len(id_list) if total_count < 1: break sec = self.GetSleepTime('/followers/ids') From ff8be038cc78c23df6a95c1c94a2628d8ed4f0ec Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 6 Jan 2016 20:47:17 -0500 Subject: [PATCH 099/533] updates behavior of GetFriends(), GetFollowers(), GetFriendsPaged(), GetFollowersPaged() --- twitter/api.py | 212 +++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 178 insertions(+), 34 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index c2eb5a2f..ec9405a8 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -32,6 +32,7 @@ import requests from requests_oauthlib import OAuth1 import io +import warnings from past.utils import old_div @@ -1505,11 +1506,14 @@ def DestroyBlock(self, id, trim_user=False): return Status.NewFromJsonDict(data) - def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip_status=False, - include_user_entities=False): - """Fetch the sequence of twitter.User instances, one for each friend. - - The twitter.Api instance must be authenticated. + def GetFriendsPaged(self, + user_id=None, + screen_name=None, + cursor=-1, + count=200, + skip_status=False, + include_user_entities=False): + """Make a cursor driven call to return the list of all friends. Args: user_id: @@ -1522,7 +1526,8 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip Should be set to -1 for the initial call and then is used to control what result page Twitter returns. count: - The maximum number of users to return. + The number of users to return per page, up to a current maximum of + 200. Defaults to 200. [Optional] skip_status: If True the statuses will not be returned in the user items. [Optional] @@ -1530,35 +1535,124 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip When True, the user entities will be included. [Optional] Returns: - A sequence of twitter.User instances, one for each friend + next_cursor, previous_cursor, data sequence of twitter.User + instances, one for each follower """ - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) + + if user_id and screen_name: + warnings.warn( + "If both user_id and screen_name are specified, Twitter will " + "return the followers of the user specified by screen_name, " + "however this behavior is undocumented by Twitter and might " + "change without warning.", stacklevel=2) url = '%s/friends/list.json' % self.base_url - result = [] parameters = {} + if user_id is not None: parameters['user_id'] = user_id if screen_name is not None: parameters['screen_name'] = screen_name - if count: - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) + try: + parameters['count'] = int(count) + except ValueError: + raise TwitterError({'message': "count must be an integer"}) if skip_status: parameters['skip_status'] = True if include_user_entities: parameters['include_user_entities'] = True + parameters['cursor'] = cursor + + sec = self.GetSleepTime('/friends/list') + time.sleep(sec) + + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + if 'next_cursor' in data: + next_cursor = data['next_cursor'] + else: + next_cursor = 0 + if 'previous_cursor' in data: + previous_cursor = data['previous_cursor'] + else: + previous_cursor = 0 + + return next_cursor, previous_cursor, data + + def GetFriends(self, + user_id=None, + screen_name=None, + cursor=None, + count=None, + limit_users=None, + skip_status=False, + include_user_entities=False): + """Fetch the sequence of twitter.User instances, one for each friend. + + The twitter.Api instance must be authenticated. + + Args: + user_id: + The twitter id of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of users to return per page, up to a maximum of 200. + Defaults to 200. [Optional] + limit_users: + The upper bound of number of users to return, defaults to None. + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + A sequence of twitter.User instances, one for each friend + """ + if not self.__auth: + raise TwitterError({'message': "twitter.Api instance must be authenticated"}) + + if cursor is not None or count is not None: + warnings.warn( + "Use of 'cursor' and 'count' parameters are deprecated as of " + "python-twitter 3.0. Please use GetFriendsPaged instead.", + DeprecationWarning, stacklevel=2) + + count = 200 + result = [] + + if limit_users: + try: + limit_users = int(limit_users) + except ValueError: + raise TwitterError({'message': "limit_users must be an integer"}) + + if limit_users <= 200: + count = limit_users while True: - parameters['cursor'] = cursor - resp = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - result += [User.NewFromJsonDict(x) for x in data['users']] - if count is not None and len(result) >= count: + if limit_users is not None and len(result) + count > limit_users: + break + + next_cursor, previous_cursor, data = self.GetFriendsPaged( + user_id=user_id, + screen_name=screen_name, + count=count, + skip_status=skip_status, + include_user_entities=include_user_entities) + + try: + result += [User.NewFromJsonDict(x) for x in data['users']] + except KeyError: break + if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: break @@ -1566,8 +1660,6 @@ def GetFriends(self, user_id=None, screen_name=None, cursor=-1, count=None, skip cursor = data['next_cursor'] else: break - sec = self.GetSleepTime('/friends/list') - time.sleep(sec) return result @@ -1802,6 +1894,10 @@ def GetFollowersPaged(self, The caller is responsible for handling the cursor value and looping to gather all of the data + If both user_id and screen_name are specified, this call will return + the followers of the user specified by screen_name, however this + behavior is undocumented by Twitter and may change without warning. + Args: user_id: The twitter id of the user whose followers you are fetching. @@ -1822,10 +1918,20 @@ def GetFollowersPaged(self, When True, the user entities will be included. [Optional] Returns: - next_cursor, previous_cursor, data sequence of twitter.User instances, one for each follower + next_cursor, previous_cursor, data sequence of twitter.User + instances, one for each follower """ + + if user_id and screen_name: + warnings.warn( + "If both user_id and screen_name are specified, Twitter will " + "return the followers of the user specified by screen_name, " + "however this behavior is undocumented by Twitter and might " + "change without warning.", stacklevel=2) + url = '%s/followers/list.json' % self.base_url parameters = {} + if user_id is not None: parameters['user_id'] = user_id if screen_name is not None: @@ -1840,6 +1946,9 @@ def GetFollowersPaged(self, parameters['include_user_entities'] = True parameters['cursor'] = cursor + sec = self.GetSleepTime('/followers/list') + time.sleep(sec) + resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) @@ -1857,12 +1966,17 @@ def GetFollowersPaged(self, def GetFollowers(self, user_id=None, screen_name=None, - cursor=-1, - count=200, + cursor=None, + count=None, + limit_users=None, skip_status=False, include_user_entities=False): """Fetch the sequence of twitter.User instances, one for each follower. + If both user_id and screen_name are specified, this call will return + the followers of the user specified by screen_name, however this + behavior is undocumented by Twitter and may change without warning. + The twitter.Api instance must be authenticated. Args: @@ -1876,7 +1990,10 @@ def GetFollowers(self, Should be set to -1 for the initial call and then is used to control what result page Twitter returns. count: - The number of users to return, defaults to 200. + The number of users to return per page, up to a maximum of 200. + Defaults to 200. [Optional] + limit_users: + The upper bound of number of users to return, defaults to None. skip_status: If True the statuses will not be returned in the user items. [Optional] include_user_entities: @@ -1888,19 +2005,46 @@ def GetFollowers(self, if not self.__auth: raise TwitterError({'message': "twitter.Api instance must be authenticated"}) + if cursor is not None or count is not None: + warnings.warn( + "Use of 'cursor' and 'count' parameters are deprecated as of " + "python-twitter 3.0. Please use GetFriendsPaged instead.", + DeprecationWarning, stacklevel=2) + + count = 200 result = [] + + if limit_users: + try: + limit_users = int(limit_users) + except ValueError: + raise TwitterError({'message': "limit_users must be an integer"}) + + if limit_users <= 200: + count = limit_users + while True: - next_cursor, previous_cursor, data = self.GetFollowersPaged(user_id, screen_name, cursor, count, - skip_status, include_user_entities) - result += [User.NewFromJsonDict(x) for x in data['users']] - if count is not None and len(result) >= count: + if limit_users is not None and len(result) + count > limit_users: break - if next_cursor == 0 or next_cursor == previous_cursor: + next_cursor, previous_cursor, data = self.GetFollowersPaged( + user_id=user_id, + screen_name=screen_name, + count=count, + skip_status=skip_status, + include_user_entities=include_user_entities) + + try: + result += [User.NewFromJsonDict(x) for x in data['users']] + except KeyError: break + + if 'next_cursor' in data: + if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: + break + else: + cursor = data['next_cursor'] else: - cursor = next_cursor - sec = self.GetSleepTime('/followers/list') - time.sleep(sec) + break return result From 8cfe9518366aafead8fbb5e3d2ed2c6ec9a3d91c Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 7 Jan 2016 19:41:29 -0500 Subject: [PATCH 100/533] updates Get*IDs*() methods --- twitter/api.py | 87 +++++++++++++++++++++++++++++++++++--------------- 1 file changed, 62 insertions(+), 25 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index ec9405a8..3132f4c9 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1653,12 +1653,7 @@ def GetFriends(self, except KeyError: break - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - else: + if next_cursor == 0 or next_cursor == previous_cursor: break return result @@ -1680,7 +1675,7 @@ def _GetIDsPaged(self, # assert(url.endswith('followers/ids.json') or url.endswith('friends/ids.json')) if not self.__auth: raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - result_list = [] + result = [] parameters = {} if user_id is not None: parameters['user_id'] = user_id @@ -1695,9 +1690,15 @@ def _GetIDsPaged(self, parameters['cursor'] = cursor resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - result_list += [x for x in data['ids']] - if count is not None and len(result_list) >= count: + + try: + result += [x for x in data['ids']] + except KeyError: + break + + if count is not None and len(result) >= count: break + if 'next_cursor' in data: if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: break @@ -1705,10 +1706,11 @@ def _GetIDsPaged(self, cursor = data['next_cursor'] else: break + sec = self.GetSleepTime('/friends/ids') time.sleep(sec) - return data['next_cursor'], data['previous_cursor'], result_list + return data['next_cursor'], data['previous_cursor'], result def GetFollowerIDsPaged(self, user_id=None, @@ -1779,7 +1781,7 @@ def GetFollowerIDs(self, screen_name=None, cursor=-1, stringify_ids=False, - count=None, + count=5000, total_count=None): """Returns a list of twitter user id's for every person that is following the specified user. @@ -1808,21 +1810,41 @@ def GetFollowerIDs(self, A list of integers, one for each user id. """ result = [] + + if count: + try: + count = int(count) + except ValueError: + raise TwitterError({'message': "count must be an integer"}) + + if total_count: + try: + total_count = int(total_count) + except ValueError: + raise TwitterError({'message': "total_count must be an integer"}) + if total_count and total_count < count: count = total_count while True: - next_cursor, previous_cursor, data = self.GetFollowerIDsPaged(user_id, screen_name, cursor, stringify_ids, - count) - result += [x for x in data['ids']] + next_cursor, previous_cursor, data = self.GetFollowerIDsPaged( + user_id, + screen_name, + cursor, + stringify_ids, + count) + result += [x for x in data] + if next_cursor == 0 or next_cursor == previous_cursor: break else: cursor = next_cursor + if total_count is not None: - total_count -= len(data['ids']) + total_count -= len(data) if total_count < 1: break + sec = self.GetSleepTime('/followers/ids') time.sleep(sec) @@ -1862,21 +1884,41 @@ def GetFriendIDs(self, A list of integers, one for each user id. """ result = [] + + if count: + try: + count = int(count) + except ValueError: + raise TwitterError({'message': "count must be an integer"}) + + if total_count: + try: + total_count = int(total_count) + except ValueError: + raise TwitterError({'message': "total_count must be an integer"}) + if total_count and total_count < count: count = total_count while True: - next_cursor, previous_cursor, id_list = self.GetFriendIDsPaged(user_id, screen_name, - cursor, stringify_ids, count) - result += [x for x in id_list] + next_cursor, previous_cursor, data = self.GetFriendIDsPaged( + user_id, + screen_name, + cursor, + stringify_ids, + count) + result += [x for x in data] + if next_cursor == 0 or next_cursor == previous_cursor: break else: cursor = next_cursor + if total_count is not None: - total_count -= len(id_list) + total_count -= len(data['ids']) if total_count < 1: break + sec = self.GetSleepTime('/followers/ids') time.sleep(sec) @@ -2038,12 +2080,7 @@ def GetFollowers(self, except KeyError: break - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - else: + if next_cursor == 0 or next_cursor == previous_cursor: break return result From 0f5a937bb3c8d2f7d297a7987deaf7a7dd8e9a8d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 9 Jan 2016 08:22:37 -0500 Subject: [PATCH 101/533] updates to GetFriends/Followers* methods. see issue #277 and pull request #275 --- twitter/api.py | 48 +++++++++++++++++++++++++++++++++--------------- 1 file changed, 33 insertions(+), 15 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 3132f4c9..8d5a2730 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1569,16 +1569,22 @@ def GetFriendsPaged(self, resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + if 'users' in data: + users = [User.NewFromJsonDict(user) for user in data['users']] + else: + users = [] + if 'next_cursor' in data: next_cursor = data['next_cursor'] else: next_cursor = 0 + if 'previous_cursor' in data: previous_cursor = data['previous_cursor'] else: previous_cursor = 0 - return next_cursor, previous_cursor, data + return next_cursor, previous_cursor, users def GetFriends(self, user_id=None, @@ -1626,6 +1632,7 @@ def GetFriends(self, DeprecationWarning, stacklevel=2) count = 200 + cursor = -1 result = [] if limit_users: @@ -1645,13 +1652,14 @@ def GetFriends(self, user_id=user_id, screen_name=screen_name, count=count, + cursor=cursor, skip_status=skip_status, include_user_entities=include_user_entities) - try: - result += [User.NewFromJsonDict(x) for x in data['users']] - except KeyError: - break + if next_cursor: + cursor = next_cursor + + result.extend(data) if next_cursor == 0 or next_cursor == previous_cursor: break @@ -1853,12 +1861,14 @@ def GetFollowerIDs(self, def GetFriendIDs(self, user_id=None, screen_name=None, - cursor=-1, + cursor=None, stringify_ids=False, count=None, total_count=None): - """Returns a list of twitter user id's for every person - that is followed by the specified user. + """ Fetch a sequence of user ids, one for each friend. + Returns a list of all the given user's friends' IDs. If no user_id or + screen_name is given, the friends will be those of the authenticated + user. Args: user_id: @@ -1885,11 +1895,14 @@ def GetFriendIDs(self, """ result = [] - if count: - try: - count = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) + if cursor is not None or count is not None: + warnings.warn( + "Use of 'cursor' and 'count' parameters are deprecated as of " + "python-twitter 3.0. Please use GetFriendsPaged instead.", + DeprecationWarning, stacklevel=2) + + count = 5000 + cursor = -1 if total_count: try: @@ -1994,6 +2007,11 @@ def GetFollowersPaged(self, resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + if 'users' in data: + users = [User.NewFromJsonDict(user) for user in data['users']] + else: + users = [] + if 'next_cursor' in data: next_cursor = data['next_cursor'] else: @@ -2003,7 +2021,7 @@ def GetFollowersPaged(self, else: previous_cursor = 0 - return next_cursor, previous_cursor, data + return next_cursor, previous_cursor, users def GetFollowers(self, user_id=None, @@ -2076,7 +2094,7 @@ def GetFollowers(self, include_user_entities=include_user_entities) try: - result += [User.NewFromJsonDict(x) for x in data['users']] + result.extend(data) except KeyError: break From e2d5db6a00c34e237c58a6f858160ece63961535 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 9 Jan 2016 08:32:13 -0500 Subject: [PATCH 102/533] explicitly sets url query parameters even when false to avoid ambiguous behavior from Twitters response --- twitter/api.py | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 8d5a2730..0c16ccca 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1512,7 +1512,7 @@ def GetFriendsPaged(self, cursor=-1, count=200, skip_status=False, - include_user_entities=False): + include_user_entities=True): """Make a cursor driven call to return the list of all friends. Args: @@ -1557,10 +1557,17 @@ def GetFriendsPaged(self, parameters['count'] = int(count) except ValueError: raise TwitterError({'message': "count must be an integer"}) + if skip_status: parameters['skip_status'] = True + else: + parameters['skip_status'] = False + if include_user_entities: parameters['include_user_entities'] = True + else: + parameters['include_user_entities'] = False + parameters['cursor'] = cursor sec = self.GetSleepTime('/friends/list') @@ -1943,7 +1950,7 @@ def GetFollowersPaged(self, cursor=-1, count=200, skip_status=False, - include_user_entities=False): + include_user_entities=True): """Make a cursor driven call to return the list of all followers The caller is responsible for handling the cursor value and looping @@ -1995,10 +2002,17 @@ def GetFollowersPaged(self, parameters['count'] = int(count) except ValueError: raise TwitterError({'message': "count must be an integer"}) + if skip_status: parameters['skip_status'] = True + else: + parameters['skip_status'] = False + if include_user_entities: parameters['include_user_entities'] = True + else: + parameters['include_user_entities'] = False + parameters['cursor'] = cursor sec = self.GetSleepTime('/followers/list') From 9a7cecfb0f0de1b62f4f5b2e137f18431dca6116 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 9 Jan 2016 08:32:53 -0500 Subject: [PATCH 103/533] adds global sleep_on_rate_limit parameter to API for testing purposes --- twitter/api.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index 0c16ccca..5696eaed 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -136,7 +136,8 @@ def __init__(self, upload_url=None, use_gzip_compression=False, debugHTTP=False, - timeout=None): + timeout=None, + sleep_on_rate_limit=True): """Instantiate a new twitter.Api object. Args: @@ -186,6 +187,11 @@ def __init__(self, self._InitializeUserAgent() self._InitializeDefaultParameters() + if sleep_on_rate_limit: + self.sleep_on_rate_limit = True + else: + self.sleep_on_rate_limit = False + if base_url is None: self.base_url = 'https://api.twitter.com/1.1' else: @@ -4007,6 +4013,10 @@ def GetSleepTime(self, resources): Returns: The minimum seconds that the api must have to sleep before query again """ + + if self.sleep_on_rate_limit is False: + return 0 + if resources[0] == '/': resources = resources[1:] resource_families = resources[:resources.find('/')] if '/' in resources else resources From a141ade9ce8dd17e561eb769352f5a71126178b5 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 9 Jan 2016 11:32:35 -0500 Subject: [PATCH 104/533] refactors GetFriends, GetFollowers, and Paged methods to call _GetFriendsFollowers or _GetFriendsFollowersPaged --- twitter/api.py | 325 ++++++++++++++++++++++++++----------------------- 1 file changed, 171 insertions(+), 154 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 5696eaed..49fe74d8 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1545,59 +1545,13 @@ def GetFriendsPaged(self, instances, one for each follower """ - if user_id and screen_name: - warnings.warn( - "If both user_id and screen_name are specified, Twitter will " - "return the followers of the user specified by screen_name, " - "however this behavior is undocumented by Twitter and might " - "change without warning.", stacklevel=2) - - url = '%s/friends/list.json' % self.base_url - parameters = {} - - if user_id is not None: - parameters['user_id'] = user_id - if screen_name is not None: - parameters['screen_name'] = screen_name - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) - - if skip_status: - parameters['skip_status'] = True - else: - parameters['skip_status'] = False - - if include_user_entities: - parameters['include_user_entities'] = True - else: - parameters['include_user_entities'] = False - - parameters['cursor'] = cursor - - sec = self.GetSleepTime('/friends/list') - time.sleep(sec) - - resp = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - - if 'users' in data: - users = [User.NewFromJsonDict(user) for user in data['users']] - else: - users = [] - - if 'next_cursor' in data: - next_cursor = data['next_cursor'] - else: - next_cursor = 0 - - if 'previous_cursor' in data: - previous_cursor = data['previous_cursor'] - else: - previous_cursor = 0 - - return next_cursor, previous_cursor, users + return self._GetFriendsFollowersPaged('/friends/list', + user_id, + screen_name, + cursor, + count, + skip_status, + include_user_entities) def GetFriends(self, user_id=None, @@ -1606,7 +1560,7 @@ def GetFriends(self, count=None, limit_users=None, skip_status=False, - include_user_entities=False): + include_user_entities=True): """Fetch the sequence of twitter.User instances, one for each friend. The twitter.Api instance must be authenticated. @@ -1635,49 +1589,15 @@ def GetFriends(self, Returns: A sequence of twitter.User instances, one for each friend """ - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - if cursor is not None or count is not None: - warnings.warn( - "Use of 'cursor' and 'count' parameters are deprecated as of " - "python-twitter 3.0. Please use GetFriendsPaged instead.", - DeprecationWarning, stacklevel=2) - - count = 200 - cursor = -1 - result = [] - - if limit_users: - try: - limit_users = int(limit_users) - except ValueError: - raise TwitterError({'message': "limit_users must be an integer"}) - - if limit_users <= 200: - count = limit_users - - while True: - if limit_users is not None and len(result) + count > limit_users: - break - - next_cursor, previous_cursor, data = self.GetFriendsPaged( - user_id=user_id, - screen_name=screen_name, - count=count, - cursor=cursor, - skip_status=skip_status, - include_user_entities=include_user_entities) - - if next_cursor: - cursor = next_cursor - - result.extend(data) - - if next_cursor == 0 or next_cursor == previous_cursor: - break - - return result + return self._GetFriendsFollowers('/friends/list', + user_id, + screen_name, + cursor, + count, + limit_users, + skip_status, + include_user_entities) def _GetIDsPaged(self, # must be the url for followers/ids.json or friends/ids.json @@ -1849,11 +1769,11 @@ def GetFollowerIDs(self, while True: next_cursor, previous_cursor, data = self.GetFollowerIDsPaged( - user_id, - screen_name, - cursor, - stringify_ids, - count) + user_id, + screen_name, + cursor, + stringify_ids, + count) result += [x for x in data] if next_cursor == 0 or next_cursor == previous_cursor: @@ -1928,11 +1848,11 @@ def GetFriendIDs(self, while True: next_cursor, previous_cursor, data = self.GetFriendIDsPaged( - user_id, - screen_name, - cursor, - stringify_ids, - count) + user_id, + screen_name, + cursor, + stringify_ids, + count) result += [x for x in data] if next_cursor == 0 or next_cursor == previous_cursor: @@ -1959,14 +1879,53 @@ def GetFollowersPaged(self, include_user_entities=True): """Make a cursor driven call to return the list of all followers - The caller is responsible for handling the cursor value and looping - to gather all of the data + Args: + user_id: + The twitter id of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of users to return per page, up to a maximum of 200. + Defaults to 200. [Optional] + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] - If both user_id and screen_name are specified, this call will return - the followers of the user specified by screen_name, however this - behavior is undocumented by Twitter and may change without warning. + Returns: + next_cursor, previous_cursor, data sequence of twitter.User + instances, one for each follower + """ + + return self._GetFriendsFollowersPaged('/followers/list', + user_id, + screen_name, + cursor, + count, + skip_status, + include_user_entities) + + def _GetFriendsFollowersPaged(self, + endpoint=None, + user_id=None, + screen_name=None, + cursor=-1, + count=200, + skip_status=False, + include_user_entities=True): + + """Make a cursor driven call to return the list of 1 page of friends + or followers. Args: + endpoint: + user_id: The twitter id of the user whose followers you are fetching. If not specified, defaults to the authenticated user. [Optional] @@ -1997,33 +1956,29 @@ def GetFollowersPaged(self, "however this behavior is undocumented by Twitter and might " "change without warning.", stacklevel=2) - url = '%s/followers/list.json' % self.base_url + if endpoint == '/friends/list': + url = '%s/friends/list.json' % self.base_url + elif endpoint == '/followers/list': + url = '%s/followers/list.json' % self.base_url + else: + raise TwitterError({'message': 'endpoint must be either /friends/list or /followers/list'}) + parameters = {} if user_id is not None: parameters['user_id'] = user_id if screen_name is not None: parameters['screen_name'] = screen_name + try: parameters['count'] = int(count) except ValueError: raise TwitterError({'message': "count must be an integer"}) - if skip_status: - parameters['skip_status'] = True - else: - parameters['skip_status'] = False - - if include_user_entities: - parameters['include_user_entities'] = True - else: - parameters['include_user_entities'] = False - + parameters['skip_status'] = skip_status + parameters['include_user_entities'] = include_user_entities parameters['cursor'] = cursor - sec = self.GetSleepTime('/followers/list') - time.sleep(sec) - resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) @@ -2043,28 +1998,28 @@ def GetFollowersPaged(self, return next_cursor, previous_cursor, users - def GetFollowers(self, - user_id=None, - screen_name=None, - cursor=None, - count=None, - limit_users=None, - skip_status=False, - include_user_entities=False): - """Fetch the sequence of twitter.User instances, one for each follower. - - If both user_id and screen_name are specified, this call will return - the followers of the user specified by screen_name, however this - behavior is undocumented by Twitter and may change without warning. + def _GetFriendsFollowers(self, + endpoint=None, + user_id=None, + screen_name=None, + cursor=None, + count=None, + limit_users=None, + skip_status=False, + include_user_entities=True): - The twitter.Api instance must be authenticated. + """ Fetch the sequence of twitter.User instances, one for each friend + or follower. Args: + endpoint: + Either '/followers/list' or '/friends/list' depending on which you + want to return. user_id: - The twitter id of the user whose followers you are fetching. + The twitter id of the user whose friends you are fetching. If not specified, defaults to the authenticated user. [Optional] screen_name: - The twitter name of the user whose followers you are fetching. + The twitter name of the user whose friends you are fetching. If not specified, defaults to the authenticated user. [Optional] cursor: Should be set to -1 for the initial call and then is used to @@ -2075,15 +2030,14 @@ def GetFollowers(self, limit_users: The upper bound of number of users to return, defaults to None. skip_status: - If True the statuses will not be returned in the user items. [Optional] + If True the statuses will not be returned in the user items. + [Optional] include_user_entities: When True, the user entities will be included. [Optional] Returns: - A sequence of twitter.User instances, one for each follower + A sequence of twitter.User instances, one for each friend or follower """ - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) if cursor is not None or count is not None: warnings.warn( @@ -2092,6 +2046,7 @@ def GetFollowers(self, DeprecationWarning, stacklevel=2) count = 200 + cursor = -1 result = [] if limit_users: @@ -2106,23 +2061,85 @@ def GetFollowers(self, while True: if limit_users is not None and len(result) + count > limit_users: break - next_cursor, previous_cursor, data = self.GetFollowersPaged( - user_id=user_id, - screen_name=screen_name, - count=count, - skip_status=skip_status, - include_user_entities=include_user_entities) - try: - result.extend(data) - except KeyError: + if endpoint == '/friends/list': + next_cursor, previous_cursor, data = self.GetFriendsPaged( + user_id=user_id, + screen_name=screen_name, + count=count, + cursor=cursor, + skip_status=skip_status, + include_user_entities=include_user_entities) + + elif endpoint == '/followers/list': + next_cursor, previous_cursor, data = self.GetFollowersPaged( + user_id=user_id, + screen_name=screen_name, + count=count, + cursor=cursor, + skip_status=skip_status, + include_user_entities=include_user_entities) + else: break + if next_cursor: + cursor = next_cursor + + result.extend(data) + if next_cursor == 0 or next_cursor == previous_cursor: break return result + def GetFollowers(self, + user_id=None, + screen_name=None, + cursor=None, + count=None, + limit_users=None, + skip_status=False, + include_user_entities=False): + """Fetch the sequence of twitter.User instances, one for each follower. + + If both user_id and screen_name are specified, this call will return + the followers of the user specified by screen_name, however this + behavior is undocumented by Twitter and may change without warning. + + The twitter.Api instance must be authenticated. + + Args: + user_id: + The twitter id of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of users to return per page, up to a maximum of 200. + Defaults to 200. [Optional] + limit_users: + The upper bound of number of users to return, defaults to None. + skip_status: + If True the statuses will not be returned in the user items. [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + A sequence of twitter.User instances, one for each follower + """ + return self._GetFriendsFollowers('/followers/list', + user_id, + screen_name, + cursor, + count, + limit_users, + skip_status, + include_user_entities) + def UsersLookup(self, user_id=None, screen_name=None, From 5faac698094708a08afb486b94e6e927a867f2cb Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 9 Jan 2016 11:53:39 -0500 Subject: [PATCH 105/533] moves endpoint checking for GetFollowers/GetFriends to _GetFriendsFollowersPaged method --- twitter/api.py | 32 +++++++++----------------------- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 49fe74d8..e10ce044 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -187,10 +187,7 @@ def __init__(self, self._InitializeUserAgent() self._InitializeDefaultParameters() - if sleep_on_rate_limit: - self.sleep_on_rate_limit = True - else: - self.sleep_on_rate_limit = False + self.sleep_on_rate_limit = sleep_on_rate_limit if base_url is None: self.base_url = 'https://api.twitter.com/1.1' @@ -2062,25 +2059,14 @@ def _GetFriendsFollowers(self, if limit_users is not None and len(result) + count > limit_users: break - if endpoint == '/friends/list': - next_cursor, previous_cursor, data = self.GetFriendsPaged( - user_id=user_id, - screen_name=screen_name, - count=count, - cursor=cursor, - skip_status=skip_status, - include_user_entities=include_user_entities) - - elif endpoint == '/followers/list': - next_cursor, previous_cursor, data = self.GetFollowersPaged( - user_id=user_id, - screen_name=screen_name, - count=count, - cursor=cursor, - skip_status=skip_status, - include_user_entities=include_user_entities) - else: - break + next_cursor, previous_cursor, data = self._GetFriendsFollowersPaged( + endpoint=endpoint, + user_id=user_id, + screen_name=screen_name, + count=count, + cursor=cursor, + skip_status=skip_status, + include_user_entities=include_user_entities) if next_cursor: cursor = next_cursor From 741c0aaaf0ff75a0658dc8ad0909c526bee3577e Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 9 Jan 2016 12:00:57 -0500 Subject: [PATCH 106/533] updates doc string for GetFriends and changes default value of include_user_entities to True for GetFollowers in line with GetFriends --- twitter/api.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index e10ce044..d354a082 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1560,6 +1560,10 @@ def GetFriends(self, include_user_entities=True): """Fetch the sequence of twitter.User instances, one for each friend. + If both user_id and screen_name are specified, this call will return + the followers of the user specified by screen_name, however this + behavior is undocumented by Twitter and may change without warning. + The twitter.Api instance must be authenticated. Args: @@ -2085,7 +2089,7 @@ def GetFollowers(self, count=None, limit_users=None, skip_status=False, - include_user_entities=False): + include_user_entities=True): """Fetch the sequence of twitter.User instances, one for each follower. If both user_id and screen_name are specified, this call will return From 326a451966cbc0e01d9b608a4f5d11888766b10b Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 9 Jan 2016 12:34:41 -0500 Subject: [PATCH 107/533] adds tests & test data for GetFriends, GetFollowers, and associated methods --- .travis.yml | 2 +- requirements.testing.txt | 4 + testdata/get_follower_ids_0.json | 5008 +++ testdata/get_follower_ids_1.json | 2893 ++ testdata/get_followers_0.json | 11127 +++++++ testdata/get_followers_1.json | 7539 +++++ testdata/get_friend_ids_0.json | 1 + testdata/get_friend_ids_1.json | 1 + testdata/get_friends_0.json | 26701 +++++++++++++++ testdata/get_friends_1.json | 26548 +++++++++++++++ testdata/get_friends_2.json | 27010 ++++++++++++++++ testdata/get_friends_3.json | 25202 ++++++++++++++ testdata/get_friends_4.json | 2445 ++ testdata/get_friends_paged.json | 26427 +++++++++++++++ .../get_friends_paged_additional_params.json | 12010 +++++++ testdata/get_friends_paged_uid.json | 26630 +++++++++++++++ tests/test_api_30.py | 262 + 17 files changed, 199809 insertions(+), 1 deletion(-) create mode 100644 requirements.testing.txt create mode 100644 testdata/get_follower_ids_0.json create mode 100644 testdata/get_follower_ids_1.json create mode 100644 testdata/get_followers_0.json create mode 100644 testdata/get_followers_1.json create mode 100644 testdata/get_friend_ids_0.json create mode 100644 testdata/get_friend_ids_1.json create mode 100644 testdata/get_friends_0.json create mode 100644 testdata/get_friends_1.json create mode 100644 testdata/get_friends_2.json create mode 100644 testdata/get_friends_3.json create mode 100644 testdata/get_friends_4.json create mode 100644 testdata/get_friends_paged.json create mode 100644 testdata/get_friends_paged_additional_params.json create mode 100644 testdata/get_friends_paged_uid.json create mode 100644 tests/test_api_30.py diff --git a/.travis.yml b/.travis.yml index cf0f6514..2320b890 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ before_install: install: - travis_retry pip install . - - pip install -r requirements.txt + - pip install -r requirements.testing.txt script: - make test diff --git a/requirements.testing.txt b/requirements.testing.txt new file mode 100644 index 00000000..d3e9f9e0 --- /dev/null +++ b/requirements.testing.txt @@ -0,0 +1,4 @@ +future +requests +requests_oauthlib +responses diff --git a/testdata/get_follower_ids_0.json b/testdata/get_follower_ids_0.json new file mode 100644 index 00000000..a36147a0 --- /dev/null +++ b/testdata/get_follower_ids_0.json @@ -0,0 +1,5008 @@ +{ + "next_cursor_str": "1482201362283529597", + "next_cursor": 1482201362283529597, + "previous_cursor": 0, + "previous_cursor_str": "0", + "ids": [ + 4727569094, + 2159989885, + 4440403513, + 4588196896, + 4726058862, + 3586984694, + 4724624774, + 4597361717, + 172443768, + 4723772232, + 972722053, + 2711772630, + 4472842402, + 809963898, + 459557733, + 536513337, + 4721100218, + 1003854361, + 4726605819, + 20086326, + 4718785213, + 4647172521, + 1280009484, + 44151502, + 4059246148, + 3566376976, + 327606485, + 1561816711, + 4558693163, + 2910127390, + 4713152474, + 3392295089, + 228816435, + 867113114, + 169155140, + 2851645779, + 37599351, + 4705950344, + 2383209865, + 2909319245, + 2943876654, + 3563619556, + 2519892949, + 2783290115, + 3305004538, + 3254355889, + 4042012949, + 6903522, + 730455462, + 379174316, + 1140758419, + 1418842483, + 2924562127, + 4685458346, + 3252887849, + 54814687, + 500593738, + 3350035048, + 13744762, + 2677379911, + 165090454, + 6736502, + 4351480095, + 3291006204, + 3861464295, + 924726152, + 3305910986, + 3335689277, + 3432512224, + 2744732064, + 3369181541, + 3225038901, + 291156648, + 2611482761, + 4492833793, + 63256598, + 3463286669, + 54662153, + 3617600054, + 4223951597, + 33909603, + 4060613314, + 33293016, + 1513098175, + 3390091932, + 3392175885, + 2723551188, + 534503457, + 4628650816, + 146266477, + 805250713, + 876097170, + 548601124, + 3496725492, + 1227109332, + 4650831494, + 3260450900, + 4638606512, + 2263854492, + 4618877479, + 4515437554, + 4580405368, + 1013993911, + 4608895094, + 3131353377, + 4134420904, + 3154667345, + 17202870, + 4551135916, + 1208988649, + 3083337205, + 4416740921, + 384640916, + 1644367051, + 4361721801, + 4289129779, + 3291211192, + 4111189155, + 4095486974, + 3432611499, + 385614197, + 4576335492, + 1575064478, + 3087454077, + 4481229796, + 2484730051, + 397455579, + 4443407839, + 3351271613, + 3764534293, + 3107595305, + 2837232924, + 4558453938, + 374695645, + 4482472275, + 4556159652, + 765566593, + 4478225662, + 2777597238, + 4482378194, + 1574305136, + 3298141567, + 3288437098, + 387302374, + 4428090687, + 4329496245, + 25941620, + 38871301, + 773894990, + 3703004656, + 3171871964, + 4258325478, + 3314167718, + 59141885, + 4384140736, + 2279784726, + 4405811902, + 1944926101, + 565743231, + 1896036876, + 2881381038, + 4298344762, + 4132592593, + 610058444, + 3402203169, + 4430168739, + 4206412580, + 3715201703, + 4429365257, + 4067032871, + 4453995859, + 4286580586, + 4503681732, + 1436041, + 2945751177, + 4409386396, + 20596878, + 18821744, + 4100452463, + 2390549779, + 4104856221, + 4432718594, + 1643476940, + 17127545, + 2395968038, + 13357152, + 1616041538, + 3936903853, + 3362672781, + 3234227772, + 4238198233, + 37170886, + 3310781670, + 2470833258, + 4376890762, + 24641260, + 4445062219, + 4443257354, + 4437900013, + 3238070184, + 4437812906, + 4154941402, + 3369087143, + 2943778680, + 551545790, + 1665904176, + 4199565015, + 3293182576, + 271195889, + 73066735, + 3288492700, + 4343070873, + 2959224279, + 462129948, + 4325388317, + 2653241334, + 14594968, + 3041707044, + 1225814342, + 14536247, + 1551214278, + 2765922944, + 4196868014, + 3392128331, + 230505712, + 3245241844, + 3246290510, + 2464896570, + 1588283210, + 3369023253, + 4310030537, + 3369096833, + 3369018423, + 3369095249, + 3314371723, + 3301731150, + 94011952, + 4301214683, + 3242517059, + 3436318253, + 4204336403, + 1229301625, + 3369045819, + 56381545, + 3372161386, + 2444611340, + 3167775416, + 3813670342, + 3369016863, + 3369082163, + 3369113362, + 4262914535, + 4323271819, + 4265960428, + 4277951967, + 3234997046, + 4064878827, + 4257937756, + 270388907, + 3369162784, + 618193383, + 3372071451, + 4075729966, + 4249798059, + 344710912, + 21170191, + 1358213732, + 4295447478, + 433402770, + 910767529, + 3369008271, + 3288749939, + 3700789463, + 5735722, + 504984038, + 4042828692, + 994872008, + 2793324527, + 2965516881, + 3943298172, + 4301516532, + 1861651002, + 3245816828, + 4298135551, + 144327700, + 4230489327, + 4255188853, + 2434700825, + 4261340774, + 872152550, + 2824376163, + 1012043990, + 14439553, + 1447018867, + 4149228059, + 101563838, + 2344074758, + 4167609783, + 429181978, + 723239514, + 4210997740, + 471728300, + 4256907314, + 723259994, + 1631058284, + 4241702173, + 4053712753, + 49036322, + 4242022692, + 4002711853, + 4239672132, + 15376548, + 36661567, + 45119696, + 3219689552, + 122722951, + 1968880338, + 14986598, + 133163228, + 4209237794, + 26288896, + 3297595985, + 4171889661, + 3688577959, + 441443024, + 4165302856, + 3079557028, + 2814179773, + 3193892419, + 3897312373, + 4194504312, + 4072977613, + 2873622863, + 2896048525, + 2868426065, + 2925527959, + 25414649, + 4178125153, + 3210747297, + 1592364410, + 2920104383, + 53742527, + 16050335, + 16711686, + 826139334, + 4099610194, + 272170764, + 2660923440, + 21497686, + 3318260434, + 3438042953, + 3996919827, + 4119427517, + 3287831166, + 4098782536, + 3566510360, + 3596193313, + 3572237002, + 108277704, + 184035104, + 909889638, + 4108697969, + 3565431863, + 4105547145, + 29006114, + 572918492, + 3314249902, + 21934122, + 3128047447, + 4101702562, + 3436857292, + 2465853247, + 3930538695, + 3262000880, + 4085064315, + 1130398088, + 4077702320, + 3205516811, + 4094234294, + 2428746600, + 3606281596, + 3445573213, + 14260934, + 715210842, + 2854329679, + 20547438, + 2324931355, + 3561566841, + 4055603173, + 3280180292, + 17959415, + 1137841, + 3028669812, + 218819255, + 2535680672, + 4047417136, + 30171517, + 294163041, + 158817600, + 2812038732, + 434493063, + 24630127, + 1277467326, + 4052753577, + 4032318612, + 3372156172, + 2360952272, + 31088347, + 2751474409, + 3372064479, + 3028987862, + 3372052941, + 2876077741, + 1426489596, + 140848680, + 3676402404, + 449088065, + 3372112343, + 4033856823, + 3855838251, + 262289638, + 517508970, + 3970614084, + 3991146975, + 1620307951, + 860162726, + 480203570, + 3976303633, + 377421904, + 3698146754, + 3641637135, + 711152959, + 3986655664, + 963060793, + 3951074242, + 16869298, + 3859045699, + 2787902762, + 4000203135, + 3874758792, + 3192206835, + 3742132393, + 6867422, + 380752039, + 3987199649, + 3124168192, + 3934487834, + 2878853621, + 539389847, + 3396877633, + 3944723374, + 3398917175, + 3309014172, + 3048570253, + 93508627, + 3890105532, + 924569904, + 2781414036, + 3278963672, + 2697484447, + 2466617142, + 116537943, + 1305583158, + 3445927762, + 3953168957, + 3118176874, + 3394087006, + 3633347063, + 3260172752, + 40937252, + 560622571, + 3884146342, + 3897137537, + 1700987816, + 3325037137, + 2321310390, + 14595446, + 3938137581, + 2780267415, + 3921864677, + 2524165066, + 3921655367, + 2310349423, + 177256329, + 2651192450, + 95569167, + 3830504413, + 2866488104, + 3540449115, + 1274674382, + 69568497, + 237071281, + 3645729272, + 3048045832, + 711092328, + 86728819, + 3816688513, + 898337090, + 30958732, + 817052436, + 362829789, + 3882720183, + 2613691501, + 3328152633, + 24649110, + 3450039327, + 3881376448, + 236678142, + 42723893, + 1972345922, + 3367772559, + 3394538069, + 21391319, + 2243199369, + 314910919, + 3864843508, + 2662671325, + 122856431, + 3791016433, + 3461500095, + 2873652344, + 3866597782, + 729055795, + 2980436249, + 3585710534, + 27546330, + 2455058425, + 637256263, + 3843606622, + 8257582, + 15453752, + 3732361153, + 2687560542, + 3796531515, + 3742856964, + 2320415300, + 1025258792, + 3750714320, + 3310692242, + 3235866265, + 2222207587, + 259203750, + 348732128, + 257790897, + 17215973, + 3656945963, + 3119648844, + 3533415917, + 3166038078, + 3830425707, + 3063515724, + 824097301, + 304714961, + 19461735, + 3709450815, + 983761116, + 55050779, + 282749943, + 3125045056, + 3815917726, + 1464002383, + 2835250822, + 15247851, + 3707836163, + 398247232, + 2488518120, + 3721564272, + 3743441352, + 84526047, + 3742918274, + 510426506, + 375881922, + 3307585687, + 341561121, + 3064005897, + 3722819119, + 588229921, + 15657734, + 256604706, + 1061271746, + 1585399752, + 227941935, + 33174306, + 3319710096, + 931013179, + 29972165, + 12970432, + 409264135, + 95821691, + 20392133, + 29140169, + 21755368, + 1911369170, + 297882633, + 3025694975, + 3671953580, + 1271160937, + 1140606943, + 473209711, + 2976293643, + 197908028, + 23597904, + 17368291, + 3791030422, + 3127932331, + 55683, + 991784670, + 3314034839, + 2217597356, + 3667991232, + 521665119, + 61312155, + 2366598559, + 19158794, + 2790808422, + 550218277, + 3437500641, + 890573372, + 369664862, + 194350424, + 3366793205, + 3004174175, + 35226352, + 2343811524, + 274376314, + 2462584339, + 2556439687, + 129982363, + 1025575574, + 2990366516, + 549789279, + 3245682853, + 1067433296, + 3776394015, + 568266336, + 2660896448, + 2445322386, + 3776084482, + 257105958, + 26400556, + 623208462, + 2374687748, + 2951326008, + 2836831551, + 3565196532, + 19533970, + 937453657, + 515796374, + 32339577, + 1069924674, + 26243581, + 21256388, + 18359687, + 51958104, + 365424178, + 1519453129, + 2993641806, + 110849533, + 15410181, + 24939205, + 391698296, + 3293817393, + 474197738, + 23989245, + 3217502745, + 2501696396, + 35754897, + 253526305, + 191606864, + 3008103926, + 104940767, + 203006404, + 171093486, + 42909816, + 40147256, + 3438494050, + 131850717, + 373629495, + 18957528, + 22478857, + 441869139, + 327494258, + 3077068253, + 42566089, + 14909129, + 16117544, + 3769089201, + 126227790, + 260409334, + 358127357, + 18409980, + 873102607, + 204722944, + 117665953, + 255867958, + 3378918880, + 2584841, + 285435896, + 1390708652, + 1958639456, + 46969371, + 24973042, + 19150410, + 2691032274, + 2371922039, + 90884238, + 119741900, + 2730359500, + 110095813, + 71229154, + 20247713, + 332962470, + 2450622499, + 3766223981, + 338315107, + 279389317, + 3299221046, + 15387032, + 632433915, + 32321142, + 2332448720, + 228111079, + 3162067817, + 2710356834, + 1359934544, + 18157949, + 2902807042, + 591955292, + 2566507268, + 3312843998, + 3301215209, + 440447856, + 100021001, + 2950135645, + 624751365, + 2924824557, + 524317843, + 326886738, + 339305583, + 58139636, + 325382356, + 77675608, + 1604400888, + 14337677, + 33762408, + 3226765068, + 453433267, + 478052966, + 2376105709, + 761821470, + 2682724056, + 3308110327, + 124322117, + 323861766, + 42825991, + 3418685967, + 38044745, + 1884638293, + 835126549, + 2435921790, + 3674884573, + 2906512079, + 20380832, + 16393195, + 304566678, + 733185818, + 3287926819, + 3112569449, + 41446147, + 57821198, + 3133437064, + 771135176, + 3763645767, + 2197216129, + 780629930, + 28422283, + 57391309, + 22285002, + 90467435, + 16009228, + 87003849, + 2490802358, + 2831619731, + 1725681336, + 15072897, + 3672518918, + 103355247, + 15846480, + 3004462409, + 425247471, + 1033542842, + 3761939301, + 165452796, + 2315874928, + 1595385926, + 84649687, + 3424669325, + 346413206, + 213863733, + 3671107700, + 22493135, + 42445830, + 352416575, + 322935580, + 299583722, + 2246685840, + 559419711, + 357166905, + 576729133, + 3297935932, + 780256, + 2673962376, + 398029052, + 66460256, + 524971540, + 2475614696, + 361923349, + 45178917, + 1618289293, + 1529281777, + 712252046, + 14745265, + 968346379, + 288314281, + 57278524, + 143121774, + 1350192332, + 2545160278, + 378357691, + 229191999, + 12325402, + 315739478, + 300311737, + 790993424, + 1653027398, + 2162573900, + 25396935, + 92827461, + 336831618, + 19519403, + 27809379, + 813767929, + 243299651, + 3758706017, + 21126689, + 110860080, + 293055819, + 47972392, + 81796862, + 15876654, + 71480385, + 454083904, + 84825505, + 3327174042, + 36141303, + 195478230, + 142216838, + 1561810207, + 3437702092, + 3755741115, + 18589798, + 26414682, + 3755349015, + 47680923, + 292551106, + 2337491022, + 15075215, + 3152481, + 19784522, + 1967676458, + 16064715, + 3623119213, + 3746582117, + 3742885576, + 3720703834, + 3471887176, + 3676985837, + 16008657, + 2849184133, + 312806264, + 3318322004, + 3660317175, + 3164522870, + 2861121485, + 3322346690, + 390634518, + 22166168, + 880869722, + 3089421956, + 3305860415, + 3588190457, + 204391039, + 3239517631, + 3319933355, + 3599797998, + 2998904224, + 3561202392, + 48197550, + 276117815, + 3676773257, + 545286328, + 3679097175, + 3646159463, + 898350834, + 2720717808, + 3134132414, + 130911267, + 3534423801, + 2722611607, + 2885105333, + 1890653114, + 281096380, + 47904733, + 3651948615, + 3647552597, + 2998874523, + 211810106, + 847982263, + 323210799, + 178064435, + 1631607308, + 3374277485, + 3532146672, + 3491163143, + 3625519757, + 2983873470, + 3488315780, + 2668359638, + 3526092440, + 2536373654, + 3119682967, + 3496635434, + 21124657, + 3307525812, + 3608599515, + 705804404, + 433076609, + 2856319923, + 2864709981, + 3227185845, + 90352974, + 1242147744, + 991976840, + 1596760496, + 3598393755, + 2826874020, + 2173503494, + 3241226132, + 32272914, + 607618475, + 2330723844, + 394080114, + 3072816451, + 385711077, + 3550051277, + 781088821, + 2904507394, + 1491824214, + 3379323719, + 3442798332, + 98456973, + 125222510, + 1014843008, + 2781240970, + 18780020, + 2525002464, + 557847258, + 3215225885, + 3328527374, + 3154422811, + 3444680595, + 3304074656, + 3533189175, + 3434033233, + 3185412498, + 16503630, + 363748330, + 1278333757, + 3424754757, + 1519836126, + 2998357891, + 2940876531, + 3374017072, + 2490418518, + 2491727960, + 1058934854, + 1040925240, + 946605234, + 3411393732, + 2984838395, + 3405973940, + 798018403, + 81394857, + 2716035852, + 17083882, + 3421279773, + 3387702346, + 637385533, + 108449705, + 3397256713, + 2941268731, + 3436343369, + 2453990824, + 932649750, + 3320142422, + 2849330606, + 3188361169, + 799186008, + 3270578292, + 127767115, + 1974333300, + 2257691340, + 2282907989, + 468954602, + 3448469717, + 3373031239, + 2201083252, + 44221382, + 2811672966, + 839819048, + 518027609, + 193035695, + 3044766969, + 3303433591, + 318847914, + 2899931039, + 430777761, + 250761666, + 2762347356, + 3342197517, + 3394811177, + 3439539351, + 714808999, + 1323009847, + 518574987, + 3289945685, + 3333900732, + 3309199777, + 1941886201, + 337229364, + 1909448954, + 746437578, + 3226803774, + 3327840265, + 63274860, + 3307066231, + 2902401889, + 753465020, + 3322016803, + 39839978, + 2559281742, + 3385067943, + 28427727, + 3410894199, + 1328291191, + 911760128, + 18060782, + 3150764702, + 3277957106, + 3289964234, + 3322229030, + 3315969398, + 1377870192, + 1200309318, + 364580402, + 69423648, + 14848127, + 3368750837, + 343820722, + 28848544, + 269498956, + 3064868338, + 381262722, + 3316331179, + 26111690, + 1957664515, + 3182784189, + 1716930092, + 216564864, + 2468109192, + 417957444, + 885336188, + 3308911941, + 3298769402, + 258270134, + 3430549941, + 274086239, + 120062208, + 3038427494, + 3296081103, + 137996439, + 17237614, + 3319477788, + 3303924961, + 3430731333, + 3426654850, + 3319342304, + 2744920447, + 115521188, + 14847496, + 22720309, + 553016365, + 2801090275, + 244715270, + 2800397977, + 89843464, + 3314471551, + 156968876, + 3358491778, + 409343201, + 174037078, + 353549762, + 3318821160, + 2239637844, + 7273952, + 440519278, + 497492256, + 3279129193, + 58017020, + 24588399, + 20085452, + 3423477340, + 2550343301, + 52423876, + 340499950, + 655343, + 3305997908, + 1389147930, + 3305938715, + 2888713287, + 2306149431, + 3031506514, + 3318200898, + 3395009895, + 727530661, + 3225594631, + 3428995648, + 475445113, + 351337636, + 2752220550, + 303554014, + 381027793, + 3304819610, + 3427847644, + 3286210416, + 118235929, + 155997496, + 14079324, + 3314473610, + 15103056, + 2324681347, + 3312747140, + 3115714225, + 2897238137, + 91530572, + 2268490213, + 29872754, + 143450188, + 277202417, + 142030358, + 1653641683, + 2492143571, + 3421399661, + 3339022257, + 395270674, + 606142563, + 3300636247, + 3315786823, + 3031769337, + 10702362, + 3171862198, + 3424410670, + 362426662, + 2824785955, + 24297310, + 3416372932, + 3195428898, + 188668186, + 23460980, + 3244875996, + 3082784877, + 18187030, + 434318356, + 3075626109, + 2890346000, + 23540681, + 1901085492, + 274612235, + 863378442, + 282080592, + 354852855, + 517783594, + 168165670, + 1593796604, + 2591632782, + 2874298913, + 2957952996, + 2835811651, + 161521494, + 558132339, + 14793299, + 85209075, + 3397245477, + 2974380082, + 19916529, + 304393517, + 3146768724, + 134313598, + 1912157732, + 21439101, + 3314001782, + 24757163, + 240402090, + 3381144622, + 2752716881, + 1606602836, + 535472056, + 401291759, + 3291553094, + 122194244, + 2257173902, + 2053491, + 9642462, + 2335984431, + 1053840037, + 314730239, + 2908748863, + 3308525460, + 3312475110, + 1921725680, + 179075503, + 3128325357, + 2846754875, + 99886979, + 875918448, + 103203138, + 3131242228, + 123004655, + 49480727, + 383982906, + 24656052, + 1409080304, + 2429705149, + 222523970, + 1404913814, + 3217244710, + 3405837489, + 3286572806, + 1205985991, + 303530347, + 1469990245, + 575432389, + 1130760643, + 3310658641, + 301988206, + 28293478, + 136455083, + 2810138270, + 2386424731, + 3410580346, + 131230732, + 3310218576, + 835995246, + 291765653, + 944951768, + 3069309878, + 3309664286, + 3407507807, + 20641176, + 485775165, + 726399254, + 287455470, + 236383731, + 2331411, + 2909508270, + 15434198, + 3158294575, + 17948233, + 28490110, + 158475249, + 122702609, + 91858645, + 1924459776, + 88643929, + 1006236331, + 3304628310, + 187754202, + 24597313, + 38838094, + 223725843, + 176384740, + 296516579, + 3029943839, + 301982599, + 18885700, + 3273529406, + 20112537, + 16016841, + 1528493707, + 3028165463, + 34308371, + 414348168, + 2805546579, + 916809126, + 3307562983, + 3028431054, + 2434452659, + 91435560, + 142911384, + 3183774135, + 3371630909, + 1107777762, + 1166401940, + 2642920375, + 3316223807, + 2777344487, + 168961317, + 1480806012, + 2203879116, + 3306073742, + 1895951490, + 712506968, + 3305863213, + 437259295, + 739619514, + 3382504204, + 2624871656, + 3302852336, + 3401593403, + 2853639989, + 2261946450, + 2287131684, + 146320306, + 260532533, + 982269738, + 8201342, + 3332464419, + 131734558, + 586921790, + 118248371, + 3400856710, + 43787362, + 15889436, + 36927998, + 1050250202, + 3102244779, + 713288288, + 3304468434, + 16896081, + 3250259971, + 3272302232, + 108380750, + 1528941704, + 3169209138, + 2687038597, + 3277203235, + 3399200523, + 3378108695, + 3372463121, + 593786656, + 3302903923, + 3376616188, + 481441609, + 1599186643, + 36249266, + 3299349631, + 437782878, + 52841178, + 3214186095, + 2516925589, + 2323019857, + 459809707, + 3316892277, + 2951642036, + 53817735, + 52630243, + 18991370, + 18793562, + 187074956, + 3169369153, + 24746443, + 360938389, + 49929913, + 2580366297, + 94992855, + 2943496106, + 23278740, + 3301459650, + 355558718, + 149982849, + 3395789079, + 220506985, + 3150301794, + 2318650639, + 3284620076, + 2196260961, + 3301020727, + 3341706088, + 2595159421, + 3272826486, + 2499423463, + 1896246912, + 2599649755, + 2968084455, + 2714749314, + 3298132110, + 2847804197, + 3299304427, + 3042622645, + 3057238438, + 3193136082, + 3391957281, + 45439747, + 3299596861, + 3289994574, + 3299460614, + 97270935, + 17479969, + 3248598584, + 3119483921, + 2970486593, + 2650683564, + 2726027623, + 182440689, + 3252510788, + 140009944, + 3296467034, + 536687726, + 171992847, + 23966894, + 1702550918, + 2432705551, + 455242356, + 25568219, + 3293559848, + 2539085162, + 145660063, + 3248082276, + 521202310, + 283843182, + 15804528, + 8873982, + 2846101398, + 3093804164, + 2744624881, + 3283976587, + 896548951, + 3291270571, + 763141069, + 3332089318, + 3145313984, + 53859897, + 2960151686, + 14547465, + 414312415, + 60031250, + 3289924633, + 308389347, + 3165770244, + 3386808027, + 3286722924, + 552405856, + 2235042289, + 2320676557, + 234510851, + 34948762, + 15035834, + 39261096, + 1317845004, + 3345796229, + 1213826822, + 3273572366, + 3387478035, + 494509586, + 15429290, + 779012161, + 355830877, + 1325545832, + 1147763726, + 2918440720, + 14951174, + 3376767365, + 2831852183, + 3180968594, + 2857215332, + 3194503789, + 3386875186, + 169921725, + 771182024, + 947769733, + 3832281, + 135677157, + 2942214320, + 3058816856, + 2273887568, + 3286837051, + 2284631432, + 3386060333, + 35411817, + 3385973020, + 364832569, + 3262673221, + 8541492, + 1705820114, + 3384466587, + 976948010, + 883558274, + 81396070, + 3285786937, + 3384172924, + 235138711, + 267897978, + 39100491, + 14991273, + 550190796, + 2445932708, + 2166605965, + 80779450, + 570435144, + 63600717, + 299163027, + 16740279, + 735054794, + 174771864, + 3283922682, + 3284374022, + 298150538, + 787348237, + 169445321, + 2220487586, + 70091642, + 3283208342, + 2704770012, + 103889989, + 19019514, + 3382465048, + 3382295969, + 49932377, + 174285878, + 1063974115, + 320344665, + 1596175406, + 284972093, + 2917539951, + 106707371, + 577954867, + 2785165032, + 3282676134, + 3380925261, + 272898991, + 3327898666, + 1035577195, + 3351768233, + 46759489, + 78862565, + 2997744145, + 3024682087, + 15080878, + 594109772, + 1301589103, + 363972548, + 1682447942, + 38661513, + 19427812, + 49071958, + 82952713, + 433688733, + 2362038176, + 3261509664, + 2951101922, + 1947674420, + 93698869, + 2531028432, + 22672104, + 799747874, + 2243567878, + 3280379318, + 755829794, + 260214110, + 759973200, + 1427088757, + 3256942056, + 2842032693, + 2975607816, + 3279970303, + 44708064, + 259556727, + 132570905, + 464958008, + 2757057685, + 3355756889, + 3351592047, + 3372060351, + 3279199100, + 2814338885, + 3373948978, + 3271339932, + 1365532753, + 3191047857, + 625961613, + 3278698016, + 2478136272, + 511500579, + 86626311, + 3277945849, + 2616401366, + 2830467981, + 106000038, + 3174496635, + 339515882, + 327955629, + 3277239498, + 3190223965, + 2362227014, + 2824524332, + 140133636, + 627633389, + 325000251, + 2986708839, + 1963586598, + 3369741292, + 1089285774, + 2960602427, + 1447666710, + 1109943692, + 21355612, + 2459581782, + 3369528298, + 460939629, + 1072157983, + 3272679000, + 3275077291, + 185016428, + 48714879, + 305348232, + 3369954346, + 245261124, + 2320137277, + 1339375526, + 3368397735, + 507872067, + 3131720320, + 3365925905, + 236962918, + 2828473539, + 16063885, + 3208749275, + 3349758255, + 35921353, + 3273992754, + 615009737, + 2554476102, + 1308729907, + 381015561, + 2952558439, + 432856745, + 139709754, + 42393552, + 2858438880, + 3310188274, + 848359831, + 366551314, + 2410774122, + 2567931625, + 628558605, + 2844699165, + 3161428219, + 39859095, + 2474451, + 3306093495, + 353912153, + 2316357264, + 160273646, + 1587091896, + 3240430806, + 3091375114, + 557284498, + 2728694337, + 2899118630, + 27753893, + 575338442, + 88584204, + 2824323817, + 968695542, + 16279554, + 592286290, + 19618210, + 266545811, + 252897050, + 3346064571, + 2595323947, + 7765612, + 109572102, + 19804842, + 80247890, + 34447217, + 532689500, + 2299710372, + 21465925, + 45716828, + 58340039, + 574610510, + 41109360, + 718593078, + 12257632, + 2471905921, + 1097573617, + 2600034403, + 3341031143, + 2196931189, + 3270818598, + 13047322, + 2934129837, + 3130776262, + 2642961590, + 150965694, + 1500725676, + 874223732, + 14593763, + 217949209, + 16867831, + 15357971, + 95774357, + 2798598233, + 3188324402, + 1247462594, + 64452774, + 2419730239, + 1576113614, + 1227823958, + 850117501, + 1132143535, + 3357153478, + 213632440, + 1016285491, + 485886996, + 116239843, + 272023536, + 2617237688, + 29550233, + 2998632837, + 21647380, + 2875804937, + 160410459, + 612046207, + 2719082323, + 4315751, + 428684731, + 1370338400, + 3303305134, + 59707017, + 32488092, + 125249275, + 493754264, + 16116214, + 2614380511, + 3241172671, + 86045776, + 3180064812, + 981866658, + 121896641, + 3224535142, + 16320554, + 2598001729, + 1897677870, + 59375148, + 15210207, + 1076713596, + 22420629, + 87335301, + 3021559986, + 54795231, + 3351429592, + 1088161568, + 598728655, + 95506085, + 3260181164, + 377858959, + 27921953, + 15053256, + 2305501767, + 81167159, + 12337932, + 2184521743, + 286391720, + 47742147, + 21342836, + 3085292805, + 18583228, + 3267417439, + 37702406, + 395681883, + 214360044, + 1642524690, + 393603430, + 822644540, + 3043472039, + 262481941, + 24550930, + 35583898, + 1948727131, + 2513720226, + 199862369, + 2938889878, + 2413594758, + 3265811214, + 16556630, + 204312379, + 61451718, + 3266660534, + 3350435921, + 44129616, + 16025792, + 980354275, + 14534467, + 3350855067, + 16698673, + 2497762182, + 19331096, + 2893230967, + 485617655, + 3353764295, + 54066935, + 499261606, + 63852181, + 3355957835, + 18000132, + 121625523, + 166857011, + 36017747, + 2250064770, + 3351701422, + 14069586, + 61854086, + 3062702771, + 436242574, + 3096565135, + 306483266, + 242918894, + 15636142, + 16484129, + 2953721110, + 28036725, + 75918073, + 18705112, + 20183469, + 2538405619, + 490794284, + 2437346502, + 398703920, + 3261365112, + 577477163, + 2190644732, + 164434716, + 2415085993, + 30330146, + 2728990002, + 554381559, + 308163567, + 3352579023, + 2210688265, + 3307411900, + 2312073872, + 66799789, + 16023185, + 2364688028, + 83465839, + 577975262, + 2836035235, + 3028906441, + 1371703465, + 1105438082, + 3255067783, + 2255452332, + 3307324221, + 502008184, + 3256985378, + 2857528105, + 984172484, + 407161621, + 2384314538, + 857142840, + 3255653563, + 16564925, + 1709876940, + 2930856338, + 1231578642, + 1005461768, + 227507908, + 215310458, + 92374836, + 362880718, + 10908352, + 3257786339, + 223608627, + 2513312516, + 24881995, + 3239074594, + 160444680, + 2568853129, + 17119070, + 127900149, + 372957107, + 15689404, + 2815046317, + 2924022467, + 1431444060, + 313427754, + 27820338, + 2494260060, + 19706227, + 18264627, + 20126862, + 227622672, + 68923574, + 2338959518, + 30524285, + 3300771508, + 14691215, + 18367937, + 38419396, + 272218597, + 3337432331, + 81146591, + 2748649880, + 2889527401, + 3246335646, + 3260517488, + 86391039, + 238374731, + 2994713500, + 2881829733, + 2859229134, + 354694878, + 197015024, + 3034532050, + 3238216489, + 860099634, + 375270752, + 3127759705, + 3011001845, + 3349159528, + 22360127, + 2764354965, + 860939377, + 3345746367, + 2680160995, + 2809627904, + 3347284929, + 1095102535, + 353846241, + 238628020, + 268930683, + 707098314, + 18271834, + 3346576763, + 113415817, + 62681698, + 1597220887, + 3255450739, + 1851849318, + 514985532, + 67580602, + 3246059330, + 3253372555, + 327017284, + 2852936548, + 32686814, + 3243562110, + 2539511884, + 2427246170, + 2933213332, + 1022110370, + 2904717305, + 326150402, + 3345032997, + 37482414, + 1459090969, + 3322617651, + 3245375338, + 3339211527, + 3185597596, + 3254152926, + 217307457, + 3240437032, + 44655493, + 15241682, + 1656574369, + 202734022, + 335092316, + 575828962, + 2756364385, + 18643839, + 2359679432, + 2853475981, + 3253285748, + 28757835, + 3013627236, + 3253112430, + 2945404092, + 18799221, + 3215719555, + 1024447620, + 109703314, + 72839849, + 2988830614, + 3107576540, + 14437490, + 3243769148, + 54319648, + 22534061, + 3239663143, + 2840161578, + 3252350210, + 3237723946, + 2963359867, + 3252192158, + 2725580095, + 959865852, + 2868264331, + 107681061, + 2796904921, + 3199745092, + 317353416, + 3339455417, + 823083, + 432890325, + 1476424110, + 164133028, + 3104556721, + 3250987609, + 1437171158, + 3190790843, + 2822033194, + 3008882862, + 18357890, + 2409592351, + 3250324549, + 3001572283, + 553364235, + 3237112696, + 8424962, + 3334025308, + 85118174, + 2261891654, + 3111666304, + 3325860057, + 2283223800, + 17755033, + 105712056, + 3214481295, + 22516489, + 2418114211, + 3319161028, + 2151145357, + 157415973, + 358773756, + 1538249185, + 21777512, + 2362036330, + 3247381416, + 3145621950, + 88116883, + 20534920, + 21879667, + 34200848, + 2152315988, + 3233966865, + 466233156, + 3234535122, + 3247677145, + 905628074, + 3247545170, + 3330696251, + 3247417052, + 3246689502, + 3081788372, + 2319934141, + 2513341416, + 2526655772, + 2929128469, + 1967510760, + 587688630, + 19563661, + 90818494, + 3033105576, + 3185481199, + 353767859, + 2946684410, + 21264477, + 3327753267, + 2269433623, + 2502073531, + 40892332, + 23412075, + 15588148, + 2685439243, + 38566617, + 3327326013, + 358588432, + 15730546, + 2874675970, + 3033659120, + 2964589058, + 3245692182, + 67929970, + 3236549348, + 363908101, + 2978586790, + 2735775078, + 361715888, + 3245477473, + 18759030, + 3134819644, + 3238799333, + 312957029, + 3065538900, + 3245141227, + 95268340, + 30688200, + 481807083, + 1527419708, + 58583995, + 19695390, + 40555720, + 62438818, + 3322995268, + 3061871083, + 2996226884, + 3239254658, + 1447131048, + 301966760, + 1086273794, + 115830646, + 17846938, + 18898059, + 2264785920, + 2313359125, + 1547537527, + 2766850329, + 35050392, + 2816188274, + 402003559, + 95998135, + 1007568013, + 911729426, + 635800596, + 347255327, + 1605694058, + 3225655442, + 74214728, + 3241664568, + 3149332332, + 3313112985, + 2956721094, + 3241761282, + 3016206471, + 105964973, + 3227238596, + 1633409803, + 3184725139, + 1464657728, + 2730240600, + 46646975, + 22413496, + 15903764, + 2502679495, + 14912780, + 607005973, + 1027656631, + 312949611, + 238400395, + 3103382031, + 17810599, + 338984937, + 259622537, + 2434135663, + 45689135, + 2886305915, + 738246144, + 3225007573, + 2577154098, + 3302786535, + 3298384065, + 1617787723, + 523437541, + 3293760635, + 3179499186, + 3312312057, + 2887105303, + 1653806952, + 2882434989, + 2267422392, + 351239198, + 3233732947, + 3172191942, + 86485331, + 2986555135, + 344908429, + 3308027349, + 3236793662, + 26210327, + 563988748, + 525593300, + 3308580640, + 3308563875, + 3301927264, + 2457829333, + 3180878670, + 3305543375, + 1149152958, + 72995844, + 2901950317, + 37836873, + 3296542259, + 32323209, + 467928447, + 36388601, + 2507722194, + 399390602, + 137660115, + 2761966264, + 19093377, + 14985977, + 459300842, + 3156779970, + 3306670997, + 21224647, + 3213978617, + 464855779, + 3301814921, + 321426872, + 236151290, + 3228275492, + 3305190945, + 3102138022, + 3140353059, + 1529927882, + 174242468, + 3231040476, + 2976107329, + 3230766625, + 1183149060, + 426734017, + 2178293671, + 59075847, + 171724235, + 335378209, + 159575486, + 357165315, + 35333150, + 2851579324, + 2468106433, + 2944439114, + 3173641725, + 3244601302, + 3082579757, + 3301740899, + 3192975594, + 283118538, + 434049581, + 128241097, + 313006876, + 3243987532, + 16097968, + 83280323, + 1584209064, + 32796852, + 365995678, + 3299567818, + 1919437490, + 2396350700, + 3299186571, + 157053960, + 396804174, + 18181934, + 977482010, + 40133061, + 3194177710, + 322416416, + 236927135, + 3292910998, + 587810318, + 22390108, + 1545482136, + 262313593, + 3165362050, + 2562854758, + 3220701078, + 3295258121, + 1644495702, + 3164716322, + 962820894, + 3290434822, + 3100362021, + 3131478562, + 3190084854, + 2325661891, + 21277182, + 1945424582, + 3223151448, + 2953455831, + 1701578628, + 3187461022, + 2789557270, + 2304406394, + 1601106511, + 255833240, + 2850633596, + 2458208618, + 2569806414, + 3011648898, + 144722120, + 111814903, + 250870107, + 3222096972, + 897288235, + 906653515, + 115236840, + 2898478889, + 1896792314, + 624380946, + 3292166157, + 3075573215, + 3189578461, + 281349483, + 435681607, + 41130914, + 292647591, + 64151219, + 37902443, + 169165706, + 589415057, + 489789276, + 3190165838, + 338970982, + 3105861986, + 432883132, + 466485562, + 2864214491, + 15475093, + 1510982040, + 982199750, + 145936694, + 14112560, + 55822405, + 250615802, + 3221424348, + 597476208, + 2273944754, + 3173005842, + 22968486, + 13831932, + 3124706771, + 262430206, + 93953874, + 8814772, + 7121172, + 62570297, + 170309471, + 3131522382, + 121192244, + 185774847, + 555509314, + 558340038, + 811838826, + 512630983, + 2691452192, + 6509962, + 250301429, + 2597913918, + 403749093, + 109326320, + 261733111, + 16404954, + 430671509, + 105026655, + 21613873, + 3215184153, + 3097521417, + 2909675190, + 2916304178, + 2428381464, + 3196678604, + 1970205505, + 2725425502, + 74207319, + 104666974, + 589644210, + 1300810422, + 3256502795, + 3196038126, + 442903146, + 2586563082, + 2586738745, + 1855637845, + 352821813, + 61477734, + 3095135091, + 2883612317, + 2764437502, + 2324210480, + 1149200671, + 365556336, + 22066285, + 2284453291, + 42120085, + 14599464, + 160472662, + 2770640132, + 3068576178, + 1336915111, + 65101536, + 2178309389, + 2848258175, + 19546533, + 2542121732, + 2786035352, + 178600543, + 172786912, + 3128264047, + 2883834152, + 19319041, + 3246622978, + 419883987, + 567238746, + 2905325318, + 566413110, + 2836769552, + 102961087, + 19957803, + 3188584015, + 3067124294, + 407408314, + 106757359, + 2949602146, + 3190912752, + 3190209810, + 480616240, + 1044020509, + 3020188513, + 1236499550, + 1314484064, + 2993454701, + 3236006866, + 2712110611, + 3075715063, + 2601482131, + 2545115569, + 11353012, + 1414745010, + 153440886, + 2613923132, + 22883486, + 3144530475, + 227533034, + 15825051, + 2990366584, + 38686935, + 2371604544, + 3186905755, + 14994538, + 3188337984, + 3215404887, + 474614008, + 2209986403, + 1697695572, + 2230674883, + 41525047, + 3188045419, + 1417843328, + 80704927, + 2829919833, + 1375678100, + 56141616, + 2943265556, + 50922107, + 65083125, + 2212879538, + 1669431445, + 3123347304, + 16652840, + 3024743784, + 3008032768, + 3140568331, + 25078382, + 3233850171, + 93908411, + 594238836, + 2981295157, + 2434989762, + 492018105, + 3097205309, + 96997907, + 304415259, + 3184293462, + 3236446413, + 3198647505, + 1170636272, + 2178209244, + 18757698, + 1624317169, + 99401071, + 1599023744, + 3184813890, + 1363667336, + 17829450, + 480772976, + 14278166, + 522674330, + 138944368, + 501177938, + 292632884, + 3133131439, + 2705683456, + 23548153, + 387437294, + 3183575684, + 3067249087, + 25678101, + 2788529930, + 3054125730, + 79024237, + 2877780882, + 3157452171, + 28850179, + 3041485667, + 117205846, + 3183300739, + 3144061905, + 1335835988, + 598428888, + 23852365, + 2686756278, + 3182392368, + 2259380738, + 2916145740, + 79812508, + 3024371774, + 3038645847, + 131055288, + 2506181892, + 1536927582, + 2547597109, + 3165851298, + 3221197768, + 2575665288, + 22126132, + 2956848004, + 19927012, + 2253567374, + 3206610670, + 1333967101, + 1550706396, + 2317389050, + 2568005624, + 1949899056, + 80604718, + 1541999472, + 3222850419, + 3217556374, + 2766864274, + 1887144066, + 1296752732, + 1301668658, + 1261518816, + 74396421, + 17221069, + 177691724, + 3071950258, + 717863434, + 3222822291, + 491092473, + 2840042433, + 946759669, + 3079207491, + 49323198, + 2544240657, + 313019411, + 40032501, + 2646824598, + 117384592, + 709681428, + 1541363042, + 2550461, + 3131650432, + 143470981, + 1133432454, + 3076240625, + 2581882811, + 215508074, + 2276660323, + 500627340, + 766585207, + 132122597, + 50101938, + 227522647, + 3091910360, + 611367409, + 3178737074, + 84463170, + 408980974, + 18069493, + 3165477711, + 2364630716, + 3214005593, + 341878033, + 139318070, + 226580814, + 3202223609, + 51234276, + 3214680484, + 2839556749, + 178647381, + 1207844718, + 94097711, + 2406669248, + 457782574, + 3031707882, + 3215405032, + 14956673, + 3146995371, + 3153341662, + 2661473540, + 1409082878, + 3017826134, + 1616328637, + 747221318, + 387289803, + 136015731, + 222640532, + 3214564197, + 797494844, + 2495315190, + 3003937365, + 539183579, + 3167446037, + 428019663, + 3172602823, + 857101418, + 2374097150, + 206473078, + 2950404028, + 231324724, + 1343085360, + 66495983, + 2167961131, + 409955666, + 725050728, + 15491617, + 2999206501, + 425231971, + 3047956549, + 43330582, + 353815489, + 2526292262, + 2876051989, + 3171102157, + 72260306, + 2429120304, + 3016148261, + 2272601586, + 121272353, + 1403331493, + 230058524, + 3177113779, + 2223678331, + 1006824656, + 1307811860, + 1475043919, + 1668813720, + 36193296, + 2840675128, + 477366528, + 362075138, + 3176818386, + 2749016171, + 3206709616, + 375016975, + 3200002061, + 69543723, + 112296216, + 2380336015, + 34976135, + 16550479, + 186380643, + 84790065, + 3159404964, + 2356099343, + 3174072806, + 146549981, + 2486635696, + 3042334859, + 21263663, + 2620171801, + 518155565, + 110124029, + 30478680, + 956473652, + 3037272323, + 431208467, + 121236961, + 2359690340, + 3206726619, + 583032066, + 39182801, + 2244229741, + 1594160412, + 1654288080, + 3137883791, + 19039364, + 1523498875, + 568335266, + 2867838403, + 154737265, + 2890600383, + 3140246180, + 3169411357, + 2360785622, + 2997355818, + 3132009213, + 256101145, + 2742734944, + 16588146, + 2950595911, + 3055733449, + 2430898916, + 2503972172, + 2479789123, + 416350692, + 1123568917, + 2959530058, + 2740443233, + 2163543109, + 65676207, + 35438418, + 2647320482, + 27047046, + 455443919, + 72702982, + 3132119451, + 2993812955, + 223139140, + 113612361, + 3014549505, + 3166558935, + 2831642817, + 1687006165, + 546522336, + 1209878948, + 2599106970, + 3051252028, + 2892498677, + 56827390, + 2820618296, + 2716196783, + 1684695840, + 3167385148, + 3152874905, + 25870447, + 113545967, + 94193981, + 21479387, + 3097996089, + 484363981, + 3167868614, + 2716275637, + 2700223022, + 2642111522, + 1421278159, + 1273036970, + 3146480946, + 2905783174, + 3048889093, + 1355370450, + 2182410768, + 3000425125, + 3128243567, + 2961836124, + 1062109706, + 2442565262, + 493208195, + 1554490128, + 2367772716, + 2564493385, + 2269914306, + 222147945, + 2255590554, + 2935686976, + 3007630549, + 33117104, + 20746042, + 1328232668, + 1868380964, + 3162705050, + 2612833488, + 2429216377, + 84502202, + 2246935516, + 3163359614, + 2755661198, + 359453148, + 1866243193, + 42892455, + 2779204951, + 14280445, + 188111438, + 20030284, + 1465232090, + 33936754, + 428785682, + 16358915, + 189073580, + 213084190, + 7384432, + 248333324, + 2852275849, + 958301280, + 228999222, + 858845101, + 123772867, + 2888748213, + 2935384154, + 177748749, + 336136926, + 1037506758, + 1479051396, + 75370828, + 42872176, + 138160300, + 15471323, + 749528521, + 3103451277, + 12197032, + 1548, + 2454714289, + 15210566, + 2328969528, + 2256545870, + 3167851237, + 2382510938, + 3052331608, + 3091492841, + 228699219, + 1018438202, + 162489917, + 2686057201, + 1012460306, + 1544296339, + 2842811598, + 1714352198, + 2788656494, + 10720262, + 195694617, + 267613720, + 243357143, + 21107808, + 1669289102, + 1149276822, + 599783125, + 195450477, + 98795912, + 1142941, + 428597389, + 214113720, + 575322296, + 1122037838, + 16932848, + 654033, + 1324125072, + 3008597084, + 77007853, + 3094365867, + 138985711, + 2956446878, + 2762664990, + 21662285, + 18271227, + 337343337, + 3158983618, + 3163284924, + 490112926, + 1264512061, + 164480014, + 2684660945, + 271652717, + 2739099484, + 2307815046, + 98643448, + 3111912045, + 1473794754, + 117634732, + 115490460, + 2922642131, + 14947998, + 3121276863, + 1613145114, + 25857532, + 1286270364, + 2454651108, + 2991312649, + 15337822, + 113137845, + 3139666643, + 21282007, + 302510445, + 60398610, + 3172514794, + 234745046, + 16602174, + 3158726798, + 59453, + 3138243762, + 2741011245, + 88078431, + 919860212, + 1345426651, + 3065913111, + 2967033270, + 16118599, + 3130784013, + 1588334714, + 100815003, + 3156992629, + 3166875833, + 15079071, + 2522427001, + 3167504357, + 16257100, + 1338, + 3167196353, + 1582479492, + 3094981977, + 22698147, + 1475900005, + 422271033, + 3154454110, + 2641077269, + 366790687, + 36811683, + 23795212, + 24004250, + 2978645906, + 12497852, + 1284907730, + 2852615224, + 3121273893, + 396174375, + 3148898977, + 189863792, + 460171717, + 3093724378, + 16612625, + 858945828, + 81957794, + 1411851301, + 19330360, + 2397051, + 11167452, + 3152245658, + 612147421, + 371943335, + 1441319364, + 3063465922, + 289623618, + 558195608, + 2563970689, + 1431856261, + 3150614791, + 16303721, + 2462379295, + 3097113646, + 1342428037, + 3140018329, + 50322606, + 49643884, + 410141708, + 18057073, + 14296230, + 369024196, + 2978394842, + 840566990, + 67862101, + 943403953, + 968908266, + 2458188217, + 2467757102, + 3146761249, + 2986685337, + 256838241, + 1434640532, + 2722319774, + 3071743440, + 623216509, + 2826488523, + 2734271179, + 419096260, + 509468825, + 4452951, + 235322591, + 2923039453, + 76138951, + 3141945498, + 3150030538, + 63040962, + 52965396, + 3145999763, + 3145389655, + 2607571670, + 247883817, + 2553458418, + 18245240, + 3099322280, + 1346772768, + 2401879252, + 1490908590, + 2616901068, + 3036973742, + 3146530204, + 585255303, + 3142373253, + 3116207098, + 3003843885, + 30815935, + 3145318863, + 192118974, + 36271314, + 3144412791, + 1433524266, + 3027154198, + 2395377457, + 2843077018, + 2678132030, + 155297045, + 1952500026, + 17359469, + 3081856281, + 2701699687, + 3141040442, + 606830085, + 1216039668, + 2901766488, + 3140188484, + 2922566012, + 3021500090, + 1018743871, + 3139447416, + 2970506717, + 16806082, + 2910237449, + 2590812845, + 2921413957, + 3138735308, + 166196521, + 3132255753, + 3131989617, + 3090357903, + 103895441, + 62409978, + 3069041375, + 3133683480, + 3136507291, + 10782302, + 2413051692, + 2353102435, + 2943835678, + 2432716717, + 212402696, + 2871243543, + 22039951, + 3023990357, + 19037995, + 3124080193, + 47546250, + 2560181622, + 2490165774, + 730697882, + 3128375930, + 2349773397, + 23154120, + 2549452651, + 3122530172, + 293552084, + 3120792492, + 3091754600, + 3040808986, + 2627502202, + 3007775843, + 3127943699, + 3114227965, + 292968867, + 2778436806, + 99098809, + 2790456825, + 3102226902, + 2873087403, + 1485136909, + 2680134386, + 2817767214, + 3124252893, + 2575580646, + 3115972511, + 3121668226, + 3123749283, + 15337043, + 436232102, + 3074018182, + 3110488591, + 2940010649, + 409317907, + 2899676241, + 2983567593, + 3101631014, + 3013236705, + 2791987829, + 14787758, + 3117943696, + 3108032647, + 1157537990, + 52940530, + 2990811945, + 3111634373, + 438042120, + 2548914955, + 316726497, + 2482768232, + 2441873774, + 2912831846, + 3113339386, + 240097368, + 713188470, + 3111730840, + 577816945, + 387393173, + 403478532, + 1880811698, + 3104620165, + 2725644713, + 3066038804, + 15771803, + 450925511, + 232343915, + 3105723157, + 527906735, + 2246593410, + 3105502068, + 1320445610, + 249521627, + 2558023961, + 3108105911, + 3108077519, + 3089116917, + 3105074670, + 1511167219, + 243768472, + 3104164838, + 2968299131, + 144839982, + 70776300, + 148467183, + 317290373, + 3094553691, + 2953930344, + 454526996, + 807554857, + 2723102317, + 3102412711, + 3064994626, + 3102133496, + 3102083419, + 3101868534, + 2996344310, + 2563813867, + 2954853941, + 138554028, + 2381410628, + 1326101118, + 2175411, + 14538254, + 64931648, + 3099716202, + 489467252, + 3099122612, + 2371511455, + 16249572, + 56841094, + 1544210982, + 718849764, + 3097041159, + 2903971578, + 3091619602, + 3087262996, + 3071789099, + 197002497, + 2893925350, + 110600813, + 2374667906, + 2818018806, + 2907094071, + 3074676677, + 2573733108, + 1393208810, + 3095468882, + 3090851792, + 2953048902, + 2460565754, + 533934037, + 125686756, + 2940496570, + 2925851773, + 3092223469, + 2166415653, + 244816716, + 235661181, + 118221781, + 3094025292, + 131115490, + 14278028, + 2466167241, + 3064395437, + 1499053189, + 46836633, + 2850831579, + 703993267, + 2871336995, + 2923922416, + 43136911, + 3067827197, + 1047118074, + 3087841638, + 3088454877, + 14369429, + 2864388993, + 2976567862, + 61949043, + 3092077847, + 3091364296, + 926181458, + 2967916913, + 1337386772, + 30256536, + 1684496310, + 2991005590, + 14770441, + 633268483, + 3073480601, + 3082917169, + 3082789640, + 2524130481, + 3031892218, + 3024294709, + 978575058, + 3080891262, + 253309951, + 3051624396, + 33438091, + 419575518, + 720901351, + 707400252, + 2281210542, + 3090928078, + 18280197, + 3090559264, + 1852295060, + 3077094749, + 3089658064, + 440327243, + 602647514, + 3064061458, + 2986261310, + 3074535662, + 89856868, + 199757437, + 3070425020, + 15128026, + 2842564587, + 151532418, + 18937385, + 3082529673, + 110010294, + 3086767089, + 19372840, + 3072059444, + 3064853295, + 2600762910, + 588921911, + 62881185, + 2405061163, + 364458634, + 2837917726, + 1078369069, + 3046723148, + 34727374, + 2564978768, + 20490915, + 1950062431, + 209602032, + 874352437, + 2419971998, + 61236326, + 204447420, + 1475118602, + 3070734450, + 1120182492, + 3070688857, + 465924787, + 279743016, + 494476765, + 188515523, + 214747825, + 786146030, + 26097308, + 154782527, + 1838207400, + 3076380443, + 364467351, + 2327370235, + 2829942930, + 3063631369, + 24890901, + 2928739911, + 6035242, + 3051992092, + 2959220897, + 2965071502, + 2541112338, + 2603637553, + 375499570, + 365808698, + 3067618843, + 16917828, + 16549116, + 1908723582, + 123171039, + 29838664, + 1268642450, + 3077634808, + 1448738011, + 151519583, + 153873016, + 2877151045, + 25620672, + 179216418, + 3077609081, + 56464362, + 3067130754, + 2395312946, + 260243995, + 98740604, + 930119893, + 259357029, + 29236701, + 1254605904, + 3065786227, + 22022646, + 365480435, + 2274864804, + 15379505, + 1623441578, + 20300104, + 18012679, + 2963673784, + 2413359380, + 141909875, + 962152818, + 45318494, + 2190757965, + 166079658, + 18599061, + 17809147, + 2912272722, + 220543503, + 88324836, + 2961597096, + 2835413265, + 26091976, + 8902822, + 2569144296, + 285668841, + 3063671618, + 3023992703, + 17414602, + 1378344534, + 18139106, + 3062140718, + 2577335454, + 19562939, + 104939913, + 3020204629, + 3006306913, + 3052155451, + 2897974370, + 1017391, + 44531639, + 2808223189, + 741803, + 12242992, + 2584339548, + 59163264, + 2493238668, + 928261158, + 998289805, + 190528043, + 113517282, + 2586514873, + 260560686, + 15947348, + 814112882, + 3066906051, + 16955235, + 14183691, + 34881385, + 20340969, + 17383191, + 1311781, + 169271629, + 3033838690, + 150223958, + 2722197956, + 3021842372, + 1961849978, + 232526563, + 3034865567, + 3068301502, + 1097146207, + 1058267378, + 2816680539, + 3067980917, + 138848486, + 1148933802, + 348881538, + 2271443084, + 46616450, + 14486302, + 465299654, + 2212979137, + 3058916077, + 135180509, + 463242799, + 465666054, + 2352187789, + 49141886, + 1350648744, + 2548713044, + 3052256568, + 2837292587, + 3051416599, + 3065972423, + 18739136, + 3050498972, + 3054162660, + 1343487019, + 330666522, + 2954181649, + 55977032, + 792972950, + 3050520096, + 2899705624, + 2914805632, + 371878922, + 3051047394, + 2269487202, + 3050593448, + 3045369360, + 3043022430, + 3049901022, + 2936848783, + 3041957486, + 2953654147, + 380939116, + 3048353695, + 312465809, + 549194825, + 3064567643, + 1133465862, + 970548092, + 290075064, + 563306003, + 3017427090, + 288443185, + 3041033221, + 152645752, + 97024311, + 15229103, + 74464449, + 200541524, + 3044139079, + 15486045, + 1319391535, + 3063873989, + 2889674833, + 315480872, + 385460221, + 3042583122, + 273278007, + 201170181, + 2650397840, + 2670100943, + 2363376738, + 239516694, + 767601, + 3040850361, + 3063656511, + 2228749231, + 19135683, + 3057746613, + 2484464748, + 3063502245, + 48487459, + 2895943573, + 18384775, + 899973054, + 16974016, + 2477583762, + 64637158, + 3004942932, + 46722097, + 2993171991, + 164666005, + 20062445, + 2892995213, + 2850414126, + 3007009995, + 1739662693, + 1055902411, + 2393670932, + 2881585790, + 3060577595, + 212071153, + 179207761, + 2817474227, + 1887816680, + 3033902459, + 2459709067, + 3033592380, + 14802930, + 314870554, + 3003639310, + 2221726944, + 23588706, + 837253260, + 480819256, + 15823261, + 3021666700, + 67266462, + 78641738, + 30957246, + 18339415, + 179554090, + 1323909265, + 334981900, + 1414340473, + 2915347147, + 2803994674, + 2667785204, + 2944281498, + 490135056, + 2720227921, + 2958423142, + 3051211354, + 2708160180, + 710941094, + 3054478619, + 2831756289, + 185449401, + 233636404, + 19059099, + 1602678319, + 156312872, + 529763094, + 582866423, + 29674668, + 164087675, + 15785117, + 66632933, + 2375498185, + 43141013, + 158170794, + 1406402520, + 12190922, + 517116581, + 1533659756, + 2955413144, + 2803953815, + 2837991784, + 425408294, + 3008191662, + 97261539, + 1357983050, + 2291600264, + 160378207, + 82265241, + 32667201, + 146439288, + 1726973593, + 3052495917, + 24916457, + 38995726, + 17333873, + 2197760688, + 1450245192, + 2793829429, + 2954126636, + 929000096, + 3051216982, + 2565135330, + 409867957, + 1393391864, + 185411782, + 2763990895, + 90062469, + 2430956005, + 3006410579, + 51142608, + 262799867, + 2850027043, + 106850629, + 2988849203, + 2547033986, + 28185061, + 3048251224, + 2552723874, + 2823171471, + 378762532, + 2506434647, + 1686618164, + 270141194, + 28021500, + 22289021, + 21464701, + 389441364, + 2758180931, + 86071272, + 2339083611, + 48431982, + 281900168, + 3032252437, + 19083080, + 3000323626, + 2360507084, + 2154091303, + 2840845885, + 54371309, + 3032022014, + 17263516, + 2472945536, + 2289800436, + 3018273489, + 363433362, + 14329453, + 450183164, + 355642356, + 43007631, + 2900987816, + 242781810, + 1198124370, + 9905392, + 95940032, + 1602084096, + 2343065768, + 1895620278, + 3027919842, + 581395282, + 132584441, + 708104846, + 3006826174, + 2643045485, + 17604527, + 82098218, + 1038179306, + 566923022, + 2712682024, + 23689114, + 2837444800, + 3027849549, + 617594220, + 223113283, + 1271178092, + 584446504, + 12332172, + 2547906456, + 1324026548, + 80976488, + 23532047, + 2714226648, + 1372125216, + 377136252, + 458107439, + 119107586, + 57855509, + 1117851662, + 15188343, + 16597629, + 16671797, + 3030793023, + 20524971, + 2288926339, + 14982534, + 35329667, + 172215008, + 610177189, + 175656011, + 77038925, + 2532362760, + 3007139824, + 2597259224, + 535688170, + 629253125, + 2978150098, + 280383548, + 13384772, + 1358706056, + 5204051, + 2476351789, + 14662889, + 53700646, + 88326317, + 17551598, + 370827550, + 2860896641, + 2950659885, + 26484919, + 948689238, + 112867690, + 96100344, + 2392119403, + 27390107, + 248044499, + 3002952574, + 300735398, + 77690219, + 2919531335, + 198781495, + 2196637298, + 19245182, + 784167103, + 369763626, + 282882688, + 2812147764, + 3006650189, + 265852050, + 3040489648, + 2447798646, + 2342845502, + 2646387236, + 2386468730, + 152466242, + 2263605398, + 14565150, + 506865052, + 38521391, + 369095113, + 1598986099, + 99749955, + 621498278, + 23423813, + 114584062, + 47481589, + 3027986516, + 1523544182, + 258083321, + 1261281055, + 1446762756, + 1463323254, + 2969321529, + 21612322, + 721346978, + 215060612, + 122228114, + 462664693, + 17527237, + 254678131, + 471967587, + 2985118486, + 411980447, + 137407346, + 614867166, + 2996029682, + 75904944, + 348652475, + 2786170028, + 31325937, + 1031033948, + 468463894, + 22966172, + 38175716, + 268920669, + 1254787980, + 2804508995, + 93679951, + 24507955, + 1159371324, + 1648978027, + 246434933, + 495417551, + 40358283, + 576603009, + 404152702, + 2787813197, + 2814250020, + 211400182, + 889618016, + 882574904, + 19512637, + 146454077, + 107382485, + 19581801, + 15413624, + 142179252, + 40920400, + 940777694, + 3010096394, + 38330999, + 47533454, + 1643373330, + 3010139523, + 477401625, + 2969200456, + 15907431, + 69108987, + 2650032241, + 1968043243, + 615614236, + 1334865018, + 93869364, + 366011411, + 1625873077, + 2800137077, + 611996676, + 39458284, + 2711050508, + 571087457, + 102540229, + 1072526839, + 232606584, + 28288779, + 95508085, + 167010482, + 529096338, + 3040795979, + 14256082, + 328040695, + 1340670000, + 116511302, + 308245930, + 36813364, + 2798898786, + 2614272462, + 535503968, + 2886416602, + 29125497, + 173571374, + 83191847, + 1478486520, + 3024779072, + 3015782116, + 2982130845, + 1397511998, + 69749329, + 2349494888, + 34354034, + 2758869458, + 2836373728, + 2809811292, + 3043147589, + 1827606775, + 522834247, + 3019219778, + 1653424244, + 31067157, + 3012862405, + 701240792, + 2728189940, + 33715192, + 26336530, + 64777360, + 1361211042, + 24142636, + 956355686, + 634015881, + 1687280372, + 19454670, + 2934079978, + 1014435343, + 2572643324, + 3021299634, + 1408989498, + 2556607278, + 174633648, + 3023265958, + 562183942, + 2458759143, + 3030959541, + 1499757510, + 326962578, + 2867000033, + 69254737, + 2782610961, + 2995340558, + 2865049809, + 3022350922, + 2612152237, + 2736285390, + 2670804554, + 2987843403, + 1631936376, + 1119908282, + 34311257, + 2989590685, + 3031700573, + 442182368, + 2961694548, + 439081280, + 3013634347, + 1275984139, + 2462536272, + 15939396, + 2943165539, + 2738081451, + 14164956, + 2794160545, + 2993518411, + 3019138690, + 2794926943, + 14705046, + 2935508773, + 208037782, + 3002558292, + 2560716374, + 3015942662, + 30324850, + 23769809, + 604092603, + 2456816503, + 509971567, + 3015682417, + 2724615798, + 208776798, + 14998719, + 496973075, + 3004264907, + 28589514, + 26691036, + 2944826777, + 3006450952, + 2792749508, + 3012321150, + 44334649, + 14164879, + 359230030, + 155369800, + 287806806, + 3022317123, + 202479255, + 2889797241, + 11167502, + 2249103860, + 35626322, + 12447, + 3021712811, + 224320706, + 80395090, + 345838923, + 3021743590, + 85611344, + 383368482, + 53167706, + 3010794308, + 3020802449, + 3010710829, + 133413084, + 3020764126, + 3020109544, + 956111006, + 3010113528, + 256022044, + 2992448810, + 1240171406, + 2754429607, + 1665595472, + 1735436820, + 3017692845, + 2155402628, + 39617828, + 2757400642, + 581130347, + 1643961090, + 86459685, + 3009123115, + 2939025434, + 182982451, + 2260150651, + 222451771, + 595751915, + 16484237, + 186528548, + 564577122, + 259663057, + 53426543, + 1660200776, + 3009091180, + 40570637, + 392027733, + 515836591, + 738327488, + 199516833, + 2939034032, + 103228300, + 3005814796, + 26971593, + 2298841976, + 1922290662, + 430933440, + 3005809732, + 3002881953, + 1408816082, + 488867199, + 14150266, + 34838035, + 16023917, + 2990632973, + 6114752, + 2986324961, + 2960155128, + 19330885, + 2391596978, + 2873992840, + 593718505, + 2819572566, + 237961072, + 2596785458, + 24866692, + 2676345858, + 1517465449, + 36610871, + 43195617, + 2606542124, + 57564151, + 79337995, + 2996456924, + 2289744703, + 387661922, + 1435050403, + 1959690278, + 1286650447, + 2998335334, + 293097225, + 816556332, + 2996581487, + 2970798871, + 1553678094, + 2393425532, + 45983335, + 2556667683, + 2651506974, + 205781124, + 2994231899, + 1487778554, + 436678031, + 57906313, + 37209055, + 2910498594, + 14294400, + 312351978, + 43631584, + 1152887268, + 395086595, + 188509332, + 1701179917, + 832941643, + 89000394, + 2555180840, + 121558226, + 1171157898, + 323549358, + 433839629, + 110692972, + 54189641, + 16423304, + 2357582977, + 50339969, + 2981338268, + 2773892956, + 14599972, + 2990222283, + 2988973109, + 2272820146, + 2989425694, + 2965824167, + 17425484, + 2985758338, + 2925751215, + 58400103, + 2705321185, + 2972374749, + 422942628, + 18733267, + 23817639, + 2980770683, + 2990857909, + 1923650426, + 2986511476, + 216914014, + 1035532890, + 1978392914, + 11221692, + 2989318262, + 6247782, + 24822590, + 580290725, + 315570064, + 2989208024, + 2481216923, + 2988318554, + 29411194, + 42276382, + 2482368360, + 2986955324, + 53417974, + 105043054, + 554719435, + 1637225107, + 62941903, + 2849857866, + 2481381966, + 14692715, + 382752824, + 14124633, + 41490245, + 335979245, + 108357781, + 94909995, + 40544415, + 2902169746, + 953104518, + 1171543506, + 2481214656, + 2985187190, + 760812505, + 415872640, + 139859050, + 129129249, + 4197051, + 1533172538, + 1928818741, + 2984788850, + 286081923, + 2977280841, + 26155415, + 2979015929, + 21613572, + 116082757, + 322134747, + 77762266, + 263875085, + 18878094, + 43332590, + 31016565, + 824537742, + 2296127379, + 22650377, + 1259693402, + 2834535063, + 59505363, + 2977573521, + 2885511701, + 2902356091, + 558624863, + 20214495, + 90084013, + 2436535886, + 291441060, + 206817988, + 2969824449, + 830652314, + 2975380403, + 2975227971, + 162977836, + 255990193, + 46369582, + 14648825, + 2957707267, + 24510260, + 2974805226, + 2386885062, + 2893017577, + 61216275, + 2181479340, + 2278765579, + 28086540, + 16977592, + 28100891, + 2245700880, + 257712756, + 27500545, + 2967670954, + 1296831523, + 21069606, + 15484541, + 2966726656, + 2942939553, + 2967418106, + 2647168484, + 185744472, + 812936059, + 2829638396, + 179165117, + 49889388, + 59736969, + 21278996, + 2963278302, + 174556429, + 34349331, + 23307970, + 2569418859, + 2962224253, + 234946102, + 31377922, + 2959096116, + 217390719, + 2194760538, + 14380294, + 2965190535, + 2427174140, + 46409086, + 2874936701, + 2868133069, + 202488410, + 2787392695, + 358324317, + 230413321, + 20115641, + 314750546, + 18118882, + 391938908, + 2213073366, + 52208319, + 2162524706, + 18845327, + 105242637, + 325567664, + 67011238, + 11355782, + 1244498426, + 2921855569, + 997740158, + 81200968, + 25599299, + 289717025, + 2847581846, + 2951558246, + 448498518, + 63106785, + 619194730, + 23483965, + 32831158, + 14928483, + 14254849, + 2958381895, + 82120228, + 537862811, + 274149738, + 2961321723, + 2475639841, + 23301743, + 1609182792, + 2951011034, + 273371515, + 962935188, + 2959457505, + 2958075897, + 51490123, + 2789497513, + 14586891, + 2899558072, + 2247408678, + 1692107474, + 170827198, + 22350029, + 843014521, + 2823318152, + 2953946569, + 2950723530, + 2840757673, + 2945537393, + 2902087435, + 202783886, + 1062753084, + 2872226849, + 2867622839, + 311047358, + 173798281, + 2951343913, + 2946132311, + 466581588, + 122301045, + 2684438479, + 1382650268, + 2769045336, + 2847982212, + 1306063296, + 2933077566, + 144563794, + 2764399806, + 2559051898, + 2922416642, + 19414925, + 2175993318, + 497734237, + 175552751, + 830501202, + 1587993984, + 2910807367, + 358907918, + 2410097665, + 2890731509, + 1518371544, + 2828827319, + 276682931, + 2933190357, + 263503, + 42493859, + 35008168, + 2255606088, + 213429917, + 2521938841, + 14643310, + 2913614233, + 223351306, + 2911377796, + 1270428056, + 2774327991, + 2773195296, + 1921201098, + 88926526, + 2686073050, + 2822471817, + 21604884, + 2942276749, + 1743498001, + 2939220471, + 215433360, + 719231732, + 2377806675, + 2934291049, + 221904440, + 562627212, + 1229886517, + 2332876501, + 18576055, + 1529827615, + 1173295249, + 28373693, + 2884608064, + 1673477870, + 2935648607, + 2912327331, + 2482803527, + 111662541, + 4058321, + 2935674898, + 61243585, + 2922710571, + 2386076394, + 21632806, + 1223258106, + 1263139358, + 47178452, + 20180244, + 2932331206, + 2851541997, + 57864058, + 38453406, + 2935658192, + 15653423, + 613411307, + 2913030695, + 2929709728, + 17990925, + 2929420383, + 705221179, + 59746036, + 317285372, + 10692122, + 735001075, + 320103459, + 2926312787, + 2926532715, + 189039109, + 2724875972, + 2885619717, + 2916611921, + 2273772871, + 234593357, + 475157561, + 2877229557, + 121874784, + 2929121480, + 2914114792, + 2801067517, + 2920196300, + 96103780, + 2918686306, + 1018522322, + 16841837, + 562029490, + 467099237, + 2896004958, + 2673954810, + 2911492506, + 24244428, + 2918632163, + 30481941, + 241086349, + 906943867, + 720090247, + 28725464, + 2926935744, + 1205291934, + 54501744, + 33984519, + 2914335156, + 2915131543, + 567862111, + 2493540325, + 354087985, + 2180801330, + 2716417939, + 187681652, + 424545499, + 2467025479, + 1543515804, + 2868536894, + 703575822, + 22526911, + 2785120125, + 2910785591, + 7796172, + 11513552, + 45143, + 2924662807, + 15810905, + 134779059, + 2804019566, + 2870745171, + 2336508511, + 14125008, + 480036734, + 2915039892, + 2808295946, + 2911101880, + 2911102996, + 2911039209, + 2760734104, + 2902716424, + 2911041945, + 2911100164, + 2911101892, + 304550950, + 274054752, + 2440585238, + 23173499, + 15435500, + 186021388, + 19178814, + 2922056035, + 2813965043, + 2155511406, + 25029927, + 2908361721, + 166457964, + 34628416, + 2835349962, + 2907310277, + 245176327, + 47566275, + 37162136, + 175295563, + 363997196, + 17667371, + 1963565190, + 199476742, + 2887831301, + 2860875292, + 2858040357, + 1421336851, + 2897616443, + 2898961128, + 2820148561, + 2891489406, + 449818373, + 384977124, + 23701963, + 2449427197, + 432299781, + 299502506, + 84543935, + 2734153639, + 2879774764, + 97419236, + 1479773167, + 492946976, + 2338610616, + 296823744, + 270152664, + 385363267, + 14379613, + 2736082734, + 870757579, + 82342846, + 16901867, + 3110991, + 478251921, + 1110160747, + 2496381896, + 1361688518, + 2530020704, + 15899372, + 631306195, + 115547154, + 337663251, + 41229610, + 870466574, + 764750310, + 519425251, + 70847996, + 136169487, + 14970911, + 873726360, + 26666166, + 132770483, + 306225194, + 32282502, + 27551534, + 47037273, + 20271007, + 2585361068, + 14120925, + 2753715921, + 2777786762, + 113136276, + 2915062848, + 2858927329, + 138840987, + 2877913901, + 1403961079, + 324600867, + 2901829064, + 17256898, + 39099783, + 2710174488, + 2350503847, + 1184169696, + 769426572, + 2478825630, + 2886244545, + 23189892, + 21191825, + 364767188, + 2895686116, + 2887553139, + 888889368, + 223805269, + 201552518, + 1451790722, + 15960655, + 111140015, + 2853955671, + 898141417, + 231063580, + 2892117111, + 520835497, + 15094420, + 18196713, + 17795672, + 2892417419, + 17416387, + 2325977071, + 12299242, + 19704855, + 21800155, + 16159297, + 2836004283, + 401635769, + 505631665, + 501208238, + 107448028, + 734446782, + 16516351, + 2891080113, + 2889495819, + 974586420, + 2853261335, + 2843084595, + 2551064918, + 2869806646, + 2888539945, + 2766105770, + 2908399314, + 35473416, + 135983969, + 2906357473, + 19119233, + 2879774963, + 48231291, + 315164757, + 2853243562, + 1514989014, + 11051252, + 2876357325, + 16288392, + 2884775193, + 16323680, + 2885438896, + 631113074, + 33743179, + 153296320, + 1683420451, + 18346039, + 19039053, + 2827531823, + 196944784, + 58424698, + 15182629, + 10781802, + 35028064, + 2872677244, + 2885216843, + 1011967081, + 2345543600, + 318481728, + 425214839, + 2295998888, + 552389944, + 1090900116, + 2903911856, + 298620722, + 41543409, + 1516005133, + 2589738836, + 29064492, + 1726894219, + 21097363, + 3668081, + 2883381311, + 81077164, + 270801364, + 77074214, + 1518401448, + 1534980696, + 981127062, + 408631444, + 141542064, + 2864852517, + 6782972, + 32967317, + 22018381, + 2861402625, + 2560594567, + 1726770042, + 230439795, + 2360634539, + 250771113, + 290059422, + 2892415464, + 16001046, + 91716596, + 18810315, + 367526062, + 1074364406, + 15373778, + 2344305278, + 10718, + 2870163764, + 2433667077, + 2222133360, + 1707480156, + 1001318221, + 19582372, + 948570062, + 174591864, + 1135280635, + 171931585, + 35101611, + 17437291, + 248191440, + 19902242, + 16585644, + 186160494, + 2446390764, + 1001690000, + 2900016211, + 2841496870, + 18949061, + 2874313689, + 758370776, + 17128777, + 2876676976, + 2698384010, + 607211681, + 1010661, + 1521398738, + 147731142, + 490897163, + 476048241, + 151562486, + 6652652, + 443763700, + 83483164, + 2790341762, + 2872016867, + 1148960264, + 2335370882, + 16891462, + 531291518, + 581098887, + 1273061418, + 2516166788, + 2872603463, + 1930227433, + 60349138, + 2854067887, + 2888212070, + 103453806, + 2872815196, + 110595130, + 2872664348, + 2616030440, + 410537231, + 574647893, + 2240590129, + 1315554846, + 2486238716, + 2748659756, + 11194782, + 1077, + 42574506, + 143539567, + 20129803, + 378716437, + 2508928776, + 204594835, + 271481369, + 2827705677, + 51567663, + 339740909, + 18059811, + 285774839, + 14883908, + 119940022, + 485441455, + 53570239, + 7315732, + 2869949283, + 141074522, + 23100908, + 17807133, + 2742299641, + 2890424340, + 1936611624, + 1242217004, + 2836949388, + 995698284, + 2877801380, + 393897038, + 19498212, + 251861049, + 2559161749, + 63936817, + 2446942796, + 2441681756, + 2437664593, + 1452925254, + 38539052, + 25684535, + 2835328803, + 99819269, + 542185215, + 1182897894, + 1453904227, + 2420768126, + 25100578, + 270442873, + 2892427226, + 2440670916, + 2367501, + 49767846, + 21546880, + 2821521423, + 422801393, + 736652496, + 10508, + 153408163, + 1302307548, + 2891237118, + 2886608340, + 14221779, + 193044042, + 385204671, + 2890900638, + 2862606533, + 87416263, + 2889899215, + 2858766377, + 521191658, + 47705488, + 2573633287, + 215874978, + 373891800, + 83701477, + 36459516, + 2827647946, + 2442766051, + 2446930836, + 10241062, + 500951118, + 2886631878, + 42067255, + 1929371954, + 519149666, + 14207614, + 2836009090, + 2883888048, + 2550715640, + 408873608, + 2442771121, + 210684204, + 2333691512, + 2830961070, + 752137213, + 2885669124, + 28298897, + 18028814, + 371701934, + 353782068, + 2886042962, + 614831719, + 2523472213, + 197843128, + 1359526776, + 15006654, + 387947550, + 398129297, + 122383620, + 42088363, + 252000808, + 77112054, + 2556576817, + 30279017, + 349352135, + 21062802, + 798933842, + 876514789, + 704184211, + 2486243202, + 171313785, + 518795225, + 2331199484, + 2877963104, + 23986756, + 15808210, + 71304536, + 2800027542, + 219450750, + 2800608755, + 2831914601, + 296425907, + 719169576, + 2846131193, + 2846058214, + 2499916716, + 1284190964, + 2844538385, + 247794345, + 2358362860, + 2866068890, + 76587100, + 761755742, + 416495207, + 2275330722, + 2859399668, + 2663748318, + 2826933740, + 2796714145, + 2530510202, + 2758263537, + 159223928, + 2754591431, + 103209258, + 199233779, + 2842766699, + 919444405, + 48880548, + 1061633870, + 2842264792, + 1261886976, + 22546273, + 2842583673, + 249964403, + 2840334772, + 14685794, + 2831948334, + 306826345, + 1169083602, + 2794992969, + 15683103, + 2750413590, + 2841254729, + 1327583215, + 1483563295, + 14128186, + 2791444776, + 36462780, + 2435997150, + 25979719, + 135321904, + 14270791, + 82515075, + 945128460, + 2838770382, + 206713027, + 17211934, + 35946147, + 2831065058, + 76822878, + 68433230, + 1841791, + 2841573376, + 336729169, + 2190898868, + 262974902, + 2838892960, + 2816021190, + 2811252438, + 2841166361, + 276351217, + 344655242, + 516628941, + 619524396, + 215420650, + 72863, + 2691570584, + 14605917, + 1142612942, + 2800857767, + 2839469361, + 40917881, + 44018210, + 592427581, + 207617689, + 1364972922, + 22683937, + 429010154, + 2507513826, + 18914085, + 72955050, + 78385907, + 450975609, + 138848810, + 319287415, + 2713248331, + 2690640822, + 260256069, + 2836917112, + 1564257338, + 195622761, + 18475090, + 2418948720, + 1176665682, + 2679808020, + 510966817, + 232729395, + 2836576425, + 154516936, + 1038933740, + 373522144, + 2793293610, + 2559258187, + 2861756017, + 10988542, + 2835915496, + 45641677, + 359260523, + 90959713, + 27309226, + 2325807193, + 2861558004, + 35416970, + 785505972, + 2631339105, + 2849120282, + 1276977619, + 249290275, + 18637560, + 1110033985, + 2783893044, + 185885313, + 2834971791, + 16292709, + 2447217714 + ] +} \ No newline at end of file diff --git a/testdata/get_follower_ids_1.json b/testdata/get_follower_ids_1.json new file mode 100644 index 00000000..ef40b6ec --- /dev/null +++ b/testdata/get_follower_ids_1.json @@ -0,0 +1,2893 @@ +{ + "next_cursor_str": "0", + "next_cursor": 0, + "previous_cursor": -1482172157213781578, + "previous_cursor_str": "-1482172157213781578", + "ids": [ + 18568359, + 2823847869, + 2839550863, + 199878349, + 911125278, + 1533134222, + 2796915877, + 1360446930, + 479998051, + 52944494, + 43532023, + 60167411, + 14297142, + 283920304, + 260131861, + 2829805295, + 988263907, + 25522420, + 2842248482, + 380696053, + 2415264335, + 540524295, + 151099796, + 2857394893, + 14303216, + 529035477, + 239694448, + 58232355, + 1325622763, + 1134778818, + 20497223, + 16710059, + 898245151, + 276635180, + 33204198, + 17912684, + 32340034, + 1613684610, + 297753219, + 92043123, + 2832306071, + 138600898, + 51707023, + 38468450, + 2734154836, + 211299040, + 2772793287, + 57932979, + 2832019805, + 622225682, + 221256867, + 2180888714, + 29290821, + 2856735210, + 2354357198, + 732418026, + 1072121586, + 14315230, + 2823120126, + 66950277, + 221551308, + 2856322752, + 1270199574, + 38625234, + 751858548, + 29382134, + 252253546, + 38916013, + 243776687, + 332000656, + 11336122, + 324815308, + 18422789, + 18358444, + 20009910, + 779830400, + 2379218546, + 621865355, + 2269809440, + 1559414881, + 2830384078, + 2299993681, + 2823337467, + 2277585165, + 548401223, + 170888693, + 2795740968, + 2829151055, + 399931776, + 2820436241, + 2752694465, + 2696338214, + 27445371, + 38984338, + 448821699, + 21683512, + 32746632, + 25769552, + 2851051934, + 2338851193, + 549641820, + 460576347, + 1296259104, + 301470248, + 2826514966, + 2430116336, + 14424544, + 31535038, + 1034261, + 627835207, + 48735803, + 2285881968, + 60246036, + 1553874751, + 2835420170, + 47789228, + 610509514, + 2788909568, + 1348078981, + 1015624242, + 1572455208, + 1389844195, + 791855078, + 19335919, + 2822812265, + 2822480285, + 2826294571, + 2720495797, + 77615656, + 2543321844, + 2808110414, + 430196581, + 498112659, + 44817669, + 2821451903, + 80624517, + 293538857, + 24585498, + 2484961424, + 2821205494, + 3470211, + 1446496380, + 563844124, + 2459524980, + 18432670, + 2796381643, + 2600292391, + 18719732, + 2785551444, + 546490238, + 47869980, + 1317158120, + 624928019, + 268292100, + 87703920, + 23912088, + 90702055, + 139100664, + 2607221934, + 1461191600, + 1480056668, + 1559654096, + 589575149, + 257415016, + 280152810, + 16552581, + 502760432, + 14179549, + 609659719, + 57669979, + 342748167, + 17290900, + 187115133, + 526336172, + 211859595, + 1573654201, + 2844904034, + 2844526796, + 159581371, + 2394859615, + 2844125551, + 1102681291, + 2790161267, + 2393213275, + 1335228721, + 81967727, + 2809953320, + 112607888, + 495393145, + 2810491751, + 159600896, + 196753555, + 2842349479, + 2634723838, + 1961970799, + 363496956, + 20895134, + 29492786, + 2834528090, + 373901449, + 2806076121, + 47356472, + 2787107043, + 2317137398, + 1480810092, + 2815297027, + 174705313, + 1843315560, + 1421573755, + 1183863920, + 18093468, + 17257377, + 2801105582, + 164930478, + 2840825263, + 2806474113, + 104358108, + 2816557555, + 345486825, + 1459604220, + 80875548, + 2803371855, + 2189069474, + 2802930640, + 2348465666, + 2559623516, + 15176366, + 17171256, + 58207999, + 201226517, + 54625210, + 2839231058, + 72921871, + 2800367080, + 2632347730, + 2515113172, + 2781283225, + 20856288, + 2217925311, + 2827303645, + 2298986155, + 2615735222, + 15235815, + 2789960801, + 31604330, + 2615954263, + 48125856, + 2395487703, + 157948933, + 16720037, + 295428790, + 1330406438, + 20404593, + 49635206, + 611933904, + 2569738319, + 106614991, + 44290970, + 2827821955, + 37267535, + 15009098, + 17816618, + 2614300664, + 1673665117, + 159402233, + 24790186, + 233100852, + 10186262, + 279881044, + 88807478, + 24117694, + 24532138, + 26137372, + 138632867, + 19941017, + 1516978052, + 489610627, + 37864507, + 2462260734, + 2715302191, + 372018022, + 512747125, + 14537861, + 389355548, + 2595535086, + 268192580, + 68408717, + 598699854, + 17846006, + 8220582, + 23909853, + 8942382, + 18078750, + 183340224, + 2440322860, + 1603406131, + 24289307, + 780810121, + 21504296, + 52790027, + 2786993913, + 1520090178, + 2827249903, + 24208510, + 2544284383, + 59860037, + 63733459, + 788392706, + 1171788037, + 179855653, + 17605831, + 14651109, + 2288778698, + 18046664, + 922297656, + 1070026254, + 1482961735, + 20925919, + 202860226, + 957353786, + 102237401, + 452909578, + 18534908, + 133372189, + 1153104685, + 297512398, + 448788827, + 197626927, + 16619151, + 599395507, + 1160875688, + 31331503, + 595860782, + 259475003, + 2550901051, + 434684341, + 588854016, + 7632252, + 26608146, + 292511193, + 2643280777, + 160667591, + 2794063024, + 1235103067, + 20136687, + 145220626, + 41339466, + 1625315640, + 25033260, + 374978819, + 20478920, + 5714432, + 329140042, + 2835667015, + 2412316315, + 2522522892, + 535187711, + 16661080, + 2797052675, + 166227822, + 137124029, + 2578947127, + 24718591, + 42844321, + 44144629, + 2793709727, + 2341587819, + 145350228, + 1080695552, + 88957553, + 2588793822, + 219606488, + 2407627944, + 2797126742, + 20761504, + 715945646, + 67429947, + 560142646, + 2835652184, + 15171447, + 1093802287, + 91871482, + 1972612118, + 414989367, + 2218140914, + 1244238200, + 266099423, + 705682638, + 23483816, + 19414296, + 2745443067, + 279727055, + 11488732, + 18010512, + 435472450, + 1730879610, + 68796392, + 261043346, + 2730476162, + 316479545, + 2830654146, + 2829226112, + 2790768332, + 2789924236, + 2391813894, + 2833421150, + 37928291, + 2834905153, + 23633699, + 1639471914, + 38483694, + 403509817, + 2787303099, + 402798942, + 2786342626, + 2796472362, + 2586505778, + 22906563, + 11744792, + 527793302, + 2191658713, + 362161896, + 1948471159, + 318697688, + 2418833034, + 41629905, + 263615863, + 234342779, + 15625348, + 28220602, + 1860106956, + 2833033147, + 340127057, + 21643763, + 2688341785, + 16799897, + 139810606, + 362540066, + 19517352, + 305156995, + 1473070387, + 409211318, + 19298381, + 8069042, + 15566111, + 226751441, + 1650891613, + 86782347, + 128924193, + 2786171263, + 18599180, + 1103468076, + 137756415, + 270552993, + 505163906, + 23626419, + 84350207, + 56730995, + 884234023, + 516145687, + 237197075, + 54677967, + 2785047291, + 2573738899, + 166223139, + 1685312060, + 18867397, + 348582052, + 24629249, + 2772578862, + 193152686, + 37868094, + 1869951139, + 2188221928, + 21911231, + 35892267, + 1446772334, + 2697302850, + 809573960, + 29370598, + 1107684811, + 405855200, + 13308502, + 2334056136, + 23966825, + 169760495, + 15826099, + 14793972, + 17936802, + 472561623, + 41469352, + 164165558, + 295572924, + 385027140, + 237477424, + 143920412, + 13986542, + 1454970649, + 425954534, + 449408836, + 15603207, + 32709070, + 109473730, + 56163585, + 121312918, + 2225320566, + 230392924, + 2797884852, + 14393629, + 124064640, + 164735315, + 322855395, + 237439292, + 2329554289, + 2825779441, + 2369354924, + 1949935303, + 2829922064, + 2601329148, + 2829042818, + 116035499, + 21603597, + 2827696087, + 559068947, + 267365383, + 374849822, + 2360882965, + 271262680, + 2827028180, + 2719863120, + 2794495520, + 613467318, + 15305487, + 2444537593, + 2778795425, + 2796398178, + 2724683069, + 2815700491, + 2674861855, + 71552780, + 42955897, + 16814845, + 2820451123, + 51278095, + 30161210, + 461977120, + 18358746, + 18771668, + 315740771, + 343745990, + 2814376982, + 198978324, + 2170341715, + 176499073, + 1425500808, + 2474688422, + 2161527751, + 28730785, + 2562452208, + 2796853410, + 2275408650, + 391715920, + 779487338, + 346425691, + 2813795371, + 2411151546, + 166558442, + 118679396, + 343600277, + 44160296, + 347528892, + 2734830913, + 211200011, + 2816041153, + 2815421539, + 2814990416, + 2814667728, + 297877342, + 467906528, + 2763424192, + 2813461118, + 2813601900, + 2234556787, + 2595250914, + 211912180, + 2805352184, + 2619128761, + 1463053164, + 19175461, + 747994790, + 2768975130, + 91147786, + 149251110, + 2690800316, + 53580967, + 37274550, + 15365191, + 2283959404, + 609249913, + 86053605, + 318136026, + 1407544956, + 2770912749, + 189400722, + 51622556, + 815200027, + 473514230, + 23674153, + 539533382, + 632731979, + 16526290, + 2807791944, + 2282950939, + 2810265475, + 10926482, + 719137700, + 1918828970, + 749054930, + 102826993, + 2736894074, + 2808934196, + 48926855, + 413639108, + 2334502237, + 2706967615, + 617157232, + 49569990, + 2806976882, + 2767548208, + 316145842, + 23694218, + 2805915948, + 373205943, + 216547218, + 2804154062, + 15247707, + 2494126831, + 1130827783, + 2803370018, + 2801389358, + 2612775626, + 293946984, + 333741449, + 43945838, + 133491839, + 503448617, + 2318148162, + 12884962, + 43507230, + 15374401, + 1352827063, + 127039728, + 189220827, + 369134510, + 434159866, + 284252856, + 546601496, + 14520151, + 523707157, + 1898968964, + 716044325, + 2190662922, + 84276693, + 2517554893, + 20120026, + 2735836879, + 2389784060, + 2780922552, + 39302631, + 16853703, + 2764897681, + 1249738825, + 19958283, + 364924424, + 1075634689, + 2752399815, + 20826603, + 1070990102, + 2774622224, + 81900177, + 551464747, + 352540750, + 14965452, + 282713969, + 23694908, + 6249592, + 2218601431, + 17672969, + 482508683, + 862124204, + 461562633, + 2760652779, + 2670555026, + 2772726642, + 7714582, + 22519059, + 155069105, + 2193260102, + 18216595, + 1289279280, + 17687811, + 36962286, + 2792543972, + 2789119513, + 2794985011, + 16001436, + 218319700, + 2782398194, + 2357767188, + 99972221, + 2455554486, + 2675959123, + 20571632, + 2375510011, + 2464406311, + 362686824, + 311921651, + 319788957, + 1884195997, + 40337575, + 2790482083, + 64539883, + 138023348, + 2788450092, + 745017110, + 2586880063, + 619561286, + 20118360, + 2650275548, + 2698862124, + 2245717093, + 6967252, + 565311756, + 738389792, + 30678826, + 2773653883, + 701942162, + 2784595704, + 2446689355, + 476168077, + 1895549834, + 987940356, + 862741, + 1694140094, + 277614688, + 2786067643, + 8152282, + 2785593595, + 1506415273, + 2785209373, + 2479567805, + 2584076258, + 19153412, + 2569586880, + 2646232100, + 2312918584, + 24573898, + 2562626496, + 247912093, + 18782014, + 113439399, + 1862729762, + 1756194752, + 2784134220, + 21203159, + 2678466708, + 2757810981, + 170334802, + 2783050436, + 64798553, + 2755089226, + 39554440, + 2781005310, + 15625306, + 265593408, + 274221086, + 2367294686, + 79318615, + 2406154140, + 2756158029, + 165594353, + 1954779530, + 2779286119, + 25943077, + 2755966328, + 2742325799, + 2704125049, + 14976414, + 2172848574, + 78763833, + 389290240, + 1166763595, + 24474711, + 21963333, + 26983168, + 15633197, + 379359783, + 2543656170, + 2557784790, + 18735583, + 15638249, + 347820023, + 2779074906, + 138303403, + 2312661420, + 623180116, + 140146910, + 537663746, + 2744353104, + 790136479, + 353223301, + 2252034330, + 2759423707, + 71532748, + 350350059, + 85911526, + 1436657857, + 2389174966, + 1300866318, + 245988192, + 2751316046, + 14233615, + 557481051, + 581580986, + 2736386280, + 520031877, + 389743109, + 608766855, + 24845678, + 15847618, + 158448184, + 1426933968, + 19079820, + 198144079, + 767954088, + 498420834, + 107759956, + 263998640, + 55933729, + 374396172, + 75883309, + 820818900, + 31393537, + 15682966, + 15574614, + 2459879664, + 2715335646, + 4036281, + 14427357, + 277767225, + 328027297, + 14974257, + 407813532, + 57083714, + 271577921, + 231037233, + 18231685, + 570873281, + 2777348509, + 23170025, + 2744187012, + 414188706, + 1184566195, + 206674043, + 992871366, + 1249420140, + 790254542, + 2361832832, + 353299852, + 2474665615, + 2285911154, + 621699337, + 44176460, + 2484768164, + 1317841987, + 8565052, + 955936165, + 330241070, + 43871358, + 104203730, + 223823338, + 2739208022, + 2610508676, + 18852254, + 477832066, + 32849947, + 2184347418, + 2775581083, + 412057292, + 2772000350, + 1428614076, + 133938278, + 18669375, + 14467069, + 1274232541, + 259136493, + 64326902, + 186007705, + 273922013, + 2767992337, + 16906916, + 2772074791, + 2440660196, + 2666365909, + 377480575, + 14166498, + 22972233, + 352362305, + 2651090730, + 60124477, + 284893451, + 2355204164, + 2760841170, + 2332585826, + 618396048, + 2584729154, + 1888491786, + 2766531427, + 1018212084, + 114529734, + 164304841, + 15224379, + 2198365328, + 1245061093, + 2201873430, + 517788125, + 477865564, + 1370684204, + 1857573672, + 2460921914, + 127977167, + 2720762509, + 14714836, + 2661153200, + 41862279, + 1445645858, + 306724530, + 243835234, + 118192603, + 2252719814, + 50930070, + 41837013, + 405388713, + 46052163, + 23200692, + 285598087, + 2758860524, + 333093895, + 2742745638, + 1650318440, + 2388908886, + 14440339, + 2156117256, + 505389009, + 33274384, + 16271149, + 2508480482, + 619354467, + 2582875752, + 430187052, + 15164220, + 18474300, + 24895869, + 568510920, + 2755210590, + 146885274, + 1405071, + 341364098, + 117278501, + 330167214, + 2409752617, + 291814511, + 2752445683, + 749739464, + 55107001, + 14285735, + 54223853, + 55608270, + 14911029, + 1010437962, + 9974372, + 181697017, + 15393788, + 137929515, + 18583083, + 406525651, + 2754036698, + 573754692, + 803090426, + 17140823, + 540394406, + 19982498, + 14418724, + 402261290, + 22530590, + 2445607094, + 465620301, + 2665116800, + 1659201, + 19007577, + 184545059, + 19847566, + 43239844, + 62235793, + 730453802, + 836517948, + 14089431, + 189431426, + 250578280, + 243400445, + 40631172, + 322463395, + 2477547035, + 10078422, + 995731112, + 2464208425, + 487604696, + 1040175516, + 15963386, + 16552239, + 18004530, + 156657418, + 424857366, + 35254319, + 153262029, + 2546859007, + 328611618, + 203023614, + 1020091452, + 2339831028, + 8478582, + 22239433, + 425224057, + 2746693272, + 235649250, + 2157007225, + 15797540, + 104007074, + 401599387, + 2408136302, + 2745998273, + 1320846386, + 2540307553, + 2743612106, + 853252945, + 2746650274, + 2736048703, + 2388635942, + 716901834, + 7950832, + 12711402, + 44511188, + 17365406, + 2742122160, + 23367208, + 30325429, + 55209895, + 2728217304, + 38079312, + 1916211085, + 1159872481, + 346045816, + 1880332644, + 1403138772, + 1386133669, + 18698010, + 191603616, + 1365858114, + 18084770, + 2737804538, + 30832553, + 14507653, + 2593720020, + 33749281, + 1530104942, + 2694987546, + 2562096336, + 2743975427, + 2730661022, + 13256532, + 563455650, + 1960901594, + 296771506, + 416590913, + 2706603351, + 114363135, + 120797730, + 40442636, + 421086412, + 140264272, + 42689691, + 2540470963, + 29102194, + 707720431, + 1955384041, + 381207684, + 627431735, + 1487903161, + 172232642, + 88501703, + 1684011330, + 2678116076, + 176232098, + 2213566399, + 2416444807, + 178552728, + 213396877, + 41421889, + 171166150, + 1675904221, + 2516904919, + 177640959, + 52706126, + 2728897129, + 201142601, + 539369116, + 2491831693, + 2728185374, + 1056204344, + 19362134, + 632498676, + 1325376901, + 2575616976, + 58166620, + 1587499219, + 353127563, + 7614772, + 153351973, + 135505973, + 192969516, + 2190871614, + 2296345087, + 580578314, + 2483907840, + 2374474646, + 149181077, + 111773731, + 34193506, + 19682351, + 205523, + 1705876171, + 1315760318, + 26367916, + 15951773, + 223634769, + 417971198, + 1126955250, + 16714303, + 796871671, + 314203800, + 51881510, + 83542391, + 633693696, + 130976595, + 42961724, + 416385191, + 2264910530, + 25356272, + 69949181, + 3189061, + 14275077, + 369331993, + 18494350, + 271503699, + 371569704, + 1202174035, + 2595637693, + 2203392391, + 16185559, + 1563584570, + 754001083, + 20287447, + 928214652, + 2648345423, + 161773182, + 1487494208, + 513494324, + 41709199, + 515710795, + 417433623, + 2184378296, + 2726391349, + 1874374662, + 140487542, + 278024105, + 21985645, + 90354464, + 17141951, + 14576102, + 2529884293, + 2636418896, + 1345404096, + 477969629, + 253338660, + 39393397, + 39334284, + 21441402, + 15375238, + 40613184, + 61661397, + 155674591, + 1297561728, + 2725346635, + 129603074, + 17261176, + 23296680, + 281335023, + 7081402, + 109402115, + 23843670, + 2484599173, + 293165658, + 171598341, + 86637908, + 55101855, + 720795487, + 1860682938, + 1902560558, + 30193706, + 21902337, + 1305940272, + 1871931018, + 28897401, + 201893567, + 20544252, + 533168885, + 2724865027, + 2720611602, + 133413674, + 1306372550, + 545052081, + 2471422034, + 1847879149, + 293719533, + 79837418, + 998625380, + 2654652751, + 215867898, + 2722518686, + 330004048, + 363074116, + 2508238046, + 1499076764, + 368079476, + 10314482, + 500947092, + 66910833, + 2718897438, + 2335477148, + 8464392, + 8174142, + 188861654, + 1252917522, + 127587991, + 6221802, + 564828430, + 83977254, + 37375210, + 23145095, + 811508882, + 2610573289, + 266465052, + 14270103, + 1855274048, + 482632594, + 2648739217, + 53248456, + 39038706, + 14324058, + 1564501430, + 43730299, + 1596801914, + 875466372, + 248331766, + 25966281, + 90961345, + 2454147619, + 78987648, + 323856815, + 626035759, + 32794572, + 1447458510, + 1468247234, + 25159222, + 17766237, + 362286999, + 47140658, + 615157718, + 66315620, + 159399943, + 2548127498, + 1443296388, + 2655679556, + 59736882, + 2214059922, + 170023430, + 396216027, + 39591100, + 20512260, + 16038438, + 2722979426, + 95837739, + 298675832, + 32181724, + 88300376, + 376889399, + 44307660, + 2694407370, + 71169680, + 2739178019, + 20598707, + 2704742346, + 1661060293, + 444879320, + 985840968, + 51757505, + 2721133104, + 2602425530, + 221156318, + 1081813736, + 263910676, + 25799828, + 18871292, + 2659973851, + 1266825842, + 1367124774, + 2718065840, + 242681127, + 2163201726, + 2462926086, + 1953316428, + 515074073, + 1641964513, + 2707334143, + 82706463, + 2592222883, + 67834235, + 16343073, + 376364850, + 2659957592, + 2511841164, + 20956102, + 359913776, + 1389316104, + 2708940194, + 15660281, + 386261226, + 319387069, + 219969684, + 61525167, + 476923690, + 64289634, + 151321610, + 1970442408, + 2386345501, + 2682815786, + 204934966, + 27174184, + 15352541, + 2691277934, + 552345433, + 34188766, + 15160493, + 552534666, + 2728532765, + 1919612864, + 592285402, + 5384842, + 2433344467, + 276648737, + 152768151, + 1575952254, + 333519470, + 26897807, + 424642818, + 10776942, + 2330496392, + 1960217425, + 1463590422, + 976520714, + 581540879, + 61368299, + 1357276346, + 1206441060, + 2659237424, + 1645385010, + 869779124, + 30141363, + 57735964, + 613744236, + 2704319934, + 2714019576, + 166302286, + 1262083081, + 42267812, + 753196232, + 2707907491, + 293934083, + 123659595, + 117891523, + 1621028173, + 2371538304, + 2662105630, + 1057080500, + 2712853758, + 17656320, + 60708321, + 322906028, + 48577626, + 2671232269, + 966420366, + 1849731313, + 242923569, + 214186777, + 43806137, + 61260031, + 1368532135, + 1388186162, + 46862522, + 851951478, + 2655199159, + 13096002, + 720979458, + 2515491794, + 302718940, + 706340208, + 509746957, + 56768257, + 17093474, + 2414282990, + 1906945130, + 2829401, + 2712480206, + 98629768, + 14642018, + 1265342706, + 16189782, + 19258078, + 276768282, + 2501888752, + 47472277, + 2187249588, + 334400134, + 478845002, + 549641532, + 310454056, + 473920073, + 18123635, + 113095705, + 24099592, + 314358874, + 10395252, + 1534060080, + 322629367, + 325724173, + 2507651504, + 30863042, + 168212951, + 164052868, + 219326636, + 88965760, + 64849223, + 2190983210, + 14277842, + 1561569042, + 271626280, + 838808077, + 619453691, + 1656969884, + 219251193, + 76455374, + 327165636, + 2689512648, + 2694211387, + 2707563084, + 178932440, + 1430616829, + 120216905, + 2459486610, + 58092414, + 22215175, + 51186345, + 14224219, + 2204042821, + 2654534176, + 39800178, + 2707402652, + 153885804, + 221635888, + 14205381, + 731680370, + 2678324630, + 808484690, + 2608844076, + 2444329771, + 47016641, + 2685647396, + 2365243866, + 1618566348, + 1314263486, + 164700688, + 222875678, + 58189396, + 49681635, + 872342575, + 29984657, + 47901131, + 375753109, + 69474498, + 630860233, + 832195032, + 2238958711, + 197836686, + 1872257166, + 1719041336, + 1328250686, + 123895213, + 2439358794, + 149617382, + 44024932, + 23418551, + 14965072, + 465638609, + 1048828368, + 2443852184, + 16900307, + 241650466, + 40066316, + 16557958, + 2664867336, + 42308266, + 198622157, + 16273538, + 28344264, + 27381972, + 2606159809, + 622462907, + 821963496, + 2394862452, + 97261937, + 1066348939, + 18218285, + 504030526, + 2459028175, + 49559732, + 14220906, + 71884737, + 2164138496, + 162221379, + 21188880, + 42886417, + 259501233, + 2232085308, + 105669760, + 812014932, + 862554678, + 2364479462, + 28413032, + 12021482, + 904897332, + 300004306, + 427877098, + 199599505, + 300073650, + 1925825300, + 30355945, + 168167924, + 326421640, + 277334494, + 2693877985, + 184194569, + 2691441066, + 29474607, + 1370542062, + 389313658, + 19873102, + 49166931, + 22838331, + 21297371, + 140569066, + 262350410, + 1619409679, + 2628282949, + 600716597, + 44275337, + 15618553, + 2230406251, + 2566328594, + 252385048, + 46373148, + 53605520, + 17875859, + 2282512646, + 571032274, + 11427402, + 2495269099, + 113254439, + 9633042, + 74387626, + 25772203, + 43587056, + 2431154844, + 595577496, + 66783872, + 55674812, + 286888568, + 470997704, + 322964867, + 315241974, + 1067754662, + 73730765, + 2457100946, + 173313184, + 2457189276, + 142409621, + 146946913, + 65750169, + 159508633, + 2541504619, + 15136577, + 313631586, + 14447867, + 162044862, + 28370604, + 455219790, + 872251, + 2206283359, + 17635635, + 18733337, + 1329845642, + 6328882, + 1564382160, + 1258804357, + 90697018, + 1688518602, + 2296800073, + 2481880087, + 226424298, + 14628009, + 19021299, + 2602686457, + 355802789, + 133970507, + 414157081, + 2456521471, + 1757800921, + 35094531, + 297799785, + 102211070, + 50748729, + 40698468, + 1972114321, + 304672487, + 90292509, + 248037563, + 602519741, + 21315633, + 176276688, + 45953084, + 63745717, + 182191771, + 1452150655, + 2401096388, + 490828190, + 1016664894, + 1296543859, + 36944162, + 15384463, + 83906194, + 106624470, + 20398907, + 14057669, + 228624732, + 24397364, + 20637608, + 1716865688, + 300116808, + 383330020, + 1100326518, + 55397130, + 32032000, + 41930388, + 2691351414, + 360129945, + 95820486, + 2606040210, + 14324319, + 2602742437, + 2161863914, + 73900007, + 382879519, + 18404955, + 20744951, + 1302649411, + 21150522, + 740761610, + 1253557843, + 1947934442, + 343321593, + 117026889, + 22563093, + 14969388, + 194984772, + 2281896007, + 115580069, + 2349502914, + 1671279828, + 1695528990, + 75170018, + 17496615, + 24612874, + 10219982, + 2490884160, + 2455491403, + 54691370, + 546453689, + 309561393, + 14591228, + 80164956, + 135107349, + 389027282, + 2682977401, + 24719584, + 108399156, + 233291892, + 1584710622, + 2384055826, + 177536523, + 196889003, + 83158659, + 449252624, + 2246764032, + 109102126, + 389609859, + 67656899, + 19074827, + 561188271, + 317128282, + 2673745314, + 2725805021, + 62775756, + 85414881, + 260553216, + 2651355451, + 19322309, + 18817547, + 259809972, + 346682225, + 512712265, + 25362763, + 170028171, + 45416789, + 628412465, + 2355462320, + 2546393202, + 339422214, + 71383220, + 87407374, + 375022391, + 2356845396, + 337437366, + 199429505, + 356900641, + 479980633, + 4791371, + 61258803, + 1514098375, + 805553970, + 2649541033, + 1306876946, + 17358032, + 17956368, + 264356595, + 540022897, + 14193454, + 627801443, + 346208400, + 1561922294, + 746705971, + 2488586072, + 431157550, + 242242379, + 2663955350, + 2518829358, + 9452312, + 154420293, + 1627399644, + 14946104, + 24120959, + 423706076, + 20113944, + 66951315, + 38515332, + 1009631790, + 883283184, + 1621588117, + 24028758, + 1338813834, + 10681832, + 258929128, + 1735601672, + 2435036665, + 169448683, + 2722578298, + 130954977, + 14937325, + 168532759, + 138201468, + 945038623, + 650543, + 273664943, + 2692486733, + 631221037, + 2471579924, + 365700772, + 2239677247, + 61064212, + 461579314, + 2591883163, + 142457170, + 1378251055, + 19904900, + 863395488, + 232340874, + 25717930, + 83314648, + 2467922382, + 2455079965, + 80705350, + 49033304, + 21848257, + 483188742, + 2419610018, + 207663883, + 36076005, + 34986535, + 2341171171, + 339324752, + 550578863, + 2651361980, + 9520652, + 139536589, + 1103509506, + 401559926, + 469768967, + 286905306, + 389576703, + 2670868538, + 22741415, + 321521970, + 2662975860, + 216838324, + 968467866, + 1315350870, + 2398678404, + 252188600, + 537094018, + 1293953923, + 43389994, + 15748723, + 148067819, + 26337889, + 880121748, + 1686225554, + 2667991266, + 246039958, + 2280498614, + 522731421, + 13970412, + 14408460, + 2151078410, + 14547927, + 2482861177, + 398653333, + 1920626647, + 25563025, + 1423415617, + 1216611206, + 192108526, + 1678965668, + 975242286, + 2526555865, + 37522084, + 716590457, + 2655995072, + 297991754, + 198574548, + 9444482, + 382191537, + 343395430, + 19763493, + 15417896, + 23808177, + 183727699, + 21688507, + 595431054, + 23751769, + 7157132, + 753935047, + 1313751602, + 2493594150, + 1967409835, + 22775788, + 1183814022, + 376694822, + 30337027, + 2667942356, + 2528577890, + 39282415, + 2667713678, + 245656043, + 2615726112, + 19221717, + 2664737852, + 7142292, + 14702929, + 194662573, + 2531350702, + 2230733624, + 94778974, + 1182108536, + 394483029, + 858602006, + 2597261568, + 2612539188, + 2348901806, + 194588779, + 305905982, + 9675812, + 1534515074, + 2582772392, + 1293761300, + 379542112, + 29735258, + 177711354, + 1325851112, + 2718100751, + 2651654958, + 14293333, + 48846301, + 2658823412, + 18849232, + 68472064, + 1186941451, + 1647871290, + 114039485, + 137554364, + 2579315784, + 87143187, + 158689987, + 2382998546, + 1321061760, + 19915883, + 31493420, + 19157786, + 35528160, + 131069394, + 445051365, + 2617623638, + 19277132, + 138913425, + 259858898, + 1523977796, + 2540043996, + 2641478448, + 472022132, + 25376226, + 152361431, + 714654367, + 945507625, + 334755135, + 920729388, + 2653095608, + 2570340362, + 16977093, + 2590307072, + 138540830, + 1391311716, + 19805969, + 18965053, + 2223824328, + 399075181, + 120478433, + 54966626, + 50270961, + 2432320897, + 598890477, + 373472378, + 1317226842, + 2471162173, + 197957446, + 112072814, + 935038645, + 14270527, + 860948431, + 2249874505, + 72459829, + 52565373, + 141250520, + 25661789, + 167105561, + 44671378, + 2593747736, + 180523367, + 58582135, + 187237087, + 28980447, + 16447552, + 393033243, + 14050073, + 199771301, + 25179455, + 1023440202, + 793629, + 2650214929, + 1644416010, + 144799984, + 45944057, + 2271911297, + 1058879185, + 2588142726, + 263830231, + 2598460208, + 20458886, + 2353984898, + 15859947, + 1480564873, + 1894645940, + 2547687382, + 902935909, + 285904557, + 245232063, + 105268129, + 2505246548, + 1711752937, + 2387653381, + 17266393, + 15003854, + 30839761, + 12068862, + 371446737, + 51718518, + 323977774, + 554181596, + 419073547, + 2357912953, + 2252152256, + 170082980, + 26983898, + 1561138874, + 146948684, + 2393429594, + 66626468, + 22958268, + 726917263, + 2204095723, + 74774518, + 203983655, + 14135009, + 34310651, + 1979492497, + 1311423618, + 2514123998, + 14519171, + 540259168, + 2398308211, + 512563826, + 1323841742, + 73443199, + 100427786, + 182203607, + 80497970, + 83880850, + 5960932, + 17476953, + 14570615, + 9297422, + 39182523, + 238186152, + 28828310, + 329826779, + 279707264, + 797586168, + 706833, + 1929558566, + 9637982, + 14518661, + 314645422, + 17064600, + 323982384, + 2429943578, + 15889451, + 415818433, + 2218009256, + 16617676, + 287816898, + 2466189944, + 379277633, + 243881425, + 48744731, + 289222942, + 2469324030, + 216594284, + 2353045298, + 18915582, + 345326776, + 275387273, + 619532406, + 119333280, + 182267933, + 2557221630, + 2541979477, + 14176297, + 14257102, + 507709379, + 2512924266, + 1328500530, + 363792365, + 467458488, + 587229400, + 158948552, + 2394903662, + 17461215, + 419933252, + 1423593175, + 296361797, + 93603692, + 166482876, + 2374443600, + 285207574, + 2239872086, + 153812241, + 26408804, + 58747912, + 618561152, + 404402995, + 20087429, + 2485264719, + 2616550338, + 1458459194, + 62215778, + 1327618698, + 19394222, + 2584702764, + 518495199, + 71862367, + 16972422, + 1476060205, + 2603613312, + 1196493648, + 17946886, + 59832288, + 2233002794, + 14103333, + 73437395, + 71077029, + 16971994, + 1419723512, + 516150304, + 11919982, + 8654742, + 22143460, + 2276894183, + 321972287, + 16545241, + 186535932, + 2610397711, + 275443776, + 20428342, + 14283, + 1566024031, + 423732228, + 20701751, + 38416252, + 121893735, + 180707654, + 100930949, + 728852354, + 2294508330, + 1677983000, + 412961881, + 14094087, + 132715701, + 488527927, + 2300372934, + 146879938, + 180001973, + 164183695, + 658353, + 23783361, + 190642026, + 21861033, + 48597549, + 1849076732, + 221954369, + 410337616, + 45226660, + 2607690103, + 2597073091, + 6289602, + 26431749, + 195980342, + 54222239, + 784654188, + 18545296, + 134944041, + 287736439, + 55472734, + 2587881218, + 1876700131, + 278378678, + 2399298680, + 428285839, + 1421495196, + 2327932093, + 428586673, + 2596792590, + 2588582684, + 2311063871, + 2558735024, + 2330643800, + 425748911, + 117037734, + 2457172872, + 24118055, + 2430014127, + 14124531, + 16600919, + 72864589, + 349111085, + 14075459, + 41020268, + 205512496, + 18306174, + 15911001, + 14123822, + 828330613, + 17300006, + 93702963, + 43933796, + 434521127, + 24920970, + 2590780058, + 539367183, + 241814731, + 872352396, + 227844938, + 2423388787, + 8146732, + 15963621, + 2560133702, + 68080192, + 467035507, + 1321463336, + 271760428, + 16823185, + 28390663, + 84121085, + 956741323, + 1122321800, + 18353790, + 37175995, + 709674980, + 14979502, + 946476872, + 47489753, + 5398712, + 1943293668, + 2459610476, + 15184365, + 2290239343, + 1905351968, + 279328072, + 15388908, + 534512583, + 95490352, + 15247075, + 1463514306, + 2196509533, + 15508710, + 1975911048, + 702140414, + 25725991, + 705547586, + 192537546, + 108384288, + 14149195, + 1686580998, + 929500184, + 586960829, + 359049148, + 460045442, + 2478592622, + 18400880, + 14850976, + 700166761, + 21315223, + 27754962, + 146476339, + 2466393715, + 15008299, + 1652809586, + 207363728, + 18436517, + 348253260, + 46490602, + 290767045, + 36211517, + 15799638, + 59015705, + 2557066082, + 16084074, + 19008092, + 67727170, + 2553383520, + 1063368420, + 157415921, + 299277303, + 2589715470, + 1317062689, + 1887418189, + 154600577, + 66793179, + 297597945, + 35780946, + 1935698418, + 122770149, + 6728202, + 2417417542, + 80490999, + 39659968, + 2588157906, + 24334685, + 344804107, + 43570256, + 35333511, + 21061331, + 120110703, + 109980052, + 2407432598, + 3547541, + 2576783088, + 43934803, + 266579945, + 75702759, + 1877097212, + 251749414, + 39818652, + 393625868, + 10950902, + 281402189, + 1965276631, + 173944243, + 15944443, + 41956407, + 892593686, + 1080731636, + 898057044, + 20370620, + 523992088, + 866151799, + 281766910, + 227607070, + 214589613, + 23987473, + 24028993, + 946735310, + 69436133, + 2206379252, + 34959491, + 857351089, + 342973027, + 237189472, + 524735735, + 2497625335, + 10877042, + 2565563960, + 18696645, + 29529993, + 1313849245, + 2569371716, + 15847812, + 24578981, + 14466944, + 1969179680, + 1949408102, + 407781807, + 14936894, + 2370716922, + 1346677092, + 84494022, + 1729297056, + 84115491, + 1442171222, + 194623261, + 84315849, + 2233895142, + 2174732226, + 1854958933, + 1229040684, + 28736554, + 408756176, + 1044009930, + 105036629, + 1460609414, + 16215005, + 310003049, + 1139393827, + 2275311773, + 1303840880, + 2606740767, + 2606682935, + 2565419640, + 2175903210, + 2330092076, + 61530307, + 41213396, + 549691250, + 2548940546, + 290849742, + 1323419287, + 972169508, + 11633922, + 1562048400, + 9839942, + 71560321, + 276645875, + 14218312, + 77850269, + 223531202, + 365541890, + 618000884, + 2545361996, + 61105459, + 709226545, + 1935416203, + 21859847, + 2411176880, + 127973599, + 267552909, + 774787033, + 25964854, + 719557237, + 16150862, + 15773702, + 20517459, + 14988726, + 493510825, + 1049416182, + 2554595748, + 1872308552, + 96619783, + 708407923, + 300179866, + 1688826986, + 7860742, + 51361823, + 310878807, + 235725132, + 785549562, + 1113417679, + 1383519978, + 2553588254, + 1938963433, + 362288286, + 23931563, + 230878877, + 68816714, + 14304857, + 1048264458, + 18943008, + 753923, + 123051486, + 2188704360, + 97778856, + 740794940, + 144261432, + 944931924, + 14440333, + 31339090, + 168911485, + 28490696, + 23232306, + 2386659212, + 2266386187, + 41418974, + 22411342, + 24457403, + 193144020, + 79585051, + 730752631, + 7872262, + 1392874286, + 1672639050, + 558043957, + 823913874, + 2518616341, + 42588875, + 1519747244, + 222960237, + 1853410285, + 5974052, + 375715200, + 1696628040, + 867685734, + 480201901, + 947288522, + 282193995, + 141254391, + 45887280, + 234559410, + 2167455536, + 23823744, + 1065921, + 98478615, + 257590207, + 2533639680, + 14447391, + 37518916, + 361693804, + 1362628230, + 511310897, + 76056199, + 2351628565, + 41331276, + 22788856, + 973366099, + 1263218845, + 1259809430, + 22321640, + 15316059, + 410077695, + 25606277, + 186215014, + 21134767, + 30446608, + 231251370, + 811530, + 96007068, + 46331074, + 131926467, + 18966570, + 21342586, + 1029761335, + 209228718, + 197473183, + 55020785, + 1317095802, + 193524095, + 2542089200, + 279712503, + 302818214, + 24268521, + 36040335, + 16599158, + 624397288, + 913309291, + 2290293607, + 580114708, + 50262686, + 221565147, + 1613284345, + 34921692, + 1307492700, + 394472432, + 126438252, + 1446180066, + 1421331372, + 176224441, + 16875883, + 127919076, + 1617095875, + 10367702, + 263262974, + 15868200, + 14379485, + 27055038, + 216204377, + 68058537, + 20821692, + 15943735, + 63443195, + 498025641, + 1361688704, + 82500164, + 19019478, + 282872990, + 465066396, + 1069252525, + 25088748, + 22115905, + 322387657, + 101034530, + 46975078, + 24116297, + 15093908, + 16220478, + 331018214, + 44842811, + 132591216, + 142269129, + 2520037338, + 562922098, + 17792485, + 310330192, + 38360818, + 2427550489, + 2294404008, + 2377803456, + 301449131, + 23792365, + 1019901800, + 327088470, + 270481597, + 30993177, + 368911975, + 618438551, + 2455362542, + 2361664237, + 16662072, + 2468989334, + 346156464, + 2432880324, + 105019721, + 2475606588, + 6046132, + 28486146, + 2499750516, + 503878956, + 968825634, + 575834214, + 22918260, + 2479107860, + 2433749581, + 83955683, + 14312976, + 2265329426, + 154648294, + 2426723748, + 174541323, + 2427943826, + 17197857, + 350578795, + 2487057222, + 1648376126, + 490929520, + 2368554474, + 21517277, + 77698657, + 338577657, + 36705447, + 2437478014, + 15209135, + 2429872063, + 505782661, + 12064842, + 14494013, + 2482131804, + 615313522, + 300782829, + 1077905539, + 296566549, + 200006646, + 722066947, + 47996111, + 97720687, + 2200861197, + 131620354, + 226346115, + 87269548, + 2206256953, + 1135700720, + 2460029972, + 2444726454, + 237522029, + 64138884, + 2479630796, + 22355229, + 120935503, + 2437732440, + 2388257844, + 48734380, + 101869592, + 518842668, + 169217294, + 97129082, + 2395924800, + 868304509, + 22209201, + 799576454, + 41263293, + 73263419, + 2526306795, + 15248323, + 30060622, + 156560059, + 630048645, + 354004878, + 23908767, + 1599543613, + 1080722796, + 40856195, + 34728391, + 24940766, + 17054677, + 2414244360, + 44897207, + 23906829, + 21715898, + 225516501, + 91446526, + 387970999, + 12070792, + 220035098, + 742405500, + 2363185074, + 12691912, + 1573816735, + 953735010, + 1573840938, + 1045521, + 2384421332, + 150767029, + 441522831, + 72203012, + 10214102, + 14386794, + 19158017, + 83196931, + 1096057076, + 57827730, + 2344125559, + 2461953464, + 34739420, + 2473180037, + 149243840, + 1581624703, + 24076392, + 97967321, + 32339033, + 15711781, + 2213370912, + 749176735, + 390922386, + 326507652, + 15868572, + 6727802, + 110547002, + 1428655274, + 1093388640, + 373454306, + 129571317, + 418279718, + 2365078322, + 1143493279, + 2303421695, + 2431791810, + 111138041, + 117097021, + 1176827917, + 102827796, + 198787362, + 2440203612, + 4829441, + 297588403, + 22957921, + 51573399, + 16718799, + 185495909, + 14510359, + 506770913, + 777161924, + 408272342, + 203189776, + 94154141, + 2263652744, + 123666052, + 188943338, + 202630094, + 71114116, + 16510776, + 94147132, + 1390439473, + 57445469, + 1452235285, + 12298182, + 29199679, + 1149053071, + 2184781922, + 422112434, + 14710986, + 114022930, + 802585, + 15119615, + 110322958, + 2303677254, + 32770411, + 266050776, + 216900952, + 249013992, + 15607263, + 285085831, + 11803032, + 273797262, + 494785448, + 398507780, + 1327076168, + 38325455, + 211376063, + 22882670, + 595775844, + 76075571, + 58363824, + 14957479, + 262487491, + 24088940, + 43282408, + 18421880, + 390996368, + 106834295, + 400942102, + 185898176, + 439348486, + 16930669, + 22538803, + 404433545, + 506458865, + 208280454, + 2149664054, + 52762219, + 47584729, + 2402150773, + 2149568726, + 340056002, + 2393551634, + 21647296, + 1471503536, + 389496300, + 15582157, + 210862956, + 218003827, + 1066893474, + 127855180, + 3039101, + 250653423, + 390866417, + 2153631816, + 2162731152, + 25451718, + 11808492, + 18756514, + 62318794, + 223043930, + 29719864, + 210083863, + 44362897, + 603385690, + 872801623, + 2691421, + 7822352, + 17115175, + 17305671, + 372923595, + 294538866, + 16987778, + 1235329850, + 337932217, + 8005732, + 2308981092, + 779575244, + 2165044142, + 16729801, + 15440358, + 26928955, + 260614960, + 83275645, + 19306563, + 344993871, + 1327927195, + 67331057, + 146677172, + 489530660, + 925822981, + 36110368, + 624515774 + ] +} \ No newline at end of file diff --git a/testdata/get_followers_0.json b/testdata/get_followers_0.json new file mode 100644 index 00000000..8303c4d5 --- /dev/null +++ b/testdata/get_followers_0.json @@ -0,0 +1,11127 @@ +{ + "next_cursor": 1516850034842747602, + "users": [ + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2386149065", + "following": false, + "friends_count": 2028, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 346, + "location": "", + "screen_name": "hkarolam", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "akyoka", + "profile_use_background_image": true, + "description": "facebook \nakyoka v regi\u00f3n", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676766980372832256/4v5XUzBe_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 05 18:48:39 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676766980372832256/4v5XUzBe_normal.jpg", + "favourites_count": 9, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2386149065, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2301, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2386149065/1450188795", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "4610830879", + "blocking": false, + "is_translation_enabled": false, + "id": 4610830879, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "F5F8FA", + "created_at": "Sun Dec 20 08:30:32 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/678496104497844225/qGQZkW7T_normal.jpg", + "profile_background_image_url": null, + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2B7BB9", + "statuses_count": 3, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678496104497844225/qGQZkW7T_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 7, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 151, + "notifications": false, + "screen_name": "ChennaiSpotless", + "profile_background_tile": false, + "profile_background_image_url_https": null, + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "spotlesscleaning" + }, + { + "time_zone": "Tokyo", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 32400, + "id_str": "3075452130", + "following": false, + "friends_count": 3486, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1265, + "location": "", + "screen_name": "jav_gal_exp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "\u65e5\u672c\u306e\u30ae\u30e3\u30eb\u306eAVbot", + "profile_use_background_image": true, + "description": "\u30ae\u30e3\u30eb\u30e2\u30ce\u306eAV\u306e\u7d39\u4ecbbot\u3002\u30c4\u30a4\u30fc\u30c8\u306e\u30ea\u30f3\u30af\u5148DMM\u306eR18\u5185\u306e\u305d\u308c\u305e\u308c\u306e\u5546\u54c1\u306e\u30da\u30fc\u30b8\u3002\u5185\u5bb9\u306f18\u7981\u3002", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/587119610408738816/Jgw1cNce_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 12 17:39:40 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "ja", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/587119610408738816/Jgw1cNce_normal.jpg", + "favourites_count": 1, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3075452130, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 33190, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3075452130/1428816875", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1093711638", + "following": false, + "friends_count": 696, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 996, + "location": "Richland, Washington", + "screen_name": "Rocket_Corgi", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Rocket Corgi", + "profile_use_background_image": true, + "description": "32 yrs old, Bi, KS-5, Mechanical Engineer, Furry, Space Corgi", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683412297964863489/79alayb8_normal.jpg", + "profile_background_color": "80C0F5", + "created_at": "Wed Jan 16 01:09:33 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683412297964863489/79alayb8_normal.jpg", + "favourites_count": 13102, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile_image": false, + "id": 1093711638, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 15144, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1093711638/1385133310", + "is_translator": false + }, + { + "time_zone": "Melbourne", + "profile_use_background_image": true, + "description": "All views expressed are my own.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 39600, + "id_str": "29420974", + "blocking": false, + "is_translation_enabled": false, + "id": 29420974, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 07 10:19:44 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/510757955700944897/nBRHch7x_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 223, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/510757955700944897/nBRHch7x_normal.jpeg", + "favourites_count": 96, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 27, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 138, + "notifications": false, + "screen_name": "Hedgees", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Hedgees" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "4723820438", + "blocking": false, + "is_translation_enabled": false, + "id": 4723820438, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "F5F8FA", + "created_at": "Thu Jan 07 14:27:14 +0000 2016", + "profile_image_url": "http://pbs.twimg.com/profile_images/685108979660238848/OWa0M1ZT_normal.jpg", + "profile_background_image_url": null, + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2B7BB9", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685108979660238848/OWa0M1ZT_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 40, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 505, + "notifications": false, + "screen_name": "theonly_nithish", + "profile_background_tile": false, + "profile_background_image_url_https": null, + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Sai Nithish Kumar" + }, + { + "time_zone": "Mountain Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -25200, + "id_str": "7604462", + "blocking": false, + "is_translation_enabled": true, + "id": 7604462, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "1A1B1F", + "created_at": "Fri Jul 20 08:11:47 +0000 2007", + "profile_image_url": "http://pbs.twimg.com/profile_images/1893353735/Screen_Shot_2012-03-12_at_11.38.10_PM_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile": false, + "profile_text_color": "666666", + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "statuses_count": 4755, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1893353735/Screen_Shot_2012-03-12_at_11.38.10_PM_normal.png", + "favourites_count": 32453, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 179, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 2162, + "notifications": false, + "screen_name": "mjuarez", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 16, + "is_translator": false, + "name": "mjuarez" + }, + { + "time_zone": "Kolkata", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": 19800, + "id_str": "1165400875", + "blocking": false, + "is_translation_enabled": false, + "id": 1165400875, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Feb 10 09:13:19 +0000 2013", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 115, + "notifications": false, + "screen_name": "ABHIJITIND16", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "ABHIJIT GHOSH" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "4669745534", + "blocking": false, + "is_translation_enabled": false, + "id": 4669745534, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "F5F8FA", + "created_at": "Mon Dec 28 22:19:44 +0000 2015", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "profile_background_image_url": null, + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2B7BB9", + "statuses_count": 740, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "favourites_count": 178, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 50, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 375, + "notifications": false, + "screen_name": "AnnakaliGarland", + "profile_background_tile": false, + "profile_background_image_url_https": null, + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "is_translator": false, + "name": "annakali garland" + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "4419492197", + "following": false, + "friends_count": 19, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "electron.farm/5point9billion", + "url": "https://t.co/BhoTCpphxC", + "expanded_url": "http://electron.farm/5point9billion", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "89C9FA", + "geo_enabled": false, + "followers_count": 537, + "location": "(bot by @genmon)", + "screen_name": "5point9billion", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "5,880,000,000,000", + "profile_use_background_image": false, + "description": "Light left Earth as you were born... I tell you when it reaches the STARS. To start: Follow me + tweet me yr birthday, like this: @5point9billion 18 feb 1978", + "url": "https://t.co/BhoTCpphxC", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675699965193281536/6BQFjS8T_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Dec 08 20:57:03 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675699965193281536/6BQFjS8T_normal.jpg", + "favourites_count": 20, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4419492197, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1128, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4419492197/1449933909", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "49807670", + "following": false, + "friends_count": 433, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 249, + "location": "State College x New Jersey", + "screen_name": "MattTheMeteo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Matt Livingston", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/464184747917602816/yaTApCIP_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jun 22 23:27:18 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/464184747917602816/yaTApCIP_normal.jpeg", + "favourites_count": 4133, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 49807670, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6009, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/49807670/1433784463", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2327981533", + "following": false, + "friends_count": 2685, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000181745497/iSPn5XIa.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 700, + "location": "Northeast Georgia", + "screen_name": "DrMitchem", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Jamie Mitchem", + "profile_use_background_image": true, + "description": "Geographer, Meteorologist, Professor, GIS Guru, Hazards Researcher... I love all things related to Earth, it's atmosphere, mapping, and modeling.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/551280206330482688/WHbiwaZp_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Feb 05 01:05:53 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551280206330482688/WHbiwaZp_normal.jpeg", + "favourites_count": 9550, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000181745497/iSPn5XIa.jpeg", + "default_profile_image": false, + "id": 2327981533, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 4398, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2327981533/1396318777", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "229567163", + "following": false, + "friends_count": 565, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 220, + "location": "Starkville, MS and Seattle, WA", + "screen_name": "kudrios", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "William", + "profile_use_background_image": false, + "description": "Graduate student at Mississippi State studying Meteorology (progressive derechos). Pathways Intern at NWS in Seattle.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/645707556912914432/FoGWS1pU_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Dec 22 18:54:51 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645707556912914432/FoGWS1pU_normal.jpg", + "favourites_count": 1059, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "default_profile_image": false, + "id": 229567163, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1399, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/229567163/1422597481", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4590261747", + "following": false, + "friends_count": 295, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": null, + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2B7BB9", + "geo_enabled": false, + "followers_count": 94, + "location": "Memphis, TN", + "screen_name": "WX_Overlord", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Jeremy Scott Smith", + "profile_use_background_image": true, + "description": "*Senior Meteorologist @ FedEx *Grad Student @ MSU (aviation,NC climate,CAD events,radar) *USAF Meteorologist *Raysweatherdotcom contributor ^Opinions are my own", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680049584207446017/1c85lyET_normal.jpg", + "profile_background_color": "F5F8FA", + "created_at": "Thu Dec 24 15:03:21 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680049584207446017/1c85lyET_normal.jpg", + "favourites_count": 661, + "profile_background_image_url_https": null, + "default_profile_image": false, + "id": 4590261747, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 239, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4590261747/1451170449", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "22215485", + "following": false, + "friends_count": 5424, + "entities": { + "description": { + "urls": [ + { + "display_url": "wxbrad.com", + "url": "https://t.co/oLVgKYPDDU", + "expanded_url": "http://wxbrad.com", + "indices": [ + 118, + 141 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "about.me/wxbrad", + "url": "http://t.co/gYY0LbMcK7", + "expanded_url": "http://about.me/wxbrad", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 43553, + "location": "Charlotte, NC", + "screen_name": "wxbrad", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1522, + "name": "Brad Panovich", + "profile_use_background_image": true, + "description": "Chief Meteorologist in Charlotte, NC, Weather & Tech Geek! Suffering Cleveland Sports Fan & @OhioState grad.I Blog at https://t.co/oLVgKYPDDU #cltwx #ncwx #scwx", + "url": "http://t.co/gYY0LbMcK7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495078741270224896/h4qoVRWY_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Sat Feb 28 01:31:48 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495078741270224896/h4qoVRWY_normal.jpeg", + "favourites_count": 378, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 22215485, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 167262, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22215485/1348111348", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "4701170684", + "blocking": false, + "is_translation_enabled": false, + "id": 4701170684, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "F5F8FA", + "created_at": "Sun Jan 03 07:13:30 +0000 2016", + "profile_image_url": "http://pbs.twimg.com/profile_images/683555003198345218/d1l3pTRq_normal.png", + "profile_background_image_url": null, + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2B7BB9", + "statuses_count": 1, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683555003198345218/d1l3pTRq_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 127, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 958, + "notifications": false, + "screen_name": "Omanko_TV", + "profile_background_tile": false, + "profile_background_image_url_https": null, + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "OmankoTV" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "39297426", + "following": false, + "friends_count": 677, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0099CC", + "geo_enabled": true, + "followers_count": 1334, + "location": "Memphis, TN", + "screen_name": "ChristinaMeek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 51, + "name": "Christina Meek", + "profile_use_background_image": true, + "description": "Director of Communications @memphischamber. Book nerd and TV enthusiast. #GoGrizz!!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661357317213052928/KhMr07gM_normal.jpg", + "profile_background_color": "FFF04D", + "created_at": "Mon May 11 17:37:02 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFF8AD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661357317213052928/KhMr07gM_normal.jpg", + "favourites_count": 1581, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "default_profile_image": false, + "id": 39297426, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3569, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39297426/1419305431", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "28809370", + "following": false, + "friends_count": 897, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "raymondklaassen.com", + "url": "http://t.co/5kothXM0gM", + "expanded_url": "http://raymondklaassen.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/889544435/250ade3a2c396098e2ce710504f48741.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1429, + "location": "Almere, Nederland", + "screen_name": "RaymondKlaassen", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 61, + "name": "Raymond Klaassen", + "profile_use_background_image": false, + "description": "Meteoroloog | Meteorologist | Weerman | Almere | Werkzaam bij Weerplaza | Weer | Meteorologie | Weather | Fun | Photography", + "url": "http://t.co/5kothXM0gM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/625617990835433472/LcUO6TuA_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 04 15:14:42 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "nl", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/625617990835433472/LcUO6TuA_normal.jpg", + "favourites_count": 387, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/889544435/250ade3a2c396098e2ce710504f48741.jpeg", + "default_profile_image": false, + "id": 28809370, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 17191, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/28809370/1445876925", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "9225852", + "following": false, + "friends_count": 2721, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jaredwsmith.com", + "url": "https://t.co/H3c84vOV4n", + "expanded_url": "http://jaredwsmith.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/400727465/cloud-twitter-bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F7F7F7", + "profile_link_color": "C94300", + "geo_enabled": true, + "followers_count": 5847, + "location": "Charleston, SC", + "screen_name": "jaredwsmith", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 412, + "name": "Jared Smith", + "profile_use_background_image": true, + "description": "Consumer dev manager @BoomTownROI, human foil for @chswx's forecast and warning bot, subject of @scoccaro's subtweets. Cam Newton for MVP.", + "url": "https://t.co/H3c84vOV4n", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670651069681111040/OXqUreqR_normal.jpg", + "profile_background_color": "CFCFCF", + "created_at": "Wed Oct 03 14:07:37 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670651069681111040/OXqUreqR_normal.jpg", + "favourites_count": 26436, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/400727465/cloud-twitter-bg.jpg", + "default_profile_image": false, + "id": 9225852, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 38010, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9225852/1450496816", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "55021380", + "following": false, + "friends_count": 447, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kachelmannwetter.com", + "url": "https://t.co/GC84SRoHtG", + "expanded_url": "http://www.kachelmannwetter.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3143, + "location": "Greenville, South Carolina,USA", + "screen_name": "rkrampitz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 91, + "name": "Rebekka Krampitz", + "profile_use_background_image": true, + "description": "German meteorologist and weather presenter // GER- and US-weather // working for @kachelmannwettr, formerly @wdr & SR German Radio", + "url": "https://t.co/GC84SRoHtG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670260651466604544/W2Qgvodi_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jul 08 20:40:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670260651466604544/W2Qgvodi_normal.jpg", + "favourites_count": 1606, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 55021380, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 11986, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/55021380/1437803539", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14900137", + "following": false, + "friends_count": 2063, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/timballisty", + "url": "http://t.co/GppSkK2x8B", + "expanded_url": "http://about.me/timballisty", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/526786960312922113/SeMa2IA6.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "095473", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 4072, + "location": "Asheville, NC", + "screen_name": "IrishEagle", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 275, + "name": "Tim Ballisty", + "profile_use_background_image": true, + "description": "Meteorologist. Free agent. Looking for opportunities to write, teach, and/or create videos about weather. | **On Snapchat** globalweather", + "url": "http://t.co/GppSkK2x8B", + "profile_text_color": "8BB4BA", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/526747372773076992/DCbxH4_e_normal.jpeg", + "profile_background_color": "FFECDD", + "created_at": "Sun May 25 17:04:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/526747372773076992/DCbxH4_e_normal.jpeg", + "favourites_count": 10176, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/526786960312922113/SeMa2IA6.jpeg", + "default_profile_image": false, + "id": 14900137, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 34211, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14900137/1398601473", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "545217129", + "following": false, + "friends_count": 1690, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/494698254/BAR_UNIVERSO_PEQ.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 219, + "location": "Dispersio ex Galitzia", + "screen_name": "_lapsus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Colapsos Mari", + "profile_use_background_image": true, + "description": "Denantes hipis que amor", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2038078140/MENINOS_2_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Apr 04 13:38:31 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2038078140/MENINOS_2_normal.jpg", + "favourites_count": 4933, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/494698254/BAR_UNIVERSO_PEQ.jpg", + "default_profile_image": false, + "id": 545217129, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1976, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/545217129/1357262849", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "55370049", + "following": false, + "friends_count": 18877, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/Dolphin_Project", + "url": "https://t.co/sPMOyr7g8z", + "expanded_url": "https://twitter.com/Dolphin_Project", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586554656/9vd810kck4s2cj02qshk.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "98C293", + "profile_link_color": "498026", + "geo_enabled": false, + "followers_count": 20231, + "location": "\u2756Rustic Mississippi \u2756#MSwx", + "screen_name": "MiddleAmericaMS", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 459, + "name": "MiddleAmericaMS", + "profile_use_background_image": true, + "description": "\u2756News Addict \u2756Journalism \u2756Meteorology \u2756Science \u2756#Eco \u2756Aerospace \u2756#Cars \u2756Progressive \u2756Ex-Conservative \u2756#BlackLivesMatter \u2756#StandwithPP \u2756#DolphinProject", + "url": "https://t.co/sPMOyr7g8z", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/652650153405321216/_XeJoRgz_normal.png", + "profile_background_color": "1F3610", + "created_at": "Thu Jul 09 21:35:27 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/652650153405321216/_XeJoRgz_normal.png", + "favourites_count": 47868, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586554656/9vd810kck4s2cj02qshk.jpeg", + "default_profile_image": false, + "id": 55370049, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 51886, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/55370049/1399450790", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2633765294", + "following": false, + "friends_count": 189, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "soundcloud.com/jamieprado", + "url": "https://t.co/pblDe9VIjQ", + "expanded_url": "http://soundcloud.com/jamieprado", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/488116607554568192/5ADQT1c6.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 637, + "location": "instagram.com/jamieprado ", + "screen_name": "jamiepradomusic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Jamie Prado", + "profile_use_background_image": true, + "description": "bookings/remixes: jamiepradomusic[at]gmail[dot]com", + "url": "https://t.co/pblDe9VIjQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/645617324318326784/juUQ0qTH_normal.jpg", + "profile_background_color": "131516", + "created_at": "Sun Jul 13 00:18:39 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645617324318326784/juUQ0qTH_normal.jpg", + "favourites_count": 1392, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/488116607554568192/5ADQT1c6.jpeg", + "default_profile_image": false, + "id": 2633765294, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2025, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2633765294/1432189004", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3094340773", + "following": false, + "friends_count": 2488, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1067, + "location": "", + "screen_name": "lady_teacher_ja", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "\u5973\u6559\u5e2bAV\u7d39\u4ecb", + "profile_use_background_image": true, + "description": "\u5973\u6559\u5e2b\u30e2\u30ce\u306eAV\u306e\u30b5\u30f3\u30d7\u30eb\u753b\u50cf\u3092tweet\u3057\u307e\u3059\u3002\u753b\u50cf\u306f\uff0cDMM\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059\u3002\u30ea\u30d7\u30e9\u30a4\uff0cDM\u306a\u3069\u306f\u6642\u3005\u3057\u304b\u898b\u307e\u305b\u3093\u3002\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u8fd4\u3057\u307e\u3059\u3002", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/637479710709051392/ASHCnEvJ_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 17 16:49:52 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "ja", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637479710709051392/ASHCnEvJ_normal.jpg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3094340773, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 32175, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3094340773/1440823277", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": false, + "description": "iOS Developer, Software Engineer with a passion for technology and engineering", + "url": "http://t.co/sOJd7iUxIh", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "13815032", + "blocking": false, + "is_translation_enabled": false, + "id": 13815032, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "marknorgren.com", + "url": "http://t.co/sOJd7iUxIh", + "expanded_url": "http://marknorgren.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C6E2EE", + "created_at": "Fri Feb 22 11:51:46 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/3774425615/a3b7bec3e7d3808daf57706d685e780a_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "default_profile": false, + "profile_text_color": "663B12", + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "statuses_count": 1151, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3774425615/a3b7bec3e7d3808daf57706d685e780a_normal.jpeg", + "favourites_count": 4152, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 408, + "blocked_by": false, + "following": false, + "location": "minneapolis", + "muting": false, + "friends_count": 1356, + "notifications": false, + "screen_name": "marknorgren", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 58, + "is_translator": false, + "name": "Mark Norgren" + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "93955588", + "following": false, + "friends_count": 775, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 243, + "location": "Fort Collins, CO", + "screen_name": "JoshFudge", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Josh Fudge", + "profile_use_background_image": false, + "description": "Budget geek, budding beer snob, amateur bbq'er, political independent, fan of the T-wolves, Wild, Brewers, and Badgers.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/615345006019149824/b0-NqnJ1_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Dec 01 22:11:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/615345006019149824/b0-NqnJ1_normal.jpg", + "favourites_count": 311, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 93955588, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 704, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/93955588/1435544658", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3457468761", + "following": false, + "friends_count": 2122, + "entities": { + "description": { + "urls": [ + { + "display_url": "igg.me/at/dotsbook", + "url": "http://t.co/jlpcMkjvgD", + "expanded_url": "http://igg.me/at/dotsbook", + "indices": [ + 104, + 126 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "igg.me/at/dotsbook", + "url": "http://t.co/jlpcMkjvgD", + "expanded_url": "http://igg.me/at/dotsbook", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": false, + "followers_count": 202, + "location": "", + "screen_name": "DotsBookApp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "DotsBook", + "profile_use_background_image": false, + "description": "Dots - game like Go, but faster. \nWe wish make app DotsBook, with the possibility of playing for money. http://t.co/jlpcMkjvgD", + "url": "http://t.co/jlpcMkjvgD", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/636874535870926848/3Z4ZSPcy_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Aug 27 12:14:06 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "ru", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636874535870926848/3Z4ZSPcy_normal.jpg", + "favourites_count": 30, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3457468761, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 18, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3457468761/1440678596", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2788407869", + "following": false, + "friends_count": 1260, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 163, + "location": "", + "screen_name": "puchisaez319", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "delma", + "profile_use_background_image": true, + "description": "Try incorporating an image intoidvery three to four tweets so they're more prominent in a user's feed.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579175981539319808/iXtPRKoN_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Sep 28 03:20:54 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579175981539319808/iXtPRKoN_normal.jpg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2788407869, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1188, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2788407869/1426921285", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16818499", + "following": false, + "friends_count": 2009, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "joelarson.com", + "url": "http://t.co/gfpsnJYe1P", + "expanded_url": "http://joelarson.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/168814328/5150403912_5cabfeb630.jpg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1417, + "location": "San Luis Obispo, CA", + "screen_name": "oeon", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 95, + "name": "joe larson", + "profile_use_background_image": true, + "description": "mapping/GIS, wildland fire, OpenStreetMap, affinity for Brasil.", + "url": "http://t.co/gfpsnJYe1P", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1283181650/bruce-701814_normal.png", + "profile_background_color": "022330", + "created_at": "Fri Oct 17 02:14:47 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1283181650/bruce-701814_normal.png", + "favourites_count": 2261, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/168814328/5150403912_5cabfeb630.jpg", + "default_profile_image": false, + "id": 16818499, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 7243, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16818499/1403928617", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3245485961", + "following": false, + "friends_count": 1247, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 169, + "location": "", + "screen_name": "DJGaetaniWx", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 8, + "name": "DJ Gaetani", + "profile_use_background_image": true, + "description": "Lyndon State College-Atmospheric Science Major", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677729383667400705/8Or5P-Ef_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun May 10 22:22:08 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677729383667400705/8Or5P-Ef_normal.jpg", + "favourites_count": 132, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3245485961, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5215, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3245485961/1431296642", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "3948479302", + "following": false, + "friends_count": 304, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685629324611944448/xHb7pDqh.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "642D8B", + "geo_enabled": false, + "followers_count": 126, + "location": "Hertfordshire", + "screen_name": "NadWGab", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Nadine Gabriel", + "profile_use_background_image": true, + "description": "Geology undergrad with a wide variety of interests, esp. science, museums & music \\m/. Lover of rocks, minerals & geological landscapes.\n'Still waters run deep'", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654275681505906688/_E58e_qu_normal.jpg", + "profile_background_color": "642D8B", + "created_at": "Tue Oct 13 17:35:32 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654275681505906688/_E58e_qu_normal.jpg", + "favourites_count": 512, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685629324611944448/xHb7pDqh.jpg", + "default_profile_image": false, + "id": 3948479302, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 778, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3948479302/1448212965", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3785129235", + "following": false, + "friends_count": 383, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "253055", + "geo_enabled": false, + "followers_count": 86, + "location": "", + "screen_name": "adrielbeaver", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "adriel", + "profile_use_background_image": true, + "description": "I make game art, write stories and paint my face when I'm bored.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674401637419585536/5OI_Ebev_normal.png", + "profile_background_color": "022330", + "created_at": "Sat Sep 26 19:47:42 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674401637419585536/5OI_Ebev_normal.png", + "favourites_count": 2566, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile_image": false, + "id": 3785129235, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1362, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3785129235/1449624990", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "8292812", + "following": false, + "friends_count": 1703, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "alexm.co", + "url": "https://t.co/MgVyEarMiD", + "expanded_url": "http://alexm.co", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000165199016/Yxvo2XII.png", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 912, + "location": "London, probably.", + "screen_name": "thealexmoyler", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 53, + "name": "Alex Moyler", + "profile_use_background_image": true, + "description": "\u201cDo you have a job or is designing it?\u201d Brevity is the soul of wit. Creative-type. (Full-stack Designer + a bit of development). Drums. Christian. Likes Coffee.", + "url": "https://t.co/MgVyEarMiD", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669182940069371904/VAKSWYAq_normal.jpg", + "profile_background_color": "EDF6FF", + "created_at": "Sun Aug 19 22:13:20 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669182940069371904/VAKSWYAq_normal.jpg", + "favourites_count": 1955, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000165199016/Yxvo2XII.png", + "default_profile_image": false, + "id": 8292812, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 18665, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8292812/1442936379", + "is_translator": false + }, + { + "time_zone": "Singapore", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 28800, + "id_str": "91123715", + "following": false, + "friends_count": 332, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000161212580/uCM6Jytw.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "718CF7", + "profile_link_color": "CD4FFF", + "geo_enabled": false, + "followers_count": 459, + "location": "MNL, PH", + "screen_name": "reignbautistaa", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Ulan", + "profile_use_background_image": true, + "description": "Amazed by God's love \u2764\ufe0f | ZCKS '08 | MakSci '12 | BS Stat - UPD", + "url": null, + "profile_text_color": "050505", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/551030160342786048/6nVTm5ei_normal.jpeg", + "profile_background_color": "F0C5E7", + "created_at": "Thu Nov 19 15:20:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551030160342786048/6nVTm5ei_normal.jpeg", + "favourites_count": 5037, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000161212580/uCM6Jytw.jpeg", + "default_profile_image": false, + "id": 91123715, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 13513, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/91123715/1409499331", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "2599147129", + "following": false, + "friends_count": 227, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "16A600", + "geo_enabled": false, + "followers_count": 186, + "location": "Norman, OK", + "screen_name": "plustssn", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Tim Supinie", + "profile_use_background_image": true, + "description": "Weather, Computer, Math, and Music nut. Husband to @HSkywatcher. Ph.D. student at the University of Oklahoma.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/484201367079120896/rofmfUyP_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jul 02 04:47:01 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/484201367079120896/rofmfUyP_normal.jpeg", + "favourites_count": 440, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2599147129, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 917, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2599147129/1447199343", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "114810131", + "following": false, + "friends_count": 330, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/lukemoellman", + "url": "https://t.co/01uaOczpr0", + "expanded_url": "http://instagram.com/lukemoellman", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 637, + "location": "Brooklyn/Miami", + "screen_name": "lukemoellman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 22, + "name": "Luke Moellman", + "profile_use_background_image": true, + "description": "Musician/human. @greatgoodfineok", + "url": "https://t.co/01uaOczpr0", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/514430348022009857/fuRJXUHq_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 16 17:43:23 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/514430348022009857/fuRJXUHq_normal.jpeg", + "favourites_count": 669, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 114810131, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 580, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/114810131/1440552542", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "164640266", + "following": false, + "friends_count": 610, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 201, + "location": "West Lafayette, IN", + "screen_name": "wxward", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Chris Ward", + "profile_use_background_image": true, + "description": "Boilermaker and weather enthusiast, I'm a Purdue alum with a major in Atmospheric Science so expect tweets on Purdue and Indiana weather.", + "url": null, + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3624552161/a2491ca124fd3741e43367d82be055ef_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Fri Jul 09 11:03:56 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3624552161/a2491ca124fd3741e43367d82be055ef_normal.jpeg", + "favourites_count": 851, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile_image": false, + "id": 164640266, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7259, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/164640266/1348540589", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "15984333", + "blocking": false, + "is_translation_enabled": false, + "id": 15984333, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Aug 25 17:32:42 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/274509242/me_for_twitter_normal.JPG", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1285, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/274509242/me_for_twitter_normal.JPG", + "favourites_count": 188, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 164, + "blocked_by": false, + "following": false, + "location": "\u00dcT: 33.99709,-118.455505", + "muting": false, + "friends_count": 1331, + "notifications": false, + "screen_name": "brownonthebeach", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "is_translator": false, + "name": "brownonthebeach" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2302127191", + "following": false, + "friends_count": 481, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 164, + "location": "", + "screen_name": "boygobong", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "boygobong", + "profile_use_background_image": true, + "description": "Temporary sojourner on the tumbleweed racetracks of the Intermountain West.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/614682281383342080/EywuYv-L_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 20 22:42:59 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/614682281383342080/EywuYv-L_normal.png", + "favourites_count": 433, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2302127191, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3246, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2302127191/1446979194", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2394746816", + "following": false, + "friends_count": 554, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445620541932572672/E6RvSrkK.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "12FAAD", + "geo_enabled": true, + "followers_count": 152, + "location": "Tokyo, Japan", + "screen_name": "Vurado_Bokoda", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "ROLZUP / Jelly-hip", + "profile_use_background_image": true, + "description": "high commissioner of u-Star Polymers, holding company of Vurado Bokoda and various other enterprisms/ aka one tentacle of Tentacles of Miracles; Ourang Outang.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/529193058433134592/mmwCmJj__normal.jpeg", + "profile_background_color": "E65F17", + "created_at": "Mon Mar 17 16:49:14 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/529193058433134592/mmwCmJj__normal.jpeg", + "favourites_count": 924, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445620541932572672/E6RvSrkK.jpeg", + "default_profile_image": false, + "id": 2394746816, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 797, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2394746816/1414855058", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17627296", + "following": false, + "friends_count": 387, + "entities": { + "description": { + "urls": [ + { + "display_url": "bit.ly/ctv-pgp-key", + "url": "https://t.co/SJXP4DmVhy", + "expanded_url": "http://bit.ly/ctv-pgp-key", + "indices": [ + 44, + 67 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "toronto.ctvnews.ca", + "url": "https://t.co/1e56YgwOGl", + "expanded_url": "http://toronto.ctvnews.ca", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/386505556/twitter_toronto_bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 2065, + "location": "Toronto, Ontario, Canada", + "screen_name": "iancaldwellCTV", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 75, + "name": "Ian Caldwell", + "profile_use_background_image": true, + "description": "Managing Editor CTV News Toronto | PGP Key: https://t.co/SJXP4DmVhy | PGP Fingerprint=ED95 8E74 2568 EF70 6689 9034 4962 80A5 851C 9A6E", + "url": "https://t.co/1e56YgwOGl", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477033050883104768/Jzda7Qxc_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Nov 25 18:45:24 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477033050883104768/Jzda7Qxc_normal.jpeg", + "favourites_count": 37, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/386505556/twitter_toronto_bg.jpg", + "default_profile_image": false, + "id": 17627296, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7092, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17627296/1448082122", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "203739230", + "following": false, + "friends_count": 851, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164075917/Maya3.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 720, + "location": "Washington DC", + "screen_name": "FatherSandman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "M.V.", + "profile_use_background_image": true, + "description": "Business, politics, science, and technology | Only he who attempts the absurd is capable of achieving the impossible (Miguel de Unamuno)", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/541840496608702464/4n7BmIw__normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Oct 17 00:55:39 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/541840496608702464/4n7BmIw__normal.jpeg", + "favourites_count": 902, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164075917/Maya3.jpg", + "default_profile_image": false, + "id": 203739230, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 3802, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/203739230/1405052641", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4401423261", + "following": false, + "friends_count": 403, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 148, + "location": "", + "screen_name": "dharma_phoenix", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "\u30b8\u30a7\u30f3", + "profile_use_background_image": true, + "description": "building bridges from bones", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683025336456491008/LqNczDk7_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 07 05:16:40 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683025336456491008/LqNczDk7_normal.jpg", + "favourites_count": 1073, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4401423261, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 384, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4401423261/1451680905", + "is_translator": false + }, + { + "time_zone": "Kathmandu", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 20700, + "id_str": "332046484", + "following": false, + "friends_count": 826, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 2917, + "location": "Earth ", + "screen_name": "ghimirerx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "\u0918\u093f\u092e\u093f\u0930\u0947 \u090b\u0937\u093f", + "profile_use_background_image": true, + "description": "I am fully depressed human .", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685427310535651328/yrG3VHaW_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Sat Jul 09 04:01:46 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685427310535651328/yrG3VHaW_normal.jpg", + "favourites_count": 48622, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 332046484, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 39099, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/332046484/1452253580", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "13053492", + "following": false, + "friends_count": 3342, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fkukso.tumblr.com", + "url": "https://t.co/F6iE0ucycl", + "expanded_url": "http://fkukso.tumblr.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572483631906447360/IJgAPPd4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 6924, + "location": "Cambridge, MA", + "screen_name": "fedkukso", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 246, + "name": "Federico Kukso", + "profile_use_background_image": true, + "description": "Science journalist from Argentina | @KSJatMIT fellow | MIT + Harvard | fedkukso@gmail.com | Spa/Eng", + "url": "https://t.co/F6iE0ucycl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/651410182388367360/0M_2iC1e_normal.jpg", + "profile_background_color": "137277", + "created_at": "Mon Feb 04 16:05:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/651410182388367360/0M_2iC1e_normal.jpg", + "favourites_count": 14784, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572483631906447360/IJgAPPd4.jpeg", + "default_profile_image": false, + "id": 13053492, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 54865, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13053492/1431098641", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17148670", + "following": false, + "friends_count": 557, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "panicbomber.com", + "url": "http://t.co/S4YuHpy2yp", + "expanded_url": "http://panicbomber.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/545569810/Twitter-BG.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "5F53A5", + "geo_enabled": true, + "followers_count": 982, + "location": "Brooklyn, NY", + "screen_name": "PanicBomber", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "Panic Bomber", + "profile_use_background_image": true, + "description": "Richard Haig. Musician. See also: @kurtznbomber, @slapn_tickle", + "url": "http://t.co/S4YuHpy2yp", + "profile_text_color": "555555", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/444363954572111872/t0AMPbTG_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Nov 04 04:20:58 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FAE605", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/444363954572111872/t0AMPbTG_normal.jpeg", + "favourites_count": 1248, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/545569810/Twitter-BG.jpg", + "default_profile_image": false, + "id": 17148670, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 9016, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17148670/1398205235", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": false, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2686770356", + "blocking": false, + "is_translation_enabled": false, + "id": 2686770356, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "000000", + "created_at": "Mon Jul 28 06:08:30 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/661217199755923456/6ILN1Vom_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "statuses_count": 6, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661217199755923456/6ILN1Vom_normal.jpg", + "favourites_count": 23, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 77, + "blocked_by": false, + "following": false, + "location": "Karur, Tamil Nadu", + "muting": false, + "friends_count": 747, + "notifications": false, + "screen_name": "sdineshsundhar", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "dinesh" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1730892806", + "following": false, + "friends_count": 196, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 26, + "location": "", + "screen_name": "is300nation", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "name": "\u2606\u5f61\u2605\u5f61\u2606", + "profile_use_background_image": true, + "description": "hunter hinkley. I tell myself I own a racecar. retweeting relevant or irrelevant interests of mine, 24/7/365", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/615296134592860161/93DpT_SH_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Sep 05 05:17:10 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/615296134592860161/93DpT_SH_normal.jpg", + "favourites_count": 4003, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1730892806, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2183, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1730892806/1452306207", + "is_translator": false + }, + { + "time_zone": "Quito", + "profile_use_background_image": true, + "description": "Stochastically relaxing", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "16945822", + "blocking": false, + "is_translation_enabled": false, + "id": 16945822, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "EBC3E1", + "created_at": "Fri Oct 24 08:25:37 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/282212946/zombie_portrait_zoom_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/21963534/haggar_pile_driving_a_shark_twitter.jpg", + "default_profile": false, + "profile_text_color": "0C3E53", + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "FF0000", + "statuses_count": 587, + "profile_sidebar_border_color": "F2E195", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/282212946/zombie_portrait_zoom_normal.jpg", + "favourites_count": 93, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 51, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 158, + "notifications": false, + "screen_name": "SuperElectric", + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/21963534/haggar_pile_driving_a_shark_twitter.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "is_translator": false, + "name": "SuperElectric" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "House,Dub,Tech\r\nhttp://t.co/15uGGB0cbv", + "url": "http://t.co/87HsXR2S0j", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "176829250", + "blocking": false, + "is_translation_enabled": false, + "id": 176829250, + "entities": { + "description": { + "urls": [ + { + "display_url": "myspace.com/549690290", + "url": "http://t.co/15uGGB0cbv", + "expanded_url": "http://www.myspace.com/549690290", + "indices": [ + 16, + 38 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ransomdrop.blogspot.com", + "url": "http://t.co/87HsXR2S0j", + "expanded_url": "http://ransomdrop.blogspot.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Aug 10 15:10:30 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/3589455402/a694f00d92f898d14c8c8a8555b355c6_normal.jpeg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/140356524/tumblr_l1lbtuEjGo1qz5gsco1_500.jpg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 102, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3589455402/a694f00d92f898d14c8c8a8555b355c6_normal.jpeg", + "favourites_count": 1, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 32, + "blocked_by": false, + "following": false, + "location": "Sydney Australia", + "muting": false, + "friends_count": 220, + "notifications": false, + "screen_name": "dkline_rdr", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/140356524/tumblr_l1lbtuEjGo1qz5gsco1_500.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "DK" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "306805040", + "following": false, + "friends_count": 862, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/632546075/jn8pji8iuc9a4qf2dn4b.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 143, + "location": "", + "screen_name": "ealpv", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "\u018eL", + "profile_use_background_image": true, + "description": "*Incomprehensible muttering* I do a lot of things but I don't like talking about them. Necesito el mar porque me ense\u00f1a\n\u2014 Pablo Neruda", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/587289471814467584/8KVKlSJb_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat May 28 13:41:30 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/587289471814467584/8KVKlSJb_normal.jpg", + "favourites_count": 846, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/632546075/jn8pji8iuc9a4qf2dn4b.jpeg", + "default_profile_image": false, + "id": 306805040, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 228, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/306805040/1428855899", + "is_translator": false + }, + { + "time_zone": "Melbourne", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "194096921", + "following": false, + "friends_count": 1136, + "entities": { + "description": { + "urls": [ + { + "display_url": "nightmare.website", + "url": "http://t.co/p5t2rZJajQ", + "expanded_url": "http://nightmare.website", + "indices": [ + 127, + 149 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "memoriata.com", + "url": "http://t.co/JiCyW1dzUZ", + "expanded_url": "http://memoriata.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "67777A", + "geo_enabled": false, + "followers_count": 461, + "location": "Melbourne, Australia", + "screen_name": "dbaker_h", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 34, + "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d 1/2 hiatus", + "profile_use_background_image": false, + "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http://t.co/p5t2rZJajQ", + "url": "http://t.co/JiCyW1dzUZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu Sep 23 12:34:18 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "ru", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", + "favourites_count": 9114, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 194096921, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 12474, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "276080035", + "following": false, + "friends_count": 773, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397294880/yup.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 492, + "location": "Cicero, IN", + "screen_name": "Croupaloop", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Logan Croup", + "profile_use_background_image": true, + "description": "I'm a Meteorology graduate of Ball State University. I hope to do utilize my background in Meteorology for a living one day. #INwx \u263c \u2608 \u2602 \u2601", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/591613152552443904/ebU3kJXD_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 02 16:15:10 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/591613152552443904/ebU3kJXD_normal.jpg", + "favourites_count": 7191, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397294880/yup.jpg", + "default_profile_image": false, + "id": 276080035, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 9888, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/276080035/1398362197", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "AMS Fellow, former NYer & FSU fac; Interim Science Dean & Coord. of Watershed Science Technician program at Lane Community College. Proud Oregon St grad", + "url": "https://t.co/nAkOuaMtAX", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "901037160", + "blocking": false, + "is_translation_enabled": false, + "id": 901037160, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wefollow.com/paul_ruscher", + "url": "https://t.co/nAkOuaMtAX", + "expanded_url": "http://wefollow.com/paul_ruscher", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Oct 24 02:44:50 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/2765556534/36e5a30cae4ca4f6387bc71d6582053f_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 3752, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2765556534/36e5a30cae4ca4f6387bc71d6582053f_normal.jpeg", + "favourites_count": 3128, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 664, + "blocked_by": false, + "following": false, + "location": "Eugene, OR", + "muting": false, + "friends_count": 1677, + "notifications": false, + "screen_name": "paul_ruscher", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "is_translator": false, + "name": "Paul Ruscher" + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": false, + "description": "Junior meteorology major at St. Cloud State. Caffeine consumption expert. Interests include sarcasm, good beer, and tropical meteorology.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "21063476", + "blocking": false, + "is_translation_enabled": false, + "id": 21063476, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "000000", + "created_at": "Tue Feb 17 04:20:28 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/666471436924514304/1Y89hcfR_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "statuses_count": 4106, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666471436924514304/1Y89hcfR_normal.jpg", + "favourites_count": 646, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 291, + "blocked_by": false, + "following": false, + "location": "Saint Cloud, Minnesota", + "muting": false, + "friends_count": 635, + "notifications": false, + "screen_name": "codyyeary", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "is_translator": false, + "name": "Cody Yeary" + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "379399925", + "following": false, + "friends_count": 271, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 67, + "location": "", + "screen_name": "bradfromraleigh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Brad Thompson", + "profile_use_background_image": true, + "description": "Music nerd.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/599713896421699584/ElrGP7KZ_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Sep 24 22:09:23 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/599713896421699584/ElrGP7KZ_normal.jpg", + "favourites_count": 10, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 379399925, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 53, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/379399925/1427109003", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -36000, + "id_str": "74644340", + "blocking": false, + "is_translation_enabled": false, + "id": 74644340, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 16 03:43:19 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/477488342729121794/FMT5I6ev_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 153, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477488342729121794/FMT5I6ev_normal.jpeg", + "favourites_count": 4, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 336, + "blocked_by": false, + "following": false, + "location": "Singapore", + "muting": false, + "friends_count": 3323, + "notifications": false, + "screen_name": "Amarnath1985", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 1, + "is_translator": false, + "name": "Amarnath" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "128280111", + "following": false, + "friends_count": 1959, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "humormonger.com", + "url": "http://t.co/7EZxelmdGv", + "expanded_url": "http://www.humormonger.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 230, + "location": "42\u00b0 27' 40.9N 88\u00b0 11' 02.5W", + "screen_name": "crashalido", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Craig Landon", + "profile_use_background_image": true, + "description": "Show me the magic...", + "url": "http://t.co/7EZxelmdGv", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3166851628/b7cf3f33f79db56f6ac6513a722dd172_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Wed Mar 31 17:17:26 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3166851628/b7cf3f33f79db56f6ac6513a722dd172_normal.jpeg", + "favourites_count": 16662, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile_image": false, + "id": 128280111, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 614, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/128280111/1434311610", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "4463844018", + "blocking": false, + "is_translation_enabled": false, + "id": 4463844018, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Dec 05 12:32:24 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/673118627151806464/cY85fK4m_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673118627151806464/cY85fK4m_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 6, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 94, + "notifications": false, + "screen_name": "helpline_flood", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "helpline@chennai" + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "21465693", + "following": false, + "friends_count": 1822, + "entities": { + "description": { + "urls": [ + { + "display_url": "AthensGaWeather.com", + "url": "https://t.co/cqeGNdOQYB", + "expanded_url": "http://AthensGaWeather.com", + "indices": [ + 125, + 148 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/603393714631745536/uAk-Db8j.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "A0000B", + "geo_enabled": true, + "followers_count": 387, + "location": "Kennesaw, Georgia", + "screen_name": "chris624wx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Chris Davis", + "profile_use_background_image": false, + "description": "UGA Graduate '13. B.S. Geography/Atmospheric Sciences. Studying GIS at Kennesaw State. UGA and ATL sports. Meteorologist for https://t.co/cqeGNdOQYB.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/665367285390004224/d1eLEDLM_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Feb 21 05:22:49 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/665367285390004224/d1eLEDLM_normal.jpg", + "favourites_count": 4939, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/603393714631745536/uAk-Db8j.jpg", + "default_profile_image": false, + "id": 21465693, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7535, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21465693/1449358975", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "I've never won a fight.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "23774785", + "blocking": false, + "is_translation_enabled": false, + "id": 23774785, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 11 15:07:11 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/429707642718543873/xF3Omp-n_normal.jpeg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457010991/x34ccbcb24eb9ae052d1e73349b31594.jpg", + "default_profile": false, + "profile_text_color": "0084B4", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "333333", + "statuses_count": 871, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/429707642718543873/xF3Omp-n_normal.jpeg", + "favourites_count": 9, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 54, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 390, + "notifications": false, + "screen_name": "jeremypeers", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457010991/x34ccbcb24eb9ae052d1e73349b31594.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "jeremy peers" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "4453665134", + "blocking": false, + "is_translation_enabled": false, + "id": 4453665134, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Dec 04 14:17:01 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/672782822122250240/6_4eJ5u3_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/672782822122250240/6_4eJ5u3_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 55, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 229, + "notifications": false, + "screen_name": "SAtmalinga", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "\u0b9a\u0bc7\u0ba4\u0bc1\u0bb0\u0bbe\u0bae\u0ba9\u0bcd \u0b86\u0ba4\u0bcd\u0bae\u0bb2\u0bbf\u0b99\u0bcd\u0b95\u0bae" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "80689975", + "following": false, + "friends_count": 515, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "CC3366", + "geo_enabled": true, + "followers_count": 261, + "location": "always on the move", + "screen_name": "melboban", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Melissa Boban", + "profile_use_background_image": true, + "description": "Hejsan! Chicago \u2192 ILLINI \u2192 Sweden \u2192 STL \u2192 Seattle \u2192 back in #STL. @TheOfficeNBC lover. See you @Barre3", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/525478843063087104/b9zv08t6_normal.jpeg", + "profile_background_color": "D9DEE0", + "created_at": "Wed Oct 07 21:51:51 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/525478843063087104/b9zv08t6_normal.jpeg", + "favourites_count": 637, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "default_profile_image": false, + "id": 80689975, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4999, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/80689975/1429405160", + "is_translator": false + }, + { + "time_zone": "America/Chicago", + "profile_use_background_image": true, + "description": "Consultant", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "1886748272", + "blocking": false, + "is_translation_enabled": false, + "id": 1886748272, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Sep 20 14:36:06 +0000 2013", + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000515171175/6163badf9082cf86b3b7504859e3e4b5_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 95, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000515171175/6163badf9082cf86b3b7504859e3e4b5_normal.png", + "favourites_count": 3251, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 86, + "blocked_by": false, + "following": false, + "location": "Oakville MO", + "muting": false, + "friends_count": 1144, + "notifications": false, + "screen_name": "CellJff", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 1, + "is_translator": false, + "name": "James Ford" + }, + { + "time_zone": "Atlantic Time (Canada)", + "profile_use_background_image": true, + "description": "Most men are fools. -Bias of Priene", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -14400, + "id_str": "392856267", + "blocking": false, + "is_translation_enabled": false, + "id": 392856267, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 17 17:29:22 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/1603845766/Untitled_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 4000, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1603845766/Untitled_normal.png", + "favourites_count": 5821, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 230, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 1300, + "notifications": false, + "screen_name": "Hermodorus", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "is_translator": false, + "name": "Parmenides" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3368767094", + "following": false, + "friends_count": 603, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "m.facebook.com/elamaran.mugun\u2026", + "url": "https://t.co/CNtWjzuSif", + "expanded_url": "https://m.facebook.com/elamaran.mugunthan/about?nocollections=1&refid=17&ref=bookmarks#education", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 56, + "location": "", + "screen_name": "yogeshkumar871", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "\u0b87\u0bb0\u0bbe.\u0baf\u0bcb\u0b95\u0bc7\u0bb7\u0bcd", + "profile_use_background_image": true, + "description": "\u0ba8\u0bbf\u0ba9\u0bc8\u0baa\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bb0\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b95\u0bbf\u0bb1\u0bc1\u0b95\u0bcd\u0b95 \u0b87\u0b99\u0bcd\u0b95\u0bc7 \u0b85\u0bb5\u0bcd\u0bb5\u0bb3\u0bb5\u0bc7 !!", + "url": "https://t.co/CNtWjzuSif", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/672202344935743489/4Y67Dmod_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Aug 28 08:48:49 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/672202344935743489/4Y67Dmod_normal.jpg", + "favourites_count": 4, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3368767094, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 51, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3368767094/1449080843", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1125887570", + "following": false, + "friends_count": 694, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "WeatherForecastSolutions.com", + "url": "http://t.co/JkZGP7CflP", + "expanded_url": "http://www.WeatherForecastSolutions.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 126, + "location": "", + "screen_name": "WxForecastSolns", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "WxForecastSolns", + "profile_use_background_image": true, + "description": "Your Source For Specialized Forecasts", + "url": "http://t.co/JkZGP7CflP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655929981525229569/NCVRptd-_normal.png", + "profile_background_color": "131516", + "created_at": "Sun Jan 27 18:47:49 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655929981525229569/NCVRptd-_normal.png", + "favourites_count": 189, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 1125887570, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 483, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1125887570/1404246066", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "272214659", + "blocking": false, + "is_translation_enabled": false, + "id": 272214659, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 26 02:11:56 +0000 2011", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", + "favourites_count": 22, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 11, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 370, + "notifications": false, + "screen_name": "BlueEyedLo", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Lauren Burcea" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "4422918679", + "blocking": false, + "is_translation_enabled": false, + "id": 4422918679, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 01 18:00:42 +0000 2015", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en-gb", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 0, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 2, + "notifications": false, + "screen_name": "RakeshAnanthag1", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Rakesh Ananthagiri" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1191110737", + "following": false, + "friends_count": 4121, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 856, + "location": "", + "screen_name": "HandyIvonne", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Handy Ivonne", + "profile_use_background_image": true, + "description": "No vivo culpando a nadie, es labor del Tribunal. Informo sin emitir juicios de valor, ni condenas.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663826751185883136/4hfqcieD_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Feb 17 20:42:45 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663826751185883136/4hfqcieD_normal.jpg", + "favourites_count": 1142, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1191110737, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 16051, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1191110737/1451758949", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4418338394", + "following": false, + "friends_count": 737, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 196, + "location": "", + "screen_name": "RainsChennai", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Chennai Rains Live", + "profile_use_background_image": true, + "description": "ChennaiRains | Latest Traffic updates | Rain news | Rain photography", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671615672049274880/puFv_xdm_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 01 07:54:31 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671615672049274880/puFv_xdm_normal.jpg", + "favourites_count": 167, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4418338394, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 437, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4418338394/1448960653", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "11745072", + "following": false, + "friends_count": 802, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "graham-freeman.info", + "url": "https://t.co/weCrUKWPHu", + "expanded_url": "https://graham-freeman.info", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "0021FF", + "geo_enabled": false, + "followers_count": 302, + "location": "Berkeley, California", + "screen_name": "gjmf", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Graham Freeman", + "profile_use_background_image": true, + "description": "Personal: I believe in humanity (and e-bikes) Professional: Providing excellent IT to do-gooders via @get_nerdy.", + "url": "https://t.co/weCrUKWPHu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1101117841/gf-backyard-med_normal.jpg", + "profile_background_color": "709397", + "created_at": "Wed Jan 02 07:34:40 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1101117841/gf-backyard-med_normal.jpg", + "favourites_count": 673, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "default_profile_image": false, + "id": 11745072, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3586, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11745072/1413958199", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "3305403882", + "blocking": false, + "is_translation_enabled": false, + "id": 3305403882, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Aug 03 20:45:22 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/628313752266407936/q4VXb5aM_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 16, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/628313752266407936/q4VXb5aM_normal.jpg", + "favourites_count": 5, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 26, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 51, + "notifications": false, + "screen_name": "therealBenCote", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Ben Cote" + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1582483380", + "following": false, + "friends_count": 252, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "13CFF0", + "geo_enabled": false, + "followers_count": 190, + "location": "heading towards earth", + "screen_name": "PlutoBees", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Pluto Bees", + "profile_use_background_image": true, + "description": "We are the Collective Beeonian Empire of Pluto. Fear us.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667875227376840704/sC92cfwC_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jul 10 07:47:08 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667875227376840704/sC92cfwC_normal.jpg", + "favourites_count": 2710, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1582483380, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6285, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1582483380/1448068723", + "is_translator": false + }, + { + "time_zone": "America/Denver", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "17348471", + "following": false, + "friends_count": 1430, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "impossiblegeology.net", + "url": "http://t.co/ZQKPzKTbsQ", + "expanded_url": "http://impossiblegeology.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/709980532/1583f97a3a7d8b31e56da58798e90745.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "8809F0", + "geo_enabled": true, + "followers_count": 1473, + "location": "Flagstaff, USA", + "screen_name": "drjerque", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 118, + "name": "Kyle House", + "profile_use_background_image": true, + "description": "Geologic mapper and researcher of late Cenozoic desert fluvial and lacustrine systems.", + "url": "http://t.co/ZQKPzKTbsQ", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631483820982734849/EdE7iOn4_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Nov 12 20:53:33 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631483820982734849/EdE7iOn4_normal.jpg", + "favourites_count": 611, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/709980532/1583f97a3a7d8b31e56da58798e90745.jpeg", + "default_profile_image": false, + "id": 17348471, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4288, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17348471/1413945851", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "profile_use_background_image": false, + "description": "Happy.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -25200, + "id_str": "287492581", + "blocking": false, + "is_translation_enabled": false, + "id": 287492581, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Apr 25 03:11:40 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/685232739633659904/rTLPuI0f_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 36697, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685232739633659904/rTLPuI0f_normal.jpg", + "favourites_count": 3220, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 558, + "blocked_by": false, + "following": false, + "location": "Denver, CO", + "muting": false, + "friends_count": 507, + "notifications": false, + "screen_name": "NiftyMinaj", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 14, + "is_translator": false, + "name": "FN-6969" + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "1368499430", + "following": false, + "friends_count": 549, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wunderground.com/blog/sullivanw\u2026", + "url": "http://t.co/ADDfVXV9dB", + "expanded_url": "http://www.wunderground.com/blog/sullivanweather/show.html", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/571582549751652352/UV7VLXYJ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "E04F0B", + "geo_enabled": true, + "followers_count": 390, + "location": "Westtown, NY", + "screen_name": "RealSullivanWx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "name": "Tom Woods", + "profile_use_background_image": true, + "description": "Disseminator of weather, extreme or mundane. Prognostocator of Northeast US weather. Local legend.", + "url": "http://t.co/ADDfVXV9dB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/432362706713071616/RZ0bfE1I_normal.jpeg", + "profile_background_color": "7136A8", + "created_at": "Sun Apr 21 02:40:01 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/432362706713071616/RZ0bfE1I_normal.jpeg", + "favourites_count": 1884, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/571582549751652352/UV7VLXYJ.jpeg", + "default_profile_image": false, + "id": 1368499430, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5056, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1368499430/1437540110", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "89205511", + "following": false, + "friends_count": 153, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ggor.de", + "url": "https://t.co/QncXAff6Lw", + "expanded_url": "http://ggor.de", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000024534539/c9a22aeaac8a80b2fa329e342e6d06ed.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "4A913C", + "geo_enabled": false, + "followers_count": 207, + "location": "Berlin", + "screen_name": "greg00r", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 7, + "name": "Gregor Weichbrodt", + "profile_use_background_image": false, + "description": "Code & concept @0x0a_li", + "url": "https://t.co/QncXAff6Lw", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683468108351279104/VPYWHMQs_normal.jpg", + "profile_background_color": "4A913C", + "created_at": "Wed Nov 11 15:14:10 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683468108351279104/VPYWHMQs_normal.jpg", + "favourites_count": 543, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000024534539/c9a22aeaac8a80b2fa329e342e6d06ed.jpeg", + "default_profile_image": false, + "id": 89205511, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 102, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/89205511/1444490275", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "529148230", + "following": false, + "friends_count": 438, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hdevalence.ca", + "url": "https://t.co/XnDQKAOpR8", + "expanded_url": "http://www.hdevalence.ca", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 345, + "location": "1.6m above sea level", + "screen_name": "hdevalence", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "GF(\u00af\\_(\u30c4)_/\u00af)", + "profile_use_background_image": true, + "description": "PhD student at TU/e, interested in pqcrypto, privacy, freedom, mathematics, & the number 24", + "url": "https://t.co/XnDQKAOpR8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/634941626805301248/IykdcFae_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Mar 19 06:12:13 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/634941626805301248/IykdcFae_normal.jpg", + "favourites_count": 5302, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 529148230, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4440, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/529148230/1405021573", + "is_translator": false + }, + { + "time_zone": "London", + "profile_use_background_image": true, + "description": "Security Engineer. \nA RT or link is not an endorsement. \nViews are not related to my employer.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 0, + "id_str": "171290875", + "blocking": false, + "is_translation_enabled": false, + "id": 171290875, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "131516", + "created_at": "Tue Jul 27 00:57:14 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/590994307340959744/h5op8_1a_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "statuses_count": 3780, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/590994307340959744/h5op8_1a_normal.png", + "favourites_count": 725, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 379, + "blocked_by": false, + "following": false, + "location": "127.0.0.1", + "muting": false, + "friends_count": 853, + "notifications": false, + "screen_name": "HumanActuator", + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "is_translator": false, + "name": "Human Actuator" + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "2787955681", + "following": false, + "friends_count": 1280, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 314, + "location": "Paris, Ile-de-France", + "screen_name": "EKMeteo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Etienne Kapikian", + "profile_use_background_image": false, + "description": "Pr\u00e9visionniste @meteofrance", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/635800902113325056/2mU4zry2_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Sep 03 12:50:59 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/635800902113325056/2mU4zry2_normal.jpg", + "favourites_count": 896, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2787955681, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 416, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2787955681/1409832424", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Tweetin' since '76", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2400504589", + "blocking": false, + "is_translation_enabled": false, + "id": 2400504589, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 20 21:53:06 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/681954296384991232/8Bxeybdb_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 18610, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681954296384991232/8Bxeybdb_normal.jpg", + "favourites_count": 3178, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 396, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 897, + "notifications": false, + "screen_name": "leisure3000", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "is_translator": false, + "name": "Lee" + }, + { + "time_zone": "Sydney", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "458113065", + "following": false, + "friends_count": 2026, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1044, + "location": "Tamworth, NSW, 2340, Aus", + "screen_name": "2340weather", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Tamworth Weather", + "profile_use_background_image": true, + "description": "Weather Watcher in the Tamworth region.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1740801984/Tamworth-Weather_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jan 08 05:54:27 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1740801984/Tamworth-Weather_normal.jpg", + "favourites_count": 630, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 458113065, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7411, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/458113065/1376012987", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2699327418", + "following": false, + "friends_count": 389, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "brianjenquist.wordpress.com", + "url": "http://t.co/nDNwPkQPgB", + "expanded_url": "http://brianjenquist.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1258, + "location": "UofArizona . SantaFeInstitute", + "screen_name": "bjenquist", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 51, + "name": "Brian J. Enquist", + "profile_use_background_image": true, + "description": "Global Ecology, Ecophys, Macroecology, Scaling. Proud parent, Sonoran telemarker. Dreams of tropical trees, charismatic megaflora, equations, and botanical data", + "url": "http://t.co/nDNwPkQPgB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495349657023700992/mb1dwT-4_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Aug 01 23:14:21 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495349657023700992/mb1dwT-4_normal.jpeg", + "favourites_count": 2463, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2699327418, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2757, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699327418/1406999005", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "2783948456", + "blocking": false, + "is_translation_enabled": false, + "id": 2783948456, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 01 11:21:23 +0000 2014", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 2, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", + "favourites_count": 3, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 49, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 999, + "notifications": false, + "screen_name": "bmani_77", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Balasubramani" + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "160971973", + "following": false, + "friends_count": 1057, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Lakers.com", + "url": "https://t.co/x18wAeX8Og", + "expanded_url": "http://Lakers.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 380, + "location": "Philippines", + "screen_name": "angelreality", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "\u24d0\u24dd\u24d6\u24d4\u24db", + "profile_use_background_image": true, + "description": "Gadget-Obsessed, Tech-Lover, Geek, Nerd, Techie. iOS, Android User. Follow me for #TechNews #SocialMedia #PoliticalViews #DisneyFrozen #Laker4Life", + "url": "https://t.co/x18wAeX8Og", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000766994701/f13cfcea050466d38f6ccb47c6620a1a_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Tue Jun 29 16:45:54 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000766994701/f13cfcea050466d38f6ccb47c6620a1a_normal.jpeg", + "favourites_count": 1460, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 160971973, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 14031, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/160971973/1384975627", + "is_translator": false + }, + { + "time_zone": "Chennai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "122634479", + "following": false, + "friends_count": 798, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/82776489/ar_rahman09.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 19, + "location": "INDIA", + "screen_name": "omprakashit117", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "name": "omprakash", + "profile_use_background_image": true, + "description": "I am a student. I am eager to search new knoweldge and technology used in current world", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/750008387/DIN1_normal.JPG", + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 13 10:51:35 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/750008387/DIN1_normal.JPG", + "favourites_count": 94, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/82776489/ar_rahman09.jpg", + "default_profile_image": false, + "id": 122634479, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 60, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/122634479/1400160672", + "is_translator": false + }, + { + "time_zone": "London", + "profile_use_background_image": false, + "description": "Defn: Tavern consisting of a building with a bar and public rooms. These are random names chosen from 110539 words @niggydotcom", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 0, + "id_str": "3337081857", + "blocking": false, + "is_translation_enabled": false, + "id": 3337081857, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "000000", + "created_at": "Sat Jun 20 15:50:01 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/618483281009504256/pPRHTTgG_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "CF5300", + "statuses_count": 5966, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618483281009504256/pPRHTTgG_normal.jpg", + "favourites_count": 41, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 795, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 4224, + "notifications": false, + "screen_name": "pubnames", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "is_translator": false, + "name": "Pub Names" + }, + { + "time_zone": "Hawaii", + "profile_use_background_image": true, + "description": "I #stand4life! Meteorologist in Hawaii since 2000 & going @UHManoa for M.S. SFX explosives tech for CAF--I like big booms!", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -36000, + "id_str": "141057092", + "blocking": false, + "is_translation_enabled": false, + "id": 141057092, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri May 07 02:35:55 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/1743058941/eod_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99142340/midland08b.jpg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 29375, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1743058941/eod_normal.jpg", + "favourites_count": 2983, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 1621, + "blocked_by": false, + "following": false, + "location": "Honolulu, HI", + "muting": false, + "friends_count": 1335, + "notifications": false, + "screen_name": "firebomb56", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99142340/midland08b.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 136, + "is_translator": false, + "name": "Robert Ballard" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "458956673", + "blocking": false, + "is_translation_enabled": false, + "id": 458956673, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 09 03:59:14 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/506968366574092288/MRDqbVQi_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 89, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/506968366574092288/MRDqbVQi_normal.jpeg", + "favourites_count": 37, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 51, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 402, + "notifications": false, + "screen_name": "adamatic23", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Adam J" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "606117040", + "blocking": false, + "is_translation_enabled": false, + "id": 606117040, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 12 07:33:29 +0000 2012", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 4, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 165, + "notifications": false, + "screen_name": "H0LYT0LED0", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "is_translator": false, + "name": "PAPPY" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "148615685", + "following": false, + "friends_count": 573, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115403460/79db2255376b86a76c67636558add8a0.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FCFFE5", + "profile_link_color": "406B6F", + "geo_enabled": false, + "followers_count": 71, + "location": "Chicagoland", + "screen_name": "ShaneMEagan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Shane Eagan", + "profile_use_background_image": false, + "description": "Weather forecaster | Meteorology grad student NIU | Valpo grad | Red Wings and ND aficionado", + "url": null, + "profile_text_color": "4A4949", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/509820954654953472/hz7n8fsV_normal.jpeg", + "profile_background_color": "ABB8C2", + "created_at": "Thu May 27 04:35:25 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/509820954654953472/hz7n8fsV_normal.jpeg", + "favourites_count": 41, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115403460/79db2255376b86a76c67636558add8a0.jpeg", + "default_profile_image": false, + "id": 148615685, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 138, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/148615685/1448434645", + "is_translator": false + }, + { + "time_zone": "Asia/Calcutta", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "1721259391", + "following": false, + "friends_count": 1417, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072477131/4ad230ff9ba7c9ed60e4dc796bbb2941.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 98, + "location": "13.067858,80.243947", + "screen_name": "prakash49024821", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "p r a k a s h", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/583242267017621504/XA5J0EM-_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 02 05:01:40 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/583242267017621504/XA5J0EM-_normal.jpg", + "favourites_count": 5, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072477131/4ad230ff9ba7c9ed60e4dc796bbb2941.jpeg", + "default_profile_image": false, + "id": 1721259391, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 112, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1721259391/1427890049", + "is_translator": false + }, + { + "time_zone": "International Date Line West", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -39600, + "id_str": "538171425", + "following": false, + "friends_count": 322, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/580917392345157633/ZsuJn14-.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "993333", + "geo_enabled": false, + "followers_count": 277, + "location": "it's a long way down", + "screen_name": "errinuu", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "name": "Patris Everdeen", + "profile_use_background_image": true, + "description": "fettered", + "url": null, + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684687004299214848/7ev_eVhd_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Mar 27 11:35:46 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684687004299214848/7ev_eVhd_normal.jpg", + "favourites_count": 2614, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/580917392345157633/ZsuJn14-.jpg", + "default_profile_image": false, + "id": 538171425, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6460, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/538171425/1448701580", + "is_translator": false + }, + { + "time_zone": "Beijing", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 28800, + "id_str": "1564994707", + "following": false, + "friends_count": 204, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/Sonic_The_Edge\u2026", + "url": "https://t.co/0DcGQ0d6jV", + "expanded_url": "https://twitter.com/Sonic_The_Edgehog", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/620864149107576832/6Ouugc1Y.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 74, + "location": "Republic of the Philippines", + "screen_name": "Edwarven_Sniper", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "name": "Eduard De Guzman", + "profile_use_background_image": true, + "description": "Math Major kuno (Inutusang bumili ng suka na ngayon ay naiiyak sa hirap ng Math.)", + "url": "https://t.co/0DcGQ0d6jV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/612053970077417472/E1JbN0-m_normal.jpg", + "profile_background_color": "4A913C", + "created_at": "Wed Jul 03 05:51:25 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/612053970077417472/E1JbN0-m_normal.jpg", + "favourites_count": 1673, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/620864149107576832/6Ouugc1Y.png", + "default_profile_image": false, + "id": 1564994707, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 3138, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564994707/1390008636", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2705762744", + "following": false, + "friends_count": 486, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 143, + "location": "Missouri", + "screen_name": "lunaitesrock", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 20, + "name": "Karl", + "profile_use_background_image": true, + "description": "Interests include planetary geology, meteorite hunting and collecting, hiking, camping. Formerly a research chemist... Now I kill poison ivy.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/497858100905664512/LJ3FLzwT_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Aug 04 05:32:23 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/497858100905664512/LJ3FLzwT_normal.jpeg", + "favourites_count": 2667, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2705762744, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5286, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705762744/1408035154", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "122111712", + "following": false, + "friends_count": 226, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/82553561/switz_view.JPG", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "9500B3", + "geo_enabled": false, + "followers_count": 73, + "location": "", + "screen_name": "bellabear7", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Jo Wade", + "profile_use_background_image": true, + "description": "I retweet what I find interesting, not what I agree with. All views my own.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/519411989869654016/2dk59ai9_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 11 16:40:55 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/519411989869654016/2dk59ai9_normal.jpeg", + "favourites_count": 389, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/82553561/switz_view.JPG", + "default_profile_image": false, + "id": 122111712, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2173, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/122111712/1408370535", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "720794066", + "following": false, + "friends_count": 808, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jordanowx.com", + "url": "https://t.co/Oqno7oJyRp", + "expanded_url": "http://jordanowx.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 589, + "location": "Oklahoma", + "screen_name": "JordanoWX", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 35, + "name": "Jordan Overton", + "profile_use_background_image": true, + "description": "Former Weather Intern/Producer for @Newson6 and @ktulnews. @NWCNorman Tour Guide. @OUNightly Weather. @OUDaily Thunder Writer. Opinions are my own.", + "url": "https://t.co/Oqno7oJyRp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663540879072886784/IvmvhwJ6_normal.jpg", + "profile_background_color": "022330", + "created_at": "Fri Jul 27 20:12:11 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663540879072886784/IvmvhwJ6_normal.jpg", + "favourites_count": 1628, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile_image": false, + "id": 720794066, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6135, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/720794066/1438271265", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "40845892", + "following": false, + "friends_count": 2197, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22470571/bground.gif", + "notifications": false, + "profile_sidebar_fill_color": "EAEDD5", + "profile_link_color": "FA7E3C", + "geo_enabled": false, + "followers_count": 770, + "location": "", + "screen_name": "_vecs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 22, + "name": "vecs ", + "profile_use_background_image": true, + "description": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043c\u0438\u043a\u0440\u043e\u0431\u043b\u043e\u0433. \u041d\u0430\u0443\u043a\u0430 \u0438 \u0442\u0435\u0445\u043d\u0438\u043a\u0430, \u0438\u0441\u0442\u043e\u0440\u0438\u044f, \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u0430, \u043a\u043e\u0441\u043c\u043e\u0441, \u0433\u0435\u043e\u043b\u043e\u0433\u0438\u044f, \u043f\u0430\u043b\u0435\u043e\u043d\u0430\u0443\u043a\u0438, \u043b\u0438\u043d\u0433\u0432\u0438\u0441\u0442\u0438\u043a\u0430, IT, \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u0440\u0430\u0434\u0438\u043e\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u0438\u043a\u0430, \u0412\u041f\u041a, \u0420\u043e\u0441\u0441\u0438\u044f, \u0410\u0437\u0438\u044f, \u0444\u043e\u0442\u043e", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/472091542484549633/Zq-BpJTw_normal.png", + "profile_background_color": "FCFCF4", + "created_at": "Mon May 18 09:50:09 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "ACADA1", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/472091542484549633/Zq-BpJTw_normal.png", + "favourites_count": 9294, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22470571/bground.gif", + "default_profile_image": false, + "id": 40845892, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 5288, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/40845892/1401389448", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "213950250", + "following": false, + "friends_count": 1401, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/170116886/Miss_State_logo.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 620, + "location": "Flowood", + "screen_name": "BulldogWX_0610", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "David Cox", + "profile_use_background_image": true, + "description": "NWS Jackson meteorologist. Got an amazing wife! MSU sports fanatic. Go Dawgs! MSU Alum (B.S. '10, M.S. '12). Love severe wx/hurricanes. All views are my own.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655850522277212160/peMZV3Tb_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Nov 10 05:16:55 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655850522277212160/peMZV3Tb_normal.jpg", + "favourites_count": 14767, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/170116886/Miss_State_logo.gif", + "default_profile_image": false, + "id": 213950250, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 10289, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/213950250/1445201925", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "11392632", + "following": false, + "friends_count": 2149, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/sgtgary", + "url": "https://t.co/LB5LuXnk2g", + "expanded_url": "http://about.me/sgtgary", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9D0020", + "geo_enabled": true, + "followers_count": 1717, + "location": "Papillion, Nebraska, USA", + "screen_name": "sgtgary", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 128, + "name": "Gary \u039a0\u03b2\u2c62\u0259 \u2614\ufe0f", + "profile_use_background_image": false, + "description": "Science & Weather geek \u2022 Cybersecurity \u2022 \u2708\ufe0fUSAF vet \u2022 ex aviation forecaster \u2022 557WW \u2022 Waze \u2022 INTJ #GoPackGo #InfoSec \u2b50\ufe0f", + "url": "https://t.co/LB5LuXnk2g", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680245909217775616/X1sOO_Q1_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Dec 21 02:44:45 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680245909217775616/X1sOO_Q1_normal.jpg", + "favourites_count": 140, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", + "default_profile_image": false, + "id": 11392632, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 35461, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11392632/1446542435", + "is_translator": false + }, + { + "time_zone": "Berlin", + "profile_use_background_image": true, + "description": "Science Leipzig", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": 3600, + "id_str": "276570860", + "blocking": false, + "is_translation_enabled": false, + "id": 276570860, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Apr 03 16:46:58 +0000 2011", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "de", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "favourites_count": 170, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 17, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 363, + "notifications": false, + "screen_name": "eugene33xx", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "E. Brigger" + }, + { + "time_zone": "Singapore", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 28800, + "id_str": "14563783", + "following": false, + "friends_count": 887, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/tutusandpointes", + "url": "http://t.co/UtNJqB6Su6", + "expanded_url": "http://instagram.com/tutusandpointes", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/642380381/x3516e3c298a8ebe33c26cd65fff99b0.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "85130F", + "profile_link_color": "C90E69", + "geo_enabled": true, + "followers_count": 780, + "location": "Catipunan", + "screen_name": "tutusandpointes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Christine Saavedra", + "profile_use_background_image": true, + "description": "Saved by grace. Permanent resident of the Rizal Library. Former dancer. Caffeine junkie. Night owl. Blue eagle. | snapchat: kurisitini", + "url": "http://t.co/UtNJqB6Su6", + "profile_text_color": "F40A09", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683596819901710336/V2y5-A0G_normal.png", + "profile_background_color": "F7B75E", + "created_at": "Mon Apr 28 01:20:27 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683596819901710336/V2y5-A0G_normal.png", + "favourites_count": 19849, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/642380381/x3516e3c298a8ebe33c26cd65fff99b0.jpeg", + "default_profile_image": false, + "id": 14563783, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 43946, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14563783/1367062983", + "is_translator": false + }, + { + "time_zone": "Krasnoyarsk", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 25200, + "id_str": "2583649117", + "following": false, + "friends_count": 589, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "2C1F3C", + "geo_enabled": true, + "followers_count": 235, + "location": "Quezon City", + "screen_name": "masterJCboy", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 2, + "name": "enchong hindee", + "profile_use_background_image": false, + "description": "How do you become someone that great, that brave, that selfless?\nI guess you can only try.\n-Hiccup, HTTYD2", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683830799720812544/peYQpaxm_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Jun 23 08:35:43 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683830799720812544/peYQpaxm_normal.jpg", + "favourites_count": 6233, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2583649117, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9066, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2583649117/1429024977", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2860150381", + "following": false, + "friends_count": 133, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pixiv.me/aviphilia", + "url": "https://t.co/GpjnzCwdNa", + "expanded_url": "http://pixiv.me/aviphilia", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 86, + "location": "\u5b87\u5b99\u5916\u751f\u547d", + "screen_name": "aviphilia", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "\u304b\u3054\u306e\u9ce5\u72c2", + "profile_use_background_image": true, + "description": "(\u73fe\u5728\u4f4e\u6d6e\u4e0a)\u5929\u6587\u30fb\u5730\u5b66\u77e5\u8b58\u30bc\u30ed\u3002 \u5730\u7403\u30ea\u30e7\u30ca\u3068\u3044\u3046\u30de\u30a4\u30ca\u30fc\u55dc\u597d\u306e\u5984\u57f7\u3092\u767a\u4fe1\u3059\u308b\u305f\u3081\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3042\u308b\u3002 \u5730\u7403\u306a\u3069\u306e\u5929\u4f53\u306b\u5bfe\u3057\u3066\u9177\u3044\u8a71\u3084R18\u306a\u8a71\u3070\u304b\u308a\u3057\u3066\u3044\u308b\u306e\u3067\u6ce8\u610f", + "url": "https://t.co/GpjnzCwdNa", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/586025068385275906/zlPMFl4l_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Oct 17 11:27:45 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "ja", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/586025068385275906/zlPMFl4l_normal.jpg", + "favourites_count": 4453, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2860150381, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6025, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2860150381/1429085019", + "is_translator": false + }, + { + "time_zone": "UTC", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "4010618585", + "following": false, + "friends_count": 4, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "russ.garrett.co.uk/bots/dscovr_ep\u2026", + "url": "https://t.co/LhctEpMH4C", + "expanded_url": "https://russ.garrett.co.uk/bots/dscovr_epic.html", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1513, + "location": "Earth-Sun L1", + "screen_name": "dscovr_epic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 64, + "name": "DSCOVR:EPIC", + "profile_use_background_image": false, + "description": "Pictures from the Earth Polychromatic Camera on the DSCOVR spacecraft. (An unofficial bot by @russss)", + "url": "https://t.co/LhctEpMH4C", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/656868470106267648/mc8SJQZc_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Oct 21 16:20:49 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/656868470106267648/mc8SJQZc_normal.png", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4010618585, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 631, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4010618585/1445444630", + "is_translator": false + }, + { + "time_zone": "Berlin", + "profile_use_background_image": true, + "description": "Hacker", + "url": "http://t.co/wfhb6wxy2Y", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 3600, + "id_str": "224266304", + "blocking": false, + "is_translation_enabled": false, + "id": 224266304, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "perldition.org", + "url": "http://t.co/wfhb6wxy2Y", + "expanded_url": "http://perldition.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Dec 08 15:35:47 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/1228169354/gravatar200_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 843, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1228169354/gravatar200_normal.jpg", + "favourites_count": 568, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 618, + "blocked_by": false, + "following": false, + "location": "PDX", + "muting": false, + "friends_count": 354, + "notifications": false, + "screen_name": "perldition", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "is_translator": false, + "name": "Florian Ragwitz" + }, + { + "time_zone": "London", + "profile_use_background_image": true, + "description": "a dissident technologist. a great big harmless thing", + "url": "http://t.co/t31MsTE1wo", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 0, + "id_str": "6110942", + "blocking": false, + "is_translation_enabled": false, + "id": 6110942, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amran.org.uk", + "url": "http://t.co/t31MsTE1wo", + "expanded_url": "http://amran.org.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "1A1B1F", + "created_at": "Thu May 17 15:17:13 +0000 2007", + "profile_image_url": "http://pbs.twimg.com/profile_images/18302762/monkey_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile": false, + "profile_text_color": "666666", + "profile_sidebar_fill_color": "252429", + "profile_link_color": "4A913C", + "statuses_count": 3053, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/18302762/monkey_normal.jpg", + "favourites_count": 560, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 261, + "blocked_by": false, + "following": false, + "location": "nl uk", + "muting": false, + "friends_count": 379, + "notifications": false, + "screen_name": "amx109", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "is_translator": false, + "name": "amran \u0639\u0645\u0631\u0627\u0646" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14949027", + "following": false, + "friends_count": 2091, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/88283587/Tape_Gradient.JPG", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 663, + "location": "Arlington, VA", + "screen_name": "rseymour", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 34, + "name": "Rich Seymour", + "profile_use_background_image": true, + "description": "Staying on top of things when I should be getting to the bottom of things. Generic Person @EndgameInc", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/445265058541883392/NsGr8pCu_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Thu May 29 22:27:34 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/445265058541883392/NsGr8pCu_normal.jpeg", + "favourites_count": 9033, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/88283587/Tape_Gradient.JPG", + "default_profile_image": false, + "id": 14949027, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4492, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14949027/1399349066", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "591360459", + "following": false, + "friends_count": 1438, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/lbs_ebooks", + "url": "http://t.co/L0n9SbXlFa", + "expanded_url": "http://twitter.com/lbs_ebooks", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 426, + "location": "", + "screen_name": "LetsBeSapid", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 20, + "name": "Let's Be Sapid", + "profile_use_background_image": true, + "description": "Good enough probably. Talk to my ebooks bot, @lbs_ebooks. Also talk to my ebooks bot's ebooks bot, @lbsebooksebooks", + "url": "http://t.co/L0n9SbXlFa", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2472927875/p246b2ui8rzqfdto8dq6_normal.png", + "profile_background_color": "022330", + "created_at": "Sat May 26 21:47:24 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2472927875/p246b2ui8rzqfdto8dq6_normal.png", + "favourites_count": 38391, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile_image": false, + "id": 591360459, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 38532, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/591360459/1437446142", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "168912732", + "following": false, + "friends_count": 2945, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/wx_fish", + "url": "https://t.co/nYUoNgFtK1", + "expanded_url": "http://www.instagram.com/wx_fish", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000032341821/c34eb864df33736572467f06defb8eb4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "236CA3", + "geo_enabled": true, + "followers_count": 29532, + "location": "Standing in the rain/snow/wind", + "screen_name": "ericfisher", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1154, + "name": "Eric Fisher", + "profile_use_background_image": true, + "description": "Emmy Award winning Chief Meteorologist @CBSBoston w/reports for @CBSNews. Beer snob, runner, mediocre golfer. Deep greens & blues are the colors I choose.", + "url": "https://t.co/nYUoNgFtK1", + "profile_text_color": "003399", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/501545509215952896/2KDNBEQ4_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Jul 21 02:35:23 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/501545509215952896/2KDNBEQ4_normal.jpeg", + "favourites_count": 4345, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000032341821/c34eb864df33736572467f06defb8eb4.jpeg", + "default_profile_image": false, + "id": 168912732, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 61142, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/168912732/1435413654", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "15455096", + "following": false, + "friends_count": 873, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "scarlettinfinity.deviantart.com", + "url": "http://t.co/SxvaMh9Nlo", + "expanded_url": "http://scarlettinfinity.deviantart.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 307, + "location": "UK", + "screen_name": "almostarobot", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Hayley Young", + "profile_use_background_image": true, + "description": "Interested in everything, science, nature, photography, politics...", + "url": "http://t.co/SxvaMh9Nlo", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1883849158/may_2011_082_700px_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Jul 16 14:53:05 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1883849158/may_2011_082_700px_normal.jpg", + "favourites_count": 3071, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 15455096, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7266, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15455096/1404913947", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Weather geek!", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "3327128172", + "blocking": false, + "is_translation_enabled": false, + "id": 3327128172, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Aug 23 20:40:58 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/657360086050848769/C5QVrWVZ_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 404, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657360086050848769/C5QVrWVZ_normal.jpg", + "favourites_count": 683, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 30, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 127, + "notifications": false, + "screen_name": "WeatherHacker", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "is_translator": false, + "name": "Matthew" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18109928", + "following": false, + "friends_count": 1475, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chrisdean.org", + "url": "http://t.co/NhadxAzOQq", + "expanded_url": "http://chrisdean.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624754964414361601/CWSwhHmP.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "238500", + "geo_enabled": false, + "followers_count": 389, + "location": "Indianapolis, Indiana, USA", + "screen_name": "DeanChris", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 12, + "name": "Chris Dean", + "profile_use_background_image": true, + "description": "Christian, husband, father x 7, evangelist, pastor & church planter @GreatMercyIndy in downtown Indy & Plainfield. Grateful to be used by the Lord!", + "url": "http://t.co/NhadxAzOQq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648892274697334784/XLN0VQzD_normal.png", + "profile_background_color": "FFF04D", + "created_at": "Sun Dec 14 02:54:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648892274697334784/XLN0VQzD_normal.png", + "favourites_count": 388, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624754964414361601/CWSwhHmP.jpg", + "default_profile_image": false, + "id": 18109928, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 2214, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18109928/1402123612", + "is_translator": false + }, + { + "time_zone": "Bogota", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2391639956", + "following": false, + "friends_count": 437, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "imarpe.gob.pe/enso/Inicio/Te\u2026", + "url": "http://t.co/VN17BZeJ9d", + "expanded_url": "http://www.imarpe.gob.pe/enso/Inicio/Tema1.htm", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 605, + "location": "Monitoreo y Analisis ENSO", + "screen_name": "Mario___Ramirez", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Mario Ramirez", + "profile_use_background_image": true, + "description": "IMARPE\nLab Sensores Remotos y SIG", + "url": "http://t.co/VN17BZeJ9d", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/444962203028840448/V2vB_DHU_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 15 21:26:33 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/444962203028840448/V2vB_DHU_normal.jpeg", + "favourites_count": 2305, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2391639956, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6016, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2391639956/1399302782", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "277405536", + "following": false, + "friends_count": 476, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "flickr.com/photos/celestm\u2026", + "url": "https://t.co/YN2PjER7xd", + "expanded_url": "http://www.flickr.com/photos/celestman/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 529, + "location": "Lisburn, Northern Ireland", + "screen_name": "Celestman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 22, + "name": "Ralph Smyth", + "profile_use_background_image": true, + "description": "Husband, dad and brother.Amateur astronomer and astroimager - just wish our weather was better! Analytical chemist in another life. Hello Twitter world!", + "url": "https://t.co/YN2PjER7xd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664709983519510530/9uE7tZ8J_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 05 09:14:19 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664709983519510530/9uE7tZ8J_normal.jpg", + "favourites_count": 4398, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 277405536, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5108, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/277405536/1452217211", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "41290294", + "following": false, + "friends_count": 111, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "asimplerandomview.blogspot.com", + "url": "http://t.co/saMEpHSYYQ", + "expanded_url": "http://asimplerandomview.blogspot.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 109, + "location": "", + "screen_name": "thatothertom2", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "tom f", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/saMEpHSYYQ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683050707042238465/cW3olyVw_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed May 20 03:49:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683050707042238465/cW3olyVw_normal.jpg", + "favourites_count": 34, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 41290294, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 6793, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41290294/1449795082", + "is_translator": false + }, + { + "time_zone": "Santiago", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "3112987229", + "following": false, + "friends_count": 2394, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/580617071886647296/B56fJQkK.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "860808", + "geo_enabled": true, + "followers_count": 814, + "location": "Chile", + "screen_name": "GeaEnMovimiento", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "RecursosGea", + "profile_use_background_image": true, + "description": "Comparto info vital sobre amenazas naturales y antr\u00f3picas. Sin fronteras para el conocimiento y la cooperaci\u00f3n. #Recop2016 / #VnChillan", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/668960898313289728/Mr1yPxVM_normal.png", + "profile_background_color": "860808", + "created_at": "Wed Mar 25 04:18:30 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668960898313289728/Mr1yPxVM_normal.png", + "favourites_count": 1660, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/580617071886647296/B56fJQkK.png", + "default_profile_image": false, + "id": 3112987229, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 14682, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3112987229/1450632293", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "247877648", + "following": false, + "friends_count": 321, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/205264047/puffy.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "CCC0CB", + "profile_link_color": "462D57", + "geo_enabled": false, + "followers_count": 223, + "location": "adrift in the cosmos ", + "screen_name": "hjertebraaten", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "Jennifer", + "profile_use_background_image": true, + "description": "Choose your own adventure.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668530312448610304/Ut3EuMh8_normal.png", + "profile_background_color": "403340", + "created_at": "Sat Feb 05 19:24:31 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "63A327", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668530312448610304/Ut3EuMh8_normal.png", + "favourites_count": 3058, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/205264047/puffy.jpeg", + "default_profile_image": false, + "id": 247877648, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9086, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/247877648/1420338841", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "55621506", + "following": false, + "friends_count": 1676, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DAA520", + "geo_enabled": true, + "followers_count": 801, + "location": "\u00dcT: 43.06752,-89.413976", + "screen_name": "gstalnaker", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 93, + "name": "Guy Stalnaker", + "profile_use_background_image": false, + "description": "Midwest IT guy @ large public university. Out. Liberal. Composer. Baseball Rules. Partner of a Jack Russell terrier, my best friend. Life's good. RT != Endorsed", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/419693052488208386/2PLuieI9_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Jul 10 17:51:09 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/419693052488208386/2PLuieI9_normal.jpeg", + "favourites_count": 8218, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile_image": false, + "id": 55621506, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 61554, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/55621506/1445655686", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2506667875", + "following": false, + "friends_count": 704, + "entities": { + "description": { + "urls": [ + { + "display_url": "yesthisislouis.com", + "url": "https://t.co/sxkHB8RzBR", + "expanded_url": "http://yesthisislouis.com", + "indices": [ + 51, + 74 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mountainmoonvolcano.com", + "url": "https://t.co/XvTQbyYdz0", + "expanded_url": "http://mountainmoonvolcano.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": false, + "followers_count": 106, + "location": "New Zealand", + "screen_name": "Luilueloo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Louis New Graham", + "profile_use_background_image": false, + "description": "Cartoonist, Kiwi designer, Programming enthusiast. https://t.co/sxkHB8RzBR", + "url": "https://t.co/XvTQbyYdz0", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/577275007375572992/eCt-1V6E_normal.png", + "profile_background_color": "000000", + "created_at": "Mon May 19 07:05:25 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/577275007375572992/eCt-1V6E_normal.png", + "favourites_count": 1281, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2506667875, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 696, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2506667875/1426467864", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17586062", + "following": false, + "friends_count": 2578, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Instagram.com/swvlswvl", + "url": "https://t.co/0TM7uFRsiI", + "expanded_url": "http://Instagram.com/swvlswvl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/452503740709236736/w78rAxbT.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "2369F5", + "geo_enabled": true, + "followers_count": 6221, + "location": "NYC", + "screen_name": "simonwilliam", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 205, + "name": "Simon V-L", + "profile_use_background_image": true, + "description": "Simon Vozick-Levinson // Senior Editor at Rolling Stone // Opinions expressed here are solely my own, and are probably ill-advised", + "url": "https://t.co/0TM7uFRsiI", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641297594665275392/vk7RrIyp_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Mon Nov 24 05:04:53 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641297594665275392/vk7RrIyp_normal.jpg", + "favourites_count": 22457, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452503740709236736/w78rAxbT.jpeg", + "default_profile_image": false, + "id": 17586062, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 19350, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17586062/1441648578", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Mogul, First Rapper Ever To Write And Publish A Book at 19, Film Score, Composer, Producer,Director/Photo/Branding/Marketing/Historical Online Figure #BASED", + "url": "https://t.co/zoy27sPkw9", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "37836873", + "blocking": false, + "is_translation_enabled": true, + "id": 37836873, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/lilbpack1", + "url": "https://t.co/zoy27sPkw9", + "expanded_url": "http://www.youtube.com/lilbpack1", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "9AE4E8", + "created_at": "Tue May 05 02:41:57 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/1248509273/39198_1571854573776_1157872547_31663366_5779158_n_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/130048781/lilb.jpg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "statuses_count": 148379, + "profile_sidebar_border_color": "12FFA0", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1248509273/39198_1571854573776_1157872547_31663366_5779158_n_normal.jpg", + "favourites_count": 97566, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1208962, + "blocked_by": false, + "following": false, + "location": "United States", + "muting": false, + "friends_count": 1324956, + "notifications": false, + "screen_name": "LILBTHEBASEDGOD", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/130048781/lilb.jpg", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5995, + "is_translator": false, + "name": "Lil B THE BASEDGOD" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2705140969", + "following": false, + "friends_count": 55, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cloudsao.com", + "url": "http://t.co/4aL8Yi332e", + "expanded_url": "http://www.cloudsao.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "333333", + "geo_enabled": false, + "followers_count": 67, + "location": "New York City", + "screen_name": "Clouds_AO", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Clouds AO", + "profile_use_background_image": false, + "description": "Architectural design firm", + "url": "http://t.co/4aL8Yi332e", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/496073400717029377/azK0sGfC_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Aug 03 23:08:31 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/496073400717029377/azK0sGfC_normal.jpeg", + "favourites_count": 113, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2705140969, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 131, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705140969/1407108154", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2905586254", + "following": false, + "friends_count": 676, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "00CCFF", + "geo_enabled": false, + "followers_count": 207, + "location": "44\u00b038\u203252\u2033N 63\u00b034\u203217\u2033W", + "screen_name": "ReidJustinReid", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Justin Reid", + "profile_use_background_image": false, + "description": "Father, stargazer, Simpsons aficionado, RASC member yelling at clouds", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682983061877846016/Y5srwYnp_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Dec 04 20:30:01 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682983061877846016/Y5srwYnp_normal.jpg", + "favourites_count": 4759, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2905586254, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1399, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2905586254/1447518056", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "139846889", + "following": false, + "friends_count": 318, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "madeofoak.com", + "url": "http://t.co/siqwmpcKnG", + "expanded_url": "http://madeofoak.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2734, + "location": "Durham, NC", + "screen_name": "MADEOFOAK", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 56, + "name": "Nicholas Sanborn", + "profile_use_background_image": true, + "description": "Musician from Wisconsin.", + "url": "http://t.co/siqwmpcKnG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/636208356085075968/jf-nqzHU_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon May 03 21:24:49 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636208356085075968/jf-nqzHU_normal.jpg", + "favourites_count": 1164, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 139846889, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4210, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/139846889/1440518867", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "41056561", + "following": false, + "friends_count": 508, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "skfleegel.com", + "url": "http://t.co/4nLHZBOUgT", + "expanded_url": "http://www.skfleegel.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 145, + "location": "Marquette, MI", + "screen_name": "fleegs79", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Steven Fleegel", + "profile_use_background_image": true, + "description": "Meteorologist with NWS Marquette. The opinions expressed here represent my own and not those of my employer.", + "url": "http://t.co/4nLHZBOUgT", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000327286379/a11369df218087b804f4f2317fd47fea_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Tue May 19 04:42:42 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000327286379/a11369df218087b804f4f2317fd47fea_normal.jpeg", + "favourites_count": 74, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 41056561, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3173, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41056561/1349566035", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3182410381", + "following": false, + "friends_count": 393, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 55, + "location": "", + "screen_name": "StalcupWx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Mark Stalcup", + "profile_use_background_image": true, + "description": "Senior at OU School of Meteorology.....lover of the outdoors, meteorology, aviation, astronomy, & learning all I can about the Earth. Tweets aren't endorsements", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648349956277821440/fwHIMYg0_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat May 02 03:41:14 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648349956277821440/fwHIMYg0_normal.jpg", + "favourites_count": 46, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3182410381, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 202, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3182410381/1439686224", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6853512", + "following": false, + "friends_count": 525, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fakeisthenewreal.org", + "url": "http://t.co/f0bQmbmzOl", + "expanded_url": "http://fakeisthenewreal.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378868151/yr-lame-for-looking-at-the-source_just-kidding-i-love-you.jpg", + "notifications": false, + "profile_sidebar_fill_color": "CDCECB", + "profile_link_color": "393C37", + "geo_enabled": false, + "followers_count": 1525, + "location": "Gowanus supralittoral", + "screen_name": "fitnr", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 68, + "name": "Neil Freeman", + "profile_use_background_image": true, + "description": "vague but honest", + "url": "http://t.co/f0bQmbmzOl", + "profile_text_color": "808282", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631233557797560320/AhmwePZB_normal.jpg", + "profile_background_color": "CFCBCF", + "created_at": "Sat Jun 16 14:38:25 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631233557797560320/AhmwePZB_normal.jpg", + "favourites_count": 3674, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378868151/yr-lame-for-looking-at-the-source_just-kidding-i-love-you.jpg", + "default_profile_image": false, + "id": 6853512, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 6605, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6853512/1402520873", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "139571192", + "following": false, + "friends_count": 206, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "superiorhurter.bandcamp.com", + "url": "https://t.co/QgKbAsOXKm", + "expanded_url": "http://superiorhurter.bandcamp.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445747348157652992/0ZyL_u8C.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "89C9FA", + "geo_enabled": false, + "followers_count": 920, + "location": "r b y t", + "screen_name": "s_afari_al", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "s.al", + "profile_use_background_image": true, + "description": "form of aquemini @yomilo", + "url": "https://t.co/QgKbAsOXKm", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/640574816387510272/FjN5rwFb_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Mon May 03 01:41:59 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/640574816387510272/FjN5rwFb_normal.jpg", + "favourites_count": 6549, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445747348157652992/0ZyL_u8C.jpeg", + "default_profile_image": false, + "id": 139571192, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 6595, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/139571192/1440909415", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15880126", + "following": false, + "friends_count": 327, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "anthropoceneacolyte.wordpress.com", + "url": "https://t.co/byYpZBZmXy", + "expanded_url": "https://anthropoceneacolyte.wordpress.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/716467183/fb58c9fe4e02170833eea5791998597e.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 135, + "location": "Los Angeles, CA, USA", + "screen_name": "stevexe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 22, + "name": "Steve Pestana", + "profile_use_background_image": true, + "description": "geo/space science student\n- periodic contributor to @orbitalpodcast, @N_O_D_E_, @scifimethods", + "url": "https://t.co/byYpZBZmXy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674318267645739012/APDgNXZE_normal.png", + "profile_background_color": "000000", + "created_at": "Sun Aug 17 06:24:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674318267645739012/APDgNXZE_normal.png", + "favourites_count": 1920, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/716467183/fb58c9fe4e02170833eea5791998597e.jpeg", + "default_profile_image": false, + "id": 15880126, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3801, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15880126/1428362360", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4129078452", + "following": false, + "friends_count": 1499, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/channel/UC8LAt\u2026", + "url": "https://t.co/28MBl9rV4H", + "expanded_url": "https://www.youtube.com/channel/UC8LAtTGVLfYuvTmHO2FDiGw/feed", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 390, + "location": "", + "screen_name": "thewxjunkies", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "The Weather Junkies", + "profile_use_background_image": true, + "description": "Discussing the latest buzz in the weather enterprise every Wednesday. Hosted by @tylerjankoski & @weatherdak.", + "url": "https://t.co/28MBl9rV4H", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669373015965179904/Q67wX_O3_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Nov 04 23:57:21 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669373015965179904/Q67wX_O3_normal.jpg", + "favourites_count": 129, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4129078452, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 129, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4129078452/1446684941", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2569287804", + "following": false, + "friends_count": 255, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mattchernos.wordpress.com", + "url": "http://t.co/0cugbRjXjD", + "expanded_url": "http://mattchernos.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "51613A", + "geo_enabled": true, + "followers_count": 84, + "location": "Calgary, Alberta", + "screen_name": "mchernos", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Matt Chernos", + "profile_use_background_image": true, + "description": "I like mountains, hydrology, science, weather, and hockey. I also enjoy silly internet comments. Other things too, probably.", + "url": "http://t.co/0cugbRjXjD", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661617460664123392/cBX4LpNW_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jun 15 16:38:15 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661617460664123392/cBX4LpNW_normal.jpg", + "favourites_count": 1051, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2569287804, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1729, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569287804/1446576984", + "is_translator": false + }, + { + "time_zone": "Rome", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "165379510", + "following": false, + "friends_count": 725, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "superinternet.cc", + "url": "http://t.co/imctRm7Fox", + "expanded_url": "http://superinternet.cc", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/454801493409816576/cB0YX0yM.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "FFCC00", + "geo_enabled": false, + "followers_count": 176, + "location": "", + "screen_name": "frescogusto", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "pietro parisi", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/imctRm7Fox", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/605813185900249090/Q6o8zS4j_normal.png", + "profile_background_color": "FFCC00", + "created_at": "Sun Jul 11 11:48:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/605813185900249090/Q6o8zS4j_normal.png", + "favourites_count": 1057, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/454801493409816576/cB0YX0yM.png", + "default_profile_image": false, + "id": 165379510, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1315, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/165379510/1397268149", + "is_translator": false + }, + { + "time_zone": "Kathmandu", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 20700, + "id_str": "495295826", + "following": false, + "friends_count": 619, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "josephmichaelshea.wordpress.com", + "url": "http://t.co/KWmR9e4pQ1", + "expanded_url": "http://www.josephmichaelshea.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/438974413526929408/aXZKh6VA.png", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": true, + "followers_count": 508, + "location": "Kathmandu, Nepal", + "screen_name": "JosephShea", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 34, + "name": "Joseph Shea", + "profile_use_background_image": true, + "description": "Glacier hydrologist with ICIMOD (Kathmandu), musician, Dad, Canadian. I make graphs.", + "url": "http://t.co/KWmR9e4pQ1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/532494289767395328/kxEv-hkA_normal.jpeg", + "profile_background_color": "709397", + "created_at": "Fri Feb 17 20:23:05 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/532494289767395328/kxEv-hkA_normal.jpeg", + "favourites_count": 558, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/438974413526929408/aXZKh6VA.png", + "default_profile_image": false, + "id": 495295826, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1772, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/495295826/1438236675", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "I am, at the moment, a two-dimensional representation of a featureless white ovoid with a satin finish, otherwise in a blind panic about climate change.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "706529336", + "blocking": false, + "is_translation_enabled": false, + "id": 706529336, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Jul 20 05:47:49 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/587581125117095937/76jzWnpX_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 20866, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/587581125117095937/76jzWnpX_normal.png", + "favourites_count": 310, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 647, + "blocked_by": false, + "following": false, + "location": "San Francisco Bay Area", + "muting": false, + "friends_count": 1466, + "notifications": false, + "screen_name": "stevebloom55", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "is_translator": false, + "name": "Steve Bloom" + }, + { + "time_zone": "Sydney", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "18007241", + "following": false, + "friends_count": 1591, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57241147/xdb0969a99c32dcc2e92472706a4fe26.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "131516", + "geo_enabled": true, + "followers_count": 901, + "location": "Newcastle, Australia", + "screen_name": "philhenley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 69, + "name": "philhenley", + "profile_use_background_image": false, + "description": "Geospatializer. Wearer Of Glasses.", + "url": null, + "profile_text_color": "009999", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/463557329296711680/EeM5URfy_normal.jpeg", + "profile_background_color": "050505", + "created_at": "Wed Dec 10 00:22:13 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/463557329296711680/EeM5URfy_normal.jpeg", + "favourites_count": 69, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57241147/xdb0969a99c32dcc2e92472706a4fe26.png", + "default_profile_image": false, + "id": 18007241, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 16878, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18007241/1399355770", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "274870271", + "following": false, + "friends_count": 580, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "homepages.see.leeds.ac.uk/~earlgb/", + "url": "http://t.co/uO309Sl594", + "expanded_url": "http://homepages.see.leeds.ac.uk/~earlgb/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/677815544951775232/vFVbdxak.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 986, + "location": "GFZ Potsdam + Uni Leeds, UK", + "screen_name": "LianeGBenning", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 86, + "name": "Liane G. Benning", + "profile_use_background_image": true, + "description": "#science geek; #biogeochemist; workoholic; love #extremes; prolific reader; world traveler; and whatever else I feel like being. opinions only mine!", + "url": "http://t.co/uO309Sl594", + "profile_text_color": "1A181A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667723721680035840/kbsOPRg5_normal.jpg", + "profile_background_color": "131511", + "created_at": "Thu Mar 31 05:27:15 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "6B6768", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667723721680035840/kbsOPRg5_normal.jpg", + "favourites_count": 313, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/677815544951775232/vFVbdxak.jpg", + "default_profile_image": false, + "id": 274870271, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7403, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/274870271/1448013606", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "232550589", + "following": false, + "friends_count": 898, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "all-geo.org/metageologist", + "url": "http://t.co/VUvlDN0oN9", + "expanded_url": "http://all-geo.org/metageologist", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1306, + "location": "England", + "screen_name": "metageologist", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 56, + "name": "Simon Wellings", + "profile_use_background_image": true, + "description": "I write about the Earth Sciences, especially mountains, diamonds, the geology of Britain and Ireland and anything else that grabs my imagination. PhD. trained", + "url": "http://t.co/VUvlDN0oN9", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/438755187251875840/y5TkSSPF_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Dec 31 13:41:18 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/438755187251875840/y5TkSSPF_normal.jpeg", + "favourites_count": 1064, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 232550589, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2807, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/232550589/1370459087", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1101632707", + "following": false, + "friends_count": 559, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blogs.agu.org/tremblingearth", + "url": "http://t.co/WBkbt8X7Fb", + "expanded_url": "http://blogs.agu.org/tremblingearth", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "17574E", + "geo_enabled": true, + "followers_count": 1081, + "location": "Oxford, UK", + "screen_name": "TTremblingEarth", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 68, + "name": "Austin Elliott", + "profile_use_background_image": true, + "description": "paleoseismologist, active tectonicist; postdoc with @NERC_COMET at @OxUniEarthSci, earthquake aficionado, AGU blogger, and I luuuuvs maps", + "url": "http://t.co/WBkbt8X7Fb", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3738082030/08160f3de98ef43ee6bce6175b3b52d3_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Jan 18 18:07:43 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3738082030/08160f3de98ef43ee6bce6175b3b52d3_normal.jpeg", + "favourites_count": 2963, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 1101632707, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4961, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1101632707/1398276781", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2882699721", + "following": false, + "friends_count": 469, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "atmos.albany.edu/student/ppapin/", + "url": "https://t.co/HZceKYq3ut", + "expanded_url": "http://www.atmos.albany.edu/student/ppapin/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 519, + "location": "Albany, NY", + "screen_name": "pppapin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "Philippe Papin", + "profile_use_background_image": false, + "description": "Ph.D. candidate @UAlbany studying atmospheric science. Random weather and climate musings posted here. All thoughts expressed are my own.", + "url": "https://t.co/HZceKYq3ut", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/534733433344253952/SJIvQ3VP_normal.png", + "profile_background_color": "000000", + "created_at": "Tue Nov 18 15:20:35 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534733433344253952/SJIvQ3VP_normal.png", + "favourites_count": 567, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2882699721, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 957, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2882699721/1416325842", + "is_translator": false + }, + { + "time_zone": "Irkutsk", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 28800, + "id_str": "2318553062", + "following": false, + "friends_count": 625, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 838, + "location": "Kumamoto, Kyushu, Japan", + "screen_name": "hepomodeler", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 64, + "name": "Weather Mizumoto", + "profile_use_background_image": true, + "description": "wx enthusiast/forecaster. severe wx, local short, mid-long term forecasts. winterfan. space. photo. math physics. bowling. foods. \u30d7\u30e9\u30e2\u30c7\u30eb\u521d\u5fc3\u8005\u30fb\u5199\u771f\u30fb\u6c17\u8c61\u4e88\u5831\u58eb", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/549843721877872640/Yfw28hJD_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Jan 30 09:02:51 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "ja", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/549843721877872640/Yfw28hJD_normal.png", + "favourites_count": 8607, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2318553062, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 16052, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2318553062/1445787947", + "is_translator": false + }, + { + "time_zone": "Berlin", + "profile_use_background_image": true, + "description": "Die neuesten Informationen zu Wetter, Unwetter und Klima von http://t.co/IG1J3oeRSc! Impressum: http://t.co/0rfHr30Mmv", + "url": "http://t.co/H5M20nqBxQ", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 3600, + "id_str": "88697994", + "blocking": false, + "is_translation_enabled": false, + "id": 88697994, + "entities": { + "description": { + "urls": [ + { + "display_url": "wetterkontor.de", + "url": "http://t.co/IG1J3oeRSc", + "expanded_url": "http://www.wetterkontor.de", + "indices": [ + 61, + 83 + ] + }, + { + "display_url": "wetterkontor.de/index.asp?id=i\u2026", + "url": "http://t.co/0rfHr30Mmv", + "expanded_url": "http://www.wetterkontor.de/index.asp?id=impressum", + "indices": [ + 104, + 126 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "wetterkontor.de", + "url": "http://t.co/H5M20nqBxQ", + "expanded_url": "http://www.wetterkontor.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 09 16:17:40 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/3352921689/ebec0596b02efe436fd8b517e89d4f21_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 25750, + "profile_sidebar_border_color": "C0DEED", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3352921689/ebec0596b02efe436fd8b517e89d4f21_normal.jpeg", + "favourites_count": 24, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 2574, + "blocked_by": false, + "following": false, + "location": "Ingelheim (Rhein) Germany", + "muting": false, + "friends_count": 2077, + "notifications": false, + "screen_name": "WetterKontor", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 135, + "is_translator": false, + "name": "WetterKontor" + }, + { + "time_zone": "Indiana (East)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "36152676", + "following": false, + "friends_count": 678, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "joshhoke.bandcamp.com/track/peace-on\u2026", + "url": "https://t.co/jPRahbVWp6", + "expanded_url": "https://joshhoke.bandcamp.com/track/peace-on-earth", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/169716102/x9a437f23dcc6e19c3cf7d70a076f8da.png", + "notifications": false, + "profile_sidebar_fill_color": "392D26", + "profile_link_color": "B6DB40", + "geo_enabled": true, + "followers_count": 1245, + "location": "", + "screen_name": "joshhoke", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Josh Hoke", + "profile_use_background_image": true, + "description": "lyrical gangsta. better off driving a truck in memphis. new single Peace on Earth available now!", + "url": "https://t.co/jPRahbVWp6", + "profile_text_color": "78B385", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/665187511715545090/1sq2vNCr_normal.jpg", + "profile_background_color": "B8C18C", + "created_at": "Tue Apr 28 19:14:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "8F8816", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/665187511715545090/1sq2vNCr_normal.jpg", + "favourites_count": 2033, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/169716102/x9a437f23dcc6e19c3cf7d70a076f8da.png", + "default_profile_image": false, + "id": 36152676, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 10588, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/36152676/1442701585", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "524402811", + "following": false, + "friends_count": 2092, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "global2global.wordpress.com", + "url": "https://t.co/PdaCKQcwwh", + "expanded_url": "https://global2global.wordpress.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 214, + "location": "Europe", + "screen_name": "PatrikWiniger", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Patrik Winiger", + "profile_use_background_image": true, + "description": "Science, Politics & Freefight - Scientist & slow blogger", + "url": "https://t.co/PdaCKQcwwh", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1896513135/workin_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Mar 14 14:28:30 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1896513135/workin_normal.jpg", + "favourites_count": 1222, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 524402811, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1458, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/524402811/1452089005", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "Father, meteorologist, grocery cart returner", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "16317677", + "blocking": false, + "is_translation_enabled": false, + "id": 16317677, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 16 21:12:09 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/633086569038020608/-NcofOuX_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 77, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/633086569038020608/-NcofOuX_normal.jpg", + "favourites_count": 2, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 83, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 540, + "notifications": false, + "screen_name": "stevegregg", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "Steve Gregg" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "48319877", + "following": false, + "friends_count": 1195, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 122, + "location": "Maine", + "screen_name": "psillin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Peter Sillin", + "profile_use_background_image": true, + "description": "teacher, dad, reader, prodigal pianist, ambivalent runner, aspiring tango dancer", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1365006948/187130_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 18 11:25:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1365006948/187130_normal.jpg", + "favourites_count": 309, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 48319877, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2831, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/48319877/1357586835", + "is_translator": false + }, + { + "time_zone": "Dublin", + "profile_use_background_image": true, + "description": "New User", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 0, + "id_str": "592035334", + "blocking": false, + "is_translation_enabled": false, + "id": 592035334, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun May 27 18:26:25 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/2255273591/forest_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 86, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2255273591/forest_normal.jpg", + "favourites_count": 15, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 18, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 160, + "notifications": false, + "screen_name": "2point71828", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Si Laf" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "442318323", + "blocking": false, + "is_translation_enabled": false, + "id": 442318323, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Dec 21 00:27:00 +0000 2011", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 200, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "favourites_count": 25, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 6, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 128, + "notifications": false, + "screen_name": "lolverap", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "is_translator": false, + "name": "lolvera" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Astrophysicist, studying the interstellar medium and star formation in our Galaxy and beyond.", + "url": "http://t.co/u51n7WOHVT", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2833658451", + "blocking": false, + "is_translation_enabled": false, + "id": 2833658451, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "obs.u-bordeaux1.fr/radio/gratier", + "url": "http://t.co/u51n7WOHVT", + "expanded_url": "http://www.obs.u-bordeaux1.fr/radio/gratier", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu Oct 16 09:03:04 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/522675890153861120/_mnbCjPQ_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 39, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522675890153861120/_mnbCjPQ_normal.png", + "favourites_count": 2, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 19, + "blocked_by": false, + "following": false, + "location": "Bordeaux", + "muting": false, + "friends_count": 47, + "notifications": false, + "screen_name": "PierreGratier", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Pierre Gratier" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "781206042", + "blocking": false, + "is_translation_enabled": false, + "id": 781206042, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Aug 25 22:24:43 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000764164107/96189923e6a3eb8f9d4c68bf14cf53b0_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 48, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000764164107/96189923e6a3eb8f9d4c68bf14cf53b0_normal.jpeg", + "favourites_count": 32, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 26, + "blocked_by": false, + "following": false, + "location": "Wisconsin", + "muting": false, + "friends_count": 172, + "notifications": false, + "screen_name": "jrobrien80", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Jeremy O'Brien" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "239183771", + "following": false, + "friends_count": 262, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 40, + "location": "", + "screen_name": "1SunnyGill", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Sunny Gill", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/502523756372193280/m2j7xZGQ_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 17 01:18:15 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/502523756372193280/m2j7xZGQ_normal.jpeg", + "favourites_count": 3, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 239183771, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/239183771/1408646069", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2732441578", + "following": false, + "friends_count": 940, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/raymath29", + "url": "https://t.co/47mKnSyyJ7", + "expanded_url": "http://instagram.com/raymath29", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 184, + "location": "North Florida", + "screen_name": "raymath29", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Ray Matheny", + "profile_use_background_image": true, + "description": "Retired car guy...sold lots of British, Italian and Swedes, had a blast, then after 40 years, unexpectedly hit the ejector button......Hotzigs!!!", + "url": "https://t.co/47mKnSyyJ7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/635459562104061952/5U52j_We_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Aug 03 13:20:53 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/635459562104061952/5U52j_We_normal.jpg", + "favourites_count": 121, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2732441578, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1809, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2732441578/1435521497", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1400505056", + "following": false, + "friends_count": 331, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 34, + "location": "", + "screen_name": "egosumquisum9", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Antonio Morales", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/566057364973838336/V4bu0xi8_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri May 03 19:13:10 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/566057364973838336/V4bu0xi8_normal.jpeg", + "favourites_count": 6, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1400505056, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4123, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1400505056/1423793679", + "is_translator": false + }, + { + "time_zone": "New Delhi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "113086237", + "following": false, + "friends_count": 2093, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "scratchbuffer.wordpress.com", + "url": "https://t.co/nLGauahfoT", + "expanded_url": "https://scratchbuffer.wordpress.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/190346956/Pulpfiction_Jules_Winnfield_by_GraffitiWatcher.jpg", + "notifications": false, + "profile_sidebar_fill_color": "200709", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 682, + "location": "Bengaluru", + "screen_name": "616476fbde873af", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 94, + "name": "Ghanashyam", + "profile_use_background_image": true, + "description": "Engineer by profession and interest. new found Arduino love", + "url": "https://t.co/nLGauahfoT", + "profile_text_color": "6A4836", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2625528701/ecY1FKXe_normal", + "profile_background_color": "FFFFFF", + "created_at": "Wed Feb 10 17:16:07 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "B68B9E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2625528701/ecY1FKXe_normal", + "favourites_count": 8359, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/190346956/Pulpfiction_Jules_Winnfield_by_GraffitiWatcher.jpg", + "default_profile_image": false, + "id": 113086237, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 33012, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/113086237/1426946183", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "25876935", + "following": false, + "friends_count": 676, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445417914/wildcat_head_2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 266, + "location": "Lexington, KY", + "screen_name": "BRobs21", + "verified": false, + "has_extended_profile": true, + "protected": true, + "listed_count": 2, + "name": "Brandon Roberts", + "profile_use_background_image": true, + "description": "I like mess and such things of that nature and whatnot.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/647641235654619137/xpBuhCnv_normal.jpg", + "profile_background_color": "89C9FA", + "created_at": "Sun Mar 22 20:46:10 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/647641235654619137/xpBuhCnv_normal.jpg", + "favourites_count": 3699, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445417914/wildcat_head_2.jpg", + "default_profile_image": false, + "id": 25876935, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 7457, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/25876935/1445482211", + "is_translator": false + }, + { + "time_zone": "Nairobi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 10800, + "id_str": "91112048", + "following": false, + "friends_count": 734, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/469463452063240193/zdQHEOZu.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "1C1C1C", + "profile_link_color": "C0DCF1", + "geo_enabled": false, + "followers_count": 444, + "location": "Nairobi", + "screen_name": "SKIRAGU", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Ragz", + "profile_use_background_image": false, + "description": "A young Proffessional with a sense of humor,a love for sports & the finer things in life\n\n#KENYA #ManUtd #AllBlacks #LBJ #Pacman #Capricorn #Ingwe", + "url": null, + "profile_text_color": "5C91B9", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2556172065/399480_391656167550180_1686617523_a_normal.jpg", + "profile_background_color": "C0DCF1", + "created_at": "Thu Nov 19 14:16:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DCF1", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2556172065/399480_391656167550180_1686617523_a_normal.jpg", + "favourites_count": 106, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/469463452063240193/zdQHEOZu.jpeg", + "default_profile_image": false, + "id": 91112048, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9665, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/91112048/1381443458", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "188995630", + "following": false, + "friends_count": 1329, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 169, + "location": "Southampton, England", + "screen_name": "andrsnssa", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "a.Ussa", + "profile_use_background_image": false, + "description": "Engineer. Lifelong learner. Juventini. @AmericadeCali", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/586581596943290370/s3-6xnxl_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Sep 10 02:50:54 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/586581596943290370/s3-6xnxl_normal.jpg", + "favourites_count": 6355, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 188995630, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3174, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/188995630/1427149830", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "36184638", + "following": false, + "friends_count": 2023, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wpri.com/2014/06/22/t-j\u2026", + "url": "https://t.co/CZC5Ys28Rp", + "expanded_url": "http://wpri.com/2014/06/22/t-j-del-santo/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 4450, + "location": "Providence, RI", + "screen_name": "tjdelsanto", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 135, + "name": "TJ Del Santo \u26a1", + "profile_use_background_image": true, + "description": "Meteorologist & environmental/Green Team reporter at WPRI-TV & WNAC-TV. I'm also an astronomy nut!! Tweets/RT's are not endorsements. Opinions are my own.", + "url": "https://t.co/CZC5Ys28Rp", + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666810498759991297/_WMK_hrv_normal.jpg", + "profile_background_color": "642D8B", + "created_at": "Tue Apr 28 21:12:03 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666810498759991297/_WMK_hrv_normal.jpg", + "favourites_count": 8534, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", + "default_profile_image": false, + "id": 36184638, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 21225, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/36184638/1447858305", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "54353910", + "following": false, + "friends_count": 1086, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 389, + "location": "Dallas, Texas", + "screen_name": "JWinstel", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Jake", + "profile_use_background_image": true, + "description": "SMU Alum. Native Texan. Technology, Comedy, and Dallas Sports Fan.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/614250241466851328/y9J-uD3e_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Jul 06 22:22:07 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/614250241466851328/y9J-uD3e_normal.jpg", + "favourites_count": 6233, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 54353910, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 4328, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/54353910/1363821921", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16098365", + "following": false, + "friends_count": 2041, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "black-magma.org/monger.html", + "url": "https://t.co/vEAmIqL5gQ", + "expanded_url": "http://www.black-magma.org/monger.html", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/668421043/9861eac6c566a98e985ede940c0e9fb5.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "9E9C9E", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 623, + "location": "Greater Philadelphia Metro", + "screen_name": "ihsanamin", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 44, + "name": "ihsanamin v3.7", + "profile_use_background_image": true, + "description": "Coaxial Monger.", + "url": "https://t.co/vEAmIqL5gQ", + "profile_text_color": "780F0F", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685321567144964100/Ad4mF_tL_normal.jpg", + "profile_background_color": "AEA498", + "created_at": "Tue Sep 02 15:50:08 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685321567144964100/Ad4mF_tL_normal.jpg", + "favourites_count": 13705, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/668421043/9861eac6c566a98e985ede940c0e9fb5.jpeg", + "default_profile_image": false, + "id": 16098365, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 96118, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16098365/1348017375", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "41257390", + "following": false, + "friends_count": 851, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 135, + "location": "New York City", + "screen_name": "shaunmorse", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Shaun Morse", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3633723529/e4746b8a8105d6eede0b48d269044fda_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed May 20 00:54:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633723529/e4746b8a8105d6eede0b48d269044fda_normal.jpeg", + "favourites_count": 22, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 41257390, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 665, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41257390/1368726607", + "is_translator": false + }, + { + "time_zone": "Quito", + "profile_use_background_image": true, + "description": "Dad, husband, CEO @HAandW Wealth Management, community activist, pro-Israel advocate, gardener, landscaper, golfer, reader, nacho lover.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "112311915", + "blocking": false, + "is_translation_enabled": false, + "id": 112311915, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Feb 08 01:28:39 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000620545993/64594cfa695f960c15bff825e2451ae1_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 619, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000620545993/64594cfa695f960c15bff825e2451ae1_normal.jpeg", + "favourites_count": 18, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 323, + "blocked_by": false, + "following": false, + "location": "Atlanta", + "muting": false, + "friends_count": 945, + "notifications": false, + "screen_name": "Kgreenwald123", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "is_translator": false, + "name": "Keith Greenwald" + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "161680208", + "blocking": false, + "is_translation_enabled": false, + "id": 161680208, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu Jul 01 13:38:03 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/446117809303482368/47njunwH_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 21, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/446117809303482368/47njunwH_normal.jpeg", + "favourites_count": 4, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 14, + "blocked_by": false, + "following": false, + "location": "Edmonton", + "muting": false, + "friends_count": 245, + "notifications": false, + "screen_name": "GAJ65", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "Greg Jackson" + }, + { + "time_zone": "Quito", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "80154513", + "blocking": false, + "is_translation_enabled": false, + "id": 80154513, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 05 23:24:03 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/1419802137/DSC00919_normal.JPG", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 233, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1419802137/DSC00919_normal.JPG", + "favourites_count": 55, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 97, + "blocked_by": false, + "following": false, + "location": "New York", + "muting": false, + "friends_count": 504, + "notifications": false, + "screen_name": "gallegosjuanm", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Juan Manuel Gallegos" + }, + { + "time_zone": "Jerusalem", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "3316761997", + "following": false, + "friends_count": 774, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/650473911327526912/Gh15hHvc.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "E2D42D", + "geo_enabled": false, + "followers_count": 113, + "location": "Between 33rd & 38th Parallel", + "screen_name": "MoathJundi", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Moath Jundi", + "profile_use_background_image": true, + "description": "23 - Real Estate Entrepreneur - EMT & GIS Analyst in Process - Associate Degrees in Anthropology, Psychology, Sociology and Geography.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/632852892609675264/b1MFsQQi_normal.jpg", + "profile_background_color": "E2D42D", + "created_at": "Sun Aug 16 09:50:08 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/632852892609675264/b1MFsQQi_normal.jpg", + "favourites_count": 3, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/650473911327526912/Gh15hHvc.jpg", + "default_profile_image": false, + "id": 3316761997, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 281, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3316761997/1443917395", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18752159", + "following": false, + "friends_count": 681, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/20002643/Maranacook_Fall.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 129, + "location": "South Shore, Down East", + "screen_name": "brownwey", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "brownwey", + "profile_use_background_image": true, + "description": "I'm the 3rd or 4th guy removed from Kevin Bacon that now connects you. . . .", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/290398977/Pic-0072_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Thu Jan 08 03:40:30 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/290398977/Pic-0072_normal.jpg", + "favourites_count": 32, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/20002643/Maranacook_Fall.jpg", + "default_profile_image": false, + "id": 18752159, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 700, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18752159/1353083679", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2584436011", + "following": false, + "friends_count": 105, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 66, + "location": "", + "screen_name": "bartshemiller", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Bartshe Miller", + "profile_use_background_image": true, + "description": "Sierra Nevada, water issues, weather, climate, natural history noir, Horse Feathers.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/567464637512171521/c4MbYR3__normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jun 23 18:34:27 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/567464637512171521/c4MbYR3__normal.jpeg", + "favourites_count": 112, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2584436011, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 133, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2584436011/1424128328", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "869924274", + "following": false, + "friends_count": 233, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "asarandall.com", + "url": "http://t.co/gz1YzWJX4l", + "expanded_url": "http://asarandall.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/442677477282811905/ROD-ybmF.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "D10000", + "geo_enabled": true, + "followers_count": 148, + "location": "", + "screen_name": "ArchAce", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Asa Randall", + "profile_use_background_image": true, + "description": "Anthropological Archaeologist at the University of Oklahoma, all views are my own.", + "url": "http://t.co/gz1YzWJX4l", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/433729516209315840/Ki5cmUPm_normal.jpeg", + "profile_background_color": "0DFF00", + "created_at": "Tue Oct 09 13:53:33 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/433729516209315840/Ki5cmUPm_normal.jpeg", + "favourites_count": 165, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/442677477282811905/ROD-ybmF.png", + "default_profile_image": false, + "id": 869924274, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 384, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/869924274/1405186590", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "207280695", + "following": false, + "friends_count": 540, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 83, + "location": "Minneapolis, MN", + "screen_name": "FlamChachut", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 8, + "name": "Nick Weins", + "profile_use_background_image": true, + "description": "Liberal retail manager.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670299561420824576/au0p5Ib-_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Oct 24 23:40:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670299561420824576/au0p5Ib-_normal.jpg", + "favourites_count": 6935, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 207280695, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2507, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/207280695/1387691315", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18912594", + "following": false, + "friends_count": 297, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "0099B9", + "geo_enabled": false, + "followers_count": 422, + "location": "", + "screen_name": "dan_maran", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "Dan", + "profile_use_background_image": true, + "description": "I work in IT... have you tried turning it off and on again?", + "url": null, + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/555079632072888320/N_kEmrGH_normal.jpeg", + "profile_background_color": "0099B9", + "created_at": "Mon Jan 12 19:50:56 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/555079632072888320/N_kEmrGH_normal.jpeg", + "favourites_count": 121, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "default_profile_image": false, + "id": 18912594, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9641, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18912594/1415742920", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15436436", + "following": false, + "friends_count": 1875, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 3589, + "location": "SF, south side", + "screen_name": "emeyerson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 109, + "name": "EMey", + "profile_use_background_image": true, + "description": "Marketing, politics, data. Expert on everything.", + "url": null, + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", + "profile_background_color": "642D8B", + "created_at": "Tue Jul 15 03:53:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", + "favourites_count": 5038, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", + "default_profile_image": false, + "id": 15436436, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 19937, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15436436/1444629889", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14165504", + "following": false, + "friends_count": 743, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "themillions.com", + "url": "http://t.co/gt7d8SNw1X", + "expanded_url": "http://www.themillions.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 907, + "location": "07422", + "screen_name": "cmaxmagee", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "cmaxmagee", + "profile_use_background_image": true, + "description": "Founder of the Millions. (@the_millions)", + "url": "http://t.co/gt7d8SNw1X", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3538930572/f543735e5ae4352056f053936bf418c3_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Mar 17 20:09:31 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3538930572/f543735e5ae4352056f053936bf418c3_normal.jpeg", + "favourites_count": 663, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 14165504, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1850, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14165504/1452090163", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15779216", + "following": false, + "friends_count": 512, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "usatoday.com/weather/defaul\u2026", + "url": "http://t.co/tob46EBWJR", + "expanded_url": "http://www.usatoday.com/weather/default.htm", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000092304026/e9c14244d29fd8ac448d296bffecaba1.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "FFC000", + "geo_enabled": false, + "followers_count": 22902, + "location": "McLean, Va. (USA TODAY HQ)", + "screen_name": "usatodayweather", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 979, + "name": "USA TODAY Weather", + "profile_use_background_image": false, + "description": "The latest weather and climate news -- from hurricanes and tornadoes to blizzards and climate change -- from Doyle Rice, the USA TODAY weather editor/reporter.", + "url": "http://t.co/tob46EBWJR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/461560417660047361/s20iJ0Ws_normal.png", + "profile_background_color": "FFC000", + "created_at": "Fri Aug 08 15:47:31 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/461560417660047361/s20iJ0Ws_normal.png", + "favourites_count": 28, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000092304026/e9c14244d29fd8ac448d296bffecaba1.jpeg", + "default_profile_image": false, + "id": 15779216, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 17458, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15779216/1415630791", + "is_translator": false + }, + { + "time_zone": "London", + "profile_use_background_image": false, + "description": "'Bohemian' according to one CFO. Also regulation reporter at @insuranceinside and @IPTradingRisk. Weather geek interested in all things political and risky.", + "url": "https://t.co/gelwy3PRLI", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 0, + "id_str": "2948865959", + "blocking": false, + "is_translation_enabled": false, + "id": 2948865959, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "insuranceinsider.com", + "url": "https://t.co/gelwy3PRLI", + "expanded_url": "http://www.insuranceinsider.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "000000", + "created_at": "Mon Dec 29 09:34:27 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/549895252991946752/JTgULh2t_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "statuses_count": 377, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/549895252991946752/JTgULh2t_normal.png", + "favourites_count": 4, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 163, + "blocked_by": false, + "following": false, + "location": "EC3", + "muting": false, + "friends_count": 266, + "notifications": false, + "screen_name": "insiderwinifred", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "is_translator": false, + "name": "Insider_winifred" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11433152", + "following": false, + "friends_count": 3665, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "plus.google.com/+NateJohnson/", + "url": "https://t.co/dMpfqObOsm", + "expanded_url": "https://plus.google.com/+NateJohnson/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 10007, + "location": "Raleigh, NC", + "screen_name": "nsj", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 568, + "name": "Nate Johnson", + "profile_use_background_image": false, + "description": "I am a meteorologist, instructor, blogger, and podcaster. Flying is my latest adventure. I tweet #ncwx, communication, #NCState, #Cubs, #BBQ, & #avgeek stuff.", + "url": "https://t.co/dMpfqObOsm", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", + "profile_background_color": "0000FF", + "created_at": "Sat Dec 22 14:59:53 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", + "favourites_count": 1102, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", + "default_profile_image": false, + "id": 11433152, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 45504, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11433152/1405353644", + "is_translator": false + }, + { + "time_zone": "Bogota", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "273437487", + "following": false, + "friends_count": 1350, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "992266", + "geo_enabled": true, + "followers_count": 257, + "location": "Cali, Colombia", + "screen_name": "marisolcitag", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Marisol Giraldo", + "profile_use_background_image": true, + "description": ".:I'm Colombian ... what is your superpower? :.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/488873447682875392/vJlNYMdb_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Mon Mar 28 13:59:18 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/488873447682875392/vJlNYMdb_normal.jpeg", + "favourites_count": 4576, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 273437487, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 13774, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/273437487/1405392302", + "is_translator": false + }, + { + "time_zone": "Bogota", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "88531019", + "following": false, + "friends_count": 1005, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 335, + "location": "Pamplona y Bogot\u00e1", + "screen_name": "livediaz", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 4, + "name": "Liliana Vera", + "profile_use_background_image": false, + "description": "CARGANDO...\r\n\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588 99%", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638548480449990658/s47Nvisw_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Nov 08 22:49:56 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638548480449990658/s47Nvisw_normal.jpg", + "favourites_count": 503, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 88531019, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1174, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/88531019/1431892477", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "19430233", + "following": false, + "friends_count": 1751, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "qz.com", + "url": "https://t.co/G318vIng6k", + "expanded_url": "http://qz.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623444704202518528/md1pZdSY.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 24967, + "location": "New York, NY", + "screen_name": "zseward", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 1562, + "name": "Zach Seward", + "profile_use_background_image": true, + "description": "VP of product and executive editor at Quartz | @qz | z@qz.com", + "url": "https://t.co/G318vIng6k", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641001275941855236/IDlq9PWd_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Sat Jan 24 03:32:09 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641001275941855236/IDlq9PWd_normal.jpg", + "favourites_count": 7924, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623444704202518528/md1pZdSY.jpg", + "default_profile_image": false, + "id": 19430233, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 22976, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19430233/1441661794", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "848833596", + "following": false, + "friends_count": 798, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 682, + "location": "", + "screen_name": "CaliaDomenico", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 48, + "name": "Domenico Calia", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678262426211590144/4HmSlhrT_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Sep 27 07:40:42 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "it", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678262426211590144/4HmSlhrT_normal.jpg", + "favourites_count": 9282, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 848833596, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 15504, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/848833596/1452289979", + "is_translator": false + }, + { + "time_zone": "Indiana (East)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "336053775", + "following": false, + "friends_count": 344, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 90, + "location": "Bloomington, Indiana", + "screen_name": "classic_geek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Classic Geek", + "profile_use_background_image": true, + "description": "SQL Server Professional. IU Grad Student in Data Science. Fan of science, linguistics and Romantic/Modern music. May (re)tweet in English, Russian, Turkish.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617056411089027073/bWnGHO_d_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Jul 15 17:29:11 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617056411089027073/bWnGHO_d_normal.jpg", + "favourites_count": 126, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 336053775, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1600, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/336053775/1435952547", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4063739236", + "following": false, + "friends_count": 735, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 255, + "location": "", + "screen_name": "morenamla", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "\u2b50\ufe0fMorena Mia\u2b50\ufe0f", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659573999937183744/cwbZGqjW_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Oct 28 22:39:09 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659573999937183744/cwbZGqjW_normal.jpg", + "favourites_count": 42, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4063739236, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 133, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4063739236/1448518338", + "is_translator": false + }, + { + "time_zone": "International Date Line West", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -39600, + "id_str": "187144916", + "following": false, + "friends_count": 270, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "satrapy.cykranosh.solar", + "url": "http://t.co/22bUdX0ML8", + "expanded_url": "http://satrapy.cykranosh.solar", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 124, + "location": "THE BOREAL HEXAGON ", + "screen_name": "cykragnostic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Satrap of Saturn", + "profile_use_background_image": true, + "description": "Freelance editor. \nSufick Muslim adeptus ipsissimus. \nSpheres: words, stars, rocks, critters.\nThey/them.", + "url": "http://t.co/22bUdX0ML8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655573916518326272/Rbwx52Iw_normal.png", + "profile_background_color": "131516", + "created_at": "Sun Sep 05 11:41:58 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655573916518326272/Rbwx52Iw_normal.png", + "favourites_count": 1210, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 187144916, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 5951, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/187144916/1442040118", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "336828006", + "following": false, + "friends_count": 642, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gorelovergirl69.blogspot.com", + "url": "http://t.co/hOX49KQcaX", + "expanded_url": "http://gorelovergirl69.blogspot.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362351757/PURPLE.FIRE.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 111, + "location": "USA", + "screen_name": "GoreLoverGirl69", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 4, + "name": "GoreLoverGirl69", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/hOX49KQcaX", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1711571583/WRENS.EYES.END.OF_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jul 17 00:14:14 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1711571583/WRENS.EYES.END.OF_normal.jpg", + "favourites_count": 1848, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362351757/PURPLE.FIRE.jpg", + "default_profile_image": false, + "id": 336828006, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 18171, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/336828006/1414953413", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2331273943", + "following": false, + "friends_count": 1338, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "antonioweatherinfo.weebly.com", + "url": "http://t.co/3rSNa8G1Ca", + "expanded_url": "http://antonioweatherinfo.weebly.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 203, + "location": "Daly City CA", + "screen_name": "RealAntonioM", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 2, + "name": "Antonio Maffei", + "profile_use_background_image": false, + "description": "- Weatherman\n- Astronomer\n- Son\n- Part of NASA Missions\n- Daly City Weatherman \n- KTVU/KPIX Weather Watcher", + "url": "http://t.co/3rSNa8G1Ca", + "profile_text_color": "000000", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/663110936354394112/S2URUUj9_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Feb 07 04:10:59 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663110936354394112/S2URUUj9_normal.jpg", + "favourites_count": 246, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2331273943, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3025, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2331273943/1438652902", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "22044763", + "following": false, + "friends_count": 365, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "soundcloud.com/miltonjackson", + "url": "http://t.co/NVdq7KBQmI", + "expanded_url": "http://soundcloud.com/miltonjackson", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 5023, + "location": "Up & Down", + "screen_name": "miltonjackson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 97, + "name": "Milton Jackson", + "profile_use_background_image": true, + "description": "Alan Partridge, Space, House Music, Baseball. That's about it.", + "url": "http://t.co/NVdq7KBQmI", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2525862589/jlc3gcshyaww2i09ucj9_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Feb 26 18:50:20 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2525862589/jlc3gcshyaww2i09ucj9_normal.jpeg", + "favourites_count": 628, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 22044763, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2869, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22044763/1443187956", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "806620844", + "following": false, + "friends_count": 714, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "the-earth-story.com", + "url": "https://t.co/xiiaNQNIKz", + "expanded_url": "https://www.the-earth-story.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/436260926509953025/YWwturFA.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "20201E", + "profile_link_color": "897856", + "geo_enabled": false, + "followers_count": 2926, + "location": "About 149597870700 m from Sol", + "screen_name": "TheEarthStory", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 167, + "name": "The Earth Story", + "profile_use_background_image": true, + "description": "If you love our beautiful planet, then this is the page for you.", + "url": "https://t.co/xiiaNQNIKz", + "profile_text_color": "C8A86F", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2582373510/e4ag2n4nip5lzkkm3wsc_normal.jpeg", + "profile_background_color": "20201E", + "created_at": "Thu Sep 06 11:33:11 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2582373510/e4ag2n4nip5lzkkm3wsc_normal.jpeg", + "favourites_count": 3687, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/436260926509953025/YWwturFA.jpeg", + "default_profile_image": false, + "id": 806620844, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 16571, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/806620844/1396522060", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "314016317", + "following": false, + "friends_count": 245, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 37, + "location": "", + "screen_name": "JDevarajan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Jagadish Devarajan", + "profile_use_background_image": true, + "description": "~ Father, Husband, Son, Brother, Friend, Chicagoan, Desi, Tamil ~ Cricket, CrossFit, Photography, Boredom", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1388698101/2010-12-20_11.50.40_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 09 15:41:42 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1388698101/2010-12-20_11.50.40_normal.jpg", + "favourites_count": 120, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 314016317, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 205, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/314016317/1399645268", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "380667593", + "following": false, + "friends_count": 1912, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 884, + "location": "", + "screen_name": "MichaelJewell78", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 99, + "name": "Michael Jewell", + "profile_use_background_image": true, + "description": "Physics student, Wayne State Warrior, Phi Theta Kappa, APS, SPS, AVS, OSA", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/633667392770560000/YosJcg0m_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Sep 27 01:20:06 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/633667392770560000/YosJcg0m_normal.jpg", + "favourites_count": 64585, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 380667593, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 50691, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/380667593/1439913167", + "is_translator": false + }, + { + "time_zone": "Tokyo", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 32400, + "id_str": "2957887285", + "following": false, + "friends_count": 497, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tilma-labs.org", + "url": "https://t.co/gv5iDz9d8o", + "expanded_url": "http://tilma-labs.org/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591747274339790849/cqU2Gy7H.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 173, + "location": "Tokyo Institute of Technology", + "screen_name": "TilmaLabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Todd Tilma", + "profile_use_background_image": true, + "description": "Associate Professor of physics in the International Education and Research Center of Science. Purveyor of finely crafted mathematical physics formulas.", + "url": "https://t.co/gv5iDz9d8o", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/551570534408794113/HySCq5QE_normal.jpeg", + "profile_background_color": "ABB8C2", + "created_at": "Sun Jan 04 02:14:56 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551570534408794113/HySCq5QE_normal.jpeg", + "favourites_count": 7244, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591747274339790849/cqU2Gy7H.jpg", + "default_profile_image": false, + "id": 2957887285, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4292, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2957887285/1446973475", + "is_translator": false + }, + { + "time_zone": "Wellington", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 46800, + "id_str": "22125553", + "following": false, + "friends_count": 192, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 28, + "location": "Mumbai, India", + "screen_name": "IKONOS2", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Amit Kokje", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "39382D", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/585912351443955712/Jg2KDH8a_normal.jpg", + "profile_background_color": "3E274E", + "created_at": "Fri Feb 27 09:54:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/585912351443955712/Jg2KDH8a_normal.jpg", + "favourites_count": 761, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", + "default_profile_image": false, + "id": 22125553, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 18, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22125553/1428528861", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "159297352", + "following": false, + "friends_count": 1147, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 179, + "location": "", + "screen_name": "VeraR2010", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Vera Rybinova", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/653111003245359104/pjBDMZ0V_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Jun 25 00:39:45 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/653111003245359104/pjBDMZ0V_normal.jpg", + "favourites_count": 271, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 159297352, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2924, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/159297352/1444548773", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "242924535", + "following": false, + "friends_count": 794, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 306, + "location": "", + "screen_name": "billwickett", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Bill Wickett", + "profile_use_background_image": true, + "description": ".anchor consultant. scope and swing.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/640586954237734912/Q04ib0J7_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 25 22:30:51 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/640586954237734912/Q04ib0J7_normal.jpg", + "favourites_count": 3084, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 242924535, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3742, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/242924535/1441562806", + "is_translator": false + }, + { + "time_zone": "Georgetown", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "74042479", + "following": false, + "friends_count": 1094, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E5507E", + "profile_link_color": "B40B43", + "geo_enabled": true, + "followers_count": 423, + "location": "", + "screen_name": "profesor_seldon", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 38, + "name": "Profesor_Seldon", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "362720", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2874853399/fd71d587bbf9c926a325bbed43c67b23_normal.jpeg", + "profile_background_color": "FF6699", + "created_at": "Mon Sep 14 02:21:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "CC3366", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2874853399/fd71d587bbf9c926a325bbed43c67b23_normal.jpeg", + "favourites_count": 51568, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", + "default_profile_image": false, + "id": 74042479, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 8990, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/74042479/1443930675", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "73352446", + "following": false, + "friends_count": 854, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/327289582/pic.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": true, + "followers_count": 322, + "location": "", + "screen_name": "charlesmuturi", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "mzito", + "profile_use_background_image": true, + "description": "Friendly Atheist", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/536928887700082688/k1sOLutF_normal.jpeg", + "profile_background_color": "8B542B", + "created_at": "Fri Sep 11 10:00:29 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/536928887700082688/k1sOLutF_normal.jpeg", + "favourites_count": 1272, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/327289582/pic.jpg", + "default_profile_image": false, + "id": 73352446, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7229, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/73352446/1412022722", + "is_translator": false + }, + { + "time_zone": "Saskatchewan", + "profile_use_background_image": true, + "description": "follow me if you want but i have no plans to start tweeting", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": -21600, + "id_str": "367937788", + "blocking": false, + "is_translation_enabled": true, + "id": 367937788, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Sep 04 20:20:58 +0000 2011", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 21, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", + "favourites_count": 1, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 7, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 73, + "notifications": false, + "screen_name": "Mrscience14", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Greg Eslinger" + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": -21600, + "id_str": "350420286", + "blocking": false, + "is_translation_enabled": false, + "id": 350420286, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Aug 07 19:00:05 +0000 2011", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", + "favourites_count": 5, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 113, + "notifications": false, + "screen_name": "blazingtuba", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "is_translator": false, + "name": "blazingtuba" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "17140002", + "following": false, + "friends_count": 2157, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tulsaworld.com/offbeat", + "url": "http://t.co/CLvIA1TJO2", + "expanded_url": "http://www.tulsaworld.com/offbeat", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 2465, + "location": "Tulsa, Oklahoma", + "screen_name": "jerrywofford", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 83, + "name": "Jerry Wofford", + "profile_use_background_image": true, + "description": "Music/features writer for @TWScene. Unhealthy obsession with the 918/479, the greatness of the flyovers and weather. Photo from @jclantonphoto", + "url": "http://t.co/CLvIA1TJO2", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677985287146835969/xYRzZ3fm_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Mon Nov 03 20:50:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677985287146835969/xYRzZ3fm_normal.jpg", + "favourites_count": 10686, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile_image": false, + "id": 17140002, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 28935, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17140002/1441735943", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "7507462", + "following": false, + "friends_count": 226, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "benelsen.com", + "url": "https://t.co/VdkPB38GEl", + "expanded_url": "https://benelsen.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 227, + "location": "Munich, Bavaria", + "screen_name": "benelsen", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 19, + "name": "Ben", + "profile_use_background_image": false, + "description": "", + "url": "https://t.co/VdkPB38GEl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507127502431862784/W4C6BOwM_normal.jpeg", + "profile_background_color": "DBE9ED", + "created_at": "Mon Jul 16 14:37:39 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507127502431862784/W4C6BOwM_normal.jpeg", + "favourites_count": 1222, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "default_profile_image": false, + "id": 7507462, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 27472, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7507462/1450655390", + "is_translator": false + } + ], + "previous_cursor": 0, + "previous_cursor_str": "0", + "next_cursor_str": "1516850034842747602" +} \ No newline at end of file diff --git a/testdata/get_followers_1.json b/testdata/get_followers_1.json new file mode 100644 index 00000000..219c22c9 --- /dev/null +++ b/testdata/get_followers_1.json @@ -0,0 +1,7539 @@ +{ + "next_cursor": 0, + "users": [ + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1682351", + "following": false, + "friends_count": 553, + "entities": { + "description": { + "urls": [ + { + "display_url": "keybase.io/lemonodor", + "url": "http://t.co/r2HAYBu4LF", + "expanded_url": "http://keybase.io/lemonodor", + "indices": [ + 48, + 70 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "lemondronor.com", + "url": "http://t.co/JFgzDlsyFp", + "expanded_url": "http://lemondronor.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450039947001487360/kSy6Eql1.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 1657, + "location": "Los Angeles", + "screen_name": "lemonodor", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 85, + "name": "john wiseman", + "profile_use_background_image": true, + "description": "Boring (into your brain). jjwiseman@gmail.com / http://t.co/r2HAYBu4LF", + "url": "http://t.co/JFgzDlsyFp", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/596349970401267712/78XeQR5B_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Mar 20 22:52:08 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/596349970401267712/78XeQR5B_normal.jpg", + "favourites_count": 4136, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450039947001487360/kSy6Eql1.jpeg", + "default_profile_image": false, + "id": 1682351, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 4834, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1682351/1400643238", + "is_translator": false + }, + { + "time_zone": "Europe/London", + "profile_use_background_image": false, + "description": "Consuming information like a grumpy black hole.", + "url": "http://t.co/HqE5vyOMdg", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 0, + "id_str": "1856851", + "blocking": false, + "is_translation_enabled": false, + "id": 1856851, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jonty.co.uk", + "url": "http://t.co/HqE5vyOMdg", + "expanded_url": "http://jonty.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "FFFFFF", + "created_at": "Thu Mar 22 10:28:39 +0000 2007", + "profile_image_url": "http://pbs.twimg.com/profile_images/680849128012804096/xrXBWtyI_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "008000", + "statuses_count": 8706, + "profile_sidebar_border_color": "A8A8A8", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680849128012804096/xrXBWtyI_normal.jpg", + "favourites_count": 8643, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 2221, + "blocked_by": false, + "following": false, + "location": "East London-ish", + "muting": false, + "friends_count": 1284, + "notifications": false, + "screen_name": "jonty", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 139, + "is_translator": false, + "name": "Jonty Wareing" + }, + { + "time_zone": "Wellington", + "profile_use_background_image": true, + "description": "Nowt special", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 46800, + "id_str": "292759417", + "blocking": false, + "is_translation_enabled": false, + "id": 292759417, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "131516", + "created_at": "Wed May 04 05:31:01 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/477032380654309376/T_r7O2po_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "statuses_count": 1549, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477032380654309376/T_r7O2po_normal.jpeg", + "favourites_count": 1251, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 328, + "blocked_by": false, + "following": false, + "location": "Pinehaven", + "muting": false, + "friends_count": 2016, + "notifications": false, + "screen_name": "Ben_Ackland", + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "is_translator": false, + "name": "Ben Ackland" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "92233629", + "following": false, + "friends_count": 930, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/watch?v=81_rmO\u2026", + "url": "https://t.co/HixKgfv08O", + "expanded_url": "http://www.youtube.com/watch?v=81_rmOTjobk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/683538930306781184/Zzehev8y.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 417, + "location": "Twitter, Internet", + "screen_name": "butthaver", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "keith nutsack", + "profile_use_background_image": true, + "description": "toiliet", + "url": "https://t.co/HixKgfv08O", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678116785216974848/hlhMlLYg_normal.jpg", + "profile_background_color": "3B94D9", + "created_at": "Tue Nov 24 09:16:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678116785216974848/hlhMlLYg_normal.jpg", + "favourites_count": 15304, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/683538930306781184/Zzehev8y.jpg", + "default_profile_image": false, + "id": 92233629, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 35801, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/92233629/1412049137", + "is_translator": false + }, + { + "time_zone": "Volgograd", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 10800, + "id_str": "164281349", + "blocking": false, + "is_translation_enabled": false, + "id": 164281349, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "131516", + "created_at": "Thu Jul 08 13:52:48 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/2293631749/jja8suvmbcmheuwdpddc_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "statuses_count": 914, + "profile_sidebar_border_color": "EEEEEE", + "lang": "ru", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2293631749/jja8suvmbcmheuwdpddc_normal.jpeg", + "favourites_count": 3, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 20, + "blocked_by": false, + "following": false, + "location": "Russia, Moscow", + "muting": false, + "friends_count": 178, + "notifications": false, + "screen_name": "garrypt", + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "is_translator": false, + "name": "Igor" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "22802715", + "following": false, + "friends_count": 2285, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nbcbayarea.com", + "url": "https://t.co/dfHTR3NgWx", + "expanded_url": "http://www.nbcbayarea.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649038185813532674/PNn1fbM4.jpg", + "notifications": false, + "profile_sidebar_fill_color": "211A30", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 3855, + "location": "San Jose, CA", + "screen_name": "RobMayeda", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 164, + "name": "Rob Mayeda", + "profile_use_background_image": true, + "description": "New Dad, AMS Meteorologist, #Lupus awareness advocate, #CSUEB lecturer, #CrossFit adventurer, living with #CavalierKingCharles spaniels", + "url": "https://t.co/dfHTR3NgWx", + "profile_text_color": "6F6F80", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/620417612095184896/xIeGcEFE_normal.jpg", + "profile_background_color": "FFF04D", + "created_at": "Wed Mar 04 17:22:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/620417612095184896/xIeGcEFE_normal.jpg", + "favourites_count": 5841, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649038185813532674/PNn1fbM4.jpg", + "default_profile_image": false, + "id": 22802715, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 12591, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22802715/1451027401", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "770036047", + "blocking": false, + "is_translation_enabled": false, + "id": 770036047, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Aug 20 18:54:32 +0000 2012", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "favourites_count": 9, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 11, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 94, + "notifications": false, + "screen_name": "sjtrettel", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Steve" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "4095858439", + "blocking": false, + "is_translation_enabled": false, + "id": 4095858439, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Nov 01 23:35:51 +0000 2015", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 130, + "notifications": false, + "screen_name": "gianna11011", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Gianna" + }, + { + "time_zone": "Irkutsk", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 28800, + "id_str": "416204683", + "following": false, + "friends_count": 407, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "westernpacificweather.com", + "url": "http://t.co/UDlBzpJA2e", + "expanded_url": "http://westernpacificweather.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/701849715/9087f00b8fcd97f2639cb479f63ccb1b.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 2035, + "location": "Tokyo Japan", + "screen_name": "robertspeta", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 153, + "name": "Robert Speta", + "profile_use_background_image": true, + "description": "Weather geek from Machias, NY, working as a meteorologist for NHK World TV in Tokyo. Also run my own independent weather site.", + "url": "http://t.co/UDlBzpJA2e", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/534137706893152256/pX_IzDgF_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Sat Nov 19 11:10:44 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534137706893152256/pX_IzDgF_normal.jpeg", + "favourites_count": 1454, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/701849715/9087f00b8fcd97f2639cb479f63ccb1b.png", + "default_profile_image": false, + "id": 416204683, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 8733, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/416204683/1421968721", + "is_translator": false + }, + { + "time_zone": "Quito", + "profile_use_background_image": true, + "description": "Student meteorologist, communicator, autism researcher/writer and educator. Photographer. Light Python/web coder. Harry Potter and Person of Interest = life.", + "url": "https://t.co/DMbbZav7UV", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "286437628", + "blocking": false, + "is_translation_enabled": false, + "id": 286437628, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mattbolton.me", + "url": "https://t.co/DMbbZav7UV", + "expanded_url": "http://www.mattbolton.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 23 00:47:57 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/468527612646526976/G6uZh_gO_normal.jpeg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379044242/Double-Double-Sun2.jpg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "statuses_count": 2290, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/468527612646526976/G6uZh_gO_normal.jpeg", + "favourites_count": 3304, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 246, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 216, + "notifications": false, + "screen_name": "mboltonwx", + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379044242/Double-Double-Sun2.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "is_translator": false, + "name": "Matt Bolton" + }, + { + "time_zone": "Bogota", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "12651242", + "following": false, + "friends_count": 2342, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pcastano.tumblr.com", + "url": "http://t.co/uSFgyCmogK", + "expanded_url": "http://pcastano.tumblr.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/471848993790500865/3Eo4mVyu.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 4283, + "location": "Washington, D.C.", + "screen_name": "pcastano", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 131, + "name": "pcastano", + "profile_use_background_image": true, + "description": "And Kepler said to Galileo: Let us create vessels and sails adjusted to the heavenly ether, and there will be plenty of people unafraid of the empty wastes.", + "url": "http://t.co/uSFgyCmogK", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3108646177/18797838af40a0aeb58799a581b33c8c_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Thu Jan 24 18:40:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3108646177/18797838af40a0aeb58799a581b33c8c_normal.jpeg", + "favourites_count": 62484, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/471848993790500865/3Eo4mVyu.jpeg", + "default_profile_image": false, + "id": 12651242, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 115333, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12651242/1401331499", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "529840215", + "following": false, + "friends_count": 1501, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/452001810673188864/RJIYU0bw.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 547, + "location": "Eastern NC", + "screen_name": "WxPermitting", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "David Glenn", + "profile_use_background_image": true, + "description": "Meteorologist (NWS) in Eastern NC (MHX). Tweet about wx, saltwater fishing, and most sports. Go #UNC, #UNCW, #MSState., & #UofSC ! Opinions are mine only.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/474515536634601472/Pn6DtHue_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Mar 19 23:12:52 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/474515536634601472/Pn6DtHue_normal.jpeg", + "favourites_count": 1916, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452001810673188864/RJIYU0bw.jpeg", + "default_profile_image": false, + "id": 529840215, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 3145, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/529840215/1383879278", + "is_translator": false + }, + { + "time_zone": "Melbourne", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "40636840", + "following": false, + "friends_count": 1993, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jonathandavidbrent.com", + "url": "http://t.co/c9rOTUyfS0", + "expanded_url": "http://jonathandavidbrent.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/16406403/jono_myspace_dinosaurs_2.gif", + "notifications": false, + "profile_sidebar_fill_color": "FAFAFA", + "profile_link_color": "737373", + "geo_enabled": true, + "followers_count": 635, + "location": "Melbourne, Australia", + "screen_name": "jonomatopoeia", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Jonathan David Brent", + "profile_use_background_image": false, + "description": "Writer | Editor | Web content guy | UNIC\u2665DE.", + "url": "http://t.co/c9rOTUyfS0", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000117523809/d1a91b7d3b8ad9b4b468ce86db0490e9_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Sun May 17 09:57:24 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FAFAFA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000117523809/d1a91b7d3b8ad9b4b468ce86db0490e9_normal.jpeg", + "favourites_count": 415, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/16406403/jono_myspace_dinosaurs_2.gif", + "default_profile_image": false, + "id": 40636840, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 640, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/40636840/1413896959", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "20496789", + "following": false, + "friends_count": 429, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/lazaruslong", + "url": "https://t.co/8ktb0yshqu", + "expanded_url": "http://about.me/lazaruslong", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453778137/background.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "FF0000", + "geo_enabled": false, + "followers_count": 1725, + "location": "Los Angeles", + "screen_name": "ROCKETDRAG", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "McThrust LePayload", + "profile_use_background_image": true, + "description": "Mohawk'd Rocket Astronomer. Sunset enthusiast. Internet Dragon. He/Him/Dude Ex Astra, Scientia. #Mach25Club #opinionsmine #BipolarType1", + "url": "https://t.co/8ktb0yshqu", + "profile_text_color": "02AA9F", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680823559443226624/SeuL8RlF_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Feb 10 07:15:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680823559443226624/SeuL8RlF_normal.jpg", + "favourites_count": 9493, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453778137/background.png", + "default_profile_image": false, + "id": 20496789, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 120309, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/20496789/1398737738", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14458551", + "following": false, + "friends_count": 309, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jaredhead.com", + "url": "https://t.co/016SjoG2ZZ", + "expanded_url": "http://jaredhead.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/137279861/blog_abstract_imp.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "828282", + "geo_enabled": true, + "followers_count": 738, + "location": "Los Angeles", + "screen_name": "jaredhead", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "THE MOHAWK RETURNS", + "profile_use_background_image": true, + "description": "Mohawk'd Rocket Scientist Astronomer for @TMRO and @GriffithObserv. Living with Bipolar Type I.\n\nHe/Him/Dude\n\nEx Astra, Scientia. \n\n#opinionsmine", + "url": "https://t.co/016SjoG2ZZ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660861335433953284/gVkfAPVb_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Apr 21 05:02:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660861335433953284/gVkfAPVb_normal.jpg", + "favourites_count": 476, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/137279861/blog_abstract_imp.jpg", + "default_profile_image": false, + "id": 14458551, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 18326, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14458551/1399172052", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15489945", + "following": false, + "friends_count": 3045, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mashable.com", + "url": "http://t.co/VdC8HQfSBi", + "expanded_url": "http://www.mashable.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/713342514/5d4e2537a0680c5eda635fd2f682b638.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 13332, + "location": "iPhone: 40.805134,-73.965057", + "screen_name": "afreedma", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1039, + "name": "Andrew Freedman", + "profile_use_background_image": true, + "description": "Mashable's science editor reporting on climate science, policy & weather + other news/geekery. New dad. Andrew[at]mashable[dot]com.", + "url": "http://t.co/VdC8HQfSBi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/417419572463931392/XA9Zhu4j_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Sat Jul 19 04:44:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/417419572463931392/XA9Zhu4j_normal.jpeg", + "favourites_count": 415, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/713342514/5d4e2537a0680c5eda635fd2f682b638.jpeg", + "default_profile_image": false, + "id": 15489945, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 24229, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15489945/1398212960", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "192769408", + "following": false, + "friends_count": 113, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 90, + "location": "Florida, USA", + "screen_name": "Cyclonebiskit", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Brenden Moses", + "profile_use_background_image": true, + "description": "Hurricane enthusiast and researcher; presently working on the HURDAT reanalysis at the NHC.\nComments/opinions here are my own and not reflective of my employer.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638032842384101376/hVFibAUg_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 20 02:53:32 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638032842384101376/hVFibAUg_normal.png", + "favourites_count": 287, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 192769408, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 224, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/192769408/1440967205", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "911455968", + "following": false, + "friends_count": 809, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "juliandiamond.smugmug.com", + "url": "http://t.co/mDm3jdtldR", + "expanded_url": "http://juliandiamond.smugmug.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/696554695/00309db64bc8bafb83a3903da87b5adc.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 288, + "location": "Poughkeepsie, NY", + "screen_name": "juliancd38", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Julian Diamond", + "profile_use_background_image": true, + "description": "Meteorology student, photographer, stargazer, aurora chaser, and pyro enthusiast, at the corner of Walk and Don't Walk somewhere on U.S. 1", + "url": "http://t.co/mDm3jdtldR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000167323349/2823451e8a39300a1df560fdfd4ec2ff_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 29 01:08:21 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000167323349/2823451e8a39300a1df560fdfd4ec2ff_normal.jpeg", + "favourites_count": 4209, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/696554695/00309db64bc8bafb83a3903da87b5adc.jpeg", + "default_profile_image": false, + "id": 911455968, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1408, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/911455968/1450207205", + "is_translator": false + }, + { + "time_zone": "UTC", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "14822329", + "following": false, + "friends_count": 163, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "F5ABB5", + "geo_enabled": false, + "followers_count": 29, + "location": "", + "screen_name": "juntora", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "juntora", + "profile_use_background_image": false, + "description": "a wonderful and rare manifestation of universal curiosity. Free thinker loves science, cooking, dancing, making things, music. living in Berlin with her son", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685395560250109953/mW7_2sXn_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun May 18 17:03:35 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685395560250109953/mW7_2sXn_normal.jpg", + "favourites_count": 68, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 14822329, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 265, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14822329/1452246103", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "13148", + "following": false, + "friends_count": 880, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "liamcooke.com", + "url": "https://t.co/Wz4bls6kQh", + "expanded_url": "http://liamcooke.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "848484", + "geo_enabled": false, + "followers_count": 1605, + "location": "AFK", + "screen_name": "inky", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 104, + "name": "Liam", + "profile_use_background_image": false, + "description": "ambient music + art bots", + "url": "https://t.co/Wz4bls6kQh", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660938666668384256/goDqCydt_normal.jpg", + "profile_background_color": "EDEDF4", + "created_at": "Mon Nov 20 00:04:50 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660938666668384256/goDqCydt_normal.jpg", + "favourites_count": 63934, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", + "default_profile_image": false, + "id": 13148, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 26235, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13148/1447542687", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2995432416", + "following": false, + "friends_count": 254, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "christopherwalsh.cc", + "url": "https://t.co/FpkcAwZT9U", + "expanded_url": "http://www.christopherwalsh.cc", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/559257685112012803/uzR73gF8.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "666666", + "geo_enabled": false, + "followers_count": 44, + "location": "", + "screen_name": "WalshGestalt", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Christopher Walsh", + "profile_use_background_image": false, + "description": "", + "url": "https://t.co/FpkcAwZT9U", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658806196309270528/sgeeGbLm_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Sun Jan 25 06:15:48 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658806196309270528/sgeeGbLm_normal.jpg", + "favourites_count": 495, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/559257685112012803/uzR73gF8.jpeg", + "default_profile_image": false, + "id": 2995432416, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 103, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2995432416/1447036047", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "492752830", + "following": false, + "friends_count": 692, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sites.google.com/site/timlinmet\u2026", + "url": "https://t.co/F91X3chcrF", + "expanded_url": "https://sites.google.com/site/timlinmeteorology/home", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 459, + "location": "NW of 40/70 Benchmark", + "screen_name": "joshtimlin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "Josh Timlin", + "profile_use_background_image": true, + "description": "Teach & learn about #EarthScience and #Meteorology for a living | Long Island, NY", + "url": "https://t.co/F91X3chcrF", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669529002151907328/QfnsNvRy_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Wed Feb 15 02:43:19 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669529002151907328/QfnsNvRy_normal.jpg", + "favourites_count": 4517, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile_image": false, + "id": 492752830, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5396, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/492752830/1438742098", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "196457689", + "following": false, + "friends_count": 451, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "F5B40E", + "geo_enabled": true, + "followers_count": 127, + "location": "Connecticut", + "screen_name": "DavidMRohde", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "David Rohde", + "profile_use_background_image": true, + "description": "A geographer interested in nature above and below its surface, and managing a missed calling to meteorology through observation. Consultant @Google. K\u03a3 EZ Alum", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3592523027/11339bd5555a0e0e666dad39c16f3c2a_normal.png", + "profile_background_color": "131516", + "created_at": "Wed Sep 29 04:10:41 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3592523027/11339bd5555a0e0e666dad39c16f3c2a_normal.png", + "favourites_count": 4920, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 196457689, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1418, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/196457689/1437445354", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "225616331", + "following": false, + "friends_count": 505, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "streetwanderer.com", + "url": "http://t.co/alX5eWcfhG", + "expanded_url": "http://www.streetwanderer.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "038543", + "geo_enabled": false, + "followers_count": 223, + "location": "Montr\u00e9al", + "screen_name": "StreetWanderer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "Nicolas L.", + "profile_use_background_image": false, + "description": "Every good idea borders on the stupid. UX Design, Photography, Random computer things. \nI want to retire on Mars.", + "url": "http://t.co/alX5eWcfhG", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/530183088353972225/HPUB_4dK_normal.jpeg", + "profile_background_color": "ABB8C2", + "created_at": "Sun Dec 12 01:12:25 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/530183088353972225/HPUB_4dK_normal.jpeg", + "favourites_count": 33, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 225616331, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3573, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/225616331/1415240501", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "digital circadia, transition and tone, {{{{{ Love }}}}} Mama bear, Director of Hardware Engineering at Slate Digital", + "url": "https://t.co/1q12I0DE5n", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "55434790", + "blocking": false, + "is_translation_enabled": false, + "id": 55434790, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "slatemt.com", + "url": "https://t.co/1q12I0DE5n", + "expanded_url": "http://www.slatemt.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "1A1B1F", + "created_at": "Fri Jul 10 01:55:18 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/668482479280418816/STtA03bi_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/61363566/800px-Kt88_power_tubes_in_traynor_yba200_amplifier.jpg", + "default_profile": false, + "profile_text_color": "666666", + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "statuses_count": 316, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668482479280418816/STtA03bi_normal.jpg", + "favourites_count": 236, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 246, + "blocked_by": false, + "following": false, + "location": "LA", + "muting": false, + "friends_count": 198, + "notifications": false, + "screen_name": "resistordog", + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/61363566/800px-Kt88_power_tubes_in_traynor_yba200_amplifier.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "is_translator": false, + "name": "Erika Earl" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3736932253", + "following": false, + "friends_count": 589, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 76, + "location": "", + "screen_name": "ColeLovesBots", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "cole loves bots", + "profile_use_background_image": true, + "description": "I follow the bots so @colewillsea can focus on engaging with other meat bots. I give updates to @colewillsea on what the bots do. I have root privileges.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649204796210089984/hGXModSc_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 30 12:44:28 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649204796210089984/hGXModSc_normal.jpg", + "favourites_count": 1574, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3736932253, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1249, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3736932253/1443617502", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "DaVinci said we'd always look at the sky, longing to be there. I love to fly, and I have always wanted to know how things work, and fix them.", + "url": "http://t.co/MYEImHw1GT", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "37240298", + "blocking": false, + "is_translation_enabled": false, + "id": 37240298, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "yeah.org/~berry", + "url": "http://t.co/MYEImHw1GT", + "expanded_url": "http://www.yeah.org/~berry", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "8B542B", + "created_at": "Sat May 02 17:27:53 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/192965242/1k-DSCF0236_normal.JPG", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "statuses_count": 1170, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/192965242/1k-DSCF0236_normal.JPG", + "favourites_count": 114, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 376, + "blocked_by": false, + "following": false, + "location": "MSP", + "muting": false, + "friends_count": 507, + "notifications": false, + "screen_name": "seanbseanb", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "is_translator": false, + "name": "Sean Berry" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "58889232", + "following": false, + "friends_count": 700, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tiny.cc/osnw3wxclimate", + "url": "https://t.co/tDtJtEWA30", + "expanded_url": "http://tiny.cc/osnw3wxclimate", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 599, + "location": "Oshkosh, WI", + "screen_name": "OSNW3", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 38, + "name": "Josh Herman", + "profile_use_background_image": true, + "description": "Husband. Father. Oshkosh. Weather fan. Radar loops. Data. Charts. Precipitation enthusiast. \u2600\ufe0f\u2614\ufe0f\u26a1\ufe0f", + "url": "https://t.co/tDtJtEWA30", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/465940754703978496/QYF_3DUI_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jul 21 19:18:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/465940754703978496/QYF_3DUI_normal.jpeg", + "favourites_count": 7854, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 58889232, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 11441, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/58889232/1398196714", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "40323299", + "blocking": false, + "is_translation_enabled": false, + "id": 40323299, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri May 15 20:18:13 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000105051062/be2bfec45024d16bf6726ea007d25fb2_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 12, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000105051062/be2bfec45024d16bf6726ea007d25fb2_normal.jpeg", + "favourites_count": 2, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 19, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 58, + "notifications": false, + "screen_name": "jmb443", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Jon Burdette" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2492541432", + "following": false, + "friends_count": 414, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cs.au.dk/~adc", + "url": "https://t.co/LcgGlsdkCS", + "expanded_url": "https://cs.au.dk/~adc", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/470538689903218689/OuxG2tAs.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "006399", + "geo_enabled": true, + "followers_count": 237, + "location": "Thisted, Denmark", + "screen_name": "DamsgaardAnders", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Anders Damsgaard", + "profile_use_background_image": true, + "description": "PhD in geoscience. Interested in glaciers, climate, mechanics, numerical modeling, and infosec. See @DSCOVRbot.", + "url": "https://t.co/LcgGlsdkCS", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663650017018830848/RrvPqXR3_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue May 13 07:10:11 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663650017018830848/RrvPqXR3_normal.jpg", + "favourites_count": 943, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/470538689903218689/OuxG2tAs.jpeg", + "default_profile_image": false, + "id": 2492541432, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 247, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2492541432/1401020524", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "17271646", + "following": false, + "friends_count": 1153, + "entities": { + "description": { + "urls": [ + { + "display_url": "playfabulousbeasts.com", + "url": "https://t.co/jaDUJzRbdm", + "expanded_url": "http://playfabulousbeasts.com/", + "indices": [ + 63, + 86 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "v21.io", + "url": "http://t.co/ii4wyeCVLA", + "expanded_url": "http://v21.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5569506/office_baby.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 2947, + "location": "London, UK", + "screen_name": "v21", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 119, + "name": "George Buckenham", + "profile_use_background_image": true, + "description": "I'm making a game about failing to stack animals in a big pile https://t.co/jaDUJzRbdm\nI killed bot o'clock.", + "url": "http://t.co/ii4wyeCVLA", + "profile_text_color": "919191", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2271384465/mlt5v0btabp3oc7s90h6_normal.png", + "profile_background_color": "000000", + "created_at": "Sun Nov 09 18:02:07 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FF1A1A", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2271384465/mlt5v0btabp3oc7s90h6_normal.png", + "favourites_count": 6239, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5569506/office_baby.png", + "default_profile_image": false, + "id": 17271646, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 36011, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17271646/1358199703", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2777170478", + "following": false, + "friends_count": 309, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rachelstorer.com", + "url": "http://t.co/2sv19LH0PD", + "expanded_url": "http://rachelstorer.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 116, + "location": "San Diego", + "screen_name": "cloudsinmybeer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Rachel Storer", + "profile_use_background_image": true, + "description": "Postdoc at JPL. Weather nerd.", + "url": "http://t.co/2sv19LH0PD", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/618099100962033664/jPQuWFQF_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Aug 28 21:26:09 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618099100962033664/jPQuWFQF_normal.jpg", + "favourites_count": 906, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2777170478, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 763, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2777170478/1436201500", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Views expressed herein are my own and not affiliated with government or professional organizations.", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "1447500740", + "blocking": false, + "is_translation_enabled": false, + "id": 1447500740, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue May 21 23:26:40 +0000 2013", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 2708, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", + "favourites_count": 4599, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 142, + "blocked_by": false, + "following": false, + "location": "Mississippi ", + "muting": false, + "friends_count": 1245, + "notifications": false, + "screen_name": "danw5211", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "is_translator": false, + "name": "Dan Wiggins" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "739990838", + "following": false, + "friends_count": 192, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 24, + "location": "", + "screen_name": "ramnath_mallya", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Ramnath Mallya", + "profile_use_background_image": true, + "description": "Views expressed are my own and not that of my employer.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/607125225818316800/2k462Cjz_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Aug 06 06:26:21 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/607125225818316800/2k462Cjz_normal.jpg", + "favourites_count": 28, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 739990838, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 108, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/739990838/1433584878", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "415588655", + "following": false, + "friends_count": 297, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thewildair.com", + "url": "http://t.co/ySsRKqZVjg", + "expanded_url": "http://www.thewildair.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 85, + "location": "Edinburgh, Scotland.", + "screen_name": "KristieDeGaris", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Kristie De Garis", + "profile_use_background_image": true, + "description": "Bit of this, bit of that. Can't resist an anthropomorphic dog meme.", + "url": "http://t.co/ySsRKqZVjg", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641348289208578049/fHnphcHM_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Nov 18 14:54:05 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641348289208578049/fHnphcHM_normal.jpg", + "favourites_count": 97, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 415588655, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 468, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/415588655/1441744379", + "is_translator": false + }, + { + "time_zone": "Chennai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "2831471840", + "following": false, + "friends_count": 57, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chennairains.com", + "url": "https://t.co/HUVHA0LycU", + "expanded_url": "http://www.chennairains.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 44389, + "location": "Chennai, Tamil Nadu", + "screen_name": "ChennaiRains", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 72, + "name": "ChennaiRains", + "profile_use_background_image": true, + "description": "Independent Weather Blogging Community from Chennai. Providing weather updates for events influencing Chennai & South India.", + "url": "https://t.co/HUVHA0LycU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/528178045153067011/DvaP7QZh_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Sep 25 09:02:35 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/528178045153067011/DvaP7QZh_normal.jpeg", + "favourites_count": 2354, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2831471840, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5791, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2831471840/1439434147", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "586783391", + "following": false, + "friends_count": 405, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "002BFF", + "geo_enabled": true, + "followers_count": 614, + "location": "Austin/San Antonio, TX", + "screen_name": "ZombieTrev5k", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Trevor Boucher", + "profile_use_background_image": true, + "description": "Meteorologist at @NWSSanAntonio. NWA Social Media Committee Member. Big on Deaf Outreach #VOST #SAVI and risk perception.Texas Tech '08 & '10. Views are my own.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/554561593892032512/yhfcgQwq_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Mon May 21 19:03:42 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/554561593892032512/yhfcgQwq_normal.jpeg", + "favourites_count": 2678, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 586783391, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 9082, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/586783391/1400596059", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "145018802", + "blocking": false, + "is_translation_enabled": false, + "id": 145018802, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon May 17 22:59:21 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/477493597168603137/G_nfuG-6_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 42, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477493597168603137/G_nfuG-6_normal.jpeg", + "favourites_count": 54, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 44, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 297, + "notifications": false, + "screen_name": "JackHJr", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Jack Hengst" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": false, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "21632468", + "blocking": false, + "is_translation_enabled": false, + "id": 21632468, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "352726", + "created_at": "Mon Feb 23 04:59:18 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/654714331762810880/ASBo2bMO_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4914338/Pine_cones__male_and_female.jpg", + "default_profile": false, + "profile_text_color": "3E4415", + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "statuses_count": 3, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654714331762810880/ASBo2bMO_normal.jpg", + "favourites_count": 12, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 21, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 384, + "notifications": false, + "screen_name": "mrkel", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4914338/Pine_cones__male_and_female.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Mike Kelley" + }, + { + "time_zone": "Buenos Aires", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "1938746702", + "following": false, + "friends_count": 267, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/670259797141385216/yA9lZvPx.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "A6A6A6", + "geo_enabled": false, + "followers_count": 387, + "location": "Argentina", + "screen_name": "LePongoAle", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Alejandro", + "profile_use_background_image": true, + "description": "Un DVR de series, televisi\u00f3n y una gu\u00eda de tv.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/613224450994106368/xEOyK_yz_normal.jpg", + "profile_background_color": "A6A6A6", + "created_at": "Sat Oct 05 20:16:29 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/613224450994106368/xEOyK_yz_normal.jpg", + "favourites_count": 7139, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/670259797141385216/yA9lZvPx.png", + "default_profile_image": false, + "id": 1938746702, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 10196, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1938746702/1447337102", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2378057094", + "following": false, + "friends_count": 417, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 126, + "location": "", + "screen_name": "gnirtsmodnar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "lookitscarl", + "profile_use_background_image": false, + "description": "Please explain to me the scientific nature of 'the whammy'.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/611373116510507009/G2GnoSPl_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Mar 08 03:34:32 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/611373116510507009/G2GnoSPl_normal.jpg", + "favourites_count": 1055, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2378057094, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 835, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2378057094/1425070497", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "21634600", + "following": false, + "friends_count": 779, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 13122, + "location": "", + "screen_name": "coreyspowell", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 706, + "name": "Corey S. Powell", + "profile_use_background_image": true, + "description": "Science editor at @aeonmag. Editor-at-large at @discovermag. Astronomy and space obsessive. Curious fellow.", + "url": null, + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684127003537223681/9ZfUS1gc_normal.jpg", + "profile_background_color": "0099B9", + "created_at": "Mon Feb 23 05:46:25 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684127003537223681/9ZfUS1gc_normal.jpg", + "favourites_count": 6645, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "default_profile_image": false, + "id": 21634600, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 10404, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21634600/1377427189", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "152799744", + "following": false, + "friends_count": 108, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 50, + "location": "Melbourne, Aus", + "screen_name": "jcbmmx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "James Bennett", + "profile_use_background_image": true, + "description": "CSIRO scientist: streamflow forecasting. Views are, unsurprisingly, my own. Like a sharp, reliable ensemble forecast? Me too.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/627360837980651521/7mzPpTf4_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jun 06 22:39:39 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/627360837980651521/7mzPpTf4_normal.jpg", + "favourites_count": 29, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 152799744, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 148, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/152799744/1438409471", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "10580652", + "following": false, + "friends_count": 203, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paranoidprose.com", + "url": "http://t.co/AGwThkEoE5", + "expanded_url": "http://paranoidprose.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2785353/bestcourse.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 242, + "location": "Weehawken, NJ", + "screen_name": "alberg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Al Berg", + "profile_use_background_image": true, + "description": "By day, Chief Security & Risk Officer in financial services. By night, EMT and local history nerd.", + "url": "http://t.co/AGwThkEoE5", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/555535485053845504/arcpDVRd_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Mon Nov 26 02:38:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/555535485053845504/arcpDVRd_normal.jpeg", + "favourites_count": 61, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2785353/bestcourse.jpg", + "default_profile_image": false, + "id": 10580652, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1674, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10580652/1383147005", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "30363057", + "following": false, + "friends_count": 75, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 16, + "location": "", + "screen_name": "ELD_3", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Eddie Divita", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/618847431539556352/qN8JLsLs_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 11 01:23:15 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618847431539556352/qN8JLsLs_normal.jpg", + "favourites_count": 157, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 30363057, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 142, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/30363057/1436379700", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2428028178", + "following": false, + "friends_count": 341, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 20, + "location": "", + "screen_name": "LizCohee", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Liz Cohee", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/452641792848961538/BVxj8jEX_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 05 00:26:35 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/452641792848961538/BVxj8jEX_normal.jpeg", + "favourites_count": 14, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2428028178, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 8, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2428028178/1397234179", + "is_translator": false + }, + { + "time_zone": "Arizona", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -25200, + "id_str": "33526366", + "blocking": false, + "is_translation_enabled": false, + "id": 33526366, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Apr 20 14:20:57 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/2455291396/image_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 37, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2455291396/image_normal.jpg", + "favourites_count": 91, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 67, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 435, + "notifications": false, + "screen_name": "adamgubser", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Adam Gubser" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Tech junkie, ice sculptor, artist, musician, cook, Tapatio enthusiast. I care about lots of things.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "3742139896", + "blocking": false, + "is_translation_enabled": false, + "id": 3742139896, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 22 20:02:44 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/646416952223731712/_80xJXf7_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 41, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/646416952223731712/_80xJXf7_normal.jpg", + "favourites_count": 419, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 15, + "blocked_by": false, + "following": false, + "location": "United States", + "muting": false, + "friends_count": 143, + "notifications": false, + "screen_name": "PalThinks", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Pal" + }, + { + "time_zone": "Sydney", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 39600, + "id_str": "89360546", + "blocking": false, + "is_translation_enabled": false, + "id": 89360546, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu Nov 12 03:22:57 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/522601401/images_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 4, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522601401/images_normal.jpeg", + "favourites_count": 8, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 64, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 442, + "notifications": false, + "screen_name": "MichaelPriebe", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Michael Priebe" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "1750241", + "following": false, + "friends_count": 1809, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/jason.r.hunter", + "url": "https://t.co/JxN18vI11f", + "expanded_url": "http://about.me/jason.r.hunter", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/680917174/4b931e6f6a67f41a089ad31e73aef0ac.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "323233", + "geo_enabled": true, + "followers_count": 1490, + "location": "Krugerville, TX", + "screen_name": "coreburn", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 115, + "name": "Jason R. Hunter", + "profile_use_background_image": true, + "description": "", + "url": "https://t.co/JxN18vI11f", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680747860300673024/2f3I2LTa_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Mar 21 14:16:12 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680747860300673024/2f3I2LTa_normal.jpg", + "favourites_count": 119148, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/680917174/4b931e6f6a67f41a089ad31e73aef0ac.jpeg", + "default_profile_image": false, + "id": 1750241, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 39038, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1750241/1424283930", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "156866068", + "following": false, + "friends_count": 2264, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": false, + "followers_count": 633, + "location": "", + "screen_name": "jane_austin14", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "jane", + "profile_use_background_image": false, + "description": "artsy newsy quirky lovey (re)tweets that catch my fancy. trump-free zone. #mn", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1126854579/coffee_and_paris_book_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Jun 18 04:28:25 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1126854579/coffee_and_paris_book_normal.jpg", + "favourites_count": 6005, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "default_profile_image": false, + "id": 156866068, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4710, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/156866068/1419828867", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "302150880", + "following": false, + "friends_count": 425, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/613286059/x1f38368757eb5855def28108f291a47.jpg", + "notifications": false, + "profile_sidebar_fill_color": "061127", + "profile_link_color": "52555C", + "geo_enabled": true, + "followers_count": 176, + "location": "Richmond, Virginia", + "screen_name": "WxJAK", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Jacob Klee", + "profile_use_background_image": true, + "description": "Follower of Christ; Husband to the Excellent & Beautiful Jennifer; Father; Severe Wx Meteorologist. Tweets are my own; Retweets are not Endorsements.", + "url": null, + "profile_text_color": "827972", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/517027006882406402/IcDSx4h__normal.jpeg", + "profile_background_color": "59472F", + "created_at": "Fri May 20 17:51:22 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000515", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/517027006882406402/IcDSx4h__normal.jpeg", + "favourites_count": 13539, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/613286059/x1f38368757eb5855def28108f291a47.jpg", + "default_profile_image": false, + "id": 302150880, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6504, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/302150880/1397738672", + "is_translator": false + }, + { + "time_zone": "Alaska", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -32400, + "id_str": "103098916", + "blocking": false, + "is_translation_enabled": false, + "id": 103098916, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Jan 08 22:06:14 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/2311043715/1mvjeaoteye18q84t9on_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 48, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2311043715/1mvjeaoteye18q84t9on_normal.jpeg", + "favourites_count": 5, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 20, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 307, + "notifications": false, + "screen_name": "JimSyme", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Jim Syme" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1535353321", + "following": false, + "friends_count": 66, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 31, + "location": "Brooklyn, New York", + "screen_name": "BlaiseBace", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Blaise Bace", + "profile_use_background_image": false, + "description": "All things digital, in a lurking kind of way...", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/642142784498085888/5HWLNDwB_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Jun 21 00:05:50 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/642142784498085888/5HWLNDwB_normal.jpg", + "favourites_count": 5, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1535353321, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 21, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1535353321/1424143604", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2859249170", + "following": false, + "friends_count": 239, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 74, + "location": "", + "screen_name": "EricArnoys", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Eric Arnoys", + "profile_use_background_image": true, + "description": "husband, father, biochemist, wonderer more than wanderer, nanonaut", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/523126137610711041/Qb_PWiM3_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Oct 17 03:00:14 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/523126137610711041/Qb_PWiM3_normal.jpeg", + "favourites_count": 690, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2859249170, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 311, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2859249170/1413515559", + "is_translator": false + }, + { + "time_zone": "Brisbane", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 36000, + "id_str": "245216468", + "following": false, + "friends_count": 632, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thejezabels.com", + "url": "http://t.co/kZQjQPLyPm", + "expanded_url": "http://www.thejezabels.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 808, + "location": "Sydney, Australia", + "screen_name": "samuelhlockwood", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Samuel Lockwood", + "profile_use_background_image": true, + "description": "Hey there I'm the guitarist from Sydney band The Jezabels. Follow me for sporadic updates on the band. And maybe some interesting things about my life.", + "url": "http://t.co/kZQjQPLyPm", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667140859633135616/TAPnBw2T_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 31 04:36:34 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667140859633135616/TAPnBw2T_normal.jpg", + "favourites_count": 44, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 245216468, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 964, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/245216468/1447893729", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "Water moving through human and natural landscapes! silly weather videos! iNaturalist and other tech nature stuff! vegetation mapping! attmpts at indie game dev!", + "url": "http://t.co/VsM1LavdNX", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "275304259", + "blocking": false, + "is_translation_enabled": false, + "id": 275304259, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "coyot.es/slowwatermovem\u2026", + "url": "http://t.co/VsM1LavdNX", + "expanded_url": "http://coyot.es/slowwatermovement", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Apr 01 01:11:45 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/1403758252/image_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 4164, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1403758252/image_normal.jpg", + "favourites_count": 2037, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 381, + "blocked_by": false, + "following": false, + "location": "Vermont", + "muting": false, + "friends_count": 361, + "notifications": false, + "screen_name": "SlowWaterMvmnt", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "is_translator": false, + "name": "Charlie Hohn" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "106995334", + "following": false, + "friends_count": 1304, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/191033033/IMG_3915-web.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 337, + "location": "Kansas City, MO", + "screen_name": "mizzouwxman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Chris Foltz", + "profile_use_background_image": true, + "description": "Father, Husband, Emergency Response Specialist @ NWS Central Region Headquarters. Tweets are my own. . M-I-Z!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670083920466223113/mo-IfkKz_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jan 21 08:33:53 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670083920466223113/mo-IfkKz_normal.jpg", + "favourites_count": 1605, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/191033033/IMG_3915-web.jpg", + "default_profile_image": false, + "id": 106995334, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1824, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/106995334/1441135358", + "is_translator": false + }, + { + "time_zone": "New Delhi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "44309422", + "following": false, + "friends_count": 741, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 306, + "location": "", + "screen_name": "PainkillerGSV", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Painkiller GSV", + "profile_use_background_image": true, + "description": "Jack of Many Trades & Master Of One. Here to collect & distribute useless information.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631448096166141952/57L32WPH_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Wed Jun 03 06:38:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631448096166141952/57L32WPH_normal.jpg", + "favourites_count": 1878, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 44309422, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9046, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44309422/1448961548", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2921789080", + "blocking": false, + "is_translation_enabled": false, + "id": 2921789080, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Dec 14 18:26:43 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/607379037858725888/hoYuiiHD_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 19, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/607379037858725888/hoYuiiHD_normal.jpg", + "favourites_count": 358, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 27, + "blocked_by": false, + "following": false, + "location": "Indiana, USA", + "muting": false, + "friends_count": 306, + "notifications": false, + "screen_name": "SheilaLookinBak", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "SheilaLookingBak" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "138008977", + "following": false, + "friends_count": 779, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629310718/hits4ujgur782p52j4sd.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 511, + "location": "Cheyenne, WY", + "screen_name": "BeccMaz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "Becs", + "profile_use_background_image": true, + "description": "you can find me lost in the music, marveling at the sky, or in the mountains.", + "url": null, + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638776708527689729/aqS92yzs_normal.jpg", + "profile_background_color": "642D8B", + "created_at": "Wed Apr 28 11:20:10 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638776708527689729/aqS92yzs_normal.jpg", + "favourites_count": 2628, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629310718/hits4ujgur782p52j4sd.jpeg", + "default_profile_image": false, + "id": 138008977, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 27411, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/138008977/1355825279", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2895272489", + "following": false, + "friends_count": 479, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 53, + "location": "Napghanistan", + "screen_name": "scozie11", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Scozie", + "profile_use_background_image": false, + "description": "Words", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675038439151173633/G8Em68Wo_normal.png", + "profile_background_color": "000000", + "created_at": "Thu Nov 27 23:05:44 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675038439151173633/G8Em68Wo_normal.png", + "favourites_count": 1287, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2895272489, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 441, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2895272489/1449779203", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "826898994", + "following": false, + "friends_count": 871, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "maynoothuniversity.ie/geography/our-\u2026", + "url": "https://t.co/TGLL6EYnaZ", + "expanded_url": "https://www.maynoothuniversity.ie/geography/our-people/alistair-fraser", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 497, + "location": "Ireland & Mexico", + "screen_name": "AFraser_NUIM", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Alistair Fraser", + "profile_use_background_image": true, + "description": "Geography lecturer at Maynooth University, Ireland.", + "url": "https://t.co/TGLL6EYnaZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/530277487352508416/RHKfjw_q_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Sep 16 10:49:39 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/530277487352508416/RHKfjw_q_normal.jpeg", + "favourites_count": 1859, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 826898994, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3383, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/826898994/1379099517", + "is_translator": false + }, + { + "time_zone": "Islamabad", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 18000, + "id_str": "867477402", + "following": false, + "friends_count": 351, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/Zedzeds", + "url": "https://t.co/BKAJxQDth4", + "expanded_url": "https://twitter.com/Zedzeds", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 130, + "location": "Maldives", + "screen_name": "Zedzeds", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Zambe", + "profile_use_background_image": true, + "description": "born to pay rent + tax and die. from #millionaires #paradise Rajjethere nt atholhuthere . all things #fish n #aquaculture", + "url": "https://t.co/BKAJxQDth4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659619946758955008/g_vQXkY5_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 08 05:45:16 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659619946758955008/g_vQXkY5_normal.jpg", + "favourites_count": 200, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 867477402, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2419, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/867477402/1392566216", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "191558116", + "following": false, + "friends_count": 682, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 104, + "location": "California, USA", + "screen_name": "HardRockKitchen", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "HRK", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659389559642304512/n7xb8HfH_normal.jpg", + "profile_background_color": "ABB8C2", + "created_at": "Thu Sep 16 19:08:47 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659389559642304512/n7xb8HfH_normal.jpg", + "favourites_count": 174, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 191558116, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 109, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/191558116/1446045784", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "23730486", + "following": false, + "friends_count": 746, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bryanleboff.com", + "url": "http://t.co/yvd5TuU4Wm", + "expanded_url": "http://bryanleboff.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "E86500", + "geo_enabled": true, + "followers_count": 392, + "location": "philadelphia, pa", + "screen_name": "leboff", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Bryan Leboff", + "profile_use_background_image": true, + "description": "Renowned Hipster. These are not intended to be factual statements. RTs are clearly endorsements.", + "url": "http://t.co/yvd5TuU4Wm", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/464392882133032960/LIb9z9I8_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Mar 11 06:09:34 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/464392882133032960/LIb9z9I8_normal.jpeg", + "favourites_count": 505, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 23730486, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6469, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23730486/1399553526", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Independent thinker and optimist (most of the time!). Fields: law, history.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2275022184", + "blocking": false, + "is_translation_enabled": false, + "id": 2275022184, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Jan 03 20:02:24 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/419866729758482433/AQ62EeXV_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 66, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/419866729758482433/AQ62EeXV_normal.jpeg", + "favourites_count": 17, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 36, + "blocked_by": false, + "following": false, + "location": "Planet Earth", + "muting": false, + "friends_count": 359, + "notifications": false, + "screen_name": "RuthDReichard", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "is_translator": false, + "name": "Ruth D Reichard" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Studying ecology, geology, economics, and related stuff. Hope to know something someday and that you can tell. Not much politics here.", + "url": "http://t.co/Q89OH5i5ih", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "30312152", + "blocking": false, + "is_translation_enabled": false, + "id": 30312152, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stevepaulson.org", + "url": "http://t.co/Q89OH5i5ih", + "expanded_url": "http://stevepaulson.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Apr 10 21:02:17 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/1368887559/Dogon_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 587, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1368887559/Dogon_normal.jpg", + "favourites_count": 90, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 102, + "blocked_by": false, + "following": false, + "location": "USA ~ Pacific Northwest", + "muting": false, + "friends_count": 649, + "notifications": false, + "screen_name": "stevepaulson", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "is_translator": false, + "name": "Steve Paulson" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "269045721", + "blocking": false, + "is_translation_enabled": false, + "id": 269045721, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Mar 20 00:38:01 +0000 2011", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 2, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", + "favourites_count": 22, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 41, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 732, + "notifications": false, + "screen_name": "jackcorroon", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Jack Corroon" + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "924522715", + "following": false, + "friends_count": 187, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "standalonedjs.com", + "url": "https://t.co/YPNtbv91cw", + "expanded_url": "http://standalonedjs.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/727664122/1dd3f55d1f5f8c15815fb167fb1468bc.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 55, + "location": "Durango, Colorado, USA", + "screen_name": "mowglidgo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Meyers", + "profile_use_background_image": true, + "description": "Born, raised, and living in Durango, CO. Co-Owner of Stand Alone Entertainment, a Mobile DJ and Promotion Company.", + "url": "https://t.co/YPNtbv91cw", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2924928501/5aedd6fbcd514c9198599fdf94e309a7_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Sun Nov 04 02:53:57 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2924928501/5aedd6fbcd514c9198599fdf94e309a7_normal.jpeg", + "favourites_count": 503, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/727664122/1dd3f55d1f5f8c15815fb167fb1468bc.jpeg", + "default_profile_image": false, + "id": 924522715, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 94, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/924522715/1449306606", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "39511684", + "following": false, + "friends_count": 681, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "0099B9", + "geo_enabled": true, + "followers_count": 257, + "location": "Chicago, IL", + "screen_name": "Kelpher", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Kelpher", + "profile_use_background_image": true, + "description": "You don't know me. I don't know you. Follow me or don't follow me. Does it really matter? Does anyone read these things anyway?", + "url": null, + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683478663078227969/AeHlN7Sz_normal.jpg", + "profile_background_color": "0099B9", + "created_at": "Tue May 12 14:36:06 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683478663078227969/AeHlN7Sz_normal.jpg", + "favourites_count": 7530, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "default_profile_image": false, + "id": 39511684, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 772, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39511684/1451438802", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "132399660", + "following": false, + "friends_count": 591, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mrhollister.com", + "url": "https://t.co/tL99dmVTxU", + "expanded_url": "http://www.mrhollister.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/782602713/0c9fd1dbc9d43ce91b468025393f4ff2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "085169", + "geo_enabled": true, + "followers_count": 577, + "location": "Turlock, Ca", + "screen_name": "phaneritic", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 51, + "name": "Ryan Hollister", + "profile_use_background_image": false, + "description": "GeoSci & EnviroSci Educator, WildLink Club Advisor, Hiker, Landscape photog, Central Valley Advocate. 2015 NAGT FW OEST. Love adventures w/ @Xeno_lith & Zephyr.", + "url": "https://t.co/tL99dmVTxU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684986332653854720/JlqoKK7-_normal.jpg", + "profile_background_color": "022330", + "created_at": "Tue Apr 13 03:54:35 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684986332653854720/JlqoKK7-_normal.jpg", + "favourites_count": 2628, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/782602713/0c9fd1dbc9d43ce91b468025393f4ff2.jpeg", + "default_profile_image": false, + "id": 132399660, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 12657, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132399660/1442300967", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "390512763", + "blocking": false, + "is_translation_enabled": false, + "id": 390512763, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Oct 14 02:57:21 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/2599638321/9riagpoagc6vy36tcn7s_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1034, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2599638321/9riagpoagc6vy36tcn7s_normal.jpeg", + "favourites_count": 25, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 75, + "blocked_by": false, + "following": false, + "location": "Philadelphia / King of Prussia", + "muting": false, + "friends_count": 531, + "notifications": false, + "screen_name": "Doogery", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "doogs" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "mother, grandmother, love education and children. Love ATP tennis!! Minnesota Vikings!!", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": -28800, + "id_str": "37674397", + "blocking": false, + "is_translation_enabled": false, + "id": 37674397, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon May 04 14:49:05 +0000 2009", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 294, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", + "favourites_count": 1279, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 34, + "blocked_by": false, + "following": false, + "location": "Reno, Nevada", + "muting": false, + "friends_count": 1689, + "notifications": false, + "screen_name": "maclaughry", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 3, + "is_translator": false, + "name": "Barbara McLaury" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "989809284", + "following": false, + "friends_count": 170, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 17, + "location": "South Jersey", + "screen_name": "ali_smedley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Ali Smedley", + "profile_use_background_image": true, + "description": "Lawyer. Smartass. Very Good Friend.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2984543909/1819a0d11590143bf9a30f27fe5901f2_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Tue Dec 04 23:50:49 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2984543909/1819a0d11590143bf9a30f27fe5901f2_normal.jpeg", + "favourites_count": 107, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile_image": false, + "id": 989809284, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 444, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/989809284/1386019930", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4029291252", + "following": false, + "friends_count": 102, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "89C9FA", + "geo_enabled": false, + "followers_count": 14, + "location": "Melbourne, Australia", + "screen_name": "rlbkinsey", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Robyn Kinsey", + "profile_use_background_image": false, + "description": "Digital content & design manager and enthusiast for content strategy, UX, IA, design thinking, geography, weather, music and travel. Also, curiosity!", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660426498575220736/VfD-IkkG_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Oct 26 23:25:00 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660426498575220736/VfD-IkkG_normal.jpg", + "favourites_count": 12, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4029291252, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 20, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4029291252/1446274816", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2953578088", + "following": false, + "friends_count": 492, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 29, + "location": "", + "screen_name": "footybuddy_", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Footy Buddy", + "profile_use_background_image": true, + "description": "Everyone's buddy for all things \u26bd\ufe0f including: #USMNT #BPL #LaLiga #Bundisliga #serieA #Ligue1 and more!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684832679376863233/QB11XzUl_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Dec 31 18:32:47 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684832679376863233/QB11XzUl_normal.jpg", + "favourites_count": 48, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2953578088, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 61, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2953578088/1451175658", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "106728002", + "following": false, + "friends_count": 990, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "conejousd.org/tohs", + "url": "http://t.co/3WOfqtcsQp", + "expanded_url": "http://www.conejousd.org/tohs", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/667514906/673c2dc22bbe1dfc94a2df3732608cad.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "0A8216", + "profile_link_color": "0B871D", + "geo_enabled": true, + "followers_count": 1831, + "location": "Thousand Oaks, CA", + "screen_name": "ThousandOaksHS", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 36, + "name": "Thousand Oaks HS", + "profile_use_background_image": false, + "description": "The Official Twitter account for Thousand Oaks High School. A diverse and high achieving school with winning programs in all areas. We are TOHS! #BleedGreen", + "url": "http://t.co/3WOfqtcsQp", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/513858066224148480/gAFCWjOr_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Jan 20 14:22:47 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/513858066224148480/gAFCWjOr_normal.jpeg", + "favourites_count": 1810, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/667514906/673c2dc22bbe1dfc94a2df3732608cad.jpeg", + "default_profile_image": false, + "id": 106728002, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4335, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/106728002/1378431011", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "634337244", + "following": false, + "friends_count": 548, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450106384864927745/P74T_7In.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 463, + "location": "", + "screen_name": "ASchueth", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 20, + "name": "Alex Schueth", + "profile_use_background_image": true, + "description": "UNL Mechanical Engineering Major, Meteorology minor, avid storm chaser", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/475727972419108864/OcrhFULJ_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Jul 13 03:26:41 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/475727972419108864/OcrhFULJ_normal.jpeg", + "favourites_count": 1800, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450106384864927745/P74T_7In.jpeg", + "default_profile_image": false, + "id": 634337244, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1289, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/634337244/1444859234", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "Retired US Senate Media Relations Coord/Off Mgr/Crisis Mgt - 29 year non-partisian US Senate Vet. Insights, witness, understanding & love of all things Senate.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "22195908", + "blocking": false, + "is_translation_enabled": false, + "id": 22195908, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Feb 27 21:54:01 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730940844/bf43a11ccfda182946ff5dc2b16b15b3_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1374, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730940844/bf43a11ccfda182946ff5dc2b16b15b3_normal.jpeg", + "favourites_count": 172, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 148, + "blocked_by": false, + "following": false, + "location": "Washington, DC", + "muting": false, + "friends_count": 771, + "notifications": false, + "screen_name": "WendyOscarson", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 2, + "is_translator": false, + "name": "Wendy Oscarson" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2185039262", + "following": false, + "friends_count": 521, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 409, + "location": "border state", + "screen_name": "JikiRick", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Jiki Rick", + "profile_use_background_image": true, + "description": "arcane random thoughts, retired veteran with a deep disdain for delusion and denial, progressive", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/665039366683693056/q5NTrJHd_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Nov 09 21:00:31 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/665039366683693056/q5NTrJHd_normal.jpg", + "favourites_count": 1104, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2185039262, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1900, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2185039262/1384752252", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "445753422", + "following": false, + "friends_count": 559, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 61, + "location": "NJ", + "screen_name": "Mccarthy2Matt", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Matty Mc", + "profile_use_background_image": true, + "description": "i put solar panels on landfills", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3335692911/b263aac887aadfbcd47fbcbafc4ccff4_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Dec 24 20:34:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3335692911/b263aac887aadfbcd47fbcbafc4ccff4_normal.jpeg", + "favourites_count": 144, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 445753422, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 271, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/445753422/1362361928", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "15832457", + "following": false, + "friends_count": 687, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "996E00", + "geo_enabled": false, + "followers_count": 444, + "location": "", + "screen_name": "oshack", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "Owen Shackelford", + "profile_use_background_image": true, + "description": "Politics is a contact sport. So is Braves baseball.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683080659271684096/LFvXF2Wh_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Aug 13 03:43:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683080659271684096/LFvXF2Wh_normal.jpg", + "favourites_count": 39, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 15832457, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 4219, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15832457/1451694402", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "628719809", + "following": false, + "friends_count": 1486, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amyabts.com", + "url": "https://t.co/Z5powTexXZ", + "expanded_url": "http://www.amyabts.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 543, + "location": "Rochester MN", + "screen_name": "amy_abts", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Amy Abts", + "profile_use_background_image": true, + "description": "Wear what you dig, man. Wear what you dig.", + "url": "https://t.co/Z5powTexXZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671791123375919104/zetat3Uz_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Jul 06 21:03:04 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671791123375919104/zetat3Uz_normal.jpg", + "favourites_count": 4270, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 628719809, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3066, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/628719809/1448999689", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3179475258", + "following": false, + "friends_count": 1054, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "joincampaignzero.org", + "url": "https://t.co/okIBpNIyYG", + "expanded_url": "http://www.joincampaignzero.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676163901470322688/TRRZTO_W.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": false, + "followers_count": 294, + "location": "Seattle", + "screen_name": "brad_jencks", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Brad Jencks", + "profile_use_background_image": true, + "description": "Hash-slinging, entropy aggregation , advanced dog butlery.", + "url": "https://t.co/okIBpNIyYG", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685175845321768960/_4BiMUfr_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Apr 29 16:34:33 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685175845321768960/_4BiMUfr_normal.jpg", + "favourites_count": 941, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676163901470322688/TRRZTO_W.jpg", + "default_profile_image": false, + "id": 3179475258, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4319, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3179475258/1452017164", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Canadian Meteorologist with an interest in Climate Change and Economics", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "3119242741", + "blocking": false, + "is_translation_enabled": false, + "id": 3119242741, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 31 05:48:59 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/594072280268836864/LSnHwmpH_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 300, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/594072280268836864/LSnHwmpH_normal.jpg", + "favourites_count": 80, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 73, + "blocked_by": false, + "following": false, + "location": "Waterloo, Ontario", + "muting": false, + "friends_count": 744, + "notifications": false, + "screen_name": "senocvahr", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "is_translator": false, + "name": "Shawn" + }, + { + "time_zone": "New Delhi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "39982013", + "following": false, + "friends_count": 1078, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blogs.wsj.com/indiarealtime/", + "url": "http://t.co/eMMymrYFrl", + "expanded_url": "http://blogs.wsj.com/indiarealtime/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2822, + "location": "Delhi", + "screen_name": "jhsugden", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 120, + "name": "Joanna Sugden", + "profile_use_background_image": true, + "description": "Editor, India Real Time, The Wall Street Journal @WSJIndia", + "url": "http://t.co/eMMymrYFrl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/481653559146971136/H4Tb-yj0_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu May 14 12:24:18 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/481653559146971136/H4Tb-yj0_normal.jpeg", + "favourites_count": 11, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 39982013, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 789, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39982013/1364297229", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2281405616", + "blocking": false, + "is_translation_enabled": false, + "id": 2281405616, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Jan 08 01:36:43 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/435528633394798592/UIxavOwI_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 38, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/435528633394798592/UIxavOwI_normal.jpeg", + "favourites_count": 72, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 94, + "blocked_by": false, + "following": false, + "location": "San Francisco ", + "muting": false, + "friends_count": 825, + "notifications": false, + "screen_name": "jtraeger8", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Jeffrey Traeger" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "322543289", + "following": false, + "friends_count": 440, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E5507E", + "profile_link_color": "B40B43", + "geo_enabled": true, + "followers_count": 162, + "location": "Portland, OR", + "screen_name": "DodgetownUSA", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Sam Soule", + "profile_use_background_image": false, + "description": "I live in a small room.", + "url": null, + "profile_text_color": "362720", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/623340314502131712/bRzKZQmr_normal.jpg", + "profile_background_color": "FF6699", + "created_at": "Thu Jun 23 10:26:34 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/623340314502131712/bRzKZQmr_normal.jpg", + "favourites_count": 1128, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", + "default_profile_image": false, + "id": 322543289, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2283, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/322543289/1404270701", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "205876282", + "following": false, + "friends_count": 492, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": false, + "followers_count": 252, + "location": "", + "screen_name": "zpaget", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Zak Paget", + "profile_use_background_image": true, + "description": "Challenge-craving, news-obsessed comms professional. Oh, and of course: travel and food lover (#clich\u00e9). Tweets = my own thoughts/opinions.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/656300865448497152/CRYn9wr5_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Thu Oct 21 20:06:21 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/656300865448497152/CRYn9wr5_normal.jpg", + "favourites_count": 12, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 205876282, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1406, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/205876282/1438401014", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "328122243", + "following": false, + "friends_count": 404, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "weather.gov/norman", + "url": "https://t.co/2PdyC4ofYj", + "expanded_url": "http://www.weather.gov/norman", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 460, + "location": "Norman, OK", + "screen_name": "jon_kurtz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 34, + "name": "Jonathan Kurtz", + "profile_use_background_image": false, + "description": "Meteorologist, #STL Native, @UNLincoln & @Creighton grad. #GBR #OptOutside Ignorance knows no job title. -JG", + "url": "https://t.co/2PdyC4ofYj", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/623906728749367296/dKnHUlFM_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Jul 02 19:37:27 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/623906728749367296/dKnHUlFM_normal.jpg", + "favourites_count": 1029, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 328122243, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2890, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/328122243/1421028483", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "182163783", + "following": false, + "friends_count": 596, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/460921682836733955/s_IKjLDX.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1955, + "location": "Kirkland, WA", + "screen_name": "Justegarde", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "Justin Fassino", + "profile_use_background_image": true, + "description": "New Media & Social PR for @StepThreePR (Activision, Robot Entertainment)\nGamer / Hockey fan / Board game geek / 100% of these ridiculous opinions = 100% mine", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680625666375585792/YMJznv_8_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Aug 23 23:57:42 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680625666375585792/YMJznv_8_normal.jpg", + "favourites_count": 305, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/460921682836733955/s_IKjLDX.jpeg", + "default_profile_image": false, + "id": 182163783, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 17693, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/182163783/1450772110", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "282267194", + "blocking": false, + "is_translation_enabled": false, + "id": 282267194, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu Apr 14 21:54:36 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/684037636135251968/jkzFhGNP_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 3, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684037636135251968/jkzFhGNP_normal.jpg", + "favourites_count": 2, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 5, + "blocked_by": false, + "following": false, + "location": "Washington, DC", + "muting": false, + "friends_count": 214, + "notifications": false, + "screen_name": "ajgenz", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Andrew Genz" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24818240", + "following": false, + "friends_count": 664, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 429, + "location": "Southern California", + "screen_name": "russmaloney", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Russ Maloney", + "profile_use_background_image": true, + "description": "Radio and TV guy. Writer of things. I think; therefore, I am...I think.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/452952787626635264/AzWFuOxi_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Tue Mar 17 01:55:50 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/452952787626635264/AzWFuOxi_normal.jpeg", + "favourites_count": 4230, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 24818240, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 10253, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/24818240/1451785394", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "19213877", + "following": false, + "friends_count": 2040, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/664868086/d9fb9859e7a88ed05094c1ac2c0cb9ca.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1215, + "location": "Cincinnati, OH", + "screen_name": "wxenthus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 58, + "name": "Dr. Mike Moyer", + "profile_use_background_image": true, + "description": "Ph.D. - Atmospheric Science/Cog. Psychology of Memory are my diverse areas of research and study. (\u2608\u2109\u2745) + \u03c8(\u2627) = Graecum est; non legitur.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/520399760118018048/Brrej4N2_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 20 01:47:47 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/520399760118018048/Brrej4N2_normal.jpeg", + "favourites_count": 834, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/664868086/d9fb9859e7a88ed05094c1ac2c0cb9ca.jpeg", + "default_profile_image": false, + "id": 19213877, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 13260, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19213877/1414185104", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "99555170", + "following": false, + "friends_count": 2066, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "createsust.com", + "url": "http://t.co/7fIbJp7KST", + "expanded_url": "http://createsust.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4446A6", + "geo_enabled": true, + "followers_count": 569, + "location": "Plano, Texas", + "screen_name": "CreateSust", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Brian & Marta Moore", + "profile_use_background_image": false, + "description": "Discussing the ends, ways, and means of sustainability", + "url": "http://t.co/7fIbJp7KST", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1240435921/AmoebiusBand_whiteBackground__normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Dec 26 18:54:20 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1240435921/AmoebiusBand_whiteBackground__normal.jpg", + "favourites_count": 711, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile_image": false, + "id": 99555170, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 838, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/99555170/1402921254", + "is_translator": false + }, + { + "time_zone": "Quito", + "profile_use_background_image": true, + "description": "happily married to jimmie johnson. tv photographer. fan of cowboys reds uk basketball", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "45579199", + "blocking": false, + "is_translation_enabled": false, + "id": 45579199, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Jun 08 14:44:40 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/1131082373/IMG00108-20100808-1432_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 1377, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131082373/IMG00108-20100808-1432_normal.jpg", + "favourites_count": 1714, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 256, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 1636, + "notifications": false, + "screen_name": "bluegrass1962", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "is_translator": false, + "name": "Gary Johnson" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5361852", + "following": false, + "friends_count": 835, + "entities": { + "description": { + "urls": [ + { + "display_url": "my.pronoun.is/he", + "url": "http://t.co/vAbKyrUOi5", + "expanded_url": "http://my.pronoun.is/he", + "indices": [ + 60, + 82 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": true, + "followers_count": 384, + "location": "San Francisco, CA", + "screen_name": "martineno", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Homosexual Supremacy", + "profile_use_background_image": true, + "description": "Emperor in training, megageek. Occasional kink reference. \u2022 http://t.co/vAbKyrUOi5", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/513067687212113920/vW5VMOmK_normal.png", + "profile_background_color": "8B542B", + "created_at": "Fri Apr 20 22:34:22 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/513067687212113920/vW5VMOmK_normal.png", + "favourites_count": 1776, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "default_profile_image": false, + "id": 5361852, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6741, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5361852/1414882261", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "61029535", + "following": false, + "friends_count": 296, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/DanAmaranteWea\u2026", + "url": "http://t.co/ywbzCg2Qi8", + "expanded_url": "http://facebook.com/DanAmaranteWeather", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450221287042842624/kw-sRIo1.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3731, + "location": "Connecticut", + "screen_name": "DanAmarante", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 113, + "name": "Dan Amarante", + "profile_use_background_image": true, + "description": "Certified Broadcast Meteorologist on @FOX61News, Sunday radio forecasts for @WTIC1080... Born & raised in Connecticut. Baseball player, weather and space nerd.", + "url": "http://t.co/ywbzCg2Qi8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658610127113576448/Xd6RjnSM_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jul 28 21:49:24 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658610127113576448/Xd6RjnSM_normal.jpg", + "favourites_count": 1695, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450221287042842624/kw-sRIo1.jpeg", + "default_profile_image": false, + "id": 61029535, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 12513, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/61029535/1399463344", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "183476295", + "following": false, + "friends_count": 1939, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stefmcdonald.com", + "url": "http://t.co/fCKGP1GOrY", + "expanded_url": "http://stefmcdonald.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000103250562/eb22b8461a0091e2823ad75d7ea802bb.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": false, + "followers_count": 562, + "location": "Los Angeles, CA", + "screen_name": "Stefaniamcd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Stef McDonald", + "profile_use_background_image": true, + "description": "Working with words for nonprofits & good businesses. Also: playing dress-up and planning my next meal.", + "url": "http://t.co/fCKGP1GOrY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1889971382/profile_bw_beach_stripes_normal.JPG", + "profile_background_color": "ACDED6", + "created_at": "Fri Aug 27 02:38:06 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1889971382/profile_bw_beach_stripes_normal.JPG", + "favourites_count": 1581, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000103250562/eb22b8461a0091e2823ad75d7ea802bb.jpeg", + "default_profile_image": false, + "id": 183476295, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2741, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/183476295/1393438633", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "34330530", + "following": false, + "friends_count": 1068, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "m.MemphisWeather.net", + "url": "http://t.co/iJf0b1ymjf", + "expanded_url": "http://m.MemphisWeather.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000166702810/Yeil8u8f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "0000AA", + "geo_enabled": true, + "followers_count": 13598, + "location": "Memphis, TN", + "screen_name": "memphisweather1", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 376, + "name": "MemphisWeather.net", + "profile_use_background_image": true, + "description": "17 years in Memphis weather. Curated by tweeteorologist EP & #TeamMWN. Keeping the 8-county metro informed and storm safe. Also find us on FB & Google+", + "url": "http://t.co/iJf0b1ymjf", + "profile_text_color": "2E2E2E", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/463741044199157760/0dMc569m_normal.png", + "profile_background_color": "B9CFE6", + "created_at": "Wed Apr 22 17:11:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/463741044199157760/0dMc569m_normal.png", + "favourites_count": 538, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000166702810/Yeil8u8f.jpeg", + "default_profile_image": false, + "id": 34330530, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 60995, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/34330530/1402604158", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Dog-wrangler, writer, gardener, cook, IT ninja. Mefite. She. I don't care if you don't agree with me.", + "url": "http://t.co/1w7ytdoVso", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "316103", + "blocking": false, + "is_translation_enabled": false, + "id": 316103, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pajamageddon.com", + "url": "http://t.co/1w7ytdoVso", + "expanded_url": "http://pajamageddon.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "352726", + "created_at": "Thu Dec 28 15:00:19 +0000 2006", + "profile_image_url": "http://pbs.twimg.com/profile_images/1094775072/lyn2x2_normal.JPG", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "default_profile": false, + "profile_text_color": "3E4415", + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "statuses_count": 8838, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1094775072/lyn2x2_normal.JPG", + "favourites_count": 1610, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 548, + "blocked_by": false, + "following": false, + "location": "Los Angeles, CA", + "muting": false, + "friends_count": 1466, + "notifications": false, + "screen_name": "LynNever", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 61, + "is_translator": false, + "name": "Lyn Never" + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "15946918", + "blocking": false, + "is_translation_enabled": false, + "id": 15946918, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C6E2EE", + "created_at": "Fri Aug 22 16:33:17 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/58775762/St._Kitts_and_Vegas_029_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile": false, + "profile_text_color": "663B12", + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "statuses_count": 474, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/58775762/St._Kitts_and_Vegas_029_normal.jpg", + "favourites_count": 3, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 94, + "blocked_by": false, + "following": false, + "location": "Overland Park, KS", + "muting": false, + "friends_count": 265, + "notifications": false, + "screen_name": "kcmonkeyt", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "Tom McCurry" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "209859040", + "following": false, + "friends_count": 686, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2C809E", + "geo_enabled": true, + "followers_count": 182, + "location": "", + "screen_name": "aktaylor08", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Adam Taylor", + "profile_use_background_image": true, + "description": "Software Engineer, Meteorologist, Roboticist.\nOpinions are my own.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/480330447616868353/VpgkU4RM_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Oct 30 01:49:48 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/480330447616868353/VpgkU4RM_normal.jpeg", + "favourites_count": 999, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 209859040, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2408, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/209859040/1398532710", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "4801", + "following": false, + "friends_count": 2054, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sinden.org", + "url": "https://t.co/eJrLojRwNR", + "expanded_url": "http://www.sinden.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/10364823/d.jpg", + "notifications": false, + "profile_sidebar_fill_color": "A3C7D6", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 1018, + "location": "St Louis, Mo.", + "screen_name": "sinden", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 43, + "name": "David Sinden", + "profile_use_background_image": false, + "description": "I'm an Episcopalian, organist, and conductor. Lessons and Carols obsessive. Co-parent of 25 lb. human. I've been on Twitter way longer than you have.", + "url": "https://t.co/eJrLojRwNR", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/14147852/dsinden_normal.jpg", + "profile_background_color": "800080", + "created_at": "Mon Aug 28 02:20:52 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/14147852/dsinden_normal.jpg", + "favourites_count": 4727, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/10364823/d.jpg", + "default_profile_image": false, + "id": 4801, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 13429, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4801/1361333552", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": -21600, + "id_str": "17235811", + "blocking": false, + "is_translation_enabled": false, + "id": 17235811, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C6E2EE", + "created_at": "Fri Nov 07 18:26:36 +0000 2008", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile": false, + "profile_text_color": "663B12", + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "statuses_count": 7, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", + "favourites_count": 3, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 130, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 492, + "notifications": false, + "screen_name": "scott_lemmon", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 2, + "is_translator": false, + "name": "Scott Lemmon" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1855332805", + "following": false, + "friends_count": 226, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/555517972916097024/tbQqbcAI.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 763, + "location": "Hancock County, Indiana", + "screen_name": "wxindy", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 32, + "name": "\u26a1WX Indy \u26a1\ufe0f", + "profile_use_background_image": false, + "description": "Brian...Weather enthusiast, father, husband, professional turf management. opinions are my own. A retweet doesn't always signify an endorsement.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/645684917666492416/FxOAGctB_normal.png", + "profile_background_color": "131516", + "created_at": "Wed Sep 11 19:55:09 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645684917666492416/FxOAGctB_normal.png", + "favourites_count": 1767, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/555517972916097024/tbQqbcAI.jpeg", + "default_profile_image": false, + "id": 1855332805, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5385, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1855332805/1448402927", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "26325494", + "following": false, + "friends_count": 1470, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 42, + "location": "", + "screen_name": "samueleisenberg", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 2, + "name": "Sam Eisenberg", + "profile_use_background_image": true, + "description": "Recent @stanfordlaw grad. Tweets about Twins baseball, Gopher hockey, Cardinal football. Occasional comments on energy and environmental law and policy.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/481312445512699904/JnAyo-S4_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 24 21:12:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/481312445512699904/JnAyo-S4_normal.jpeg", + "favourites_count": 70, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 26325494, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3559, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/26325494/1403588833", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "1934690210", + "following": false, + "friends_count": 273, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 53, + "location": "", + "screen_name": "amae_hoppenjans", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 0, + "name": "76_phoenix", + "profile_use_background_image": true, + "description": "Skywatcher, food and wine enthusiast, I worship the woods.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/563036309724618752/8CybZ3xb_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Oct 04 16:03:41 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/563036309724618752/8CybZ3xb_normal.jpeg", + "favourites_count": 1820, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1934690210, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 341, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1934690210/1428714413", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "832718768", + "following": false, + "friends_count": 1269, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1559, + "location": "East Coast, Mid-Atlantic", + "screen_name": "StormForce_1", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 73, + "name": "StormForce_1", + "profile_use_background_image": true, + "description": "Fan of the weather. News & political junkie. Chasing storms when I can. Was in the eye of Hurricanes Irene & Sandy at landfall. #StandWithRand #RandPaul2016", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675523239389474816/yLAVb5aY_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 19 06:37:54 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675523239389474816/yLAVb5aY_normal.jpg", + "favourites_count": 7213, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 832718768, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 19424, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/832718768/1449885068", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "28378001", + "following": false, + "friends_count": 834, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 275, + "location": "", + "screen_name": "TiBmd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "TiBMD", + "profile_use_background_image": true, + "description": "Husband. Father. Brother. Son. Grandson. Surgeon. RT\u2260 endorsement\n\r\nThese opinions are my own!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000061627366/c65512cd0cab697154ec069cf5a86b60_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Thu Apr 02 17:22:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000061627366/c65512cd0cab697154ec069cf5a86b60_normal.jpeg", + "favourites_count": 4846, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile_image": false, + "id": 28378001, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2471, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/28378001/1430364418", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "288786058", + "following": false, + "friends_count": 545, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/reeviespeevies/", + "url": "https://t.co/yHf5SJI7YN", + "expanded_url": "https://instagram.com/reeviespeevies/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492765999247007744/d3t1gWZl.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 380, + "location": "Washington, DC", + "screen_name": "reeviespeevies", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "Katie Reeves", + "profile_use_background_image": true, + "description": "I never tweet faster than I can see. Besides that, it's all in the reflexes. Michigander. Athletics expat. Master of the [Science & Technology Policy] Universe.", + "url": "https://t.co/yHf5SJI7YN", + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/521117669978693632/GpH4ICIH_normal.jpeg", + "profile_background_color": "0099B9", + "created_at": "Wed Apr 27 13:33:27 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/521117669978693632/GpH4ICIH_normal.jpeg", + "favourites_count": 5476, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492765999247007744/d3t1gWZl.jpeg", + "default_profile_image": false, + "id": 288786058, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 7394, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288786058/1423450546", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "227381114", + "following": false, + "friends_count": 1388, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hydro-logic.blogspot.com", + "url": "http://t.co/Aeo9Y59s1w", + "expanded_url": "http://hydro-logic.blogspot.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/192387486/x157a10c8e8bd14f06072a93cef1d924.jpg", + "notifications": false, + "profile_sidebar_fill_color": "233235", + "profile_link_color": "3E87A7", + "geo_enabled": true, + "followers_count": 1459, + "location": "Madison, Wisconsin, USA", + "screen_name": "MGhydro", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 112, + "name": "Matthew Garcia", + "profile_use_background_image": true, + "description": "PhD Candidate, Forestry + Remote Sensing @UWMadison. 2015-16 @WISpaceGrant Fellow. Trees, Water, Weather, Climate, Computing. Strange duck. Valar dohaeris.", + "url": "http://t.co/Aeo9Y59s1w", + "profile_text_color": "73AFC9", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/580493396457988096/Iv7xPvC1_normal.png", + "profile_background_color": "D5D9C2", + "created_at": "Thu Dec 16 18:01:10 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DC4093", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/580493396457988096/Iv7xPvC1_normal.png", + "favourites_count": 713, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/192387486/x157a10c8e8bd14f06072a93cef1d924.jpg", + "default_profile_image": false, + "id": 227381114, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 47343, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/227381114/1427235582", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14950146", + "following": false, + "friends_count": 1142, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "alifeitself.com", + "url": "http://t.co/TTxcg6UrPI", + "expanded_url": "http://alifeitself.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520893630/085-1.JPG", + "notifications": false, + "profile_sidebar_fill_color": "99C2C9", + "profile_link_color": "99C9BD", + "geo_enabled": false, + "followers_count": 1828, + "location": "Decatur, GA", + "screen_name": "danayoung", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 129, + "name": "Dana Lisa Young", + "profile_use_background_image": true, + "description": "Reiki healer, teacher, spiritual director & owner of Dragonfly Reiki Healing Center. I tweet about anything that strikes my fancy., which is a lot of things.", + "url": "http://t.co/TTxcg6UrPI", + "profile_text_color": "3D393D", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662467561481592832/ZoUMcMk2_normal.jpg", + "profile_background_color": "F4C9A3", + "created_at": "Fri May 30 01:05:43 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662467561481592832/ZoUMcMk2_normal.jpg", + "favourites_count": 12784, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520893630/085-1.JPG", + "default_profile_image": false, + "id": 14950146, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 51968, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14950146/1446779038", + "is_translator": false + }, + { + "time_zone": "Hong Kong", + "profile_use_background_image": true, + "description": "A Scotsman (Arbroath) who has called Hong Kong home for +28 years. Main biz is logistics, but love hiking around our amazing hills.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 28800, + "id_str": "186648261", + "blocking": false, + "is_translation_enabled": false, + "id": 186648261, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Sep 04 00:54:51 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/538106960105582592/5Xkro4nM_normal.jpeg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778834877/2d5ed635937dd2b766787782e6881852.jpeg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 13556, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/538106960105582592/5Xkro4nM_normal.jpeg", + "favourites_count": 2276, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 495, + "blocked_by": false, + "following": false, + "location": "Hong Kong", + "muting": false, + "friends_count": 937, + "notifications": false, + "screen_name": "Phillip_In_HK", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778834877/2d5ed635937dd2b766787782e6881852.jpeg", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 29, + "is_translator": false, + "name": "Phillip Forsyth" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11620892", + "following": false, + "friends_count": 3436, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bloomberg.com", + "url": "http://t.co/jn0fKSi5aC", + "expanded_url": "http://www.bloomberg.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628842181/gjlz8x8joom885xnxm09.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 6374, + "location": "New York, NY", + "screen_name": "eroston", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 455, + "name": "Eric Roston", + "profile_use_background_image": true, + "description": "Important things are more fun than fun things are important. Carbon stuff; also: non-carbon stuff. Spirograph black belt. Science @ Bloomberg. RT=PV/n", + "url": "http://t.co/jn0fKSi5aC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000435307841/3799d9defe14d169734dce73708261db_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Sat Dec 29 04:31:19 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000435307841/3799d9defe14d169734dce73708261db_normal.jpeg", + "favourites_count": 2042, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628842181/gjlz8x8joom885xnxm09.jpeg", + "default_profile_image": false, + "id": 11620892, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 9324, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11620892/1398571738", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "43032803", + "blocking": false, + "is_translation_enabled": false, + "id": 43032803, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu May 28 02:57:25 +0000 2009", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 14, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", + "favourites_count": 60, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 11, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 117, + "notifications": false, + "screen_name": "hzahav", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "Haviv Zahav" + }, + { + "time_zone": "Mazatlan", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "174773888", + "following": false, + "friends_count": 494, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "26466D", + "geo_enabled": false, + "followers_count": 112, + "location": "Wyoming via Idaho", + "screen_name": "brendonme", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Brendon", + "profile_use_background_image": false, + "description": "Fan of travel, wilderness, and bad weather. I like twitter for weather. Accountant.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663443100329578496/_Mb_plGh_normal.jpg", + "profile_background_color": "828282", + "created_at": "Wed Aug 04 19:58:21 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663443100329578496/_Mb_plGh_normal.jpg", + "favourites_count": 1384, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 174773888, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1261, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/174773888/1418678965", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "214591313", + "following": false, + "friends_count": 1174, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 177, + "location": "eastern PA", + "screen_name": "phellaini", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Phil Vida", + "profile_use_background_image": true, + "description": "Free agent weatherman and hockey fan livin in the lesser side of PA. No mystical energy field controls my destiny. It's all a lot of simple tricks and nonsense.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/510940238898683904/qzo1BRy7_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Thu Nov 11 19:29:50 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/510940238898683904/qzo1BRy7_normal.jpeg", + "favourites_count": 51, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 214591313, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 6284, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/214591313/1410652635", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "290180065", + "following": false, + "friends_count": 6452, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "slate.com/authors.eric_h\u2026", + "url": "http://t.co/hA0H6wWF56", + "expanded_url": "http://www.slate.com/authors.eric_holthaus.html", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 33509, + "location": "Tucson, AZ", + "screen_name": "EricHolthaus", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1607, + "name": "Eric Holthaus", + "profile_use_background_image": true, + "description": "'America's weather-predicting boyfriend' \u2014@awl | 'The internet's favorite meteorologist' \u2014@vice | Thankful. | Say hi: eric.holthaus@slate.com", + "url": "http://t.co/hA0H6wWF56", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458779628161597440/mWG3M6gy_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Apr 29 21:18:26 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458779628161597440/mWG3M6gy_normal.jpeg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 290180065, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 37765, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/290180065/1398216679", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "33627414", + "following": false, + "friends_count": 1488, + "entities": { + "description": { + "urls": [ + { + "display_url": "SeeDisclaimer.com", + "url": "https://t.co/Tqkn8UDdDp", + "expanded_url": "http://SeeDisclaimer.com", + "indices": [ + 55, + 78 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "metservice.com", + "url": "https://t.co/SjyJ6Ke7il", + "expanded_url": "http://www.metservice.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/490700799/S5001929.JPG", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 6988, + "location": "Wellington City, New Zealand", + "screen_name": "chesterlampkin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 250, + "name": "Chester Lampkin", + "profile_use_background_image": true, + "description": "Meteorologist in #NewZealand @ @metservice. IMPORTANT: https://t.co/Tqkn8UDdDp Love family/friends, weather, geography, Cardinals, SLU, Mizzou, from St Louis.", + "url": "https://t.co/SjyJ6Ke7il", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/644259881222995968/HaNnCIwE_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Mon Apr 20 19:20:48 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/644259881222995968/HaNnCIwE_normal.jpg", + "favourites_count": 26057, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/490700799/S5001929.JPG", + "default_profile_image": false, + "id": 33627414, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 59554, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/33627414/1449305225", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "305956679", + "following": false, + "friends_count": 259, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 241, + "location": "San Antonio", + "screen_name": "SAWatcherTX", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Michael Nicolaou", + "profile_use_background_image": true, + "description": "Believer, Husband, Father, Weather Enthusiast, Mtn Biker, Singer, Ghost Writer for @Head_Shot_Kitty", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/673343369880297472/yN7j1qOc_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri May 27 01:45:17 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673343369880297472/yN7j1qOc_normal.jpg", + "favourites_count": 8199, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 305956679, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 16970, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/305956679/1431833958", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "98729176", + "following": false, + "friends_count": 541, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/KyleRobertsWea\u2026", + "url": "https://t.co/8aCa0usAwU", + "expanded_url": "http://www.facebook.com/KyleRobertsWeather", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 1182, + "location": "Oklahoma City, OK", + "screen_name": "KyleWeather", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 75, + "name": "Kyle Roberts", + "profile_use_background_image": true, + "description": "Meteorologist for FOX 25 (@OKCFOX) in Oklahoma City | Texas A&M grad | Tweeter of weather, sports, and whatever crosses my mind (usually in that order)", + "url": "https://t.co/8aCa0usAwU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000834039489/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Tue Dec 22 22:00:16 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000834039489/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg", + "favourites_count": 1400, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 98729176, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 6535, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/98729176/1448854863", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "44676697", + "following": false, + "friends_count": 836, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/515574502416060416/TjnMSFeM.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 286, + "location": "Nebraska", + "screen_name": "Connord64", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Connor Dennhardt", + "profile_use_background_image": true, + "description": "Meteorology major at UNL | NWS Intern | Sports, Politics, Weather, Repeat | Tweets are my own |", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684560962582491136/kdyaM0H7_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Jun 04 18:06:02 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684560962582491136/kdyaM0H7_normal.jpg", + "favourites_count": 705, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/515574502416060416/TjnMSFeM.png", + "default_profile_image": false, + "id": 44676697, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 11540, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44676697/1452046995", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "244886275", + "following": false, + "friends_count": 449, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "841618", + "geo_enabled": true, + "followers_count": 89, + "location": "St. Louis, Missouri, USA", + "screen_name": "CoffellWX", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Dustin Coffell", + "profile_use_background_image": false, + "description": "Meteorology student at the University of Oklahoma. Fan of the St. Louis Cardinals, Green Bay Packers... and an avid fantasy baseball/football player.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/625768224039280640/vp386fmO_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Jan 30 10:49:38 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/625768224039280640/vp386fmO_normal.jpg", + "favourites_count": 49, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 244886275, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 380, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/244886275/1438029799", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "17063693", + "following": false, + "friends_count": 470, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "martinoleary.com", + "url": "https://t.co/cZyb9A7ETj", + "expanded_url": "http://www.martinoleary.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 576, + "location": "Mostly Wales", + "screen_name": "mewo2", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 32, + "name": "Martin O'Leary", + "profile_use_background_image": true, + "description": "Glaciologist, trivia buff, data cruncher, man about town, euroviisuhullu. I once was voted second sexiest voice in Cambridge.", + "url": "https://t.co/cZyb9A7ETj", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/434801946214801408/Ni8aJvw8_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Thu Oct 30 11:58:30 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/434801946214801408/Ni8aJvw8_normal.jpeg", + "favourites_count": 30, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile_image": false, + "id": 17063693, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1386, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17063693/1440399848", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "Tall", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "17010047", + "blocking": false, + "is_translation_enabled": false, + "id": 17010047, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "131516", + "created_at": "Mon Oct 27 23:41:42 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/1443130120/meandthedevil_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "statuses_count": 8440, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1443130120/meandthedevil_normal.jpg", + "favourites_count": 4109, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 122, + "blocked_by": false, + "following": false, + "location": "Springfield, MO", + "muting": false, + "friends_count": 426, + "notifications": false, + "screen_name": "sopmaster", + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "is_translator": false, + "name": "William O'Brien" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": false, + "description": "I am the bot-loving alter-ego of @corcra.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "3912921921", + "blocking": false, + "is_translation_enabled": false, + "id": 3912921921, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "000000", + "created_at": "Fri Oct 09 22:54:12 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/652618720607469568/P_xzWL_O_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "statuses_count": 1, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/652618720607469568/P_xzWL_O_normal.jpg", + "favourites_count": 11, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 8, + "blocked_by": false, + "following": false, + "location": "Everywhere", + "muting": false, + "friends_count": 79, + "notifications": false, + "screen_name": "cyborcra", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "is_translator": false, + "name": "cyborcra" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "87095316", + "following": false, + "friends_count": 3581, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dennismersereau.com", + "url": "https://t.co/DS5HCTZw99", + "expanded_url": "http://dennismersereau.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "1C88CC", + "geo_enabled": true, + "followers_count": 6030, + "location": "North Carolina", + "screen_name": "wxdam", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 342, + "name": "Dennis Mersereau", + "profile_use_background_image": true, + "description": "I control the weather. Contributor to @mental_floss. I used to write for The Vane. I also wrote a book. It's good. You should buy it. \u2192", + "url": "https://t.co/DS5HCTZw99", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684267915261030400/F-gzX8eX_normal.jpg", + "profile_background_color": "022330", + "created_at": "Tue Nov 03 03:04:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684267915261030400/F-gzX8eX_normal.jpg", + "favourites_count": 9121, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile_image": false, + "id": 87095316, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 16694, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87095316/1447735871", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "129586119", + "following": false, + "friends_count": 761, + "entities": { + "description": { + "urls": [ + { + "display_url": "twitter.com/deathmtn/lists\u2026", + "url": "https://t.co/FTnTCHiPpj", + "expanded_url": "https://twitter.com/deathmtn/lists/robotic-council-of-doom/members", + "indices": [ + 120, + 143 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "jimkang.com/namedlevels", + "url": "https://t.co/FtjJuczRGL", + "expanded_url": "http://jimkang.com/namedlevels", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 898, + "location": "Somerville, MA", + "screen_name": "deathmtn", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 72, + "name": "\u2206\u25fc\ufe0e\u2206", + "profile_use_background_image": true, + "description": "Occupational traits. Admirable hobbies. Characteristics! Some projects: @autocompletejok, @bddpoetry, @atyrannyofwords, https://t.co/FTnTCHiPpj", + "url": "https://t.co/FtjJuczRGL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680850007063457792/cemxWArq_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Apr 04 20:05:43 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680850007063457792/cemxWArq_normal.jpg", + "favourites_count": 15045, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 129586119, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 48889, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/129586119/1359422907", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1160471", + "following": false, + "friends_count": 789, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "muffinlabs.com", + "url": "https://t.co/F9U7lQOBWG", + "expanded_url": "http://muffinlabs.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 928, + "location": "Montague, MA", + "screen_name": "muffinista", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "name": "\u2630 colin mitchell \u2630", + "profile_use_background_image": true, + "description": "pie heals all wounds\n#botALLY", + "url": "https://t.co/F9U7lQOBWG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Mar 14 14:46:25 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", + "favourites_count": 11542, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", + "default_profile_image": false, + "id": 1160471, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 23431, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1160471/1406567144", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "2344125559", + "following": false, + "friends_count": 2332, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bitpixi.com", + "url": "https://t.co/8wmgXFQ8U8", + "expanded_url": "http://www.bitpixi.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 1737, + "location": "South San Francisco, CA", + "screen_name": "bitpixi", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 174, + "name": "Kasey Robinson", + "profile_use_background_image": true, + "description": "@Minted Photo Editor & Design Associate. @BayAreaBotArts Meetup Organizer. 1st bot: @bitpixi_ebooks", + "url": "https://t.co/8wmgXFQ8U8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Feb 14 21:09:05 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", + "favourites_count": 21763, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 2344125559, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 8723, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2344125559/1444427702", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "415454916", + "following": false, + "friends_count": 553, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hecanjog.com", + "url": "http://t.co/tp6v4wclVE", + "expanded_url": "http://www.hecanjog.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/380385437/maker_faire_diagram.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 938, + "location": "Milwaukee", + "screen_name": "hecanjog", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "He Can Jog", + "profile_use_background_image": true, + "description": "Computer music with friends as @thegeodes and @cedarav.", + "url": "http://t.co/tp6v4wclVE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680888868795633664/XcKxqp2Q_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Fri Nov 18 10:54:19 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680888868795633664/XcKxqp2Q_normal.jpg", + "favourites_count": 8724, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/380385437/maker_faire_diagram.jpg", + "default_profile_image": false, + "id": 415454916, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/415454916/1451171606", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "36128926", + "following": false, + "friends_count": 1018, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/444538332/Typewriter.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1035, + "location": "Edmonton, Alberta", + "screen_name": "mattlaschneider", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 53, + "name": "Matt L.A. Schneider", + "profile_use_background_image": true, + "description": "PhD candidate at U Toronto, studying digital materiality, print culture, and videogames. #botALLY and penny-rounding northerner.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/483750386462101505/o4-hAGZ6_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 28 17:44:59 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/483750386462101505/o4-hAGZ6_normal.jpeg", + "favourites_count": 7999, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/444538332/Typewriter.jpg", + "default_profile_image": false, + "id": 36128926, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 30919, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/36128926/1382844233", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": false, + "description": "my kingdom for a microwave that doesn't beep", + "url": "http://t.co/wtg3XzqQTX", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "372018022", + "blocking": false, + "is_translation_enabled": false, + "id": 372018022, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "iseverythingstilltheworst.com", + "url": "http://t.co/wtg3XzqQTX", + "expanded_url": "http://iseverythingstilltheworst.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "FFFFFF", + "created_at": "Sun Sep 11 23:49:28 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "EE3355", + "statuses_count": 318, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", + "favourites_count": 1215, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 50, + "blocked_by": false, + "following": true, + "location": "not a very good kingdom tbh", + "muting": false, + "friends_count": 301, + "notifications": false, + "screen_name": "__jcbl__", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "is_translator": false, + "name": "jeremy" + } + ], + "previous_cursor": -1516840684967804231, + "previous_cursor_str": "-1516840684967804231", + "next_cursor_str": "0" +} \ No newline at end of file diff --git a/testdata/get_friend_ids_0.json b/testdata/get_friend_ids_0.json new file mode 100644 index 00000000..ee58f79c --- /dev/null +++ b/testdata/get_friend_ids_0.json @@ -0,0 +1 @@ +{"ids":[174716364,4229043317,584141481,36244707,34643610,7383122,2307068066,390842981,345894976,2798004630,193596810,16474986,82431632,20021712,2967867342,1345863144,525249617,80797182,365459573,1511949548,21014078,227013289,1532543576,1481054280,16280979,25453101,70595671,255517988,596841936,64523032,15714370,1432081760,45869342,778250695,23008743,915719034,16467789,39263564,3346616554,333442035,36918513,15822969,2469857444,826052299,3892175716,1563895639,3079401397,3092079436,17155587,98962695,2336216776,41565136,832057747,482179923,3987827837,14115172,125423182,123289807,2383284786,4527950052,1485600931,2352084432,22508206,126151675,38705128,433247367,1079443074,2338105459,118935599,28599820,23295958,2284018490,1232995548,184385983,357661916,877260416,949232324,198434663,416809908,20065936,307855987,3182047141,247517043,4427416695,4426698797,75091114,32878430,4273147873,2402197177,1543056944,47605173,2560289532,39013572,2866046769,126037037,17402120,262352377,2358407005,596706060,2885725097,600580312,466899807,112029154,3035489583,3420906832,294225981,2776016907,43602705,3041074949,75641903,15428612,1666099686,198352854,216100700,60843563,59489293,18486446,385883807,89254683,116707941,84028963,2566824948,57048551,19351317,219957717,3877035493,3812320515,3540832456,3377353389,3306463672,3306307028,3252248568,3240557112,3105512481,3036145773,2954253258,2786392888,2761823098,2690520336,2536509241,2425339574,2339890328,2331512354,2248966884,2192183084,2186834270,2168408323,1926787008,1897471286,1465738609,1427386350,1414052431,1377573938,1351957970,1327886413,1172385756,1155945612,1150900106,1035823255,1014668238,1000540062,996120571,995794087,968080993,963957084,931130899,925035698,858718512,802185074,714240331,613455739,608610375,599849374,561887188,498700046,469171952,454672754,433794960,422355017,415989428,415458548,412254113,395868327,386076684,374811299,374675413,374413553,374052497,371313804,359573726,358903005,355696940,351971672,350579415,326854066,311240703,302102486,289069118,272285827,264806091,238096056,237243990,235785221,229114172,223424972,213359082,200217502,193653724,183454227,177458594,175104981,157965754,138375644,136968204,114543805,113960138,107161643,95981793,80811754,80122680,75467271,74424673,71091193,64610462,62029673,58517669,54903471,51207702,50089463,41146281,39909343,38839573,34865826,33223159,31397776,31387025,29719275,29708270,26843983,27004894,24444891,23833491,22156161,21864336,18585097,19491190,18114111,15630662,3737281,28072047,22538725,2906956060,372575989,72345536,3350493279,156905483,12475072,3503442196,19568034,22410909,2603080159,82355306,2888034164,452352757,3606504676,15414356,76849994,427354566,51031558,28563096,34863269,525487471,119521385,4316815947,515511443,14223960,267788953,17617472,3053663748,3248910245,34306568,415823496,1524749774,153280848,235348644,15506669,234136347,733322844,14160917,33287494,990305612,1915177471,1563503360,3585167052,458046334,2613246072,961755354,2266035060,946894280,4220691364,4071214642,512407105,262471388,19670226,373584957,15920243,4257979872,14269768,97738079,2538349783,58211781,3412867557,284718102,20224969,21826316,15670644,4119741,22429979,1344603788,4009671023,41660626,36508851,3910893854,4010449719,65176836,14545372,2980058889,211177035,757303975,14817150,18393196,15692520,1209887330,58812628,637196658,372018022,3942597494,200711723,278093318,21119658,39446462,21982720,14511951,3676292235,2927107460,4071873193,394060363,54306976,4129078452,17663776,140252240,82659154,63697051,3834939257,3621791535,1541797452,1643475626,1012864226,594015697,133929829,194714715,2489508619,189763764,8752222,3074259883,1138981327,318549214,82544380,29735775,14679233,4040207472,26682348,868389662,4010618585,3245142196,3980516359,240471848,2382609979,112793441,580942452,15542781,46190611,240184267,44903491,2821370524,3257162537,1497210092,1353260683,21059255,26028448,2455204525,377206475,7900962,15029770,559028753,3907577966,1252117579,3617313256,313743136,2198108859,135905236,131552659,25856281,1360417214,67622527,216633730,97506025,15376200,65154490,345232857,272491055,343267635,92027622,2192878808,2478738590,233387844,3317341816,17448192,401281561,3929578042,3937345408,18639452,22095964,246788299,14552366,360654151,2281125961,62515016,835680883,313525912,3982969096,24277551,2747973655,3167182492,70784623,207635400,28411360,478849885,1055281526,3356531254,3266848870,3958051175,15359205,3310428789,111778335,256277422,85032215,249466118,1111063441,633980404,12604082,17505249,17043428,344395626,80655195,1003857624,1509936680,165731767,2178901645,3230052541,378703672,1268764082,14585409,14752312,257893956,26609246,25924436,112236745,3901783420,16866617,16951956,77570910,15409625,16944165,21266560,2927266003,90694228,68449573,403727931,404421890,68707961,14290018,166772969,399004430,307589282,607099840,17455195,131301936,8835652,33935000,515034648,2916305152,3675973095,284638893,3114313702,2971787403,2342323674,4906211,3406043239,1390255892,591160609,2370597494,1430901781,177336591,173216568,246867553,219070649,3310348271,3364515135,214502417,246615051,21099301,510123282,2526706224,2231927636,2201024219,3352886781,2821132277,330797853,3675995734,240061941,429946250,570705602,169661494,2545171004,3184574881,32929377,1482771301,3583264572,3541994172,45155495,2493733837,488810546,21581820,14607059,2980100441,36393171,163036182,81951477,26396117,18424289,2514293430,1019836922,3293886549,110396781,221834911,2813202439,50446226,19758375,370758768,383435496,14676835,24831757,2180408564,3350807423,233257967,16880858,23911915,448434781,166267705,65640999,17774100,1135983726,621522194,3221765772,1198690393,3472808781,61018648,27895727,257922239,3458195901,15754281,2467791,34379755,15208768,861455580,3243356006,3433379001,21634600,1282121312,1369144951,52494838,52499707,379824075,292650377,2830496875,33661289,14768193,2212664486,514033223,26267605,298665200,1365252164,148962007,1475775084,66385865,590060558,55633685,3241266563,3169051790,124293790,14264161,476387407,2453452381,2395614938,14850576,14445325,4488,2780477770,20675211,441134864,196462653,54654212,2285771029,1665877224,718449524,2680763216,47374474,2717089861,518143842,3021697442,45420135,135990436,41127809,229999442,2437502443,16148151,417739798,861893730,230240898,1040127511,1380385320,2600187422,3243668999,845066312,17200105,1365460075,961201465,610219779,113689722,357551176,417960385,637467612,796721929,61524685,869416448,839536712,764372598,1020108763,258960686,579300579,1710096061,2372308056,20715242,2492541432,2431369694,99000872,304550287,15076489,2835899107,620020696,49574494,2408844830,512905341,49534192,299639883,2941125060,14145626,311086886,21512767,1523794302,324956327,18049298,23195549,11179192,340795517,874798920,69186722,979311691,2978541712,1219366122,3301420004,14295657,244162778,2805687654,1143905359,19039279,183247422,14994676,3193173610,19086064,15914986,1106610996,552661784,179163585,480630176,124528783,1170164516,23826345,134918286,1546783842,127705651,76520255,375760645,17596069,50329013,243314723,18139220,2615319734,249724351,15737554,1259839165,345615190,166028524,1665386791,275391646,245384422,308078682,3304470901,25658504,103085965,3018968748,14468410,148567358,3395561619,111404710,1347581462,3073871212,17530448,259953357,610388842,3373321,15852132,28883874,35088920,272633065,284542523,435404014,2937575623,3244931611,203609543,3219632226,17175139,3333394869,456930921,3065348142,35382548,278652369,152877900,74903828,96602314,56179493,26377478,25168865,3157927513,15466988,285125151,2746648903,3362148580,3288353887,785808991,456403811,2645532414,3307377695,42634830,34946754,139830358,42857269,1858554535,24657506,48419856,14031032,14116915,198020721,13759792,770066,1701631,3153328297,780993961,2417085025,22032817,2978608072,2866454409,1357254643,1656174793,352644923,2903966777,372760774,299505155,25170613,3226238609,21916640,22205944,756762998,21145852,1490861354,80893052,1979558624,3345956002,3293153877,313813951,87205530,14695043,2284287030,1408308162,1732689133,3256190911,829323654,17372204,618351213,364062266,3342152225,15218212,17463028,2218734840,630703637,2152614386,2859487678,18104730,1433469289,18040395,463428936,397694029,637357269,2738735742,36584174,728305885,714296275,163610075,413634848,523676772,265484413,225096128,222490156,36322086,998640920,21277118,3232924232,3251112680,608310777,2949547815,52452323,2347560146,3016964678,15824288,246309084,2547533580,341046775,42628521,3309136432,14188527,305913715,16683885,293941423,49885057,284589209,65478524,32269230,840506047,3239114702,2615603432,345454327,36336107,3108671256,3091552272,274866611,394134791,18244419,153500044,1465842356,586,7692762,856432010,12329252,18737731,22546003,3300703462,2841359663,82398383,2617471956,138681231,2690187182,885506959,3119449389,299988190,3308352436,2899780530,887221,2182516859,2153551561,165862343,14614981,24950791,3293347210,3309662224,1296292616,1222705992,584162442,217478823,2900242168,779049289,840233028,3257262027,13565472,2675109888,30013010,168754092,14526877,20698435,2282667775,835858886,570484435,2223451512,1722403496,6476742,636586551,17851886,405157471,15604078,148736206,77456101,74536754,47880934,599515941,2931131799,36163152,3044665445,3572441,2937632239,15481158,25171326,47939390,15808647,15249166,16287007,1398449161,84652865,3151633831,22271373,15432750,23971393,273223527,2149815847,2384173392,20056392,128544009,72255032,39279027,313525999,3221779009,17714082,16782604,1270746139,3148356377,3195834151,1536791610,30791070,109317659,538489875,2609106255,41582030,18691048,89123936,43642659,14124899,545804017,17238395,22840995,138830247,537776452,325803700,2448248076,2877214085,266185089,3187026492,23596644,23408887,20172250,102420852,499917546,92030522,1394917244,1556361283,151689073,557976011,795008808,566052541,115865427,569643970,329989597,27963917,31227419,21918047,16132284,25396695,188045648,3149889709,1730414958,133947893,3172756859,3186605629,28592419,465255113,379921752,37280980,239297332,28049003,12523012,202890424,605674944,422105720,16517679,500704345,60939512,1304924886,278648035,3160470333,216776631,2151820370,2339685247,615471114,188545143,814589791,1260091734,2752775016,2868169873,39692025,3146567046,20530177,231649709,2815076773,14774366,2480569345,2828369140,271636708,104916123,15529670,14638851,15081378,15774048,16002085,16596200,17179368,18536997,18637420,21576334,21705181,22021978,22128352,23948464,25030848,25298569,25960714,30971909,40874240,43792125,51002583,53416347,66533920,80802900,102934369,135060958,138108708,162869238,172081908,191849753,221707278,276713213,363997684,566688127,1183947482,37861434,18269124,1200738858,25348485,1582341876,1228526078,317700208,46770535,2885031082,51768731,22481472,2769059108,2680336646,171198994,33323849,14247155,2882391828,2489298668,3148813916,10959642,14903013,113450686,1267082576,3121530274,492545912,1315298502,351127535,251796912,404351974,38135837,1634066785,2968989617,1071777608,616279187,123532694,109890809,17681505,16721061,130906331,2182641,575905433,93581874,1187444389,1606877971,27688281,16957321,2856042501,378778750,1615577521,431627744,197108944,1551856777,62648354,16785742,11696382,2732089057,12494842,3107878302,1000968684,538475269,84599034,2176557343,573965125,14571751,2685092670,364762860,714864200,17621767,6825792,22458458,46335511,1915336519,16088941,1278123535,233473695,376790816,87215923,785683,217430520,1444424754,58514805,3035726218,6385432,14897303,20508720,80617430,167518667,14477723,432895323,3029021253,562585357,25889033,32078497,1357252880,28278535,2952910735,139112983,235214894,2865812463,44776990,17599655,5045181,6780932,2445809510,2927758254,2842655435,2296984584,1694401938,21165339,807735240,39108656,575660051,3092388093,2400443496,57076191,155748301,13209362,197035403,14325025,3063529148,2485531140,1906951,10018072,2562629773,222467178,29752603,25165002,947986136,3014224345,12076002,16396118,2371270375,2977964520,60642052,571202103,80069319,140074826,52129399,126628622,21965626,12755092,2314467259,34424798,582909932,3026704559,258923616,2030711,27212264,2392489904,16725824,2778827209,3058016604,342100419,18014373,122387909,2382117350,16892481,386631799,2835337844,127739478,16477936,187516575,17845620,2600525376,101754147,84684955,14564868,55694209,33433709,751452180,16216975,351200120,2575159890,29100243,661403,478326622,92601300,831880992,1269364218,386413191,526600858,60747383,15612654,456253373,978176486,17687405,132399660,22144306,19185921,85193539,18137749,27025052,1926360631,105207999,202787004,174397217,110504902,15220768,27054843,111954709,2496916592,16109926,20066416,2991711108,18259909,81650351,85252011,763450351,2770265776,139823781,85732762,5360012,2777170478,2247473304,620142261,2983295300,558739638,259725229,19968025,2826874038,3032074419,126696497,135158292,3047677737,19983827,997629601,14464767,25375092,9207632,14043142,20020021,2846058853,115615024,2703332132,1583321544,271483634,200918256,2965129341,131227689,16681111,2845735816,612644714,2899672599,1087860428,36184638,610659001,24461387,43379364,2980412572,1483376342,2326120952,755861322,36959762,537541336,910873332,55216586,337819489,2553927774,2032411,82861206,631401764,23567622,28888320,7140202,2160344682,16220555,1126749103,13967302,21248379,552582271,7782442,19819769,792378206,2338365339,2962973505,21484068,34126441,1898493691,746032117,476193064,14728515,1919257285,19137592,47327436,15363133,311080265,944203531,54216622,96072665,2885138213,1285630338,87057908,19734832,3003481647,2999377084,171167972,413355878,321522551,16548855,959675203,8790772,2292182045,20476151,15421871,301579605,16339247,454992440,2550858595,1429055587,928481,20651511,19040598,8034682,135575282,2789139782,277219019,2783583373,50741143,190669152,2990470226,513855040,584359541,2988116739,18297407,19358191,171279007,583869504,132213553,145613137,1581896461,6698022,15865042,13217612,14481269,101897322,129653547,28251153,34781412,2605497847,1966256035,243775607,2770081590,18700629,74474794,77092809,64954941,960727483,26401477,2566085594,25892745,5031151,19255050,31094727,34632493,30290980,40028412,22587230,21364753,19918988,16619709,19711765,87474197,589535421,256722290,462578542,1950272508,253270711,205076166,169698101,1451773004,581815681,2192619314,2966047517,1639495106,887906528,459796949,159955958,20017825,18276341,396399850,212304085,594376322,599632006,596964216,813560072,34936539,113739104,18955413,909529062,103041418,234947344,119625403,115210837,403567128,1294168843,189253902,203654782,21495286,2546261755,2364189422,2847023699,516633812,176036339,18689183,29795697,34197266,2862725633,92326348,33136420,24381416,581005340,24545398,73761305,626861469,381725263,87420519,379356101,107823143,473111750,1481073828,2815948320,2911296698,62724059,2841020667,28373693,1327886654,1843791936,2759600352,554508623,17042078,2820671119,304356334,314702715,14493552,55038953,315302894,16714443,351915951,296464173,187972757,19355829,14606202,1733419830,42660183,2894919132,28098358,66444507,50219804,117247636,23031376,43358159,20380049,29776689,14868608,29299946,220044097,424484966,17947003,2875097319,1107261638,165411483,416699250,78533960,1125047372,205193523,47498699,20726786,93761004,410600310,49155241,15349180,1471250628,1179455215,2438273430,2381931636,22428439,50488060,388937036,250844472,1949282881,394103606,57932039,49012699,1494655406,21339159,2881924182,16877374,260929607,23656337,57656702,52756637,68482261,17186905,2202557258,2283541350,125190427,16935292,2821900992,425265314,112838571,15367088,2596218403,248805395,2806556857,262317278,520665133,256754327,18806838,64786050,16224705,14186638,17125603,1617731504,2778642937,553757993,284988279,544773325,710322776,1203840834,14949573,67059584,23112236,259395895,74801995,2563919738,313080999,403608556,2518212522,440362326,258909040,2618403776,35688200,312314261,274396558,872252960,204932888,20481072,2864318800,16715240,41186732,55896443,291531600,16160638,15129727,252179335,245983319,15084970,255861014,71832238,77920769,30321661,211939913,1669352653,2857371350,2666750809,529501969,962148625,302404672,22497733,2546868080,2677634329,2712674750,851499338,2755310156,1530953521,2808864594,2305630168,15345483,67367405,17833557,305591096,792600386,61670139,2564135360,268429621,2831587762,865341985,136018565,2331421572,2839228199,61526252,2733320850,2577957372,17040892,2443847048,15961122,2435960576,2651763620,51318358,1611472182,840450648,236916259,83385252,619642695,44686344,118245138,600803781,179459971,57145894,60101766,77041903,49717501,40470694,63646805,1672787334,88135655,471741741,60075391,213228524,25741919,296198193,399010753,119116960,2719719666,363873688,256495314,121817564,1406091554,53120768,2567863897,1400360078,2394236400,358260333,430989298,56709645,1362466212,30581721,2800252702,16177628,720238182,298034812,17169832,17049669,15837189,22209567,80859044,1321619010,27849650,2238491365,27225542,14765585,44046726,52488565,2826549302,80593904,1499335951,17974312,178023069,385131056,15704617,31832948,202313343,1876367312,57047586,236838188,2597498814,327577091,400989826,2765974980,24667140,1545338485,25518846,2179994252,62266883,441421837,1496344326,1306041620,174110843,1288758828,14437242,16656631,1115148079,2325202999,337886919,614249266,1081962504,541158674,2651646559,1667662856,193473814,16007952,16222904,561676909,1167842311,1486002967,1236601488,810483626,1547722903,109779429,1258398914,277320871,2801517637,1735713398,1289024803,517661405,1671813086,168987151,20941708,40656806,2628171535,473444562,387686234,1491083406,786625988,63760115,1966754972,14056532,18525154,2677576862,14304615,381026831,31338198,2746492014,1534066765,1362354044,28585356,17688714,1278161922,20810335,2693435648,2372984767,1707854317,10536952,139933597,27315969,16607603,1418741706,401775393,591459541,218944987,1405385880,2291338687,55243095,2469548600,38475395,2495438286,2426410609,413164975,2354233526,872355266,77621538,15762708,39342600,2232398257,1182675871,24595575,81690879,510592186,331703548,14974079,20941733,22041466,148529707,121544946,19904685,94127415,72842277,143923948,17348942,14517538,88781425,980582593,38146999,260928758,917421961,267328866,912345692,17666727,48048888,930781598,15738974,33248363,41476394,381347159,48000256,241964676,25772065,14636374,135501248,2740669634,209693623,764204616,14045465,1676457685,2493331080,2468202997,2744765320,2763178020,83972205,15838004,37521145,400372150,246682858,2659960540,324599106,138692729,2415887156,2584158559,124236245,16641343,2577502560,71461029,23760311,1546624514,386517435,164089883,135461282,241730145,114604564,245305204,376380585,36056115,47747074,381318163,61676800,22845527,15521535,20007097,97327765,27000730,512417432,88975905,162436508,535878400,12382582,143914733,2596694492,2294608897,6440792,17073225,14090948,17068692,34308692,18481981,341908197,394962139,7768402,69004966,14849562,216379128,50058630,22987082,62952335,1682157414,1163807618,207645432,14780915,23818581,1630896181,558927451,24606710,12803712,463054608,116106958,11265832,548443674,2230397137,40789325,158503650,14698682,21787013,26731417,62414046,2400320881,1128482060,32542903,115182291,236050146,1251230114,305870046,2405020009,1098802430,16119366,37547775,215746958,2308875504,98685536,606838476,2450043698,258684388,18749271,128242246,48116802,2444534352,919373695,44499804,382937731,35315865,874176120,2544227706,19551341,129988372,2674556090,84200893,2472066191,478669659,2391664056,176210560,871991101,186826724,47526275,17417452,59029811,11990942,8132582,297602297,19178857,193767233,28947018,132655244,46690800,12354252,2165245332,2590407811,79449976,2634423025,290139804,1076770202,45268666,84661546,898124258,50482530,78647472,505364106,595568451,51306445,1439508630,18629321,537343182,402199056,31439308,16539917,17966102,33388399,22138134,573415146,1916506454,764365266,168537920,19000697,17519586,2332700791,1147895708,30008429,154652139,950794590,2333936658,350457031,595722578,334972686,93258847,1953020821,244539931,126205656,145312903,22915052,835787268,1568977914,16146755,582277886,2317168669,2321375918,32427374,42956446,741928796,29342313,2423058966,1072993274,245078181,9022032,17602811,63783716,79306105,14765253,2544359214,615526730,40303245,2340460459,50337556,1445427806,1891806212,2499310819,2586257250,18963809,24226431,382689369,10688432,268432127,28218405,65688328,83540809,14089370,15009111,14347423,41202241,1198481,72287350,137455381,67595257,44104818,14786823,29992342,37298915,339398952,1414376791,280753615,317256778,13786802,331803536,19563103,17040599,59503113,29442313,91593332,240087328,76485784,609308872,1356942170,95468980,9636632,25180871,2378320579,12759,14699388,71465523,602065304,2480079168,2377815434,1565908723,49860614,102807713,87466533,897558096,33480171,1492400330,945310303,745744310,29913149,126410058,2548240340,93187905,19855459,1892683062,43696910,14994194,288778779,543582293,1573751760,2168445745,186183169,2484050419,245347370,560900368,266635682,280237680,2474749586,32257623,54993288,37377034,2349040381,14721643,407657538,2417232973,32527860,343422277,511065332,2517988075,165573426,302186628,1965716257,55320310,5907272,18161631,23694685,978343472,19767193,83031278,600031424,286429276,274754192,41410667,33351873,526871737,17030680,17766403,1017889500,80076673,390287262,2266900200,88454469,480196886,90674236,30644410,872955290,16721621,568825492,330921167,168786720,13680362,36670025,2363506767,16303076,12917402,14822252,2571155086,255323205,815454817,127877956,25935803,28250356,1331578932,87691397,19034236,292650956,2492302700,403929334,15728098,139909832,18103385,73385250,578570016,91237615,54277378,422217439,41847726,611743131,7091082,1399429982,284694021,2240082577,2423795893,15008449,807242797,900817166,183962178,129767622,61354111,16182261,1561888556,187518287,1750241,34877293,2491917122,156045092,1598322511,373490653,2497242884,94496307,28982619,137482815,52461472,15355482,32768009,33647344,16191902,51176565,90725320,262753143,65987618,544466882,881469662,776386459,166555205,14465327,43412697,438935496,376939806,2347382634,14080346,1137893880,15830436,84413113,9078002,13654792,24794149,234132941,392460729,14376279,6604762,463070295,25564548,1603425318,2185084844,31293166,46934577,17375281,72783659,20778387,303651044,68870274,472499685,22006902,16952174,15088481,16799074,18261865,26521047,36381021,53186378,949934436,76478482,21943064,245587242,207775224,52521572,426080991,16978136,14156567,86455397,1004714095,2403031566,108777062,1002351378,832197440,770853422,740719345,470939544,382758202,106843613,93986038,92512982,87759772,68906469,37866396,23469247,23115743,21770611,19123229,17472945,16870421,16838443,14365976,14280661,7748752,14238165,9684932,6092342,6044272,5943622,756475,48473317,2424440299,137319969,336624022,55119016,310293175,20608711,209213183,612019015,20961635,11317392,16227629,773627940,267038232,259317559,11313202,733515391,1638825054,22526906,1523709008,861949171,1714177862,8221612,14247309,326665662,882173190,1337011070,263129271,14248784,17371549,2315729580,112843330,58684655,17889970,479816451,109944769,811268736,2350315904,1575918264,132231788,52998367,363399297,17874869,17698600,286703,60087571,590074258,308607766,590052098,266917386,563051945,37759047,277337146,5870242,1355927760,64873265,303955090,19164415,20763870,40615771,975002792,2460145735,16231706,929989772,601874499,22965441,54687857,774357217,247462443,2281856286,2460716006,16531850,1620127254,1109372617,21249970,2411793456,1388352121,1910701892,190367688,791733534,15522528,28637222,353066648,120194754,262077429,318488345,90982474,71643557,376819015,74612541,534530008,79870762,12044602,1212433794,14787561,135486450,370343276,284544447,16637461,1184647243,38496530,7591572,86537404,14599476,13784322,16594832,62575859,14513611,255797635,119756545,15764415,2329384614,26374751,462334474,15684633,129924486,101149691,14352599,108418043,2373927878,291486075,22804909,1979667199,613822232,42072417,139920911,18814041,20755177,602602937,15023095,17198424,219877441,103962290,588470328,40233111,1549717748,226662318,110004599,179546580,165204211,779349096,1281581,275031945,23892094,1542533869,625619938,14172171,140893518,2384027052,31563791,101233661,119528386,2437819891,352823966,27581606,16340404,368720556,24820089,111426091,16303106,262806854,1305684487,580147795,59124142,46106161,367132858,15112727,2428998008,970428030,165896536,66182591,2314620908,305468597,17824498,491638416,25283401,1322965681,257261479,1598644159,130949218,36525252,18812587,1220677470,603162738,111061417,87617621,84875272,19026735,125153534,14315063,1607352596,1485895513,110025208,1363049263,47678024,3564041,68974666,297915370,634702778,912858588,55592530,17211476,560448814,2317837263,84679163,184716468,2239721196,237236374,595331088,71666839,382444001,2179057898,184916555,5389812,278216951,109571377,16716425,55289075,192477353,492492626,820569,16891507,1102056919,19002473,327738223,1102910605,410464768,153509545,441389311,1862198252,236650677,134687445,118228045,2426127924,231136803,1489065949,15934978,347982162,1027408974,322207364,933838590,394838158,26605345,132615314,41806795,23128315,21332950,58947113,514564994,14637342,537964292,802356409,778882057,1513925282,793202,41159876,2188586045,27941766,165565949,107217872,30948908,18778603,220796129,259302400,61044673,109028340,48564118,223416400,1452248826,15571577,1725031976,104150206,202718818,44562973,214120461,15906933,338374151,161075778,155978068,22518224,15774741,569681063,1883512460,1245104060,27485087,10340482,35117516,23044822,465143733,1537565070,818439685,249839335,16299754,507370446,35982657,52314673,329969032,217295265,36722950,15968617,550055167,52525358,845978994,17954340,524561437,166421185,75123927,1355953682,23102969,22014639,188215959,473466262,219029005,278163334,227576375,827977682,51205716,137742822,21972198,240932555,40562015,14190948,18251446,366602971,21347530,542004682,56722075,561070834,43485656,2364657150,2290457413,48023374,1838597966,2401493394,872059213,969293274,265605249,390967512,175091719,17454817,287538756,1201951519,2264624702,264787370,2340558698,717209689,381677670,331932733,23636580,47654924,7342412,19329527,2779791,175711277,985757023,2348907300,14205258,17018575,74386780,62259828,164369912,262349771,118962352,180889575,456034260,48252319,29628889,1668371516,449588356,2282440670,6462342,2303751216,29120905,236635893,19761418,824191926,50023989,19557634,1729664714,2315839860,98906407,1406854364,2379806143,1080534464,606466484,749333,243019943,87095316,732073,963455227,18290719,18131748,81915651,2375449098,326506923,34873364,112929575,22454647,52429172,57833122,1668138098,25147689,18084448,32190652,124222041,318084384,17435612,147672166,69012419,2216979384,24881388,397497637,2361860238,2241216361,17939037,29564281,2342620190,9465252,2347049341,30092032,720863642,101092520,351221537,453709635,316654916,21882601,2339734951,1697668345,274559013,42447094,18229868,518681855,297564170,16906137,2354013972,119580247,280572026,15790927,107491156,23982002,149666064,112396470,294018733,115396965,1560780523,42721524,981127062,18637798,14304618,2195930491,16051232,97703815,2262999971,32511767,632062492,304049696,304070008,305256777,272989565,2341020134,2353506732,50306005,619524081,19715003,56564230,220873939,2350108166,14361155,2270533266,25333609,132631769,17815546,716827128,2316481586,234273955,481324580,1732829419,128308837,275471220,19548625,334032462,14067742,20411816,17358750,590185677,927505483,393592962,291363,2305323806,33901209,251829918,15145016,17092444,2174555742,394932596,32347705,15751301,395491697,18171067,78963433,39602114,19055698,20495812,285802436,66261900,311062620,441275531,22260999,17574357,104513715,277482283,618401788,1189043576,48021931,25039599,1932282721,432958090,16947056,139975371,14687012,321181858,17458287,2195241,16166496,2171689341,78779800,14202246,398187934,14922268,21286406,170354845,2217591657,15223905,47451496,61663,21834922,26780981,42312055,42329555,27893163,2288937728,51221826,17088643,42782133,25158349,1741439630,841898942,298557751,211971511,2140881,163228451,59386332,154311445,288723364,22495024,191179377,17179406,132573995,1444281925,2215893336,455084468,855379321,97706891,2219131,14093319,409456907,26286732,165948821,14579345,35752684,40054423,1329879698,66768858,20184945,1120359931,15191052,17669704,385025866,109621087,351299373,404296475,34409137,973090592,18152276,19940791,829363578,11996222,21865001,37205200,19450277,364439712,542793644,191190039,46417885,60983046,2167820294,16664681,455256867,14676895,1710881768,75357513,23357795,82066670,300181817,194475085,846634963,20182094,478578230,470357978,33627414,18029055,16020654,19245896,22496235,14345566,33677778,15891963,14156778,85412404,9403902,743599406,35872795,21895068,14917754,1234790060,468517832,39957764,18026602,17851178,15174190,19671546,51640380,312544802,296363505,24777536,2180480845,345161879,18334440,762202327,620547379,47153140,19222806,2276246983,59128257,95467111,94954481,14913762,104256824,272161214,17699677,2233282904,204841064,18572660,43533499,47840385,14935628,24244836,17678156,54730258,108358161,967133442,140928543,27637371,25953115,19971990,14445542,18345986,35294738,30255833,18611348,16146513,54239985,165798058,17596056,120640652,20727041,208442526,253536357,39234189,44136028,18843227,324834917,15742946,2163177444,329865729,123483569,62733454,855593120,273813321,18301602,160589263,493121864,15614725,87792156,80938488,188632613,204127602,224182352,275675429,322653723,333500366,360645886,347466521,64689798,873141,4875721,15478750,15662761,20003350,19676647,20387595,21563402,24561336,102932090,104274999,117602839,194359565,248765957,294224506,321646852,368292391,130305390,150940204,1639748756,1282050768,371193896,267371257,54311364,1887854366,95982652,318426183,88014855,103139471,23144045,46174000,403676245,594666501,95488935,25732408,626111072,234402376,22860921,494010838,18587457,91180720,4207961,15446531,314563166,145380533,47707475,298123685,12579732,58978275,20890385,16393860,46501372,69393590,83374478,24760864,18316818,88215673,157931852,30530300,468763363,182839127,36171004,56566033,30233007,1468133850,53796731,17316722,595854486,37032310,19608297,228403233,1849348536,18644734,273615113,16715753,22054220,14688517,16714347,27029537,354221701,29956346,95629476,42716278,1809251,162748968,26222868,55323675,2187906247,74555974,302022259,143789061,559509007,20193926,1575964944,16841286,15641532,15300838,1597324129,18496432,17086094,483701025,14999172,19844126,57714568,2262142926,883458102,313159302,19223022,1122767850,375895295,26208862,2283772130,1301374621,91826119,13201312,419764595,469408036,9320852,309755530,20411630,496420759,1354890464,7102242,2228734814,86715527,596687292,357760567,1723563360,223608893,85644875,27911608,1460016181,48844884,78953563,25065495,16001409,156375999,16034244,562164937,360442117,156466613,24651708,39759481,575675721,93620724,167066499,49753604,321029318,82631496,1880454828,2275298702,300972590,19273804,27810354,1416355640,86650732,250455054,111456333,47345734,10990,19909828,185594976,2274778854,483126812,17684473,427397243,22270118,113062227,177583181,7510172,15369355,17311077,18264824,27688964,475987826,17645400,21250425,53429839,61842240,48377323,21722109,1615447254,631657132,19790241,1604444052,15103460,20652901,13774902,12094902,33031861,1964891982,31100329,16073416,25115550,142896252,109257354,41591401,7215612,1586501,12302892,55630037,67716195,22367858,29127028,192589318,12510442,7482,8833012,2671,11613712,35515414,31005149,460371116,71028123,125118607,31128730,388743786,989,217900600,280716675,743874438,30324031,30750869,451128139,18121069,178975033,12526142,21985202,1094163222,1918228742,34175976,47285504,256979481,39077431,2160596971,60615841,5272571,306834250,10836092,225301621,117640526,14632294,48800583,34284490,17171111,53978909,56461780,10753312,17385903,339754094,19754498,45743403,5814192,1124861,7865282,212463932,245095160,12534,11133442,76373,28381177,27613650,564141120,429057282,954012890,118952409,131497030,22496608,16386970,23910646,123299344,15142050,18271124,254999763,1408457989,48361925,101878960,17079526,28523687,20731596,314661596,254660986,213956450,1598979864,121707270,824157,549962062,1022147078,21525601,18270831,1058233296,18466714,403087766,12244082,2228674112,9879372,20134672,2139211,495309159,33561428,434825627,95411363,309929507,456865788,742747086,185043343,366631688,47064286,11175742,8376882,342130924,16110819,811377,1529928896,243377639,963723824,83237493,1451878254,234418976,52850138,1144882621,237548529,57111966,10642532,19658826,1604023434,1393155566,1647996986,97416190,487118986,27727639,45972160,287816744,1463789270,2228647020,42466456,1467609360,15443743,596904346,322658299,27778117,1295001,15174406,23370996,14120729,235700566,87374085,15526789,136357511,6323872,75897022,63258372,14120215,9507342,993249055,232520849,15428397,5051271,907198734,19358435,860334187,118082516,91378530,221452291,295713773,148868647,8842842,26518374,816405054,1263288692,14073093,59019225,14136335,16207462,1578141,168531961,144186376,1641384510,749520146,101964362,1167699625,701732472,275686563,76310905,293372650,389901694,105829953,211917765,18728633,116734678,202756449,7389732,50104358,509381461,490991627,67612556,15138104,9696182,210814143,104201057,24134103,15065434,19014189,119667909,258198244,701700079,235822929,172851165,15908429,547860279,15812461,1225257002,727472528,341251022,26048553,472220354,373598135,196566583,904200264,134525908,18839785,12819112,360285166,36323148,15740362,18689000,27596259,289588260,40638594,18164272,1115670186,237945778,2154419157,889974050,2158603635,162427574,429253192,207644722,1464125821,13533782,381565112,108547794,20629966,18465455,38418472,17161562,180619610,136682570,513426047,306854368,273940910,18250813,632873524,29999829,574862909,327024618,625957916,1079355888,322658873,14066920,612577026,310297935,378643551,1010645653,15537064,778820143,70283241,1240142522,121869155,1027736432,1287359551,80885440,225442825,1098985442,466096296,724416918,20849273,2726611,83424009,1419099463,322122983,91666825,318709067,609043536,2179078237,84944278,121641469,18584841,19042220,852123008,127727270,253114974,910793808,27740227,84100924,240830856,1860428197,93714983,92306628,6374602,89264343,42950930,102423027,35380758,309553018,111057129,218503228,15950086,25408081,58449246,24252078,33896484,2205386796,39912341,148062893,93011077,1777681,16115811,7273892,9546212,50085432,11759912,164856599,17316885,15811202,284234943,201518147,21232505,36623,16892321,8732322,2189503302,70111948,1214410454,6036882,29342640,389658589,45626053,13893712,449501607,22991553,195841657,18369747,209262555,21515818,23615682,16608394,384439469,226976689,16313140,9851362,16218527,24941044,472132412,16340178,31177357,178641594,2162288419,37034483,64439775,176119964,1247296152,82594895,1662687974,1374411,16197784,8287602,15931605,301244366,14062180,149180925,15514266,22144278,13492102,169534465,30000912,274652076,572609848,87818409,169021842,1400238956,20751811,1877681767,7313362,140555541,9677372,117100903,17296792,20382472,1246951472,72103163,148517828,3416421,19175209,14885620,1408384448,16641462,1227932144,33874126,28222719,23739721,16076032,14834340,749963,1642801009,109062332,550478944,86550180,14886344,13028322,62951951,5953552,80661799,1485951,20252410,38483313,21813582,227102437,550165697,610076827,43194865,226907218,15163466,54272289,1667834671,29097819,288935074,75562656,67093183,280868082,17701238,15040384,46119836,185768634,39961555,482133423,22322194,23962323,47968457,33235529,1000010898,440565290,1485433387,25081451,17773720,15143755,48804449,176461575,469612967,47653644,17919393,28008289,16228326,14111769,14296273,86598343,95695246,2165843252,534222221,14755492,20974456,14412844,14588121,979771916,97618796,1860765181,77907173,47172467,14297954,546717616,1675070168,22977061,526634228,198494684,960709321,422936661,43092107,18566095,20164296,78786944,14313489,47902921,6347872,57141571,196883764,786764,18660641,259911231,6039302,15334380,203343685,32391821,522593098,207812652,399535666,225147537,42180290,111127902,17026589,20946458,33773592,25807291,299966548,2171400301,863189960,176468814,22193361,35773039,37723353,176603549,22140082,16435365,15892011,12183532,19213877,561740267,23462787,14106829,14515835,19325156,2166704808,48075643,103865085,19562228,160486066,19906615,7030722,97732452,972651,263923033,897811,22075295,19956827,38031983,15667802,2163009578,15234886,7276862,33602654,11178902,40923595,56993835,20861943,154404805,29240040,36384443,30081493,1184354442,443944804,1666038950,604922608,17183370,45762945,283198095,16860092,243284052,308245641,971147274,19534873,1880725393,362642209,243236419,104884371,119714092,23782253,20790033,101841773,22808434,19815609,450946343,308258036,907382738,14873117,16387212,47678555,131226723,266054237,24496544,55078954,10926872,23124458,96644479,13493302,123231225,158495061,1009878901,31953365,380153789,281878733,97883743,535993853,14844076,28350888,107175080,82447525,14079041,40705991,60840767,1705817688,771797250,19968983,434957751,90290461,293303534,21918310,32396502,1947301,16955991,16491683,921878857,15164565,94214332,2992751,676033,17369005,84460442,1582853809,547079100,34739408,135890983,59557368,141057092,239996599,610994398,16272052,21770050,387234867,23034607,80937844,40816246,35236603,239568469,37486660,14323791,14116034,182086979,393465677,572619533,47856457,32584728,95151374,76183,24575229,19766166,57263671,258684352,380648579,14657745,24095957,102322678,15078406,152628803,15291489,408627912,1579596458,44309422,59565766,38859736,68044757,43274511,100748297,8117362,245208137,78271006,8805142,23054053,48957003,293063175,91272704,866613794,134758540,1954179860,21565678,15269964,14440999,56449023,73043514,118975084,16977059,117396160,198916706,331136088,79498684,975765924,344504956,105998402,76134964,438152067,77677426,21919837,19027273,548116457,62356591,1945505580,146469194,499236335,183177218,1114865460,329628561,1157111888,216094714,1349588593,1111404056,1299995892,114573522,110692399,297920799,371795336,85760252,105400144,214097804,1616360412,1605865171,24939473,17396170,917105330,117027371,59472131,1336611008,610232748,228174088,1911787543,213831149,209754653,16168804,18895336,20619143,61384123,18283526,180996411,156989464,247104242,696053,3369501,25721557,21152157,385706946,42313640,613495552,200553940,1341233137,764332561,1028643932,1113541,11092842,54270424,81965017,393798581,280159870,17549096,300290452,1627535185,220219500,255542457,1213574630,870283597,1117043418,30528307,66198455,960920364,11170072,326184086,154016912,1889568127,48863721,483302252,15687090,1002513128,18507505,24253723,64474365,226595853,17239105,18631445,55355654,115702663,360282270,1728882062,15464697,96015193,470847338,15300187,36753,1446255144,191700412,383854361,252161971,1173231918,339722887,363005534,15170984,146884709,17442320,24164156,617613927,1273074444,106384372,246377868,14804589,112627753,4847281,13069712,83910272,1127009540,88494621,818679260,1293475052,33211889,822029557,21952517,478826292,18174747,77438776,60928769,56681826,51037540,84123196,14998416,1397615262,33732691,33546635,1904656634,128900117,49102743,311568175,102087933,34944596,48755549,426112230,61903300,1491382866,488743376,214641138,260371201,1673511787,2553151,133880286,299223576,360047784,96694146,16463078,1280792054,16253060,18042484,228223882,16353245,21866842,21942241,19962224,720364819,16349800,114670081,344288321,1904781277,40556633,30435298,16463237,18080108,706529336,14165865,199072293,348457097,80867152,21642935,18171927,465129155,151670855,50443212,1364098368,1481408358,16869577,589748944,221269569,17758861,26099914,34963979,52051571,528987149,24205972,456478383,1372641625,3927611,19002348,1339835893,618542623,407136748,74024358,34714432,16119090,300428054,56510427,59304820,16589148,53777247,27794232,9670142,1767741,22824237,111712308,54704874,18686907,87699418,30942337,264124770,495650403,540734980,128172483,152958374,31901869,20890584,1240317522,20257132,10304172,8668862,17918561,42226885,117882437,17793878,14123908,128288109,16105705,81644488,244276540,37595712,19116515,13404152,39279393,277011035,276567401,117576644,634243972,622439778,38002103,40860228,578650970,375858149,19435213,421574883,101365366,26957009,1429751,186648261,18438933,344039566,187080626,7764332,1020058453,41814169,1330457336,156889951,18161668,451256188,43922300,23030211,14565991,39030654,59936143,43289988,210319337,73190286,25823816,44078873,40303327,15655247,48706493,2518321,212454830,14422439,137223549,141545751,21493664,4310571,149126628,18834071,654143,17991281,166694329,394635011,15115726,911455968,16119772,14168524,190645655,1558669614,41663308,1868400020,188844898,15237501,87502184,18464437,77304134,7416752,180667856,220906392,578411542,440413534,11696512,195840784,1499013618,18659273,14552083,16666502,20829376,14471007,20178419,136109646,364481519,112816663,877305698,2400631,227381114,16399949,135198678,266979999,52734226,18819380,134855087,38244174,57411021,42889683,491851440,1289593933,1201661238,17673012,180200031,18505952,78564613,143499407,24887083,14504258,449678218,59591909,416204683,774393817,321025003,175426542,55308417,24209685,375676119,602774686,1849889239,681473,18155543,22836988,42708195,14982625,61014911,59268383,594617548,32547753,813477602,14822021,15411858,944467345,15613664,62316989,9411482,21689161,18991464,17467341,7150532,14591033,142411092,107842978,15169889,33629924,123289066,23227841,32686298,24870244,616485017,102420827,126664186,19402238,289485255,252787550,50263701,128615552,50005787,16091351,13567742,16033525,24815411,125184430,263830118,112245265,29061341,1401100357,14085704,181912222,66130611,18245041,1344951,90035806,17486677,132297131,185855695,25029672,126302054,185680080,870834091,29309901,16041234,47821033,1517267136,284883861,18478188,65155179,18919088,1447394395,189998613,26607725,109043700,34227622,78635037,331817345,20153725,331816614,8067002,83996344,36444204,17813980,39451367,17285007,21687414,228077059,14742549,1430882924,838179889,62850214,207526260,13766492,1571270053,838464523,1249676186,63815293,300010853,16985214,41588397,1377937416,1178700896,870325686,107127119,169559219,889180130,1131118056,202890266,152696429,142614009,109583234,47371913,27557391,21706413,18487054,808561,137096072,112695981,1117121358,345251750,1645605294,298597381,70736359,7994972,490495458,59924621,279614869,54399803,290593825,430058230,637109692,188266169,572225652,594280020,128292609,846828564,1371909548,9534522,1467703272,176300862,417631398,15585039,221041703,14761795,268357486,27681019,816653,15952509,18781150,97523297,195419597,47539748,92183278,32540650,382417301,43092459,1027394472,27610987,18230846,56487200,12263542,868571394,29854529,711932869,573918122,211154075,328838071,925931544,1058864162,1311811896,70574234,15828276,114231889,75742264,923883858,539448537,183898082,26613480,1530850933,14617499,100610221,94091863,92241457,601170594,253998571,955698157,152954171,280559948,133751142,8241232,347698644,89735094,634812478,69097128,1018872102,777308683,203253392,737826008,18351581,135488533,22530207,108045600,20306034,96468445,8108972,297152824,356955821,214402290,123006717,184513694,546947988,83740333,1166663852,18365496,99919360,287932099,291897182,12726792,148292070,55374753,1123693536,547300420,26566469,397455346,15922651,37104266,38245723,14483124,16600687,642833,1367176327,24004475,16319594,20095865,39697444,601295358,1305156254,1455320918,32868144,28006501,15903378,16304004,631174177,1110262956,25454556,1201714944,1486296062,293278876,18453284,186154646,321202808,407046019,142669299,65707359,65647594,1408488632,88318895,291510996,46731762,972154164,15662133,479670287,43151136,34024882,480153399,1337535175,20729031,20279370,185809250,602626619,40627145,369875107,12807482,353340280,1308830929,11232732,29472803,9210392,790080344,22222965,204416862,13298072,377654770,44703654,22921528,57537847,24817859,6758002,83643610,65491605,23432012,147305691,14304710,414379328,15220336,786939553,18109873,558465496,196457689,23949947,1216619071,226471593,391602037,55034379,6409412,26348016,173240772,134309619,248293692,19873593,19401550,40356855,15254839,30422794,349540312,866370582,562304281,15646875,283313600,20454896,180088363,349189238,13474412,457603095,1050991014,616879823,83874770,105203181,16434221,233604842,6830032,16564282,814338416,18019555,218951054,235130370,23290408,586893303,237774782,726951074,873927577,534649806,47986971,116880409,21077860,18008484,489690950,103493067,16583845,25407830,281889829,181195091,15964196,308429376,106776691,18020985,21251300,18646159,13566872,288388335,51241574,1170072032,112526560,14446054,39005137,15099133,18352378,14276189,22028564,22845770,74635290,457171434,130268681,126407166,39538956,203114508,46699613,362860027,26908178,165568433,17934812,164397041,27862718,84958161,130033510,48219046,326255267,43464013,39796874,39868135,404532969,47011573,866829151,1123401283,14254183,538237177,362278535,157684364,24459544,78783,69354861,135405245,15869453,14484418,380532380,25919183,291810580,492752830,34311766,60498741,47697756,40711814,22213141,112475924,14308508,40924082,435228319,50371114,1158638582,18291099,386146285,840238500,17162991,52814770,37269308,234141596,226631680,349785521,349289363,177569765,61187080,19195460,325100194,417201918,14069365,15189391,487198119,16477771,1501471,21633721,24387882,17493949,14083763,38936142,1119295699,189601534,44196397,57295940,15102849,17765336,20770348,147168151,22018258,14560460,8634412,20444181,15066760,13145012,13395932,1093077343,20536103,125767077,2621591,48569578,18228075,15504885,1120626926,277198961,7593662,39832918,14630696,792780432,14255407,22137832,1099234603,97757027,91270013,15496147,329557752,241368542,116475919,16868686,224180296,551481276,944484146,16744509,599298339,282728979,1115301194,220135900,11030882,33522604,34113439,182454948,17623957,293984358,1807011,111400999,70449178,364728802,18691328,25880588,17136568,622628412,288994624,14963760,14733744,1077233198,208546826,387383722,144703320,58740930,103036462,516684914,102115921,39564433,20010925,15919988,47635720,4952941,285908150,28517623,258896387,25484126,119464925,45552104,249385348,192921396,1069129315,186154648,810709142,16752675,223890696,21925180,16675569,28368825,21012092,2811851,726628538,601981724,823098086,588387056,199798906,821401298,21301014,16194566,67390766,26336221,54583264,22862623,30785007,143964151,17288045,357031575,160010755,21844854,59159771,19605981,87113558,989633635,717034813,14096763,13524182,9532402,236026761,24795000,23342802,19306810,161044052,30893732,916735110,65783818,16460682,22000957,15119529,350415705,120868481,221167035,114782468,20193857,27582945,23629255,709871912,273012474,424595791,44438256,375971107,366193785,20512928,15838036,109099014,110639889,569839623,465070708,19532804,192231853,338828458,22049097,399679253,356834376,212071519,907209564,48363858,703388616,50338601,60694237,17502416,14179819,178770014,20714592,14738561,136998045,118747545,1305941,16012783,19655830,142843687,925999250,376005446,370751904,353465310,123425024,170128697,816325328,11620892,20182089,31127446,14529929,32521584,21111896,16157855,131144091,28181835,15677585,120180668,46817943,26860506,22772264,122396513,21215620,103949895,80638910,16359843,1025521,45399148,369505837,20196398,297532865,6112442,46557945,57770539,278776049,26754354,55394190,595515713,257553324,16125224,123327472,17908972,279162316,138020182,120233868,21415998,784122984,35220556,442904755,118273546,14412533,18909534,19107878,95740980,18172905,203192992,19746543,259565941,5779782,527743455,24810179,190450243,380642128,32448722,529154224,29764993,137340182,109524559,15865717,27302376,18291873,322245908,381104554,215161294,23153246,544638548,19834403,116821890,26858764,103115805,18739693,23486744,817407956,13148382,928582106,473620611,877003172,57356719,93475451,9720542,20262083,371994104,353480777,74820061,75944553,199498184,39185716,67144836,1489691,133315811,24081172,109484552,15187243,16340092,19935420,22017317,64141011,21693060,22770193,400196836,5174191,123626700,15990298,18931517,632301127,145773567,205839574,81896993,90545097,16566825,19550262,72445766,16197345,377027721,104263696,293735479,10752192,15685721,7848802],"next_cursor":1417903878302254556,"next_cursor_str":"1417903878302254556","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_friend_ids_1.json b/testdata/get_friend_ids_1.json new file mode 100644 index 00000000..ed0cdfbc --- /dev/null +++ b/testdata/get_friend_ids_1.json @@ -0,0 +1 @@ +{"ids":[485963620,65375759,116704750,16908110,20866038,15456784,135515077,413234849,23892927,4283311,18486586,45577446,2267241,24718372,20779448,36430363,914018270,152408142,916100768,95418595,59514202,170952277,808092948,146569971,18913827,14204194,48235139,60189624,55949344,16469809,836283571,14326086,75533,460470940,778057,571025703,1140451,16358930,586193370,23840585,617299845,20352048,16618587,138141495,8525402,344425346,119782567,31310158,15113565,17409240,343523535,15665499,8220482,14956372,22903162,84194879,18638090,23583214,29491022,192942213,492328463,43383357,20342387,59634656,111216929,950531,3554721,77220986,28646364,21979896,765545706,191005995,122137723,86330674,273977738,846187382,22067976,66247691,17614582,239931382,51096731,8714762,103719755,224349882,20872592,49756585,16843806,63870858,14427350,14660933,20172221,19746393,19742740,19746495,19746268,15537164,14363806,245448121,40305346,18768691,19409006,43144360,41433870,14427372,38102814,50442406,15838770,30067519,18643531,96783382,10913042,62917637,432930849,14522630,18640668,35251183,35992925,52214572,11942832,26043704,234485044,237019614,190388631,580191183,622804972,237845487,564131974,54424058,632015726,18406495,548047639,15431856,8320432,10716292,21436960,15234407,14987728,14848513,16130330,13462442,17089636,117662694,46319532,7429892,15032736,18393773,128956175,22026842,802677139,587639522,312254799,373373336,347998327,22053725,211209877,70535360,95493980,33929775,15659248,23055689,25726636,27845025,442870573,386461356,362051343,25832541,787799,27049466,14552720,119826247,105225912,214190858,16149338,84617980,81497957,248826162,17078632,36471939,104942217,19201509,590300532,17141268,56440721,590195750,31475315,21303235,16102081,16331756,16332498,380228140,204832963,778160544,323431504,357533790,32513043,80354646,55191723,262542624,101348982,125400908,351832182,15666380,594736235,545195543,303483832,619247259,34278838,617825073,115417134,302076301,18026912,201319817,301239030,279323718,261959272,607684948,55356886,43117170,15947277,33575662,619950540,110967761,14075928,427057264,626854369,185357063,14184651,30715662,41147062,2090121,17026643,15468275,16129920,16349125,73238146,38516217,112740986,164555798,20796192,16456004,15763818,33439673,255128753,36104874,35318803,198614401,18492549,16460993,19085082,49988522,102836256,30308764,100838279,18620828,216868739,100936791,27978241,296462011,14458660,81934163,30120541,16843817,18164420,46836666,17971635,1183041,26863892,767,740109097,61306578,11211372,814001,1046661,53280402,14217740,5971922,11229162,12611642,14606395,249478001,484991854,15402623,14807898,14702533,705166483,15165493,19789439,16619832,16677622,14696463,134736009,93513698,275251813,20389458,5450132,121953044,14485423,15698903,52758395,7093352,735096642,376949805,24930840,50115087,210141126,236622791,1917731,150656075,56770914,730902326,552985513,109266393,480120122,10846402,130238521,17630125,243821406,24493890,19412541,376353997,194347664,17695016,193064494,211543116,33256849,16042794,15865896,50090907,20858691,36367130,136725784,135316691,14934440,70739029,15507433,28164923,453510918,14677919,15294166,15473958,14385676,64748159,30915636,58113278,154202677,38441030,299258001,60654735,74567808,346569891,15838694,24399191,131570276,17093768,1769191,18696996,95428712,353003932,146123790,198584761,175691292,13787402,143912910,39800314,46190055,128569463,109298652,16888712,121309596,248742334,46220856,14325188,30927826,38156420,206001945,14962779,495300028,21875834,101081754,337808606,78361556,456864723,124603983,46577579,54208274,15066876,606549267,28450164,501993054,17001490,28044313,227117671,350509998,245603564,53435986,384923143,275561685,404851901,39350796,385183010,38733200,742143,234015324,320199062,495263448,20071361,424274065,137706974,8861182,16543760,454313925,34920742,586909317,594723485,607867793,16023029,33857883,51261818,14520293,571371777,41697083,90959399,42551075,35235695,97262484,19564105,594911608,585246185,16117029,598443842,18214621,20867568,23698358,48144050,17374418,549029322,36025916,363490884,12648652,39530187,79997785,104585489,59423440,57372601,130933196,15116624,14710129,16062207,495612497,19649450,53141844,22952405,18176147,54300251,506990949,18480977,29912873,37710752,17283244,19515424,11180212,15500649,18569484,105918870,17632297,536694088,250884927,71882824,509063626,49934930,490848670,34743251,48473838,28200389,58489734,331286084,331450910,56052405,481066283,17367404,89215087,19884952,145306695,104267638,132235973,11988052,9692022,83047883,14061849,297556877,30434892,46442771,14434011,20605481,147808148,391409009,7433772,17820399,754485,14251225,9505502,498123757,129906416,16684911,85616866,20193243,122215796,22997361,54396291,18918414,17344324,67774992,50325797,20068053,18943897,309233470,18164887,216084954,9334532,22994700,84465907,465158654,22300059,15974368,285073363,192764972,189376144,18203287,338474200,17505090,112756074,436006103,18685382,407019221,37926315,36716860,66685269,17045089,70418177,376162509,93682627,14505838,116654517,56212232,18396070,15693493,18246347,24619328,19617284,414284406,35031059,146183346,172632175,96098703,24283263,148435933,233226613,65108529,20642310,234270825,20609518,248239533,23503181,45584305,31861048,89898430,407889268,33282082,236104191,9313032,25020347,19011119,89707859,16213646,21689801,159684911,8291102,23805874,21746623,34711477,282865138,15604930,18641695,72389498,191287999,201421969,274295451,77641370,264234073,261025036,112015650,20481118,16495544,43913045,27052547,360413441,13691782,14194740,286880935,202312445,119166791,21969867,48803664,16733088,17074051,77105290,18509870,106929968,22382110,13631142,330502724,16341357,115252480,1417921,366371278,188019636,19996524,44165613,16939891,17498747,94168199,105675677,240691392,258607721,14940354,16988038,16299627,25531732,219062922,304627263,15990809,317256470,174421336,71869296,39765940,44753284,16744473,12040102,38584206,16204696,49164309,28343270,303994581,28410253,21821945,283865965,97691156,213107009,15200719,14669951,99163691,15726728,24111487,202699897,20955270,418,28962525,15412727,21492467,263685349,18884857,41622671,94129050,22859855,14173315,24235302,231854033,18537794,19086456,213575929,101614424,27796165,18421509,18078425,305005427,31053563,258885469,12011422,6576492,7590112,15292471,15066958,43425975,18906097,6145862,14976721,21416856,17494010,232268199,239461632,37029298,22320759,59599859,258407797,58393592,301012485,72667138,54885334,22215485,40164352,38421062,80684362,22883726,6362172,113469866,15803768,21220931,222636878,21373652,22938645,14085070,89580481,23414569,11635932,110415536,18146725,16020435,21312469,77517399,21874164,104589290,51747161,130836664,11190002,818155,54660914,14955620,17902047,15936311,18638502,313537605,363450850,179973018,14156198,18594598,8862532,5770442,14412888,22656089,22046083,220907703,317133497,49689858,154005444,16972068,148902413,16588095,19570075,125637896,79241648,14515799,14802885,71353416,119203363,47392876,35761403,273010546,317880197,49251910,70764269,273197054,273000680,61536959,258458683,21206042,62925053,19422317,20957191,17488526,18023140,41093522,42533606,52528502,20055774,18089442,84376589,81000114,34919745,19170880,40047236,18725659,31187903,24126361,88710001,104299877,96795310,22105535,23314335,100607500,46751590,14928734,93094538,54981205,22059385,20933649,18776351,53473610,49732680,112480876,290106314,257740770,313493727,313418943,21009763,64400465,20029306,20527509,30304152,132926588,50885929,30961267,94581061,23365014,19787735,313553844,293750778,166196682,73479535,14335498,198567904,27476041,43260020,22571195,15726586,106110662,157467048,20438137,29976734,143491086,15461733,213539036,24235368,24913022,23067226,299485058,39208156,310913336,37399786,51381252,18622756,18451653,43395268,21619806,29211557,10301842,140195976,15840979,39756122,15360434,115441158,119905863,175295959,105417422,168776165,152314419,133379712,135604202,144286635,18291500,67378554,299798272,250392390,20375912,232552553,106887653,22362043,15637549,104502359,203532507,168912732,34903365,30028674,21875245,16064403,51606046,24405414,89317678,18488014,15456235,241691709,236516604,40368131,37687633,759251,57198996,26930438,18323373,4970411,164400667,23638014,128547882,16162201,14112563,18907744,14463012,19187439,138797212,270379099,18130251,191159103,16146731,35761879,14182620,104932756,19038395,248288710,77052243,38812075,259292849,21029359,17136310,267919533,26134082,37077107,15031724,69818419,191500375,29558838,65535634,53523503,224362254,6017542,200059931,296622807,4790881,48078807,78927772,33506504,279136688,48449654,18383373,47771556,55705595,17548215,134891395,290101954,59929401,262137156,175273935,23493152,79808570,20682357,297563101,225428772,8449542,19949151,227771924,122657422,26207922,25376735,19221220,143063931,36161186,41712825,19725644,29416787,228602896,21437682,110263006,21129234,21046254,166393507,13590162,16951434,188000721,41351252,254621726,17698956,89593573,17413572,113787262,109545333,67406327,85636450,133929049,17595958,24823749,50005441,35804467,16544818,35013184,85251917,31726915,36755482,107102609,16028241,44538849,35778794,267999603,36953109,22271644,26792275,35002876,46048042,22894243,10235102,16017472,24771318,15042296,41619175,22642788,5392522,17471979,65946380,16826617,14159148,15967738,173643681,21755786,15864446,39000115,38885626,161329769,166607010,85641096,17393196,1652541,199935082,16581604,30031547,49734054,29008249,9627102,14262811,19201818,14708814,16233170,15808765,90484508,46598192,137876169,23484039,22737278,115485051,18949452,20060293,18510860,11107172,26667264,223959958,49757093,245874349,14955722,28603812,36711678,66965843,18486243,34615731,15445967,58203491,5920532,85642187,55419844,41501555,15982558,147493361,17265423,14778733,16895951,106840674,12456402,69519838,35810531,69571569,25886862,69231483,50517161,26857202,17899109,50393960,16688755,19327532,99636351,116763916,15769774,22341950,15096075,75069067,11859822,18336459,39511166,19711750,23427122,19893321,15821039,56420936,102278432,82127917,19662718,39716211,23967554,20596281,34889448,14286806,22670999,18038892,67101140,88745438,29562655,16982863,14113952,1282161,88615688,1049671,140753036,14918432,76674458,78427460,16866956,101889465,19881931,128724886,17220934,18713552,21786618,231600344,147383043,117982625,84445191,114493453,32506859,179478771,29374498,24128009,19637934,17469289,9763482,15222806,31630054,15472700,140803376,15862891,43119695,260741931,14559745,257624526,19918353,5831802,149102306,52126417,10017542,237850595,18444468,15930000,14385046,21516577,53208324,24223641,23451598,15458181,15714547,14266598,65965412,36843988,21166728,55630632,15227791,22695157,6875072,16017475,102581666,14606079,15905103,26784273,17286101,88722311,18734088,65909759,26755141,70260544,21866534,22167056,33098495,171683695,43078165,180147957,19621110,29774968,88392301,32423136,74725264,146548246,269420810,18196002,14199378,22341016,111416652,14647570,43166813,34317032,116498184,57741304,163844242,176456922,69417670,36771809,13693032,25155290,18227455,4898091,1536811,16630098,59479958,16145875,15224867,30043495,55338739,46164502,20402945,15935591,23092890,27860681,17006157,216799530,16670996,142672514,135917962,270956213,20562637,156016878,18622869,168295477,14348157,36047098,14514804,32359921,16955870,59486068,5120691,15568127,44401911,7215512,24898621,21968928,34096609,44177383,14050550,20281776,95323720,19954039,18784376,13759952,16227675,14235672,109915584,16684773,646893,83130916,763699,17070899,13017192,17453131,14191291,42204560,27787530,1403031,8510242,49301068,14834076,16997090,44153483,23014736,102448827,29493965,8161232,6877872,33955377,15198966,11695602,16229491,52296815,57341938,59910042,6245822,19915362,16348549,94667985,14463924,21315031,70983247,16244517,15433693,26217653,26213879,14615871,166252256,17054817,813286,32361431,5988062,16366271,19539716,96930772,11695472,59460397,25098482,24602720,24881081,28212315,21093785,16511394,16958346,27830610,33933259,120181944,16834046,16257853,19673700,15947602,20608192,145692441,116469425,28657802,20582958,17596622,219357440,14634720,17463923,17683482,146620155,16025112,16648790,40932856,278026635,20776432,124066751,15473639,22705078,262528377,95943830,17605855,19754094,61853389,17855157,624413,19430233,108432404,56440209,39803436,16892445,51497096,70052473,108408529,177676462,101878696,18869578,45670812,154233774,105831673,22952596,268873642,88966020,15779216,14900137,20608910,15220806,18136692,17217640,19658936,18230738,16878156,20114753,29232503,19282280,30313925,45874509,15987497,31078583,16470495,127997108,19722699,23959074,18325781,98928848,160528623,17423992,807095,25841417,16245906,121598314,128126054,8963722,15110431,4620451,17842366,16895274,37662914,14603515,175844074,172280127,28583197,34554134,21581503,8295072,19802879,1435461,16817883,15165502,16580226,15492359,18593276,26003862,19071682,20031296,32567081,43435902,16379018,18201160,113420831,17781165,33998183,44705716,22035690,5402612,18736652,21232507,22762908,11433152,14738750,18883998,428333,18581009,16669075,21886024,45885508,15740491,20998647,116559622,21388284,39103115,810424,15173291,15762575,11178672,16308922,62780688,24919888,36683668,89711639,15489945,15463610,130160106,3108351,11348282,14342564,15309804,19915329,6519522,19993545,24886900,17004618,110595088],"next_cursor":0,"next_cursor_str":"0","previous_cursor":-1417901385419688902,"previous_cursor_str":"-1417901385419688902"} \ No newline at end of file diff --git a/testdata/get_friends_0.json b/testdata/get_friends_0.json new file mode 100644 index 00000000..954a4fd4 --- /dev/null +++ b/testdata/get_friends_0.json @@ -0,0 +1,26701 @@ +{ + "next_cursor": 1494734862149901956, + "users": [ + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "18275645", + "following": false, + "friends_count": 118, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "danluu.com", + "url": "http://t.co/yAGxZQzkJc", + "expanded_url": "http://danluu.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2884, + "location": "Seattle, WA", + "screen_name": "danluu", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 70, + "name": "Dan Luu", + "profile_use_background_image": true, + "description": "Hardware/software co-design @Microsoft. Previously @google, @recursecenter, and centaur.", + "url": "http://t.co/yAGxZQzkJc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Dec 21 00:21:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", + "favourites_count": 624, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "danluu", + "in_reply_to_user_id": 18275645, + "in_reply_to_status_id_str": "685537630235136000", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685539148292214784", + "id": 685539148292214784, + "text": "@twitter Meanwhile, automated bots have been tweeting every HN frontpage link for 3 years without getting flagged.", + "in_reply_to_user_id_str": "18275645", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "twitter", + "id_str": "783214", + "id": 783214, + "indices": [ + 0, + 8 + ], + "name": "Twitter" + } + ] + }, + "created_at": "Fri Jan 08 19:10:44 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685537630235136000, + "lang": "en" + }, + "default_profile_image": false, + "id": 18275645, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 685, + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "16246973", + "following": false, + "friends_count": 142, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.scottlowe.org", + "url": "http://t.co/EMI294FM8u", + "expanded_url": "http://blog.scottlowe.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 22381, + "location": "Denver, CO, USA", + "screen_name": "scott_lowe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 989, + "name": "Scott S. Lowe", + "profile_use_background_image": true, + "description": "An IT pro specializing in virtualization, networking, open source, & cloud computing; currently working for a leading virtualization vendor (tweets are mine)", + "url": "http://t.co/EMI294FM8u", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Sep 11 20:17:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", + "favourites_count": 0, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597324853161984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "networkworld.com/article/301666\u2026", + "url": "https://t.co/Y5HBdGgEor", + "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", + "indices": [ + 99, + 122 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:01:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597324853161984, + "text": "With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgEor", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597548321505280", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "networkworld.com/article/301666\u2026", + "url": "https://t.co/Y5HBdGgEor", + "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", + "indices": [ + 118, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "martin_casado", + "id_str": "16591288", + "id": 16591288, + "indices": [ + 3, + 17 + ], + "name": "martin_casado" + } + ] + }, + "created_at": "Fri Jan 08 23:02:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597548321505280, + "text": "RT @martin_casado: With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgE\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 16246973, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 34402, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6981492", + "following": false, + "friends_count": 178, + "entities": { + "description": { + "urls": [ + { + "display_url": "Postlight.com", + "url": "http://t.co/AxJX6dV8Ig", + "expanded_url": "http://Postlight.com", + "indices": [ + 21, + 43 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ftrain.com", + "url": "http://t.co/6afN702mgr", + "expanded_url": "http://ftrain.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 32171, + "location": "Brooklyn, New York, USA", + "screen_name": "ftrain", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1453, + "name": "Paul Ford", + "profile_use_background_image": true, + "description": "(1974\u2013 ) Co-founder, http://t.co/AxJX6dV8Ig. Writing a book about web pages for FSG. Contact ford@ftrain.com if you spot a typo.", + "url": "http://t.co/6afN702mgr", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Jun 21 01:11:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", + "favourites_count": 20008, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.026675, + 40.683935 + ], + [ + -73.910408, + 40.683935 + ], + [ + -73.910408, + 40.877483 + ], + [ + -74.026675, + 40.877483 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Manhattan, NY", + "id": "01a9a39529b27f36", + "name": "Manhattan" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "682597070751035392", + "id": 682597070751035392, + "text": "2016 resolution: Get off Twitter, for all but writing-promotional purposes, until I lose 32 pounds, one for every thousand followers.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 16:19:58 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 58, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 6981492, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", + "statuses_count": 29820, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6981492/1362958335", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2266469498", + "following": false, + "friends_count": 344, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.samwhited.com", + "url": "https://t.co/FVESgX6vVp", + "expanded_url": "https://blog.samwhited.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "9ABB59", + "geo_enabled": true, + "followers_count": 97, + "location": "Austin, TX", + "screen_name": "SamWhited", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Sam Whited", + "profile_use_background_image": true, + "description": "Sometimes I tweet things, but mostly I don't.", + "url": "https://t.co/FVESgX6vVp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Sat Dec 28 21:36:45 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", + "favourites_count": 68, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683367861557956608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/linode/status/\u2026", + "url": "https://t.co/ChRPqTJULN", + "expanded_url": "https://twitter.com/linode/status/683366718798954496", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 02 19:22:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683367861557956608, + "text": "I have not been able to maintain a persistant TCP connection with my Linodes in Days\u2026 https://t.co/ChRPqTJULN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2266469498, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", + "statuses_count": 708, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2266469498/1388268061", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6815762", + "following": false, + "friends_count": 825, + "entities": { + "description": { + "urls": [ + { + "display_url": "lasp-lang.org", + "url": "https://t.co/SvIEg6a8n1", + "expanded_url": "http://lasp-lang.org", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "christophermeiklejohn.com", + "url": "https://t.co/OteoESj7H9", + "expanded_url": "http://christophermeiklejohn.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "4E5A5E", + "geo_enabled": true, + "followers_count": 3106, + "location": "San Francisco, CA", + "screen_name": "cmeik", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 156, + "name": "Christophe le fou", + "profile_use_background_image": true, + "description": "building programming languages for distributed computation; https://t.co/SvIEg6a8n1", + "url": "https://t.co/OteoESj7H9", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Jun 14 16:35:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", + "favourites_count": 38338, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685581928620253186", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WOdRf", + "url": "https://t.co/PzVfFbuaOA", + "expanded_url": "http://ow.ly/WOdRf", + "indices": [ + 112, + 135 + ] + } + ], + "hashtags": [ + { + "indices": [ + 84, + 98 + ], + "text": "ErlangFactory" + }, + { + "indices": [ + 99, + 102 + ], + "text": "SF" + } + ], + "user_mentions": [ + { + "screen_name": "cmeik", + "id_str": "6815762", + "id": 6815762, + "indices": [ + 74, + 80 + ], + "name": "Christophe le fou" + } + ] + }, + "created_at": "Fri Jan 08 22:00:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685581928620253186, + "text": "'Lasp: A Language For Distributed, Eventually Consistent Computations' by @cmeik at #ErlangFactory #SF Bay Area https://t.co/PzVfFbuaOA", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685582620839694336", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WOdRf", + "url": "https://t.co/PzVfFbuaOA", + "expanded_url": "http://ow.ly/WOdRf", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 103, + 117 + ], + "text": "ErlangFactory" + }, + { + "indices": [ + 118, + 121 + ], + "text": "SF" + } + ], + "user_mentions": [ + { + "screen_name": "erlangfactory", + "id_str": "45553317", + "id": 45553317, + "indices": [ + 3, + 17 + ], + "name": "Erlang Factory" + }, + { + "screen_name": "cmeik", + "id_str": "6815762", + "id": 6815762, + "indices": [ + 93, + 99 + ], + "name": "Christophe le fou" + } + ] + }, + "created_at": "Fri Jan 08 22:03:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685582620839694336, + "text": "RT @erlangfactory: 'Lasp: A Language For Distributed, Eventually Consistent Computations' by @cmeik at #ErlangFactory #SF Bay Area https://\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 6815762, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 49785, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6815762/1420224089", + "is_translator": false + }, + { + "time_zone": "Stockholm", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "17616622", + "following": false, + "friends_count": 332, + "entities": { + "description": { + "urls": [ + { + "display_url": "locust.io", + "url": "http://t.co/TQXEGLwCis", + "expanded_url": "http://locust.io", + "indices": [ + 78, + 100 + ] + }, + { + "display_url": "heyevent.com", + "url": "http://t.co/0DMoIMMGYB", + "expanded_url": "http://heyevent.com", + "indices": [ + 102, + 124 + ] + }, + { + "display_url": "boutiquehotel.me", + "url": "http://t.co/UVjwCLqJWP", + "expanded_url": "http://boutiquehotel.me", + "indices": [ + 137, + 159 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "heyman.info", + "url": "http://t.co/OJuVdsnIXQ", + "expanded_url": "http://heyman.info", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1063, + "location": "Sweden", + "screen_name": "jonatanheyman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Jonatan Heyman", + "profile_use_background_image": true, + "description": "I'm a developer and I Iike to build stuff. I love Python. Author of @locustio http://t.co/TQXEGLwCis, http://t.co/0DMoIMMGYB, @ronigame, http://t.co/UVjwCLqJWP", + "url": "http://t.co/OJuVdsnIXQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Nov 25 10:15:22 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", + "favourites_count": 112, + "status": { + "retweet_count": 23, + "retweeted_status": { + "retweet_count": 23, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685581797850279937", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:00:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685581797850279937, + "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 27, + "contributors": null, + "source": "Mobile Web (M5)" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685587786120970241", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tomdale", + "id_str": "668863", + "id": 668863, + "indices": [ + 3, + 11 + ], + "name": "Tom Dale" + } + ] + }, + "created_at": "Fri Jan 08 22:24:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685587786120970241, + "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 17616622, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 996, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17616622/1397123585", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "290900886", + "following": false, + "friends_count": 28, + "entities": { + "description": { + "urls": [ + { + "display_url": "hashicorp.com/atlas", + "url": "https://t.co/3rYtQZlVFj", + "expanded_url": "https://hashicorp.com/atlas", + "indices": [ + 75, + 98 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hashicorp.com", + "url": "https://t.co/ny0Vs9IMpz", + "expanded_url": "https://hashicorp.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "48B4FB", + "geo_enabled": false, + "followers_count": 10678, + "location": "San Francisco, CA", + "screen_name": "hashicorp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 326, + "name": "HashiCorp", + "profile_use_background_image": false, + "description": "We build Vagrant, Packer, Serf, Consul, Terraform, Vault, Nomad, Otto, and https://t.co/3rYtQZlVFj. We love developers, ops, and are obsessed with automation.", + "url": "https://t.co/ny0Vs9IMpz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Sun May 01 04:14:30 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", + "favourites_count": 23, + "status": { + "retweet_count": 12, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685602742769876992", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/hashicorp/terr\u2026", + "url": "https://t.co/QjiHQfLdQF", + "expanded_url": "https://github.com/hashicorp/terraform/blob/v0.6.9/CHANGELOG.md#069-january-8-2016", + "indices": [ + 90, + 113 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:23:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685602742769876992, + "text": "Terraform 0.6.9 has been released! 5 new providers and a long list of features and fixes: https://t.co/QjiHQfLdQF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 12, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 290900886, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 715, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1229010770", + "following": false, + "friends_count": 15, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kimh.github.io", + "url": "http://t.co/rOoCzBI0Uk", + "expanded_url": "http://kimh.github.io/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 24, + "location": "", + "screen_name": "kimhirokuni", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Kim, Hirokuni", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/rOoCzBI0Uk", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Mar 01 04:35:59 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", + "favourites_count": 4, + "status": { + "retweet_count": 14, + "retweeted_status": { + "retweet_count": 14, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684163973390974976", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 169, + "resize": "fit" + }, + "large": { + "w": 799, + "h": 398, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 298, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "type": "photo", + "indices": [ + 95, + 118 + ], + "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "display_url": "pic.twitter.com/VEpSVWgnhn", + "id_str": "684163973206421509", + "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", + "id": 684163973206421509, + "url": "https://t.co/VEpSVWgnhn" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "circle.ci/1YyS1W6", + "url": "https://t.co/Mil1rt44Ve", + "expanded_url": "http://circle.ci/1YyS1W6", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 16, + 25 + ], + "name": "CircleCI" + } + ] + }, + "created_at": "Tue Jan 05 00:06:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684163973390974976, + "text": "We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684249491948490752", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 169, + "resize": "fit" + }, + "large": { + "w": 799, + "h": 398, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 298, + "resize": "fit" + } + }, + "source_status_id_str": "684163973390974976", + "url": "https://t.co/VEpSVWgnhn", + "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "source_user_id_str": "381223731", + "id_str": "684163973206421509", + "id": 684163973206421509, + "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "type": "photo", + "indices": [ + 109, + 132 + ], + "source_status_id": 684163973390974976, + "source_user_id": 381223731, + "display_url": "pic.twitter.com/VEpSVWgnhn", + "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "circle.ci/1YyS1W6", + "url": "https://t.co/Mil1rt44Ve", + "expanded_url": "http://circle.ci/1YyS1W6", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 3, + 12 + ], + "name": "CircleCI" + }, + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 30, + 39 + ], + "name": "CircleCI" + } + ] + }, + "created_at": "Tue Jan 05 05:46:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684249491948490752, + "text": "RT @circleci: We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1229010770, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 56, + "is_translator": false + }, + { + "time_zone": "Madrid", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "311029627", + "following": false, + "friends_count": 173, + "entities": { + "description": { + "urls": [ + { + "display_url": "keybase.io/alexey_ch", + "url": "http://t.co/3wRCyfslLs", + "expanded_url": "http://keybase.io/alexey_ch", + "indices": [ + 56, + 78 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "alexey.ch", + "url": "http://t.co/sGSgRzEPYs", + "expanded_url": "http://alexey.ch", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 230, + "location": "Sant Cugat del Vall\u00e8s", + "screen_name": "alexey_am_i", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Alexey", + "profile_use_background_image": true, + "description": "bites and bytes / chief bash script officer @circleci / http://t.co/3wRCyfslLs", + "url": "http://t.co/sGSgRzEPYs", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Sat Jun 04 19:35:45 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", + "favourites_count": 2099, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "KrauseFx", + "in_reply_to_user_id": 50055757, + "in_reply_to_status_id_str": "685505979270574080", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685506452614688768", + "id": 685506452614688768, + "text": "@KrauseFx Nice screenshot :D", + "in_reply_to_user_id_str": "50055757", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "KrauseFx", + "id_str": "50055757", + "id": 50055757, + "indices": [ + 0, + 9 + ], + "name": "Felix Krause" + } + ] + }, + "created_at": "Fri Jan 08 17:00:49 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685505979270574080, + "lang": "en" + }, + "default_profile_image": false, + "id": 311029627, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", + "statuses_count": 10759, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/311029627/1366924833", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "810781", + "following": false, + "friends_count": 370, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "unwiredcouch.com", + "url": "https://t.co/AlM3lgSG3F", + "expanded_url": "https://unwiredcouch.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0099CC", + "geo_enabled": false, + "followers_count": 1872, + "location": "probably Brooklyn or Freiburg", + "screen_name": "mrtazz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 103, + "name": "Daniel Schauenberg", + "profile_use_background_image": true, + "description": "Infrastructure Toolsmith at Etsy. A Cheap Trick and a Cheesy One-Liner. I own 100% of my opinions. Feminist.", + "url": "https://t.co/AlM3lgSG3F", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", + "profile_background_color": "FFF04D", + "created_at": "Sun Mar 04 21:17:02 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFF8AD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", + "favourites_count": 7995, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jmhodges", + "in_reply_to_user_id": 9267272, + "in_reply_to_status_id_str": "685561412450562048", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685565956836487168", + "id": 685565956836487168, + "text": "@jmhodges the important bit is to understand when and how and learn from it", + "in_reply_to_user_id_str": "9267272", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jmhodges", + "id_str": "9267272", + "id": 9267272, + "indices": [ + 0, + 9 + ], + "name": "Jeff Hodges" + } + ] + }, + "created_at": "Fri Jan 08 20:57:15 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685561412450562048, + "lang": "en" + }, + "default_profile_image": false, + "id": 810781, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "statuses_count": 17494, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/810781/1374119286", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "166282004", + "following": false, + "friends_count": 131, + "entities": { + "description": { + "urls": [ + { + "display_url": "scotthel.me/PGP", + "url": "http://t.co/gL8cUpGdUF", + "expanded_url": "http://scotthel.me/PGP", + "indices": [ + 137, + 159 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "scotthelme.co.uk", + "url": "https://t.co/amYoJQqVCA", + "expanded_url": "https://scotthelme.co.uk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "2971FF", + "geo_enabled": false, + "followers_count": 1585, + "location": "UK", + "screen_name": "Scott_Helme", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 94, + "name": "Scott Helme", + "profile_use_background_image": false, + "description": "Information Security Consultant, blogger, builder of things. Creator of @reporturi and @securityheaders. I want to secure the entire web http://t.co/gL8cUpGdUF", + "url": "https://t.co/amYoJQqVCA", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", + "profile_background_color": "F5F8FA", + "created_at": "Tue Jul 13 19:42:08 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", + "favourites_count": 488, + "status": { + "retweet_count": 130, + "retweeted_status": { + "retweet_count": 130, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684262306956443648", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "securityheaders.io", + "url": "https://t.co/tFn2HCB6YS", + "expanded_url": "https://securityheaders.io/", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 06:37:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684262306956443648, + "text": "SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 260, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685607128095154176", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "securityheaders.io", + "url": "https://t.co/tFn2HCB6YS", + "expanded_url": "https://securityheaders.io/", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "smashingmag", + "id_str": "15736190", + "id": 15736190, + "indices": [ + 3, + 15 + ], + "name": "Smashing Magazine" + } + ] + }, + "created_at": "Fri Jan 08 23:40:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685607128095154176, + "text": "RT @smashingmag: SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 166282004, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", + "statuses_count": 5651, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/166282004/1421676770", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13734442", + "following": false, + "friends_count": 700, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "entropystream.net", + "url": "http://t.co/jHZOamrEt4", + "expanded_url": "http://entropystream.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "193FFF", + "geo_enabled": false, + "followers_count": 907, + "location": "Seattle WA", + "screen_name": "blueben", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 73, + "name": "Ben Macguire", + "profile_use_background_image": false, + "description": "Ops Engineer, Music, RF, Puppies.", + "url": "http://t.co/jHZOamrEt4", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Feb 20 19:12:44 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", + "favourites_count": 497, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685121298100424704", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", + "type": "photo", + "indices": [ + 34, + 57 + ], + "media_url": "http://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", + "display_url": "pic.twitter.com/yJ5odOn9OQ", + "id_str": "685121290575806465", + "expanded_url": "http://twitter.com/blueben/status/685121298100424704/photo/1", + "id": 685121290575806465, + "url": "https://t.co/yJ5odOn9OQ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 15:30:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685121298100424704, + "text": "Slightly foggy in Salt Lake City. https://t.co/yJ5odOn9OQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 13734442, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 14940, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3237083798", + "following": false, + "friends_count": 2, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bgpstream.com", + "url": "https://t.co/gdCAgJZFwt", + "expanded_url": "https://bgpstream.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1378, + "location": "", + "screen_name": "bgpstream", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "bgpstream", + "profile_use_background_image": true, + "description": "BGPStream is a free resource for receiving alerts about BGP hijacks and large scale outages. Brought to you by @bgpmon", + "url": "https://t.co/gdCAgJZFwt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Jun 05 15:28:16 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", + "favourites_count": 4, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685604760662196224", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bgpstream.com/event/16414", + "url": "https://t.co/Fwvyew4hhY", + "expanded_url": "http://bgpstream.com/event/16414", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:31:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685604760662196224, + "text": "BGP,OT,52742,INTERNET,-,Outage affected 15 prefixes, https://t.co/Fwvyew4hhY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "BGPStream" + }, + "default_profile_image": false, + "id": 3237083798, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3555, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3237083798/1437676409", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "507922769", + "following": false, + "friends_count": 295, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "waterpigs.co.uk", + "url": "https://t.co/NTbafUKQZe", + "expanded_url": "https://waterpigs.co.uk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 331, + "location": "Reykjav\u00edk, Iceland", + "screen_name": "BarnabyWalters", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Barnaby Walters", + "profile_use_background_image": true, + "description": "Music/tech minded individual. Trained as a luthier, working on web surveys at V\u00edsar, Iceland. Building the #indieweb of the future. Hiking, climbing, gurdying.", + "url": "https://t.co/NTbafUKQZe", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Feb 28 21:07:29 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", + "favourites_count": 2198, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684845666649157632", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "waterpigs.co.uk/img/2016-01-06\u2026", + "url": "https://t.co/7wSqHpJZYS", + "expanded_url": "https://waterpigs.co.uk/img/2016-01-06-bubbles.gif", + "indices": [ + 36, + 59 + ] + }, + { + "display_url": "waterpigs.co.uk/notes/4f6MF3/", + "url": "https://t.co/5L2Znu5Ack", + "expanded_url": "https://waterpigs.co.uk/notes/4f6MF3/", + "indices": [ + 62, + 85 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 21:15:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684845666649157632, + "text": "A little preparation for tomorrow\u2026\n\nhttps://t.co/7wSqHpJZYS\n (https://t.co/5L2Znu5Ack)", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Waterpigs.co.uk" + }, + "default_profile_image": false, + "id": 507922769, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", + "statuses_count": 3559, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/507922769/1348091343", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "235193328", + "following": false, + "friends_count": 129, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "indiewebcamp.com", + "url": "http://t.co/Lhpx03ubrJ", + "expanded_url": "http://indiewebcamp.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 782, + "location": "Portland, Oregon", + "screen_name": "indiewebcamp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "IndieWebCamp", + "profile_use_background_image": true, + "description": "Rather than posting content on 3rd-party silos, we should all begin owning our data when we create it.", + "url": "http://t.co/Lhpx03ubrJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Jan 07 15:53:54 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", + "favourites_count": 1154, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685273812682719233", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "zeldman.com/2016/01/05/139\u2026", + "url": "https://t.co/kMiWh7ufuW", + "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", + "indices": [ + 104, + 127 + ] + } + ], + "hashtags": [ + { + "indices": [ + 128, + 137 + ], + "text": "indieweb" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 01:36:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685273812682719233, + "text": "\u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7ufuW #indieweb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685306865635336192", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "zeldman.com/2016/01/05/139\u2026", + "url": "https://t.co/kMiWh7ufuW", + "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", + "indices": [ + 120, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "indieweb" + } + ], + "user_mentions": [ + { + "screen_name": "kevinmarks", + "id_str": "57203", + "id": 57203, + "indices": [ + 3, + 14 + ], + "name": "Kevin Marks" + } + ] + }, + "created_at": "Fri Jan 08 03:47:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685306865635336192, + "text": "RT @kevinmarks: \u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 235193328, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 151, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1183041", + "following": false, + "friends_count": 335, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wilwheaton.net/2009/02/what-t\u2026", + "url": "http://t.co/UAYYOhbijM", + "expanded_url": "http://wilwheaton.net/2009/02/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "F6101E", + "geo_enabled": false, + "followers_count": 2966148, + "location": "Los Angeles", + "screen_name": "wilw", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 38874, + "name": "Wil Wheaton", + "profile_use_background_image": true, + "description": "Barrelslayer. Time Lord. Fake geek girl. On a good day I am charming as fuck.", + "url": "http://t.co/UAYYOhbijM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", + "profile_background_color": "022330", + "created_at": "Wed Mar 14 21:25:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", + "favourites_count": 445, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "scalzi", + "in_reply_to_user_id": 14202817, + "in_reply_to_status_id_str": "685587772208476160", + "retweet_count": 11, + "truncated": false, + "retweeted": false, + "id_str": "685589599108739072", + "id": 685589599108739072, + "text": "@scalzi Dear Texas: just fucking secede already, and let the rest of us live in the 21st century. Thanks - - W2", + "in_reply_to_user_id_str": "14202817", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "scalzi", + "id_str": "14202817", + "id": 14202817, + "indices": [ + 0, + 7 + ], + "name": "John Scalzi" + } + ] + }, + "created_at": "Fri Jan 08 22:31:12 +0000 2016", + "source": "Tweetings for Android", + "favorite_count": 91, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685587772208476160, + "lang": "en" + }, + "default_profile_image": false, + "id": 1183041, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", + "statuses_count": 60966, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183041/1368668860", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24184180", + "following": false, + "friends_count": 150, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "004A05", + "geo_enabled": true, + "followers_count": 283, + "location": "", + "screen_name": "xanderdumaine", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 31, + "name": "Xander Dumaine", + "profile_use_background_image": true, + "description": "still trying. sometimes I have Opinions\u2122 which are my own, and do not represent my employer. Retweets do not imply endorsement.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Mar 13 14:59:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", + "favourites_count": 1252, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 237534782, + "possibly_sensitive": false, + "id_str": "685584914973089792", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/necrosofty/sta\u2026", + "url": "https://t.co/9jl9UNHv0s", + "expanded_url": "https://twitter.com/necrosofty/status/685270713792466944", + "indices": [ + 13, + 36 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MattCheely", + "id_str": "237534782", + "id": 237534782, + "indices": [ + 0, + 11 + ], + "name": "Matt Cheely" + } + ] + }, + "created_at": "Fri Jan 08 22:12:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "237534782", + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0122292c5bc9ff29.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -78.881022, + 35.796927 + ], + [ + -78.786799, + 35.796927 + ], + [ + -78.786799, + 35.870756 + ], + [ + -78.881022, + 35.870756 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Morrisville, NC", + "id": "0122292c5bc9ff29", + "name": "Morrisville" + }, + "in_reply_to_screen_name": "MattCheely", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685584914973089792, + "text": "@MattCheely https://t.co/9jl9UNHv0s", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 24184180, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", + "statuses_count": 18329, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/24184180/1452092382", + "is_translator": false + }, + { + "time_zone": "Melbourne", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "79227302", + "following": false, + "friends_count": 30, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fastmail.com", + "url": "https://t.co/ckOsRTyp9h", + "expanded_url": "https://www.fastmail.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "44567E", + "geo_enabled": true, + "followers_count": 5651, + "location": "Melbourne, Australia", + "screen_name": "FastMailFM", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 239, + "name": "FastMail", + "profile_use_background_image": true, + "description": "Email, calendars and contacts done right.", + "url": "https://t.co/ckOsRTyp9h", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", + "profile_background_color": "022330", + "created_at": "Fri Oct 02 16:49:48 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", + "favourites_count": 293, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "chrisWhite", + "in_reply_to_user_id": 7804242, + "in_reply_to_status_id_str": "685607110684454912", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610756151230464", + "id": 685610756151230464, + "text": "@chrisWhite No the subject tagging is independent. You can turn it off in Advaced \u2192 Spam Preferences.", + "in_reply_to_user_id_str": "7804242", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chrisWhite", + "id_str": "7804242", + "id": 7804242, + "indices": [ + 0, + 11 + ], + "name": "Chris White" + } + ] + }, + "created_at": "Fri Jan 08 23:55:16 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685607110684454912, + "lang": "en" + }, + "default_profile_image": false, + "id": 79227302, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2194, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/79227302/1403516751", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2209238580", + "following": false, + "friends_count": 2044, + "entities": { + "description": { + "urls": [ + { + "display_url": "github.com/StackStorm/st2", + "url": "https://t.co/sd2EyabsN0", + "expanded_url": "https://github.com/StackStorm/st2", + "indices": [ + 100, + 123 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "stackstorm.com", + "url": "http://t.co/5oR6MbHPSq", + "expanded_url": "http://www.stackstorm.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2407, + "location": "Palo Alto, CA", + "screen_name": "Stack_Storm", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 110, + "name": "StackStorm", + "profile_use_background_image": true, + "description": "Event driven operations. Sometimes called IFTTT for IT ops. Open source. Auto-remediation and more.\nhttps://t.co/sd2EyabsN0", + "url": "http://t.co/5oR6MbHPSq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Nov 22 16:42:49 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", + "favourites_count": 548, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685551803044249600", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "redd.it/3ztcla", + "url": "https://t.co/C6Wa98PSra", + "expanded_url": "https://redd.it/3ztcla", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [ + { + "indices": [ + 20, + 28 + ], + "text": "chatops" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:01:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685551803044249600, + "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685561768551186432", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "redd.it/3ztcla", + "url": "https://t.co/C6Wa98PSra", + "expanded_url": "https://redd.it/3ztcla", + "indices": [ + 108, + 131 + ] + } + ], + "hashtags": [ + { + "indices": [ + 36, + 44 + ], + "text": "chatops" + } + ], + "user_mentions": [ + { + "screen_name": "epowell101", + "id_str": "15119662", + "id": 15119662, + "indices": [ + 3, + 14 + ], + "name": "Evan Powell" + } + ] + }, + "created_at": "Fri Jan 08 20:40:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685561768551186432, + "text": "RT @epowell101: Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2209238580, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1667, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209238580/1414949794", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "160640740", + "following": false, + "friends_count": 1203, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/marcomorain", + "url": "https://t.co/QNDuJQAZ6V", + "expanded_url": "https://github.com/marcomorain", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 503, + "location": "Dublin, Ireland", + "screen_name": "atmarc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "Marc O'Merriment", + "profile_use_background_image": true, + "description": "Developer at @CircleCI Previously Swrve, Havok and Kore Virtual Machines.", + "url": "https://t.co/QNDuJQAZ6V", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Mon Jun 28 19:06:33 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", + "favourites_count": 3499, + "status": { + "retweet_count": 23, + "retweeted_status": { + "retweet_count": 23, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685581797850279937", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:00:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685581797850279937, + "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 27, + "contributors": null, + "source": "Mobile Web (M5)" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685582745637109760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tomdale", + "id_str": "668863", + "id": 668863, + "indices": [ + 3, + 11 + ], + "name": "Tom Dale" + } + ] + }, + "created_at": "Fri Jan 08 22:03:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685582745637109760, + "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 160640740, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 4682, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/160640740/1398359765", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13470", + "following": false, + "friends_count": 1409, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sauria.com/blog", + "url": "http://t.co/UB3y8QBrA6", + "expanded_url": "http://www.sauria.com/blog", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 2849, + "location": "Bainbridge Island, WA", + "screen_name": "twleung", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 218, + "name": "Ted Leung", + "profile_use_background_image": true, + "description": "photographs, modern programming languages, embedded systems, and commons based peer production. Leading the Playmation software team at The Walt Disney Company.", + "url": "http://t.co/UB3y8QBrA6", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Nov 21 09:23:47 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", + "favourites_count": 4072, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jaxzin", + "in_reply_to_user_id": 14320521, + "in_reply_to_status_id_str": "684776564093931521", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684784895512584192", + "id": 684784895512584192, + "text": "@jaxzin what do you think is the magic price point?", + "in_reply_to_user_id_str": "14320521", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jaxzin", + "id_str": "14320521", + "id": 14320521, + "indices": [ + 0, + 7 + ], + "name": "Brian R. Jackson" + } + ] + }, + "created_at": "Wed Jan 06 17:13:36 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684776564093931521, + "lang": "en" + }, + "default_profile_image": false, + "id": 13470, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 9358, + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "50599894", + "following": false, + "friends_count": 1352, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 955, + "location": "Paris, France", + "screen_name": "nyconyco", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 72, + "name": "Nicolas V\u00e9rit\u00e9, N\u00ffco", + "profile_use_background_image": true, + "description": "Product Owner @ErlangSolutions, President at @LinuxFrOrg #FLOSS #OpenSource #TheOpenOrg #Agile #LeanStartup #DesignThinking #GrowthHacking", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu Jun 25 09:26:17 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", + "favourites_count": 343, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685537987355111426", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1O8FVAd", + "url": "https://t.co/IxvtPzMNtO", + "expanded_url": "http://buff.ly/1O8FVAd", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [ + { + "indices": [ + 2, + 11 + ], + "text": "Startups" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:06:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685537987355111426, + "text": "8 #Startups, 4 IPO's, Lost $35m of Investors Money to Paying Them Back $1b Each! Startup Lessons From Steve Blank https://t.co/IxvtPzMNtO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 50599894, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 4281, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/50599894/1358775155", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "106621747", + "following": false, + "friends_count": 100, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "B30645", + "geo_enabled": true, + "followers_count": 734, + "location": "", + "screen_name": "KalieCatt", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 40, + "name": "Kalie Fry", + "profile_use_background_image": true, + "description": "director of engagement marketing at @gomcmkt. wordsmith. social media jedi. closet creative. coffee connoisseur. classic novel enthusiast.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Jan 20 04:01:25 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", + "favourites_count": 6311, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685351275647516672", + "id": 685351275647516672, + "text": "So, I've been in an emoji formula battle all day and need to phone a friend. Want to help me solve?\n\n\u2754\u2795\u2702\ufe0f=\u2753\n\u2754\u2795\ud83c\uddf3\ud83c\uddec= \u2753\u2753\n\u2754\u2754\u2795(\u2796\ud83c\udf32\u2795\ud83d\udd34\u2795\ud83c\udf41)=\u2753\u2753", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 06:44:11 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 106621747, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", + "statuses_count": 2130, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/106621747/1430221319", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "459492917", + "following": false, + "friends_count": 3657, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "howhackersthink.com", + "url": "http://t.co/IBghUiKudG", + "expanded_url": "http://www.howhackersthink.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3816, + "location": "Washington, DC", + "screen_name": "HowHackersThink", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 178, + "name": "HowHackersThink", + "profile_use_background_image": true, + "description": "Hacker. Consultant. Cyber Strategist. Writer. Professor. Public speaker. Researcher. Innovator. Advocate. All tweets and views are my own.", + "url": "http://t.co/IBghUiKudG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Mon Jan 09 18:43:40 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", + "favourites_count": 693, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "684614746486759424", + "id": 684614746486759424, + "text": "The most complex things in this life: the mind and the universe. I study the mind on my way to understanding the universe. #HowHackersThink", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 123, + 139 + ], + "text": "HowHackersThink" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 05:57:29 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 459492917, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2888, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/459492917/1436656035", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "110735547", + "following": false, + "friends_count": 514, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 162, + "location": "Camden, ME", + "screen_name": "kjstone00", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Kevin Stone", + "profile_use_background_image": true, + "description": "dad, ops, monitoring, dogs, cats, chickens. Fledgling home brewer. Living life the way it should be in Maine", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 02 15:59:41 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", + "favourites_count": 420, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "sogrady", + "in_reply_to_user_id": 143883, + "in_reply_to_status_id_str": "685147818080776192", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685211417461534720", + "id": 685211417461534720, + "text": "@sogrady Is that Left Shark?", + "in_reply_to_user_id_str": "143883", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sogrady", + "id_str": "143883", + "id": 143883, + "indices": [ + 0, + 8 + ], + "name": "steve o'grady" + } + ] + }, + "created_at": "Thu Jan 07 21:28:27 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685147818080776192, + "lang": "en" + }, + "default_profile_image": false, + "id": 110735547, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3642, + "is_translator": false + }, + { + "time_zone": "Ljubljana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "59282163", + "following": false, + "friends_count": 876, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lstoll.net", + "url": "https://t.co/zymtFzZre6", + "expanded_url": "http://lstoll.net", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "666666", + "geo_enabled": true, + "followers_count": 41022, + "location": "Cleveland, OH", + "screen_name": "lstoll", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 125, + "name": "Kernel Sanders", + "profile_use_background_image": true, + "description": "Just some rando Australian operating computers and stuff at @Heroku. Previously @DigitalOcean, @GitHub, @Heroku.", + "url": "https://t.co/zymtFzZre6", + "profile_text_color": "000000", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", + "profile_background_color": "352726", + "created_at": "Wed Jul 22 23:05:12 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", + "favourites_count": 14331, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -81.877771, + 41.392684 + ], + [ + -81.5331634, + 41.392684 + ], + [ + -81.5331634, + 41.599195 + ], + [ + -81.877771, + 41.599195 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Cleveland, OH", + "id": "0eb9676d24b211f1", + "name": "Cleveland" + }, + "in_reply_to_screen_name": "klimpong", + "in_reply_to_user_id": 4600051, + "in_reply_to_status_id_str": "685598770684411904", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685599007415078913", + "id": 685599007415078913, + "text": "@klimpong Bonjour (That's french too)", + "in_reply_to_user_id_str": "4600051", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "klimpong", + "id_str": "4600051", + "id": 4600051, + "indices": [ + 0, + 9 + ], + "name": "Till" + } + ] + }, + "created_at": "Fri Jan 08 23:08:35 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598770684411904, + "lang": "en" + }, + "default_profile_image": false, + "id": 59282163, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 28104, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "163457790", + "following": false, + "friends_count": 1421, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eligible.com", + "url": "https://t.co/zeacfox6vu", + "expanded_url": "http://eligible.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 15359, + "location": "San Francisco \u21c6 Brooklyn ", + "screen_name": "katgleason", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 172, + "name": "Katelyn Gleason", + "profile_use_background_image": false, + "description": "S12 YC alum. CEO @eligibleapi", + "url": "https://t.co/zeacfox6vu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jul 06 13:33:13 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", + "favourites_count": 2503, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "kirillzubovsky", + "in_reply_to_user_id": 17541787, + "in_reply_to_status_id_str": "685529873138323456", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685531559508721664", + "id": 685531559508721664, + "text": "@kirillzubovsky @davemorin LOL that's definitely going in the folder", + "in_reply_to_user_id_str": "17541787", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kirillzubovsky", + "id_str": "17541787", + "id": 17541787, + "indices": [ + 0, + 15 + ], + "name": "Kirill Zubovsky" + }, + { + "screen_name": "davemorin", + "id_str": "3475", + "id": 3475, + "indices": [ + 16, + 26 + ], + "name": "Dave Morin" + } + ] + }, + "created_at": "Fri Jan 08 18:40:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685529873138323456, + "lang": "en" + }, + "default_profile_image": false, + "id": 163457790, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", + "statuses_count": 6273, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3998615773", + "following": false, + "friends_count": 5002, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "devopsdad.com", + "url": "https://t.co/JrNXHr85zj", + "expanded_url": "http://devopsdad.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "500A53", + "geo_enabled": false, + "followers_count": 1286, + "location": "Texas, USA", + "screen_name": "TheDevOpsDad", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "name": "Roel Pasetes", + "profile_use_background_image": false, + "description": "DevOps Engineer and Dad. Love 'em Both.", + "url": "https://t.co/JrNXHr85zj", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Oct 24 04:34:34 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", + "favourites_count": 7, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682441217653796865", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 193, + "h": 186, + "resize": "fit" + }, + "small": { + "w": 193, + "h": 186, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 193, + "h": 186, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", + "type": "photo", + "indices": [ + 83, + 106 + ], + "media_url": "http://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", + "display_url": "pic.twitter.com/ZKCpgU3ctc", + "id_str": "682441217536294912", + "expanded_url": "http://twitter.com/TheDevOpsDad/status/682441217653796865/photo/1", + "id": 682441217536294912, + "url": "https://t.co/ZKCpgU3ctc" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Mr6ClV", + "url": "https://t.co/vNHAVlc1So", + "expanded_url": "http://buff.ly/1Mr6ClV", + "indices": [ + 59, + 82 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 06:00:40 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682441217653796865, + "text": "What can Joey from Friends teach us about our devops work? https://t.co/vNHAVlc1So https://t.co/ZKCpgU3ctc", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 3998615773, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 95, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3998615773/1445662297", + "is_translator": false + }, + { + "time_zone": "Tijuana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16364066", + "following": false, + "friends_count": 505, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/mcoates", + "url": "https://t.co/uNCdooglSE", + "expanded_url": "http://www.linkedin.com/in/mcoates", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "001C8A", + "geo_enabled": true, + "followers_count": 5194, + "location": "San Francisco, CA", + "screen_name": "_mwc", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 254, + "name": "Michael Coates \u2604", + "profile_use_background_image": false, + "description": "Trust & Info Security Officer @Twitter, @OWASP Global Board, Former @Mozilla", + "url": "https://t.co/uNCdooglSE", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Sep 19 14:41:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", + "favourites_count": 349, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685553622675935232", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/chrismessina/s\u2026", + "url": "https://t.co/ic0IlFWa29", + "expanded_url": "https://twitter.com/chrismessina/status/685218795435077633", + "indices": [ + 62, + 85 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chrismessina", + "id_str": "1186", + "id": 1186, + "indices": [ + 21, + 34 + ], + "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e" + } + ] + }, + "created_at": "Fri Jan 08 20:08:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685553622675935232, + "text": "I'm with you on that @chrismessina. This is just odd at best. https://t.co/ic0IlFWa29", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16364066, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3515, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16364066/1443650382", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "93954161", + "following": false, + "friends_count": 347, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 16538, + "location": "San Francisco", + "screen_name": "aroetter", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 176, + "name": "Alex Roetter", + "profile_use_background_image": true, + "description": "SVP Engineering @ Twitter. Parenthood, Aviation, Alpinism, Sandwiches. Fighting gravity but usually losing.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 01 22:04:13 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", + "favourites_count": 2838, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "NShivakumar", + "in_reply_to_user_id": 41315003, + "in_reply_to_status_id_str": "685585778076848128", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685586111687622656", + "id": 685586111687622656, + "text": "@NShivakumar congrats!", + "in_reply_to_user_id_str": "41315003", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "NShivakumar", + "id_str": "41315003", + "id": 41315003, + "indices": [ + 0, + 12 + ], + "name": "Shiva Shivakumar" + } + ] + }, + "created_at": "Fri Jan 08 22:17:21 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685585778076848128, + "lang": "en" + }, + "default_profile_image": false, + "id": 93954161, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2322, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/93954161/1385781289", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "11873632", + "following": false, + "friends_count": 871, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lewisheadden.com", + "url": "http://t.co/LYuJlxmvg5", + "expanded_url": "http://www.lewisheadden.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1039, + "location": "New York City", + "screen_name": "lewisheadden", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "Lewis Headden", + "profile_use_background_image": true, + "description": "Scotsman, New Yorker, Photoshopper, Christian. DevOps Engineer at @CondeNast. Formerly @AmazonDevScot, @AetherworksLLC, @StAndrewsCS.", + "url": "http://t.co/LYuJlxmvg5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jan 05 13:06:09 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", + "favourites_count": 785, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685121406753976320", + "id": 685121406753976320, + "text": "You know Thursday morning is a struggle when you're debating microfoam and the \"Third Wave of Coffee\".", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 15:30:46 +0000 2016", + "source": "TweetDeck", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 11873632, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4814, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11873632/1409756044", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16022957", + "following": false, + "friends_count": 2120, + "entities": { + "description": { + "urls": [ + { + "display_url": "keybase.io/markaci", + "url": "https://t.co/n8kTLKcwJx", + "expanded_url": "http://keybase.io/markaci", + "indices": [ + 137, + 160 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/markdobrowo\u2026", + "url": "https://t.co/iw20KWBDrr", + "expanded_url": "https://linkedin.com/in/markdobrowolski", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "1F2A3D", + "geo_enabled": true, + "followers_count": 1003, + "location": "Toronto, Canada", + "screen_name": "markaci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 73, + "name": "mar\u10d9\u10d0\u10ea\u10d8", + "profile_use_background_image": true, + "description": "Mark Dobrowolski - Information Security & Risk Management Professional; disruptor, innovator, rainmaker, student, friend. RT\u2260endorsement https://t.co/n8kTLKcwJx", + "url": "https://t.co/iw20KWBDrr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Thu Aug 28 03:58:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", + "favourites_count": 9592, + "status": { + "retweet_count": 13566, + "retweeted_status": { + "retweet_count": 13566, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "664196578178146337", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 680, + "h": 384, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 339, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 192, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", + "type": "photo", + "indices": [ + 33, + 56 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", + "display_url": "pic.twitter.com/wvdGL6FVBi", + "id_str": "664196535018737664", + "expanded_url": "http://twitter.com/Alby/status/664196578178146337/video/1", + "id": 664196535018737664, + "url": "https://t.co/wvdGL6FVBi" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Nov 10 21:42:59 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 664196578178146337, + "text": "Another magnetic chain reaction. https://t.co/wvdGL6FVBi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 11430, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685606651899080704", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 680, + "h": 384, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 339, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 192, + "resize": "fit" + } + }, + "source_status_id_str": "664196578178146337", + "url": "https://t.co/wvdGL6FVBi", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", + "source_user_id_str": "6795192", + "id_str": "664196535018737664", + "id": 664196535018737664, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", + "type": "photo", + "indices": [ + 43, + 66 + ], + "source_status_id": 664196578178146337, + "source_user_id": 6795192, + "display_url": "pic.twitter.com/wvdGL6FVBi", + "expanded_url": "http://twitter.com/Alby/status/664196578178146337/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Alby", + "id_str": "6795192", + "id": 6795192, + "indices": [ + 3, + 8 + ], + "name": "Alby" + } + ] + }, + "created_at": "Fri Jan 08 23:38:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685606651899080704, + "text": "RT @Alby: Another magnetic chain reaction. https://t.co/wvdGL6FVBi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 16022957, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 19131, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16022957/1394348072", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "70916267", + "following": false, + "friends_count": 276, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 177, + "location": "Bradford", + "screen_name": "developer_gg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Gordon Brown", + "profile_use_background_image": true, + "description": "I like computers, beer and coffee, but not necessarily in that order. I also try to run occasionally. Consultant at @ukinfinityworks.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 02 08:33:20 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", + "favourites_count": 128, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ToxicTourniquet", + "in_reply_to_user_id": 53144530, + "in_reply_to_status_id_str": "685381555305484288", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685382327615238145", + "id": 685382327615238145, + "text": "@ToxicTourniquet @Staticman1 @PayByPhone_UK you can - I just did - 0330 400 7275. You'll still need your location code.", + "in_reply_to_user_id_str": "53144530", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ToxicTourniquet", + "id_str": "53144530", + "id": 53144530, + "indices": [ + 0, + 16 + ], + "name": "Tam" + }, + { + "screen_name": "Staticman1", + "id_str": "56454758", + "id": 56454758, + "indices": [ + 17, + 28 + ], + "name": "James Hawkins" + }, + { + "screen_name": "PayByPhone_UK", + "id_str": "436714561", + "id": 436714561, + "indices": [ + 29, + 43 + ], + "name": "PayByPhone UK" + } + ] + }, + "created_at": "Fri Jan 08 08:47:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685381555305484288, + "lang": "en" + }, + "default_profile_image": false, + "id": 70916267, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 509, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "19734656", + "following": false, + "friends_count": 1068, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "realgenekim.me", + "url": "http://t.co/IBvzJu7jHq", + "expanded_url": "http://realgenekim.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 18784, + "location": "\u00dcT: 45.527981,-122.670577", + "screen_name": "RealGeneKim", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1035, + "name": "Gene Kim", + "profile_use_background_image": true, + "description": "DevOps enthusiast, The Phoenix Project co-author, Tripwire founder, Visible Ops co-author, IT Ops/Security Researcher, Theory of Constraints Jonah, rabid UX fan", + "url": "http://t.co/IBvzJu7jHq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jan 29 21:10:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", + "favourites_count": 1122, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "coburnw", + "in_reply_to_user_id": 25533767, + "in_reply_to_status_id_str": "685571662922686464", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685586516211400704", + "id": 685586516211400704, + "text": "@coburnw And please let me know if there\u2019s anything I can do to help! Go go go! :)", + "in_reply_to_user_id_str": "25533767", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "coburnw", + "id_str": "25533767", + "id": 25533767, + "indices": [ + 0, + 8 + ], + "name": "Coburn Watson" + } + ] + }, + "created_at": "Fri Jan 08 22:18:57 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685571662922686464, + "lang": "en" + }, + "default_profile_image": false, + "id": 19734656, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 17244, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "12614742", + "following": false, + "friends_count": 1437, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "testobsessed.com", + "url": "http://t.co/QKSEPgi0Ad", + "expanded_url": "http://www.testobsessed.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": false, + "followers_count": 10876, + "location": "Palo Alto, California, USA", + "screen_name": "testobsessed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 808, + "name": "ElisabethHendrickson", + "profile_use_background_image": true, + "description": "Author of Explore It! Recovering consultant. I work on Big Data at @pivotal but speak only for myself.", + "url": "http://t.co/QKSEPgi0Ad", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", + "profile_background_color": "EDECE9", + "created_at": "Wed Jan 23 21:49:39 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", + "favourites_count": 9737, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685086119029948418", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/LindaRegber/st\u2026", + "url": "https://t.co/qCHRQzRBKE", + "expanded_url": "https://twitter.com/LindaRegber/status/683294175752810496", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 13:10:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685086119029948418, + "text": "Love the visualization. https://t.co/qCHRQzRBKE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 12614742, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "statuses_count": 17738, + "is_translator": false + }, + { + "time_zone": "Stockholm", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "155247426", + "following": false, + "friends_count": 391, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "loweschmidt.se", + "url": "http://t.co/bqChHrmryK", + "expanded_url": "http://loweschmidt.se", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 273, + "location": "Stockholm, Sweden", + "screen_name": "loweschmidt", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 31, + "name": "Lowe Schmidt", + "profile_use_background_image": true, + "description": "FLOSS fan, DevOps advocate, sysadmin for hire @init_ab. (neo)vim user, @sthlmdevops founder and beer collector @untappd. I also like tattoos.", + "url": "http://t.co/bqChHrmryK", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Jun 13 15:45:23 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", + "favourites_count": 608, + "status": { + "retweet_count": 8, + "retweeted_status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685585057948434432", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 125, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 220, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 376, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "type": "photo", + "indices": [ + 107, + 130 + ], + "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "display_url": "pic.twitter.com/IEQVTQqJVK", + "id_str": "685584988327116800", + "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", + "id": 685584988327116800, + "url": "https://t.co/IEQVTQqJVK" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "facebook.com/notes/matty-gr\u2026", + "url": "https://t.co/bgCQtDeUtW", + "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:13:10 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685585057948434432, + "text": "Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJVK", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685587439931551744", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 125, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 220, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 376, + "resize": "fit" + } + }, + "source_status_id_str": "685585057948434432", + "url": "https://t.co/IEQVTQqJVK", + "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "source_user_id_str": "18137723", + "id_str": "685584988327116800", + "id": 685584988327116800, + "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "type": "photo", + "indices": [ + 122, + 144 + ], + "source_status_id": 685585057948434432, + "source_user_id": 18137723, + "display_url": "pic.twitter.com/IEQVTQqJVK", + "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "facebook.com/notes/matty-gr\u2026", + "url": "https://t.co/bgCQtDeUtW", + "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", + "indices": [ + 98, + 121 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "raganwald", + "id_str": "18137723", + "id": 18137723, + "indices": [ + 3, + 13 + ], + "name": "Reginald Braithwaite" + } + ] + }, + "created_at": "Fri Jan 08 22:22:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685587439931551744, + "text": "RT @raganwald: Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJ\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 155247426, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 10749, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/155247426/1372113776", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14946551", + "following": false, + "friends_count": 233, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/thedoh", + "url": "https://t.co/75FomxWTf2", + "expanded_url": "https://twitter.com/thedoh", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": false, + "followers_count": 332, + "location": "Toronto, Ontario", + "screen_name": "thedoh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 38, + "name": "Lisa Seelye", + "profile_use_background_image": true, + "description": "Magic, sysadmin, learner", + "url": "https://t.co/75FomxWTf2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Thu May 29 18:28:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", + "favourites_count": 372, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685593686432825344", + "id": 685593686432825344, + "text": "Skipping FNM tonight. Not feeling it.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:47:27 +0000 2016", + "source": "Twitterrific for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14946551, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "statuses_count": 20006, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "80200818", + "following": false, + "friends_count": 587, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "100357", + "geo_enabled": true, + "followers_count": 328, + "location": "memphis \u2708 seattle", + "screen_name": "edyesed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 77, + "name": "that guy", + "profile_use_background_image": true, + "description": "asdf;lkj... #dadops #devops", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Oct 06 03:09:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", + "favourites_count": 3601, + "status": { + "retweet_count": 2, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685582326827499520", + "id": 685582326827499520, + "text": "Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told me?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:02:18 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685590780581249024", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JeffSaidSo", + "id_str": "171544323", + "id": 171544323, + "indices": [ + 3, + 14 + ], + "name": "Jeff Allen" + } + ] + }, + "created_at": "Fri Jan 08 22:35:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685590780581249024, + "text": "RT @JeffSaidSo: Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 80200818, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", + "statuses_count": 8489, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/80200818/1419223168", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "913200547", + "following": false, + "friends_count": 1308, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nickshemonsky.com", + "url": "http://t.co/xWPpyxcm6U", + "expanded_url": "http://www.nickshemonsky.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "657B83", + "geo_enabled": false, + "followers_count": 279, + "location": "Pottsville, PA", + "screen_name": "nshemonsky", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 16, + "name": "Nick Shemonsky", + "profile_use_background_image": false, + "description": "@BlueBox Ops | @Penn_State alum | #CraftBeer Enthusiast | Fly @Eagles Fly! | Runner", + "url": "http://t.co/xWPpyxcm6U", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", + "profile_background_color": "004454", + "created_at": "Mon Oct 29 20:37:31 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", + "favourites_count": 126, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MassHaste", + "in_reply_to_user_id": 27139651, + "in_reply_to_status_id_str": "685500343506071553", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685501930177597440", + "id": 685501930177597440, + "text": "@MassHaste @biscuitbitch They make a good americano as well.", + "in_reply_to_user_id_str": "27139651", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MassHaste", + "id_str": "27139651", + "id": 27139651, + "indices": [ + 0, + 10 + ], + "name": "Ruben Orduz" + }, + { + "screen_name": "biscuitbitch", + "id_str": "704580546", + "id": 704580546, + "indices": [ + 11, + 24 + ], + "name": "Biscuit Bitch" + } + ] + }, + "created_at": "Fri Jan 08 16:42:50 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685500343506071553, + "lang": "en" + }, + "default_profile_image": false, + "id": 913200547, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", + "statuses_count": 923, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/913200547/1429793800", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2838111", + "following": false, + "friends_count": 456, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mcdermottroe.com", + "url": "http://t.co/6FjMMOcAIA", + "expanded_url": "http://www.mcdermottroe.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 793, + "location": "Dublin, Ireland", + "screen_name": "IRLConor", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Conor McDermottroe", + "profile_use_background_image": true, + "description": "I'm a software developer for @circleci. I'm also a competitive rifle shooter for @targetshooting and @durifle.", + "url": "http://t.co/6FjMMOcAIA", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 29 13:35:37 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", + "favourites_count": 479, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "courtewing", + "in_reply_to_user_id": 25573729, + "in_reply_to_status_id_str": "684739332087910400", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684739489403645952", + "id": 684739489403645952, + "text": "@courtewing @cloudsteph Read position, read indicators on DMs (totally broken on Twitter itself) and mute filters among other things.", + "in_reply_to_user_id_str": "25573729", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "courtewing", + "id_str": "25573729", + "id": 25573729, + "indices": [ + 0, + 11 + ], + "name": "Court Ewing" + }, + { + "screen_name": "cloudsteph", + "id_str": "15389419", + "id": 15389419, + "indices": [ + 12, + 23 + ], + "name": "Stephie Graphics" + } + ] + }, + "created_at": "Wed Jan 06 14:13:10 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684739332087910400, + "lang": "en" + }, + "default_profile_image": false, + "id": 2838111, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5257, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2838111/1396367369", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "104164496", + "following": false, + "friends_count": 2020, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dribbble.com/danielbeere", + "url": "http://t.co/6ZvS9hPEgV", + "expanded_url": "http://dribbble.com/danielbeere", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "663399", + "geo_enabled": false, + "followers_count": 823, + "location": "San Francisco", + "screen_name": "DanielBeere", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 115, + "name": "Daniel Beere", + "profile_use_background_image": true, + "description": "Irish designer in SF @circleci \u270c\ufe0f", + "url": "http://t.co/6ZvS9hPEgV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jan 12 13:41:22 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBE9ED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", + "favourites_count": 2203, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 604516513, + "possibly_sensitive": false, + "id_str": "685495163859394562", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amazon.com/Yogi-Teas-Bags\u2026", + "url": "https://t.co/urUptC9Tt3", + "expanded_url": "http://www.amazon.com/Yogi-Teas-Bags-Stess-Relief/dp/B0009F3QKW", + "indices": [ + 11, + 34 + ] + }, + { + "display_url": "fourhourworkweek.com/2016/01/03/new\u2026", + "url": "https://t.co/ljyONNyI0B", + "expanded_url": "http://fourhourworkweek.com/2016/01/03/new-years-resolutions", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "beerhoff1", + "id_str": "604516513", + "id": 604516513, + "indices": [ + 0, + 10 + ], + "name": "Shane Beere" + }, + { + "screen_name": "kevinrose", + "id_str": "657863", + "id": 657863, + "indices": [ + 53, + 63 + ], + "name": "Kevin Rose" + }, + { + "screen_name": "tferriss", + "id_str": "11740902", + "id": 11740902, + "indices": [ + 67, + 76 + ], + "name": "Tim Ferriss" + } + ] + }, + "created_at": "Fri Jan 08 16:15:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "604516513", + "place": null, + "in_reply_to_screen_name": "beerhoff1", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685495163859394562, + "text": "@beerhoff1 https://t.co/urUptC9Tt3 as recommended by @kevinrose on @tferriss show: https://t.co/ljyONNyI0B", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 104164496, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", + "statuses_count": 6830, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/104164496/1375219663", + "is_translator": false + }, + { + "time_zone": "Vienna", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "39625343", + "following": false, + "friends_count": 446, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blag.esotericsystems.at", + "url": "https://t.co/NexvmiW4Zx", + "expanded_url": "https://blag.esotericsystems.at/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": false, + "followers_count": 781, + "location": "They/Their Land", + "screen_name": "hirojin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "The Wrath of me\u2122", + "profile_use_background_image": true, + "description": "disappointing expectations since 1894.", + "url": "https://t.co/NexvmiW4Zx", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Tue May 12 23:20:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", + "favourites_count": 18072, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "asmallteapot", + "in_reply_to_user_id": 14202167, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610405272629249", + "id": 685610405272629249, + "text": "@asmallteapot hi Ellen Teapot irl", + "in_reply_to_user_id_str": "14202167", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "asmallteapot", + "id_str": "14202167", + "id": 14202167, + "indices": [ + 0, + 13 + ], + "name": "ellen teapot" + } + ] + }, + "created_at": "Fri Jan 08 23:53:53 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 39625343, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", + "statuses_count": 32419, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39625343/1401366515", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "12143922", + "following": false, + "friends_count": 1036, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "markn.ca", + "url": "http://t.co/n78rBOUVWU", + "expanded_url": "http://markn.ca", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", + "notifications": false, + "profile_sidebar_fill_color": "595D62", + "profile_link_color": "67BACA", + "geo_enabled": false, + "followers_count": 3456, + "location": "::1", + "screen_name": "marknca", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 446, + "name": "Mark Nunnikhoven", + "profile_use_background_image": false, + "description": "Vice President, Cloud Research @TrendMicro. \n\nResearching & teaching cloud & usable security systems at scale. Opinionated but always looking to learn.", + "url": "http://t.co/n78rBOUVWU", + "profile_text_color": "50A394", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", + "profile_background_color": "525055", + "created_at": "Sat Jan 12 04:41:20 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", + "favourites_count": 1975, + "status": { + "retweet_count": 31, + "retweeted_status": { + "retweet_count": 31, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "411573734525247488", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "techblog.netflix.com/2013/12/staash\u2026", + "url": "http://t.co/odQB0AhIpe", + "expanded_url": "http://techblog.netflix.com/2013/12/staash-storage-as-service-over-http.html", + "indices": [ + 62, + 84 + ] + } + ], + "hashtags": [ + { + "indices": [ + 85, + 96 + ], + "text": "NetflixOSS" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Dec 13 19:09:59 +0000 2013", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 411573734525247488, + "text": "Netflix: announcing STAASH - STorage As A Service over Http : http://t.co/odQB0AhIpe #NetflixOSS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 31, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685525886704218112", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "techblog.netflix.com/2013/12/staash\u2026", + "url": "http://t.co/odQB0AhIpe", + "expanded_url": "http://techblog.netflix.com/2013/12/staash-storage-as-service-over-http.html", + "indices": [ + 78, + 100 + ] + } + ], + "hashtags": [ + { + "indices": [ + 101, + 112 + ], + "text": "NetflixOSS" + } + ], + "user_mentions": [ + { + "screen_name": "NetflixOSS", + "id_str": "386170457", + "id": 386170457, + "indices": [ + 3, + 14 + ], + "name": "NetflixOSS" + } + ] + }, + "created_at": "Fri Jan 08 18:18:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685525886704218112, + "text": "RT @NetflixOSS: Netflix: announcing STAASH - STorage As A Service over Http : http://t.co/odQB0AhIpe #NetflixOSS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 12143922, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", + "statuses_count": 35451, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12143922/1397706275", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8866232", + "following": false, + "friends_count": 2005, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mattrogish.com", + "url": "http://t.co/yCK1Z82dhE", + "expanded_url": "http://www.mattrogish.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 1677, + "location": "Philadelphia, PA", + "screen_name": "MattRogish", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 233, + "name": "Matt Rogish", + "profile_use_background_image": true, + "description": "Startup janitor @ReactiveOps", + "url": "http://t.co/yCK1Z82dhE", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Fri Sep 14 01:23:45 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", + "favourites_count": 409, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685583855701594112", + "id": 685583855701594112, + "text": "Is it possible for my shower head to spray bourbon?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:08:23 +0000 2016", + "source": "TweetDeck", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685583979848830976", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mikebarish", + "id_str": "34930874", + "id": 34930874, + "indices": [ + 3, + 14 + ], + "name": "Mike Barish" + } + ] + }, + "created_at": "Fri Jan 08 22:08:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685583979848830976, + "text": "RT @mikebarish: Is it possible for my shower head to spray bourbon?", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 8866232, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", + "statuses_count": 29628, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8866232/1398194149", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1458271", + "following": false, + "friends_count": 1789, + "entities": { + "description": { + "urls": [ + { + "display_url": "mapbox.com", + "url": "https://t.co/djeLWKvmpe", + "expanded_url": "http://mapbox.com", + "indices": [ + 6, + 29 + ] + }, + { + "display_url": "github.com/tmcw", + "url": "https://t.co/j4toNgk9Vd", + "expanded_url": "https://github.com/tmcw", + "indices": [ + 36, + 59 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "macwright.org", + "url": "http://t.co/d4zmVgqQxY", + "expanded_url": "http://macwright.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "727996", + "geo_enabled": true, + "followers_count": 4338, + "location": "lon, lat", + "screen_name": "tmcw", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 336, + "name": "Tom MacWright", + "profile_use_background_image": false, + "description": "work: https://t.co/djeLWKvmpe\ncode: https://t.co/j4toNgk9Vd", + "url": "http://t.co/d4zmVgqQxY", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Mar 19 01:06:50 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", + "favourites_count": 2154, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685479131652460544", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "movingbrands.com/work/netflix", + "url": "https://t.co/jVHQei9nqB", + "expanded_url": "http://www.movingbrands.com/work/netflix", + "indices": [ + 101, + 124 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:12:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685479131652460544, + "text": "brand redesign posts that are specific about the previous design's problems are way more interesting https://t.co/jVHQei9nqB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1458271, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", + "statuses_count": 11307, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1458271/1436753023", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "821753", + "following": false, + "friends_count": 313, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "waferbaby.com", + "url": "https://t.co/qvUfWRzUDe", + "expanded_url": "http://waferbaby.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 2192, + "location": "Mos Iceland Container Store", + "screen_name": "waferbaby", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 141, + "name": "Daniel Bogan", + "profile_use_background_image": false, + "description": "I do the stuff on the Internets.", + "url": "https://t.co/qvUfWRzUDe", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", + "profile_background_color": "2E2E2E", + "created_at": "Thu Mar 08 14:02:34 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", + "favourites_count": 10155, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "tedd4u", + "in_reply_to_user_id": 8619192, + "in_reply_to_status_id_str": "685609696858771456", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610820907057152", + "id": 685610820907057152, + "text": "@tedd4u: Hah, I don\u2019t talk about startups!", + "in_reply_to_user_id_str": "8619192", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tedd4u", + "id_str": "8619192", + "id": 8619192, + "indices": [ + 0, + 7 + ], + "name": "Tim A. Miller" + } + ] + }, + "created_at": "Fri Jan 08 23:55:32 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685609696858771456, + "lang": "en" + }, + "default_profile_image": false, + "id": 821753, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 60175, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/821753/1450081356", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "557933634", + "following": false, + "friends_count": 4062, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "saltstack.com", + "url": "http://t.co/rukw0maLdy", + "expanded_url": "http://saltstack.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "48B4FB", + "geo_enabled": false, + "followers_count": 6327, + "location": "Salt Lake City", + "screen_name": "SaltStackInc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 305, + "name": "SaltStack", + "profile_use_background_image": true, + "description": "Software to orchestrate & automate CloudOps, ITOps & DevOps at extreme speed & scale | '14 InfoWorld Technology of the Year | '13 Gartner Cool Vendor in DevOps", + "url": "http://t.co/rukw0maLdy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Apr 19 16:31:12 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", + "favourites_count": 1125, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685600728631476225", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1jM9opD", + "url": "https://t.co/TbBXqaLwrc", + "expanded_url": "http://bit.ly/1jM9opD", + "indices": [ + 90, + 113 + ] + } + ], + "hashtags": [ + { + "indices": [ + 4, + 15 + ], + "text": "SaltConf16" + } + ], + "user_mentions": [ + { + "screen_name": "LinkedIn", + "id_str": "13058772", + "id": 13058772, + "indices": [ + 27, + 36 + ], + "name": "LinkedIn" + }, + { + "screen_name": "druonysus", + "id_str": "352871356", + "id": 352871356, + "indices": [ + 38, + 48 + ], + "name": "Drew Adams" + }, + { + "screen_name": "OpenX", + "id_str": "14184143", + "id": 14184143, + "indices": [ + 52, + 58 + ], + "name": "OpenX" + }, + { + "screen_name": "ClemsonUniv", + "id_str": "23444864", + "id": 23444864, + "indices": [ + 65, + 77 + ], + "name": "Clemson University" + } + ] + }, + "created_at": "Fri Jan 08 23:15:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685600728631476225, + "text": "New #SaltConf16 talks from @LinkedIn, @druonysus of @OpenX & @ClemsonUniv now posted: https://t.co/TbBXqaLwrc Register now.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 557933634, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", + "statuses_count": 2842, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/557933634/1428941606", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3450748273", + "following": false, + "friends_count": 8, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "howdy.ai", + "url": "https://t.co/1cHNN303mV", + "expanded_url": "http://howdy.ai", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 667, + "location": "Austin, TX", + "screen_name": "HowdyAI", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Howdy", + "profile_use_background_image": false, + "description": "Your new digital coworker for Slack!", + "url": "https://t.co/1cHNN303mV", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Sep 04 18:15:13 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", + "favourites_count": 399, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mescamm", + "in_reply_to_user_id": 113094157, + "in_reply_to_status_id_str": "685485832308965376", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685600766917275648", + "id": 685600766917275648, + "text": "@mescamm Your Howdy bot is ready to go!", + "in_reply_to_user_id_str": "113094157", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mescamm", + "id_str": "113094157", + "id": 113094157, + "indices": [ + 0, + 8 + ], + "name": "Mathieu Mescam" + } + ] + }, + "created_at": "Fri Jan 08 23:15:35 +0000 2016", + "source": "Groove HQ", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685485832308965376, + "lang": "en" + }, + "default_profile_image": false, + "id": 3450748273, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 220, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "3428227355", + "following": false, + "friends_count": 1936, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nerabus.com", + "url": "http://t.co/ZzSYPLDJDg", + "expanded_url": "http://nerabus.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "8C8C8C", + "geo_enabled": false, + "followers_count": 553, + "location": "Manchester and Cambridge, UK", + "screen_name": "computefuture", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Nerabus", + "profile_use_background_image": false, + "description": "The focal point of the Open Source hardware revolution #cto #datacenter #OpenSourceHardware #OpenSourceSilicon #FPGA", + "url": "http://t.co/ZzSYPLDJDg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Aug 17 14:43:41 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", + "favourites_count": 213, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685128917259259904", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "engt.co/1Rl04XW", + "url": "https://t.co/73ZDipi3RD", + "expanded_url": "http://engt.co/1Rl04XW", + "indices": [ + 46, + 69 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "engadget", + "id_str": "14372486", + "id": 14372486, + "indices": [ + 74, + 83 + ], + "name": "Engadget" + } + ] + }, + "created_at": "Thu Jan 07 16:00:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685128917259259904, + "text": "Amazon is selling its own processors now, too https://t.co/73ZDipi3RD via @engadget", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 3428227355, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 374, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3428227355/1442251790", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1087503266", + "following": false, + "friends_count": 311, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "levlaz.org", + "url": "https://t.co/4OB68uzJbf", + "expanded_url": "https://levlaz.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 462, + "location": "San Francisco, CA", + "screen_name": "levlaz", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 44, + "name": "Lev Lazinskiy", + "profile_use_background_image": true, + "description": "I \u2764\ufe0f\u200d Developers @CircleCI, Graduate Student @NovaSE, Veteran, Musician, Dev and Linux Geek. \u2764\ufe0f @songbing_yu", + "url": "https://t.co/4OB68uzJbf", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Sun Jan 13 23:26:26 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", + "favourites_count": 4442, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "DavidAndGoliath", + "in_reply_to_user_id": 14469175, + "in_reply_to_status_id_str": "685251764610822144", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685252027870392320", + "id": 685252027870392320, + "text": "@DavidAndGoliath @TMobile @EFF they are all horrible I'll just go without a cell provider for a while :D", + "in_reply_to_user_id_str": "14469175", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DavidAndGoliath", + "id_str": "14469175", + "id": 14469175, + "indices": [ + 0, + 16 + ], + "name": "David" + }, + { + "screen_name": "TMobile", + "id_str": "17338082", + "id": 17338082, + "indices": [ + 17, + 25 + ], + "name": "T-Mobile" + }, + { + "screen_name": "EFF", + "id_str": "4816", + "id": 4816, + "indices": [ + 26, + 30 + ], + "name": "EFF" + } + ] + }, + "created_at": "Fri Jan 08 00:09:49 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685251764610822144, + "lang": "en" + }, + "default_profile_image": false, + "id": 1087503266, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 4756, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087503266/1447471475", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2667470504", + "following": false, + "friends_count": 112, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "launchdarkly.com", + "url": "http://t.co/e7Lhd33dNc", + "expanded_url": "http://www.launchdarkly.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 255, + "location": "San Francisco", + "screen_name": "LaunchDarkly", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "LaunchDarkly", + "profile_use_background_image": true, + "description": "Control your feature launches. Feature flags as a service. Tweets about canary releases for continuous delivery.", + "url": "http://t.co/e7Lhd33dNc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 21 23:18:43 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", + "favourites_count": 119, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685347790533296128", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z9JhG8", + "url": "https://t.co/kDewgvL5x9", + "expanded_url": "http://buff.ly/1Z9JhG8", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 06:30:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685347790533296128, + "text": "\"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685533803683512321", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z9JhG8", + "url": "https://t.co/kDewgvL5x9", + "expanded_url": "http://buff.ly/1Z9JhG8", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "divanator", + "id_str": "10184822", + "id": 10184822, + "indices": [ + 3, + 13 + ], + "name": "Div" + } + ] + }, + "created_at": "Fri Jan 08 18:49:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685533803683512321, + "text": "RT @divanator: \"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2667470504, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 548, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2667470504/1446072089", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3320603490", + "following": false, + "friends_count": 99, + "entities": { + "description": { + "urls": [ + { + "display_url": "soundcloud.com/heavybit", + "url": "https://t.co/lAnNM1oH69", + "expanded_url": "https://soundcloud.com/heavybit", + "indices": [ + 114, + 137 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": false, + "followers_count": 103, + "location": "San Francisco, CA", + "screen_name": "ContinuousCast", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "To Be Continuous", + "profile_use_background_image": false, + "description": "To Be Continuous ... a podcast on all things #ContinuousDelivery. Hosted @paulbiggar @edith_h Sponsored @heavybit https://t.co/lAnNM1oH69", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Aug 19 22:32:39 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", + "favourites_count": 8, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "stanlemon", + "in_reply_to_user_id": 14147682, + "in_reply_to_status_id_str": "685484756620857345", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685569841068048386", + "id": 685569841068048386, + "text": "@stanlemon @edith_h @paulbiggar Our producer @tedcarstensen is working on it!", + "in_reply_to_user_id_str": "14147682", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "stanlemon", + "id_str": "14147682", + "id": 14147682, + "indices": [ + 0, + 10 + ], + "name": "Stan Lemon" + }, + { + "screen_name": "edith_h", + "id_str": "14965602", + "id": 14965602, + "indices": [ + 11, + 19 + ], + "name": "Edith Harbaugh" + }, + { + "screen_name": "paulbiggar", + "id_str": "86938585", + "id": 86938585, + "indices": [ + 20, + 31 + ], + "name": "Paul Biggar" + }, + { + "screen_name": "tedcarstensen", + "id_str": "20000329", + "id": 20000329, + "indices": [ + 45, + 59 + ], + "name": "ted carstensen" + } + ] + }, + "created_at": "Fri Jan 08 21:12:42 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685484756620857345, + "lang": "en" + }, + "default_profile_image": false, + "id": 3320603490, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 107, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320603490/1440175251", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "245729302", + "following": false, + "friends_count": 1747, + "entities": { + "description": { + "urls": [ + { + "display_url": "bytemark.co.uk/support", + "url": "https://t.co/zlCkaK20Wn", + "expanded_url": "https://www.bytemark.co.uk/support", + "indices": [ + 111, + 134 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "bytemark.co.uk", + "url": "https://t.co/30hNNjVa6D", + "expanded_url": "http://www.bytemark.co.uk/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0768AA", + "geo_enabled": false, + "followers_count": 2011, + "location": "Manchester & York, UK", + "screen_name": "bytemark", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "Bytemark", + "profile_use_background_image": false, + "description": "Reliable UK hosting from \u00a310 per month. We're here to chat during office hours. Urgent problem? Email is best: https://t.co/zlCkaK20Wn", + "url": "https://t.co/30hNNjVa6D", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Feb 01 10:22:20 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", + "favourites_count": 1159, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685500519486492672", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 182, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 322, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 647, + "h": 348, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", + "type": "photo", + "indices": [ + 40, + 63 + ], + "media_url": "http://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", + "display_url": "pic.twitter.com/dzXqC0ETXZ", + "id_str": "685500516143644676", + "expanded_url": "http://twitter.com/bytemark/status/685500519486492672/photo/1", + "id": 685500516143644676, + "url": "https://t.co/dzXqC0ETXZ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:37:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685500519486492672, + "text": "Remember kids: don\u2019t copy that floppy\u2026! https://t.co/dzXqC0ETXZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 245729302, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 4660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/245729302/1445428891", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "18958102", + "following": false, + "friends_count": 2400, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "careers.stackoverflow.com/saman", + "url": "https://t.co/jnFgndfW3D", + "expanded_url": "http://careers.stackoverflow.com/saman", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 1977, + "location": "Tehran", + "screen_name": "samanismael", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 49, + "name": "Saman Ismael", + "profile_use_background_image": false, + "description": "Full Stack Developer, C & Python Lover, GNU/Linux Ninja, Open Source Fan.", + "url": "https://t.co/jnFgndfW3D", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jan 13 23:16:38 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", + "favourites_count": 2592, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "664193187326521344", + "id": 664193187326521344, + "text": "Data is the new Oil. #BigData", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 21, + 29 + ], + "text": "BigData" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Nov 10 21:29:30 +0000 2015", + "source": "TweetDeck", + "favorite_count": 8, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 18958102, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "statuses_count": 187, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18958102/1444114007", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "37681147", + "following": false, + "friends_count": 1579, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/bradyasar", + "url": "https://t.co/FqEV3wDE2u", + "expanded_url": "http://about.me/bradyasar", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 4614, + "location": "Los Angeles, CA", + "screen_name": "YasarCorp", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 140, + "name": "Brad Yasar", + "profile_use_background_image": true, + "description": "Business Architect, Entrepreneur and Investor Greater Los Angeles Area, Venture Capital & Private Equity. Equity Crowdfunding @ CrowdfundX.io", + "url": "https://t.co/FqEV3wDE2u", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon May 04 15:21:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", + "favourites_count": 15661, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685593651905474560", + "id": 685593651905474560, + "text": "RT \u201cWe\u2019re giving cultivators the ability to get away from these poisons\u201d- Matthew Mills @MedX_Inc on @bizrockstars #cannabis", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 116, + 125 + ], + "text": "cannabis" + } + ], + "user_mentions": [ + { + "screen_name": "MedX_Inc", + "id_str": "4261167493", + "id": 4261167493, + "indices": [ + 89, + 98 + ], + "name": "Med-X" + }, + { + "screen_name": "bizrockstars", + "id_str": "525713285", + "id": 525713285, + "indices": [ + 102, + 115 + ], + "name": "Business Rockstars" + } + ] + }, + "created_at": "Fri Jan 08 22:47:18 +0000 2016", + "source": "Vytmn", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 37681147, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1073, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/37681147/1382740340", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2832545398", + "following": false, + "friends_count": 4819, + "entities": { + "description": { + "urls": [ + { + "display_url": "sprawlgeek.com/p/bio.html", + "url": "https://t.co/8rLwARBvup", + "expanded_url": "http://www.sprawlgeek.com/p/bio.html", + "indices": [ + 59, + 82 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "sprawlgeek.com", + "url": "http://t.co/pUn9V1gXKx", + "expanded_url": "http://www.sprawlgeek.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 9132, + "location": "Iowa", + "screen_name": "sprawlgeek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 137, + "name": "Sprawlgeek", + "profile_use_background_image": true, + "description": "Reality from the Edge of the Network. Tablet Watchman! \nhttps://t.co/8rLwARBvup", + "url": "http://t.co/pUn9V1gXKx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", + "profile_background_color": "0084B4", + "created_at": "Wed Oct 15 19:22:42 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", + "favourites_count": 1688, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685605289744142336", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 146, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 258, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 276, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPCYOFVAAANwe8.jpg", + "type": "photo", + "indices": [ + 47, + 70 + ], + "media_url": "http://pbs.twimg.com/media/CYPCYOFVAAANwe8.jpg", + "display_url": "pic.twitter.com/q7lqOO4Ipt", + "id_str": "685605289643540480", + "expanded_url": "http://twitter.com/sprawlgeek/status/685605289744142336/photo/1", + "id": 685605289643540480, + "url": "https://t.co/q7lqOO4Ipt" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "arstechnica.com/tech-policy/20\u2026", + "url": "https://t.co/mg7kLGjys7", + "expanded_url": "http://arstechnica.com/tech-policy/2016/01/uber-to-encrypt-rider-geo-location-data-pay-20000-to-settle-ny-privacy-flap/", + "indices": [ + 23, + 46 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:33:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685605289744142336, + "text": "Uber got off light...\n https://t.co/mg7kLGjys7 https://t.co/q7lqOO4Ipt", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitshot.com" + }, + "default_profile_image": false, + "id": 2832545398, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", + "statuses_count": 3234, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2832545398/1420726400", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3107351469", + "following": false, + "friends_count": 2424, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "git-scm.com", + "url": "http://t.co/YaM2RpAQp5", + "expanded_url": "http://git-scm.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "F05033", + "geo_enabled": false, + "followers_count": 2882, + "location": "Finland", + "screen_name": "planetgit", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "Planet Git", + "profile_use_background_image": false, + "description": "Curated news from the Git community. Git is a free and open source distributed version control system.", + "url": "http://t.co/YaM2RpAQp5", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Mar 23 10:43:42 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", + "favourites_count": 1, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684831105363656705", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z5BU2q", + "url": "https://t.co/0z9a6ISARU", + "expanded_url": "http://buff.ly/1Z5BU2q", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 20:17:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684831105363656705, + "text": "Neat new features in Git 2.7 https://t.co/0z9a6ISARU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 3107351469, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 68, + "is_translator": false + }, + { + "time_zone": "Vienna", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "23755643", + "following": false, + "friends_count": 20839, + "entities": { + "description": { + "urls": [ + { + "display_url": "linkd.in/1JT9h3X", + "url": "https://t.co/iJB2h1L78m", + "expanded_url": "http://linkd.in/1JT9h3X", + "indices": [ + 105, + 128 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "dixus.de", + "url": "http://t.co/sZ1DnHsEsZ", + "expanded_url": "http://www.dixus.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 28406, + "location": "Germany (Saxony)", + "screen_name": "dixus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 750, + "name": "Holger Kreissl", + "profile_use_background_image": false, + "description": "#mobile & #cloud enthusiast | #CleanCode | #dotnet | #aspnet | #enterpriseMobility | Find me on LinkedIn https://t.co/iJB2h1L78m", + "url": "http://t.co/sZ1DnHsEsZ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Mar 11 12:38:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", + "favourites_count": 1142, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685540390351597569", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1Zb2oj6", + "url": "https://t.co/WYppjNMu0h", + "expanded_url": "http://bit.ly/1Zb2oj6", + "indices": [ + 32, + 55 + ] + } + ], + "hashtags": [ + { + "indices": [ + 56, + 66 + ], + "text": "Developer" + }, + { + "indices": [ + 67, + 72 + ], + "text": "MVVM" + }, + { + "indices": [ + 73, + 81 + ], + "text": "Pattern" + }, + { + "indices": [ + 82, + 89 + ], + "text": "CSharp" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:15:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685540390351597569, + "text": "The MVVM pattern \u2013 The practice https://t.co/WYppjNMu0h #Developer #MVVM #Pattern #CSharp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "DixusTweeter" + }, + "default_profile_image": false, + "id": 23755643, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5551, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23755643/1441816836", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2491819189", + "following": false, + "friends_count": 2316, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/InTheCloudDan", + "url": "https://t.co/cOAiJln1jK", + "expanded_url": "https://github.com/InTheCloudDan", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 437, + "location": "", + "screen_name": "InTheCloudDan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Daniel O'Brien", + "profile_use_background_image": true, + "description": "I Heart #javascript #nodejs #docker #devops while dreaming of #thegreatoutdoors and a side of #growthhacking with my better half @FoodnFunAllDay", + "url": "https://t.co/cOAiJln1jK", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon May 12 18:28:48 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", + "favourites_count": 110, + "status": { + "retweet_count": 15, + "retweeted_status": { + "retweet_count": 15, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685287444514762753", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "type": "photo", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "display_url": "pic.twitter.com/DlXvgVMX0i", + "id_str": "685287444372144128", + "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", + "id": 685287444372144128, + "url": "https://t.co/DlXvgVMX0i" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:30:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685287444514762753, + "text": "https://t.co/DlXvgVMX0i", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 16, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685439447769415680", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "source_status_id_str": "685287444514762753", + "url": "https://t.co/DlXvgVMX0i", + "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "source_user_id_str": "6927562", + "id_str": "685287444372144128", + "id": 685287444372144128, + "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "type": "photo", + "indices": [ + 17, + 40 + ], + "source_status_id": 685287444514762753, + "source_user_id": 6927562, + "display_url": "pic.twitter.com/DlXvgVMX0i", + "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thomasfuchs", + "id_str": "6927562", + "id": 6927562, + "indices": [ + 3, + 15 + ], + "name": "Thomas Fuchs" + } + ] + }, + "created_at": "Fri Jan 08 12:34:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685439447769415680, + "text": "RT @thomasfuchs: https://t.co/DlXvgVMX0i", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2491819189, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 254, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "19300535", + "following": false, + "friends_count": 375, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "evilchi.li", + "url": "http://t.co/7Y1LuKzE5f", + "expanded_url": "http://evilchi.li/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "BFBFBF", + "profile_link_color": "2463A3", + "geo_enabled": true, + "followers_count": 418, + "location": "\u2615\ufe0f Seattle", + "screen_name": "evilchili", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "eeeveeelcheeeleee", + "profile_use_background_image": false, + "description": "evilchili is an application downloaded from the Internet. Are you sure you want to open it?", + "url": "http://t.co/7Y1LuKzE5f", + "profile_text_color": "212121", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", + "profile_background_color": "3F5D8A", + "created_at": "Wed Jan 21 18:47:47 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", + "favourites_count": 217, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "evilchili", + "in_reply_to_user_id": 19300535, + "in_reply_to_status_id_str": "685509884037607424", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685510082142978048", + "id": 685510082142978048, + "text": "@evilchili Never say \"yes\" to anything before you've had coffee.", + "in_reply_to_user_id_str": "19300535", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "evilchili", + "id_str": "19300535", + "id": 19300535, + "indices": [ + 0, + 10 + ], + "name": "eeeveeelcheeeleee" + } + ] + }, + "created_at": "Fri Jan 08 17:15:14 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685509884037607424, + "lang": "en" + }, + "default_profile_image": false, + "id": 19300535, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 22907, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19300535/1403829270", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "919464055", + "following": false, + "friends_count": 246, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tessamero.com", + "url": "https://t.co/eFmsIOI8OE", + "expanded_url": "http://tessamero.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "89C9FA", + "geo_enabled": true, + "followers_count": 1682, + "location": "Seattle, WA", + "screen_name": "TessaMero", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 199, + "name": "Tessa Mero", + "profile_use_background_image": true, + "description": "Teacher. Open Source Contributor. Organizer of @SeaPHP, @PNWPHP, and @JUGSeattle. Snowboarder. Video Game Lover. Speaker. Traveler. Dev Advocate for @Joomla", + "url": "https://t.co/eFmsIOI8OE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", + "profile_background_color": "89C9FA", + "created_at": "Thu Nov 01 17:12:23 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", + "favourites_count": 5619, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "shivaas", + "in_reply_to_user_id": 14636369, + "in_reply_to_status_id_str": "685585585096921088", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685601154823270400", + "id": 685601154823270400, + "text": "@shivaas thank you! I'm so excited for a career change!!!", + "in_reply_to_user_id_str": "14636369", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "shivaas", + "id_str": "14636369", + "id": 14636369, + "indices": [ + 0, + 8 + ], + "name": "Shivaas Gulati" + } + ] + }, + "created_at": "Fri Jan 08 23:17:07 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685585585096921088, + "lang": "en" + }, + "default_profile_image": false, + "id": 919464055, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 11074, + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "205936598", + "following": false, + "friends_count": 112, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 155, + "location": "Richland, WA", + "screen_name": "SanStaab", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Jonathan Staab", + "profile_use_background_image": true, + "description": "Web Developer trying to figure out how to code like Jesus would.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Thu Oct 21 22:56:11 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", + "favourites_count": 49, + "status": { + "retweet_count": 13471, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 13471, + "truncated": false, + "retweeted": false, + "id_str": "683681888687538177", + "id": 683681888687538177, + "text": "I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Jan 03 16:10:39 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 15366, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "684554177079414784", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JohnCleese", + "id_str": "10810102", + "id": 10810102, + "indices": [ + 3, + 14 + ], + "name": "John Cleese" + } + ] + }, + "created_at": "Wed Jan 06 01:56:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684554177079414784, + "text": "RT @JohnCleese: I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 205936598, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 628, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18195183", + "following": false, + "friends_count": 236, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gregaker.net", + "url": "https://t.co/wtcGV5PvaK", + "expanded_url": "http://www.gregaker.net/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 845, + "location": "Columbia, MO, USA", + "screen_name": "gaker", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 90, + "name": "\u0279\u04d9\u029e\u0250 \u0183\u04d9\u0279\u0183", + "profile_use_background_image": false, + "description": "I'm a thrasher, saxophone player and writer of code. DevOps @vinli", + "url": "https://t.co/wtcGV5PvaK", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Dec 17 18:15:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", + "favourites_count": 364, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684915042521890818", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "type": "photo", + "indices": [ + 78, + 101 + ], + "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "display_url": "pic.twitter.com/Nb0t9m7Kzu", + "id_str": "684915033961304064", + "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", + "id": 684915033961304064, + "url": "https://t.co/Nb0t9m7Kzu" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 51, + 55 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "vinli", + "id_str": "2409518833", + "id": 2409518833, + "indices": [ + 22, + 28 + ], + "name": "Vinli" + }, + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 37, + 42 + ], + "name": "Uber" + } + ] + }, + "created_at": "Thu Jan 07 01:50:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -115.2092535, + 35.984784 + ], + [ + -115.0610763, + 35.984784 + ], + [ + -115.0610763, + 36.137145 + ], + [ + -115.2092535, + 36.137145 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Paradise, NV", + "id": "8fa6d7a33b83ef26", + "name": "Paradise" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684915042521890818, + "text": "People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684928923247886336", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "source_status_id_str": "684915042521890818", + "url": "https://t.co/Nb0t9m7Kzu", + "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "source_user_id_str": "149705221", + "id_str": "684915033961304064", + "id": 684915033961304064, + "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "type": "photo", + "indices": [ + 94, + 117 + ], + "source_status_id": 684915042521890818, + "source_user_id": 149705221, + "display_url": "pic.twitter.com/Nb0t9m7Kzu", + "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 67, + 71 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "markhaidar", + "id_str": "149705221", + "id": 149705221, + "indices": [ + 3, + 14 + ], + "name": "Mark Haidar" + }, + { + "screen_name": "vinli", + "id_str": "2409518833", + "id": 2409518833, + "indices": [ + 38, + 44 + ], + "name": "Vinli" + }, + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 53, + 58 + ], + "name": "Uber" + } + ] + }, + "created_at": "Thu Jan 07 02:45:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684928923247886336, + "text": "RT @markhaidar: People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18195183, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3788, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18195183/1445621336", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "223102727", + "following": false, + "friends_count": 517, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "94D487", + "geo_enabled": true, + "followers_count": 316, + "location": "San Diego, CA", + "screen_name": "wulfmeister", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 28, + "name": "Mitchell Wulfman", + "profile_use_background_image": false, + "description": "JavaScript things, Meteor, UX. Striving to make bicycles for the mind. Currently taking HCI/UX classes at @DesignLabUCSD", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Dec 05 11:52:50 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", + "favourites_count": 1103, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685287692490260480", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "chrome.google.com/webstore/detai\u2026", + "url": "https://t.co/9fpcPvs8Hv", + "expanded_url": "https://chrome.google.com/webstore/detail/command-click-fix/leklllfdadjjglhllebogdjfdipdjhhp", + "indices": [ + 95, + 118 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:31:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685287692490260480, + "text": "Chrome extension to force Command-Click to open links in a new tab instead of the current one: https://t.co/9fpcPvs8Hv", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 223102727, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", + "statuses_count": 630, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/223102727/1445901786", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "15085681", + "following": false, + "friends_count": 170, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 151, + "location": "Dallas, TX", + "screen_name": "pkinney", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Powell Kinney", + "profile_use_background_image": true, + "description": "CTO at Vinli (@vinli)", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 11 15:30:11 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", + "favourites_count": 24, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684554991529508864", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 426, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "type": "photo", + "indices": [ + 117, + 140 + ], + "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "display_url": "pic.twitter.com/om0NgHGk0p", + "id_str": "684554991395323904", + "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", + "id": 684554991395323904, + "url": "https://t.co/om0NgHGk0p" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "hubs.ly/H01LMTC0", + "url": "https://t.co/hrCBzE0IY9", + "expanded_url": "http://hubs.ly/H01LMTC0", + "indices": [ + 78, + 101 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 8 + ], + "text": "CES2016" + } + ], + "user_mentions": [ + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 58, + 63 + ], + "name": "Uber" + }, + { + "screen_name": "reviewjournal", + "id_str": "15358759", + "id": 15358759, + "indices": [ + 102, + 116 + ], + "name": "Las Vegas RJ" + } + ] + }, + "created_at": "Wed Jan 06 02:00:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684554991529508864, + "text": "#CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.co/om0NgHGk0p", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "HubSpot" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684851893558841344", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 426, + "resize": "fit" + } + }, + "source_status_id_str": "684554991529508864", + "url": "https://t.co/om0NgHGk0p", + "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "source_user_id_str": "2409518833", + "id_str": "684554991395323904", + "id": 684554991395323904, + "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 684554991529508864, + "source_user_id": 2409518833, + "display_url": "pic.twitter.com/om0NgHGk0p", + "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "hubs.ly/H01LMTC0", + "url": "https://t.co/hrCBzE0IY9", + "expanded_url": "http://hubs.ly/H01LMTC0", + "indices": [ + 89, + 112 + ] + } + ], + "hashtags": [ + { + "indices": [ + 11, + 19 + ], + "text": "CES2016" + } + ], + "user_mentions": [ + { + "screen_name": "vinli", + "id_str": "2409518833", + "id": 2409518833, + "indices": [ + 3, + 9 + ], + "name": "Vinli" + }, + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 69, + 74 + ], + "name": "Uber" + }, + { + "screen_name": "reviewjournal", + "id_str": "15358759", + "id": 15358759, + "indices": [ + 113, + 127 + ], + "name": "Las Vegas RJ" + } + ] + }, + "created_at": "Wed Jan 06 21:39:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684851893558841344, + "text": "RT @vinli: #CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.c\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 15085681, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 76, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15085681/1409019019", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "220165520", + "following": false, + "friends_count": 1839, + "entities": { + "description": { + "urls": [ + { + "display_url": "blog.codeship.com", + "url": "http://t.co/egYbB2cZXI", + "expanded_url": "http://blog.codeship.com", + "indices": [ + 78, + 100 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "codeship.com", + "url": "https://t.co/1m0F4Hu8KN", + "expanded_url": "https://codeship.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "0044CC", + "geo_enabled": true, + "followers_count": 8668, + "location": "Boston, MA", + "screen_name": "codeship", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 457, + "name": "Codeship", + "profile_use_background_image": false, + "description": "We are the fastest hosted Continuous Delivery Platform. Check out our blog at http://t.co/egYbB2cZXI \u2013 Need help? Ask @CodeshipSupport", + "url": "https://t.co/1m0F4Hu8KN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Fri Nov 26 23:51:57 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", + "favourites_count": 1056, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612838136770561", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1LZxOpT", + "url": "https://t.co/lHbWAw8Trn", + "expanded_url": "http://bit.ly/1LZxOpT", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [ + { + "indices": [ + 21, + 30 + ], + "text": "Postgres" + } + ], + "user_mentions": [ + { + "screen_name": "leighchalliday", + "id_str": "119841821", + "id": 119841821, + "indices": [ + 39, + 54 + ], + "name": "Leigh Halliday" + } + ] + }, + "created_at": "Sat Jan 09 00:03:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612838136770561, + "text": "\"How to use JSONB in #Postgres.\" \u2013 via @leighchalliday\n\nhttps://t.co/lHbWAw8Trn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Meet Edgar" + }, + "default_profile_image": false, + "id": 220165520, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", + "statuses_count": 14740, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/220165520/1418855084", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2705064962", + "following": false, + "friends_count": 4102, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "codecov.io", + "url": "https://t.co/rCxo4WMDnw", + "expanded_url": "https://codecov.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FC2B6A", + "geo_enabled": true, + "followers_count": 1745, + "location": "", + "screen_name": "codecov", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "Codecov", + "profile_use_background_image": false, + "description": "Continuous code coverage. Featuring browser extensions, branch coverage and coverage diffs for GitHub, Bitbucket and GitLab", + "url": "https://t.co/rCxo4WMDnw", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", + "profile_background_color": "06142B", + "created_at": "Sun Aug 03 22:36:47 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", + "favourites_count": 910, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "keimlink", + "in_reply_to_user_id": 44300359, + "in_reply_to_status_id_str": "684763065506738176", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684981810984423424", + "id": 684981810984423424, + "text": "@keimlink during some testing we found the package was having issues installing on some CI providers. I'll email you w/ more details.", + "in_reply_to_user_id_str": "44300359", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "keimlink", + "id_str": "44300359", + "id": 44300359, + "indices": [ + 0, + 9 + ], + "name": "Markus Zapke" + } + ] + }, + "created_at": "Thu Jan 07 06:16:04 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684763065506738176, + "lang": "en" + }, + "default_profile_image": false, + "id": 2705064962, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 947, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705064962/1440537606", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15534471", + "following": false, + "friends_count": 314, + "entities": { + "description": { + "urls": [ + { + "display_url": "ampproject.org/how-it-works/", + "url": "https://t.co/Wfq8ij4B8D", + "expanded_url": "https://www.ampproject.org/how-it-works/", + "indices": [ + 30, + 53 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "google.com/+MalteUbl", + "url": "https://t.co/297YfYX56s", + "expanded_url": "https://google.com/+MalteUbl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", + "notifications": false, + "profile_sidebar_fill_color": "FFFD91", + "profile_link_color": "FF0043", + "geo_enabled": true, + "followers_count": 5455, + "location": "San Francisco", + "screen_name": "cramforce", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 434, + "name": "Malte Ubl", + "profile_use_background_image": true, + "description": "Tech lead of the AMP Project. https://t.co/Wfq8ij4B8D \n\nI make www internet web pages for Google. Curator of @JSConfEU", + "url": "https://t.co/297YfYX56s", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jul 22 18:04:13 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FDE700", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", + "favourites_count": 2019, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 15534471, + "possibly_sensitive": false, + "id_str": "685531194465779712", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/cramforce/stat\u2026", + "url": "https://t.co/sPWPdVTY37", + "expanded_url": "https://twitter.com/cramforce/status/677892136809857024", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thealphanerd", + "id_str": "150664007", + "id": 150664007, + "indices": [ + 0, + 13 + ], + "name": "Make Fyles" + }, + { + "screen_name": "kosamari", + "id_str": "8470842", + "id": 8470842, + "indices": [ + 14, + 23 + ], + "name": "Mariko Kosaka" + } + ] + }, + "created_at": "Fri Jan 08 18:39:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "15534471", + "place": null, + "in_reply_to_screen_name": "cramforce", + "in_reply_to_status_id_str": "685530600741056513", + "truncated": false, + "id": 685531194465779712, + "text": "@thealphanerd @kosamari also https://t.co/sPWPdVTY37", + "coordinates": null, + "in_reply_to_status_id": 685530600741056513, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 15534471, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", + "statuses_count": 18017, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15534471/1398619165", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "771681", + "following": false, + "friends_count": 2112, + "entities": { + "description": { + "urls": [ + { + "display_url": "pronoun.is/he", + "url": "https://t.co/h4IxIYLYdk", + "expanded_url": "http://pronoun.is/he", + "indices": [ + 129, + 152 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/glowcoil/statu\u2026", + "url": "https://t.co/7vUIPFlyCV", + "expanded_url": "https://twitter.com/glowcoil/status/660314122010034176", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "BBBBBB", + "geo_enabled": true, + "followers_count": 6803, + "location": "Chicago, IL /via Alaska", + "screen_name": "ELLIOTTCABLE", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 156, + "name": "~", + "profile_use_background_image": false, + "description": "Topical muggle. {PL,Q}T. I invented Ruby, Node.js, and all of the LISPs. Now I'm inventing Paws.\n\n[warning: contains bitterant.] https://t.co/h4IxIYLYdk", + "url": "https://t.co/7vUIPFlyCV", + "profile_text_color": "AAAAAA", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Feb 14 06:37:31 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", + "favourites_count": 14574, + "status": { + "geo": { + "coordinates": [ + 41.86747694, + -87.63303779 + ], + "type": "Point" + }, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -87.940033, + 41.644102 + ], + [ + -87.523993, + 41.644102 + ], + [ + -87.523993, + 42.0230669 + ], + [ + -87.940033, + 42.0230669 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Chicago, IL", + "id": "1d9a5370a355ab0c", + "name": "Chicago" + }, + "in_reply_to_screen_name": "ProductHunt", + "in_reply_to_user_id": 2208027565, + "in_reply_to_status_id_str": "685091084314263552", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685232357117440000", + "id": 685232357117440000, + "text": "@ProductHunt @netflix @TheCruziest Sense 7? Is that different from Sense 8?", + "in_reply_to_user_id_str": "2208027565", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ProductHunt", + "id_str": "2208027565", + "id": 2208027565, + "indices": [ + 0, + 12 + ], + "name": "Product Hunt" + }, + { + "screen_name": "netflix", + "id_str": "16573941", + "id": 16573941, + "indices": [ + 13, + 21 + ], + "name": "Netflix US" + }, + { + "screen_name": "TheCruziest", + "id_str": "303796625", + "id": 303796625, + "indices": [ + 22, + 34 + ], + "name": "Steven Cruz" + } + ] + }, + "created_at": "Thu Jan 07 22:51:39 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": { + "coordinates": [ + -87.63303779, + 41.86747694 + ], + "type": "Point" + }, + "contributors": null, + "in_reply_to_status_id": 685091084314263552, + "lang": "en" + }, + "default_profile_image": false, + "id": 771681, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 94590, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/771681/1414127033", + "is_translator": false + }, + { + "time_zone": "Brussels", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "87257431", + "following": false, + "friends_count": 998, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "il.ly", + "url": "http://t.co/welccj0beF", + "expanded_url": "http://il.ly/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", + "notifications": false, + "profile_sidebar_fill_color": "171717", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1555, + "location": "Kortrijk, Belgium", + "screen_name": "illyism", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 70, + "name": "Ilias Ismanalijev", + "profile_use_background_image": true, + "description": "Technology \u2022 Designer \u2022 Developer \u2022 Student #NMCT", + "url": "http://t.co/welccj0beF", + "profile_text_color": "F2F2F2", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", + "profile_background_color": "242424", + "created_at": "Tue Nov 03 19:01:00 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", + "favourites_count": 10505, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "JoshDComp", + "in_reply_to_user_id": 28402389, + "in_reply_to_status_id_str": "683864186821152768", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684060669654745088", + "id": 684060669654745088, + "text": "@JoshDComp Sure is, I like the realistic politics of it all and the well crafted VFX. It sucked me right into its world.", + "in_reply_to_user_id_str": "28402389", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JoshDComp", + "id_str": "28402389", + "id": 28402389, + "indices": [ + 0, + 10 + ], + "name": "Josh Compton" + } + ] + }, + "created_at": "Mon Jan 04 17:15:47 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683864186821152768, + "lang": "en" + }, + "default_profile_image": false, + "id": 87257431, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", + "statuses_count": 244, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87257431/1410266462", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "236341530", + "following": false, + "friends_count": 235, + "entities": { + "description": { + "urls": [ + { + "display_url": "mkeas.org", + "url": "https://t.co/bfRlctkCoN", + "expanded_url": "http://mkeas.org", + "indices": [ + 126, + 149 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mkeas.org", + "url": "https://t.co/bfRlctkCoN", + "expanded_url": "http://mkeas.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": false, + "followers_count": 1320, + "location": "Houston, TX", + "screen_name": "matthiasak", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 72, + "name": "Mountain Matt", + "profile_use_background_image": true, + "description": "@TheIronYard, @DestinationCode, @SpaceCityConfs, INFOSEC crypto'r, powderhound, Lisper + \u03bb, @CapitalFactory alum, @HoustonJS, https://t.co/bfRlctkCoN.", + "url": "https://t.co/bfRlctkCoN", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Mon Jan 10 10:58:39 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", + "favourites_count": 1199, + "status": { + "retweet_count": 302, + "retweeted_status": { + "retweet_count": 302, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685523354514661376", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", + "type": "photo", + "indices": [ + 38, + 61 + ], + "media_url": "http://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", + "display_url": "pic.twitter.com/mIeZrUDrga", + "id_str": "685521688662904832", + "expanded_url": "http://twitter.com/tcburning/status/685523354514661376/photo/1", + "id": 685521688662904832, + "url": "https://t.co/mIeZrUDrga" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:07:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685523354514661376, + "text": "When the code compiles with no errors https://t.co/mIeZrUDrga", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 620, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612131580968962", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "685523354514661376", + "url": "https://t.co/mIeZrUDrga", + "media_url": "http://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", + "source_user_id_str": "399742659", + "id_str": "685521688662904832", + "id": 685521688662904832, + "media_url_https": "https://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", + "type": "photo", + "indices": [ + 53, + 76 + ], + "source_status_id": 685523354514661376, + "source_user_id": 399742659, + "display_url": "pic.twitter.com/mIeZrUDrga", + "expanded_url": "http://twitter.com/tcburning/status/685523354514661376/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tcburning", + "id_str": "399742659", + "id": 399742659, + "indices": [ + 3, + 13 + ], + "name": "Terri" + } + ] + }, + "created_at": "Sat Jan 09 00:00:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612131580968962, + "text": "RT @tcburning: When the code compiles with no errors https://t.co/mIeZrUDrga", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 236341530, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", + "statuses_count": 4932, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/236341530/1449188760", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "252481460", + "following": false, + "friends_count": 24, + "entities": { + "description": { + "urls": [ + { + "display_url": "travis-ci.com", + "url": "http://t.co/0HN89Zqxlk", + "expanded_url": "http://travis-ci.com", + "indices": [ + 96, + 118 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "travis-ci.org", + "url": "http://t.co/3Tz19DXfYa", + "expanded_url": "http://travis-ci.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 14345, + "location": "Berlin, Germany", + "screen_name": "travisci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 527, + "name": "Travis CI", + "profile_use_background_image": true, + "description": "Hi I\u2019m Travis CI, a hosted continuous integration service for open source and private projects: http://t.co/0HN89Zqxlk System status updates: @traviscistatus", + "url": "http://t.co/3Tz19DXfYa", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 15 08:34:44 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", + "favourites_count": 1506, + "status": { + "retweet_count": 26, + "retweeted_status": { + "retweet_count": 26, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684128421845270530", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 271, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 453, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 453, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "type": "photo", + "indices": [ + 109, + 132 + ], + "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "display_url": "pic.twitter.com/fdIihYvkFb", + "id_str": "684128421732036608", + "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", + "id": 684128421732036608, + "url": "https://t.co/fdIihYvkFb" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "spr.ly/6018BnRke", + "url": "https://t.co/TkOgMSX4VM", + "expanded_url": "http://spr.ly/6018BnRke", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "github", + "id_str": "13334762", + "id": 13334762, + "indices": [ + 62, + 69 + ], + "name": "GitHub" + }, + { + "screen_name": "travisci", + "id_str": "252481460", + "id": 252481460, + "indices": [ + 74, + 83 + ], + "name": "Travis CI" + } + ] + }, + "created_at": "Mon Jan 04 21:45:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684128421845270530, + "text": "How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/fdIihYvkFb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 23, + "contributors": null, + "source": " SAP" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685085167086612481", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 271, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 453, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 453, + "resize": "fit" + } + }, + "source_status_id_str": "684128421845270530", + "url": "https://t.co/fdIihYvkFb", + "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "source_user_id_str": "100292002", + "id_str": "684128421732036608", + "id": 684128421732036608, + "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "type": "photo", + "indices": [ + 125, + 140 + ], + "source_status_id": 684128421845270530, + "source_user_id": 100292002, + "display_url": "pic.twitter.com/fdIihYvkFb", + "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "spr.ly/6018BnRke", + "url": "https://t.co/TkOgMSX4VM", + "expanded_url": "http://spr.ly/6018BnRke", + "indices": [ + 101, + 124 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SAPCommNet", + "id_str": "100292002", + "id": 100292002, + "indices": [ + 3, + 14 + ], + "name": "SAP CommunityNetwork" + }, + { + "screen_name": "github", + "id_str": "13334762", + "id": 13334762, + "indices": [ + 78, + 85 + ], + "name": "GitHub" + }, + { + "screen_name": "travisci", + "id_str": "252481460", + "id": 252481460, + "indices": [ + 90, + 99 + ], + "name": "Travis CI" + } + ] + }, + "created_at": "Thu Jan 07 13:06:46 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685085167086612481, + "text": "RT @SAPCommNet: How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/f\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 252481460, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10343, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/252481460/1383837670", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "86938585", + "following": false, + "friends_count": 134, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "circleci.com", + "url": "https://t.co/UfEqN58rWH", + "expanded_url": "https://circleci.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1584, + "location": "San Francisco", + "screen_name": "paulbiggar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 99, + "name": "Paul Biggar", + "profile_use_background_image": true, + "description": "Likes developers, chocolate, startups, history and pastries. Founder of CircleCI.", + "url": "https://t.co/UfEqN58rWH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 02 13:08:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", + "favourites_count": 286, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685370475611078657", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "newyorker.com/magazine/2016/\u2026", + "url": "https://t.co/vbDkTva03y", + "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", + "indices": [ + 38, + 61 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "NewYorker", + "id_str": "14677919", + "id": 14677919, + "indices": [ + 66, + 76 + ], + "name": "The New Yorker" + } + ] + }, + "created_at": "Fri Jan 08 08:00:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685370475611078657, + "text": "Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685496070474973185", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "newyorker.com/magazine/2016/\u2026", + "url": "https://t.co/vbDkTva03y", + "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", + "indices": [ + 55, + 78 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sarahgbooks", + "id_str": "111095563", + "id": 111095563, + "indices": [ + 3, + 15 + ], + "name": "Sarah Gilmartin" + }, + { + "screen_name": "NewYorker", + "id_str": "14677919", + "id": 14677919, + "indices": [ + 83, + 93 + ], + "name": "The New Yorker" + } + ] + }, + "created_at": "Fri Jan 08 16:19:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685496070474973185, + "text": "RT @sarahgbooks: Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 86938585, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1368, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "381223731", + "following": false, + "friends_count": 4793, + "entities": { + "description": { + "urls": [ + { + "display_url": "discuss.circleci.com", + "url": "https://t.co/g79TaPamp5", + "expanded_url": "https://discuss.circleci.com/", + "indices": [ + 91, + 114 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "circleci.com", + "url": "https://t.co/Ls6HRLMgUX", + "expanded_url": "https://circleci.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "343434", + "geo_enabled": true, + "followers_count": 6832, + "location": "San Francisco", + "screen_name": "circleci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 170, + "name": "CircleCI", + "profile_use_background_image": false, + "description": "Easy, fast, continuous integration and deployment for web apps and iOS. For support, visit https://t.co/g79TaPamp5 or email sayhi@circleci.com.", + "url": "https://t.co/Ls6HRLMgUX", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", + "profile_background_color": "FBFBFB", + "created_at": "Tue Sep 27 23:33:23 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", + "favourites_count": 3138, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613493333135360", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "circle.ci/1VRcA07", + "url": "https://t.co/qbnualOiX6", + "expanded_url": "http://circle.ci/1VRcA07", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "iamkevinbell", + "id_str": "635809882", + "id": 635809882, + "indices": [ + 18, + 31 + ], + "name": "Kevin Bell" + }, + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 35, + 44 + ], + "name": "CircleCI" + }, + { + "screen_name": "fredsters_s", + "id_str": "14868289", + "id": 14868289, + "indices": [ + 51, + 63 + ], + "name": "Fred Stevens-Smith" + }, + { + "screen_name": "rainforestqa", + "id_str": "1012066448", + "id": 1012066448, + "indices": [ + 67, + 80 + ], + "name": "Rainforest QA" + } + ] + }, + "created_at": "Sat Jan 09 00:06:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613493333135360, + "text": "UPCOMING WEBINAR: @iamkevinbell of @circleci & @fredsters_s of @rainforestqa are talking Continuous Deployment: https://t.co/qbnualOiX6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 381223731, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2396, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7900402", + "following": false, + "friends_count": 392, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "280096", + "geo_enabled": true, + "followers_count": 342, + "location": "San Francisco, CA", + "screen_name": "tvachon", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "pizza: the gathering", + "profile_use_background_image": true, + "description": "putting the travis in circleci since 2014", + "url": null, + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Aug 02 05:37:07 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", + "favourites_count": 605, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685271730709860352", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/claire_mcnear/\u2026", + "url": "https://t.co/FTDSIfvCan", + "expanded_url": "https://twitter.com/claire_mcnear/status/685250840723091456", + "indices": [ + 47, + 70 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 01:28:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685271730709860352, + "text": "dying\ni am ded\npls feed my dog while i am gone https://t.co/FTDSIfvCan", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 16, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685273249534459904", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/claire_mcnear/\u2026", + "url": "https://t.co/FTDSIfvCan", + "expanded_url": "https://twitter.com/claire_mcnear/status/685250840723091456", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "coda", + "id_str": "637533", + "id": 637533, + "indices": [ + 3, + 8 + ], + "name": "Springtime for Coda" + } + ] + }, + "created_at": "Fri Jan 08 01:34:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685273249534459904, + "text": "RT @coda: dying\ni am ded\npls feed my dog while i am gone https://t.co/FTDSIfvCan", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 7900402, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", + "statuses_count": 5614, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "10399172", + "following": false, + "friends_count": 1295, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chmod777self.com", + "url": "http://t.co/6w6v8SGBti", + "expanded_url": "http://www.chmod777self.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "0A1EA3", + "geo_enabled": true, + "followers_count": 1147, + "location": "Fresno, CA", + "screen_name": "jasnell", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 87, + "name": "James M Snell", + "profile_use_background_image": true, + "description": "IBM Technical Lead for Node.js;\nNode.js TSC Member;\nAll around nice guy.", + "url": "http://t.co/6w6v8SGBti", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Nov 20 01:19:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", + "favourites_count": 2143, + "status": { + "retweet_count": 12, + "retweeted_status": { + "retweet_count": 12, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685242905007529984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/members\u2026", + "url": "https://t.co/jGV36DgAJg", + "expanded_url": "https://github.com/nodejs/membership/issues/12", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 23:33:34 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685242905007529984, + "text": "Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/jGV36DgAJg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 24, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685268279959539712", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/members\u2026", + "url": "https://t.co/jGV36DgAJg", + "expanded_url": "https://github.com/nodejs/membership/issues/12", + "indices": [ + 126, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dshaw", + "id_str": "806757", + "id": 806757, + "indices": [ + 3, + 9 + ], + "name": "Dan Shaw" + } + ] + }, + "created_at": "Fri Jan 08 01:14:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685268279959539712, + "text": "RT @dshaw: Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 10399172, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 3178, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10399172/1447689090", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3278631516", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "planet.com", + "url": "http://t.co/v3JIlJoOTW", + "expanded_url": "http://planet.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 294, + "location": "Space", + "screen_name": "dovesinspace", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Doves in space", + "profile_use_background_image": true, + "description": "We are in space.", + "url": "http://t.co/v3JIlJoOTW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 13 15:59:42 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", + "favourites_count": 0, + "status": { + "geo": { + "coordinates": [ + 29.91434343, + -83.47056022 + ], + "type": "Point" + }, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/4ec01c9dbc693497.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -87.634643, + 24.396308 + ], + [ + -79.974307, + 24.396308 + ], + [ + -79.974307, + 31.001056 + ], + [ + -87.634643, + 31.001056 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Florida, USA", + "id": "4ec01c9dbc693497", + "name": "Florida" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 4, + "truncated": false, + "retweeted": false, + "id_str": "651885332665909248", + "id": 651885332665909248, + "text": "I'm in space now! Satellite Flock 2b Satellite 14 reporting for duty.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Oct 07 22:22:29 +0000 2015", + "source": "Deployment tweets", + "favorite_count": 5, + "favorited": false, + "coordinates": { + "coordinates": [ + -83.47056022, + 29.91434343 + ], + "type": "Point" + }, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 3278631516, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 21, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3278631516/1436803648", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "13567", + "following": false, + "friends_count": 1520, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "christianheilmann.com/2013/02/11/hel\u2026", + "url": "http://t.co/fQKlvTCkqN", + "expanded_url": "http://christianheilmann.com/2013/02/11/hello-it-is-me-on-twitter/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", + "notifications": false, + "profile_sidebar_fill_color": "B7CCBB", + "profile_link_color": "13456B", + "geo_enabled": true, + "followers_count": 52181, + "location": "London, UK", + "screen_name": "codepo8", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3779, + "name": "Christian Heilmann", + "profile_use_background_image": true, + "description": "Developer Evangelist - all things open web, HTML5, writing and working together. Works at Microsoft on Edge, opinions totally my own. #nofilter", + "url": "http://t.co/fQKlvTCkqN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", + "profile_background_color": "336699", + "created_at": "Tue Nov 21 17:20:09 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", + "favourites_count": 386, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/3eb2c704fe8a50cb.json", + "country": "United Kingdom", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -0.112442, + 51.5068 + ], + [ + -0.0733794, + 51.5068 + ], + [ + -0.0733794, + 51.522161 + ], + [ + -0.112442, + 51.522161 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "GB", + "contained_within": [], + "full_name": "City of London, London", + "id": "3eb2c704fe8a50cb", + "name": "City of London" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 6, + "truncated": false, + "retweeted": false, + "id_str": "685605010403667968", + "id": 685605010403667968, + "text": "MDN Demo studio is shutting down. Download your demos for safekeeping.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:32:27 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 13567, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", + "statuses_count": 107974, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13567/1409269429", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2202531", + "following": false, + "friends_count": 211, + "entities": { + "description": { + "urls": [ + { + "display_url": "amazon.com/gp/product/B01\u2026", + "url": "https://t.co/C1nuRVMz0N", + "expanded_url": "http://www.amazon.com/gp/product/B018R7TV5W/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B018R7TV5W&linkCode=as2&tag=robceenet-20&linkId=377XBIIH55EWYAIK", + "indices": [ + 11, + 34 + ] + }, + { + "display_url": "flickr.com/photos/robceem\u2026", + "url": "https://t.co/7dMPlQvYLO", + "expanded_url": "https://www.flickr.com/photos/robceemoz/", + "indices": [ + 88, + 111 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "robcee.net", + "url": "http://t.co/R8fIMaSLvf", + "expanded_url": "http://robcee.net/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 1216, + "location": "Toronto, Canada", + "screen_name": "robcee", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 107, + "name": "robcee", + "profile_use_background_image": false, + "description": "#author of https://t.co/C1nuRVMz0N\n\n#drones #media #coffee #software #tech #photography https://t.co/7dMPlQvYLO", + "url": "http://t.co/R8fIMaSLvf", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Mar 25 19:52:34 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", + "favourites_count": 4161, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "matejnovak", + "in_reply_to_user_id": 15459306, + "in_reply_to_status_id_str": "685563535359868928", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685563745901350912", + "id": 685563745901350912, + "text": "@matejnovak Niagara Kale Brandy has a nasty vibe to it. But OK!", + "in_reply_to_user_id_str": "15459306", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "matejnovak", + "id_str": "15459306", + "id": 15459306, + "indices": [ + 0, + 11 + ], + "name": "Matej Novak \u23ce" + } + ] + }, + "created_at": "Fri Jan 08 20:48:28 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685563535359868928, + "lang": "en" + }, + "default_profile_image": false, + "id": 2202531, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 19075, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2202531/1420472405", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17663776", + "following": false, + "friends_count": 1126, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "planet.com", + "url": "http://t.co/AwAXMrXqVJ", + "expanded_url": "http://planet.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 12386, + "location": "San Francisco, CA, Earth", + "screen_name": "planetlabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 488, + "name": "Planet Labs", + "profile_use_background_image": false, + "description": "Delivering the most current images of our entire Earth.", + "url": "http://t.co/AwAXMrXqVJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Nov 27 00:10:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", + "favourites_count": 2014, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613487188398081", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", + "type": "photo", + "indices": [ + 97, + 120 + ], + "media_url": "http://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", + "display_url": "pic.twitter.com/01wqlNRcRx", + "id_str": "685613486617935872", + "expanded_url": "http://twitter.com/planetlabs/status/685613487188398081/photo/1", + "id": 685613486617935872, + "url": "https://t.co/01wqlNRcRx" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "planet.com/gallery/uganda\u2026", + "url": "https://t.co/QqEWAf2iM1", + "expanded_url": "https://www.planet.com/gallery/uganda-smallholders/", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [ + { + "indices": [ + 64, + 71 + ], + "text": "Uganda" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:06:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613487188398081, + "text": "Small holder and subsistence farms on a sunny day in Namutumba, #Uganda https://t.co/QqEWAf2iM1 https://t.co/01wqlNRcRx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 17663776, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", + "statuses_count": 1658, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17663776/1439957443", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "41693", + "following": false, + "friends_count": 415, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blankbaby.com", + "url": "http://t.co/bOEDVPeU3G", + "expanded_url": "http://www.blankbaby.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18572/newlogotop.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 4310, + "location": "Philadelphia, PA", + "screen_name": "blankbaby", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 279, + "name": "Scott McNulty", + "profile_use_background_image": true, + "description": "I am almost Internet famous. Host of @Random_Trek.", + "url": "http://t.co/bOEDVPeU3G", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Dec 05 00:57:26 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", + "favourites_count": 48, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "dsilverman", + "in_reply_to_user_id": 1010181, + "in_reply_to_status_id_str": "685602406990622720", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685602609508519940", + "id": 685602609508519940, + "text": "@dsilverman @GlennF ;) Alexa isn\u2019t super smart but very useful for my needs!", + "in_reply_to_user_id_str": "1010181", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dsilverman", + "id_str": "1010181", + "id": 1010181, + "indices": [ + 0, + 11 + ], + "name": "dwight silverman" + }, + { + "screen_name": "GlennF", + "id_str": "8315692", + "id": 8315692, + "indices": [ + 12, + 19 + ], + "name": "Glenn Fleishman" + } + ] + }, + "created_at": "Fri Jan 08 23:22:54 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685602406990622720, + "lang": "en" + }, + "default_profile_image": false, + "id": 41693, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18572/newlogotop.png", + "statuses_count": 25874, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41693/1362153090", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3171325140", + "following": false, + "friends_count": 18, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sideway.com", + "url": "http://t.co/pwaxdZGj2W", + "expanded_url": "http://sideway.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "04AA04", + "geo_enabled": false, + "followers_count": 244, + "location": "", + "screen_name": "sideway", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Sideway", + "profile_use_background_image": false, + "description": "Share a conversation.", + "url": "http://t.co/pwaxdZGj2W", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", + "profile_background_color": "000000", + "created_at": "Fri Apr 24 22:41:17 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "663825999717466112", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "type": "photo", + "indices": [ + 12, + 35 + ], + "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "display_url": "pic.twitter.com/Ng3S2UnWDz", + "id_str": "663825968667037697", + "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", + "id": 663825968667037697, + "url": "https://t.co/Ng3S2UnWDz" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Nov 09 21:10:26 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 663825999717466112, + "text": "New plates! https://t.co/Ng3S2UnWDz", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 12, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "663826029887270912", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "663825999717466112", + "url": "https://t.co/Ng3S2UnWDz", + "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "source_user_id_str": "346026614", + "id_str": "663825968667037697", + "id": 663825968667037697, + "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "type": "photo", + "indices": [ + 28, + 51 + ], + "source_status_id": 663825999717466112, + "source_user_id": 346026614, + "display_url": "pic.twitter.com/Ng3S2UnWDz", + "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "eranhammer", + "id_str": "346026614", + "id": 346026614, + "indices": [ + 3, + 14 + ], + "name": "Eran Hammer" + } + ] + }, + "created_at": "Mon Nov 09 21:10:33 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 663826029887270912, + "text": "RT @eranhammer: New plates! https://t.co/Ng3S2UnWDz", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3171325140, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5768872", + "following": false, + "friends_count": 8374, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "garyvaynerchuk.com/agvbook/", + "url": "https://t.co/n1TN3hgA84", + "expanded_url": "http://www.garyvaynerchuk.com/agvbook/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFE6CE", + "profile_link_color": "268CCD", + "geo_enabled": true, + "followers_count": 1202100, + "location": "NYC", + "screen_name": "garyvee", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 24979, + "name": "Gary Vaynerchuk", + "profile_use_background_image": true, + "description": "Family 1st! but after that, Businessman. CEO of @vaynermedia. Host of #AskGaryVee show and a dude who Loves the Hustle, the @NYJets .. snapchat - garyvee", + "url": "https://t.co/n1TN3hgA84", + "profile_text_color": "996633", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", + "profile_background_color": "152932", + "created_at": "Fri May 04 15:32:48 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", + "favourites_count": 2449, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "thebluestripe", + "in_reply_to_user_id": 168651555, + "in_reply_to_status_id_str": "685579166855630849", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685579435031019520", + "id": 685579435031019520, + "text": "@thebluestripe @djkhaled hahaha", + "in_reply_to_user_id_str": "168651555", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thebluestripe", + "id_str": "168651555", + "id": 168651555, + "indices": [ + 0, + 14 + ], + "name": "Rich Seidel" + }, + { + "screen_name": "djkhaled", + "id_str": "27673684", + "id": 27673684, + "indices": [ + 15, + 24 + ], + "name": "DJ KHALED" + } + ] + }, + "created_at": "Fri Jan 08 21:50:49 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685579166855630849, + "lang": "tl" + }, + "default_profile_image": false, + "id": 5768872, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", + "statuses_count": 135759, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5768872/1423844975", + "is_translator": false + }, + { + "time_zone": "Casablanca", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "270431388", + "following": false, + "friends_count": 795, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "MarquisdeGeek.com", + "url": "https://t.co/rAxaxp0oUr", + "expanded_url": "http://www.MarquisdeGeek.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 581, + "location": "aka Steven Goodwin. London", + "screen_name": "MarquisdeGeek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 88, + "name": "Marquis de Geek", + "profile_use_background_image": true, + "description": "Maker, author, developer, educator, IoT dev, magician, musician, computer historian, sommelier, SGX creator, electronics guy, AFOL & geek. Works as edtech CTO", + "url": "https://t.co/rAxaxp0oUr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Tue Mar 22 16:17:37 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", + "favourites_count": 400, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685486479271919616", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 460, + "h": 960, + "resize": "fit" + }, + "medium": { + "w": 460, + "h": 960, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 325, + "h": 680, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", + "type": "photo", + "indices": [ + 24, + 47 + ], + "media_url": "http://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", + "display_url": "pic.twitter.com/Mo9VcBHIwC", + "id_str": "685485412517830656", + "expanded_url": "http://twitter.com/MarquisdeGeek/status/685486479271919616/photo/1", + "id": 685485412517830656, + "url": "https://t.co/Mo9VcBHIwC" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:41:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685486479271919616, + "text": "Crossing the streams... https://t.co/Mo9VcBHIwC", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 270431388, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3959, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/270431388/1406890949", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "148221086", + "following": false, + "friends_count": 617, + "entities": { + "description": { + "urls": [ + { + "display_url": "shop.oreilly.com/product/063692\u2026", + "url": "https://t.co/Zk7ejlHptN", + "expanded_url": "http://shop.oreilly.com/product/0636920042686.do", + "indices": [ + 135, + 158 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "GetYodlr.com", + "url": "https://t.co/hKMaAlWDdW", + "expanded_url": "https://GetYodlr.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 730, + "location": "SF Bay Area", + "screen_name": "rosskukulinski", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 128, + "name": "Ross Kukulinski", + "profile_use_background_image": true, + "description": "Founder @getyodlr. Entrepreneur & advisor. Work with #nodejs, #webrtc, #docker, #kubernetes, #coreos. Watch my Intro to CoreOS Course: https://t.co/Zk7ejlHptN", + "url": "https://t.co/hKMaAlWDdW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed May 26 04:22:53 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", + "favourites_count": 4397, + "status": { + "retweet_count": 17, + "retweeted_status": { + "retweet_count": 17, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685464980976566272", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nodejs.org/en/blog/commun\u2026", + "url": "https://t.co/oHkMziRUpk", + "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:16:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685464980976566272, + "text": "Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Sprout Social" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685466291180859392", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nodejs.org/en/blog/commun\u2026", + "url": "https://t.co/oHkMziRUpk", + "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nodejs", + "id_str": "91985735", + "id": 91985735, + "indices": [ + 3, + 10 + ], + "name": "Node.js" + } + ] + }, + "created_at": "Fri Jan 08 14:21:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685466291180859392, + "text": "RT @nodejs: Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 148221086, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8070, + "is_translator": false + }, + { + "time_zone": "Budapest", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "98630536", + "following": false, + "friends_count": 296, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eduardmoldovan.com", + "url": "http://t.co/4zJV0jnlaJ", + "expanded_url": "http://eduardmoldovan.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "0E0D02", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 336, + "location": "Budapest", + "screen_name": "edimoldovan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "Edu\u00e1rd", + "profile_use_background_image": true, + "description": "Views are my own", + "url": "http://t.co/4zJV0jnlaJ", + "profile_text_color": "39BD91", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Dec 22 13:09:46 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", + "favourites_count": 234, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685508856013795330", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wareable.com/fitness-tracke\u2026", + "url": "https://t.co/HDOdrQpuJU", + "expanded_url": "http://www.wareable.com/fitness-trackers/mastercard-and-coin-bringing-wearable-payments-to-fitness-trackers-including-moov-2147", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:10:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685508856013795330, + "text": "MasterCard bringing wearable payments to fitness trackers including Moov https://t.co/HDOdrQpuJU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "OS X" + }, + "default_profile_image": false, + "id": 98630536, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", + "statuses_count": 12782, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/98630536/1392472068", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14164724", + "following": false, + "friends_count": 1639, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sarahmei.com", + "url": "https://t.co/3q8gb3xaz4", + "expanded_url": "http://sarahmei.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 11825, + "location": "San Francisco, CA", + "screen_name": "sarahmei", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 761, + "name": "Sarah Mei", + "profile_use_background_image": true, + "description": "Software developer. Founder of @railsbridge. Director of Ruby Central. Chief Consultant of @devmyndsoftware. IM IN UR BASE TEACHIN U HOW TO REFACTOR UR CODE", + "url": "https://t.co/3q8gb3xaz4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Mon Mar 17 18:05:43 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", + "favourites_count": 1453, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685599933215424513", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/anildash/statu\u2026", + "url": "https://t.co/436K3Lfx5F", + "expanded_url": "https://twitter.com/anildash/status/685496167464042496", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:12:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -87.940033, + 41.644102 + ], + [ + -87.523993, + 41.644102 + ], + [ + -87.523993, + 42.0230669 + ], + [ + -87.940033, + 42.0230669 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Chicago, IL", + "id": "1d9a5370a355ab0c", + "name": "Chicago" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685599933215424513, + "text": "First time I have tapped the moments icon on purpose. https://t.co/436K3Lfx5F", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14164724, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 13073, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14164724/1423457101", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "25183606", + "following": false, + "friends_count": 746, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "charlotteis.co.uk", + "url": "https://t.co/j2AKIKz3ZY", + "expanded_url": "http://charlotteis.co.uk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "44615D", + "geo_enabled": false, + "followers_count": 2004, + "location": "Bletchley, UK.", + "screen_name": "Charlotteis", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 116, + "name": "console.warn()", + "profile_use_background_image": false, + "description": "they/them. human ghost emoji writing code with @mandsdigital. open sourcer with @hoodiehq and creator of @yourfirstpr.", + "url": "https://t.co/j2AKIKz3ZY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 18 23:28:54 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", + "favourites_count": 8750, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685612995809021952", + "id": 685612995809021952, + "text": "caligula \ud83d\ude0f", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:04:10 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "es" + }, + "default_profile_image": false, + "id": 25183606, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", + "statuses_count": 49653, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/25183606/1420483218", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "253464752", + "following": false, + "friends_count": 492, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jessicard.com", + "url": "https://t.co/DwRzTkmHMB", + "expanded_url": "http://jessicard.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542881894/twitter.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "00B9E1", + "geo_enabled": true, + "followers_count": 5249, + "location": "than franthithco", + "screen_name": "jessicard", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 241, + "name": "jessicard", + "profile_use_background_image": false, + "description": "The jessicard physically strong, moves rapidly, momentum is powerful, is one of the most has the courage and strength of the software engineer in the world.", + "url": "https://t.co/DwRzTkmHMB", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", + "profile_background_color": "F6F6F6", + "created_at": "Thu Feb 17 09:04:56 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", + "favourites_count": 28149, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613922137849856", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPKOL5WcAUzoB8.jpg", + "type": "photo", + "indices": [ + 88, + 111 + ], + "media_url": "http://pbs.twimg.com/media/CYPKOL5WcAUzoB8.jpg", + "display_url": "pic.twitter.com/SVH70Fy4JQ", + "id_str": "685613913350762501", + "expanded_url": "http://twitter.com/jessicard/status/685613922137849856/photo/1", + "id": 685613913350762501, + "url": "https://t.co/SVH70Fy4JQ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:07:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613922137849856, + "text": "drew some random (unfinished) ornamentation on my flight to boston with my apple pencil https://t.co/SVH70Fy4JQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 253464752, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542881894/twitter.png", + "statuses_count": 23083, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/253464752/1353017487", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "198661893", + "following": false, + "friends_count": 247, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eliseworthy.com", + "url": "http://t.co/Lfr9fIzPIs", + "expanded_url": "http://eliseworthy.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "41625C", + "geo_enabled": true, + "followers_count": 1862, + "location": "Seattle", + "screen_name": "eliseworthy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 123, + "name": "Elise Worthy", + "profile_use_background_image": false, + "description": "software developer | founder of @brandworthy and @adaacademy", + "url": "http://t.co/Lfr9fIzPIs", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", + "profile_background_color": "946369", + "created_at": "Mon Oct 04 22:38:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", + "favourites_count": 689, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "666384799402098688", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "meetup.com/Seattle-PyLadi\u2026", + "url": "https://t.co/bg7tLVR1Tp", + "expanded_url": "http://www.meetup.com/Seattle-PyLadies/events/225729699/", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PyLadiesSEA", + "id_str": "885603211", + "id": 885603211, + "indices": [ + 38, + 50 + ], + "name": "Seattle PyLadies" + } + ] + }, + "created_at": "Mon Nov 16 22:38:11 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 666384799402098688, + "text": "What's better than a holiday party? A @PyLadiesSEA holiday party! This Wednesday! Go! https://t.co/bg7tLVR1Tp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 198661893, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "statuses_count": 3529, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/198661893/1377996487", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "13368452", + "following": false, + "friends_count": 1123, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ultrasaurus.com", + "url": "http://t.co/VV3FrrBWLv", + "expanded_url": "http://www.ultrasaurus.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 7943, + "location": "San Francisco, CA", + "screen_name": "ultrasaurus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 720, + "name": "Sarah Allen", + "profile_use_background_image": true, + "description": "I write code, connect pixels and speak truth to make change. @bridgefoundry @mightyverse @18F", + "url": "http://t.co/VV3FrrBWLv", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Mon Feb 11 23:40:05 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", + "favourites_count": 1229, + "status": { + "retweet_count": 9418, + "retweeted_status": { + "retweet_count": 9418, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685415626945507328", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 614, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "type": "photo", + "indices": [ + 27, + 50 + ], + "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "display_url": "pic.twitter.com/4ZnTo0GI7T", + "id_str": "685415615138545664", + "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", + "id": 685415615138545664, + "url": "https://t.co/4ZnTo0GI7T" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 10:59:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685415626945507328, + "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1176, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685477649523712000", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 614, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "685415626945507328", + "url": "https://t.co/4ZnTo0GI7T", + "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "source_user_id_str": "2782137901", + "id_str": "685415615138545664", + "id": 685415615138545664, + "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "type": "photo", + "indices": [ + 48, + 71 + ], + "source_status_id": 685415626945507328, + "source_user_id": 2782137901, + "display_url": "pic.twitter.com/4ZnTo0GI7T", + "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "neil_finnweevil", + "id_str": "2782137901", + "id": 2782137901, + "indices": [ + 3, + 19 + ], + "name": "kiki montparnasse" + } + ] + }, + "created_at": "Fri Jan 08 15:06:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685477649523712000, + "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 13368452, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 10335, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13368452/1396530463", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3300795096", + "following": false, + "friends_count": 296, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "current.sh", + "url": "http://t.co/43c4yK78zi", + "expanded_url": "http://current.sh", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "268BD2", + "geo_enabled": false, + "followers_count": 192, + "location": "", + "screen_name": "currentsh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "current.sh", + "profile_use_background_image": false, + "description": "the log management saas you've been looking for. built by @vektrasays.", + "url": "http://t.co/43c4yK78zi", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Jul 29 20:09:17 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", + "favourites_count": 8, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685167345329831936", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "producthunt.com/tech/current-3\u2026", + "url": "https://t.co/ccTe9IhAJB", + "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", + "indices": [ + 89, + 112 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "currentsh", + "id_str": "3300795096", + "id": 3300795096, + "indices": [ + 40, + 50 + ], + "name": "current.sh" + }, + { + "screen_name": "ProductHunt", + "id_str": "2208027565", + "id": 2208027565, + "indices": [ + 54, + 66 + ], + "name": "Product Hunt" + } + ] + }, + "created_at": "Thu Jan 07 18:33:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0775fcd6eb188d7c.json", + "country": "United States", + "attributes": {}, + "place_type": "neighborhood", + "bounding_box": { + "coordinates": [ + [ + [ + -118.3613876, + 34.043829 + ], + [ + -118.309037, + 34.043829 + ], + [ + -118.309037, + 34.083516 + ], + [ + -118.3613876, + 34.083516 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Mid-Wilshire, Los Angeles", + "id": "0775fcd6eb188d7c", + "name": "Mid-Wilshire" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685167345329831936, + "text": "I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685171895952490498", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "producthunt.com/tech/current-3\u2026", + "url": "https://t.co/ccTe9IhAJB", + "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "evanphx", + "id_str": "5444392", + "id": 5444392, + "indices": [ + 3, + 11 + ], + "name": "Evan Phoenix" + }, + { + "screen_name": "currentsh", + "id_str": "3300795096", + "id": 3300795096, + "indices": [ + 53, + 63 + ], + "name": "current.sh" + }, + { + "screen_name": "ProductHunt", + "id_str": "2208027565", + "id": 2208027565, + "indices": [ + 67, + 79 + ], + "name": "Product Hunt" + } + ] + }, + "created_at": "Thu Jan 07 18:51:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685171895952490498, + "text": "RT @evanphx: I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3300795096, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 36, + "is_translator": false + }, + { + "time_zone": "Tijuana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "21170138", + "following": false, + "friends_count": 403, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "current.sh", + "url": "https://t.co/43c4yJPxHK", + "expanded_url": "http://current.sh", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 2049, + "location": "San Francisco, CA", + "screen_name": "jlsuttles", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 106, + "name": "\u2728Jessica Suttles\u2728", + "profile_use_background_image": true, + "description": "Co-Founder & CTO @currentsh", + "url": "https://t.co/43c4yJPxHK", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Feb 18 04:49:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", + "favourites_count": 4794, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": 21170138, + "possibly_sensitive": false, + "id_str": "685602455166402560", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 760, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 445, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 252, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", + "type": "photo", + "indices": [ + 52, + 75 + ], + "media_url": "http://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", + "display_url": "pic.twitter.com/oTGa0hNVPe", + "id_str": "685602441597829122", + "expanded_url": "http://twitter.com/Neurotic/status/685602455166402560/photo/1", + "id": 685602441597829122, + "url": "https://t.co/oTGa0hNVPe" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jlsuttles", + "id_str": "21170138", + "id": 21170138, + "indices": [ + 0, + 10 + ], + "name": "\u2728Jessica Suttles\u2728" + }, + { + "screen_name": "SukieTweets", + "id_str": "479414936", + "id": 479414936, + "indices": [ + 11, + 23 + ], + "name": "Sukie" + } + ] + }, + "created_at": "Fri Jan 08 23:22:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "21170138", + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": "jlsuttles", + "in_reply_to_status_id_str": "685597105696579584", + "truncated": false, + "id": 685602455166402560, + "text": "@jlsuttles @SukieTweets is feeling super cute. See? https://t.co/oTGa0hNVPe", + "coordinates": null, + "in_reply_to_status_id": 685597105696579584, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685607191902957568", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 760, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 445, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 252, + "resize": "fit" + } + }, + "source_status_id_str": "685602455166402560", + "url": "https://t.co/oTGa0hNVPe", + "media_url": "http://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", + "source_user_id_str": "5727802", + "id_str": "685602441597829122", + "id": 685602441597829122, + "media_url_https": "https://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", + "type": "photo", + "indices": [ + 66, + 89 + ], + "source_status_id": 685602455166402560, + "source_user_id": 5727802, + "display_url": "pic.twitter.com/oTGa0hNVPe", + "expanded_url": "http://twitter.com/Neurotic/status/685602455166402560/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Neurotic", + "id_str": "5727802", + "id": 5727802, + "indices": [ + 3, + 12 + ], + "name": "Mark Mandel" + }, + { + "screen_name": "jlsuttles", + "id_str": "21170138", + "id": 21170138, + "indices": [ + 14, + 24 + ], + "name": "\u2728Jessica Suttles\u2728" + }, + { + "screen_name": "SukieTweets", + "id_str": "479414936", + "id": 479414936, + "indices": [ + 25, + 37 + ], + "name": "Sukie" + } + ] + }, + "created_at": "Fri Jan 08 23:41:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685607191902957568, + "text": "RT @Neurotic: @jlsuttles @SukieTweets is feeling super cute. See? https://t.co/oTGa0hNVPe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 21170138, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 10074, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21170138/1448066737", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15714950", + "following": false, + "friends_count": 35, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 179, + "location": "", + "screen_name": "ruoho", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Clint Ruoho", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", + "profile_background_color": "022330", + "created_at": "Sun Aug 03 22:20:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", + "favourites_count": 18, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682197364367425537", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wtfismyip.com", + "url": "https://t.co/QfqlilFduQ", + "expanded_url": "https://wtfismyip.com/", + "indices": [ + 13, + 36 + ] + } + ], + "hashtags": [ + { + "indices": [ + 111, + 122 + ], + "text": "FreeBasics" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 13:51:40 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682197364367425537, + "text": "Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682229939072937984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wtfismyip.com", + "url": "https://t.co/QfqlilFduQ", + "expanded_url": "https://wtfismyip.com/", + "indices": [ + 28, + 51 + ] + } + ], + "hashtags": [ + { + "indices": [ + 126, + 137 + ], + "text": "FreeBasics" + } + ], + "user_mentions": [ + { + "screen_name": "wtfismyip", + "id_str": "359037938", + "id": 359037938, + "indices": [ + 3, + 13 + ], + "name": "WTF IS MY IP!?!?!?" + } + ] + }, + "created_at": "Wed Dec 30 16:01:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682229939072937984, + "text": "RT @wtfismyip: Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 15714950, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 17, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "755178", + "following": false, + "friends_count": 1779, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bob.ippoli.to", + "url": "http://t.co/8Z9JtvGN55", + "expanded_url": "http://bob.ippoli.to/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 5239, + "location": "San Francisco, CA", + "screen_name": "etrepum", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 315, + "name": "Bob Ippolito", + "profile_use_background_image": true, + "description": "@playfig cofounder/CTO. @missionbit board member & lead instructor. Former founder/CTO of Mochi Media. Open source python/js/erlang/haskell/obj-c/ruby developer", + "url": "http://t.co/8Z9JtvGN55", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Feb 06 09:23:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", + "favourites_count": 5819, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685542014901862400", + "id": 685542014901862400, + "text": "Not infrequently I wish slide presentations had not replaced the memo. Makes visual what should be text.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:22:07 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685543293849976832", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "bltroutwine", + "id_str": "298541778", + "id": 298541778, + "indices": [ + 3, + 15 + ], + "name": "Brian L. Troutwine" + } + ] + }, + "created_at": "Fri Jan 08 19:27:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685543293849976832, + "text": "RT @bltroutwine: Not infrequently I wish slide presentations had not replaced the memo. Makes visual what should be text.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 755178, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 11505, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/755178/1353725023", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "19315174", + "following": false, + "friends_count": 123, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", + "notifications": false, + "profile_sidebar_fill_color": "96C6ED", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 798506, + "location": "Redmond, WA", + "screen_name": "MicrosoftEdge", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5871, + "name": "Microsoft Edge", + "profile_use_background_image": false, + "description": "The official Twitter handle for Microsoft Edge, the new browser from Microsoft.", + "url": null, + "profile_text_color": "453C3C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", + "profile_background_color": "3B94D9", + "created_at": "Wed Jan 21 23:42:14 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", + "favourites_count": 23, + "status": { + "retweet_count": 5, + "retweeted_status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685504215343443968", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "display_url": "pic.twitter.com/v6YqGwUtih", + "id_str": "685503595572101120", + "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", + "id": 685503595572101120, + "url": "https://t.co/v6YqGwUtih" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "aka.ms/Xwzpnt", + "url": "https://t.co/g4IP0j7aDz", + "expanded_url": "http://aka.ms/Xwzpnt", + "indices": [ + 81, + 104 + ] + } + ], + "hashtags": [ + { + "indices": [ + 56, + 64 + ], + "text": "Winning" + }, + { + "indices": [ + 66, + 80 + ], + "text": "MicrosoftEdge" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:51:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685504215343443968, + "text": "The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6YqGwUtih", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685576467468677120", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "source_status_id_str": "685504215343443968", + "url": "https://t.co/v6YqGwUtih", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "source_user_id_str": "164457546", + "id_str": "685503595572101120", + "id": 685503595572101120, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "type": "photo", + "indices": [ + 124, + 140 + ], + "source_status_id": 685504215343443968, + "source_user_id": 164457546, + "display_url": "pic.twitter.com/v6YqGwUtih", + "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "aka.ms/Xwzpnt", + "url": "https://t.co/g4IP0j7aDz", + "expanded_url": "http://aka.ms/Xwzpnt", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [ + { + "indices": [ + 75, + 83 + ], + "text": "Winning" + }, + { + "indices": [ + 85, + 99 + ], + "text": "MicrosoftEdge" + } + ], + "user_mentions": [ + { + "screen_name": "WindowsCanada", + "id_str": "164457546", + "id": 164457546, + "indices": [ + 3, + 17 + ], + "name": "Windows Canada" + } + ] + }, + "created_at": "Fri Jan 08 21:39:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685576467468677120, + "text": "RT @WindowsCanada: The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Sprinklr" + }, + "default_profile_image": false, + "id": 19315174, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", + "statuses_count": 1205, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19315174/1438621793", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "77343214", + "following": false, + "friends_count": 1042, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "danabauer.github.io", + "url": "http://t.co/qTVR3d3mlq", + "expanded_url": "http://danabauer.github.io/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "424F98", + "geo_enabled": true, + "followers_count": 2467, + "location": "Philly (mostly)", + "screen_name": "agentdana", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 203, + "name": "Dana Bauer", + "profile_use_background_image": false, + "description": "Geographer, Pythonista, open data enthusiast, mom to a future astronaut. I work at Planet Labs.", + "url": "http://t.co/qTVR3d3mlq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Sep 25 23:48:03 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", + "favourites_count": 12277, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "taramurtha", + "in_reply_to_user_id": 24011702, + "in_reply_to_status_id_str": "685597724864081922", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685598350121529344", + "id": 685598350121529344, + "text": "@taramurtha gaaaahhhhhh", + "in_reply_to_user_id_str": "24011702", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "taramurtha", + "id_str": "24011702", + "id": 24011702, + "indices": [ + 0, + 11 + ], + "name": "Tara Murtha" + } + ] + }, + "created_at": "Fri Jan 08 23:05:59 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685597724864081922, + "lang": "und" + }, + "default_profile_image": false, + "id": 77343214, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4395, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/77343214/1444143700", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1141081634", + "following": false, + "friends_count": 90, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dev.modern.ie", + "url": "http://t.co/r0F7MBTxRE", + "expanded_url": "http://dev.modern.ie/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0078D7", + "geo_enabled": true, + "followers_count": 57823, + "location": "Redmond, WA", + "screen_name": "MSEdgeDev", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 741, + "name": "Microsoft Edge Dev", + "profile_use_background_image": true, + "description": "Official news and updates from the Microsoft Web Platform team on #MicrosoftEdge and #InternetExplorer", + "url": "http://t.co/r0F7MBTxRE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", + "profile_background_color": "282828", + "created_at": "Sat Feb 02 00:26:21 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", + "favourites_count": 146, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685516791003533312", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "channel9.msdn.com/Blogs/One-Dev-\u2026", + "url": "https://t.co/tL4lVK9BLo", + "expanded_url": "https://channel9.msdn.com/Blogs/One-Dev-Minute/Building-Websites-and-UWP-Apps-with-a-Yeoman-Generator", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:41:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685516791003533312, + "text": "One Dev Minute: Building websites and UWP apps with a Yeoman generator https://t.co/tL4lVK9BLo", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 1141081634, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", + "statuses_count": 1681, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1141081634/1430352524", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13348", + "following": false, + "friends_count": 53207, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/RobertScoble", + "url": "https://t.co/TZTxRbMttp", + "expanded_url": "https://facebook.com/RobertScoble", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 484965, + "location": "Half Moon Bay, California, USA", + "screen_name": "Scobleizer", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 25249, + "name": "Robert Scoble", + "profile_use_background_image": true, + "description": "@Rackspace's Futurist searches the world looking for what's happening on the bleeding edge of technology and brings that learning to the Internet.", + "url": "https://t.co/TZTxRbMttp", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Nov 20 23:43:44 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", + "favourites_count": 62360, + "status": { + "retweet_count": 6, + "retweeted_status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685589440765407232", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "display_url": "pic.twitter.com/sMEhdHTceR", + "id_str": "685589432909467648", + "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", + "id": 685589432909467648, + "url": "https://t.co/sMEhdHTceR" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1K3q0PT", + "url": "https://t.co/sXih7Q0R2J", + "expanded_url": "http://bit.ly/1K3q0PT", + "indices": [ + 55, + 78 + ] + } + ], + "hashtags": [ + { + "indices": [ + 50, + 54 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "richardbranson", + "id_str": "8161232", + "id": 8161232, + "indices": [ + 94, + 109 + ], + "name": "Richard Branson" + } + ] + }, + "created_at": "Fri Jan 08 22:30:34 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685589440765407232, + "text": "Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/sMEhdHTceR", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 11, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685593198958264320", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "685589440765407232", + "url": "https://t.co/sMEhdHTceR", + "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "source_user_id_str": "6853442", + "id_str": "685589432909467648", + "id": 685589432909467648, + "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "type": "photo", + "indices": [ + 126, + 140 + ], + "source_status_id": 685589440765407232, + "source_user_id": 6853442, + "display_url": "pic.twitter.com/sMEhdHTceR", + "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1K3q0PT", + "url": "https://t.co/sXih7Q0R2J", + "expanded_url": "http://bit.ly/1K3q0PT", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [ + { + "indices": [ + 66, + 70 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "willobrien", + "id_str": "6853442", + "id": 6853442, + "indices": [ + 3, + 14 + ], + "name": "Will O'Brien" + }, + { + "screen_name": "richardbranson", + "id_str": "8161232", + "id": 8161232, + "indices": [ + 110, + 125 + ], + "name": "Richard Branson" + } + ] + }, + "created_at": "Fri Jan 08 22:45:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593198958264320, + "text": "RT @willobrien: Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 13348, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", + "statuses_count": 67747, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13348/1450153194", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "84699828", + "following": false, + "friends_count": 2258, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 7005, + "location": "", + "screen_name": "barb_oconnor", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 65, + "name": "Barbara O'Connor", + "profile_use_background_image": true, + "description": "Girl next door mash-up :) Technology lover and biz dev aficionado. #Runner,#SUP boarder,#cyclist,#mother, dog lover, & US#Marine. Tweets=mine", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Oct 23 21:58:22 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", + "favourites_count": 67, + "status": { + "retweet_count": 183, + "retweeted_status": { + "retweet_count": 183, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685501440639516673", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "cainc.to/yArk3o", + "url": "https://t.co/DG3FPs9ryJ", + "expanded_url": "http://cainc.to/yArk3o", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "OttoBerkes", + "id_str": "192448160", + "id": 192448160, + "indices": [ + 30, + 41 + ], + "name": "Otto Berkes" + }, + { + "screen_name": "TheEbizWizard", + "id_str": "16290014", + "id": 16290014, + "indices": [ + 70, + 84 + ], + "name": "Jason Bloomberg" + }, + { + "screen_name": "ForbesTech", + "id_str": "14885549", + "id": 14885549, + "indices": [ + 88, + 99 + ], + "name": "Forbes Tech News" + } + ] + }, + "created_at": "Fri Jan 08 16:40:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685501440639516673, + "text": "From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "SocialFlow" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685541320170029056", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "cainc.to/yArk3o", + "url": "https://t.co/DG3FPs9ryJ", + "expanded_url": "http://cainc.to/yArk3o", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CAinc", + "id_str": "14790085", + "id": 14790085, + "indices": [ + 3, + 9 + ], + "name": "CA Technologies" + }, + { + "screen_name": "OttoBerkes", + "id_str": "192448160", + "id": 192448160, + "indices": [ + 41, + 52 + ], + "name": "Otto Berkes" + }, + { + "screen_name": "TheEbizWizard", + "id_str": "16290014", + "id": 16290014, + "indices": [ + 81, + 95 + ], + "name": "Jason Bloomberg" + }, + { + "screen_name": "ForbesTech", + "id_str": "14885549", + "id": 14885549, + "indices": [ + 99, + 110 + ], + "name": "Forbes Tech News" + } + ] + }, + "created_at": "Fri Jan 08 19:19:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685541320170029056, + "text": "RT @CAinc: From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "GaggleAMP" + }, + "default_profile_image": false, + "id": 84699828, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1939, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84699828/1440076545", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "539153822", + "following": false, + "friends_count": 8, + "entities": { + "description": { + "urls": [ + { + "display_url": "github.com/contact", + "url": "https://t.co/O4Rsiuqv", + "expanded_url": "https://github.com/contact", + "indices": [ + 54, + 75 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "developer.github.com", + "url": "http://t.co/WSCoZacuEW", + "expanded_url": "http://developer.github.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 8330, + "location": "SF", + "screen_name": "GitHubAPI", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 246, + "name": "GitHub API", + "profile_use_background_image": true, + "description": "GitHub API announcements. Send feedback/questions to https://t.co/O4Rsiuqv", + "url": "http://t.co/WSCoZacuEW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 28 15:52:25 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", + "favourites_count": 9, + "status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684448831757500416", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "developer.github.com/changes/2016-0\u2026", + "url": "https://t.co/kZjASxXV1N", + "expanded_url": "https://developer.github.com/changes/2016-01-05-api-enhancements-for-working-with-organization-permissions-are-now-official/", + "indices": [ + 76, + 99 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 18:58:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684448831757500416, + "text": "API enhancements for working with organization permissions are now official https://t.co/kZjASxXV1N", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 19, + "contributors": null, + "source": "Hubot @GitHubAPI Integration" + }, + "default_profile_image": false, + "id": 539153822, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 431, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "309528017", + "following": false, + "friends_count": 91, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "npmjs.org", + "url": "http://t.co/Yr2xkfPzXd", + "expanded_url": "http://npmjs.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "CB3837", + "geo_enabled": false, + "followers_count": 56429, + "location": "oakland, ca", + "screen_name": "npmjs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1130, + "name": "npmbot", + "profile_use_background_image": false, + "description": "i'm the package manager for javascript. problems? try @npm_support and #npm on freenode.", + "url": "http://t.co/Yr2xkfPzXd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Jun 02 07:20:53 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", + "favourites_count": 195, + "status": { + "retweet_count": 17, + "retweeted_status": { + "retweet_count": 17, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685257850961014784", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/npm/npm/releas\u2026", + "url": "https://t.co/BL0ttn3fLO", + "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", + "indices": [ + 121, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "npmjs", + "id_str": "309528017", + "id": 309528017, + "indices": [ + 4, + 10 + ], + "name": "npmbot" + } + ] + }, + "created_at": "Fri Jan 08 00:32:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685257850961014784, + "text": "New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https://t.co/BL0ttn3fLO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685258201831309312", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/npm/npm/releas\u2026", + "url": "https://t.co/BL0ttn3fLO", + "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", + "indices": [ + 143, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ReBeccaOrg", + "id_str": "579491588", + "id": 579491588, + "indices": [ + 3, + 14 + ], + "name": "Rebecca v7.3.2" + }, + { + "screen_name": "npmjs", + "id_str": "309528017", + "id": 309528017, + "indices": [ + 20, + 26 + ], + "name": "npmbot" + } + ] + }, + "created_at": "Fri Jan 08 00:34:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685258201831309312, + "text": "RT @ReBeccaOrg: New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 309528017, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", + "statuses_count": 2512, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "785764172", + "following": false, + "friends_count": 3, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "status.github.com", + "url": "http://t.co/efPUg9pga5", + "expanded_url": "http://status.github.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 29278, + "location": "", + "screen_name": "githubstatus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 669, + "name": "GitHub Status", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/efPUg9pga5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Aug 28 00:04:59 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", + "favourites_count": 3, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685287597560696833", + "id": 685287597560696833, + "text": "Everything operating normally.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:31:09 +0000 2016", + "source": "OctoStatus Production", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 785764172, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 929, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "82874321", + "following": false, + "friends_count": 1136, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.amber.org", + "url": "https://t.co/hvvj9vghmG", + "expanded_url": "http://blog.amber.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 840, + "location": "Seattle, WA", + "screen_name": "petrillic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 121, + "name": "Security Therapist", + "profile_use_background_image": true, + "description": "Social Justice _________. Nerd. Tinkerer. General trouble maker. Always learning more useless things. Homo sum humani a me nihil alienum puto.", + "url": "https://t.co/hvvj9vghmG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Fri Oct 16 13:11:25 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", + "favourites_count": 3414, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "seattlish", + "in_reply_to_user_id": 1589747622, + "in_reply_to_status_id_str": "685613961148936193", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685614336455254016", + "id": 685614336455254016, + "text": "@seattlish can we all just drive out there and line up to smack him? It doesn\u2019t solve the problem, unfortunately.", + "in_reply_to_user_id_str": "1589747622", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "seattlish", + "id_str": "1589747622", + "id": 1589747622, + "indices": [ + 0, + 10 + ], + "name": "Seattlish" + } + ] + }, + "created_at": "Sat Jan 09 00:09:30 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685613961148936193, + "lang": "en" + }, + "default_profile_image": false, + "id": 82874321, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 52179, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/82874321/1418621071", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "6297412", + "following": false, + "friends_count": 818, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "redmonk.com", + "url": "http://t.co/U63YEc1eN4", + "expanded_url": "http://redmonk.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 1019, + "location": "London", + "screen_name": "fintanr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 118, + "name": "Fintan Ryan", + "profile_use_background_image": true, + "description": "Industry analyst @redmonk. Business, technology, communities, data, platforms and occasional interjections.", + "url": "http://t.co/U63YEc1eN4", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Thu May 24 21:58:29 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", + "favourites_count": 1036, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685422437757005824", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mamamia.com.au/rules-for-visi\u2026", + "url": "https://t.co/3yc87RdloV", + "expanded_url": "http://www.mamamia.com.au/rules-for-visiting-a-newborn/", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sogrady", + "id_str": "143883", + "id": 143883, + "indices": [ + 83, + 91 + ], + "name": "steve o'grady" + }, + { + "screen_name": "girltuesday", + "id_str": "16833482", + "id": 16833482, + "indices": [ + 96, + 108 + ], + "name": "mko'g" + } + ] + }, + "created_at": "Fri Jan 08 11:26:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685422437757005824, + "text": "Two and a bit weeks in, and this reads so well.. https://t.co/3yc87RdloV, thinking @sogrady and @girltuesday may enjoy reading this too :).", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 6297412, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 4240, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6297412/1393521949", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "29170474", + "following": false, + "friends_count": 227, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sirupsen.com", + "url": "http://t.co/lGprTMnO09", + "expanded_url": "http://sirupsen.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "F7F7F7", + "profile_link_color": "0066AA", + "geo_enabled": true, + "followers_count": 3304, + "location": "Ottawa, Canada", + "screen_name": "Sirupsen", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 133, + "name": "Simon Eskildsen", + "profile_use_background_image": false, + "description": "WebScale @Shopify. Canadian in training.", + "url": "http://t.co/lGprTMnO09", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Apr 06 09:15:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EFEFEF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", + "favourites_count": 1073, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json", + "country": "Canada", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -76.353876, + 44.961937 + ], + [ + -75.246407, + 44.961937 + ], + [ + -75.246407, + 45.534511 + ], + [ + -76.353876, + 45.534511 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "CA", + "contained_within": [], + "full_name": "Ottawa, Ontario", + "id": "38d5974e82ed1a6c", + "name": "Ottawa" + }, + "in_reply_to_screen_name": "jnunemaker", + "in_reply_to_user_id": 4243, + "in_reply_to_status_id_str": "685581732322668544", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685594548618182656", + "id": 685594548618182656, + "text": "@jnunemaker Circuit breakers <3 Curious why you ended up building your own over using Semian's?", + "in_reply_to_user_id_str": "4243", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jnunemaker", + "id_str": "4243", + "id": 4243, + "indices": [ + 0, + 11 + ], + "name": "John Nunemaker" + } + ] + }, + "created_at": "Fri Jan 08 22:50:52 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685581732322668544, + "lang": "en" + }, + "default_profile_image": false, + "id": 29170474, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10223, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29170474/1379296952", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15911738", + "following": false, + "friends_count": 1688, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ryandlane.com", + "url": "http://t.co/eD11mzD1mC", + "expanded_url": "http://ryandlane.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1554, + "location": "San Francisco, CA", + "screen_name": "SquidDLane", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 108, + "name": "Ryan Lane", + "profile_use_background_image": true, + "description": "DevOps Engineer at Lyft, Site Operations volunteer at Wikimedia Foundation and SaltStack volunteer Developer.", + "url": "http://t.co/eD11mzD1mC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Aug 20 00:39:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", + "favourites_count": 26, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "SquidDLane", + "in_reply_to_user_id": 15911738, + "in_reply_to_status_id_str": "685203908256370688", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685204036606234624", + "id": 685204036606234624, + "text": "@tmclaughbos time to make a boto3_asg execution module ;)", + "in_reply_to_user_id_str": "15911738", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tmclaughbos", + "id_str": "740920470", + "id": 740920470, + "indices": [ + 0, + 12 + ], + "name": "Tom McLaughlin" + } + ] + }, + "created_at": "Thu Jan 07 20:59:07 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685203908256370688, + "lang": "en" + }, + "default_profile_image": false, + "id": 15911738, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4934, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1442355080", + "following": false, + "friends_count": 556, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 604, + "location": "Pittsburgh, PA", + "screen_name": "emdantrim", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "hOI!!!! i'm emmie!!!", + "profile_use_background_image": true, + "description": "I type special words that computers sometimes find meaning in. my words are mine. she. @travisci", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun May 19 22:47:02 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", + "favourites_count": 7314, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "wilkieii", + "in_reply_to_user_id": 17047955, + "in_reply_to_status_id_str": "685613356603031552", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613747482800129", + "id": 685613747482800129, + "text": "@wilkieii if you build an application that does this for you, twitter will send you a cease and desist and then implement the feature", + "in_reply_to_user_id_str": "17047955", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wilkieii", + "id_str": "17047955", + "id": 17047955, + "indices": [ + 0, + 9 + ], + "name": "wilkie" + } + ] + }, + "created_at": "Sat Jan 09 00:07:10 +0000 2016", + "source": "TweetDeck", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685613356603031552, + "lang": "en" + }, + "default_profile_image": false, + "id": 1442355080, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 6202, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1442355080/1450668537", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11764", + "following": false, + "friends_count": 61, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cdevroe.com", + "url": "http://t.co/1iJmxH8GUB", + "expanded_url": "http://cdevroe.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", + "notifications": false, + "profile_sidebar_fill_color": "999999", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 3740, + "location": "Jermyn, PA USA", + "screen_name": "cdevroe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 179, + "name": "Colin Devroe", + "profile_use_background_image": false, + "description": "Pronounced: See-Dev-Roo. Co-founder of @plainmade & @coalwork. JW. Kayaker.", + "url": "http://t.co/1iJmxH8GUB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Nov 08 03:01:15 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", + "favourites_count": 10667, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679337835888058368", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "plainmade.com/blog/14578/lin\u2026", + "url": "https://t.co/XgBYYftnu4", + "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", + "indices": [ + 23, + 46 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "deathtostock", + "id_str": "1727323538", + "id": 1727323538, + "indices": [ + 51, + 64 + ], + "name": "Death To Stock" + }, + { + "screen_name": "jaredsinclair", + "id_str": "15004156", + "id": 15004156, + "indices": [ + 66, + 80 + ], + "name": "Jared Sinclair" + }, + { + "screen_name": "RyanClarkDH", + "id_str": "596003901", + "id": 596003901, + "indices": [ + 83, + 95 + ], + "name": "Ryan Clark" + }, + { + "screen_name": "miguelrios", + "id_str": "14717846", + "id": 14717846, + "indices": [ + 97, + 108 + ], + "name": "Miguel Rios" + }, + { + "screen_name": "aimeeshiree", + "id_str": "14347487", + "id": 14347487, + "indices": [ + 110, + 122 + ], + "name": "aimeeshiree" + }, + { + "screen_name": "nathanaeljm", + "id_str": "97536835", + "id": 97536835, + "indices": [ + 124, + 136 + ], + "name": "Nathanael J Mehrens" + } + ] + }, + "created_at": "Tue Dec 22 16:28:56 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679337835888058368, + "text": "Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, @nathanaeljm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679340399832522752", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "plainmade.com/blog/14578/lin\u2026", + "url": "https://t.co/XgBYYftnu4", + "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", + "indices": [ + 38, + 61 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "plainmade", + "id_str": "977048040", + "id": 977048040, + "indices": [ + 3, + 13 + ], + "name": "Plain" + }, + { + "screen_name": "deathtostock", + "id_str": "1727323538", + "id": 1727323538, + "indices": [ + 66, + 79 + ], + "name": "Death To Stock" + }, + { + "screen_name": "jaredsinclair", + "id_str": "15004156", + "id": 15004156, + "indices": [ + 81, + 95 + ], + "name": "Jared Sinclair" + }, + { + "screen_name": "RyanClarkDH", + "id_str": "596003901", + "id": 596003901, + "indices": [ + 98, + 110 + ], + "name": "Ryan Clark" + }, + { + "screen_name": "miguelrios", + "id_str": "14717846", + "id": 14717846, + "indices": [ + 112, + 123 + ], + "name": "Miguel Rios" + }, + { + "screen_name": "aimeeshiree", + "id_str": "14347487", + "id": 14347487, + "indices": [ + 125, + 137 + ], + "name": "aimeeshiree" + }, + { + "screen_name": "nathanaeljm", + "id_str": "97536835", + "id": 97536835, + "indices": [ + 139, + 140 + ], + "name": "Nathanael J Mehrens" + } + ] + }, + "created_at": "Tue Dec 22 16:39:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679340399832522752, + "text": "RT @plainmade: Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 11764, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", + "statuses_count": 42666, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11764/1444176827", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "13332442", + "following": false, + "friends_count": 337, + "entities": { + "description": { + "urls": [ + { + "display_url": "flickr.com/photos/mikepan\u2026", + "url": "https://t.co/gIfppzqMQO", + "expanded_url": "http://www.flickr.com/photos/mikepanchenko/11139648213/", + "indices": [ + 117, + 140 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mihasya.com", + "url": "http://t.co/8ZVGv5uCcl", + "expanded_url": "http://mihasya.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 842, + "location": "The steak by the m'lake", + "screen_name": "mihasya", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 52, + "name": "Pancakes", + "profile_use_background_image": true, + "description": "making a career of naming projects after foods @newrelic. Formerly @opsmatic @urbanairship @simplegeo @flickr @yahoo https://t.co/gIfppzqMQO", + "url": "http://t.co/8ZVGv5uCcl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Feb 11 03:13:51 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", + "favourites_count": 913, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "polotek", + "in_reply_to_user_id": 20079975, + "in_reply_to_status_id_str": "684832544966103040", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685606078638243841", + "id": 685606078638243841, + "text": "@polotek I cannot convey in text the size of the CONGRATS I'd like to send your way. Also that birth story was intense y'all are both champs", + "in_reply_to_user_id_str": "20079975", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "polotek", + "id_str": "20079975", + "id": 20079975, + "indices": [ + 0, + 8 + ], + "name": "Marco Rogers" + } + ] + }, + "created_at": "Fri Jan 08 23:36:41 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684832544966103040, + "lang": "en" + }, + "default_profile_image": false, + "id": 13332442, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", + "statuses_count": 9830, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13332442/1437710921", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "212199251", + "following": false, + "friends_count": 155, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "orkjern.com", + "url": "https://t.co/cJoUSHfCc3", + "expanded_url": "https://orkjern.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 170, + "location": "Norway", + "screen_name": "orkj", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "eiriksm", + "profile_use_background_image": false, + "description": "All about Drupal, JS and good beer.", + "url": "https://t.co/cJoUSHfCc3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", + "profile_background_color": "A1A1A1", + "created_at": "Fri Nov 05 12:15:41 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", + "favourites_count": 207, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 2154622149, + "possibly_sensitive": false, + "id_str": "685442655992451072", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 673, + "h": 221, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 111, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 197, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", + "type": "photo", + "indices": [ + 77, + 100 + ], + "media_url": "http://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", + "display_url": "pic.twitter.com/403urs6oC3", + "id_str": "685442654981746688", + "expanded_url": "http://twitter.com/orkj/status/685442655992451072/photo/1", + "id": 685442654981746688, + "url": "https://t.co/403urs6oC3" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "torbmorland", + "id_str": "2154622149", + "id": 2154622149, + "indices": [ + 0, + 12 + ], + "name": "Torbj\u00f8rn Morland" + }, + { + "screen_name": "github", + "id_str": "13334762", + "id": 13334762, + "indices": [ + 13, + 20 + ], + "name": "GitHub" + } + ] + }, + "created_at": "Fri Jan 08 12:47:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "2154622149", + "place": null, + "in_reply_to_screen_name": "torbmorland", + "in_reply_to_status_id_str": "685416670555443200", + "truncated": false, + "id": 685442655992451072, + "text": "@torbmorland @github While you are at it, please create this project as well https://t.co/403urs6oC3", + "coordinates": null, + "in_reply_to_status_id": 685416670555443200, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 212199251, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 318, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24659495", + "following": false, + "friends_count": 380, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/bcoe", + "url": "https://t.co/oVbQkCBHsB", + "expanded_url": "https://github.com/bcoe", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1331, + "location": "San Francisco", + "screen_name": "BenjaminCoe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 93, + "name": "Benjamin Coe", + "profile_use_background_image": true, + "description": "I'm a street walking cheetah with a heart full of napalm. Co-founded @attachmentsme, currently hacks up a storm @npmjs. Aspiring human.", + "url": "https://t.co/oVbQkCBHsB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Mar 16 06:23:28 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", + "favourites_count": 2517, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685252262696861697", + "id": 685252262696861697, + "text": "I've been watching greenkeeper.io get a ton of traction across many of the projects I contribute to, wonderful idea @boennemann \\o/", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "boennemann", + "id_str": "37506335", + "id": 37506335, + "indices": [ + 116, + 127 + ], + "name": "Stephan B\u00f6nnemann" + } + ] + }, + "created_at": "Fri Jan 08 00:10:45 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 13, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 24659495, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", + "statuses_count": 3524, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "18210275", + "following": false, + "friends_count": 235, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "HelloJustine.com", + "url": "http://t.co/9NRKpNO5Cj", + "expanded_url": "http://HelloJustine.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", + "notifications": false, + "profile_sidebar_fill_color": "E8E6DF", + "profile_link_color": "2EC29D", + "geo_enabled": true, + "followers_count": 2243, + "location": "Where the Wild Things Are", + "screen_name": "SaltineJustine", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 122, + "name": "Justine Arreche", + "profile_use_background_image": true, + "description": "I never met a deep fryer I didn't like \u2014 Lead Clipart Strategist at @travisci.", + "url": "http://t.co/9NRKpNO5Cj", + "profile_text_color": "404040", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", + "profile_background_color": "242424", + "created_at": "Thu Dec 18 06:09:40 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", + "favourites_count": 18042, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685601535380832256", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtube.com/watch?v=3uT4RV\u2026", + "url": "https://t.co/shfgUir3HQ", + "expanded_url": "https://www.youtube.com/watch?v=3uT4RV2Dfjs", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lstoll", + "id_str": "59282163", + "id": 59282163, + "indices": [ + 46, + 53 + ], + "name": "Kernel Sanders" + } + ] + }, + "created_at": "Fri Jan 08 23:18:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -81.877771, + 41.392684 + ], + [ + -81.5331634, + 41.392684 + ], + [ + -81.5331634, + 41.599195 + ], + [ + -81.877771, + 41.599195 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Cleveland, OH", + "id": "0eb9676d24b211f1", + "name": "Cleveland" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685601535380832256, + "text": "Friday evening beats brought to you by me and @lstoll \u2014 https://t.co/shfgUir3HQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18210275, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", + "statuses_count": 23373, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18210275/1437218808", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "11848", + "following": false, + "friends_count": 2306, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/thisisdeb", + "url": "http://t.co/JKlV7BRnzd", + "expanded_url": "http://about.me/thisisdeb", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 9038, + "location": "SF & NYC", + "screen_name": "debs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 734, + "name": "debs", + "profile_use_background_image": false, + "description": "Living at intersection of people, tech, design & horses | Technology changes, humans don't |\r\nCo-founder @yxyy @tummelvision @ILEquestrian", + "url": "http://t.co/JKlV7BRnzd", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Nov 08 17:47:14 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", + "favourites_count": 1096, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685226261308784644", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "fb.me/76u9wdYOo", + "url": "https://t.co/FXGpjqARuU", + "expanded_url": "http://fb.me/76u9wdYOo", + "indices": [ + 104, + 127 + ] + } + ], + "hashtags": [ + { + "indices": [ + 134, + 139 + ], + "text": "yxyy" + } + ], + "user_mentions": [ + { + "screen_name": "jboitnott", + "id_str": "14486811", + "id": 14486811, + "indices": [ + 34, + 44 + ], + "name": "John Boitnott" + }, + { + "screen_name": "YxYY", + "id_str": "1232029844", + "id": 1232029844, + "indices": [ + 128, + 133 + ], + "name": "Yes and Yes Yes" + } + ] + }, + "created_at": "Thu Jan 07 22:27:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685226261308784644, + "text": "Thanks for the shout out John! RT @jboitnott: Why Many Tech Execs Are Skipping the Consumer Electronics https://t.co/FXGpjqARuU @yxyy #yxyy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Echofon" + }, + "default_profile_image": false, + "id": 11848, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "statuses_count": 13886, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11848/1414180455", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15662622", + "following": false, + "friends_count": 4657, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "medium.com/@stevenewcomb", + "url": "https://t.co/l86N09uJWv", + "expanded_url": "http://www.medium.com/@stevenewcomb", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 29589, + "location": "San Francisco, CA", + "screen_name": "stevenewcomb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 676, + "name": "stevenewcomb", + "profile_use_background_image": true, + "description": "founder @befamous \u2022 founder @powerset (now MSFT Bing) \u2022 board Node.js \u2022 designer \u2022 ux \u2022 ui", + "url": "https://t.co/l86N09uJWv", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Jul 30 16:55:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", + "favourites_count": 86, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5ef5b7f391e30aff.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.324818, + 37.8459532 + ], + [ + -122.234225, + 37.8459532 + ], + [ + -122.234225, + 37.905738 + ], + [ + -122.324818, + 37.905738 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Berkeley, CA", + "id": "5ef5b7f391e30aff", + "name": "Berkeley" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "679695243453661184", + "id": 679695243453661184, + "text": "When I asked my grandfather if one can be both wise and immature, he said pull my finger and I'll tell you.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 23 16:09:08 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 19, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15662622, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1147, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15662622/1398732045", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14708110", + "following": false, + "friends_count": 194, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 42, + "location": "", + "screen_name": "pease", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "name": "Dave Pease", + "profile_use_background_image": true, + "description": "Father, Husband, .NET Developer at IBS, Inc.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri May 09 01:18:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", + "favourites_count": 4, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", + "default_profile_image": false, + "id": 14708110, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 136, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14708110/1425394211", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "133448051", + "following": false, + "friends_count": 79, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ussoccer.com", + "url": "http://t.co/lBXZsLTYug", + "expanded_url": "http://www.ussoccer.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 533357, + "location": "United States", + "screen_name": "ussoccer_wnt", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4083, + "name": "U.S. Soccer WNT", + "profile_use_background_image": true, + "description": "U.S. Soccer's official feed for the #USWNT.", + "url": "http://t.co/lBXZsLTYug", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", + "profile_background_color": "E4E5E6", + "created_at": "Thu Apr 15 20:39:54 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", + "favourites_count": 86, + "status": { + "retweet_count": 195, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609673668427777", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amp.twimg.com/v/4ee8494e-4f5\u2026", + "url": "https://t.co/DzHc1f29T6", + "expanded_url": "https://amp.twimg.com/v/4ee8494e-4f5b-4062-a847-abbf85aaa21e", + "indices": [ + 119, + 142 + ] + } + ], + "hashtags": [ + { + "indices": [ + 11, + 17 + ], + "text": "USWNT" + }, + { + "indices": [ + 95, + 107 + ], + "text": "JanuaryCamp" + }, + { + "indices": [ + 108, + 118 + ], + "text": "RoadToRio" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:50:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609673668427777, + "text": "WATCH: the #USWNT is off & running in 2016 with its first training camp of the year in LA. #JanuaryCamp #RoadToRio\nhttps://t.co/DzHc1f29T6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 534, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 133448051, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", + "statuses_count": 13471, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/133448051/1436146536", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "520782355", + "following": false, + "friends_count": 380, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "squidandcrow.com", + "url": "http://t.co/Iz4ZfDvOHi", + "expanded_url": "http://squidandcrow.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 330, + "location": "Pasco, WA", + "screen_name": "SquidAndCrow", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 23, + "name": "Sara Quinn, Person", + "profile_use_background_image": true, + "description": "Thing Maker | Squid Wrangler | Free Thinker | Gamer | Friend | Occasional Meat | She/Her or They/Them", + "url": "http://t.co/Iz4ZfDvOHi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Sat Mar 10 22:18:27 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", + "favourites_count": 3128, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "duosec", + "in_reply_to_user_id": 95339302, + "in_reply_to_status_id_str": "685540745177133058", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685592067100131330", + "id": 685592067100131330, + "text": "@duosec That scared me! So funny, though ;)", + "in_reply_to_user_id_str": "95339302", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "duosec", + "id_str": "95339302", + "id": 95339302, + "indices": [ + 0, + 7 + ], + "name": "Duo Security" + } + ] + }, + "created_at": "Fri Jan 08 22:41:01 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685540745177133058, + "lang": "en" + }, + "default_profile_image": false, + "id": 520782355, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 2610, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/520782355/1448506590", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2981041874", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "requiresafe.com", + "url": "http://t.co/Gbxa8dLwYt", + "expanded_url": "http://requiresafe.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 54, + "location": "Richland, wa", + "screen_name": "requiresafe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "requireSafe", + "profile_use_background_image": true, + "description": "Peace of mind for third-party Node modules. Brought to you by the @liftsecurity team and the founders of the @nodesecurity project.", + "url": "http://t.co/Gbxa8dLwYt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 13 23:44:44 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", + "favourites_count": 6, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "661228477689950208", + "id": 661228477689950208, + "text": "If you haven't done so please switch from using requiresafe to using nsp. The infrastructure will be taken down today.\n\nnpm i nsp -g", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Nov 02 17:08:48 +0000 2015", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2981041874, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 25, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15445975", + "following": false, + "friends_count": 600, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paddy.io", + "url": "http://t.co/lLVQ2zF195", + "expanded_url": "http://paddy.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 879, + "location": "Richland, WA", + "screen_name": "paddyforan", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 95, + "name": "Paddy", + "profile_use_background_image": true, + "description": "\u201cof Paddy & Ethan\u201d", + "url": "http://t.co/lLVQ2zF195", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Tue Jul 15 21:02:05 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", + "favourites_count": 2760, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0dd0c9c93b5519e1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -119.348075, + 46.164988 + ], + [ + -119.211248, + 46.164988 + ], + [ + -119.211248, + 46.3513671 + ], + [ + -119.348075, + 46.3513671 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Richland, WA", + "id": "0dd0c9c93b5519e1", + "name": "Richland" + }, + "in_reply_to_screen_name": "wraithgar", + "in_reply_to_user_id": 36700219, + "in_reply_to_status_id_str": "685493379812098049", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685515588530126850", + "id": 685515588530126850, + "text": "@wraithgar saaaaame", + "in_reply_to_user_id_str": "36700219", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wraithgar", + "id_str": "36700219", + "id": 36700219, + "indices": [ + 0, + 10 + ], + "name": "Gar" + } + ] + }, + "created_at": "Fri Jan 08 17:37:07 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685493379812098049, + "lang": "en" + }, + "default_profile_image": false, + "id": 15445975, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 39215, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15445975/1403466417", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2511636140", + "following": false, + "friends_count": 159, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "heatherloui.se", + "url": "https://t.co/8kOnavMn2N", + "expanded_url": "http://heatherloui.se", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "077A7A", + "geo_enabled": false, + "followers_count": 103, + "location": "Claremont, CA", + "screen_name": "one000mph", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 11, + "name": "Heather", + "profile_use_background_image": true, + "description": "Adventurer. Connoisseur Of Fine Teas. Collector of Outrageous Hats. STEM. Yogi.", + "url": "https://t.co/8kOnavMn2N", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed May 21 05:02:13 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", + "favourites_count": 53, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "666510529041575936", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "top13.net/funny-jerk-cat\u2026", + "url": "https://t.co/cQ4rAKpy5O", + "expanded_url": "http://www.top13.net/funny-jerk-cats-dont-respect-personal-space/", + "indices": [ + 0, + 23 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wraithgar", + "id_str": "36700219", + "id": 36700219, + "indices": [ + 24, + 34 + ], + "name": "Gar" + } + ] + }, + "created_at": "Tue Nov 17 06:57:47 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 666510529041575936, + "text": "https://t.co/cQ4rAKpy5O @wraithgar", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2511636140, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 60, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2511636140/1400652181", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3332249974", + "following": false, + "friends_count": 382, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2292, + "location": "", + "screen_name": "opsecanimals", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 74, + "name": "OpSec Animals", + "profile_use_background_image": true, + "description": "Animal OPSEC. The animals that teach and encourage good security practices. Boutique Animal Security Consultancy.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 18 06:10:24 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", + "favourites_count": 1187, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685591424625184769", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "modelviewculture.com/pieces/groomin\u2026", + "url": "https://t.co/mW4QbfhNVG", + "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jessysaurusrex", + "id_str": "17797084", + "id": 17797084, + "indices": [ + 66, + 81 + ], + "name": "Jessy Irwin" + } + ] + }, + "created_at": "Fri Jan 08 22:38:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685591424625184769, + "text": "Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Known: sketches.shaffermusic.com" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597438594293760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "modelviewculture.com/pieces/groomin\u2026", + "url": "https://t.co/mW4QbfhNVG", + "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "krisshaffer", + "id_str": "136476512", + "id": 136476512, + "indices": [ + 3, + 15 + ], + "name": "Kris Shaffer" + }, + { + "screen_name": "jessysaurusrex", + "id_str": "17797084", + "id": 17797084, + "indices": [ + 83, + 98 + ], + "name": "Jessy Irwin" + } + ] + }, + "created_at": "Fri Jan 08 23:02:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597438594293760, + "text": "RT @krisshaffer: Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 3332249974, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 317, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3332249974/1434610300", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18139160", + "following": false, + "friends_count": 389, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/inessombra", + "url": "http://t.co/hZHAl1Rxhp", + "expanded_url": "http://about.me/inessombra", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "151717", + "geo_enabled": true, + "followers_count": 2843, + "location": "San Francisco, CA", + "screen_name": "randommood", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 150, + "name": "Ines Sombra", + "profile_use_background_image": true, + "description": "Engineer @fastly. Plagued by many interests including running @papers_we_love SF & board member of @rubytogether. In an everlasting quest for increased focus.", + "url": "http://t.co/hZHAl1Rxhp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", + "profile_background_color": "131516", + "created_at": "Mon Dec 15 16:06:41 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", + "favourites_count": 2721, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "chrisamaphone", + "in_reply_to_user_id": 5972632, + "in_reply_to_status_id_str": "685132380991045632", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685138209391546369", + "id": 685138209391546369, + "text": "@chrisamaphone The industry is predatory and bullshitty. I'm happy to share what we did (or rage with you) if it helps \ud83d\udc70\ud83c\udffc\ud83d\udc79", + "in_reply_to_user_id_str": "5972632", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chrisamaphone", + "id_str": "5972632", + "id": 5972632, + "indices": [ + 0, + 14 + ], + "name": "Chris Martens" + } + ] + }, + "created_at": "Thu Jan 07 16:37:33 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685132380991045632, + "lang": "en" + }, + "default_profile_image": false, + "id": 18139160, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 7723, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18139160/1405120776", + "is_translator": false + }, + { + "time_zone": "Europe/Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "5430", + "following": false, + "friends_count": 673, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "squeakyvessel.com", + "url": "https://t.co/SmbXMAJahm", + "expanded_url": "http://squeakyvessel.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "666666", + "geo_enabled": true, + "followers_count": 1899, + "location": "Frankfurt, Germany", + "screen_name": "benjamin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 128, + "name": "Benjamin Reitzammer", + "profile_use_background_image": true, + "description": "Head of my head, Feminist\n\n@VaamoTech //\n@socrates_2016 // \n@breathing_code", + "url": "https://t.co/SmbXMAJahm", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Sep 07 11:54:22 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", + "favourites_count": 1040, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685607349369860096", + "id": 685607349369860096, + "text": ".@henryrollins I looooove yooouuuu #manthatwasintense", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 35, + 53 + ], + "text": "manthatwasintense" + } + ], + "user_mentions": [ + { + "screen_name": "henryrollins", + "id_str": "16618332", + "id": 16618332, + "indices": [ + 1, + 14 + ], + "name": "henryrollins" + } + ] + }, + "created_at": "Fri Jan 08 23:41:44 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 5430, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", + "statuses_count": 9759, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5430/1425282364", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "304067888", + "following": false, + "friends_count": 1108, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ashleygwilliams.github.io", + "url": "https://t.co/rkt9BdQBYx", + "expanded_url": "http://ashleygwilliams.github.io/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 5853, + "location": "undefined", + "screen_name": "ag_dubs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 294, + "name": "ashley williams", + "profile_use_background_image": true, + "description": "a mess like this is easily five to ten years ahead of its time. human, @npmjs.", + "url": "https://t.co/rkt9BdQBYx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon May 23 21:43:03 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", + "favourites_count": 16725, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "skilldrick", + "in_reply_to_user_id": 17736965, + "in_reply_to_status_id_str": "685581078879326208", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685581931006812169", + "id": 685581931006812169, + "text": "@skilldrick @jkup @wafflejs they are a great band! i shoulda known that haha", + "in_reply_to_user_id_str": "17736965", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "skilldrick", + "id_str": "17736965", + "id": 17736965, + "indices": [ + 0, + 11 + ], + "name": "Nick Morgan" + }, + { + "screen_name": "jkup", + "id_str": "255634108", + "id": 255634108, + "indices": [ + 12, + 17 + ], + "name": "Jon Kuperman" + }, + { + "screen_name": "wafflejs", + "id_str": "3338088405", + "id": 3338088405, + "indices": [ + 18, + 27 + ], + "name": "WaffleJS" + } + ] + }, + "created_at": "Fri Jan 08 22:00:44 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685581078879326208, + "lang": "en" + }, + "default_profile_image": false, + "id": 304067888, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", + "statuses_count": 28815, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/304067888/1400530788", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14499792", + "following": false, + "friends_count": 69, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fayerplay.com", + "url": "http://t.co/a7vsP6hbIq", + "expanded_url": "http://fayerplay.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/125537436/bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F7DA93", + "profile_link_color": "CC3300", + "geo_enabled": false, + "followers_count": 330, + "location": "Columbia, Maryland", + "screen_name": "papa_fire", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Leon Fayer", + "profile_use_background_image": true, + "description": "Technologist. Web architect. DevOps [something]. VP @OmniTI. Gamer. Die hard Ravens fan.", + "url": "http://t.co/a7vsP6hbIq", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Apr 23 19:53:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", + "favourites_count": 7, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685498351551393795", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tinyclouds.org/colorize/", + "url": "https://t.co/n4MF2LMQA5", + "expanded_url": "http://tinyclouds.org/colorize/", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:28:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685498351551393795, + "text": "This is much cooler that even author leads to believe. https://t.co/n4MF2LMQA5", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 14499792, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/125537436/bg.jpg", + "statuses_count": 2534, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14499792/1354950251", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14412937", + "following": false, + "friends_count": 150, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eev.ee", + "url": "http://t.co/ffxyntfCy2", + "expanded_url": "http://eev.ee/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "4380BF", + "geo_enabled": true, + "followers_count": 7055, + "location": "Sin City 2000", + "screen_name": "eevee", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 217, + "name": "\u2744\u26c4 eevee \u26c4\u2744", + "profile_use_background_image": true, + "description": "i like computers but also yell about them a lot. sometimes i hack or write or draw. she/they/he", + "url": "http://t.co/ffxyntfCy2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", + "profile_background_color": "0A3A6A", + "created_at": "Wed Apr 16 21:08:32 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", + "favourites_count": 32308, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685597943315873792", + "id": 685597943315873792, + "text": "thanks kde for this window manager that crashes several times a day and doesn't restart on its own", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:04:22 +0000 2016", + "source": "Twirssi", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14412937, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", + "statuses_count": 81050, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14412937/1435395260", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16642746", + "following": false, + "friends_count": 414, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "crappytld.club", + "url": "http://t.co/d1H2gppjtx", + "expanded_url": "http://crappytld.club/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 6004, + "location": "Austin, TX", + "screen_name": "miketaylr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 435, + "name": "Mike Taylor", + "profile_use_background_image": true, + "description": "Web Compat at Mozilla. I mostly tweet about crappy code. \\\ufdfa\u0310\u033e\u033e\u0308\u030f\u0314\u0302\u0307\u0300\u036d\u0308\u0366\u034c\u033d\u036d\u036a\u036b\u036f\u0304\u034f\u031e\u032d\u0318\u0325\u0324\u034e\u0324\u0358\\'", + "url": "http://t.co/d1H2gppjtx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Oct 08 02:18:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", + "favourites_count": 4739, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -97.928935, + 30.127892 + ], + [ + -97.5805133, + 30.127892 + ], + [ + -97.5805133, + 30.5187994 + ], + [ + -97.928935, + 30.5187994 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Austin, TX", + "id": "c3f37afa9efcf94b", + "name": "Austin" + }, + "in_reply_to_screen_name": "snorp", + "in_reply_to_user_id": 14663842, + "in_reply_to_status_id_str": "685227191529934848", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685230499069952001", + "id": 685230499069952001, + "text": "@snorp i give it a year before someone is running NodeJS on one of these (help us all)", + "in_reply_to_user_id_str": "14663842", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "snorp", + "id_str": "14663842", + "id": 14663842, + "indices": [ + 0, + 6 + ], + "name": "James Willcox" + } + ] + }, + "created_at": "Thu Jan 07 22:44:16 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685227191529934848, + "lang": "en" + }, + "default_profile_image": false, + "id": 16642746, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", + "statuses_count": 16572, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16642746/1381258666", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "749863", + "following": false, + "friends_count": 565, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "relay.fm/rd", + "url": "https://t.co/zuZ3gobI4e", + "expanded_url": "http://www.relay.fm/rd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", + "notifications": false, + "profile_sidebar_fill_color": "DFDFDF", + "profile_link_color": "4255AE", + "geo_enabled": false, + "followers_count": 354981, + "location": "The Outside Lands", + "screen_name": "hotdogsladies", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8035, + "name": "Merlin Mann", + "profile_use_background_image": false, + "description": "Ricordati che \u00e8 un film comico.", + "url": "https://t.co/zuZ3gobI4e", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", + "profile_background_color": "EEEEEE", + "created_at": "Sat Feb 03 01:39:53 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", + "favourites_count": 27389, + "status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685570310104432641", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/_relayfm/statu\u2026", + "url": "https://t.co/LxxV1D1MAU", + "expanded_url": "https://twitter.com/_relayfm/status/685477059842433024", + "indices": [ + 84, + 107 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:14:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685570310104432641, + "text": "Two amazing hosts doing a topic and approach I've waited a long time for. Endorsed! https://t.co/LxxV1D1MAU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 749863, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", + "statuses_count": 29730, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/749863/1450650802", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "239324052", + "following": false, + "friends_count": 1413, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.skepticfx.com", + "url": "https://t.co/gLsQ0GkDmG", + "expanded_url": "https://blog.skepticfx.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1421, + "location": "San Francisco, CA", + "screen_name": "skeptic_fx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "Ahamed Nafeez", + "profile_use_background_image": false, + "description": "Security Engineering is one of the things I do. Views are my own and does not represent my employer.", + "url": "https://t.co/gLsQ0GkDmG", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Jan 17 10:33:29 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", + "favourites_count": 1253, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "verystrongjoe", + "in_reply_to_user_id": 53238886, + "in_reply_to_status_id_str": "682429494154530817", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682501819830931457", + "id": 682501819830931457, + "text": "@verystrongjoe Hi! I've replied to you over email :)", + "in_reply_to_user_id_str": "53238886", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "verystrongjoe", + "id_str": "53238886", + "id": 53238886, + "indices": [ + 0, + 14 + ], + "name": "Jo Uk" + } + ] + }, + "created_at": "Thu Dec 31 10:01:28 +0000 2015", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 682429494154530817, + "lang": "en" + }, + "default_profile_image": false, + "id": 239324052, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 2307, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/239324052/1443490816", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3194669250", + "following": false, + "friends_count": 136, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wild.land", + "url": "http://t.co/ktkvhRQiyM", + "expanded_url": "http://wild.land", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 61, + "location": "Richland, WA", + "screen_name": "wildlandlabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Wildland", + "profile_use_background_image": false, + "description": "Software Builders, Coffee Enthusiasts, General Human Beings.", + "url": "http://t.co/ktkvhRQiyM", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", + "profile_background_color": "000000", + "created_at": "Wed May 13 21:58:06 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", + "favourites_count": 5, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mattepp", + "in_reply_to_user_id": 14871770, + "in_reply_to_status_id_str": "637133104977588226", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "637150029396860930", + "id": 637150029396860930, + "text": "Ohhai!! @mattepp ///@grElement", + "in_reply_to_user_id_str": "14871770", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mattepp", + "id_str": "14871770", + "id": 14871770, + "indices": [ + 8, + 16 + ], + "name": "Matthew Eppelsheimer" + }, + { + "screen_name": "grElement", + "id_str": "42056876", + "id": 42056876, + "indices": [ + 20, + 30 + ], + "name": "Angela Steffens" + } + ] + }, + "created_at": "Fri Aug 28 06:29:39 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 637133104977588226, + "lang": "it" + }, + "default_profile_image": false, + "id": 3194669250, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 22, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3194669250/1431554889", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1530096708", + "following": false, + "friends_count": 4721, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "closetoclever.com", + "url": "https://t.co/oQf0XG5ffN", + "expanded_url": "http://www.closetoclever.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "007AB3", + "geo_enabled": false, + "followers_count": 8757, + "location": "Birmingham/London/\u3069\u3053\u3067\u3082", + "screen_name": "jesslynnrose", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 298, + "name": "Jessica Rose", + "profile_use_background_image": true, + "description": "Technology's den mother. Devrel for @dfsoftwareinc & often doing things w/ @opencodeclub, @trans_code & @watchingbuffy DMs open*, views mine", + "url": "https://t.co/oQf0XG5ffN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 19 07:56:27 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", + "favourites_count": 8916, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "spiky_flamingo", + "in_reply_to_user_id": 3143889479, + "in_reply_to_status_id_str": "685558133687775232", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685558290324041728", + "id": 685558290324041728, + "text": "@spiky_flamingo @miss_jwo I am! DM incoming! \ud83d\ude01", + "in_reply_to_user_id_str": "3143889479", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "spiky_flamingo", + "id_str": "3143889479", + "id": 3143889479, + "indices": [ + 0, + 15 + ], + "name": "pearl irl" + }, + { + "screen_name": "miss_jwo", + "id_str": "200519952", + "id": 200519952, + "indices": [ + 16, + 25 + ], + "name": "Jenny Wong" + } + ] + }, + "created_at": "Fri Jan 08 20:26:48 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685558133687775232, + "lang": "en" + }, + "default_profile_image": false, + "id": 1530096708, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 15506, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1530096708/1448497747", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5438512", + "following": false, + "friends_count": 543, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pcper.com", + "url": "http://t.co/FyPzbMLdvW", + "expanded_url": "http://www.pcper.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 11986, + "location": "Florence, KY", + "screen_name": "ryanshrout", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 726, + "name": "Ryan Shrout", + "profile_use_background_image": false, + "description": "Editor-in-Chief at PC Perspective", + "url": "http://t.co/FyPzbMLdvW", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Mon Apr 23 16:41:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", + "favourites_count": 258, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "AndrewLauritzen", + "in_reply_to_user_id": 321550744, + "in_reply_to_status_id_str": "685607960899235840", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685608068655140866", + "id": 685608068655140866, + "text": "@AndrewLauritzen I asked them specifically, and they only said that this was the focus for 2016.", + "in_reply_to_user_id_str": "321550744", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AndrewLauritzen", + "id_str": "321550744", + "id": 321550744, + "indices": [ + 0, + 16 + ], + "name": "Andrew Lauritzen" + } + ] + }, + "created_at": "Fri Jan 08 23:44:36 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685607960899235840, + "lang": "en" + }, + "default_profile_image": false, + "id": 5438512, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 15326, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "43188880", + "following": false, + "friends_count": 1673, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dalebracey.com", + "url": "https://t.co/uQTo4Zburt", + "expanded_url": "http://dalebracey.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7A5339", + "profile_link_color": "FF6600", + "geo_enabled": false, + "followers_count": 1257, + "location": "San Antonio, TX", + "screen_name": "IRTermite", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 60, + "name": "Dale Bracey \u2601", + "profile_use_background_image": true, + "description": "Social Strategist @Rackspace, Racker since 2004 - Artist, Car Collector, Empath, Geek, Networker, Techie, Jack-of-all, #OpenStack, @MakeSanAntonio @RackerGamers", + "url": "https://t.co/uQTo4Zburt", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", + "profile_background_color": "131516", + "created_at": "Thu May 28 20:27:13 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", + "favourites_count": 2189, + "status": { + "retweet_count": 23, + "retweeted_status": { + "retweet_count": 23, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685296231405326337", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 852, + "h": 669, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 471, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 266, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "type": "photo", + "indices": [ + 90, + 113 + ], + "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "display_url": "pic.twitter.com/65waEZwn1E", + "id_str": "685296015801331716", + "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", + "id": 685296015801331716, + "url": "https://t.co/65waEZwn1E" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:05:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685296231405326337, + "text": "Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 22, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685296427338051584", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 852, + "h": 669, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 471, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 266, + "resize": "fit" + } + }, + "source_status_id_str": "685296231405326337", + "url": "https://t.co/65waEZwn1E", + "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "source_user_id_str": "26191233", + "id_str": "685296015801331716", + "id": 685296015801331716, + "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "type": "photo", + "indices": [ + 105, + 128 + ], + "source_status_id": 685296231405326337, + "source_user_id": 26191233, + "display_url": "pic.twitter.com/65waEZwn1E", + "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Rackspace", + "id_str": "26191233", + "id": 26191233, + "indices": [ + 3, + 13 + ], + "name": "Rackspace" + } + ] + }, + "created_at": "Fri Jan 08 03:06:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685296427338051584, + "text": "RT @Rackspace: Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 43188880, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 6991, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43188880/1433971079", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "801712861", + "following": false, + "friends_count": 614, + "entities": { + "description": { + "urls": [ + { + "display_url": "domschopsalsa.com", + "url": "https://t.co/ySTEeD6lcz", + "expanded_url": "http://www.domschopsalsa.com", + "indices": [ + 90, + 113 + ] + }, + { + "display_url": "facebook.com/chopsalsa", + "url": "https://t.co/DoMfz1yk60", + "expanded_url": "http://facebook.com/chopsalsa", + "indices": [ + 115, + 138 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/dominicmend\u2026", + "url": "http://t.co/3hwdF3IqPC", + "expanded_url": "http://www.linkedin.com/in/dominicmendiola", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 267, + "location": "San Antonio, TX", + "screen_name": "DominicMendiola", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "dominic.mendiola", + "profile_use_background_image": false, + "description": "Father. Husband. Racker since 2006. Social Media Team. Owner Dom's Chop Salsa @chopsalsa, https://t.co/ySTEeD6lcz, https://t.co/DoMfz1yk60", + "url": "http://t.co/3hwdF3IqPC", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Sep 04 03:13:51 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", + "favourites_count": 391, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "trevorengstrom", + "in_reply_to_user_id": 15080503, + "in_reply_to_status_id_str": "684515636333051904", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684516227667001344", + "id": 684516227667001344, + "text": "@trevorengstrom @Rackspace Ok good! If anything else pops up and you need a hand...just let us know! We're always happy to help! Thanks!", + "in_reply_to_user_id_str": "15080503", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "trevorengstrom", + "id_str": "15080503", + "id": 15080503, + "indices": [ + 0, + 15 + ], + "name": "Trevor Engstrom" + }, + { + "screen_name": "Rackspace", + "id_str": "26191233", + "id": 26191233, + "indices": [ + 16, + 26 + ], + "name": "Rackspace" + } + ] + }, + "created_at": "Tue Jan 05 23:26:01 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684515636333051904, + "lang": "en" + }, + "default_profile_image": false, + "id": 801712861, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 536, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/801712861/1443214772", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "4508241", + "following": false, + "friends_count": 194, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "langfeld.me", + "url": "http://t.co/FYGU0gVzky", + "expanded_url": "http://langfeld.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 481, + "location": "Rio de Janeiro, Brasil", + "screen_name": "benlangfeld", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "Ben Langfeld", + "profile_use_background_image": true, + "description": "Communications app developer. Mojo Lingo & Adhearsion Foundation. Experimenter and perfectionist.", + "url": "http://t.co/FYGU0gVzky", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Apr 13 15:05:00 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", + "favourites_count": 200, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 3033204133, + "possibly_sensitive": false, + "id_str": "685548188435132416", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "gist.github.com/benlangfeld/18\u2026", + "url": "https://t.co/EYtcS2Vqhk", + "expanded_url": "https://gist.github.com/benlangfeld/181cbb3997eb4236e244", + "indices": [ + 87, + 110 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "honest_update", + "id_str": "3033204133", + "id": 3033204133, + "indices": [ + 0, + 14 + ], + "name": "Honest Status Page" + } + ] + }, + "created_at": "Fri Jan 08 19:46:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "3033204133", + "place": null, + "in_reply_to_screen_name": "honest_update", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685548188435132416, + "text": "@honest_update Our app fell over because our queue was too slow. It's ok, we fixed it: https://t.co/EYtcS2Vqhk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 4508241, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2697, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4508241/1401146387", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "22199970", + "following": false, + "friends_count": 761, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lea.verou.me", + "url": "http://t.co/Q2CdWpNV1q", + "expanded_url": "http://lea.verou.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/324344036/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFBF2", + "profile_link_color": "FF0066", + "geo_enabled": true, + "followers_count": 64139, + "location": "Cambridge, MA", + "screen_name": "LeaVerou", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3585, + "name": "Lea Verou", + "profile_use_background_image": true, + "description": "HCI researcher @MIT_CSAIL, @CSSWG IE, @CSSSecretsBook author, Ex @W3C staff. Made @prismjs @dabblet @prefixfree. I \u2665 standards, code, design, UX, life!", + "url": "http://t.co/Q2CdWpNV1q", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", + "profile_background_color": "FBE4AE", + "created_at": "Fri Feb 27 22:28:59 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", + "favourites_count": 3696, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685359744966590464", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "byteplumbing.net/2016/01/book-r\u2026", + "url": "https://t.co/pfmTTIXCIy", + "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "csssecretsbook", + "id_str": "3262381338", + "id": 3262381338, + "indices": [ + 23, + 38 + ], + "name": "CSS Secrets" + } + ] + }, + "created_at": "Fri Jan 08 07:17:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685359744966590464, + "text": "Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co/pfmTTIXCIy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685574450780192770", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "byteplumbing.net/2016/01/book-r\u2026", + "url": "https://t.co/pfmTTIXCIy", + "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "iiska", + "id_str": "18630451", + "id": 18630451, + "indices": [ + 3, + 9 + ], + "name": "Juhamatti Niemel\u00e4" + }, + { + "screen_name": "csssecretsbook", + "id_str": "3262381338", + "id": 3262381338, + "indices": [ + 34, + 49 + ], + "name": "CSS Secrets" + } + ] + }, + "created_at": "Fri Jan 08 21:31:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685574450780192770, + "text": "RT @iiska: Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 22199970, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/324344036/bg.png", + "statuses_count": 24815, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22199970/1374351780", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2739826012", + "following": false, + "friends_count": 2319, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "matrix.org", + "url": "http://t.co/Rrx4mnMJ5W", + "expanded_url": "http://www.matrix.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4F5A5E", + "geo_enabled": true, + "followers_count": 1227, + "location": "", + "screen_name": "matrixdotorg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 61, + "name": "Matrix", + "profile_use_background_image": false, + "description": "An open standard for decentralised persistent communication. Tweets by @ara4n, @amandinelepape & co.", + "url": "http://t.co/Rrx4mnMJ5W", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Aug 11 10:51:23 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", + "favourites_count": 781, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685552098830880768", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", + "url": "https://t.co/0iV7Uzmaia", + "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", + "indices": [ + 31, + 54 + ] + }, + { + "display_url": "webrtcconference.jp", + "url": "https://t.co/7NnGiq0vCN", + "expanded_url": "http://webrtcconference.jp/", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [ + { + "indices": [ + 69, + 78 + ], + "text": "skywayjs" + } + ], + "user_mentions": [ + { + "screen_name": "TADHack", + "id_str": "2315728231", + "id": 2315728231, + "indices": [ + 11, + 19 + ], + "name": "TADHack" + }, + { + "screen_name": "matrixdotorg", + "id_str": "2739826012", + "id": 2739826012, + "indices": [ + 55, + 68 + ], + "name": "Matrix" + }, + { + "screen_name": "telestax", + "id_str": "266634532", + "id": 266634532, + "indices": [ + 79, + 88 + ], + "name": "TeleStax" + }, + { + "screen_name": "ntt", + "id_str": "1706681", + "id": 1706681, + "indices": [ + 89, + 93 + ], + "name": "Chinmay" + } + ] + }, + "created_at": "Fri Jan 08 20:02:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685552098830880768, + "text": "Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co/7NnGiq0vCN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685553303049076741", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", + "url": "https://t.co/0iV7Uzmaia", + "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", + "indices": [ + 44, + 67 + ] + }, + { + "display_url": "webrtcconference.jp", + "url": "https://t.co/7NnGiq0vCN", + "expanded_url": "http://webrtcconference.jp/", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 82, + 91 + ], + "text": "skywayjs" + } + ], + "user_mentions": [ + { + "screen_name": "TADHack", + "id_str": "2315728231", + "id": 2315728231, + "indices": [ + 3, + 11 + ], + "name": "TADHack" + }, + { + "screen_name": "TADHack", + "id_str": "2315728231", + "id": 2315728231, + "indices": [ + 24, + 32 + ], + "name": "TADHack" + }, + { + "screen_name": "matrixdotorg", + "id_str": "2739826012", + "id": 2739826012, + "indices": [ + 68, + 81 + ], + "name": "Matrix" + }, + { + "screen_name": "telestax", + "id_str": "266634532", + "id": 266634532, + "indices": [ + 92, + 101 + ], + "name": "TeleStax" + }, + { + "screen_name": "ntt", + "id_str": "1706681", + "id": 1706681, + "indices": [ + 102, + 106 + ], + "name": "Chinmay" + } + ] + }, + "created_at": "Fri Jan 08 20:06:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685553303049076741, + "text": "RT @TADHack: Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2739826012, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1282, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2739826012/1422740800", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "512410920", + "following": false, + "friends_count": 735, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wroteacodeforcloverhitch.blogspot.ca", + "url": "http://t.co/orO5dwZcHv", + "expanded_url": "http://wroteacodeforcloverhitch.blogspot.ca/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "80042B", + "geo_enabled": false, + "followers_count": 912, + "location": "Calgary, Alberta", + "screen_name": "gbhorwood", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Grant Horwood", + "profile_use_background_image": true, + "description": "Lead developer Cloverhitch Tech in Calgary, AB. I like clever code, verbose documentation, fast bicycles and questionable homebrew.", + "url": "http://t.co/orO5dwZcHv", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", + "profile_background_color": "ABB8C2", + "created_at": "Fri Mar 02 20:19:53 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", + "favourites_count": 1533, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "meejah", + "in_reply_to_user_id": 13055372, + "in_reply_to_status_id_str": "685565777680859136", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685566263142187008", + "id": 685566263142187008, + "text": "@meejah yeah. i have a \"bob has a bug\" issue. what bug? when? last name? no one can say... \n\ngrep -irn \"bob\" ./*", + "in_reply_to_user_id_str": "13055372", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "meejah", + "id_str": "13055372", + "id": 13055372, + "indices": [ + 0, + 7 + ], + "name": "meejah" + } + ] + }, + "created_at": "Fri Jan 08 20:58:28 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685565777680859136, + "lang": "en" + }, + "default_profile_image": false, + "id": 512410920, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2309, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/512410920/1398348433", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "65583", + "following": false, + "friends_count": 654, + "entities": { + "description": { + "urls": [ + { + "display_url": "OSMIhelp.org", + "url": "http://t.co/skQU77s3rk", + "expanded_url": "http://OSMIhelp.org", + "indices": [ + 83, + 105 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "funkatron.com", + "url": "http://t.co/Y4o3XtlP6R", + "expanded_url": "http://funkatron.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90616269/funbike.png", + "notifications": false, + "profile_sidebar_fill_color": "B8B8B8", + "profile_link_color": "660000", + "geo_enabled": false, + "followers_count": 8751, + "location": "West Lafayette, IN, USA", + "screen_name": "funkatron", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 773, + "name": "Ed Finkler", + "profile_use_background_image": false, + "description": "Dork, Dad, JS, PHP & Python feller. Lead Dev @GraphStoryCo. Mental Health advocate http://t.co/skQU77s3rk. 1/2 of @dev_hell podcast. See also @funkalinks", + "url": "http://t.co/Y4o3XtlP6R", + "profile_text_color": "424141", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Dec 14 00:31:16 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", + "favourites_count": 8512, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jclermont", + "in_reply_to_user_id": 16358696, + "in_reply_to_status_id_str": "685606121604681729", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685609221245763585", + "id": 685609221245763585, + "text": "@jclermont when I read this I had to say that out loud", + "in_reply_to_user_id_str": "16358696", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jclermont", + "id_str": "16358696", + "id": 16358696, + "indices": [ + 0, + 10 + ], + "name": "Joel Clermont" + } + ] + }, + "created_at": "Fri Jan 08 23:49:11 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685606121604681729, + "lang": "en" + }, + "default_profile_image": false, + "id": 65583, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90616269/funbike.png", + "statuses_count": 84078, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/65583/1438612109", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "396241682", + "following": false, + "friends_count": 322, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mariemosley.com/about", + "url": "https://t.co/BppFkRlCWu", + "expanded_url": "https://www.mariemosley.com/about", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "009CA2", + "geo_enabled": true, + "followers_count": 1098, + "location": "", + "screen_name": "MMosley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "name": "Marie Mosley", + "profile_use_background_image": false, + "description": "Look out honey, 'cause I'm using technology // Part of Team @CodePen", + "url": "https://t.co/BppFkRlCWu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", + "profile_background_color": "01E6EF", + "created_at": "Sat Oct 22 23:58:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", + "favourites_count": 10411, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jaynawallace", + "in_reply_to_user_id": 78213, + "in_reply_to_status_id_str": "685594363007746048", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685602091553959936", + "id": 685602091553959936, + "text": "@jaynawallace I will join your squad \ud83d\udc6f what's you're name on there?", + "in_reply_to_user_id_str": "78213", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jaynawallace", + "id_str": "78213", + "id": 78213, + "indices": [ + 0, + 13 + ], + "name": "\u02d7\u02cf\u02cb jayna wallace \u02ce\u02ca" + } + ] + }, + "created_at": "Fri Jan 08 23:20:51 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685594363007746048, + "lang": "en" + }, + "default_profile_image": false, + "id": 396241682, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3204, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/396241682/1430082364", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3202399565", + "following": false, + "friends_count": 26, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 32, + "location": "De Cymru", + "screen_name": "KevTWondersheep", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Kevin Smith", + "profile_use_background_image": true, + "description": "@DefinitiveKev pretending to be non-techie. May contain very very bad Welsh.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Apr 24 22:27:37 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", + "favourites_count": 45, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "EmiGarside", + "in_reply_to_user_id": 23923202, + "in_reply_to_status_id_str": "684380251649093632", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684380579673018368", + "id": 684380579673018368, + "text": "@emigarside Droids don't rip people's arms out of their sockets when they lose. Wookies are known to do that.", + "in_reply_to_user_id_str": "23923202", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "EmiGarside", + "id_str": "23923202", + "id": 23923202, + "indices": [ + 0, + 11 + ], + "name": "Dr Emily Garside" + } + ] + }, + "created_at": "Tue Jan 05 14:27:00 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684380251649093632, + "lang": "en" + }, + "default_profile_image": false, + "id": 3202399565, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 71, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3202399565/1429962655", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "606349117", + "following": false, + "friends_count": 1523, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sparxeng.com", + "url": "http://t.co/tfYNlmleOE", + "expanded_url": "http://www.sparxeng.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1980, + "location": "Houston, TX", + "screen_name": "SparxEngineer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 61, + "name": "Sparx Engineering", + "profile_use_background_image": true, + "description": "Engineering consulting company, specializing in embedded devices, custom/mobile/web application development and helping startups bring products to market.", + "url": "http://t.co/tfYNlmleOE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 12 14:10:06 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", + "favourites_count": 16, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685140345215139841", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", + "display_url": "pic.twitter.com/HawyibmcoX", + "id_str": "685140345039024128", + "expanded_url": "http://twitter.com/SparxEngineer/status/685140345215139841/photo/1", + "id": 685140345039024128, + "url": "https://t.co/HawyibmcoX" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z8fXA2", + "url": "https://t.co/LzWHfSO5Ux", + "expanded_url": "http://buff.ly/1Z8fXA2", + "indices": [ + 66, + 89 + ] + } + ], + "hashtags": [ + { + "indices": [ + 90, + 95 + ], + "text": "tech" + }, + { + "indices": [ + 96, + 104 + ], + "text": "fitness" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 16:46:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685140345215139841, + "text": "New lawsuit: Fitbit heart rate tracking is dangerously inaccurate https://t.co/LzWHfSO5Ux #tech #fitness https://t.co/HawyibmcoX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 606349117, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1734, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/606349117/1391191180", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "84107122", + "following": false, + "friends_count": 1570, + "entities": { + "description": { + "urls": [ + { + "display_url": "themakersofthings.co.uk", + "url": "http://t.co/f5R61wCtSs", + "expanded_url": "http://themakersofthings.co.uk", + "indices": [ + 73, + 95 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "anne.holiday", + "url": "http://t.co/pxLXGQsvL6", + "expanded_url": "http://anne.holiday/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 908, + "location": "Brooklyn, NY", + "screen_name": "anneholiday", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "Anne Holiday", + "profile_use_background_image": true, + "description": "Filmmaker. Phototaker. Maker of The Makers of Things documentary series: http://t.co/f5R61wCtSs", + "url": "http://t.co/pxLXGQsvL6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Oct 21 16:05:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", + "favourites_count": 3006, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685464406453530624", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "newyorker.com/magazine/2015/\u2026", + "url": "https://t.co/qw5SReTvl6", + "expanded_url": "http://www.newyorker.com/magazine/2015/01/19/lets-get-drinks", + "indices": [ + 5, + 28 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:13:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685464406453530624, + "text": "Lol: https://t.co/qw5SReTvl6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 84107122, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 4627, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84107122/1393641836", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3033725946", + "following": false, + "friends_count": 1422, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bit.ly/1vmzDHa", + "url": "http://t.co/27akJdS8AO", + "expanded_url": "http://bit.ly/1vmzDHa", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2047, + "location": "", + "screen_name": "WebRRTC", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 58, + "name": "WebRTC", + "profile_use_background_image": true, + "description": "Live content curated by top Web Real-Time Communication (WebRTC) Influencer", + "url": "http://t.co/27akJdS8AO", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sat Feb 21 02:29:20 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685546590354853888", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 494, + "h": 877, + "resize": "fit" + }, + "medium": { + "w": 494, + "h": 877, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 603, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOM_bdUsAAMT4R.jpg", + "type": "photo", + "indices": [ + 94, + 117 + ], + "media_url": "http://pbs.twimg.com/media/CYOM_bdUsAAMT4R.jpg", + "display_url": "pic.twitter.com/picKmDTHQn", + "id_str": "685546589620842496", + "expanded_url": "http://twitter.com/WebRRTC/status/685546590354853888/photo/1", + "id": 685546589620842496, + "url": "https://t.co/picKmDTHQn" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "rightrelevance.com/search/article\u2026", + "url": "https://t.co/c6sQyr5IUN", + "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=85fcf644b457069e3387a3d83f0cf5cf83d07a51&query=webrtc&taccount=webrrtc", + "indices": [ + 70, + 93 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:40:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685546590354853888, + "text": "AT&T Developer Summit 2016 \u2013 Let Me Tell You a Story about WebRTC https://t.co/c6sQyr5IUN https://t.co/picKmDTHQn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "RRPostingApp" + }, + "default_profile_image": false, + "id": 3033725946, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2873, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15518306", + "following": false, + "friends_count": 428, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "langille.org", + "url": "http://t.co/uBwYd3PW71", + "expanded_url": "http://langille.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1242, + "location": "near Philadelphia", + "screen_name": "DLangille", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 91, + "name": "Dan Langille", + "profile_use_background_image": true, + "description": "Mountain biker. Software Dev. Sysadmin. Websites & databases. Conference organizer.", + "url": "http://t.co/uBwYd3PW71", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", + "profile_background_color": "C6E2EE", + "created_at": "Mon Jul 21 17:56:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", + "favourites_count": 630, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685554984306360320", + "id": 685554984306360320, + "text": "Current status: adding my user (not me) to gmail. I feel all grown up....", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:13:39 +0000 2016", + "source": "Twitterrific for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15518306, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", + "statuses_count": 12127, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15518306/1406551613", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14420513", + "following": false, + "friends_count": 346, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fromonesrc.com", + "url": "https://t.co/Lez165p0gY", + "expanded_url": "http://fromonesrc.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 205, + "location": "Lansdale, PA", + "screen_name": "fromonesrc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Adam Ochonicki", + "profile_use_background_image": true, + "description": "Redemption? Sure. But in the end, he's just another dead rat in a garbage pail behind a Chinese restaurant.", + "url": "https://t.co/Lez165p0gY", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Apr 17 13:32:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", + "favourites_count": 475, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685595808402681856", + "id": 685595808402681856, + "text": "OH: \"actually, it\u2019s nice getting some time to pay down tech debt\u2026 after spending so long generating it\"\n\nThat rings so true for me.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:55:53 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14420513, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 6413, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14420513/1449525270", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2292633427", + "following": false, + "friends_count": 3204, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "uk.linkedin.com/in/jmgcraig", + "url": "https://t.co/q8exdl06ab", + "expanded_url": "https://uk.linkedin.com/in/jmgcraig", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 2839, + "location": "London", + "screen_name": "AttackyChappie", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 83, + "name": "Graeme Craig", + "profile_use_background_image": false, + "description": "Recruitment Manager @6DegreesGroup | #UC #Connectivity #DC #Cloud | Passionate #PS4 Gamer, Cyclist, Foodie, Lover of #Lego #EnglishBullDogs & my #Wife", + "url": "https://t.co/q8exdl06ab", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Jan 15 12:23:08 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", + "favourites_count": 3, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685096224463126528", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mspalliance.com/cloud-computin\u2026", + "url": "https://t.co/Aeibg4EwGl", + "expanded_url": "http://mspalliance.com/cloud-computing-managed-services-forecast-for-2016/", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "arjun077", + "id_str": "51468247", + "id": 51468247, + "indices": [ + 85, + 94 + ], + "name": "Arjun jain" + } + ] + }, + "created_at": "Thu Jan 07 13:50:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685096224463126528, + "text": "Cloud Computing & Managed Services Forecast for 2016 https://t.co/Aeibg4EwGl via @arjun077", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2292633427, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 392, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2292633427/1424354218", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "42909423", + "following": false, + "friends_count": 284, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 198, + "location": "Raleigh, NC", + "screen_name": "__id__", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Dmytro Ilchenko", + "profile_use_background_image": true, + "description": "I'm not a geek, i'm a level 12 paladin. Yak barber. Casting special ops magic to make things work @LivingSocial.", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed May 27 15:48:15 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", + "favourites_count": 1304, + "status": { + "retweet_count": 133, + "retweeted_status": { + "retweet_count": 133, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681874873539366912", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "danluu.com/wat/", + "url": "https://t.co/9DLKdXk34s", + "expanded_url": "http://danluu.com/wat/", + "indices": [ + 98, + 121 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 29 16:30:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681874873539366912, + "text": "What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 115, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683752055920553986", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "danluu.com/wat/", + "url": "https://t.co/9DLKdXk34s", + "expanded_url": "http://danluu.com/wat/", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "danluu", + "id_str": "18275645", + "id": 18275645, + "indices": [ + 3, + 10 + ], + "name": "Dan Luu" + } + ] + }, + "created_at": "Sun Jan 03 20:49:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683752055920553986, + "text": "RT @danluu: What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 42909423, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 2800, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/42909423/1398263672", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13166972", + "following": false, + "friends_count": 1776, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dariusdunlap.com", + "url": "https://t.co/Dmpe1rzbsb", + "expanded_url": "https://dariusdunlap.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1442, + "location": "Half Moon Bay, CA", + "screen_name": "dariusdunlap", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 85, + "name": "Darius Dunlap", + "profile_use_background_image": true, + "description": "Tech guy, Founder at Syncopat; Square Peg Foundation. Executive Director at Silicon Valley Innovation Institute, Advising startups & growing companies", + "url": "https://t.co/Dmpe1rzbsb", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Wed Feb 06 17:04:20 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", + "favourites_count": 1393, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684909434443706368", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "squarepegfoundation.org/2016/01/a-jour\u2026", + "url": "https://t.co/tZ6YYzQZKS", + "expanded_url": "https://www.squarepegfoundation.org/2016/01/a-journey-together/", + "indices": [ + 74, + 97 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 01:28:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -124.482003, + 32.528832 + ], + [ + -114.131212, + 32.528832 + ], + [ + -114.131212, + 42.009519 + ], + [ + -124.482003, + 42.009519 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "California, USA", + "id": "fbd6d2f5a4e4a15e", + "name": "California" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684909434443706368, + "text": "Our journey, finding one another and creating and building Square Pegs. ( https://t.co/tZ6YYzQZKS )", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 13166972, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 4660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13166972/1398466705", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "12530", + "following": false, + "friends_count": 955, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hackdiary.com/about/", + "url": "http://t.co/qmocio1ti6", + "expanded_url": "http://www.hackdiary.com/about/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF3C8", + "profile_link_color": "857025", + "geo_enabled": true, + "followers_count": 6983, + "location": "San Francisco CA, USA", + "screen_name": "mattb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 453, + "name": "Matt Biddulph", + "profile_use_background_image": true, + "description": "Currently: @thingtonhq. Previously: BBC, Dopplr, Nokia.", + "url": "http://t.co/qmocio1ti6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", + "profile_background_color": "FECF1F", + "created_at": "Wed Nov 15 15:48:50 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", + "favourites_count": 4258, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685332843334086657", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ift.tt/1mJgTP1", + "url": "https://t.co/VG2Bfr3epg", + "expanded_url": "http://ift.tt/1mJgTP1", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 05:30:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685332843334086657, + "text": "David Bowie - Blackstar https://t.co/VG2Bfr3epg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "IFTTT" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685333814298595329", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ift.tt/1mJgTP1", + "url": "https://t.co/VG2Bfr3epg", + "expanded_url": "http://ift.tt/1mJgTP1", + "indices": [ + 45, + 68 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "spotifynmfeedus", + "id_str": "2553073892", + "id": 2553073892, + "indices": [ + 3, + 19 + ], + "name": "spotifynewmusicUS" + } + ] + }, + "created_at": "Fri Jan 08 05:34:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685333814298595329, + "text": "RT @spotifynmfeedus: David Bowie - Blackstar https://t.co/VG2Bfr3epg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 12530, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", + "statuses_count": 13061, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12530/1398198928", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "239453824", + "following": false, + "friends_count": 32, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thington.com", + "url": "http://t.co/GgjWLxjLHD", + "expanded_url": "http://thington.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "FF6958", + "geo_enabled": false, + "followers_count": 2204, + "location": "San Francisco", + "screen_name": "thingtonhq", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 60, + "name": "Thington", + "profile_use_background_image": false, + "description": "We're building a new way to interact with a world of connected things!", + "url": "http://t.co/GgjWLxjLHD", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", + "profile_background_color": "F5F8FA", + "created_at": "Mon Jan 17 17:21:39 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", + "favourites_count": 33, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685263027688452096", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wired.com/2016/01/americ\u2026", + "url": "https://t.co/ZydSbrfxfe", + "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "stamen", + "id_str": "2067201", + "id": 2067201, + "indices": [ + 45, + 52 + ], + "name": "Stamen Design" + } + ] + }, + "created_at": "Fri Jan 08 00:53:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685263027688452096, + "text": "Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685277708821991424", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wired.com/2016/01/americ\u2026", + "url": "https://t.co/ZydSbrfxfe", + "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tomcoates", + "id_str": "12514", + "id": 12514, + "indices": [ + 3, + 13 + ], + "name": "Tom Coates" + }, + { + "screen_name": "stamen", + "id_str": "2067201", + "id": 2067201, + "indices": [ + 60, + 67 + ], + "name": "Stamen Design" + } + ] + }, + "created_at": "Fri Jan 08 01:51:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685277708821991424, + "text": "RT @tomcoates: Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 239453824, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 299, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "740983", + "following": false, + "friends_count": 753, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "leade.rs", + "url": "https://t.co/K0dvCXW6PW", + "expanded_url": "http://leade.rs", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "CDCECA", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 126939, + "location": "San Francisco", + "screen_name": "loic", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8209, + "name": "Loic Le Meur", + "profile_use_background_image": false, + "description": "starting leade.rs", + "url": "https://t.co/K0dvCXW6PW", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", + "profile_background_color": "CFB895", + "created_at": "Thu Feb 01 00:10:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", + "favourites_count": 816, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "_Neiluj", + "in_reply_to_user_id": 76334385, + "in_reply_to_status_id_str": "685502288232878084", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685524189436981248", + "id": 685524189436981248, + "text": "@_Neiluj passe ton email je vais t'ajouter manuellement. Tu as regard\u00e9 spam?", + "in_reply_to_user_id_str": "76334385", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "_Neiluj", + "id_str": "76334385", + "id": 76334385, + "indices": [ + 0, + 8 + ], + "name": "Julien" + } + ] + }, + "created_at": "Fri Jan 08 18:11:17 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685502288232878084, + "lang": "fr" + }, + "default_profile_image": false, + "id": 740983, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", + "statuses_count": 52911, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/740983/1447869110", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "44196397", + "following": false, + "friends_count": 50, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3189339, + "location": "1 AU", + "screen_name": "elonmusk", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 24233, + "name": "Elon Musk", + "profile_use_background_image": true, + "description": "Tesla, SpaceX, SolarCity & PayPal", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", + "favourites_count": 224, + "status": { + "retweet_count": 881, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683333695307034625", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "en.m.wikipedia.org/wiki/The_Machi\u2026", + "url": "https://t.co/0Dl4l2t6FH", + "expanded_url": "https://en.m.wikipedia.org/wiki/The_Machine_Stops", + "indices": [ + 63, + 86 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 02 17:07:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683333695307034625, + "text": "Worth reading The Machine Stops, an old story by E. M. Forster https://t.co/0Dl4l2t6FH", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3002, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 44196397, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", + "statuses_count": 1513, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1354486475", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14623181", + "following": false, + "friends_count": 505, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kelly-dunn.me", + "url": "http://t.co/AeKQOTxEx8", + "expanded_url": "http://kelly-dunn.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 490, + "location": "Seattle", + "screen_name": "kellyleland", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "kelly", + "profile_use_background_image": true, + "description": "Synthesizers, Various Engineering, and Avant Garde Nonsense | bit cruncher by trade, artist after hours", + "url": "http://t.co/AeKQOTxEx8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri May 02 06:41:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", + "favourites_count": 8251, + "status": { + "retweet_count": 9663, + "retweeted_status": { + "retweet_count": 9663, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685188701907988480", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 245, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 739, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 433, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "type": "photo", + "indices": [ + 77, + 100 + ], + "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "display_url": "pic.twitter.com/pEaIfJMr9T", + "id_str": "685188690730192896", + "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", + "id": 685188690730192896, + "url": "https://t.co/pEaIfJMr9T" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1Jx7CnA", + "url": "https://t.co/SxHo05b7Yz", + "expanded_url": "http://bit.ly/1Jx7CnA", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 19:58:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685188701907988480, + "text": "The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8474, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685198486355095552", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 245, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 739, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 433, + "resize": "fit" + } + }, + "source_status_id_str": "685188701907988480", + "url": "https://t.co/pEaIfJMr9T", + "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "source_user_id_str": "1630896181", + "id_str": "685188690730192896", + "id": 685188690730192896, + "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "type": "photo", + "indices": [ + 91, + 114 + ], + "source_status_id": 685188701907988480, + "source_user_id": 1630896181, + "display_url": "pic.twitter.com/pEaIfJMr9T", + "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1Jx7CnA", + "url": "https://t.co/SxHo05b7Yz", + "expanded_url": "http://bit.ly/1Jx7CnA", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "vicenews", + "id_str": "1630896181", + "id": 1630896181, + "indices": [ + 3, + 12 + ], + "name": "VICE News" + } + ] + }, + "created_at": "Thu Jan 07 20:37:04 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685198486355095552, + "text": "RT @vicenews: The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14623181, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 14314, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623181/1421113433", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "995848285", + "following": false, + "friends_count": 90, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nginx.com", + "url": "http://t.co/ahz848qfrm", + "expanded_url": "http://nginx.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 24532, + "location": "San Francisco", + "screen_name": "nginx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 452, + "name": "NGINX, Inc.", + "profile_use_background_image": true, + "description": "News from NGINX, Inc., the company providing products and services on top of its renowned open source software nginx. For news about NGINX check @nginxorg", + "url": "http://t.co/ahz848qfrm", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Dec 07 20:50:31 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", + "favourites_count": 451, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685570724019453952", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1K3bA2i", + "url": "https://t.co/mUGlFylkrn", + "expanded_url": "http://bit.ly/1K3bA2i", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [ + { + "indices": [ + 33, + 42 + ], + "text": "software" + } + ], + "user_mentions": [ + { + "screen_name": "InformationAge", + "id_str": "19603444", + "id": 19603444, + "indices": [ + 113, + 128 + ], + "name": "Information Age" + } + ] + }, + "created_at": "Fri Jan 08 21:16:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685570724019453952, + "text": "Everything old is new again: how #software development will come full circle in 2016 https://t.co/mUGlFylkrn via @InformationAge", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 995848285, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", + "statuses_count": 1960, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/995848285/1443504328", + "is_translator": false + }, + { + "time_zone": "Nairobi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 10800, + "id_str": "2975078105", + "following": false, + "friends_count": 12, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "iojs.org", + "url": "https://t.co/25rC8pIJ21", + "expanded_url": "https://iojs.org/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 13924, + "location": "Global", + "screen_name": "official_iojs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 414, + "name": "io.js", + "profile_use_background_image": true, + "description": "Bringing ES6 to the Node Community!", + "url": "https://t.co/25rC8pIJ21", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 12 18:18:27 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", + "favourites_count": 1167, + "status": { + "retweet_count": 26, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "656505348208001025", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/evangel\u2026", + "url": "https://t.co/pE0BDmhyAq", + "expanded_url": "https://github.com/nodejs/evangelism/issues/179", + "indices": [ + 20, + 43 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Oct 20 16:20:46 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 656505348208001025, + "text": "Here we go again ;) https://t.co/pE0BDmhyAq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 22, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2975078105, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 341, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2975078105/1426190219", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "30923", + "following": false, + "friends_count": 744, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "randsinrepose.com", + "url": "http://t.co/wHTKjCyuT3", + "expanded_url": "http://www.randsinrepose.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 35290, + "location": "los gatos, ca", + "screen_name": "rands", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2264, + "name": "rands", + "profile_use_background_image": true, + "description": "reposing about werewolves, pens, and writing.", + "url": "http://t.co/wHTKjCyuT3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", + "profile_background_color": "022330", + "created_at": "Wed Nov 29 19:16:11 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", + "favourites_count": 154, + "status": { + "retweet_count": 40, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685550447717789696", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/briankesinger/", + "url": "https://t.co/fMDwiiT2kx", + "expanded_url": "https://www.instagram.com/briankesinger/", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:55:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685550447717789696, + "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 30, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 30923, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 11655, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/30923/1442198088", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "7387992", + "following": false, + "friends_count": 194, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "justincampbell.me", + "url": "https://t.co/oY5xbJv61R", + "expanded_url": "http://justincampbell.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2634657/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "028E9B", + "geo_enabled": true, + "followers_count": 952, + "location": "Philadelphia, PA", + "screen_name": "justincampbell", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 52, + "name": "Justin Campbell", + "profile_use_background_image": true, + "description": "@hashicorp @turingcool @cs_bookclub @sc_philly @paperswelovephl", + "url": "https://t.co/oY5xbJv61R", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", + "profile_background_color": "FF7700", + "created_at": "Wed Jul 11 00:40:57 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "028E9B", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", + "favourites_count": 2238, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -80.519851, + 39.719801 + ], + [ + -74.689517, + 39.719801 + ], + [ + -74.689517, + 42.516072 + ], + [ + -80.519851, + 42.516072 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Pennsylvania, USA", + "id": "dd9c503d6c35364b", + "name": "Pennsylvania" + }, + "in_reply_to_screen_name": "McElaney", + "in_reply_to_user_id": 249150277, + "in_reply_to_status_id_str": "684900893997821952", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684901313788948480", + "id": 684901313788948480, + "text": "@McElaney Slack \u261c(\uff9f\u30ee\uff9f\u261c)", + "in_reply_to_user_id_str": "249150277", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "McElaney", + "id_str": "249150277", + "id": 249150277, + "indices": [ + 0, + 9 + ], + "name": "Brian E. McElaney" + } + ] + }, + "created_at": "Thu Jan 07 00:56:12 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684900893997821952, + "lang": "ja" + }, + "default_profile_image": false, + "id": 7387992, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2634657/bg.gif", + "statuses_count": 8351, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7387992/1433941401", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "778518", + "following": false, + "friends_count": 397, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "progrium.com", + "url": "http://t.co/PviVbZYkA3", + "expanded_url": "http://progrium.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 6415, + "location": "Austin, TX", + "screen_name": "progrium", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 357, + "name": "Jeff Lindsay", + "profile_use_background_image": true, + "description": "Systems. Metal. Platforms. Design. Creator: Dokku, Webhooks, RequestBin, Hacker Dojo, Localtunnel, SuperHappyDevHouse. Founder: @gliderlabs", + "url": "http://t.co/PviVbZYkA3", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Sun Feb 18 09:41:22 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", + "favourites_count": 1488, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "biphenyl", + "in_reply_to_user_id": 11772912, + "in_reply_to_status_id_str": "685543834588033024", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685543988443516928", + "id": 685543988443516928, + "text": "@biphenyl you're not Slacking enough", + "in_reply_to_user_id_str": "11772912", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "biphenyl", + "id_str": "11772912", + "id": 11772912, + "indices": [ + 0, + 9 + ], + "name": "Matt Mechtley" + } + ] + }, + "created_at": "Fri Jan 08 19:29:58 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685543834588033024, + "lang": "en" + }, + "default_profile_image": false, + "id": 778518, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 11528, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/778518/1439089812", + "is_translator": false + }, + { + "time_zone": "Buenos Aires", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "77909615", + "following": false, + "friends_count": 2319, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tryolabs.com", + "url": "https://t.co/yDkqOVMoPH", + "expanded_url": "http://www.tryolabs.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 11880, + "location": "San Francisco | Uruguay", + "screen_name": "tryolabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 376, + "name": "Tryolabs", + "profile_use_background_image": true, + "description": "Hi-tech Boutique Dev Shop focused on SV & NYC Startups. Python ecosystem, JS, iOS, NLP & Machine Learning specialists. Creators of @MonkeyLearn.", + "url": "https://t.co/yDkqOVMoPH", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 28 03:09:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", + "favourites_count": 20614, + "status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685579492614631428", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 96, + "resize": "fit" + }, + "large": { + "w": 800, + "h": 226, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 169, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", + "display_url": "pic.twitter.com/Fk3brZmoTf", + "id_str": "685579492513955840", + "expanded_url": "http://twitter.com/tryolabs/status/685579492614631428/photo/1", + "id": 685579492513955840, + "url": "https://t.co/Fk3brZmoTf" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1ZfpACc", + "url": "https://t.co/VNzbh6CpJA", + "expanded_url": "http://buff.ly/1ZfpACc", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [ + { + "indices": [ + 43, + 59 + ], + "text": "MachineLearning" + } + ], + "user_mentions": [ + { + "screen_name": "genekogan", + "id_str": "51757957", + "id": 51757957, + "indices": [ + 94, + 104 + ], + "name": "Gene Kogan" + } + ] + }, + "created_at": "Fri Jan 08 21:51:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685579492614631428, + "text": "Very interesting & engaging article on #MachineLearning + Art: https://t.co/VNzbh6CpJA by @genekogan https://t.co/Fk3brZmoTf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 77909615, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", + "statuses_count": 1400, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/77909615/1437011861", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "111767172", + "following": false, + "friends_count": 70, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 313, + "location": "Philadelphia, PA", + "screen_name": "nick_kapur", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Nick Kapur", + "profile_use_background_image": true, + "description": "Historian of modern Japan and East Asia. I only tweet extremely interesting things. No photos of my lunch and no selfies, not ever.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Feb 06 02:34:40 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", + "favourites_count": 6736, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685494137613754368", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/LIJdheem1h", + "url": "https://t.co/LIJdheem1h", + "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", + "indices": [ + 12, + 35 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:11:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685494137613754368, + "text": "i love cats https://t.co/LIJdheem1h", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685519035979677696", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/LIJdheem1h", + "url": "https://t.co/LIJdheem1h", + "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", + "indices": [ + 25, + 48 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "on3ness", + "id_str": "124548700", + "id": 124548700, + "indices": [ + 3, + 11 + ], + "name": "br\u00f8seph" + } + ] + }, + "created_at": "Fri Jan 08 17:50:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685519035979677696, + "text": "RT @on3ness: i love cats https://t.co/LIJdheem1h", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 111767172, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4392, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14247654", + "following": false, + "friends_count": 5000, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "contino.co.uk", + "url": "http://t.co/7ioXHyid9F", + "expanded_url": "http://www.contino.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2528, + "location": "London, UK", + "screen_name": "benjaminwootton", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 141, + "name": "Benjamin Wootton", + "profile_use_background_image": true, + "description": "Co-Founder of Contino, a DevOps & Continuous Delivery consultancy from the UK", + "url": "http://t.co/7ioXHyid9F", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Fri Mar 28 22:44:56 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", + "favourites_count": 1063, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683332087588503552", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "medium": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 270, + "h": 200, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "type": "photo", + "indices": [ + 117, + 140 + ], + "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "display_url": "pic.twitter.com/DabsPkV0tE", + "id_str": "683332087483641857", + "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", + "id": 683332087483641857, + "url": "https://t.co/DabsPkV0tE" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1RzZhSD", + "url": "https://t.co/qLPUnqP9Ly", + "expanded_url": "http://buff.ly/1RzZhSD", + "indices": [ + 93, + 116 + ] + } + ], + "hashtags": [ + { + "indices": [ + 30, + 37 + ], + "text": "DevOps" + } + ], + "user_mentions": [ + { + "screen_name": "paul", + "id_str": "1140", + "id": 1140, + "indices": [ + 86, + 91 + ], + "name": "Paul Rollo" + } + ] + }, + "created_at": "Sat Jan 02 17:00:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683332087588503552, + "text": "\"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly https://t.co/DabsPkV0tE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685368907327270912", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "medium": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 270, + "h": 200, + "resize": "fit" + } + }, + "source_status_id_str": "683332087588503552", + "url": "https://t.co/DabsPkV0tE", + "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "source_user_id_str": "398365705", + "id_str": "683332087483641857", + "id": 683332087483641857, + "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 683332087588503552, + "source_user_id": 398365705, + "display_url": "pic.twitter.com/DabsPkV0tE", + "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1RzZhSD", + "url": "https://t.co/qLPUnqP9Ly", + "expanded_url": "http://buff.ly/1RzZhSD", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [ + { + "indices": [ + 48, + 55 + ], + "text": "DevOps" + } + ], + "user_mentions": [ + { + "screen_name": "manupaisable", + "id_str": "398365705", + "id": 398365705, + "indices": [ + 3, + 16 + ], + "name": "Manuel Pais" + }, + { + "screen_name": "paul", + "id_str": "1140", + "id": 1140, + "indices": [ + 104, + 109 + ], + "name": "Paul Rollo" + } + ] + }, + "created_at": "Fri Jan 08 07:54:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685368907327270912, + "text": "RT @manupaisable: \"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly http\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 14247654, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2827, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "35242212", + "following": false, + "friends_count": 201, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 95, + "location": "Boston, MA", + "screen_name": "macdiesel412", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Brian Beggs", + "profile_use_background_image": false, + "description": "I write software and think BIG. XMPP, MongoDB, NoSQL, Data Analytics, cycling, skiing, edX", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sat Apr 25 16:00:27 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", + "favourites_count": 23, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Expedia", + "in_reply_to_user_id": 17365848, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677166680196390913", + "id": 677166680196390913, + "text": "@Expedia Now your support hung up on me, won't let me change flight. What gives? This service is awful!", + "in_reply_to_user_id_str": "17365848", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Expedia", + "id_str": "17365848", + "id": 17365848, + "indices": [ + 0, + 8 + ], + "name": "Expedia" + } + ] + }, + "created_at": "Wed Dec 16 16:41:32 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 35242212, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 420, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14961286", + "following": false, + "friends_count": 948, + "entities": { + "description": { + "urls": [ + { + "display_url": "erinjorichey.com", + "url": "https://t.co/bUIMCWrbnW", + "expanded_url": "http://erinjorichey.com", + "indices": [ + 121, + 144 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "erinjo.xyz", + "url": "https://t.co/zWMM8cNTsz", + "expanded_url": "http://erinjo.xyz", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", + "notifications": false, + "profile_sidebar_fill_color": "E4DACE", + "profile_link_color": "DB2E2E", + "geo_enabled": true, + "followers_count": 2265, + "location": "San Francisco, CA", + "screen_name": "erinjo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 270, + "name": "Erin Jo Richey", + "profile_use_background_image": true, + "description": "Co-founder of @withknown. Information choreographer. User experience strategist. Oregonian. Building an open social web. https://t.co/bUIMCWrbnW", + "url": "https://t.co/zWMM8cNTsz", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", + "profile_background_color": "FCFCFC", + "created_at": "Sat May 31 06:45:28 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", + "favourites_count": 723, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684958057806180352", + "id": 684958057806180352, + "text": "Walking home from the grocery store just now and got pummeled by small hail. \ud83c\udf27\u2614\ufe0f", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 04:41:41 +0000 2016", + "source": "Erin's Idno", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14961286, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", + "statuses_count": 8880, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14961286/1399013710", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "258924364", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyetconf.com", + "url": "http://t.co/8cCQxfuIhl", + "expanded_url": "http://andyetconf.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/285931472/patternpants.png", + "notifications": false, + "profile_sidebar_fill_color": "EBEBEB", + "profile_link_color": "0099B0", + "geo_enabled": false, + "followers_count": 1258, + "location": "October 6\u20138 in Richland, WA", + "screen_name": "AndyetConf", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 87, + "name": "&yetConf", + "profile_use_background_image": true, + "description": "Conf about the intersections of tech, humanity, meaning, & ethics for people who believe the world should be better and are determined to make it so.\n\n\u2014@andyet", + "url": "http://t.co/8cCQxfuIhl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", + "profile_background_color": "202020", + "created_at": "Mon Feb 28 20:09:25 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "757575", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", + "favourites_count": 824, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mmatuzak", + "in_reply_to_user_id": 10749432, + "in_reply_to_status_id_str": "684082741512515584", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684084002504900608", + "id": 684084002504900608, + "text": "@mmatuzak @obensource Yay @ADVUnderground!", + "in_reply_to_user_id_str": "10749432", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mmatuzak", + "id_str": "10749432", + "id": 10749432, + "indices": [ + 0, + 9 + ], + "name": "matuzi" + }, + { + "screen_name": "obensource", + "id_str": "407296703", + "id": 407296703, + "indices": [ + 10, + 21 + ], + "name": "Ben Michel" + }, + { + "screen_name": "ADVUnderground", + "id_str": "2149984081", + "id": 2149984081, + "indices": [ + 26, + 41 + ], + "name": "ADV Underground" + } + ] + }, + "created_at": "Mon Jan 04 18:48:30 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684082741512515584, + "lang": "und" + }, + "default_profile_image": false, + "id": 258924364, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/285931472/patternpants.png", + "statuses_count": 1505, + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "153026017", + "following": false, + "friends_count": 108, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/paulohp", + "url": "https://t.co/TH0JsQaz8h", + "expanded_url": "http://github.com/paulohp", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", + "notifications": false, + "profile_sidebar_fill_color": "FCA241", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 418, + "location": "Belo Horizonte, Brazil", + "screen_name": "paulo_hp", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 19, + "name": "Paulo Pires (\u2310\u25a0_\u25a0)", + "profile_use_background_image": true, + "description": "programmer. @bower team member. hacking listening sertanejo.", + "url": "https://t.co/TH0JsQaz8h", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", + "profile_background_color": "BCCDD6", + "created_at": "Mon Jun 07 14:00:10 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "pt", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", + "favourites_count": 562, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "rodrigo_ea", + "in_reply_to_user_id": 55245797, + "in_reply_to_status_id_str": "685272876338032640", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685276627618689024", + "id": 685276627618689024, + "text": "@rodrigo_ea @ray_ban \u00e9, o customizado :\\ mas o mais triste \u00e9 a falta de comunica\u00e7\u00e3o mesmo. Sabe como \u00e9 n\u00e9.", + "in_reply_to_user_id_str": "55245797", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rodrigo_ea", + "id_str": "55245797", + "id": 55245797, + "indices": [ + 0, + 11 + ], + "name": "Rodrigo Antinarelli" + }, + { + "screen_name": "ray_ban", + "id_str": "234264720", + "id": 234264720, + "indices": [ + 12, + 20 + ], + "name": "Ray-Ban" + } + ] + }, + "created_at": "Fri Jan 08 01:47:34 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685272876338032640, + "lang": "pt" + }, + "default_profile_image": false, + "id": 153026017, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", + "statuses_count": 5668, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/153026017/1433120246", + "is_translator": false + }, + { + "time_zone": "Lisbon", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "6477652", + "following": false, + "friends_count": 807, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "trodrigues.net", + "url": "https://t.co/MEu7qSJfMY", + "expanded_url": "http://trodrigues.net", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": false, + "followers_count": 1919, + "location": "Berlin", + "screen_name": "trodrigues", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 126, + "name": "Tiago Rodrigues", + "profile_use_background_image": false, + "description": "I tweet about things you might not like such as JS, feminism, music, coffee, open source, cats and video games. Semicolon removal expert at Contentful", + "url": "https://t.co/MEu7qSJfMY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Thu May 31 17:09:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", + "favourites_count": 1086, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "marciana", + "in_reply_to_user_id": 1813001, + "in_reply_to_status_id_str": "685501356732510208", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685502766173843456", + "id": 685502766173843456, + "text": "@marciana tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a v", + "in_reply_to_user_id_str": "1813001", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "marciana", + "id_str": "1813001", + "id": 1813001, + "indices": [ + 0, + 9 + ], + "name": "Irrita" + } + ] + }, + "created_at": "Fri Jan 08 16:46:10 +0000 2016", + "source": "Fenix for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685501356732510208, + "lang": "pt" + }, + "default_profile_image": false, + "id": 6477652, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 68450, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6477652/1410026369", + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "10840182", + "following": false, + "friends_count": 88, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mundoopensource.com.br", + "url": "http://t.co/AyVbZvEevz", + "expanded_url": "http://www.mundoopensource.com.br", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 220, + "location": "Canoas, RS", + "screen_name": "mhterres", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Marcelo Terres", + "profile_use_background_image": true, + "description": "Sysadmin Linux, com foco em VoIP e XMPP, f\u00e3 de comics, apreciador de uma boa cerveja e metido a cozinheiro e homebrewer nas horas vagas ;-)", + "url": "http://t.co/AyVbZvEevz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 04 15:18:08 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "pt", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", + "favourites_count": 11, + "status": { + "retweet_count": 18, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 18, + "truncated": false, + "retweeted": false, + "id_str": "684096178456236032", + "id": 684096178456236032, + "text": "Happy 17th birthday, Jabber! #xmpp", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 29, + 34 + ], + "text": "xmpp" + } + ], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 19:36:53 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 17, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "684112189297393665", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 41, + 46 + ], + "text": "xmpp" + } + ], + "user_mentions": [ + { + "screen_name": "ralphm", + "id_str": "2426271", + "id": 2426271, + "indices": [ + 3, + 10 + ], + "name": "Ralph Meijer" + } + ] + }, + "created_at": "Mon Jan 04 20:40:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684112189297393665, + "text": "RT @ralphm: Happy 17th birthday, Jabber! #xmpp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 10840182, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3011, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10840182/1448740364", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "2557527470", + "following": false, + "friends_count": 462, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "opensource.cisco.com", + "url": "https://t.co/XHlFibsKyg", + "expanded_url": "http://opensource.cisco.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 1022, + "location": "", + "screen_name": "TrailsAndTech", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 50, + "name": "Jen Hollingsworth", + "profile_use_background_image": false, + "description": "SW Strategy @ Cisco. Lover of: Tech, #OpenSource, Cloud Stuff, Passionate People & the Outdoors. Haven't met a trail, #CarboPro product or taco I didn't like.", + "url": "https://t.co/XHlFibsKyg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Jun 09 21:07:05 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", + "favourites_count": 2178, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "vCloudernBeer", + "in_reply_to_user_id": 830411028, + "in_reply_to_status_id_str": "685554373628424192", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685560135716966400", + "id": 685560135716966400, + "text": "@vCloudernBeer YES!!!! :)", + "in_reply_to_user_id_str": "830411028", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "vCloudernBeer", + "id_str": "830411028", + "id": 830411028, + "indices": [ + 0, + 14 + ], + "name": "Anthony Chow" + } + ] + }, + "created_at": "Fri Jan 08 20:34:08 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685554373628424192, + "lang": "und" + }, + "default_profile_image": false, + "id": 2557527470, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1371, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2557527470/1405046981", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "227050193", + "following": false, + "friends_count": 524, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "withknown.com", + "url": "http://t.co/qDJMKyeC7F", + "expanded_url": "http://withknown.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "9F111A", + "geo_enabled": false, + "followers_count": 1412, + "location": "San Francisco, CA", + "screen_name": "withknown", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 83, + "name": "Known", + "profile_use_background_image": false, + "description": "Publish on your own site, and share with audiences across the web. Part of @mattervc's third class. #indieweb #reclaimyourdomain", + "url": "http://t.co/qDJMKyeC7F", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", + "profile_background_color": "880000", + "created_at": "Wed Dec 15 19:45:51 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "880000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", + "favourites_count": 558, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "AngeloFrangione", + "in_reply_to_user_id": 334592526, + "in_reply_to_status_id_str": "685557584527376384", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610856613216256", + "id": 685610856613216256, + "text": "@AngeloFrangione We're working on integrating a translation framework. We want everyone to be able to use Known!", + "in_reply_to_user_id_str": "334592526", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AngeloFrangione", + "id_str": "334592526", + "id": 334592526, + "indices": [ + 0, + 16 + ], + "name": "Angelo" + } + ] + }, + "created_at": "Fri Jan 08 23:55:40 +0000 2016", + "source": "Known Stream", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685557584527376384, + "lang": "en" + }, + "default_profile_image": false, + "id": 227050193, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1070, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/227050193/1423650405", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "981101", + "following": false, + "friends_count": 2074, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bengo.is", + "url": "https://t.co/d3tx42Owqt", + "expanded_url": "http://bengo.is", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", + "notifications": false, + "profile_sidebar_fill_color": "333333", + "profile_link_color": "18ADF6", + "geo_enabled": true, + "followers_count": 1033, + "location": "San Francisco, CA", + "screen_name": "bengo", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 81, + "name": "Benjamin Goering", + "profile_use_background_image": true, + "description": "Founding Engineer @Livefyre. Open. Stoic Situationist. \u2665 reading, philosophy, open web, (un)logic, AI, sports, and edm. Kansan gone Cali.", + "url": "https://t.co/d3tx42Owqt", + "profile_text_color": "636363", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", + "profile_background_color": "CCCCCC", + "created_at": "Mon Mar 12 03:55:06 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", + "favourites_count": 964, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685580750448508928", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", + "type": "photo", + "indices": [ + 84, + 107 + ], + "media_url": "http://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", + "display_url": "pic.twitter.com/LTYVklmUyg", + "id_str": "685580750377205760", + "expanded_url": "http://twitter.com/bengo/status/685580750448508928/photo/1", + "id": 685580750377205760, + "url": "https://t.co/LTYVklmUyg" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "itun.es/us/0CoK2.c?i=3\u2026", + "url": "https://t.co/zQ3UB0Dhiy", + "expanded_url": "https://itun.es/us/0CoK2.c?i=359766164", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thenewstack", + "id_str": "2327560616", + "id": 2327560616, + "indices": [ + 71, + 83 + ], + "name": "The New Stack" + } + ] + }, + "created_at": "Fri Jan 08 21:56:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685580750448508928, + "text": "Check out this cool episode: https://t.co/zQ3UB0Dhiy \"Keep Node Weird\" @thenewstack https://t.co/LTYVklmUyg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 981101, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", + "statuses_count": 5799, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/981101/1353910636", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "321162442", + "following": false, + "friends_count": 143, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 26, + "location": "", + "screen_name": "mattyindustries", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Mathew Archibald", + "profile_use_background_image": true, + "description": "Linux Sysadmin at Toyota Australia", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 21 03:43:14 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", + "favourites_count": 44, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "EtihadStadiumAU", + "in_reply_to_user_id": 152837019, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "630298486664097793", + "id": 630298486664097793, + "text": "@EtihadStadiumAU kick to kick still on after #AFLSaintsFreo?", + "in_reply_to_user_id_str": "152837019", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 45, + 59 + ], + "text": "AFLSaintsFreo" + } + ], + "user_mentions": [ + { + "screen_name": "EtihadStadiumAU", + "id_str": "152837019", + "id": 152837019, + "indices": [ + 0, + 16 + ], + "name": "Etihad Stadium" + } + ] + }, + "created_at": "Sun Aug 09 08:44:04 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 321162442, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 39, + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "2402568709", + "following": false, + "friends_count": 17541, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "reeldx.com", + "url": "http://t.co/GqPJuzOYMV", + "expanded_url": "http://www.reeldx.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 21103, + "location": "Vancouver, WA", + "screen_name": "andrewreeldx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 518, + "name": "Andrew Richards", + "profile_use_background_image": true, + "description": "Co-Founder & CTO @ ReelDx, Technologist, Brewer, Runner, Coder", + "url": "http://t.co/GqPJuzOYMV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 22 03:27:50 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", + "favourites_count": 2991, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609079771774976", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/cancergeek/sta\u2026", + "url": "https://t.co/tWEoIh9Mwi", + "expanded_url": "https://twitter.com/cancergeek/status/685571019667423232", + "indices": [ + 42, + 65 + ] + } + ], + "hashtags": [ + { + "indices": [ + 34, + 40 + ], + "text": "jpm16" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:48:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609079771774976, + "text": "Liberate data? That's how we roll #jpm16 https://t.co/tWEoIh9Mwi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2402568709, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3400, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2402568709/1411424123", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14110325", + "following": false, + "friends_count": 1108, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "soundcloud.com/jay-holler", + "url": "https://t.co/Dn5Q3Kk7jo", + "expanded_url": "https://soundcloud.com/jay-holler", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "89C9FA", + "geo_enabled": true, + "followers_count": 1108, + "location": "California, USA", + "screen_name": "jayholler", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Jay Holler", + "profile_use_background_image": false, + "description": "Eventually Sol will expand to consume everything anyone has ever known, created, or recorded.", + "url": "https://t.co/Dn5Q3Kk7jo", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Mon Mar 10 00:14:55 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", + "favourites_count": 17299, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685611207588315136", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/wilkieii/statu\u2026", + "url": "https://t.co/McoC7g0Cbf", + "expanded_url": "https://twitter.com/wilkieii/status/667847111929655296", + "indices": [ + 10, + 33 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:57:04 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685611207588315136, + "text": "I Lol';ed https://t.co/McoC7g0Cbf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 14110325, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", + "statuses_count": 33898, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14110325/1452192763", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "126030998", + "following": false, + "friends_count": 542, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "0xabad1dea.github.io", + "url": "https://t.co/cZmmxZ39G9", + "expanded_url": "http://0xabad1dea.github.io/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 20122, + "location": "@veracode", + "screen_name": "0xabad1dea", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 876, + "name": "Melissa \u2407 \u2b50\ufe0f", + "profile_use_background_image": true, + "description": "Infosec supervillain, insufferable SJW, and twitter witch whose very name causes systems to crash. Fortune favors those who do the math. she/her; I \u2666\ufe0f @m1sp.", + "url": "https://t.co/cZmmxZ39G9", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 24 16:31:05 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", + "favourites_count": 2961, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "WhiteMageSlave", + "in_reply_to_user_id": 90791634, + "in_reply_to_status_id_str": "685584975370956800", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685585721063792641", + "id": 685585721063792641, + "text": "@WhiteMageSlave I went with Percy because I don't like him, after considering \"Evil Ron\" (I know nothing except they're a redhead)", + "in_reply_to_user_id_str": "90791634", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "WhiteMageSlave", + "id_str": "90791634", + "id": 90791634, + "indices": [ + 0, + 15 + ], + "name": "Tam" + } + ] + }, + "created_at": "Fri Jan 08 22:15:48 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685584975370956800, + "lang": "en" + }, + "default_profile_image": false, + "id": 126030998, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", + "statuses_count": 133954, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/126030998/1348018700", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "24718762", + "following": false, + "friends_count": 387, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": false, + "followers_count": 268, + "location": "", + "screen_name": "unixgeekem", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 26, + "name": "Emily Gladstone Cole", + "profile_use_background_image": true, + "description": "UNIX and Security Admin, baseball fan, singer, dancer, actor, voracious reader, student. Opinions are my own and not my employer's.", + "url": null, + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Mon Mar 16 16:23:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", + "favourites_count": 1739, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685593188971642880", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/RobotHugsComic\u2026", + "url": "https://t.co/SbF9JovOfO", + "expanded_url": "https://twitter.com/RobotHugsComic/status/674961985059074048", + "indices": [ + 6, + 29 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:45:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593188971642880, + "text": "This. https://t.co/SbF9JovOfO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 24718762, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "statuses_count": 2163, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/24718762/1364947598", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14071087", + "following": false, + "friends_count": 1254, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C9E6A3", + "profile_link_color": "C200E0", + "geo_enabled": true, + "followers_count": 375, + "location": "New York, NY", + "screen_name": "ineverthink", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "Chris Handy", + "profile_use_background_image": true, + "description": "Devops, Systems thinker, not just technical. Works at @workmarket, formerly @condenast", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", + "profile_background_color": "8A698A", + "created_at": "Mon Mar 03 03:50:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "6A0B8A", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", + "favourites_count": 492, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "skamille", + "in_reply_to_user_id": 24257941, + "in_reply_to_status_id_str": "685106932512854016", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685169500887629824", + "id": 685169500887629824, + "text": "@skamille might want to look into @WorkMarket", + "in_reply_to_user_id_str": "24257941", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "skamille", + "id_str": "24257941", + "id": 24257941, + "indices": [ + 0, + 9 + ], + "name": "Camille Fournier" + }, + { + "screen_name": "WorkMarket", + "id_str": "154696373", + "id": 154696373, + "indices": [ + 34, + 45 + ], + "name": "Work Market" + } + ] + }, + "created_at": "Thu Jan 07 18:41:53 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685106932512854016, + "lang": "en" + }, + "default_profile_image": false, + "id": 14071087, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", + "statuses_count": 2151, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1164839209", + "following": false, + "friends_count": 2, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nodesecurity.io", + "url": "https://t.co/McA4uRwQAL", + "expanded_url": "http://nodesecurity.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 6917, + "location": "", + "screen_name": "nodesecurity", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 295, + "name": "Node.js Security", + "profile_use_background_image": true, + "description": "Advisories, news & libraries focused on Node.js security - Sponsored by @andyet, Organized by @liftsecurity", + "url": "https://t.co/McA4uRwQAL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Feb 10 03:43:44 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", + "favourites_count": 104, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mountain_ghosts", + "in_reply_to_user_id": 13861042, + "in_reply_to_status_id_str": "685190823084986369", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685191592567701504", + "id": 685191592567701504, + "text": "@mountain_ghosts @3rdeden We added the information we received to the top of the advisory. See the linked gist.", + "in_reply_to_user_id_str": "13861042", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mountain_ghosts", + "id_str": "13861042", + "id": 13861042, + "indices": [ + 0, + 16 + ], + "name": "\u2200a: \u223c Sa = 0" + }, + { + "screen_name": "3rdEden", + "id_str": "14350255", + "id": 14350255, + "indices": [ + 17, + 25 + ], + "name": "Arnout Kazemier" + } + ] + }, + "created_at": "Thu Jan 07 20:09:40 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685190823084986369, + "lang": "en" + }, + "default_profile_image": false, + "id": 1164839209, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 356, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2883370235", + "following": false, + "friends_count": 5040, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bit.ly/11hQZa8", + "url": "http://t.co/waaWKCIqia", + "expanded_url": "http://bit.ly/11hQZa8", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7768, + "location": "", + "screen_name": "NodeJSRR", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 113, + "name": "Node JS", + "profile_use_background_image": true, + "description": "Live Content Curated by top Node JS Influencers. Moderated by @hardeepmonty.", + "url": "http://t.co/waaWKCIqia", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Nov 19 00:20:03 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", + "favourites_count": 11, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685542023986712576", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "rightrelevance.com/search/article\u2026", + "url": "https://t.co/EL03TjDFyo", + "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=3a72295be2881af33fce57960cfd5f2e09ee9233&query=node%20js&taccount=nodejsrr", + "indices": [ + 99, + 122 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:22:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685542023986712576, + "text": "Why Node.js is Ideal for the Internet of Things - AngularJS News - AngularJS News - AngularJS News https://t.co/EL03TjDFyo", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "RRPostingApp" + }, + "default_profile_image": false, + "id": 2883370235, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3310, + "is_translator": false + }, + { + "time_zone": "Wellington", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 46800, + "id_str": "136933779", + "following": false, + "friends_count": 360, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dominictarr.com", + "url": "http://t.co/dLMAgM9U90", + "expanded_url": "http://dominictarr.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "404099", + "geo_enabled": true, + "followers_count": 3915, + "location": "Planet Earth", + "screen_name": "dominictarr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 229, + "name": "Dominic Tarr", + "profile_use_background_image": false, + "description": "opinioneer", + "url": "http://t.co/dLMAgM9U90", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", + "profile_background_color": "F0F0F0", + "created_at": "Sun Apr 25 09:11:58 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", + "favourites_count": 1513, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 12241752, + "possibly_sensitive": false, + "id_str": "683456176609083392", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/maxogden/dat/w\u2026", + "url": "https://t.co/qxj2MAOd76", + "expanded_url": "https://github.com/maxogden/dat/wiki/replication-protocols#couchdb", + "indices": [ + 66, + 89 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "denormalize", + "id_str": "12241752", + "id": 12241752, + "indices": [ + 0, + 12 + ], + "name": "maxwell ogden" + } + ] + }, + "created_at": "Sun Jan 03 01:13:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "12241752", + "place": null, + "in_reply_to_screen_name": "denormalize", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683456176609083392, + "text": "@denormalize hey I added some stuff to your data replication wiki\nhttps://t.co/qxj2MAOd76", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 136933779, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6487, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/136933779/1435856217", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "113419064", + "following": false, + "friends_count": 18, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "golang.org", + "url": "http://t.co/C4svVTkUmj", + "expanded_url": "http://golang.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 36532, + "location": "", + "screen_name": "golang", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1020, + "name": "Go", + "profile_use_background_image": true, + "description": "Go will make you love programming again. I promise.", + "url": "http://t.co/C4svVTkUmj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Feb 11 18:04:38 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", + "favourites_count": 203, + "status": { + "retweet_count": 110, + "retweeted_status": { + "retweet_count": 110, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677646473484509186", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 428, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 250, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 142, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "type": "photo", + "indices": [ + 102, + 125 + ], + "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "display_url": "pic.twitter.com/F5t4jUEiRX", + "id_str": "677646437056978944", + "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", + "id": 677646437056978944, + "url": "https://t.co/F5t4jUEiRX" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 94, + 101 + ], + "text": "golang" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Dec 18 00:28:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677646473484509186, + "text": "Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 124, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677681669638373376", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 428, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 250, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 142, + "resize": "fit" + } + }, + "source_status_id_str": "677646473484509186", + "url": "https://t.co/F5t4jUEiRX", + "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "source_user_id_str": "650013", + "id_str": "677646437056978944", + "id": 677646437056978944, + "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "source_status_id": 677646473484509186, + "source_user_id": 650013, + "display_url": "pic.twitter.com/F5t4jUEiRX", + "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 108, + 115 + ], + "text": "golang" + } + ], + "user_mentions": [ + { + "screen_name": "bradfitz", + "id_str": "650013", + "id": 650013, + "indices": [ + 3, + 12 + ], + "name": "Brad Fitzpatrick" + } + ] + }, + "created_at": "Fri Dec 18 02:47:55 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677681669638373376, + "text": "RT @bradfitz: Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 113419064, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1931, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/113419064/1398369112", + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "114477539", + "following": false, + "friends_count": 303, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dribbble.com/stephane_martin", + "url": "http://t.co/2hbatAQEMF", + "expanded_url": "http://dribbble.com/stephane_martin", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2980B9", + "geo_enabled": false, + "followers_count": 2981, + "location": "France", + "screen_name": "stephane_m_", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 115, + "name": "St\u00e9phane Martin", + "profile_use_background_image": false, + "description": "Half human, half geek. Currently Sr product designer at @StackOverflow (former @efounders) I love getting things done, I believe in minimalism and wine.", + "url": "http://t.co/2hbatAQEMF", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", + "profile_background_color": "D7DCE0", + "created_at": "Mon Feb 15 15:07:00 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", + "favourites_count": 540, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 16205746, + "possibly_sensitive": false, + "id_str": "685116838418722816", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 230, + "h": 319, + "resize": "fit" + }, + "medium": { + "w": 230, + "h": 319, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 230, + "h": 319, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", + "type": "photo", + "indices": [ + 50, + 73 + ], + "media_url": "http://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", + "display_url": "pic.twitter.com/1CDvfNJ2it", + "id_str": "685116837076582400", + "expanded_url": "http://twitter.com/stephane_m_/status/685116838418722816/photo/1", + "id": 685116837076582400, + "url": "https://t.co/1CDvfNJ2it" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "alexlmiller", + "id_str": "16205746", + "id": 16205746, + "indices": [ + 0, + 12 + ], + "name": "Alex Miller" + }, + { + "screen_name": "hellohynes", + "id_str": "14475889", + "id": 14475889, + "indices": [ + 13, + 24 + ], + "name": "Joshua Hynes" + } + ] + }, + "created_at": "Thu Jan 07 15:12:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "16205746", + "place": null, + "in_reply_to_screen_name": "alexlmiller", + "in_reply_to_status_id_str": "685111393784233984", + "truncated": false, + "id": 685116838418722816, + "text": "@alexlmiller @hellohynes Wasn't disappointed too: https://t.co/1CDvfNJ2it", + "coordinates": null, + "in_reply_to_status_id": 685111393784233984, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 114477539, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 994, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "138513072", + "following": false, + "friends_count": 54, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A6E6AC", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 40, + "location": "Portland, OR", + "screen_name": "cdaringe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Chris Dieringer", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", + "profile_background_color": "329C40", + "created_at": "Thu Apr 29 19:29:29 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "9FC2A3", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", + "favourites_count": 49, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 14278727, + "possibly_sensitive": false, + "id_str": "679054290430787584", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "inkandfeet.com/how-to-use-a-g\u2026", + "url": "https://t.co/CSfKwrPXIy", + "expanded_url": "http://inkandfeet.com/how-to-use-a-generic-usb-20-10100m-ethernet-adaptor-rd9700-on-mac-os-1011-el-capitan", + "indices": [ + 21, + 44 + ] + }, + { + "display_url": "realtek.com/DOWNLOADS/down\u2026", + "url": "https://t.co/MXKy0tG3e9", + "expanded_url": "http://www.realtek.com/DOWNLOADS/downloadsView.aspx?Langid=1&PNid=14&PFid=55&Level=5&Conn=4&DownTypeID=3&GetDown=false", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "skoczen", + "id_str": "14278727", + "id": 14278727, + "indices": [ + 0, + 8 + ], + "name": "Steven Skoczen" + } + ] + }, + "created_at": "Mon Dec 21 21:42:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "14278727", + "place": null, + "in_reply_to_screen_name": "skoczen", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679054290430787584, + "text": "@skoczen, in ref to https://t.co/CSfKwrPXIy, realtek released a new driver for el cap that requires no sys edits: https://t.co/MXKy0tG3e9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 138513072, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 68, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "650013", + "following": false, + "friends_count": 542, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bradfitz.com", + "url": "http://t.co/AjdAkBY0iG", + "expanded_url": "http://bradfitz.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "BFA446", + "geo_enabled": true, + "followers_count": 17909, + "location": "San Francisco, CA", + "screen_name": "bradfitz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1003, + "name": "Brad Fitzpatrick", + "profile_use_background_image": false, + "description": "hacker, traveler, runner, optimist, gopher", + "url": "http://t.co/AjdAkBY0iG", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jan 16 23:05:57 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", + "favourites_count": 8366, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "tigahill", + "in_reply_to_user_id": 930826154, + "in_reply_to_status_id_str": "685602642395963392", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685603912133414912", + "id": 685603912133414912, + "text": "@tigahill @JohnLegere @EFF But not very media savvy, apparently. I'd love to read his actual accusations, if he can be calm for a second.", + "in_reply_to_user_id_str": "930826154", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tigahill", + "id_str": "930826154", + "id": 930826154, + "indices": [ + 0, + 9 + ], + "name": "LaTeigra Cahill" + }, + { + "screen_name": "JohnLegere", + "id_str": "1394399438", + "id": 1394399438, + "indices": [ + 10, + 21 + ], + "name": "John Legere" + }, + { + "screen_name": "EFF", + "id_str": "4816", + "id": 4816, + "indices": [ + 22, + 26 + ], + "name": "EFF" + } + ] + }, + "created_at": "Fri Jan 08 23:28:05 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685602642395963392, + "lang": "en" + }, + "default_profile_image": false, + "id": 650013, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 6185, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/650013/1348015829", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8690322", + "following": false, + "friends_count": 180, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/iyaz", + "url": "http://t.co/wXnrkVLXs1", + "expanded_url": "http://about.me/iyaz", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "560869", + "geo_enabled": true, + "followers_count": 29813, + "location": "New York, NY", + "screen_name": "iyaz", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1232, + "name": "iyaz akhtar", + "profile_use_background_image": false, + "description": "I'm the best damn Iyaz Akhtar in the world. Available online @CNET and @GFQNetwork", + "url": "http://t.co/wXnrkVLXs1", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Sep 05 17:08:15 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", + "favourites_count": 520, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685297976856584192", + "id": 685297976856584192, + "text": "What did you think was the most awesome thing at CES 2016? #top5", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 59, + 64 + ], + "text": "top5" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:12:24 +0000 2016", + "source": "Twitter for iPad", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 8690322, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "statuses_count": 15190, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8690322/1433083510", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "10350", + "following": false, + "friends_count": 1100, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/veronica", + "url": "https://t.co/Tf4y8BelKl", + "expanded_url": "http://about.me/veronica", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1758616, + "location": "San Francisco", + "screen_name": "Veronica", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 17379, + "name": "Veronica Belmont", + "profile_use_background_image": true, + "description": "New media / TV host and writer. @swordandlaser, @vaginalfantasy and #DearVeronica for @Engadget. #SFGiants Destroyer of Worlds.", + "url": "https://t.co/Tf4y8BelKl", + "profile_text_color": "1E1A1A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Oct 24 16:00:54 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C59D79", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", + "favourites_count": 2795, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "NotAPreppie", + "in_reply_to_user_id": 53830319, + "in_reply_to_status_id_str": "685613648220303360", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613962868609025", + "id": 685613962868609025, + "text": "@NotAPreppie @MarieDomingo getting into random fights on Twitter clearly makes YOU feel better! Whatever works!", + "in_reply_to_user_id_str": "53830319", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "NotAPreppie", + "id_str": "53830319", + "id": 53830319, + "indices": [ + 0, + 12 + ], + "name": "IfPinkyWereAChemist" + }, + { + "screen_name": "MarieDomingo", + "id_str": "10394242", + "id": 10394242, + "indices": [ + 13, + 26 + ], + "name": "MarieDomingo" + } + ] + }, + "created_at": "Sat Jan 09 00:08:01 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685613648220303360, + "lang": "en" + }, + "default_profile_image": false, + "id": 10350, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", + "statuses_count": 36156, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10350/1436988647", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "816214", + "following": false, + "friends_count": 734, + "entities": { + "description": { + "urls": [ + { + "display_url": "techcrunch.com/video/crunchre\u2026", + "url": "http://t.co/sufYJznghc", + "expanded_url": "http://techcrunch.com/video/crunchreport", + "indices": [ + 59, + 81 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "about.me/sarahlane", + "url": "http://t.co/POf8fV5kwg", + "expanded_url": "http://about.me/sarahlane", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", + "notifications": false, + "profile_sidebar_fill_color": "BAFF91", + "profile_link_color": "B81F45", + "geo_enabled": true, + "followers_count": 95471, + "location": "Norf Side ", + "screen_name": "sarahlane", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 6398, + "name": "Sarah Lane", + "profile_use_background_image": true, + "description": "TechCrunch Executive Producer, Video\n\nHost, Crunch Report: http://t.co/sufYJznghc\n\nI get it twisted, sorry", + "url": "http://t.co/POf8fV5kwg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Mar 06 22:45:50 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", + "favourites_count": 705, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MDee14", + "in_reply_to_user_id": 16684249, + "in_reply_to_status_id_str": "685526261507096577", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685527194949451776", + "id": 685527194949451776, + "text": "@MDee14 yay we both won!", + "in_reply_to_user_id_str": "16684249", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MDee14", + "id_str": "16684249", + "id": 16684249, + "indices": [ + 0, + 7 + ], + "name": "Marcel Dee" + } + ] + }, + "created_at": "Fri Jan 08 18:23:14 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685526261507096577, + "lang": "en" + }, + "default_profile_image": false, + "id": 816214, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", + "statuses_count": 16630, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/816214/1451606730", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "58708498", + "following": false, + "friends_count": 445, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "angelina.codes", + "url": "http://t.co/v5aoRQrHwi", + "expanded_url": "http://angelina.codes", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", + "notifications": false, + "profile_sidebar_fill_color": "F7C9FF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 17533, + "location": "NYC \u2708 ???", + "screen_name": "hopefulcyborg", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 972, + "name": "Angelina Fabbro", + "profile_use_background_image": false, + "description": "- polyglot programmer weirdo - engineer at @digitalocean (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b - prev: @mozilla devtools & @steamclocksw - they/their/them", + "url": "http://t.co/v5aoRQrHwi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jul 21 04:52:08 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", + "favourites_count": 8940, + "status": { + "retweet_count": 6096, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 6096, + "truncated": false, + "retweeted": false, + "id_str": "685515171675140096", + "id": 685515171675140096, + "text": "COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\nCOP: ok ur good", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:35:27 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 11419, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685567906923593729", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "bobvulfov", + "id_str": "2442237828", + "id": 2442237828, + "indices": [ + 3, + 13 + ], + "name": "Bob Vulfov" + } + ] + }, + "created_at": "Fri Jan 08 21:05:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685567906923593729, + "text": "RT @bobvulfov: COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 58708498, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", + "statuses_count": 22753, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/58708498/1408048999", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "682433", + "following": false, + "friends_count": 1123, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/othiym23/", + "url": "http://t.co/20WWkunxbg", + "expanded_url": "http://github.com/othiym23/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "CCCCCC", + "profile_link_color": "333333", + "geo_enabled": true, + "followers_count": 2268, + "location": "the outside lands", + "screen_name": "othiym23", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 152, + "name": "Forrest L Norvell", + "profile_use_background_image": false, + "description": "down with the kyriarchy / big ups to the heavy heavy bass.\n\nI may think you're doing something dumb but I think *you're* great.", + "url": "http://t.co/20WWkunxbg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", + "profile_background_color": "CCCCCC", + "created_at": "Mon Jan 22 20:57:31 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "333333", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", + "favourites_count": 5767, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "othiym23", + "in_reply_to_user_id": 682433, + "in_reply_to_status_id_str": "685612122915536896", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685612210031230976", + "id": 685612210031230976, + "text": "@reconbot @npmjs you probably need to look for binding.gyp and not, say, calls to `node-gyp rebuild`", + "in_reply_to_user_id_str": "682433", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "reconbot", + "id_str": "14082200", + "id": 14082200, + "indices": [ + 0, + 9 + ], + "name": "Francis Gulotta" + }, + { + "screen_name": "npmjs", + "id_str": "309528017", + "id": 309528017, + "indices": [ + 10, + 16 + ], + "name": "npmbot" + } + ] + }, + "created_at": "Sat Jan 09 00:01:03 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685612122915536896, + "lang": "en" + }, + "default_profile_image": false, + "id": 682433, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 30176, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/682433/1355870155", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "139199211", + "following": false, + "friends_count": 253, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "snarfed.org", + "url": "https://t.co/0mWCez5XaB", + "expanded_url": "https://snarfed.org/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 464, + "location": "San Francisco", + "screen_name": "schnarfed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Ryan Barrett", + "profile_use_background_image": false, + "description": "", + "url": "https://t.co/0mWCez5XaB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Sat May 01 21:42:43 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", + "favourites_count": 3258, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685210017411170305", + "id": 685210017411170305, + "text": "When someone invites me out, or just to hang, my first instinct is to check my calendar and hope for a conflict. :( #JustIntrovertThings", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 116, + 136 + ], + "text": "JustIntrovertThings" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 21:22:53 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 139199211, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 1763, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/139199211/1398278985", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "536965103", + "following": false, + "friends_count": 811, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "onebigfluke.com", + "url": "http://t.co/aaUMAjUIWi", + "expanded_url": "http://onebigfluke.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0074B3", + "geo_enabled": false, + "followers_count": 2574, + "location": "San Francisco", + "screen_name": "haxor", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 142, + "name": "Brett Slatkin", + "profile_use_background_image": true, + "description": "Eng lead @Google_Surveys. Author of @EffectivePython.\nI love bicycles and hate patents.", + "url": "http://t.co/aaUMAjUIWi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", + "profile_background_color": "4D4D4D", + "created_at": "Mon Mar 26 05:57:19 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", + "favourites_count": 3124, + "status": { + "retweet_count": 13, + "retweeted_status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685367480546541568", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "dlvr.it/DCnmnq", + "url": "https://t.co/vqRVp9rIbc", + "expanded_url": "http://dlvr.it/DCnmnq", + "indices": [ + 61, + 84 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 07:48:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "ja", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685367480546541568, + "text": "Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "dlvr.it" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685498607789670401", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "dlvr.it/DCnmnq", + "url": "https://t.co/vqRVp9rIbc", + "expanded_url": "http://dlvr.it/DCnmnq", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "oreilly_japan", + "id_str": "18382977", + "id": 18382977, + "indices": [ + 3, + 17 + ], + "name": "O'Reilly Japan, Inc." + } + ] + }, + "created_at": "Fri Jan 08 16:29:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "ja", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685498607789670401, + "text": "RT @oreilly_japan: Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 536965103, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", + "statuses_count": 1749, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/536965103/1398444972", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "610533", + "following": false, + "friends_count": 1078, + "entities": { + "description": { + "urls": [ + { + "display_url": "DailyTechNewsShow.com", + "url": "https://t.co/x2gPqqxYuL", + "expanded_url": "http://DailyTechNewsShow.com", + "indices": [ + 13, + 36 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "tommerritt.com", + "url": "http://t.co/Ru5Svk5gcM", + "expanded_url": "http://www.tommerritt.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "0099B9", + "geo_enabled": true, + "followers_count": 97335, + "location": "Virgo Supercluster", + "screen_name": "acedtect", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 6442, + "name": "Tom Merritt", + "profile_use_background_image": true, + "description": "Host of DTNS https://t.co/x2gPqqxYuL, Sword and Laser, Current Geek, Cordkillers and more. Coffee achiever", + "url": "http://t.co/Ru5Svk5gcM", + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", + "profile_background_color": "0099B9", + "created_at": "Sun Jan 07 17:00:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", + "favourites_count": 806, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Nightveil", + "in_reply_to_user_id": 16855695, + "in_reply_to_status_id_str": "685611862440849408", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685612261910560768", + "id": 685612261910560768, + "text": "@Nightveil Yeah safety date. I can always move it up.", + "in_reply_to_user_id_str": "16855695", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Nightveil", + "id_str": "16855695", + "id": 16855695, + "indices": [ + 0, + 10 + ], + "name": "Nightveil" + } + ] + }, + "created_at": "Sat Jan 09 00:01:15 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685611862440849408, + "lang": "en" + }, + "default_profile_image": false, + "id": 610533, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 37135, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/610533/1348022434", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "824168", + "following": false, + "friends_count": 1919, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 1035, + "location": "Petaluma, CA", + "screen_name": "jammerb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 108, + "name": "John Slanina", + "profile_use_background_image": true, + "description": "History is short. The sun is just a minor star.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", + "profile_background_color": "31532D", + "created_at": "Fri Mar 09 04:33:02 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", + "favourites_count": 107, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "11877321", + "id": 11877321, + "text": "Got my Screaming Monkey from Woot!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Mar 24 02:38:08 +0000 2007", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 824168, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", + "statuses_count": 6, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/824168/1434144272", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2369467405", + "following": false, + "friends_count": 34024, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wifiworkerbees.com", + "url": "http://t.co/rqac3Fh1dU", + "expanded_url": "http://wifiworkerbees.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 34950, + "location": "Following My Bliss", + "screen_name": "DereckCurry", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 632, + "name": "Dereck Curry", + "profile_use_background_image": false, + "description": "20+ year IT, coding, product management, and engineering professional. Remote work evangelist. Co-founder of @WifiWorkerBees. Husband to @Currying_Favor.", + "url": "http://t.co/rqac3Fh1dU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", + "profile_background_color": "DFF3F5", + "created_at": "Sun Mar 02 22:24:48 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", + "favourites_count": 3838, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "668089105788612608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "triplet.fi/blog/working-r\u2026", + "url": "https://t.co/euj9P7QJuh", + "expanded_url": "http://www.triplet.fi/blog/working-remotely-from-abroad-one-month-in-hungary/", + "indices": [ + 65, + 88 + ] + } + ], + "hashtags": [ + { + "indices": [ + 89, + 100 + ], + "text": "remotework" + } + ], + "user_mentions": [ + { + "screen_name": "DereckCurry", + "id_str": "2369467405", + "id": 2369467405, + "indices": [ + 106, + 118 + ], + "name": "Dereck Curry" + } + ] + }, + "created_at": "Sat Nov 21 15:30:29 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 668089105788612608, + "text": "Just blogged: Working remotely from abroad: One month in Hungary https://t.co/euj9P7QJuh #remotework /cc: @DereckCurry", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685489770089345024", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "triplet.fi/blog/working-r\u2026", + "url": "https://t.co/euj9P7QJuh", + "expanded_url": "http://www.triplet.fi/blog/working-remotely-from-abroad-one-month-in-hungary/", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [ + { + "indices": [ + 99, + 110 + ], + "text": "remotework" + } + ], + "user_mentions": [ + { + "screen_name": "_Tx3", + "id_str": "482822541", + "id": 482822541, + "indices": [ + 3, + 8 + ], + "name": "Tatu Tamminen" + }, + { + "screen_name": "DereckCurry", + "id_str": "2369467405", + "id": 2369467405, + "indices": [ + 116, + 128 + ], + "name": "Dereck Curry" + } + ] + }, + "created_at": "Fri Jan 08 15:54:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685489770089345024, + "text": "RT @_Tx3: Just blogged: Working remotely from abroad: One month in Hungary https://t.co/euj9P7QJuh #remotework /cc: @DereckCurry", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2369467405, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", + "statuses_count": 9078, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369467405/1447623348", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15948437", + "following": false, + "friends_count": 590, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "joelonsoftware.com", + "url": "http://t.co/ZHNWlmFE3H", + "expanded_url": "http://www.joelonsoftware.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E4F1F0", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 117162, + "location": "New York, NY", + "screen_name": "spolsky", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5826, + "name": "Joel Spolsky", + "profile_use_background_image": true, + "description": "CEO of Stack Overflow, co-founder of Fog Creek Software (FogBugz, Kiln), and creator of Trello. Member of NYC gay startup mafia.", + "url": "http://t.co/ZHNWlmFE3H", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Aug 22 18:34:03 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", + "favourites_count": 5133, + "status": { + "retweet_count": 33, + "retweeted_status": { + "retweet_count": 33, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684896392188444672", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/p/23a20405681a", + "url": "https://t.co/ifzwy1ausF", + "expanded_url": "https://medium.com/p/23a20405681a", + "indices": [ + 112, + 135 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 00:36:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684896392188444672, + "text": "I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/ifzwy1ausF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 91, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684939456881770496", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/p/23a20405681a", + "url": "https://t.co/ifzwy1ausF", + "expanded_url": "https://medium.com/p/23a20405681a", + "indices": [ + 126, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "anildash", + "id_str": "36823", + "id": 36823, + "indices": [ + 3, + 12 + ], + "name": "Anil Dash" + } + ] + }, + "created_at": "Thu Jan 07 03:27:46 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684939456881770496, + "text": "RT @anildash: I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 15948437, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", + "statuses_count": 6625, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15948437/1364583542", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "4519121", + "following": false, + "friends_count": 423, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theoatmeal.com", + "url": "http://t.co/hzHuiYcL4x", + "expanded_url": "http://theoatmeal.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57771255/twitter2.png", + "notifications": false, + "profile_sidebar_fill_color": "F5EDF0", + "profile_link_color": "B40B43", + "geo_enabled": true, + "followers_count": 524231, + "location": "Seattle, Washington", + "screen_name": "Oatmeal", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 17111, + "name": "Matthew Inman", + "profile_use_background_image": true, + "description": "I make comics.", + "url": "http://t.co/hzHuiYcL4x", + "profile_text_color": "362720", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", + "profile_background_color": "FF3366", + "created_at": "Fri Apr 13 16:59:37 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "CC3366", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", + "favourites_count": 1374, + "status": { + "retweet_count": 128, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685190824158691332", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 812, + "h": 587, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 245, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 433, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", + "type": "photo", + "indices": [ + 47, + 70 + ], + "media_url": "http://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", + "display_url": "pic.twitter.com/suZ6JUQaFa", + "id_str": "685190823483342849", + "expanded_url": "http://twitter.com/Oatmeal/status/685190824158691332/photo/1", + "id": 685190823483342849, + "url": "https://t.co/suZ6JUQaFa" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "theoatmeal.com/blog/playdoh", + "url": "https://t.co/v1LZDUNlnT", + "expanded_url": "http://theoatmeal.com/blog/playdoh", + "indices": [ + 23, + 46 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 20:06:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685190824158691332, + "text": "You only try this once https://t.co/v1LZDUNlnT https://t.co/suZ6JUQaFa", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 293, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 4519121, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57771255/twitter2.png", + "statuses_count": 6000, + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "9859562", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "glyph.twistedmatrix.com", + "url": "https://t.co/1dvBYKfhRo", + "expanded_url": "https://glyph.twistedmatrix.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": false, + "followers_count": 2557, + "location": "\u2191 baseline \u2193 cap-height", + "screen_name": "glyph", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 144, + "name": "\u24bc\u24c1\u24ce\u24c5\u24bd", + "profile_use_background_image": true, + "description": "Level ?? Thought Lord", + "url": "https://t.co/1dvBYKfhRo", + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", + "profile_background_color": "642D8B", + "created_at": "Thu Nov 01 18:21:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", + "favourites_count": 6287, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "corbinsimpson", + "in_reply_to_user_id": 41225243, + "in_reply_to_status_id_str": "685297984683155456", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685357014143250432", + "id": 685357014143250432, + "text": "@corbinsimpson yeah.", + "in_reply_to_user_id_str": "41225243", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "corbinsimpson", + "id_str": "41225243", + "id": 41225243, + "indices": [ + 0, + 14 + ], + "name": "Corbin Simpson" + } + ] + }, + "created_at": "Fri Jan 08 07:07:00 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685297984683155456, + "lang": "en" + }, + "default_profile_image": false, + "id": 9859562, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", + "statuses_count": 11017, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2782733125", + "following": false, + "friends_count": 427, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "raintank.io", + "url": "http://t.co/sZYy68B1yl", + "expanded_url": "http://www.raintank.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "10B1D3", + "geo_enabled": true, + "followers_count": 362, + "location": "", + "screen_name": "raintanksaas", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "raintank", + "profile_use_background_image": false, + "description": "An opensource monitoring platform to collect, store & analyze data about your infrastructure through a gorgeously powerful frontend. The company behind @grafana", + "url": "http://t.co/sZYy68B1yl", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", + "profile_background_color": "353535", + "created_at": "Sun Aug 31 18:05:44 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", + "favourites_count": 204, + "status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684453558545203200", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "type": "photo", + "indices": [ + 113, + 136 + ], + "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "display_url": "pic.twitter.com/GnfOxpEaYF", + "id_str": "684450657458368512", + "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", + "id": 684450657458368512, + "url": "https://t.co/GnfOxpEaYF" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22Jb455", + "url": "https://t.co/aYQvFNmob0", + "expanded_url": "http://bit.ly/22Jb455", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [ + { + "indices": [ + 57, + 68 + ], + "text": "monitoring" + } + ], + "user_mentions": [ + { + "screen_name": "RobustPerceiver", + "id_str": "3328053545", + "id": 3328053545, + "indices": [ + 96, + 112 + ], + "name": "Robust Perception" + } + ] + }, + "created_at": "Tue Jan 05 19:16:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684453558545203200, + "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 2782733125, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 187, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782733125/1447877118", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "23134190", + "following": false, + "friends_count": 2846, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rayheffer.com", + "url": "http://t.co/65bBqa0ySJ", + "expanded_url": "http://rayheffer.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", + "notifications": false, + "profile_sidebar_fill_color": "DBDBDB", + "profile_link_color": "1887E5", + "geo_enabled": true, + "followers_count": 12129, + "location": "Brighton, United Kingdom", + "screen_name": "rayheffer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 233, + "name": "Ray Heffer", + "profile_use_background_image": true, + "description": "Global Cloud & EUC Architect @VMware vCloud Air Network | vExpert & Double VCDX #122 | PC Gamer | Technologist | Linux | VMworld Speaker. \u65e5\u672c\u8a9e", + "url": "http://t.co/65bBqa0ySJ", + "profile_text_color": "574444", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", + "profile_background_color": "022330", + "created_at": "Fri Mar 06 23:14:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", + "favourites_count": 6141, + "status": { + "retweet_count": 8, + "retweeted_status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685565495274266624", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WFMFT", + "url": "https://t.co/QHNFIkGGaL", + "expanded_url": "http://ow.ly/WFMFT", + "indices": [ + 121, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:55:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685565495274266624, + "text": "Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https://t.co/QHNFIkGGaL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685565627487117312", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WFMFT", + "url": "https://t.co/QHNFIkGGaL", + "expanded_url": "http://ow.ly/WFMFT", + "indices": [ + 143, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PGelsinger", + "id_str": "3339261074", + "id": 3339261074, + "indices": [ + 3, + 14 + ], + "name": "Pat Gelsinger" + } + ] + }, + "created_at": "Fri Jan 08 20:55:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685565627487117312, + "text": "RT @PGelsinger: Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 23134190, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", + "statuses_count": 3576, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23134190/1447672867", + "is_translator": false + } + ], + "previous_cursor": 0, + "previous_cursor_str": "0", + "next_cursor_str": "1494734862149901956" +} \ No newline at end of file diff --git a/testdata/get_friends_1.json b/testdata/get_friends_1.json new file mode 100644 index 00000000..930e5734 --- /dev/null +++ b/testdata/get_friends_1.json @@ -0,0 +1,26548 @@ +{ + "next_cursor": 1489123725664322527, + "users": [ + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14574588", + "following": false, + "friends_count": 434, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "abhinavsingh.com", + "url": "http://t.co/78nP1dFAQl", + "expanded_url": "http://abhinavsingh.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1833, + "location": "San Francisco, California", + "screen_name": "imoracle", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 113, + "name": "AB", + "profile_use_background_image": true, + "description": "#Googler #Appurify #Yahoo #Oracle #Startups #JAXL #Musician #Blues #Engineer #IIT #Headbanger #Guitar #CMS #Lucknowi #Indian", + "url": "http://t.co/78nP1dFAQl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000743742291/3303eaa6ced81f16b09a0f167468fb13_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Apr 28 19:58:51 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000743742291/3303eaa6ced81f16b09a0f167468fb13_normal.jpeg", + "favourites_count": 851, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677315949020614657", + "id": 677315949020614657, + "text": "Super productive holidays. We (@abbandofficial) composed 8 songs for upcoming album next year. Now off to meet good old friends #FunTime", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 128, + 136 + ], + "text": "FunTime" + } + ], + "user_mentions": [ + { + "screen_name": "abbandofficial", + "id_str": "4250770574", + "id": 4250770574, + "indices": [ + 31, + 46 + ], + "name": "AB" + } + ] + }, + "created_at": "Thu Dec 17 02:34:40 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14574588, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 15921, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14574588/1403935628", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "308881474", + "following": false, + "friends_count": 21, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "webrtc.org", + "url": "http://t.co/f8Rr0iB9ir", + "expanded_url": "http://webrtc.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7193, + "location": "", + "screen_name": "webrtc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 240, + "name": "WebRTC project", + "profile_use_background_image": true, + "description": "Twitter account for the WebRTC project. We'll update it with progress, blog post links, etc...", + "url": "http://t.co/f8Rr0iB9ir", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1875563277/photo_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 01 04:42:12 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1875563277/photo_normal.jpg", + "favourites_count": 59, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": 21206449, + "possibly_sensitive": false, + "id_str": "677508944298975232", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "appr.tc", + "url": "https://t.co/wWBvRAUwXy", + "expanded_url": "https://appr.tc", + "indices": [ + 55, + 78 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "carlosml", + "id_str": "21206449", + "id": 21206449, + "indices": [ + 0, + 9 + ], + "name": "Carlos Lebron" + } + ] + }, + "created_at": "Thu Dec 17 15:21:34 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "21206449", + "place": null, + "in_reply_to_screen_name": "carlosml", + "in_reply_to_status_id_str": "676814357561532417", + "truncated": false, + "id": 677508944298975232, + "text": "@carlosml not default codec in Chrome, but default for https://t.co/wWBvRAUwXy :)", + "coordinates": null, + "in_reply_to_status_id": 676814357561532417, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 308881474, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 340, + "is_translator": false + }, + { + "time_zone": "Sydney", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "36079474", + "following": false, + "friends_count": 3646, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3153, + "location": "Batmania, Australia", + "screen_name": "nfFrenchie", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 83, + "name": "French", + "profile_use_background_image": true, + "description": "Infosec, Bitcoin & VC Geek.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477682641282400256/TOB7cr9I_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 28 14:34:24 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477682641282400256/TOB7cr9I_normal.jpeg", + "favourites_count": 3076, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "errbufferoverfl", + "in_reply_to_user_id": 3023308260, + "in_reply_to_status_id_str": "685407306830381056", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685424075188011009", + "id": 685424075188011009, + "text": "@errbufferoverfl these guys might have some experience: @helveticade @therealdevgeeks", + "in_reply_to_user_id_str": "3023308260", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "errbufferoverfl", + "id_str": "3023308260", + "id": 3023308260, + "indices": [ + 0, + 16 + ], + "name": "Rebecca Trapani \u0ca0\u256d\u256e\u0ca0" + }, + { + "screen_name": "helveticade", + "id_str": "14111299", + "id": 14111299, + "indices": [ + 56, + 68 + ], + "name": "Cade" + }, + { + "screen_name": "theRealDevgeeks", + "id_str": "359949200", + "id": 359949200, + "indices": [ + 69, + 85 + ], + "name": "Tommy Williams \u24cb" + } + ] + }, + "created_at": "Fri Jan 08 11:33:28 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685407306830381056, + "lang": "en" + }, + "default_profile_image": false, + "id": 36079474, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3152, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "409854384", + "following": false, + "friends_count": 1072, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 112, + "location": "", + "screen_name": "altkatz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "altkatz", + "profile_use_background_image": true, + "description": "This is not the algorithm. This is close.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/573778807837974529/VNUkFciS_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Nov 11 09:32:26 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/573778807837974529/VNUkFciS_normal.jpeg", + "favourites_count": 170, + "status": { + "retweet_count": 581, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 581, + "truncated": false, + "retweeted": false, + "id_str": "619837611419521024", + "id": 619837611419521024, + "text": "A giant TCP SYN flood (DDoS) is still causing slower connection speeds for our users in parts of Asia, Australia & Oceania. Working on this.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jul 11 11:56:17 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 195, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "620175335741460480", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "telegram", + "id_str": "1689053928", + "id": 1689053928, + "indices": [ + 3, + 12 + ], + "name": "Telegram Messenger" + } + ] + }, + "created_at": "Sun Jul 12 10:18:16 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 620175335741460480, + "text": "RT @telegram: A giant TCP SYN flood (DDoS) is still causing slower connection speeds for our users in parts of Asia, Australia & Oceania. W\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 409854384, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 111, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/409854384/1425635418", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "15372963", + "following": false, + "friends_count": 531, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buddycloud.com", + "url": "http://t.co/IRivmAHKks", + "expanded_url": "http://buddycloud.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/116285962/square-logo.png", + "notifications": false, + "profile_sidebar_fill_color": "F2F2F2", + "profile_link_color": "2DAEBF", + "geo_enabled": true, + "followers_count": 907, + "location": "Berlin, Germany", + "screen_name": "buddycloud", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 87, + "name": "Buddycloud", + "profile_use_background_image": false, + "description": "Secure messaging for apps - Tools, libraries and services for secure cloud & on-premise user and group messaging.\n#securemessaging", + "url": "http://t.co/IRivmAHKks", + "profile_text_color": "5F9DFA", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/525226516179734528/DXcqacDW_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Jul 10 02:11:32 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/525226516179734528/DXcqacDW_normal.png", + "favourites_count": 56, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "660030922226450432", + "id": 660030922226450432, + "text": "Wanna join for a Saturday morning pet-projects dev-ops hacking session? 10am, Berlin #saltstack, #ansible, etc. DM for details.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 85, + 95 + ], + "text": "saltstack" + }, + { + "indices": [ + 97, + 105 + ], + "text": "ansible" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Oct 30 09:50:09 +0000 2015", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15372963, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/116285962/square-logo.png", + "statuses_count": 924, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15372963/1448451457", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3033204133", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 14559, + "location": "The Incident Review Meeting", + "screen_name": "honest_update", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 257, + "name": "Honest Status Page", + "profile_use_background_image": true, + "description": "These are the things we probably ought to say when updating incident status. Snark and compassion. Now, about your data\u2026", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/568844092834996224/w90Cq4mH_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Feb 20 18:42:30 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/568844092834996224/w90Cq4mH_normal.jpeg", + "favourites_count": 250, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 11, + "truncated": false, + "retweeted": false, + "id_str": "685516850852184064", + "id": 685516850852184064, + "text": "*slightly changes tint of green check mark circle to convey depressed success rate*", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:42:08 +0000 2016", + "source": "Buffer", + "favorite_count": 20, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 3033204133, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 328, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "43977574", + "following": false, + "friends_count": 7, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tigase.org", + "url": "http://t.co/S2bnbrVgtb", + "expanded_url": "http://www.tigase.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 143, + "location": "San Francisco, CA, USA", + "screen_name": "tigase", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Tigase XMPP Server", + "profile_use_background_image": true, + "description": "I am 8 years old, or something like that", + "url": "http://t.co/S2bnbrVgtb", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2182438186/Tigase_Icon_A_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jun 01 21:29:01 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2182438186/Tigase_Icon_A_normal.png", + "favourites_count": 6, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "665756052294512640", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tinyurl.com/pkra4v4", + "url": "https://t.co/wQjHLQ4npV", + "expanded_url": "http://tinyurl.com/pkra4v4", + "indices": [ + 89, + 112 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Nov 15 04:59:46 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 665756052294512640, + "text": "New Blog Post where we look at IQ stanzas. XMPP: An Introduction - Part IV - Could You...https://t.co/wQjHLQ4npV", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 43977574, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 323, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18326200", + "following": false, + "friends_count": 1366, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "greptilian.com", + "url": "http://t.co/G0N231nQxj", + "expanded_url": "http://greptilian.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3684471/rootintootin.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 460, + "location": "", + "screen_name": "philipdurbin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "name": "Philip Durbin", + "profile_use_background_image": true, + "description": "open source geek", + "url": "http://t.co/G0N231nQxj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1729661967/philipdurbin_cropped_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Dec 23 04:17:49 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1729661967/philipdurbin_cropped_normal.jpg", + "favourites_count": 2765, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679475811393617920", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CW37osBVAAAHGeg.jpg", + "type": "photo", + "indices": [ + 71, + 94 + ], + "media_url": "http://pbs.twimg.com/media/CW37osBVAAAHGeg.jpg", + "display_url": "pic.twitter.com/5zaytnZQhS", + "id_str": "679475795232882688", + "expanded_url": "http://twitter.com/philipdurbin/status/679475811393617920/photo/1", + "id": 679475795232882688, + "url": "https://t.co/5zaytnZQhS" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 40, + 49 + ], + "text": "StarWars" + } + ], + "user_mentions": [ + { + "screen_name": "TheWookieeRoars", + "id_str": "483192121", + "id": 483192121, + "indices": [ + 54, + 70 + ], + "name": "Peter Mayhew" + } + ] + }, + "created_at": "Wed Dec 23 01:37:12 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679475811393617920, + "text": "Chewbacca and R2-D2 by my six year old. #StarWars /cc @TheWookieeRoars https://t.co/5zaytnZQhS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 18326200, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3684471/rootintootin.jpg", + "statuses_count": 2272, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1235521", + "following": false, + "friends_count": 950, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tbray.org/ongoing/", + "url": "https://t.co/oOBFMTl6h7", + "expanded_url": "https://www.tbray.org/ongoing/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000008638875/b45b8babcd8e868d57e715bdf15838a2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "AA0000", + "geo_enabled": false, + "followers_count": 32984, + "location": "Vancouver!", + "screen_name": "timbray", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2270, + "name": "Tim Bray", + "profile_use_background_image": false, + "description": "Web geek with a camera.", + "url": "https://t.co/oOBFMTl6h7", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/421637246/Tim_normal.jpg", + "profile_background_color": "EEAA00", + "created_at": "Thu Mar 15 17:24:22 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/421637246/Tim_normal.jpg", + "favourites_count": 698, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685316522135261184", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtube.com/watch?v=aEj2NH\u2026", + "url": "https://t.co/eUErlw8JHh", + "expanded_url": "https://www.youtube.com/watch?v=aEj2NHy4iL4", + "indices": [ + 13, + 36 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 04:26:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685316522135261184, + "text": "The culprit: https://t.co/eUErlw8JHh", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1235521, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000008638875/b45b8babcd8e868d57e715bdf15838a2.jpeg", + "statuses_count": 19307, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1235521/1398645696", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "86146814", + "following": false, + "friends_count": 779, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593182759062876160/2y0X2nbK.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 768, + "location": "New York ", + "screen_name": "Caelestisca", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 48, + "name": "Carmen Andoh", + "profile_use_background_image": true, + "description": "~$#momops of the House of Bash. @ladieswholinux @womenwhogo_nyc", + "url": null, + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681245752983719937/R_3vQ5rb_normal.jpg", + "profile_background_color": "F5F8FA", + "created_at": "Thu Oct 29 19:48:50 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681245752983719937/R_3vQ5rb_normal.jpg", + "favourites_count": 11334, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "681918394594144261", + "id": 681918394594144261, + "text": "You know you work at an awesome place when your team concerns themselves with travel issues for your son with #T1D & #autism . \u2661 @enquos", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 110, + 114 + ], + "text": "T1D" + }, + { + "indices": [ + 121, + 128 + ], + "text": "autism" + } + ], + "user_mentions": [ + { + "screen_name": "enquos", + "id_str": "1132126837", + "id": 1132126837, + "indices": [ + 133, + 140 + ], + "name": "enquos" + } + ] + }, + "created_at": "Tue Dec 29 19:23:09 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 86146814, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593182759062876160/2y0X2nbK.jpg", + "statuses_count": 879, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/86146814/1451004545", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "26751851", + "following": false, + "friends_count": 1057, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thekillingtime.com", + "url": "https://t.co/Zcy63UDMwn", + "expanded_url": "http://thekillingtime.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 739, + "location": "~", + "screen_name": "daguy666", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Joey Pistone", + "profile_use_background_image": true, + "description": "snowboarding, skateboarding, music, and computers. Python Padawan. Network Security Engineer at @Etsy. JP+LR", + "url": "https://t.co/Zcy63UDMwn", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477539445395058688/n32ykdPs_normal.png", + "profile_background_color": "131516", + "created_at": "Thu Mar 26 13:46:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477539445395058688/n32ykdPs_normal.png", + "favourites_count": 4855, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "RT_America", + "in_reply_to_user_id": 115754870, + "in_reply_to_status_id_str": "685604446718439424", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685611780647723008", + "id": 685611780647723008, + "text": "@RT_America does the raccoon help or hurt the restaurants \"A\" rating?", + "in_reply_to_user_id_str": "115754870", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RT_America", + "id_str": "115754870", + "id": 115754870, + "indices": [ + 0, + 11 + ], + "name": "RT America" + } + ] + }, + "created_at": "Fri Jan 08 23:59:21 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685604446718439424, + "lang": "en" + }, + "default_profile_image": false, + "id": 26751851, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5092, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/26751851/1398971089", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "305899937", + "following": false, + "friends_count": 230, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 601, + "location": "Brooklyn, NY", + "screen_name": "mcdonnps", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "Patrick McDonnell", + "profile_use_background_image": true, + "description": "Senior Manager, Operations Engineering @Etsy", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2223861876/pmcdonnell__4__normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu May 26 23:40:02 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2223861876/pmcdonnell__4__normal.jpg", + "favourites_count": 5, + "status": { + "retweet_count": 11, + "retweeted_status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "667011917341401093", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "etsy.com/uk/careers/job\u2026", + "url": "https://t.co/bm1wh76fvj", + "expanded_url": "https://www.etsy.com/uk/careers/job/oAHU1fwW", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Nov 18 16:10:08 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 667011917341401093, + "text": "Etsy are hiring a Sr. Ops Engineer in our Dublin Office: https://t.co/bm1wh76fvj - feel free to ping me if you'd like more info :)", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "667014165735845888", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "etsy.com/uk/careers/job\u2026", + "url": "https://t.co/bm1wh76fvj", + "expanded_url": "https://www.etsy.com/uk/careers/job/oAHU1fwW", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jonlives", + "id_str": "13093162", + "id": 13093162, + "indices": [ + 3, + 12 + ], + "name": "Jon Cowie" + } + ] + }, + "created_at": "Wed Nov 18 16:19:04 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 667014165735845888, + "text": "RT @jonlives: Etsy are hiring a Sr. Ops Engineer in our Dublin Office: https://t.co/bm1wh76fvj - feel free to ping me if you'd like more in\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 305899937, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 48, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8627682", + "following": false, + "friends_count": 223, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "laur.ie", + "url": "http://t.co/fcvNw989z6", + "expanded_url": "http://laur.ie", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 2621, + "location": "New York", + "screen_name": "lozzd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 135, + "name": "Laurie", + "profile_use_background_image": true, + "description": "Operating operations at @Etsy. I like graphs, Hadoop clusters, monitoring and sarcasm. Englishman in New York.", + "url": "http://t.co/fcvNw989z6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/464073861747576834/FRHvjaJm_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Mon Sep 03 17:30:50 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/464073861747576834/FRHvjaJm_normal.jpeg", + "favourites_count": 1471, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/011add077f4d2da3.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.041878, + 40.570842 + ], + [ + -73.855673, + 40.570842 + ], + [ + -73.855673, + 40.739434 + ], + [ + -74.041878, + 40.739434 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Brooklyn, NY", + "id": "011add077f4d2da3", + "name": "Brooklyn" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 6, + "truncated": false, + "retweeted": false, + "id_str": "685562352633274368", + "id": 685562352633274368, + "text": ".@beerops: \"Since I can't merge this code I may as well merge some alcohol.. into my face...\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "beerops", + "id_str": "260044118", + "id": 260044118, + "indices": [ + 1, + 9 + ], + "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 sdo\u0279\u0259\u0259q" + } + ] + }, + "created_at": "Fri Jan 08 20:42:56 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 13, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 8627682, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8627682/1421811003", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "20456848", + "following": false, + "friends_count": 343, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1801, + "location": "", + "screen_name": "mrembetsy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 105, + "name": "Michael Rembetsy", + "profile_use_background_image": true, + "description": "nerd @etsy", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1411497817/Photo_on_2011-06-24_at_15.29_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Feb 09 18:59:34 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1411497817/Photo_on_2011-06-24_at_15.29_normal.jpg", + "favourites_count": 13164, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "lara_hogan", + "in_reply_to_user_id": 14146300, + "in_reply_to_status_id_str": "685451114536386560", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685469494064627713", + "id": 685469494064627713, + "text": "@lara_hogan congrats! So glad you are here!!!!", + "in_reply_to_user_id_str": "14146300", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lara_hogan", + "id_str": "14146300", + "id": 14146300, + "indices": [ + 0, + 11 + ], + "name": "Lara Hogan" + } + ] + }, + "created_at": "Fri Jan 08 14:33:57 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685451114536386560, + "lang": "en" + }, + "default_profile_image": false, + "id": 20456848, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5853, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1326022531", + "following": false, + "friends_count": 170, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ben.thatmustbe.me", + "url": "https://t.co/r8zi6Mjy2u", + "expanded_url": "https://ben.thatmustbe.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 91, + "location": "Attleboro MA", + "screen_name": "dissolve333", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Ben Roberts", + "profile_use_background_image": true, + "description": "", + "url": "https://t.co/r8zi6Mjy2u", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3495896730/7cecf2b827dadde109cb85dc30f458e4_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Thu Apr 04 03:08:41 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495896730/7cecf2b827dadde109cb85dc30f458e4_normal.jpeg", + "favourites_count": 38, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681130100792803328", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXPcN5QVAAE32DQ.jpg", + "type": "photo", + "indices": [ + 84, + 107 + ], + "media_url": "http://pbs.twimg.com/media/CXPcN5QVAAE32DQ.jpg", + "display_url": "pic.twitter.com/zmXgTS9qGh", + "id_str": "681130099928793089", + "expanded_url": "http://twitter.com/dissolve333/status/681130100792803328/photo/1", + "id": 681130099928793089, + "url": "https://t.co/zmXgTS9qGh" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "btmb.me/s/Db", + "url": "https://t.co/C5hB0S8K9L", + "expanded_url": "http://btmb.me/s/Db", + "indices": [ + 59, + 82 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Dec 27 15:10:45 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681130100792803328, + "text": "Teaching the girls the classics: The cask of Amontillado. (https://t.co/C5hB0S8K9L) https://t.co/zmXgTS9qGh", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Bridgy" + }, + "default_profile_image": false, + "id": 1326022531, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 471, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15740039", + "following": false, + "friends_count": 222, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paniksrvr.info", + "url": "http://t.co/P4NCkw1UDY", + "expanded_url": "http://paniksrvr.info", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "999999", + "geo_enabled": true, + "followers_count": 201, + "location": "Cherry Hill, NJ", + "screen_name": "callmeradical", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "Lars Cromley", + "profile_use_background_image": false, + "description": "Code. Infrastructure. Lean. That is about it. These thoughts are mine and do not repesent 2nd Watch as a company.", + "url": "http://t.co/P4NCkw1UDY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/643089900179427328/lZCJoLGV_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Aug 05 18:55:44 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/643089900179427328/lZCJoLGV_normal.jpg", + "favourites_count": 245, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0051d76b1627f404.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -75.066178, + 39.915333 + ], + [ + -75.013523, + 39.915333 + ], + [ + -75.013523, + 39.946809 + ], + [ + -75.066178, + 39.946809 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Cherry Hill, NJ", + "id": "0051d76b1627f404", + "name": "Cherry Hill" + }, + "in_reply_to_screen_name": "ferry", + "in_reply_to_user_id": 14591868, + "in_reply_to_status_id_str": "685527057443504128", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685527264763723776", + "id": 685527264763723776, + "text": "@ferry I can\u2019t wait to see how they pick up the story. We are finishing up on season 3 again.", + "in_reply_to_user_id_str": "14591868", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ferry", + "id_str": "14591868", + "id": 14591868, + "indices": [ + 0, + 6 + ], + "name": "Michael Ferry" + } + ] + }, + "created_at": "Fri Jan 08 18:23:31 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685527057443504128, + "lang": "en" + }, + "default_profile_image": false, + "id": 15740039, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3298, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15740039/1443165609", + "is_translator": false + }, + { + "time_zone": "Lisbon", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "19677293", + "following": false, + "friends_count": 401, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4258623/a.jpg", + "notifications": false, + "profile_sidebar_fill_color": "352726", + "profile_link_color": "D0652B", + "geo_enabled": true, + "followers_count": 206, + "location": "Portugal", + "screen_name": "ricardoteixas", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Ricardo F. Teixeira", + "profile_use_background_image": true, + "description": "Born and raised in Lisbon, Portugal. Senior Security Consultant.", + "url": null, + "profile_text_color": "90A216", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/490928238617964546/IVcRZ47G_normal.jpeg", + "profile_background_color": "352726", + "created_at": "Wed Jan 28 21:29:13 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/490928238617964546/IVcRZ47G_normal.jpeg", + "favourites_count": 3, + "status": { + "retweet_count": 8, + "retweeted_status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684688988943347712", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "status.linode.com/incidents/ghdl\u2026", + "url": "https://t.co/YxjJrTGrVt", + "expanded_url": "http://status.linode.com/incidents/ghdlhfnfngnh", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "linode", + "id_str": "8695992", + "id": 8695992, + "indices": [ + 1, + 8 + ], + "name": "Linode" + } + ] + }, + "created_at": "Wed Jan 06 10:52:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684688988943347712, + "text": ".@Linode has been owned https://t.co/YxjJrTGrVt", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684718835455377409", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "status.linode.com/incidents/ghdl\u2026", + "url": "https://t.co/YxjJrTGrVt", + "expanded_url": "http://status.linode.com/incidents/ghdlhfnfngnh", + "indices": [ + 39, + 62 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "digininja", + "id_str": "16170178", + "id": 16170178, + "indices": [ + 3, + 13 + ], + "name": "Robin" + }, + { + "screen_name": "linode", + "id_str": "8695992", + "id": 8695992, + "indices": [ + 16, + 23 + ], + "name": "Linode" + } + ] + }, + "created_at": "Wed Jan 06 12:51:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684718835455377409, + "text": "RT @digininja: .@Linode has been owned https://t.co/YxjJrTGrVt", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 19677293, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4258623/a.jpg", + "statuses_count": 755, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19677293/1400602181", + "is_translator": false + }, + { + "time_zone": "Chihuahua", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1262748066", + "following": false, + "friends_count": 2200, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431914161405063168/kMD_iNRH.png", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 2675, + "location": "", + "screen_name": "robertosantedel", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "Dev 4 Humans", + "profile_use_background_image": false, + "description": "Learn to develop in MySQL, Oracle, Ruby, AngularJS, Python and change your life.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/532277734647410688/ZniCEG0Q_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Mar 12 20:01:41 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/532277734647410688/ZniCEG0Q_normal.jpeg", + "favourites_count": 131, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "653991987444494336", + "id": 653991987444494336, + "text": "#PlatziCode veremos alg\u00fan patr\u00f3n exclusivo para front end? asi como algoritmos que se utilizan para resolver problemas que se dan en front?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 0, + 11 + ], + "text": "PlatziCode" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Oct 13 17:53:35 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "es" + }, + "default_profile_image": false, + "id": 1262748066, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431914161405063168/kMD_iNRH.png", + "statuses_count": 143, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1262748066/1415740883", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15859722", + "following": false, + "friends_count": 815, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "flatironschool.com", + "url": "http://t.co/8Ghcgnwzoo", + "expanded_url": "http://flatironschool.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": true, + "followers_count": 1293, + "location": "Brooklyn, NY USA", + "screen_name": "thejohnmarc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "John Marc Imbrescia", + "profile_use_background_image": true, + "description": "Flatiron School. Ex OkCupid, Etsy, Instapaper. Creator of successful Kickstarter. Never been asked to turn over info to a Gov. agency. Feminist. Dad.", + "url": "http://t.co/8Ghcgnwzoo", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000690887914/f6b2265a2f3a8258fe4fe8b267beb899_normal.jpeg", + "profile_background_color": "709397", + "created_at": "Fri Aug 15 03:55:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000690887914/f6b2265a2f3a8258fe4fe8b267beb899_normal.jpeg", + "favourites_count": 1934, + "status": { + "retweet_count": 76, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 76, + "truncated": false, + "retweeted": false, + "id_str": "685226437272535040", + "id": 685226437272535040, + "text": "My startup is called Bag and what we do is we send a guy to your apartment and he takes your plastic bag full of plastic bags away", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 22:28:08 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 158, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685287207033245696", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Merman_Melville", + "id_str": "603805849", + "id": 603805849, + "indices": [ + 3, + 19 + ], + "name": "Umami Skeleton" + } + ] + }, + "created_at": "Fri Jan 08 02:29:36 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685287207033245696, + "text": "RT @Merman_Melville: My startup is called Bag and what we do is we send a guy to your apartment and he takes your plastic bag full of plast\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 15859722, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 8379, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15859722/1353290361", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14260840", + "following": false, + "friends_count": 782, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/miahj", + "url": "http://t.co/pe7KTkVwwr", + "expanded_url": "http://about.me/miahj", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614569465028612096/1MwVWoYQ.jpg", + "notifications": false, + "profile_sidebar_fill_color": "9EDE9B", + "profile_link_color": "118C19", + "geo_enabled": false, + "followers_count": 1934, + "location": "San Francisco, CA", + "screen_name": "miah_", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 150, + "name": "Miah Johnson", + "profile_use_background_image": false, + "description": "Fart Leader, Transgender, Abrasive, Pariah, Ruby Programmer, Ineffective Configuration Management Sorceress, UNIX, Iconoclast, A Constant Disappointment.", + "url": "http://t.co/pe7KTkVwwr", + "profile_text_color": "1F7D48", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1916412237/miah_derpette_twitter_normal.png", + "profile_background_color": "51B056", + "created_at": "Sun Mar 30 20:43:31 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "187832", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1916412237/miah_derpette_twitter_normal.png", + "favourites_count": 936, + "status": { + "retweet_count": 37, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 37, + "truncated": false, + "retweeted": false, + "id_str": "685561412450562048", + "id": 685561412450562048, + "text": "Every engineer is sometimes a bad engineer", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:39:12 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 60, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685562099574022144", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jmhodges", + "id_str": "9267272", + "id": 9267272, + "indices": [ + 3, + 12 + ], + "name": "Jeff Hodges" + } + ] + }, + "created_at": "Fri Jan 08 20:41:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685562099574022144, + "text": "RT @jmhodges: Every engineer is sometimes a bad engineer", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 14260840, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614569465028612096/1MwVWoYQ.jpg", + "statuses_count": 27099, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14260840/1435359903", + "is_translator": false + }, + { + "time_zone": "Bucharest", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "55525953", + "following": false, + "friends_count": 6, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pinboard.in", + "url": "http://t.co/qOHjNexLMt", + "expanded_url": "http://pinboard.in", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 27982, + "location": "San Francisco", + "screen_name": "Pinboard", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1703, + "name": "Pinboard", + "profile_use_background_image": false, + "description": "veni vidi tweeti", + "url": "http://t.co/qOHjNexLMt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494414965/logo_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Fri Jul 10 10:24:12 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494414965/logo_normal.png", + "favourites_count": 54, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "685599807306530816", + "id": 685599807306530816, + "text": "\u201cHow to become an email powerhouse \u2014 and increase opens, clicks, and revenue (webinar)\u201d I can\u2019t feel my legs", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:11:46 +0000 2016", + "source": "YoruFukurou", + "favorite_count": 10, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 55525953, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 21992, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8882", + "following": false, + "friends_count": 3429, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.lmorchard.com", + "url": "http://t.co/NsDCctIf5R", + "expanded_url": "http://blog.lmorchard.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/747211922/19e80a54bd6192d234ca49d92c163bb6.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 3858, + "location": "Ferndale, MI", + "screen_name": "lmorchard", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 265, + "name": "Les Craven [\u00ac\u00ba-\u00b0]\u00ac", + "profile_use_background_image": true, + "description": "serially enthusiastic; {web,mad,computer} scientist; {tech,scifi} writer; home{brew,roast}er; mozillian; he/him; 19rGZjL1F2odBkD76NTFiDhbxgDWLqpmK2", + "url": "http://t.co/NsDCctIf5R", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661584606664093696/f-R_8T4f_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Oct 13 19:54:01 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661584606664093696/f-R_8T4f_normal.jpg", + "favourites_count": 7496, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "richardcobbett", + "in_reply_to_user_id": 11937352, + "in_reply_to_status_id_str": "685541670797066240", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685576277697413120", + "id": 685576277697413120, + "text": "@richardcobbett Also, that damn Snow Child. I'm so glad I kept him from melting. *sob*", + "in_reply_to_user_id_str": "11937352", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "richardcobbett", + "id_str": "11937352", + "id": 11937352, + "indices": [ + 0, + 15 + ], + "name": "Richard Cobbett" + } + ] + }, + "created_at": "Fri Jan 08 21:38:16 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685541670797066240, + "lang": "en" + }, + "default_profile_image": false, + "id": 8882, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/747211922/19e80a54bd6192d234ca49d92c163bb6.jpeg", + "statuses_count": 23267, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8882/1437719429", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2814334612", + "following": false, + "friends_count": 1766, + "entities": { + "description": { + "urls": [ + { + "display_url": "support.livecoding.tv/hc/en-us/", + "url": "https://t.co/TVgA6IUVAn", + "expanded_url": "http://support.livecoding.tv/hc/en-us/", + "indices": [ + 99, + 122 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "Livecoding.tv", + "url": "http://t.co/lVXlTFxxhh", + "expanded_url": "http://Livecoding.tv", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3898, + "location": "San Francisco, CA", + "screen_name": "livecodingtv", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 382, + "name": "Livecoding.tv", + "profile_use_background_image": true, + "description": "Watch coders code products live and hang out with them. Need help? Contact us on our 24/7 Support: https://t.co/TVgA6IUVAn", + "url": "http://t.co/lVXlTFxxhh", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/539451988929294337/hCieN16A_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Oct 07 14:59:48 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/539451988929294337/hCieN16A_normal.png", + "favourites_count": 3209, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613612736491520", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "livecoding.tv/matiuri/", + "url": "https://t.co/joEy4ii6fh", + "expanded_url": "https://www.livecoding.tv/matiuri/", + "indices": [ + 33, + 56 + ] + } + ], + "hashtags": [ + { + "indices": [ + 57, + 66 + ], + "text": "software" + }, + { + "indices": [ + 67, + 74 + ], + "text": "hacker" + }, + { + "indices": [ + 75, + 82 + ], + "text": "Others" + } + ], + "user_mentions": [ + { + "screen_name": "ssmatiuri", + "id_str": "1596168408", + "id": 1596168408, + "indices": [ + 83, + 93 + ], + "name": "Mati" + } + ] + }, + "created_at": "Sat Jan 09 00:06:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613612736491520, + "text": "Join Now! \"[ES] Instalando Arch\" https://t.co/joEy4ii6fh #software #hacker #Others @ssmatiuri", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "www.livecoding.tv" + }, + "default_profile_image": false, + "id": 2814334612, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 16431, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2814334612/1450958451", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18957805", + "following": false, + "friends_count": 441, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "archive.org", + "url": "https://t.co/gFtuG5SqUT", + "expanded_url": "https://archive.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/824436651/5e495f5ed45112e2b934b44af16bd6db.png", + "notifications": false, + "profile_sidebar_fill_color": "A0BECA", + "profile_link_color": "706870", + "geo_enabled": false, + "followers_count": 61736, + "location": "San Francisco, CA", + "screen_name": "internetarchive", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2781, + "name": "Internet Archive", + "profile_use_background_image": true, + "description": "Internet Archive is a non-profit digital library offering access to millions of free books, movies, and audio files, plus an archive of 450+ billion web pages.", + "url": "https://t.co/gFtuG5SqUT", + "profile_text_color": "01010A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3429956268/696d9025562f74aa9fab3cac657e02bf_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jan 13 23:06:00 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3429956268/696d9025562f74aa9fab3cac657e02bf_normal.png", + "favourites_count": 879, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685585572157521920", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/candorville/st\u2026", + "url": "https://t.co/a6oJAnksj4", + "expanded_url": "https://twitter.com/candorville/status/685371445313056768", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:15:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685585572157521920, + "text": "LOL! Hopefully 240 years hence the Wayback Machine will be providing equally historically accurate comic relief. https://t.co/a6oJAnksj4", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18957805, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/824436651/5e495f5ed45112e2b934b44af16bd6db.png", + "statuses_count": 1810, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18957805/1364244002", + "is_translator": false + }, + { + "time_zone": "Baghdad", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 10800, + "id_str": "1142688962", + "following": false, + "friends_count": 2055, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "GetSSL.me", + "url": "http://t.co/hUpzJMIvWi", + "expanded_url": "http://GetSSL.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/780968171/aef915881e63f509158002a3fbd8fe8c.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 2812, + "location": "", + "screen_name": "GetSSL_me", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "GetSSL.me", + "profile_use_background_image": false, + "description": "SSL certificate store", + "url": "http://t.co/hUpzJMIvWi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/473898989666844673/hvjUN2wi_normal.png", + "profile_background_color": "EEEEEE", + "created_at": "Sat Feb 02 15:19:56 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/473898989666844673/hvjUN2wi_normal.png", + "favourites_count": 156, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677088841602207745", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 689, + "h": 224, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 195, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 110, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWWAtslU8AApPx2.png", + "type": "photo", + "indices": [ + 74, + 97 + ], + "media_url": "http://pbs.twimg.com/media/CWWAtslU8AApPx2.png", + "display_url": "pic.twitter.com/lrjQASms3Z", + "id_str": "677088841539317760", + "expanded_url": "http://twitter.com/datazenit/status/677088841602207745/photo/1", + "id": 677088841539317760, + "url": "https://t.co/lrjQASms3Z" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1RRq3Vy", + "url": "https://t.co/AMiIYBRbcu", + "expanded_url": "http://buff.ly/1RRq3Vy", + "indices": [ + 50, + 73 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 16 11:32:14 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677088841602207745, + "text": "Datazenit Beta v0.9.26: The biggest update so far https://t.co/AMiIYBRbcu https://t.co/lrjQASms3Z", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677163466134831105", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 689, + "h": 224, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 195, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 110, + "resize": "fit" + } + }, + "source_status_id_str": "677088841602207745", + "url": "https://t.co/lrjQASms3Z", + "media_url": "http://pbs.twimg.com/media/CWWAtslU8AApPx2.png", + "source_user_id_str": "1957458986", + "id_str": "677088841539317760", + "id": 677088841539317760, + "media_url_https": "https://pbs.twimg.com/media/CWWAtslU8AApPx2.png", + "type": "photo", + "indices": [ + 89, + 112 + ], + "source_status_id": 677088841602207745, + "source_user_id": 1957458986, + "display_url": "pic.twitter.com/lrjQASms3Z", + "expanded_url": "http://twitter.com/datazenit/status/677088841602207745/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1RRq3Vy", + "url": "https://t.co/AMiIYBRbcu", + "expanded_url": "http://buff.ly/1RRq3Vy", + "indices": [ + 65, + 88 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "datazenit", + "id_str": "1957458986", + "id": 1957458986, + "indices": [ + 3, + 13 + ], + "name": "Datazenit" + } + ] + }, + "created_at": "Wed Dec 16 16:28:46 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677163466134831105, + "text": "RT @datazenit: Datazenit Beta v0.9.26: The biggest update so far https://t.co/AMiIYBRbcu https://t.co/lrjQASms3Z", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 1142688962, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/780968171/aef915881e63f509158002a3fbd8fe8c.png", + "statuses_count": 538, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1142688962/1401820904", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14623460", + "following": false, + "friends_count": 13543, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "veracode.com", + "url": "http://t.co/sz31rPl3Q1", + "expanded_url": "http://www.veracode.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441339837979701248/zd3XfrWb.png", + "notifications": false, + "profile_sidebar_fill_color": "0099CC", + "profile_link_color": "3F979D", + "geo_enabled": true, + "followers_count": 18214, + "location": "Burlington, MA, USA", + "screen_name": "Veracode", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 465, + "name": "Veracode", + "profile_use_background_image": true, + "description": "The Most Powerful Application Security Platform on the Planet. SDLC | Web | Mobile | Third-Party", + "url": "http://t.co/sz31rPl3Q1", + "profile_text_color": "FFFFFF", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477142547349782528/OSJs9BCN_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Fri May 02 08:09:00 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477142547349782528/OSJs9BCN_normal.png", + "favourites_count": 4842, + "status": { + "retweet_count": 9, + "retweeted_status": { + "retweet_count": 9, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685533900882329600", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "arstechnica.com/security/2016/\u2026", + "url": "https://t.co/4LI0EyvoAk", + "expanded_url": "http://arstechnica.com/security/2016/01/gm-embraces-white-hats-with-public-vulnerability-disclosure-program/", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:49:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685533900882329600, + "text": "GM embraces white-hat hackers with public vulnerability disclosure program https://t.co/4LI0EyvoAk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685543297645936641", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "arstechnica.com/security/2016/\u2026", + "url": "https://t.co/4LI0EyvoAk", + "expanded_url": "http://arstechnica.com/security/2016/01/gm-embraces-white-hats-with-public-vulnerability-disclosure-program/", + "indices": [ + 89, + 112 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "WeldPond", + "id_str": "14090906", + "id": 14090906, + "indices": [ + 3, + 12 + ], + "name": "Chris Wysopal" + } + ] + }, + "created_at": "Fri Jan 08 19:27:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685543297645936641, + "text": "RT @WeldPond: GM embraces white-hat hackers with public vulnerability disclosure program https://t.co/4LI0EyvoAk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 14623460, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441339837979701248/zd3XfrWb.png", + "statuses_count": 6786, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623460/1402594350", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1465481", + "following": false, + "friends_count": 607, + "entities": { + "description": { + "urls": [ + { + "display_url": "TEXTFILES.COM", + "url": "http://t.co/YyhkEb8AoI", + "expanded_url": "http://TEXTFILES.COM", + "indices": [ + 14, + 36 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ascii.textfiles.com", + "url": "http://t.co/1f0N0Joxb7", + "expanded_url": "http://ascii.textfiles.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456574636491161600/YFsbi-ex.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 14912, + "location": "The 1980s", + "screen_name": "textfiles", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 876, + "name": "Jason Scott", + "profile_use_background_image": true, + "description": "Proprietor of http://t.co/YyhkEb8AoI, historian, filmmaker, archivist, famous cat maintenance staff. Works on/for/over the Internet Archive.", + "url": "http://t.co/1f0N0Joxb7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/665625640251584516/-4Tubhvj_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Mar 19 02:55:22 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/665625640251584516/-4Tubhvj_normal.jpg", + "favourites_count": 280, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685599995375038465", + "geo": { + "coordinates": [ + 40.73527558, + -74.00495104 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "swarmapp.com/c/f4nW3mcQScT", + "url": "https://t.co/2YXt5wob8G", + "expanded_url": "https://www.swarmapp.com/c/f4nW3mcQScT", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RalphLauren", + "id_str": "34395888", + "id": 34395888, + "indices": [ + 100, + 112 + ], + "name": "Ralph Lauren" + } + ] + }, + "created_at": "Fri Jan 08 23:12:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.026675, + 40.683935 + ], + [ + -73.910408, + 40.683935 + ], + [ + -73.910408, + 40.877483 + ], + [ + -74.026675, + 40.877483 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Manhattan, NY", + "id": "01a9a39529b27f36", + "name": "Manhattan" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685599995375038465, + "text": "Holy crap. When I hit my goal weight, I will march here and have my next major custom suit (@ RRL - @ralphlauren) https://t.co/2YXt5wob8G", + "coordinates": { + "coordinates": [ + -74.00495104, + 40.73527558 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Foursquare" + }, + "default_profile_image": false, + "id": 1465481, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456574636491161600/YFsbi-ex.jpeg", + "statuses_count": 48579, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1465481/1398239070", + "is_translator": false + }, + { + "time_zone": "Edinburgh", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "139083857", + "following": false, + "friends_count": 8855, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 8863, + "location": "Yestor", + "screen_name": "Yestormato", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 70, + "name": "Jim", + "profile_use_background_image": true, + "description": "Yes music, Jon Anderson plus Prog & Rock music.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/549996258031857664/7CbHLozt_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat May 01 14:00:10 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/549996258031857664/7CbHLozt_normal.jpeg", + "favourites_count": 756, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "koosk47", + "in_reply_to_user_id": 796887842, + "in_reply_to_status_id_str": "685242714837913601", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685245318292762625", + "id": 685245318292762625, + "text": "@koosk47 My pleasure Steven :-)", + "in_reply_to_user_id_str": "796887842", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "koosk47", + "id_str": "796887842", + "id": 796887842, + "indices": [ + 0, + 8 + ], + "name": "Steven McCue" + } + ] + }, + "created_at": "Thu Jan 07 23:43:09 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685242714837913601, + "lang": "en" + }, + "default_profile_image": false, + "id": 139083857, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 19808, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/139083857/1446231777", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2485442528", + "following": false, + "friends_count": 4, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "turing.cool", + "url": "http://t.co/ABE7FRpbCJ", + "expanded_url": "http://turing.cool", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "345161", + "geo_enabled": false, + "followers_count": 326, + "location": "Philly + Seattle", + "screen_name": "turingcool", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "Turing Incomplete", + "profile_use_background_image": true, + "description": "A podcast about programming by @justincampbell, @jearvon, @pamasaur, and @ignu", + "url": "http://t.co/ABE7FRpbCJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/474863977676029952/6nPyuDmm_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri May 09 14:07:34 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/474863977676029952/6nPyuDmm_normal.png", + "favourites_count": 13, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677923206196514816", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "turing.cool/72", + "url": "https://t.co/5SlFfLGerL", + "expanded_url": "http://turing.cool/72", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lgbtqfm", + "id_str": "4359368233", + "id": 4359368233, + "indices": [ + 57, + 65 + ], + "name": "LGBTQ Tech Podcast" + } + ] + }, + "created_at": "Fri Dec 18 18:47:42 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677923206196514816, + "text": "Turing-Incomplete #72 - Inevitability and what have you\n\n@lgbtqfm, JavaScript, and the physics of spacetime\n\nhttps://t.co/5SlFfLGerL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 2485442528, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 103, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2485442528/1414710977", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15119662", + "following": false, + "friends_count": 3967, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/epowell/", + "url": "http://t.co/iEltF4lNo0", + "expanded_url": "http://www.linkedin.com/in/epowell/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "486091", + "geo_enabled": true, + "followers_count": 5024, + "location": "Palo Alto, CA", + "screen_name": "epowell101", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 222, + "name": "Evan Powell", + "profile_use_background_image": true, + "description": "Infrastructure entrepreneur. Founding CEO of @Stack_Storm. Former EIR w @XSeedCapital. Founding CEO of Nexenta & Clarus (RVBD). #DevOps #automation #opensource", + "url": "http://t.co/iEltF4lNo0", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000420844277/bfa89acd028cb4f4a97c543aa33f61b9_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jun 14 20:37:48 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000420844277/bfa89acd028cb4f4a97c543aa33f61b9_normal.jpeg", + "favourites_count": 3065, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685551803044249600", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "redd.it/3ztcla", + "url": "https://t.co/C6Wa98PSra", + "expanded_url": "https://redd.it/3ztcla", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [ + { + "indices": [ + 20, + 28 + ], + "text": "chatops" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:01:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685551803044249600, + "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 15119662, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3495, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15119662/1398364953", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "182323597", + "following": false, + "friends_count": 2046, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "graylog.org", + "url": "http://t.co/SQMbZ5jVuX", + "expanded_url": "http://www.graylog.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "CE232A", + "geo_enabled": true, + "followers_count": 4021, + "location": "Houston, TX / Hamburg, Germany", + "screen_name": "graylog2", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 141, + "name": "Graylog", + "profile_use_background_image": true, + "description": "Open source, centralized log management. Made with love in Germany and Texas.", + "url": "http://t.co/SQMbZ5jVuX", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/562404576330915840/_HU28D42_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Aug 24 10:11:05 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/562404576330915840/_HU28D42_normal.png", + "favourites_count": 325, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685514898843893761", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "siawyoung.com/coding/sysadmi\u2026", + "url": "https://t.co/gQvJKppcD2", + "expanded_url": "http://siawyoung.com/coding/sysadmin/graylog2/logging-rogger-graylog2-twilio.html", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "graylog2", + "id_str": "182323597", + "id": 182323597, + "indices": [ + 126, + 135 + ], + "name": "Graylog" + } + ] + }, + "created_at": "Fri Jan 08 17:34:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685514898843893761, + "text": "Check out how I'm using Rogger, Graylog2 and Twilio to notify me of exceptions in Rake tasks by SMS \ud83d\ude07 https://t.co/gQvJKppcD2 @graylog2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685521651530768384", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "siawyoung.com/coding/sysadmi\u2026", + "url": "https://t.co/gQvJKppcD2", + "expanded_url": "http://siawyoung.com/coding/sysadmin/graylog2/logging-rogger-graylog2-twilio.html", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "siawyoung", + "id_str": "28130320", + "id": 28130320, + "indices": [ + 3, + 13 + ], + "name": "Lau Siaw Young" + }, + { + "screen_name": "graylog2", + "id_str": "182323597", + "id": 182323597, + "indices": [ + 139, + 140 + ], + "name": "Graylog" + } + ] + }, + "created_at": "Fri Jan 08 18:01:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685521651530768384, + "text": "RT @siawyoung: Check out how I'm using Rogger, Graylog2 and Twilio to notify me of exceptions in Rake tasks by SMS \ud83d\ude07 https://t.co/gQvJKppcD\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 182323597, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 974, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/182323597/1384882795", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "112601087", + "following": false, + "friends_count": 99, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "codeascraft.com", + "url": "http://t.co/3ZgrIFLcxr", + "expanded_url": "http://codeascraft.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/558826649/background.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "666666", + "geo_enabled": true, + "followers_count": 8416, + "location": "NYC & SF", + "screen_name": "codeascraft", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 282, + "name": "Etsy Engineering", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/3ZgrIFLcxr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2240963155/codeascraft-twitter_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Tue Feb 09 02:42:06 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2240963155/codeascraft-twitter_normal.png", + "favourites_count": 85, + "status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679381492896817152", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "codeascraft.com/2015/12/21/lev\u2026", + "url": "https://t.co/WbvulRW23h", + "expanded_url": "https://codeascraft.com/2015/12/21/leveling-up-with-system-reviews/", + "indices": [ + 107, + 130 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "johngoulah", + "id_str": "22407045", + "id": 22407045, + "indices": [ + 13, + 24 + ], + "name": "John Goulah" + } + ] + }, + "created_at": "Tue Dec 22 19:22:24 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/011add077f4d2da3.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.041878, + 40.570842 + ], + [ + -73.855673, + 40.570842 + ], + [ + -73.855673, + 40.739434 + ], + [ + -74.041878, + 40.739434 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Brooklyn, NY", + "id": "011add077f4d2da3", + "name": "Brooklyn" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679381492896817152, + "text": "On the blog: @johngoulah describes using system reviews to identify organizational and cultural challenges https://t.co/WbvulRW23h", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 112601087, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/558826649/background.jpg", + "statuses_count": 330, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "31204696", + "following": false, + "friends_count": 749, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nodebotani.st", + "url": "https://t.co/WMf50wjXlo", + "expanded_url": "http://nodebotani.st", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 2864, + "location": "Austin, TX", + "screen_name": "nodebotanist", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 228, + "name": "Mx Kas Perch", + "profile_use_background_image": true, + "description": "Dev Evangelist @auth0. @nodebotslive /NodeBots author/addict. Gamer. Crafter. Baseball fan. Attempted Intersectional Feminist. Any pronouns. Avi/@nvcexploder.", + "url": "https://t.co/WMf50wjXlo", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/665620578351583232/m5ki022s_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Apr 14 19:37:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/665620578351583232/m5ki022s_normal.jpg", + "favourites_count": 11867, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685549691468029952", + "id": 685549691468029952, + "text": "Where you spend 2 hours debugging a software problem...that turns out to be a well-known hardware limitation. That you knew about. /sigh", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:52:38 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 31204696, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 11671, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/31204696/1441908212", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "47494539", + "following": false, + "friends_count": 304, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kellabyte.com", + "url": "http://t.co/Ipj1OcvrAi", + "expanded_url": "http://kellabyte.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/37790197/01341_headingwest_1440x900.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 24999, + "location": "Canada", + "screen_name": "kellabyte", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1283, + "name": "Kelly Sommers", + "profile_use_background_image": true, + "description": "3x Windows Azure MVP & Former 2x DataStax MVP for Apache Cassandra, Backend brat, big data, distributed diva. Relentless learner. I void warranties.", + "url": "http://t.co/Ipj1OcvrAi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2808005971/b81b99287e78b1cd6cbd0e5cbfb3295c_normal.png", + "profile_background_color": "9AE4E8", + "created_at": "Tue Jun 16 00:43:48 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2808005971/b81b99287e78b1cd6cbd0e5cbfb3295c_normal.png", + "favourites_count": 4875, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "aka_pugs", + "in_reply_to_user_id": 2241477403, + "in_reply_to_status_id_str": "684943018621730816", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684943143695941632", + "id": 684943143695941632, + "text": "@aka_pugs @Obdurodon Yeah absolutely. I wonder how the USB3 capable boards perform. Most are USB2 but a few are USB3.", + "in_reply_to_user_id_str": "2241477403", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "aka_pugs", + "id_str": "2241477403", + "id": 2241477403, + "indices": [ + 0, + 9 + ], + "name": "Tom Lyon" + }, + { + "screen_name": "Obdurodon", + "id_str": "15663547", + "id": 15663547, + "indices": [ + 10, + 20 + ], + "name": "Jeff Darcy" + } + ] + }, + "created_at": "Thu Jan 07 03:42:25 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684943018621730816, + "lang": "en" + }, + "default_profile_image": false, + "id": 47494539, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/37790197/01341_headingwest_1440x900.jpg", + "statuses_count": 92792, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "2436389418", + "following": false, + "friends_count": 4456, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/swiftonsecurit\u2026", + "url": "https://t.co/W6mjdDNww9", + "expanded_url": "https://twitter.com/swiftonsecurity/status/570638981009948673", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 109196, + "location": "WELCOME TO NEW YORK", + "screen_name": "SwiftOnSecurity", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2881, + "name": "SecuriTay", + "profile_use_background_image": true, + "description": "I make stupid jokes, talk about consumer technology security, and use Oxford commas. See website link for ethics statement.", + "url": "https://t.co/W6mjdDNww9", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661039155753807872/-KODvkhT_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu Apr 10 02:54:26 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661039155753807872/-KODvkhT_normal.jpg", + "favourites_count": 33215, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685608025202114561", + "id": 685608025202114561, + "text": "Correction: I presented an old policy statement from @letsencrypt as if it were a response to the current issues. I apologize for the error.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "letsencrypt", + "id_str": "2887837801", + "id": 2887837801, + "indices": [ + 53, + 65 + ], + "name": "Let's Encrypt" + } + ] + }, + "created_at": "Fri Jan 08 23:44:25 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 10, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2436389418, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 27965, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2436389418/1445620137", + "is_translator": false + }, + { + "time_zone": "Warsaw", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "515908759", + "following": false, + "friends_count": 221, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kamilogorek.pl", + "url": "https://t.co/RltIhVl0fV", + "expanded_url": "http://kamilogorek.pl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 351, + "location": "Krak\u00f3w", + "screen_name": "kamilogorek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Kamil Og\u00f3rek", + "profile_use_background_image": false, + "description": "Weightlifter, climber, athlete, drummer and music lover. Training and nutrition geek. Senior Client-side Engineer @xteam. @AmpersandJS core team.", + "url": "https://t.co/RltIhVl0fV", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666395289809526784/fiSRceCT_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Mar 05 21:59:18 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666395289809526784/fiSRceCT_normal.jpg", + "favourites_count": 1694, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685103356033904640", + "id": 685103356033904640, + "text": "You know what's bad? Lack of tests.\nYou know what's worse? Broken tests.\nYou know what's the worst? Broken async promise-based tests.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 14:19:03 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 515908759, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "statuses_count": 1766, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/515908759/1447716102", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15524875", + "following": false, + "friends_count": 1002, + "entities": { + "description": { + "urls": [ + { + "display_url": "jewelbots.com", + "url": "http://t.co/EsgzOffGD7", + "expanded_url": "http://jewelbots.com", + "indices": [ + 121, + 143 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "SaraJChipps.com", + "url": "http://t.co/v61Pc3zFKU", + "expanded_url": "http://SaraJChipps.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99724100/2010-05-04_09.15.13.jpg.scaled.1000.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 29650, + "location": "body in BK, heart in NJ", + "screen_name": "SaraJChipps", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1952, + "name": "SaraReyChipps", + "profile_use_background_image": true, + "description": "Just a girl, standing in front of a microprocessor, asking it to love her. I made @girldevelopit. I'm making @jewelbots. http://t.co/EsgzOffGD7", + "url": "http://t.co/v61Pc3zFKU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629693983610961921/k-pW0Isa_normal.png", + "profile_background_color": "FFF04D", + "created_at": "Tue Jul 22 02:26:37 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFF8AD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629693983610961921/k-pW0Isa_normal.png", + "favourites_count": 36619, + "status": { + "retweet_count": 3797, + "retweeted_status": { + "retweet_count": 3797, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685548067802714112", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 628, + "h": 387, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 369, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 209, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", + "type": "photo", + "indices": [ + 80, + 103 + ], + "media_url": "http://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", + "display_url": "pic.twitter.com/uhUjs26qFK", + "id_str": "685547983375626240", + "expanded_url": "http://twitter.com/BuzzFeed/status/685548067802714112/photo/1", + "id": 685547983375626240, + "url": "https://t.co/uhUjs26qFK" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:46:10 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685548067802714112, + "text": "Today is the 15-year anniversary of the most iconic red carpet appearance ever. https://t.co/uhUjs26qFK", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4096, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685556065816064001", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 628, + "h": 387, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 369, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 209, + "resize": "fit" + } + }, + "source_status_id_str": "685548067802714112", + "url": "https://t.co/uhUjs26qFK", + "media_url": "http://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", + "source_user_id_str": "5695632", + "id_str": "685547983375626240", + "id": 685547983375626240, + "media_url_https": "https://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", + "type": "photo", + "indices": [ + 94, + 117 + ], + "source_status_id": 685548067802714112, + "source_user_id": 5695632, + "display_url": "pic.twitter.com/uhUjs26qFK", + "expanded_url": "http://twitter.com/BuzzFeed/status/685548067802714112/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BuzzFeed", + "id_str": "5695632", + "id": 5695632, + "indices": [ + 3, + 12 + ], + "name": "BuzzFeed" + } + ] + }, + "created_at": "Fri Jan 08 20:17:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685556065816064001, + "text": "RT @BuzzFeed: Today is the 15-year anniversary of the most iconic red carpet appearance ever. https://t.co/uhUjs26qFK", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Mobile Web (M5)" + }, + "default_profile_image": false, + "id": 15524875, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99724100/2010-05-04_09.15.13.jpg.scaled.1000.jpg", + "statuses_count": 45323, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15524875/1404073059", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "91333167", + "following": false, + "friends_count": 9538, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "climagic.org", + "url": "http://t.co/dUakp9EMPS", + "expanded_url": "http://www.climagic.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/60122174/checkertermbackground.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 110657, + "location": "BASHLAND", + "screen_name": "climagic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3043, + "name": "Command Line Magic", + "profile_use_background_image": true, + "description": "Cool Unix/Linux Command Line tricks you can use in 140 characters or less.", + "url": "http://t.co/dUakp9EMPS", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/535876218/climagic-icon_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Nov 20 12:49:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/535876218/climagic-icon_normal.png", + "favourites_count": 81, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "drscriptt", + "in_reply_to_user_id": 179397824, + "in_reply_to_status_id_str": "685587768823562240", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685599165511036930", + "id": 685599165511036930, + "text": "@drscriptt yes I was curious if it would work and it did. The bash order of operations allows it.", + "in_reply_to_user_id_str": "179397824", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "drscriptt", + "id_str": "179397824", + "id": 179397824, + "indices": [ + 0, + 10 + ], + "name": "Grant Taylor" + } + ] + }, + "created_at": "Fri Jan 08 23:09:13 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685587768823562240, + "lang": "en" + }, + "default_profile_image": false, + "id": 91333167, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/60122174/checkertermbackground.png", + "statuses_count": 8785, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "984722142", + "following": false, + "friends_count": 494, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pinitto.me", + "url": "http://t.co/IRN9Ht9Z", + "expanded_url": "http://www.pinitto.me", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/727281958/35fa768cbbcd6dbccece000b924c8e62.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 126, + "location": "Bristol, UK", + "screen_name": "Pinittome", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "pinitto.me", + "profile_use_background_image": true, + "description": "New open source corkboard-style application. Written using nodejs, express, socket.io, and jquery.", + "url": "http://t.co/IRN9Ht9Z", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3010874913/f4cde223912ba24b68c57c20001844a2_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Dec 02 14:33:38 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3010874913/f4cde223912ba24b68c57c20001844a2_normal.png", + "favourites_count": 9, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "683932116539863040", + "id": 683932116539863040, + "text": "Happy new year! Server costs this month were $18.61 help us keep our servers alive for another year with a donation :)", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 08:44:58 +0000 2016", + "source": "Facebook", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 984722142, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/727281958/35fa768cbbcd6dbccece000b924c8e62.jpeg", + "statuses_count": 234, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/984722142/1359537842", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "158704969", + "following": false, + "friends_count": 296, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3618, + "location": "Not Silicon Valley", + "screen_name": "rvagg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 198, + "name": "Rod Vagg", + "profile_use_background_image": true, + "description": "Incorrect", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/550632925209698305/YQmyExEj_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 23 11:25:46 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/550632925209698305/YQmyExEj_normal.png", + "favourites_count": 3471, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "nzgb", + "in_reply_to_user_id": 329661096, + "in_reply_to_status_id_str": "685613430770892801", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613633615704064", + "id": 685613633615704064, + "text": "@nzgb fwiw I think fleshing out something for node-eps would be constructive but it would be a big discussion and long process", + "in_reply_to_user_id_str": "329661096", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nzgb", + "id_str": "329661096", + "id": 329661096, + "indices": [ + 0, + 5 + ], + "name": "Nicol\u00e1s Bevacqua" + } + ] + }, + "created_at": "Sat Jan 09 00:06:42 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685613430770892801, + "lang": "en" + }, + "default_profile_image": false, + "id": 158704969, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8035, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "64218381", + "following": false, + "friends_count": 1244, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "benatkin.com", + "url": "https://t.co/nw7V3ZCyTY", + "expanded_url": "http://benatkin.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "969696", + "geo_enabled": true, + "followers_count": 1828, + "location": "San Francisco", + "screen_name": "benatkin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 180, + "name": "benatkin", + "profile_use_background_image": false, + "description": "web developer who thrives on green tea and granola. can be found online or in the bay area.", + "url": "https://t.co/nw7V3ZCyTY", + "profile_text_color": "666666", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/635674829526462464/smsXzzPs_normal.png", + "profile_background_color": "000000", + "created_at": "Sun Aug 09 17:58:37 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/635674829526462464/smsXzzPs_normal.png", + "favourites_count": 23393, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685295871299211264", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 734, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 837, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 474, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKo9XdVAAAflKT.jpg", + "type": "photo", + "indices": [ + 14, + 37 + ], + "media_url": "http://pbs.twimg.com/media/CYKo9XdVAAAflKT.jpg", + "display_url": "pic.twitter.com/KnCLRtluuO", + "id_str": "685295865536249856", + "expanded_url": "http://twitter.com/benatkin/status/685295871299211264/photo/1", + "id": 685295865536249856, + "url": "https://t.co/KnCLRtluuO" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "potasmic", + "id_str": "120103910", + "id": 120103910, + "indices": [ + 4, + 13 + ], + "name": "Potasmic" + } + ] + }, + "created_at": "Fri Jan 08 03:04:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685295871299211264, + "text": "via @potasmic https://t.co/KnCLRtluuO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 64218381, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 54174, + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "1508475829", + "following": false, + "friends_count": 380, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "webrtchacks.com", + "url": "http://t.co/hO41DRjg5f", + "expanded_url": "http://webrtchacks.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2056, + "location": "", + "screen_name": "webrtcHacks", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 82, + "name": "webrtcHacks", + "profile_use_background_image": true, + "description": "WebRTC information & experiments for developers", + "url": "http://t.co/hO41DRjg5f", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000477595516/5247654c3fcf51cf8b4d69133871908c_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 12 02:58:03 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000477595516/5247654c3fcf51cf8b4d69133871908c_normal.png", + "favourites_count": 18, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681519669975465984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "webrtchacks.com/chrome-secure-\u2026", + "url": "https://t.co/jVfEoJItlZ", + "expanded_url": "https://webrtchacks.com/chrome-secure-origin-https/", + "indices": [ + 68, + 91 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Dec 28 16:58:46 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681519669975465984, + "text": "webrtcH4cKS: ~ Surviving Mandatory HTTPS in Chrome (Xander Dumaine)\nhttps://t.co/jVfEoJItlZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681554888099278848", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "webrtchacks.com/chrome-secure-\u2026", + "url": "https://t.co/jVfEoJItlZ", + "expanded_url": "https://webrtchacks.com/chrome-secure-origin-https/", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Invisible_Alan", + "id_str": "323926038", + "id": 323926038, + "indices": [ + 3, + 18 + ], + "name": "Alan Tai" + } + ] + }, + "created_at": "Mon Dec 28 19:18:42 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681554888099278848, + "text": "RT @Invisible_Alan: webrtcH4cKS: ~ Surviving Mandatory HTTPS in Chrome (Xander Dumaine)\nhttps://t.co/jVfEoJItlZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 1508475829, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 649, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2972985398", + "following": false, + "friends_count": 810, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 718, + "location": "", + "screen_name": "electricatz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 36, + "name": "michelle@tinwhiskers", + "profile_use_background_image": true, + "description": "Software Engineer, Vice President of @crashspaceLA", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668207391951863815/fv5L-Sbt_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jan 10 20:52:01 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668207391951863815/fv5L-Sbt_normal.jpg", + "favourites_count": 3597, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685499886150660096", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", + "type": "photo", + "indices": [ + 79, + 102 + ], + "media_url": "http://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", + "display_url": "pic.twitter.com/wny85nk7EI", + "id_str": "685499874427551745", + "expanded_url": "http://twitter.com/crashspaceLA/status/685499886150660096/photo/1", + "id": 685499874427551745, + "url": "https://t.co/wny85nk7EI" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "electricatz", + "id_str": "2972985398", + "id": 2972985398, + "indices": [ + 17, + 29 + ], + "name": "michelle@tinwhiskers" + } + ] + }, + "created_at": "Fri Jan 08 16:34:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685499886150660096, + "text": "Dr Evelyn and Dr @electricatz brought this poor broken LED strip back to life! https://t.co/wny85nk7EI", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685500599098458113", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "685499886150660096", + "url": "https://t.co/wny85nk7EI", + "media_url": "http://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", + "source_user_id_str": "82969116", + "id_str": "685499874427551745", + "id": 685499874427551745, + "media_url_https": "https://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", + "type": "photo", + "indices": [ + 97, + 120 + ], + "source_status_id": 685499886150660096, + "source_user_id": 82969116, + "display_url": "pic.twitter.com/wny85nk7EI", + "expanded_url": "http://twitter.com/crashspaceLA/status/685499886150660096/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "crashspaceLA", + "id_str": "82969116", + "id": 82969116, + "indices": [ + 3, + 16 + ], + "name": "CRASH Space" + }, + { + "screen_name": "electricatz", + "id_str": "2972985398", + "id": 2972985398, + "indices": [ + 35, + 47 + ], + "name": "michelle@tinwhiskers" + } + ] + }, + "created_at": "Fri Jan 08 16:37:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685500599098458113, + "text": "RT @crashspaceLA: Dr Evelyn and Dr @electricatz brought this poor broken LED strip back to life! https://t.co/wny85nk7EI", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2972985398, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1047, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2972985398/1420923586", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": -18000, + "id_str": "423269417", + "blocking": false, + "is_translation_enabled": true, + "id": 423269417, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 28 08:59:15 +0000 2011", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", + "favourites_count": 22, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 149, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 4, + "notifications": false, + "screen_name": "Httphub", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 6, + "is_translator": false, + "name": "HTTPHUB" + }, + { + "time_zone": "Pretoria", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "66759988", + "following": false, + "friends_count": 206, + "entities": { + "description": { + "urls": [ + { + "display_url": "JRuDevels.org", + "url": "http://t.co/bQViyxTgJE", + "expanded_url": "http://JRuDevels.org", + "indices": [ + 0, + 22 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hidevlab.com", + "url": "http://t.co/7kPnyskpNl", + "expanded_url": "http://hidevlab.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 121, + "location": "Omsk, Capetown", + "screen_name": "JBinary", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Sergey Dobrov", + "profile_use_background_image": true, + "description": "http://t.co/bQViyxTgJE founder, XMPP/Web/Python/JS developer", + "url": "http://t.co/7kPnyskpNl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/551104450954551297/ZYZ3b7Fr_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Tue Aug 18 18:38:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551104450954551297/ZYZ3b7Fr_normal.jpeg", + "favourites_count": 700, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "xzmbjk", + "in_reply_to_user_id": 312577640, + "in_reply_to_status_id_str": "685490061710868480", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685500622725058560", + "id": 685500622725058560, + "text": "@xzmbjk @sd0107 \u044f \u0432\u0430\u043c \u043a\u0430\u043a \u0421\u0435\u0440\u0433\u0435\u0439 \u0414. \u0433\u043e\u0432\u043e\u0440\u044e: \u043d\u0435 \u0412\u0421\u0401 \u0442\u0430\u043a \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e!", + "in_reply_to_user_id_str": "312577640", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "xzmbjk", + "id_str": "312577640", + "id": 312577640, + "indices": [ + 0, + 7 + ], + "name": "KillU" + }, + { + "screen_name": "sd0107", + "id_str": "125478107", + "id": 125478107, + "indices": [ + 8, + 15 + ], + "name": "\u0421\u0435\u0440\u0433\u0435\u0439 \u0414" + } + ] + }, + "created_at": "Fri Jan 08 16:37:39 +0000 2016", + "source": "Fenix for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685490061710868480, + "lang": "ru" + }, + "default_profile_image": false, + "id": 66759988, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 4105, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "72982024", + "following": false, + "friends_count": 17743, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gapingvoid.com", + "url": "https://t.co/5hsg8TV77Z", + "expanded_url": "http://www.gapingvoid.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 46406, + "location": "", + "screen_name": "gapingvoid", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 793, + "name": "gapingvoid", + "profile_use_background_image": false, + "description": "Culture change management driven visual tools that transform your organization. Clients @Microsoft @Rackspace @Zappos @Ditech @VMware", + "url": "https://t.co/5hsg8TV77Z", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/577587854324334592/7KgDP9lW_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Sep 09 23:28:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/577587854324334592/7KgDP9lW_normal.jpeg", + "favourites_count": 7725, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": 72982024, + "possibly_sensitive": false, + "id_str": "685236456563044352", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 852, + "h": 568, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", + "type": "photo", + "indices": [ + 81, + 104 + ], + "media_url": "http://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", + "display_url": "pic.twitter.com/VdE5BS6M5a", + "id_str": "685236454897799168", + "expanded_url": "http://twitter.com/hughcartoons/status/685236456563044352/photo/1", + "id": 685236454897799168, + "url": "https://t.co/VdE5BS6M5a" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "us1.campaign-archive1.com/?u=028de8672d5\u2026", + "url": "https://t.co/lE8zFGbUv7", + "expanded_url": "http://us1.campaign-archive1.com/?u=028de8672d5f9a229f15e9edf&id=2ed0934892&e=ead155b89c", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "gapingvoid", + "id_str": "72982024", + "id": 72982024, + "indices": [ + 0, + 11 + ], + "name": "gapingvoid" + } + ] + }, + "created_at": "Thu Jan 07 23:07:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "72982024", + "place": null, + "in_reply_to_screen_name": "gapingvoid", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685236456563044352, + "text": "@gapingvoid is launching a weekly healthcare newsletter: https://t.co/lE8zFGbUv7 https://t.co/VdE5BS6M5a", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685558361710972929", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 852, + "h": 568, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + } + }, + "source_status_id_str": "685236456563044352", + "url": "https://t.co/VdE5BS6M5a", + "media_url": "http://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", + "source_user_id_str": "50193", + "id_str": "685236454897799168", + "id": 685236454897799168, + "media_url_https": "https://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", + "type": "photo", + "indices": [ + 99, + 122 + ], + "source_status_id": 685236456563044352, + "source_user_id": 50193, + "display_url": "pic.twitter.com/VdE5BS6M5a", + "expanded_url": "http://twitter.com/hughcartoons/status/685236456563044352/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "us1.campaign-archive1.com/?u=028de8672d5\u2026", + "url": "https://t.co/lE8zFGbUv7", + "expanded_url": "http://us1.campaign-archive1.com/?u=028de8672d5f9a229f15e9edf&id=2ed0934892&e=ead155b89c", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "hughcartoons", + "id_str": "50193", + "id": 50193, + "indices": [ + 3, + 16 + ], + "name": "Hugh MacLeod" + }, + { + "screen_name": "gapingvoid", + "id_str": "72982024", + "id": 72982024, + "indices": [ + 18, + 29 + ], + "name": "gapingvoid" + } + ] + }, + "created_at": "Fri Jan 08 20:27:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685558361710972929, + "text": "RT @hughcartoons: @gapingvoid is launching a weekly healthcare newsletter: https://t.co/lE8zFGbUv7 https://t.co/VdE5BS6M5a", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 72982024, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6561, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/72982024/1426542650", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1547166745", + "following": false, + "friends_count": 282, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 45, + "location": "", + "screen_name": "311onwax", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "James Jeffers", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000046852675/b9acdfc70098f944711254b1cf8b54f5_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 26 02:30:52 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000046852675/b9acdfc70098f944711254b1cf8b54f5_normal.jpeg", + "favourites_count": 202, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "The90sLife", + "in_reply_to_user_id": 436411543, + "in_reply_to_status_id_str": "680751289454706688", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "680776290635493376", + "id": 680776290635493376, + "text": "@The90sLife remember jumping on the bear for extra lives?", + "in_reply_to_user_id_str": "436411543", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "The90sLife", + "id_str": "436411543", + "id": 436411543, + "indices": [ + 0, + 11 + ], + "name": "The 90s Life" + } + ] + }, + "created_at": "Sat Dec 26 15:44:50 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 680751289454706688, + "lang": "en" + }, + "default_profile_image": false, + "id": 1547166745, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 738, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16487505", + "following": false, + "friends_count": 7172, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "coreylatislaw.com/android-activi\u2026", + "url": "https://t.co/pnzBLFwf6Y", + "expanded_url": "http://coreylatislaw.com/android-activity-book/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 6518, + "location": "Philadelphia, PA", + "screen_name": "corey_latislaw", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 416, + "name": "Corey Leigh Latislaw", + "profile_use_background_image": true, + "description": "Geeky eco-minded nature-loving technophile. Feminist. Android GDE, lead at @OffGridE, international speaker, sketchnoter, founder @bushelme and @androidphilly.", + "url": "https://t.co/pnzBLFwf6Y", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677142271708389376/JNfgckjB_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Sat Sep 27 16:59:53 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677142271708389376/JNfgckjB_normal.jpg", + "favourites_count": 6107, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685604608668991488", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 1319, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 438, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 773, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPBvszWMAAkgEo.jpg", + "type": "photo", + "indices": [ + 56, + 79 + ], + "media_url": "http://pbs.twimg.com/media/CYPBvszWMAAkgEo.jpg", + "display_url": "pic.twitter.com/WSNqJCvfwf", + "id_str": "685604593514983424", + "expanded_url": "http://twitter.com/corey_latislaw/status/685604608668991488/photo/1", + "id": 685604593514983424, + "url": "https://t.co/WSNqJCvfwf" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:30:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/e4a0d228eb6be76b.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -75.280284, + 39.871811 + ], + [ + -74.955712, + 39.871811 + ], + [ + -74.955712, + 40.13792 + ], + [ + -75.280284, + 40.13792 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Philadelphia, PA", + "id": "e4a0d228eb6be76b", + "name": "Philadelphia" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685604608668991488, + "text": "Very orangey! Was expecting more violet, but I love it. https://t.co/WSNqJCvfwf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 16487505, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 20816, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16487505/1441343221", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "12708782", + "following": false, + "friends_count": 1826, + "entities": { + "description": { + "urls": [ + { + "display_url": "theubergeekgirl.com/now", + "url": "https://t.co/kB9kUAGaVJ", + "expanded_url": "http://theubergeekgirl.com/now", + "indices": [ + 0, + 23 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "about.me/jessicadevita", + "url": "https://t.co/SB2xmt7RdJ", + "expanded_url": "http://about.me/jessicadevita", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614503590699249664/84bvDwxx.png", + "notifications": false, + "profile_sidebar_fill_color": "D4D4D4", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 5078, + "location": "Santa Monica", + "screen_name": "UberGeekGirl", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 350, + "name": "Jessica DeVita", + "profile_use_background_image": true, + "description": "https://t.co/kB9kUAGaVJ Mom of 3 boys and wifey to the brilliant @wx13 - I work at @chef", + "url": "https://t.co/SB2xmt7RdJ", + "profile_text_color": "363636", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/484435199413870592/WBnTIeTR_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Sat Jan 26 04:07:39 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/484435199413870592/WBnTIeTR_normal.jpeg", + "favourites_count": 3259, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jkc137", + "in_reply_to_user_id": 10349862, + "in_reply_to_status_id_str": "685570894735917056", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685582311757201408", + "id": 685582311757201408, + "text": "@jkc137 me too! I'm your wingman", + "in_reply_to_user_id_str": "10349862", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jkc137", + "id_str": "10349862", + "id": 10349862, + "indices": [ + 0, + 7 + ], + "name": "Jennelle Crothers" + } + ] + }, + "created_at": "Fri Jan 08 22:02:15 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685570894735917056, + "lang": "en" + }, + "default_profile_image": false, + "id": 12708782, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614503590699249664/84bvDwxx.png", + "statuses_count": 21948, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12708782/1363463180", + "is_translator": false + }, + { + "time_zone": "Stockholm", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "124424508", + "following": false, + "friends_count": 662, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eslgaming.com", + "url": "https://t.co/1Lr55AyjF7", + "expanded_url": "http://eslgaming.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": false, + "followers_count": 63667, + "location": "Cologne, Germany", + "screen_name": "ApolloSC2", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 826, + "name": "Shaun Clark", + "profile_use_background_image": true, + "description": "Host/Caster + Creative Producer @esl - I work on the @starcraft World Championship Series and @iem", + "url": "https://t.co/1Lr55AyjF7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669865323596750849/MUITbX1v_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Fri Mar 19 10:38:52 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669865323596750849/MUITbX1v_normal.jpg", + "favourites_count": 4264, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "DrAeromi", + "in_reply_to_user_id": 789979346, + "in_reply_to_status_id_str": "685591729962151936", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685591864750272512", + "id": 685591864750272512, + "text": "@DrAeromi I was stating what is to watch tomorrow, yes, great weekend", + "in_reply_to_user_id_str": "789979346", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DrAeromi", + "id_str": "789979346", + "id": 789979346, + "indices": [ + 0, + 9 + ], + "name": "Aeromi" + } + ] + }, + "created_at": "Fri Jan 08 22:40:12 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685591729962151936, + "lang": "en" + }, + "default_profile_image": false, + "id": 124424508, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 23753, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/124424508/1408376520", + "is_translator": false + }, + { + "time_zone": "Seoul", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 32400, + "id_str": "20291791", + "following": false, + "friends_count": 917, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91402336/seoul-image.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0099CC", + "geo_enabled": false, + "followers_count": 82806, + "location": "Seoul Korea", + "screen_name": "CallMeTasteless", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1366, + "name": "Nick Plott", + "profile_use_background_image": true, + "description": "\u30fd\u0f3c\u0e88\u0644\u035c\u0e88\u0f3d\uff89", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1142888206/Smoking-Monkey-143_normal.jpg", + "profile_background_color": "FFF04D", + "created_at": "Sat Feb 07 03:22:08 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFF8AD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1142888206/Smoking-Monkey-143_normal.jpg", + "favourites_count": 1303, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685417920306872322", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "i.imgur.com/PVGVSZQ.png", + "url": "https://t.co/PzUNLgnL5H", + "expanded_url": "http://i.imgur.com/PVGVSZQ.png", + "indices": [ + 0, + 23 + ] + } + ], + "hashtags": [ + { + "indices": [ + 33, + 37 + ], + "text": "GSL" + } + ], + "user_mentions": [ + { + "screen_name": "CallMeTasteless", + "id_str": "20291791", + "id": 20291791, + "indices": [ + 38, + 54 + ], + "name": "Nick Plott" + } + ] + }, + "created_at": "Fri Jan 08 11:09:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "tl", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685417920306872322, + "text": "https://t.co/PzUNLgnL5H \nHahahah #GSL @CallMeTasteless", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685420804587192320", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "i.imgur.com/PVGVSZQ.png", + "url": "https://t.co/PzUNLgnL5H", + "expanded_url": "http://i.imgur.com/PVGVSZQ.png", + "indices": [ + 16, + 39 + ] + } + ], + "hashtags": [ + { + "indices": [ + 49, + 53 + ], + "text": "GSL" + } + ], + "user_mentions": [ + { + "screen_name": "Arkanthiel", + "id_str": "248599146", + "id": 248599146, + "indices": [ + 3, + 14 + ], + "name": "Judes Lopez" + }, + { + "screen_name": "CallMeTasteless", + "id_str": "20291791", + "id": 20291791, + "indices": [ + 54, + 70 + ], + "name": "Nick Plott" + } + ] + }, + "created_at": "Fri Jan 08 11:20:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "tl", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685420804587192320, + "text": "RT @Arkanthiel: https://t.co/PzUNLgnL5H \nHahahah #GSL @CallMeTasteless", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 20291791, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91402336/seoul-image.jpg", + "statuses_count": 2819, + "is_translator": false + }, + { + "time_zone": "Seoul", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 32400, + "id_str": "20240002", + "following": false, + "friends_count": 1009, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Facebook.com/Artosis", + "url": "http://t.co/dlzcMKReqY", + "expanded_url": "http://www.Facebook.com/Artosis", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520550316761042945/eX4AmP3Q.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 119473, + "location": "Seoul, South Korea", + "screen_name": "Artosis", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 1751, + "name": "Dan Stemkoski", + "profile_use_background_image": true, + "description": "Professional Commentator. I work in the eSports industry in Seoul. Some call me the King of the Nerds.. business email: Artosis@Artosis.com", + "url": "http://t.co/dlzcMKReqY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2976039428/90c5360b6f1ec28756ef4f1f479047ae_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Feb 06 14:27:47 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2976039428/90c5360b6f1ec28756ef4f1f479047ae_normal.jpeg", + "favourites_count": 3875, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": 20291791, + "possibly_sensitive": false, + "id_str": "685429388830191616", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "i.imgur.com/R1Azh6M.png", + "url": "https://t.co/n3KK3Ay9ck", + "expanded_url": "http://i.imgur.com/R1Azh6M.png", + "indices": [ + 82, + 105 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CallMeTasteless", + "id_str": "20291791", + "id": 20291791, + "indices": [ + 0, + 16 + ], + "name": "Nick Plott" + }, + { + "screen_name": "Artosis", + "id_str": "20240002", + "id": 20240002, + "indices": [ + 17, + 25 + ], + "name": "Dan Stemkoski" + } + ] + }, + "created_at": "Fri Jan 08 11:54:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "20291791", + "place": null, + "in_reply_to_screen_name": "CallMeTasteless", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685429388830191616, + "text": "@CallMeTasteless @Artosis can't wait till TLO finds a way to make those viable :D https://t.co/n3KK3Ay9ck", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685445422609911808", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "i.imgur.com/R1Azh6M.png", + "url": "https://t.co/n3KK3Ay9ck", + "expanded_url": "http://i.imgur.com/R1Azh6M.png", + "indices": [ + 96, + 119 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dNaGER87", + "id_str": "242503069", + "id": 242503069, + "indices": [ + 3, + 12 + ], + "name": "dNa" + }, + { + "screen_name": "CallMeTasteless", + "id_str": "20291791", + "id": 20291791, + "indices": [ + 14, + 30 + ], + "name": "Nick Plott" + }, + { + "screen_name": "Artosis", + "id_str": "20240002", + "id": 20240002, + "indices": [ + 31, + 39 + ], + "name": "Dan Stemkoski" + } + ] + }, + "created_at": "Fri Jan 08 12:58:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685445422609911808, + "text": "RT @dNaGER87: @CallMeTasteless @Artosis can't wait till TLO finds a way to make those viable :D https://t.co/n3KK3Ay9ck", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 20240002, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520550316761042945/eX4AmP3Q.jpeg", + "statuses_count": 10364, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/20240002/1445320663", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "102556161", + "following": false, + "friends_count": 1518, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hardballpassport.com/traveler/can0k", + "url": "http://t.co/xIZ89IMcok", + "expanded_url": "http://hardballpassport.com/traveler/can0k", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/633818417791832065/5B1eAlBd.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 128, + "location": "Hamilton, ON, Canada", + "screen_name": "can0k", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "can\u00d8k", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/xIZ89IMcok", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1356656867/The_Three_Monkeys__small_cropped__normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Jan 07 02:57:31 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1356656867/The_Three_Monkeys__small_cropped__normal.jpg", + "favourites_count": 2300, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MissStaceyMay", + "in_reply_to_user_id": 16894531, + "in_reply_to_status_id_str": "677864704774119424", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677994798800871432", + "id": 677994798800871432, + "text": "@MissStaceyMay Thank you for sharing this. Thank you for all of the amazing pieces you've penned in 2015, but this.. this was exceptional.", + "in_reply_to_user_id_str": "16894531", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MissStaceyMay", + "id_str": "16894531", + "id": 16894531, + "indices": [ + 0, + 14 + ], + "name": "Stacey May Fowles" + } + ] + }, + "created_at": "Fri Dec 18 23:32:11 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 677864704774119424, + "lang": "en" + }, + "default_profile_image": false, + "id": 102556161, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/633818417791832065/5B1eAlBd.jpg", + "statuses_count": 328, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/102556161/1439947791", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "634563", + "following": false, + "friends_count": 1647, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/573163012560838657/wPG_e6O-.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "D5C6A4", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1636, + "location": "Minneapolis", + "screen_name": "Dan_H", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 147, + "name": "Dan Hendricks", + "profile_use_background_image": true, + "description": "DEMO VERSION \u2014 PLEASE REGISTER", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/626093873874534400/Wt9nR9rx_normal.jpg", + "profile_background_color": "635E40", + "created_at": "Mon Jan 15 06:13:25 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626093873874534400/Wt9nR9rx_normal.jpg", + "favourites_count": 19298, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "themacinjosh", + "in_reply_to_user_id": 629743, + "in_reply_to_status_id_str": "685567075318796288", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685567219149869056", + "id": 685567219149869056, + "text": "@themacinjosh I've considered taking it in for a replacement", + "in_reply_to_user_id_str": "629743", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "themacinjosh", + "id_str": "629743", + "id": 629743, + "indices": [ + 0, + 13 + ], + "name": "Josh Windisch" + } + ] + }, + "created_at": "Fri Jan 08 21:02:16 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685567075318796288, + "lang": "en" + }, + "default_profile_image": false, + "id": 634563, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/573163012560838657/wPG_e6O-.jpeg", + "statuses_count": 376, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/634563/1449672635", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Providing cynicism, puns & network engineering at http://t.co/ICuRcKcV", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "218431233", + "blocking": false, + "is_translation_enabled": false, + "id": 218431233, + "entities": { + "description": { + "urls": [ + { + "display_url": "demonware.net", + "url": "http://t.co/ICuRcKcV", + "expanded_url": "http://www.demonware.net", + "indices": [ + 50, + 70 + ] + } + ] + } + }, + "profile_background_color": "022330", + "created_at": "Mon Nov 22 10:04:01 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/1582073440/photo_low_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652161561948131328/n7ZOru4H.jpg", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "statuses_count": 70, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1582073440/photo_low_normal.jpg", + "favourites_count": 24, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 37, + "blocked_by": false, + "following": false, + "location": "Vancouver, Canada", + "muting": false, + "friends_count": 212, + "notifications": false, + "screen_name": "clarkegm", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652161561948131328/n7ZOru4H.jpg", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 1, + "is_translator": false, + "name": "Martin" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "32346831", + "following": false, + "friends_count": 605, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stumptownbear.com", + "url": "http://t.co/56KHvt1dgZ", + "expanded_url": "http://stumptownbear.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "6B7A8C", + "geo_enabled": true, + "followers_count": 142, + "location": "Portland, Or", + "screen_name": "evan_is", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Evan Price", + "profile_use_background_image": true, + "description": "Internet maker at Stumptown Bear. Noise maker in @iounoi and @pmachines.", + "url": "http://t.co/56KHvt1dgZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/560517008228225024/Opg6uwaL_normal.jpeg", + "profile_background_color": "DBE9ED", + "created_at": "Fri Apr 17 08:22:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBE9ED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/560517008228225024/Opg6uwaL_normal.jpeg", + "favourites_count": 175, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685275131036352512", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 400, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 400, + "h": 400, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKWGaMUQAAJMYq.jpg", + "type": "photo", + "indices": [ + 101, + 124 + ], + "media_url": "http://pbs.twimg.com/media/CYKWGaMUQAAJMYq.jpg", + "display_url": "pic.twitter.com/JUfNcKenL9", + "id_str": "685275130168098816", + "expanded_url": "http://twitter.com/evan_is/status/685275131036352512/photo/1", + "id": 685275130168098816, + "url": "https://t.co/JUfNcKenL9" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 01:41:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685275131036352512, + "text": "Who wants to hire me full time? I'm super at javascript and like digging in the front-end ecosystem. https://t.co/JUfNcKenL9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 32346831, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "statuses_count": 2135, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/32346831/1423208569", + "is_translator": false + }, + { + "time_zone": "Sydney", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "146395819", + "following": false, + "friends_count": 5211, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "uk.linkedin.com/in/girifox/", + "url": "http://t.co/bxxnTEfTO4", + "expanded_url": "http://uk.linkedin.com/in/girifox/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "4377D1", + "geo_enabled": true, + "followers_count": 6839, + "location": "London", + "screen_name": "girifox", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 149, + "name": "Giri Fox", + "profile_use_background_image": true, + "description": "Director @RackspaceUK of managed services for our major customers, and technical pre-sales. Seeks root cause. Geek into enterprise tech and fixing processes.", + "url": "http://t.co/bxxnTEfTO4", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2200752799/giri-fox_casual_50__head_cropped_normal.jpg", + "profile_background_color": "352726", + "created_at": "Fri May 21 09:49:42 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2200752799/giri-fox_casual_50__head_cropped_normal.jpg", + "favourites_count": 569, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685262896595648513", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1JIPpOG", + "url": "https://t.co/hTGaA1IHqa", + "expanded_url": "http://bit.ly/1JIPpOG", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rightscale", + "id_str": "14940523", + "id": 14940523, + "indices": [ + 114, + 125 + ], + "name": "RightScale" + } + ] + }, + "created_at": "Fri Jan 08 00:53:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685262896595648513, + "text": "\"CloudOps Nirvana: Achieve Continuous Ops in Public and Private Clouds\" https://t.co/hTGaA1IHqa -- implies using @rightscale", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 146395819, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 9130, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/146395819/1399670881", + "is_translator": false + }, + { + "time_zone": "UTC", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "17958179", + "following": false, + "friends_count": 1712, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "brennannovak.com", + "url": "https://t.co/en2YSt9fOA", + "expanded_url": "https://brennannovak.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3941228/back.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "B42400", + "geo_enabled": true, + "followers_count": 5159, + "location": "", + "screen_name": "brennannovak", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 175, + "name": "Brennan Novak", + "profile_use_background_image": true, + "description": "General cypherpunkery. Trying to fix things. Sometimes hopeful. Sometimes not. @QubesOS @TransparencyKit @OpenSrcDesign @MailpileTeam", + "url": "https://t.co/en2YSt9fOA", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3465346200/3887a9d367bf61ad50fa794a32c7ce21_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Dec 08 06:54:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "E6E6E6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3465346200/3887a9d367bf61ad50fa794a32c7ce21_normal.jpeg", + "favourites_count": 3967, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "altquinn", + "in_reply_to_user_id": 781453303, + "in_reply_to_status_id_str": "685176481123729408", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685178308917604352", + "id": 685178308917604352, + "text": "@altquinn which articles are you referring to?", + "in_reply_to_user_id_str": "781453303", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "altquinn", + "id_str": "781453303", + "id": 781453303, + "indices": [ + 0, + 9 + ], + "name": "Quinn Norton" + } + ] + }, + "created_at": "Thu Jan 07 19:16:53 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685176481123729408, + "lang": "en" + }, + "default_profile_image": false, + "id": 17958179, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3941228/back.jpg", + "statuses_count": 10863, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17958179/1398249956", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2959291297", + "following": false, + "friends_count": 1995, + "entities": { + "description": { + "urls": [ + { + "display_url": "security-sleuth.com", + "url": "http://t.co/kG6hxW7E7l", + "expanded_url": "http://security-sleuth.com", + "indices": [ + 134, + 156 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "security-sleuth.com", + "url": "http://t.co/HazOriRs2u", + "expanded_url": "http://www.security-sleuth.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 1197, + "location": "Cyberspace", + "screen_name": "Security_Sleuth", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "The Security Sleuth", + "profile_use_background_image": false, + "description": "Young up and coming #security professional dedicated to uncovering Security and #privacy issues in our everyday lives. Read my blog @ http://t.co/kG6hxW7E7l", + "url": "http://t.co/HazOriRs2u", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/552003711426248705/vnC2-j2h_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Jan 05 06:49:02 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/552003711426248705/vnC2-j2h_normal.jpeg", + "favourites_count": 50, + "status": { + "retweet_count": 111, + "retweeted_status": { + "retweet_count": 111, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685277451740553217", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 256, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 772, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 452, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", + "display_url": "pic.twitter.com/IaffDrzwC4", + "id_str": "685277450192879616", + "expanded_url": "http://twitter.com/binitamshah/status/685277451740553217/photo/1", + "id": 685277450192879616, + "url": "https://t.co/IaffDrzwC4" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "jide.com/en/remixos/dev\u2026", + "url": "https://t.co/IWhe1WxIv4", + "expanded_url": "http://www.jide.com/en/remixos/devices", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 01:50:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685277451740553217, + "text": "Remix OS : Android based OS for desktop (and it works with nearly any PC (or Mac ) : https://t.co/IWhe1WxIv4 https://t.co/IaffDrzwC4", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 130, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685347531916750849", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 256, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 772, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 452, + "resize": "fit" + } + }, + "source_status_id_str": "685277451740553217", + "url": "https://t.co/IaffDrzwC4", + "media_url": "http://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", + "source_user_id_str": "23090019", + "id_str": "685277450192879616", + "id": 685277450192879616, + "media_url_https": "https://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685277451740553217, + "source_user_id": 23090019, + "display_url": "pic.twitter.com/IaffDrzwC4", + "expanded_url": "http://twitter.com/binitamshah/status/685277451740553217/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "jide.com/en/remixos/dev\u2026", + "url": "https://t.co/IWhe1WxIv4", + "expanded_url": "http://www.jide.com/en/remixos/devices", + "indices": [ + 103, + 126 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "binitamshah", + "id_str": "23090019", + "id": 23090019, + "indices": [ + 3, + 15 + ], + "name": "Binni Shah" + } + ] + }, + "created_at": "Fri Jan 08 06:29:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685347531916750849, + "text": "RT @binitamshah: Remix OS : Android based OS for desktop (and it works with nearly any PC (or Mac ) : https://t.co/IWhe1WxIv4 https://t.co\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2959291297, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 348, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2959291297/1425687182", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "96848570", + "following": false, + "friends_count": 297, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "day9.tv", + "url": "http://t.co/2SVmmy7vaY", + "expanded_url": "http://www.day9.tv", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/290746944/day9tv-twitter-bkR1.jpg", + "notifications": false, + "profile_sidebar_fill_color": "131313", + "profile_link_color": "FFA71A", + "geo_enabled": false, + "followers_count": 201480, + "location": "", + "screen_name": "day9tv", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2649, + "name": "Sean Plott", + "profile_use_background_image": true, + "description": "Learn lots. Don't judge. Laugh for no reason. Be nice. Seek happiness.", + "url": "http://t.co/2SVmmy7vaY", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/497129205692239872/x2MebV6i_normal.png", + "profile_background_color": "131313", + "created_at": "Mon Dec 14 21:50:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/497129205692239872/x2MebV6i_normal.png", + "favourites_count": 389, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "685529740547993601", + "id": 685529740547993601, + "text": "Grabbing new headphones before showtime today! Might be 15m late lol :P", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:33:21 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 43, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 96848570, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/290746944/day9tv-twitter-bkR1.jpg", + "statuses_count": 13235, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/96848570/1353534662", + "is_translator": false + }, + { + "time_zone": "Jerusalem", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "553492685", + "following": false, + "friends_count": 297, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "webservices20.blogspot.com", + "url": "http://t.co/gOiPMFkAB9", + "expanded_url": "http://webservices20.blogspot.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675966453/eea3b1b6458b8e4b3bc0aa1841a4ea53.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "281E17", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 674, + "location": "Israel", + "screen_name": "YaronNaveh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Yaron Naveh", + "profile_use_background_image": true, + "description": "Node.JS and open source developer. Web services addict. Lives in the Cloud. Works @ Facebook.", + "url": "http://t.co/gOiPMFkAB9", + "profile_text_color": "7A5C45", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477414043607498754/JMb6ecqx_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sat Apr 14 12:29:00 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477414043607498754/JMb6ecqx_normal.jpeg", + "favourites_count": 902, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 141934364, + "possibly_sensitive": false, + "id_str": "685454499016740864", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/hustcer/star", + "url": "https://t.co/NFOKpzpbbR", + "expanded_url": "https://github.com/hustcer/star", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sakanabiscuit", + "id_str": "141934364", + "id": 141934364, + "indices": [ + 0, + 14 + ], + "name": "\u3164" + } + ] + }, + "created_at": "Fri Jan 08 13:34:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "141934364", + "place": null, + "in_reply_to_screen_name": "sakanabiscuit", + "in_reply_to_status_id_str": "685320456564441088", + "truncated": false, + "id": 685454499016740864, + "text": "@sakanabiscuit any language you can in the terminal is possible. recently I've seen Chinese https://t.co/NFOKpzpbbR and also French before", + "coordinates": null, + "in_reply_to_status_id": 685320456564441088, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 553492685, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675966453/eea3b1b6458b8e4b3bc0aa1841a4ea53.jpeg", + "statuses_count": 521, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/553492685/1406714550", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "686803", + "following": false, + "friends_count": 1027, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nesbitt.io", + "url": "http://t.co/Jf3LNbrp8J", + "expanded_url": "http://nesbitt.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/750371030/86f4c2397325bcd6305c75abc235ece3.png", + "notifications": false, + "profile_sidebar_fill_color": "C4D6F5", + "profile_link_color": "5074CF", + "geo_enabled": true, + "followers_count": 4202, + "location": "Somerset, UK", + "screen_name": "teabass", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 297, + "name": "Andrew Nesbitt", + "profile_use_background_image": true, + "description": "Founder of @Librariesio and @24pullrequests, previously worked at @GitHub", + "url": "http://t.co/Jf3LNbrp8J", + "profile_text_color": "0A0A0A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669795308738596864/E2xmHvPR_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jan 23 15:01:41 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669795308738596864/E2xmHvPR_normal.jpg", + "favourites_count": 8980, + "status": { + "retweet_count": 22, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 22, + "truncated": false, + "retweeted": false, + "id_str": "685484634835148800", + "id": 685484634835148800, + "text": "I\u2019m leaving Pusher and looking for a new challenge. Please get in touch if you know of anything phil@leggetter.co.uk \ud83d\ude80", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:34:07 +0000 2016", + "source": "TweetDeck", + "favorite_count": 15, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685490089682665472", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "leggetter", + "id_str": "14455530", + "id": 14455530, + "indices": [ + 3, + 13 + ], + "name": "Phil Leggetter" + } + ] + }, + "created_at": "Fri Jan 08 15:55:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685490089682665472, + "text": "RT @leggetter: I\u2019m leaving Pusher and looking for a new challenge. Please get in touch if you know of anything phil@leggetter.co.uk \ud83d\ude80", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 686803, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/750371030/86f4c2397325bcd6305c75abc235ece3.png", + "statuses_count": 30708, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/686803/1414274531", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "10497132", + "following": false, + "friends_count": 304, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "goettner.net", + "url": "http://t.co/IFzFJy0qHq", + "expanded_url": "http://www.goettner.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3904681/TwitterBack.gif", + "notifications": false, + "profile_sidebar_fill_color": "FEFED7", + "profile_link_color": "2C89AA", + "geo_enabled": true, + "followers_count": 192, + "location": "", + "screen_name": "LewG", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Lew Goettner", + "profile_use_background_image": true, + "description": "Sometimes I type slow, sometimes I type quick.", + "url": "http://t.co/IFzFJy0qHq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2182323909/LewSquareCutOff_normal.jpg", + "profile_background_color": "88B7FF", + "created_at": "Fri Nov 23 16:57:34 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "B6C5D8", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2182323909/LewSquareCutOff_normal.jpg", + "favourites_count": 138, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684731614128136192", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tnw.to/h4y0U", + "url": "https://t.co/yfY3o8r7CN", + "expanded_url": "http://tnw.to/h4y0U", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheNextWeb", + "id_str": "10876852", + "id": 10876852, + "indices": [ + 99, + 110 + ], + "name": "The Next Web" + } + ] + }, + "created_at": "Wed Jan 06 13:41:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684731614128136192, + "text": "\"Web developers rejoice; Internet Explorer 8, 9 and 10 die on Tuesday\" https://t.co/yfY3o8r7CN via @thenextweb -- I know I will!", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 10497132, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3904681/TwitterBack.gif", + "statuses_count": 1118, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10497132/1400780356", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "7378102", + "following": false, + "friends_count": 2059, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bagofonions.com", + "url": "https://t.co/wyoDXMtkmO", + "expanded_url": "https://www.bagofonions.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/531844732435959808/U-trU_g7.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1296, + "location": "Edinburgh ", + "screen_name": "handlewithcare", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 48, + "name": "Martin Hewitt", + "profile_use_background_image": true, + "description": "Product developer @surevine and way of working enthusiast. Building collaboration tools for security-conscious organisations. Bakes bread in the gaps.", + "url": "https://t.co/wyoDXMtkmO", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/71439029/martin_hewitt_byng_systems_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jul 10 17:22:24 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/71439029/martin_hewitt_byng_systems_normal.jpg", + "favourites_count": 187, + "status": { + "retweet_count": 119, + "retweeted_status": { + "retweet_count": 119, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685552439248957441", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/conorpope/stat\u2026", + "url": "https://t.co/Em2DgiRp8G", + "expanded_url": "https://twitter.com/conorpope/status/685540019457658880", + "indices": [ + 93, + 116 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:03:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685552439248957441, + "text": "If I were Ukip I'd be pretty annoyed by the way Labour are muscling in on the fruitcake vote https://t.co/Em2DgiRp8G", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 127, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613249245626369", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/conorpope/stat\u2026", + "url": "https://t.co/Em2DgiRp8G", + "expanded_url": "https://twitter.com/conorpope/status/685540019457658880", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MichaelPDeacon", + "id_str": "506486097", + "id": 506486097, + "indices": [ + 3, + 18 + ], + "name": "Michael Deacon" + } + ] + }, + "created_at": "Sat Jan 09 00:05:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613249245626369, + "text": "RT @MichaelPDeacon: If I were Ukip I'd be pretty annoyed by the way Labour are muscling in on the fruitcake vote https://t.co/Em2DgiRp8G", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 7378102, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/531844732435959808/U-trU_g7.jpeg", + "statuses_count": 38874, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "557543", + "following": false, + "friends_count": 393, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "danworth.com", + "url": "http://t.co/pWB6KBJTAH", + "expanded_url": "http://www.danworth.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18867467/background.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 322, + "location": "Bucks County, PA", + "screen_name": "djworth", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "name": "Dan Worth", + "profile_use_background_image": true, + "description": "Organizer @GolangPhilly", + "url": "http://t.co/pWB6KBJTAH", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/577892800856911872/vHZ0ibNn_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Thu Jan 04 22:09:58 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/577892800856911872/vHZ0ibNn_normal.jpeg", + "favourites_count": 245, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684422155187126272", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "meetu.ps/2RF5qb", + "url": "https://t.co/WBzpYXhPcJ", + "expanded_url": "http://meetu.ps/2RF5qb", + "indices": [ + 35, + 58 + ] + } + ], + "hashtags": [ + { + "indices": [ + 7, + 14 + ], + "text": "golang" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 17:12:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684422155187126272, + "text": "Philly #golang meetup on Jan 12th.\nhttps://t.co/WBzpYXhPcJ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684432613956808704", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "meetu.ps/2RF5qb", + "url": "https://t.co/WBzpYXhPcJ", + "expanded_url": "http://meetu.ps/2RF5qb", + "indices": [ + 52, + 75 + ] + } + ], + "hashtags": [ + { + "indices": [ + 24, + 31 + ], + "text": "golang" + } + ], + "user_mentions": [ + { + "screen_name": "genghisjahn", + "id_str": "16422814", + "id": 16422814, + "indices": [ + 3, + 15 + ], + "name": "Jon Wear" + } + ] + }, + "created_at": "Tue Jan 05 17:53:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684432613956808704, + "text": "RT @genghisjahn: Philly #golang meetup on Jan 12th.\nhttps://t.co/WBzpYXhPcJ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 557543, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18867467/background.png", + "statuses_count": 1274, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11404352", + "following": false, + "friends_count": 877, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jjmiv.us", + "url": "http://t.co/kPt8y3YG6v", + "expanded_url": "http://jjmiv.us", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "005FB3", + "geo_enabled": false, + "followers_count": 311, + "location": "Narberth, PA", + "screen_name": "jjmiv", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "John Mahoney", + "profile_use_background_image": true, + "description": "I like tech, comics, games and being a dad! | DevOps at Capital One | Co-Organizer for @gdgphilly and @docker philly", + "url": "http://t.co/kPt8y3YG6v", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/630421789324275712/7vmC3Ghd_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Dec 21 14:01:47 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/630421789324275712/7vmC3Ghd_normal.jpg", + "favourites_count": 136, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685497618861043712", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/ColliderNews/s\u2026", + "url": "https://t.co/PqTLX42Uq4", + "expanded_url": "https://twitter.com/ColliderNews/status/685494047218241536", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:25:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685497618861043712, + "text": "this makes me feel old. https://t.co/PqTLX42Uq4", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 11404352, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3799, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16422814", + "following": false, + "friends_count": 102, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jonwear.com", + "url": "https://t.co/KL1LvQSpdj", + "expanded_url": "http://www.jonwear.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 217, + "location": "Philadelphia, PA", + "screen_name": "genghisjahn", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Jon Wear", + "profile_use_background_image": false, + "description": "Evacuate? In our moment of triumph? I think you over estimate their chances.", + "url": "https://t.co/KL1LvQSpdj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/585854819010748417/7oM61q6p_normal.png", + "profile_background_color": "022330", + "created_at": "Tue Sep 23 18:17:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/585854819010748417/7oM61q6p_normal.png", + "favourites_count": 1016, + "status": { + "retweet_count": 16, + "retweeted_status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685575798183481344", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "resetplug.com", + "url": "https://t.co/g9bdJ5S1rk", + "expanded_url": "http://resetplug.com/", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:36:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685575798183481344, + "text": "A smart device to reset your router if it can't get on your wifi is a solution that ignores the root problem. https://t.co/g9bdJ5S1rk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 30, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685576188979458048", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "resetplug.com", + "url": "https://t.co/g9bdJ5S1rk", + "expanded_url": "http://resetplug.com/", + "indices": [ + 126, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "shanselman", + "id_str": "5676102", + "id": 5676102, + "indices": [ + 3, + 14 + ], + "name": "Scott Hanselman" + } + ] + }, + "created_at": "Fri Jan 08 21:37:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685576188979458048, + "text": "RT @shanselman: A smart device to reset your router if it can't get on your wifi is a solution that ignores the root problem. https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 16422814, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 4452, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16422814/1435275444", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "110465841", + "following": false, + "friends_count": 2997, + "entities": { + "description": { + "urls": [ + { + "display_url": "hook.io", + "url": "http://t.co/LTk6sENnSE", + "expanded_url": "http://hook.io", + "indices": [ + 77, + 99 + ] + }, + { + "display_url": "github.com/marak", + "url": "http://t.co/hRZPf23WfN", + "expanded_url": "http://github.com/marak", + "indices": [ + 100, + 122 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "marak.com", + "url": "http://t.co/HCfNi319sG", + "expanded_url": "http://marak.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3016, + "location": "The Internet", + "screen_name": "marak", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 255, + "name": "marak", + "profile_use_background_image": true, + "description": "Open-source software developer. Previously founded @Nodejitsu Now working on http://t.co/LTk6sENnSE http://t.co/hRZPf23WfN", + "url": "http://t.co/HCfNi319sG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2555785383/r67mex7tvvowb506u550_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Feb 01 17:02:01 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2555785383/r67mex7tvvowb506u550_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684106649678790656", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22Hitlh", + "url": "https://t.co/S33LyfJ6t2", + "expanded_url": "http://bit.ly/22Hitlh", + "indices": [ + 108, + 131 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 20:18:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684106649678790656, + "text": "Let's talk resolutions (not the pixel kind). 5 essential principals to becoming a better filmmaker in 2016 https://t.co/S33LyfJ6t2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684356338638548992", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22Hitlh", + "url": "https://t.co/S33LyfJ6t2", + "expanded_url": "http://bit.ly/22Hitlh", + "indices": [ + 122, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Frame_io", + "id_str": "1475571811", + "id": 1475571811, + "indices": [ + 3, + 12 + ], + "name": "Frame.io" + } + ] + }, + "created_at": "Tue Jan 05 12:50:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684356338638548992, + "text": "RT @Frame_io: Let's talk resolutions (not the pixel kind). 5 essential principals to becoming a better filmmaker in 2016 https://t.co/S33L\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 110465841, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 442, + "is_translator": false + }, + { + "time_zone": "Tijuana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2898656006", + "following": false, + "friends_count": 9123, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bit.ly/1DLCeu0", + "url": "http://t.co/7jM1haXIYY", + "expanded_url": "http://bit.ly/1DLCeu0", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 12176, + "location": "", + "screen_name": "DevopsRR", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 259, + "name": "DevOps", + "profile_use_background_image": true, + "description": "Live Content Curated by top DevOps Influencers", + "url": "http://t.co/7jM1haXIYY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/532953334261362689/ZTF7QPgY_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Nov 13 17:48:55 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/532953334261362689/ZTF7QPgY_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685576243253661697", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "rightrelevance.com/search/influen\u2026", + "url": "https://t.co/pNpItcLLS6", + "expanded_url": "http://www.rightrelevance.com/search/influencers?query=devops&taccount=devopsrr&time=1452288667.06", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:38:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685576243253661697, + "text": "Top devops Twitter influencers one should follow https://t.co/pNpItcLLS6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "RRPostingApp" + }, + "default_profile_image": false, + "id": 2898656006, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5182, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "28862294", + "following": false, + "friends_count": 2059, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 705, + "location": "Chicago, IL", + "screen_name": "jcattell", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 49, + "name": "Jerry Cattell", + "profile_use_background_image": true, + "description": "infrastructure @enernoc (formerly @pulseenergy, @orbitz, i-drive, @fedex). co-organizer of @devopschicago and @devopsdaysChi. ebook addict.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/126684370/photo-small_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 04 20:18:04 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/126684370/photo-small_normal.jpg", + "favourites_count": 3327, + "status": { + "retweet_count": 19434, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 19434, + "truncated": false, + "retweeted": false, + "id_str": "683715585373372416", + "id": 683715585373372416, + "text": "Today I learned:\nplural of armed black people is thugs\nplural of armed brown people is terrorists\nplural of armed white people is militia", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Jan 03 18:24:33 +0000 2016", + "source": "Twitter for iPad", + "favorite_count": 17267, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "684165529179787264", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "koush", + "id_str": "18918415", + "id": 18918415, + "indices": [ + 3, + 9 + ], + "name": "koush" + } + ] + }, + "created_at": "Tue Jan 05 00:12:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684165529179787264, + "text": "RT @koush: Today I learned:\nplural of armed black people is thugs\nplural of armed brown people is terrorists\nplural of armed white people i\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 28862294, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1477, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "222000294", + "following": false, + "friends_count": 786, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "coalesce.net", + "url": "http://t.co/NsdbJtq5vP", + "expanded_url": "http://coalesce.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000152571431/F1uC7SrW.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 210, + "location": "", + "screen_name": "tracyfloyd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Tracy Floyd", + "profile_use_background_image": true, + "description": "Designer. Pragmatic perfectionist. Definitely know less now than I did in my 20s.", + "url": "http://t.co/NsdbJtq5vP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677686176095055872/yDA8HfOV_normal.png", + "profile_background_color": "131516", + "created_at": "Thu Dec 02 05:20:46 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677686176095055872/yDA8HfOV_normal.png", + "favourites_count": 665, + "status": { + "retweet_count": 136, + "retweeted_status": { + "retweet_count": 136, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684301080080052224", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "swissincss.com", + "url": "https://t.co/SOiMHjAOkr", + "expanded_url": "http://swissincss.com", + "indices": [ + 76, + 99 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "swissmiss", + "id_str": "1504011", + "id": 1504011, + "indices": [ + 105, + 115 + ], + "name": "Tina Roth Eisenberg" + } + ] + }, + "created_at": "Tue Jan 05 09:11:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684301080080052224, + "text": "Swiss in CSS. A beautiful homage with CodePen links to see how it was done. https://t.co/SOiMHjAOkr\n\n/cc @swissmiss", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 236, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684898274747281408", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "swissincss.com", + "url": "https://t.co/SOiMHjAOkr", + "expanded_url": "http://swissincss.com", + "indices": [ + 90, + 113 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "vpieters", + "id_str": "12815", + "id": 12815, + "indices": [ + 3, + 12 + ], + "name": "Veerle Pieters" + }, + { + "screen_name": "swissmiss", + "id_str": "1504011", + "id": 1504011, + "indices": [ + 119, + 129 + ], + "name": "Tina Roth Eisenberg" + } + ] + }, + "created_at": "Thu Jan 07 00:44:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684898274747281408, + "text": "RT @vpieters: Swiss in CSS. A beautiful homage with CodePen links to see how it was done. https://t.co/SOiMHjAOkr\n\n/cc @swissmiss", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitterrific" + }, + "default_profile_image": false, + "id": 222000294, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000152571431/F1uC7SrW.png", + "statuses_count": 843, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/222000294/1398251622", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "428813", + "following": false, + "friends_count": 840, + "entities": { + "description": { + "urls": [ + { + "display_url": "github.com/thepug", + "url": "https://t.co/pXVpePQGaR", + "expanded_url": "https://github.com/thepug", + "indices": [ + 55, + 78 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "unclenaynay.com", + "url": "http://t.co/EbI1b1pXJC", + "expanded_url": "http://unclenaynay.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 796, + "location": "Mount Pleasant, SC", + "screen_name": "thepug", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "Nathan Zorn", + "profile_use_background_image": true, + "description": "Software developer. Currently working for @modernmsg. https://t.co/pXVpePQGaR", + "url": "http://t.co/EbI1b1pXJC", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3203071618/3b84a033819948ec0ccb7f04b0cfb904_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Jan 02 02:12:04 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3203071618/3b84a033819948ec0ccb7f04b0cfb904_normal.jpeg", + "favourites_count": 90, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "684602241198600192", + "id": 684602241198600192, + "text": "Thanks @dallasruby for having me tonight! \u2019twas fun", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dallasruby", + "id_str": "58941505", + "id": 58941505, + "indices": [ + 7, + 18 + ], + "name": "Dallas Ruby Brigade" + } + ] + }, + "created_at": "Wed Jan 06 05:07:48 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685114540783108097", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dealingwith", + "id_str": "379983", + "id": 379983, + "indices": [ + 3, + 15 + ], + "name": "\u2728Daniel Miller\u2728" + }, + { + "screen_name": "dallasruby", + "id_str": "58941505", + "id": 58941505, + "indices": [ + 24, + 35 + ], + "name": "Dallas Ruby Brigade" + } + ] + }, + "created_at": "Thu Jan 07 15:03:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685114540783108097, + "text": "RT @dealingwith: Thanks @dallasruby for having me tonight! \u2019twas fun", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 428813, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2118, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/428813/1359914750", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1967601206", + "following": false, + "friends_count": 22, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "influxdb.com", + "url": "http://t.co/DzRgm2B9Hb", + "expanded_url": "http://influxdb.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 4293, + "location": "NYC, Denver, San Francisco", + "screen_name": "InfluxDB", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 150, + "name": "InfluxData", + "profile_use_background_image": true, + "description": "The Platform for Time-Series Data", + "url": "http://t.co/DzRgm2B9Hb", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674654746725056514/EHg3ZHtE_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Oct 17 21:10:10 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674654746725056514/EHg3ZHtE_normal.jpg", + "favourites_count": 61, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685581760340492288", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1WyNmUS", + "url": "https://t.co/efpu73VnYS", + "expanded_url": "http://bit.ly/1WyNmUS", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:00:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685581760340492288, + "text": "The SF InfluxDB Meetup is looking for developers to share their InfluxDB experiences at a future Meetup, ping us: https://t.co/efpu73VnYS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Sprout Social" + }, + "default_profile_image": false, + "id": 1967601206, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 854, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "614623", + "following": false, + "friends_count": 164, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rae.tnir.org", + "url": "http://t.co/tdvzreHDK8", + "expanded_url": "http://rae.tnir.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/30222/swirly-swirl.jpg", + "notifications": false, + "profile_sidebar_fill_color": "BFD9C7", + "profile_link_color": "069C03", + "geo_enabled": true, + "followers_count": 309, + "location": "Toronto, Canada", + "screen_name": "clith", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Reid", + "profile_use_background_image": false, + "description": "I write iPhone apps", + "url": "http://t.co/tdvzreHDK8", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/574316640143175681/ithojHKm_normal.jpeg", + "profile_background_color": "71AB7B", + "created_at": "Mon Jan 08 18:45:15 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "488553", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/574316640143175681/ithojHKm_normal.jpeg", + "favourites_count": 210, + "status": { + "retweet_count": 153, + "retweeted_status": { + "retweet_count": 153, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684965457640599552", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 427, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", + "type": "photo", + "indices": [ + 66, + 89 + ], + "media_url": "http://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", + "display_url": "pic.twitter.com/cVeckwwvjX", + "id_str": "684965433422684160", + "expanded_url": "http://twitter.com/verge/status/684965457640599552/photo/1", + "id": 684965433422684160, + "url": "https://t.co/cVeckwwvjX" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "theverge.com/2016/1/6/10724\u2026", + "url": "https://t.co/JTkRuPu0Fe", + "expanded_url": "http://www.theverge.com/2016/1/6/10724112/netflix-global-expansion-russia-india", + "indices": [ + 42, + 65 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 05:11:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684965457640599552, + "text": "Netflix has launched in 130 new countries https://t.co/JTkRuPu0Fe https://t.co/cVeckwwvjX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 139, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684992684868567040", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 427, + "resize": "fit" + } + }, + "source_status_id_str": "684965457640599552", + "url": "https://t.co/cVeckwwvjX", + "media_url": "http://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", + "source_user_id_str": "275686563", + "id_str": "684965433422684160", + "id": 684965433422684160, + "media_url_https": "https://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", + "type": "photo", + "indices": [ + 77, + 100 + ], + "source_status_id": 684965457640599552, + "source_user_id": 275686563, + "display_url": "pic.twitter.com/cVeckwwvjX", + "expanded_url": "http://twitter.com/verge/status/684965457640599552/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "theverge.com/2016/1/6/10724\u2026", + "url": "https://t.co/JTkRuPu0Fe", + "expanded_url": "http://www.theverge.com/2016/1/6/10724112/netflix-global-expansion-russia-india", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "verge", + "id_str": "275686563", + "id": 275686563, + "indices": [ + 3, + 9 + ], + "name": "The Verge" + } + ] + }, + "created_at": "Thu Jan 07 06:59:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684992684868567040, + "text": "RT @verge: Netflix has launched in 130 new countries https://t.co/JTkRuPu0Fe https://t.co/cVeckwwvjX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 614623, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/30222/swirly-swirl.jpg", + "statuses_count": 5871, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/614623/1372430024", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "14316334", + "following": false, + "friends_count": 491, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "94D487", + "geo_enabled": false, + "followers_count": 119, + "location": "Dublin, Ireland", + "screen_name": "corriganjc", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 8, + "name": "corriganjc", + "profile_use_background_image": false, + "description": "Programmer, prone to self nerd-sniping. Edge person. Tabletop gamer. Pronouns: he/him.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648607142807752704/a-31fHlt_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Apr 06 16:43:23 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648607142807752704/a-31fHlt_normal.jpg", + "favourites_count": 2697, + "status": { + "retweet_count": 47, + "retweeted_status": { + "retweet_count": 47, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685379627297148929", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 343, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 194, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 343, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", + "type": "photo", + "indices": [ + 115, + 138 + ], + "media_url": "http://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", + "display_url": "pic.twitter.com/pJpYxFAPYc", + "id_str": "685379625904652288", + "expanded_url": "http://twitter.com/LASTEXITshirts/status/685379627297148929/photo/1", + "id": 685379625904652288, + "url": "https://t.co/pJpYxFAPYc" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1ZelBWy", + "url": "https://t.co/3O2rsdovZI", + "expanded_url": "http://bit.ly/1ZelBWy", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [ + { + "indices": [ + 17, + 26 + ], + "text": "RoyBatty" + }, + { + "indices": [ + 62, + 74 + ], + "text": "BladeRunner" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 08:36:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685379627297148929, + "text": "Happy incept day #RoyBatty\nQuote: NEXUS30 for 30% OFF all our #BladeRunner inspired items: https://t.co/3O2rsdovZI https://t.co/pJpYxFAPYc", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 50, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685380282334187520", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 343, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 194, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 343, + "resize": "fit" + } + }, + "source_status_id_str": "685379627297148929", + "url": "https://t.co/pJpYxFAPYc", + "media_url": "http://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", + "source_user_id_str": "37403964", + "id_str": "685379625904652288", + "id": 685379625904652288, + "media_url_https": "https://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685379627297148929, + "source_user_id": 37403964, + "display_url": "pic.twitter.com/pJpYxFAPYc", + "expanded_url": "http://twitter.com/LASTEXITshirts/status/685379627297148929/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1ZelBWy", + "url": "https://t.co/3O2rsdovZI", + "expanded_url": "http://bit.ly/1ZelBWy", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [ + { + "indices": [ + 37, + 46 + ], + "text": "RoyBatty" + }, + { + "indices": [ + 82, + 94 + ], + "text": "BladeRunner" + } + ], + "user_mentions": [ + { + "screen_name": "LASTEXITshirts", + "id_str": "37403964", + "id": 37403964, + "indices": [ + 3, + 18 + ], + "name": "Last Exit To Nowhere" + } + ] + }, + "created_at": "Fri Jan 08 08:39:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685380282334187520, + "text": "RT @LASTEXITshirts: Happy incept day #RoyBatty\nQuote: NEXUS30 for 30% OFF all our #BladeRunner inspired items: https://t.co/3O2rsdovZI http\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 14316334, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 4739, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14316334/1425513148", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15909478", + "following": false, + "friends_count": 2490, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/melindab", + "url": "https://t.co/8OXzCqBbZ6", + "expanded_url": "http://linkedin.com/in/melindab", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2997, + "location": "iPhone: 37.612808,-122.384117", + "screen_name": "MJB_SF", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 362, + "name": "Melinda Byerley", + "profile_use_background_image": true, + "description": "Founder, @timesharecmo. Underrated Badass. Serious/silly. Poetry Writer/Growth Hacker. Owls/Poodles. Cornell MBA/Live in SF.", + "url": "https://t.co/8OXzCqBbZ6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507327885460246529/jcIFzXJA_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Tue Aug 19 20:57:22 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507327885460246529/jcIFzXJA_normal.jpeg", + "favourites_count": 21759, + "status": { + "retweet_count": 6, + "retweeted_status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685514903960956928", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 115, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 203, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 736, + "h": 250, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", + "type": "photo", + "indices": [ + 35, + 58 + ], + "media_url": "http://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", + "display_url": "pic.twitter.com/6B56z8e044", + "id_str": "685514901268250624", + "expanded_url": "http://twitter.com/adamnash/status/685514903960956928/photo/1", + "id": 685514901268250624, + "url": "https://t.co/6B56z8e044" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:34:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/b19a2cc5134b7e0a.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.117916, + 37.3567709 + ], + [ + -122.044969, + 37.3567709 + ], + [ + -122.044969, + 37.436935 + ], + [ + -122.117916, + 37.436935 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Mountain View, CA", + "id": "b19a2cc5134b7e0a", + "name": "Mountain View" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685514903960956928, + "text": "A bit of bitcoin humor for Friday. https://t.co/6B56z8e044", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612530727694336", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 115, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 203, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 736, + "h": 250, + "resize": "fit" + } + }, + "source_status_id_str": "685514903960956928", + "url": "https://t.co/6B56z8e044", + "media_url": "http://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", + "source_user_id_str": "1421521", + "id_str": "685514901268250624", + "id": 685514901268250624, + "media_url_https": "https://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", + "type": "photo", + "indices": [ + 49, + 72 + ], + "source_status_id": 685514903960956928, + "source_user_id": 1421521, + "display_url": "pic.twitter.com/6B56z8e044", + "expanded_url": "http://twitter.com/adamnash/status/685514903960956928/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "adamnash", + "id_str": "1421521", + "id": 1421521, + "indices": [ + 3, + 12 + ], + "name": "Adam Nash" + } + ] + }, + "created_at": "Sat Jan 09 00:02:20 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612530727694336, + "text": "RT @adamnash: A bit of bitcoin humor for Friday. https://t.co/6B56z8e044", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 15909478, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 32361, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15909478/1431361178", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6500812", + "following": false, + "friends_count": 439, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thetofu.com", + "url": "http://t.co/gfLWAwOBtD", + "expanded_url": "http://thetofu.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 472, + "location": "Alameda, CA", + "screen_name": "twonds", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 47, + "name": "Christopher Zorn", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/gfLWAwOBtD", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2439991894/image_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Jun 01 13:42:18 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2439991894/image_normal.jpg", + "favourites_count": 132, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682005975692259328", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 200, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 353, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 600, + "h": 353, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", + "type": "photo", + "indices": [ + 97, + 120 + ], + "media_url": "http://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", + "display_url": "pic.twitter.com/ZWHDgNzKai", + "id_str": "682005975579009026", + "expanded_url": "http://twitter.com/OPENcompanyHQ/status/682005975692259328/photo/1", + "id": 682005975579009026, + "url": "https://t.co/ZWHDgNzKai" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22xjJr9", + "url": "https://t.co/My8exDctys", + "expanded_url": "http://bit.ly/22xjJr9", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 01:11:10 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682005975692259328, + "text": "Our latest OPENcompany newsletter features problems with employee equity https://t.co/My8exDctys https://t.co/ZWHDgNzKai", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682058811050295296", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 200, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 353, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 600, + "h": 353, + "resize": "fit" + } + }, + "source_status_id_str": "682005975692259328", + "url": "https://t.co/ZWHDgNzKai", + "media_url": "http://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", + "source_user_id_str": "3401777441", + "id_str": "682005975579009026", + "id": 682005975579009026, + "media_url_https": "https://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "source_status_id": 682005975692259328, + "source_user_id": 3401777441, + "display_url": "pic.twitter.com/ZWHDgNzKai", + "expanded_url": "http://twitter.com/OPENcompanyHQ/status/682005975692259328/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22xjJr9", + "url": "https://t.co/My8exDctys", + "expanded_url": "http://bit.ly/22xjJr9", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "OPENcompanyHQ", + "id_str": "3401777441", + "id": 3401777441, + "indices": [ + 3, + 17 + ], + "name": "OPENcompany" + } + ] + }, + "created_at": "Wed Dec 30 04:41:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682058811050295296, + "text": "RT @OPENcompanyHQ: Our latest OPENcompany newsletter features problems with employee equity https://t.co/My8exDctys https://t.co/ZWHDgNzKai", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 6500812, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3271, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "106374504", + "following": false, + "friends_count": 23244, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.co.uk/Impact-Code-Un\u2026", + "url": "http://t.co/1iz3WZs4jJ", + "expanded_url": "http://www.amazon.co.uk/Impact-Code-Unlocking-Resilliance-Productivity/dp/0992860148/ref=sr_1_3?ie=U", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "009EB3", + "geo_enabled": true, + "followers_count": 26228, + "location": "Birmingham ", + "screen_name": "andrewpain1974", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 453, + "name": "Andrew Pain", + "profile_use_background_image": true, + "description": "Author of 'The Impact Code', I help people achieve more by developing their resilience, influence & productivity. Dad to 3 awesome children - Blogger - Coach.", + "url": "http://t.co/1iz3WZs4jJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/467012098359185409/o_Ecebxn_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Jan 19 10:32:32 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/467012098359185409/o_Ecebxn_normal.jpeg", + "favourites_count": 1708, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "fikri_asma", + "in_reply_to_user_id": 2834702484, + "in_reply_to_status_id_str": "685414193906860032", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685429339240939520", + "id": 685429339240939520, + "text": "@fikri_asma - fair enough. Each to their own! :)", + "in_reply_to_user_id_str": "2834702484", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "fikri_asma", + "id_str": "2834702484", + "id": 2834702484, + "indices": [ + 0, + 11 + ], + "name": "Asma Fikri" + } + ] + }, + "created_at": "Fri Jan 08 11:54:23 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685414193906860032, + "lang": "en" + }, + "default_profile_image": false, + "id": 106374504, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "statuses_count": 11248, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/106374504/1418213651", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2439889542", + "following": false, + "friends_count": 16, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "grafana.org", + "url": "http://t.co/X4Dm6iWhX5", + "expanded_url": "http://grafana.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3123, + "location": "", + "screen_name": "grafana", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 70, + "name": "Grafana", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/X4Dm6iWhX5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/454950372675571712/rhtKuA9t_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 12 11:32:09 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/454950372675571712/rhtKuA9t_normal.png", + "favourites_count": 41, + "status": { + "retweet_count": 11, + "retweeted_status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684453558545203200", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "type": "photo", + "indices": [ + 113, + 136 + ], + "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "display_url": "pic.twitter.com/GnfOxpEaYF", + "id_str": "684450657458368512", + "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", + "id": 684450657458368512, + "url": "https://t.co/GnfOxpEaYF" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22Jb455", + "url": "https://t.co/aYQvFNmob0", + "expanded_url": "http://bit.ly/22Jb455", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [ + { + "indices": [ + 57, + 68 + ], + "text": "monitoring" + } + ], + "user_mentions": [ + { + "screen_name": "RobustPerceiver", + "id_str": "3328053545", + "id": 3328053545, + "indices": [ + 96, + 112 + ], + "name": "Robust Perception" + } + ] + }, + "created_at": "Tue Jan 05 19:16:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684453558545203200, + "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684456715811729408", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "source_status_id_str": "684453558545203200", + "url": "https://t.co/GnfOxpEaYF", + "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "source_user_id_str": "2782733125", + "id_str": "684450657458368512", + "id": 684450657458368512, + "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 684453558545203200, + "source_user_id": 2782733125, + "display_url": "pic.twitter.com/GnfOxpEaYF", + "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22Jb455", + "url": "https://t.co/aYQvFNmob0", + "expanded_url": "http://bit.ly/22Jb455", + "indices": [ + 87, + 110 + ] + } + ], + "hashtags": [ + { + "indices": [ + 75, + 86 + ], + "text": "monitoring" + } + ], + "user_mentions": [ + { + "screen_name": "raintanksaas", + "id_str": "2782733125", + "id": 2782733125, + "indices": [ + 3, + 16 + ], + "name": "raintank" + }, + { + "screen_name": "RobustPerceiver", + "id_str": "3328053545", + "id": 3328053545, + "indices": [ + 114, + 130 + ], + "name": "Robust Perception" + } + ] + }, + "created_at": "Tue Jan 05 19:29:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684456715811729408, + "text": "RT @raintanksaas: Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2439889542, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 249, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2439889542/1445965397", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2529971", + "following": false, + "friends_count": 3252, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cdixon.org/aboutme/", + "url": "http://t.co/YviCcFNOiV", + "expanded_url": "http://cdixon.org/aboutme/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543964120664403968/0IKm7siW.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "89C9FA", + "geo_enabled": true, + "followers_count": 207889, + "location": "CA & NYC", + "screen_name": "cdixon", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 7770, + "name": "Chris Dixon", + "profile_use_background_image": true, + "description": "programming, philosophy, history, internet, startups, investing", + "url": "http://t.co/YviCcFNOiV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683496924104658944/8Oa5XAso_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 27 17:48:00 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683496924104658944/8Oa5XAso_normal.png", + "favourites_count": 8211, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685592381425594369", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tmfassociates.com/blog/2016/01/0\u2026", + "url": "https://t.co/6Mi1Kkxnbp", + "expanded_url": "http://tmfassociates.com/blog/2016/01/08/the-exploding-inflight-connectivity-market/", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:42:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685592381425594369, + "text": "\"ViaSat\u2019s 1Tbps capacity would offer low cost connectivity, including streaming video, to airline passengers.\" https://t.co/6Mi1Kkxnbp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 11, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2529971, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543964120664403968/0IKm7siW.png", + "statuses_count": 8966, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2529971/1451789461", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14861000", + "following": false, + "friends_count": 2104, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "alexnobert.com", + "url": "https://t.co/tPoTMUsmKK", + "expanded_url": "http://alexnobert.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/853194994/0bb4e16ca51a19b8a05ac269062e8381.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E8E8E8", + "profile_link_color": "FF6900", + "geo_enabled": false, + "followers_count": 1522, + "location": "The Glebe, Ottawa, Canada", + "screen_name": "nobert", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 67, + "name": "Alex Nobert", + "profile_use_background_image": true, + "description": "Post-macho feminist. Loves dogs, food, college football. Ops survivor. Works at Flynn. Built and led ops at Shopify, Vox Media, Minted. Never kick.", + "url": "https://t.co/tPoTMUsmKK", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666309776721096704/ag61W3Xf_normal.jpg", + "profile_background_color": "FF6900", + "created_at": "Wed May 21 19:41:18 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666309776721096704/ag61W3Xf_normal.jpg", + "favourites_count": 9925, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685580880031559680", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 113, + "resize": "fit" + }, + "large": { + "w": 894, + "h": 298, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 200, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOsLWaUEAAFib2.png", + "type": "photo", + "indices": [ + 113, + 136 + ], + "media_url": "http://pbs.twimg.com/media/CYOsLWaUEAAFib2.png", + "display_url": "pic.twitter.com/nz3HVzAzP4", + "id_str": "685580879284932608", + "expanded_url": "http://twitter.com/nobert/status/685580880031559680/photo/1", + "id": 685580879284932608, + "url": "https://t.co/nz3HVzAzP4" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thevowel", + "id_str": "14269220", + "id": 14269220, + "indices": [ + 10, + 19 + ], + "name": "Eric Neustadter (e)" + } + ] + }, + "created_at": "Fri Jan 08 21:56:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685580880031559680, + "text": "Thanks to @thevowel, my Razer Blade is finally running with BitLocker. All it took was an Ubuntu live USB drive. https://t.co/nz3HVzAzP4", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14861000, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/853194994/0bb4e16ca51a19b8a05ac269062e8381.jpeg", + "statuses_count": 25213, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14861000/1446000512", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "46250388", + "following": false, + "friends_count": 557, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "devco.net", + "url": "https://t.co/XvqT2v1kJh", + "expanded_url": "https://devco.net/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": false, + "followers_count": 4231, + "location": "Europe", + "screen_name": "ripienaar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 358, + "name": "R.I.Pienaar", + "profile_use_background_image": false, + "description": "Systems Administrator, Automator, Ruby Coder.", + "url": "https://t.co/XvqT2v1kJh", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/257864204/ducks_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Jun 10 22:57:38 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/257864204/ducks_normal.png", + "favourites_count": 2, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "oneplusi", + "in_reply_to_user_id": 7005982, + "in_reply_to_status_id_str": "685506980761436160", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685507134570819584", + "id": 685507134570819584, + "text": "@oneplusi lol, home luckily :)", + "in_reply_to_user_id_str": "7005982", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "oneplusi", + "id_str": "7005982", + "id": 7005982, + "indices": [ + 0, + 9 + ], + "name": "Andrew Stubbs" + } + ] + }, + "created_at": "Fri Jan 08 17:03:31 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685506980761436160, + "lang": "en" + }, + "default_profile_image": false, + "id": 46250388, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 23854, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/46250388/1447895364", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17000457", + "following": false, + "friends_count": 2955, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "azure.microsoft.com", + "url": "http://t.co/vFtkLITsAX", + "expanded_url": "http://azure.microsoft.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451786593955610624/iomf2rSv.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 411259, + "location": "Redmond, WA", + "screen_name": "Azure", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4506, + "name": "Microsoft Azure", + "profile_use_background_image": true, + "description": "The official account for Microsoft Azure. Follow for news and updates from the team and community.", + "url": "http://t.co/vFtkLITsAX", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/546024114272468993/W9gT7hZo_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 27 15:34:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/546024114272468993/W9gT7hZo_normal.png", + "favourites_count": 1781, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685567906466271233", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "aka.ms/q721n1", + "url": "https://t.co/SKGxL4J725", + "expanded_url": "http://aka.ms/q721n1", + "indices": [ + 106, + 129 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 6 + ], + "text": "Azure" + }, + { + "indices": [ + 130, + 140 + ], + "text": "AzureApps" + } + ], + "user_mentions": [ + { + "screen_name": "harmonypsa", + "id_str": "339088324", + "id": 339088324, + "indices": [ + 15, + 26 + ], + "name": "HarmonyPSA" + }, + { + "screen_name": "MSPartnerApps", + "id_str": "2533622706", + "id": 2533622706, + "indices": [ + 66, + 80 + ], + "name": "MS Partner Apps" + } + ] + }, + "created_at": "Fri Jan 08 21:05:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685567906466271233, + "text": "#Azure partner @harmonypsa saw web traffic surge while working w/ @MSPartnerApps. Read the success story: https://t.co/SKGxL4J725 #AzureApps", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Sprinklr" + }, + "default_profile_image": false, + "id": 17000457, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451786593955610624/iomf2rSv.jpeg", + "statuses_count": 17923, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17000457/1440619501", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "26191233", + "following": false, + "friends_count": 2389, + "entities": { + "description": { + "urls": [ + { + "display_url": "rackspace.com/support", + "url": "http://t.co/4xHHyxqo6k", + "expanded_url": "http://www.rackspace.com/support", + "indices": [ + 83, + 105 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "rackspace.com", + "url": "http://t.co/hWaMv0FzgM", + "expanded_url": "http://www.rackspace.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/646414416255320064/GBM3mlo2.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 99979, + "location": "San Antonio, TX", + "screen_name": "Rackspace", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2526, + "name": "Rackspace", + "profile_use_background_image": true, + "description": "The managed cloud company. Backed by Fanatical Support\u00ae. Questions? Reach us here: http://t.co/4xHHyxqo6k", + "url": "http://t.co/hWaMv0FzgM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2820164575/0226f9ef1173d90417e5113e25e0cc17_normal.png", + "profile_background_color": "000000", + "created_at": "Tue Mar 24 06:30:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2820164575/0226f9ef1173d90417e5113e25e0cc17_normal.png", + "favourites_count": 4161, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685557209166655488", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOWpf8WcAA04Bb.png", + "type": "photo", + "indices": [ + 108, + 131 + ], + "media_url": "http://pbs.twimg.com/media/CYOWpf8WcAA04Bb.png", + "display_url": "pic.twitter.com/TnNhe32y17", + "id_str": "685557207983878144", + "expanded_url": "http://twitter.com/Rackspace/status/685557209166655488/photo/1", + "id": 685557207983878144, + "url": "https://t.co/TnNhe32y17" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "rack.ly/6016Bn0Er", + "url": "https://t.co/RzlCDlAeYF", + "expanded_url": "http://rack.ly/6016Bn0Er", + "indices": [ + 84, + 107 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:22:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685557209166655488, + "text": "Starting next week, explore what dedicated infrastructure offers in a cloudy world. https://t.co/RzlCDlAeYF https://t.co/TnNhe32y17", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Sprinklr" + }, + "default_profile_image": false, + "id": 26191233, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/646414416255320064/GBM3mlo2.png", + "statuses_count": 22069, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/26191233/1442952292", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "356565711", + "following": false, + "friends_count": 1807, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cloudstack.apache.org", + "url": "http://t.co/iUUxv93VBY", + "expanded_url": "http://cloudstack.apache.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 32657, + "location": "Apache Software Foundation", + "screen_name": "CloudStack", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 491, + "name": "Apache CloudStack ", + "profile_use_background_image": true, + "description": "Official Twitter account of the Apache CloudStack, an open source cloud computing platform.", + "url": "http://t.co/iUUxv93VBY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1513105223/twitter-icon_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Aug 17 01:38:29 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1513105223/twitter-icon_normal.png", + "favourites_count": 5, + "status": { + "retweet_count": 29, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "671645266869637120", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "s.apache.org/VfP", + "url": "https://t.co/mH2VS8lCmg", + "expanded_url": "http://s.apache.org/VfP", + "indices": [ + 65, + 88 + ] + } + ], + "hashtags": [ + { + "indices": [ + 89, + 100 + ], + "text": "OpenSource" + }, + { + "indices": [ + 101, + 107 + ], + "text": "Cloud" + }, + { + "indices": [ + 108, + 122 + ], + "text": "orchestration" + }, + { + "indices": [ + 123, + 132 + ], + "text": "platform" + } + ], + "user_mentions": [ + { + "screen_name": "CloudStack", + "id_str": "356565711", + "id": 356565711, + "indices": [ + 48, + 59 + ], + "name": "Apache CloudStack " + } + ] + }, + "created_at": "Tue Dec 01 11:01:24 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 671645266869637120, + "text": "The Apache Software Foundation announces Apache @CloudStack v4.6\nhttps://t.co/mH2VS8lCmg #OpenSource #Cloud #orchestration #platform", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 356565711, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1779, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15813140", + "following": false, + "friends_count": 161, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cloud.google.com", + "url": "http://t.co/DSf8acfd3K", + "expanded_url": "http://cloud.google.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135879522/P3DFciyd.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "549CF5", + "geo_enabled": false, + "followers_count": 465530, + "location": "", + "screen_name": "googlecloud", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 6244, + "name": "GoogleCloudPlatform", + "profile_use_background_image": true, + "description": "Building tools for modern applications, making developers more productive, and giving you the power to build on Google's computing infrastructure.", + "url": "http://t.co/DSf8acfd3K", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/639578526233010176/sf2x8byZ_normal.png", + "profile_background_color": "4285F4", + "created_at": "Mon Aug 11 20:08:12 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/639578526233010176/sf2x8byZ_normal.png", + "favourites_count": 509, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685598108395388928", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYO72M3WkAABQzM.png", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CYO72M3WkAABQzM.png", + "display_url": "pic.twitter.com/kO87ATY3uB", + "id_str": "685598108131168256", + "expanded_url": "http://twitter.com/googlecloud/status/685598108395388928/photo/1", + "id": 685598108131168256, + "url": "https://t.co/kO87ATY3uB" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "goo.gl/VeK1jg", + "url": "https://t.co/VS0IVqznY5", + "expanded_url": "http://goo.gl/VeK1jg", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tableau", + "id_str": "14792516", + "id": 14792516, + "indices": [ + 11, + 19 + ], + "name": "Tableau Software" + } + ] + }, + "created_at": "Fri Jan 08 23:05:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685598108395388928, + "text": "Good news, @tableau users. Now you can directly connect to Cloud SQL in just a few seconds. https://t.co/VS0IVqznY5 https://t.co/kO87ATY3uB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Sprinklr" + }, + "default_profile_image": false, + "id": 15813140, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135879522/P3DFciyd.png", + "statuses_count": 2456, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15813140/1450457327", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "66780587", + "following": false, + "friends_count": 519, + "entities": { + "description": { + "urls": [ + { + "display_url": "aws.amazon.com/what-is-cloud-\u2026", + "url": "https://t.co/xICTf1bTeB", + "expanded_url": "http://aws.amazon.com/what-is-cloud-computing/", + "indices": [ + 77, + 100 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "aws.amazon.com", + "url": "https://t.co/8QQO0BCGlY", + "expanded_url": "http://aws.amazon.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554689648/aws_block_bkrnd.png", + "notifications": false, + "profile_sidebar_fill_color": "DBF1FD", + "profile_link_color": "FAA734", + "geo_enabled": false, + "followers_count": 449642, + "location": "Seattle, WA", + "screen_name": "awscloud", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3740, + "name": "Amazon Web Services", + "profile_use_background_image": true, + "description": "Official Twitter Feed for Amazon Web Services. New to the cloud? Start here: https://t.co/xICTf1bTeB", + "url": "https://t.co/8QQO0BCGlY", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2900345382/16ffae8c667bdbc6a4969f6f02090652_normal.png", + "profile_background_color": "646566", + "created_at": "Tue Aug 18 19:52:16 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2900345382/16ffae8c667bdbc6a4969f6f02090652_normal.png", + "favourites_count": 77, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685598866901569537", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYO8iRSUwAAXJNH.png", + "type": "photo", + "indices": [ + 81, + 104 + ], + "media_url": "http://pbs.twimg.com/media/CYO8iRSUwAAXJNH.png", + "display_url": "pic.twitter.com/swC5ATrl56", + "id_str": "685598865232281600", + "expanded_url": "http://twitter.com/awscloud/status/685598866901569537/photo/1", + "id": 685598865232281600, + "url": "https://t.co/swC5ATrl56" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "oak.ctx.ly/r/4682z", + "url": "https://t.co/PVOMKD7odh", + "expanded_url": "http://oak.ctx.ly/r/4682z", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:08:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685598866901569537, + "text": "Get started with Amazon EC2 Container Registry. How to: https://t.co/PVOMKD7odh https://t.co/swC5ATrl56", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Adobe\u00ae Social" + }, + "default_profile_image": false, + "id": 66780587, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554689648/aws_block_bkrnd.png", + "statuses_count": 6698, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/66780587/1447775917", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "167234557", + "following": false, + "friends_count": 616, + "entities": { + "description": { + "urls": [ + { + "display_url": "openstack.org", + "url": "http://t.co/y6pc2uGhTy", + "expanded_url": "http://openstack.org", + "indices": [ + 6, + 28 + ] + }, + { + "display_url": "irc.freenode.com", + "url": "http://t.co/tat2wl18xy", + "expanded_url": "http://irc.freenode.com", + "indices": [ + 53, + 75 + ] + }, + { + "display_url": "openstack.org/join", + "url": "http://t.co/hQdq1180WX", + "expanded_url": "http://openstack.org/join", + "indices": [ + 111, + 133 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "openstack.org", + "url": "http://t.co/y6pc2uGhTy", + "expanded_url": "http://openstack.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468542714561044482/90T1TJiX.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 108821, + "location": "Running on servers near you!", + "screen_name": "OpenStack", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2026, + "name": "OpenStack", + "profile_use_background_image": true, + "description": "Go to http://t.co/y6pc2uGhTy for more information or http://t.co/tat2wl18xy #openstack and join the foundation http://t.co/hQdq1180WX", + "url": "http://t.co/y6pc2uGhTy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/441018383090196480/GCPRyAva_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Jul 16 02:22:35 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/441018383090196480/GCPRyAva_normal.png", + "favourites_count": 314, + "status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685298732280221696", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "awe.sm/aNW8c", + "url": "https://t.co/QRUPaA4KtT", + "expanded_url": "http://awe.sm/aNW8c", + "indices": [ + 107, + 130 + ] + } + ], + "hashtags": [ + { + "indices": [ + 7, + 17 + ], + "text": "OpenStack" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:15:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685298732280221696, + "text": "New to #OpenStack? Start the year with OpenStack training. Check out these available courses in Australia: https://t.co/QRUPaA4KtT", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 167234557, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468542714561044482/90T1TJiX.png", + "statuses_count": 4944, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/167234557/1446648581", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16333852", + "following": false, + "friends_count": 409, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chef.io", + "url": "http://t.co/OudqPCVrNN", + "expanded_url": "http://www.chef.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "F18A20", + "geo_enabled": true, + "followers_count": 26796, + "location": "Seattle, WA, USA", + "screen_name": "chef", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1066, + "name": "Chef", + "profile_use_background_image": true, + "description": "Helping people achieve awesome with IT automation, configuration management, & continuous delivery. #devops / #hugops / #learnchef / #getchef / #foodfightshow", + "url": "http://t.co/OudqPCVrNN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/616327263684947968/r7C1Tnye_normal.png", + "profile_background_color": "131516", + "created_at": "Wed Sep 17 18:23:58 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/616327263684947968/r7C1Tnye_normal.png", + "favourites_count": 368, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685570175228235778", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 170, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYE2NEgUMAEfAiw.jpg", + "type": "photo", + "indices": [ + 112, + 135 + ], + "media_url": "http://pbs.twimg.com/media/CYE2NEgUMAEfAiw.jpg", + "display_url": "pic.twitter.com/OW9Un3NpXI", + "id_str": "684888216512507905", + "expanded_url": "http://twitter.com/chef/status/685570175228235778/photo/1", + "id": 684888216512507905, + "url": "https://t.co/OW9Un3NpXI" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1ZKIYnp", + "url": "https://t.co/KqwUKauCne", + "expanded_url": "http://bit.ly/1ZKIYnp", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [ + { + "indices": [ + 28, + 35 + ], + "text": "DevOps" + }, + { + "indices": [ + 45, + 52 + ], + "text": "growth" + } + ], + "user_mentions": [ + { + "screen_name": "leecaswell", + "id_str": "18650596", + "id": 18650596, + "indices": [ + 59, + 70 + ], + "name": "Lee Caswell" + }, + { + "screen_name": "ITProPortal", + "id_str": "16318230", + "id": 16318230, + "indices": [ + 74, + 86 + ], + "name": "ITProPortal" + } + ] + }, + "created_at": "Fri Jan 08 21:14:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685570175228235778, + "text": "More enterprises will adopt #DevOps to drive #growth, says @leecaswell in @ITProPortal: https://t.co/KqwUKauCne https://t.co/OW9Un3NpXI", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 16333852, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 6864, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16333852/1405444420", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13682312", + "following": false, + "friends_count": 686, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "getchef.com", + "url": "http://t.co/p823bsFMUP", + "expanded_url": "http://getchef.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 7207, + "location": "San Francisco, CA", + "screen_name": "adamhjk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 444, + "name": "Adam Jacob", + "profile_use_background_image": false, + "description": "CTO for Chef.", + "url": "http://t.co/p823bsFMUP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1108290260/Adam_Jacob-114x150_original_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Feb 19 18:02:55 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108290260/Adam_Jacob-114x150_original_normal.jpg", + "favourites_count": 84, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685577402345390080", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOpA9aU0AIEJfl.jpg", + "type": "photo", + "indices": [ + 57, + 80 + ], + "media_url": "http://pbs.twimg.com/media/CYOpA9aU0AIEJfl.jpg", + "display_url": "pic.twitter.com/dEupjf9CQ4", + "id_str": "685577402240520194", + "expanded_url": "http://twitter.com/adamhjk/status/685577402345390080/photo/1", + "id": 685577402240520194, + "url": "https://t.co/dEupjf9CQ4" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 23, + 40 + ], + "text": "stickiepocalypse" + } + ], + "user_mentions": [ + { + "screen_name": "chef", + "id_str": "16333852", + "id": 16333852, + "indices": [ + 17, + 22 + ], + "name": "Chef" + }, + { + "screen_name": "jeffpatton", + "id_str": "16043994", + "id": 16043994, + "indices": [ + 45, + 56 + ], + "name": "Jeff Patton" + } + ] + }, + "created_at": "Fri Jan 08 21:42:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685577402345390080, + "text": "Story mapping at @chef #stickiepocalypse /cc @jeffpatton https://t.co/dEupjf9CQ4", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 13682312, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8912, + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "14079705", + "following": false, + "friends_count": 2455, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stochasticresonance.wordpress.com", + "url": "http://t.co/cesY1x0gXj", + "expanded_url": "http://stochasticresonance.wordpress.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "1252B3", + "geo_enabled": true, + "followers_count": 8346, + "location": "a wrinkle in timespace", + "screen_name": "littleidea", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 558, + "name": "Andrew Clay Shafer", + "profile_use_background_image": true, + "description": "solving more problems than I cause at @pivotal", + "url": "http://t.co/cesY1x0gXj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/425400689301266432/zDSgA31m_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Mar 04 20:17:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/425400689301266432/zDSgA31m_normal.png", + "favourites_count": 5682, + "status": { + "retweet_count": 229, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 229, + "truncated": false, + "retweeted": false, + "id_str": "685591830109401089", + "id": 685591830109401089, + "text": "You can't please all the people all the time.\n\nYou can however displease all the people all the time.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:40:04 +0000 2016", + "source": "TweetDeck", + "favorite_count": 221, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685593223251623936", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sadserver", + "id_str": "116568685", + "id": 116568685, + "indices": [ + 3, + 13 + ], + "name": "Sardonic Server" + } + ] + }, + "created_at": "Fri Jan 08 22:45:36 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593223251623936, + "text": "RT @sadserver: You can't please all the people all the time.\n\nYou can however displease all the people all the time.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14079705, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 33466, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14079705/1399044111", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "17025041", + "following": false, + "friends_count": 361, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jtimberman.housepub.org", + "url": "https://t.co/b7N8iBMhKh", + "expanded_url": "http://jtimberman.housepub.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "BC4301", + "geo_enabled": false, + "followers_count": 3739, + "location": "My Bikeshed (It's Green)", + "screen_name": "jtimberman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 274, + "name": "Overheard By", + "profile_use_background_image": false, + "description": "here's my surprised face. it's the same as my not surprised face.", + "url": "https://t.co/b7N8iBMhKh", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/636550941110480896/u1prsDHS_normal.jpg", + "profile_background_color": "7C7C7C", + "created_at": "Tue Oct 28 17:35:26 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636550941110480896/u1prsDHS_normal.jpg", + "favourites_count": 4869, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ashedryden", + "in_reply_to_user_id": 9510922, + "in_reply_to_status_id_str": "685607090417606656", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685607317845315585", + "id": 685607317845315585, + "text": "@ashedryden :D! <3", + "in_reply_to_user_id_str": "9510922", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ashedryden", + "id_str": "9510922", + "id": 9510922, + "indices": [ + 0, + 11 + ], + "name": "ashe" + } + ] + }, + "created_at": "Fri Jan 08 23:41:37 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685607090417606656, + "lang": "und" + }, + "default_profile_image": false, + "id": 17025041, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 43882, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17025041/1428382685", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "10452062", + "following": false, + "friends_count": 331, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tateeskew.com", + "url": "http://t.co/n6LC79pux8", + "expanded_url": "http://www.tateeskew.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/237422775/body-bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "E99708", + "geo_enabled": false, + "followers_count": 286, + "location": "Nashville, TN", + "screen_name": "tateeskew", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 23, + "name": "tateeskew", + "profile_use_background_image": true, + "description": "Open Source Advocate, Musician, Audio Engineer, Linux Systems Engineer, Community Builder and Practitioner of Permaculture.", + "url": "http://t.co/n6LC79pux8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494679290131136512/ofhOW9HO_normal.jpeg", + "profile_background_color": "E99708", + "created_at": "Wed Nov 21 21:43:25 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494679290131136512/ofhOW9HO_normal.jpeg", + "favourites_count": 245, + "status": { + "retweet_count": 34, + "retweeted_status": { + "retweet_count": 34, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685459826168741888", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pytennessee.tumblr.com/post/136879055\u2026", + "url": "https://t.co/TpMGJfwHS2", + "expanded_url": "http://pytennessee.tumblr.com/post/136879055598/pytennessee-2016", + "indices": [ + 45, + 68 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 13:55:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685459826168741888, + "text": "PyTennessee needs HELP! Funding is way down! https://t.co/TpMGJfwHS2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685466172532207616", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pytennessee.tumblr.com/post/136879055\u2026", + "url": "https://t.co/TpMGJfwHS2", + "expanded_url": "http://pytennessee.tumblr.com/post/136879055598/pytennessee-2016", + "indices": [ + 62, + 85 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PyTennessee", + "id_str": "1616492725", + "id": 1616492725, + "indices": [ + 3, + 15 + ], + "name": "PyTN" + } + ] + }, + "created_at": "Fri Jan 08 14:20:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685466172532207616, + "text": "RT @PyTennessee: PyTennessee needs HELP! Funding is way down! https://t.co/TpMGJfwHS2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 10452062, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/237422775/body-bg.jpg", + "statuses_count": 1442, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10452062/1398052886", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1281116485", + "following": false, + "friends_count": 31, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 27, + "location": "", + "screen_name": "Dinahpuglife", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Dinah Walker", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495805740536561665/reIDixvv_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 19 18:04:33 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495805740536561665/reIDixvv_normal.jpeg", + "favourites_count": 46, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "578446201097326593", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tweetyourbracket.com/2015/MW1812463\u2026", + "url": "http://t.co/5yO3DjH77P", + "expanded_url": "http://tweetyourbracket.com/2015/MW18124637211262121W18124631021432122E181241131021432434S1854113721432122FFMWEMW", + "indices": [ + 23, + 45 + ] + } + ], + "hashtags": [ + { + "indices": [ + 13, + 21 + ], + "text": "bracket" + }, + { + "indices": [ + 46, + 53 + ], + "text": "tybrkt" + } + ], + "user_mentions": [ + { + "screen_name": "TweetTheBracket", + "id_str": "515832256", + "id": 515832256, + "indices": [ + 58, + 74 + ], + "name": "Tweet Your Bracket" + } + ] + }, + "created_at": "Thu Mar 19 06:41:36 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 578446201097326593, + "text": "Check out my #bracket! http://t.co/5yO3DjH77P #tybrkt via @tweetthebracket", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1281116485, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "97933", + "following": false, + "friends_count": 176, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.zawodny.com", + "url": "http://t.co/T7eJjIa3oR", + "expanded_url": "http://blog.zawodny.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 5449, + "location": "Groveland, CA", + "screen_name": "jzawodn", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 363, + "name": "Jeremy Zawodny", + "profile_use_background_image": true, + "description": "I fly and geek.", + "url": "http://t.co/T7eJjIa3oR", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/17071732/Zawodny-md_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Thu Dec 21 05:47:54 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/17071732/Zawodny-md_normal.jpg", + "favourites_count": 110, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685566731071299584", + "id": 685566731071299584, + "text": "when you finish your upgraded FreeNAS box and \"df\" tells you you have ~25TB free of well protected storage cc: @FreeNASTeam", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "FreeNASTeam", + "id_str": "291881151", + "id": 291881151, + "indices": [ + 111, + 123 + ], + "name": "FreeNAS Community" + } + ] + }, + "created_at": "Fri Jan 08 21:00:20 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 97933, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3813, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/97933/1353544820", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15804774", + "following": false, + "friends_count": 435, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "python.org/~guido/", + "url": "http://t.co/jujQDNMiBP", + "expanded_url": "http://python.org/~guido/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 72585, + "location": "San Francisco Bay Area", + "screen_name": "gvanrossum", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3128, + "name": "Guido van Rossum", + "profile_use_background_image": true, + "description": "Python BDFL. Working at Dropbox. The 'van' has no capital letter!", + "url": "http://t.co/jujQDNMiBP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/424495004/GuidoAvatar_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Aug 11 04:02:18 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/424495004/GuidoAvatar_normal.jpg", + "favourites_count": 431, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 853051010, + "possibly_sensitive": false, + "id_str": "681300597350346752", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/JukkaL/mypy", + "url": "https://t.co/0hQF9kaESy", + "expanded_url": "https://github.com/JukkaL/mypy", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ismael_vc", + "id_str": "853051010", + "id": 853051010, + "indices": [ + 0, + 10 + ], + "name": "Ismael V. C." + }, + { + "screen_name": "l337d474", + "id_str": "1408419319", + "id": 1408419319, + "indices": [ + 11, + 20 + ], + "name": "Jonathan Foley" + } + ] + }, + "created_at": "Mon Dec 28 02:28:15 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "853051010", + "place": null, + "in_reply_to_screen_name": "ismael_vc", + "in_reply_to_status_id_str": "681093799003729920", + "truncated": false, + "id": 681300597350346752, + "text": "@ismael_vc @l337d474 It's not my project -- I just provide moral support. (!) Check out https://t.co/0hQF9kaESy for what I'm working on.", + "coordinates": null, + "in_reply_to_status_id": 681093799003729920, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 15804774, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1713, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15804774/1400086274", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "63873759", + "following": false, + "friends_count": 120, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "python.org/psf", + "url": "http://t.co/KdOzhmst4U", + "expanded_url": "http://www.python.org/psf", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FFEE30", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 94780, + "location": "Everywhere Python is!", + "screen_name": "ThePSF", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2519, + "name": "Python - The PSF", + "profile_use_background_image": true, + "description": "The Python Software Foundation. For help with Python code, see comp.lang.python.", + "url": "http://t.co/KdOzhmst4U", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/439154912719413248/pUBY5pVj_normal.png", + "profile_background_color": "2B9DD6", + "created_at": "Sat Aug 08 01:26:03 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/439154912719413248/pUBY5pVj_normal.png", + "favourites_count": 184, + "status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679421499812483073", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "goo.gl/fb/ZDhZTu", + "url": "https://t.co/xTWZBxTyeT", + "expanded_url": "http://goo.gl/fb/ZDhZTu", + "indices": [ + 22, + 45 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 22 22:01:23 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679421499812483073, + "text": "Python-Cuba Workgroup https://t.co/xTWZBxTyeT", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 23, + "contributors": null, + "source": "Google" + }, + "default_profile_image": false, + "id": 63873759, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2642, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24945605", + "following": false, + "friends_count": 174, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jesstess.com", + "url": "http://t.co/amra6EvsH8", + "expanded_url": "http://jesstess.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 7948, + "location": "San Francisco, CA", + "screen_name": "jessicamckellar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 394, + "name": "Jessica McKellar", + "profile_use_background_image": false, + "description": "Startup founder, open source developer, Engineering Director @Dropbox.", + "url": "http://t.co/amra6EvsH8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/428813271/glendaAndGrumpy_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Mar 17 20:16:06 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/428813271/glendaAndGrumpy_normal.jpg", + "favourites_count": 0, + "status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684230271395172355", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "web.mit.edu/jesstess/www/p\u2026", + "url": "https://t.co/PL8GO1J5AM", + "expanded_url": "http://web.mit.edu/jesstess/www/pygotham.pdf", + "indices": [ + 8, + 31 + ] + }, + { + "display_url": "twitter.com/fperez_org/sta\u2026", + "url": "https://t.co/V3tH2vT1BY", + "expanded_url": "https://twitter.com/fperez_org/status/683861601707884544", + "indices": [ + 32, + 55 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 04:29:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684230271395172355, + "text": "Slides! https://t.co/PL8GO1J5AM https://t.co/V3tH2vT1BY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 31, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 24945605, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 758, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "8859592", + "following": false, + "friends_count": 996, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443033856724054016/SsuiT5VK.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "8791BA", + "profile_link_color": "236C3A", + "geo_enabled": true, + "followers_count": 6713, + "location": "", + "screen_name": "selenamarie", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 549, + "name": "selena", + "profile_use_background_image": true, + "description": "Fundamentally, tomato paste offends me.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/626083465188917249/qp1YqumV_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Thu Sep 13 18:27:20 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626083465188917249/qp1YqumV_normal.jpg", + "favourites_count": 16360, + "status": { + "retweet_count": 6, + "retweeted_status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685300103423213568", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/@audrey.tang/l\u2026", + "url": "https://t.co/HihpLSfXJW", + "expanded_url": "https://medium.com/@audrey.tang/lessons-i-ve-learned-32f5d8107e34#.utph2976y", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [ + { + "indices": [ + 70, + 83 + ], + "text": "TrollHugging" + } + ], + "user_mentions": [ + { + "screen_name": "audreyt", + "id_str": "7403862", + "id": 7403862, + "indices": [ + 51, + 59 + ], + "name": "\u5510\u9cf3" + } + ] + }, + "created_at": "Fri Jan 08 03:20:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685300103423213568, + "text": "People who communicate on the Internet should read @audreyt's amazing #TrollHugging post. Soak it in.\nhttps://t.co/HihpLSfXJW", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685310643390418946", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/@audrey.tang/l\u2026", + "url": "https://t.co/HihpLSfXJW", + "expanded_url": "https://medium.com/@audrey.tang/lessons-i-ve-learned-32f5d8107e34#.utph2976y", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [ + { + "indices": [ + 81, + 94 + ], + "text": "TrollHugging" + } + ], + "user_mentions": [ + { + "screen_name": "lukec", + "id_str": "852141", + "id": 852141, + "indices": [ + 3, + 9 + ], + "name": "Luke Closs" + }, + { + "screen_name": "audreyt", + "id_str": "7403862", + "id": 7403862, + "indices": [ + 62, + 70 + ], + "name": "\u5510\u9cf3" + } + ] + }, + "created_at": "Fri Jan 08 04:02:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685310643390418946, + "text": "RT @lukec: People who communicate on the Internet should read @audreyt's amazing #TrollHugging post. Soak it in.\nhttps://t.co/HihpLSfXJW", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 8859592, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443033856724054016/SsuiT5VK.jpeg", + "statuses_count": 20525, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8859592/1353376656", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "14819854", + "following": false, + "friends_count": 506, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "florianjensen.com", + "url": "http://t.co/UnLaQEYHjv", + "expanded_url": "http://www.florianjensen.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 1196, + "location": "London, UK", + "screen_name": "flosoft", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 75, + "name": "Florian Jensen", + "profile_use_background_image": true, + "description": "Community Manager at @Uber, Co-Founder @flosoftbiz & all round geek.", + "url": "http://t.co/UnLaQEYHjv", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2609281578/fq9yqr33ddqf6ru6aplv_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Sun May 18 11:14:05 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2609281578/fq9yqr33ddqf6ru6aplv_normal.jpeg", + "favourites_count": 334, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682644537194508293", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/_98qHmjKR-/", + "url": "https://t.co/4qu6MVeo06", + "expanded_url": "https://www.instagram.com/p/_98qHmjKR-/", + "indices": [ + 63, + 86 + ] + } + ], + "hashtags": [ + { + "indices": [ + 58, + 62 + ], + "text": "NYE" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 19:28:35 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682644537194508293, + "text": "Home made sushi fusion with a few drinks to get ready for #NYE https://t.co/4qu6MVeo06", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 14819854, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 13793, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "218987642", + "following": false, + "friends_count": 17, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "swift.im", + "url": "http://t.co/9TsTBoEq3E", + "expanded_url": "http://swift.im", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 90, + "location": "", + "screen_name": "swift_im", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Swift IM", + "profile_use_background_image": true, + "description": "The free, cross-platform instant messaging client for 1:1 and Multi-User Chat on XMPP networks.", + "url": "http://t.co/9TsTBoEq3E", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/595941243290591234/v3r-uipW_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Nov 23 16:54:02 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/595941243290591234/v3r-uipW_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677935126404313088", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ift.tt/1OdqIRD", + "url": "https://t.co/JVnWleLcDI", + "expanded_url": "http://ift.tt/1OdqIRD", + "indices": [ + 50, + 73 + ] + } + ], + "hashtags": [ + { + "indices": [ + 74, + 78 + ], + "text": "xsf" + }, + { + "indices": [ + 79, + 84 + ], + "text": "xmpp" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Dec 18 19:35:04 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677935126404313088, + "text": "XMPP at the end of the Google Summer of Code 2015 https://t.co/JVnWleLcDI #xsf #xmpp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "IFTTT" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678882628548755456", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ift.tt/1OdqIRD", + "url": "https://t.co/JVnWleLcDI", + "expanded_url": "http://ift.tt/1OdqIRD", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [ + { + "indices": [ + 91, + 95 + ], + "text": "xsf" + }, + { + "indices": [ + 96, + 101 + ], + "text": "xmpp" + } + ], + "user_mentions": [ + { + "screen_name": "willsheward", + "id_str": "16362966", + "id": 16362966, + "indices": [ + 3, + 15 + ], + "name": "Will Sheward" + } + ] + }, + "created_at": "Mon Dec 21 10:20:06 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678882628548755456, + "text": "RT @willsheward: XMPP at the end of the Google Summer of Code 2015 https://t.co/JVnWleLcDI #xsf #xmpp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 218987642, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 109, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/218987642/1429025633", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "16362966", + "following": false, + "friends_count": 414, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "willsheward.co.uk", + "url": "http://t.co/wtqPHWkbrm", + "expanded_url": "http://www.willsheward.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000081501604/eb4cb212b29fcf123f9b03e5da4b52da.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 233, + "location": "", + "screen_name": "willsheward", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "Will Sheward", + "profile_use_background_image": false, + "description": "RSA Fellow, Marketing VP, Nerd (order is flexible).", + "url": "http://t.co/wtqPHWkbrm", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/606133029938073600/dDYru-ey_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Fri Sep 19 13:14:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/606133029938073600/dDYru-ey_normal.jpg", + "favourites_count": 9, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685476729222201344", + "id": 685476729222201344, + "text": "Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #SpellCheckNoHelp", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 118, + 135 + ], + "text": "SpellCheckNoHelp" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:02:42 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 16362966, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000081501604/eb4cb212b29fcf123f9b03e5da4b52da.png", + "statuses_count": 1077, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16362966/1408540182", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6531812", + "following": false, + "friends_count": 10, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "waqas.im", + "url": "http://t.co/a1CCYY1SVd", + "expanded_url": "http://waqas.im", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 91, + "location": "", + "screen_name": "zeen", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Waqas Hussain", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/a1CCYY1SVd", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/27003812/Make_Me_Dream_by_Track9_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Sat Jun 02 23:47:27 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/27003812/Make_Me_Dream_by_Track9_normal.jpg", + "favourites_count": 0, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "nginxorg", + "in_reply_to_user_id": 326658079, + "in_reply_to_status_id_str": "515572670390599681", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "515577420075008000", + "id": 515577420075008000, + "text": "@nginxorg Upgrading from Ubuntu Precise, but 1.1.19 is the latest precise has (with security patches applied) :)", + "in_reply_to_user_id_str": "326658079", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nginxorg", + "id_str": "326658079", + "id": 326658079, + "indices": [ + 0, + 9 + ], + "name": "nginx web server" + } + ] + }, + "created_at": "Fri Sep 26 19:03:30 +0000 2014", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 515572670390599681, + "lang": "en" + }, + "default_profile_image": false, + "id": 6531812, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 129, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "9379582", + "following": false, + "friends_count": 26, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ag-software.net", + "url": "http://t.co/n4352o76j4", + "expanded_url": "http://www.ag-software.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 59, + "location": "Heilbronn, Germany", + "screen_name": "gnauck", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Alexander Gnauck", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/n4352o76j4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/744806595/me_small_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Oct 11 14:52:41 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/744806595/me_small_normal.jpg", + "favourites_count": 2, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "gnauck", + "in_reply_to_user_id": 9379582, + "in_reply_to_status_id_str": "527483861476048896", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "527485430946885632", + "id": 527485430946885632, + "text": "@subsembly generell w\u00e4re is sch\u00f6n wenn man die icons selbst in der Kontenverwaltung ausw\u00e4hlen kann.", + "in_reply_to_user_id_str": "9379582", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "subsembly", + "id_str": "27438063", + "id": 27438063, + "indices": [ + 0, + 10 + ], + "name": "Subsembly GmbH" + } + ] + }, + "created_at": "Wed Oct 29 15:41:41 +0000 2014", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 527483861476048896, + "lang": "de" + }, + "default_profile_image": false, + "id": 9379582, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 21, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "774512", + "following": false, + "friends_count": 34, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "juberti.com", + "url": "https://t.co/h4RTb38Pcl", + "expanded_url": "http://www.juberti.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1445, + "location": "Seattle, WA", + "screen_name": "juberti", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 80, + "name": "Justin Uberti", + "profile_use_background_image": true, + "description": "Engineering Director, Google @webrtc Project. Occasional mathematician, physicist, and musician.", + "url": "https://t.co/h4RTb38Pcl", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/604061024329703424/SoOxTrGQ_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Thu Feb 15 22:29:39 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/604061024329703424/SoOxTrGQ_normal.jpg", + "favourites_count": 190, + "status": { + "retweet_count": 84, + "retweeted_status": { + "retweet_count": 84, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685229527228755968", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", + "type": "photo", + "indices": [ + 37, + 60 + ], + "media_url": "http://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", + "display_url": "pic.twitter.com/p55KX1Kp0t", + "id_str": "685229527128125441", + "expanded_url": "http://twitter.com/BenedictEvans/status/685229527228755968/photo/1", + "id": 685229527128125441, + "url": "https://t.co/p55KX1Kp0t" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 22:40:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685229527228755968, + "text": "Does exactly what it says on the tin https://t.co/p55KX1Kp0t", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 117, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685300971254071298", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + } + }, + "source_status_id_str": "685229527228755968", + "url": "https://t.co/p55KX1Kp0t", + "media_url": "http://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", + "source_user_id_str": "1236101", + "id_str": "685229527128125441", + "id": 685229527128125441, + "media_url_https": "https://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", + "type": "photo", + "indices": [ + 56, + 79 + ], + "source_status_id": 685229527228755968, + "source_user_id": 1236101, + "display_url": "pic.twitter.com/p55KX1Kp0t", + "expanded_url": "http://twitter.com/BenedictEvans/status/685229527228755968/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BenedictEvans", + "id_str": "1236101", + "id": 1236101, + "indices": [ + 3, + 17 + ], + "name": "Benedict Evans" + } + ] + }, + "created_at": "Fri Jan 08 03:24:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685300971254071298, + "text": "RT @BenedictEvans: Does exactly what it says on the tin https://t.co/p55KX1Kp0t", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 774512, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 1018, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/774512/1432854329", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "12431722", + "following": false, + "friends_count": 609, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedistillery.eu", + "url": "https://t.co/2M7b1wML4p", + "expanded_url": "https://thedistillery.eu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/53411785/400280475_bb227efcb5_o_2_.jpg", + "notifications": false, + "profile_sidebar_fill_color": "CF6020", + "profile_link_color": "C3A440", + "geo_enabled": true, + "followers_count": 796, + "location": "Bristol, United Kingdom", + "screen_name": "matthewwilkes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 83, + "name": "Matthew Wilkes", + "profile_use_background_image": true, + "description": "I do Python stuff. Freelance web developer Security consultant at @CodeDistillery All opinions are my own.", + "url": "https://t.co/2M7b1wML4p", + "profile_text_color": "05102E", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730843079/99310693aec6cee82196e5f51a798a7b_normal.png", + "profile_background_color": "9AE4E8", + "created_at": "Sat Jan 19 13:39:25 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BD4B0A", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730843079/99310693aec6cee82196e5f51a798a7b_normal.png", + "favourites_count": 88, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/7f15dd80ac78ef40.json", + "country": "United Kingdom", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -2.659936, + 51.399367 + ], + [ + -2.510844, + 51.399367 + ], + [ + -2.510844, + 51.516387 + ], + [ + -2.659936, + 51.516387 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "GB", + "contained_within": [], + "full_name": "Bristol, England", + "id": "7f15dd80ac78ef40", + "name": "Bristol" + }, + "in_reply_to_screen_name": "optilude", + "in_reply_to_user_id": 46920069, + "in_reply_to_status_id_str": "683044126988853248", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685148685332779008", + "id": 685148685332779008, + "text": "@optilude how about in python 3? Stdlib functions are a lot more opinionated about strings these days.", + "in_reply_to_user_id_str": "46920069", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "optilude", + "id_str": "46920069", + "id": 46920069, + "indices": [ + 0, + 9 + ], + "name": "Martin Aspeli" + } + ] + }, + "created_at": "Thu Jan 07 17:19:10 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683044126988853248, + "lang": "en" + }, + "default_profile_image": false, + "id": 12431722, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/53411785/400280475_bb227efcb5_o_2_.jpg", + "statuses_count": 6686, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12431722/1353734027", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "33726908", + "following": false, + "friends_count": 31, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "prosody.im", + "url": "http://t.co/iHKPuqb91T", + "expanded_url": "http://prosody.im/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 332, + "location": "", + "screen_name": "prosodyim", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Prosody IM Server", + "profile_use_background_image": true, + "description": "Prosody IM server for Jabber/XMPP", + "url": "http://t.co/iHKPuqb91T", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/149320248/prosody_favicon_128_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 21 00:06:06 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/149320248/prosody_favicon_128_normal.png", + "favourites_count": 54, + "status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685539536974278656", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.prosody.im/prosody-0-9-9-\u2026", + "url": "https://t.co/cw6o5I0WRc", + "expanded_url": "http://blog.prosody.im/prosody-0-9-9-security-release/", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:12:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685539536974278656, + "text": "Today brings an important security release (0.9.9), more info on our blog: https://t.co/cw6o5I0WRc - upgrade your servers!", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 33726908, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 93, + "is_translator": false + }, + { + "time_zone": "Casablanca", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "608341218", + "following": false, + "friends_count": 97, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "meetup.com/XMPP-UK-Meetup/", + "url": "http://t.co/SdzITvaX", + "expanded_url": "http://www.meetup.com/XMPP-UK-Meetup/", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 108, + "location": "", + "screen_name": "XMPPUK", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "XMPP UK", + "profile_use_background_image": true, + "description": "This group has been set up to bring together the XMPP community in the UK", + "url": "http://t.co/SdzITvaX", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2914081220/48e1a36edbddd2fea4218e99e8c38d60_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Thu Jun 14 16:00:03 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2914081220/48e1a36edbddd2fea4218e99e8c38d60_normal.png", + "favourites_count": 0, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "587687852361777153", + "id": 587687852361777153, + "text": "Late stragglers better hurry up, the pizza will be arriving any minute! #xmppuk", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 72, + 79 + ], + "text": "xmppuk" + } + ], + "user_mentions": [] + }, + "created_at": "Mon Apr 13 18:44:37 +0000 2015", + "source": "Hootsuite", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 608341218, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 153, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2361709040", + "following": false, + "friends_count": 26, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wiki.xmpp.org/web/Tech_pages\u2026", + "url": "http://t.co/kRQRCIITCz", + "expanded_url": "http://wiki.xmpp.org/web/Tech_pages/IoT_systems", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 140, + "location": "xmpp-iot.org", + "screen_name": "XMPPIoT", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "XMPP IoT", + "profile_use_background_image": true, + "description": "This is where things and people meet as friends using chat and XML as the interoperable language between us", + "url": "http://t.co/kRQRCIITCz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/569297043978346496/OTGB6-q__normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 25 22:01:14 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "sv", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/569297043978346496/OTGB6-q__normal.png", + "favourites_count": 12, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "iotwatch", + "in_reply_to_user_id": 156967608, + "in_reply_to_status_id_str": "633118767309058048", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "633157384668639232", + "id": 633157384668639232, + "text": "@iotwatch @TheConfMalmo will it by any chance be recorded? +Welcome to Sweden!", + "in_reply_to_user_id_str": "156967608", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "iotwatch", + "id_str": "156967608", + "id": 156967608, + "indices": [ + 0, + 9 + ], + "name": "Alexandra D-S" + }, + { + "screen_name": "TheConfMalmo", + "id_str": "1919285113", + "id": 1919285113, + "indices": [ + 10, + 23 + ], + "name": "The Conference" + } + ] + }, + "created_at": "Mon Aug 17 06:04:18 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 633118767309058048, + "lang": "en" + }, + "default_profile_image": false, + "id": 2361709040, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 55, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2361709040/1424566036", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "98503046", + "following": false, + "friends_count": 98, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fanout.io", + "url": "http://t.co/7l0JDOiIiq", + "expanded_url": "http://fanout.io/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 205, + "location": "Mountain View", + "screen_name": "jkarneges", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Justin Karneges", + "profile_use_background_image": true, + "description": "CEO who codes @Fanout. Open standards proponent. Consumer of olallieberries. Past: @Livefyre.", + "url": "http://t.co/7l0JDOiIiq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1832138421/justin_dramatic_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 22 00:10:24 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1832138421/justin_dramatic_normal.jpg", + "favourites_count": 242, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "nehanarkhede", + "in_reply_to_user_id": 76561387, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684990590082154496", + "id": 684990590082154496, + "text": "@nehanarkhede Today one of the @sv_realtime members asked about Confluent. Join us at the next meetup?", + "in_reply_to_user_id_str": "76561387", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nehanarkhede", + "id_str": "76561387", + "id": 76561387, + "indices": [ + 0, + 13 + ], + "name": "Neha Narkhede" + }, + { + "screen_name": "sv_realtime", + "id_str": "3301842547", + "id": 3301842547, + "indices": [ + 31, + 43 + ], + "name": "SV realtime" + } + ] + }, + "created_at": "Thu Jan 07 06:50:57 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 98503046, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 485, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "199312938", + "following": false, + "friends_count": 53, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "briancurtin.com", + "url": "http://t.co/jaSinBOMg1", + "expanded_url": "http://www.briancurtin.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/734931998/241c98d3e09c9bb1e44db1c20ea28c8f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "003279", + "geo_enabled": false, + "followers_count": 1248, + "location": "Chicago, IL, USA", + "screen_name": "brian_curtin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 105, + "name": "Brian Curtin", + "profile_use_background_image": true, + "description": "pre-school dropout, registered talent agent", + "url": "http://t.co/jaSinBOMg1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/592812626826133504/Q3TETjtv_normal.jpg", + "profile_background_color": "CC0033", + "created_at": "Wed Oct 06 15:10:55 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/592812626826133504/Q3TETjtv_normal.jpg", + "favourites_count": 5403, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685563998729682944", + "id": 685563998729682944, + "text": "type for an hour, select all, delete, type \u201cI am so much better than Ken Kratz in any conceivable way,\u201d hit submit. 2015 self-eval over.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:49:29 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 199312938, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/734931998/241c98d3e09c9bb1e44db1c20ea28c8f.jpeg", + "statuses_count": 11783, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/199312938/1398097311", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14590010", + "following": false, + "friends_count": 165, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ernest.ly/gpg.html", + "url": "https://t.co/XUcP99arT4", + "expanded_url": "https://ernest.ly/gpg.html", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 509, + "location": "cleveland, oh", + "screen_name": "EWDurbin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "\u1d31\u02b3\u1db0\u1d49\u02e2\u1d57 \u1d42\u22c5 \u1d30\u1d58\u02b3\u1d47\u1da6\u1db0 \u1d35\u1d35\u1d35", + "profile_use_background_image": true, + "description": "engineering whiz at the groundwork.", + "url": "https://t.co/XUcP99arT4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638167679082192896/cKedz7FX_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 29 20:10:53 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638167679082192896/cKedz7FX_normal.jpg", + "favourites_count": 10440, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/aa7defe13028d41f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -81.603358, + 41.4827416 + ], + [ + -81.529651, + 41.4827416 + ], + [ + -81.529651, + 41.5452739 + ], + [ + -81.603358, + 41.5452739 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Cleveland Heights, OH", + "id": "aa7defe13028d41f", + "name": "Cleveland Heights" + }, + "in_reply_to_screen_name": "guharakesh", + "in_reply_to_user_id": 17036002, + "in_reply_to_status_id_str": "685604720078139392", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685604768266358784", + "id": 685604768266358784, + "text": "@guharakesh you eat it", + "in_reply_to_user_id_str": "17036002", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "guharakesh", + "id_str": "17036002", + "id": 17036002, + "indices": [ + 0, + 11 + ], + "name": "Rakesh Guha" + } + ] + }, + "created_at": "Fri Jan 08 23:31:29 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685604720078139392, + "lang": "en" + }, + "default_profile_image": false, + "id": 14590010, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 15903, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14590010/1450662282", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "89051764", + "following": false, + "friends_count": 358, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "adamgibbins.com", + "url": "https://t.co/yMMqXBfQNe", + "expanded_url": "https://www.adamgibbins.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "A80311", + "geo_enabled": true, + "followers_count": 235, + "location": "London, England", + "screen_name": "adamgibbins", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Adam Gibbins", + "profile_use_background_image": true, + "description": "Linux, SysAdmin, Systems, Code, Automation, Beer, Music, Coffee.\nWhoop @ Freenode\n\nRT \u2260 endorsement", + "url": "https://t.co/yMMqXBfQNe", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/460418259263553536/lg_qJEtc_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Tue Nov 10 23:26:46 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/460418259263553536/lg_qJEtc_normal.jpeg", + "favourites_count": 0, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685442376530182144", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "skillsmatter.com/meetups/7576-d\u2026", + "url": "https://t.co/gZNYxM5Wwe", + "expanded_url": "https://skillsmatter.com/meetups/7576-descale-systems-meetup", + "indices": [ + 99, + 122 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "skillsmatter", + "id_str": "16345873", + "id": 16345873, + "indices": [ + 71, + 84 + ], + "name": "Skills Matter" + } + ] + }, + "created_at": "Fri Jan 08 12:46:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685442376530182144, + "text": "Our next event will be on Monday 18th January! You can register on the @skillsmatter website here: https://t.co/gZNYxM5Wwe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685525931587407873", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "skillsmatter.com/meetups/7576-d\u2026", + "url": "https://t.co/gZNYxM5Wwe", + "expanded_url": "https://skillsmatter.com/meetups/7576-descale-systems-meetup", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "descale_ldn", + "id_str": "3402670426", + "id": 3402670426, + "indices": [ + 3, + 15 + ], + "name": "Descale" + }, + { + "screen_name": "skillsmatter", + "id_str": "16345873", + "id": 16345873, + "indices": [ + 88, + 101 + ], + "name": "Skills Matter" + } + ] + }, + "created_at": "Fri Jan 08 18:18:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685525931587407873, + "text": "RT @descale_ldn: Our next event will be on Monday 18th January! You can register on the @skillsmatter website here: https://t.co/gZNYxM5Wwe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 89051764, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 875, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/89051764/1397910318", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15926485", + "following": false, + "friends_count": 2646, + "entities": { + "description": { + "urls": [ + { + "display_url": "chef.io", + "url": "http://t.co/lU81z8Xj9H", + "expanded_url": "http://chef.io", + "indices": [ + 35, + 57 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "nathenharvey.com", + "url": "http://t.co/8Xbz708j4F", + "expanded_url": "http://nathenharvey.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4488, + "location": "Annapolis, MD USA", + "screen_name": "nathenharvey", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 277, + "name": "nathenharvey", + "profile_use_background_image": true, + "description": "VP, Community Development at Chef (http://t.co/lU81z8Xj9H)", + "url": "http://t.co/8Xbz708j4F", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459018058426613760/vM4_VsIS_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Aug 21 02:11:54 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459018058426613760/vM4_VsIS_normal.png", + "favourites_count": 3599, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685496670730219520", + "geo": { + "coordinates": [ + 47.60204619, + -122.3360862 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "swarmapp.com/c/3EVFABynwPf", + "url": "https://t.co/Jb1kjEbMMW", + "expanded_url": "https://www.swarmapp.com/c/3EVFABynwPf", + "indices": [ + 46, + 69 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chef", + "id_str": "16333852", + "id": 16333852, + "indices": [ + 14, + 19 + ], + "name": "Chef" + }, + { + "screen_name": "chef", + "id_str": "16333852", + "id": 16333852, + "indices": [ + 24, + 29 + ], + "name": "Chef" + } + ] + }, + "created_at": "Fri Jan 08 16:21:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/300bcc6e23a88361.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.436232, + 47.4953154 + ], + [ + -122.2249728, + 47.4953154 + ], + [ + -122.2249728, + 47.734561 + ], + [ + -122.436232, + 47.734561 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Seattle, WA", + "id": "300bcc6e23a88361", + "name": "Seattle" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685496670730219520, + "text": "Good morning, @chef (at @Chef in Seattle, WA) https://t.co/Jb1kjEbMMW", + "coordinates": { + "coordinates": [ + -122.3360862, + 47.60204619 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Foursquare" + }, + "default_profile_image": false, + "id": 15926485, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 9823, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14065905", + "following": false, + "friends_count": 518, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "traceback.org", + "url": "http://t.co/iq5TfPAOJX", + "expanded_url": "http://traceback.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3983329/bg_twittergallery.jpg", + "notifications": false, + "profile_sidebar_fill_color": "232323", + "profile_link_color": "58A362", + "geo_enabled": true, + "followers_count": 756, + "location": "Cleveland, OH", + "screen_name": "dstanek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 65, + "name": "David Stanek", + "profile_use_background_image": true, + "description": "Software programmer; Racker; Husband & father; Beer drinker", + "url": "http://t.co/iq5TfPAOJX", + "profile_text_color": "70797D", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/58766568/headshot_normal.JPG", + "profile_background_color": "3C7682", + "created_at": "Sat Mar 01 18:58:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A5D0BF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/58766568/headshot_normal.JPG", + "favourites_count": 783, + "status": { + "retweet_count": 16, + "retweeted_status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685276382293786624", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "large": { + "w": 720, + "h": 1280, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 1067, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", + "type": "photo", + "indices": [ + 45, + 68 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", + "display_url": "pic.twitter.com/UXioTmxgh8", + "id_str": "685276202416865281", + "expanded_url": "http://twitter.com/ZAGGStudios/status/685276382293786624/video/1", + "id": 685276202416865281, + "url": "https://t.co/UXioTmxgh8" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 13, + 22 + ], + "text": "codemash" + }, + { + "indices": [ + 23, + 28 + ], + "text": "pong" + }, + { + "indices": [ + 34, + 44 + ], + "text": "laserpong" + } + ], + "user_mentions": [ + { + "screen_name": "GWR", + "id_str": "18073623", + "id": 18073623, + "indices": [ + 29, + 33 + ], + "name": "GuinnessWorldRecords" + } + ] + }, + "created_at": "Fri Jan 08 01:46:36 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685276382293786624, + "text": "Game point!! #codemash #pong @GWR #laserpong https://t.co/UXioTmxgh8", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 16, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685303279610408960", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "large": { + "w": 720, + "h": 1280, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 1067, + "resize": "fit" + } + }, + "source_status_id_str": "685276382293786624", + "url": "https://t.co/UXioTmxgh8", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", + "source_user_id_str": "1297375447", + "id_str": "685276202416865281", + "id": 685276202416865281, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", + "type": "photo", + "indices": [ + 62, + 85 + ], + "source_status_id": 685276382293786624, + "source_user_id": 1297375447, + "display_url": "pic.twitter.com/UXioTmxgh8", + "expanded_url": "http://twitter.com/ZAGGStudios/status/685276382293786624/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 30, + 39 + ], + "text": "codemash" + }, + { + "indices": [ + 40, + 45 + ], + "text": "pong" + }, + { + "indices": [ + 51, + 61 + ], + "text": "laserpong" + } + ], + "user_mentions": [ + { + "screen_name": "ZAGGStudios", + "id_str": "1297375447", + "id": 1297375447, + "indices": [ + 3, + 15 + ], + "name": "ZAGG Studios, Ltd." + }, + { + "screen_name": "GWR", + "id_str": "18073623", + "id": 18073623, + "indices": [ + 46, + 50 + ], + "name": "GuinnessWorldRecords" + } + ] + }, + "created_at": "Fri Jan 08 03:33:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685303279610408960, + "text": "RT @ZAGGStudios: Game point!! #codemash #pong @GWR #laserpong https://t.co/UXioTmxgh8", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 14065905, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3983329/bg_twittergallery.jpg", + "statuses_count": 4386, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "170605832", + "following": false, + "friends_count": 1872, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/emilyrose", + "url": "https://t.co/Ds54nDaamu", + "expanded_url": "https://github.com/emilyrose", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/126420117/cloud_bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E8F2FB", + "profile_link_color": "4684A8", + "geo_enabled": true, + "followers_count": 3036, + "location": "San Francisco, CA", + "screen_name": "nexxylove", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 203, + "name": "mx emily rose", + "profile_use_background_image": false, + "description": "hardware art, some kind of fabulous unicorn; and computing, [two-for] inspiring dark speaking. plural pronoun they; interactive electric ubiquitous hacking,", + "url": "https://t.co/Ds54nDaamu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/679825275509592064/SmpGRD_1_normal.png", + "profile_background_color": "1C0F1E", + "created_at": "Sun Jul 25 08:04:06 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A2C7E4", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/679825275509592064/SmpGRD_1_normal.png", + "favourites_count": 3606, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 15583257, + "possibly_sensitive": false, + "id_str": "685521273598820352", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "gayshamesf.org", + "url": "https://t.co/BQx23L6QOb", + "expanded_url": "http://gayshamesf.org", + "indices": [ + 14, + 37 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "cowperthwait", + "id_str": "15583257", + "id": 15583257, + "indices": [ + 0, + 13 + ], + "name": "Cowperthwait" + } + ] + }, + "created_at": "Fri Jan 08 17:59:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "15583257", + "place": null, + "in_reply_to_screen_name": "cowperthwait", + "in_reply_to_status_id_str": "685520897734623232", + "truncated": false, + "id": 685521273598820352, + "text": "@cowperthwait https://t.co/BQx23L6QOb", + "coordinates": null, + "in_reply_to_status_id": 685520897734623232, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 170605832, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/126420117/cloud_bg.jpg", + "statuses_count": 20258, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/170605832/1450918251", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14188391", + "following": false, + "friends_count": 693, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "benjaminwarfield.com", + "url": "https://t.co/YqNb1uZbHY", + "expanded_url": "http://benjaminwarfield.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865335069/ab622272f599abc2d1e2f068a47f5efa.png", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "4D8A98", + "geo_enabled": true, + "followers_count": 1515, + "location": "Lakewood, OH", + "screen_name": "benjaminws", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 117, + "name": "wrongo db", + "profile_use_background_image": false, + "description": "just trying to use a computer", + "url": "https://t.co/YqNb1uZbHY", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680913876934721538/msph0SPH_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Mar 21 00:21:25 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680913876934721538/msph0SPH_normal.jpg", + "favourites_count": 18241, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "benjaminws", + "in_reply_to_user_id": 14188391, + "in_reply_to_status_id_str": "685482873831337984", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685482917909245953", + "id": 685482917909245953, + "text": "@benjaminws *ying", + "in_reply_to_user_id_str": "14188391", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "benjaminws", + "id_str": "14188391", + "id": 14188391, + "indices": [ + 0, + 11 + ], + "name": "Nice segway, dude" + } + ] + }, + "created_at": "Fri Jan 08 15:27:17 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685482873831337984, + "lang": "en" + }, + "default_profile_image": false, + "id": 14188391, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865335069/ab622272f599abc2d1e2f068a47f5efa.png", + "statuses_count": 48496, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14188391/1452184250", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17177251", + "following": false, + "friends_count": 1939, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/pub/brian-j-br\u2026", + "url": "https://t.co/LqJaTeSeNf", + "expanded_url": "https://www.linkedin.com/pub/brian-j-brennan/20/28a/4a9", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/596808118752792579/I7vAKG7k.jpg", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 3808, + "location": "Brooklyn, NY", + "screen_name": "brianloveswords", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 245, + "name": "spacer.tiff", + "profile_use_background_image": true, + "description": "chief garbage monster @Bocoup; figurehead @brooklyn_js; probably not three cats in a trench coat. He/him", + "url": "https://t.co/LqJaTeSeNf", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678023379002253312/_hS0iDAv_normal.jpg", + "profile_background_color": "352726", + "created_at": "Wed Nov 05 02:16:27 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678023379002253312/_hS0iDAv_normal.jpg", + "favourites_count": 18685, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.026675, + 40.683935 + ], + [ + -73.910408, + 40.683935 + ], + [ + -73.910408, + 40.877483 + ], + [ + -74.026675, + 40.877483 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Manhattan, NY", + "id": "01a9a39529b27f36", + "name": "Manhattan" + }, + "in_reply_to_screen_name": "jennschiffer", + "in_reply_to_user_id": 12524622, + "in_reply_to_status_id_str": "685502987989561344", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685503107304914944", + "id": 685503107304914944, + "text": "@jennschiffer @kosamari I can't believe I missed out on this one, this is bullshit", + "in_reply_to_user_id_str": "12524622", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jennschiffer", + "id_str": "12524622", + "id": 12524622, + "indices": [ + 0, + 13 + ], + "name": "shingyVEVO" + }, + { + "screen_name": "kosamari", + "id_str": "8470842", + "id": 8470842, + "indices": [ + 14, + 23 + ], + "name": "Mariko Kosaka" + } + ] + }, + "created_at": "Fri Jan 08 16:47:31 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685502987989561344, + "lang": "en" + }, + "default_profile_image": false, + "id": 17177251, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/596808118752792579/I7vAKG7k.jpg", + "statuses_count": 19085, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17177251/1440564032", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "17527655", + "following": false, + "friends_count": 1174, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2706, + "location": "SF Bay Area", + "screen_name": "sigje", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 223, + "name": "Jennifer", + "profile_use_background_image": true, + "description": "Sparkly DevOps princess. #coffeeops #hugops practitioner, co-author Effective Devops, Agile Conf DevOps Track Chair 2016", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660204503832985600/2QtQ7d_7_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Nov 21 00:59:20 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660204503832985600/2QtQ7d_7_normal.png", + "favourites_count": 28341, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "sigje", + "in_reply_to_user_id": 17527655, + "in_reply_to_status_id_str": "685607990917922816", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685608198288506880", + "id": 685608198288506880, + "text": "@ashedryden @chef username at chef.io will reach me via email as well.", + "in_reply_to_user_id_str": "17527655", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ashedryden", + "id_str": "9510922", + "id": 9510922, + "indices": [ + 0, + 11 + ], + "name": "ashe" + }, + { + "screen_name": "chef", + "id_str": "16333852", + "id": 16333852, + "indices": [ + 12, + 17 + ], + "name": "Chef" + } + ] + }, + "created_at": "Fri Jan 08 23:45:07 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685607990917922816, + "lang": "en" + }, + "default_profile_image": false, + "id": 17527655, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 26988, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17527655/1426924077", + "is_translator": false + }, + { + "time_zone": "Rome", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "5813712", + "following": false, + "friends_count": 324, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "invece.org", + "url": "http://t.co/7GxMMGyAln", + "expanded_url": "http://invece.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 17375, + "location": "Sicily, Italy", + "screen_name": "antirez", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 917, + "name": "Salvatore Sanfilippo", + "profile_use_background_image": true, + "description": "I believe in the power of the imagination to remake the world -- J.G.Ballard", + "url": "http://t.co/7GxMMGyAln", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/595630881924059138/Ah0O5bEE_normal.png", + "profile_background_color": "C6E2EE", + "created_at": "Sun May 06 18:34:46 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/595630881924059138/Ah0O5bEE_normal.png", + "favourites_count": 2039, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685071497656987649", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "reddit.com/r/redis/commen\u2026", + "url": "https://t.co/1HlK5bafCB", + "expanded_url": "https://www.reddit.com/r/redis/comments/3zv85m/new_security_feature_redis_protected_mode/", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 12:12:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685071497656987649, + "text": "The security feature for Redis that should stop, starting with Redis 3.2, most \u201cinstances left open\u201d errors: https://t.co/1HlK5bafCB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "YoruFukurou" + }, + "default_profile_image": false, + "id": 5813712, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 29491, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5813712/1398845907", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "1465659204", + "following": false, + "friends_count": 954, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bridgetkromhout.com", + "url": "http://t.co/GWCuQWb6CV", + "expanded_url": "http://bridgetkromhout.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 5188, + "location": "Minneapolis, Minnesota", + "screen_name": "bridgetkromhout", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 311, + "name": "Bridget Kromhout", + "profile_use_background_image": true, + "description": "Principal Technologist for @cloudfoundry at @pivotal. Podcasts @arresteddevops. Organizes @devopsdays. Was ops at @DramaFever. Likes snow, bicycles, & @joelaha.", + "url": "http://t.co/GWCuQWb6CV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/469973128840368128/Eud_QsXs_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue May 28 21:02:05 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/469973128840368128/Eud_QsXs_normal.png", + "favourites_count": 8290, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": 13640312, + "possibly_sensitive": false, + "id_str": "685562659257868289", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/caseywest/stat\u2026", + "url": "https://t.co/ShuOreW5Il", + "expanded_url": "https://twitter.com/caseywest/status/685498244319842306", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [ + { + "indices": [ + 39, + 48 + ], + "text": "codemash" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:44:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "13640312", + "place": null, + "in_reply_to_screen_name": "caseywest", + "in_reply_to_status_id_str": "685498244319842306", + "truncated": false, + "id": 685562659257868289, + "text": "Let\u2019s get this party started. Salon E! #codemash https://t.co/ShuOreW5Il", + "coordinates": null, + "in_reply_to_status_id": 685498244319842306, + "favorite_count": 1, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685564695659466755", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/caseywest/stat\u2026", + "url": "https://t.co/ShuOreW5Il", + "expanded_url": "https://twitter.com/caseywest/status/685498244319842306", + "indices": [ + 64, + 87 + ] + } + ], + "hashtags": [ + { + "indices": [ + 54, + 63 + ], + "text": "codemash" + } + ], + "user_mentions": [ + { + "screen_name": "caseywest", + "id_str": "13640312", + "id": 13640312, + "indices": [ + 3, + 13 + ], + "name": "Casey West" + } + ] + }, + "created_at": "Fri Jan 08 20:52:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685564695659466755, + "text": "RT @caseywest: Let\u2019s get this party started. Salon E! #codemash https://t.co/ShuOreW5Il", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1465659204, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 9388, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1465659204/1402021840", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "36823", + "following": false, + "friends_count": 3648, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "anildash.com", + "url": "https://t.co/DGlCONxUGJ", + "expanded_url": "http://anildash.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378252063/dark-floral-pattern.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "800080", + "geo_enabled": true, + "followers_count": 573880, + "location": "NYC: 40.739069,-73.987082", + "screen_name": "anildash", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 7811, + "name": "Anil Dash", + "profile_use_background_image": true, + "description": "The only person who's ever been retweeted by Prince, Bill Gates, @katies, AvaDuvernay and the White House. Working to make tech & the tech industry more humane.", + "url": "https://t.co/DGlCONxUGJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678402398981775361/xeju7Lqg_normal.jpg", + "profile_background_color": "131516", + "created_at": "Sat Dec 02 09:15:15 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678402398981775361/xeju7Lqg_normal.jpg", + "favourites_count": 284118, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ev", + "in_reply_to_user_id": 20, + "in_reply_to_status_id_str": "685566764630028288", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685567450923036673", + "id": 685567450923036673, + "text": "@ev so what would you do to change it? It's good to have meat alternatives, but how would you change policy?", + "in_reply_to_user_id_str": "20", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ev", + "id_str": "20", + "id": 20, + "indices": [ + 0, + 3 + ], + "name": "Ev Williams" + } + ] + }, + "created_at": "Fri Jan 08 21:03:12 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685566764630028288, + "lang": "en" + }, + "default_profile_image": false, + "id": 36823, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378252063/dark-floral-pattern.jpg", + "statuses_count": 105807, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/36823/1444532685", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18713", + "following": false, + "friends_count": 405, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "al3x.net", + "url": "https://t.co/BwDqELWAp7", + "expanded_url": "https://al3x.net/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C3CBD0", + "profile_link_color": "336699", + "geo_enabled": true, + "followers_count": 41125, + "location": "Portland, OR", + "screen_name": "al3x", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 2596, + "name": "Alex Payne", + "profile_use_background_image": false, + "description": "'the human person, who is animal, fantasist, and computer combined' \u2013 Yi-Fu Tuan", + "url": "https://t.co/BwDqELWAp7", + "profile_text_color": "232323", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/513088789585993728/s1DnFxP6_normal.jpeg", + "profile_background_color": "E5E9EB", + "created_at": "Thu Nov 23 19:29:11 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "333333", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/513088789585993728/s1DnFxP6_normal.jpeg", + "favourites_count": 11217, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "tinysubversions", + "in_reply_to_user_id": 14475298, + "in_reply_to_status_id_str": "685585927486345216", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685591516803252224", + "id": 685591516803252224, + "text": "@tinysubversions it isn't good though so you're fine", + "in_reply_to_user_id_str": "14475298", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tinysubversions", + "id_str": "14475298", + "id": 14475298, + "indices": [ + 0, + 16 + ], + "name": "Darius Kazemi" + } + ] + }, + "created_at": "Fri Jan 08 22:38:49 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685585927486345216, + "lang": "en" + }, + "default_profile_image": false, + "id": 18713, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 30006, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18713/1451501144", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1186", + "following": false, + "friends_count": 3538, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chrismessina.me", + "url": "https://t.co/JIhVYXdY5s", + "expanded_url": "http://chrismessina.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/86425594/xd76c913111e2caa58f9257eadc3f4b0.png", + "notifications": false, + "profile_sidebar_fill_color": "F1F1F1", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 79615, + "location": "San Francisco", + "screen_name": "chrismessina", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 3961, + "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e", + "profile_use_background_image": false, + "description": "Developer Experience Lead at @Uber. Friend to startups, inventor of the hashtag, former Googler, and proud participant in the open source/open web communities.", + "url": "https://t.co/JIhVYXdY5s", + "profile_text_color": "444444", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624387887665016832/xS9_Z8YF_normal.jpg", + "profile_background_color": "CF290C", + "created_at": "Sun Jul 16 06:53:48 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "868686", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624387887665016832/xS9_Z8YF_normal.jpg", + "favourites_count": 7924, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 9729502, + "possibly_sensitive": false, + "id_str": "685606649793359872", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "j.mp/Stln", + "url": "https://t.co/eLPm24nG5F", + "expanded_url": "http://j.mp/Stln", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [ + { + "indices": [ + 70, + 85 + ], + "text": "StolenOnStolen" + }, + { + "indices": [ + 110, + 115 + ], + "text": "meta" + } + ], + "user_mentions": [ + { + "screen_name": "travisk", + "id_str": "9729502", + "id": 9729502, + "indices": [ + 0, + 8 + ], + "name": "travis kalanick" + }, + { + "screen_name": "alexpriest", + "id_str": "7604502", + "id": 7604502, + "indices": [ + 31, + 42 + ], + "name": "Alex Priest" + }, + { + "screen_name": "getstolen", + "id_str": "3255100813", + "id": 3255100813, + "indices": [ + 58, + 68 + ], + "name": "Stolen!" + } + ] + }, + "created_at": "Fri Jan 08 23:38:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "9729502", + "place": null, + "in_reply_to_screen_name": "travisk", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685606649793359872, + "text": "@travisk I just stole you from @alexpriest for 430,660 on @getstolen. #StolenOnStolen https://t.co/eLPm24nG5F #meta", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1186, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/86425594/xd76c913111e2caa58f9257eadc3f4b0.png", + "statuses_count": 28662, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1186/1447013497", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "260044118", + "following": false, + "friends_count": 367, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "beero.ps", + "url": "http://t.co/3SOVRwGCJL", + "expanded_url": "http://beero.ps", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459436144204079104/LPeVolRt.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "33003F", + "geo_enabled": false, + "followers_count": 5706, + "location": "Brooklyn", + "screen_name": "beerops", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 344, + "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 sdo\u0279\u0259\u0259q", + "profile_use_background_image": true, + "description": "Senior sparkly ops witch @Etsy, 10X engiqueer, full stack cat lady, homebrewer, climber, aspiring cellist, purple-haired face-metal cabalist, yarn sorceress.", + "url": "http://t.co/3SOVRwGCJL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/646467659505250305/MGdBkS8o_normal.png", + "profile_background_color": "131516", + "created_at": "Thu Mar 03 02:54:14 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/646467659505250305/MGdBkS8o_normal.png", + "favourites_count": 6646, + "status": { + "retweet_count": 6, + "retweeted_status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597446962024448", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "etsy.com/careers/job/ol\u2026", + "url": "https://t.co/pP1zKTvYt1", + "expanded_url": "https://www.etsy.com/careers/job/olOn2fwi", + "indices": [ + 77, + 100 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Etsy", + "id_str": "11522502", + "id": 11522502, + "indices": [ + 46, + 51 + ], + "name": "Etsy" + } + ] + }, + "created_at": "Fri Jan 08 23:02:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597446962024448, + "text": "We're hiring a second PM for the Data team at @Etsy. RT if you like data. ;) https://t.co/pP1zKTvYt1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685607423445479425", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "etsy.com/careers/job/ol\u2026", + "url": "https://t.co/pP1zKTvYt1", + "expanded_url": "https://www.etsy.com/careers/job/olOn2fwi", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "gianelli", + "id_str": "15745226", + "id": 15745226, + "indices": [ + 3, + 12 + ], + "name": "Gabrielle Gianelli" + }, + { + "screen_name": "Etsy", + "id_str": "11522502", + "id": 11522502, + "indices": [ + 60, + 65 + ], + "name": "Etsy" + } + ] + }, + "created_at": "Fri Jan 08 23:42:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685607423445479425, + "text": "RT @gianelli: We're hiring a second PM for the Data team at @Etsy. RT if you like data. ;) https://t.co/pP1zKTvYt1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Talon Plus" + }, + "default_profile_image": false, + "id": 260044118, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459436144204079104/LPeVolRt.jpeg", + "statuses_count": 15122, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/260044118/1442965095", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14584629", + "following": false, + "friends_count": 279, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "waynewitzel.com", + "url": "https://t.co/Mbxe3QilXq", + "expanded_url": "http://waynewitzel.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/405496748/xa3298200db2865c4d4fde02dc99255e.jpg", + "notifications": false, + "profile_sidebar_fill_color": "1D1D1D", + "profile_link_color": "892DD8", + "geo_enabled": true, + "followers_count": 303, + "location": "Durham, NC", + "screen_name": "wwitzel3", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Wayne Witzel III", + "profile_use_background_image": true, + "description": "Software Engineer at Ansible", + "url": "https://t.co/Mbxe3QilXq", + "profile_text_color": "D4D4D4", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/441524995898888192/MQ-MtfFj_normal.jpeg", + "profile_background_color": "8C8B91", + "created_at": "Tue Apr 29 13:40:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "68FA04", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/441524995898888192/MQ-MtfFj_normal.jpeg", + "favourites_count": 222, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "katco_", + "in_reply_to_user_id": 27390972, + "in_reply_to_status_id_str": "685121455311306752", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685124219701751809", + "id": 685124219701751809, + "text": "@katco_ it reads more emo than intended, I meant, people already just scan and reply and it's only 140. It will only get worse.", + "in_reply_to_user_id_str": "27390972", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "katco_", + "id_str": "27390972", + "id": 27390972, + "indices": [ + 0, + 7 + ], + "name": "Katherine Cox-Buday" + } + ] + }, + "created_at": "Thu Jan 07 15:41:57 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685121455311306752, + "lang": "en" + }, + "default_profile_image": false, + "id": 14584629, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/405496748/xa3298200db2865c4d4fde02dc99255e.jpg", + "statuses_count": 3199, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "63615426", + "following": false, + "friends_count": 1624, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jonathan.sh/dont-trust-you\u2026", + "url": "http://t.co/BL7L2iFse2", + "expanded_url": "http://jonathan.sh/dont-trust-your-cat", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000182485660/cTNCO6Dr.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "7E5C40", + "geo_enabled": true, + "followers_count": 2896, + "location": "kepler-452b", + "screen_name": "jonathanmarvens", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 157, + "name": "jojo", + "profile_use_background_image": true, + "description": "haitian. hacker. engineer @ @npmjs. feminist. i \u2764\ufe0f systems hacking, database theory, and distributed systems. apple juice is bae. be you. believe in yourself.", + "url": "http://t.co/BL7L2iFse2", + "profile_text_color": "EA8418", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666069166445694977/kQEiUvl2_normal.png", + "profile_background_color": "1677AB", + "created_at": "Fri Aug 07 02:31:51 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666069166445694977/kQEiUvl2_normal.png", + "favourites_count": 16025, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612789080178688", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/kosamari/statu\u2026", + "url": "https://t.co/9WdptnI9Q1", + "expanded_url": "https://twitter.com/kosamari/status/685527140801101824", + "indices": [ + 107, + 130 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:03:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612789080178688, + "text": "LOL. I love when programmers straight up lie like this just to make themselves feel better. Such bullshit. https://t.co/9WdptnI9Q1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 63615426, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000182485660/cTNCO6Dr.jpeg", + "statuses_count": 14245, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/63615426/1451830598", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "784984", + "following": false, + "friends_count": 1615, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "info.sean808080.com", + "url": "http://t.co/LqvKkV53nu", + "expanded_url": "http://info.sean808080.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2591707/headstockstar25-full.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 1785, + "location": "Schooleys Mountain, New Jersey", + "screen_name": "sean808080", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 121, + "name": "sean808080", + "profile_use_background_image": true, + "description": "Dad (with @kcmphoto ) to Neo iOS App Developer (MBA & PMP), Child Of Deaf Adults, Amateur (Ham) Radio Op: KC2NEO Work Twitter: @adaptIOTech", + "url": "http://t.co/LqvKkV53nu", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641238036529967104/7mk0oLjI_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Feb 21 00:22:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641238036529967104/7mk0oLjI_normal.jpg", + "favourites_count": 812, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685482512030777344", + "id": 685482512030777344, + "text": "Take Action:Urge Congress to Support the Amateur Radio Parity Act #hamradio", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 67, + 76 + ], + "text": "hamradio" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:25:41 +0000 2016", + "source": "Mobile Web", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 784984, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2591707/headstockstar25-full.jpg", + "statuses_count": 31641, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/784984/1403000347", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "246", + "following": false, + "friends_count": 1516, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "poetica.com", + "url": "https://t.co/h9i4CuXdVd", + "expanded_url": "https://poetica.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/232/bg2.png", + "notifications": false, + "profile_sidebar_fill_color": "91B7FF", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 14448, + "location": "London, UK", + "screen_name": "blaine", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 574, + "name": "Blaine Cook", + "profile_use_background_image": true, + "description": "Sociotechnologist. Social solutions for technological problems. CTO / Co-founder at @Poetica. Founding Engineer at @Twitter.", + "url": "https://t.co/h9i4CuXdVd", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/14022002/171593560_00e00bc7c9_normal.jpg", + "profile_background_color": "E1EFFF", + "created_at": "Wed May 03 18:52:57 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "4485BC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/14022002/171593560_00e00bc7c9_normal.jpg", + "favourites_count": 6282, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "rwchambliss", + "in_reply_to_user_id": 207818606, + "in_reply_to_status_id_str": "685488126316249088", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685490751707443200", + "id": 685490751707443200, + "text": "@rwchambliss @lifewinning \"that's no coconut\"", + "in_reply_to_user_id_str": "207818606", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rwchambliss", + "id_str": "207818606", + "id": 207818606, + "indices": [ + 0, + 12 + ], + "name": "Wayne Chambliss" + }, + { + "screen_name": "lifewinning", + "id_str": "348082699", + "id": 348082699, + "indices": [ + 13, + 25 + ], + "name": "Ingrid Burrington" + } + ] + }, + "created_at": "Fri Jan 08 15:58:25 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685488126316249088, + "lang": "en" + }, + "default_profile_image": false, + "id": 246, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/232/bg2.png", + "statuses_count": 13219, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/246/1415700195", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1704421", + "following": false, + "friends_count": 310, + "entities": { + "description": { + "urls": [ + { + "display_url": "github.com/telehash", + "url": "http://t.co/WG9TNV59NM", + "expanded_url": "http://github.com/telehash", + "indices": [ + 19, + 41 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "jeremie.com/-", + "url": "http://t.co/EAUy42gm1g", + "expanded_url": "http://jeremie.com/-", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572330404/lks4grrmlrjifjbgl64h.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 2762, + "location": "Denver, CO", + "screen_name": "jeremie", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 199, + "name": "Jeremie Miller", + "profile_use_background_image": false, + "description": "Currently building http://t.co/WG9TNV59NM. Helped create Jabber/XMPP, open communication platforms FTW!", + "url": "http://t.co/EAUy42gm1g", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/565991047/jer_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 21 02:44:51 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/565991047/jer_normal.jpg", + "favourites_count": 319, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 10402702, + "possibly_sensitive": false, + "id_str": "678235898148839424", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/telehash/teleh\u2026", + "url": "https://t.co/ij70iPpd62", + "expanded_url": "http://github.com/telehash/telehash.org/", + "indices": [ + 120, + 143 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "elimisteve", + "id_str": "10402702", + "id": 10402702, + "indices": [ + 0, + 11 + ], + "name": "Steven Phillips" + }, + { + "screen_name": "telehash", + "id_str": "101790678", + "id": 101790678, + "indices": [ + 12, + 21 + ], + "name": "telehash" + } + ] + }, + "created_at": "Sat Dec 19 15:30:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "10402702", + "place": { + "url": "https://api.twitter.com/1.1/geo/id/58fe996bbe3a4048.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -104.96747, + 39.783752 + ], + [ + -104.771597, + 39.783752 + ], + [ + -104.771597, + 39.922981 + ], + [ + -104.96747, + 39.922981 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Commerce City, CO", + "id": "58fe996bbe3a4048", + "name": "Commerce City" + }, + "in_reply_to_screen_name": "elimisteve", + "in_reply_to_status_id_str": "678216259591208964", + "truncated": false, + "id": 678235898148839424, + "text": "@elimisteve @telehash setting up the channel does, I'd recommend using github issues for q&a if you're up for that? https://t.co/ij70iPpd62", + "coordinates": null, + "in_reply_to_status_id": 678216259591208964, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1704421, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572330404/lks4grrmlrjifjbgl64h.jpeg", + "statuses_count": 1953, + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1384891", + "following": false, + "friends_count": 664, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "metajack.im", + "url": "http://t.co/367pPJxfkU", + "expanded_url": "http://metajack.im", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "CC3366", + "geo_enabled": false, + "followers_count": 2145, + "location": "Albuquerque, NM", + "screen_name": "metajack", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 178, + "name": "Jack Moffitt", + "profile_use_background_image": true, + "description": "Senior Research Engineer at Mozilla. I work on Servo, Daala, and Rust.", + "url": "http://t.co/367pPJxfkU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/29013962/Photo_7_normal.jpg", + "profile_background_color": "DBE9ED", + "created_at": "Sun Mar 18 00:14:42 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBE9ED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/29013962/Photo_7_normal.jpg", + "favourites_count": 345, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "seanlinsley", + "in_reply_to_user_id": 1169544588, + "in_reply_to_status_id_str": "629781107802701825", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "665277971914076160", + "id": 665277971914076160, + "text": "@seanlinsley @outreachy @christi3k We are! @lastontheboat is reviewing applications and I believe we will one starting in December", + "in_reply_to_user_id_str": "1169544588", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "seanlinsley", + "id_str": "1169544588", + "id": 1169544588, + "indices": [ + 0, + 12 + ], + "name": "Sean \u270f\ufe0f" + }, + { + "screen_name": "outreachy", + "id_str": "2800780073", + "id": 2800780073, + "indices": [ + 13, + 23 + ], + "name": "FOSS Outreach" + }, + { + "screen_name": "christi3k", + "id_str": "14111858", + "id": 14111858, + "indices": [ + 24, + 34 + ], + "name": "Christie Koehler" + }, + { + "screen_name": "lastontheboat", + "id_str": "47735734", + "id": 47735734, + "indices": [ + 43, + 57 + ], + "name": "Josh Matthews" + } + ] + }, + "created_at": "Fri Nov 13 21:20:03 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 629781107802701825, + "lang": "en" + }, + "default_profile_image": false, + "id": 1384891, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "statuses_count": 2516, + "is_translator": false + }, + { + "time_zone": "Brussels", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "803083", + "following": false, + "friends_count": 130, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "el-tramo.be", + "url": "https://t.co/rPMuAs3JDi", + "expanded_url": "https://el-tramo.be", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 332, + "location": "Belgium", + "screen_name": "remko", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 34, + "name": "Remko Tron\u00e7on", + "profile_use_background_image": true, + "description": "Software \u00b7 Music \u00b7 BookWidgets", + "url": "https://t.co/rPMuAs3JDi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1577244530/remko_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Thu Mar 01 08:33:39 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1577244530/remko_normal.jpeg", + "favourites_count": 511, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "remko", + "in_reply_to_user_id": 803083, + "in_reply_to_status_id_str": "684842439480311810", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684843286993985536", + "id": 684843286993985536, + "text": "@steven_odb Zijn we hopelijk snel van die fb-me en tweetlonger links af. Slechte (lange) content wordt sowieso afgestraft zou ik denken", + "in_reply_to_user_id_str": "803083", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "steven_odb", + "id_str": "227627337", + "id": 227627337, + "indices": [ + 0, + 11 + ], + "name": "Steven Op de beeck" + } + ] + }, + "created_at": "Wed Jan 06 21:05:38 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684842439480311810, + "lang": "nl" + }, + "default_profile_image": false, + "id": 803083, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 1995, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/803083/1347996309", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "101143", + "following": false, + "friends_count": 153, + "entities": { + "description": { + "urls": [ + { + "display_url": "monarchyllc.com", + "url": "http://t.co/x480TwaG8Q", + "expanded_url": "http://monarchyllc.com", + "indices": [ + 43, + 65 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "alexking.org", + "url": "http://t.co/4ugwz2gZBx", + "expanded_url": "http://alexking.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "EAEAFC", + "profile_link_color": "556699", + "geo_enabled": false, + "followers_count": 9073, + "location": "Denver, CO", + "screen_name": "alexkingorg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 721, + "name": "Alex King", + "profile_use_background_image": false, + "description": "Denver independent web developer/designer (http://t.co/x480TwaG8Q), original contributor to @wordpress, creator of the Share Icon.", + "url": "http://t.co/4ugwz2gZBx", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/457969928658624512/ILGIK1Un_normal.jpeg", + "profile_background_color": "8899CC", + "created_at": "Thu Dec 21 08:19:38 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/457969928658624512/ILGIK1Un_normal.jpeg", + "favourites_count": 2872, + "status": { + "retweet_count": 147, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "636283117070749697", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "alexking.org/?p=22017", + "url": "http://t.co/jA7t269OvT", + "expanded_url": "http://alexking.org/?p=22017", + "indices": [ + 59, + 81 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Aug 25 21:04:51 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 636283117070749697, + "text": "Dear WordPress community folks, I have a favor to ask you. http://t.co/jA7t269OvT", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 69, + "contributors": null, + "source": "Social Proxy by Mailchimp" + }, + "default_profile_image": false, + "id": 101143, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5595, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/101143/1398017193", + "is_translator": false + }, + { + "time_zone": "Brussels", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "9676412", + "following": false, + "friends_count": 1665, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eschnou.com", + "url": "https://t.co/OQ62SUYsDf", + "expanded_url": "https://eschnou.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "006399", + "geo_enabled": true, + "followers_count": 1985, + "location": "Belgium", + "screen_name": "eschnou", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 164, + "name": "Laurent Eschenauer", + "profile_use_background_image": false, + "description": "Entrepreneur, tech geek & rock climber. Founder and CEO of @gofleye. Inventing the future of consumer drones. Falling in love with hardware startups.", + "url": "https://t.co/OQ62SUYsDf", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/433686519694360576/sH22Mvnq_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Thu Oct 25 05:49:08 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/433686519694360576/sH22Mvnq_normal.jpeg", + "favourites_count": 476, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "OliverHeldens", + "in_reply_to_user_id": 256569627, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "683020255581593600", + "id": 683020255581593600, + "text": "@OliverHeldens The Christmas disco mix is awesome! I'll be at Omnia tomorrow and hope you will squeeze a few of these jewels in the mix :)", + "in_reply_to_user_id_str": "256569627", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "OliverHeldens", + "id_str": "256569627", + "id": 256569627, + "indices": [ + 0, + 14 + ], + "name": "Oliver Heldens" + } + ] + }, + "created_at": "Fri Jan 01 20:21:33 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 9676412, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5843, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9676412/1398885593", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "6592342", + "following": false, + "friends_count": 36, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "matthewwild.co.uk", + "url": "http://t.co/hLZKuW1Cda", + "expanded_url": "http://matthewwild.co.uk/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 126, + "location": "UK", + "screen_name": "MattJ", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Matthew Wild", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/hLZKuW1Cda", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2332299377/owtmwxsi0xfbl7kva0fw_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Jun 05 12:12:14 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2332299377/owtmwxsi0xfbl7kva0fw_normal.jpeg", + "favourites_count": 14, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "674354353139032069", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pledgemusic.com/projects/thefa\u2026", + "url": "https://t.co/hSsZm5pF0p", + "expanded_url": "http://www.pledgemusic.com/projects/thefairrain?utm_campaign=project11425", + "indices": [ + 48, + 71 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PledgeMusic", + "id_str": "34278049", + "id": 34278049, + "indices": [ + 76, + 88 + ], + "name": "PledgeMusic" + } + ] + }, + "created_at": "Tue Dec 08 22:26:21 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 674354353139032069, + "text": "The Fair Rain: Behind The Glass - Album Release https://t.co/hSsZm5pF0p via @pledgemusic", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 6592342, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 350, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6592342/1411719451", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "1711171", + "following": false, + "friends_count": 1484, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "peterkeane.com", + "url": "http://t.co/4gOwSPULxD", + "expanded_url": "http://peterkeane.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 852, + "location": "N 30\u00b018' 0'' / W 97\u00b042' 0''", + "screen_name": "pkeane", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 51, + "name": "Peter Keane", + "profile_use_background_image": true, + "description": "Software Engineer at Etsy", + "url": "http://t.co/4gOwSPULxD", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/634320167/Photo_35_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Mar 21 04:17:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/634320167/Photo_35_normal.jpg", + "favourites_count": 1323, + "status": { + "retweet_count": 9, + "retweeted_status": { + "retweet_count": 9, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "675072183119556608", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 465, + "h": 119, + "resize": "fit" + }, + "medium": { + "w": 465, + "h": 119, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 119, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 87, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", + "type": "photo", + "indices": [ + 39, + 62 + ], + "media_url": "http://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", + "display_url": "pic.twitter.com/PJyoJQh1UU", + "id_str": "675072182612029440", + "expanded_url": "http://twitter.com/skrug/status/675072183119556608/photo/1", + "id": 675072182612029440, + "url": "https://t.co/PJyoJQh1UU" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 10 21:58:45 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675072183119556608, + "text": "But it does make you...happier, right? https://t.co/PJyoJQh1UU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "675770880652353536", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 465, + "h": 119, + "resize": "fit" + }, + "medium": { + "w": 465, + "h": 119, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 119, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 87, + "resize": "fit" + } + }, + "source_status_id_str": "675072183119556608", + "url": "https://t.co/PJyoJQh1UU", + "media_url": "http://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", + "source_user_id_str": "18544024", + "id_str": "675072182612029440", + "id": 675072182612029440, + "media_url_https": "https://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", + "type": "photo", + "indices": [ + 50, + 73 + ], + "source_status_id": 675072183119556608, + "source_user_id": 18544024, + "display_url": "pic.twitter.com/PJyoJQh1UU", + "expanded_url": "http://twitter.com/skrug/status/675072183119556608/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "skrug", + "id_str": "18544024", + "id": 18544024, + "indices": [ + 3, + 9 + ], + "name": "Steve Krug" + } + ] + }, + "created_at": "Sat Dec 12 20:15:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675770880652353536, + "text": "RT @skrug: But it does make you...happier, right? https://t.co/PJyoJQh1UU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1711171, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4827, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "26306597", + "following": false, + "friends_count": 79, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 353, + "location": "", + "screen_name": "rlbarnes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Richard Barnes", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3086983852/4b1788dbacf96c683b042f04515a239f_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 24 19:44:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3086983852/4b1788dbacf96c683b042f04515a239f_normal.jpeg", + "favourites_count": 102, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "lorenzoFB", + "in_reply_to_user_id": 55643029, + "in_reply_to_status_id_str": "685511371643998208", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685542062075199489", + "id": 685542062075199489, + "text": "@lorenzoFB @HTTPSEverywhere @motherboard @bcrypt But why are you holding it back from everyone else?", + "in_reply_to_user_id_str": "55643029", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lorenzoFB", + "id_str": "55643029", + "id": 55643029, + "indices": [ + 0, + 10 + ], + "name": "Lorenzo Franceschi-B" + }, + { + "screen_name": "HTTPSEverywhere", + "id_str": "2243440136", + "id": 2243440136, + "indices": [ + 11, + 27 + ], + "name": "HTTPS Everywhere" + }, + { + "screen_name": "motherboard", + "id_str": "56510427", + "id": 56510427, + "indices": [ + 28, + 40 + ], + "name": "Motherboard" + }, + { + "screen_name": "bcrypt", + "id_str": "968881477", + "id": 968881477, + "indices": [ + 41, + 48 + ], + "name": "yan" + } + ] + }, + "created_at": "Fri Jan 08 19:22:19 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685511371643998208, + "lang": "en" + }, + "default_profile_image": false, + "id": 26306597, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 372, + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "40691407", + "following": false, + "friends_count": 148, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jitsi.org", + "url": "https://t.co/pf8hKet9PU", + "expanded_url": "https://jitsi.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 351, + "location": "France", + "screen_name": "emilivov", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Emil Ivov", + "profile_use_background_image": true, + "description": "Jitsi Project Lead", + "url": "https://t.co/pf8hKet9PU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/456109009158692865/QEvN0Vnz_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun May 17 16:53:12 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/456109009158692865/QEvN0Vnz_normal.png", + "favourites_count": 55, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "662417254835875840", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", + "display_url": "pic.twitter.com/l9giFod0rz", + "id_str": "662417252508024833", + "expanded_url": "http://twitter.com/sreuter/status/662417254835875840/photo/1", + "id": 662417252508024833, + "url": "https://t.co/l9giFod0rz" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Nov 05 23:52:35 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 662417254835875840, + "text": "WOW - Mike just announced enso.me to the world, a huge team effort I'm super excited to be a part of. Check it out! https://t.co/l9giFod0rz", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "662654329053163520", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "662417254835875840", + "url": "https://t.co/l9giFod0rz", + "media_url": "http://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", + "source_user_id_str": "11101892", + "id_str": "662417252508024833", + "id": 662417252508024833, + "media_url_https": "https://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 662417254835875840, + "source_user_id": 11101892, + "display_url": "pic.twitter.com/l9giFod0rz", + "expanded_url": "http://twitter.com/sreuter/status/662417254835875840/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sreuter", + "id_str": "11101892", + "id": 11101892, + "indices": [ + 3, + 11 + ], + "name": "Sascha Reuter" + } + ] + }, + "created_at": "Fri Nov 06 15:34:38 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 662654329053163520, + "text": "RT @sreuter: WOW - Mike just announced enso.me to the world, a huge team effort I'm super excited to be a part of. Check it out! https://t.\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 40691407, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 111, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15094432", + "following": false, + "friends_count": 672, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1798, + "location": "Seattle, WA", + "screen_name": "hillbrad", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 110, + "name": "hillbrad", + "profile_use_background_image": true, + "description": "Security Engineer @Facebook, WebAppSec WG Chair @w3c, (former) contributor @FIDOAlliance. This personal account does not speak on behalf of my affiliations.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/517056894750306305/Mzx4Y1aH_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 12 07:24:54 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/517056894750306305/Mzx4Y1aH_normal.jpeg", + "favourites_count": 1549, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "pkedrosky", + "in_reply_to_user_id": 1717291, + "in_reply_to_status_id_str": "685199689008967680", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685201241916346368", + "id": 685201241916346368, + "text": "@pkedrosky SUVs", + "in_reply_to_user_id_str": "1717291", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "pkedrosky", + "id_str": "1717291", + "id": 1717291, + "indices": [ + 0, + 10 + ], + "name": "Paul Kedrosky" + } + ] + }, + "created_at": "Thu Jan 07 20:48:01 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685199689008967680, + "lang": "en" + }, + "default_profile_image": false, + "id": 15094432, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4091, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15094432/1365202222", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "301147914", + "following": false, + "friends_count": 35775, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "yesworld.com", + "url": "http://t.co/0TJR0Qpqnk", + "expanded_url": "http://yesworld.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572531738488737792/EYRLja2w.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "647839", + "geo_enabled": true, + "followers_count": 68659, + "location": "London, GB", + "screen_name": "yesofficial", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1039, + "name": "yesofficial", + "profile_use_background_image": true, + "description": "English Progressive Rock Band 45 yrs, 20 studio albums. Currently Jon Davison vocal, Billy Sherwood bass, Steve Howe guitar, Alan White drums, Geoff Downes keys", + "url": "http://t.co/0TJR0Qpqnk", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/672487004744130573/bH2k3ZXR_normal.jpg", + "profile_background_color": "FFDE01", + "created_at": "Wed May 18 23:47:04 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/672487004744130573/bH2k3ZXR_normal.jpg", + "favourites_count": 6, + "status": { + "retweet_count": 21, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684766382957830144", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "soundcloud.com/jon-kirkman/be\u2026", + "url": "https://t.co/oTJghrDjGZ", + "expanded_url": "https://soundcloud.com/jon-kirkman/benoit-illness", + "indices": [ + 62, + 85 + ] + } + ], + "hashtags": [ + { + "indices": [ + 86, + 98 + ], + "text": "YESdialogue" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 16:00:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684766382957830144, + "text": "Benoit David Discusses The Illness That Forced Him Out Of Yes\nhttps://t.co/oTJghrDjGZ\n#YESdialogue", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 19, + "contributors": null, + "source": "Sprout Social" + }, + "default_profile_image": false, + "id": 301147914, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572531738488737792/EYRLja2w.jpeg", + "statuses_count": 3095, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/301147914/1449168357", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "133870619", + "following": false, + "friends_count": 208, + "entities": { + "description": { + "urls": [ + { + "display_url": "xmpp.net", + "url": "http://t.co/Hbv99jdQe1", + "expanded_url": "http://xmpp.net", + "indices": [ + 38, + 60 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "blog.thijsalkema.de", + "url": "https://t.co/wXva8FRFq7", + "expanded_url": "https://blog.thijsalkema.de", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 281, + "location": "The Netherlands", + "screen_name": "xnyhps", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Thijs Alkemade", + "profile_use_background_image": true, + "description": "Lead developer of Adium. | Creator of http://t.co/Hbv99jdQe1", + "url": "https://t.co/wXva8FRFq7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/900392103/avatar_nieuw_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Apr 16 21:26:53 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/900392103/avatar_nieuw_normal.png", + "favourites_count": 9, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "patio11", + "in_reply_to_user_id": 20844341, + "in_reply_to_status_id_str": "677106028379398144", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677117426392301568", + "id": 677117426392301568, + "text": "@patio11 Was really close with 4, needed another 15 minutes at most. Then... error 502.", + "in_reply_to_user_id_str": "20844341", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "patio11", + "id_str": "20844341", + "id": 20844341, + "indices": [ + 0, + 8 + ], + "name": "Patrick McKenzie" + } + ] + }, + "created_at": "Wed Dec 16 13:25:49 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 677106028379398144, + "lang": "en" + }, + "default_profile_image": false, + "id": 133870619, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 175, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "15320027", + "following": false, + "friends_count": 375, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bettercallsaghul.com", + "url": "http://t.co/PXagcRYI5h", + "expanded_url": "http://bettercallsaghul.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2327, + "location": "Amsterdam, NL", + "screen_name": "saghul", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 114, + "name": "Sa\u00fal Ibarra Corretg\u00e9", + "profile_use_background_image": true, + "description": "SIP, XMPP, VoIP, presence and IM lover, geek, Pythonista, geek again! libuv Core Janitor.", + "url": "http://t.co/PXagcRYI5h", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/56248414/saghul-avatar_normal.png", + "profile_background_color": "022330", + "created_at": "Fri Jul 04 18:48:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/56248414/saghul-avatar_normal.png", + "favourites_count": 696, + "status": { + "retweet_count": 16, + "retweeted_status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685441345893208065", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "matt.sh/howto-c", + "url": "https://t.co/Rz8KT0lAHS", + "expanded_url": "https://matt.sh/howto-c", + "indices": [ + 20, + 43 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 12:42:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685441345893208065, + "text": "How to C in 2016... https://t.co/Rz8KT0lAHS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 18, + "contributors": null, + "source": "Hacker News Bot" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685449912478253056", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "matt.sh/howto-c", + "url": "https://t.co/Rz8KT0lAHS", + "expanded_url": "https://matt.sh/howto-c", + "indices": [ + 39, + 62 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "hackernewsbot", + "id_str": "19575586", + "id": 19575586, + "indices": [ + 3, + 17 + ], + "name": "Hacker News Bot" + } + ] + }, + "created_at": "Fri Jan 08 13:16:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685449912478253056, + "text": "RT @hackernewsbot: How to C in 2016... https://t.co/Rz8KT0lAHS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 15320027, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 18369, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7365272", + "following": false, + "friends_count": 218, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "synapse.com", + "url": "http://t.co/XBlAjHevlw", + "expanded_url": "http://www.synapse.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2378908/IMG_2793.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "17B404", + "geo_enabled": true, + "followers_count": 469, + "location": "Seattle, WA", + "screen_name": "packet", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "Rachel Blackman", + "profile_use_background_image": true, + "description": "Engineer, Synapster, former Trillian developer, writer, and photographer in Seattle. My rather more active gaming account is at @Packetdancer", + "url": "http://t.co/XBlAjHevlw", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/422962683/ffsparks-new_normal.png", + "profile_background_color": "7D0B0B", + "created_at": "Tue Jul 10 06:42:44 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/422962683/ffsparks-new_normal.png", + "favourites_count": 26, + "status": { + "retweet_count": 2, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "673983965150056448", + "id": 673983965150056448, + "text": "A dystopian novel: #Jira becomes self-aware and decides the most efficient workflow is one where humans can't use Jira b/c they're extinct.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 19, + 24 + ], + "text": "Jira" + } + ], + "user_mentions": [] + }, + "created_at": "Mon Dec 07 21:54:33 +0000 2015", + "source": "TweetDeck", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "674023141824311296", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 37, + 42 + ], + "text": "Jira" + } + ], + "user_mentions": [ + { + "screen_name": "brandonlrice", + "id_str": "195917376", + "id": 195917376, + "indices": [ + 3, + 16 + ], + "name": "Brandon Rice" + } + ] + }, + "created_at": "Tue Dec 08 00:30:14 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 674023141824311296, + "text": "RT @brandonlrice: A dystopian novel: #Jira becomes self-aware and decides the most efficient workflow is one where humans can't use Jira b/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 7365272, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2378908/IMG_2793.jpg", + "statuses_count": 4588, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14833631", + "following": false, + "friends_count": 91, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "babelmonkeys.de", + "url": "http://t.co/RdH1yHuIzA", + "expanded_url": "http://babelmonkeys.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 89, + "location": "H\u00fcrth", + "screen_name": "florob", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Florian Zeitz", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/RdH1yHuIzA", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/639151006002118656/x-PrqJSV_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon May 19 15:13:04 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/639151006002118656/x-PrqJSV_normal.jpg", + "favourites_count": 51, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MieMaMeise", + "in_reply_to_user_id": 41142991, + "in_reply_to_status_id_str": "685598035083149312", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685604050684002304", + "id": 685604050684002304, + "text": "@MieMaMeise Way out in the water, see it swimming.", + "in_reply_to_user_id_str": "41142991", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MieMaMeise", + "id_str": "41142991", + "id": 41142991, + "indices": [ + 0, + 11 + ], + "name": "meise" + } + ] + }, + "created_at": "Fri Jan 08 23:28:38 +0000 2016", + "source": "Tweetian for Sailfish OS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598035083149312, + "lang": "en" + }, + "default_profile_image": false, + "id": 14833631, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 683, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14833631/1441058352", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1877954299", + "following": false, + "friends_count": 191, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 243, + "location": "", + "screen_name": "KathleeMoriarty", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Kathleen Moriarty", + "profile_use_background_image": true, + "description": "Currently serving as Security Area Director for the IETF, works for EMC, swimmer & occassional triathlete. Views presented are mine and not that of my employer.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000472218251/d8cb0b440b5ecdcff7c2d7e263b5f6e9_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 18 03:46:19 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000472218251/d8cb0b440b5ecdcff7c2d7e263b5f6e9_normal.jpeg", + "favourites_count": 160, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "RobinHoodCoop", + "in_reply_to_user_id": 1101058794, + "in_reply_to_status_id_str": "674758150830952448", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "674794795546603520", + "id": 674794795546603520, + "text": "@robinhoodcoop was in a pool with about 20 people swimming laps. I think you have the wrong Kathleen.", + "in_reply_to_user_id_str": "1101058794", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RobinHoodCoop", + "id_str": "1101058794", + "id": 1101058794, + "indices": [ + 0, + 14 + ], + "name": "Robin Hood Co-op" + } + ] + }, + "created_at": "Thu Dec 10 03:36:30 +0000 2015", + "source": "Mobile Web (M2)", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 674758150830952448, + "lang": "en" + }, + "default_profile_image": false, + "id": 1877954299, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 314, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "182439750", + "following": false, + "friends_count": 233, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "countingfromzero.wordpress.com", + "url": "http://t.co/YkuTNBXKW0", + "expanded_url": "http://countingfromzero.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 940, + "location": "St. Louis", + "screen_name": "alanbjohnston", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 53, + "name": "Alan B. Johnston", + "profile_use_background_image": true, + "description": "WebRTC, SIP, and VoIP subject matter expert, author of 'Counting from Zero' technothriller and WebRTC book, lecturer, robotics mentor, traveler.", + "url": "http://t.co/YkuTNBXKW0", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2664154555/5e200b8e6aec0af53649f9bf752ba5ea_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Aug 24 16:09:53 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2664154555/5e200b8e6aec0af53649f9bf752ba5ea_normal.jpeg", + "favourites_count": 23, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684489120886833156", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "letsencrypt.org/howitworks/", + "url": "https://t.co/5e4yLkkWNM", + "expanded_url": "https://letsencrypt.org/howitworks/", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "letsencrypt", + "id_str": "2887837801", + "id": 2887837801, + "indices": [ + 89, + 101 + ], + "name": "Let's Encrypt" + } + ] + }, + "created_at": "Tue Jan 05 21:38:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684489120886833156, + "text": "First accomplishment of the new year: generating and installing a free certificate using @letsencrypt! Here's how: https://t.co/5e4yLkkWNM", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 182439750, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 481, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3339171", + "following": false, + "friends_count": 2827, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "doc.searls.com", + "url": "http://t.co/wxYeU4br7d", + "expanded_url": "http://doc.searls.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2032212/sunset2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 22677, + "location": "SBA, BOS, JFK, EWR, SFO, LHR", + "screen_name": "dsearls", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2033, + "name": "Doc Searls", + "profile_use_background_image": true, + "description": "Author of The Intention Economy, co-author of The Cluetrain Manifesto, variously connected with stuff at Harvard, NYU and UCSB.", + "url": "http://t.co/wxYeU4br7d", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1250175157/headshot_blackshirt_5_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Apr 03 16:47:00 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1250175157/headshot_blackshirt_5_normal.jpg", + "favourites_count": 12, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685569248886849536", + "id": 685569248886849536, + "text": "Looking for a quant who works in adtech. DM me or write my first name at my last name. Thanks!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:10:20 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 3339171, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2032212/sunset2.jpg", + "statuses_count": 9968, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3339171/1365217514", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "20695117", + "following": false, + "friends_count": 934, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "learnfromlisa.com", + "url": "http://t.co/DPUhcQg5zq", + "expanded_url": "http://learnfromlisa.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/723030511/a6edfb7e3d68e87264874ca185a65dd1.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "1C1C1C", + "profile_link_color": "3544F0", + "geo_enabled": false, + "followers_count": 2629, + "location": "ny", + "screen_name": "lisamarienyc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 197, + "name": "Lisa Larson-Kelley", + "profile_use_background_image": true, + "description": "Online video, realtime communication consultant + tech writer + trainer. Building bridges across the chasms of technology #WebRTC #HTML5 #Flash #Prezi #Canva", + "url": "http://t.co/DPUhcQg5zq", + "profile_text_color": "5C91B9", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/938820826/lisa14_360x499_normal.jpg", + "profile_background_color": "C0DCF1", + "created_at": "Thu Feb 12 17:22:26 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/938820826/lisa14_360x499_normal.jpg", + "favourites_count": 905, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685550799561166848", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/canva/status/6\u2026", + "url": "https://t.co/oJqyvaJDJv", + "expanded_url": "https://twitter.com/canva/status/685476147258388480", + "indices": [ + 87, + 110 + ] + } + ], + "hashtags": [ + { + "indices": [ + 57, + 69 + ], + "text": "socialmedia" + }, + { + "indices": [ + 70, + 83 + ], + "text": "calltoaction" + } + ], + "user_mentions": [ + { + "screen_name": "canva", + "id_str": "36542528", + "id": 36542528, + "indices": [ + 50, + 56 + ], + "name": "Canva" + } + ] + }, + "created_at": "Fri Jan 08 19:57:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685550799561166848, + "text": "Oh hey ya'll - here's another article I wrote for @canva #socialmedia #calltoaction :) https://t.co/oJqyvaJDJv", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685552779033735169", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/canva/status/6\u2026", + "url": "https://t.co/oJqyvaJDJv", + "expanded_url": "https://twitter.com/canva/status/685476147258388480", + "indices": [ + 107, + 130 + ] + } + ], + "hashtags": [ + { + "indices": [ + 77, + 89 + ], + "text": "socialmedia" + }, + { + "indices": [ + 90, + 103 + ], + "text": "calltoaction" + } + ], + "user_mentions": [ + { + "screen_name": "colorcodedlife", + "id_str": "621464045", + "id": 621464045, + "indices": [ + 3, + 18 + ], + "name": "Amanda O." + }, + { + "screen_name": "canva", + "id_str": "36542528", + "id": 36542528, + "indices": [ + 70, + 76 + ], + "name": "Canva" + } + ] + }, + "created_at": "Fri Jan 08 20:04:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685552779033735169, + "text": "RT @colorcodedlife: Oh hey ya'll - here's another article I wrote for @canva #socialmedia #calltoaction :) https://t.co/oJqyvaJDJv", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 20695117, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/723030511/a6edfb7e3d68e87264874ca185a65dd1.jpeg", + "statuses_count": 3108, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/20695117/1444750692", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7515742", + "following": false, + "friends_count": 493, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "brycebaril.com", + "url": "https://t.co/9cLztF736X", + "expanded_url": "http://brycebaril.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000099677531/145a49179b3c082ca3d09165b1459bc7.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 1509, + "location": "Kepler-452b", + "screen_name": "brycebaril", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 77, + "name": "Bryce Baril", + "profile_use_background_image": true, + "description": "Nothing Is Sacred", + "url": "https://t.co/9cLztF736X", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685184829365682176/piZBuQV7_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Mon Jul 16 20:31:48 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685184829365682176/piZBuQV7_normal.jpg", + "favourites_count": 3793, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.7900653, + 45.421863 + ], + [ + -122.471751, + 45.421863 + ], + [ + -122.471751, + 45.6509405 + ], + [ + -122.7900653, + 45.6509405 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Portland, OR", + "id": "ac88a4f17a51c7fc", + "name": "Portland" + }, + "in_reply_to_screen_name": "andychilton", + "in_reply_to_user_id": 10802172, + "in_reply_to_status_id_str": "685561201112174592", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685565590765830144", + "id": 685565590765830144, + "text": "@andychilton Is it the weird frog feet? Otherwise I'm not seeing it", + "in_reply_to_user_id_str": "10802172", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "andychilton", + "id_str": "10802172", + "id": 10802172, + "indices": [ + 0, + 12 + ], + "name": "\u2605 Andrew Chilton \u2605" + } + ] + }, + "created_at": "Fri Jan 08 20:55:48 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685561201112174592, + "lang": "en" + }, + "default_profile_image": false, + "id": 7515742, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000099677531/145a49179b3c082ca3d09165b1459bc7.jpeg", + "statuses_count": 6334, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7515742/1444065911", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1736231", + "following": false, + "friends_count": 123, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lnxwolf.deviantart.com", + "url": "http://t.co/dDDP2NZ1kJ", + "expanded_url": "http://lnxwolf.deviantart.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "A52A2A", + "geo_enabled": false, + "followers_count": 97, + "location": "Denver, CO, USA", + "screen_name": "linuxwolf", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Matt Miller", + "profile_use_background_image": false, + "description": "XMPP specialist, JOSE enthusiast, frequent prankster, occasional sketch artist. Opinions expressed are my own.", + "url": "http://t.co/dDDP2NZ1kJ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/615915426032152576/PhNZJjWw_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Mar 21 11:46:48 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/615915426032152576/PhNZJjWw_normal.png", + "favourites_count": 66, + "status": { + "retweet_count": 3655, + "retweeted_status": { + "retweet_count": 3655, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685508824132890624", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 192, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 339, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 580, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", + "type": "photo", + "indices": [ + 112, + 135 + ], + "media_url": "http://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", + "display_url": "pic.twitter.com/JXBm1L674A", + "id_str": "685508823856058369", + "expanded_url": "http://twitter.com/TheOnion/status/685508824132890624/photo/1", + "id": 685508823856058369, + "url": "https://t.co/JXBm1L674A" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "onion.com/1OUGJGn", + "url": "https://t.co/bRphMHDNYZ", + "expanded_url": "http://onion.com/1OUGJGn", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:10:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685508824132890624, + "text": "Chicago Police Department To Monitor All Interactions With Public Using New Bullet Cams https://t.co/bRphMHDNYZ https://t.co/JXBm1L674A", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4847, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685533439668293632", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 192, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 339, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 580, + "resize": "fit" + } + }, + "source_status_id_str": "685508824132890624", + "url": "https://t.co/JXBm1L674A", + "media_url": "http://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", + "source_user_id_str": "14075928", + "id_str": "685508823856058369", + "id": 685508823856058369, + "media_url_https": "https://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", + "type": "photo", + "indices": [ + 126, + 140 + ], + "source_status_id": 685508824132890624, + "source_user_id": 14075928, + "display_url": "pic.twitter.com/JXBm1L674A", + "expanded_url": "http://twitter.com/TheOnion/status/685508824132890624/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "onion.com/1OUGJGn", + "url": "https://t.co/bRphMHDNYZ", + "expanded_url": "http://onion.com/1OUGJGn", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheOnion", + "id_str": "14075928", + "id": 14075928, + "indices": [ + 3, + 12 + ], + "name": "The Onion" + } + ] + }, + "created_at": "Fri Jan 08 18:48:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685533439668293632, + "text": "RT @TheOnion: Chicago Police Department To Monitor All Interactions With Public Using New Bullet Cams https://t.co/bRphMHDNYZ https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1736231, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 579, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "17722582", + "following": false, + "friends_count": 214, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "keithnerdin.com", + "url": "http://t.co/vSNXnHLQjo", + "expanded_url": "http://keithnerdin.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/800154636/62c08bdf00cdf5a40aa30be085f06945.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "B23600", + "geo_enabled": true, + "followers_count": 419, + "location": "Walla Walla, WA", + "screen_name": "keithnerdin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Keith Nerdin", + "profile_use_background_image": true, + "description": "Growth Strategist & Happiness Coach | Founder of EmberFuel", + "url": "http://t.co/vSNXnHLQjo", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657029521812549632/CMjv-ByO_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Nov 28 23:20:40 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657029521812549632/CMjv-ByO_normal.jpg", + "favourites_count": 3985, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "TechStud", + "in_reply_to_user_id": 13000552, + "in_reply_to_status_id_str": "657280036735725568", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "657286735194275840", + "id": 657286735194275840, + "text": "@TechStud I would love to Jason. Just getting the wheels turning on this but excited at the response/support it's receiving!", + "in_reply_to_user_id_str": "13000552", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TechStud", + "id_str": "13000552", + "id": 13000552, + "indices": [ + 0, + 9 + ], + "name": "Jason Clarke" + } + ] + }, + "created_at": "Thu Oct 22 20:05:44 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 657280036735725568, + "lang": "en" + }, + "default_profile_image": false, + "id": 17722582, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/800154636/62c08bdf00cdf5a40aa30be085f06945.jpeg", + "statuses_count": 5064, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17722582/1436248487", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2412227593", + "following": false, + "friends_count": 128, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "xmpp.org", + "url": "http://t.co/WeHoWeNdEN", + "expanded_url": "http://xmpp.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 546, + "location": "", + "screen_name": "xmpp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "XMPP", + "profile_use_background_image": false, + "description": "XMPP Standards Foundation. Promoting open communication.", + "url": "http://t.co/WeHoWeNdEN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/448737500681342976/Pvd3o6p0_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 26 07:26:50 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/448737500681342976/Pvd3o6p0_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "631008981348126720", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wiki.xmpp.org/web/index.php?\u2026", + "url": "http://t.co/FtRXTLyfz8", + "expanded_url": "http://wiki.xmpp.org/web/index.php?title=Myths", + "indices": [ + 63, + 85 + ] + } + ], + "hashtags": [ + { + "indices": [ + 17, + 22 + ], + "text": "xmpp" + } + ], + "user_mentions": [ + { + "screen_name": "lloydwatkin", + "id_str": "46902840", + "id": 46902840, + "indices": [ + 3, + 15 + ], + "name": "\uff2c\u03b9\uff4f\u04ae\u0110 \u0461\u03b1\uff54\u03ba\u13a5\u0274" + }, + { + "screen_name": "DwdDave", + "id_str": "1846739046", + "id": 1846739046, + "indices": [ + 53, + 61 + ], + "name": "Dave Cridland" + } + ] + }, + "created_at": "Tue Aug 11 07:47:19 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 631008981348126720, + "text": "RT @lloydwatkin: #xmpp myths as expertly debunked by @DwdDave http://t.co/FtRXTLyfz8", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 2412227593, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 74, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "317608274", + "following": false, + "friends_count": 118, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "erik-ralston.com", + "url": "http://t.co/Fg4KmdcIQv", + "expanded_url": "http://erik-ralston.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/565398127/darkdenim3.png", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 392, + "location": "Tri-Cities, WA", + "screen_name": "ErikRalston", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Erik Ralston", + "profile_use_background_image": true, + "description": "Team Lead & Technical Architect at @LiveTilesUI - Co-Founder at @FuseSPC Coworking - Web & Mobile Developer - Tri-Citizen", + "url": "http://t.co/Fg4KmdcIQv", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000221107759/6e6d7c3e45ad15ace6c8f1653ce25b8d_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Jun 15 05:45:49 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000221107759/6e6d7c3e45ad15ace6c8f1653ce25b8d_normal.jpeg", + "favourites_count": 1176, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685533930947149824", + "id": 685533930947149824, + "text": "Unlike John Mayer, I'm not waiting for anything", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:50:00 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 317608274, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/565398127/darkdenim3.png", + "statuses_count": 3859, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/317608274/1413250836", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "813333008", + "following": false, + "friends_count": 982, + "entities": { + "description": { + "urls": [ + { + "display_url": "codepen.io/sdras/", + "url": "https://t.co/GCxUOGLXFI", + "expanded_url": "http://codepen.io/sdras/", + "indices": [ + 116, + 139 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "sarahdrasnerdesign.com", + "url": "https://t.co/pr1NhYaDta", + "expanded_url": "http://sarahdrasnerdesign.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458960512647041024/brIv5N37.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "4A9B85", + "geo_enabled": false, + "followers_count": 5045, + "location": "San Francisco, California", + "screen_name": "sarah_edo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 282, + "name": "Sarah Drasner", + "profile_use_background_image": true, + "description": "Award-winning Senior UX Engineer. Works at Trulia (Zillow), staff writer @Real_CSS_Tricks, obsessed with animation: https://t.co/GCxUOGLXFI", + "url": "https://t.co/pr1NhYaDta", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/613162577426817024/Lmi8X5tT_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Sep 09 15:24:34 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/613162577426817024/Lmi8X5tT_normal.jpg", + "favourites_count": 14201, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "rachsmithtweets", + "in_reply_to_user_id": 22354434, + "in_reply_to_status_id_str": "685495149410041856", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685496016238333953", + "id": 685496016238333953, + "text": "@rachsmithtweets niiiiiice", + "in_reply_to_user_id_str": "22354434", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rachsmithtweets", + "id_str": "22354434", + "id": 22354434, + "indices": [ + 0, + 16 + ], + "name": "Rach Smith" + } + ] + }, + "created_at": "Fri Jan 08 16:19:20 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685495149410041856, + "lang": "en" + }, + "default_profile_image": false, + "id": 813333008, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458960512647041024/brIv5N37.png", + "statuses_count": 8317, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/813333008/1434927146", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1618974036", + "following": false, + "friends_count": 60, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 25, + "location": "My House", + "screen_name": "bentleyjensen", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Bentley Jensen", + "profile_use_background_image": true, + "description": "Noob, Wannabe ethical hacker, Student of the JavaScipts, Plbth", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000183664024/de29446106bf77e4f11506df0925604c_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jul 25 01:03:24 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000183664024/de29446106bf77e4f11506df0925604c_normal.jpeg", + "favourites_count": 5, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "537297305779441665", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "goo.gl/gqv62l", + "url": "http://t.co/I3b6sCiBh1", + "expanded_url": "http://goo.gl/gqv62l", + "indices": [ + 67, + 89 + ] + }, + { + "display_url": "noisetrade.com/sleepingatlast\u2026", + "url": "http://t.co/oGq3bNDqkA", + "expanded_url": "http://noisetrade.com/sleepingatlast/christmas-collection-2014", + "indices": [ + 90, + 112 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "missfelony", + "id_str": "404215418", + "id": 404215418, + "indices": [ + 45, + 56 + ], + "name": "melanie" + } + ] + }, + "created_at": "Tue Nov 25 17:30:34 +0000 2014", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 537297305779441665, + "text": "Fell in love with Sleepng At Last becuase of @missfelony 's tweet.\nhttp://t.co/I3b6sCiBh1\nhttp://t.co/oGq3bNDqkA\nGreat music.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1618974036, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 17, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16414798", + "following": false, + "friends_count": 304, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "betwixt.is", + "url": "https://t.co/wlXSNm9xLH", + "expanded_url": "http://betwixt.is", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/642085241746685952/wG70Gviw.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "F84E57", + "geo_enabled": false, + "followers_count": 2614, + "location": "Central District, Seattle, WA", + "screen_name": "erinanacker", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 111, + "name": "Erin Anacker", + "profile_use_background_image": false, + "description": "Designer-Client Matchmaker @betwixters \u2014\u00a0connecting companies with the *right* designer for their project(s).\n\nLatte lover. Curious mind. Adventure seeker.", + "url": "https://t.co/wlXSNm9xLH", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/508374599474495489/yqe-6E1Q_normal.jpeg", + "profile_background_color": "AFE1D8", + "created_at": "Tue Sep 23 03:29:40 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/508374599474495489/yqe-6E1Q_normal.jpeg", + "favourites_count": 4167, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "isaseminega", + "in_reply_to_user_id": 86705900, + "in_reply_to_status_id_str": "685133200222453760", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685195205213949952", + "id": 685195205213949952, + "text": "@isaseminega Thank you much! I too am happy about it\u2014it feels easeful and exciting!", + "in_reply_to_user_id_str": "86705900", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "isaseminega", + "id_str": "86705900", + "id": 86705900, + "indices": [ + 0, + 12 + ], + "name": "Isa Seminega" + } + ] + }, + "created_at": "Thu Jan 07 20:24:01 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685133200222453760, + "lang": "en" + }, + "default_profile_image": false, + "id": 16414798, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/642085241746685952/wG70Gviw.png", + "statuses_count": 12660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16414798/1407267007", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "21660394", + "following": false, + "friends_count": 996, + "entities": { + "description": { + "urls": [ + { + "display_url": "webrtchacks.com/about/c", + "url": "http://t.co/8pClsQk3fj", + "expanded_url": "http://webrtchacks.com/about/c", + "indices": [ + 118, + 140 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "webrtchacks.com", + "url": "https://t.co/iP08XsmqRI", + "expanded_url": "https://webrtchacks.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 1194, + "location": "Cambridge, Massachusetts", + "screen_name": "chadwallacehart", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 38, + "name": "Chad Hart", + "profile_use_background_image": false, + "description": "Consultant & webrtcHacks editor. I tweet about: WebRTC, Telco-Apps, JavaScript, drones, telcos trying to change More: http://t.co/8pClsQk3fj", + "url": "https://t.co/iP08XsmqRI", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/585427961966235648/wobp557l_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Feb 23 15:29:41 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/585427961966235648/wobp557l_normal.png", + "favourites_count": 252, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "murillo", + "in_reply_to_user_id": 13157732, + "in_reply_to_status_id_str": "684825083265855488", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685467568589697025", + "id": 685467568589697025, + "text": "@murillo what do you consider \"real innovation\" wrt webrtc? anything?", + "in_reply_to_user_id_str": "13157732", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "murillo", + "id_str": "13157732", + "id": 13157732, + "indices": [ + 0, + 8 + ], + "name": "Sergio GarciaMurillo" + } + ] + }, + "created_at": "Fri Jan 08 14:26:18 +0000 2016", + "source": "TweetDeck", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684825083265855488, + "lang": "en" + }, + "default_profile_image": false, + "id": 21660394, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1381, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21660394/1437706466", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14171076", + "following": false, + "friends_count": 398, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "imaginator.com", + "url": "http://t.co/uCdcr2itUV", + "expanded_url": "http://imaginator.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 235, + "location": "Lead-lined bunker of doom.", + "screen_name": "imaginator", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "imaginator", + "profile_use_background_image": true, + "description": "@buddycloud CEO", + "url": "http://t.co/uCdcr2itUV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/506638667482292225/Q7pqzzFj_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 18 17:15:25 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/506638667482292225/Q7pqzzFj_normal.jpeg", + "favourites_count": 56, + "status": { + "retweet_count": 955, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 955, + "truncated": false, + "retweeted": false, + "id_str": "677658844504436737", + "id": 677658844504436737, + "text": "Big companies desperately hoping for blockchain without Bitcoin is exactly like 1994: Can't we please have online without Internet?? \ud83d\ude00", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Dec 18 01:17:13 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 920, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "677792395329740800", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "pmarca", + "id_str": "5943622", + "id": 5943622, + "indices": [ + 3, + 10 + ], + "name": "Marc Andreessen" + } + ] + }, + "created_at": "Fri Dec 18 10:07:54 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677792395329740800, + "text": "RT @pmarca: Big companies desperately hoping for blockchain without Bitcoin is exactly like 1994: Can't we please have online without Inter\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14171076, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1189, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14125871", + "following": false, + "friends_count": 303, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "allenpike.com", + "url": "http://t.co/o920H3nKse", + "expanded_url": "http://allenpike.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "924FB3", + "geo_enabled": true, + "followers_count": 3371, + "location": "Vancouver, BC", + "screen_name": "apike", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 238, + "name": "Allen Pike", + "profile_use_background_image": false, + "description": "I run @steamclocksw, where we make apps from pixels to code. I also do tech events like @vancouvercocoa and @vanjs, and a podcast, @upupshow.", + "url": "http://t.co/o920H3nKse", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458726741821751296/Ndfb--nh_normal.jpeg", + "profile_background_color": "EAEAEA", + "created_at": "Tue Mar 11 17:45:37 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458726741821751296/Ndfb--nh_normal.jpeg", + "favourites_count": 2566, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "classam", + "in_reply_to_user_id": 14689667, + "in_reply_to_status_id_str": "684095477319516160", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684161717069197312", + "id": 684161717069197312, + "text": "@classam It looks like there\u2019s some organization in the top left, notes in the middle, and in the top right there\u2019s some piece of garbage?", + "in_reply_to_user_id_str": "14689667", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "classam", + "id_str": "14689667", + "id": 14689667, + "indices": [ + 0, + 8 + ], + "name": "Cube Drone" + } + ] + }, + "created_at": "Mon Jan 04 23:57:19 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684095477319516160, + "lang": "en" + }, + "default_profile_image": false, + "id": 14125871, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 6116, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14125871/1398202842", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2396994720", + "following": false, + "friends_count": 16, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ampersandjs.com", + "url": "http://t.co/Va4YGmPfKR", + "expanded_url": "http://ampersandjs.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 734, + "location": "The Tech Republic", + "screen_name": "AmpersandJS", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "AmpersandJS", + "profile_use_background_image": false, + "description": "A modern, loosely coupled non-frameworky framework for client-side apps.", + "url": "http://t.co/Va4YGmPfKR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/481865813909991424/pmwBlTsY_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 19 00:46:58 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/481865813909991424/pmwBlTsY_normal.png", + "favourites_count": 11, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "thurmSR", + "in_reply_to_user_id": 1513508101, + "in_reply_to_status_id_str": "666807594997149698", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "667476158426955776", + "id": 667476158426955776, + "text": "@thurmSR \ud83d\ude4f please let us know what you think.", + "in_reply_to_user_id_str": "1513508101", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thurmSR", + "id_str": "1513508101", + "id": 1513508101, + "indices": [ + 0, + 8 + ], + "name": "Sara Thurman" + } + ] + }, + "created_at": "Thu Nov 19 22:54:51 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 666807594997149698, + "lang": "en" + }, + "default_profile_image": false, + "id": 2396994720, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 87, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2396994720/1403720848", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "372270760", + "following": false, + "friends_count": 1203, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "yesmusicpodcast.com", + "url": "http://t.co/Hiy6pihoFs", + "expanded_url": "http://www.yesmusicpodcast.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328929204/x7ecf846c097202463d1644c774a6cd1.png", + "notifications": false, + "profile_sidebar_fill_color": "CFDFB0", + "profile_link_color": "81B996", + "geo_enabled": false, + "followers_count": 1307, + "location": "Caesar's Palace", + "screen_name": "YesMusicPodcast", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Kevin Mulryne (YMP)", + "profile_use_background_image": true, + "description": "Subscribe for free and join me in my exploration of the greatest progressive rock band of all time", + "url": "http://t.co/Hiy6pihoFs", + "profile_text_color": "2C636A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662019383619952640/i1a6b2i8_normal.jpg", + "profile_background_color": "08407D", + "created_at": "Mon Sep 12 13:26:44 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FDFED2", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662019383619952640/i1a6b2i8_normal.jpg", + "favourites_count": 94, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685582705405353984", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOt0mvWMAAeg73.jpg", + "type": "photo", + "indices": [ + 97, + 120 + ], + "media_url": "http://pbs.twimg.com/media/CYOt0mvWMAAeg73.jpg", + "display_url": "pic.twitter.com/TwBZFFcsXn", + "id_str": "685582687554383872", + "expanded_url": "http://twitter.com/YesMusicPodcast/status/685582705405353984/photo/1", + "id": 685582687554383872, + "url": "https://t.co/TwBZFFcsXn" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "mulryne.com/yesmusicpodcas\u2026", + "url": "https://t.co/cCpI4iXrIJ", + "expanded_url": "http://mulryne.com/yesmusicpodcast/abwh-live-at-the-nec-october-24th-1989-part-1-208/", + "indices": [ + 25, + 48 + ] + } + ], + "hashtags": [ + { + "indices": [ + 81, + 86 + ], + "text": "prog" + }, + { + "indices": [ + 87, + 96 + ], + "text": "progrock" + } + ], + "user_mentions": [ + { + "screen_name": "YesMusicPodcast", + "id_str": "372270760", + "id": 372270760, + "indices": [ + 49, + 65 + ], + "name": "Kevin Mulryne (YMP)" + }, + { + "screen_name": "GrumpyOldRick", + "id_str": "371413088", + "id": 371413088, + "indices": [ + 66, + 80 + ], + "name": "Rick Wakeman" + } + ] + }, + "created_at": "Fri Jan 08 22:03:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685582705405353984, + "text": "ABWH Live at the NEC pt1 https://t.co/cCpI4iXrIJ @YesMusicPodcast @GrumpyOldRick #prog #progrock https://t.co/TwBZFFcsXn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 372270760, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328929204/x7ecf846c097202463d1644c774a6cd1.png", + "statuses_count": 7335, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/372270760/1397679137", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5834802", + "following": false, + "friends_count": 569, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/chriswendt", + "url": "http://t.co/GBDlQ1XcKQ", + "expanded_url": "http://about.me/chriswendt", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/664734789/d2d83d45a0448950200b62eeb5a21f0e.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 126, + "location": "Philly", + "screen_name": "chriswendt", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Chris Wendt", + "profile_use_background_image": true, + "description": "expert in his field", + "url": "http://t.co/GBDlQ1XcKQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000820762587/3a86ef8a5aee129e039eb617b16b5552_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon May 07 15:03:19 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000820762587/3a86ef8a5aee129e039eb617b16b5552_normal.jpeg", + "favourites_count": 10, + "status": { + "retweet_count": 30, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 30, + "truncated": false, + "retweeted": false, + "id_str": "680621492858687488", + "id": 680621492858687488, + "text": "\ud83c\udfb6 O Christmas tree\nO Christmas tree\nWe chop you down\nAnd decorate your corpse \ud83c\udfb6", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Dec 26 05:29:43 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 87, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "680728434327293954", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "anildash", + "id_str": "36823", + "id": 36823, + "indices": [ + 3, + 12 + ], + "name": "Anil Dash" + } + ] + }, + "created_at": "Sat Dec 26 12:34:40 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 680728434327293954, + "text": "RT @anildash: \ud83c\udfb6 O Christmas tree\nO Christmas tree\nWe chop you down\nAnd decorate your corpse \ud83c\udfb6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 5834802, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/664734789/d2d83d45a0448950200b62eeb5a21f0e.png", + "statuses_count": 308, + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "6944742", + "following": false, + "friends_count": 249, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/mbrevoort", + "url": "https://t.co/Kb9J7pgN8D", + "expanded_url": "http://about.me/mbrevoort", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "D42D2D", + "geo_enabled": false, + "followers_count": 985, + "location": "Castle Rock, CO", + "screen_name": "mbrevoort", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 103, + "name": "Mike Brevoort", + "profile_use_background_image": true, + "description": "founder of @beepboophq / CTO - USA @robotsnpencils", + "url": "https://t.co/Kb9J7pgN8D", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667136481312411648/rVt8APjF_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Jun 19 23:28:12 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667136481312411648/rVt8APjF_normal.jpg", + "favourites_count": 1036, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "afhill", + "in_reply_to_user_id": 1752371, + "in_reply_to_status_id_str": "685320673275719680", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685322033224261632", + "id": 685322033224261632, + "text": "@afhill hi there, would love to! Please don't submit to product hunt, we'll be \"launching\" for real soon \ud83d\ude2c", + "in_reply_to_user_id_str": "1752371", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "afhill", + "id_str": "1752371", + "id": 1752371, + "indices": [ + 0, + 7 + ], + "name": "Andrea Hill" + } + ] + }, + "created_at": "Fri Jan 08 04:48:00 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685320673275719680, + "lang": "en" + }, + "default_profile_image": false, + "id": 6944742, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 6309, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6944742/1413860087", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "6557062", + "following": false, + "friends_count": 1697, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "robotsandpencils.com", + "url": "http://t.co/NJATCHFUNK", + "expanded_url": "http://robotsandpencils.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2919428/twiiter_back_2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFCF02", + "profile_link_color": "212136", + "geo_enabled": true, + "followers_count": 2774, + "location": "Calgary, London, Austin", + "screen_name": "mjsikorsky", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 180, + "name": "Michael J. Sikorsky", + "profile_use_background_image": true, + "description": "Chief Robot @ Robots and Pencils Inc. see: @PencilCaseHQ - Hypercard for iOS.", + "url": "http://t.co/NJATCHFUNK", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/468936530623356928/IR-UQ-wi_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Mon Jun 04 00:30:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "776130", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/468936530623356928/IR-UQ-wi_normal.jpeg", + "favourites_count": 2212, + "status": { + "retweet_count": 21, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 21, + "truncated": false, + "retweeted": false, + "id_str": "685552976472178689", + "id": 685552976472178689, + "text": "Tech and health care occupations account for all employment gain since 2007. Core app economy jobs account for 20% @ppi #appeconomy", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 120, + 131 + ], + "text": "appeconomy" + } + ], + "user_mentions": [ + { + "screen_name": "ppi", + "id_str": "34666433", + "id": 34666433, + "indices": [ + 115, + 119 + ], + "name": "PPI" + } + ] + }, + "created_at": "Fri Jan 08 20:05:41 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 19, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685553372200484864", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "appeconomy" + } + ], + "user_mentions": [ + { + "screen_name": "MichaelMandel", + "id_str": "62406858", + "id": 62406858, + "indices": [ + 3, + 17 + ], + "name": "Michael Mandel" + }, + { + "screen_name": "ppi", + "id_str": "34666433", + "id": 34666433, + "indices": [ + 134, + 138 + ], + "name": "PPI" + } + ] + }, + "created_at": "Fri Jan 08 20:07:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685553372200484864, + "text": "RT @MichaelMandel: Tech and health care occupations account for all employment gain since 2007. Core app economy jobs account for 20% @ppi \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 6557062, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2919428/twiiter_back_2.jpg", + "statuses_count": 3457, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6557062/1400639179", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "156303065", + "following": false, + "friends_count": 1710, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "utx.edu", + "url": "https://t.co/nF6JsZT9GA", + "expanded_url": "http://utx.edu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/596795875923402753/XdJvSEA4.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 4757, + "location": "Austin, TX", + "screen_name": "PhilKomarny", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 474, + "name": "Phil Komarny", + "profile_use_background_image": true, + "description": "Executive Director of Digital Education Product/Platform @UTxTEx @UTSystem - mention \u2260 endorsement", + "url": "https://t.co/nF6JsZT9GA", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/653801046586736640/jh_2gUVf_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Jun 16 15:32:16 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/653801046586736640/jh_2gUVf_normal.jpg", + "favourites_count": 700, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685482521128235008", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1K2kXiA", + "url": "https://t.co/TbgMlTyeyg", + "expanded_url": "http://buff.ly/1K2kXiA", + "indices": [ + 107, + 130 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:25:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685482521128235008, + "text": "Friday 5 includes VR hitting the homes (in June, anyway) and the business and design of Netflix domination https://t.co/TbgMlTyeyg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685483469351157760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1K2kXiA", + "url": "https://t.co/TbgMlTyeyg", + "expanded_url": "http://buff.ly/1K2kXiA", + "indices": [ + 124, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "perryhewitt", + "id_str": "1363481", + "id": 1363481, + "indices": [ + 3, + 15 + ], + "name": "Perry Hewitt" + } + ] + }, + "created_at": "Fri Jan 08 15:29:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685483469351157760, + "text": "RT @perryhewitt: Friday 5 includes VR hitting the homes (in June, anyway) and the business and design of Netflix domination https://t.co/Tb\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 156303065, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/596795875923402753/XdJvSEA4.png", + "statuses_count": 16859, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/156303065/1445427718", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "88223099", + "following": false, + "friends_count": 801, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/253885120/twilk_background_4dd024c11d676.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 2647, + "location": "Issaquah, WA", + "screen_name": "marshray", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 184, + "name": "Marsh Ray", + "profile_use_background_image": true, + "description": "Taurus. Into: soldering, perfectionism. Tweets represent my own opinions. [marshray % live dotcom]", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/497521153422811137/0_RSu1lw_normal.png", + "profile_background_color": "131516", + "created_at": "Sat Nov 07 16:56:08 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/497521153422811137/0_RSu1lw_normal.png", + "favourites_count": 1459, + "status": { + "retweet_count": 286, + "retweeted_status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 286, + "truncated": false, + "retweeted": false, + "id_str": "593256977741979648", + "id": 593256977741979648, + "text": "Do employees actually want managers? I'd argue no; they really want advisors, mentors, coaches and leaders, and to manage themselves. :)", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Apr 29 03:34:20 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 423, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685597697852575744", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "KateKendall", + "id_str": "15125371", + "id": 15125371, + "indices": [ + 3, + 15 + ], + "name": "Kate Kendall" + } + ] + }, + "created_at": "Fri Jan 08 23:03:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597697852575744, + "text": "RT @KateKendall: Do employees actually want managers? I'd argue no; they really want advisors, mentors, coaches and leaders, and to manage \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 88223099, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/253885120/twilk_background_4dd024c11d676.jpg", + "statuses_count": 24207, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "58291812", + "following": false, + "friends_count": 268, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sporadicdispatches.blogspot.com", + "url": "http://t.co/ejC8VGJN", + "expanded_url": "http://sporadicdispatches.blogspot.com/", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 419, + "location": "Dallas, TX", + "screen_name": "adambroach", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "Adam Roach", + "profile_use_background_image": true, + "description": "Firefox Hacker, WebRTC Developer, IETF Standards Wonk, Mozilla Employee, Internet Freedom Fan", + "url": "http://t.co/ejC8VGJN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1852952707/headshot-1_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jul 19 20:56:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1852952707/headshot-1_normal.jpg", + "favourites_count": 42, + "status": { + "retweet_count": 60, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 60, + "truncated": false, + "retweeted": false, + "id_str": "685469930314072064", + "id": 685469930314072064, + "text": "On this day in 1982, AT&T settled the Justice Department's antitrust lawsuit by agreeing to divest itself of the 22 Bell System companies.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:35:41 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 89, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685497576062189568", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SwiftOnSecurity", + "id_str": "2436389418", + "id": 2436389418, + "indices": [ + 3, + 19 + ], + "name": "SecuriTay" + } + ] + }, + "created_at": "Fri Jan 08 16:25:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685497576062189568, + "text": "RT @SwiftOnSecurity: On this day in 1982, AT&T settled the Justice Department's antitrust lawsuit by agreeing to divest itself of the 22 Be\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 58291812, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 433, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "42650438", + "following": false, + "friends_count": 500, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662599379/lx5z8puk4wq8r6otw340.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "89C9FA", + "geo_enabled": false, + "followers_count": 551, + "location": "London", + "screen_name": "lauranncrossley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Laura Crossley", + "profile_use_background_image": true, + "description": "Communications & Engagement Lead. Not yet grown up enough for espresso, but grown up enough to be formerly known as Laura Gill. Espresso is my everest.", + "url": null, + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/597670925534887936/i_0MM5JQ_normal.jpg", + "profile_background_color": "804080", + "created_at": "Tue May 26 15:45:04 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597670925534887936/i_0MM5JQ_normal.jpg", + "favourites_count": 10, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "chriscrossley", + "in_reply_to_user_id": 18717124, + "in_reply_to_status_id_str": "685505202498199552", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685510008822456321", + "id": 685510008822456321, + "text": "@chriscrossley Stop trying to rain on my parade.", + "in_reply_to_user_id_str": "18717124", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chriscrossley", + "id_str": "18717124", + "id": 18717124, + "indices": [ + 0, + 14 + ], + "name": "Chris Crossley" + } + ] + }, + "created_at": "Fri Jan 08 17:14:56 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685505202498199552, + "lang": "en" + }, + "default_profile_image": false, + "id": 42650438, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662599379/lx5z8puk4wq8r6otw340.jpeg", + "statuses_count": 3047, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/42650438/1430764580", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "16085894", + "following": false, + "friends_count": 1094, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "surevine.com", + "url": "http://t.co/OTLdIoHbfN", + "expanded_url": "http://www.surevine.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "6BD500", + "geo_enabled": false, + "followers_count": 572, + "location": "United Kingdom", + "screen_name": "woodlark", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "John Atherton", + "profile_use_background_image": true, + "description": "What a great time to be in the software industry - I'm excited!", + "url": "http://t.co/OTLdIoHbfN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/61395029/woodlark_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Mon Sep 01 18:22:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/61395029/woodlark_normal.jpg", + "favourites_count": 55, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "675344626899898368", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "owl.li/VKZw9", + "url": "https://t.co/8xeJQfNDcT", + "expanded_url": "http://owl.li/VKZw9", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [ + { + "indices": [ + 93, + 99 + ], + "text": "entsw" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Dec 11 16:01:21 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675344626899898368, + "text": "The top three trends we expect to drive the software market in 2016: https://t.co/8xeJQfNDcT #entsw", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "675358550223400960", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "owl.li/VKZw9", + "url": "https://t.co/8xeJQfNDcT", + "expanded_url": "http://owl.li/VKZw9", + "indices": [ + 87, + 110 + ] + } + ], + "hashtags": [ + { + "indices": [ + 111, + 117 + ], + "text": "entsw" + } + ], + "user_mentions": [ + { + "screen_name": "nickpatience", + "id_str": "5471512", + "id": 5471512, + "indices": [ + 3, + 16 + ], + "name": "Nick Patience" + } + ] + }, + "created_at": "Fri Dec 11 16:56:40 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675358550223400960, + "text": "RT @nickpatience: The top three trends we expect to drive the software market in 2016: https://t.co/8xeJQfNDcT #entsw", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 16085894, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 908, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "80385525", + "following": false, + "friends_count": 89, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": false, + "followers_count": 136, + "location": "Gloucestershire", + "screen_name": "Simon_M_White", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Simon White", + "profile_use_background_image": true, + "description": "I make software for @surevine. Secure, social, beautiful software; often based on Java, Alfresco, NOSQL and Javascript/HTML5", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1312939479/simon2_square_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Tue Oct 06 19:42:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1312939479/simon2_square_normal.jpg", + "favourites_count": 6, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "virginmedia", + "in_reply_to_user_id": 17872077, + "in_reply_to_status_id_str": "538614165972467712", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "538755716002353152", + "id": 538755716002353152, + "text": "@virginmedia ahforgetabout it. Was just sympton of general virgin problems around Bristol/Glos last night all well now", + "in_reply_to_user_id_str": "17872077", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "virginmedia", + "id_str": "17872077", + "id": 17872077, + "indices": [ + 0, + 12 + ], + "name": "Virgin Media" + } + ] + }, + "created_at": "Sat Nov 29 18:05:46 +0000 2014", + "source": "Twitter for iPad", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 538614165972467712, + "lang": "en" + }, + "default_profile_image": false, + "id": 80385525, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "statuses_count": 725, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "44856091", + "following": false, + "friends_count": 169, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "36A358", + "geo_enabled": false, + "followers_count": 99, + "location": "", + "screen_name": "ashward123", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Ashley Ward", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/331324991/me_normal.jpg", + "profile_background_color": "352726", + "created_at": "Fri Jun 05 09:17:18 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/331324991/me_normal.jpg", + "favourites_count": 4, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "BBCBreaking", + "in_reply_to_user_id": 5402612, + "in_reply_to_status_id_str": "677784067748831232", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677788989491953664", + "id": 677788989491953664, + "text": "@BBCBreaking Why has the boy sprog got shorts on? Don\u2019t they know it\u2019s winter? Although judging by the leaves this was taken some time ago.", + "in_reply_to_user_id_str": "5402612", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BBCBreaking", + "id_str": "5402612", + "id": 5402612, + "indices": [ + 0, + 12 + ], + "name": "BBC Breaking News" + } + ] + }, + "created_at": "Fri Dec 18 09:54:22 +0000 2015", + "source": "TweetDeck", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 677784067748831232, + "lang": "en" + }, + "default_profile_image": false, + "id": 44856091, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 530, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "889745300", + "following": false, + "friends_count": 240, + "entities": { + "description": { + "urls": [ + { + "display_url": "sust.se", + "url": "http://t.co/zPoMblPlFX", + "expanded_url": "http://sust.se", + "indices": [ + 68, + 90 + ] + }, + { + "display_url": "lsys.se", + "url": "http://t.co/YP4ckBPXeF", + "expanded_url": "http://lsys.se", + "indices": [ + 92, + 114 + ] + }, + { + "display_url": "xmpp.org", + "url": "http://t.co/XVT9ZPV3oR", + "expanded_url": "http://xmpp.org", + "indices": [ + 126, + 148 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "lsys.se", + "url": "http://t.co/HDYtdw3pb0", + "expanded_url": "http://lsys.se", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 259, + "location": "", + "screen_name": "JoachimLindborg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Joachim Lindborg", + "profile_use_background_image": true, + "description": "Technology entusiast who like energyefficiency and the joy of life. http://t.co/zPoMblPlFX, http://t.co/YP4ckBPXeF, member of http://t.co/XVT9ZPV3oR", + "url": "http://t.co/HDYtdw3pb0", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2734553750/9510e92197c9f9dea1231c1d64ef2f9a_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Oct 18 21:15:47 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "sv", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2734553750/9510e92197c9f9dea1231c1d64ef2f9a_normal.png", + "favourites_count": 338, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "XivelyIOT", + "in_reply_to_user_id": 14862767, + "in_reply_to_status_id_str": "684741702167465984", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684762883327160325", + "id": 684762883327160325, + "text": "@XivelyIOT I just got a reply that my xively personal account was gone. are you still working?", + "in_reply_to_user_id_str": "14862767", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "XivelyIOT", + "id_str": "14862767", + "id": 14862767, + "indices": [ + 0, + 10 + ], + "name": "Xively" + } + ] + }, + "created_at": "Wed Jan 06 15:46:08 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684741702167465984, + "lang": "en" + }, + "default_profile_image": false, + "id": 889745300, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 776, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/889745300/1399542692", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "799574", + "following": false, + "friends_count": 1163, + "entities": { + "description": { + "urls": [ + { + "display_url": "metafluff.com", + "url": "http://t.co/e4QyEaP03i", + "expanded_url": "http://metafluff.com", + "indices": [ + 82, + 104 + ] + }, + { + "display_url": "noms.in", + "url": "http://t.co/Xu2iOaLJXt", + "expanded_url": "http://noms.in", + "indices": [ + 105, + 127 + ] + }, + { + "display_url": "meatclub.in", + "url": "http://t.co/84NhQITCYA", + "expanded_url": "http://meatclub.in", + "indices": [ + 128, + 150 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "metafluff.com", + "url": "http://t.co/e4QyEaP03i", + "expanded_url": "http://metafluff.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3295722/b53368916e912ca1944e92a72f94be9374e40435_m.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 2659, + "location": "Portland, Oregon, USA", + "screen_name": "dietrich", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 192, + "name": "dietrich ayala", + "profile_use_background_image": true, + "description": "Working on Firefox OS so the next billions coming online have freedom and choice. http://t.co/e4QyEaP03i http://t.co/Xu2iOaLJXt http://t.co/84NhQITCYA", + "url": "http://t.co/e4QyEaP03i", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664138406595682304/OlS9IlB__normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Feb 27 23:41:20 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664138406595682304/OlS9IlB__normal.jpg", + "favourites_count": 4115, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685526009085468672", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYN6ReVUAAEpTql.jpg", + "type": "photo", + "indices": [ + 66, + 89 + ], + "media_url": "http://pbs.twimg.com/media/CYN6ReVUAAEpTql.jpg", + "display_url": "pic.twitter.com/BBIL6R0MXb", + "id_str": "685526008909266945", + "expanded_url": "http://twitter.com/dietrich/status/685526009085468672/photo/1", + "id": 685526008909266945, + "url": "https://t.co/BBIL6R0MXb" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1TJTDeu", + "url": "https://t.co/q2BqKkVQjI", + "expanded_url": "http://bit.ly/1TJTDeu", + "indices": [ + 42, + 65 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wateravecoffee", + "id_str": "128627627", + "id": 128627627, + "indices": [ + 25, + 40 + ], + "name": "Water Avenue Coffee" + } + ] + }, + "created_at": "Fri Jan 08 18:18:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "in", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685526009085468672, + "text": "Rwanda Abakundakawa from @wateravecoffee. https://t.co/q2BqKkVQjI https://t.co/BBIL6R0MXb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "IFTTT" + }, + "default_profile_image": false, + "id": 799574, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3295722/b53368916e912ca1944e92a72f94be9374e40435_m.png", + "statuses_count": 17052, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/799574/1406568533", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "58337300", + "following": false, + "friends_count": 518, + "entities": { + "description": { + "urls": [ + { + "display_url": "plus.google.com/10893650267121\u2026", + "url": "https://t.co/ianrSxnV", + "expanded_url": "https://plus.google.com/108936502671219351445/posts", + "indices": [ + 0, + 21 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "taras.glek.net", + "url": "http://t.co/CWr6sQe6", + "expanded_url": "http://taras.glek.net", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 805, + "location": "", + "screen_name": "tarasglek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "Taras Glek", + "profile_use_background_image": true, + "description": "https://t.co/ianrSxnV", + "url": "http://t.co/CWr6sQe6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2989960370/07d65b04acdb7549524ba9ba466cac38_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 20 00:32:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2989960370/07d65b04acdb7549524ba9ba466cac38_normal.jpeg", + "favourites_count": 342, + "status": { + "retweet_count": 10, + "retweeted_status": { + "retweet_count": 10, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685468419332902912", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "meduza.io/en/news/2016/0\u2026", + "url": "https://t.co/rhPsvu2UXs", + "expanded_url": "https://meduza.io/en/news/2016/01/08/finland-decides-to-extradite-russian-hacker-to-the-us", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:29:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685468419332902912, + "text": "Russian hacker gets detained in Finland, is now being extradited to Minnesota. Dude can\u2019t catch a break from snow. https://t.co/rhPsvu2UXs", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685484093195173888", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "meduza.io/en/news/2016/0\u2026", + "url": "https://t.co/rhPsvu2UXs", + "expanded_url": "https://meduza.io/en/news/2016/01/08/finland-decides-to-extradite-russian-hacker-to-the-us", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "meduza_en", + "id_str": "3004163369", + "id": 3004163369, + "indices": [ + 3, + 13 + ], + "name": "Meduza Project" + } + ] + }, + "created_at": "Fri Jan 08 15:31:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685484093195173888, + "text": "RT @meduza_en: Russian hacker gets detained in Finland, is now being extradited to Minnesota. Dude can\u2019t catch a break from snow. https://t\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 58337300, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4500, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1347374180", + "following": false, + "friends_count": 278, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "benjamin.smedbergs.us", + "url": "http://t.co/T0OpiiA3Fq", + "expanded_url": "http://benjamin.smedbergs.us", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 541, + "location": "Johnstown, PA, USA", + "screen_name": "nsIAnswers", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "Benjamin Smedberg", + "profile_use_background_image": false, + "description": "Sr. Engineering Manager @ Mozilla. Follower of Christ. Devoted husband. Father of seven. Software toolsmith. Chaser of crashes. Organist & choir director.", + "url": "http://t.co/T0OpiiA3Fq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3511816518/201ec910ac111743ecd4dacb356bd74d_normal.jpeg", + "profile_background_color": "312738", + "created_at": "Fri Apr 12 17:45:02 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3511816518/201ec910ac111743ecd4dacb356bd74d_normal.jpeg", + "favourites_count": 1056, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685580123161137152", + "id": 685580123161137152, + "text": "Dislike sites that auto-logout after a period and change the URL. Breaks overnight app tabs. Looking at you, okta/jobvite/mozilla sso.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:53:33 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 1347374180, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1702, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1347374180/1365792054", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14587406", + "following": false, + "friends_count": 407, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.lassey.us", + "url": "http://t.co/FHFVqSqrQ9", + "expanded_url": "http://blog.lassey.us", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 756, + "location": "N 42\u00b021' 0'' / W 71\u00b04' 0''", + "screen_name": "blassey", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 35, + "name": "Brad Lassey", + "profile_use_background_image": true, + "description": "Mozilla hacker, Bostonian, Rugger", + "url": "http://t.co/FHFVqSqrQ9", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/454296236124680192/72vCsZrE_normal.png", + "profile_background_color": "352726", + "created_at": "Tue Apr 29 17:06:43 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/454296236124680192/72vCsZrE_normal.png", + "favourites_count": 34, + "status": { + "retweet_count": 32, + "retweeted_status": { + "retweet_count": 32, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685476091952263169", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 960, + "h": 638, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 225, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 398, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", + "type": "photo", + "indices": [ + 104, + 127 + ], + "media_url": "http://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", + "display_url": "pic.twitter.com/qI5R0UmFX5", + "id_str": "685476091104894977", + "expanded_url": "http://twitter.com/BostonGlobe/status/685476091952263169/photo/1", + "id": 685476091104894977, + "url": "https://t.co/qI5R0UmFX5" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bos.gl/E4WKtQM", + "url": "https://t.co/ICqRD2LhYA", + "expanded_url": "http://bos.gl/E4WKtQM", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:00:10 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685476091952263169, + "text": "Had HGH been sent to Tom Brady and his wife, would there be such radio silence? https://t.co/ICqRD2LhYA https://t.co/qI5R0UmFX5", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 31, + "contributors": null, + "source": "SocialFlow" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685489620377812993", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 960, + "h": 638, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 225, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 398, + "resize": "fit" + } + }, + "source_status_id_str": "685476091952263169", + "url": "https://t.co/qI5R0UmFX5", + "media_url": "http://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", + "source_user_id_str": "95431448", + "id_str": "685476091104894977", + "id": 685476091104894977, + "media_url_https": "https://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", + "type": "photo", + "indices": [ + 121, + 140 + ], + "source_status_id": 685476091952263169, + "source_user_id": 95431448, + "display_url": "pic.twitter.com/qI5R0UmFX5", + "expanded_url": "http://twitter.com/BostonGlobe/status/685476091952263169/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bos.gl/E4WKtQM", + "url": "https://t.co/ICqRD2LhYA", + "expanded_url": "http://bos.gl/E4WKtQM", + "indices": [ + 97, + 120 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BostonGlobe", + "id_str": "95431448", + "id": 95431448, + "indices": [ + 3, + 15 + ], + "name": "The Boston Globe" + } + ] + }, + "created_at": "Fri Jan 08 15:53:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685489620377812993, + "text": "RT @BostonGlobe: Had HGH been sent to Tom Brady and his wife, would there be such radio silence? https://t.co/ICqRD2LhYA https://t.co/qI5R0\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14587406, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 7131, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14587406/1357255090", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "7795552", + "following": false, + "friends_count": 289, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "starkravingfinkle.org", + "url": "http://t.co/qvgs6F9wLH", + "expanded_url": "http://starkravingfinkle.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 1648, + "location": "Pennsylvania, USA", + "screen_name": "mfinkle", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 114, + "name": "Mark Finkle", + "profile_use_background_image": true, + "description": "Team Lead: Firefox for Mobile", + "url": "http://t.co/qvgs6F9wLH", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/498588007599837184/bpNnvyjB_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Sun Jul 29 03:53:44 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/498588007599837184/bpNnvyjB_normal.jpeg", + "favourites_count": 1899, + "status": { + "retweet_count": 11, + "retweeted_status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685277863243722753", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 912, + "h": 708, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 264, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 466, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", + "display_url": "pic.twitter.com/KzbXnTCvAU", + "id_str": "685277280092868608", + "expanded_url": "http://twitter.com/brianskold/status/685277863243722753/video/1", + "id": 685277280092868608, + "url": "https://t.co/KzbXnTCvAU" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 01:52:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685277863243722753, + "text": "The pieces for Element.animate() are starting to come together in Firefox (video is for a patched build) https://t.co/KzbXnTCvAU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685587999015370752", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 912, + "h": 708, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 264, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 466, + "resize": "fit" + } + }, + "source_status_id_str": "685277863243722753", + "url": "https://t.co/KzbXnTCvAU", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", + "source_user_id_str": "35165863", + "id_str": "685277280092868608", + "id": 685277280092868608, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", + "type": "photo", + "indices": [ + 121, + 140 + ], + "source_status_id": 685277863243722753, + "source_user_id": 35165863, + "display_url": "pic.twitter.com/KzbXnTCvAU", + "expanded_url": "http://twitter.com/brianskold/status/685277863243722753/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "brianskold", + "id_str": "35165863", + "id": 35165863, + "indices": [ + 3, + 14 + ], + "name": "Brian Birtles" + } + ] + }, + "created_at": "Fri Jan 08 22:24:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685587999015370752, + "text": "RT @brianskold: The pieces for Element.animate() are starting to come together in Firefox (video is for a patched build) https://t.co/KzbXn\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 7795552, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7460, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "8209572", + "following": false, + "friends_count": 331, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 1393, + "location": "Mountain View, CA", + "screen_name": "dougturner", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 77, + "name": "Doug Turner", + "profile_use_background_image": true, + "description": "engineering mgmt @mozilla. hacker on @firefox. force multiplier. dislike of upper case.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/548600836088025089/OYm0LW4r_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Aug 15 20:32:43 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/548600836088025089/OYm0LW4r_normal.jpeg", + "favourites_count": 1059, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "deadsquid", + "in_reply_to_user_id": 16625136, + "in_reply_to_status_id_str": "685537265947439104", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685552444256878592", + "id": 685552444256878592, + "text": "@deadsquid @nsIAnswers never!", + "in_reply_to_user_id_str": "16625136", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "deadsquid", + "id_str": "16625136", + "id": 16625136, + "indices": [ + 0, + 10 + ], + "name": "kev needham" + }, + { + "screen_name": "nsIAnswers", + "id_str": "1347374180", + "id": 1347374180, + "indices": [ + 11, + 22 + ], + "name": "Benjamin Smedberg" + } + ] + }, + "created_at": "Fri Jan 08 20:03:34 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685537265947439104, + "lang": "en" + }, + "default_profile_image": false, + "id": 8209572, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 57, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8209572/1399084140", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18370424", + "following": false, + "friends_count": 267, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dolske.wordpress.com", + "url": "http://t.co/JMoupDoaAK", + "expanded_url": "http://dolske.wordpress.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 1311, + "location": "Mountain View, CA", + "screen_name": "dolske", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 98, + "name": "Justin Dolske", + "profile_use_background_image": true, + "description": "Firefox engineering manager, bacon enthusiast, and snuggler of kittens. Did I mention beer? Oh, god, the beer. Mmmmm.", + "url": "http://t.co/JMoupDoaAK", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/456344242768465921/jWpN1yV-_normal.png", + "profile_background_color": "131516", + "created_at": "Thu Dec 25 04:30:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/456344242768465921/jWpN1yV-_normal.png", + "favourites_count": 3080, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685552777330724864", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ybca.org/internet-cat-v\u2026", + "url": "https://t.co/xL5GsmS9Wf", + "expanded_url": "http://ybca.org/internet-cat-video-festival", + "indices": [ + 0, + 23 + ] + }, + { + "display_url": "twitter.com/hemeon/status/\u2026", + "url": "https://t.co/hfln1j7nVA", + "expanded_url": "https://twitter.com/hemeon/status/685548560859836416", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:04:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685552777330724864, + "text": "https://t.co/xL5GsmS9Wf and already sold out. :( https://t.co/hfln1j7nVA", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18370424, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 16111, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18370424/1398201551", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "42056876", + "following": false, + "friends_count": 241, + "entities": { + "description": { + "urls": [ + { + "display_url": "wild.land", + "url": "http://t.co/ktkvhRQiyM", + "expanded_url": "http://wild.land", + "indices": [ + 39, + 61 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "wild.land", + "url": "https://t.co/aqz7o0iVd2", + "expanded_url": "https://wild.land", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 269, + "location": "Kennewick, Wa", + "screen_name": "grElement", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Angela Steffens", + "profile_use_background_image": true, + "description": "Builder of modern web apps. Partner at http://t.co/ktkvhRQiyM. Kind of a foodie. Also a super mom.", + "url": "https://t.co/aqz7o0iVd2", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1281598197/new_me_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Sat May 23 16:49:49 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1281598197/new_me_normal.png", + "favourites_count": 86, + "status": { + "retweet_count": 42, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 42, + "truncated": false, + "retweeted": false, + "id_str": "647991814432104449", + "id": 647991814432104449, + "text": "evolution is \"just a theory\". well gravity is just a theory too. what I'm saying is gravity is bullshit made up by the stupid nerd Newton.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Sep 27 04:31:02 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 158, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "648380077097414656", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "animaldrumss", + "id_str": "1960031863", + "id": 1960031863, + "indices": [ + 3, + 16 + ], + "name": "Mike F" + } + ] + }, + "created_at": "Mon Sep 28 06:13:51 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 648380077097414656, + "text": "RT @animaldrumss: evolution is \"just a theory\". well gravity is just a theory too. what I'm saying is gravity is bullshit made up by the st\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 42056876, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 2019, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "80220145", + "following": false, + "friends_count": 221, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thebrianmanley.com", + "url": "http://t.co/F88zLJtKtE", + "expanded_url": "http://thebrianmanley.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 273, + "location": "", + "screen_name": "thebrianmanley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "thebrianmanley", + "profile_use_background_image": true, + "description": "I\u2019d rather write programs to help me write programs than write programs.", + "url": "http://t.co/F88zLJtKtE", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/523007198662639617/aauxMoMI_normal.png", + "profile_background_color": "ABB8C2", + "created_at": "Tue Oct 06 04:59:03 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/523007198662639617/aauxMoMI_normal.png", + "favourites_count": 1897, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "kendall", + "in_reply_to_user_id": 307833, + "in_reply_to_status_id_str": "685548656573812736", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685565008600805376", + "id": 685565008600805376, + "text": "@kendall I thought that was Santa Fe, no?", + "in_reply_to_user_id_str": "307833", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kendall", + "id_str": "307833", + "id": 307833, + "indices": [ + 0, + 8 + ], + "name": "Kendall Clark" + } + ] + }, + "created_at": "Fri Jan 08 20:53:29 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685548656573812736, + "lang": "en" + }, + "default_profile_image": false, + "id": 80220145, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5595, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/80220145/1445538062", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "8419342", + "following": false, + "friends_count": 129, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "n.exts.ch", + "url": "http://t.co/b2T5wJBNT2", + "expanded_url": "http://n.exts.ch", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "6C8FAB", + "profile_link_color": "6E7680", + "geo_enabled": true, + "followers_count": 462, + "location": "Kennewick, WA", + "screen_name": "natevw", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 54, + "name": "Nathan Vander Wilt", + "profile_use_background_image": false, + "description": "code, read, pray", + "url": "http://t.co/b2T5wJBNT2", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1782014523/IMG_2984_normal.JPG", + "profile_background_color": "FFFFFF", + "created_at": "Sat Aug 25 04:14:31 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "111111", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1782014523/IMG_2984_normal.JPG", + "favourites_count": 2348, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "michaelossmann", + "in_reply_to_user_id": 245547167, + "in_reply_to_status_id_str": "685517260010594304", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685537983668162560", + "id": 685537983668162560, + "text": ".@michaelossmann \"We are growing\" is the best part of that ad, for us non-Media Liaison types :-)", + "in_reply_to_user_id_str": "245547167", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "michaelossmann", + "id_str": "245547167", + "id": 245547167, + "indices": [ + 1, + 16 + ], + "name": "Michael Ossmann" + } + ] + }, + "created_at": "Fri Jan 08 19:06:06 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685517260010594304, + "lang": "en" + }, + "default_profile_image": false, + "id": 8419342, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 17486, + "is_translator": false + }, + { + "time_zone": "Ljubljana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14159253", + "following": false, + "friends_count": 1589, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "brian.kingsonline.net/talk/about/", + "url": "http://t.co/0n63UkyGP0", + "expanded_url": "http://brian.kingsonline.net/talk/about/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/127349504/twitter_mozsunburst_backgroundimage.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F97C7", + "geo_enabled": true, + "followers_count": 2561, + "location": "Slovenia. Sometimes.", + "screen_name": "brianking", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 157, + "name": "Brian King", + "profile_use_background_image": true, + "description": "Participation at Mozilla, aka working with thousands of amazing people.", + "url": "http://t.co/0n63UkyGP0", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/511579654445367296/_BtlLPxj_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Sun Mar 16 20:34:44 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/511579654445367296/_BtlLPxj_normal.jpeg", + "favourites_count": 68, + "status": { + "retweet_count": 31, + "retweeted_status": { + "retweet_count": 31, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685385349862916096", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", + "type": "photo", + "indices": [ + 76, + 99 + ], + "media_url": "http://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", + "display_url": "pic.twitter.com/G6vLAffmlq", + "id_str": "685385317923295232", + "expanded_url": "http://twitter.com/pdscott/status/685385349862916096/photo/1", + "id": 685385317923295232, + "url": "https://t.co/G6vLAffmlq" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 68, + 75 + ], + "text": "Dublin" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 08:59:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685385349862916096, + "text": "Tramlines return to College Green, 67 years after they were removed #Dublin https://t.co/G6vLAffmlq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 30, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685476795173482496", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "source_status_id_str": "685385349862916096", + "url": "https://t.co/G6vLAffmlq", + "media_url": "http://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", + "source_user_id_str": "19360077", + "id_str": "685385317923295232", + "id": 685385317923295232, + "media_url_https": "https://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", + "type": "photo", + "indices": [ + 89, + 112 + ], + "source_status_id": 685385349862916096, + "source_user_id": 19360077, + "display_url": "pic.twitter.com/G6vLAffmlq", + "expanded_url": "http://twitter.com/pdscott/status/685385349862916096/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 81, + 88 + ], + "text": "Dublin" + } + ], + "user_mentions": [ + { + "screen_name": "pdscott", + "id_str": "19360077", + "id": 19360077, + "indices": [ + 3, + 11 + ], + "name": "Piers Scott" + } + ] + }, + "created_at": "Fri Jan 08 15:02:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685476795173482496, + "text": "RT @pdscott: Tramlines return to College Green, 67 years after they were removed #Dublin https://t.co/G6vLAffmlq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 14159253, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/127349504/twitter_mozsunburst_backgroundimage.jpg", + "statuses_count": 9880, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159253/1417544922", + "is_translator": false + }, + { + "time_zone": "Bern", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "41655877", + "following": false, + "friends_count": 72, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 616, + "location": "", + "screen_name": "axelhecht", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 38, + "name": "Axel Hecht", + "profile_use_background_image": true, + "description": "Mozillian working on localization infrastructure", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/224734723/Axel_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu May 21 19:21:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/224734723/Axel_normal.jpg", + "favourites_count": 21, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685593439031828480", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.mozilla.org/l10n/2016/01/0\u2026", + "url": "https://t.co/JRIbzfYG2M", + "expanded_url": "https://blog.mozilla.org/l10n/2016/01/08/mozlando-localization-sessions/", + "indices": [ + 33, + 56 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:46:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593439031828480, + "text": "L10n-driver report from Mozlando https://t.co/JRIbzfYG2M", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685598438042546182", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.mozilla.org/l10n/2016/01/0\u2026", + "url": "https://t.co/JRIbzfYG2M", + "expanded_url": "https://blog.mozilla.org/l10n/2016/01/08/mozlando-localization-sessions/", + "indices": [ + 51, + 74 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mozilla_l10n", + "id_str": "227647662", + "id": 227647662, + "indices": [ + 3, + 16 + ], + "name": "Mozilla Localization" + } + ] + }, + "created_at": "Fri Jan 08 23:06:20 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685598438042546182, + "text": "RT @mozilla_l10n: L10n-driver report from Mozlando https://t.co/JRIbzfYG2M", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 41655877, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1765, + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "93677805", + "following": false, + "friends_count": 93, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": false, + "followers_count": 662, + "location": "Berlin, Germany", + "screen_name": "MadalinaAna", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 31, + "name": "Madalina Ana", + "profile_use_background_image": true, + "description": "Keeping the web open @Mozilla. Football player and fan. Point-and-click gaming geek. Music addict and Web worshiper.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3368171228/610c85a7ceae792330e259ef3fb21d7f_normal.jpeg", + "profile_background_color": "EBEBEB", + "created_at": "Mon Nov 30 17:49:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3368171228/610c85a7ceae792330e259ef3fb21d7f_normal.jpeg", + "favourites_count": 11, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "costenslayer", + "in_reply_to_user_id": 251683429, + "in_reply_to_status_id_str": "667720748556017664", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "667720975107014657", + "id": 667720975107014657, + "text": "@costenslayer testing testing 1,2,3 #fxhelp", + "in_reply_to_user_id_str": "251683429", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 36, + 43 + ], + "text": "fxhelp" + } + ], + "user_mentions": [ + { + "screen_name": "costenslayer", + "id_str": "251683429", + "id": 251683429, + "indices": [ + 0, + 13 + ], + "name": "Stefan Costen" + } + ] + }, + "created_at": "Fri Nov 20 15:07:40 +0000 2015", + "source": "Army of Awesome", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 667720748556017664, + "lang": "en" + }, + "default_profile_image": false, + "id": 93677805, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 280, + "is_translator": false + }, + { + "time_zone": "Greenland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "258840559", + "following": false, + "friends_count": 229, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000077062766/feb26da04b728fa62bdaad23c7f8eba0.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 1282, + "location": "Berlin", + "screen_name": "rosanardila", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 47, + "name": "Rosana Ardila", + "profile_use_background_image": true, + "description": "Language geek, open tech enthusiast and Mozilla Reps Council Member", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1790764965/Rosana_normal.png", + "profile_background_color": "1238A8", + "created_at": "Mon Feb 28 16:27:33 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1790764965/Rosana_normal.png", + "favourites_count": 375, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679832897235189760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.mozilla.org/mozillareps/20\u2026", + "url": "https://t.co/ac2nBta01i", + "expanded_url": "https://blog.mozilla.org/mozillareps/2015/12/24/reps-regional-communities-and-beyond-2015/", + "indices": [ + 44, + 67 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "firefox", + "id_str": "2142731", + "id": 2142731, + "indices": [ + 72, + 80 + ], + "name": "Firefox" + } + ] + }, + "created_at": "Thu Dec 24 01:16:08 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679832897235189760, + "text": "Reps, regional communities and beyond: 2015 https://t.co/ac2nBta01i via @firefox", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 258840559, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000077062766/feb26da04b728fa62bdaad23c7f8eba0.jpeg", + "statuses_count": 726, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/258840559/1416561407", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "4253351", + "following": false, + "friends_count": 1171, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mozillians.org/en-US/u/mary/", + "url": "https://t.co/SpGHcgXARN", + "expanded_url": "https://mozillians.org/en-US/u/mary/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/146635655/Adopt_Mozilla.jpg", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 2521, + "location": "San Francisco, CA", + "screen_name": "foxymary", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 115, + "name": "Mary J. Colvig", + "profile_use_background_image": true, + "description": "Thrive on fostering users and supporters into champions for Mozilla. Specialize in engaging communities when stakes are high...with a touch of play!", + "url": "https://t.co/SpGHcgXARN", + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/502297916606664704/HstKkO7K_normal.jpeg", + "profile_background_color": "642D8B", + "created_at": "Wed Apr 11 22:23:58 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/502297916606664704/HstKkO7K_normal.jpeg", + "favourites_count": 524, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682799707563790337", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "donate.mozilla.org/en-US/", + "url": "https://t.co/AEkd5rkO79", + "expanded_url": "https://donate.mozilla.org/en-US/", + "indices": [ + 95, + 118 + ] + } + ], + "hashtags": [ + { + "indices": [ + 36, + 47 + ], + "text": "lovetheweb" + } + ], + "user_mentions": [ + { + "screen_name": "mozilla", + "id_str": "106682853", + "id": 106682853, + "indices": [ + 11, + 19 + ], + "name": "Mozilla" + } + ] + }, + "created_at": "Fri Jan 01 05:45:10 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682799707563790337, + "text": "Donated to @mozilla today because I #lovetheweb. Only a few hours to go & so close to $4M! https://t.co/AEkd5rkO79", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 4253351, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/146635655/Adopt_Mozilla.jpg", + "statuses_count": 4707, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4253351/1408592080", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14614648", + "following": false, + "friends_count": 105, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.lizardwrangler.com", + "url": "http://t.co/Ef1HtT09oE", + "expanded_url": "http://blog.lizardwrangler.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 6104, + "location": "", + "screen_name": "MitchellBaker", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 495, + "name": "MitchellBaker", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/Ef1HtT09oE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000073181505/2cc3f656c656f702cb276b66ff255b78_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu May 01 14:25:10 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000073181505/2cc3f656c656f702cb276b66ff255b78_normal.png", + "favourites_count": 8, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 14, + "truncated": false, + "retweeted": false, + "id_str": "685520840989908992", + "id": 685520840989908992, + "text": "privacy tip today:Manage access to each website. Type about:permissions in a new tab in your Firefox browser #advocate4privacy #privacymonth", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 109, + 126 + ], + "text": "advocate4privacy" + }, + { + "indices": [ + 127, + 140 + ], + "text": "privacymonth" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:57:59 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 16, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14614648, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1823, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15540222", + "following": false, + "friends_count": 983, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rauchg.com", + "url": "http://t.co/CCq1K8vos8", + "expanded_url": "http://rauchg.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 16528, + "location": "SF", + "screen_name": "rauchg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 954, + "name": "Guillermo Rauch", + "profile_use_background_image": true, + "description": "\u25b2", + "url": "http://t.co/CCq1K8vos8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681929779176706048/BBI9KCFJ_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Jul 22 22:54:37 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681929779176706048/BBI9KCFJ_normal.png", + "favourites_count": 4481, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": "amasad", + "in_reply_to_user_id": 166138615, + "in_reply_to_status_id_str": "685601687273254912", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685607490583539712", + "id": 685607490583539712, + "text": "@amasad I wish neither existed. Reproducibility sans manifest duplication (shrink wrap) ftw", + "in_reply_to_user_id_str": "166138615", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "amasad", + "id_str": "166138615", + "id": 166138615, + "indices": [ + 0, + 7 + ], + "name": "Amjad Masad" + } + ] + }, + "created_at": "Fri Jan 08 23:42:18 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685601687273254912, + "lang": "en" + }, + "default_profile_image": false, + "id": 15540222, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 9401, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15540222/1446798932", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "10058662", + "following": false, + "friends_count": 12, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "asadotzler.com", + "url": "http://t.co/TFsbThdtN9", + "expanded_url": "http://asadotzler.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441855782758268928/SugecIa3.png", + "notifications": false, + "profile_sidebar_fill_color": "F7F1BE", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 2381, + "location": "", + "screen_name": "asadotzler", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 191, + "name": "Asa Dotzler", + "profile_use_background_image": true, + "description": "asa@mozilla.org", + "url": "http://t.co/TFsbThdtN9", + "profile_text_color": "E04C12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2774714763/8b6710ad9bb523019e4ca1a132ed29c1_normal.jpeg", + "profile_background_color": "272A2A", + "created_at": "Thu Nov 08 07:32:25 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2774714763/8b6710ad9bb523019e4ca1a132ed29c1_normal.jpeg", + "favourites_count": 5, + "status": { + "retweet_count": 569, + "retweeted_status": { + "retweet_count": 569, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679078758255497216", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blogs.technet.microsoft.com/mmpc/2015/12/2\u2026", + "url": "https://t.co/kVYfKYJP15", + "expanded_url": "https://blogs.technet.microsoft.com/mmpc/2015/12/21/keeping-browsing-experience-in-users-hands/", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Dec 21 23:19:27 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679078758255497216, + "text": "Breaking: Microsoft bans all adware use of proxies/Winsock/MitM to inject ads. Violators will be marked malware. https://t.co/kVYfKYJP15", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 422, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679418983896887296", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blogs.technet.microsoft.com/mmpc/2015/12/2\u2026", + "url": "https://t.co/kVYfKYJP15", + "expanded_url": "https://blogs.technet.microsoft.com/mmpc/2015/12/21/keeping-browsing-experience-in-users-hands/", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SwiftOnSecurity", + "id_str": "2436389418", + "id": 2436389418, + "indices": [ + 3, + 19 + ], + "name": "SecuriTay" + } + ] + }, + "created_at": "Tue Dec 22 21:51:23 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679418983896887296, + "text": "RT @SwiftOnSecurity: Breaking: Microsoft bans all adware use of proxies/Winsock/MitM to inject ads. Violators will be marked malware. https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 10058662, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441855782758268928/SugecIa3.png", + "statuses_count": 12157, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10058662/1444669718", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3242411", + "following": false, + "friends_count": 130, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/cbeard", + "url": "http://t.co/fLi2DdMgiu", + "expanded_url": "http://linkedin.com/in/cbeard", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/815299669/957c8f532cfc59d140f40e654888f804.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3551, + "location": "San Francisco Bay Area", + "screen_name": "cbeard", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 160, + "name": "Chris Beard", + "profile_use_background_image": false, + "description": "@Mozilla CEO", + "url": "http://t.co/fLi2DdMgiu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/455802966344101888/6Tf6AJlT_normal.jpeg", + "profile_background_color": "00539F", + "created_at": "Mon Apr 02 19:35:28 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/455802966344101888/6Tf6AJlT_normal.jpeg", + "favourites_count": 588, + "status": { + "retweet_count": 7178, + "retweeted_status": { + "retweet_count": 7178, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678639616199557120", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 936, + "h": 710, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 257, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 455, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", + "type": "photo", + "indices": [ + 62, + 85 + ], + "media_url": "http://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", + "display_url": "pic.twitter.com/pXb7F7aWsP", + "id_str": "678639615675269120", + "expanded_url": "http://twitter.com/randfish/status/678639616199557120/photo/1", + "id": 678639615675269120, + "url": "https://t.co/pXb7F7aWsP" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Dec 20 18:14:27 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678639616199557120, + "text": "Mobile isn't killing desktop. It's killing all our free time. https://t.co/pXb7F7aWsP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4222, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679451578667945984", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 936, + "h": 710, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 257, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 455, + "resize": "fit" + } + }, + "source_status_id_str": "678639616199557120", + "url": "https://t.co/pXb7F7aWsP", + "media_url": "http://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", + "source_user_id_str": "6527972", + "id_str": "678639615675269120", + "id": 678639615675269120, + "media_url_https": "https://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", + "type": "photo", + "indices": [ + 76, + 99 + ], + "source_status_id": 678639616199557120, + "source_user_id": 6527972, + "display_url": "pic.twitter.com/pXb7F7aWsP", + "expanded_url": "http://twitter.com/randfish/status/678639616199557120/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "randfish", + "id_str": "6527972", + "id": 6527972, + "indices": [ + 3, + 12 + ], + "name": "Rand Fishkin" + } + ] + }, + "created_at": "Wed Dec 23 00:00:54 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679451578667945984, + "text": "RT @randfish: Mobile isn't killing desktop. It's killing all our free time. https://t.co/pXb7F7aWsP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3242411, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/815299669/957c8f532cfc59d140f40e654888f804.jpeg", + "statuses_count": 459, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3242411/1398780577", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "806757", + "following": false, + "friends_count": 2175, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nodesource.com/company#dshaw", + "url": "https://t.co/XawtxLkLRf", + "expanded_url": "https://nodesource.com/company#dshaw", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/59926981/M104-hs-2003-28-a.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 11990, + "location": "San Francisco, CA", + "screen_name": "dshaw", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 740, + "name": "Dan Shaw", + "profile_use_background_image": true, + "description": "CTO and Co-Founder of @NodeSource - the Enterprise Node.js Company.", + "url": "https://t.co/XawtxLkLRf", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/485564678039302144/Fjxv6IbQ_normal.png", + "profile_background_color": "010302", + "created_at": "Fri Mar 02 18:39:44 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/485564678039302144/Fjxv6IbQ_normal.png", + "favourites_count": 31976, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": "mrohitkunal", + "in_reply_to_user_id": 136649482, + "in_reply_to_status_id_str": "685557670053588992", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685563541332463616", + "id": 685563541332463616, + "text": "@mrohitkunal @sfnode @stinkydofu @NetflixUIE Unrelated.", + "in_reply_to_user_id_str": "136649482", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mrohitkunal", + "id_str": "136649482", + "id": 136649482, + "indices": [ + 0, + 12 + ], + "name": "Rohit Kunal" + }, + { + "screen_name": "sfnode", + "id_str": "2800676574", + "id": 2800676574, + "indices": [ + 13, + 20 + ], + "name": "SFNode" + }, + { + "screen_name": "stinkydofu", + "id_str": "16318984", + "id": 16318984, + "indices": [ + 21, + 32 + ], + "name": "Alex Liu" + }, + { + "screen_name": "NetflixUIE", + "id_str": "3018765357", + "id": 3018765357, + "indices": [ + 33, + 44 + ], + "name": "Netflix UI Engineers" + } + ] + }, + "created_at": "Fri Jan 08 20:47:40 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685557670053588992, + "lang": "en" + }, + "default_profile_image": false, + "id": 806757, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/59926981/M104-hs-2003-28-a.jpg", + "statuses_count": 43785, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/806757/1382916317", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "843799844", + "following": false, + "friends_count": 166, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "isode.com", + "url": "http://t.co/4IcOx6dh", + "expanded_url": "http://www.isode.com", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778257871/1ed94c30a10335b03f086800cbad5962.png", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "0056A6", + "geo_enabled": true, + "followers_count": 130, + "location": "Hampton, Middlesex, UK", + "screen_name": "Isode_Ltd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Isode", + "profile_use_background_image": true, + "description": "The leading messaging server software company, enabling secure communications in challenging deployments worldwide.", + "url": "http://t.co/4IcOx6dh", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/643441999111155712/w0E48ey1_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Sep 24 15:36:34 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/643441999111155712/w0E48ey1_normal.png", + "favourites_count": 6, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685487692977684481", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1n7HsxQ", + "url": "https://t.co/oisefvTtJj", + "expanded_url": "http://buff.ly/1n7HsxQ", + "indices": [ + 10, + 33 + ] + }, + { + "display_url": "buff.ly/1n7HtSm", + "url": "https://t.co/PF68VdHNot", + "expanded_url": "http://buff.ly/1n7HtSm", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [ + { + "indices": [ + 104, + 114 + ], + "text": "icaoECOND" + } + ], + "user_mentions": [ + { + "screen_name": "icao", + "id_str": "246309084", + "id": 246309084, + "indices": [ + 3, + 8 + ], + "name": "ICAO " + } + ] + }, + "created_at": "Fri Jan 08 15:46:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685487692977684481, + "text": "RT @icao: https://t.co/oisefvTtJj: Middle East grew strongly in freight traffic by +8.3%. Download now! #icaoECOND\u2026 https://t.co/PF68VdHNot", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 843799844, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778257871/1ed94c30a10335b03f086800cbad5962.png", + "statuses_count": 1356, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/843799844/1442312979", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "29255412", + "following": false, + "friends_count": 619, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tjholowaychuk.com", + "url": "https://t.co/uSeKUUmcKC", + "expanded_url": "http://tjholowaychuk.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 26354, + "location": "Victoria BC", + "screen_name": "tjholowaychuk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1327, + "name": "TJ Holowaychuk", + "profile_use_background_image": false, + "description": "Code. Photography. Art. @tj on Github. @tjholowaychuk on Medium.", + "url": "https://t.co/uSeKUUmcKC", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000226613002/36623ae09f553713c575c97c77544b49_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Apr 06 18:05:41 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000226613002/36623ae09f553713c575c97c77544b49_normal.jpeg", + "favourites_count": 1768, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "PreetamJinka", + "in_reply_to_user_id": 302840829, + "in_reply_to_status_id_str": "685598202096123904", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685600661463928832", + "id": 685600661463928832, + "text": "@PreetamJinka interesting use-case!", + "in_reply_to_user_id_str": "302840829", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PreetamJinka", + "id_str": "302840829", + "id": 302840829, + "indices": [ + 0, + 13 + ], + "name": "Preetam Jinka" + } + ] + }, + "created_at": "Fri Jan 08 23:15:10 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598202096123904, + "lang": "en" + }, + "default_profile_image": false, + "id": 29255412, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 13840, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29255412/1448314322", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "8038312", + "following": false, + "friends_count": 400, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.izs.me", + "url": "https://t.co/EP1ieD9VvF", + "expanded_url": "http://blog.izs.me/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 13131, + "location": "Oak Town CA", + "screen_name": "izs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 902, + "name": "Isaac Z. Schlueter", + "profile_use_background_image": true, + "description": "npm ceo. aspiring empath. zero time for shitbirds. he/him/his", + "url": "https://t.co/EP1ieD9VvF", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649690687860899840/bSyKUJfg_normal.png", + "profile_background_color": "EBEBEB", + "created_at": "Tue Aug 07 20:44:59 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649690687860899840/bSyKUJfg_normal.png", + "favourites_count": 4305, + "status": { + "retweet_count": 20, + "retweeted_status": { + "retweet_count": 20, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685388664596250624", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 537, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 178, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 314, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", + "type": "photo", + "indices": [ + 23, + 46 + ], + "media_url": "http://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", + "display_url": "pic.twitter.com/TxHrDuOT4E", + "id_str": "685388663396675584", + "expanded_url": "http://twitter.com/jonginn/status/685388664596250624/photo/1", + "id": 685388663396675584, + "url": "https://t.co/TxHrDuOT4E" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 09:12:46 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685388664596250624, + "text": "Happy incept day, Roy! https://t.co/TxHrDuOT4E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Fenix for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685518247588843521", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 537, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 178, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 314, + "resize": "fit" + } + }, + "source_status_id_str": "685388664596250624", + "url": "https://t.co/TxHrDuOT4E", + "media_url": "http://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", + "source_user_id_str": "16461969", + "id_str": "685388663396675584", + "id": 685388663396675584, + "media_url_https": "https://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", + "type": "photo", + "indices": [ + 36, + 59 + ], + "source_status_id": 685388664596250624, + "source_user_id": 16461969, + "display_url": "pic.twitter.com/TxHrDuOT4E", + "expanded_url": "http://twitter.com/jonginn/status/685388664596250624/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jonginn", + "id_str": "16461969", + "id": 16461969, + "indices": [ + 3, + 11 + ], + "name": "Jonathan Ginn" + } + ] + }, + "created_at": "Fri Jan 08 17:47:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685518247588843521, + "text": "RT @jonginn: Happy incept day, Roy! https://t.co/TxHrDuOT4E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 8038312, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 38341, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8038312/1448927004", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "668423", + "following": false, + "friends_count": 456, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mikealrogers.com", + "url": "https://t.co/7kRL5uIWRL", + "expanded_url": "http://mikealrogers.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 13568, + "location": "San Francisco, CA", + "screen_name": "mikeal", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 887, + "name": "Mikeal Rogers", + "profile_use_background_image": true, + "description": "Creator of NodeConf & request. Community @ Node.js Foundation. All gifs from One-Punch Man :)", + "url": "https://t.co/7kRL5uIWRL", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/549609524038877184/01oMFk1H_normal.png", + "profile_background_color": "9AE4E8", + "created_at": "Fri Jan 19 22:47:30 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/549609524038877184/01oMFk1H_normal.png", + "favourites_count": 3769, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": "tomdale", + "in_reply_to_user_id": 668863, + "in_reply_to_status_id_str": "685581797850279937", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610148786614272", + "id": 685610148786614272, + "text": "@tomdale @mjasay don't worry, eventually it's consistent ;)", + "in_reply_to_user_id_str": "668863", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tomdale", + "id_str": "668863", + "id": 668863, + "indices": [ + 0, + 8 + ], + "name": "Tom Dale" + }, + { + "screen_name": "mjasay", + "id_str": "7617702", + "id": 7617702, + "indices": [ + 9, + 16 + ], + "name": "Matt Asay" + } + ] + }, + "created_at": "Fri Jan 08 23:52:52 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685581797850279937, + "lang": "en" + }, + "default_profile_image": false, + "id": 668423, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 37228, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/668423/1419820652", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "12241752", + "following": false, + "friends_count": 3595, + "entities": { + "description": { + "urls": [ + { + "display_url": "instagram.com/catmapper", + "url": "https://t.co/wBC1sQc8kf", + "expanded_url": "https://instagram.com/catmapper", + "indices": [ + 94, + 117 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "maxogden.com", + "url": "http://t.co/GAcgXmdLV9", + "expanded_url": "http://maxogden.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000181139101/ckYUsb2C.png", + "notifications": false, + "profile_sidebar_fill_color": "B5E8FC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 16188, + "location": "~/PDX", + "screen_name": "denormalize", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 991, + "name": "maxwell ogden", + "profile_use_background_image": false, + "description": "computer programmer @dat_project working on open source data tools. amateur cat photographer (https://t.co/wBC1sQc8kf). author of JS For Cats", + "url": "http://t.co/GAcgXmdLV9", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661753310819434496/GqJ8Kn97_normal.jpg", + "profile_background_color": "D6F7FF", + "created_at": "Mon Jan 14 23:11:21 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661753310819434496/GqJ8Kn97_normal.jpg", + "favourites_count": 204, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "lippytak", + "in_reply_to_user_id": 23721781, + "in_reply_to_status_id_str": "685258489900351488", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685259387338792960", + "id": 685259387338792960, + "text": "@lippytak I do (on mac) CMD + C <SPACE> V A C <CLICK>", + "in_reply_to_user_id_str": "23721781", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lippytak", + "id_str": "23721781", + "id": 23721781, + "indices": [ + 0, + 9 + ], + "name": "Jake Solomon" + } + ] + }, + "created_at": "Fri Jan 08 00:39:04 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685258489900351488, + "lang": "en" + }, + "default_profile_image": false, + "id": 12241752, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000181139101/ckYUsb2C.png", + "statuses_count": 16479, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12241752/1446598756", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "35432643", + "following": false, + "friends_count": 1461, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "addyosmani.com", + "url": "https://t.co/qO6rgXCMIG", + "expanded_url": "http://www.addyosmani.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/666933300175376384/6j0swZpR.png", + "notifications": false, + "profile_sidebar_fill_color": "56E372", + "profile_link_color": "9D582E", + "geo_enabled": true, + "followers_count": 119957, + "location": "London, England", + "screen_name": "addyosmani", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5415, + "name": "Addy Osmani", + "profile_use_background_image": true, + "description": "Engineer at Google working on Chrome & @Polymer \u2022 Author \u2022 Creator of TodoMVC, @Yeoman, Material Design Lite, Critical \u2022 Passionate about web tooling", + "url": "https://t.co/qO6rgXCMIG", + "profile_text_color": "0A0A0A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/586079587626422272/80Q5wAFU_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Apr 26 08:40:11 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/586079587626422272/80Q5wAFU_normal.jpg", + "favourites_count": 14237, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jeffposnick", + "in_reply_to_user_id": 11817932, + "in_reply_to_status_id_str": "685530143583027200", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685531187314573312", + "id": 685531187314573312, + "text": "@jeffposnick YES! Have been hoping we would move in this direction. Will leave some thoughts after the weekend :)", + "in_reply_to_user_id_str": "11817932", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jeffposnick", + "id_str": "11817932", + "id": 11817932, + "indices": [ + 0, + 12 + ], + "name": "Jeffrey Posnick" + } + ] + }, + "created_at": "Fri Jan 08 18:39:06 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685530143583027200, + "lang": "en" + }, + "default_profile_image": false, + "id": 35432643, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/666933300175376384/6j0swZpR.png", + "statuses_count": 14349, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35432643/1449774217", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1671811", + "following": false, + "friends_count": 1852, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paulirish.com", + "url": "http://t.co/fbpDRudFKn", + "expanded_url": "http://paulirish.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2411001/watermelon-1600x1200.jpg", + "notifications": false, + "profile_sidebar_fill_color": "CBF8BD", + "profile_link_color": "3D8C3A", + "geo_enabled": true, + "followers_count": 184666, + "location": "Palo Alto", + "screen_name": "paul_irish", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8177, + "name": "Paul Irish", + "profile_use_background_image": true, + "description": "The web is awesome, let's make it even better \u2022 I work on Chrome DevTools and browser performance \u2022 big fan of rye whiskey, data and whimsy", + "url": "http://t.co/fbpDRudFKn", + "profile_text_color": "323232", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/420826194083213312/CP1RmLa3_normal.jpeg", + "profile_background_color": "E9E9E9", + "created_at": "Tue Mar 20 21:15:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "1E4B04", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/420826194083213312/CP1RmLa3_normal.jpeg", + "favourites_count": 3307, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 1679, + "possibly_sensitive": false, + "id_str": "685226978199207936", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "code.google.com/p/chromium/iss\u2026", + "url": "https://t.co/yoPGAGsYuJ", + "expanded_url": "https://code.google.com/p/chromium/issues/detail?id=478214", + "indices": [ + 58, + 81 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "javan", + "id_str": "1679", + "id": 1679, + "indices": [ + 0, + 6 + ], + "name": "Javan Makhmali" + } + ] + }, + "created_at": "Thu Jan 07 22:30:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "1679", + "place": null, + "in_reply_to_screen_name": "javan", + "in_reply_to_status_id_str": "685182546498449408", + "truncated": false, + "id": 685226978199207936, + "text": "@javan This is a bug that we'll eventually fix in Chrome: https://t.co/yoPGAGsYuJ In the meantime, your solution is v nice. :)", + "coordinates": null, + "in_reply_to_status_id": 685182546498449408, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1671811, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2411001/watermelon-1600x1200.jpg", + "statuses_count": 24010, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "143128205", + "following": false, + "friends_count": 939, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chriskranky.com", + "url": "http://t.co/IzUIseAKTj", + "expanded_url": "http://www.chriskranky.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/462058347005370369/5bvgJJ2N.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1072, + "location": "San Francisco", + "screen_name": "ckoehncke", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "Chris Koehncke", + "profile_use_background_image": true, + "description": "Following a new era of communications & collaboration with HTML5 & WebRTC", + "url": "http://t.co/IzUIseAKTj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1408852205/fuzzy_normal.jpg", + "profile_background_color": "1F1520", + "created_at": "Wed May 12 17:25:29 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1408852205/fuzzy_normal.jpg", + "favourites_count": 137, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685256148669222912", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/JohnLegere/sta\u2026", + "url": "https://t.co/HqFQtsAKND", + "expanded_url": "https://twitter.com/JohnLegere/status/685201130427531264", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 00:26:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685256148669222912, + "text": "Ugh CEO put foot in mouth with this one, I feel the pain https://t.co/HqFQtsAKND", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 143128205, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/462058347005370369/5bvgJJ2N.jpeg", + "statuses_count": 1295, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/143128205/1398998211", + "is_translator": false + } + ], + "previous_cursor": -1494685098210881400, + "previous_cursor_str": "-1494685098210881400", + "next_cursor_str": "1489123725664322527" +} \ No newline at end of file diff --git a/testdata/get_friends_2.json b/testdata/get_friends_2.json new file mode 100644 index 00000000..7e8eba86 --- /dev/null +++ b/testdata/get_friends_2.json @@ -0,0 +1,27010 @@ +{ + "next_cursor": 1488977745323208956, + "users": [ + { + "time_zone": "Bern", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "2898431", + "following": false, + "friends_count": 453, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stefan-strigler.de", + "url": "http://t.co/MMFUtto9Dc", + "expanded_url": "http://stefan-strigler.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/219733938/IMG_0074.JPG", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 539, + "location": "52.484125,13.447212", + "screen_name": "zeank", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "stefan strigler", + "profile_use_background_image": true, + "description": "jabbermaniac, javascript and erlang enthusiast", + "url": "http://t.co/MMFUtto9Dc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/589719809803288577/i1K0dkpK_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 29 21:46:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/589719809803288577/i1K0dkpK_normal.jpg", + "favourites_count": 7605, + "status": { + "retweet_count": 107, + "retweeted_status": { + "retweet_count": 107, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685241368323567617", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 733, + "h": 387, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 316, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 179, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", + "display_url": "pic.twitter.com/gnZlI5niUq", + "id_str": "685241367488929792", + "expanded_url": "http://twitter.com/TheRoyalTbomb/status/685241368323567617/photo/1", + "id": 685241367488929792, + "url": "https://t.co/gnZlI5niUq" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "duckduckgo", + "id_str": "14504859", + "id": 14504859, + "indices": [ + 46, + 57 + ], + "name": "DuckDuckGo" + } + ] + }, + "created_at": "Thu Jan 07 23:27:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685241368323567617, + "text": "Just learned that typing 'color picker' in to @duckduckgo brings up ... a color picker!! Another reason I love ddg. https://t.co/gnZlI5niUq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 110, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685455218205655040", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 733, + "h": 387, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 316, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 179, + "resize": "fit" + } + }, + "source_status_id_str": "685241368323567617", + "url": "https://t.co/gnZlI5niUq", + "media_url": "http://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", + "source_user_id_str": "281405328", + "id_str": "685241367488929792", + "id": 685241367488929792, + "media_url_https": "https://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685241368323567617, + "source_user_id": 281405328, + "display_url": "pic.twitter.com/gnZlI5niUq", + "expanded_url": "http://twitter.com/TheRoyalTbomb/status/685241368323567617/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheRoyalTbomb", + "id_str": "281405328", + "id": 281405328, + "indices": [ + 3, + 17 + ], + "name": "Mike Tannenbaum \u30c4" + }, + { + "screen_name": "duckduckgo", + "id_str": "14504859", + "id": 14504859, + "indices": [ + 65, + 76 + ], + "name": "DuckDuckGo" + } + ] + }, + "created_at": "Fri Jan 08 13:37:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685455218205655040, + "text": "RT @TheRoyalTbomb: Just learned that typing 'color picker' in to @duckduckgo brings up ... a color picker!! Another reason I love ddg. http\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2898431, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/219733938/IMG_0074.JPG", + "statuses_count": 14855, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2898431/1399637633", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1537305181", + "following": false, + "friends_count": 71, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "talky.io", + "url": "http://t.co/ENtk7BVm7Z", + "expanded_url": "http://talky.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 806, + "location": "Richland, WA", + "screen_name": "usetalky", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 40, + "name": "Talky", + "profile_use_background_image": true, + "description": "Group video chat and screen sharing, built with love by @andyet - ask us about on-site versions and realtime product development!", + "url": "http://t.co/ENtk7BVm7Z", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000026458107/d122752f4dc74a93ea4375c24e1cc4eb_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Jun 21 20:27:02 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000026458107/d122752f4dc74a93ea4375c24e1cc4eb_normal.png", + "favourites_count": 202, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "dominictarr", + "in_reply_to_user_id": 136933779, + "in_reply_to_status_id_str": "666740095454724098", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "666759139003990017", + "id": 666759139003990017, + "text": "@dominictarr @dan_jenkins @fritzvd Yes, Apple doesn't support the WEbRTC standard yet in Safari. Someday, we hope...", + "in_reply_to_user_id_str": "136933779", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dominictarr", + "id_str": "136933779", + "id": 136933779, + "indices": [ + 0, + 12 + ], + "name": "Dominic Tarr" + }, + { + "screen_name": "dan_jenkins", + "id_str": "16101889", + "id": 16101889, + "indices": [ + 13, + 25 + ], + "name": "Dan Jenkins" + }, + { + "screen_name": "fritzvd", + "id_str": "26720376", + "id": 26720376, + "indices": [ + 26, + 34 + ], + "name": "Boring Stranger" + } + ] + }, + "created_at": "Tue Nov 17 23:25:41 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 666740095454724098, + "lang": "en" + }, + "default_profile_image": false, + "id": 1537305181, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 471, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1537305181/1433181818", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "752673", + "following": false, + "friends_count": 3265, + "entities": { + "description": { + "urls": [ + { + "display_url": "ukiyo-e.org", + "url": "http://t.co/vc69XXB4fq", + "expanded_url": "http://ukiyo-e.org", + "indices": [ + 76, + 98 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ejohn.org", + "url": "http://t.co/DhxxrmIfa8", + "expanded_url": "http://ejohn.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/877581375/8dffa13dd0d000736ca8b34b794cda8f.png", + "notifications": false, + "profile_sidebar_fill_color": "F2EEBB", + "profile_link_color": "224F52", + "geo_enabled": true, + "followers_count": 213204, + "location": "Brooklyn, NY", + "screen_name": "jeresig", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 9950, + "name": "John Resig", + "profile_use_background_image": true, + "description": "Creator of @jquery, JavaScript programmer, author, Japanese woodblock nerd (http://t.co/vc69XXB4fq), work at @khanacademy.", + "url": "http://t.co/DhxxrmIfa8", + "profile_text_color": "272727", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/628273703587975168/YorO7ort_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Sat Feb 03 20:17:32 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/628273703587975168/YorO7ort_normal.png", + "favourites_count": 2622, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mrb_bk", + "in_reply_to_user_id": 10179552, + "in_reply_to_status_id_str": "684370709590749185", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "684384448872361984", + "id": 684384448872361984, + "text": "@mrb_bk is that in the peacock room?", + "in_reply_to_user_id_str": "10179552", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mrb_bk", + "id_str": "10179552", + "id": 10179552, + "indices": [ + 0, + 7 + ], + "name": "mrb" + } + ] + }, + "created_at": "Tue Jan 05 14:42:22 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684370709590749185, + "lang": "en" + }, + "default_profile_image": false, + "id": 752673, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/877581375/8dffa13dd0d000736ca8b34b794cda8f.png", + "statuses_count": 9059, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/752673/1396970219", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "9533042", + "following": false, + "friends_count": 786, + "entities": { + "description": { + "urls": [ + { + "display_url": "mozilla.org", + "url": "https://t.co/3BL4fnhZut", + "expanded_url": "http://mozilla.org", + "indices": [ + 45, + 68 + ] + }, + { + "display_url": "brave.com", + "url": "https://t.co/NV4bmd6vxq", + "expanded_url": "https://brave.com/", + "indices": [ + 101, + 124 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "brendaneich.com", + "url": "https://t.co/31gjnOax12", + "expanded_url": "http://www.brendaneich.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/179519748/blog-bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 50699, + "location": "Everywhere JS runs", + "screen_name": "BrendanEich", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2899, + "name": "BrendanEich", + "profile_use_background_image": true, + "description": "Brendan Eich invented JavaScript, co-founded https://t.co/3BL4fnhZut, and has founded a new startup, https://t.co/NV4bmd6vxq.", + "url": "https://t.co/31gjnOax12", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/603270050556956672/T0mfRsil_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Oct 19 01:09:03 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/603270050556956672/T0mfRsil_normal.png", + "favourites_count": 7179, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685595851637534721", + "id": 685595851637534721, + "text": "I just heard some more terrible and wasteful spending going on at $YHOO", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [ + { + "indices": [ + 66, + 71 + ], + "text": "YHOO" + } + ], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:56:03 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685596370137296896", + "geo": null, + "entities": { + "symbols": [ + { + "indices": [ + 83, + 88 + ], + "text": "YHOO" + } + ], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ericjackson", + "id_str": "818071", + "id": 818071, + "indices": [ + 3, + 15 + ], + "name": "Eric Jackson" + } + ] + }, + "created_at": "Fri Jan 08 22:58:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685596370137296896, + "text": "RT @ericjackson: I just heard some more terrible and wasteful spending going on at $YHOO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 9533042, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/179519748/blog-bg.jpg", + "statuses_count": 35228, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9533042/1432670315", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15618553", + "following": false, + "friends_count": 732, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gatherthepeople.com", + "url": "https://t.co/9l9PYSHSTI", + "expanded_url": "https://gatherthepeople.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000048572233/104e2ce2a8d792fc7923def2deeef06d.png", + "notifications": false, + "profile_sidebar_fill_color": "E1E3D8", + "profile_link_color": "0EB0CD", + "geo_enabled": false, + "followers_count": 5849, + "location": "Norfolk, VA", + "screen_name": "sarahjbray", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 391, + "name": "Sarah Bray", + "profile_use_background_image": true, + "description": "Human-centered marketing strategist at @gathertheppl. \u2764\ufe0f writing, design, dev, & you. Side projects: @everybranchis & toast.", + "url": "https://t.co/9l9PYSHSTI", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494526865919315968/f86JgG9I_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Sun Jul 27 07:57:12 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494526865919315968/f86JgG9I_normal.jpeg", + "favourites_count": 8734, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685577740284760068", + "id": 685577740284760068, + "text": "Uggh. I hate it when I use a winky face instead of a smiley face by accident. Makes so many conversations unintentionally creepy.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:44:05 +0000 2016", + "source": "Buffer", + "favorite_count": 6, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15618553, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000048572233/104e2ce2a8d792fc7923def2deeef06d.png", + "statuses_count": 18374, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15618553/1431446371", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "435181415", + "following": false, + "friends_count": 262, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "redhat.com", + "url": "http://t.co/zYkyiWoxru", + "expanded_url": "http://www.redhat.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591912595/kh0uwwpav0e941hh4hdu.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1241, + "location": "", + "screen_name": "RHELdevelop", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "RHELdevelop", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/zYkyiWoxru", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2267097300/l06f4pzvkc62r6h4heyz_normal.png", + "profile_background_color": "2C2C2C", + "created_at": "Mon Dec 12 19:27:58 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2267097300/l06f4pzvkc62r6h4heyz_normal.png", + "favourites_count": 4, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685140373132283904", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wp.me/p2WBxv-1Kyi", + "url": "https://t.co/Eovnh7YrfG", + "expanded_url": "http://wp.me/p2WBxv-1Kyi", + "indices": [ + 31, + 54 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 16:46:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685140373132283904, + "text": "React.js with Isotope and\u00a0Flux https://t.co/Eovnh7YrfG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "WordPress.com" + }, + "default_profile_image": false, + "id": 435181415, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591912595/kh0uwwpav0e941hh4hdu.jpeg", + "statuses_count": 748, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "21702939", + "following": false, + "friends_count": 368, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ayena.de", + "url": "http://t.co/PPmUCAkPiS", + "expanded_url": "http://ayena.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "94D487", + "geo_enabled": false, + "followers_count": 110, + "location": "Hamburg, Germany", + "screen_name": "tobiasfar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Tobias Markmann", + "profile_use_background_image": false, + "description": "OSS dev, XMPP, SASL, security, crypto, CompSci, usability, UX, etc.", + "url": "http://t.co/PPmUCAkPiS", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2634231247/af02b3e9ab7d867850492242f0339858_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Feb 23 22:40:23 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2634231247/af02b3e9ab7d867850492242f0339858_normal.jpeg", + "favourites_count": 539, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685476729222201344", + "id": 685476729222201344, + "text": "Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #SpellCheckNoHelp", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 118, + 135 + ], + "text": "SpellCheckNoHelp" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:02:42 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685478054521651200", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 135, + 140 + ], + "text": "SpellCheckNoHelp" + } + ], + "user_mentions": [ + { + "screen_name": "willsheward", + "id_str": "16362966", + "id": 16362966, + "indices": [ + 3, + 15 + ], + "name": "Will Sheward" + } + ] + }, + "created_at": "Fri Jan 08 15:07:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685478054521651200, + "text": "RT @willsheward: Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #Spe\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 21702939, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 1189, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21702939/1422117406", + "is_translator": false + }, + { + "time_zone": "Edinburgh", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "18728950", + "following": false, + "friends_count": 2095, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kateho.com", + "url": "http://t.co/c6WNxKhxL9", + "expanded_url": "http://www.kateho.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 3184, + "location": "Edinburgh, Scotland", + "screen_name": "kateho", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 176, + "name": "Kate Ho", + "profile_use_background_image": false, + "description": "All about User Experience. Designs mobile apps. Builds kids games. Love geeking with the arts. Head of Product at @mygovscot", + "url": "http://t.co/c6WNxKhxL9", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/451637989467119616/Qjrmjbpt_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Jan 07 17:18:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/451637989467119616/Qjrmjbpt_normal.png", + "favourites_count": 340, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "redowle", + "in_reply_to_user_id": 2279940315, + "in_reply_to_status_id_str": "685527764666023940", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685562519843373056", + "id": 685562519843373056, + "text": "@redowle @grahambeedie check you out being a philosopher!", + "in_reply_to_user_id_str": "2279940315", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "redowle", + "id_str": "2279940315", + "id": 2279940315, + "indices": [ + 0, + 8 + ], + "name": "rachel dowle" + }, + { + "screen_name": "grahambeedie", + "id_str": "20667729", + "id": 20667729, + "indices": [ + 9, + 22 + ], + "name": "Graham Beedie" + } + ] + }, + "created_at": "Fri Jan 08 20:43:36 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685527764666023940, + "lang": "en" + }, + "default_profile_image": false, + "id": 18728950, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 3071, + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "25798693", + "following": false, + "friends_count": 328, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hilaryroberts.co.uk", + "url": "http://t.co/kZA4hPOy7m", + "expanded_url": "http://www.hilaryroberts.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/783108438/ebfc698e202070d0533fc87104057ce7.png", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1075, + "location": "", + "screen_name": "hilcsr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 49, + "name": "Hilary Roberts", + "profile_use_background_image": true, + "description": "Product Manager @Skyscanner. Wife to @philip_roberts. General enthusiasm.", + "url": "http://t.co/kZA4hPOy7m", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678141690834780160/h0gxn2RA_normal.jpg", + "profile_background_color": "EEEEEE", + "created_at": "Sun Mar 22 08:40:41 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678141690834780160/h0gxn2RA_normal.jpg", + "favourites_count": 154, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "hilcsr", + "in_reply_to_user_id": 25798693, + "in_reply_to_status_id_str": "566370581927714816", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "678141033792847872", + "id": 678141033792847872, + "text": "2015 in review: Belfast | Budapest | Dublin | Inverness | Kyoto | London | Manchester | Oxford | Seattle | Sofia | Strasbourg | Tokyo.", + "in_reply_to_user_id_str": "25798693", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Dec 19 09:13:16 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 566370581927714816, + "lang": "en" + }, + "default_profile_image": false, + "id": 25798693, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/783108438/ebfc698e202070d0533fc87104057ce7.png", + "statuses_count": 2576, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/25798693/1450516588", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14883693", + "following": false, + "friends_count": 216, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000005250560/b4ae108d319a0a71fe4743fe1f8234f6.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "FF7502", + "geo_enabled": true, + "followers_count": 410, + "location": "", + "screen_name": "babyfro", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Rachel Baldwin", + "profile_use_background_image": true, + "description": "Stuff goes here.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/647197621082198016/CSY6U7IL_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Fri May 23 16:42:28 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/647197621082198016/CSY6U7IL_normal.jpg", + "favourites_count": 188, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684821399475630080", + "id": 684821399475630080, + "text": "Importing and tossing CD's. So sick of random clutter. Who needs spring cleaning when you can have a Winter Wash!!!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 19:38:39 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14883693, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000005250560/b4ae108d319a0a71fe4743fe1f8234f6.jpeg", + "statuses_count": 3397, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14883693/1443145419", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14518875", + "following": false, + "friends_count": 461, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fitnerd.amac.me", + "url": "http://t.co/uSmPFCWpb4", + "expanded_url": "http://fitnerd.amac.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 699, + "location": "Sandpoint, ID", + "screen_name": "aaronmccall", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 58, + "name": "Aaron McCall", + "profile_use_background_image": true, + "description": "Husband, father, maker, lifter, foodie. Love & minister with @PastorAmberDawn. Work @andyet. Live in @CityOfBoise.", + "url": "http://t.co/uSmPFCWpb4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/585236377748443136/foTlvySa_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu Apr 24 22:29:22 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/585236377748443136/foTlvySa_normal.jpg", + "favourites_count": 531, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "680186676124237824", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXCCLZHWQAAFnWM.jpg", + "type": "photo", + "indices": [ + 25, + 48 + ], + "media_url": "http://pbs.twimg.com/media/CXCCLZHWQAAFnWM.jpg", + "display_url": "pic.twitter.com/woeqDEPfa6", + "id_str": "680186675964821504", + "expanded_url": "http://twitter.com/aaronmccall/status/680186676124237824/photo/1", + "id": 680186675964821504, + "url": "https://t.co/woeqDEPfa6" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Dec 25 00:41:55 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "nl", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 680186676124237824, + "text": "Winter Wonderland it is! https://t.co/woeqDEPfa6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "IFTTT" + }, + "default_profile_image": false, + "id": 14518875, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5031, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14518875/1437492841", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "15810455", + "following": false, + "friends_count": 99, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "latentflip.com", + "url": "http://t.co/D5e7NnDsG4", + "expanded_url": "http://www.latentflip.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3159, + "location": "Edinburgh", + "screen_name": "philip_roberts", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 184, + "name": "Philip Roberts", + "profile_use_background_image": false, + "description": "JavaScripter and ethicist with my friends at @andyet, husband to @hilcsr.", + "url": "http://t.co/D5e7NnDsG4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657700482220216320/UfMaYL1q_normal.jpg", + "profile_background_color": "022330", + "created_at": "Mon Aug 11 17:04:40 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657700482220216320/UfMaYL1q_normal.jpg", + "favourites_count": 2494, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 25183606, + "possibly_sensitive": false, + "id_str": "685549648233263104", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "latentflip.com/emergency-jasp\u2026", + "url": "https://t.co/u5vYJgOHP2", + "expanded_url": "http://latentflip.com/emergency-jasper/", + "indices": [ + 18, + 41 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Charlotteis", + "id_str": "25183606", + "id": 25183606, + "indices": [ + 0, + 12 + ], + "name": "console.warn()" + } + ] + }, + "created_at": "Fri Jan 08 19:52:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "25183606", + "place": { + "url": "https://api.twitter.com/1.1/geo/id/7ae9e2f2ff7a87cd.json", + "country": "United Kingdom", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -3.3285119, + 55.894729 + ], + [ + -3.077505, + 55.894729 + ], + [ + -3.077505, + 55.991662 + ], + [ + -3.3285119, + 55.991662 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "GB", + "contained_within": [], + "full_name": "Edinburgh, Scotland", + "id": "7ae9e2f2ff7a87cd", + "name": "Edinburgh" + }, + "in_reply_to_screen_name": "Charlotteis", + "in_reply_to_status_id_str": "685549471275597824", + "truncated": false, + "id": 685549648233263104, + "text": "@Charlotteis oops https://t.co/u5vYJgOHP2", + "coordinates": null, + "in_reply_to_status_id": 685549471275597824, + "favorite_count": 1, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 15810455, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 23882, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15810455/1385903051", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "622564842", + "following": false, + "friends_count": 21, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "liftsecurity.io", + "url": "http://t.co/SrWJg242Xh", + "expanded_url": "http://liftsecurity.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/597700721/8vp76usrc2cf6ko1ftdq.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B9BDB", + "geo_enabled": false, + "followers_count": 677, + "location": "Richland, WA", + "screen_name": "LiftSecurity", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "^lift security", + "profile_use_background_image": true, + "description": "We're here to guide your team in building secure web applications. Security Assessments, Training, and Consulting.", + "url": "http://t.co/SrWJg242Xh", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/497855749989466112/uuluTvQ__normal.png", + "profile_background_color": "FAFAFA", + "created_at": "Sat Jun 30 04:03:28 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/497855749989466112/uuluTvQ__normal.png", + "favourites_count": 127, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683737775858794497", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "it.slashdot.org/story/16/01/03\u2026", + "url": "https://t.co/nT7CXrmKCP", + "expanded_url": "http://it.slashdot.org/story/16/01/03/1541254/first-nodejs-powered-ransomware-discovered?utm_source=slashdot&utm_medium=twitter", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Jan 03 19:52:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683737775858794497, + "text": "The First Node.js Powered Ransomware Discovered. https://t.co/nT7CXrmKCP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 622564842, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/597700721/8vp76usrc2cf6ko1ftdq.jpeg", + "statuses_count": 275, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "41294568", + "following": false, + "friends_count": 60, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyet.com", + "url": "https://t.co/SteW4uB7tS", + "expanded_url": "http://andyet.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/50448757/headertwitter3.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDDDDD", + "profile_link_color": "3B9BDB", + "geo_enabled": true, + "followers_count": 4489, + "location": "Richland, WA", + "screen_name": "andyet", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 265, + "name": "&yet", + "profile_use_background_image": true, + "description": "We create & consult from dream to deploy. We're the kind & efficient sort of perfectionists.\n\nUX + JS + Node + Realtime\n\n@liftsecurity @usetalky @nodesecurity", + "url": "https://t.co/SteW4uB7tS", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/630588077510033408/YoZIkOzS_normal.png", + "profile_background_color": "FAFAFA", + "created_at": "Wed May 20 04:18:08 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "555555", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/630588077510033408/YoZIkOzS_normal.png", + "favourites_count": 921, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684857661091790848", + "id": 684857661091790848, + "text": "Hallway talks today - Star Wars, reading levels, the one cow coffee mug in the office, teachers, and upcoming art shows.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 22:02:45 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 8, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 41294568, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/50448757/headertwitter3.jpg", + "statuses_count": 2468, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41294568/1447448326", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "123851638", + "following": false, + "friends_count": 85, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kismith.co.uk", + "url": "http://t.co/46yZ8T0uTP", + "expanded_url": "http://kismith.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 188, + "location": "", + "screen_name": "definitivekev", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Kevin Smith", + "profile_use_background_image": true, + "description": "XMPP developer / author, Swift, Psi, XMPP: The Definitive Guide. Techie side of @KevTWondersheep", + "url": "http://t.co/46yZ8T0uTP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/758031559/avatar-me2_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 17 12:08:32 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/758031559/avatar-me2_normal.png", + "favourites_count": 3, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "679707901062180865", + "id": 679707901062180865, + "text": "Ah yes, that \"But the Internet said this should work!\" moment when trying to write CSS. Flexbox: 1, Kev: 0.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 23 16:59:26 +0000 2015", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 123851638, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 190, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "47908980", + "following": false, + "friends_count": 399, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ehsanakhgari.org", + "url": "http://t.co/k2Dqta2KPz", + "expanded_url": "http://ehsanakhgari.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": false, + "followers_count": 927, + "location": "Toronto", + "screen_name": "ehsanakhgari", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "Ehsan Akhgari", + "profile_use_background_image": true, + "description": "Mozilla hacker", + "url": "http://t.co/k2Dqta2KPz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/522494268812701696/Pf-iJWP8_normal.jpeg", + "profile_background_color": "709397", + "created_at": "Wed Jun 17 09:31:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522494268812701696/Pf-iJWP8_normal.jpeg", + "favourites_count": 13, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ehsanakhgari", + "in_reply_to_user_id": 47908980, + "in_reply_to_status_id_str": "685598451988561921", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685598842050482177", + "id": 685598842050482177, + "text": "@inexorabletash @mikewest @metromoxie @jaffathecake @wanderview @ericlaw IIRC our number is 0.05% of page loads.", + "in_reply_to_user_id_str": "47908980", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "inexorabletash", + "id_str": "15871491", + "id": 15871491, + "indices": [ + 0, + 15 + ], + "name": "Joshua Bell" + }, + { + "screen_name": "mikewest", + "id_str": "63163", + "id": 63163, + "indices": [ + 16, + 25 + ], + "name": "Mike West" + }, + { + "screen_name": "metromoxie", + "id_str": "42462490", + "id": 42462490, + "indices": [ + 26, + 37 + ], + "name": "Joel Weinberger" + }, + { + "screen_name": "jaffathecake", + "id_str": "15390783", + "id": 15390783, + "indices": [ + 38, + 51 + ], + "name": "Jake Archibald" + }, + { + "screen_name": "wanderview", + "id_str": "362469218", + "id": 362469218, + "indices": [ + 52, + 63 + ], + "name": "Ben Kelly" + }, + { + "screen_name": "ericlaw", + "id_str": "5725652", + "id": 5725652, + "indices": [ + 64, + 72 + ], + "name": "Eric Lawrence" + } + ] + }, + "created_at": "Fri Jan 08 23:07:56 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598451988561921, + "lang": "en" + }, + "default_profile_image": false, + "id": 47908980, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 393, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "318908901", + "following": false, + "friends_count": 99, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitch.tv/kraftypants", + "url": "http://t.co/vyQ8oj2519", + "expanded_url": "http://www.twitch.tv/kraftypants", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": false, + "followers_count": 164, + "location": "Tri-Cities, WA", + "screen_name": "krcaputo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Katie", + "profile_use_background_image": true, + "description": "bad gamer. artist. cat lady. food lover.", + "url": "http://t.co/vyQ8oj2519", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/483000980468817920/65pjX-0M_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Fri Jun 17 07:35:31 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/483000980468817920/65pjX-0M_normal.jpeg", + "favourites_count": 354, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684903853343551488", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BAOAE3wiPch/", + "url": "https://t.co/iNHTm18UQD", + "expanded_url": "https://www.instagram.com/p/BAOAE3wiPch/", + "indices": [ + 10, + 33 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 01:06:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684903853343551488, + "text": "Snort lol https://t.co/iNHTm18UQD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 318908901, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 2099, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/318908901/1403991399", + "is_translator": false + }, + { + "time_zone": "America/Los_Angeles", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13038122", + "following": false, + "friends_count": 109, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/464171753149722625/D1IzAztF.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "080808", + "geo_enabled": false, + "followers_count": 183, + "location": "", + "screen_name": "madelmund", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Mat Adelmund", + "profile_use_background_image": true, + "description": "MTG fan (username Flashtastica on Pucatrade), sports fan, neature fan.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1815556860/AFB1FF81-6BC1-49DB-B62B-A2DBF2EE9986_normal", + "profile_background_color": "1A1B1F", + "created_at": "Mon Feb 04 07:06:47 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1815556860/AFB1FF81-6BC1-49DB-B62B-A2DBF2EE9986_normal", + "favourites_count": 1232, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MTGatTCGplayer", + "in_reply_to_user_id": 54425885, + "in_reply_to_status_id_str": "685530200675872768", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685536826401009664", + "id": 685536826401009664, + "text": "@MTGatTCGplayer if you're wondering why you lose followers, look no further than these annoying posts.", + "in_reply_to_user_id_str": "54425885", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MTGatTCGplayer", + "id_str": "54425885", + "id": 54425885, + "indices": [ + 0, + 15 + ], + "name": "Magic.TCGplayer.com" + } + ] + }, + "created_at": "Fri Jan 08 19:01:30 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685530200675872768, + "lang": "en" + }, + "default_profile_image": false, + "id": 13038122, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/464171753149722625/D1IzAztF.jpeg", + "statuses_count": 4621, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13038122/1429241732", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "10794832", + "following": false, + "friends_count": 109, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jkprovideo.com", + "url": "https://t.co/m1VXCvKpr8", + "expanded_url": "http://jkprovideo.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2047112/spider-guarding-eggs-683251-xl.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EEEECC", + "profile_link_color": "218754", + "geo_enabled": true, + "followers_count": 369, + "location": "eccenTriCities, Washington", + "screen_name": "junsten", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 20, + "name": "easily distracte", + "profile_use_background_image": false, + "description": "Personal Twitter account of Justin Brault. Opinions expressed are not those of my company, its parent company or my parents.", + "url": "https://t.co/m1VXCvKpr8", + "profile_text_color": "101041", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667533921840566277/feExkf3L_normal.jpg", + "profile_background_color": "101041", + "created_at": "Sun Dec 02 22:05:59 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "101041", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667533921840566277/feExkf3L_normal.jpg", + "favourites_count": 473, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685577162687053824", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/TriCityHerald/\u2026", + "url": "https://t.co/5yTImEYe01", + "expanded_url": "https://twitter.com/TriCityHerald/status/685576485244030976", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:41:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685577162687053824, + "text": "I misread \u201cKennewick man\u201d as \u201cKennewick Man\u201d Every. Single. Time. \nhttps://t.co/5yTImEYe01", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 10794832, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2047112/spider-guarding-eggs-683251-xl.jpg", + "statuses_count": 8288, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "12811302", + "following": false, + "friends_count": 917, + "entities": { + "description": { + "urls": [ + { + "display_url": "on.fb.me/ZN1M85", + "url": "http://t.co/2nrtjFXE5G", + "expanded_url": "http://on.fb.me/ZN1M85", + "indices": [ + 134, + 156 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/christopher.bl\u2026", + "url": "https://t.co/2uv4GOkTL6", + "expanded_url": "https://www.facebook.com/christopher.blizzard", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "D4C4B9", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 8637, + "location": "Santa Clara, CA", + "screen_name": "chrisblizzard", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 421, + "name": "Christopher Blizzard", + "profile_use_background_image": false, + "description": "Developer Relations Clown at Facebook. Lemons racer. Former Mozillian. Lots of tech and cats doing funny things. Also on Facebook: http://t.co/2nrtjFXE5G", + "url": "https://t.co/2uv4GOkTL6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/421244098/blizz-head-sq-96_normal.png", + "profile_background_color": "4A4F68", + "created_at": "Tue Jan 29 02:13:18 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5C5C5C", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/421244098/blizz-head-sq-96_normal.png", + "favourites_count": 2025, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685582539432460289", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "vine.co/v/OjqeYWWpVWK", + "url": "https://t.co/66CLkgwSmz", + "expanded_url": "https://vine.co/v/OjqeYWWpVWK", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:03:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685582539432460289, + "text": "When I want to focus on quality work I leave this running in the background as a reminder: https://t.co/66CLkgwSmz", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 12811302, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 23505, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12811302/1397768573", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16130049", + "following": false, + "friends_count": 317, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 203, + "location": "\u00dcT: 41.39564,-82.15921", + "screen_name": "jslagle", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "jslagle", + "profile_use_background_image": true, + "description": "Problem solving nerd; infrastructure guy. Trying to bring technology to whatever he can, including fitness and the traditional enterprise.", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1276325677/IMG_2111-resize_normal.JPG", + "profile_background_color": "1A1B1F", + "created_at": "Thu Sep 04 15:11:08 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1276325677/IMG_2111-resize_normal.JPG", + "favourites_count": 7, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "sjonsson", + "in_reply_to_user_id": 14366907, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685565535203926016", + "id": 685565535203926016, + "text": "@sjonsson You should have shared your MFP etc username :)", + "in_reply_to_user_id_str": "14366907", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sjonsson", + "id_str": "14366907", + "id": 14366907, + "indices": [ + 0, + 9 + ], + "name": "Stan J\u00f3nsson" + } + ] + }, + "created_at": "Fri Jan 08 20:55:35 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 16130049, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 1507, + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "118345831", + "following": false, + "friends_count": 9174, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "philippe.lewin.me", + "url": "http://t.co/flKLkiL7fj", + "expanded_url": "http://philippe.lewin.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "8F5536", + "geo_enabled": true, + "followers_count": 10735, + "location": "Paris, France", + "screen_name": "PhilippeLewin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 168, + "name": "Philippe Lewin", + "profile_use_background_image": true, + "description": "May share things about IT, dev, ops, data *, monitoring and security.\n\n@parismonitoring", + "url": "http://t.co/flKLkiL7fj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655845220727324672/vvvFJhGq_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Sun Feb 28 11:11:37 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655845220727324672/vvvFJhGq_normal.jpg", + "favourites_count": 442, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684261361082339328", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1ZL3tjM", + "url": "https://t.co/fmPFnGNJUY", + "expanded_url": "http://bit.ly/1ZL3tjM", + "indices": [ + 34, + 57 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 06:33:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684261361082339328, + "text": "Permanent Identifiers for the Web https://t.co/fmPFnGNJUY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 118345831, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "statuses_count": 1190, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/118345831/1420119559", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "12996602", + "following": false, + "friends_count": 238, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2042112/Bus_20Excursion_20_1.JPG", + "notifications": false, + "profile_sidebar_fill_color": "F385A9", + "profile_link_color": "060BD7", + "geo_enabled": true, + "followers_count": 214, + "location": "", + "screen_name": "jadelmund", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Julie Adelmund", + "profile_use_background_image": false, + "description": "CPA for real. Tax Preparer extrodinaire. Wife of @madelmund; mother of 3 (dogs). Follower of Christ.", + "url": null, + "profile_text_color": "D7064A", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/1302404708/Screen_shot_2011-04-06_at_2.41.25_PM_normal.png", + "profile_background_color": "F385A9", + "created_at": "Sun Feb 03 01:31:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D7064A", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302404708/Screen_shot_2011-04-06_at_2.41.25_PM_normal.png", + "favourites_count": 632, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MBrault", + "in_reply_to_user_id": 27579777, + "in_reply_to_status_id_str": "675889949888024576", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "676062488035627009", + "id": 676062488035627009, + "text": "@MBrault @lalahods gorgeous!", + "in_reply_to_user_id_str": "27579777", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MBrault", + "id_str": "27579777", + "id": 27579777, + "indices": [ + 0, + 8 + ], + "name": "Michelle" + }, + { + "screen_name": "lalahods", + "id_str": "227551595", + "id": 227551595, + "indices": [ + 9, + 18 + ], + "name": "Lady Hodo" + } + ] + }, + "created_at": "Sun Dec 13 15:33:52 +0000 2015", + "source": "Twitter for iPad", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 675889949888024576, + "lang": "en" + }, + "default_profile_image": false, + "id": 12996602, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2042112/Bus_20Excursion_20_1.JPG", + "statuses_count": 1726, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12996602/1421597549", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "34368005", + "following": false, + "friends_count": 344, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 125, + "location": "", + "screen_name": "jessecpeterson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Jesse Peterson", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Apr 22 19:21:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", + "favourites_count": 15, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684537994586398720", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/marczak/status\u2026", + "url": "https://t.co/TO0vTofgNn", + "expanded_url": "https://twitter.com/marczak/status/684536561401245696", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 00:52:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684537994586398720, + "text": "I suppose for some people for some movies the studio/intro jingle just is *that* flick. Tristar does that for me https://t.co/TO0vTofgNn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": true, + "id": 34368005, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 164, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "97506932", + "following": false, + "friends_count": 104, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tilanus.com", + "url": "http://t.co/60VzbWrfaR", + "expanded_url": "http://www.tilanus.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/574846490083860482/Ppai_wXN.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "520303", + "geo_enabled": false, + "followers_count": 162, + "location": "Pijnacker", + "screen_name": "winfriedtilanus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "name": "Winfried Tilanus", + "profile_use_background_image": true, + "description": "Thinking is a knife. A good cut enables action. Knowledge tells where to cut, clean cuts come with experience. But in the end it boils down to dare to cut.", + "url": "http://t.co/60VzbWrfaR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579666619/winfried_normal.jpg", + "profile_background_color": "BD6000", + "created_at": "Thu Dec 17 19:19:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579666619/winfried_normal.jpg", + "favourites_count": 23, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "zeank", + "in_reply_to_user_id": 2898431, + "in_reply_to_status_id_str": "685033853401063424", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685036295190646784", + "id": 685036295190646784, + "text": "@zeank when reading @stewartbaker I also first thought it was @theonion, but he sincerely shows us the right direction!", + "in_reply_to_user_id_str": "2898431", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "zeank", + "id_str": "2898431", + "id": 2898431, + "indices": [ + 0, + 6 + ], + "name": "stefan strigler" + }, + { + "screen_name": "stewartbaker", + "id_str": "11484172", + "id": 11484172, + "indices": [ + 20, + 33 + ], + "name": "stewartbaker" + }, + { + "screen_name": "TheOnion", + "id_str": "14075928", + "id": 14075928, + "indices": [ + 62, + 71 + ], + "name": "The Onion" + } + ] + }, + "created_at": "Thu Jan 07 09:52:34 +0000 2016", + "source": "Choqok", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685033853401063424, + "lang": "en" + }, + "default_profile_image": false, + "id": 97506932, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/574846490083860482/Ppai_wXN.png", + "statuses_count": 1064, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "28593671", + "following": false, + "friends_count": 186, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 48, + "location": "Waterford, Ireland", + "screen_name": "weili1984", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Wei Li", + "profile_use_background_image": true, + "description": "Software Engineer @FeedHenry", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/512367356933578752/YQvZix6G_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Apr 03 16:10:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/512367356933578752/YQvZix6G_normal.jpeg", + "favourites_count": 19, + "status": { + "retweet_count": 4, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jasonmadigan", + "in_reply_to_user_id": 8654152, + "in_reply_to_status_id_str": null, + "retweet_count": 4, + "truncated": false, + "retweeted": false, + "id_str": "675426132502687745", + "id": 675426132502687745, + "text": "@jasonmadigan #jasonstag2015", + "in_reply_to_user_id_str": "8654152", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 14, + 28 + ], + "text": "jasonstag2015" + } + ], + "user_mentions": [ + { + "screen_name": "jasonmadigan", + "id_str": "8654152", + "id": 8654152, + "indices": [ + 0, + 13 + ], + "name": "Jason Madigan" + } + ] + }, + "created_at": "Fri Dec 11 21:25:13 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "und" + }, + "in_reply_to_user_id": null, + "id_str": "675426461533229057", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 30, + 44 + ], + "text": "jasonstag2015" + } + ], + "user_mentions": [ + { + "screen_name": "ialanmoran", + "id_str": "353861082", + "id": 353861082, + "indices": [ + 3, + 14 + ], + "name": "Alan Moran" + }, + { + "screen_name": "jasonmadigan", + "id_str": "8654152", + "id": 8654152, + "indices": [ + 16, + 29 + ], + "name": "Jason Madigan" + } + ] + }, + "created_at": "Fri Dec 11 21:26:31 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675426461533229057, + "text": "RT @ialanmoran: @jasonmadigan #jasonstag2015", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 28593671, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 21, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/28593671/1410994647", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "23238890", + "following": false, + "friends_count": 298, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "charles.stanho.pe", + "url": "http://t.co/xkzuqVonai", + "expanded_url": "http://charles.stanho.pe", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9C481D", + "geo_enabled": false, + "followers_count": 83, + "location": "Portland, OR", + "screen_name": "cstanhope", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Charles Stanhope", + "profile_use_background_image": false, + "description": "Software/hardware developer interested in programming languages, open platforms, art, craft, diy, learning, life etc. Trying hard to be part of the solution.", + "url": "http://t.co/xkzuqVonai", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684168704196644864/8iC7wstY_normal.jpg", + "profile_background_color": "0A703D", + "created_at": "Sat Mar 07 21:47:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684168704196644864/8iC7wstY_normal.jpg", + "favourites_count": 3712, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "JohnLegere", + "in_reply_to_user_id": 1394399438, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685223070018080769", + "id": 685223070018080769, + "text": "@JohnLegere EFF supporter and a T-Mobile customer since my first cell phone, but you just made me regret the latter. #WeAreEFF", + "in_reply_to_user_id_str": "1394399438", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 117, + 126 + ], + "text": "WeAreEFF" + } + ], + "user_mentions": [ + { + "screen_name": "JohnLegere", + "id_str": "1394399438", + "id": 1394399438, + "indices": [ + 0, + 11 + ], + "name": "John Legere" + } + ] + }, + "created_at": "Thu Jan 07 22:14:45 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 23238890, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "statuses_count": 2903, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "90916703", + "following": false, + "friends_count": 150, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 346, + "location": "Kansas City, MO", + "screen_name": "michellebrush", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "Michelle Brush", + "profile_use_background_image": false, + "description": "Math geek leading teams that bring in big data for @cernereng, chapter leader for @gdikc, and organizer for @midwestio.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/625000596383227908/WH7hhHsO_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Nov 18 17:33:06 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/625000596383227908/WH7hhHsO_normal.jpg", + "favourites_count": 214, + "status": { + "retweet_count": 497, + "retweeted_status": { + "retweet_count": 497, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "675354789346156545", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/GmGcqB5292", + "url": "https://t.co/GmGcqB5292", + "expanded_url": "http://twitter.com/lennyzeltser/status/675354789346156545/photo/1", + "indices": [ + 16, + 39 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Dec 11 16:41:43 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675354789346156545, + "text": "Risk assessment https://t.co/GmGcqB5292", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 414, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "675711078496514049", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/GmGcqB5292", + "url": "https://t.co/GmGcqB5292", + "expanded_url": "http://twitter.com/lennyzeltser/status/675354789346156545/photo/1", + "indices": [ + 34, + 57 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lennyzeltser", + "id_str": "14780493", + "id": 14780493, + "indices": [ + 3, + 16 + ], + "name": "Lenny Zeltser" + } + ] + }, + "created_at": "Sat Dec 12 16:17:29 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675711078496514049, + "text": "RT @lennyzeltser: Risk assessment https://t.co/GmGcqB5292", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 90916703, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 210, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/90916703/1402448313", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Beer, Coffee, Ruby, Systems guy, linux", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "166223307", + "blocking": false, + "is_translation_enabled": false, + "id": 166223307, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Jul 13 16:55:37 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/459028643323207681/MhUvSPKX_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 532, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459028643323207681/MhUvSPKX_normal.jpeg", + "favourites_count": 506, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 14, + "blocked_by": false, + "following": false, + "location": "Seattle, WA", + "muting": false, + "friends_count": 124, + "notifications": false, + "screen_name": "ianderson__", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 1, + "is_translator": false, + "name": "Mr. WolfOps" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "429366017", + "following": false, + "friends_count": 162, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "csa-net.dk", + "url": "http://t.co/wGwo3r3kww", + "expanded_url": "http://csa-net.dk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 66, + "location": "Denmark", + "screen_name": "ClausAlboege", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Claus Alb\u00f8ge", + "profile_use_background_image": true, + "description": "Operations, Deployment, Automation, Cloud, Security", + "url": "http://t.co/wGwo3r3kww", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2506933106/h2uvo4vlolpxn9t0mk9m_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 05 21:53:51 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2506933106/h2uvo4vlolpxn9t0mk9m_normal.jpeg", + "favourites_count": 398, + "status": { + "retweet_count": 5, + "retweeted_status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684858483464880128", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "opensourcedays.org", + "url": "https://t.co/2KtIu0PjtD", + "expanded_url": "https://opensourcedays.org", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 22:06:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684858483464880128, + "text": "Psssssttttt... Open Source Days has a new team, and they are doing a conference the 27th of February in Copenhagen - https://t.co/2KtIu0PjtD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684871299324342274", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "opensourcedays.org", + "url": "https://t.co/2KtIu0PjtD", + "expanded_url": "https://opensourcedays.org", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ahfaeroey", + "id_str": "29861819", + "id": 29861819, + "indices": [ + 3, + 13 + ], + "name": "Alexander F\u00e6r\u00f8y" + } + ] + }, + "created_at": "Wed Jan 06 22:56:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684871299324342274, + "text": "RT @ahfaeroey: Psssssttttt... Open Source Days has a new team, and they are doing a conference the 27th of February in Copenhagen - https:/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 429366017, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 463, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/429366017/1398760147", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14960321", + "following": false, + "friends_count": 327, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tim.freunds.net", + "url": "http://t.co/T3vKb1MjKS", + "expanded_url": "http://tim.freunds.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 186, + "location": "Lancaster, PA", + "screen_name": "timfreund", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Tim Freund", + "profile_use_background_image": true, + "description": "Programmer, home renovator, eater of good food.", + "url": "http://t.co/T3vKb1MjKS", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/589988064988016641/9y7BipD3_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat May 31 03:18:16 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/589988064988016641/9y7BipD3_normal.jpg", + "favourites_count": 98, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "RyanMelton", + "in_reply_to_user_id": 126011278, + "in_reply_to_status_id_str": "684813481196040192", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684815216589180928", + "id": 684815216589180928, + "text": "@RyanMelton congrats, Ryan!", + "in_reply_to_user_id_str": "126011278", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RyanMelton", + "id_str": "126011278", + "id": 126011278, + "indices": [ + 0, + 11 + ], + "name": "Ryan Melton" + } + ] + }, + "created_at": "Wed Jan 06 19:14:05 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684813481196040192, + "lang": "en" + }, + "default_profile_image": false, + "id": 14960321, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 484, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "180062994", + "following": false, + "friends_count": 1153, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649260006/qzzejvgx06re9pjqjda1.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2EDB6B", + "geo_enabled": false, + "followers_count": 383, + "location": "Louisville, Kentucky", + "screen_name": "Mr_KNE", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Mr_KNE", + "profile_use_background_image": true, + "description": "Linux and Science enthusiast. Does not auto-follow.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2569221673/tfpochuonbr5cyxp5t3n_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Aug 18 19:10:40 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2569221673/tfpochuonbr5cyxp5t3n_normal.png", + "favourites_count": 938, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609326015344641", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/dailykos/statu\u2026", + "url": "https://t.co/Ra3tOfN2Q6", + "expanded_url": "https://twitter.com/dailykos/status/685605890251161600", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [ + { + "indices": [ + 76, + 84 + ], + "text": "THEBEST" + } + ], + "user_mentions": [ + { + "screen_name": "realDonaldTrump", + "id_str": "25073877", + "id": 25073877, + "indices": [ + 51, + 67 + ], + "name": "Donald J. Trump" + } + ] + }, + "created_at": "Fri Jan 08 23:49:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609326015344641, + "text": "You forgot the noise canceling headphones for when @realDonaldTrump speaks. #THEBEST https://t.co/Ra3tOfN2Q6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 180062994, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649260006/qzzejvgx06re9pjqjda1.jpeg", + "statuses_count": 6108, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/180062994/1399637026", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "31369018", + "following": false, + "friends_count": 525, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362231250/nedroid_tumblr_lrfqzmbbfv1qhfu4ho1_1280.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 170, + "location": "", + "screen_name": "barry_oneill", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Barry O'Neill", + "profile_use_background_image": true, + "description": "bottles and cans just clap your hands", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/563910610736279554/HEBKN9eY_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Apr 15 08:29:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/563910610736279554/HEBKN9eY_normal.png", + "favourites_count": 64, + "status": { + "retweet_count": 64, + "retweeted_status": { + "retweet_count": 64, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684828660973580288", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 254, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 449, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 720, + "h": 539, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", + "type": "photo", + "indices": [ + 49, + 72 + ], + "media_url": "http://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", + "display_url": "pic.twitter.com/NSYWRbhGzi", + "id_str": "684828643193962496", + "expanded_url": "http://twitter.com/BrilliantMaps/status/684828660973580288/photo/1", + "id": 684828643193962496, + "url": "https://t.co/NSYWRbhGzi" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "brilliantmaps.com/syria-situatio\u2026", + "url": "https://t.co/GZO7sFiARi", + "expanded_url": "http://brilliantmaps.com/syria-situation/", + "indices": [ + 25, + 48 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 20:07:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684828660973580288, + "text": "The Situation in Syria - https://t.co/GZO7sFiARi https://t.co/NSYWRbhGzi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 33, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684884559314448385", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 254, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 449, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 720, + "h": 539, + "resize": "fit" + } + }, + "source_status_id_str": "684828660973580288", + "url": "https://t.co/NSYWRbhGzi", + "media_url": "http://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", + "source_user_id_str": "2751434132", + "id_str": "684828643193962496", + "id": 684828643193962496, + "media_url_https": "https://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", + "type": "photo", + "indices": [ + 68, + 91 + ], + "source_status_id": 684828660973580288, + "source_user_id": 2751434132, + "display_url": "pic.twitter.com/NSYWRbhGzi", + "expanded_url": "http://twitter.com/BrilliantMaps/status/684828660973580288/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "brilliantmaps.com/syria-situatio\u2026", + "url": "https://t.co/GZO7sFiARi", + "expanded_url": "http://brilliantmaps.com/syria-situation/", + "indices": [ + 44, + 67 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BrilliantMaps", + "id_str": "2751434132", + "id": 2751434132, + "indices": [ + 3, + 17 + ], + "name": "Brilliant Maps" + } + ] + }, + "created_at": "Wed Jan 06 23:49:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684884559314448385, + "text": "RT @BrilliantMaps: The Situation in Syria - https://t.co/GZO7sFiARi https://t.co/NSYWRbhGzi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Fenix for Android" + }, + "default_profile_image": false, + "id": 31369018, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362231250/nedroid_tumblr_lrfqzmbbfv1qhfu4ho1_1280.jpg", + "statuses_count": 3310, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/31369018/1352224614", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "35648936", + "following": false, + "friends_count": 572, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/854384889/03791c673b51f79c4aa20ee15dbfaeac.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "12291F", + "profile_link_color": "786A55", + "geo_enabled": true, + "followers_count": 181, + "location": "San Mateo, CA", + "screen_name": "sdoumbouya", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "Sekou Doumbouya", + "profile_use_background_image": true, + "description": "Systems Engineer that love automation", + "url": null, + "profile_text_color": "547B61", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000627467794/76a096f69384f6a262fa075da554687d_normal.jpeg", + "profile_background_color": "030302", + "created_at": "Mon Apr 27 02:54:32 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "3C5449", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000627467794/76a096f69384f6a262fa075da554687d_normal.jpeg", + "favourites_count": 150, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684811777368961025", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "clusterhq.com/2015/12/16/int\u2026", + "url": "https://t.co/qTx7UKR3Wp", + "expanded_url": "https://clusterhq.com/2015/12/16/introducing-mesos-flocker/", + "indices": [ + 63, + 86 + ] + } + ], + "hashtags": [ + { + "indices": [ + 5, + 11 + ], + "text": "mesos" + }, + { + "indices": [ + 47, + 51 + ], + "text": "SDS" + }, + { + "indices": [ + 87, + 94 + ], + "text": "docker" + }, + { + "indices": [ + 95, + 106 + ], + "text": "mesosphere" + }, + { + "indices": [ + 107, + 117 + ], + "text": "databases" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 19:00:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684811777368961025, + "text": "Love #mesos? Checkout Mesos-Flocker: Seamless #SDS for Mesos https://t.co/qTx7UKR3Wp #docker #mesosphere #databases", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685156667198169088", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "clusterhq.com/2015/12/16/int\u2026", + "url": "https://t.co/qTx7UKR3Wp", + "expanded_url": "https://clusterhq.com/2015/12/16/introducing-mesos-flocker/", + "indices": [ + 78, + 101 + ] + } + ], + "hashtags": [ + { + "indices": [ + 20, + 26 + ], + "text": "mesos" + }, + { + "indices": [ + 62, + 66 + ], + "text": "SDS" + }, + { + "indices": [ + 102, + 109 + ], + "text": "docker" + }, + { + "indices": [ + 110, + 121 + ], + "text": "mesosphere" + }, + { + "indices": [ + 122, + 132 + ], + "text": "databases" + } + ], + "user_mentions": [ + { + "screen_name": "ClusterHQ", + "id_str": "2571577512", + "id": 2571577512, + "indices": [ + 3, + 13 + ], + "name": "ClusterHQ" + } + ] + }, + "created_at": "Thu Jan 07 17:50:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685156667198169088, + "text": "RT @ClusterHQ: Love #mesos? Checkout Mesos-Flocker: Seamless #SDS for Mesos https://t.co/qTx7UKR3Wp #docker #mesosphere #databases", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 35648936, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/854384889/03791c673b51f79c4aa20ee15dbfaeac.jpeg", + "statuses_count": 1102, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35648936/1401159851", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14187783", + "following": false, + "friends_count": 1771, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stevenmurawski.com", + "url": "http://t.co/JfIVsEmAS6", + "expanded_url": "http://stevenmurawski.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3086, + "location": "Oconomowoc, WI ", + "screen_name": "StevenMurawski", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 251, + "name": "Steven Murawski", + "profile_use_background_image": true, + "description": "Community Software Engineer for @Chef and Microsoft MVP (PowerShell)", + "url": "http://t.co/JfIVsEmAS6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/554782165930504192/P1YLJA1D_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 20 22:27:25 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/554782165930504192/P1YLJA1D_normal.jpeg", + "favourites_count": 639, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685512588831096832", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1mIBRxo", + "url": "https://t.co/Fv9fvWdWDT", + "expanded_url": "http://bit.ly/1mIBRxo", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [ + { + "indices": [ + 10, + 21 + ], + "text": "PowerShell" + } + ], + "user_mentions": [ + { + "screen_name": "r_keith_hill", + "id_str": "16938890", + "id": 16938890, + "indices": [ + 81, + 94 + ], + "name": "r_keith_hill" + } + ] + }, + "created_at": "Fri Jan 08 17:25:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685512588831096832, + "text": "Debugging #PowerShell Script with Visual Studio Code https://t.co/Fv9fvWdWDT via @r_keith_hill", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 14187783, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10775, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "108667802", + "following": false, + "friends_count": 229, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "MediaRemedial.com", + "url": "https://t.co/XdkxvpK0CQ", + "expanded_url": "http://www.MediaRemedial.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/715352704/745e63260f0f02274f671bef267eaa3f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "809DBD", + "geo_enabled": true, + "followers_count": 379, + "location": "Portland, OR", + "screen_name": "MediaRemedial", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 26, + "name": "Tara", + "profile_use_background_image": true, + "description": "I code. I write. I edit. I proofread. I am single (is it the cat?) I am transforming my life. I also curse. See also @GoatUserStories", + "url": "https://t.co/XdkxvpK0CQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2659435311/854e4ec9568758ea2312e76eb105e028_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 26 17:43:30 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2659435311/854e4ec9568758ea2312e76eb105e028_normal.png", + "favourites_count": 1235, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685382155539615752", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 293, + "resize": "fit" + }, + "medium": { + "w": 540, + "h": 466, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 540, + "h": 466, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYL3cDzUsAADYnu.png", + "type": "photo", + "indices": [ + 47, + 70 + ], + "media_url": "http://pbs.twimg.com/media/CYL3cDzUsAADYnu.png", + "display_url": "pic.twitter.com/cz44jsTW52", + "id_str": "685382154742706176", + "expanded_url": "http://twitter.com/MediaRemedial/status/685382155539615752/photo/1", + "id": 685382154742706176, + "url": "https://t.co/cz44jsTW52" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 0, + 13 + ], + "text": "whiskyadvent" + }, + { + "indices": [ + 28, + 46 + ], + "text": "thingsthatamuseme" + } + ], + "user_mentions": [ + { + "screen_name": "MasterOfMalt", + "id_str": "81616245", + "id": 81616245, + "indices": [ + 14, + 27 + ], + "name": "Master Of Malt" + } + ] + }, + "created_at": "Fri Jan 08 08:46:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685382155539615752, + "text": "#whiskyadvent @MasterOfMalt #thingsthatamuseme https://t.co/cz44jsTW52", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetCaster for Android" + }, + "default_profile_image": false, + "id": 108667802, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/715352704/745e63260f0f02274f671bef267eaa3f.jpeg", + "statuses_count": 3452, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/108667802/1353278918", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "70037326", + "following": false, + "friends_count": 449, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "icarocamelo.com", + "url": "https://t.co/cZwA4NCdF6", + "expanded_url": "http://www.icarocamelo.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FFFFFF", + "geo_enabled": true, + "followers_count": 298, + "location": "Qu\u00e9bec City, QC, Canada", + "screen_name": "icarocamelo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Icaro Camelo", + "profile_use_background_image": false, + "description": "I'm a software dev lover, autodidact, tennis player, guitar player, teacher but always a learner.", + "url": "https://t.co/cZwA4NCdF6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/563166528275619840/PGgQsEMn_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Aug 30 03:27:30 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/563166528275619840/PGgQsEMn_normal.jpeg", + "favourites_count": 278, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682441062258978816", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/@mauricioanich\u2026", + "url": "https://t.co/nbwBQzmGTU", + "expanded_url": "https://medium.com/@mauricioaniche/what-is-the-magic-of-test-driven-development-868f45fc9b1", + "indices": [ + 64, + 87 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mauricioaniche", + "id_str": "14262678", + "id": 14262678, + "indices": [ + 48, + 63 + ], + "name": "Maur\u00edcio Aniche" + } + ] + }, + "created_at": "Thu Dec 31 06:00:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682441062258978816, + "text": "\u201cWhat is the magic of Test-Driven Development?\u201d @mauricioaniche https://t.co/nbwBQzmGTU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 70037326, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 4287, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70037326/1430515967", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15895658", + "following": false, + "friends_count": 2032, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "harrymoreno.com", + "url": "http://t.co/zvwKWysV4h", + "expanded_url": "http://harrymoreno.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 564, + "location": "New York, USA", + "screen_name": "morenoh149", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 72, + "name": "Harry Moreno", + "profile_use_background_image": true, + "description": "\u200d\u2764\ufe0f\u200d\u200d", + "url": "http://t.co/zvwKWysV4h", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664663082275246080/y6enNHl5_normal.jpg", + "profile_background_color": "0F0C06", + "created_at": "Mon Aug 18 20:04:55 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664663082275246080/y6enNHl5_normal.jpg", + "favourites_count": 7747, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 15895658, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 8809, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15895658/1352711231", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6182512", + "following": false, + "friends_count": 209, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 116, + "location": "Delaware", + "screen_name": "cbontrager", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Caleb Bontrager", + "profile_use_background_image": true, + "description": "Techy, business oriented, network/system guy. Love technology, life, and more importantly, life following Jesus.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/543238913238654976/CNdoj7XV_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Sun May 20 17:49:07 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/543238913238654976/CNdoj7XV_normal.jpeg", + "favourites_count": 167, + "status": { + "retweet_count": 5, + "retweeted_status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678627759598542849", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1YuelQI", + "url": "https://t.co/RAgd7Kj2Vk", + "expanded_url": "http://bit.ly/1YuelQI", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Dec 20 17:27:20 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678627759598542849, + "text": "The CIA Secret to Cybersecurity That No One Seems to Get | WIRED - https://t.co/RAgd7Kj2Vk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "TweetCaster for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678729078845915136", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1YuelQI", + "url": "https://t.co/RAgd7Kj2Vk", + "expanded_url": "http://bit.ly/1YuelQI", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "secprofgreen", + "id_str": "66025772", + "id": 66025772, + "indices": [ + 3, + 16 + ], + "name": "Andy Green" + } + ] + }, + "created_at": "Mon Dec 21 00:09:57 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678729078845915136, + "text": "RT @secprofgreen: The CIA Secret to Cybersecurity That No One Seems to Get | WIRED - https://t.co/RAgd7Kj2Vk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 6182512, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 639, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "15103611", + "following": false, + "friends_count": 492, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "medium.com/@maxlynch/", + "url": "https://t.co/8eRRTRGxcZ", + "expanded_url": "http://medium.com/@maxlynch/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479029095271899136/4AxMGk8y.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "737373", + "geo_enabled": true, + "followers_count": 7971, + "location": "Madison", + "screen_name": "maxlynch", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 385, + "name": "Max Lynch", + "profile_use_background_image": false, + "description": "Helping the web win on mobile with @ionicframework", + "url": "https://t.co/8eRRTRGxcZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/653007360026259460/ok1dzunM_normal.png", + "profile_background_color": "CFEAF0", + "created_at": "Fri Jun 13 02:12:31 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/653007360026259460/ok1dzunM_normal.png", + "favourites_count": 15448, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685608203401297921", + "id": 685608203401297921, + "text": "Raining in January...crazy", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:45:08 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15103611, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479029095271899136/4AxMGk8y.png", + "statuses_count": 15190, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15103611/1448247056", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "14375294", + "following": false, + "friends_count": 72501, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bitfieldconsulting.com", + "url": "http://t.co/St02BRS9rN", + "expanded_url": "http://bitfieldconsulting.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/56417743/bitfield-logo.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 69480, + "location": "Cornwall", + "screen_name": "bitfield", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1275, + "name": "John Arundel", + "profile_use_background_image": true, + "description": "Helps with sysadmin, devops, Puppet & Chef. Automates stuff for you, because you haven't got time. Ally.", + "url": "http://t.co/St02BRS9rN", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2550451333/upr558w4gb7mdgopk0af_normal.jpeg", + "profile_background_color": "000203", + "created_at": "Sun Apr 13 14:37:00 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2550451333/upr558w4gb7mdgopk0af_normal.jpeg", + "favourites_count": 96, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 37, + "truncated": false, + "retweeted": false, + "id_str": "685474079390830592", + "id": 685474079390830592, + "text": "Nginx is a great operating system, but it lacks a good webserver.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:52:10 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 88, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14375294, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/56417743/bitfield-logo.png", + "statuses_count": 4653, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14375294/1398508041", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "963411698", + "following": false, + "friends_count": 1879, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fsharpers.com", + "url": "http://t.co/ESsVEjsMYi", + "expanded_url": "http://www.fsharpers.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554716993018818561/R-VQdntT.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "4191BE", + "geo_enabled": false, + "followers_count": 390, + "location": "Midtown Manhattan 212-470-8005", + "screen_name": "itcognoscente", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 31, + "name": "Gregory Hutchinson", + "profile_use_background_image": false, + "description": "Building Functional Programming Relationships in Silicon Alley and the Valley. Recruitment Boutique for Haskell, Erlang, OCaml, Clojure, F# and Lisp.", + "url": "http://t.co/ESsVEjsMYi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/550876475306434560/r-7V83DO_normal.jpeg", + "profile_background_color": "30B9DB", + "created_at": "Thu Nov 22 01:28:52 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/550876475306434560/r-7V83DO_normal.jpeg", + "favourites_count": 1258, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "672875683698339841", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/MIT_CSAIL/stat\u2026", + "url": "https://t.co/kERuQoFlvQ", + "expanded_url": "https://twitter.com/MIT_CSAIL/status/667080239323979776", + "indices": [ + 47, + 70 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Dec 04 20:30:39 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 672875683698339841, + "text": "Looks lie 're training him for the Rangers! :D https://t.co/kERuQoFlvQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 963411698, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554716993018818561/R-VQdntT.jpeg", + "statuses_count": 2984, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/963411698/1421096614", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "23992877", + "following": false, + "friends_count": 552, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jeremytinley.wordpress.com", + "url": "https://t.co/WDRp7DtmNH", + "expanded_url": "https://jeremytinley.wordpress.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 395, + "location": "Denver, CO", + "screen_name": "techwolf359", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Jeremy Tinley", + "profile_use_background_image": true, + "description": "i like Tool, bacon and geeky things. Senior MySQL Operations Engineer for Etsy.", + "url": "https://t.co/WDRp7DtmNH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648248735042945024/boFlcCxu_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu Mar 12 17:55:56 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648248735042945024/boFlcCxu_normal.jpg", + "favourites_count": 411, + "status": { + "retweet_count": 10971, + "retweeted_status": { + "retweet_count": 10971, + "in_reply_to_user_id": null, + "possibly_sensitive": true, + "id_str": "685301049654165504", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 425, + "resize": "fit" + }, + "large": { + "w": 480, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 480, + "h": 600, + "resize": "fit" + } + }, + "source_status_id_str": "684448534515548161", + "url": "https://t.co/Q6S1azBPWp", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", + "source_user_id_str": "2582885773", + "id_str": "684448461350113281", + "id": 684448461350113281, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", + "type": "photo", + "indices": [ + 28, + 51 + ], + "source_status_id": 684448534515548161, + "source_user_id": 2582885773, + "display_url": "pic.twitter.com/Q6S1azBPWp", + "expanded_url": "http://twitter.com/HippieGifs/status/684448534515548161/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:24:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685301049654165504, + "text": "Perspective is everything \ud83d\udc41 https://t.co/Q6S1azBPWp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15183, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685311199655792640", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 425, + "resize": "fit" + }, + "large": { + "w": 480, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 480, + "h": 600, + "resize": "fit" + } + }, + "source_status_id_str": "684448534515548161", + "url": "https://t.co/Q6S1azBPWp", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", + "source_user_id_str": "2582885773", + "id_str": "684448461350113281", + "id": 684448461350113281, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", + "type": "photo", + "indices": [ + 48, + 71 + ], + "source_status_id": 684448534515548161, + "source_user_id": 2582885773, + "display_url": "pic.twitter.com/Q6S1azBPWp", + "expanded_url": "http://twitter.com/HippieGifs/status/684448534515548161/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BabyAnimalPics", + "id_str": "1372975219", + "id": 1372975219, + "indices": [ + 3, + 18 + ], + "name": "Baby Animals" + } + ] + }, + "created_at": "Fri Jan 08 04:04:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685311199655792640, + "text": "RT @BabyAnimalPics: Perspective is everything \ud83d\udc41 https://t.co/Q6S1azBPWp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 23992877, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3896, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23992877/1401897032", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "149391883", + "following": false, + "friends_count": 715, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ofmax.li/pages/about-me\u2026", + "url": "https://t.co/rlNUBQUD5s", + "expanded_url": "https://ofmax.li/pages/about-me.html", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/376260464/x941d0ed8d4ed543d5e9c11f07fc78c1.png", + "notifications": false, + "profile_sidebar_fill_color": "333333", + "profile_link_color": "666666", + "geo_enabled": true, + "followers_count": 599, + "location": "Portland, OR", + "screen_name": "Max_Resnick", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 40, + "name": "Max Resnick", + "profile_use_background_image": true, + "description": "opinionated. interwebs. python. linux. software engineer. ex project manager off the record.", + "url": "https://t.co/rlNUBQUD5s", + "profile_text_color": "999999", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/438483690029842432/McRiUETF_normal.jpeg", + "profile_background_color": "CCCCCC", + "created_at": "Sat May 29 05:00:55 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/438483690029842432/McRiUETF_normal.jpeg", + "favourites_count": 26, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685515454522224644", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "jelly.co", + "url": "https://t.co/HwH41dMWq8", + "expanded_url": "http://jelly.co", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:36:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685515454522224644, + "text": "startupvanco I just reserved my username on jelly, a way for busy people to get helpful answers. Reserve yours now\u2026 https://t.co/HwH41dMWq8", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "IFTTT" + }, + "default_profile_image": false, + "id": 149391883, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/376260464/x941d0ed8d4ed543d5e9c11f07fc78c1.png", + "statuses_count": 12212, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/149391883/1393377677", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1380413569", + "following": false, + "friends_count": 677, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nathwill.github.io", + "url": "https://t.co/lXzI0Y1RV7", + "expanded_url": "https://nathwill.github.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 239, + "location": "Hillsboro, OR", + "screen_name": "nathwhal", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "nathan w", + "profile_use_background_image": true, + "description": "PDX resident, ops guy, enthusiastic homebrewer, happily married to a fellow geek. developer/site-ops at @treehouse.", + "url": "https://t.co/lXzI0Y1RV7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682422321278107649/pKYQYDr4_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Apr 25 20:55:25 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682422321278107649/pKYQYDr4_normal.jpg", + "favourites_count": 2656, + "status": { + "retweet_count": 3956, + "retweeted_status": { + "retweet_count": 3956, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685521449432518656", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", + "type": "photo", + "indices": [ + 68, + 91 + ], + "media_url": "http://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", + "display_url": "pic.twitter.com/XRQlSfM2PU", + "id_str": "685521449306722304", + "expanded_url": "http://twitter.com/HistoricalPics/status/685521449432518656/photo/1", + "id": 685521449306722304, + "url": "https://t.co/XRQlSfM2PU" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:00:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685521449432518656, + "text": "This is a genuine conversation between Tony Blair and Bill Clinton. https://t.co/XRQlSfM2PU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4706, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685531956927303680", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "source_status_id_str": "685521449432518656", + "url": "https://t.co/XRQlSfM2PU", + "media_url": "http://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", + "source_user_id_str": "1598644159", + "id_str": "685521449306722304", + "id": 685521449306722304, + "media_url_https": "https://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", + "type": "photo", + "indices": [ + 88, + 111 + ], + "source_status_id": 685521449432518656, + "source_user_id": 1598644159, + "display_url": "pic.twitter.com/XRQlSfM2PU", + "expanded_url": "http://twitter.com/HistoricalPics/status/685521449432518656/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "HistoricalPics", + "id_str": "1598644159", + "id": 1598644159, + "indices": [ + 3, + 18 + ], + "name": "Historical Pics" + } + ] + }, + "created_at": "Fri Jan 08 18:42:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685531956927303680, + "text": "RT @HistoricalPics: This is a genuine conversation between Tony Blair and Bill Clinton. https://t.co/XRQlSfM2PU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1380413569, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2899, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1380413569/1436401512", + "is_translator": false + }, + { + "time_zone": "Caracas", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -16200, + "id_str": "23130430", + "following": false, + "friends_count": 736, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "foxcarlos.wordpress.com", + "url": "http://t.co/11vGRn3tWV", + "expanded_url": "http://www.foxcarlos.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/94098055/ffirefox.jpg", + "notifications": false, + "profile_sidebar_fill_color": "AB7F11", + "profile_link_color": "EDA042", + "geo_enabled": true, + "followers_count": 478, + "location": "Venezuela-Maracaibo", + "screen_name": "foxcarlos", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 47, + "name": "FoxCarlos", + "profile_use_background_image": true, + "description": "Linux Fan User, Programador, SysAdmin, DevOp, Fan de Python, Amante de las tecnologias , Android User", + "url": "http://t.co/11vGRn3tWV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/462342029733662721/JDiNDbdB_normal.jpeg", + "profile_background_color": "FAEB41", + "created_at": "Fri Mar 06 22:43:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5E4107", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/462342029733662721/JDiNDbdB_normal.jpeg", + "favourites_count": 196, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684338026542153728", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BAJ-xLABYru/", + "url": "https://t.co/YdKy6FH4Ib", + "expanded_url": "https://www.instagram.com/p/BAJ-xLABYru/", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [ + { + "indices": [ + 59, + 68 + ], + "text": "adafruit" + }, + { + "indices": [ + 69, + 81 + ], + "text": "electr\u00f3nica" + }, + { + "indices": [ + 82, + 90 + ], + "text": "arduino" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 11:37:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "es", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684338026542153728, + "text": "Soldando los pines de mi arduino Adafruit Pro Trinket - 5V #adafruit #electr\u00f3nica #arduino https://t.co/YdKy6FH4Ib", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 23130430, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/94098055/ffirefox.jpg", + "statuses_count": 5788, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23130430/1399066139", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "259118402", + "following": false, + "friends_count": 340, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "106118", + "geo_enabled": true, + "followers_count": 142, + "location": "Berkeley, CA", + "screen_name": "jwadams_sf", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Jonathan Adams", + "profile_use_background_image": true, + "description": "A Solaris kernel engineer in Berkeley and San Francisco.", + "url": null, + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2607006579/fc8a2hzb9282wlkh5tuo_normal.jpeg", + "profile_background_color": "352726", + "created_at": "Tue Mar 01 04:56:42 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2607006579/fc8a2hzb9282wlkh5tuo_normal.jpeg", + "favourites_count": 1824, + "status": { + "retweet_count": 232, + "retweeted_status": { + "retweet_count": 232, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "671118301901291521", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 880, + "h": 440, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", + "type": "photo", + "indices": [ + 48, + 71 + ], + "media_url": "http://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", + "display_url": "pic.twitter.com/NJ3g1uSW7Q", + "id_str": "671118300680597504", + "expanded_url": "http://twitter.com/pickover/status/671118301901291521/photo/1", + "id": 671118300680597504, + "url": "https://t.co/NJ3g1uSW7Q" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Nov 30 00:07:26 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 671118301901291521, + "text": "This is a Venn Diagram, sort of. Maybe. Smile. https://t.co/NJ3g1uSW7Q", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 159, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681586911652253697", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 880, + "h": 440, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + } + }, + "source_status_id_str": "671118301901291521", + "url": "https://t.co/NJ3g1uSW7Q", + "media_url": "http://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", + "source_user_id_str": "16176754", + "id_str": "671118300680597504", + "id": 671118300680597504, + "media_url_https": "https://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", + "type": "photo", + "indices": [ + 62, + 85 + ], + "source_status_id": 671118301901291521, + "source_user_id": 16176754, + "display_url": "pic.twitter.com/NJ3g1uSW7Q", + "expanded_url": "http://twitter.com/pickover/status/671118301901291521/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "pickover", + "id_str": "16176754", + "id": 16176754, + "indices": [ + 3, + 12 + ], + "name": "Cliff Pickover" + } + ] + }, + "created_at": "Mon Dec 28 21:25:57 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681586911652253697, + "text": "RT @pickover: This is a Venn Diagram, sort of. Maybe. Smile. https://t.co/NJ3g1uSW7Q", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 259118402, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 370, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "15255729", + "following": false, + "friends_count": 759, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "netdot.co", + "url": "http://t.co/EcAnlji6b1", + "expanded_url": "http://netdot.co", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "00A4E0", + "geo_enabled": false, + "followers_count": 149, + "location": "Princeton, NJ", + "screen_name": "uncryptic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "James Polera", + "profile_use_background_image": true, + "description": "Husband, Dad, Programmer", + "url": "http://t.co/EcAnlji6b1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3275393726/ef737d3f9c00e972d7576d0b26376f74_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri Jun 27 15:23:49 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3275393726/ef737d3f9c00e972d7576d0b26376f74_normal.jpeg", + "favourites_count": 99, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "savraj", + "in_reply_to_user_id": 18775474, + "in_reply_to_status_id_str": "628181055971946496", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "628601576425451520", + "id": 628601576425451520, + "text": "@savraj very cool!", + "in_reply_to_user_id_str": "18775474", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "savraj", + "id_str": "18775474", + "id": 18775474, + "indices": [ + 0, + 7 + ], + "name": "Savraj Singh" + } + ] + }, + "created_at": "Tue Aug 04 16:21:09 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 628181055971946496, + "lang": "en" + }, + "default_profile_image": false, + "id": 15255729, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1009, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15255729/1425338482", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "10286", + "following": false, + "friends_count": 557, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "larrywright.me", + "url": "http://t.co/loD1xmJArs", + "expanded_url": "http://larrywright.me/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 1062, + "location": "Normal, IL", + "screen_name": "larrywright", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 83, + "name": "Larry Wright", + "profile_use_background_image": true, + "description": "Curious person; maker of things. Ruby, Chef, Sinatra, Docker, photography. Currently: Chef Lead for the Accenture Cloud Platform. Opinions are my own.", + "url": "http://t.co/loD1xmJArs", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663570206913097728/jQBM7Maw_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Oct 24 11:52:46 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663570206913097728/jQBM7Maw_normal.jpg", + "favourites_count": 3941, + "status": { + "retweet_count": 117, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 117, + "truncated": false, + "retweeted": false, + "id_str": "685226091737399297", + "id": 685226091737399297, + "text": "A health app that automatically posts your most unflattering naked selfie to Facebook if you don't reach your step goal.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 22:26:45 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 272, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685491086039609344", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "badbanana", + "id_str": "809760", + "id": 809760, + "indices": [ + 3, + 13 + ], + "name": "Tim Siedell" + } + ] + }, + "created_at": "Fri Jan 08 15:59:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685491086039609344, + "text": "RT @badbanana: A health app that automatically posts your most unflattering naked selfie to Facebook if you don't reach your step goal.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 10286, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 38510, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "267899351", + "following": false, + "friends_count": 287, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 157, + "location": "Dublin", + "screen_name": "dbosullivan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "diarmuid o'sullivan", + "profile_use_background_image": true, + "description": "Professional Network Engineer, Amateur Dad", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2944090679/e67f46da79338d5670762f8e2ae52f28_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 17 19:23:19 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2944090679/e67f46da79338d5670762f8e2ae52f28_normal.jpeg", + "favourites_count": 3, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "IrishRail", + "in_reply_to_user_id": 15115986, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677574417837346816", + "id": 677574417837346816, + "text": "@IrishRail how\u2019s the 20:13 Pearse to Skerries looking?", + "in_reply_to_user_id_str": "15115986", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "IrishRail", + "id_str": "15115986", + "id": 15115986, + "indices": [ + 0, + 10 + ], + "name": "Iarnr\u00f3d \u00c9ireann" + } + ] + }, + "created_at": "Thu Dec 17 19:41:44 +0000 2015", + "source": "Twitterrific", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 267899351, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 149, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "289403", + "following": false, + "friends_count": 1236, + "entities": { + "description": { + "urls": [ + { + "display_url": "bestpractical.com", + "url": "http://t.co/UFnJLZgN6J", + "expanded_url": "http://bestpractical.com", + "indices": [ + 14, + 36 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "s.ly", + "url": "https://t.co/uyPF67lH2k", + "expanded_url": "https://s.ly", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "F5F5F5", + "profile_link_color": "0F6985", + "geo_enabled": true, + "followers_count": 3091, + "location": "Oakland, CA", + "screen_name": "obra", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 257, + "name": "Jesse", + "profile_use_background_image": false, + "description": "keyboard.io \u2022 http://t.co/UFnJLZgN6J\r\n\r\nI like to cause trouble.", + "url": "https://t.co/uyPF67lH2k", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1465412656/userpic_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Dec 27 16:52:30 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F5F5F5", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1465412656/userpic_normal.png", + "favourites_count": 5596, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/37d88f13e7a85f14.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -115.173994, + 36.1280771 + ], + [ + -115.083699, + 36.1280771 + ], + [ + -115.083699, + 36.144748 + ], + [ + -115.173994, + 36.144748 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Winchester, NV", + "id": "37d88f13e7a85f14", + "name": "Winchester" + }, + "in_reply_to_screen_name": "starsandrobots", + "in_reply_to_user_id": 19281751, + "in_reply_to_status_id_str": "685577517785157632", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685577784253485056", + "id": 685577784253485056, + "text": "@starsandrobots but banned at the show", + "in_reply_to_user_id_str": "19281751", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "starsandrobots", + "id_str": "19281751", + "id": 19281751, + "indices": [ + 0, + 15 + ], + "name": "Star Simpson" + } + ] + }, + "created_at": "Fri Jan 08 21:44:15 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685577517785157632, + "lang": "en" + }, + "default_profile_image": false, + "id": 289403, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 22752, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/289403/1385248556", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "967370761", + "following": false, + "friends_count": 126, + "entities": { + "description": { + "urls": [ + { + "display_url": "mozilla.org", + "url": "http://t.co/3BL4fnhZut", + "expanded_url": "http://mozilla.org", + "indices": [ + 21, + 43 + ] + }, + { + "display_url": "bugzilla.org", + "url": "http://t.co/Jt0mPbUA4Q", + "expanded_url": "http://bugzilla.org", + "indices": [ + 63, + 85 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 117, + "location": "", + "screen_name": "justdavemiller", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Dave Miller", + "profile_use_background_image": true, + "description": "Network Operations @ http://t.co/3BL4fnhZut,\r\nProject Leader @ http://t.co/Jt0mPbUA4Q", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2888394041/6e4aaeda613033641fb6db550afc126c_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sat Nov 24 04:37:24 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2888394041/6e4aaeda613033641fb6db550afc126c_normal.png", + "favourites_count": 19, + "status": { + "retweet_count": 4, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 4, + "truncated": false, + "retweeted": false, + "id_str": "675703717006585856", + "id": 675703717006585856, + "text": "MCO has the worst security lines of any airport I've ever been to, anywhere in the world. #mozlando", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 90, + 99 + ], + "text": "mozlando" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Dec 12 15:48:14 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "675806472291282944", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 106, + 115 + ], + "text": "mozlando" + } + ], + "user_mentions": [ + { + "screen_name": "todesschaf", + "id_str": "14691220", + "id": 14691220, + "indices": [ + 3, + 14 + ], + "name": "Nicholas Hurley" + } + ] + }, + "created_at": "Sat Dec 12 22:36:33 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 675806472291282944, + "text": "RT @todesschaf: MCO has the worst security lines of any airport I've ever been to, anywhere in the world. #mozlando", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 967370761, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 534, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/967370761/1398836689", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14045442", + "following": false, + "friends_count": 1142, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mschade.me", + "url": "https://t.co/g9ELmn7nPH", + "expanded_url": "http://mschade.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "78588A", + "geo_enabled": true, + "followers_count": 1013, + "location": "m@mschade.me \u00b7 San Francisco", + "screen_name": "sch", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 64, + "name": "Michael Schade", + "profile_use_background_image": true, + "description": "helping people and building things at @stripe. I like flying, coding, cooking, running, reading, photography, and trying new things.", + "url": "https://t.co/g9ELmn7nPH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650397324867301376/MrR6XasI_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Feb 27 03:23:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650397324867301376/MrR6XasI_normal.jpg", + "favourites_count": 4195, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "CraigBuchek", + "in_reply_to_user_id": 29504430, + "in_reply_to_status_id_str": "685497436496777216", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685513621355413504", + "id": 685513621355413504, + "text": "@CraigBuchek @mfollett There's gonna be a similar folklore post about this Whole30 in 20 years", + "in_reply_to_user_id_str": "29504430", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CraigBuchek", + "id_str": "29504430", + "id": 29504430, + "indices": [ + 0, + 12 + ], + "name": "Craig Buchek" + }, + { + "screen_name": "mfollett", + "id_str": "15683300", + "id": 15683300, + "indices": [ + 13, + 22 + ], + "name": "mfollett" + } + ] + }, + "created_at": "Fri Jan 08 17:29:18 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685497436496777216, + "lang": "en" + }, + "default_profile_image": false, + "id": 14045442, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 7907, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14045442/1404692212", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "9870342", + "following": false, + "friends_count": 416, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tacticalpants.tumblr.com", + "url": "https://t.co/AvVS5l2yCn", + "expanded_url": "http://tacticalpants.tumblr.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 770, + "location": "San Francisco", + "screen_name": "mhat", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "Matt Knopp", + "profile_use_background_image": true, + "description": "Token Old Person @ Mode Analytics. All change is change.", + "url": "https://t.co/AvVS5l2yCn", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624797957624332288/YVrZFn0m_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Nov 02 01:04:10 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624797957624332288/YVrZFn0m_normal.jpg", + "favourites_count": 1443, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mhat", + "in_reply_to_user_id": 9870342, + "in_reply_to_status_id_str": "683504543078850560", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "683504958843441152", + "id": 683504958843441152, + "text": "@moonpolysoft besides anyone funding OLAPaaS should know they're in for at least a decade and probably two.", + "in_reply_to_user_id_str": "9870342", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "moonpolysoft", + "id_str": "14204623", + "id": 14204623, + "indices": [ + 0, + 13 + ], + "name": "Modafinil Duck" + } + ] + }, + "created_at": "Sun Jan 03 04:27:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683504543078850560, + "lang": "en" + }, + "default_profile_image": false, + "id": 9870342, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 10865, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9870342/1445322715", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "10776912", + "following": false, + "friends_count": 217, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "zen4ever.com", + "url": "http://t.co/8vNkoFTN", + "expanded_url": "http://www.zen4ever.com/", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": true, + "followers_count": 158, + "location": "Los Angeles", + "screen_name": "zen4ever", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 34, + "name": "Andrew Kurinnyi", + "profile_use_background_image": true, + "description": "Python aficionado. Other technologies I'm enjoying to work with: AWS, Ansible, , Swift/Objective-C, SASS/HTML, AngularJS/jQuery", + "url": "http://t.co/8vNkoFTN", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1250364986/SDC11775_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Sun Dec 02 01:03:39 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1250364986/SDC11775_normal.jpg", + "favourites_count": 2828, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1927193c57f35d51.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -118.3959042, + 34.075963 + ], + [ + -118.3433861, + 34.075963 + ], + [ + -118.3433861, + 34.098056 + ], + [ + -118.3959042, + 34.098056 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "West Hollywood, CA", + "id": "1927193c57f35d51", + "name": "West Hollywood" + }, + "in_reply_to_screen_name": "garnaat", + "in_reply_to_user_id": 17736981, + "in_reply_to_status_id_str": "685509163720519680", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685509876722708480", + "id": 685509876722708480, + "text": "@garnaat I hope it wasn\u2019t a production table :-p", + "in_reply_to_user_id_str": "17736981", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "garnaat", + "id_str": "17736981", + "id": 17736981, + "indices": [ + 0, + 8 + ], + "name": "Mitch Garnaat" + } + ] + }, + "created_at": "Fri Jan 08 17:14:25 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685509163720519680, + "lang": "en" + }, + "default_profile_image": false, + "id": 10776912, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "statuses_count": 1087, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10776912/1356168608", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24538862", + "following": false, + "friends_count": 681, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/jsolis", + "url": "http://t.co/GLIbgF5Nfe", + "expanded_url": "http://about.me/jsolis", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 203, + "location": "Trumbull, CT", + "screen_name": "jasonsolis", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Jason Solis", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/GLIbgF5Nfe", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/125464418/jay_boat_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Sun Mar 15 15:40:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/125464418/jay_boat_normal.jpg", + "favourites_count": 101, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677575884979707906", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 503, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 294, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 167, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWc7rTiVAAAqHMG.png", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CWc7rTiVAAAqHMG.png", + "display_url": "pic.twitter.com/mMNL9ZHqLl", + "id_str": "677575884107218944", + "expanded_url": "http://twitter.com/jasonsolis/status/677575884979707906/photo/1", + "id": 677575884107218944, + "url": "https://t.co/mMNL9ZHqLl" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Walmart", + "id_str": "17137891", + "id": 17137891, + "indices": [ + 38, + 46 + ], + "name": "Walmart" + } + ] + }, + "created_at": "Thu Dec 17 19:47:34 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677575884979707906, + "text": "My latest attempt to unsubscribe from @Walmart emails. I guess I'm not the only one having problems \u00af\\_(\u30c4)_/\u00af https://t.co/mMNL9ZHqLl", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 24538862, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 350, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "225581432", + "following": false, + "friends_count": 1599, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "seclectech.wordpress.com", + "url": "http://t.co/CPRtxWpvvq", + "expanded_url": "http://seclectech.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 865, + "location": "Lutherville Timonium, MD", + "screen_name": "seclectech", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 76, + "name": "Matt Franz", + "profile_use_background_image": false, + "description": "Operability Advocate. Container Troll. Former Security Guy. Ex @Cisco @digitalbond @TenableSecurity @Mandiant Often unclear if sarcastic/serious.", + "url": "http://t.co/CPRtxWpvvq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458050887542251520/3TCpHyCr_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sat Dec 11 23:12:13 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458050887542251520/3TCpHyCr_normal.png", + "favourites_count": 418, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685608329809424384", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/guyma/status/6\u2026", + "url": "https://t.co/yObkSNcmwg", + "expanded_url": "https://twitter.com/guyma/status/685602902585442304", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:45:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685608329809424384, + "text": "And \"complex, nuanced, and instant mental math performed that precedes the shields-down situation\" https://t.co/yObkSNcmwg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 225581432, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7942, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1019381", + "following": false, + "friends_count": 663, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1490, + "location": "Cary, NC", + "screen_name": "spotrh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 109, + "name": "Tom Callaway", + "profile_use_background_image": true, + "description": "University Outreach lead @ Red Hat\nCo-author of Raspberry Pi Hacks. Linux hacker, geocacher, pinball wizard, game player, frog lover, hockey nut, and scifi fan.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657728926555308036/XpK5Ufl5_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Mar 12 15:41:53 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657728926555308036/XpK5Ufl5_normal.jpg", + "favourites_count": 442, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685306570175987712", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "imgur.com/a/ZmthC", + "url": "https://t.co/JoDKE2DZwv", + "expanded_url": "http://imgur.com/a/ZmthC", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:46:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -115.2092535, + 35.984784 + ], + [ + -115.0610763, + 35.984784 + ], + [ + -115.0610763, + 36.137145 + ], + [ + -115.2092535, + 36.137145 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Paradise, NV", + "id": "8fa6d7a33b83ef26", + "name": "Paradise" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685306570175987712, + "text": "3D printing at CES - Day Two https://t.co/JoDKE2DZwv", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 1019381, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4892, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "15005347", + "following": false, + "friends_count": 1179, + "entities": { + "description": { + "urls": [ + { + "display_url": "GeekMom.com", + "url": "http://t.co/pZZjGME6O9", + "expanded_url": "http://GeekMom.com", + "indices": [ + 46, + 68 + ] + }, + { + "display_url": "opensource.com", + "url": "http://t.co/olzt8M25oa", + "expanded_url": "http://opensource.com", + "indices": [ + 71, + 93 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hobbyhobby.wordpress.com", + "url": "http://t.co/0nPq5tppyJ", + "expanded_url": "http://hobbyhobby.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": false, + "followers_count": 2548, + "location": "N 30\u00b016' 0'' / W 97\u00b044' 0''", + "screen_name": "suehle", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 172, + "name": "Ruth Suehle", + "profile_use_background_image": true, + "description": "Open Source and Standards at Red Hat. Editor, http://t.co/pZZjGME6O9 & http://t.co/olzt8M25oa. Co-author Raspberry Pi Hacks. Sewing, cake-ing, making.", + "url": "http://t.co/0nPq5tppyJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459426520017014784/l2Y-ZbwA_normal.jpeg", + "profile_background_color": "EBEBEB", + "created_at": "Wed Jun 04 14:19:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459426520017014784/l2Y-ZbwA_normal.jpeg", + "favourites_count": 172, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "CraigArgh", + "in_reply_to_user_id": 868494619, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685570763286523905", + "id": 685570763286523905, + "text": "@CraigArgh Just picked up the mail and had a copy of Learn to Program With Minecraft. Pretty sure my kid is going to melt with happiness.", + "in_reply_to_user_id_str": "868494619", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CraigArgh", + "id_str": "868494619", + "id": 868494619, + "indices": [ + 0, + 10 + ], + "name": "Craig Richardson" + } + ] + }, + "created_at": "Fri Jan 08 21:16:21 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15005347, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 6015, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15005347/1398370907", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "17639049", + "following": false, + "friends_count": 1166, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "robyn.io", + "url": "http://t.co/mr4VVE5ZKH", + "expanded_url": "http://robyn.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "1D6BAF", + "geo_enabled": false, + "followers_count": 2833, + "location": "scottsdale, az", + "screen_name": "robynbergeron", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 187, + "name": "robyn bergeron", + "profile_use_background_image": false, + "description": "Community Architect @ansible. Connector, contributor, co-conspirator. Fedora Project Leader in a previous life. Loves open source and bad puns.", + "url": "http://t.co/mr4VVE5ZKH", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/622089213194797060/3ARXTDjh_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Nov 26 01:56:21 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/622089213194797060/3ARXTDjh_normal.jpg", + "favourites_count": 4380, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "krishnan", + "in_reply_to_user_id": 782502, + "in_reply_to_status_id_str": "685151133317246977", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685162018660200448", + "id": 685162018660200448, + "text": "@krishnan grats, yo!", + "in_reply_to_user_id_str": "782502", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "krishnan", + "id_str": "782502", + "id": 782502, + "indices": [ + 0, + 9 + ], + "name": "Krish" + } + ] + }, + "created_at": "Thu Jan 07 18:12:09 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685151133317246977, + "lang": "en" + }, + "default_profile_image": false, + "id": 17639049, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "statuses_count": 16104, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17639049/1421690444", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "9887162", + "following": false, + "friends_count": 1048, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 6499, + "location": "Wake Forest, NC", + "screen_name": "markimbriaco", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 390, + "name": "Mark Imbriaco", + "profile_use_background_image": true, + "description": "Co-founder & CEO at @OperableInc. Previously: DigitalOcean, GitHub, LivingSocial, Heroku, and 37signals.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/471493631283441664/aiwoVRj7_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Fri Nov 02 14:56:54 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/471493631283441664/aiwoVRj7_normal.jpeg", + "favourites_count": 1188, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685572079891181573", + "id": 685572079891181573, + "text": "The next time I complain about something ops related, someone remind me of that Friday afternoon I spent hacking on CSS.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:21:35 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 16, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 9887162, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 20594, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "96179624", + "following": false, + "friends_count": 1227, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bit.ly/rhdev-1angdon", + "url": "http://t.co/sSnsxQ2TYi", + "expanded_url": "http://bit.ly/rhdev-1angdon", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 768, + "location": "", + "screen_name": "1angdon", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 40, + "name": "Langdon White", + "profile_use_background_image": true, + "description": "Developer and architect working to advocate for RHEL for developers. Tweets are my own.", + "url": "http://t.co/sSnsxQ2TYi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1822951183/D5IafQxH_normal", + "profile_background_color": "C0DEED", + "created_at": "Fri Dec 11 18:32:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1822951183/D5IafQxH_normal", + "favourites_count": 509, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": 2398413343, + "possibly_sensitive": false, + "id_str": "685029107193769984", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", + "type": "photo", + "indices": [ + 113, + 136 + ], + "media_url": "http://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", + "display_url": "pic.twitter.com/Q69ZE7UZZ1", + "id_str": "685029098373001216", + "expanded_url": "http://twitter.com/bexelbie/status/685029107193769984/photo/1", + "id": 685029098373001216, + "url": "https://t.co/Q69ZE7UZZ1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 93, + 112 + ], + "text": "BabyItsColdOutside" + } + ], + "user_mentions": [ + { + "screen_name": "ProjectAtomic", + "id_str": "2398413343", + "id": 2398413343, + "indices": [ + 0, + 14 + ], + "name": "Project Atomic " + }, + { + "screen_name": "CentOS", + "id_str": "17232315", + "id": 17232315, + "indices": [ + 58, + 65 + ], + "name": "Karanbir Singh" + } + ] + }, + "created_at": "Thu Jan 07 09:24:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "2398413343", + "place": null, + "in_reply_to_screen_name": "ProjectAtomic", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685029107193769984, + "text": "@ProjectAtomic hat Thursday. Because some us don't have a @CentOS shirt and it's not Friday. #BabyItsColdOutside https://t.co/Q69ZE7UZZ1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685100509292806144", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + } + }, + "source_status_id_str": "685029107193769984", + "url": "https://t.co/Q69ZE7UZZ1", + "media_url": "http://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", + "source_user_id_str": "10325302", + "id_str": "685029098373001216", + "id": 685029098373001216, + "media_url_https": "https://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685029107193769984, + "source_user_id": 10325302, + "display_url": "pic.twitter.com/Q69ZE7UZZ1", + "expanded_url": "http://twitter.com/bexelbie/status/685029107193769984/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 107, + 126 + ], + "text": "BabyItsColdOutside" + } + ], + "user_mentions": [ + { + "screen_name": "bexelbie", + "id_str": "10325302", + "id": 10325302, + "indices": [ + 3, + 12 + ], + "name": "bex" + }, + { + "screen_name": "ProjectAtomic", + "id_str": "2398413343", + "id": 2398413343, + "indices": [ + 14, + 28 + ], + "name": "Project Atomic " + }, + { + "screen_name": "CentOS", + "id_str": "17232315", + "id": 17232315, + "indices": [ + 72, + 79 + ], + "name": "Karanbir Singh" + } + ] + }, + "created_at": "Thu Jan 07 14:07:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685100509292806144, + "text": "RT @bexelbie: @ProjectAtomic hat Thursday. Because some us don't have a @CentOS shirt and it's not Friday. #BabyItsColdOutside https://t.co\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 96179624, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3765, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "13978722", + "following": false, + "friends_count": 676, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fladpad.com", + "url": "http://t.co/Am0KVvc2DI", + "expanded_url": "http://www.fladpad.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/739216918/bed2985374c7da6d1ca4781c45a3bfed.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 453, + "location": "Philadelphia", + "screen_name": "bflad", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "Brian Flad", + "profile_use_background_image": true, + "description": "Music, photography, travel, and technology are my life. Lover of all things food and beer. Any thoughts and words here are my own.", + "url": "http://t.co/Am0KVvc2DI", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2523270070/image_normal.jpg", + "profile_background_color": "352726", + "created_at": "Tue Feb 26 01:44:18 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2523270070/image_normal.jpg", + "favourites_count": 49, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685253297230450688", + "id": 685253297230450688, + "text": "As I'm walking past it... Why is there a fire alarm system in a concrete parking structure?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 00:14:52 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 13978722, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/739216918/bed2985374c7da6d1ca4781c45a3bfed.jpeg", + "statuses_count": 8456, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13978722/1355604820", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1526157127", + "following": false, + "friends_count": 859, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 106, + "location": "Denver, CO", + "screen_name": "pwgnr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Critmoose", + "profile_use_background_image": true, + "description": "Virtualization technologist | Ops and tools | General banter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/460929940624392192/3F0qvis1_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Mon Jun 17 23:08:23 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/460929940624392192/3F0qvis1_normal.jpeg", + "favourites_count": 349, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/b49b3053b5c25bf5.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -105.109815, + 39.614151 + ], + [ + -104.734372, + 39.614151 + ], + [ + -104.734372, + 39.812975 + ], + [ + -105.109815, + 39.812975 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Denver, CO", + "id": "b49b3053b5c25bf5", + "name": "Denver" + }, + "in_reply_to_screen_name": "BenMSmith", + "in_reply_to_user_id": 36894019, + "in_reply_to_status_id_str": "682054747998695424", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682058101298573312", + "id": 682058101298573312, + "text": "@BenMSmith Alas Ben, I've moved to Denver and won't be able to make it this year. Has the team name been revealed yet?", + "in_reply_to_user_id_str": "36894019", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BenMSmith", + "id_str": "36894019", + "id": 36894019, + "indices": [ + 0, + 10 + ], + "name": "Ben Smith" + } + ] + }, + "created_at": "Wed Dec 30 04:38:18 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 682054747998695424, + "lang": "en" + }, + "default_profile_image": false, + "id": 1526157127, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 748, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1526157127/1398716661", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "35019631", + "following": false, + "friends_count": 508, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hackeryhq.com", + "url": "http://t.co/xU9ThntxLj", + "expanded_url": "http://hackeryhq.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 171, + "location": "Martinez, CA", + "screen_name": "DoriftoShoes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 34, + "name": "Patrick Hoolboom", + "profile_use_background_image": false, + "description": "Automating myself out of a job...One workflow at a time. Trying to never do the same thing twice.", + "url": "http://t.co/xU9ThntxLj", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1580497725/beaker_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Apr 24 19:50:40 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1580497725/beaker_normal.jpg", + "favourites_count": 162, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685535080886976513", + "geo": { + "coordinates": [ + 38.01765184, + -122.13573933 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "swarmapp.com/c/6ZKeacAscNB", + "url": "https://t.co/Q2KniQRfr3", + "expanded_url": "https://www.swarmapp.com/c/6ZKeacAscNB", + "indices": [ + 43, + 66 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:54:34 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/71d33f776fe41dfb.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.157021, + 37.954027 + ], + [ + -122.075217, + 37.954027 + ], + [ + -122.075217, + 38.037226 + ], + [ + -122.157021, + 38.037226 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Martinez, CA", + "id": "71d33f776fe41dfb", + "name": "Martinez" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685535080886976513, + "text": "Coffee date (@ Barrelista in Martinez, CA) https://t.co/Q2KniQRfr3", + "coordinates": { + "coordinates": [ + -122.13573933, + 38.01765184 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Foursquare" + }, + "default_profile_image": false, + "id": 35019631, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 953, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "66432490", + "following": false, + "friends_count": 382, + "entities": { + "description": { + "urls": [ + { + "display_url": "shop.oreilly.com/product/063692\u2026", + "url": "https://t.co/vIR4eVGVkp", + "expanded_url": "http://shop.oreilly.com/product/0636920035794.do", + "indices": [ + 63, + 86 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "obfuscurity.com", + "url": "https://t.co/LQBsafkde9", + "expanded_url": "http://obfuscurity.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 4067, + "location": "Westminster, MD", + "screen_name": "obfuscurity", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 278, + "name": "Jason Dixon", + "profile_use_background_image": true, + "description": "Director of Integrations @Librato. Author of the Graphite Book https://t.co/vIR4eVGVkp Previously: Dyn, GitHub, Heroku and Circonus.", + "url": "https://t.co/LQBsafkde9", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/626581711556448256/EcRbS6R9_normal.png", + "profile_background_color": "131516", + "created_at": "Mon Aug 17 18:00:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626581711556448256/EcRbS6R9_normal.png", + "favourites_count": 209, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jordansissel", + "in_reply_to_user_id": 15782607, + "in_reply_to_status_id_str": "685332408875401217", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685333853498667008", + "id": 685333853498667008, + "text": "@jordansissel @fivetanley wow, that\u2019s fucking brilliant", + "in_reply_to_user_id_str": "15782607", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jordansissel", + "id_str": "15782607", + "id": 15782607, + "indices": [ + 0, + 13 + ], + "name": "@jordansissel" + }, + { + "screen_name": "fivetanley", + "id_str": "306497372", + "id": 306497372, + "indices": [ + 14, + 25 + ], + "name": "dead emo kid" + } + ] + }, + "created_at": "Fri Jan 08 05:34:58 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685332408875401217, + "lang": "en" + }, + "default_profile_image": false, + "id": 66432490, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 34479, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/66432490/1370191219", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "235668252", + "following": false, + "friends_count": 237, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/mike.murphy", + "url": "http://t.co/59rM1FJDUZ", + "expanded_url": "http://about.me/mike.murphy", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 110, + "location": "Atlanta, GA", + "screen_name": "martianbogon", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 7, + "name": "Mike Murphy", + "profile_use_background_image": true, + "description": "Father of Two, Married to Patty, IT Infrastructure Architect, Graduate of Boston University. Opinions are my own.", + "url": "http://t.co/59rM1FJDUZ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654376957199687684/kp0TbZD__normal.jpg", + "profile_background_color": "131516", + "created_at": "Sat Jan 08 20:06:09 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654376957199687684/kp0TbZD__normal.jpg", + "favourites_count": 323, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685482918504972288", + "id": 685482918504972288, + "text": "A recursive structure of devops teams.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:27:18 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 235668252, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 982, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "40720843", + "following": false, + "friends_count": 33842, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "his.com/pshapiro/brief\u2026", + "url": "http://t.co/La2YpjPmos", + "expanded_url": "http://www.his.com/pshapiro/briefbio.html", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629902371666141184/lfrRFbv_.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 36097, + "location": "Washington DC", + "screen_name": "philshapiro", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1506, + "name": "Phil Shapiro", + "profile_use_background_image": true, + "description": "Edtech blogger refurbisher satirist professor songwriter screencaster library geek storyteller FOSS advocate immigrant change agent inclusion dreamer whimsy", + "url": "http://t.co/La2YpjPmos", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660953223159746560/C_31hXuT_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun May 17 19:36:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660953223159746560/C_31hXuT_normal.jpg", + "favourites_count": 3559, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685601805217181697", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 818, + "h": 960, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 704, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 399, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", + "type": "photo", + "indices": [ + 61, + 84 + ], + "media_url": "http://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", + "display_url": "pic.twitter.com/CZftmyOMsd", + "id_str": "685601805145903105", + "expanded_url": "http://twitter.com/DougUNDP/status/685601805217181697/photo/1", + "id": 685601805145903105, + "url": "https://t.co/CZftmyOMsd" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Brasilmagic", + "id_str": "21833728", + "id": 21833728, + "indices": [ + 48, + 60 + ], + "name": "Brasilmagic" + } + ] + }, + "created_at": "Fri Jan 08 23:19:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685601805217181697, + "text": "How Public health messaging should be done! via @Brasilmagic https://t.co/CZftmyOMsd", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685601847957131264", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 818, + "h": 960, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 704, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 399, + "resize": "fit" + } + }, + "source_status_id_str": "685601805217181697", + "url": "https://t.co/CZftmyOMsd", + "media_url": "http://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", + "source_user_id_str": "633999734", + "id_str": "685601805145903105", + "id": 685601805145903105, + "media_url_https": "https://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", + "type": "photo", + "indices": [ + 75, + 98 + ], + "source_status_id": 685601805217181697, + "source_user_id": 633999734, + "display_url": "pic.twitter.com/CZftmyOMsd", + "expanded_url": "http://twitter.com/DougUNDP/status/685601805217181697/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DougUNDP", + "id_str": "633999734", + "id": 633999734, + "indices": [ + 3, + 12 + ], + "name": "Douglas Webb" + }, + { + "screen_name": "Brasilmagic", + "id_str": "21833728", + "id": 21833728, + "indices": [ + 62, + 74 + ], + "name": "Brasilmagic" + } + ] + }, + "created_at": "Fri Jan 08 23:19:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685601847957131264, + "text": "RT @DougUNDP: How Public health messaging should be done! via @Brasilmagic https://t.co/CZftmyOMsd", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 40720843, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629902371666141184/lfrRFbv_.jpg", + "statuses_count": 68500, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/40720843/1439016769", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14561327", + "following": false, + "friends_count": 202, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "david.heinemeierhansson.com", + "url": "http://t.co/IaAsahpjsQ", + "expanded_url": "http://david.heinemeierhansson.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 155152, + "location": "Chicago, USA", + "screen_name": "dhh", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8024, + "name": "DHH", + "profile_use_background_image": true, + "description": "Creator of Ruby on Rails, Founder & CTO at Basecamp (formerly 37signals), NYT Best-selling author of REWORK and REMOTE, and Le Mans class-winning racing driver.", + "url": "http://t.co/IaAsahpjsQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2556368541/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Apr 27 20:19:25 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2556368541/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "favourites_count": 312, + "status": { + "retweet_count": 78, + "retweeted_status": { + "retweet_count": 78, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685516990333751296", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/rails/rails/pu\u2026", + "url": "https://t.co/WosS7Br1W3", + "expanded_url": "https://github.com/rails/rails/pull/22934", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mperham", + "id_str": "14060922", + "id": 14060922, + "indices": [ + 45, + 53 + ], + "name": "Mike Perham" + } + ] + }, + "created_at": "Fri Jan 08 17:42:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685516990333751296, + "text": "Action Cable no longer depends on Celluloid. @mperham converted it to use concurrent-ruby instead \ud83d\udc4f https://t.co/WosS7Br1W3", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 101, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685517292935987200", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/rails/rails/pu\u2026", + "url": "https://t.co/WosS7Br1W3", + "expanded_url": "https://github.com/rails/rails/pull/22934", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rails", + "id_str": "3116191", + "id": 3116191, + "indices": [ + 3, + 9 + ], + "name": "Ruby on Rails" + }, + { + "screen_name": "mperham", + "id_str": "14060922", + "id": 14060922, + "indices": [ + 56, + 64 + ], + "name": "Mike Perham" + } + ] + }, + "created_at": "Fri Jan 08 17:43:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685517292935987200, + "text": "RT @rails: Action Cable no longer depends on Celluloid. @mperham converted it to use concurrent-ruby instead \ud83d\udc4f https://t.co/WosS7Br1W3", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 14561327, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 28479, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14561327/1398347760", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "5637652", + "following": false, + "friends_count": 169, + "entities": { + "description": { + "urls": [ + { + "display_url": "stackexchange.com", + "url": "http://t.co/JbStnko3pv", + "expanded_url": "http://stackexchange.com", + "indices": [ + 33, + 55 + ] + }, + { + "display_url": "discourse.org", + "url": "http://t.co/kaSwrMgE57", + "expanded_url": "http://www.discourse.org", + "indices": [ + 60, + 82 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "blog.codinghorror.com", + "url": "http://t.co/rM9N1bQpLr", + "expanded_url": "http://blog.codinghorror.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623412/hunt-wumpus-bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0E1F5", + "profile_link_color": "282D58", + "geo_enabled": false, + "followers_count": 186754, + "location": "Bay Area, CA", + "screen_name": "codinghorror", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8805, + "name": "Jeff Atwood", + "profile_use_background_image": true, + "description": "Indoor enthusiast. Co-founder of http://t.co/JbStnko3pv and http://t.co/kaSwrMgE57. Disclaimer: I have no idea what I'm talking about.", + "url": "http://t.co/rM9N1bQpLr", + "profile_text_color": "383A48", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/632821853627678720/zPKK7jql_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Sun Apr 29 20:50:37 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "E0E1F5", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/632821853627678720/zPKK7jql_normal.png", + "favourites_count": 6821, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "AriyaHidayat", + "in_reply_to_user_id": 15608761, + "in_reply_to_status_id_str": "685594181692076033", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685596358552637441", + "id": 685596358552637441, + "text": "@AriyaHidayat @reybango @eviltrout I will ask the people who work here if they are OK with a 100% salary cut ;)", + "in_reply_to_user_id_str": "15608761", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AriyaHidayat", + "id_str": "15608761", + "id": 15608761, + "indices": [ + 0, + 13 + ], + "name": "Ariya Hidayat" + }, + { + "screen_name": "reybango", + "id_str": "1589691", + "id": 1589691, + "indices": [ + 14, + 23 + ], + "name": "Rey Bango" + }, + { + "screen_name": "eviltrout", + "id_str": "16712921", + "id": 16712921, + "indices": [ + 24, + 34 + ], + "name": "Robin Ward" + } + ] + }, + "created_at": "Fri Jan 08 22:58:04 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685594181692076033, + "lang": "en" + }, + "default_profile_image": false, + "id": 5637652, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623412/hunt-wumpus-bg.png", + "statuses_count": 47257, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5637652/1398207303", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "90221684", + "following": false, + "friends_count": 372, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theangryangel.co.uk", + "url": "http://t.co/qoDV6L8xHL", + "expanded_url": "http://theangryangel.co.uk/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 86, + "location": "", + "screen_name": "the_angry_angel", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "the_angry_angel", + "profile_use_background_image": false, + "description": "Sysadmin. Generic geek. Gamer. Hobbiest Aqueous Thermomancer. Frequently sleep deprived.", + "url": "http://t.co/qoDV6L8xHL", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2060711415/gravatar_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Nov 15 18:54:49 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2060711415/gravatar_normal.jpg", + "favourites_count": 28, + "status": { + "retweet_count": 3622, + "retweeted_status": { + "retweet_count": 3622, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682281861830160384", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bits.debian.org/2015/12/mourni\u2026", + "url": "https://t.co/1EhZ5BwKSH", + "expanded_url": "https://bits.debian.org/2015/12/mourning-ian-murdock.html", + "indices": [ + 93, + 116 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 19:27:26 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682281861830160384, + "text": "Debian is saddened to share the news of the passing of Ian Murdock. We will miss him dearly. https://t.co/1EhZ5BwKSH", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 968, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682286650534277120", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bits.debian.org/2015/12/mourni\u2026", + "url": "https://t.co/1EhZ5BwKSH", + "expanded_url": "https://bits.debian.org/2015/12/mourning-ian-murdock.html", + "indices": [ + 105, + 128 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "debian", + "id_str": "24253645", + "id": 24253645, + "indices": [ + 3, + 10 + ], + "name": "The Debian Project" + } + ] + }, + "created_at": "Wed Dec 30 19:46:28 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682286650534277120, + "text": "RT @debian: Debian is saddened to share the news of the passing of Ian Murdock. We will miss him dearly. https://t.co/1EhZ5BwKSH", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 90221684, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 959, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "12466012", + "following": false, + "friends_count": 1065, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "graylog.org", + "url": "http://t.co/mnPWKabISf", + "expanded_url": "http://www.graylog.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 1667, + "location": "Houston, TX / Hamburg, GER", + "screen_name": "_lennart", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 101, + "name": "Lennart Koopmann", + "profile_use_background_image": true, + "description": "Founder and CTO at Graylog, Inc. Started the @graylog2 project in 2010. Ironman training, Party Gorillas.", + "url": "http://t.co/mnPWKabISf", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629114058344497152/oqt-f6Tf_normal.jpg", + "profile_background_color": "131516", + "created_at": "Sun Jan 20 19:05:12 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629114058344497152/oqt-f6Tf_normal.jpg", + "favourites_count": 2858, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685607302062305280", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 1820, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 1066, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPEMppWwAADqrl.jpg", + "type": "photo", + "indices": [ + 65, + 88 + ], + "media_url": "http://pbs.twimg.com/media/CYPEMppWwAADqrl.jpg", + "display_url": "pic.twitter.com/6NqJUAR5XB", + "id_str": "685607289907232768", + "expanded_url": "http://twitter.com/_lennart/status/685607302062305280/photo/1", + "id": 685607289907232768, + "url": "https://t.co/6NqJUAR5XB" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "solarce", + "id_str": "822284", + "id": 822284, + "indices": [ + 55, + 63 + ], + "name": "leader of cola" + } + ] + }, + "created_at": "Fri Jan 08 23:41:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1c69a67ad480e1b1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -95.823268, + 29.522325 + ], + [ + -95.069705, + 29.522325 + ], + [ + -95.069705, + 30.1546646 + ], + [ + -95.823268, + 30.1546646 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Houston, TX", + "id": "1c69a67ad480e1b1", + "name": "Houston" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685607302062305280, + "text": "1/8/16 we will never forget (after only 2 years or so, @solarce) https://t.co/6NqJUAR5XB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 12466012, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 19492, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12466012/1404744849", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "687843", + "following": false, + "friends_count": 736, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "patrickod.com", + "url": "http://t.co/Q2ipmL5d8W", + "expanded_url": "http://patrickod.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 719, + "location": "San Francisco, California", + "screen_name": "patrickod", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Patrick O'Doherty", + "profile_use_background_image": false, + "description": "Engineer @ Intercom in SF, hacker, tinkerer, aspiring cryptoanarchist. GPG: F05E 232B 31FE 4222 He/him", + "url": "http://t.co/Q2ipmL5d8W", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685104886703353856/Gv9bLPB6_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jan 23 18:15:37 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685104886703353856/Gv9bLPB6_normal.jpg", + "favourites_count": 2257, + "status": { + "retweet_count": 87, + "retweeted_status": { + "retweet_count": 87, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685524575396978688", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/josephfcox/sta\u2026", + "url": "https://t.co/cWt7wYaqKF", + "expanded_url": "https://twitter.com/josephfcox/status/685510751063248896", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:12:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685524575396978688, + "text": "For 2 weeks in '15 the FBI ran what may be the biggest child porn site on the darkweb, distributing CP to 215k users https://t.co/cWt7wYaqKF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 30, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685527148208254977", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/josephfcox/sta\u2026", + "url": "https://t.co/cWt7wYaqKF", + "expanded_url": "https://twitter.com/josephfcox/status/685510751063248896", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "csoghoian", + "id_str": "14669471", + "id": 14669471, + "indices": [ + 3, + 13 + ], + "name": "Christopher Soghoian" + } + ] + }, + "created_at": "Fri Jan 08 18:23:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685527148208254977, + "text": "RT @csoghoian: For 2 weeks in '15 the FBI ran what may be the biggest child porn site on the darkweb, distributing CP to 215k users https:/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 687843, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "statuses_count": 9376, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/687843/1410225843", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "6579422", + "following": false, + "friends_count": 816, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bettcher.net", + "url": "http://t.co/Ex4n38uYNW", + "expanded_url": "http://bettcher.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 5726, + "location": "Louisville, CO", + "screen_name": "Pufferfish", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 58, + "name": "Jon Bettcher", + "profile_use_background_image": true, + "description": "Hacker, Beer Enthusiast, Colorad(o)an via California. Mobile engineer @Twitter.", + "url": "http://t.co/Ex4n38uYNW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/637107928881717248/_53TORWT_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Jun 04 20:53:44 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637107928881717248/_53TORWT_normal.jpg", + "favourites_count": 4717, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5d1bffd975c6ff73.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -105.1836432, + 39.9395764 + ], + [ + -105.099812, + 39.9395764 + ], + [ + -105.099812, + 39.998224 + ], + [ + -105.1836432, + 39.998224 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Louisville, CO", + "id": "5d1bffd975c6ff73", + "name": "Louisville" + }, + "in_reply_to_screen_name": "mrcs", + "in_reply_to_user_id": 101935227, + "in_reply_to_status_id_str": "684589819960266752", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684591013218783234", + "id": 684591013218783234, + "text": "@mrcs @Brilanka I keep a picture of @TheDon on the side of my helmet. Underneath reads 'NEVER FORGET'.", + "in_reply_to_user_id_str": "101935227", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mrcs", + "id_str": "101935227", + "id": 101935227, + "indices": [ + 0, + 5 + ], + "name": "Marcus Hanson" + }, + { + "screen_name": "Brilanka", + "id_str": "69128362", + "id": 69128362, + "indices": [ + 6, + 15 + ], + "name": "Brilanka" + }, + { + "screen_name": "TheDon", + "id_str": "24799086", + "id": 24799086, + "indices": [ + 37, + 44 + ], + "name": "Don" + } + ] + }, + "created_at": "Wed Jan 06 04:23:11 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684589819960266752, + "lang": "en" + }, + "default_profile_image": false, + "id": 6579422, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5275, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6579422/1440733343", + "is_translator": false + }, + { + "time_zone": "America/New_York", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18510643", + "following": false, + "friends_count": 422, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.douglasstanley.com", + "url": "http://t.co/UfZiJnhhrI", + "expanded_url": "http://blog.douglasstanley.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 263, + "location": "Ohio", + "screen_name": "thafreak", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "!Dr", + "profile_use_background_image": true, + "description": "CS Geek, PhD dropout, Linux something, blah blah...devops...cloud...", + "url": "http://t.co/UfZiJnhhrI", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/522113078331469824/3hNzlCRo_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Dec 31 17:11:43 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522113078331469824/3hNzlCRo_normal.jpeg", + "favourites_count": 1326, + "status": { + "retweet_count": 151, + "retweeted_status": { + "retweet_count": 151, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684759334597857280", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "arstechnica.com/security/2016/\u2026", + "url": "https://t.co/ucH6dJHoNl", + "expanded_url": "http://arstechnica.com/security/2016/01/fatally-weak-md5-function-torpedoes-crypto-protections-in-https-and-ipsec/", + "indices": [ + 74, + 97 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dangoodin001", + "id_str": "14150736", + "id": 14150736, + "indices": [ + 101, + 114 + ], + "name": "Dan Goodin" + } + ] + }, + "created_at": "Wed Jan 06 15:32:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684759334597857280, + "text": "Fatally weak MD5 function torpedoes crypto protections in HTTPS and IPSEC https://t.co/ucH6dJHoNl by @dangoodin001", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 84, + "contributors": null, + "source": "Ars tweetbot" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685217743394717701", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "arstechnica.com/security/2016/\u2026", + "url": "https://t.co/ucH6dJHoNl", + "expanded_url": "http://arstechnica.com/security/2016/01/fatally-weak-md5-function-torpedoes-crypto-protections-in-https-and-ipsec/", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "arstechnica", + "id_str": "717313", + "id": 717313, + "indices": [ + 3, + 15 + ], + "name": "Ars Technica" + }, + { + "screen_name": "dangoodin001", + "id_str": "14150736", + "id": 14150736, + "indices": [ + 118, + 131 + ], + "name": "Dan Goodin" + } + ] + }, + "created_at": "Thu Jan 07 21:53:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685217743394717701, + "text": "RT @arstechnica: Fatally weak MD5 function torpedoes crypto protections in HTTPS and IPSEC https://t.co/ucH6dJHoNl by @dangoodin001", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 18510643, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 4085, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18510643/1406063888", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "34610111", + "following": false, + "friends_count": 1089, + "entities": { + "description": { + "urls": [ + { + "display_url": "unscatter.com", + "url": "http://t.co/lv2hAzXh34", + "expanded_url": "http://www.unscatter.com", + "indices": [ + 43, + 65 + ] + }, + { + "display_url": "joerussbowman.tumblr.com", + "url": "http://t.co/uDoXXLNixh", + "expanded_url": "http://joerussbowman.tumblr.com", + "indices": [ + 75, + 97 + ] + }, + { + "display_url": "github.com/joerussbowman", + "url": "https://t.co/Z35VDQ5ouH", + "expanded_url": "https://github.com/joerussbowman", + "indices": [ + 114, + 137 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22842058/twitter.jpg", + "notifications": false, + "profile_sidebar_fill_color": "0D4D69", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 457, + "location": "", + "screen_name": "joerussbowman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Joe Russ Bowman", + "profile_use_background_image": true, + "description": "Sysadmin, sometimes programmer. Working on http://t.co/lv2hAzXh34 - blog @ http://t.co/uDoXXLNixh and on github - https://t.co/Z35VDQ5ouH", + "url": null, + "profile_text_color": "5BA1F0", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/502104444830351360/BJ9HL5C8_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Thu Apr 23 13:24:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/502104444830351360/BJ9HL5C8_normal.jpeg", + "favourites_count": 26, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685258190834012160", + "id": 685258190834012160, + "text": "Checking out Shannara Chronicles, waiting for Indiana Jones to come save the elves. #showingmyage", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 84, + 97 + ], + "text": "showingmyage" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 00:34:18 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 34610111, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22842058/twitter.jpg", + "statuses_count": 6465, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14510730", + "following": false, + "friends_count": 302, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sysdoc.io", + "url": "https://t.co/sMSA5BwOj5", + "expanded_url": "http://sysdoc.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000112950477/48f0551ad73bae7fb31e6254fdf24415.png", + "notifications": false, + "profile_sidebar_fill_color": "C4C4C4", + "profile_link_color": "3C6CE6", + "geo_enabled": false, + "followers_count": 95, + "location": "", + "screen_name": "nrcook", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "Nick Cook", + "profile_use_background_image": true, + "description": "Product guy at @blackfinmedia, founder of Sysdoc.", + "url": "https://t.co/sMSA5BwOj5", + "profile_text_color": "BECFCC", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/598290668146962432/kgBgheRN_normal.png", + "profile_background_color": "F2EAD0", + "created_at": "Thu Apr 24 12:24:07 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/598290668146962432/kgBgheRN_normal.png", + "favourites_count": 295, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "669565468324286465", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1GYHikT", + "url": "https://t.co/fVd2SvFjXU", + "expanded_url": "http://bit.ly/1GYHikT", + "indices": [ + 28, + 51 + ] + } + ], + "hashtags": [ + { + "indices": [ + 52, + 64 + ], + "text": "programming" + }, + { + "indices": [ + 65, + 75 + ], + "text": "developer" + }, + { + "indices": [ + 76, + 85 + ], + "text": "learning" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Nov 25 17:17:02 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 669565468324286465, + "text": "Learning to Program Sucks - https://t.co/fVd2SvFjXU #programming #developer #learning", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "Meet Edgar" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "669572900555485188", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1GYHikT", + "url": "https://t.co/fVd2SvFjXU", + "expanded_url": "http://bit.ly/1GYHikT", + "indices": [ + 44, + 67 + ] + } + ], + "hashtags": [ + { + "indices": [ + 68, + 80 + ], + "text": "programming" + }, + { + "indices": [ + 81, + 91 + ], + "text": "developer" + }, + { + "indices": [ + 92, + 101 + ], + "text": "learning" + } + ], + "user_mentions": [ + { + "screen_name": "donnfelker", + "id_str": "14393851", + "id": 14393851, + "indices": [ + 3, + 14 + ], + "name": "Donn Felker" + } + ] + }, + "created_at": "Wed Nov 25 17:46:34 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 669572900555485188, + "text": "RT @donnfelker: Learning to Program Sucks - https://t.co/fVd2SvFjXU #programming #developer #learning", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14510730, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000112950477/48f0551ad73bae7fb31e6254fdf24415.png", + "statuses_count": 917, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "15851858", + "following": false, + "friends_count": 885, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": true, + "followers_count": 446, + "location": "san francisco", + "screen_name": "setient", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "setient", + "profile_use_background_image": true, + "description": "dev ops ftw. I am also a supportive of positivity. hearts everyone", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/522835111041961984/tJCL2ACm_normal.jpeg", + "profile_background_color": "709397", + "created_at": "Thu Aug 14 15:49:58 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522835111041961984/tJCL2ACm_normal.jpeg", + "favourites_count": 1340, + "status": { + "retweet_count": 18, + "retweeted_status": { + "retweet_count": 18, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685472504115281920", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/jack_daniel/st\u2026", + "url": "https://t.co/ES9Q17g8G3", + "expanded_url": "https://twitter.com/jack_daniel/status/684936983219728385", + "indices": [ + 58, + 81 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:45:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685472504115281920, + "text": "We've lost a great friend, but you can make him live on. https://t.co/ES9Q17g8G3", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 27, + "contributors": null, + "source": "TweetCaster for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685495361608126464", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/jack_daniel/st\u2026", + "url": "https://t.co/ES9Q17g8G3", + "expanded_url": "https://twitter.com/jack_daniel/status/684936983219728385", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jack_daniel", + "id_str": "7025212", + "id": 7025212, + "indices": [ + 3, + 15 + ], + "name": "Jack Daniel" + } + ] + }, + "created_at": "Fri Jan 08 16:16:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685495361608126464, + "text": "RT @jack_daniel: We've lost a great friend, but you can make him live on. https://t.co/ES9Q17g8G3", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 15851858, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 5312, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "20865431", + "following": false, + "friends_count": 3374, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "standalone-sysadmin.com", + "url": "http://t.co/YORxb7gX1b", + "expanded_url": "http://www.standalone-sysadmin.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/106552711/twitter-backgrounda.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 5182, + "location": "Los Angeles, CA", + "screen_name": "standaloneSA", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 450, + "name": "Matt Simmons", + "profile_use_background_image": true, + "description": "I play with computers all day in Iron Man's spaceship factory - Tweets are my own", + "url": "http://t.co/YORxb7gX1b", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617651226658738176/3aplbFKo_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sat Feb 14 19:14:10 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617651226658738176/3aplbFKo_normal.jpg", + "favourites_count": 3404, + "status": { + "retweet_count": 12, + "retweeted_status": { + "retweet_count": 12, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685259250369601537", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nbcnews.com/tech/innovatio\u2026", + "url": "https://t.co/mpPdCyOHNn", + "expanded_url": "http://www.nbcnews.com/tech/innovation/spacex-plans-drone-ship-rocket-landing-jan-17-launch-n492471", + "indices": [ + 37, + 60 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 00:38:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685259250369601537, + "text": "Now, let's nail a droneship landing! https://t.co/mpPdCyOHNn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 22, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685271429793751040", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nbcnews.com/tech/innovatio\u2026", + "url": "https://t.co/mpPdCyOHNn", + "expanded_url": "http://www.nbcnews.com/tech/innovation/spacex-plans-drone-ship-rocket-landing-jan-17-launch-n492471", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "larsblackmore", + "id_str": "562325211", + "id": 562325211, + "indices": [ + 3, + 17 + ], + "name": "Lars Blackmore" + } + ] + }, + "created_at": "Fri Jan 08 01:26:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685271429793751040, + "text": "RT @larsblackmore: Now, let's nail a droneship landing! https://t.co/mpPdCyOHNn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 20865431, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/106552711/twitter-backgrounda.jpg", + "statuses_count": 23481, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/20865431/1401481629", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "132978921", + "following": false, + "friends_count": 736, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "etchsoftware.com", + "url": "http://t.co/6bJgwMooHY", + "expanded_url": "http://www.etchsoftware.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/413186195/DrWho10thDoor.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "10184F", + "geo_enabled": true, + "followers_count": 583, + "location": "Portland, OR", + "screen_name": "geekcode", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 54, + "name": "Mike Bijon", + "profile_use_background_image": false, + "description": "Platform engineer & VP Tech @billupsww, coffee, #golang, coffee, #WordPress core & OSS contrib, runner, coffee. Yes, that much coffee.", + "url": "http://t.co/6bJgwMooHY", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2778765012/1ded7889acf754782539a059a159768d_normal.png", + "profile_background_color": "5D6569", + "created_at": "Wed Apr 14 17:53:29 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2778765012/1ded7889acf754782539a059a159768d_normal.png", + "favourites_count": 2234, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "danielbachhuber", + "in_reply_to_user_id": 272166936, + "in_reply_to_status_id_str": "685495807496159232", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685591211986440192", + "id": 685591211986440192, + "text": "@danielbachhuber Like refactoring a whole lot just to make single-line corner cases testable?", + "in_reply_to_user_id_str": "272166936", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "danielbachhuber", + "id_str": "272166936", + "id": 272166936, + "indices": [ + 0, + 16 + ], + "name": "Daniel Bachhuber" + } + ] + }, + "created_at": "Fri Jan 08 22:37:37 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685495807496159232, + "lang": "en" + }, + "default_profile_image": false, + "id": 132978921, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/413186195/DrWho10thDoor.jpg", + "statuses_count": 3841, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132978921/1398211951", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "385757065", + "following": false, + "friends_count": 31, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rocketlift.com", + "url": "http://t.co/st5RoBqEUR", + "expanded_url": "http://rocketlift.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/749855714/d6af75093a620f71f8013dfdb80b48f5.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "727C89", + "geo_enabled": false, + "followers_count": 88, + "location": "The Internet", + "screen_name": "RocketLiftInc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Rocket Lift", + "profile_use_background_image": true, + "description": "We are capable, caring, thoughtful, excited humans who build world-class websites and web software.", + "url": "http://t.co/st5RoBqEUR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3034405783/1ab06cea7818faea8b74571179bdc4ae_normal.png", + "profile_background_color": "333842", + "created_at": "Thu Oct 06 02:24:42 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3034405783/1ab06cea7818faea8b74571179bdc4ae_normal.png", + "favourites_count": 19, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684123557534629888", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 176, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 312, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 663, + "h": 345, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX5-wCrUsAA13sD.png", + "type": "photo", + "indices": [ + 65, + 88 + ], + "media_url": "http://pbs.twimg.com/media/CX5-wCrUsAA13sD.png", + "display_url": "pic.twitter.com/TaV5qQKGEZ", + "id_str": "684123557224296448", + "expanded_url": "http://twitter.com/RocketLiftInc/status/684123557534629888/photo/1", + "id": 684123557224296448, + "url": "https://t.co/TaV5qQKGEZ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 21:25:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684123557534629888, + "text": "You won\u2019t believe how we\u2019re making strategic planning fun again. https://t.co/TaV5qQKGEZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 385757065, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/749855714/d6af75093a620f71f8013dfdb80b48f5.png", + "statuses_count": 118, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2343043428", + "following": false, + "friends_count": 351, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 206, + "location": "Toronto, ON, Canada", + "screen_name": "Cliffehangers", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "Three-ve Cliffe", + "profile_use_background_image": true, + "description": "DadOps (to 3 kids) & DevOps (Product Sherpa @ PagerDuty)", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/434196387899535360/tSOrVjIW_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Feb 14 04:28:03 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/434196387899535360/tSOrVjIW_normal.jpeg", + "favourites_count": 478, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "683561599886618624", + "id": 683561599886618624, + "text": "When your body wakes up \"naturally\" at 3am ... Ugh. #DadOps", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 52, + 59 + ], + "text": "DadOps" + } + ], + "user_mentions": [] + }, + "created_at": "Sun Jan 03 08:12:40 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2343043428, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1041, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14871770", + "following": false, + "friends_count": 436, + "entities": { + "description": { + "urls": [ + { + "display_url": "rocketlift.com", + "url": "http://t.co/PbFXp9t0bB", + "expanded_url": "http://rocketlift.com", + "indices": [ + 44, + 66 + ] + }, + { + "display_url": "galacticpanda.com", + "url": "http://t.co/7mBG1S01PD", + "expanded_url": "http://galacticpanda.com", + "indices": [ + 67, + 89 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mattheweppelsheimer.com", + "url": "http://t.co/1YaawPsJh6", + "expanded_url": "http://mattheweppelsheimer.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "F23000", + "geo_enabled": false, + "followers_count": 571, + "location": "Portland, Oregon", + "screen_name": "mattepp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 72, + "name": "Matthew Eppelsheimer", + "profile_use_background_image": true, + "description": "Team lead @RocketLiftInc. #RCTID #WordPress http://t.co/PbFXp9t0bB http://t.co/7mBG1S01PD", + "url": "http://t.co/1YaawPsJh6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683184178649632768/m7cwV27G_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu May 22 18:45:11 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683184178649632768/m7cwV27G_normal.jpg", + "favourites_count": 5966, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685567757157400576", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 1365, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOgPLGUAAE1XQZ.jpg", + "type": "photo", + "indices": [ + 117, + 140 + ], + "media_url": "http://pbs.twimg.com/media/CYOgPLGUAAE1XQZ.jpg", + "display_url": "pic.twitter.com/Jzi6g7Oa2e", + "id_str": "685567750828195841", + "expanded_url": "http://twitter.com/mattepp/status/685567757157400576/photo/1", + "id": 685567750828195841, + "url": "https://t.co/Jzi6g7Oa2e" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ZekeHero", + "id_str": "15663173", + "id": 15663173, + "indices": [ + 1, + 10 + ], + "name": "Mike Cassella" + } + ] + }, + "created_at": "Fri Jan 08 21:04:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685567757157400576, + "text": ".@ZekeHero pointed out we\u2019re in possession of the original theatrical releases of Star Wars IV-VI.\n\nThis whole time! https://t.co/Jzi6g7Oa2e", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 14871770, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 14509, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14871770/1435244285", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15368317", + "following": false, + "friends_count": 897, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paulosman.me", + "url": "http://t.co/haR9pkCsWA", + "expanded_url": "http://paulosman.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 1913, + "location": "Austin, TX", + "screen_name": "paulosman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 114, + "name": "Paul Osman", + "profile_use_background_image": true, + "description": "Software Eng @UnderArmour Connected Fitness. Rider of Bikes, Toronto person living in Austin, Coffee Addict, @meghatron's less witty half.", + "url": "http://t.co/haR9pkCsWA", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/646857949751578628/prqqpv7y_normal.jpg", + "profile_background_color": "352726", + "created_at": "Wed Jul 09 17:58:37 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/646857949751578628/prqqpv7y_normal.jpg", + "favourites_count": 1353, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -97.928935, + 30.127892 + ], + [ + -97.5805133, + 30.127892 + ], + [ + -97.5805133, + 30.5187994 + ], + [ + -97.928935, + 30.5187994 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Austin, TX", + "id": "c3f37afa9efcf94b", + "name": "Austin" + }, + "in_reply_to_screen_name": "herhighnessness", + "in_reply_to_user_id": 14437357, + "in_reply_to_status_id_str": "685293163267887104", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685309904001888257", + "id": 685309904001888257, + "text": "@herhighnessness it took me 2 years of living East before I was able to find my way around.", + "in_reply_to_user_id_str": "14437357", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "herhighnessness", + "id_str": "14437357", + "id": 14437357, + "indices": [ + 0, + 16 + ], + "name": "Chelsea Novak" + } + ] + }, + "created_at": "Fri Jan 08 03:59:48 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685293163267887104, + "lang": "en" + }, + "default_profile_image": false, + "id": 15368317, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 6434, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15368317/1419781254", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "226319355", + "following": false, + "friends_count": 288, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/mpangrazzi", + "url": "https://t.co/N54bTqXneR", + "expanded_url": "https://github.com/mpangrazzi", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 65, + "location": "Software Engineer", + "screen_name": "xmikex83", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Michele Pangrazzi", + "profile_use_background_image": true, + "description": "Full-stack web developer. Mostly Javascript, HTML / CSS and Ruby. Node.js addict.", + "url": "https://t.co/N54bTqXneR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000118991479/46019d4266676221ea1b3a6030749130_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 13 21:53:44 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "it", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000118991479/46019d4266676221ea1b3a6030749130_normal.png", + "favourites_count": 218, + "status": { + "retweet_count": 30, + "retweeted_status": { + "retweet_count": 30, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685487567098261504", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mitchrobb.com/chromes-consol\u2026", + "url": "https://t.co/qoxwOguhtv", + "expanded_url": "http://www.mitchrobb.com/chromes-console-api-greatest-hits/", + "indices": [ + 108, + 131 + ] + } + ], + "hashtags": [ + { + "indices": [ + 132, + 135 + ], + "text": "js" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:45:46 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685487567098261504, + "text": "Chrome's Console API Greatest hits - .dir(), .table(), debug levels, and other great lesser-known features: https://t.co/qoxwOguhtv #js", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 35, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685529825344274432", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mitchrobb.com/chromes-consol\u2026", + "url": "https://t.co/qoxwOguhtv", + "expanded_url": "http://www.mitchrobb.com/chromes-console-api-greatest-hits/", + "indices": [ + 126, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "js" + } + ], + "user_mentions": [ + { + "screen_name": "_ericelliott", + "id_str": "14148308", + "id": 14148308, + "indices": [ + 3, + 16 + ], + "name": "Eric Elliott" + } + ] + }, + "created_at": "Fri Jan 08 18:33:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685529825344274432, + "text": "RT @_ericelliott: Chrome's Console API Greatest hits - .dir(), .table(), debug levels, and other great lesser-known features: https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 226319355, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 465, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/226319355/1414508396", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "97307610", + "following": false, + "friends_count": 1499, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 185, + "location": "Phoenix, AZ", + "screen_name": "joshhardison", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "The One True Josh", + "profile_use_background_image": true, + "description": "I love math, programming, golf, my goofy kids and humanity in general.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1854007167/vKfwebYu_normal", + "profile_background_color": "C0DEED", + "created_at": "Wed Dec 16 22:52:17 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1854007167/vKfwebYu_normal", + "favourites_count": 130, + "status": { + "retweet_count": 7058, + "retweeted_status": { + "retweet_count": 7058, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682700489000140801", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", + "display_url": "pic.twitter.com/Smrls9NHFj", + "id_str": "682700485787267072", + "expanded_url": "http://twitter.com/dcatast/status/682700489000140801/photo/1", + "id": 682700485787267072, + "url": "https://t.co/Smrls9NHFj" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 23:10:55 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682700489000140801, + "text": "Mother-i-L doesn't have Twitter. She wanted the world to see her bread. Told her I only 28 followers. \"That'll do.\" https://t.co/Smrls9NHFj", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9394, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682711850098671616", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "682700489000140801", + "url": "https://t.co/Smrls9NHFj", + "media_url": "http://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", + "source_user_id_str": "3045462152", + "id_str": "682700485787267072", + "id": 682700485787267072, + "media_url_https": "https://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 682700489000140801, + "source_user_id": 3045462152, + "display_url": "pic.twitter.com/Smrls9NHFj", + "expanded_url": "http://twitter.com/dcatast/status/682700489000140801/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dcatast", + "id_str": "3045462152", + "id": 3045462152, + "indices": [ + 3, + 11 + ], + "name": "Dc" + } + ] + }, + "created_at": "Thu Dec 31 23:56:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682711850098671616, + "text": "RT @dcatast: Mother-i-L doesn't have Twitter. She wanted the world to see her bread. Told her I only 28 followers. \"That'll do.\" https://t.\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 97307610, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 589, + "is_translator": false + }, + { + "time_zone": "Rome", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "21745028", + "following": false, + "friends_count": 455, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/martinp", + "url": "https://t.co/prsUC0LrCr", + "expanded_url": "https://github.com/martinp", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 162, + "location": "Trondheim, Norway", + "screen_name": "mpolden", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Martin Polden", + "profile_use_background_image": true, + "description": "music snob, free software enthusiast, occasionally writes code, often curses code, works at yahoo", + "url": "https://t.co/prsUC0LrCr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000711415781/b686d1b0cfae878f17a304fb278ef860_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Feb 24 11:06:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000711415781/b686d1b0cfae878f17a304fb278ef860_normal.png", + "favourites_count": 813, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mpolden", + "in_reply_to_user_id": 21745028, + "in_reply_to_status_id_str": "685432425728598017", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685432737155670016", + "id": 685432737155670016, + "text": "@ingvald @atlefren @mrodem or Google Slides if I'm lazy :)", + "in_reply_to_user_id_str": "21745028", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ingvald", + "id_str": "6564832", + "id": 6564832, + "indices": [ + 0, + 8 + ], + "name": "Ingvald Skaug" + }, + { + "screen_name": "atlefren", + "id_str": "14732917", + "id": 14732917, + "indices": [ + 9, + 18 + ], + "name": "Atle Frenvik Sveen" + }, + { + "screen_name": "mrodem", + "id_str": "22851988", + "id": 22851988, + "indices": [ + 19, + 26 + ], + "name": "Magne Rodem" + } + ] + }, + "created_at": "Fri Jan 08 12:07:53 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685432425728598017, + "lang": "en" + }, + "default_profile_image": false, + "id": 21745028, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 773, + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "15011401", + "following": false, + "friends_count": 317, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "evanshortiss.com", + "url": "http://t.co/T1nBQwmLdz", + "expanded_url": "http://www.evanshortiss.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "E65C20", + "geo_enabled": true, + "followers_count": 170, + "location": "Boston, MA", + "screen_name": "evanshortiss", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Evan Shortiss", + "profile_use_background_image": true, + "description": "Irishman. Photographer. Software Engineer @feedhenry @RedHatSoftware.", + "url": "http://t.co/T1nBQwmLdz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/550108672668753921/eZ-HyfhG_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Jun 04 22:46:07 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/550108672668753921/eZ-HyfhG_normal.jpeg", + "favourites_count": 153, + "status": { + "retweet_count": 1980, + "retweeted_status": { + "retweet_count": 1980, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678444166016335872", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 244, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 431, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 736, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", + "type": "photo", + "indices": [ + 99, + 122 + ], + "media_url": "http://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", + "display_url": "pic.twitter.com/znpnqmRwUW", + "id_str": "678444165055819776", + "expanded_url": "http://twitter.com/PolitiFact/status/678444166016335872/photo/1", + "id": 678444165055819776, + "url": "https://t.co/znpnqmRwUW" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/W87ui", + "url": "https://t.co/PWQKpmpUMD", + "expanded_url": "http://ow.ly/W87ui", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Dec 20 05:17:48 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678444166016335872, + "text": "Bernie Sanders is correct. US spends 3 times what UK spends on health care https://t.co/PWQKpmpUMD https://t.co/znpnqmRwUW", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3177, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678541548024430592", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 244, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 431, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 736, + "resize": "fit" + } + }, + "source_status_id_str": "678444166016335872", + "url": "https://t.co/znpnqmRwUW", + "media_url": "http://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", + "source_user_id_str": "8953122", + "id_str": "678444165055819776", + "id": 678444165055819776, + "media_url_https": "https://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", + "type": "photo", + "indices": [ + 115, + 138 + ], + "source_status_id": 678444166016335872, + "source_user_id": 8953122, + "display_url": "pic.twitter.com/znpnqmRwUW", + "expanded_url": "http://twitter.com/PolitiFact/status/678444166016335872/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/W87ui", + "url": "https://t.co/PWQKpmpUMD", + "expanded_url": "http://ow.ly/W87ui", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PolitiFact", + "id_str": "8953122", + "id": 8953122, + "indices": [ + 3, + 14 + ], + "name": "PolitiFact" + } + ] + }, + "created_at": "Sun Dec 20 11:44:46 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678541548024430592, + "text": "RT @PolitiFact: Bernie Sanders is correct. US spends 3 times what UK spends on health care https://t.co/PWQKpmpUMD https://t.co/znpnqmRwUW", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 15011401, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1025, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15011401/1407809987", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "360369653", + "following": false, + "friends_count": 3038, + "entities": { + "description": { + "urls": [ + { + "display_url": "nationalobserver.com", + "url": "https://t.co/KEKlnliSlO", + "expanded_url": "http://www.nationalobserver.com", + "indices": [ + 65, + 88 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/340419679/sandytwitterbackground2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E8E8E8", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 7556, + "location": "Vancouver", + "screen_name": "Garossino", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 251, + "name": "Sandy Garossino", + "profile_use_background_image": false, + "description": "writer, former trial lawyer, associate editor, National Observer https://t.co/KEKlnliSlO", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/637097904809734144/0QGM2l15_normal.png", + "profile_background_color": "ED217A", + "created_at": "Tue Aug 23 03:10:24 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "E8E8E8", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637097904809734144/0QGM2l15_normal.png", + "favourites_count": 7439, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "pqpolitics", + "in_reply_to_user_id": 246667561, + "in_reply_to_status_id_str": "685598567185039360", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685602547579502592", + "id": 685602547579502592, + "text": "@pqpolitics It\u2019s how a tinderbox situation should ideally be de-escalated tho...", + "in_reply_to_user_id_str": "246667561", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "pqpolitics", + "id_str": "246667561", + "id": 246667561, + "indices": [ + 0, + 11 + ], + "name": "Pete Quily" + } + ] + }, + "created_at": "Fri Jan 08 23:22:39 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598567185039360, + "lang": "en" + }, + "default_profile_image": false, + "id": 360369653, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/340419679/sandytwitterbackground2.jpg", + "statuses_count": 32542, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/360369653/1408058611", + "is_translator": false + }, + { + "time_zone": "Ljubljana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "819606", + "following": false, + "friends_count": 4191, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "writing.jan.io", + "url": "https://t.co/q2RB27h8sD", + "expanded_url": "http://writing.jan.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685034469573681152/iYCV8S8K.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "000088", + "geo_enabled": false, + "followers_count": 13964, + "location": "Berlin", + "screen_name": "janl", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1024, + "name": "Jan Lehnardt", + "profile_use_background_image": true, + "description": "Dissatisfied with the status-quo.\n\n@couchdb \u2022 @hoodiehq \u2022 @jsconfeu \u2022 @greenkeeperio \u2022 #offlinefirst\n\nCEO at neighbourhood.ie\n\nDuct tape artist and feminist.", + "url": "https://t.co/q2RB27h8sD", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2673735348/331cefd2263bbc754979526b3fd48e4d_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 07 21:36:26 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2673735348/331cefd2263bbc754979526b3fd48e4d_normal.png", + "favourites_count": 32485, + "status": { + "retweet_count": 89, + "retweeted_status": { + "retweet_count": 89, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685548731127738368", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 199, + "resize": "fit" + }, + "medium": { + "w": 454, + "h": 266, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 454, + "h": 266, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", + "type": "photo", + "indices": [ + 111, + 134 + ], + "media_url": "http://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", + "display_url": "pic.twitter.com/ZEUtRUpo4o", + "id_str": "685548730041397249", + "expanded_url": "http://twitter.com/HaticeAkyuen/status/685548731127738368/photo/1", + "id": 685548730041397249, + "url": "https://t.co/ZEUtRUpo4o" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:48:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685548731127738368, + "text": "Name verschwunden, Erg\u00e4nzung hinzugef\u00fcgt. Ich dachte, sowas gibt es nur in schlechten Filmen mit Journalisten. https://t.co/ZEUtRUpo4o", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 64, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685558331365285888", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 199, + "resize": "fit" + }, + "medium": { + "w": 454, + "h": 266, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 454, + "h": 266, + "resize": "fit" + } + }, + "source_status_id_str": "685548731127738368", + "url": "https://t.co/ZEUtRUpo4o", + "media_url": "http://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", + "source_user_id_str": "67280909", + "id_str": "685548730041397249", + "id": 685548730041397249, + "media_url_https": "https://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685548731127738368, + "source_user_id": 67280909, + "display_url": "pic.twitter.com/ZEUtRUpo4o", + "expanded_url": "http://twitter.com/HaticeAkyuen/status/685548731127738368/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "HaticeAkyuen", + "id_str": "67280909", + "id": 67280909, + "indices": [ + 3, + 16 + ], + "name": "Hatice Aky\u00fcn" + } + ] + }, + "created_at": "Fri Jan 08 20:26:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685558331365285888, + "text": "RT @HaticeAkyuen: Name verschwunden, Erg\u00e4nzung hinzugef\u00fcgt. Ich dachte, sowas gibt es nur in schlechten Filmen mit Journalisten. https://t.\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 819606, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685034469573681152/iYCV8S8K.jpg", + "statuses_count": 110086, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/819606/1452160317", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "88168192", + "following": false, + "friends_count": 474, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "arndissler.net", + "url": "http://t.co/ZUGi3nxlTE", + "expanded_url": "http://arndissler.net/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000082688609/ddc4e686e13588938487da851ab1bdb6.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 189, + "location": "Hamburg", + "screen_name": "arndissler", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Arnd Issler", + "profile_use_background_image": true, + "description": "websites / apps / photos / development / @mailmindr - All tweets are ROT13 encrypted. Twice.", + "url": "http://t.co/ZUGi3nxlTE", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/557489425559482369/aKukb5lm_normal.png", + "profile_background_color": "030303", + "created_at": "Sat Nov 07 11:33:51 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/557489425559482369/aKukb5lm_normal.png", + "favourites_count": 1530, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685469542424928257", + "id": 685469542424928257, + "text": "Franzbr\u00f6tchen #ftw", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 14, + 18 + ], + "text": "ftw" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:34:08 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "de" + }, + "default_profile_image": false, + "id": 88168192, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000082688609/ddc4e686e13588938487da851ab1bdb6.jpeg", + "statuses_count": 3088, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/88168192/1356087736", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14932908", + "following": false, + "friends_count": 503, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/zoepage/", + "url": "https://t.co/b5WODoIU99", + "expanded_url": "https://github.com/zoepage/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EDEDED", + "profile_link_color": "ED0000", + "geo_enabled": false, + "followers_count": 2231, + "location": "Dortmund / Berlin", + "screen_name": "misprintedtype", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 193, + "name": "/me npm i dance", + "profile_use_background_image": true, + "description": "JavaScript && daughter driven development. Sr. developer @getstyla && CTO @angefragtjs, part of @HoodieHQ, @rejectjs, @otsconf", + "url": "https://t.co/b5WODoIU99", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681603537223172097/cwWKXWZY_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed May 28 12:02:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DEDEDE", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681603537223172097/cwWKXWZY_normal.jpg", + "favourites_count": 21535, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "blaue_flecken", + "in_reply_to_user_id": 513354442, + "in_reply_to_status_id_str": "685532462873710592", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685532588442779648", + "id": 685532588442779648, + "text": "@blaue_flecken @badboy_ will aaaaaauch!", + "in_reply_to_user_id_str": "513354442", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "blaue_flecken", + "id_str": "513354442", + "id": 513354442, + "indices": [ + 0, + 14 + ], + "name": ". ." + }, + { + "screen_name": "badboy_", + "id_str": "13485262", + "id": 13485262, + "indices": [ + 15, + 23 + ], + "name": "RB_GC_GUARD(v)" + } + ] + }, + "created_at": "Fri Jan 08 18:44:40 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685532462873710592, + "lang": "de" + }, + "default_profile_image": false, + "id": 14932908, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 35491, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14932908/1449941458", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1436340385", + "following": false, + "friends_count": 380, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "danielmschmidt.de", + "url": "http://t.co/VfRq2S27fl", + "expanded_url": "http://danielmschmidt.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 79, + "location": "Kiel", + "screen_name": "DSchmidt1992", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Daniel Schmidt", + "profile_use_background_image": true, + "description": "Webdev, with focus on frontend and mobile development", + "url": "http://t.co/VfRq2S27fl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/465053646409826304/heVzNqcF_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri May 17 18:08:47 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/465053646409826304/heVzNqcF_normal.jpeg", + "favourites_count": 448, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684965269748318208", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", + "type": "photo", + "indices": [ + 57, + 80 + ], + "media_url": "http://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", + "display_url": "pic.twitter.com/evoMEqdv9g", + "id_str": "684965254351069184", + "expanded_url": "http://twitter.com/KrauseFx/status/684965269748318208/photo/1", + "id": 684965254351069184, + "url": "https://t.co/evoMEqdv9g" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "fastlane.tools", + "url": "https://t.co/dhb4eHkOnr", + "expanded_url": "https://fastlane.tools", + "indices": [ + 25, + 48 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 05:10:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0079932b106eb4c9.json", + "country": "Vi\u1ec7t Nam", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + 106.356398, + 10.365786 + ], + [ + 107.012798, + 10.365786 + ], + [ + 107.012798, + 11.160291 + ], + [ + 106.356398, + 11.160291 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "VN", + "contained_within": [], + "full_name": "Ho Chi Minh, Vietnam", + "id": "0079932b106eb4c9", + "name": "Ho Chi Minh" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684965269748318208, + "text": "1 year ago: drafting the https://t.co/dhb4eHkOnr website https://t.co/evoMEqdv9g", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 42, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685375894597287936", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "684965269748318208", + "url": "https://t.co/evoMEqdv9g", + "media_url": "http://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", + "source_user_id_str": "50055757", + "id_str": "684965254351069184", + "id": 684965254351069184, + "media_url_https": "https://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", + "type": "photo", + "indices": [ + 71, + 94 + ], + "source_status_id": 684965269748318208, + "source_user_id": 50055757, + "display_url": "pic.twitter.com/evoMEqdv9g", + "expanded_url": "http://twitter.com/KrauseFx/status/684965269748318208/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "fastlane.tools", + "url": "https://t.co/dhb4eHkOnr", + "expanded_url": "https://fastlane.tools", + "indices": [ + 39, + 62 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "KrauseFx", + "id_str": "50055757", + "id": 50055757, + "indices": [ + 3, + 12 + ], + "name": "Felix Krause" + } + ] + }, + "created_at": "Fri Jan 08 08:22:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685375894597287936, + "text": "RT @KrauseFx: 1 year ago: drafting the https://t.co/dhb4eHkOnr website https://t.co/evoMEqdv9g", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1436340385, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 513, + "is_translator": false + }, + { + "time_zone": "Edinburgh", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "17368293", + "following": false, + "friends_count": 479, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tinnedfruit.com", + "url": "http://t.co/pzfe4KxYu4", + "expanded_url": "http://tinnedfruit.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 672, + "location": "Edinburgh", + "screen_name": "froots101", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "Jim Newbery", + "profile_use_background_image": true, + "description": "Director of Front End Engineering at FanDuel. Director of Front End Snack Consumption everywhere.", + "url": "http://t.co/pzfe4KxYu4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459350515189428224/mDJMxNmx_normal.png", + "profile_background_color": "131516", + "created_at": "Thu Nov 13 16:36:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459350515189428224/mDJMxNmx_normal.png", + "favourites_count": 811, + "status": { + "retweet_count": 1831, + "retweeted_status": { + "retweet_count": 1831, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685484472498798592", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "type": "photo", + "indices": [ + 117, + 140 + ], + "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "display_url": "pic.twitter.com/TMcevQeAVA", + "id_str": "685484471227953152", + "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", + "id": 685484471227953152, + "url": "https://t.co/TMcevQeAVA" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:33:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685484472498798592, + "text": "This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https://t.co/TMcevQeAVA", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1984, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685512506593394689", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "source_status_id_str": "685484472498798592", + "url": "https://t.co/TMcevQeAVA", + "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "source_user_id_str": "119043148", + "id_str": "685484471227953152", + "id": 685484471227953152, + "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685484472498798592, + "source_user_id": 119043148, + "display_url": "pic.twitter.com/TMcevQeAVA", + "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lukekarmali", + "id_str": "119043148", + "id": 119043148, + "indices": [ + 3, + 15 + ], + "name": "Luke Karmali" + } + ] + }, + "created_at": "Fri Jan 08 17:24:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685512506593394689, + "text": "RT @lukekarmali: This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 17368293, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5284, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17368293/1364377512", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "253635851", + "following": false, + "friends_count": 46, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 57, + "location": "Universe", + "screen_name": "EdwinMons", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Edwin Mons", + "profile_use_background_image": true, + "description": "Publiek geneuzel van Edwin", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1867125171/Foto_op_22-11-2011_om_09.34_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Feb 17 17:12:32 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1867125171/Foto_op_22-11-2011_om_09.34_normal.jpg", + "favourites_count": 42, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677420835007803392", + "id": 677420835007803392, + "text": "I suspect there's a huge overlap in people from the Sirius Cybernetics Corp Marketing Division, and people who think systemd is a good idea.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 17 09:31:27 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 253635851, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 324, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "16168410", + "following": false, + "friends_count": 503, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "shanehudson.net/work", + "url": "https://t.co/Jht5i7jeDz", + "expanded_url": "https://shanehudson.net/work", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/429521174/bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "83AFB6", + "geo_enabled": true, + "followers_count": 2968, + "location": "West Sussex, England", + "screen_name": "ShaneHudson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 134, + "name": "Shane Hudson", + "profile_use_background_image": true, + "description": "I'm a freelance developer, making stuff on the Web. Wrote a book - JavaScript Creativity. shane@shanehudson.net", + "url": "https://t.co/Jht5i7jeDz", + "profile_text_color": "4B729C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/476845708578803712/RnApcn6v_normal.png", + "profile_background_color": "E8E6DF", + "created_at": "Sun Sep 07 12:03:21 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "CDCDCD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/476845708578803712/RnApcn6v_normal.png", + "favourites_count": 19843, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "edd_greer", + "in_reply_to_user_id": 328566545, + "in_reply_to_status_id_str": "685475509489299457", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685476367274737665", + "id": 685476367274737665, + "text": "@edd_greer I'm sitting in a cafe looking over the sea. Really is lovely today :)", + "in_reply_to_user_id_str": "328566545", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "edd_greer", + "id_str": "328566545", + "id": 328566545, + "indices": [ + 0, + 10 + ], + "name": "Edward Oliver Greer" + } + ] + }, + "created_at": "Fri Jan 08 15:01:16 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685475509489299457, + "lang": "en" + }, + "default_profile_image": false, + "id": 16168410, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/429521174/bg.jpg", + "statuses_count": 47918, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16168410/1412614431", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "408410310", + "following": false, + "friends_count": 1081, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 99, + "location": "", + "screen_name": "JanuschH", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Janusch", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/549874024797323264/omgsmKnh_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Nov 09 11:38:57 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/549874024797323264/omgsmKnh_normal.jpeg", + "favourites_count": 321, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "t_spicydonuts", + "in_reply_to_user_id": 623182154, + "in_reply_to_status_id_str": "669000572226285568", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "669276857259397121", + "id": 669276857259397121, + "text": "@t_spicydonuts @babeljs O.o I feel your pain, had to roll back my 5to6 upgrade attempt as well, being an early adopter bit me. Good luck!", + "in_reply_to_user_id_str": "623182154", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "t_spicydonuts", + "id_str": "623182154", + "id": 623182154, + "indices": [ + 0, + 14 + ], + "name": "Michael Trotter" + }, + { + "screen_name": "babeljs", + "id_str": "2958823554", + "id": 2958823554, + "indices": [ + 15, + 23 + ], + "name": "Babel" + } + ] + }, + "created_at": "Tue Nov 24 22:10:11 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 669000572226285568, + "lang": "en" + }, + "default_profile_image": false, + "id": 408410310, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 136, + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "14092028", + "following": false, + "friends_count": 1009, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "saperduper.org", + "url": "http://t.co/DVWiulnJKs", + "expanded_url": "http://saperduper.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3201906/PA25-TC4Matt-3.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": false, + "followers_count": 771, + "location": "Athens, GR", + "screen_name": "saperduper", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "saperduper", + "profile_use_background_image": true, + "description": "An electrical and computer engineer trying to manage uncertainty", + "url": "http://t.co/DVWiulnJKs", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/52795574/sd_normal.jpg", + "profile_background_color": "E8E8E8", + "created_at": "Thu Mar 06 23:11:32 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/52795574/sd_normal.jpg", + "favourites_count": 51, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "stazybohorn", + "in_reply_to_user_id": 14733413, + "in_reply_to_status_id_str": "662330478377181184", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "662367381495406594", + "id": 662367381495406594, + "text": "@stazybohorn \u03bc\u03bf\u03bd\u03bf \u03b7 \u03a0\u03b1\u03bd\u03b1\u03b8\u03b1 \u03bc\u03b1\u03c2 \u03c0\u03bb\u03b7\u03b3\u03c9\u03bd\u03b5\u03b9", + "in_reply_to_user_id_str": "14733413", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "stazybohorn", + "id_str": "14733413", + "id": 14733413, + "indices": [ + 0, + 12 + ], + "name": "Stazybo Horn" + } + ] + }, + "created_at": "Thu Nov 05 20:34:24 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 662330478377181184, + "lang": "el" + }, + "default_profile_image": false, + "id": 14092028, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3201906/PA25-TC4Matt-3.jpg", + "statuses_count": 2074, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "559330891", + "following": false, + "friends_count": 176, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/zooldk", + "url": "https://t.co/gJQlWm0aVr", + "expanded_url": "http://about.me/zooldk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 182, + "location": "Copenhagen, Denmark", + "screen_name": "zooldk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Steffen Larsen", + "profile_use_background_image": true, + "description": "CTO of CodeZense, Founder of BrainTrust ApS, Full stack software developer, Entrepreneur, Consultant. Computer Science, Copenhagen University Alumni.", + "url": "https://t.co/gJQlWm0aVr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/578588645025845249/gZq4o02q_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 21 08:29:04 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/578588645025845249/gZq4o02q_normal.jpeg", + "favourites_count": 1892, + "status": { + "retweet_count": 63, + "retweeted_status": { + "retweet_count": 63, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684119465567629312", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 296, + "h": 296, + "resize": "fit" + }, + "medium": { + "w": 296, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 296, + "h": 296, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", + "type": "photo", + "indices": [ + 106, + 129 + ], + "media_url": "http://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", + "display_url": "pic.twitter.com/NBtp4EjJmo", + "id_str": "684119465315930114", + "expanded_url": "http://twitter.com/TheOfficialACM/status/684119465567629312/photo/1", + "id": 684119465315930114, + "url": "https://t.co/NBtp4EjJmo" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WCvA5", + "url": "https://t.co/DV0YKIcU5O", + "expanded_url": "http://ow.ly/WCvA5", + "indices": [ + 82, + 105 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 21:09:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684119465567629312, + "text": "Peter Naur, 2005 recipient of the ACM A.M. Turing Award, passed away on Jan. 3rd. https://t.co/DV0YKIcU5O https://t.co/NBtp4EjJmo", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 21, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684303063860031488", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 296, + "h": 296, + "resize": "fit" + }, + "medium": { + "w": 296, + "h": 296, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 296, + "h": 296, + "resize": "fit" + } + }, + "source_status_id_str": "684119465567629312", + "url": "https://t.co/NBtp4EjJmo", + "media_url": "http://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", + "source_user_id_str": "115763683", + "id_str": "684119465315930114", + "id": 684119465315930114, + "media_url_https": "https://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", + "type": "photo", + "indices": [ + 126, + 140 + ], + "source_status_id": 684119465567629312, + "source_user_id": 115763683, + "display_url": "pic.twitter.com/NBtp4EjJmo", + "expanded_url": "http://twitter.com/TheOfficialACM/status/684119465567629312/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WCvA5", + "url": "https://t.co/DV0YKIcU5O", + "expanded_url": "http://ow.ly/WCvA5", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheOfficialACM", + "id_str": "115763683", + "id": 115763683, + "indices": [ + 3, + 18 + ], + "name": "Official ACM" + } + ] + }, + "created_at": "Tue Jan 05 09:18:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684303063860031488, + "text": "RT @TheOfficialACM: Peter Naur, 2005 recipient of the ACM A.M. Turing Award, passed away on Jan. 3rd. https://t.co/DV0YKIcU5O https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 559330891, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1915, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/559330891/1445665136", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "21531737", + "following": false, + "friends_count": 659, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 524, + "location": "Fort Worth, TX", + "screen_name": "andyregan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Andrew Regan", + "profile_use_background_image": true, + "description": "Sysadmin turned developer. Lover of linux, comics and supercomputers.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1149429588/movember_aregan_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Feb 22 00:37:34 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1149429588/movember_aregan_normal.png", + "favourites_count": 1055, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "damienmulley", + "in_reply_to_user_id": 193753, + "in_reply_to_status_id_str": "682934542848684032", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682939572787920900", + "id": 682939572787920900, + "text": "@damienmulley the currency of the proletariat", + "in_reply_to_user_id_str": "193753", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "damienmulley", + "id_str": "193753", + "id": 193753, + "indices": [ + 0, + 13 + ], + "name": "Damien Mulley " + } + ] + }, + "created_at": "Fri Jan 01 15:00:57 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 682934542848684032, + "lang": "en" + }, + "default_profile_image": false, + "id": 21531737, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3855, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21531737/1351450162", + "is_translator": false + }, + { + "time_zone": "Mumbai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "1484841", + "following": false, + "friends_count": 617, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "plus.google.com/10720687640631\u2026", + "url": "https://t.co/Pl4J9f1vtE", + "expanded_url": "https://plus.google.com/107206876406312072458/about", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/716204525/9696ef443d52817370a48acaab983baa.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 607, + "location": "Mumbai, India", + "screen_name": "tapan_pandita", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "Tapan Pandita", + "profile_use_background_image": true, + "description": "Geek, Gooner, Internet-lover, Internet-maker, IITian, Worked on mobile payments, Startup founder", + "url": "https://t.co/Pl4J9f1vtE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459029023134195712/KPrRyuGu_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Mon Mar 19 09:23:36 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459029023134195712/KPrRyuGu_normal.jpeg", + "favourites_count": 38, + "status": { + "retweet_count": 29492, + "retweeted_status": { + "retweet_count": 29492, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682916583073779712", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", + "type": "photo", + "indices": [ + 100, + 123 + ], + "media_url": "http://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", + "display_url": "pic.twitter.com/szKKRM4U4i", + "id_str": "682916557333331968", + "expanded_url": "http://twitter.com/hughesroland/status/682916583073779712/photo/1", + "id": 682916557333331968, + "url": "https://t.co/szKKRM4U4i" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 13:29:36 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682916583073779712, + "text": "So much going on this pic of New Year in Manchester by the Evening News. Like a beautiful painting. https://t.co/szKKRM4U4i", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 30876, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683157885594025984", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + } + }, + "source_status_id_str": "682916583073779712", + "url": "https://t.co/szKKRM4U4i", + "media_url": "http://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", + "source_user_id_str": "23226772", + "id_str": "682916557333331968", + "id": 682916557333331968, + "media_url_https": "https://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", + "type": "photo", + "indices": [ + 118, + 140 + ], + "source_status_id": 682916583073779712, + "source_user_id": 23226772, + "display_url": "pic.twitter.com/szKKRM4U4i", + "expanded_url": "http://twitter.com/hughesroland/status/682916583073779712/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "hughesroland", + "id_str": "23226772", + "id": 23226772, + "indices": [ + 3, + 16 + ], + "name": "Roland Hughes" + } + ] + }, + "created_at": "Sat Jan 02 05:28:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683157885594025984, + "text": "RT @hughesroland: So much going on this pic of New Year in Manchester by the Evening News. Like a beautiful painting. https://t.co/szKKRM4U\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 1484841, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/716204525/9696ef443d52817370a48acaab983baa.jpeg", + "statuses_count": 3063, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1484841/1398276053", + "is_translator": false + }, + { + "time_zone": "Chennai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "23416061", + "following": false, + "friends_count": 513, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/sarguru", + "url": "http://t.co/USoQKrxCvl", + "expanded_url": "http://about.me/sarguru", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 361, + "location": "London, England", + "screen_name": "sargru90", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "sarguru nathan", + "profile_use_background_image": true, + "description": "Recovering sysadmin .works for @yelpengineering CM hipster. ruby, puppet , now a clojure fanboy. slow ops, agile cyclist.", + "url": "http://t.co/USoQKrxCvl", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/490495237328863232/3AN7xaLa_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Mon Mar 09 08:41:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/490495237328863232/3AN7xaLa_normal.jpeg", + "favourites_count": 417, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/457b4814b4240d87.json", + "country": "United Kingdom", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -0.187894, + 51.483718 + ], + [ + -0.109978, + 51.483718 + ], + [ + -0.109978, + 51.5164655 + ], + [ + -0.187894, + 51.5164655 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "GB", + "contained_within": [], + "full_name": "London, England", + "id": "457b4814b4240d87", + "name": "London" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685545696246784000", + "id": 685545696246784000, + "text": "#Tarantino time baby", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 0, + 10 + ], + "text": "Tarantino" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:36:45 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 23416061, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 1432, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23416061/1416984764", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "76099033", + "following": false, + "friends_count": 155, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/145126124/grass-lq.jpg", + "notifications": false, + "profile_sidebar_fill_color": "8FB8BA", + "profile_link_color": "008720", + "geo_enabled": false, + "followers_count": 191, + "location": "Netherlands", + "screen_name": "guusdk", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 8, + "name": "Guus der Kinderen", + "profile_use_background_image": true, + "description": "The grass is pretty freakin' green on this side.", + "url": null, + "profile_text_color": "1C1C1C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/427854615/trouwfoto-oorbijt-zw_normal.jpg", + "profile_background_color": "B2D7DB", + "created_at": "Mon Sep 21 18:20:18 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "1C1C1C", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/427854615/trouwfoto-oorbijt-zw_normal.jpg", + "favourites_count": 74, + "status": { + "retweet_count": 298, + "retweeted_status": { + "retweet_count": 298, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684679564153516032", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 423, + "resize": "fit" + }, + "large": { + "w": 741, + "h": 924, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 748, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", + "type": "photo", + "indices": [ + 114, + 137 + ], + "media_url": "http://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", + "display_url": "pic.twitter.com/lSQm80ugwe", + "id_str": "684679558361182208", + "expanded_url": "http://twitter.com/resiak/status/684679564153516032/photo/1", + "id": 684679558361182208, + "url": "https://t.co/lSQm80ugwe" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 10:15:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684679564153516032, + "text": "I once believed that multi-protocol IM clients were a stopgap on the road to an inevitable federated XMPP future. https://t.co/lSQm80ugwe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 196, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684839912361865216", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 423, + "resize": "fit" + }, + "large": { + "w": 741, + "h": 924, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 748, + "resize": "fit" + } + }, + "source_status_id_str": "684679564153516032", + "url": "https://t.co/lSQm80ugwe", + "media_url": "http://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", + "source_user_id_str": "786920", + "id_str": "684679558361182208", + "id": 684679558361182208, + "media_url_https": "https://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", + "type": "photo", + "indices": [ + 126, + 140 + ], + "source_status_id": 684679564153516032, + "source_user_id": 786920, + "display_url": "pic.twitter.com/lSQm80ugwe", + "expanded_url": "http://twitter.com/resiak/status/684679564153516032/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "resiak", + "id_str": "786920", + "id": 786920, + "indices": [ + 3, + 10 + ], + "name": "w\u0131ll thompson" + } + ] + }, + "created_at": "Wed Jan 06 20:52:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684839912361865216, + "text": "RT @resiak: I once believed that multi-protocol IM clients were a stopgap on the road to an inevitable federated XMPP future. https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 76099033, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/145126124/grass-lq.jpg", + "statuses_count": 2529, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/76099033/1354456627", + "is_translator": false + }, + { + "time_zone": "Mumbai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "73310549", + "following": false, + "friends_count": 1435, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chetandhembre.in", + "url": "https://t.co/s0YPA3pwAa", + "expanded_url": "http://chetandhembre.in", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 605, + "location": "Navi Mumbai, India", + "screen_name": "ichetandhembre", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "inexperienced I am", + "profile_use_background_image": false, + "description": "...", + "url": "https://t.co/s0YPA3pwAa", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680319727206576128/Y92744-C_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Sep 11 04:40:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680319727206576128/Y92744-C_normal.jpg", + "favourites_count": 1396, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685456239564701697", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "unacademy.in/lesson/increas\u2026", + "url": "https://t.co/8ba42bkSq7", + "expanded_url": "https://unacademy.in/lesson/increase-vocabulary-top-words-part-2/QKFHK3T5", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "theunacademy", + "id_str": "231029978", + "id": 231029978, + "indices": [ + 81, + 94 + ], + "name": "Unacademy" + } + ] + }, + "created_at": "Fri Jan 08 13:41:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685456239564701697, + "text": "Increase Vocabulary: Top words Part 2 by Gaurav Munjal https://t.co/8ba42bkSq7 @theunacademy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685464166203830272", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "unacademy.in/lesson/increas\u2026", + "url": "https://t.co/8ba42bkSq7", + "expanded_url": "https://unacademy.in/lesson/increase-vocabulary-top-words-part-2/QKFHK3T5", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "gauravmunjal", + "id_str": "31501423", + "id": 31501423, + "indices": [ + 3, + 16 + ], + "name": "Gaurav Munjal" + }, + { + "screen_name": "theunacademy", + "id_str": "231029978", + "id": 231029978, + "indices": [ + 99, + 112 + ], + "name": "Unacademy" + } + ] + }, + "created_at": "Fri Jan 08 14:12:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685464166203830272, + "text": "RT @gauravmunjal: Increase Vocabulary: Top words Part 2 by Gaurav Munjal https://t.co/8ba42bkSq7 @theunacademy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 73310549, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 2357, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "24964948", + "following": false, + "friends_count": 463, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/bruderstein", + "url": "http://t.co/TJQjEm9pXy", + "expanded_url": "http://github.com/bruderstein", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 278, + "location": "Hamburg, Germany", + "screen_name": "bruderstein", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Dave Brotherstone", + "profile_use_background_image": true, + "description": "Developer. Notepad++ stuff, chocoholic, JavaScript, React. Not in that order.", + "url": "http://t.co/TJQjEm9pXy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/452846584003166208/qtYdhQ--_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 17 22:02:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/452846584003166208/qtYdhQ--_normal.jpeg", + "favourites_count": 474, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685390215364612096", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/polotek/status\u2026", + "url": "https://t.co/Yx9WC4TJBv", + "expanded_url": "https://twitter.com/polotek/status/685276186461646848", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 09:18:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685390215364612096, + "text": "I guarantee this is the most gripping and beautiful story you will read all week. Follow this thread. https://t.co/Yx9WC4TJBv", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 24964948, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1257, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "7528442", + "following": false, + "friends_count": 1332, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "matijs.net", + "url": "http://t.co/GVgHaYZHuj", + "expanded_url": "http://www.matijs.net/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 453, + "location": "Amsterdam", + "screen_name": "mvz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Matijs van Zuijlen", + "profile_use_background_image": true, + "description": "Ruby developer. I retweet a lot.\nRTs means interesting or relevant.\nLikes are mostly just bookmarks.", + "url": "http://t.co/GVgHaYZHuj", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477379684607328256/mASX3Axo_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Jul 17 10:27:13 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477379684607328256/mASX3Axo_normal.jpeg", + "favourites_count": 12329, + "status": { + "retweet_count": 24, + "retweeted_status": { + "retweet_count": 24, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683390981186666496", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "large": { + "w": 403, + "h": 537, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 403, + "h": 537, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", + "type": "photo", + "indices": [ + 52, + 75 + ], + "media_url": "http://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", + "display_url": "pic.twitter.com/QyanRNrUMq", + "id_str": "683390981069246466", + "expanded_url": "http://twitter.com/taalmissers/status/683390981186666496/photo/1", + "id": 683390981069246466, + "url": "https://t.co/QyanRNrUMq" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Rili2013", + "id_str": "1249816142", + "id": 1249816142, + "indices": [ + 42, + 51 + ], + "name": "Rili" + } + ] + }, + "created_at": "Sat Jan 02 20:54:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "nl", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683390981186666496, + "text": "[Leuker kunnen we ze niet maken ...] Dank @Rili2013 https://t.co/QyanRNrUMq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685559282977341440", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "large": { + "w": 403, + "h": 537, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 403, + "h": 537, + "resize": "fit" + } + }, + "source_status_id_str": "683390981186666496", + "url": "https://t.co/QyanRNrUMq", + "media_url": "http://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", + "source_user_id_str": "32399548", + "id_str": "683390981069246466", + "id": 683390981069246466, + "media_url_https": "https://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", + "type": "photo", + "indices": [ + 69, + 92 + ], + "source_status_id": 683390981186666496, + "source_user_id": 32399548, + "display_url": "pic.twitter.com/QyanRNrUMq", + "expanded_url": "http://twitter.com/taalmissers/status/683390981186666496/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "taalmissers", + "id_str": "32399548", + "id": 32399548, + "indices": [ + 3, + 15 + ], + "name": "Het Ned. Tekstbureau" + }, + { + "screen_name": "Rili2013", + "id_str": "1249816142", + "id": 1249816142, + "indices": [ + 59, + 68 + ], + "name": "Rili" + } + ] + }, + "created_at": "Fri Jan 08 20:30:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "nl", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685559282977341440, + "text": "RT @taalmissers: [Leuker kunnen we ze niet maken ...] Dank @Rili2013 https://t.co/QyanRNrUMq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 7528442, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 9014, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2895215379", + "following": false, + "friends_count": 191, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "iszlai.github.io", + "url": "http://t.co/8gQhdB834N", + "expanded_url": "http://iszlai.github.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 31, + "location": "Budapest", + "screen_name": "LehelIszlai", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Iszlai Lehel ", + "profile_use_background_image": true, + "description": "programming rants technology engineering", + "url": "http://t.co/8gQhdB834N", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/538106876119236608/gY_sgbLT_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Nov 27 22:40:09 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/538106876119236608/gY_sgbLT_normal.jpeg", + "favourites_count": 32, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "bkhayll", + "in_reply_to_user_id": 313849423, + "in_reply_to_status_id_str": "680771816898584576", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "680775867375681537", + "id": 680775867375681537, + "text": "@bkhayll how do I sign up?", + "in_reply_to_user_id_str": "313849423", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "bkhayll", + "id_str": "313849423", + "id": 313849423, + "indices": [ + 0, + 8 + ], + "name": "Bal\u00e1zs Korossy" + } + ] + }, + "created_at": "Sat Dec 26 15:43:09 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 680771816898584576, + "lang": "en" + }, + "default_profile_image": false, + "id": 2895215379, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 92, + "is_translator": false + }, + { + "time_zone": "Riyadh", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 10800, + "id_str": "327614909", + "following": false, + "friends_count": 250, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/samiali", + "url": "http://t.co/RiNxgClA23", + "expanded_url": "http://linkedin.com/in/samiali", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000030037276/d50e76a0ab435fb0c9d15d6b4ab109e4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "424C55", + "profile_link_color": "02358F", + "geo_enabled": false, + "followers_count": 190, + "location": "/sys/kernel/address.py", + "screen_name": "rootsami", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Sami Al-Haddad", + "profile_use_background_image": true, + "description": "SysAdmin / DevOps | Machines Are there to serve me! Passionate & in love with #linux | #OpenSource | #Troubleshooter by Nature :)", + "url": "http://t.co/RiNxgClA23", + "profile_text_color": "8CB2BD", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/418668442687119360/5sZ2JsZ7_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Fri Jul 01 21:16:57 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/418668442687119360/5sZ2JsZ7_normal.jpeg", + "favourites_count": 46, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ghaleb_tw", + "in_reply_to_user_id": 296725460, + "in_reply_to_status_id_str": "683057420239765508", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "683550085586763777", + "id": 683550085586763777, + "text": "@ghaleb_tw @Rdfanaldbes2015 \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0627\u0646\u0643 \u0645\u0631\u0627\u0633\u0644 \u064a\u0627 \u0631\u062f\u0641\u0627\u0646 .. \u0645\u0627\u062c\u0627\u0628\u0646\u0627 \u0648\u0631\u0627 \u0627\u0644\u0627 \u0627\u0644\u062f\u0631\u0639\u0645\u0647 \u0647\u0630\u064a", + "in_reply_to_user_id_str": "296725460", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ghaleb_tw", + "id_str": "296725460", + "id": 296725460, + "indices": [ + 0, + 10 + ], + "name": "\u063a\u0627\u0644\u0628" + }, + { + "screen_name": "Rdfanaldbes2015", + "id_str": "4285377393", + "id": 4285377393, + "indices": [ + 11, + 27 + ], + "name": "\u0631\u062f\u0641\u0627\u0646 \u0627\u0644\u062f\u0628\u064a\u0633" + } + ] + }, + "created_at": "Sun Jan 03 07:26:54 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683057420239765508, + "lang": "ar" + }, + "default_profile_image": false, + "id": 327614909, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000030037276/d50e76a0ab435fb0c9d15d6b4ab109e4.jpeg", + "statuses_count": 646, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/327614909/1374112127", + "is_translator": false + }, + { + "time_zone": "Cairo", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "14948104", + "following": false, + "friends_count": 1349, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "manhag.org", + "url": "http://t.co/DMZoxwFnLX", + "expanded_url": "http://www.manhag.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 1196, + "location": "Alexandria - Egypt", + "screen_name": "0xAhmed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 48, + "name": "Ahmed El-Gamil", + "profile_use_background_image": true, + "description": "Sysadmin, UNIX/Linux, DevOps, Code, Systems Engineer breaking systems in the name of advancing them .. having fun with @deveoteam", + "url": "http://t.co/DMZoxwFnLX", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/422823950905667584/wun-szid_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Thu May 29 20:54:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/422823950905667584/wun-szid_normal.jpeg", + "favourites_count": 115, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685083918400368640", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1SC6Szu", + "url": "https://t.co/b4ZCmfs5BG", + "expanded_url": "http://buff.ly/1SC6Szu", + "indices": [ + 60, + 83 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 13:01:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685083918400368640, + "text": "How to setup Jenkins integration to feature branch workflow https://t.co/b4ZCmfs5BG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685116223537950720", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1SC6Szu", + "url": "https://t.co/b4ZCmfs5BG", + "expanded_url": "http://buff.ly/1SC6Szu", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "deveoteam", + "id_str": "522084018", + "id": 522084018, + "indices": [ + 3, + 13 + ], + "name": "Deveo" + } + ] + }, + "created_at": "Thu Jan 07 15:10:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685116223537950720, + "text": "RT @deveoteam: How to setup Jenkins integration to feature branch workflow https://t.co/b4ZCmfs5BG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 14948104, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5876, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "916321", + "following": false, + "friends_count": 152, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 372, + "location": "Vienna, Austria", + "screen_name": "johannestroeger", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 17, + "name": "Johannes Troeger", + "profile_use_background_image": true, + "description": "Software Engineer @nextSocietyInc", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/606853055229902848/aN3ifQxG_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Mar 11 10:36:27 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/606853055229902848/aN3ifQxG_normal.jpg", + "favourites_count": 3049, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 916321, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1745, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/916321/1392902324", + "is_translator": false + }, + { + "time_zone": "Bucharest", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "35193525", + "following": false, + "friends_count": 539, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jakob.cosoroaba.ro", + "url": "https://t.co/HR5KD2x5EJ", + "expanded_url": "http://jakob.cosoroaba.ro/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458876762768699393/5Nr2HzuK.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "808042", + "profile_link_color": "A10E1F", + "geo_enabled": true, + "followers_count": 641, + "location": "Bucuresti, Romania, Europe", + "screen_name": "jcsrb", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 52, + "name": "Jakob Cosoroab\u0103", + "profile_use_background_image": true, + "description": "I build and break Webapps. Bearded and inquisitive by nature, tweet your ideas to me", + "url": "https://t.co/HR5KD2x5EJ", + "profile_text_color": "1A2928", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676394276935368704/w3-XVYQu_normal.jpg", + "profile_background_color": "A10E20", + "created_at": "Sat Apr 25 11:27:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676394276935368704/w3-XVYQu_normal.jpg", + "favourites_count": 3167, + "status": { + "retweet_count": 426, + "retweeted_status": { + "retweet_count": 426, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685483687895511040", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1000, + "h": 563, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNTyClWkAAOV__.png", + "type": "photo", + "indices": [ + 55, + 78 + ], + "media_url": "http://pbs.twimg.com/media/CYNTyClWkAAOV__.png", + "display_url": "pic.twitter.com/bHItWJ6Syn", + "id_str": "685483687442550784", + "expanded_url": "http://twitter.com/UnixToolTip/status/685483687895511040/photo/1", + "id": 685483687442550784, + "url": "https://t.co/bHItWJ6Syn" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "cube-drone.com/comics/c/holy-\u2026", + "url": "https://t.co/LpJlixHWqq", + "expanded_url": "http://cube-drone.com/comics/c/holy-war", + "indices": [ + 31, + 54 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:30:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "pt", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685483687895511040, + "text": "Comparison of Vim, Emacs, Nano https://t.co/LpJlixHWqq https://t.co/bHItWJ6Syn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 266, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685580658153000961", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1000, + "h": 563, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "source_status_id_str": "685483687895511040", + "url": "https://t.co/bHItWJ6Syn", + "media_url": "http://pbs.twimg.com/media/CYNTyClWkAAOV__.png", + "source_user_id_str": "363210621", + "id_str": "685483687442550784", + "id": 685483687442550784, + "media_url_https": "https://pbs.twimg.com/media/CYNTyClWkAAOV__.png", + "type": "photo", + "indices": [ + 72, + 95 + ], + "source_status_id": 685483687895511040, + "source_user_id": 363210621, + "display_url": "pic.twitter.com/bHItWJ6Syn", + "expanded_url": "http://twitter.com/UnixToolTip/status/685483687895511040/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "cube-drone.com/comics/c/holy-\u2026", + "url": "https://t.co/LpJlixHWqq", + "expanded_url": "http://cube-drone.com/comics/c/holy-war", + "indices": [ + 48, + 71 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "UnixToolTip", + "id_str": "363210621", + "id": 363210621, + "indices": [ + 3, + 15 + ], + "name": "Unix tool tip" + } + ] + }, + "created_at": "Fri Jan 08 21:55:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "pt", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685580658153000961, + "text": "RT @UnixToolTip: Comparison of Vim, Emacs, Nano https://t.co/LpJlixHWqq https://t.co/bHItWJ6Syn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 35193525, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458876762768699393/5Nr2HzuK.jpeg", + "statuses_count": 25521, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35193525/1404284839", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "335954828", + "following": false, + "friends_count": 1352, + "entities": { + "description": { + "urls": [ + { + "display_url": "codeship.com", + "url": "http://t.co/T9lN0wWTd8", + "expanded_url": "http://codeship.com", + "indices": [ + 98, + 120 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "codeship.com", + "url": "http://t.co/T9lN0xw5cK", + "expanded_url": "http://codeship.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/679233110689583104/cj4g-nM8.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F7F7F7", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 795, + "location": "Austria", + "screen_name": "Codebryo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 65, + "name": "- \u0340\u0317Codebryo \u0341\u0316-", + "profile_use_background_image": true, + "description": "Crafting Interfaces, drinks Coffeescript and Club Mate. Speaks and teaches. Frontend-Developer at http://t.co/T9lN0wWTd8", + "url": "http://t.co/T9lN0xw5cK", + "profile_text_color": "F216BF", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/644143591682502658/gUPF11e-_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Jul 15 14:28:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EBEBEB", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/644143591682502658/gUPF11e-_normal.jpg", + "favourites_count": 1108, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684069651941298176", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/jackbarham/sta\u2026", + "url": "https://t.co/hpEm78jqNp", + "expanded_url": "https://twitter.com/jackbarham/status/684068576265900032", + "indices": [ + 43, + 66 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 17:51:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684069651941298176, + "text": "Woot! Let's do some Vue meetups in 2016 :) https://t.co/hpEm78jqNp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685468665463070720", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/jackbarham/sta\u2026", + "url": "https://t.co/hpEm78jqNp", + "expanded_url": "https://twitter.com/jackbarham/status/684068576265900032", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "vuejs", + "id_str": "2292889800", + "id": 2292889800, + "indices": [ + 3, + 9 + ], + "name": "Vue.js" + } + ] + }, + "created_at": "Fri Jan 08 14:30:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685468665463070720, + "text": "RT @vuejs: Woot! Let's do some Vue meetups in 2016 :) https://t.co/hpEm78jqNp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 335954828, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/679233110689583104/cj4g-nM8.jpg", + "statuses_count": 4312, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/335954828/1416843806", + "is_translator": false + }, + { + "time_zone": "Chennai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "1528130959", + "following": false, + "friends_count": 312, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "devessentials.net", + "url": "http://t.co/fJkHZR8NOH", + "expanded_url": "http://devessentials.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000086454173/23d95609e728ed01823a2fc49b6f4ed5.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 59, + "location": "Bangalore, IN", + "screen_name": "dev_essentials", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Developer Essentials", + "profile_use_background_image": true, + "description": "Developer Essentials - account maintained by @Chetan_raJ", + "url": "http://t.co/fJkHZR8NOH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/559030214408151042/Zx9D-aTr_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 18 15:47:08 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/559030214408151042/Zx9D-aTr_normal.jpeg", + "favourites_count": 39, + "status": { + "retweet_count": 10777, + "retweeted_status": { + "retweet_count": 10777, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "680884986531201024", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", + "display_url": "pic.twitter.com/RVVNhWtJCP", + "id_str": "680884985990098944", + "expanded_url": "http://twitter.com/MKBHD/status/680884986531201024/photo/1", + "id": 680884985990098944, + "url": "https://t.co/RVVNhWtJCP" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/ShcnNkr_PEY", + "url": "https://t.co/SXDGCE6SkD", + "expanded_url": "https://youtu.be/ShcnNkr_PEY", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Dec 26 22:56:45 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 680884986531201024, + "text": "A couple more hours left to enter the Pick Your Smartphone giveaway! RT if you're in! https://t.co/SXDGCE6SkD https://t.co/RVVNhWtJCP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4581, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685060014323597312", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + } + }, + "source_status_id_str": "680884986531201024", + "url": "https://t.co/RVVNhWtJCP", + "media_url": "http://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", + "source_user_id_str": "29873662", + "id_str": "680884985990098944", + "id": 680884985990098944, + "media_url_https": "https://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", + "type": "photo", + "indices": [ + 121, + 140 + ], + "source_status_id": 680884986531201024, + "source_user_id": 29873662, + "display_url": "pic.twitter.com/RVVNhWtJCP", + "expanded_url": "http://twitter.com/MKBHD/status/680884986531201024/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/ShcnNkr_PEY", + "url": "https://t.co/SXDGCE6SkD", + "expanded_url": "https://youtu.be/ShcnNkr_PEY", + "indices": [ + 97, + 120 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MKBHD", + "id_str": "29873662", + "id": 29873662, + "indices": [ + 3, + 9 + ], + "name": "Marques Brownlee" + } + ] + }, + "created_at": "Thu Jan 07 11:26:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685060014323597312, + "text": "RT @MKBHD: A couple more hours left to enter the Pick Your Smartphone giveaway! RT if you're in! https://t.co/SXDGCE6SkD https://t.co/RVVNh\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1528130959, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000086454173/23d95609e728ed01823a2fc49b6f4ed5.jpeg", + "statuses_count": 304, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1528130959/1386316402", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14664166", + "following": false, + "friends_count": 826, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 275, + "location": "Stockholm, Sweden", + "screen_name": "mkhq", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Mikael H\u00f6gqvist", + "profile_use_background_image": true, + "description": "computer scientist, distributed systems/algorithms, storage, databases, senior research engineer @peerialism, previously @wrappcorp, PhD", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3009700122/1179defef2836d825e9387338185b4f8_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon May 05 20:04:33 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3009700122/1179defef2836d825e9387338185b4f8_normal.png", + "favourites_count": 67, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "travisbrown", + "in_reply_to_user_id": 6510972, + "in_reply_to_status_id_str": "654019413985873920", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "654029688961150976", + "id": 654029688961150976, + "text": "@travisbrown thanks for your excellent work with and around finagle!", + "in_reply_to_user_id_str": "6510972", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "travisbrown", + "id_str": "6510972", + "id": 6510972, + "indices": [ + 0, + 12 + ], + "name": "Travis Brown" + } + ] + }, + "created_at": "Tue Oct 13 20:23:23 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 654019413985873920, + "lang": "en" + }, + "default_profile_image": false, + "id": 14664166, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 519, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5381582", + "following": false, + "friends_count": 424, + "entities": { + "description": { + "urls": [ + { + "display_url": "ouvre-boite.com", + "url": "https://t.co/QBAt4pxBT6", + "expanded_url": "https://ouvre-boite.com", + "indices": [ + 73, + 96 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ouvre-boite.com", + "url": "https://t.co/b3nxwbMaHg", + "expanded_url": "https://www.ouvre-boite.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 9156, + "location": "The WWW!", + "screen_name": "julien51", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 196, + "name": "Julien Genestoux", + "profile_use_background_image": true, + "description": "Probably not here. I have set up a lot of automated tweets. Reach me via https://t.co/QBAt4pxBT6", + "url": "https://t.co/b3nxwbMaHg", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/425183656487841792/oI17U1UR_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Sat Apr 21 15:46:08 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/425183656487841792/oI17U1UR_normal.jpeg", + "favourites_count": 9351, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685128434834620416", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/realDonaldTrum\u2026", + "url": "https://t.co/lhsiGXDmbH", + "expanded_url": "https://twitter.com/realDonaldTrump/status/685089631973601280", + "indices": [ + 19, + 42 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 15:58:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685128434834620416, + "text": "Is this for real? https://t.co/lhsiGXDmbH", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 5381582, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 20659, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "46902840", + "following": false, + "friends_count": 471, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "evilprofessor.co.uk", + "url": "http://t.co/lY2GNZu8ln", + "expanded_url": "http://www.evilprofessor.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826090471/c32498796765a5174d7fb7f31a0b5bba.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "6F6A81", + "profile_link_color": "C29091", + "geo_enabled": true, + "followers_count": 654, + "location": "N 51\u00b026' 0'' / W 2\u00b035' 0''", + "screen_name": "lloydwatkin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 56, + "name": "\uff2c\u03b9\uff4f\u04ae\u0110 \u0461\u03b1\uff54\u03ba\u13a5\u0274", + "profile_use_background_image": true, + "description": "Software developer (PHP/io.js/Java/Ruby/Python/more) & outdoors type. Creator of @scubaSantas, @pinittome. #Bristol, UK. Work at @imdb.", + "url": "http://t.co/lY2GNZu8ln", + "profile_text_color": "EFA18D", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617001009202774016/o8NCp4u5_normal.jpg", + "profile_background_color": "EDDCB1", + "created_at": "Sat Jun 13 15:21:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617001009202774016/o8NCp4u5_normal.jpg", + "favourites_count": 886, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "lauranncrossley", + "in_reply_to_user_id": 42650438, + "in_reply_to_status_id_str": "685501034937069568", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685502597101387776", + "id": 685502597101387776, + "text": "@lauranncrossley how can you have several \"drink-free days\" and not have the other days being binges based on these numbers :)", + "in_reply_to_user_id_str": "42650438", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lauranncrossley", + "id_str": "42650438", + "id": 42650438, + "indices": [ + 0, + 16 + ], + "name": "Laura Crossley" + } + ] + }, + "created_at": "Fri Jan 08 16:45:29 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685501034937069568, + "lang": "en" + }, + "default_profile_image": false, + "id": 46902840, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826090471/c32498796765a5174d7fb7f31a0b5bba.jpeg", + "statuses_count": 5932, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/46902840/1401378546", + "is_translator": false + }, + { + "time_zone": "Bratislava", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "1495945232", + "following": false, + "friends_count": 669, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sk.linkedin.com/in/mnemcek/", + "url": "http://t.co/mofve7KBZ2", + "expanded_url": "http://sk.linkedin.com/in/mnemcek/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090015324/a535a6a6c708e218ed381b3dfcbab9d7.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 296, + "location": "Bratislava, Slovakia, Europe", + "screen_name": "YangWao", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Matej Nem\u010dek \u262f \u5de8\u5934", + "profile_use_background_image": true, + "description": "devops.js @AktivioCRM, autodidact webdev, hackerspace @Progressbarsk, B1tc0in-lov3r, cypherpunk, psychotronic", + "url": "http://t.co/mofve7KBZ2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3776977928/83f7f811dc71f5dc1954ba0a2ec837e2_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jun 09 15:55:40 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3776977928/83f7f811dc71f5dc1954ba0a2ec837e2_normal.jpeg", + "favourites_count": 1617, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "atudotio", + "in_reply_to_user_id": 47754498, + "in_reply_to_status_id_str": "675094887805673472", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684034946562928641", + "id": 684034946562928641, + "text": "@atudotio @NomadHouse are there vinyl and thick? I'm in Lisbon right now, but looks like I will leaving when you just arrive, sad ;)", + "in_reply_to_user_id_str": "47754498", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "atudotio", + "id_str": "47754498", + "id": 47754498, + "indices": [ + 0, + 9 + ], + "name": "Arthur Itey" + }, + { + "screen_name": "NomadHouse", + "id_str": "1525014661", + "id": 1525014661, + "indices": [ + 10, + 21 + ], + "name": "nomad" + } + ] + }, + "created_at": "Mon Jan 04 15:33:34 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 675094887805673472, + "lang": "en" + }, + "default_profile_image": false, + "id": 1495945232, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090015324/a535a6a6c708e218ed381b3dfcbab9d7.jpeg", + "statuses_count": 2468, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1495945232/1414087889", + "is_translator": false + }, + { + "time_zone": "Rome", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14509931", + "following": false, + "friends_count": 582, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "olisti.co", + "url": "https://t.co/S5DpQ24tK7", + "expanded_url": "https://olisti.co", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/562066364/random_grey_variations.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "4561B3", + "geo_enabled": true, + "followers_count": 488, + "location": "Desio, Lombardia", + "screen_name": "olistik", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 48, + "name": "Maurizio De Magnis", + "profile_use_background_image": true, + "description": "loop do\n self.try(:improve, ObjectSpace.each_object)\nend", + "url": "https://t.co/S5DpQ24tK7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/455695559496454146/rCDzu1QL_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Apr 24 10:42:41 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/455695559496454146/rCDzu1QL_normal.jpeg", + "favourites_count": 2072, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "olistik", + "in_reply_to_user_id": 14509931, + "in_reply_to_status_id_str": "685451143930114048", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685451621153792000", + "id": 685451621153792000, + "text": "@jodosha aren't we facing similar (more or less) issues when dealing with oauth security?", + "in_reply_to_user_id_str": "14509931", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jodosha", + "id_str": "724493", + "id": 724493, + "indices": [ + 0, + 8 + ], + "name": "Luca Guidi" + } + ] + }, + "created_at": "Fri Jan 08 13:22:56 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685451143930114048, + "lang": "en" + }, + "default_profile_image": false, + "id": 14509931, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/562066364/random_grey_variations.png", + "statuses_count": 8508, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14509931/1398238590", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "8901182", + "following": false, + "friends_count": 211, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "krzbff.de", + "url": "http://t.co/HYNS49xQcf", + "expanded_url": "http://krzbff.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167797318/_W8ePFz7.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 112, + "location": "Stuttgart, Germany", + "screen_name": "kwibbly", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Hannes Rist", + "profile_use_background_image": false, + "description": "Paketschubser", + "url": "http://t.co/HYNS49xQcf", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/597171160351121408/kwP1cA8N_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Sat Sep 15 17:49:29 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597171160351121408/kwP1cA8N_normal.png", + "favourites_count": 294, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 17742694, + "possibly_sensitive": false, + "id_str": "684280560383033344", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "daemonology.net/freebsd-on-ec2/", + "url": "https://t.co/VNDi7rsatn", + "expanded_url": "http://www.daemonology.net/freebsd-on-ec2/", + "indices": [ + 21, + 44 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lnwdr", + "id_str": "17742694", + "id": 17742694, + "indices": [ + 0, + 6 + ], + "name": "Leon Weidauer" + }, + { + "screen_name": "Nienor_", + "id_str": "17461946", + "id": 17461946, + "indices": [ + 7, + 15 + ], + "name": "Jella" + } + ] + }, + "created_at": "Tue Jan 05 07:49:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": "17742694", + "place": null, + "in_reply_to_screen_name": "lnwdr", + "in_reply_to_status_id_str": "684166896107827200", + "truncated": false, + "id": 684280560383033344, + "text": "@lnwdr @Nienor_ gibt https://t.co/VNDi7rsatn vllt hilfts weiter", + "coordinates": null, + "in_reply_to_status_id": 684166896107827200, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 8901182, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167797318/_W8ePFz7.png", + "statuses_count": 3044, + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11228352", + "following": false, + "friends_count": 1558, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "datil.co", + "url": "https://t.co/mu3TdrSLJw", + "expanded_url": "https://datil.co", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1930, + "location": "internets", + "screen_name": "eraad", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 110, + "name": "Eduardo Raad", + "profile_use_background_image": true, + "description": "CEO @datilec", + "url": "https://t.co/mu3TdrSLJw", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1682854029/image_normal.jpg", + "profile_background_color": "022330", + "created_at": "Sun Dec 16 17:50:10 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1682854029/image_normal.jpg", + "favourites_count": 8183, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/009924a469d7ace1.json", + "country": "Ecuador", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -80.4676050033072, + -3.06371600046572 + ], + [ + -79.7147810026682, + -3.06371600046572 + ], + [ + -79.7147810026682, + -1.96227400010509 + ], + [ + -80.4676050033072, + -1.96227400010509 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "EC", + "contained_within": [], + "full_name": "Guayaquil, Ecuador", + "id": "009924a469d7ace1", + "name": "Guayaquil" + }, + "in_reply_to_screen_name": "thegutgame", + "in_reply_to_user_id": 27505823, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685601458713145344", + "id": 685601458713145344, + "text": "@thegutgame como se llama ese local italiano de pizza que comentaste hace unos meses?", + "in_reply_to_user_id_str": "27505823", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thegutgame", + "id_str": "27505823", + "id": 27505823, + "indices": [ + 0, + 11 + ], + "name": "thegutgame" + } + ] + }, + "created_at": "Fri Jan 08 23:18:20 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "es" + }, + "default_profile_image": false, + "id": 11228352, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 16651, + "is_translator": false + }, + { + "time_zone": "Lisbon", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "16478053", + "following": false, + "friends_count": 109, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "onename.io/fampinheiro", + "url": "https://t.co/nbTMWCnnx1", + "expanded_url": "https://www.onename.io/fampinheiro", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "878787", + "geo_enabled": true, + "followers_count": 125, + "location": "Lisboa", + "screen_name": "fampinheiro", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Filipe Pinheiro", + "profile_use_background_image": true, + "description": "Consultant @ YLD!. Passionate about beautiful, functional and connected software.", + "url": "https://t.co/nbTMWCnnx1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477575626484744192/qDbNDIAf_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Sat Sep 27 00:39:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477575626484744192/qDbNDIAf_normal.jpeg", + "favourites_count": 103, + "status": { + "retweet_count": 142, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 142, + "truncated": false, + "retweeted": false, + "id_str": "680514542925787136", + "id": 680514542925787136, + "text": "Steam is so fucked up that I started downloading a game from FedEx.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Dec 25 22:24:45 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 324, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "680533591705694212", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SwiftOnSecurity", + "id_str": "2436389418", + "id": 2436389418, + "indices": [ + 3, + 19 + ], + "name": "SecuriTay" + } + ] + }, + "created_at": "Fri Dec 25 23:40:26 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 680533591705694212, + "text": "RT @SwiftOnSecurity: Steam is so fucked up that I started downloading a game from FedEx.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 16478053, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 422, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "262762865", + "following": false, + "friends_count": 1055, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/sandfox", + "url": "https://t.co/YAy6WjGGXm", + "expanded_url": "https://github.com/sandfox", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362879536/spacerace_819_111011.jpg", + "notifications": false, + "profile_sidebar_fill_color": "191B1C", + "profile_link_color": "569AB7", + "geo_enabled": true, + "followers_count": 346, + "location": "London", + "screen_name": "sandfoxthat", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 23, + "name": "Imperator Nope", + "profile_use_background_image": true, + "description": "Engineer, fool. Likes playing with concrete. Sometimes I computer at work. Try to fix more things than I break. The patriarchy can get fucked :-)", + "url": "https://t.co/YAy6WjGGXm", + "profile_text_color": "FFFFFF", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1269748656/sandfoxuk_normal.jpg", + "profile_background_color": "313639", + "created_at": "Tue Mar 08 18:20:40 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A1A1A1", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1269748656/sandfoxuk_normal.jpg", + "favourites_count": 7752, + "status": { + "retweet_count": 108, + "retweeted_status": { + "retweet_count": 108, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684535828178186244", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 1726, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 1011, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 573, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", + "display_url": "pic.twitter.com/zYvbTnzmKb", + "id_str": "684535752852660224", + "expanded_url": "http://twitter.com/MxJackMonroe/status/684535828178186244/photo/1", + "id": 684535752852660224, + "url": "https://t.co/zYvbTnzmKb" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Independent", + "id_str": "16973333", + "id": 16973333, + "indices": [ + 6, + 18 + ], + "name": "The Independent" + } + ] + }, + "created_at": "Wed Jan 06 00:43:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684535828178186244, + "text": "Hello @Independent, 1910 called, they want their hoop skirts and patriarchy back. Astonishingly regressive fuckery. https://t.co/zYvbTnzmKb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 137, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684762863857209344", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 1726, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 1011, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 573, + "resize": "fit" + } + }, + "source_status_id_str": "684535828178186244", + "url": "https://t.co/zYvbTnzmKb", + "media_url": "http://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", + "source_user_id_str": "512554477", + "id_str": "684535752852660224", + "id": 684535752852660224, + "media_url_https": "https://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 684535828178186244, + "source_user_id": 512554477, + "display_url": "pic.twitter.com/zYvbTnzmKb", + "expanded_url": "http://twitter.com/MxJackMonroe/status/684535828178186244/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MxJackMonroe", + "id_str": "512554477", + "id": 512554477, + "indices": [ + 3, + 16 + ], + "name": "jack monroe" + }, + { + "screen_name": "Independent", + "id_str": "16973333", + "id": 16973333, + "indices": [ + 24, + 36 + ], + "name": "The Independent" + } + ] + }, + "created_at": "Wed Jan 06 15:46:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684762863857209344, + "text": "RT @MxJackMonroe: Hello @Independent, 1910 called, they want their hoop skirts and patriarchy back. Astonishingly regressive fuckery. https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 262762865, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362879536/spacerace_819_111011.jpg", + "statuses_count": 7788, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/262762865/1398246086", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "10100322", + "following": false, + "friends_count": 705, + "entities": { + "description": { + "urls": [ + { + "display_url": "mlewis.io", + "url": "http://t.co/iIT1JCHfJu", + "expanded_url": "http://mlewis.io", + "indices": [ + 19, + 41 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 294, + "location": "Seattle, WA", + "screen_name": "mlewis", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "michael lewis", + "profile_use_background_image": true, + "description": "eminently boring | http://t.co/iIT1JCHfJu", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/452612831272509440/3k9sCYfX_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Nov 09 15:04:54 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/452612831272509440/3k9sCYfX_normal.jpeg", + "favourites_count": 685, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/568ac72a1fcc0f90.json", + "country": "United States", + "attributes": {}, + "place_type": "neighborhood", + "bounding_box": { + "coordinates": [ + [ + [ + -122.3424913, + 47.5923879 + ], + [ + -122.3248932, + 47.5923879 + ], + [ + -122.3248932, + 47.6050505 + ], + [ + -122.3424913, + 47.6050505 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Pioneer Square, Seattle", + "id": "568ac72a1fcc0f90", + "name": "Pioneer Square" + }, + "in_reply_to_screen_name": "packagecloudio", + "in_reply_to_user_id": 2615534612, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685224270612410368", + "id": 685224270612410368, + "text": "@packagecloudio Any preferred medium for a (low priority) bug report?", + "in_reply_to_user_id_str": "2615534612", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "packagecloudio", + "id_str": "2615534612", + "id": 2615534612, + "indices": [ + 0, + 15 + ], + "name": "packagecloud.io" + } + ] + }, + "created_at": "Thu Jan 07 22:19:31 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 10100322, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 9133, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "70387301", + "following": false, + "friends_count": 359, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kevinway.com", + "url": "http://t.co/UBe5NK5Pyy", + "expanded_url": "http://kevinway.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "1E9102", + "geo_enabled": true, + "followers_count": 388, + "location": "Philadelphia ", + "screen_name": "kevindway", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Kevin Way", + "profile_use_background_image": true, + "description": "Gruntled husband. Whisk(e)y neat. Current state: @Monetate", + "url": "http://t.co/UBe5NK5Pyy", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459537486608228352/AvTDHdod_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Mon Aug 31 13:05:46 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459537486608228352/AvTDHdod_normal.jpeg", + "favourites_count": 2206, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684952269436108800", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "theverge.com/2016/1/6/10718\u2026", + "url": "https://t.co/bnJlFK07Gl", + "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", + "indices": [ + 70, + 93 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 04:18:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/e4fa69eade6df2ab.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -75.475568, + 40.17271 + ], + [ + -75.447606, + 40.17271 + ], + [ + -75.447606, + 40.20228 + ], + [ + -75.475568, + 40.20228 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Collegeville, PA", + "id": "e4fa69eade6df2ab", + "name": "Collegeville" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684952269436108800, + "text": "Bots are here, they\u2019re learning \u2014 and in 2016, they might eat the web https://t.co/bnJlFK07Gl", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 70387301, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 1538, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70387301/1398396907", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "30437958", + "following": false, + "friends_count": 551, + "entities": { + "description": { + "urls": [ + { + "display_url": "iconcmo.com", + "url": "http://t.co/SEizGC38zJ", + "expanded_url": "http://iconcmo.com", + "indices": [ + 83, + 105 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "thehjellejar.com", + "url": "http://t.co/txoNWKoGJF", + "expanded_url": "http://thehjellejar.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18971801/IMG_4261.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 240, + "location": "West Fargo, North Dakota", + "screen_name": "dahjelle", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "David Alan Hjelle", + "profile_use_background_image": false, + "description": "Christ-follower; husband; avid reader; geek; and programmer at Icon Systems, Inc. (http://t.co/SEizGC38zJ)", + "url": "http://t.co/txoNWKoGJF", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/219429348/David_and_Chair_normal.jpg", + "profile_background_color": "003899", + "created_at": "Sat Apr 11 12:07:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/219429348/David_and_Chair_normal.jpg", + "favourites_count": 1026, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "LastPassHelp", + "in_reply_to_user_id": 343506337, + "in_reply_to_status_id_str": "685240741346459648", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685286768913084416", + "id": 685286768913084416, + "text": "@lastpasshelp Awesome\u2014thanks for looking in to it!", + "in_reply_to_user_id_str": "343506337", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "LastPassHelp", + "id_str": "343506337", + "id": 343506337, + "indices": [ + 0, + 13 + ], + "name": "LastPass Support" + } + ] + }, + "created_at": "Fri Jan 08 02:27:52 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685240741346459648, + "lang": "en" + }, + "default_profile_image": false, + "id": 30437958, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18971801/IMG_4261.jpg", + "statuses_count": 2565, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "80703", + "following": false, + "friends_count": 2658, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "morethanseven.net", + "url": "http://t.co/5U4xMB8NGz", + "expanded_url": "http://morethanseven.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 6678, + "location": "Cambridge and London", + "screen_name": "garethr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 506, + "name": "Gareth Rushgrove", + "profile_use_background_image": true, + "description": "Software developer, occasional sysadmin, general web, programming and technology geek and curator of Devops Weekly. Engineer at @puppetlabs. @gdsteam alumnus", + "url": "http://t.co/5U4xMB8NGz", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/628181401905410049/nHCZB12A_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Dec 19 21:00:05 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/628181401905410049/nHCZB12A_normal.jpg", + "favourites_count": 56, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/3aa1b1861c56d910.json", + "country": "United Kingdom", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + 0.0873022, + 52.1642435 + ], + [ + 0.18453, + 52.1642435 + ], + [ + 0.18453, + 52.237704 + ], + [ + 0.0873022, + 52.237704 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "GB", + "contained_within": [], + "full_name": "Cambridge, England", + "id": "3aa1b1861c56d910", + "name": "Cambridge" + }, + "in_reply_to_screen_name": "rooreynolds", + "in_reply_to_user_id": 787166, + "in_reply_to_status_id_str": "685557098277662720", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685559027502301184", + "id": 685559027502301184, + "text": "@rooreynolds @ad_greenway @jabley you obviously didn't do enough hiring :) 6/7 if memory serves", + "in_reply_to_user_id_str": "787166", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rooreynolds", + "id_str": "787166", + "id": 787166, + "indices": [ + 0, + 12 + ], + "name": "Roo Reynolds" + }, + { + "screen_name": "ad_greenway", + "id_str": "1344770017", + "id": 1344770017, + "indices": [ + 13, + 25 + ], + "name": "Andrew Greenway" + }, + { + "screen_name": "jabley", + "id_str": "8145762", + "id": 8145762, + "indices": [ + 26, + 33 + ], + "name": "James Abley" + } + ] + }, + "created_at": "Fri Jan 08 20:29:43 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685557098277662720, + "lang": "en" + }, + "default_profile_image": false, + "id": 80703, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 18381, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/80703/1401379875", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "13188872", + "following": false, + "friends_count": 321, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "annie.land", + "url": "https://t.co/0d49qv8XDo", + "expanded_url": "http://annie.land", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90240753/twitter0410.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFE1FF", + "profile_link_color": "B8586B", + "geo_enabled": false, + "followers_count": 1965, + "location": "Somerset County, New Jersey", + "screen_name": "banannie", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 164, + "name": "\u0430nn\u0131\u0b67", + "profile_use_background_image": true, + "description": "Mom of big kids (26, 23, 17.) Married 3 decades- to the same man! Bad cook. Watches too much TV. Diehard Mets fan. In perpetual flux.", + "url": "https://t.co/0d49qv8XDo", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477573623868555264/7saIWRFu_normal.jpeg", + "profile_background_color": "FFE1FF", + "created_at": "Thu Feb 07 02:46:37 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "B8586B", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477573623868555264/7saIWRFu_normal.jpeg", + "favourites_count": 744, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685601194773983232", + "id": 685601194773983232, + "text": "Today kinda sucked but Pad Thai will fix it.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:17:17 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 13188872, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90240753/twitter0410.jpg", + "statuses_count": 23115, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13188872/1396966664", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "78041535", + "following": false, + "friends_count": 450, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "banoss.wordpress.com", + "url": "http://t.co/564W0EpimR", + "expanded_url": "http://banoss.wordpress.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54326944/twitbg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 306, + "location": "London", + "screen_name": "banoss", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "banoss", + "profile_use_background_image": true, + "description": "A continuous integration and delivery practitioner. From build to deploy...", + "url": "http://t.co/564W0EpimR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/446775961623998465/45WrA0Pv_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 28 15:29:26 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/446775961623998465/45WrA0Pv_normal.jpeg", + "favourites_count": 480, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "676346188837335040", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1QngMVT", + "url": "https://t.co/TGF7PxBXxq", + "expanded_url": "http://bit.ly/1QngMVT", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [ + { + "indices": [ + 97, + 103 + ], + "text": "Flink" + }, + { + "indices": [ + 104, + 116 + ], + "text": "ApacheFlink" + } + ], + "user_mentions": [] + }, + "created_at": "Mon Dec 14 10:21:11 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 676346188837335040, + "text": "Why Apache Flink is the 4th Generation of Big Data Analytics Frameworks\n https://t.co/TGF7PxBXxq #Flink #ApacheFlink", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "676734460524666880", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1QngMVT", + "url": "https://t.co/TGF7PxBXxq", + "expanded_url": "http://bit.ly/1QngMVT", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [ + { + "indices": [ + 112, + 118 + ], + "text": "Flink" + }, + { + "indices": [ + 119, + 131 + ], + "text": "ApacheFlink" + } + ], + "user_mentions": [ + { + "screen_name": "51zeroLtd", + "id_str": "310777240", + "id": 310777240, + "indices": [ + 3, + 13 + ], + "name": "51zero" + } + ] + }, + "created_at": "Tue Dec 15 12:04:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 676734460524666880, + "text": "RT @51zeroLtd: Why Apache Flink is the 4th Generation of Big Data Analytics Frameworks\n https://t.co/TGF7PxBXxq #Flink #ApacheFlink", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 78041535, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54326944/twitbg.jpg", + "statuses_count": 836, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "41083053", + "following": false, + "friends_count": 950, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "0099B9", + "geo_enabled": true, + "followers_count": 288, + "location": "London", + "screen_name": "MuKoGo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Alfonso Gonzalez", + "profile_use_background_image": true, + "description": "Linux enthusiastic, Geek & Musician. Senior Site Reliability Engineer at MyDrive Solutions @_MyDrive", + "url": null, + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1810454841/twittpic_normal.jpg", + "profile_background_color": "0099B9", + "created_at": "Tue May 19 09:03:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1810454841/twittpic_normal.jpg", + "favourites_count": 246, + "status": { + "retweet_count": 8, + "retweeted_status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5eb20415c64640aa.json", + "country": "United States", + "attributes": {}, + "place_type": "neighborhood", + "bounding_box": { + "coordinates": [ + [ + [ + -118.4741578, + 33.9601689 + ], + [ + -118.4321992, + 33.9601689 + ], + [ + -118.4321992, + 33.98647 + ], + [ + -118.4741578, + 33.98647 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Marina del Rey, CA", + "id": "5eb20415c64640aa", + "name": "Marina del Rey" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 8, + "truncated": false, + "retweeted": false, + "id_str": "682333183233294336", + "id": 682333183233294336, + "text": "Hrm, youtube dot com can\u2019t stream HD, but youtube-dl can download it at 3 MB/s. ISP throttling? :(", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 22:51:22 +0000 2015", + "source": "Tweetbot for Mac", + "favorite_count": 10, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "682378018434748416", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mitchellh", + "id_str": "12819682", + "id": 12819682, + "indices": [ + 3, + 13 + ], + "name": "Mitchell Hashimoto" + } + ] + }, + "created_at": "Thu Dec 31 01:49:32 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682378018434748416, + "text": "RT @mitchellh: Hrm, youtube dot com can\u2019t stream HD, but youtube-dl can download it at 3 MB/s. ISP throttling? :(", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 41083053, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 281, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "849181692", + "following": false, + "friends_count": 988, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/missinglink", + "url": "https://t.co/uSRx4YMDJC", + "expanded_url": "https://github.com/missinglink", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459225482047655936/g75phn_h.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 608, + "location": "0\u00b00'0 N 0\u00b00'0 E", + "screen_name": "insertcoffee", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 51, + "name": "Peter Johnson", + "profile_use_background_image": true, + "description": "kiwi, web geek, node.js developer, javascript junkie, indie game developer. geocoders geocoders geocoders @mapzen", + "url": "https://t.co/uSRx4YMDJC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/608239951268986880/31HXVCXF_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Thu Sep 27 12:38:56 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/608239951268986880/31HXVCXF_normal.jpg", + "favourites_count": 312, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "aaroninit", + "in_reply_to_user_id": 3281759808, + "in_reply_to_status_id_str": "678063072922112000", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "678906215154524161", + "id": 678906215154524161, + "text": "@aaroninit @mapzen what exactly are you looking for with the 'business lookup'?", + "in_reply_to_user_id_str": "3281759808", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "aaroninit", + "id_str": "3281759808", + "id": 3281759808, + "indices": [ + 0, + 10 + ], + "name": "Aaron Mortensen" + }, + { + "screen_name": "mapzen", + "id_str": "1903859166", + "id": 1903859166, + "indices": [ + 11, + 18 + ], + "name": "Mapzen" + } + ] + }, + "created_at": "Mon Dec 21 11:53:49 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 678063072922112000, + "lang": "en" + }, + "default_profile_image": false, + "id": 849181692, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459225482047655936/g75phn_h.jpeg", + "statuses_count": 796, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/849181692/1398322927", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "82171114", + "following": false, + "friends_count": 259, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "erickdransch.com/blog", + "url": "http://t.co/D36CMGWwTc", + "expanded_url": "http://www.erickdransch.com/blog", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/45603719/sunofnothing_1280.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 78, + "location": "", + "screen_name": "ErickDransch", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Erick", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/D36CMGWwTc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/563558735038009345/463ywI9M_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Oct 13 19:29:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/563558735038009345/463ywI9M_normal.jpeg", + "favourites_count": 15, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679792449376677888", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "time.com/4159645/tsa-bo\u2026", + "url": "https://t.co/gJloxA3qhm", + "expanded_url": "http://time.com/4159645/tsa-body-scans-ait/", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 23 22:35:24 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679792449376677888, + "text": "TSA Can Now Force Passengers to Go Through Body Scanners\nhttps://t.co/gJloxA3qhm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679888373549547520", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "time.com/4159645/tsa-bo\u2026", + "url": "https://t.co/gJloxA3qhm", + "expanded_url": "http://time.com/4159645/tsa-body-scans-ait/", + "indices": [ + 74, + 97 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mike_conley", + "id_str": "18627588", + "id": 18627588, + "indices": [ + 3, + 15 + ], + "name": "Mike Conley" + } + ] + }, + "created_at": "Thu Dec 24 04:56:34 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679888373549547520, + "text": "RT @mike_conley: TSA Can Now Force Passengers to Go Through Body Scanners\nhttps://t.co/gJloxA3qhm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 82171114, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/45603719/sunofnothing_1280.jpg", + "statuses_count": 388, + "is_translator": false + }, + { + "time_zone": "Rome", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "15979784", + "following": false, + "friends_count": 1348, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "matteocollina.com", + "url": "http://t.co/REScuzT1yo", + "expanded_url": "http://matteocollina.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/697629672/74f7cdffc9b2c3f62771c7acac3f512d.png", + "notifications": false, + "profile_sidebar_fill_color": "060A00", + "profile_link_color": "618238", + "geo_enabled": true, + "followers_count": 3427, + "location": "44.282281,12.342047", + "screen_name": "matteocollina", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 201, + "name": "Matteo Collina", + "profile_use_background_image": false, + "description": "Code Pirate and Ph.D. Software Architect @nearForm, IoT Expert, Consultant, and Conference Speaker.", + "url": "http://t.co/REScuzT1yo", + "profile_text_color": "485C3A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000468501783/fe04de4765546bb77e8224b2f74adbef_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Aug 25 10:17:31 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "it", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000468501783/fe04de4765546bb77e8224b2f74adbef_normal.jpeg", + "favourites_count": 320, + "status": { + "retweet_count": 347, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 347, + "truncated": false, + "retweeted": false, + "id_str": "683809215203299328", + "id": 683809215203299328, + "text": "Don\u2019t be worried about those copying you. They are copies. Worry about those doing it differently than you. They are originals.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 00:36:36 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 436, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "683949743286972416", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jasonfried", + "id_str": "14372143", + "id": 14372143, + "indices": [ + 3, + 14 + ], + "name": "Jason Fried" + } + ] + }, + "created_at": "Mon Jan 04 09:55:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683949743286972416, + "text": "RT @jasonfried: Don\u2019t be worried about those copying you. They are copies. Worry about those doing it differently than you. They are origin\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 15979784, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/697629672/74f7cdffc9b2c3f62771c7acac3f512d.png", + "statuses_count": 12936, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15979784/1351586117", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14280929", + "following": false, + "friends_count": 721, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/danackerson", + "url": "http://t.co/y3zi25EHmE", + "expanded_url": "http://about.me/danackerson", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/490508509448900609/K8RODZjk.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "2B5078", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 850, + "location": "Germany", + "screen_name": "danackerson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 92, + "name": "Dan Ackerson", + "profile_use_background_image": true, + "description": "Expat Florida boy in Germany. Long time Java developer, Agile subscriber and devops believer!", + "url": "http://t.co/y3zi25EHmE", + "profile_text_color": "0E0101", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659088684277477377/poj5BfAj_normal.png", + "profile_background_color": "CBCEDD", + "created_at": "Wed Apr 02 05:52:44 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659088684277477377/poj5BfAj_normal.png", + "favourites_count": 123, + "status": { + "retweet_count": 10, + "retweeted_status": { + "retweet_count": 10, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684855200906108928", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/flowchainsense\u2026", + "url": "https://t.co/2S8YzyVhyC", + "expanded_url": "https://twitter.com/flowchainsensei/status/684815232624115715", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 21:52:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684855200906108928, + "text": "The world suffers more from developers who don't know how to test than testers who don't know how to develop. https://t.co/2S8YzyVhyC", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 12, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685360771535114240", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/flowchainsense\u2026", + "url": "https://t.co/2S8YzyVhyC", + "expanded_url": "https://twitter.com/flowchainsensei/status/684815232624115715", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jurgenappelo", + "id_str": "14116283", + "id": 14116283, + "indices": [ + 3, + 16 + ], + "name": "Jurgen Appelo" + } + ] + }, + "created_at": "Fri Jan 08 07:21:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685360771535114240, + "text": "RT @jurgenappelo: The world suffers more from developers who don't know how to test than testers who don't know how to develop. https://t.c\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14280929, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/490508509448900609/K8RODZjk.jpeg", + "statuses_count": 874, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14280929/1405781101", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "17618689", + "following": false, + "friends_count": 421, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 107, + "location": "South east Asia", + "screen_name": "gerva", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "Massimo", + "profile_use_background_image": true, + "description": "Nomad Releng", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/557612654282674176/AhoY1wXv_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Tue Nov 25 13:01:35 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "it", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/557612654282674176/AhoY1wXv_normal.jpeg", + "favourites_count": 274, + "status": { + "retweet_count": 6, + "retweeted_status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684929776574947328", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bugzilla.mozilla.org/show_bug.cgi?i\u2026", + "url": "https://t.co/EQxdgy9s6I", + "expanded_url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1121937", + "indices": [ + 64, + 87 + ] + }, + { + "display_url": "pic.twitter.com/xoHciWMbq2", + "url": "https://t.co/xoHciWMbq2", + "expanded_url": "http://twitter.com/mrrrgn/status/684929776574947328/photo/1", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 02:49:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684929776574947328, + "text": "Near to landing my 1st interesting ES6 feature, TypedArray.sort https://t.co/EQxdgy9s6I Here it is racing against v8 https://t.co/xoHciWMbq2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 24, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684968273574690816", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bugzilla.mozilla.org/show_bug.cgi?i\u2026", + "url": "https://t.co/EQxdgy9s6I", + "expanded_url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1121937", + "indices": [ + 76, + 99 + ] + }, + { + "display_url": "pic.twitter.com/xoHciWMbq2", + "url": "https://t.co/xoHciWMbq2", + "expanded_url": "http://twitter.com/mrrrgn/status/684929776574947328/photo/1", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mrrrgn", + "id_str": "319840411", + "id": 319840411, + "indices": [ + 3, + 10 + ], + "name": "Morgan Phillips" + } + ] + }, + "created_at": "Thu Jan 07 05:22:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684968273574690816, + "text": "RT @mrrrgn: Near to landing my 1st interesting ES6 feature, TypedArray.sort https://t.co/EQxdgy9s6I Here it is racing against v8 https://t.\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Carbon v2" + }, + "default_profile_image": false, + "id": 17618689, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 672, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17618689/1415626601", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "129834860", + "following": false, + "friends_count": 1273, + "entities": { + "description": { + "urls": [ + { + "display_url": "xkcd.com/722/", + "url": "http://t.co/URCtNHU6SL", + "expanded_url": "http://xkcd.com/722/", + "indices": [ + 27, + 49 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 667, + "location": "Dublin, Ireland", + "screen_name": "james_raftery", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "James Raftery", + "profile_use_background_image": false, + "description": "AWS DNS Internet Monkey\u2122 \u2014 http://t.co/URCtNHU6SL\n\n\u201cIf all else fails, immortality can always be assured by spectacular error.\u201d \u2014 John Kenneth Galbraith", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/605034206171922435/Kf6rNNgm_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Apr 05 15:17:21 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/605034206171922435/Kf6rNNgm_normal.jpg", + "favourites_count": 2203, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "AodhBC", + "in_reply_to_user_id": 437052773, + "in_reply_to_status_id_str": "684893200088170497", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684895289577095168", + "id": 684895289577095168, + "text": "@AodhBC If I burn fifties between now and then can I guarantee she won\u2019t?", + "in_reply_to_user_id_str": "437052773", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AodhBC", + "id_str": "437052773", + "id": 437052773, + "indices": [ + 0, + 7 + ], + "name": "Aodh" + } + ] + }, + "created_at": "Thu Jan 07 00:32:16 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684893200088170497, + "lang": "en" + }, + "default_profile_image": false, + "id": 129834860, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "statuses_count": 5440, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/129834860/1390067079", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6300372", + "following": false, + "friends_count": 1021, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "flutterby.net/User:DanLyke", + "url": "http://t.co/D27EBangdr", + "expanded_url": "http://www.flutterby.net/User:DanLyke", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 1209, + "location": "Petaluma, California, USA", + "screen_name": "danlyke", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 74, + "name": "Dan Lyke", + "profile_use_background_image": true, + "description": "Computer geek, cyclist, woodworker, Petaluma resident. I only follow back if I think you're actually engaging me (generally < 1k followers).", + "url": "http://t.co/D27EBangdr", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649624733395234816/WnBYYwlF_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Fri May 25 01:33:03 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649624733395234816/WnBYYwlF_normal.jpg", + "favourites_count": 15637, + "status": { + "retweet_count": 378, + "retweeted_status": { + "retweet_count": 378, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685300492864360450", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 396, + "h": 155, + "resize": "fit" + }, + "medium": { + "w": 396, + "h": 155, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 133, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", + "type": "photo", + "indices": [ + 78, + 101 + ], + "media_url": "http://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", + "display_url": "pic.twitter.com/uzhcozODa4", + "id_str": "685300491064967168", + "expanded_url": "http://twitter.com/torproject/status/685300492864360450/photo/1", + "id": 685300491064967168, + "url": "https://t.co/uzhcozODa4" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 68, + 77 + ], + "text": "WeAreEFF" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:22:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685300492864360450, + "text": "Our ally and hero in the fight for human rights in the digital age. #WeAreEFF https://t.co/uzhcozODa4", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 453, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685507917743669249", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 396, + "h": 155, + "resize": "fit" + }, + "medium": { + "w": 396, + "h": 155, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 133, + "resize": "fit" + } + }, + "source_status_id_str": "685300492864360450", + "url": "https://t.co/uzhcozODa4", + "media_url": "http://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", + "source_user_id_str": "18466967", + "id_str": "685300491064967168", + "id": 685300491064967168, + "media_url_https": "https://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", + "type": "photo", + "indices": [ + 94, + 117 + ], + "source_status_id": 685300492864360450, + "source_user_id": 18466967, + "display_url": "pic.twitter.com/uzhcozODa4", + "expanded_url": "http://twitter.com/torproject/status/685300492864360450/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 84, + 93 + ], + "text": "WeAreEFF" + } + ], + "user_mentions": [ + { + "screen_name": "torproject", + "id_str": "18466967", + "id": 18466967, + "indices": [ + 3, + 14 + ], + "name": "torproject" + } + ] + }, + "created_at": "Fri Jan 08 17:06:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685507917743669249, + "text": "RT @torproject: Our ally and hero in the fight for human rights in the digital age. #WeAreEFF https://t.co/uzhcozODa4", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 6300372, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 30075, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6300372/1367278824", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1846739046", + "following": false, + "friends_count": 101, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 167, + "location": "", + "screen_name": "DwdDave", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Dave Cridland", + "profile_use_background_image": true, + "description": "Yeah, probably.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000434448590/01c16cf93fcec64b8ad9aa2505b757d3_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 09 14:35:25 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000434448590/01c16cf93fcec64b8ad9aa2505b757d3_normal.png", + "favourites_count": 14, + "status": { + "retweet_count": 238, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 238, + "truncated": false, + "retweeted": false, + "id_str": "685068662940766208", + "id": 685068662940766208, + "text": "There are five basic plots:\n-Revenge\n-Sexy Vampires\n-A Superhero punches people\n-No-one appreciates Adam Sandler\n-Blowing up the Death Star", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 12:01:11 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 264, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685080307717042177", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "NedHartley", + "id_str": "21085906", + "id": 21085906, + "indices": [ + 3, + 14 + ], + "name": "Ned Hartley" + } + ] + }, + "created_at": "Thu Jan 07 12:47:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685080307717042177, + "text": "RT @NedHartley: There are five basic plots:\n-Revenge\n-Sexy Vampires\n-A Superhero punches people\n-No-one appreciates Adam Sandler\n-Blowing u\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1846739046, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1679, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "25823332", + "following": false, + "friends_count": 435, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wandit.co.uk", + "url": "http://t.co/fh4rcNTlgz", + "expanded_url": "http://www.wandit.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": false, + "followers_count": 179, + "location": "Hampshire (UK)", + "screen_name": "wandit", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Wesley Childs", + "profile_use_background_image": false, + "description": "Devops, Puppet, Python etc... Currently consulting for the amazing @CustomMade", + "url": "http://t.co/fh4rcNTlgz", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3612359145/84810bc36d3d5242a696b64568cffeae_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Mar 22 14:31:51 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3612359145/84810bc36d3d5242a696b64568cffeae_normal.jpeg", + "favourites_count": 591, + "status": { + "retweet_count": 9, + "retweeted_status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/3aa1b1861c56d910.json", + "country": "United Kingdom", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + 0.0873022, + 52.1642435 + ], + [ + 0.18453, + 52.1642435 + ], + [ + 0.18453, + 52.237704 + ], + [ + 0.0873022, + 52.237704 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "GB", + "contained_within": [], + "full_name": "Cambridge, England", + "id": "3aa1b1861c56d910", + "name": "Cambridge" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 9, + "truncated": false, + "retweeted": false, + "id_str": "684466828836495360", + "id": 684466828836495360, + "text": "Chat bots are the new dashboards", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 20:09:43 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 14, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "684477718973530112", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "garethr", + "id_str": "80703", + "id": 80703, + "indices": [ + 3, + 11 + ], + "name": "Gareth Rushgrove" + } + ] + }, + "created_at": "Tue Jan 05 20:52:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684477718973530112, + "text": "RT @garethr: Chat bots are the new dashboards", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 25823332, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1577, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1903684836", + "following": false, + "friends_count": 858, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sudodoki.name", + "url": "http://t.co/wEHJp0Z2DV", + "expanded_url": "http://sudodoki.name/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589891304575733760/82LGi3jD.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 715, + "location": "Kyiv, Ukraine", + "screen_name": "sudodoki", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "\u0414\u0436\u043e\u043d, \u043f\u0440\u043e\u0441\u0442\u043e \u0414\u0436\u043e\u043d", + "profile_use_background_image": true, + "description": "Where do I stick my contributions in? Member of @kottans_org gang. Ping me to join @nodeschool/kyiv.", + "url": "http://t.co/wEHJp0Z2DV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663612964252069888/raAOc4lI_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 25 10:30:52 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663612964252069888/raAOc4lI_normal.jpg", + "favourites_count": 7350, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685074640746713088", + "id": 685074640746713088, + "text": "\u041f\u043e\u043c\u0435\u043d\u044f\u043b\u0438 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043b\u0430\u043d\u0435\u0442, \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0445\u0438\u043c\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u0438 \u0435\u0449\u0451 \u0444\u0438\u0433 \u0437\u043d\u0430\u0435\u0442 \u0447\u0442\u043e \u043f\u043e\u043c\u0435\u043d\u044f\u043b\u043e\u0441\u044c. \u0414\u0435\u0442\u044f\u043c \u0441 \u0443\u0447\u0451\u0431\u043e\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043c\u043e\u0433\u0430\u0442\u044c \u043d\u0435\u043f\u0440\u043e\u0441\u0442\u043e.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 12:24:57 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "ru" + }, + "default_profile_image": false, + "id": 1903684836, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589891304575733760/82LGi3jD.png", + "statuses_count": 5079, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1903684836/1429474866", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "34473211", + "following": false, + "friends_count": 615, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chrisjenx.com", + "url": "http://t.co/7MJzlZPkF4", + "expanded_url": "http://chrisjenx.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAEDF4", + "profile_link_color": "89C9FA", + "geo_enabled": true, + "followers_count": 826, + "location": "London, United Kingdom", + "screen_name": "chrisjenx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 52, + "name": "Christopher Jenkins", + "profile_use_background_image": true, + "description": "Android Engineer. Drummer. GreenGeek. Vegan. @OWLR, @Loveflutter", + "url": "http://t.co/7MJzlZPkF4", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/596569381972369408/nbcy2eSM_normal.jpg", + "profile_background_color": "212329", + "created_at": "Thu Apr 23 01:06:23 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/596569381972369408/nbcy2eSM_normal.jpg", + "favourites_count": 2133, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "claire_mcnear", + "in_reply_to_user_id": 19330411, + "in_reply_to_status_id_str": "685250840723091456", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685402859177947136", + "id": 685402859177947136, + "text": "@claire_mcnear I hope you were trolling and do know the difference, otherwise this is really painful.", + "in_reply_to_user_id_str": "19330411", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "claire_mcnear", + "id_str": "19330411", + "id": 19330411, + "indices": [ + 0, + 14 + ], + "name": "Claire McNear" + } + ] + }, + "created_at": "Fri Jan 08 10:09:10 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685250840723091456, + "lang": "en" + }, + "default_profile_image": false, + "id": 34473211, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 4407, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/34473211/1436302874", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "15049759", + "following": false, + "friends_count": 360, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "daenney.github.io", + "url": "https://t.co/jNqbwGtHLY", + "expanded_url": "https://daenney.github.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 317, + "location": "", + "screen_name": "daenney", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 31, + "name": "Daniele Sluijters", + "profile_use_background_image": true, + "description": "Gender pronoun: he/him. Don't just stand there, do something!", + "url": "https://t.co/jNqbwGtHLY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655129326753591296/pOi3QtlE_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jun 08 20:19:30 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655129326753591296/pOi3QtlE_normal.jpg", + "favourites_count": 4, + "status": { + "retweet_count": 704, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 704, + "truncated": false, + "retweeted": false, + "id_str": "685516987859120128", + "id": 685516987859120128, + "text": "Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're on track", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:42:40 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 635, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685574915546853376", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "McKelvie", + "id_str": "14276679", + "id": 14276679, + "indices": [ + 3, + 12 + ], + "name": "Jamie McKelvie" + } + ] + }, + "created_at": "Fri Jan 08 21:32:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685574915546853376, + "text": "RT @McKelvie: Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 15049759, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4915, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15049759/1405775209", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "1148602058", + "following": false, + "friends_count": 722, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "214C6B", + "geo_enabled": false, + "followers_count": 164, + "location": "St. Louis, MO", + "screen_name": "PizzaBrandon", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Brandon Belvin", + "profile_use_background_image": true, + "description": "Node, web, and e-commerce developer. Nuts about UX. Pizza aficionado. Father of daughters.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657045459106574337/KoyJns70_normal.png", + "profile_background_color": "022330", + "created_at": "Mon Feb 04 17:31:33 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657045459106574337/KoyJns70_normal.png", + "favourites_count": 407, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685159844186161152", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYItP2CUsAAdj6-.jpg", + "type": "photo", + "indices": [ + 115, + 138 + ], + "media_url": "http://pbs.twimg.com/media/CYItP2CUsAAdj6-.jpg", + "display_url": "pic.twitter.com/HxAK0DTA6W", + "id_str": "685159843540283392", + "expanded_url": "http://twitter.com/PizzaBrandon/status/685159844186161152/photo/1", + "id": 685159843540283392, + "url": "https://t.co/HxAK0DTA6W" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "STLBLTs", + "id_str": "3347434467", + "id": 3347434467, + "indices": [ + 1, + 9 + ], + "name": "STL BLT" + } + ] + }, + "created_at": "Thu Jan 07 18:03:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685159844186161152, + "text": ".@STLBLTs came by our office for lunch. I ordered the \"We Jammin\" and I'm happy I did. The tomato jam made my day! https://t.co/HxAK0DTA6W", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1148602058, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 467, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1563811", + "following": false, + "friends_count": 257, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "google.com/+BenjaminRumble", + "url": "https://t.co/IT5zxSJolO", + "expanded_url": "https://google.com/+BenjaminRumble", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/506292/benHead.jpg", + "notifications": false, + "profile_sidebar_fill_color": "A1A591", + "profile_link_color": "000088", + "geo_enabled": true, + "followers_count": 541, + "location": "Vancouver, British Columbia", + "screen_name": "therumbler", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Benji R", + "profile_use_background_image": false, + "description": "I like life, music, beer, music, skiing, music and long walks on the beach, \r\n\r\nand writing code.\r\n\r\nI'm a feminist.", + "url": "https://t.co/IT5zxSJolO", + "profile_text_color": "606060", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507576445556649984/shFPlawr_normal.jpeg", + "profile_background_color": "808080", + "created_at": "Tue Mar 20 00:11:51 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507576445556649984/shFPlawr_normal.jpeg", + "favourites_count": 2525, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "CandiSpillard", + "in_reply_to_user_id": 2867356894, + "in_reply_to_status_id_str": "685603484331278336", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685607373046595584", + "id": 685607373046595584, + "text": "@CandiSpillard Again: your issue appears to be that Apple's products are just too good. Or, that people are morons. One of those two! :-P", + "in_reply_to_user_id_str": "2867356894", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CandiSpillard", + "id_str": "2867356894", + "id": 2867356894, + "indices": [ + 0, + 14 + ], + "name": "Dr Candida Spillard" + } + ] + }, + "created_at": "Fri Jan 08 23:41:50 +0000 2016", + "source": "YoruFukurou", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685603484331278336, + "lang": "en" + }, + "default_profile_image": false, + "id": 1563811, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/506292/benHead.jpg", + "statuses_count": 10882, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1563811/1409850835", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "144433856", + "following": false, + "friends_count": 82, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/159444108/fuckyeahgridpaper.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "6C3D5C", + "geo_enabled": true, + "followers_count": 114, + "location": "Salt Lake City, UT", + "screen_name": "benjaminkimball", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Benjamin Kimball", + "profile_use_background_image": true, + "description": "Lover of JavaScript. Working as a wrangler of links and buttons.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/593503119423582208/tQ6596iq_normal.jpg", + "profile_background_color": "EEEEEE", + "created_at": "Sun May 16 08:17:29 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/593503119423582208/tQ6596iq_normal.jpg", + "favourites_count": 680, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 14262063, + "possibly_sensitive": false, + "id_str": "684806748973039617", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.johnryding.com/post/890554809\u2026", + "url": "https://t.co/fsSzi0wkWE", + "expanded_url": "http://blog.johnryding.com/post/89055480988/eventual-consistency-in-real-time-web-apps", + "indices": [ + 50, + 73 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "crichardson", + "id_str": "14262063", + "id": 14262063, + "indices": [ + 0, + 12 + ], + "name": "Chris Richardson" + } + ] + }, + "created_at": "Wed Jan 06 18:40:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "14262063", + "place": null, + "in_reply_to_screen_name": "crichardson", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684806748973039617, + "text": "@crichardson The UX eventual consistency article! https://t.co/fsSzi0wkWE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 144433856, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/159444108/fuckyeahgridpaper.jpeg", + "statuses_count": 1419, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/144433856/1444701198", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "336113", + "following": false, + "friends_count": 2850, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "goodreads.com/meangrape", + "url": "https://t.co/1wy3UBfzx3", + "expanded_url": "https://goodreads.com/meangrape", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 5229, + "location": "San Francisco", + "screen_name": "meangrape", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 147, + "name": "Jay.", + "profile_use_background_image": false, + "description": "bellum se ipsum alet. Ex-OFA. Ex-Twitter.", + "url": "https://t.co/1wy3UBfzx3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/453022580291534848/1GwfOoTW_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri Dec 29 02:57:55 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/453022580291534848/1GwfOoTW_normal.jpeg", + "favourites_count": 7904, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": "kittenwithawhip", + "in_reply_to_user_id": 15682352, + "in_reply_to_status_id_str": "685349387380363265", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685391588738990081", + "id": 685391588738990081, + "text": "@kittenwithawhip I'm still trying to imagine the sales that required a fleet of 20 pizza delivery cars in 1950 Windsor. The mind boggles.", + "in_reply_to_user_id_str": "15682352", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kittenwithawhip", + "id_str": "15682352", + "id": 15682352, + "indices": [ + 0, + 16 + ], + "name": "Kat Kinsman" + } + ] + }, + "created_at": "Fri Jan 08 09:24:23 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685349387380363265, + "lang": "en" + }, + "default_profile_image": false, + "id": 336113, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 25636, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/336113/1415666542", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1841791", + "following": false, + "friends_count": 709, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "coderanger.net", + "url": "https://t.co/XK0CxNNOsP", + "expanded_url": "https://coderanger.net/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1856, + "location": "Lafayette, CA", + "screen_name": "kantrn", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 133, + "name": "Noah Kantrowitz", + "profile_use_background_image": true, + "description": "Programmer and all-around geek. AKA coderanger.", + "url": "https://t.co/XK0CxNNOsP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1170359603/avatar_original_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 22 05:51:31 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1170359603/avatar_original_normal.png", + "favourites_count": 4394, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "cheeseplus", + "in_reply_to_user_id": 22882670, + "in_reply_to_status_id_str": "685612596028805120", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613029484961792", + "id": 685613029484961792, + "text": "@cheeseplus Soooooooooo capitalism?", + "in_reply_to_user_id_str": "22882670", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "cheeseplus", + "id_str": "22882670", + "id": 22882670, + "indices": [ + 0, + 11 + ], + "name": "vestigial underscore" + } + ] + }, + "created_at": "Sat Jan 09 00:04:18 +0000 2016", + "source": "Twitterrific for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685612596028805120, + "lang": "es" + }, + "default_profile_image": false, + "id": 1841791, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 29232, + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "415643", + "following": false, + "friends_count": 2659, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "christopheducamp.com", + "url": "http://t.co/a5ONvFSQpa", + "expanded_url": "http://christopheducamp.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0099CC", + "geo_enabled": true, + "followers_count": 3278, + "location": "Paris, FR", + "screen_name": "xtof_fr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 299, + "name": "Christophe Ducamp", + "profile_use_background_image": true, + "description": "Father. \nPassions #indieweb & #calmtech\nFreelancing @EchosBusiness", + "url": "http://t.co/a5ONvFSQpa", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3585902892/c841be488b34741d25cf1d470903c3a4_normal.png", + "profile_background_color": "FFF04D", + "created_at": "Mon Jan 01 15:12:01 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFF8AD", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3585902892/c841be488b34741d25cf1d470903c3a4_normal.png", + "favourites_count": 2376, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "680082011231514625", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/FredCavazza/st\u2026", + "url": "https://t.co/VilQ489cST", + "expanded_url": "https://twitter.com/FredCavazza/status/679631009856503808", + "indices": [ + 106, + 129 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jekyllrb", + "id_str": "1143789606", + "id": 1143789606, + "indices": [ + 95, + 104 + ], + "name": "jekyll" + } + ] + }, + "created_at": "Thu Dec 24 17:46:01 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "fr", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 680082011231514625, + "text": "Confort\u00e9 de voir les \"sites statiques\" en t\u00eate de ton pronostic. Merci Fred. \n(\u00e9l\u00e8ve et fan de @jekyllrb) https://t.co/VilQ489cST", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 415643, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "statuses_count": 13699, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/415643/1410101838", + "is_translator": false + }, + { + "time_zone": "Irkutsk", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 28800, + "id_str": "1049287556", + "following": false, + "friends_count": 405, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 115, + "location": "", + "screen_name": "James_Hickey3", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "\u30d2\u30c3\u30ad\u30fc\u5927\u4f50", + "profile_use_background_image": true, + "description": "\u30a2\u30e1\u30ea\u30ab\u7b2c\uff14\u6b69\u5175\u5e2b\u56e3\u30fb\u7b2c\uff11\u65c5\u56e3\u53f8\u4ee4\u5b98", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649590975401099264/Dg99igFE_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 31 02:20:05 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649590975401099264/Dg99igFE_normal.jpg", + "favourites_count": 375, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684783626848841728", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "sakainaoki.blogspot.com/2016/01/instag\u2026", + "url": "https://t.co/QVXMu7MkNm", + "expanded_url": "http://sakainaoki.blogspot.com/2016/01/instagram.html", + "indices": [ + 81, + 104 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 17:08:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "ja", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684783626848841728, + "text": "\u5ba2\u89b3\u7684\u306b\u898b\u308b\u3068\u30b8\u30e0\u3067\u4f53\u3092\u935b\u3048\u3066\u3044\u308b\u30b7\u30fc\u30f3\u306f\u5b9f\u306b\u6ed1\u7a3d\u3060\u3002\u6b32\u671b\u306e\u30e1\u30c7\u30a3\u30a2Instagram\u3067\u3082\u935b\u3048\u3089\u308c\u305f\u30b0\u30e9\u30de\u30e9\u30b9\u306a\u7f8e\u4eba\u306e\u753b\u50cf\u3084\u30de\u30c3\u30c1\u30e7\u306a\u7537\u306e\u753b\u50cf\u306f\u983b\u7e41\u306b\u898b\u3089\u308c\u308b\u3002 https://t.co/QVXMu7MkNm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 1049287556, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2115, + "is_translator": false + }, + { + "time_zone": "Pacific/Auckland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 46800, + "id_str": "18344890", + "following": false, + "friends_count": 1913, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "junglistheavy.industries", + "url": "https://t.co/JMeZgr4GxB", + "expanded_url": "http://junglistheavy.industries", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 1216, + "location": "Rotorua, New Zealand", + "screen_name": "fujin_", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 97, + "name": "\u98a8\u795e", + "profile_use_background_image": true, + "description": "\u6539\u5584\u795e\u69d8\u3001#devops grandmaster; original #getchef hacker-consult, #golang gopher \u0295\u25d4\u03d6\u25d4\u0294. drifter. multicopter pilot. \u2500\u2564\u2566 \u0280\u0258\u0251\u029f \u0288rap \u0282\u0266\u0268\u0287 \u2566\u2564\u2500", + "url": "https://t.co/JMeZgr4GxB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659125802768797696/3Wo6zINt_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Dec 23 23:14:05 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659125802768797696/3Wo6zINt_normal.jpg", + "favourites_count": 2024, + "status": { + "retweet_count": 27, + "retweeted_status": { + "retweet_count": 27, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685192040951353344", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/hashicorp/cons\u2026", + "url": "https://t.co/51taNPcBuy", + "expanded_url": "https://github.com/hashicorp/consul/blob/v0.6.1/CHANGELOG.md#061-january-6-2015", + "indices": [ + 81, + 104 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 20:11:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5eb20415c64640aa.json", + "country": "United States", + "attributes": {}, + "place_type": "neighborhood", + "bounding_box": { + "coordinates": [ + [ + [ + -118.4741578, + 33.9601689 + ], + [ + -118.4321992, + 33.9601689 + ], + [ + -118.4321992, + 33.98647 + ], + [ + -118.4741578, + 33.98647 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Marina del Rey, CA", + "id": "5eb20415c64640aa", + "name": "Marina del Rey" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685192040951353344, + "text": "Consul 0.6.1 is out. Easy drop-in upgrade with some nice fixes and improvements: https://t.co/51taNPcBuy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 28, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685192260321853440", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/hashicorp/cons\u2026", + "url": "https://t.co/51taNPcBuy", + "expanded_url": "https://github.com/hashicorp/consul/blob/v0.6.1/CHANGELOG.md#061-january-6-2015", + "indices": [ + 96, + 119 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mitchellh", + "id_str": "12819682", + "id": 12819682, + "indices": [ + 3, + 13 + ], + "name": "Mitchell Hashimoto" + } + ] + }, + "created_at": "Thu Jan 07 20:12:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685192260321853440, + "text": "RT @mitchellh: Consul 0.6.1 is out. Easy drop-in upgrade with some nice fixes and improvements: https://t.co/51taNPcBuy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18344890, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 15970, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18344890/1446369594", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "140011523", + "following": false, + "friends_count": 1619, + "entities": { + "description": { + "urls": [ + { + "display_url": "mytux.fr", + "url": "http://t.co/scCCuswavo", + "expanded_url": "http://www.mytux.fr", + "indices": [ + 29, + 51 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "about.me/carlchenet", + "url": "http://t.co/pJtCu9uXyw", + "expanded_url": "http://about.me/carlchenet", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2286, + "location": "", + "screen_name": "carl_chenet", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 227, + "name": "carlchenet", + "profile_use_background_image": true, + "description": "System architect, founder of http://t.co/scCCuswavo, Debian developer & Python addict. Wrote some articles about Free Software. Tea addict. Wine lover.", + "url": "http://t.co/pJtCu9uXyw", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2777592657/94d4bcbbb2e59b6849c75e6609851fb6_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue May 04 09:16:52 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2777592657/94d4bcbbb2e59b6849c75e6609851fb6_normal.png", + "favourites_count": 9, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685540484861825029", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "framablog.org/2016/01/08/app\u2026", + "url": "https://t.co/C7jW4nHIFU", + "expanded_url": "http://framablog.org/2016/01/08/apprenez-a-lire-une-url-et-sauvez-des-chatons/", + "indices": [ + 48, + 71 + ] + } + ], + "hashtags": [ + { + "indices": [ + 72, + 76 + ], + "text": "web" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:16:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "fr", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685540484861825029, + "text": "Apprenez \u00e0 lire une URL (et sauvez des chatons) https://t.co/C7jW4nHIFU #web", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "jdh-rss2twitter" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685544006810484737", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "framablog.org/2016/01/08/app\u2026", + "url": "https://t.co/C7jW4nHIFU", + "expanded_url": "http://framablog.org/2016/01/08/apprenez-a-lire-une-url-et-sauvez-des-chatons/", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [ + { + "indices": [ + 93, + 97 + ], + "text": "web" + } + ], + "user_mentions": [ + { + "screen_name": "journalduhacker", + "id_str": "3384441765", + "id": 3384441765, + "indices": [ + 3, + 19 + ], + "name": "Le Journal du Hacker" + } + ] + }, + "created_at": "Fri Jan 08 19:30:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "fr", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685544006810484737, + "text": "RT @journalduhacker: Apprenez \u00e0 lire une URL (et sauvez des chatons) https://t.co/C7jW4nHIFU #web", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "retweet-journalduhacker" + }, + "default_profile_image": false, + "id": 140011523, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4685, + "is_translator": false + }, + { + "time_zone": "Wellington", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 46800, + "id_str": "15657543", + "following": false, + "friends_count": 622, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theunfocused.net", + "url": "http://t.co/JzrNJJ1Hsd", + "expanded_url": "http://theunfocused.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629950290570010624/X-Ax-pjR.jpg", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "008004", + "geo_enabled": false, + "followers_count": 1454, + "location": "Dunedin, New Zealand", + "screen_name": "theunfocused", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 140, + "name": "Blair McBride", + "profile_use_background_image": true, + "description": "@Firefox developer, @JavaScript_NZ secretary, Dunedin Makerspace co-founder, @MozillaUbiquity dev, maker, pogonotrophist.", + "url": "http://t.co/JzrNJJ1Hsd", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2654776266/ba300eacc55f5978d68f1d9163053eaf_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Jul 30 07:04:18 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2654776266/ba300eacc55f5978d68f1d9163053eaf_normal.jpeg", + "favourites_count": 5958, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "_writehanded_", + "in_reply_to_user_id": 2974900693, + "in_reply_to_status_id_str": "685416129708208129", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685416660342157312", + "id": 685416660342157312, + "text": "@_writehanded_ @Styla73 @mellopuffy Good to know, thanks :) (especially given the price)", + "in_reply_to_user_id_str": "2974900693", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "_writehanded_", + "id_str": "2974900693", + "id": 2974900693, + "indices": [ + 0, + 14 + ], + "name": "Sarah Wilson" + }, + { + "screen_name": "Styla73", + "id_str": "19759124", + "id": 19759124, + "indices": [ + 15, + 23 + ], + "name": "Capital K" + }, + { + "screen_name": "mellopuffy", + "id_str": "18573621", + "id": 18573621, + "indices": [ + 24, + 35 + ], + "name": "Toe-tally Puffy" + } + ] + }, + "created_at": "Fri Jan 08 11:04:00 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685416129708208129, + "lang": "en" + }, + "default_profile_image": false, + "id": 15657543, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629950290570010624/X-Ax-pjR.jpg", + "statuses_count": 24660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15657543/1431324791", + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "46471184", + "following": false, + "friends_count": 437, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mateuskern.com/pages/contact.\u2026", + "url": "https://t.co/bthJxMONpL", + "expanded_url": "https://mateuskern.com/pages/contact.html", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/365330709/Balrog2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 547, + "location": "RS / Brasil", + "screen_name": "_k3rn", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Mateus Kern", + "profile_use_background_image": false, + "description": "Python, Linux, DevOps, vim, TV Series & Music.", + "url": "https://t.co/bthJxMONpL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650818520696115200/Dx91REOT_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Jun 11 19:43:37 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650818520696115200/Dx91REOT_normal.jpg", + "favourites_count": 1531, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "o_gobbi", + "in_reply_to_user_id": 109360625, + "in_reply_to_status_id_str": "685350275436122112", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685350812051202048", + "id": 685350812051202048, + "text": "@o_gobbi \u00e9 da arrecada\u00e7\u00e3o dos eua?", + "in_reply_to_user_id_str": "109360625", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "o_gobbi", + "id_str": "109360625", + "id": 109360625, + "indices": [ + 0, + 8 + ], + "name": "Gobbi" + } + ] + }, + "created_at": "Fri Jan 08 06:42:21 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685350275436122112, + "lang": "pt" + }, + "default_profile_image": false, + "id": 46471184, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/365330709/Balrog2.jpg", + "statuses_count": 40849, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/46471184/1379963279", + "is_translator": false + }, + { + "time_zone": "New Delhi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "105083", + "following": false, + "friends_count": 1505, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "vamsee.in", + "url": "http://t.co/3aYyV5kxNM", + "expanded_url": "http://vamsee.in", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 1112, + "location": "Bangalore, India", + "screen_name": "vamsee", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "name": "Vamsee Kanakala", + "profile_use_background_image": true, + "description": "Rails dev turned devops guy @viamentis. Believe in open source and open web. Also a godless, bleeding-heart liberal :-)", + "url": "http://t.co/3aYyV5kxNM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/653422115807367168/iLpECAF7_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Thu Dec 21 10:45:38 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/653422115807367168/iLpECAF7_normal.jpg", + "favourites_count": 3199, + "status": { + "retweet_count": 1831, + "retweeted_status": { + "retweet_count": 1831, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685484472498798592", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "type": "photo", + "indices": [ + 117, + 140 + ], + "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "display_url": "pic.twitter.com/TMcevQeAVA", + "id_str": "685484471227953152", + "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", + "id": 685484471227953152, + "url": "https://t.co/TMcevQeAVA" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:33:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685484472498798592, + "text": "This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https://t.co/TMcevQeAVA", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1984, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685506749911048193", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 602, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "source_status_id_str": "685484472498798592", + "url": "https://t.co/TMcevQeAVA", + "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "source_user_id_str": "119043148", + "id_str": "685484471227953152", + "id": 685484471227953152, + "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685484472498798592, + "source_user_id": 119043148, + "display_url": "pic.twitter.com/TMcevQeAVA", + "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lukekarmali", + "id_str": "119043148", + "id": 119043148, + "indices": [ + 3, + 15 + ], + "name": "Luke Karmali" + } + ] + }, + "created_at": "Fri Jan 08 17:01:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685506749911048193, + "text": "RT @lukekarmali: This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 105083, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 12050, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/105083/1353319858", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1613642678", + "following": false, + "friends_count": 313, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "grubernaut.com", + "url": "http://t.co/mgIollH58E", + "expanded_url": "http://grubernaut.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 433, + "location": "Small Town, USA ", + "screen_name": "grubernaut", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 36, + "name": "MarriedBiscuits", + "profile_use_background_image": true, + "description": "Kaizen \u6539\u5584, Husband, Padawan, Ops, Gearhead, and Pancake Enthusiast. Constant adventures with @kaiteddelman", + "url": "http://t.co/mgIollH58E", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682275076964618240/5BDp8AL2_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 22 20:53:57 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682275076964618240/5BDp8AL2_normal.jpg", + "favourites_count": 6247, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597488783347712", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 175, + "resize": "fit" + }, + "medium": { + "w": 434, + "h": 224, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 434, + "h": 224, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYO7SC8UoAECN8u.png", + "type": "photo", + "indices": [ + 30, + 53 + ], + "media_url": "http://pbs.twimg.com/media/CYO7SC8UoAECN8u.png", + "display_url": "pic.twitter.com/Q1G4ZO7kh1", + "id_str": "685597486992367617", + "expanded_url": "http://twitter.com/grubernaut/status/685597488783347712/photo/1", + "id": 685597486992367617, + "url": "https://t.co/Q1G4ZO7kh1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:02:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/49f0a5eb038077e9.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -85.996969, + 39.163203 + ], + [ + -85.847755, + 39.163203 + ], + [ + -85.847755, + 39.25966 + ], + [ + -85.996969, + 39.25966 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Columbus, IN", + "id": "49f0a5eb038077e9", + "name": "Columbus" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597488783347712, + "text": "Hashicorp emoji game on point https://t.co/Q1G4ZO7kh1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 1613642678, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10511, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1613642678/1406162904", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6509982", + "following": false, + "friends_count": 669, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000114307961/d36a958842daa7a4328147beb87ff328.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 32132, + "location": "san francisco", + "screen_name": "argv0", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 233, + "name": "Andy Gross", + "profile_use_background_image": true, + "description": "Author of Riak. Distsys ne'er-do-well. Problematic half of @sarahelliott77", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685155270880661504/hkudG0_z_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Jun 01 20:37:52 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685155270880661504/hkudG0_z_normal.jpg", + "favourites_count": 5587, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685029425507745792", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "huffingtonpost.com/rene-zografos/\u2026", + "url": "https://t.co/7c336Q55ym", + "expanded_url": "http://www.huffingtonpost.com/rene-zografos/where-is-the-american-gen_b_8920660.html", + "indices": [ + 79, + 102 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "HuffPostWomen", + "id_str": "309978842", + "id": 309978842, + "indices": [ + 107, + 121 + ], + "name": "HuffPostWomen" + } + ] + }, + "created_at": "Thu Jan 07 09:25:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685029425507745792, + "text": "lol what the christ is this please explain????Where is The American Gentlemen? https://t.co/7c336Q55ym via @HuffPostWomen", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Mobile Web" + }, + "default_profile_image": false, + "id": 6509982, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000114307961/d36a958842daa7a4328147beb87ff328.jpeg", + "statuses_count": 14388, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6509982/1451356105", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "14264091", + "following": false, + "friends_count": 2169, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tylerhannan.com", + "url": "http://t.co/TG1LgO1z9s", + "expanded_url": "http://www.tylerhannan.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 2050, + "location": "iPhone: 33.769097,-84.385343", + "screen_name": "tylerhannan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 59, + "name": "tylerhannan", + "profile_use_background_image": true, + "description": "Distributed Systems. Music. Director of Product Marketing @elastic", + "url": "http://t.co/TG1LgO1z9s", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/425400933661425664/NtI67zqz_normal.jpeg", + "profile_background_color": "EBEBEB", + "created_at": "Mon Mar 31 06:41:41 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/425400933661425664/NtI67zqz_normal.jpeg", + "favourites_count": 4025, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/7d62cffe6f98f349.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.035311, + 37.193164 + ], + [ + -121.71215, + 37.193164 + ], + [ + -121.71215, + 37.469154 + ], + [ + -122.035311, + 37.469154 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Jose, CA", + "id": "7d62cffe6f98f349", + "name": "San Jose" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685191303403945984", + "id": 685191303403945984, + "text": "OH in the airport customer service line: \u201cif we aren\u2019t pitching we aren\u2019t winning\u201d Fellow then, actually said, \u201calways be closing\u201d", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 20:08:31 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14264091, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 11875, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14264091/1366581436", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "8630562", + "following": false, + "friends_count": 1268, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "quora.com/ben-newman", + "url": "http://t.co/cKjvwVK6NJ", + "expanded_url": "http://quora.com/ben-newman", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 2021, + "location": "iPhone: 37.420708,-122.168798", + "screen_name": "benjamn", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 107, + "name": "Ben Newman", + "profile_use_background_image": true, + "description": "Recovering sarcast, aspiring ironist. Meebo, Apture, Mozilla, Quora, Facebook/Instagram, and Meteor have employed me.", + "url": "http://t.co/cKjvwVK6NJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458793879831977984/pNj9Au1N_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Mon Sep 03 20:27:48 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458793879831977984/pNj9Au1N_normal.jpeg", + "favourites_count": 1725, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685201161134170116", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 510, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 900, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 1126, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJS00QWAAAKURz.png", + "type": "photo", + "indices": [ + 74, + 97 + ], + "media_url": "http://pbs.twimg.com/media/CYJS00QWAAAKURz.png", + "display_url": "pic.twitter.com/fCVZThFMMT", + "id_str": "685201160647606272", + "expanded_url": "http://twitter.com/SteveMoraco/status/685201161134170116/photo/1", + "id": 685201160647606272, + "url": "https://t.co/fCVZThFMMT" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "medium.com/@girlziplocked\u2026", + "url": "https://t.co/YQN5mOGLBJ", + "expanded_url": "https://medium.com/@girlziplocked/paul-graham-is-still-asking-to-be-eaten-5f021c0c0650#---0-170.dwl3k5g6c", + "indices": [ + 50, + 73 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "girlziplocked", + "id_str": "20221325", + "id": 20221325, + "indices": [ + 35, + 49 + ], + "name": "holly wood" + } + ] + }, + "created_at": "Thu Jan 07 20:47:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685201161134170116, + "text": "This article is \ud83d\udd25\ud83d\udd25\ud83d\udd25 read it now.\u200a\u2014\u200a@girlziplocked https://t.co/YQN5mOGLBJ https://t.co/fCVZThFMMT", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Medium" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685201605772328960", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 510, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 900, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 750, + "h": 1126, + "resize": "fit" + } + }, + "source_status_id_str": "685201161134170116", + "url": "https://t.co/fCVZThFMMT", + "media_url": "http://pbs.twimg.com/media/CYJS00QWAAAKURz.png", + "source_user_id_str": "8238522", + "id_str": "685201160647606272", + "id": 685201160647606272, + "media_url_https": "https://pbs.twimg.com/media/CYJS00QWAAAKURz.png", + "type": "photo", + "indices": [ + 91, + 114 + ], + "source_status_id": 685201161134170116, + "source_user_id": 8238522, + "display_url": "pic.twitter.com/fCVZThFMMT", + "expanded_url": "http://twitter.com/SteveMoraco/status/685201161134170116/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "medium.com/@girlziplocked\u2026", + "url": "https://t.co/YQN5mOGLBJ", + "expanded_url": "https://medium.com/@girlziplocked/paul-graham-is-still-asking-to-be-eaten-5f021c0c0650#---0-170.dwl3k5g6c", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SteveMoraco", + "id_str": "8238522", + "id": 8238522, + "indices": [ + 3, + 15 + ], + "name": "Steve Moraco" + }, + { + "screen_name": "girlziplocked", + "id_str": "20221325", + "id": 20221325, + "indices": [ + 52, + 66 + ], + "name": "holly wood" + } + ] + }, + "created_at": "Thu Jan 07 20:49:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685201605772328960, + "text": "RT @SteveMoraco: This article is \ud83d\udd25\ud83d\udd25\ud83d\udd25 read it now.\u200a\u2014\u200a@girlziplocked https://t.co/YQN5mOGLBJ https://t.co/fCVZThFMMT", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 8630562, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 5482, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8630562/1398219833", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "23000562", + "following": false, + "friends_count": 603, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 690, + "location": "Chicagoland", + "screen_name": "mleinart", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "Michael Leinartas", + "profile_use_background_image": true, + "description": "Tinkerer; I like to take things apart.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1706485416/IMG_20111218_092724_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 05 23:55:38 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1706485416/IMG_20111218_092724_normal.jpg", + "favourites_count": 8757, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 15374401, + "possibly_sensitive": false, + "id_str": "685576170004299776", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/tkDcxANsZz", + "url": "https://t.co/tkDcxANsZz", + "expanded_url": "http://twitter.com/mleinart/status/685576170004299776/photo/1", + "indices": [ + 58, + 81 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "esten", + "id_str": "15374401", + "id": 15374401, + "indices": [ + 0, + 6 + ], + "name": "Este\u00f1 Americanus" + } + ] + }, + "created_at": "Fri Jan 08 21:37:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "15374401", + "place": null, + "in_reply_to_screen_name": "esten", + "in_reply_to_status_id_str": "685575402564096004", + "truncated": false, + "id": 685576170004299776, + "text": "@esten you need a New Yorker to say that properly for you https://t.co/tkDcxANsZz", + "coordinates": null, + "in_reply_to_status_id": 685575402564096004, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 23000562, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10348, + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "58663169", + "following": false, + "friends_count": 279, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "1E2224", + "geo_enabled": true, + "followers_count": 133, + "location": "Seattle WA", + "screen_name": "jeffraffo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Jeff Raffo", + "profile_use_background_image": true, + "description": "Passionate about lean principles in technology, automation, open source and being a dad. director - personalization technology @ nordstrom", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/612109224143753216/ARoM66lQ_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jul 21 01:42:20 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/612109224143753216/ARoM66lQ_normal.jpg", + "favourites_count": 1016, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "dougireton", + "in_reply_to_user_id": 7894852, + "in_reply_to_status_id_str": "685254065572298753", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685543360942047233", + "id": 685543360942047233, + "text": "@dougireton I'm owning the hug in 2016! #vulnerability #comfortablewithmyself", + "in_reply_to_user_id_str": "7894852", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 40, + 54 + ], + "text": "vulnerability" + }, + { + "indices": [ + 55, + 77 + ], + "text": "comfortablewithmyself" + } + ], + "user_mentions": [ + { + "screen_name": "dougireton", + "id_str": "7894852", + "id": 7894852, + "indices": [ + 0, + 11 + ], + "name": "Doug Ireton" + } + ] + }, + "created_at": "Fri Jan 08 19:27:28 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685254065572298753, + "lang": "en" + }, + "default_profile_image": false, + "id": 58663169, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 495, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/58663169/1398401815", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "35213", + "following": false, + "friends_count": 1075, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "shawn.medero.net", + "url": "http://t.co/8Dn7SAHC1W", + "expanded_url": "http://shawn.medero.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/65220225/patt_4b47c3685cc0d.jpg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E8E8E8", + "profile_link_color": "CC3300", + "geo_enabled": true, + "followers_count": 572, + "location": "Claremont, CA", + "screen_name": "soypunk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "Shawn Medero", + "profile_use_background_image": false, + "description": "When not bicycling with my family, I'm a solutions architect in higher education. Interested in user experience, web archeology, hockey, and vegan food.", + "url": "http://t.co/8Dn7SAHC1W", + "profile_text_color": "212121", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684080455679774720/gGS_61YC_normal.jpg", + "profile_background_color": "303030", + "created_at": "Fri Dec 01 23:33:16 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D3D3", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684080455679774720/gGS_61YC_normal.jpg", + "favourites_count": 13564, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/dbd7fea9eedaecd0.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -117.7508068, + 34.0794765 + ], + [ + -117.6815385, + 34.0794765 + ], + [ + -117.6815385, + 34.1585563 + ], + [ + -117.7508068, + 34.1585563 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Claremont, CA", + "id": "dbd7fea9eedaecd0", + "name": "Claremont" + }, + "in_reply_to_screen_name": "kristimarleau", + "in_reply_to_user_id": 550444722, + "in_reply_to_status_id_str": "685536272459239424", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685536778464305152", + "id": 685536778464305152, + "text": "@kristimarleau Reply All is a great show btw, you should give some of the archives a chance.", + "in_reply_to_user_id_str": "550444722", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kristimarleau", + "id_str": "550444722", + "id": 550444722, + "indices": [ + 0, + 14 + ], + "name": "Kristi Marleau" + } + ] + }, + "created_at": "Fri Jan 08 19:01:19 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685536272459239424, + "lang": "en" + }, + "default_profile_image": false, + "id": 35213, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/65220225/patt_4b47c3685cc0d.jpg.jpg", + "statuses_count": 13400, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35213/1397163361", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "17954385", + "following": false, + "friends_count": 799, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "clintweathers.com", + "url": "http://t.co/PMWUQpP7Ri", + "expanded_url": "http://clintweathers.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": true, + "followers_count": 661, + "location": "MSP", + "screen_name": "zenrhino", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 120, + "name": "Clint Weathers", + "profile_use_background_image": true, + "description": "I use #rstats and #pydata to fight fraud. +100kg Judo player with a mean tai otoshi. Hasselblad + TriX + Rodinal. Full-stack baker.", + "url": "http://t.co/PMWUQpP7Ri", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/679575511354478592/66QphBZB_normal.jpg", + "profile_background_color": "709397", + "created_at": "Mon Dec 08 03:07:23 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/679575511354478592/66QphBZB_normal.jpg", + "favourites_count": 6700, + "status": { + "retweet_count": 36, + "retweeted_status": { + "retweet_count": 36, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685575365180309505", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/USSJoin/status\u2026", + "url": "https://t.co/un9Oa5lUzq", + "expanded_url": "https://twitter.com/USSJoin/status/685567709342347264", + "indices": [ + 101, + 124 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:34:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685575365180309505, + "text": "sorry everyone, 2016 is over. the most ironic data leak trophy is already taken. you can go home now https://t.co/un9Oa5lUzq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 37, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685575505790173184", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/USSJoin/status\u2026", + "url": "https://t.co/un9Oa5lUzq", + "expanded_url": "https://twitter.com/USSJoin/status/685567709342347264", + "indices": [ + 119, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "FioraAeterna", + "id_str": "2468699718", + "id": 2468699718, + "indices": [ + 3, + 16 + ], + "name": "Fiora Aeterna \u2604" + } + ] + }, + "created_at": "Fri Jan 08 21:35:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685575505790173184, + "text": "RT @FioraAeterna: sorry everyone, 2016 is over. the most ironic data leak trophy is already taken. you can go home now https://t.co/un9Oa5l\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 17954385, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 32454, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17954385/1390323077", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "457893808", + "following": false, + "friends_count": 701, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": false, + "followers_count": 217, + "location": "Orange County, CA", + "screen_name": "bobbylikeslinux", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "bobby", + "profile_use_background_image": false, + "description": "Exploring the world of open source software, Python, Brazilian Jiu Jitsu, and making computers actually work for people again!", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674131539051982848/9VYAvrwT_normal.png", + "profile_background_color": "000000", + "created_at": "Sat Jan 07 23:17:20 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674131539051982848/9VYAvrwT_normal.png", + "favourites_count": 3071, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "joerogan", + "in_reply_to_user_id": 18208354, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685565662039703552", + "id": 685565662039703552, + "text": "@joerogan First live show last night. I loved the whole lineup at the @icehousecomedy", + "in_reply_to_user_id_str": "18208354", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "joerogan", + "id_str": "18208354", + "id": 18208354, + "indices": [ + 0, + 9 + ], + "name": "Joe Rogan" + }, + { + "screen_name": "icehousecomedy", + "id_str": "57833012", + "id": 57833012, + "indices": [ + 71, + 86 + ], + "name": "Ice House Comedy" + } + ] + }, + "created_at": "Fri Jan 08 20:56:05 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 457893808, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2831, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/457893808/1426654010", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15146957", + "following": false, + "friends_count": 306, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "spof.io", + "url": "https://t.co/IpKruWlg7y", + "expanded_url": "https://spof.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "666666", + "geo_enabled": true, + "followers_count": 491, + "location": "California", + "screen_name": "dontrebootme", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 36, + "name": "Patrick O'Connor", + "profile_use_background_image": false, + "description": "Systems Engineering in the LA area. \nShipping awesome experiences at Disney.\n\nCurrently Imagineering R&D.\nPreviously rendering and systems at DreamWorks.", + "url": "https://t.co/IpKruWlg7y", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677265112579702785/1-oDaeyG_normal.png", + "profile_background_color": "000000", + "created_at": "Tue Jun 17 15:48:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677265112579702785/1-oDaeyG_normal.png", + "favourites_count": 3087, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685581921057959936", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 811, + "h": 1000, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 739, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 419, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", + "type": "photo", + "indices": [ + 120, + 143 + ], + "media_url": "http://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", + "display_url": "pic.twitter.com/m2yLVcADLG", + "id_str": "685581920940482562", + "expanded_url": "http://twitter.com/hackadayio/status/685581921057959936/photo/1", + "id": 685581920940482562, + "url": "https://t.co/m2yLVcADLG" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1OyXMls", + "url": "https://t.co/wNwkHUk2KM", + "expanded_url": "http://bit.ly/1OyXMls", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "socallinuxexpo", + "id_str": "14120402", + "id": 14120402, + "indices": [ + 38, + 53 + ], + "name": "socallinuxexpo" + }, + { + "screen_name": "SupplyFrame", + "id_str": "16933617", + "id": 16933617, + "indices": [ + 106, + 118 + ], + "name": "SupplyFrame, Inc." + } + ] + }, + "created_at": "Fri Jan 08 22:00:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685581921057959936, + "text": "Play games & party w/ Hackaday at @SoCalLinuxExpo Game Night 23rd Jan. https://t.co/wNwkHUk2KM Thanks @SupplyFrame! https://t.co/m2yLVcADLG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Meet Edgar" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685582321299279872", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 811, + "h": 1000, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 739, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 419, + "resize": "fit" + } + }, + "source_status_id_str": "685581921057959936", + "url": "https://t.co/m2yLVcADLG", + "media_url": "http://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", + "source_user_id_str": "2670064278", + "id_str": "685581920940482562", + "id": 685581920940482562, + "media_url_https": "https://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", + "type": "photo", + "indices": [ + 143, + 144 + ], + "source_status_id": 685581921057959936, + "source_user_id": 2670064278, + "display_url": "pic.twitter.com/m2yLVcADLG", + "expanded_url": "http://twitter.com/hackadayio/status/685581921057959936/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1OyXMls", + "url": "https://t.co/wNwkHUk2KM", + "expanded_url": "http://bit.ly/1OyXMls", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "hackadayio", + "id_str": "2670064278", + "id": 2670064278, + "indices": [ + 3, + 14 + ], + "name": "Hackaday.io" + }, + { + "screen_name": "socallinuxexpo", + "id_str": "14120402", + "id": 14120402, + "indices": [ + 54, + 69 + ], + "name": "socallinuxexpo" + }, + { + "screen_name": "SupplyFrame", + "id_str": "16933617", + "id": 16933617, + "indices": [ + 122, + 134 + ], + "name": "SupplyFrame, Inc." + } + ] + }, + "created_at": "Fri Jan 08 22:02:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685582321299279872, + "text": "RT @hackadayio: Play games & party w/ Hackaday at @SoCalLinuxExpo Game Night 23rd Jan. https://t.co/wNwkHUk2KM Thanks @SupplyFrame! https:/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 15146957, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 2470, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15146957/1450313349", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8084512", + "following": false, + "friends_count": 971, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nymag.com", + "url": "https://t.co/h3Ulh5oQm9", + "expanded_url": "http://nymag.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/735772534/9495f1433a2b072c10c1a668313df0fe.png", + "notifications": false, + "profile_sidebar_fill_color": "E2FF9E", + "profile_link_color": "419EC9", + "geo_enabled": false, + "followers_count": 1655, + "location": "Brooklyn, NY", + "screen_name": "gloddy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 80, + "name": "Christian Gloddy", + "profile_use_background_image": true, + "description": "Director of Web Dev @NYMag. Optimist. Love node.js, gulp, responsive design, web standards, and kind people.", + "url": "https://t.co/h3Ulh5oQm9", + "profile_text_color": "9ED54C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671729014831099905/0REgQMKF_normal.jpg", + "profile_background_color": "8F9699", + "created_at": "Thu Aug 09 17:02:35 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671729014831099905/0REgQMKF_normal.jpg", + "favourites_count": 6712, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685456563767775232", + "id": 685456563767775232, + "text": "If your version of \"Agile\" involves long meetings, then you might want to find a different word to describe what you're doing.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 13:42:34 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 7, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 8084512, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/735772534/9495f1433a2b072c10c1a668313df0fe.png", + "statuses_count": 2641, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8084512/1442231967", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8820492", + "following": false, + "friends_count": 863, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "joshfinnie.com", + "url": "http://t.co/GbqqdUdYyo", + "expanded_url": "http://www.joshfinnie.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/670653368/4ebce690a626c7c92811b413c83ce474.gif", + "notifications": false, + "profile_sidebar_fill_color": "F9D762", + "profile_link_color": "DB5151", + "geo_enabled": true, + "followers_count": 1459, + "location": "Washington DC", + "screen_name": "joshfinnie", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 89, + "name": "Josh Finnie", + "profile_use_background_image": true, + "description": "Software Maven at @TrackMaven, creator of @BeerLedge. Interests: #Javascript (#Angular, #Node), #Python (#Django, #Pyramid)", + "url": "http://t.co/GbqqdUdYyo", + "profile_text_color": "C5BE71", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1867634130/josh-final_normal.jpg", + "profile_background_color": "EDFDCC", + "created_at": "Tue Sep 11 22:10:25 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1867634130/josh-final_normal.jpg", + "favourites_count": 638, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685568488010825728", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "beerledge.com/ledges/CciZ2Ga\u2026", + "url": "https://t.co/1Z1fRNFEUU", + "expanded_url": "https://www.beerledge.com/ledges/CciZ2GafqvuGHnZkx4HmhP", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "EvilGeniusBeer", + "id_str": "150438189", + "id": 150438189, + "indices": [ + 34, + 49 + ], + "name": "Evil Genius Beer Co." + }, + { + "screen_name": "beerledge", + "id_str": "174866293", + "id": 174866293, + "indices": [ + 68, + 78 + ], + "name": "Beer Ledge" + } + ] + }, + "created_at": "Fri Jan 08 21:07:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685568488010825728, + "text": "Drank a Evil Genius Beer Company (@evilgeniusbeer) Evil Eye PA. Via @beerledge. https://t.co/1Z1fRNFEUU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "BeerLedgeV2" + }, + "default_profile_image": false, + "id": 8820492, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/670653368/4ebce690a626c7c92811b413c83ce474.gif", + "statuses_count": 19349, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8820492/1398795982", + "is_translator": false + }, + { + "time_zone": "Lisbon", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "200749589", + "following": false, + "friends_count": 351, + "entities": { + "description": { + "urls": [ + { + "display_url": "ipn.io", + "url": "https://t.co/yreM5xC4PE", + "expanded_url": "http://ipn.io", + "indices": [ + 24, + 47 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "daviddias.me", + "url": "https://t.co/JTVkZvLXKc", + "expanded_url": "http://daviddias.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 1441, + "location": "Portugal", + "screen_name": "daviddias", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 58, + "name": "David Dias", + "profile_use_background_image": true, + "description": "P2P SE at Protocol Labs https://t.co/yreM5xC4PE : #IPFS & @filecoin. P2P MSc. Made @lxjs & @startupscholars", + "url": "https://t.co/JTVkZvLXKc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/483942490517807104/Wd8QaL3l_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Sun Oct 10 04:07:38 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/483942490517807104/Wd8QaL3l_normal.jpeg", + "favourites_count": 3182, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684526318961201152", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/feross/status/\u2026", + "url": "https://t.co/01Aoplvsxe", + "expanded_url": "https://twitter.com/feross/status/684525552091459584", + "indices": [ + 118, + 141 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 00:06:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684526318961201152, + "text": "WebTorrent and Peerflix are probably the fastest torrent clients in existence.\n\nMagnet links find peers in <1 sec. https://t.co/01Aoplvsxe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 18, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684544934817456133", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/feross/status/\u2026", + "url": "https://t.co/01Aoplvsxe", + "expanded_url": "https://twitter.com/feross/status/684525552091459584", + "indices": [ + 142, + 143 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "WebTorrentApp", + "id_str": "3231905569", + "id": 3231905569, + "indices": [ + 3, + 17 + ], + "name": "WebTorrent" + } + ] + }, + "created_at": "Wed Jan 06 01:20:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684544934817456133, + "text": "RT @WebTorrentApp: WebTorrent and Peerflix are probably the fastest torrent clients in existence.\n\nMagnet links find peers in <1 sec. https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 200749589, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 3878, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/200749589/1409036234", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "196082293", + "following": false, + "friends_count": 1095, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mikespeegle.com", + "url": "http://t.co/xdukoWcWQp", + "expanded_url": "http://www.mikespeegle.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 1552, + "location": "Kennwick, WA", + "screen_name": "Mike_Speegle", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 70, + "name": "Mike Speegle", + "profile_use_background_image": false, + "description": "Author. Playwright. Kirkus Indie Book of the Year, Something Greater than Artifice. Jukebox musical, Guns of Ireland. Repped by @leonhusock. Likes toast.", + "url": "http://t.co/xdukoWcWQp", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/627225288452145153/zQ2JEgRz_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Sep 28 08:41:51 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/627225288452145153/zQ2JEgRz_normal.jpg", + "favourites_count": 2313, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "_Shannon_Knight", + "in_reply_to_user_id": 3188997517, + "in_reply_to_status_id_str": "685573435431333888", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685589638157742081", + "id": 685589638157742081, + "text": "@_shannon_knight Ha! Well I\u2019m just 1/3 the production team, but I appreciate the props.", + "in_reply_to_user_id_str": "3188997517", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "_Shannon_Knight", + "id_str": "3188997517", + "id": 3188997517, + "indices": [ + 0, + 16 + ], + "name": "Shannon Knight" + } + ] + }, + "created_at": "Fri Jan 08 22:31:22 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685573435431333888, + "lang": "en" + }, + "default_profile_image": false, + "id": 196082293, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 10295, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/196082293/1434391956", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "407296703", + "following": false, + "friends_count": 792, + "entities": { + "description": { + "urls": [ + { + "display_url": "soundcloud.com/benmichelmusic", + "url": "https://t.co/BWrMpb89KY", + "expanded_url": "http://soundcloud.com/benmichelmusic", + "indices": [ + 97, + 120 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/449685667832811520/htR5S1-H.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "46757F", + "geo_enabled": false, + "followers_count": 611, + "location": "Portland, OR", + "screen_name": "obensource", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 36, + "name": "Ben Michel", + "profile_use_background_image": true, + "description": "Musician\u2013Developer. I curate & perform musical experiences for live events & recordings, listen: https://t.co/BWrMpb89KY", + "url": null, + "profile_text_color": "FFFFFF", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/560338263890612224/SDEpGo5s_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Nov 07 22:14:02 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/560338263890612224/SDEpGo5s_normal.jpeg", + "favourites_count": 7062, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "davidlymanning", + "in_reply_to_user_id": 310674727, + "in_reply_to_status_id_str": "685523459984588800", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685530039450914816", + "id": 685530039450914816, + "text": "@davidlymanning @HenrikJoreteg hard to say because in-roads and accessibility to becoming an artisan later on greatly enrich people's lives.", + "in_reply_to_user_id_str": "310674727", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "davidlymanning", + "id_str": "310674727", + "id": 310674727, + "indices": [ + 0, + 15 + ], + "name": "David Manning" + }, + { + "screen_name": "HenrikJoreteg", + "id_str": "15102110", + "id": 15102110, + "indices": [ + 16, + 30 + ], + "name": "Henrik Joreteg" + } + ] + }, + "created_at": "Fri Jan 08 18:34:32 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685523459984588800, + "lang": "en" + }, + "default_profile_image": false, + "id": 407296703, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/449685667832811520/htR5S1-H.png", + "statuses_count": 3111, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/407296703/1394863631", + "is_translator": false + }, + { + "time_zone": "Warsaw", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "42864649", + "following": false, + "friends_count": 331, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thefox.is", + "url": "https://t.co/wKJ9u67ov4", + "expanded_url": "http://thefox.is", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/197733467/bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F5F5F5", + "profile_link_color": "C03546", + "geo_enabled": true, + "followers_count": 7814, + "location": "Melbourne, Victoria", + "screen_name": "fox", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 420, + "name": "fantastic ms.", + "profile_use_background_image": false, + "description": "\u21161 inclusivity and empathy enthusiast, diversity advisor \u273b Co-running @jsconfeu, past @cssconfoak. Product, photography and \u2764\ufe0f for @benschwarz.", + "url": "https://t.co/wKJ9u67ov4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668345269424099328/v0f_IJZz_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed May 27 11:48:42 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668345269424099328/v0f_IJZz_normal.png", + "favourites_count": 1506, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "olasitarska", + "in_reply_to_user_id": 32315020, + "in_reply_to_status_id_str": "685461632965840896", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685581334023024640", + "id": 685581334023024640, + "text": "@olasitarska \u2014 @xoxo and @buildconf", + "in_reply_to_user_id_str": "32315020", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "olasitarska", + "id_str": "32315020", + "id": 32315020, + "indices": [ + 0, + 12 + ], + "name": "Ola Sitarska" + }, + { + "screen_name": "xoxo", + "id_str": "516875194", + "id": 516875194, + "indices": [ + 15, + 20 + ], + "name": "XOXO" + }, + { + "screen_name": "buildconf", + "id_str": "16601823", + "id": 16601823, + "indices": [ + 25, + 35 + ], + "name": "Build" + } + ] + }, + "created_at": "Fri Jan 08 21:58:22 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685461632965840896, + "lang": "und" + }, + "default_profile_image": false, + "id": 42864649, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/197733467/bg.jpg", + "statuses_count": 14763, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/42864649/1448180980", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "346026614", + "following": false, + "friends_count": 44, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hueniverse.com", + "url": "http://t.co/EoJhrhmss4", + "expanded_url": "http://hueniverse.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "505050", + "geo_enabled": false, + "followers_count": 5860, + "location": "Los Gatos, CA", + "screen_name": "eranhammer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 262, + "name": "Eran Hammer", + "profile_use_background_image": false, + "description": "Life experiences collector. @sideway founder, @hapijs creator. Former farmer and emu wrangler. My husband @DadOfTwinzLG is better than yours. eran@hammer.io", + "url": "http://t.co/EoJhrhmss4", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631361295015526400/YV8fcPYM_normal.png", + "profile_background_color": "000000", + "created_at": "Sun Jul 31 16:05:54 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631361295015526400/YV8fcPYM_normal.png", + "favourites_count": 1057, + "status": { + "retweet_count": 22, + "retweeted_status": { + "retweet_count": 22, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685177589254598656", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 427, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", + "type": "photo", + "indices": [ + 100, + 123 + ], + "media_url": "http://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", + "display_url": "pic.twitter.com/00NnlVFIDE", + "id_str": "685177589128810496", + "expanded_url": "http://twitter.com/nodejs/status/685177589254598656/photo/1", + "id": 685177589128810496, + "url": "https://t.co/00NnlVFIDE" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/members\u2026", + "url": "https://t.co/sxuXulYAXx", + "expanded_url": "https://github.com/nodejs/membership/issues/12", + "indices": [ + 76, + 99 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 19:14:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685177589254598656, + "text": "Nominations to join our Board of Directors ends January 15! You interested? https://t.co/sxuXulYAXx https://t.co/00NnlVFIDE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 28, + "contributors": null, + "source": "Sprout Social" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685198395917512704", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 427, + "resize": "fit" + } + }, + "source_status_id_str": "685177589254598656", + "url": "https://t.co/00NnlVFIDE", + "media_url": "http://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", + "source_user_id_str": "91985735", + "id_str": "685177589128810496", + "id": 685177589128810496, + "media_url_https": "https://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", + "type": "photo", + "indices": [ + 112, + 135 + ], + "source_status_id": 685177589254598656, + "source_user_id": 91985735, + "display_url": "pic.twitter.com/00NnlVFIDE", + "expanded_url": "http://twitter.com/nodejs/status/685177589254598656/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/members\u2026", + "url": "https://t.co/sxuXulYAXx", + "expanded_url": "https://github.com/nodejs/membership/issues/12", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nodejs", + "id_str": "91985735", + "id": 91985735, + "indices": [ + 3, + 10 + ], + "name": "Node.js" + } + ] + }, + "created_at": "Thu Jan 07 20:36:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685198395917512704, + "text": "RT @nodejs: Nominations to join our Board of Directors ends January 15! You interested? https://t.co/sxuXulYAXx https://t.co/00NnlVFIDE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 346026614, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 5727, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/346026614/1438570099", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "91985735", + "following": false, + "friends_count": 209, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nodejs.org", + "url": "https://t.co/X32n3a0B1h", + "expanded_url": "http://nodejs.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 305316, + "location": "Earth", + "screen_name": "nodejs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4787, + "name": "Node.js", + "profile_use_background_image": true, + "description": "The Node.js JavaScript Runtime", + "url": "https://t.co/X32n3a0B1h", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494226256276123648/GWnVTc9j_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 23 10:57:50 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494226256276123648/GWnVTc9j_normal.png", + "favourites_count": 182, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "danielnwilliams", + "in_reply_to_user_id": 398846571, + "in_reply_to_status_id_str": "685557569256091648", + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685561277364723713", + "id": 685561277364723713, + "text": "@danielnwilliams @ktrott00 good catch. Netflix streams 100 million+ hrs of video/day :)", + "in_reply_to_user_id_str": "398846571", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "danielnwilliams", + "id_str": "398846571", + "id": 398846571, + "indices": [ + 0, + 16 + ], + "name": "Daniel Williams" + }, + { + "screen_name": "ktrott00", + "id_str": "16898833", + "id": 16898833, + "indices": [ + 17, + 26 + ], + "name": "Kim Trott" + } + ] + }, + "created_at": "Fri Jan 08 20:38:40 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685557569256091648, + "lang": "en" + }, + "default_profile_image": false, + "id": 91985735, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2172, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/91985735/1406667709", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1126476188", + "following": false, + "friends_count": 1507, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ansible.com", + "url": "http://t.co/Yu5etG6UZX", + "expanded_url": "http://www.ansible.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 15787, + "location": "", + "screen_name": "ansible", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 545, + "name": "Ansible", + "profile_use_background_image": true, + "description": "Ansible is the simplest way to automate apps and infrastructure. Application Deployment + Configuration Management + Continuous Delivery.", + "url": "http://t.co/Yu5etG6UZX", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/428287509047435264/ElOjna20_normal.png", + "profile_background_color": "131516", + "created_at": "Sun Jan 27 23:16:48 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/428287509047435264/ElOjna20_normal.png", + "favourites_count": 2535, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612959226310656", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "hubs.ly/H01LcJ20", + "url": "https://t.co/3SUh5gtU60", + "expanded_url": "http://hubs.ly/H01LcJ20", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:04:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612959226310656, + "text": "Don't miss the Seattle Ansible Meetup on January 12th https://t.co/3SUh5gtU60", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "HubSpot" + }, + "default_profile_image": false, + "id": 1126476188, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 7209, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1126476188/1449349061", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14878068", + "following": false, + "friends_count": 760, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyet.com/team/baldwin", + "url": "https://t.co/xF4ndOjEu2", + "expanded_url": "https://andyet.com/team/baldwin", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 3436, + "location": "Tri-Cities, WA", + "screen_name": "adam_baldwin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 200, + "name": "Adam Baldwin", + "profile_use_background_image": true, + "description": "Husband @babyfro\nFather of 2\nTeam ^lifter @liftsecurity\nYeti @andyet\nFounder @nodesecurity", + "url": "https://t.co/xF4ndOjEu2", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/620086266244116480/1SW5afQT_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Fri May 23 05:38:53 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/620086266244116480/1SW5afQT_normal.jpg", + "favourites_count": 16394, + "status": { + "retweet_count": 63, + "retweeted_status": { + "retweet_count": 63, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685332012131954688", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "phrack.org/issues/7/3.html", + "url": "https://t.co/xlBLGAHGcl", + "expanded_url": "http://phrack.org/issues/7/3.html", + "indices": [ + 52, + 75 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 05:27:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685332012131954688, + "text": "30 years ago to date The Mentor wrote his manifesto https://t.co/xlBLGAHGcl Despite the propaganda and mass sellouts, it still matters", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 44, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685357215415287808", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "phrack.org/issues/7/3.html", + "url": "https://t.co/xlBLGAHGcl", + "expanded_url": "http://phrack.org/issues/7/3.html", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "agelastic", + "id_str": "367629666", + "id": 367629666, + "indices": [ + 3, + 13 + ], + "name": "Vitaly Osipov" + } + ] + }, + "created_at": "Fri Jan 08 07:07:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685357215415287808, + "text": "RT @agelastic: 30 years ago to date The Mentor wrote his manifesto https://t.co/xlBLGAHGcl Despite the propaganda and mass sellouts, it sti\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 14878068, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 15621, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18496432", + "following": false, + "friends_count": 1531, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "medium.com/@nrrrdcore", + "url": "https://t.co/yNzkb6fJpL", + "expanded_url": "https://medium.com/@nrrrdcore", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/606579843/q2ygld2s5eo2b6kria06.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FDF68F", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 24092, + "location": "Oakland, CA", + "screen_name": "nrrrdcore", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 1066, + "name": "Julie Ann Horvath", + "profile_use_background_image": false, + "description": "Part pok\u00e9mon, part reality tv gif. Designer who codes. Multicultural. Friendly neighborhood Feminist. Volunteer at @Oakland_CM. Bay Area Native.", + "url": "https://t.co/yNzkb6fJpL", + "profile_text_color": "0D0D0C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670454037028868096/xU17-mNX_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Dec 31 02:39:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "0A0A09", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670454037028868096/xU17-mNX_normal.jpg", + "favourites_count": 25755, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "polotek", + "in_reply_to_user_id": 20079975, + "in_reply_to_status_id_str": "684832544966103040", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685606596416679936", + "id": 685606596416679936, + "text": "@polotek she's the luckiest baby girl to have parents like you and @operaqueenie \ud83d\ude4c\ud83c\udffd", + "in_reply_to_user_id_str": "20079975", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "polotek", + "id_str": "20079975", + "id": 20079975, + "indices": [ + 0, + 8 + ], + "name": "Marco Rogers" + }, + { + "screen_name": "operaqueenie", + "id_str": "18710797", + "id": 18710797, + "indices": [ + 67, + 80 + ], + "name": "Aniyia" + } + ] + }, + "created_at": "Fri Jan 08 23:38:45 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684832544966103040, + "lang": "en" + }, + "default_profile_image": false, + "id": 18496432, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/606579843/q2ygld2s5eo2b6kria06.jpeg", + "statuses_count": 27871, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18496432/1446178912", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "238257944", + "following": false, + "friends_count": 295, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "deedubs.com", + "url": "http://t.co/Jo9kwa5p7q", + "expanded_url": "http://deedubs.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/601132773/s1z93dncq6lyre2s8v51.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 368, + "location": "Ottawa, ON", + "screen_name": "deedubs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "name": "Dan Williams", + "profile_use_background_image": false, + "description": "JavaScript, Site Reliability Engineer. Senior developer at @keatonrow", + "url": "http://t.co/Jo9kwa5p7q", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638672882290266112/ufp3Vfqz_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Jan 14 19:02:08 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638672882290266112/ufp3Vfqz_normal.jpg", + "favourites_count": 202, + "status": { + "retweet_count": 3, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "685475894945792001", + "id": 685475894945792001, + "text": "Currently tying our shoes. Want early access? Follow for details.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:59:23 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685515370845749248", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "trytipjuice", + "id_str": "3973986610", + "id": 3973986610, + "indices": [ + 3, + 15 + ], + "name": "TipJuice" + } + ] + }, + "created_at": "Fri Jan 08 17:36:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685515370845749248, + "text": "RT @trytipjuice: Currently tying our shoes. Want early access? Follow for details.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 238257944, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/601132773/s1z93dncq6lyre2s8v51.jpeg", + "statuses_count": 3109, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/238257944/1422636454", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "11395", + "following": false, + "friends_count": 163, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stpeter.im", + "url": "https://t.co/9DJjN5mx49", + "expanded_url": "https://stpeter.im/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 1986, + "location": "Parker, Colorado, USA", + "screen_name": "stpeter", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 130, + "name": "Peter Saint-Andre", + "profile_use_background_image": true, + "description": "Technologist. Musician. Philosopher. CTO with @andyet.", + "url": "https://t.co/9DJjN5mx49", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494848536710619136/BaEAuasq_normal.png", + "profile_background_color": "9AE4E8", + "created_at": "Fri Nov 03 18:45:57 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494848536710619136/BaEAuasq_normal.png", + "favourites_count": 1761, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684856883530760192", + "id": 684856883530760192, + "text": "Too many chars, my dear Twitter!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 21:59:39 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 11395, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3918, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "8446052", + "following": false, + "friends_count": 539, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 625, + "location": "WA", + "screen_name": "hjon", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 80, + "name": "Jon Hjelle", + "profile_use_background_image": true, + "description": "iOS Developer at &yet (@andyet). I work on @usetalky.", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/34548232/5-3-03_020_1_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Aug 26 19:13:41 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/34548232/5-3-03_020_1_normal.jpg", + "favourites_count": 323, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Gautam_Pratik", + "in_reply_to_user_id": 355311539, + "in_reply_to_status_id_str": "678996154445508608", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "679080894615851008", + "id": 679080894615851008, + "text": "@Gautam_Pratik Not really. Brought it to a shop and they could only narrow it down to logic board or video card.", + "in_reply_to_user_id_str": "355311539", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Gautam_Pratik", + "id_str": "355311539", + "id": 355311539, + "indices": [ + 0, + 14 + ], + "name": "Pratik Gautam" + } + ] + }, + "created_at": "Mon Dec 21 23:27:56 +0000 2015", + "source": "Twitterrific", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 678996154445508608, + "lang": "en" + }, + "default_profile_image": false, + "id": 8446052, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 3091, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18076186", + "following": false, + "friends_count": 93, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "maltson.com", + "url": "https://t.co/CAoihOvU1e", + "expanded_url": "http://maltson.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 264, + "location": "Toronto, Canada", + "screen_name": "amaltson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "Arthur Maltson", + "profile_use_background_image": true, + "description": "Husband and father of two wonderful daughters. Practicing DevOps during the day and DadOps at night.", + "url": "https://t.co/CAoihOvU1e", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1213346750/arthur_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Dec 12 13:50:31 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1213346750/arthur_normal.jpg", + "favourites_count": 1587, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685529684633882624", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/joshuajenkins/\u2026", + "url": "https://t.co/YeGEHah4r8", + "expanded_url": "https://twitter.com/joshuajenkins/status/685166119573848064", + "indices": [ + 17, + 40 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:33:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685529684633882624, + "text": "This is awesome! https://t.co/YeGEHah4r8", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 18076186, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 8716, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "10886832", + "following": false, + "friends_count": 722, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nerderati.com", + "url": "http://t.co/lhQToqxP8q", + "expanded_url": "http://nerderati.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2699971/eqns1.jpg", + "notifications": false, + "profile_sidebar_fill_color": "A0A0A0", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 2495, + "location": "iPhone: 45.522545,-73.593346", + "screen_name": "jperras", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 242, + "name": "Jo\u00ebl Perras", + "profile_use_background_image": true, + "description": "I'm a physicist turned web dev, and a partner at @FictiveKin.\n\nOSI Layer 8 enthusiast.", + "url": "http://t.co/lhQToqxP8q", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/576168271096868864/mpIZKKDZ_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Dec 05 22:56:35 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "787878", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/576168271096868864/mpIZKKDZ_normal.jpeg", + "favourites_count": 1942, + "status": { + "retweet_count": 15, + "retweeted_status": { + "retweet_count": 15, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685607398036344832", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", + "type": "photo", + "indices": [ + 115, + 138 + ], + "media_url": "http://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", + "display_url": "pic.twitter.com/Bm16PNTLPf", + "id_str": "685607396408999936", + "expanded_url": "http://twitter.com/vanschneider/status/685607398036344832/photo/1", + "id": 685607396408999936, + "url": "https://t.co/Bm16PNTLPf" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:41:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685607398036344832, + "text": "\u201c$9.99 for a paid music streaming service is too expensive for me.\u201d - This is what americans spend their money on. https://t.co/Bm16PNTLPf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 21, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685608068869144580", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 577, + "resize": "fit" + } + }, + "source_status_id_str": "685607398036344832", + "url": "https://t.co/Bm16PNTLPf", + "media_url": "http://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", + "source_user_id_str": "18971006", + "id_str": "685607396408999936", + "id": 685607396408999936, + "media_url_https": "https://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685607398036344832, + "source_user_id": 18971006, + "display_url": "pic.twitter.com/Bm16PNTLPf", + "expanded_url": "http://twitter.com/vanschneider/status/685607398036344832/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "vanschneider", + "id_str": "18971006", + "id": 18971006, + "indices": [ + 3, + 16 + ], + "name": "Tobias van Schneider" + } + ] + }, + "created_at": "Fri Jan 08 23:44:36 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685608068869144580, + "text": "RT @vanschneider: \u201c$9.99 for a paid music streaming service is too expensive for me.\u201d - This is what americans spend their money on. https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 10886832, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2699971/eqns1.jpg", + "statuses_count": 17412, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10886832/1426204332", + "is_translator": false + }, + { + "time_zone": "America/New_York", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "262289144", + "following": false, + "friends_count": 349, + "entities": { + "description": { + "urls": [ + { + "display_url": "linkedin.com/in/devopsto", + "url": "http://t.co/Aciv0cPnM8", + "expanded_url": "http://linkedin.com/in/devopsto", + "indices": [ + 76, + 98 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "stevepereira.ca", + "url": "http://t.co/Bxf9OuOiuu", + "expanded_url": "http://stevepereira.ca", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 894, + "location": "Toronto", + "screen_name": "SteveElsewhere", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 90, + "name": "Steve Pereira", + "profile_use_background_image": false, + "description": "@Statflo CTO - Teammate - Software Delivery / Systems Engineer - DevOps fan http://t.co/Aciv0cPnM8", + "url": "http://t.co/Bxf9OuOiuu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659417434303008768/Xqy2RBHD_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Mar 07 19:21:27 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659417434303008768/Xqy2RBHD_normal.jpg", + "favourites_count": 2948, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mferrier", + "in_reply_to_user_id": 12979942, + "in_reply_to_status_id_str": "684923946261712897", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684931694034485248", + "id": 684931694034485248, + "text": "@mferrier so ready for the robots to step in on this...", + "in_reply_to_user_id_str": "12979942", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mferrier", + "id_str": "12979942", + "id": 12979942, + "indices": [ + 0, + 9 + ], + "name": "Mike Ferrier" + } + ] + }, + "created_at": "Thu Jan 07 02:56:55 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684923946261712897, + "lang": "en" + }, + "default_profile_image": false, + "id": 262289144, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 3064, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/262289144/1449646593", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "22066036", + "following": false, + "friends_count": 365, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 532, + "location": "Brooklyn, NY", + "screen_name": "techbint", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 53, + "name": "Lisa van Gelder", + "profile_use_background_image": true, + "description": "Software developer, coffee lover", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/85150644/Photo_4_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Feb 26 21:38:09 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/85150644/Photo_4_normal.jpg", + "favourites_count": 160, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684907534742765569", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mic.com/articles/13186\u2026", + "url": "https://t.co/KbI0Gpso30", + "expanded_url": "http://mic.com/articles/131861/silicon-valley-is-lying-to-you-about-economic-inequality#.WkIEmAark", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JackSmithIV", + "id_str": "27306129", + "id": 27306129, + "indices": [ + 60, + 72 + ], + "name": "Jack Smith IV" + }, + { + "screen_name": "micnews", + "id_str": "139909832", + "id": 139909832, + "indices": [ + 101, + 109 + ], + "name": "Mic" + } + ] + }, + "created_at": "Thu Jan 07 01:20:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684907534742765569, + "text": "Silicon Valley Is Lying to You About Economic Inequality by @jacksmithiv https://t.co/KbI0Gpso30 via @MicNews", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684911569151639554", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mic.com/articles/13186\u2026", + "url": "https://t.co/KbI0Gpso30", + "expanded_url": "http://mic.com/articles/131861/silicon-valley-is-lying-to-you-about-economic-inequality#.WkIEmAark", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "harper", + "id_str": "1497", + "id": 1497, + "indices": [ + 3, + 10 + ], + "name": "harper" + }, + { + "screen_name": "JackSmithIV", + "id_str": "27306129", + "id": 27306129, + "indices": [ + 72, + 84 + ], + "name": "Jack Smith IV" + }, + { + "screen_name": "micnews", + "id_str": "139909832", + "id": 139909832, + "indices": [ + 113, + 121 + ], + "name": "Mic" + } + ] + }, + "created_at": "Thu Jan 07 01:36:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684911569151639554, + "text": "RT @harper: Silicon Valley Is Lying to You About Economic Inequality by @jacksmithiv https://t.co/KbI0Gpso30 via @MicNews", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 22066036, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2450, + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "38389571", + "following": false, + "friends_count": 111, + "entities": { + "description": { + "urls": [ + { + "display_url": "gingerhq.com", + "url": "https://t.co/70QKPxW52X", + "expanded_url": "https://gingerhq.com", + "indices": [ + 42, + 65 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 578, + "location": "Steamboat Springs, Colorado", + "screen_name": "ipmb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Peter Baumgartner", + "profile_use_background_image": true, + "description": "Founder at Lincoln Loop, maker of Ginger (https://t.co/70QKPxW52X). Lover of family, surfing, skiing, kayaking, and mountain biking.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/533293012156051456/kwGzVRnY_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu May 07 07:16:37 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/533293012156051456/kwGzVRnY_normal.png", + "favourites_count": 382, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "montylounge", + "in_reply_to_user_id": 34617218, + "in_reply_to_status_id_str": "679676778013704192", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "679733605413695488", + "id": 679733605413695488, + "text": "@montylounge second the recommendation of an inexpensive laster printer", + "in_reply_to_user_id_str": "34617218", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "montylounge", + "id_str": "34617218", + "id": 34617218, + "indices": [ + 0, + 12 + ], + "name": "Kevin Fricovsky" + } + ] + }, + "created_at": "Wed Dec 23 18:41:35 +0000 2015", + "source": "Twitter for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 679676778013704192, + "lang": "en" + }, + "default_profile_image": false, + "id": 38389571, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 745, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "46082263", + "following": false, + "friends_count": 21, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jeskecompany.com", + "url": "http://t.co/wvNxsWx69d", + "expanded_url": "http://jeskecompany.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "336699", + "geo_enabled": true, + "followers_count": 574, + "location": "Neenah, WI, USA", + "screen_name": "geekles", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "Shawn Hansen", + "profile_use_background_image": false, + "description": "Ecommerce at The Jeske Company.", + "url": "http://t.co/wvNxsWx69d", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649964839545106432/6mvYsAtT_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Jun 10 10:29:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649964839545106432/6mvYsAtT_normal.jpg", + "favourites_count": 350, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jaffathecake", + "in_reply_to_user_id": 15390783, + "in_reply_to_status_id_str": "578926689046142978", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "578927048963567617", + "id": 578927048963567617, + "text": "@jaffathecake That a great name for a character in a book.", + "in_reply_to_user_id_str": "15390783", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jaffathecake", + "id_str": "15390783", + "id": 15390783, + "indices": [ + 0, + 13 + ], + "name": "Jake Archibald" + } + ] + }, + "created_at": "Fri Mar 20 14:32:19 +0000 2015", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 578926689046142978, + "lang": "en" + }, + "default_profile_image": false, + "id": 46082263, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7120, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/46082263/1427672701", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "159822053", + "following": false, + "friends_count": 154, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 8289, + "location": "Portland, OR", + "screen_name": "kelseyhightower", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 366, + "name": "Kelsey Hightower", + "profile_use_background_image": true, + "description": "Containers. Kubernetes. Golang", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/498800179206578177/5VBrlADU_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jun 26 12:24:45 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/498800179206578177/5VBrlADU_normal.jpeg", + "favourites_count": 4396, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685613533107630080", + "id": 685613533107630080, + "text": "Details still to come, but looks like we\u2019ve locked in @kelseyhightower for the next Nike Tech Talk on 2/11! ;~)", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kelseyhightower", + "id_str": "159822053", + "id": 159822053, + "indices": [ + 54, + 70 + ], + "name": "Kelsey Hightower" + } + ] + }, + "created_at": "Sat Jan 09 00:06:19 +0000 2016", + "source": "TweetDeck", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685613575885303808", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tlockney", + "id_str": "1941471", + "id": 1941471, + "indices": [ + 3, + 12 + ], + "name": "Thomas Lockney" + }, + { + "screen_name": "kelseyhightower", + "id_str": "159822053", + "id": 159822053, + "indices": [ + 68, + 84 + ], + "name": "Kelsey Hightower" + } + ] + }, + "created_at": "Sat Jan 09 00:06:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613575885303808, + "text": "RT @tlockney: Details still to come, but looks like we\u2019ve locked in @kelseyhightower for the next Nike Tech Talk on 2/11! ;~)", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 159822053, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8775, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1974059004", + "following": false, + "friends_count": 217, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 495, + "location": "", + "screen_name": "HCornflower", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Philipp Hancke", + "profile_use_background_image": true, + "description": "doing things webrtc @tokbox", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000644644201/35b0d0ee5b74d7c7328da661b201c03b_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Oct 20 06:34:42 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000644644201/35b0d0ee5b74d7c7328da661b201c03b_normal.png", + "favourites_count": 1314, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "feross", + "in_reply_to_user_id": 15692193, + "in_reply_to_status_id_str": "685130192780673024", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685329496153669632", + "id": 685329496153669632, + "text": "@feross always stay close to the person with the gun. And make sure you know how a reindeer looks.", + "in_reply_to_user_id_str": "15692193", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "feross", + "id_str": "15692193", + "id": 15692193, + "indices": [ + 0, + 7 + ], + "name": "Feross" + } + ] + }, + "created_at": "Fri Jan 08 05:17:39 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685130192780673024, + "lang": "en" + }, + "default_profile_image": false, + "id": 1974059004, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1116, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1974059004/1424759180", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2554691999", + "following": false, + "friends_count": 82, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/stongo", + "url": "https://t.co/2z4msjYUJ6", + "expanded_url": "http://github.com/stongo", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 72, + "location": "Canada", + "screen_name": "stongops", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Stongsy", + "profile_use_background_image": true, + "description": "DevOps Engineer at @andyet", + "url": "https://t.co/2z4msjYUJ6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648714602805596160/vsEJr0zP_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue May 20 00:38:58 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648714602805596160/vsEJr0zP_normal.jpg", + "favourites_count": 113, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681684681281146880", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 597, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 349, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 198, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXXUl62WcAAWgdj.jpg", + "type": "photo", + "indices": [ + 33, + 56 + ], + "media_url": "http://pbs.twimg.com/media/CXXUl62WcAAWgdj.jpg", + "display_url": "pic.twitter.com/z5N3NrcofS", + "id_str": "681684666533965824", + "expanded_url": "http://twitter.com/stongops/status/681684681281146880/photo/1", + "id": 681684666533965824, + "url": "https://t.co/z5N3NrcofS" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 29 03:54:27 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681684681281146880, + "text": "Say no to drugs and yes to Jenga https://t.co/z5N3NrcofS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2554691999, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 74, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2554691999/1441495963", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "798920833", + "following": false, + "friends_count": 891, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 147, + "location": "Canada", + "screen_name": "idleinca", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Luke Tymowski", + "profile_use_background_image": true, + "description": "Sysadmin", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/490270588141711362/Dy_HyNvs_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Sep 02 19:40:45 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/490270588141711362/Dy_HyNvs_normal.jpeg", + "favourites_count": 2, + "status": { + "retweet_count": 42, + "retweeted_status": { + "retweet_count": 42, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684772419693862912", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "arstechnica.com/tech-policy/20\u2026", + "url": "https://t.co/AO5ZeQnHQ8", + "expanded_url": "http://arstechnica.com/tech-policy/2016/01/dutch-government-encryption-good-backdoors-bad/", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "glynmoody", + "id_str": "18525497", + "id": 18525497, + "indices": [ + 76, + 86 + ], + "name": "Glyn Moody" + } + ] + }, + "created_at": "Wed Jan 06 16:24:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684772419693862912, + "text": "Dutch government: Encryption good, backdoors bad https://t.co/AO5ZeQnHQ8 by @glynmoody", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 29, + "contributors": null, + "source": "Ars tweetbot" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684772945659428864", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "arstechnica.com/tech-policy/20\u2026", + "url": "https://t.co/AO5ZeQnHQ8", + "expanded_url": "http://arstechnica.com/tech-policy/2016/01/dutch-government-encryption-good-backdoors-bad/", + "indices": [ + 66, + 89 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "arstechnica", + "id_str": "717313", + "id": 717313, + "indices": [ + 3, + 15 + ], + "name": "Ars Technica" + }, + { + "screen_name": "glynmoody", + "id_str": "18525497", + "id": 18525497, + "indices": [ + 93, + 103 + ], + "name": "Glyn Moody" + } + ] + }, + "created_at": "Wed Jan 06 16:26:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684772945659428864, + "text": "RT @arstechnica: Dutch government: Encryption good, backdoors bad https://t.co/AO5ZeQnHQ8 by @glynmoody", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 798920833, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3569, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/798920833/1407726620", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "40994489", + "following": false, + "friends_count": 929, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kristofferpantic.com", + "url": "http://t.co/jLZ3EXpJSR", + "expanded_url": "http://www.kristofferpantic.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 477, + "location": "Barcelona, Spain ", + "screen_name": "kpantic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Kristoffer Pantic", + "profile_use_background_image": true, + "description": "VPoE of @talpor_ve, Computer Engineer from Venezuela currently living in Barcelona, USB and CMU-SV alumni.", + "url": "http://t.co/jLZ3EXpJSR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/646076438693715968/NWYnZRuZ_normal.jpg", + "profile_background_color": "022330", + "created_at": "Mon May 18 23:06:56 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/646076438693715968/NWYnZRuZ_normal.jpg", + "favourites_count": 177, + "status": { + "retweet_count": 798, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 798, + "truncated": false, + "retweeted": false, + "id_str": "677982650481553408", + "id": 677982650481553408, + "text": "Step one:\n$ git remote rename origin jedi\n\nStep two:\n$ git push --force jedi master\n\nStep three:\n\ud83c\udf89\ud83c\udf89\ud83c\udf89Profit \ud83c\udf89\ud83c\udf89\ud83c\udf89", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Dec 18 22:43:54 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 614, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "678277444319735809", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thealphanerd", + "id_str": "150664007", + "id": 150664007, + "indices": [ + 3, + 16 + ], + "name": "Make Fyles" + } + ] + }, + "created_at": "Sat Dec 19 18:15:19 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678277444319735809, + "text": "RT @thealphanerd: Step one:\n$ git remote rename origin jedi\n\nStep two:\n$ git push --force jedi master\n\nStep three:\n\ud83c\udf89\ud83c\udf89\ud83c\udf89Profit \ud83c\udf89\ud83c\udf89\ud83c\udf89", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 40994489, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 8731, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/40994489/1370318379", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "263981412", + "following": false, + "friends_count": 827, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 65, + "location": "", + "screen_name": "jfer0501", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "John Ferris", + "profile_use_background_image": true, + "description": "Die Hard Red Sox Fan, Software Engineer, Punk Rock lover", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/412057714311696385/fS2QIp7p_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Mar 11 03:13:12 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/412057714311696385/fS2QIp7p_normal.jpeg", + "favourites_count": 39, + "status": { + "retweet_count": 15689, + "retweeted_status": { + "retweet_count": 15689, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685210402578382848", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", + "type": "photo", + "indices": [ + 68, + 91 + ], + "media_url": "http://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", + "display_url": "pic.twitter.com/SS8gp4WHAF", + "id_str": "685210402448355329", + "expanded_url": "http://twitter.com/Fallout/status/685210402578382848/photo/1", + "id": 685210402448355329, + "url": "https://t.co/SS8gp4WHAF" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 5, + 27 + ], + "text": "NationalBobbleheadDay" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 21:24:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685210402578382848, + "text": "It's #NationalBobbleheadDay ! RT & follow for a chance to win ! https://t.co/SS8gp4WHAF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4608, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685247198079152128", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + } + }, + "source_status_id_str": "685210402578382848", + "url": "https://t.co/SS8gp4WHAF", + "media_url": "http://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", + "source_user_id_str": "112511880", + "id_str": "685210402448355329", + "id": 685210402448355329, + "media_url_https": "https://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", + "type": "photo", + "indices": [ + 81, + 104 + ], + "source_status_id": 685210402578382848, + "source_user_id": 112511880, + "display_url": "pic.twitter.com/SS8gp4WHAF", + "expanded_url": "http://twitter.com/Fallout/status/685210402578382848/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 18, + 40 + ], + "text": "NationalBobbleheadDay" + } + ], + "user_mentions": [ + { + "screen_name": "Fallout", + "id_str": "112511880", + "id": 112511880, + "indices": [ + 3, + 11 + ], + "name": "Fallout" + } + ] + }, + "created_at": "Thu Jan 07 23:50:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685247198079152128, + "text": "RT @Fallout: It's #NationalBobbleheadDay ! RT & follow for a chance to win ! https://t.co/SS8gp4WHAF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 263981412, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 494, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2224090597", + "following": false, + "friends_count": 339, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "travisallan.com", + "url": "http://t.co/4AeECnyJpu", + "expanded_url": "http://travisallan.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/513158005743833088/SPlg2CPJ.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2196AD", + "geo_enabled": false, + "followers_count": 125, + "location": "Vancouver", + "screen_name": "travis_eh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Travis Allan", + "profile_use_background_image": true, + "description": "Advocate of the impossible for a telco that employs animals.", + "url": "http://t.co/4AeECnyJpu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000813579626/cdec533dbb73630947f99801e7d81c22_normal.jpeg", + "profile_background_color": "F0F0F0", + "created_at": "Sun Dec 01 02:46:49 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000813579626/cdec533dbb73630947f99801e7d81c22_normal.jpeg", + "favourites_count": 56, + "status": { + "retweet_count": 4, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 4, + "truncated": false, + "retweeted": false, + "id_str": "665551119477833728", + "id": 665551119477833728, + "text": "At #fstoconf15 today? Come visit us and learn about our stack", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 3, + 14 + ], + "text": "fstoconf15" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Nov 14 15:25:26 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "665625579148840960", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 21, + 32 + ], + "text": "fstoconf15" + } + ], + "user_mentions": [ + { + "screen_name": "telusdigital", + "id_str": "3023244921", + "id": 3023244921, + "indices": [ + 3, + 16 + ], + "name": "TELUS digital" + } + ] + }, + "created_at": "Sat Nov 14 20:21:19 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 665625579148840960, + "text": "RT @telusdigital: At #fstoconf15 today? Come visit us and learn about our stack", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2224090597, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/513158005743833088/SPlg2CPJ.png", + "statuses_count": 271, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2224090597/1411181499", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "85646316", + "following": false, + "friends_count": 1421, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "elliotmurphy.com", + "url": "http://t.co/gFsRT6JJs8", + "expanded_url": "http://elliotmurphy.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": false, + "followers_count": 660, + "location": "portland, maine", + "screen_name": "sstatik", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 53, + "name": "Elliot Murphy", + "profile_use_background_image": true, + "description": "Please may I drive your boat?", + "url": "http://t.co/gFsRT6JJs8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2349367231/003E1A1D-CEC9-44F0-9C43-694D34CFC754_normal", + "profile_background_color": "EBEBEB", + "created_at": "Tue Oct 27 19:50:51 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2349367231/003E1A1D-CEC9-44F0-9C43-694D34CFC754_normal", + "favourites_count": 2874, + "status": { + "retweet_count": 54, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 54, + "truncated": false, + "retweeted": false, + "id_str": "685196271745814528", + "id": 685196271745814528, + "text": "If you take any security system with a backdoor, you can make it more secure by removing the backdoor. \n\nWe can call this \"The eek! Law\".", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 20:28:16 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 49, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685473533502205952", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "eqe", + "id_str": "16076004", + "id": 16076004, + "indices": [ + 3, + 7 + ], + "name": "@eqe (Andy Isaacson)" + } + ] + }, + "created_at": "Fri Jan 08 14:50:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685473533502205952, + "text": "RT @eqe: If you take any security system with a backdoor, you can make it more secure by removing the backdoor. \n\nWe can call this \"The eek\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 85646316, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 3671, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11944492", + "following": false, + "friends_count": 394, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 288, + "location": "phila", + "screen_name": "cmerrick", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "cmerrick", + "profile_use_background_image": true, + "description": "engineer at RJMetrics", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3591779491/caaf951d2f1aa3d8f11b3dc0e9341db3_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 07 14:36:18 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3591779491/caaf951d2f1aa3d8f11b3dc0e9341db3_normal.jpeg", + "favourites_count": 31, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "bengarvey", + "in_reply_to_user_id": 3732861, + "in_reply_to_status_id_str": "682691595167088640", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682771670688481280", + "id": 682771670688481280, + "text": "@bengarvey impressive reverse engineering of the Windows 3.1 screen saver", + "in_reply_to_user_id_str": "3732861", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "bengarvey", + "id_str": "3732861", + "id": 3732861, + "indices": [ + 0, + 10 + ], + "name": "Ben Garvey" + } + ] + }, + "created_at": "Fri Jan 01 03:53:46 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 682691595167088640, + "lang": "en" + }, + "default_profile_image": false, + "id": 11944492, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 547, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7221", + "following": false, + "friends_count": 1654, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkd.in/A2n01d", + "url": "https://t.co/Bu1B67OyHy", + "expanded_url": "http://linkd.in/A2n01d", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 465, + "location": "santa monica, california", + "screen_name": "arnold", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 49, + "name": "Arnold", + "profile_use_background_image": false, + "description": "lucky to have @annamau @dylanskye_ @sydneydani_. data engineer at startup game company. fauxtographer. completed sweltering @lamarathon 2015. @playoverwatch nub", + "url": "https://t.co/Bu1B67OyHy", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1880208035/164_21258363192_647538192_398945_620_n_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Sep 29 06:52:48 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1880208035/164_21258363192_647538192_398945_620_n_normal.jpg", + "favourites_count": 6233, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685605870445543424", + "geo": { + "coordinates": [ + 34.03107017, + -118.4406039 + ], + "type": "Point" + }, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 576, + "h": 1024, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 576, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPC5qWUQAEaw_h.jpg", + "type": "photo", + "indices": [ + 35, + 58 + ], + "media_url": "http://pbs.twimg.com/media/CYPC5qWUQAEaw_h.jpg", + "display_url": "pic.twitter.com/khl1CZNC1z", + "id_str": "685605864166670337", + "expanded_url": "http://twitter.com/arnold/status/685605870445543424/photo/1", + "id": 685605864166670337, + "url": "https://t.co/khl1CZNC1z" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:35:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/96683cc9126741d1.json", + "country": "United States", + "attributes": {}, + "place_type": "country", + "bounding_box": { + "coordinates": [ + [ + [ + -179.231086, + 13.182335 + ], + [ + 179.859685, + 13.182335 + ], + [ + 179.859685, + 71.434357 + ], + [ + -179.231086, + 71.434357 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "United States", + "id": "96683cc9126741d1", + "name": "United States" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685605870445543424, + "text": "$800M lottery jackpot in the US. \ud83e\udd11 https://t.co/khl1CZNC1z", + "coordinates": { + "coordinates": [ + -118.4406039, + 34.03107017 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 7221, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 38100, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7221/1427384184", + "is_translator": false + }, + { + "time_zone": "Quito", + "profile_use_background_image": true, + "description": "Off-Beat Linux guru and Devops Nerd. Fan of bourbon, glass blowing, hardware hacking, hackerspaces, and moonshine. Open Source is my soul...", + "url": "http://t.co/igc3tRJ0HH", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "14459170", + "blocking": false, + "is_translation_enabled": false, + "id": 14459170, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ianwilson.org", + "url": "http://t.co/igc3tRJ0HH", + "expanded_url": "http://ianwilson.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "131516", + "created_at": "Mon Apr 21 06:50:05 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/1852779298/dMCdH_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "statuses_count": 8834, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1852779298/dMCdH_normal.jpg", + "favourites_count": 80, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 228, + "blocked_by": false, + "following": false, + "location": "Midwest", + "muting": false, + "friends_count": 329, + "notifications": false, + "screen_name": "uid0", + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 10, + "is_translator": false, + "name": "Ian WIlson" + }, + { + "time_zone": "America/Los_Angeles", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "641953", + "following": false, + "friends_count": 345, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ctbfourone.tumblr.com", + "url": "https://t.co/CyH7vIb6zb", + "expanded_url": "http://ctbfourone.tumblr.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000106779969/fa6f934b0bf864af6d2d91af83a7c7df.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "333355", + "geo_enabled": true, + "followers_count": 908, + "location": "Portland", + "screen_name": "ctb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 47, + "name": "Chris Brentano", + "profile_use_background_image": true, + "description": "Network engineer, @simple.", + "url": "https://t.co/CyH7vIb6zb", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579870117539889152/9smPEoNX_normal.jpg", + "profile_background_color": "411D59", + "created_at": "Tue Jan 16 00:34:47 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579870117539889152/9smPEoNX_normal.jpg", + "favourites_count": 3767, + "status": { + "retweet_count": 10, + "retweeted_status": { + "retweet_count": 10, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685215854473023488", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "gimmethelute.com", + "url": "https://t.co/5URNe0xQPk", + "expanded_url": "http://www.gimmethelute.com/", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 21:46:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685215854473023488, + "text": "Hi! Need a brand/communications person? Get in touch! https://t.co/5URNe0xQPk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 11, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685237534339641344", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "gimmethelute.com", + "url": "https://t.co/5URNe0xQPk", + "expanded_url": "http://www.gimmethelute.com/", + "indices": [ + 72, + 95 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "EffingBoring", + "id_str": "6613122", + "id": 6613122, + "indices": [ + 3, + 16 + ], + "name": "I. Ron Butterfly" + } + ] + }, + "created_at": "Thu Jan 07 23:12:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685237534339641344, + "text": "RT @EffingBoring: Hi! Need a brand/communications person? Get in touch! https://t.co/5URNe0xQPk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 641953, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000106779969/fa6f934b0bf864af6d2d91af83a7c7df.png", + "statuses_count": 8904, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/641953/1427086815", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "139871207", + "following": false, + "friends_count": 509, + "entities": { + "description": { + "urls": [ + { + "display_url": "pronoun.is/he/him", + "url": "https://t.co/6bo52FY7b4", + "expanded_url": "http://pronoun.is/he/him", + "indices": [ + 124, + 147 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "joefriedl.net", + "url": "https://t.co/YxMmpW1FzG", + "expanded_url": "http://joefriedl.net", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/98426108/darksgrey.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 103, + "location": "Queens, NY", + "screen_name": "joefriedl", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "grampajoe \u02c1\u02d9\u02df\u02d9\u02c0", + "profile_use_background_image": true, + "description": "I hook computers up to other computers so they do a thing. Sometimes I put computers inside of other computers, it's weird. https://t.co/6bo52FY7b4", + "url": "https://t.co/YxMmpW1FzG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/416290524027314176/Lm3CGt_y_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon May 03 22:53:02 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/416290524027314176/Lm3CGt_y_normal.png", + "favourites_count": 2843, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685608016872390658", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 460, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 813, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1388, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", + "type": "photo", + "indices": [ + 16, + 39 + ], + "media_url": "http://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", + "display_url": "pic.twitter.com/1x2J9xwUx2", + "id_str": "685607983900966914", + "expanded_url": "http://twitter.com/OminousZoom/status/685608016872390658/photo/1", + "id": 685607983900966914, + "url": "https://t.co/1x2J9xwUx2" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:44:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685608016872390658, + "text": "*hissing* zooom https://t.co/1x2J9xwUx2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Ominous Zoom" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685608719627988992", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 460, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 813, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1388, + "resize": "fit" + } + }, + "source_status_id_str": "685608016872390658", + "url": "https://t.co/1x2J9xwUx2", + "media_url": "http://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", + "source_user_id_str": "3997848915", + "id_str": "685607983900966914", + "id": 685607983900966914, + "media_url_https": "https://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", + "type": "photo", + "indices": [ + 33, + 56 + ], + "source_status_id": 685608016872390658, + "source_user_id": 3997848915, + "display_url": "pic.twitter.com/1x2J9xwUx2", + "expanded_url": "http://twitter.com/OminousZoom/status/685608016872390658/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "OminousZoom", + "id_str": "3997848915", + "id": 3997848915, + "indices": [ + 3, + 15 + ], + "name": "Ominous Zoom" + } + ] + }, + "created_at": "Fri Jan 08 23:47:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685608719627988992, + "text": "RT @OminousZoom: *hissing* zooom https://t.co/1x2J9xwUx2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 139871207, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/98426108/darksgrey.png", + "statuses_count": 8509, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/139871207/1389745051", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6645822", + "following": false, + "friends_count": 854, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3330406/future.jpg", + "notifications": false, + "profile_sidebar_fill_color": "ABABAB", + "profile_link_color": "363636", + "geo_enabled": true, + "followers_count": 245, + "location": "", + "screen_name": "theshah", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Oh. It's -- oh.", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/527670702313197568/vsg1S1d5_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Thu Jun 07 17:21:53 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "424242", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/527670702313197568/vsg1S1d5_normal.jpeg", + "favourites_count": 1141, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "647626954821267457", + "id": 647626954821267457, + "text": "Wow @doordashBayArea is terrible! First time ordering and after 80 minutes they forgot to send a driver to get my order. Wont use them again", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "doordashBayArea", + "id_str": "2741484955", + "id": 2741484955, + "indices": [ + 4, + 20 + ], + "name": "DoorDash Bay Area" + } + ] + }, + "created_at": "Sat Sep 26 04:21:13 +0000 2015", + "source": "Mobile Web (M5)", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 6645822, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3330406/future.jpg", + "statuses_count": 1210, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "687123", + "following": false, + "friends_count": 398, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rc3.org", + "url": "http://t.co/hkwKKv3bud", + "expanded_url": "http://rc3.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/561384715/threadlesssolitarydream_653_163260.jpg", + "notifications": false, + "profile_sidebar_fill_color": "05132C", + "profile_link_color": "4A913C", + "geo_enabled": false, + "followers_count": 1847, + "location": "", + "screen_name": "rafeco", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 113, + "name": "Rafe", + "profile_use_background_image": true, + "description": "Programmer, writer, curious person. Manager of the @etsy Data Engineering team.", + "url": "http://t.co/hkwKKv3bud", + "profile_text_color": "004A86", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1539376994/rafe_normal.jpg", + "profile_background_color": "0B1933", + "created_at": "Tue Jan 23 16:17:35 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "043C6E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1539376994/rafe_normal.jpg", + "favourites_count": 660, + "status": { + "retweet_count": 33, + "retweeted_status": { + "retweet_count": 33, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684872357425614850", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "etsy.com/careers/job/oC\u2026", + "url": "https://t.co/exx7H2tdnF", + "expanded_url": "https://www.etsy.com/careers/job/oCHh2fwm", + "indices": [ + 94, + 117 + ] + } + ], + "hashtags": [ + { + "indices": [ + 133, + 140 + ], + "text": "devops" + } + ], + "user_mentions": [ + { + "screen_name": "mrembetsy", + "id_str": "20456848", + "id": 20456848, + "indices": [ + 122, + 132 + ], + "name": "Michael Rembetsy" + } + ] + }, + "created_at": "Wed Jan 06 23:01:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684872357425614850, + "text": "Hey everyone - we're hiring an engineering manager for Production Operations at Etsy! Dig it: https://t.co/exx7H2tdnF /cc @mrembetsy #devops", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 21, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685238827812843520", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "etsy.com/careers/job/oC\u2026", + "url": "https://t.co/exx7H2tdnF", + "expanded_url": "https://www.etsy.com/careers/job/oCHh2fwm", + "indices": [ + 107, + 130 + ] + } + ], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "devops" + } + ], + "user_mentions": [ + { + "screen_name": "allspaw", + "id_str": "13378422", + "id": 13378422, + "indices": [ + 3, + 11 + ], + "name": "John Allspaw" + }, + { + "screen_name": "mrembetsy", + "id_str": "20456848", + "id": 20456848, + "indices": [ + 135, + 140 + ], + "name": "Michael Rembetsy" + } + ] + }, + "created_at": "Thu Jan 07 23:17:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685238827812843520, + "text": "RT @allspaw: Hey everyone - we're hiring an engineering manager for Production Operations at Etsy! Dig it: https://t.co/exx7H2tdnF /cc @mre\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 687123, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/561384715/threadlesssolitarydream_653_163260.jpg", + "statuses_count": 13035, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/687123/1379168349", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13124352", + "following": false, + "friends_count": 736, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000040654748/2abf079c6bc80f94080246a6a2f3b71a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "918B8A", + "profile_link_color": "500B10", + "geo_enabled": true, + "followers_count": 471, + "location": "Portland, OR", + "screen_name": "todd534", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 35, + "name": "Todd Johnson", + "profile_use_background_image": true, + "description": "It\u2019s not all \u201cScala is terrible\u201d; some people are trying to Lead Thoughts\u2122 out here.", + "url": null, + "profile_text_color": "3A3C34", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/551558279311011841/BsYtdAZi_normal.jpeg", + "profile_background_color": "121704", + "created_at": "Wed Feb 06 00:38:16 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551558279311011841/BsYtdAZi_normal.jpeg", + "favourites_count": 7218, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.7900653, + 45.421863 + ], + [ + -122.471751, + 45.421863 + ], + [ + -122.471751, + 45.6509405 + ], + [ + -122.7900653, + 45.6509405 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Portland, OR", + "id": "ac88a4f17a51c7fc", + "name": "Portland" + }, + "in_reply_to_screen_name": "jtowle", + "in_reply_to_user_id": 17889641, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685564613488803840", + "id": 685564613488803840, + "text": "@jtowle YOU STAY AWAY FROM OUR HR PEOPLE", + "in_reply_to_user_id_str": "17889641", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jtowle", + "id_str": "17889641", + "id": 17889641, + "indices": [ + 0, + 7 + ], + "name": "Jeff Towle" + } + ] + }, + "created_at": "Fri Jan 08 20:51:55 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 13124352, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000040654748/2abf079c6bc80f94080246a6a2f3b71a.jpeg", + "statuses_count": 4303, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13124352/1449964144", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14735036", + "following": false, + "friends_count": 447, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2515596/dad_and_beer_sm.jpg", + "notifications": false, + "profile_sidebar_fill_color": "BEBEBE", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 116, + "location": "Lake County IL USA", + "screen_name": "boomer812", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Chris Velkover", + "profile_use_background_image": true, + "description": "IT guy, mac devotee, erratic golfer, Cubs/Bears/Hawks fan, ILL-INI, Spoon!", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/554368442300518401/iSbywOnT_normal.jpeg", + "profile_background_color": "3A3A3A", + "created_at": "Sun May 11 16:57:56 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "585858", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/554368442300518401/iSbywOnT_normal.jpeg", + "favourites_count": 415, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683450662852648960", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "theintercept.com/2015/12/14/go-\u2026", + "url": "https://t.co/e9vekFGdmB", + "expanded_url": "https://theintercept.com/2015/12/14/go-see-the-big-short-right-now-and-then-read-this/", + "indices": [ + 50, + 73 + ] + } + ], + "hashtags": [ + { + "indices": [ + 15, + 27 + ], + "text": "TheBigShort" + } + ], + "user_mentions": [] + }, + "created_at": "Sun Jan 03 00:51:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683450662852648960, + "text": "Really enjoyed #TheBigShort Pay attention people! https://t.co/e9vekFGdmB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14735036, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2515596/dad_and_beer_sm.jpg", + "statuses_count": 953, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14735036/1421007000", + "is_translator": false + } + ], + "previous_cursor": -1489123720614746884, + "previous_cursor_str": "-1489123720614746884", + "next_cursor_str": "1488977745323208956" +} \ No newline at end of file diff --git a/testdata/get_friends_3.json b/testdata/get_friends_3.json new file mode 100644 index 00000000..937d6317 --- /dev/null +++ b/testdata/get_friends_3.json @@ -0,0 +1,25202 @@ +{ + "next_cursor": 1488949918508686286, + "users": [ + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "10531662", + "following": false, + "friends_count": 523, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "limpet.net/mbrubeck/", + "url": "http://t.co/zF0SkYBFhm", + "expanded_url": "http://limpet.net/mbrubeck/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "83B35B", + "geo_enabled": false, + "followers_count": 1119, + "location": "Seattle", + "screen_name": "mbrubeck", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 88, + "name": "Matt Brubeck", + "profile_use_background_image": true, + "description": "Research engineer and mobile developer for Mozilla", + "url": "http://t.co/zF0SkYBFhm", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/610899809046650880/enYhwcmy_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Sat Nov 24 19:23:51 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/610899809046650880/enYhwcmy_normal.jpg", + "favourites_count": 639, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683859814271721473", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 1365, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX2O3mVUEAAK9wf.jpg", + "type": "photo", + "indices": [ + 85, + 108 + ], + "media_url": "http://pbs.twimg.com/media/CX2O3mVUEAAK9wf.jpg", + "display_url": "pic.twitter.com/V1AYZunAw5", + "id_str": "683859804264075264", + "expanded_url": "http://twitter.com/mbrubeck/status/683859814271721473/photo/1", + "id": 683859804264075264, + "url": "https://t.co/V1AYZunAw5" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 03:57:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683859814271721473, + "text": "Mini snowman made from the 1/16 inch of snow that fell at our house in Seattle today https://t.co/V1AYZunAw5", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 10531662, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 1651, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10531662/1431754919", + "is_translator": false + }, + { + "time_zone": "Tijuana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "11113", + "following": false, + "friends_count": 3524, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buzzfeed.com/tech", + "url": "https://t.co/crMvYMZOqX", + "expanded_url": "http://buzzfeed.com/tech", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22152170/SF.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "40FF00", + "geo_enabled": true, + "followers_count": 72710, + "location": "Frisco", + "screen_name": "mat", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2448, + "name": "mat", + "profile_use_background_image": true, + "description": "BuzzFeed San Francisco bureau chief. Alabama native. Californian.", + "url": "https://t.co/crMvYMZOqX", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669550141502676992/Hc_MKaCj_normal.jpg", + "profile_background_color": "BADFCD", + "created_at": "Mon Oct 30 20:13:36 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F2E195", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669550141502676992/Hc_MKaCj_normal.jpg", + "favourites_count": 42452, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "rrhoover", + "in_reply_to_user_id": 14417215, + "in_reply_to_status_id_str": "685597526301360129", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685598266692534273", + "id": 685598266692534273, + "text": "@rrhoover I rage quit yesterday", + "in_reply_to_user_id_str": "14417215", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rrhoover", + "id_str": "14417215", + "id": 14417215, + "indices": [ + 0, + 9 + ], + "name": "Ryan Hoover" + } + ] + }, + "created_at": "Fri Jan 08 23:05:39 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685597526301360129, + "lang": "en" + }, + "default_profile_image": false, + "id": 11113, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22152170/SF.jpg", + "statuses_count": 53749, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11113/1384888594", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "20478755", + "following": false, + "friends_count": 753, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "supermanscott.com", + "url": "http://t.co/DthEIHnsjX", + "expanded_url": "http://supermanscott.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": false, + "followers_count": 771, + "location": "San Francisco", + "screen_name": "superman_scott", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Scott Reynolds", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/DthEIHnsjX", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/81687932/bay_bridge_normal.jpg", + "profile_background_color": "352726", + "created_at": "Mon Feb 09 23:47:49 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/81687932/bay_bridge_normal.jpg", + "favourites_count": 114, + "status": { + "retweet_count": 92, + "retweeted_status": { + "retweet_count": 92, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683717705069891584", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nyti.ms/1Jmx7rs", + "url": "https://t.co/jKcDKslleY", + "expanded_url": "http://nyti.ms/1Jmx7rs", + "indices": [ + 98, + 121 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 11 + ], + "text": "Terrorists" + }, + { + "indices": [ + 122, + 139 + ], + "text": "IfTheyWereMuslim" + } + ], + "user_mentions": [] + }, + "created_at": "Sun Jan 03 18:32:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683717705069891584, + "text": "#Terrorists M\u0336i\u0336l\u0336i\u0336t\u0336i\u0336a\u0336m\u0336e\u0336n\u0336 Seize O\u0336c\u0336c\u0336u\u0336p\u0336y\u0336 Gov Bldg O\u0336R\u0336 \u0336W\u0336i\u0336l\u0336d\u0336l\u0336i\u0336f\u0336e\u0336 \u0336O\u0336f\u0336f\u0336i\u0336c\u0336e\u0336\nhttps://t.co/jKcDKslleY\n#IfTheyWereMuslim", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 82, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683736071037829120", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nyti.ms/1Jmx7rs", + "url": "https://t.co/jKcDKslleY", + "expanded_url": "http://nyti.ms/1Jmx7rs", + "indices": [ + 118, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 20, + 31 + ], + "text": "Terrorists" + }, + { + "indices": [ + 139, + 140 + ], + "text": "IfTheyWereMuslim" + } + ], + "user_mentions": [ + { + "screen_name": "JesselynRadack", + "id_str": "533297878", + "id": 533297878, + "indices": [ + 3, + 18 + ], + "name": "unR\u0336A\u0336D\u0336A\u0336C\u0336K\u0336ted" + } + ] + }, + "created_at": "Sun Jan 03 19:45:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683736071037829120, + "text": "RT @JesselynRadack: #Terrorists M\u0336i\u0336l\u0336i\u0336t\u0336i\u0336a\u0336m\u0336e\u0336n\u0336 Seize O\u0336c\u0336c\u0336u\u0336p\u0336y\u0336 Gov Bldg O\u0336R\u0336 \u0336W\u0336i\u0336l\u0336d\u0336l\u0336i\u0336f\u0336e\u0336 \u0336O\u0336f\u0336f\u0336i\u0336c\u0336e\u0336\nhttps://t.co/jKcDKsll\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 20478755, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 708, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13130412", + "following": false, + "friends_count": 2677, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/404516060/bellagio2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "105E7A", + "geo_enabled": true, + "followers_count": 5482, + "location": "Cambridge, MA", + "screen_name": "laurelatoreilly", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 558, + "name": "Laurel Ruma", + "profile_use_background_image": false, + "description": "Director of Acquisitions and Talent at O'Reilly Media. Homebrewer, foodie, farmer in the city. Untappd: laurelinboston", + "url": null, + "profile_text_color": "0C3E53", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/507566241687412737/h7tJFHKD_normal.png", + "profile_background_color": "4A913C", + "created_at": "Wed Feb 06 02:20:07 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507566241687412737/h7tJFHKD_normal.png", + "favourites_count": 1015, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "monkchips", + "in_reply_to_user_id": 61233, + "in_reply_to_status_id_str": "685485454137896964", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685485759986536448", + "id": 685485759986536448, + "text": "@monkchips @monkigras Sadly no ;( but we need to catch up!", + "in_reply_to_user_id_str": "61233", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "monkchips", + "id_str": "61233", + "id": 61233, + "indices": [ + 0, + 10 + ], + "name": "Medea Fawning" + }, + { + "screen_name": "monkigras", + "id_str": "408912987", + "id": 408912987, + "indices": [ + 11, + 21 + ], + "name": "Monki Gras 2016" + } + ] + }, + "created_at": "Fri Jan 08 15:38:35 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685485454137896964, + "lang": "en" + }, + "default_profile_image": false, + "id": 13130412, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/404516060/bellagio2.jpg", + "statuses_count": 15581, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13130412/1398351175", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "57203", + "following": false, + "friends_count": 6470, + "entities": { + "description": { + "urls": [ + { + "display_url": "known.kevinmarks.com", + "url": "http://t.co/LD3HetU2DZ", + "expanded_url": "http://known.kevinmarks.com", + "indices": [ + 48, + 70 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kevinmarks.com", + "url": "http://t.co/cjiYwEZLiC", + "expanded_url": "http://kevinmarks.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "007494", + "geo_enabled": true, + "followers_count": 25599, + "location": "San Jose", + "screen_name": "kevinmarks", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1990, + "name": "Kevin Marks", + "profile_use_background_image": false, + "description": "Reading your thoughts. if you write them first. http://t.co/LD3HetU2DZ", + "url": "http://t.co/cjiYwEZLiC", + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553009683087114240/tU5HkXEI_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 11 11:43:36 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553009683087114240/tU5HkXEI_normal.jpeg", + "favourites_count": 2267, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "BenedictEvans", + "in_reply_to_user_id": 1236101, + "in_reply_to_status_id_str": "685593158177001472", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685594842135543808", + "id": 685594842135543808, + "text": "@BenedictEvans did you just invent folders?", + "in_reply_to_user_id_str": "1236101", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BenedictEvans", + "id_str": "1236101", + "id": 1236101, + "indices": [ + 0, + 14 + ], + "name": "Benedict Evans" + } + ] + }, + "created_at": "Fri Jan 08 22:52:02 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685593158177001472, + "lang": "en" + }, + "default_profile_image": false, + "id": 57203, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 90294, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/57203/1358547253", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5243", + "following": false, + "friends_count": 824, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "walkah.net", + "url": "https://t.co/LfuYudmbBl", + "expanded_url": "http://walkah.net/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3709, + "location": "Toronto, Canada", + "screen_name": "walkah", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 367, + "name": "James Walker", + "profile_use_background_image": true, + "description": "serial troublemaker.", + "url": "https://t.co/LfuYudmbBl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659907676965597184/zhlKDN-H_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 04 01:10:16 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659907676965597184/zhlKDN-H_normal.jpg", + "favourites_count": 1936, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0161cbc265857029.json", + "country": "Canada", + "attributes": {}, + "place_type": "neighborhood", + "bounding_box": { + "coordinates": [ + [ + [ + -79.4281185, + 43.65388 + ], + [ + -79.407748, + 43.65388 + ], + [ + -79.407748, + 43.665125 + ], + [ + -79.4281185, + 43.665125 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "CA", + "contained_within": [], + "full_name": "Palmerston-Little Italy, Toronto", + "id": "0161cbc265857029", + "name": "Palmerston-Little Italy" + }, + "in_reply_to_screen_name": "bradpurchase", + "in_reply_to_user_id": 753788227, + "in_reply_to_status_id_str": "685577373828431876", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685577626438639616", + "id": 685577626438639616, + "text": "@bradpurchase lol \u201cdry january\u201d", + "in_reply_to_user_id_str": "753788227", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "bradpurchase", + "id_str": "753788227", + "id": 753788227, + "indices": [ + 0, + 13 + ], + "name": "Brad Howard" + } + ] + }, + "created_at": "Fri Jan 08 21:43:38 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685577373828431876, + "lang": "en" + }, + "default_profile_image": false, + "id": 5243, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6297, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5243/1448757049", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "335478695", + "following": false, + "friends_count": 149, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 5, + "location": "", + "screen_name": "DilettanteDabbl", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "Ivy", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/424535174240829440/1GHc4qVa_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jul 14 19:02:55 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/424535174240829440/1GHc4qVa_normal.jpeg", + "favourites_count": 1, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "517786259972837376", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/quinnnorton/st\u2026", + "url": "https://t.co/A7OddfuitN", + "expanded_url": "https://twitter.com/quinnnorton/status/517781588545794048", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Oct 02 21:20:39 +0000 2014", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 517786259972837376, + "text": "I will have nothing to do with Quinn Norton. Race hatred and anti-Semitism \u2260 \u201cwhite pride.\u201d https://t.co/A7OddfuitN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "517865764834258944", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/quinnnorton/st\u2026", + "url": "https://t.co/A7OddfuitN", + "expanded_url": "https://twitter.com/quinnnorton/status/517781588545794048", + "indices": [ + 104, + 127 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "GlennF", + "id_str": "8315692", + "id": 8315692, + "indices": [ + 3, + 10 + ], + "name": "Glenn Fleishman" + } + ] + }, + "created_at": "Fri Oct 03 02:36:34 +0000 2014", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 517865764834258944, + "text": "RT @GlennF: I will have nothing to do with Quinn Norton. Race hatred and anti-Semitism \u2260 \u201cwhite pride.\u201d https://t.co/A7OddfuitN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Talon (Classic)" + }, + "default_profile_image": false, + "id": 335478695, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/335478695/1408301504", + "is_translator": false + }, + { + "time_zone": "Sydney", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "95345146", + "following": false, + "friends_count": 645, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 429, + "location": "Sydney, Australia", + "screen_name": "imprecise_matt", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "Matt Moor", + "profile_use_background_image": true, + "description": "Nerd on sabbatical, wandering the Canadian wilderness.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1201580935/flickr-icon_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 08 03:47:08 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1201580935/flickr-icon_normal.jpeg", + "favourites_count": 119, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684683613967761408", + "geo": { + "coordinates": [ + -33.89892438, + 151.17303696 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BAMb62hnIM_/", + "url": "https://t.co/d61F6f44cB", + "expanded_url": "https://www.instagram.com/p/BAMb62hnIM_/", + "indices": [ + 95, + 118 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 10:31:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0073b76548e5984f.json", + "country": "Australia", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + 150.520928608, + -34.1183470085 + ], + [ + 151.343020992, + -34.1183470085 + ], + [ + 151.343020992, + -33.578140996 + ], + [ + 150.520928608, + -33.578140996 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "AU", + "contained_within": [], + "full_name": "Sydney, New South Wales", + "id": "0073b76548e5984f", + "name": "Sydney" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684683613967761408, + "text": "Smashing it out of the park. Perfect mid-week meal - relaxed, inspired and just a little fun.\u2026 https://t.co/d61F6f44cB", + "coordinates": { + "coordinates": [ + 151.17303696, + -33.89892438 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 95345146, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2553, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/95345146/1363358539", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6326692", + "following": false, + "friends_count": 723, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mtrichardson.com", + "url": "http://t.co/B6G5M5NsF0", + "expanded_url": "http://mtrichardson.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1784, + "location": "Portland, Oregon", + "screen_name": "mtrichardson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 138, + "name": "Michael Richardson", + "profile_use_background_image": true, + "description": "Cofounder at Urban Airship. Senior Director of Product. My daughter's name is Blair.", + "url": "http://t.co/B6G5M5NsF0", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1268862681/avatar_512_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri May 25 20:56:14 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268862681/avatar_512_normal.jpg", + "favourites_count": 922, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": 587648379, + "possibly_sensitive": false, + "id_str": "684100682249416706", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/snowplowdata/s\u2026", + "url": "https://t.co/JbPmIOBfwt", + "expanded_url": "https://twitter.com/snowplowdata/status/683363168861564928", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SnowPlowData", + "id_str": "587648379", + "id": 587648379, + "indices": [ + 23, + 36 + ], + "name": "Snowplow" + } + ] + }, + "created_at": "Mon Jan 04 19:54:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "587648379", + "place": null, + "in_reply_to_screen_name": "SnowPlowData", + "in_reply_to_status_id_str": "683363168861564928", + "truncated": false, + "id": 684100682249416706, + "text": "This is really great \u2014 @snowplowdata now takes in Urban Airship Connect events. https://t.co/JbPmIOBfwt", + "coordinates": null, + "in_reply_to_status_id": 683363168861564928, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 6326692, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5157, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "47", + "following": false, + "friends_count": 1283, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "laughingmeme.org", + "url": "http://t.co/5T3mp4ceZu", + "expanded_url": "http://laughingmeme.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2346368/flow.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F5D91F", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 10965, + "location": "Brooklyn, NY", + "screen_name": "kellan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 532, + "name": "kellan", + "profile_use_background_image": true, + "description": "Looking for what's next. Previously CTO at Etsy, Flickr Architect. Technical solutions for social problems. #47 (A's dad)", + "url": "http://t.co/5T3mp4ceZu", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/457754650/01457d1a0f0e533062cd0d1033fb4d7a_normal.png", + "profile_background_color": "026BFA", + "created_at": "Fri Mar 24 03:13:02 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/457754650/01457d1a0f0e533062cd0d1033fb4d7a_normal.png", + "favourites_count": 20640, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "coates", + "in_reply_to_user_id": 14249124, + "in_reply_to_status_id_str": "685545686914469888", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685570448344612865", + "id": 685570448344612865, + "text": "@coates i dunno, trained on humans as input, consistency seems a tall order", + "in_reply_to_user_id_str": "14249124", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "coates", + "id_str": "14249124", + "id": 14249124, + "indices": [ + 0, + 7 + ], + "name": "Sean Coates" + } + ] + }, + "created_at": "Fri Jan 08 21:15:06 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685545686914469888, + "lang": "en" + }, + "default_profile_image": false, + "id": 47, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2346368/flow.jpg", + "statuses_count": 15195, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18593319", + "following": false, + "friends_count": 416, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/seanporter", + "url": "http://t.co/3Cme1MntgY", + "expanded_url": "http://about.me/seanporter", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685436014/e756f50b87ce80302edfaebfd8e5a61c.png", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 2090, + "location": "Hoth", + "screen_name": "portertech", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 179, + "name": "Sean Porter", + "profile_use_background_image": true, + "description": "Creator of @sensu. Partner at @heavywater. Open source hacker. Enthusiastic 40K player & hobbyist.", + "url": "http://t.co/3Cme1MntgY", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/608757468701704192/jpmlgzbT_normal.png", + "profile_background_color": "F5F5F5", + "created_at": "Sun Jan 04 02:36:11 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/608757468701704192/jpmlgzbT_normal.png", + "favourites_count": 8141, + "status": { + "retweet_count": 9420, + "retweeted_status": { + "retweet_count": 9420, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685415626945507328", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 614, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "type": "photo", + "indices": [ + 27, + 50 + ], + "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "display_url": "pic.twitter.com/4ZnTo0GI7T", + "id_str": "685415615138545664", + "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", + "id": 685415615138545664, + "url": "https://t.co/4ZnTo0GI7T" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 10:59:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685415626945507328, + "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1176, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685567156042383360", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 614, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "685415626945507328", + "url": "https://t.co/4ZnTo0GI7T", + "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "source_user_id_str": "2782137901", + "id_str": "685415615138545664", + "id": 685415615138545664, + "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "type": "photo", + "indices": [ + 48, + 71 + ], + "source_status_id": 685415626945507328, + "source_user_id": 2782137901, + "display_url": "pic.twitter.com/4ZnTo0GI7T", + "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "neil_finnweevil", + "id_str": "2782137901", + "id": 2782137901, + "indices": [ + 3, + 19 + ], + "name": "kiki montparnasse" + } + ] + }, + "created_at": "Fri Jan 08 21:02:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685567156042383360, + "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 18593319, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685436014/e756f50b87ce80302edfaebfd8e5a61c.png", + "statuses_count": 14073, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18593319/1441952542", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "87274687", + "following": false, + "friends_count": 1537, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "voodoowarez.com", + "url": "http://t.co/KnZD46iWAt", + "expanded_url": "http://voodoowarez.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": false, + "followers_count": 354, + "location": "", + "screen_name": "rektide", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 49, + "name": "rektide de la fey", + "profile_use_background_image": true, + "description": "just your average dj savior", + "url": "http://t.co/KnZD46iWAt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/534734516/bmstab_normal.png", + "profile_background_color": "709397", + "created_at": "Tue Nov 03 20:28:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534734516/bmstab_normal.png", + "favourites_count": 18785, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685577506548617216", + "id": 685577506548617216, + "text": "I _adore_ that I have a dbus script that can control Spotify locally, which controls the instance on my phone or tv or whatever\n\n$ sp play", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:43:09 +0000 2016", + "source": "TweetDeck", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685605975026356224", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "arrdem", + "id_str": "389468789", + "id": 389468789, + "indices": [ + 3, + 10 + ], + "name": "Reid McKenzie" + } + ] + }, + "created_at": "Fri Jan 08 23:36:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685605975026356224, + "text": "RT @arrdem: I _adore_ that I have a dbus script that can control Spotify locally, which controls the instance on my phone or tv or whatever\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 87274687, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 14509, + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "6727082", + "following": false, + "friends_count": 737, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tehgeekmeister.com", + "url": "https://t.co/11Ovl1Oxia", + "expanded_url": "http://tehgeekmeister.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000119168225/94818b67e1eb45b8750b78966197b2da.png", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "CC3366", + "geo_enabled": true, + "followers_count": 710, + "location": "Brooklyn, NY", + "screen_name": "tehgeekmeister", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 41, + "name": "FEBRUARY ICON", + "profile_use_background_image": false, + "description": "I'm a complicated person. I like code, law, philosophy, and economics. I talk about feelings.", + "url": "https://t.co/11Ovl1Oxia", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674691158954479616/atpe60CZ_normal.png", + "profile_background_color": "DBE9ED", + "created_at": "Mon Jun 11 02:13:24 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674691158954479616/atpe60CZ_normal.png", + "favourites_count": 7370, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "flippernaut", + "in_reply_to_user_id": 1061154589, + "in_reply_to_status_id_str": "685561003409461248", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685564168381050881", + "id": 685564168381050881, + "text": "@flippernaut \ud83d\udc96\ud83d\udc96\ud83d\udc96 I believe in you friend.", + "in_reply_to_user_id_str": "1061154589", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "flippernaut", + "id_str": "1061154589", + "id": 1061154589, + "indices": [ + 0, + 12 + ], + "name": "flippernaut" + } + ] + }, + "created_at": "Fri Jan 08 20:50:09 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685561003409461248, + "lang": "en" + }, + "default_profile_image": false, + "id": 6727082, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000119168225/94818b67e1eb45b8750b78966197b2da.png", + "statuses_count": 35034, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6727082/1356319039", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "9605192", + "following": false, + "friends_count": 1307, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dmpayton.com", + "url": "http://t.co/9iNkzlUKOI", + "expanded_url": "http://dmpayton.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "006699", + "geo_enabled": true, + "followers_count": 573, + "location": "Fresno, CA", + "screen_name": "dmpayton", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Derek Payton", + "profile_use_background_image": false, + "description": "I write code (usually in Python) and build web apps (usually with Django). @EditLLC, @FresnoHackNight, @FresnoPython, @FresnoCannabis, Motorcycles.", + "url": "http://t.co/9iNkzlUKOI", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/606706950890340352/657SPXsr_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 22 20:06:24 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/606706950890340352/657SPXsr_normal.jpg", + "favourites_count": 359, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685372588604788736", + "id": 685372588604788736, + "text": "Just learned the difference between [0-9] and \\d in regexes, and also that I've been doing it wrong in Django URLs. [0-9] is the way to go.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 08:08:53 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 9605192, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3796, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9605192/1443137594", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14100497", + "following": false, + "friends_count": 771, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jessenoller.com", + "url": "https://t.co/Hp1YGsizy9", + "expanded_url": "http://www.jessenoller.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "060C0F", + "geo_enabled": true, + "followers_count": 5733, + "location": "San Antonio, TX", + "screen_name": "jessenoller", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 467, + "name": "Jesse Noller", + "profile_use_background_image": true, + "description": "Director, Product Engineering /Developer Experience, Rackspace. The statements and opinions expressed here are my own, and not those of my employer.", + "url": "https://t.co/Hp1YGsizy9", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/538919770897125376/J1uagJeO_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Sat Mar 08 15:03:27 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/538919770897125376/J1uagJeO_normal.jpeg", + "favourites_count": 3915, + "status": { + "retweet_count": 3971, + "retweeted_status": { + "retweet_count": 3971, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685232104712585216", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 528, + "h": 960, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 618, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 528, + "h": 960, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", + "type": "photo", + "indices": [ + 65, + 88 + ], + "media_url": "http://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", + "display_url": "pic.twitter.com/MAxWB290GQ", + "id_str": "685232099226333184", + "expanded_url": "http://twitter.com/_DaisyRidley_/status/685232104712585216/photo/1", + "id": 685232099226333184, + "url": "https://t.co/MAxWB290GQ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 22:50:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685232104712585216, + "text": "\"Grandpa, that girl beat me up and took the lightsaber I wanted\" https://t.co/MAxWB290GQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5627, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685591850997043200", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 528, + "h": 960, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 618, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 528, + "h": 960, + "resize": "fit" + } + }, + "source_status_id_str": "685232104712585216", + "url": "https://t.co/MAxWB290GQ", + "media_url": "http://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", + "source_user_id_str": "3228495293", + "id_str": "685232099226333184", + "id": 685232099226333184, + "media_url_https": "https://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", + "type": "photo", + "indices": [ + 84, + 107 + ], + "source_status_id": 685232104712585216, + "source_user_id": 3228495293, + "display_url": "pic.twitter.com/MAxWB290GQ", + "expanded_url": "http://twitter.com/_DaisyRidley_/status/685232104712585216/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "_DaisyRidley_", + "id_str": "3228495293", + "id": 3228495293, + "indices": [ + 3, + 17 + ], + "name": "Daisy Ridley\u2744" + } + ] + }, + "created_at": "Fri Jan 08 22:40:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685591850997043200, + "text": "RT @_DaisyRidley_: \"Grandpa, that girl beat me up and took the lightsaber I wanted\" https://t.co/MAxWB290GQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14100497, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 54004, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14100497/1400509070", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "4412471", + "following": false, + "friends_count": 671, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "orvtech.com", + "url": "https://t.co/8Uy02IWCJy", + "expanded_url": "http://orvtech.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "55ACEE", + "geo_enabled": true, + "followers_count": 8237, + "location": "Interwebs", + "screen_name": "orvtech", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 143, + "name": "Oliver", + "profile_use_background_image": false, + "description": "Opinions are my own & do not represent my employer's view or any organization I am part of.", + "url": "https://t.co/8Uy02IWCJy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/679790242610556928/5ow1h5_v_normal.jpg", + "profile_background_color": "3B87C3", + "created_at": "Thu Apr 12 21:35:06 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/679790242610556928/5ow1h5_v_normal.jpg", + "favourites_count": 27552, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685544493106372608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/ceL6w0oCaj", + "url": "https://t.co/ceL6w0oCaj", + "expanded_url": "http://twitter.com/orvtech/status/685544493106372608/photo/1", + "indices": [ + 31, + 54 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "KyloR3n", + "id_str": "4625687418", + "id": 4625687418, + "indices": [ + 22, + 30 + ], + "name": "Emo Kylo Ren" + } + ] + }, + "created_at": "Fri Jan 08 19:31:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685544493106372608, + "text": "A bit more disneysee @KyloR3n https://t.co/ceL6w0oCaj", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 4412471, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 31858, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4412471/1433292877", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "39851654", + "following": false, + "friends_count": 794, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "getoutfitted.com", + "url": "http://t.co/YMPGEhW8Mn", + "expanded_url": "http://www.getoutfitted.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 659, + "location": "Colorado Springs / Boulder", + "screen_name": "spencernorman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Spencer Norman", + "profile_use_background_image": true, + "description": "Software Engineering @GetOutfitted.", + "url": "http://t.co/YMPGEhW8Mn", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/450022947864842240/P9bqZfQs_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Wed May 13 22:13:21 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/450022947864842240/P9bqZfQs_normal.jpeg", + "favourites_count": 2622, + "status": { + "retweet_count": 16, + "retweeted_status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684940742234619904", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 738, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 832, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 471, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", + "type": "photo", + "indices": [ + 14, + 37 + ], + "media_url": "http://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", + "display_url": "pic.twitter.com/8YgqN4dy0z", + "id_str": "684940737985777664", + "expanded_url": "http://twitter.com/devinbanerjee/status/684940742234619904/photo/1", + "id": 684940737985777664, + "url": "https://t.co/8YgqN4dy0z" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 7, + 13 + ], + "text": "China" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 03:32:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684940742234619904, + "text": "Wow in #China https://t.co/8YgqN4dy0z", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685329870973308928", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 738, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 832, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 471, + "resize": "fit" + } + }, + "source_status_id_str": "684940742234619904", + "url": "https://t.co/8YgqN4dy0z", + "media_url": "http://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", + "source_user_id_str": "46165612", + "id_str": "684940737985777664", + "id": 684940737985777664, + "media_url_https": "https://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", + "type": "photo", + "indices": [ + 33, + 56 + ], + "source_status_id": 684940742234619904, + "source_user_id": 46165612, + "display_url": "pic.twitter.com/8YgqN4dy0z", + "expanded_url": "http://twitter.com/devinbanerjee/status/684940742234619904/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 26, + 32 + ], + "text": "China" + } + ], + "user_mentions": [ + { + "screen_name": "devinbanerjee", + "id_str": "46165612", + "id": 46165612, + "indices": [ + 3, + 17 + ], + "name": "Devin Banerjee" + } + ] + }, + "created_at": "Fri Jan 08 05:19:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685329870973308928, + "text": "RT @devinbanerjee: Wow in #China https://t.co/8YgqN4dy0z", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 39851654, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 1707, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "55090980", + "following": false, + "friends_count": 224, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nathanbowser.com", + "url": "http://t.co/qGUXQj4YRN", + "expanded_url": "http://nathanbowser.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 159, + "location": "Philadelphia, PA", + "screen_name": "nathanbowser", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Nathan Bowser", + "profile_use_background_image": true, + "description": "JavaScript and tacos.", + "url": "http://t.co/qGUXQj4YRN", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000637876269/63d287afc301ffdeaab69e57dda7fbb1_normal.jpeg", + "profile_background_color": "352726", + "created_at": "Thu Jul 09 01:00:34 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000637876269/63d287afc301ffdeaab69e57dda7fbb1_normal.jpeg", + "favourites_count": 128, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "scttor", + "in_reply_to_user_id": 1030894430, + "in_reply_to_status_id_str": "672926644517122049", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "672931830602080256", + "id": 672931830602080256, + "text": "@scttor I'd call dibs on that ear.", + "in_reply_to_user_id_str": "1030894430", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "scttor", + "id_str": "1030894430", + "id": 1030894430, + "indices": [ + 0, + 7 + ], + "name": "Scott O'Reilly" + } + ] + }, + "created_at": "Sat Dec 05 00:13:45 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 672926644517122049, + "lang": "en" + }, + "default_profile_image": false, + "id": 55090980, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 1047, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "249150277", + "following": false, + "friends_count": 471, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pinboard.in/u:mcelaney", + "url": "http://t.co/yg55zJXrC1", + "expanded_url": "http://pinboard.in/u:mcelaney", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 691, + "location": "Philadelphia PA", + "screen_name": "McElaney", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "Brian E. McElaney", + "profile_use_background_image": true, + "description": "Philly-based Ruby developer, pitmaster, homebrewer, and benevolent skeptic.", + "url": "http://t.co/yg55zJXrC1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/610797829569818624/8kkUJvjv_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 08 13:40:07 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/610797829569818624/8kkUJvjv_normal.jpg", + "favourites_count": 1179, + "status": { + "retweet_count": 29, + "retweeted_status": { + "retweet_count": 29, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684717652435152898", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 480, + "h": 480, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 480, + "h": 480, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", + "type": "photo", + "indices": [ + 88, + 111 + ], + "media_url": "http://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", + "display_url": "pic.twitter.com/TxPt3WcFGm", + "id_str": "684717652300926978", + "expanded_url": "http://twitter.com/JimFKenney/status/684717652435152898/photo/1", + "id": 684717652300926978, + "url": "https://t.co/TxPt3WcFGm" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 12:46:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684717652435152898, + "text": "Needless to say, Mr. Douglas was a very smart man. Let's try finally to get this right. https://t.co/TxPt3WcFGm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 57, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685517687376707584", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 480, + "h": 480, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 480, + "h": 480, + "resize": "fit" + } + }, + "source_status_id_str": "684717652435152898", + "url": "https://t.co/TxPt3WcFGm", + "media_url": "http://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", + "source_user_id_str": "376874694", + "id_str": "684717652300926978", + "id": 684717652300926978, + "media_url_https": "https://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", + "type": "photo", + "indices": [ + 104, + 127 + ], + "source_status_id": 684717652435152898, + "source_user_id": 376874694, + "display_url": "pic.twitter.com/TxPt3WcFGm", + "expanded_url": "http://twitter.com/JimFKenney/status/684717652435152898/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JimFKenney", + "id_str": "376874694", + "id": 376874694, + "indices": [ + 3, + 14 + ], + "name": "Jim Kenney" + } + ] + }, + "created_at": "Fri Jan 08 17:45:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685517687376707584, + "text": "RT @JimFKenney: Needless to say, Mr. Douglas was a very smart man. Let's try finally to get this right. https://t.co/TxPt3WcFGm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 249150277, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 11364, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/249150277/1406138248", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "68474641", + "following": false, + "friends_count": 2024, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/lucperkins", + "url": "https://t.co/Lz8bR8DQDW", + "expanded_url": "https://github.com/lucperkins", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/665893188/0e8e5eddffa1acfdf680e461f23b4d08.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1203, + "location": "Portland, OR", + "screen_name": "lucperkins", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 74, + "name": "Luc Perkins", + "profile_use_background_image": true, + "description": "Technical writer @Twitter. Feminist, basic income advocate, SJW, political philosophy PhD. Ex @basho @janrain @appfog @Reed_College_ @DukeU. Deutschsprecher.", + "url": "https://t.co/Lz8bR8DQDW", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/618824444501360640/uQJv3b6q_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Mon Aug 24 18:27:00 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618824444501360640/uQJv3b6q_normal.jpg", + "favourites_count": 801, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "lucperkins", + "in_reply_to_user_id": 68474641, + "in_reply_to_status_id_str": "685487863220158464", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685488531540590592", + "id": 685488531540590592, + "text": "@brianloveswords In all seriousness, tho, I non-ironically love that song", + "in_reply_to_user_id_str": "68474641", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "brianloveswords", + "id_str": "17177251", + "id": 17177251, + "indices": [ + 0, + 16 + ], + "name": "spacer.tiff" + } + ] + }, + "created_at": "Fri Jan 08 15:49:36 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685487863220158464, + "lang": "en" + }, + "default_profile_image": false, + "id": 68474641, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/665893188/0e8e5eddffa1acfdf680e461f23b4d08.jpeg", + "statuses_count": 10254, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/68474641/1431496573", + "is_translator": false + }, + { + "time_zone": "New Delhi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "14918557", + "following": false, + "friends_count": 670, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "stackoverflow.com/users/66945/ri\u2026", + "url": "https://t.co/4gPwhcfhtk", + "expanded_url": "http://stackoverflow.com/users/66945/rishav-rastogi", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 706, + "location": "San Jose, CA", + "screen_name": "rishavrastogi", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "Rishav Rastogi", + "profile_use_background_image": false, + "description": "Software Developer. Startup guy.", + "url": "https://t.co/4gPwhcfhtk", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/565590382205890560/LJVHh05U_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue May 27 08:44:18 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/565590382205890560/LJVHh05U_normal.jpeg", + "favourites_count": 439, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685584158291173376", + "id": 685584158291173376, + "text": "Just a test. Can you see this poll?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:09:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14918557, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 7008, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14918557/1423682170", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "170793777", + "following": false, + "friends_count": 524, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "logikal.is", + "url": "http://t.co/5LKgsNQZbU", + "expanded_url": "http://logikal.is", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/823703100/15e689e9865ec4b38a96b19c5312db85.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "D19A02", + "geo_enabled": true, + "followers_count": 263, + "location": "trapped in a server", + "screen_name": "log1kal", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Sean Kilgore", + "profile_use_background_image": true, + "description": "automation automaton. opsing all the things.", + "url": "http://t.co/5LKgsNQZbU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3730798340/2c44dc296c86edad7253fcf84532a525_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Sun Jul 25 19:54:54 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3730798340/2c44dc296c86edad7253fcf84532a525_normal.jpeg", + "favourites_count": 676, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "obfuscurity", + "in_reply_to_user_id": 66432490, + "in_reply_to_status_id_str": "677204834156724225", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677204910794936320", + "id": 677204910794936320, + "text": "@obfuscurity how can I aquire one of these?!", + "in_reply_to_user_id_str": "66432490", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "obfuscurity", + "id_str": "66432490", + "id": 66432490, + "indices": [ + 0, + 12 + ], + "name": "even tho it ass" + } + ] + }, + "created_at": "Wed Dec 16 19:13:27 +0000 2015", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 677204834156724225, + "lang": "en" + }, + "default_profile_image": false, + "id": 170793777, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/823703100/15e689e9865ec4b38a96b19c5312db85.jpeg", + "statuses_count": 2172, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/170793777/1376898775", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17697991", + "following": false, + "friends_count": 186, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1351, + "location": "California", + "screen_name": "pradeep24", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 91, + "name": "Pradeep Elankumaran", + "profile_use_background_image": false, + "description": "Emerging products & growth at Yahoo. Formerly growth at Lyft, co-founder & ceo of Kicksend", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000727552294/a4b4c3b199c28f19159073dd75a921a8_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Nov 28 03:41:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000727552294/a4b4c3b199c28f19159073dd75a921a8_normal.jpeg", + "favourites_count": 2318, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684150428771192832", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ridechar.io/p6x31", + "url": "https://t.co/WoGBa0ahEm", + "expanded_url": "http://ridechar.io/p6x31", + "indices": [ + 22, + 45 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 23:12:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "et", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684150428771192832, + "text": "MV -> SOMA shuttle https://t.co/WoGBa0ahEm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 17697991, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 9325, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17697991/1422888784", + "is_translator": false + }, + { + "time_zone": "Brisbane", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 36000, + "id_str": "180539215", + "following": false, + "friends_count": 45, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000004768931/039605008ade649e7e3ef9e2c035e56d.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 396, + "location": "", + "screen_name": "nerd___rage", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Swathe", + "profile_use_background_image": true, + "description": "Psychopath. Chelsea F.C.", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682124739171627009/KUgdNpei_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Aug 19 21:57:38 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682124739171627009/KUgdNpei_normal.jpg", + "favourites_count": 270, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685396731538767872", + "id": 685396731538767872, + "text": "3-0 at half time lmao what the fuck Victory the Mariners are smashing you cunts", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 09:44:49 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 180539215, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000004768931/039605008ade649e7e3ef9e2c035e56d.jpeg", + "statuses_count": 13450, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/180539215/1450678253", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "9580822", + "following": false, + "friends_count": 130, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "omniti.com", + "url": "https://t.co/A0Gq4WHzr9", + "expanded_url": "http://omniti.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/284711510/spiral-small.jpg", + "notifications": false, + "profile_sidebar_fill_color": "3B3A3B", + "profile_link_color": "F08A5B", + "geo_enabled": true, + "followers_count": 4384, + "location": "", + "screen_name": "postwait", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 313, + "name": "Theo Schlossnagle", + "profile_use_background_image": true, + "description": "On sabbatical seeing Earth and it's peoples.\nFounder at Circonus, Message Systems, Fontdeck, OmniTI.\nDad.", + "url": "https://t.co/A0Gq4WHzr9", + "profile_text_color": "E6E6E6", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/455795509651722240/rGKrlwZF_normal.jpeg", + "profile_background_color": "F2EEEF", + "created_at": "Sun Oct 21 15:32:43 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "808080", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/455795509651722240/rGKrlwZF_normal.jpeg", + "favourites_count": 392, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0101d60e7d6aa007.json", + "country": "Vi\u1ec7t Nam", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + 106.331083, + 10.8634421 + ], + [ + 106.966712, + 10.8634421 + ], + [ + 106.966712, + 11.499635 + ], + [ + 106.331083, + 11.499635 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "VN", + "contained_within": [], + "full_name": "B\u00ecnh D\u01b0\u01a1ng, Vietnam", + "id": "0101d60e7d6aa007", + "name": "B\u00ecnh D\u01b0\u01a1ng" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685330458746331136", + "id": 685330458746331136, + "text": "OH \"I wasn't brainwashed by propaganda b/c I have anti-brainwashing in my mind and heart... The Bible.\" Sometimes #irony can be deafening.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 114, + 120 + ], + "text": "irony" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 05:21:28 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 9580822, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/284711510/spiral-small.jpg", + "statuses_count": 8974, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9580822/1399549729", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15943764", + "following": false, + "friends_count": 262, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "castro.io", + "url": "https://t.co/IdQQKcCe7g", + "expanded_url": "https://castro.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 562, + "location": "Philadelphia, PA", + "screen_name": "hectcastro", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Hector Castro", + "profile_use_background_image": true, + "description": "Sometimes I'm good at analogies. Operations Engineer at @azavea. I also once hustled for @basho.", + "url": "https://t.co/IdQQKcCe7g", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/496839851887427587/7VfJpRgT_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri Aug 22 11:43:54 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/496839851887427587/7VfJpRgT_normal.jpeg", + "favourites_count": 1336, + "status": { + "retweet_count": 67, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "TMobileHelp", + "in_reply_to_user_id": 185728888, + "in_reply_to_status_id_str": "685219557879975936", + "retweet_count": 67, + "truncated": false, + "retweeted": false, + "id_str": "685220010499817472", + "id": 685220010499817472, + "text": "@TMobileHelp Okay, will do. @JohnLegere -- if you call 1 (877) 453-1304 -- someone will talk you through looking up EFF on Wikipedia and CN", + "in_reply_to_user_id_str": "185728888", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TMobileHelp", + "id_str": "185728888", + "id": 185728888, + "indices": [ + 0, + 12 + ], + "name": "T-Mobile USA" + }, + { + "screen_name": "JohnLegere", + "id_str": "1394399438", + "id": 1394399438, + "indices": [ + 28, + 39 + ], + "name": "John Legere" + } + ] + }, + "created_at": "Thu Jan 07 22:02:35 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 182, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685219557879975936, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685236026965671938", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mattl", + "id_str": "661723", + "id": 661723, + "indices": [ + 3, + 9 + ], + "name": "mattl" + }, + { + "screen_name": "TMobileHelp", + "id_str": "185728888", + "id": 185728888, + "indices": [ + 11, + 23 + ], + "name": "T-Mobile USA" + }, + { + "screen_name": "JohnLegere", + "id_str": "1394399438", + "id": 1394399438, + "indices": [ + 39, + 50 + ], + "name": "John Legere" + } + ] + }, + "created_at": "Thu Jan 07 23:06:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685236026965671938, + "text": "RT @mattl: @TMobileHelp Okay, will do. @JohnLegere -- if you call 1 (877) 453-1304 -- someone will talk you through looking up EFF on Wikip\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 15943764, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 8897, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15943764/1357190546", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "28828401", + "following": false, + "friends_count": 425, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tsantero.com", + "url": "https://t.co/rtMPFzpYez", + "expanded_url": "http://tsantero.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1687, + "location": "Fort Collins, CO", + "screen_name": "tsantero", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 75, + "name": "Tom Santero", + "profile_use_background_image": false, + "description": "Philosophy Scientist, Engineer, Lover.", + "url": "https://t.co/rtMPFzpYez", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667737106203078656/CL1aQe40_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Apr 04 17:03:47 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667737106203078656/CL1aQe40_normal.jpg", + "favourites_count": 21290, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/b2e4e65d7b80d2c1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -105.148074, + 40.47168 + ], + [ + -104.979811, + 40.47168 + ], + [ + -104.979811, + 40.656701 + ], + [ + -105.148074, + 40.656701 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Fort Collins, CO", + "id": "b2e4e65d7b80d2c1", + "name": "Fort Collins" + }, + "in_reply_to_screen_name": "andrew_j_stone", + "in_reply_to_user_id": 318079932, + "in_reply_to_status_id_str": "685573885928984576", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685574403682254848", + "id": 685574403682254848, + "text": "@andrew_j_stone nah, because Wood drastically underestimates the the impact of social distinctions on catnip, especially inherited catnip", + "in_reply_to_user_id_str": "318079932", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "andrew_j_stone", + "id_str": "318079932", + "id": 318079932, + "indices": [ + 0, + 15 + ], + "name": "Ass Warfare" + } + ] + }, + "created_at": "Fri Jan 08 21:30:49 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685573885928984576, + "lang": "en" + }, + "default_profile_image": false, + "id": 28828401, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 28305, + "is_translator": false + }, + { + "time_zone": "Indiana (East)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "158098153", + "following": false, + "friends_count": 383, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 271, + "location": "Albany NY", + "screen_name": "GavinInNY", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "gavin", + "profile_use_background_image": true, + "description": "Chief Architect at CommerceHub. JVM enthusiast, Dad (headshot: @scottduclos)", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/485093069818437634/qiTdZW49_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jun 21 19:40:09 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/485093069818437634/qiTdZW49_normal.jpeg", + "favourites_count": 2432, + "status": { + "retweet_count": 5, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 5, + "truncated": false, + "retweeted": false, + "id_str": "685287144823324673", + "id": 685287144823324673, + "text": "Outstanding! We gain 2 minutes of daylight tomorrow. Sun rises a minute earlier, sets a minute later. #BabySteps #thatswhatimtalkinabout", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 105, + 115 + ], + "text": "BabySteps" + }, + { + "indices": [ + 116, + 139 + ], + "text": "thatswhatimtalkinabout" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:29:22 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 6, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685296133267128320", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 124, + 134 + ], + "text": "BabySteps" + }, + { + "indices": [ + 135, + 140 + ], + "text": "thatswhatimtalkinabout" + } + ], + "user_mentions": [ + { + "screen_name": "Jason_Weather", + "id_str": "28174351", + "id": 28174351, + "indices": [ + 3, + 17 + ], + "name": "Jason Gough" + } + ] + }, + "created_at": "Fri Jan 08 03:05:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685296133267128320, + "text": "RT @Jason_Weather: Outstanding! We gain 2 minutes of daylight tomorrow. Sun rises a minute earlier, sets a minute later. #BabySteps #tha\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 158098153, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6805, + "is_translator": false + }, + { + "time_zone": "Chennai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "19160166", + "following": false, + "friends_count": 1844, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nigelb.me", + "url": "http://t.co/RLGfC4EpR8", + "expanded_url": "http://nigelb.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": false, + "followers_count": 2054, + "location": "Delhi / IRC", + "screen_name": "nigelbabu", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 166, + "name": "nigelb", + "profile_use_background_image": true, + "description": "Consulting Web Developer and sysadmin. Professional yak shaver. Loves running and climbing.", + "url": "http://t.co/RLGfC4EpR8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/616830722779779072/xVDF7YgV_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Sun Jan 18 22:18:01 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/616830722779779072/xVDF7YgV_normal.jpg", + "favourites_count": 20812, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "atti_cus", + "in_reply_to_user_id": 242873592, + "in_reply_to_status_id_str": "685460996580720640", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685461280291860480", + "id": 685461280291860480, + "text": "@atti_cus Lol.", + "in_reply_to_user_id_str": "242873592", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "atti_cus", + "id_str": "242873592", + "id": 242873592, + "indices": [ + 0, + 9 + ], + "name": "Dushyant Arora" + } + ] + }, + "created_at": "Fri Jan 08 14:01:19 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685460996580720640, + "lang": "und" + }, + "default_profile_image": false, + "id": 19160166, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 59823, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19160166/1447393938", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13857342", + "following": false, + "friends_count": 702, + "entities": { + "description": { + "urls": [ + { + "display_url": "keybase.io/freebsdgirl", + "url": "https://t.co/okBqI4N0Pg", + "expanded_url": "http://keybase.io/freebsdgirl", + "indices": [ + 69, + 92 + ] + }, + { + "display_url": "patreon.com/freebsdgirl", + "url": "https://t.co/zadlXVRLW5", + "expanded_url": "http://patreon.com/freebsdgirl", + "indices": [ + 93, + 116 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "blog.randi.io", + "url": "https://t.co/OWOqcXQCyx", + "expanded_url": "http://blog.randi.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 18448, + "location": "Portland, OR", + "screen_name": "randileeharper", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 818, + "name": "Randi Lee Harper", + "profile_use_background_image": true, + "description": "Author, @ggautoblocker. Founder, Online Abuse Prevention Initiative. https://t.co/okBqI4N0Pg https://t.co/zadlXVRLW5 randi@onlineabuseprevention.org", + "url": "https://t.co/OWOqcXQCyx", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685350328884015106/N5-h9tIu_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sat Feb 23 07:27:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685350328884015106/N5-h9tIu_normal.jpg", + "favourites_count": 42468, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.7900653, + 45.421863 + ], + [ + -122.471751, + 45.421863 + ], + [ + -122.471751, + 45.6509405 + ], + [ + -122.7900653, + 45.6509405 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Portland, OR", + "id": "ac88a4f17a51c7fc", + "name": "Portland" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685607385524654080", + "id": 685607385524654080, + "text": "Is it weird that I'm relieved that I'm feeling sad? Like I didn't know if I was capable of feeling that way anymore.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:41:53 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 8, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 13857342, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 89188, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13857342/1418112584", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14317497", + "following": false, + "friends_count": 1504, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/justinsheehy", + "url": "https://t.co/t7mUz5MyD1", + "expanded_url": "http://about.me/justinsheehy", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 4147, + "location": "", + "screen_name": "justinsheehy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 234, + "name": "Justin Sheehy", + "profile_use_background_image": true, + "description": "", + "url": "https://t.co/t7mUz5MyD1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/416962456997470208/WqPwCIXj_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Sun Apr 06 20:15:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/416962456997470208/WqPwCIXj_normal.jpeg", + "favourites_count": 135, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "threadwaste", + "in_reply_to_user_id": 24881503, + "in_reply_to_status_id_str": "685487207877095428", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685488454415826944", + "id": 685488454415826944, + "text": "@threadwaste That one is Winnimere, from Cellars at Jasper Hill. Raw milk, rind washed in Hill Farmstead beer, wrapped in spruce.", + "in_reply_to_user_id_str": "24881503", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "threadwaste", + "id_str": "24881503", + "id": 24881503, + "indices": [ + 0, + 12 + ], + "name": "Anthony M." + } + ] + }, + "created_at": "Fri Jan 08 15:49:17 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685487207877095428, + "lang": "en" + }, + "default_profile_image": false, + "id": 14317497, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 8063, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "710133", + "following": false, + "friends_count": 460, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "davekonopka.com", + "url": "http://t.co/Fxmr2QSUlM", + "expanded_url": "http://davekonopka.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000087740435/48c888b21a8d6161239296e9c00140ba.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "D67200", + "geo_enabled": false, + "followers_count": 737, + "location": "Glenside, PA", + "screen_name": "davekonopka", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 54, + "name": "Dave Konopka", + "profile_use_background_image": true, + "description": "I like rain. I like ham. I like you.\n\nOps engineer. Philly DevOps meetup co-organizer.", + "url": "http://t.co/Fxmr2QSUlM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000477832092/7ce845a98db20fbd4f5f22f266b447ea_normal.jpeg", + "profile_background_color": "FFE2B0", + "created_at": "Fri Jan 26 18:43:11 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000477832092/7ce845a98db20fbd4f5f22f266b447ea_normal.jpeg", + "favourites_count": 1566, + "status": { + "retweet_count": 55, + "retweeted_status": { + "retweet_count": 55, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684840868587540480", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "kottke.org/16/01/two-satu\u2026", + "url": "https://t.co/ilvZDE5ihs", + "expanded_url": "http://kottke.org/16/01/two-saturnian-moons-lined-up", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 20:56:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684840868587540480, + "text": "The Cassini spacecraft took a photo of two moons of Saturn, beautifully aligned https://t.co/ilvZDE5ihs", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 74, + "contributors": null, + "source": "kottke tweeter" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685261072245387268", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "kottke.org/16/01/two-satu\u2026", + "url": "https://t.co/ilvZDE5ihs", + "expanded_url": "http://kottke.org/16/01/two-saturnian-moons-lined-up", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kottke", + "id_str": "14120215", + "id": 14120215, + "indices": [ + 3, + 10 + ], + "name": "kottke.org" + } + ] + }, + "created_at": "Fri Jan 08 00:45:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685261072245387268, + "text": "RT @kottke: The Cassini spacecraft took a photo of two moons of Saturn, beautifully aligned https://t.co/ilvZDE5ihs", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 710133, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000087740435/48c888b21a8d6161239296e9c00140ba.png", + "statuses_count": 10061, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/710133/1398839750", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8412", + "following": false, + "friends_count": 603, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dangerouslyawesome.com/podcast/", + "url": "https://t.co/dEmictB8xr", + "expanded_url": "http://dangerouslyawesome.com/podcast/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4272/banner_pattern.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFF000", + "profile_link_color": "3F3F3F", + "geo_enabled": true, + "followers_count": 10092, + "location": "Philadelphia, PA", + "screen_name": "alexhillman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 768, + "name": "Alex Hillman", + "profile_use_background_image": true, + "description": "\u2764\ufe0f @hocksncoqs.\n\nI like to share what I've learned building @indyhall to help people build better businesses and community. #Coworking is my jam.", + "url": "https://t.co/dEmictB8xr", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674017499118178306/igxZQIno_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Oct 11 11:19:35 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674017499118178306/igxZQIno_normal.jpg", + "favourites_count": 18389, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685589323329204224", + "id": 685589323329204224, + "text": "Success = being the boss you need to be so you can be your own boss. Think about it.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:30:06 +0000 2016", + "source": "Meet Edgar", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 8412, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4272/banner_pattern.gif", + "statuses_count": 58699, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8412/1449533206", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "44689224", + "following": false, + "friends_count": 1307, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 506, + "location": "Philadelphia", + "screen_name": "KevinClough", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Kevin Clough", + "profile_use_background_image": true, + "description": "Full stack developer with a passion for mobile, activism and civic hacking.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2655424631/0fbfa93596945de52e228ccfad2a4b34_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 04 18:59:00 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2655424631/0fbfa93596945de52e228ccfad2a4b34_normal.jpeg", + "favourites_count": 873, + "status": { + "retweet_count": 72409, + "retweeted_status": { + "retweet_count": 72409, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684020629897621508", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "vine.co/v/ibFH7bQVaHK", + "url": "https://t.co/fmoRaxTAlV", + "expanded_url": "https://vine.co/v/ibFH7bQVaHK", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 14:36:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684020629897621508, + "text": "Watching a raccoon accidentally dissolve his candyfloss in a puddle has really put my troubles in perspective. https://t.co/fmoRaxTAlV", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 76542, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684248130230087680", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "vine.co/v/ibFH7bQVaHK", + "url": "https://t.co/fmoRaxTAlV", + "expanded_url": "https://vine.co/v/ibFH7bQVaHK", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RyanJohnNelson", + "id_str": "284183389", + "id": 284183389, + "indices": [ + 3, + 18 + ], + "name": "Ryan Nelson" + } + ] + }, + "created_at": "Tue Jan 05 05:40:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684248130230087680, + "text": "RT @RyanJohnNelson: Watching a raccoon accidentally dissolve his candyfloss in a puddle has really put my troubles in perspective. https://\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 44689224, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1683, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "16738744", + "following": false, + "friends_count": 439, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 383, + "location": "", + "screen_name": "bakins", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Brian Akins", + "profile_use_background_image": true, + "description": "Any opinions are my own.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2390796647/s1cdkmi6werv9q5uqxwo_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Oct 14 14:39:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2390796647/s1cdkmi6werv9q5uqxwo_normal.jpeg", + "favourites_count": 4312, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "JAkins490", + "in_reply_to_user_id": 332033511, + "in_reply_to_status_id_str": "685593014690033667", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685602376812740608", + "id": 685602376812740608, + "text": "@jakins490 pre-ordered months ago ;)", + "in_reply_to_user_id_str": "332033511", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JAkins490", + "id_str": "332033511", + "id": 332033511, + "indices": [ + 0, + 10 + ], + "name": "Qui-Gon Josh" + } + ] + }, + "created_at": "Fri Jan 08 23:21:59 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685593014690033667, + "lang": "en" + }, + "default_profile_image": false, + "id": 16738744, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3218, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16738744/1432739558", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14443775", + "following": false, + "friends_count": 302, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "johnryding.com", + "url": "https://t.co/NPItuiGmAx", + "expanded_url": "http://www.johnryding.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 562, + "location": "Chicago, IL", + "screen_name": "strife25", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 36, + "name": "John", + "profile_use_background_image": true, + "description": "| (\u2022 \u25e1\u2022)| (\u274d\u1d25\u274d\u028b)", + "url": "https://t.co/NPItuiGmAx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648682085520019456/K5_LqyUI_normal.jpg", + "profile_background_color": "131516", + "created_at": "Sat Apr 19 15:00:51 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648682085520019456/K5_LqyUI_normal.jpg", + "favourites_count": 74, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685506438047739904", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "24ways.org/2015/solve-the\u2026", + "url": "https://t.co/bwUSnLbUBW", + "expanded_url": "https://24ways.org/2015/solve-the-hard-problems/?utm_source=Software+Lead+Weekly&utm_campaign=c06b22b60e-SWLW_163&utm_medium=email&utm_term=0_efe3d3cd5b-c06b22b60e-198271457", + "indices": [ + 34, + 57 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:00:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685506438047739904, + "text": "Solve the Hard Problems \u25c6 24 ways https://t.co/bwUSnLbUBW", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "OS X" + }, + "default_profile_image": false, + "id": 14443775, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 9653, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16891384", + "following": false, + "friends_count": 272, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "threeriversinstitute.org", + "url": "http://t.co/84mHDZpXNN", + "expanded_url": "http://www.threeriversinstitute.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 91039, + "location": "Southern Oregon", + "screen_name": "KentBeck", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4288, + "name": "Kent Beck", + "profile_use_background_image": true, + "description": "Programmer, author, father, husband, goat farmer", + "url": "http://t.co/84mHDZpXNN", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2550670043/xq10bqclqpsezgerjxhi_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Tue Oct 21 18:56:26 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2550670043/xq10bqclqpsezgerjxhi_normal.jpeg", + "favourites_count": 1377, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "geeksam", + "in_reply_to_user_id": 38699900, + "in_reply_to_status_id_str": "685597778236444673", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685598859343433729", + "id": 685598859343433729, + "text": "@geeksam treat flat profiles as a design problem, not a tuning problem. what design, if i had it, would concentrate this perf in one area?", + "in_reply_to_user_id_str": "38699900", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "geeksam", + "id_str": "38699900", + "id": 38699900, + "indices": [ + 0, + 8 + ], + "name": "Sam Livingston-Gray" + } + ] + }, + "created_at": "Fri Jan 08 23:08:00 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685597778236444673, + "lang": "en" + }, + "default_profile_image": false, + "id": 16891384, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 9370, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16891384/1398795436", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16665197", + "following": false, + "friends_count": 387, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "martinfowler.com", + "url": "http://t.co/zJOC4bh4Tv", + "expanded_url": "http://www.martinfowler.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/59018302/PICT0019__1_.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 160990, + "location": "Boston", + "screen_name": "martinfowler", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 6020, + "name": "Martin Fowler", + "profile_use_background_image": true, + "description": "Programmer, Loud Mouth, ThoughtWorker", + "url": "http://t.co/zJOC4bh4Tv", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/79787739/mf-tg-sq_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Thu Oct 09 12:20:58 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/79787739/mf-tg-sq_normal.jpg", + "favourites_count": 22, + "status": { + "retweet_count": 108, + "retweeted_status": { + "retweet_count": 108, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685370406581080065", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 400, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 227, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", + "type": "photo", + "indices": [ + 38, + 61 + ], + "media_url": "http://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", + "display_url": "pic.twitter.com/MSJj7LUpKi", + "id_str": "685181863279865857", + "expanded_url": "http://twitter.com/KevlinHenney/status/685370406581080065/photo/1", + "id": 685181863279865857, + "url": "https://t.co/MSJj7LUpKi" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 16, + 25 + ], + "text": "RoyBatty" + }, + { + "indices": [ + 26, + 37 + ], + "text": "InceptDate" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 08:00:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685370406581080065, + "text": "Happy Birthday!\n#RoyBatty #InceptDate https://t.co/MSJj7LUpKi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 46, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685548261126615044", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 599, + "h": 400, + "resize": "fit" + }, + "medium": { + "w": 599, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 227, + "resize": "fit" + } + }, + "source_status_id_str": "685370406581080065", + "url": "https://t.co/MSJj7LUpKi", + "media_url": "http://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", + "source_user_id_str": "47378354", + "id_str": "685181863279865857", + "id": 685181863279865857, + "media_url_https": "https://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", + "type": "photo", + "indices": [ + 56, + 79 + ], + "source_status_id": 685370406581080065, + "source_user_id": 47378354, + "display_url": "pic.twitter.com/MSJj7LUpKi", + "expanded_url": "http://twitter.com/KevlinHenney/status/685370406581080065/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 34, + 43 + ], + "text": "RoyBatty" + }, + { + "indices": [ + 44, + 55 + ], + "text": "InceptDate" + } + ], + "user_mentions": [ + { + "screen_name": "KevlinHenney", + "id_str": "47378354", + "id": 47378354, + "indices": [ + 3, + 16 + ], + "name": "Kevlin Henney" + } + ] + }, + "created_at": "Fri Jan 08 19:46:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685548261126615044, + "text": "RT @KevlinHenney: Happy Birthday!\n#RoyBatty #InceptDate https://t.co/MSJj7LUpKi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16665197, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/59018302/PICT0019__1_.jpg", + "statuses_count": 5490, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16665197/1397571102", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "50090898", + "following": false, + "friends_count": 153, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "developers.google.com", + "url": "http://t.co/aBJokfscjb", + "expanded_url": "http://developers.google.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486184704068943873/bhxzl6UL.png", + "notifications": false, + "profile_sidebar_fill_color": "E6E8EB", + "profile_link_color": "4585F1", + "geo_enabled": true, + "followers_count": 1557420, + "location": "", + "screen_name": "googledevs", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 14753, + "name": "Google Developers", + "profile_use_background_image": true, + "description": "News about and from Google developers.", + "url": "http://t.co/aBJokfscjb", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/656606791694848000/wBjKn0ol_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jun 23 20:25:29 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/656606791694848000/wBjKn0ol_normal.png", + "favourites_count": 146, + "status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685582433757097984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "goo.gl/Mf0ekM", + "url": "https://t.co/WxPDxUxrrX", + "expanded_url": "https://goo.gl/Mf0ekM", + "indices": [ + 120, + 143 + ] + } + ], + "hashtags": [ + { + "indices": [ + 38, + 46 + ], + "text": "DevShow" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:02:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685582433757097984, + "text": "It's a new year & new episodes of #DevShow start up next week. Until then, catch up on all the holiday videos here: https://t.co/WxPDxUxrrX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 24, + "contributors": null, + "source": "Sprinklr" + }, + "default_profile_image": false, + "id": 50090898, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486184704068943873/bhxzl6UL.png", + "statuses_count": 2795, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/50090898/1433269328", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13334762", + "following": false, + "friends_count": 174, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com", + "url": "https://t.co/FoKGHcCyJJ", + "expanded_url": "https://github.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4229589/header_bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDDDDD", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 762035, + "location": "San Francisco, CA", + "screen_name": "github", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 11785, + "name": "GitHub", + "profile_use_background_image": false, + "description": "How people build software", + "url": "https://t.co/FoKGHcCyJJ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ_normal.png", + "profile_background_color": "EEEEEE", + "created_at": "Mon Feb 11 04:41:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BBBBBB", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ_normal.png", + "favourites_count": 155, + "status": { + "retweet_count": 361, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684204778277081089", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/blog/2094-new-\u2026", + "url": "https://t.co/VJxg6og3kn", + "expanded_url": "https://github.com/blog/2094-new-year-new-git-release?utm_source=twitter&utm_medium=social&utm_campaign=git-release-2.7", + "indices": [ + 27, + 50 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 02:48:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684204778277081089, + "text": "New Year, new Git release: https://t.co/VJxg6og3kn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 335, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 13334762, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4229589/header_bg.png", + "statuses_count": 3129, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13334762/1415719104", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1138959692", + "following": false, + "friends_count": 1391, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "docker.com", + "url": "http://t.co/ZAMxePUASD", + "expanded_url": "http://docker.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433033163481157632/I01VJL_c.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 106444, + "location": "San Francisco, CA", + "screen_name": "docker", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2318, + "name": "Docker", + "profile_use_background_image": true, + "description": "Build, Ship, Run Distributed Apps #docker #containers #getcontained", + "url": "http://t.co/ZAMxePUASD", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000124779041/fbbb494a7eef5f9278c6967b6072ca3e_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Feb 01 07:12:46 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000124779041/fbbb494a7eef5f9278c6967b6072ca3e_normal.png", + "favourites_count": 1006, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "denriquezjr", + "in_reply_to_user_id": 847973664, + "in_reply_to_status_id_str": "685612798085222400", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613981122314240", + "id": 685613981122314240, + "text": "@denriquezjr we can't contain our excitement for #DockerCon 2016!!!! looking forward to seeing you there", + "in_reply_to_user_id_str": "847973664", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 49, + 59 + ], + "text": "DockerCon" + } + ], + "user_mentions": [ + { + "screen_name": "denriquezjr", + "id_str": "847973664", + "id": 847973664, + "indices": [ + 0, + 12 + ], + "name": "DJ Enriquez" + } + ] + }, + "created_at": "Sat Jan 09 00:08:05 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685612798085222400, + "lang": "en" + }, + "default_profile_image": false, + "id": 1138959692, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433033163481157632/I01VJL_c.png", + "statuses_count": 6685, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1138959692/1441316722", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "88982108", + "following": false, + "friends_count": 1399, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "puppetlabs.com", + "url": "http://t.co/HJaLYypHcH", + "expanded_url": "http://www.puppetlabs.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591989184/lmwkeegi8kpzwrvvvou4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 59107, + "location": "Portland, OR", + "screen_name": "puppetlabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1242, + "name": "Puppet Labs", + "profile_use_background_image": true, + "description": "The official Twitter account for Puppet Labs. Please use #puppetize for support and technical questions.", + "url": "http://t.co/HJaLYypHcH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671480725183397888/rVs3Z9Df_normal.jpg", + "profile_background_color": "1C1A37", + "created_at": "Tue Nov 10 17:56:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671480725183397888/rVs3Z9Df_normal.jpg", + "favourites_count": 676, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685499553340993536", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 373, + "resize": "fit" + }, + "medium": { + "w": 535, + "h": 588, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 535, + "h": 588, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNiNhEUAAAFWSu.png", + "type": "photo", + "indices": [ + 111, + 134 + ], + "media_url": "http://pbs.twimg.com/media/CYNiNhEUAAAFWSu.png", + "display_url": "pic.twitter.com/gBshTiShCp", + "id_str": "685499552644726784", + "expanded_url": "http://twitter.com/puppetlabs/status/685499553340993536/photo/1", + "id": 685499552644726784, + "url": "https://t.co/gBshTiShCp" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1mGgJZf", + "url": "https://t.co/rq56Z5oCvh", + "expanded_url": "http://bit.ly/1mGgJZf", + "indices": [ + 87, + 110 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:33:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685499553340993536, + "text": "Try out Puppet\u2019s new application orchestration tools on the newest Puppet Learning VM: https://t.co/rq56Z5oCvh https://t.co/gBshTiShCp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 12, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 88982108, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591989184/lmwkeegi8kpzwrvvvou4.jpeg", + "statuses_count": 8956, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/88982108/1443714700", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "102048347", + "following": false, + "friends_count": 145, + "entities": { + "description": { + "urls": [ + { + "display_url": "foodfightshow.org", + "url": "http://t.co/CYtSmshqpe", + "expanded_url": "http://foodfightshow.org", + "indices": [ + 49, + 71 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "devopsanywhere.blogspot.com", + "url": "http://t.co/u3IPIe2By5", + "expanded_url": "http://devopsanywhere.blogspot.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1150, + "location": "Bangkok, Thailand", + "screen_name": "bryanwb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 106, + "name": "Bryan", + "profile_use_background_image": true, + "description": "Software developer, creator of the FoodFightShow http://t.co/CYtSmshqpe, python, ruby dev, golang gopher, wannabe scala developer, occasional idealist", + "url": "http://t.co/u3IPIe2By5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/627834582/headshot_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 05 12:33:21 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/627834582/headshot_normal.jpeg", + "favourites_count": 14, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684952804339789825", + "id": 684952804339789825, + "text": "current status, relearning ReStructured Text for the nth time", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 04:20:49 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 102048347, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6119, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15685575", + "following": false, + "friends_count": 1441, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jezhumble.com", + "url": "http://t.co/wrgO9VzrmY", + "expanded_url": "http://jezhumble.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 19321, + "location": "SF Bay Area, CA", + "screen_name": "jezhumble", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 867, + "name": "Jez Humble", + "profile_use_background_image": true, + "description": "Co-author of Continuous Delivery and Lean Enterprise, lecturer @BerkeleyISchool. I tweet on software, innovation, social & economic justice.", + "url": "http://t.co/wrgO9VzrmY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/456648820156162050/itxgcaBa_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Fri Aug 01 04:34:37 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/456648820156162050/itxgcaBa_normal.jpeg", + "favourites_count": 1009, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jezhumble", + "in_reply_to_user_id": 15685575, + "in_reply_to_status_id_str": "685007000481103872", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685007432905547777", + "id": 685007432905547777, + "text": "@JohnWLewis they are two separate concerns: but product design and agile eng practices like TDD form a virtuous circle when done right", + "in_reply_to_user_id_str": "15685575", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JohnWLewis", + "id_str": "13236772", + "id": 13236772, + "indices": [ + 0, + 11 + ], + "name": "John W Lewis" + } + ] + }, + "created_at": "Thu Jan 07 07:57:53 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685007000481103872, + "lang": "en" + }, + "default_profile_image": false, + "id": 15685575, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 5054, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15685575/1398916432", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14086716", + "following": false, + "friends_count": 282, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "madstop.com", + "url": "http://t.co/idy68PRdZA", + "expanded_url": "http://madstop.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 7366, + "location": "", + "screen_name": "puppetmasterd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 446, + "name": "Luke Kanies", + "profile_use_background_image": true, + "description": "Puppet author and recovering sysadmin", + "url": "http://t.co/idy68PRdZA", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1276213644/luke-headshot_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Thu Mar 06 03:32:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1276213644/luke-headshot_normal.jpg", + "favourites_count": 0, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685502228673630208", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/raganwald/stat\u2026", + "url": "https://t.co/eTQKExApOR", + "expanded_url": "https://twitter.com/raganwald/status/685501081091100672", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:44:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685502228673630208, + "text": "If you\u2019re in need of a good laugh today\u2026 https://t.co/eTQKExApOR", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 14086716, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 16604, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "465742594", + "following": false, + "friends_count": 111, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "foodfightshow.org", + "url": "http://t.co/PqkLKgczzH", + "expanded_url": "http://www.foodfightshow.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554352230/foodfight_twitter.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "EC6A23", + "geo_enabled": false, + "followers_count": 2871, + "location": "", + "screen_name": "foodfightshow", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 132, + "name": "foodfightshow", + "profile_use_background_image": true, + "description": "The Podcast where DevOps Engineers do Battle", + "url": "http://t.co/PqkLKgczzH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2226334549/one_chef_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Jan 16 17:54:44 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2226334549/one_chef_normal.png", + "favourites_count": 101, + "status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682355004183810049", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "foodfightshow.org/2015/12/chef-a\u2026", + "url": "https://t.co/NnbMwItZ6b", + "expanded_url": "http://foodfightshow.org/2015/12/chef-and-openstack.html", + "indices": [ + 118, + 141 + ] + } + ], + "hashtags": [ + { + "indices": [ + 64, + 74 + ], + "text": "OpenStack" + } + ], + "user_mentions": [ + { + "screen_name": "chef", + "id_str": "16333852", + "id": 16333852, + "indices": [ + 52, + 57 + ], + "name": "Chef" + }, + { + "screen_name": "filler", + "id_str": "10076322", + "id": 10076322, + "indices": [ + 80, + 87 + ], + "name": "\u2728 Nick Silkey \u2728" + }, + { + "screen_name": "scassiba", + "id_str": "16456163", + "id": 16456163, + "indices": [ + 89, + 98 + ], + "name": "Samuel Cassiba" + }, + { + "screen_name": "jjasghar", + "id_str": "130963706", + "id": 130963706, + "indices": [ + 106, + 115 + ], + "name": "JJ Asghar" + } + ] + }, + "created_at": "Thu Dec 31 00:18:05 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682355004183810049, + "text": "Episode 96 is now available in the podcast stream. @chef & #OpenStack with @filler, @scassiba, & @jjasghar - https://t.co/NnbMwItZ6b", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 465742594, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554352230/foodfight_twitter.png", + "statuses_count": 1082, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13378422", + "following": false, + "friends_count": 606, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kitchensoap.com", + "url": "http://t.co/1LtrvGduhJ", + "expanded_url": "http://www.kitchensoap.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 14349, + "location": "Brooklyn", + "screen_name": "allspaw", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 857, + "name": "John Allspaw", + "profile_use_background_image": true, + "description": "CTO, Etsy. Dad. Author. Guitarist. Student of sociotechnical systems, human factors, and cognitive systems engineering.", + "url": "http://t.co/1LtrvGduhJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000242066844/aa7ca1bd889fef6d8cedaa3f2b744861_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 12 05:36:43 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000242066844/aa7ca1bd889fef6d8cedaa3f2b744861_normal.jpeg", + "favourites_count": 3321, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jonlives", + "in_reply_to_user_id": 13093162, + "in_reply_to_status_id_str": "685447933219725312", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685451419302887424", + "id": 685451419302887424, + "text": "@jonlives Come join @mcdonnps and I in our mechanical watch enthusiasm!", + "in_reply_to_user_id_str": "13093162", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jonlives", + "id_str": "13093162", + "id": 13093162, + "indices": [ + 0, + 9 + ], + "name": "Jon Cowie" + }, + { + "screen_name": "mcdonnps", + "id_str": "305899937", + "id": 305899937, + "indices": [ + 20, + 29 + ], + "name": "Patrick McDonnell" + } + ] + }, + "created_at": "Fri Jan 08 13:22:08 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685447933219725312, + "lang": "en" + }, + "default_profile_image": false, + "id": 13378422, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 9728, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "23777840", + "following": false, + "friends_count": 749, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/lnxchk", + "url": "https://t.co/JkNqgBhmtu", + "expanded_url": "http://about.me/lnxchk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2548, + "location": "London, England", + "screen_name": "lnxchk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 225, + "name": "DevOp4StandingBy", + "profile_use_background_image": true, + "description": "Ready, Gold Leader | Click Button Get DevOps", + "url": "https://t.co/JkNqgBhmtu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1313952205/newHairThumb_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 11 15:28:01 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1313952205/newHairThumb_normal.jpg", + "favourites_count": 3217, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685531490386444289", + "id": 685531490386444289, + "text": "OH: \u201cMom called me Ned. She didn\u2019t know that The Simpsons was going to come out and ruin my life\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:40:18 +0000 2016", + "source": "TweetDeck", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 23777840, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10786, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23777840/1448838851", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "207840024", + "following": false, + "friends_count": 207, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buildscientist.com", + "url": "http://t.co/Ry08N6pyEb", + "expanded_url": "http://www.buildscientist.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0090A3", + "geo_enabled": false, + "followers_count": 471, + "location": "California", + "screen_name": "buildscientist", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Youssuf ElKalay", + "profile_use_background_image": false, + "description": "Muslim, American, Scottish, Egyptian. Co-host @ShipShowPodcast. Senior Software Engineer @ServiceNow. My tweets do not represent my employer.", + "url": "http://t.co/Ry08N6pyEb", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662369579113431040/kdSMagFO_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Oct 26 03:54:49 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662369579113431040/kdSMagFO_normal.jpg", + "favourites_count": 200, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685330222158229504", + "id": 685330222158229504, + "text": "As much as giving into anger can make you feel good, it can never make you feel better", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 05:20:32 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685337246711468036", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Mataway", + "id_str": "52475166", + "id": 52475166, + "indices": [ + 3, + 11 + ], + "name": "Matt Attaway" + } + ] + }, + "created_at": "Fri Jan 08 05:48:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685337246711468036, + "text": "RT @Mataway: As much as giving into anger can make you feel good, it can never make you feel better", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 207840024, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 9081, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/207840024/1400049840", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "2208083953", + "following": false, + "friends_count": 683, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "arresteddevops.com", + "url": "http://t.co/joaHqjS5I7", + "expanded_url": "http://arresteddevops.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2836, + "location": "", + "screen_name": "ArrestedDevOps", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 136, + "name": "Arrested DevOps", + "profile_use_background_image": true, + "description": "There's always DevOps in the Banana Stand. Hosted by @mattstratton, @trevorghess, & @bridgetkromhout", + "url": "http://t.co/joaHqjS5I7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/615009446322765824/XRtzbKLw_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Nov 22 01:05:20 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/615009446322765824/XRtzbKLw_normal.png", + "favourites_count": 1341, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "RitaMailheau", + "in_reply_to_user_id": 471993505, + "in_reply_to_status_id_str": "685539191363506176", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685547054555201536", + "id": 685547054555201536, + "text": "@RitaMailheau did you want a specific host from our show?", + "in_reply_to_user_id_str": "471993505", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RitaMailheau", + "id_str": "471993505", + "id": 471993505, + "indices": [ + 0, + 13 + ], + "name": "Rita" + } + ] + }, + "created_at": "Fri Jan 08 19:42:09 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685539191363506176, + "lang": "en" + }, + "default_profile_image": false, + "id": 2208083953, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1448, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2208083953/1422999081", + "is_translator": false + }, + { + "time_zone": "Melbourne", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "6031", + "following": false, + "friends_count": 995, + "entities": { + "description": { + "urls": [ + { + "display_url": "artofmonitoring.com", + "url": "https://t.co/zUrMNMHWZ7", + "expanded_url": "http://artofmonitoring.com", + "indices": [ + 114, + 137 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kartar.net", + "url": "http://t.co/oNwoEGqRRJ", + "expanded_url": "http://www.kartar.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 8675, + "location": "Brooklyn and airport lounges", + "screen_name": "kartar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 628, + "name": "James Turnbull", + "profile_use_background_image": true, + "description": "Australian author, CTO @Kickstarter, Advisor @Docker. Likes tattoos, wine, and good food. The Art of Monitoring - https://t.co/zUrMNMHWZ7", + "url": "http://t.co/oNwoEGqRRJ", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553179124454281217/vV3KfTsQ_normal.jpeg", + "profile_background_color": "BADFCD", + "created_at": "Thu Sep 14 01:31:47 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F2E195", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179124454281217/vV3KfTsQ_normal.jpeg", + "favourites_count": 28, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "bronte_saurus", + "in_reply_to_user_id": 18622553, + "in_reply_to_status_id_str": "685443681608843264", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685446171280670720", + "id": 685446171280670720, + "text": "@bronte_saurus Yeah I meant the legal ones. :)", + "in_reply_to_user_id_str": "18622553", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "bronte_saurus", + "id_str": "18622553", + "id": 18622553, + "indices": [ + 0, + 14 + ], + "name": "birthdaysaurus" + } + ] + }, + "created_at": "Fri Jan 08 13:01:16 +0000 2016", + "source": "Janetter Pro for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685443681608843264, + "lang": "en" + }, + "default_profile_image": false, + "id": 6031, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "statuses_count": 32178, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6031/1398207179", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "45573701", + "following": false, + "friends_count": 405, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 1805, + "location": "Minneapolis", + "screen_name": "sascha_d", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 122, + "name": "Sascha", + "profile_use_background_image": true, + "description": "BrD (Doctor of Brattiness)", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1391497394/RH_only_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Mon Jun 08 14:18:36 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1391497394/RH_only_normal.jpg", + "favourites_count": 525, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685523603127848960", + "id": 685523603127848960, + "text": "Bicyling, Rodale and Runner\u2019s World spam really making me regret purchasing my Runner\u2019s World sub.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:08:58 +0000 2016", + "source": "TweetDeck", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 45573701, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 10543, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "809512", + "following": false, + "friends_count": 388, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "orionlabs.co", + "url": "http://t.co/AqLxJSw2tK", + "expanded_url": "http://www.orionlabs.co", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "1A1B1C", + "geo_enabled": true, + "followers_count": 8570, + "location": "San Francisco, CA", + "screen_name": "jesserobbins", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 497, + "name": "Jesse Robbins", + "profile_use_background_image": true, + "description": "Founder of @OrionLabs, beautiful wearable devices to change the way people communicate. Previously founded @Chef & @VelocityConf. Firefighter/EMT & Adventurer.", + "url": "http://t.co/AqLxJSw2tK", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/898516649/_MG_1334_2_normal.jpg", + "profile_background_color": "022330", + "created_at": "Sun Mar 04 02:57:24 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/898516649/_MG_1334_2_normal.jpg", + "favourites_count": 460, + "status": { + "retweet_count": 16, + "retweeted_status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684872737408434179", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "theverge.com/2016/1/6/10718\u2026", + "url": "https://t.co/SpmaaOauOc", + "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", + "indices": [ + 26, + 49 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CaseyNewton", + "id_str": "69426451", + "id": 69426451, + "indices": [ + 65, + 77 + ], + "name": "Casey Newton" + }, + { + "screen_name": "layer", + "id_str": "1518024493", + "id": 1518024493, + "indices": [ + 134, + 140 + ], + "name": "Layer" + } + ] + }, + "created_at": "Wed Jan 06 23:02:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684872737408434179, + "text": "search for the killer bot https://t.co/SpmaaOauOc great piece by @CaseyNewton. eventually bots + messaging will be part of all apps. @Layer", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 25, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684884814218969088", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "theverge.com/2016/1/6/10718\u2026", + "url": "https://t.co/SpmaaOauOc", + "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", + "indices": [ + 36, + 59 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RonP", + "id_str": "785027", + "id": 785027, + "indices": [ + 3, + 8 + ], + "name": "Ron Palmeri" + }, + { + "screen_name": "CaseyNewton", + "id_str": "69426451", + "id": 69426451, + "indices": [ + 75, + 87 + ], + "name": "Casey Newton" + }, + { + "screen_name": "layer", + "id_str": "1518024493", + "id": 1518024493, + "indices": [ + 139, + 140 + ], + "name": "Layer" + } + ] + }, + "created_at": "Wed Jan 06 23:50:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684884814218969088, + "text": "RT @RonP: search for the killer bot https://t.co/SpmaaOauOc great piece by @CaseyNewton. eventually bots + messaging will be part of all ap\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 809512, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 4116, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/809512/1400563083", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "862224750", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [ + { + "display_url": "hangops.com/sessions/", + "url": "http://t.co/EOwiu1aAwR", + "expanded_url": "http://www.hangops.com/sessions/", + "indices": [ + 96, + 118 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hangops.com", + "url": "http://t.co/Lx9zm0oBLJ", + "expanded_url": "http://www.hangops.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 2061, + "location": "", + "screen_name": "hangops", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 81, + "name": "hangops", + "profile_use_background_image": false, + "description": "#hangops is awesome weekly discussions with the #devops community, via Google Hangouts and IRC. http://t.co/EOwiu1aAwR for past sessions. By @solarce", + "url": "http://t.co/Lx9zm0oBLJ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2681580573/f520588ff7bf9eb9fe3416388ed76e75_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Oct 05 00:01:43 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2681580573/f520588ff7bf9eb9fe3416388ed76e75_normal.jpeg", + "favourites_count": 69, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "646408217136762880", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "hangops.slack.com", + "url": "http://t.co/Fb1ajYZfOA", + "expanded_url": "http://hangops.slack.com", + "indices": [ + 0, + 22 + ] + }, + { + "display_url": "github.com/rawdigits/wee-\u2026", + "url": "https://t.co/dmmnnoordq", + "expanded_url": "https://github.com/rawdigits/wee-slack#features", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Sep 22 19:38:23 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 646408217136762880, + "text": "http://t.co/Fb1ajYZfOA now has the web API enabled for those of you wanting to use https://t.co/dmmnnoordq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 862224750, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 688, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/862224750/1399731010", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "617421398", + "following": false, + "friends_count": 168, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theshipshow.com", + "url": "http://t.co/lxkypXpOrH", + "expanded_url": "http://theshipshow.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1123, + "location": "The cloud", + "screen_name": "ShipShowPodcast", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 68, + "name": "The Ship Show", + "profile_use_background_image": true, + "description": "Build engineering, DevOps, release management. With @SoberBuildEng, @buildscientist, @eciramella, @cheeseplus, @sascha_d, @petecheslock, @SonOfGarr & @beerops", + "url": "http://t.co/lxkypXpOrH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2487098853/4465djeq8bk0o8atyw71_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Jun 24 19:59:11 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2487098853/4465djeq8bk0o8atyw71_normal.png", + "favourites_count": 59, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677600921661014016", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "theshipshow.com/59", + "url": "https://t.co/UyQzFmCVFO", + "expanded_url": "http://theshipshow.com/59", + "indices": [ + 90, + 113 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 17 21:27:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677600921661014016, + "text": "\"It doesn't really matter what we do behind the scenes if we deliver cr@# to customers.\"\n\nhttps://t.co/UyQzFmCVFO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 617421398, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 666, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15782607", + "following": false, + "friends_count": 320, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "semicomplete.com", + "url": "http://t.co/xNqnRweCSA", + "expanded_url": "http://www.semicomplete.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 5868, + "location": "Silicon Valley", + "screen_name": "jordansissel", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 302, + "name": "@jordansissel", + "profile_use_background_image": true, + "description": "Empathy-driven development. Consensual hugs are available. I yell at computers a lot.", + "url": "http://t.co/xNqnRweCSA", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663866598831230976/MrGxbRBh_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Fri Aug 08 20:28:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663866598831230976/MrGxbRBh_normal.jpg", + "favourites_count": 495, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685605145757929473", + "id": 685605145757929473, + "text": "I can't shutdown this machine via remote desktop, and I refuse to admit that I can walk over and hit the power button. #lazy", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 119, + 124 + ], + "text": "lazy" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:32:59 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15782607, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 33053, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15782607/1423683827", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "356447127", + "following": false, + "friends_count": 1167, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jpaulreed.com", + "url": "https://t.co/fXjoS4z1wT", + "expanded_url": "http://jpaulreed.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/314931142/sbe-t-bkgrnd.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 2096, + "location": "San Francisco, CA", + "screen_name": "jpaulreed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 152, + "name": "J. Paul Reed", + "profile_use_background_image": true, + "description": "Simply ship. Every time. Principal at Release Engineering Approaches; visiting scientist at @praxisflow; host of the @ShipShowPodcast.", + "url": "https://t.co/fXjoS4z1wT", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/565476374723309568/IVYwceSG_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Tue Aug 16 21:33:37 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/565476374723309568/IVYwceSG_normal.jpeg", + "favourites_count": 3218, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685557570925244416", + "id": 685557570925244416, + "text": "\"I mean he's got a masters in compilers. You KNOW he's seen some shit...\" - @petecheslock", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "petecheslock", + "id_str": "264481774", + "id": 264481774, + "indices": [ + 76, + 89 + ], + "name": "Pete Cheslock" + } + ] + }, + "created_at": "Fri Jan 08 20:23:56 +0000 2016", + "source": "TweetDeck", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 356447127, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/314931142/sbe-t-bkgrnd.jpg", + "statuses_count": 10034, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/356447127/1435428064", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "42039840", + "following": false, + "friends_count": 1810, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hackygolucky.com", + "url": "http://t.co/PAxs7FiRx8", + "expanded_url": "http://hackygolucky.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121813986/af68e9e3d6fe92f4ee05a6c691b70906.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "3E2D57", + "geo_enabled": true, + "followers_count": 1936, + "location": "NYC", + "screen_name": "HackyGoLucky", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 107, + "name": "Tracy", + "profile_use_background_image": true, + "description": "JS community catHerder, Web Engineer @urbanairship. Fighting my own small revolutions(trouble!). Inciting confidence in people one compliment at a time...", + "url": "http://t.co/PAxs7FiRx8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/504692206829965312/sJiuqH_J_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Sat May 23 15:04:27 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/504692206829965312/sJiuqH_J_normal.jpeg", + "favourites_count": 7274, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "kosamari", + "in_reply_to_user_id": 8470842, + "in_reply_to_status_id_str": "685527140801101824", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685573092727480321", + "id": 685573092727480321, + "text": "@kosamari I thought there are engineers at places like Facebook, maybe IBM?(don't quote me) whose sole job is things like the Linux kernel.", + "in_reply_to_user_id_str": "8470842", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kosamari", + "id_str": "8470842", + "id": 8470842, + "indices": [ + 0, + 9 + ], + "name": "Mariko Kosaka" + } + ] + }, + "created_at": "Fri Jan 08 21:25:37 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685527140801101824, + "lang": "en" + }, + "default_profile_image": false, + "id": 42039840, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121813986/af68e9e3d6fe92f4ee05a6c691b70906.jpeg", + "statuses_count": 4524, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/42039840/1405318288", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "109950516", + "following": false, + "friends_count": 928, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/pandafulmanda", + "url": "https://t.co/z2zVcyDpqy", + "expanded_url": "https://github.com/pandafulmanda", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "0099B9", + "geo_enabled": true, + "followers_count": 425, + "location": "", + "screen_name": "pandafulmanda", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Amanda Shih", + "profile_use_background_image": true, + "description": "", + "url": "https://t.co/z2zVcyDpqy", + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/546906721554145280/6zxoznyM_normal.jpeg", + "profile_background_color": "0099B9", + "created_at": "Sat Jan 30 20:34:23 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/546906721554145280/6zxoznyM_normal.jpeg", + "favourites_count": 270, + "status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "621759022606221312", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "classes.codeparkhouston.com", + "url": "http://t.co/wVXwebEKcU", + "expanded_url": "http://classes.codeparkhouston.com/", + "indices": [ + 118, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "houstonlibrary", + "id_str": "5862922", + "id": 5862922, + "indices": [ + 60, + 75 + ], + "name": "Houston Library" + }, + { + "screen_name": "fileunderjeff", + "id_str": "73465639", + "id": 73465639, + "indices": [ + 91, + 105 + ], + "name": "Jeff Reichman" + }, + { + "screen_name": "Transition", + "id_str": "14259159", + "id": 14259159, + "indices": [ + 106, + 117 + ], + "name": "Transition" + } + ] + }, + "created_at": "Thu Jul 16 19:11:17 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 621759022606221312, + "text": "Another round of free Coding in Minecraft classes for teens @houstonlibrary this Saturday! @fileunderjeff @Transition http://t.co/wVXwebEKcU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 109950516, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 131, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "41926203", + "following": false, + "friends_count": 172, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "secondstory.com", + "url": "http://t.co/CwqjPAv4X6", + "expanded_url": "http://www.secondstory.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 141, + "location": "Portland, Oregon", + "screen_name": "dbrewerpdx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "name": "David Brewer", + "profile_use_background_image": true, + "description": "Web Technology Lead at Second Story. Following web/mobile development, security, open source, history, museums and collections, and more.", + "url": "http://t.co/CwqjPAv4X6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1230031852/5_thumb_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri May 22 23:27:16 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1230031852/5_thumb_normal.jpg", + "favourites_count": 220, + "status": { + "retweet_count": 36214, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 36214, + "truncated": false, + "retweeted": false, + "id_str": "576036726046646272", + "id": 576036726046646272, + "text": "Terry took Death\u2019s arm and followed him through the doors and on to the black desert under the endless night.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Mar 12 15:07:12 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 21498, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "576091352733093888", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "terryandrob", + "id_str": "22477940", + "id": 22477940, + "indices": [ + 3, + 15 + ], + "name": "Terry Pratchett" + } + ] + }, + "created_at": "Thu Mar 12 18:44:16 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 576091352733093888, + "text": "RT @terryandrob: Terry took Death\u2019s arm and followed him through the doors and on to the black desert under the endless night.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 41926203, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1492, + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14586723", + "following": false, + "friends_count": 684, + "entities": { + "description": { + "urls": [ + { + "display_url": "twitter.com/jeffsussna/sta\u2026", + "url": "https://t.co/NRBhIxWRkj", + "expanded_url": "https://twitter.com/jeffsussna/status/627202142542041088?s=09", + "indices": [ + 0, + 23 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "about.me/lusis", + "url": "http://t.co/K7LVyopS5x", + "expanded_url": "http://about.me/lusis", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/884215773/5ea824395da2cf19c1e8bcf943b50db2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3845, + "location": "\u00dcT: 34.010375,-84.367464", + "screen_name": "lusis", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 301, + "name": "elated-pig", + "profile_use_background_image": true, + "description": "https://t.co/NRBhIxWRkj", + "url": "http://t.co/K7LVyopS5x", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/422582473331974144/xzes5qFM_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Apr 29 16:16:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/422582473331974144/xzes5qFM_normal.jpeg", + "favourites_count": 6670, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "flangy", + "in_reply_to_user_id": 14209746, + "in_reply_to_status_id_str": "685580643070128128", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685582667786641410", + "id": 685582667786641410, + "text": "@flangy BUY MY DATABA...oh wait. I don't have anything to sell.", + "in_reply_to_user_id_str": "14209746", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "flangy", + "id_str": "14209746", + "id": 14209746, + "indices": [ + 0, + 7 + ], + "name": "2,016 #Content" + } + ] + }, + "created_at": "Fri Jan 08 22:03:40 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685580643070128128, + "lang": "en" + }, + "default_profile_image": false, + "id": 14586723, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/884215773/5ea824395da2cf19c1e8bcf943b50db2.jpeg", + "statuses_count": 51138, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14586723/1438371843", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "822284", + "following": false, + "friends_count": 96, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "solarce.org", + "url": "https://t.co/JlvQwqMQ80", + "expanded_url": "https://solarce.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "0099B9", + "geo_enabled": true, + "followers_count": 2701, + "location": "Los Angeles, CA", + "screen_name": "solarce", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 219, + "name": "leader of cola", + "profile_use_background_image": true, + "description": "Ops Engineering, Infrastructure Manager at @travisci || webops, devops, unix, @hangops, and gifs || \u2728 RIP @lolcatstevens. Love you buddy. \u2728", + "url": "https://t.co/JlvQwqMQ80", + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/637409714892967936/XXjCPWZj_normal.jpg", + "profile_background_color": "0099B9", + "created_at": "Thu Mar 08 16:55:54 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637409714892967936/XXjCPWZj_normal.jpg", + "favourites_count": 24031, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685608754591711232", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "app.net", + "url": "https://t.co/qtbj6wMFuz", + "expanded_url": "http://app.net", + "indices": [ + 17, + 40 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:47:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685608754591711232, + "text": "Is peach the new https://t.co/qtbj6wMFuz?", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 822284, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 44034, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/822284/1440807638", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "264481774", + "following": false, + "friends_count": 502, + "entities": { + "description": { + "urls": [ + { + "display_url": "omg.pete.wtf/1bqAY", + "url": "https://t.co/PTfL8GfXcY", + "expanded_url": "http://omg.pete.wtf/1bqAY", + "indices": [ + 103, + 126 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "pete.wtf", + "url": "https://t.co/uyeoAVEs1J", + "expanded_url": "https://pete.wtf", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/732697280/8e7fc630a628b76234408fa31c0a21c4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2494, + "location": "Boston, MA", + "screen_name": "petecheslock", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 153, + "name": "Pete Cheslock", + "profile_use_background_image": true, + "description": "Ceci n'est pas un @petechesbot. I computer at @threatstack. I also do @BosOps & @ShipShowPodcast. PGP: https://t.co/PTfL8GfXcY", + "url": "https://t.co/uyeoAVEs1J", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/530791753830244352/8XeF4t-d_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 12 00:10:18 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/530791753830244352/8XeF4t-d_normal.jpeg", + "favourites_count": 4678, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ohlol", + "in_reply_to_user_id": 15387262, + "in_reply_to_status_id_str": "685554188399460352", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610690674057216", + "id": 685610690674057216, + "text": "@ohlol @richburroughs lmao", + "in_reply_to_user_id_str": "15387262", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ohlol", + "id_str": "15387262", + "id": 15387262, + "indices": [ + 0, + 6 + ], + "name": "O(tires)" + }, + { + "screen_name": "richburroughs", + "id_str": "19552154", + "id": 19552154, + "indices": [ + 7, + 21 + ], + "name": "Rich Burroughs" + } + ] + }, + "created_at": "Fri Jan 08 23:55:01 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685554188399460352, + "lang": "ht" + }, + "default_profile_image": false, + "id": 264481774, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/732697280/8e7fc630a628b76234408fa31c0a21c4.jpeg", + "statuses_count": 20535, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/264481774/1404067173", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14939200", + "following": false, + "friends_count": 419, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "seancribbs.com", + "url": "https://t.co/Bs65kfFYL5", + "expanded_url": "http://seancribbs.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "005C99", + "geo_enabled": true, + "followers_count": 3126, + "location": "", + "screen_name": "seancribbs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 257, + "name": "Sean Cribbs", + "profile_use_background_image": false, + "description": "Husband, Cat Daddy, distsys geek, pedant", + "url": "https://t.co/Bs65kfFYL5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564571026906828800/VWMqibpC_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Thu May 29 00:27:51 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564571026906828800/VWMqibpC_normal.jpeg", + "favourites_count": 28657, + "status": { + "retweet_count": 28, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 28, + "truncated": false, + "retweeted": false, + "id_str": "685523664758898688", + "id": 685523664758898688, + "text": "\"Knowing how to program is not synonymous w/ understanding how technologies are entangled w/ power and meaning.\" @jenterysayers #MLA16 #s280", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 128, + 134 + ], + "text": "MLA16" + }, + { + "indices": [ + 135, + 140 + ], + "text": "s280" + } + ], + "user_mentions": [ + { + "screen_name": "jenterysayers", + "id_str": "98890966", + "id": 98890966, + "indices": [ + 113, + 127 + ], + "name": "Jentery Sayers" + } + ] + }, + "created_at": "Fri Jan 08 18:09:12 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 39, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685563282900422656", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "MLA16" + }, + { + "indices": [ + 139, + 140 + ], + "text": "s280" + } + ], + "user_mentions": [ + { + "screen_name": "Jessifer", + "id_str": "11702102", + "id": 11702102, + "indices": [ + 3, + 12 + ], + "name": "Jesse Stommel" + }, + { + "screen_name": "jenterysayers", + "id_str": "98890966", + "id": 98890966, + "indices": [ + 127, + 140 + ], + "name": "Jentery Sayers" + } + ] + }, + "created_at": "Fri Jan 08 20:46:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685563282900422656, + "text": "RT @Jessifer: \"Knowing how to program is not synonymous w/ understanding how technologies are entangled w/ power and meaning.\" @jenterysaye\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14939200, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 36449, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14939200/1446405447", + "is_translator": false + }, + { + "time_zone": "Auckland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 46800, + "id_str": "13756082", + "following": false, + "friends_count": 671, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "heyrafael.com", + "url": "https://t.co/ZVABFDWGXm", + "expanded_url": "https://heyrafael.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1151, + "location": "Auckland, New Zealand", + "screen_name": "rafaelmagu", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 61, + "name": "Rafael Fonseca", + "profile_use_background_image": false, + "description": "Lead #BreakOps Practitioner at @vendhq", + "url": "https://t.co/ZVABFDWGXm", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678154954696237056/xPF3EVv-_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Feb 21 04:26:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678154954696237056/xPF3EVv-_normal.jpg", + "favourites_count": 4019, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613477818429449", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "rnkpr.com/abudyju", + "url": "https://t.co/H59tJXn4L8", + "expanded_url": "http://rnkpr.com/abudyju", + "indices": [ + 60, + 83 + ] + } + ], + "hashtags": [ + { + "indices": [ + 84, + 94 + ], + "text": "Runkeeper" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:06:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613477818429449, + "text": "Just completed a 1.42 km walk with Runkeeper. Check it out! https://t.co/H59tJXn4L8 #Runkeeper", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Runkeeper" + }, + "default_profile_image": false, + "id": 13756082, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 92742, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13756082/1432813367", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "23967168", + "following": false, + "friends_count": 295, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thejoyofcode.com", + "url": "https://t.co/FTsNoR2BNt", + "expanded_url": "http://www.thejoyofcode.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3367, + "location": "Redmond, WA", + "screen_name": "joshtwist", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 138, + "name": "Josh Twist", + "profile_use_background_image": true, + "description": "Product Management @Auth0 - making identity simple for developers. Ex-Microsoft Azure PM. Brit in the US; accent takes all the credit.", + "url": "https://t.co/FTsNoR2BNt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2580020739/54byw9ppnr5yyj4d1tnd_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 12 15:26:43 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2580020739/54byw9ppnr5yyj4d1tnd_normal.jpeg", + "favourites_count": 206, + "status": { + "retweet_count": 437, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 437, + "truncated": false, + "retweeted": false, + "id_str": "685297500689829888", + "id": 685297500689829888, + "text": "App that recognizes your phone is falling and likely to get cracked and auto purchases insurance instantly prior to impact.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:10:31 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 898, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685298157073248258", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BoredElonMusk", + "id_str": "1666038950", + "id": 1666038950, + "indices": [ + 3, + 17 + ], + "name": "Bored Elon Musk" + } + ] + }, + "created_at": "Fri Jan 08 03:13:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685298157073248258, + "text": "RT @BoredElonMusk: App that recognizes your phone is falling and likely to get cracked and auto purchases insurance instantly prior to impa\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 23967168, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6175, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23967168/1447243606", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14061017", + "following": false, + "friends_count": 844, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "geekafterfive.com", + "url": "https://t.co/5ooybAQSUP", + "expanded_url": "http://geekafterfive.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1585, + "location": "Flower Mound, TX", + "screen_name": "jakerobinson", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 104, + "name": "\u281a\u2801\u2805\u2811\u2817\u2815\u2803\u280a\u281d\u280e\u2815\u281d", + "profile_use_background_image": true, + "description": "Level 12 DevOps Rogue - Project Zombie @vmware", + "url": "https://t.co/5ooybAQSUP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671904209004965888/M5bwd2NZ_normal.jpg", + "profile_background_color": "022330", + "created_at": "Fri Feb 29 17:53:34 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671904209004965888/M5bwd2NZ_normal.jpg", + "favourites_count": 4963, + "status": { + "retweet_count": 13, + "retweeted_status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685508609254506496", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/UoEN4sD5WW", + "url": "https://t.co/UoEN4sD5WW", + "expanded_url": "http://twitter.com/ascendantlogic/status/685508609254506496/photo/1", + "indices": [ + 20, + 43 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:09:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685508609254506496, + "text": "feels like ops work https://t.co/UoEN4sD5WW", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 16, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685516326329188353", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/UoEN4sD5WW", + "url": "https://t.co/UoEN4sD5WW", + "expanded_url": "http://twitter.com/ascendantlogic/status/685508609254506496/photo/1", + "indices": [ + 40, + 63 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ascendantlogic", + "id_str": "15544659", + "id": 15544659, + "indices": [ + 3, + 18 + ], + "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 \u253b\u2501\u253b" + } + ] + }, + "created_at": "Fri Jan 08 17:40:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685516326329188353, + "text": "RT @ascendantlogic: feels like ops work https://t.co/UoEN4sD5WW", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14061017, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 13931, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14061017/1401767927", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6386722", + "following": false, + "friends_count": 285, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18101581/IMG_0263.JPG", + "notifications": false, + "profile_sidebar_fill_color": "4092B8", + "profile_link_color": "072778", + "geo_enabled": true, + "followers_count": 139, + "location": "San Antonio, TX", + "screen_name": "t8r", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Daniel Bel Biv Defoe", + "profile_use_background_image": true, + "description": "It's a new artform, showing people how little we care.\n\nAlabamian, Georgian, Texian, a being composed of pure energy and BBQ.", + "url": null, + "profile_text_color": "000308", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/469334450128433152/xK6VV0O2_normal.jpeg", + "profile_background_color": "252533", + "created_at": "Mon May 28 14:41:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/469334450128433152/xK6VV0O2_normal.jpeg", + "favourites_count": 55, + "status": { + "retweet_count": 5, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 5, + "truncated": false, + "retweeted": false, + "id_str": "668879651037646849", + "id": 668879651037646849, + "text": "All I can surmise from my Twitter feed right now is that:\n\n1. Slack is down\n2. Slack is making motherfuckin' monayyyyy", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Nov 23 19:51:50 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 10, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "668888540017594369", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "maddox", + "id_str": "750823", + "id": 750823, + "indices": [ + 3, + 10 + ], + "name": "Jon Maddox" + } + ] + }, + "created_at": "Mon Nov 23 20:27:09 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 668888540017594369, + "text": "RT @maddox: All I can surmise from my Twitter feed right now is that:\n\n1. Slack is down\n2. Slack is making motherfuckin' monayyyyy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 6386722, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18101581/IMG_0263.JPG", + "statuses_count": 716, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "3519791", + "following": false, + "friends_count": 93, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 56, + "location": "Haddon Heights, NJ", + "screen_name": "seangrieve", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Sean Grieve", + "profile_use_background_image": true, + "description": "Principal Software Engineer at Digitas Health in Philadelphia.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2606538021/55vefb1nbuosjac2i1vs_normal.gif", + "profile_background_color": "9AE4E8", + "created_at": "Thu Apr 05 13:47:12 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2606538021/55vefb1nbuosjac2i1vs_normal.gif", + "favourites_count": 68, + "status": { + "retweet_count": 221, + "retweeted_status": { + "retweet_count": 221, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683201788334313474", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 480, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", + "type": "photo", + "indices": [ + 14, + 37 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", + "display_url": "pic.twitter.com/6Cio8EyB9E", + "id_str": "683201676484870144", + "expanded_url": "http://twitter.com/damienkatz/status/683201788334313474/video/1", + "id": 683201676484870144, + "url": "https://t.co/6Cio8EyB9E" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 02 08:22:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683201788334313474, + "text": "\"son of a...\" https://t.co/6Cio8EyB9E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 215, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683392657993953280", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 480, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + } + }, + "source_status_id_str": "683201788334313474", + "url": "https://t.co/6Cio8EyB9E", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", + "source_user_id_str": "77827772", + "id_str": "683201676484870144", + "id": 683201676484870144, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", + "type": "photo", + "indices": [ + 30, + 53 + ], + "source_status_id": 683201788334313474, + "source_user_id": 77827772, + "display_url": "pic.twitter.com/6Cio8EyB9E", + "expanded_url": "http://twitter.com/damienkatz/status/683201788334313474/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "damienkatz", + "id_str": "77827772", + "id": 77827772, + "indices": [ + 3, + 14 + ], + "name": "hashtagdamienkatz" + } + ] + }, + "created_at": "Sat Jan 02 21:01:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683392657993953280, + "text": "RT @damienkatz: \"son of a...\" https://t.co/6Cio8EyB9E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 3519791, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 349, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": false, + "description": "i keep the big number spinning and in my spare time i am sad. music over at @leftfold, sometimes. married to @tina2moons.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "7280452", + "blocking": false, + "is_translation_enabled": false, + "id": 7280452, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "D1DAEB", + "created_at": "Fri Jul 06 01:50:49 +0000 2007", + "profile_image_url": "http://pbs.twimg.com/profile_images/663553425196474369/Ulo6xLzy_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "3E4E61", + "statuses_count": 19006, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663553425196474369/Ulo6xLzy_normal.jpg", + "favourites_count": 63442, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 253, + "blocked_by": false, + "following": false, + "location": "Watertown, MA", + "muting": false, + "friends_count": 665, + "notifications": false, + "screen_name": "decklin", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 6, + "is_translator": false, + "name": "something important" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5693282", + "following": false, + "friends_count": 251, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amblin.io", + "url": "https://t.co/ej9BXSk4C7", + "expanded_url": "https://amblin.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 363, + "location": "Charleston, SC", + "screen_name": "amblin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Matthew Gregg", + "profile_use_background_image": false, + "description": "Sharks!", + "url": "https://t.co/ej9BXSk4C7", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675397943546028033/2rzp8ZSK_normal.jpg", + "profile_background_color": "FDFDFD", + "created_at": "Tue May 01 19:59:12 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675397943546028033/2rzp8ZSK_normal.jpg", + "favourites_count": 2215, + "status": { + "geo": { + "coordinates": [ + 35.4263958, + -83.0871535 + ], + "type": "Point" + }, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/3b98b02fba3f9753.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -84.32187, + 33.752879 + ], + [ + -75.40012, + 33.752879 + ], + [ + -75.40012, + 36.588118 + ], + [ + -84.32187, + 36.588118 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "North Carolina, USA", + "id": "3b98b02fba3f9753", + "name": "North Carolina" + }, + "in_reply_to_screen_name": "shortxstack", + "in_reply_to_user_id": 8094902, + "in_reply_to_status_id_str": "685500171900317696", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685575652582551552", + "id": 685575652582551552, + "text": "@shortxstack Good luck with that.", + "in_reply_to_user_id_str": "8094902", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "shortxstack", + "id_str": "8094902", + "id": 8094902, + "indices": [ + 0, + 12 + ], + "name": "Whitney Champion" + } + ] + }, + "created_at": "Fri Jan 08 21:35:47 +0000 2016", + "source": "Fenix for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": { + "coordinates": [ + -83.0871535, + 35.4263958 + ], + "type": "Point" + }, + "contributors": null, + "in_reply_to_status_id": 685500171900317696, + "lang": "en" + }, + "default_profile_image": false, + "id": 5693282, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8006, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5693282/1447632413", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "7693892", + "following": false, + "friends_count": 179, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 46, + "location": "New York, NY", + "screen_name": "greggian", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "greggian", + "profile_use_background_image": true, + "description": "Computer Enginerd", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1268590618/eightbit-f0b3028b-8d9a-495c-b40e-4997758ca6b4_normal.png", + "profile_background_color": "ACDED6", + "created_at": "Tue Jul 24 20:19:29 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268590618/eightbit-f0b3028b-8d9a-495c-b40e-4997758ca6b4_normal.png", + "favourites_count": 152, + "status": { + "retweet_count": 204, + "retweeted_status": { + "retweet_count": 204, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "670818411476291584", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 149, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 451, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 264, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", + "type": "photo", + "indices": [ + 84, + 107 + ], + "media_url": "http://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", + "display_url": "pic.twitter.com/TdOEFjCSHZ", + "id_str": "670818410016538624", + "expanded_url": "http://twitter.com/mattcutts/status/670818411476291584/photo/1", + "id": 670818410016538624, + "url": "https://t.co/TdOEFjCSHZ" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buzzfeed.com/sarahmathews/h\u2026", + "url": "https://t.co/b5aAcBpo2x", + "expanded_url": "http://www.buzzfeed.com/sarahmathews/how-to-get-your-green-card-in-america#.taAVLxo5Y", + "indices": [ + 22, + 45 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Nov 29 04:15:47 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 670818411476291584, + "text": "An immigrant's story: https://t.co/b5aAcBpo2x\n\nIt's a really good (important) read. https://t.co/TdOEFjCSHZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 261, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "670833853431422976", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 149, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 451, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 264, + "resize": "fit" + } + }, + "source_status_id_str": "670818411476291584", + "url": "https://t.co/TdOEFjCSHZ", + "media_url": "http://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", + "source_user_id_str": "3080761", + "id_str": "670818410016538624", + "id": 670818410016538624, + "media_url_https": "https://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", + "type": "photo", + "indices": [ + 99, + 122 + ], + "source_status_id": 670818411476291584, + "source_user_id": 3080761, + "display_url": "pic.twitter.com/TdOEFjCSHZ", + "expanded_url": "http://twitter.com/mattcutts/status/670818411476291584/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buzzfeed.com/sarahmathews/h\u2026", + "url": "https://t.co/b5aAcBpo2x", + "expanded_url": "http://www.buzzfeed.com/sarahmathews/how-to-get-your-green-card-in-america#.taAVLxo5Y", + "indices": [ + 37, + 60 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mattcutts", + "id_str": "3080761", + "id": 3080761, + "indices": [ + 3, + 13 + ], + "name": "Matt Cutts" + } + ] + }, + "created_at": "Sun Nov 29 05:17:08 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 670833853431422976, + "text": "RT @mattcutts: An immigrant's story: https://t.co/b5aAcBpo2x\n\nIt's a really good (important) read. https://t.co/TdOEFjCSHZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 7693892, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 441, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5746882", + "following": false, + "friends_count": 6134, + "entities": { + "description": { + "urls": [ + { + "display_url": "openhumans.org", + "url": "https://t.co/ycsix8FQSf", + "expanded_url": "http://openhumans.org", + "indices": [ + 91, + 114 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "beaugunderson.com", + "url": "https://t.co/de9VPgyMpj", + "expanded_url": "https://beaugunderson.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", + "notifications": false, + "profile_sidebar_fill_color": "F5F5F5", + "profile_link_color": "2D2823", + "geo_enabled": true, + "followers_count": 7380, + "location": "Seattle, WA", + "screen_name": "beaugunderson", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 175, + "name": "new beauginnings", + "profile_use_background_image": true, + "description": "feminist, feeling-haver, net art maker, #botALLY \u2665 javascript & python \u26a1\ufe0f pronouns: he/him https://t.co/ycsix8FQSf", + "url": "https://t.co/de9VPgyMpj", + "profile_text_color": "273633", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", + "profile_background_color": "204443", + "created_at": "Thu May 03 17:46:35 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "1A3230", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", + "favourites_count": 16157, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685605086504996864", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/nerdgarbagebot\u2026", + "url": "https://t.co/4kDdEz0rci", + "expanded_url": "https://twitter.com/nerdgarbagebot/status/685600694389309440", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:32:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685605086504996864, + "text": "not gonna lie i'd watch this if it came to key arena https://t.co/4kDdEz0rci", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 5746882, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", + "statuses_count": 14389, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5746882/1398198050", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "185682669", + "following": false, + "friends_count": 188, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jeremydove.WordPress.com", + "url": "http://t.co/09i6MGDXMz", + "expanded_url": "http://jeremydove.WordPress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 29, + "location": "Web", + "screen_name": "dovejeremy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Jeremy Dove", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/09i6MGDXMz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1796590654/DADD6983-561F-4E42-A57D-8CA98C0B5285_normal", + "profile_background_color": "131516", + "created_at": "Wed Sep 01 15:46:02 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1796590654/DADD6983-561F-4E42-A57D-8CA98C0B5285_normal", + "favourites_count": 18, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "unread_app", + "in_reply_to_user_id": 1616252148, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "595026850016923648", + "id": 595026850016923648, + "text": "@unread_app is there any way to add a new feed with the app?", + "in_reply_to_user_id_str": "1616252148", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "unread_app", + "id_str": "1616252148", + "id": 1616252148, + "indices": [ + 0, + 11 + ], + "name": "Unread" + } + ] + }, + "created_at": "Mon May 04 00:47:10 +0000 2015", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 185682669, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 401, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14127311", + "following": false, + "friends_count": 157, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/gwoo", + "url": "http://t.co/ZzcXX4NxLe", + "expanded_url": "http://github.com/gwoo", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/47979086/twitter-bg.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "029CD4", + "geo_enabled": true, + "followers_count": 1077, + "location": "Venice, CA", + "screen_name": "gwoo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 121, + "name": "gwoo", + "profile_use_background_image": true, + "description": "Likes building things.", + "url": "http://t.co/ZzcXX4NxLe", + "profile_text_color": "080808", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/76190782/Picture_4_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Mar 11 20:55:23 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/76190782/Picture_4_normal.jpg", + "favourites_count": 25, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 13799152, + "possibly_sensitive": false, + "id_str": "598902558845964288", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "aphyr.com/tags/jepsen", + "url": "https://t.co/46Sufv0orQ", + "expanded_url": "https://aphyr.com/tags/jepsen", + "indices": [ + 8, + 31 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "phishy", + "id_str": "13799152", + "id": 13799152, + "indices": [ + 0, + 7 + ], + "name": "Jeff Loiselle" + } + ] + }, + "created_at": "Thu May 14 17:27:51 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "13799152", + "place": null, + "in_reply_to_screen_name": "phishy", + "in_reply_to_status_id_str": "598854227423821824", + "truncated": false, + "id": 598902558845964288, + "text": "@phishy https://t.co/46Sufv0orQ", + "coordinates": null, + "in_reply_to_status_id": 598854227423821824, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 14127311, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/47979086/twitter-bg.png", + "statuses_count": 2698, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16388864", + "following": false, + "friends_count": 353, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/sixty4k", + "url": "http://t.co/ETlIgYv3ja", + "expanded_url": "http://about.me/sixty4k", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 390, + "location": "iPhone: 42.247345,-122.777405", + "screen_name": "sixty4k", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 23, + "name": "My Name is Mike", + "profile_use_background_image": true, + "description": "Internet janitor. Music collector/dj. Well meaning jerk. I devops the kanban of your agile lean.", + "url": "http://t.co/ETlIgYv3ja", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3140107376/eda338219ad74533f0c7fcec945ec7ac_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Sep 21 08:31:04 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3140107376/eda338219ad74533f0c7fcec945ec7ac_normal.jpeg", + "favourites_count": 3183, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "philiph", + "in_reply_to_user_id": 31693, + "in_reply_to_status_id_str": "685562636746895360", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685569787116826627", + "id": 685569787116826627, + "text": "@philiph FreeBSD? ooohhhhh, BeOS!? but srsly, get an SSD.", + "in_reply_to_user_id_str": "31693", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "philiph", + "id_str": "31693", + "id": 31693, + "indices": [ + 0, + 8 + ], + "name": "Philip J. Hollenback" + } + ] + }, + "created_at": "Fri Jan 08 21:12:29 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685562636746895360, + "lang": "en" + }, + "default_profile_image": false, + "id": 16388864, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 8364, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16388864/1419747240", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2788841", + "following": false, + "friends_count": 1338, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gRegorLove.com", + "url": "http://t.co/pM0DwbswIl", + "expanded_url": "http://gRegorLove.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138274533/SVWXap2U.png", + "notifications": false, + "profile_sidebar_fill_color": "E3E8FF", + "profile_link_color": "E00000", + "geo_enabled": true, + "followers_count": 1062, + "location": "Bellingham, WA", + "screen_name": "gRegorLove", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 75, + "name": "gRegor Morrill", + "profile_use_background_image": false, + "description": "music, faith, computer geekery, friends, liberty", + "url": "http://t.co/pM0DwbswIl", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/421355267800846336/9KjkIhvZ_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Thu Mar 29 04:43:14 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/421355267800846336/9KjkIhvZ_normal.jpeg", + "favourites_count": 22100, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "indiana_mama", + "in_reply_to_user_id": 121468302, + "in_reply_to_status_id_str": "685490719482626048", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685569803935821825", + "id": 685569803935821825, + "text": "@indiana_mama Probably after I finish _To Kill a Mockingbird_ and _Go Set a Watchman_.", + "in_reply_to_user_id_str": "121468302", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "indiana_mama", + "id_str": "121468302", + "id": 121468302, + "indices": [ + 0, + 13 + ], + "name": "Isha" + } + ] + }, + "created_at": "Fri Jan 08 21:12:33 +0000 2016", + "source": "Bridgy", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685490719482626048, + "lang": "en" + }, + "default_profile_image": false, + "id": 2788841, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138274533/SVWXap2U.png", + "statuses_count": 47029, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2788841/1357663506", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6964862", + "following": false, + "friends_count": 420, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/zerohalo", + "url": "https://t.co/jZZxidwL7w", + "expanded_url": "http://about.me/zerohalo", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 207, + "location": "Cambridge, Massachusetts", + "screen_name": "zerohalo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "Alan Graham", + "profile_use_background_image": true, + "description": "Just a geek that occasionally gets creative.", + "url": "https://t.co/jZZxidwL7w", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667085904796848128/yeFFAx6r_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Jun 20 12:44:06 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667085904796848128/yeFFAx6r_normal.jpg", + "favourites_count": 138, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682788358653882368", + "id": 682788358653882368, + "text": "Happy New Year!!!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 05:00:04 +0000 2016", + "source": "IFTTT", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 6964862, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 180, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11437862", + "following": false, + "friends_count": 469, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "brianlyttle.com", + "url": "https://t.co/ZLWdFllNPJ", + "expanded_url": "http://www.brianlyttle.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/214582547/blgrid.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "3958F5", + "geo_enabled": false, + "followers_count": 342, + "location": "Deep backwards square leg", + "screen_name": "brianly", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Brian Lyttle", + "profile_use_background_image": true, + "description": "Cloud Therapist at Yammer. Northern Ireland to Philadelphia via Manchester. Husband. C# and Python hacker. Photographer. Cyclist. Scuba. MUFC.", + "url": "https://t.co/ZLWdFllNPJ", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662301402337820672/npI4RiZD_normal.jpg", + "profile_background_color": "352726", + "created_at": "Sat Dec 22 19:09:45 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662301402337820672/npI4RiZD_normal.jpg", + "favourites_count": 319, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684531072105865217", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "qz.com/584874/you-pro\u2026", + "url": "https://t.co/QzpPweizjx", + "expanded_url": "http://qz.com/584874/you-probably-know-to-ask-yourself-what-do-i-want-heres-a-way-better-question/", + "indices": [ + 82, + 105 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 00:25:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684531072105865217, + "text": "You probably know to ask yourself, \u201cWhat do I want?\u201d Here\u2019s a way better question https://t.co/QzpPweizjx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 11437862, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/214582547/blgrid.gif", + "statuses_count": 1676, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11437862/1400990669", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "20182605", + "following": false, + "friends_count": 367, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "joedoyle.us", + "url": "http://t.co/bKxUjxFrF0", + "expanded_url": "http://joedoyle.us/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 202, + "location": "Oakland, CA", + "screen_name": "JoeDoyle23", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Joe Doyle", + "profile_use_background_image": false, + "description": "I love to Node and JavaScript. Brewer of beer and raiser of children. And other stuff. Head of Server @app_press", + "url": "http://t.co/bKxUjxFrF0", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/651126158143033344/n1qRgpfr_normal.png", + "profile_background_color": "000000", + "created_at": "Thu Feb 05 20:16:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/651126158143033344/n1qRgpfr_normal.png", + "favourites_count": 88, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685298883170177024", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 271, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 478, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 817, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", + "type": "photo", + "indices": [ + 62, + 85 + ], + "media_url": "http://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", + "display_url": "pic.twitter.com/PuR6RHNjVD", + "id_str": "685298879047188481", + "expanded_url": "http://twitter.com/sfnode/status/685298883170177024/photo/1", + "id": 685298879047188481, + "url": "https://t.co/PuR6RHNjVD" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 45, + 52 + ], + "text": "SFNode" + }, + { + "indices": [ + 54, + 61 + ], + "text": "nodejs" + } + ], + "user_mentions": [ + { + "screen_name": "MuleSoft", + "id_str": "15358364", + "id": 15358364, + "indices": [ + 11, + 20 + ], + "name": "MuleSoft" + } + ] + }, + "created_at": "Fri Jan 08 03:16:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685298883170177024, + "text": "Thank you, @MuleSoft for hosting the January #SFNode. #nodejs https://t.co/PuR6RHNjVD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685300256796360705", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 271, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 478, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 817, + "resize": "fit" + } + }, + "source_status_id_str": "685298883170177024", + "url": "https://t.co/PuR6RHNjVD", + "media_url": "http://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", + "source_user_id_str": "2800676574", + "id_str": "685298879047188481", + "id": 685298879047188481, + "media_url_https": "https://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", + "type": "photo", + "indices": [ + 74, + 97 + ], + "source_status_id": 685298883170177024, + "source_user_id": 2800676574, + "display_url": "pic.twitter.com/PuR6RHNjVD", + "expanded_url": "http://twitter.com/sfnode/status/685298883170177024/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 57, + 64 + ], + "text": "SFNode" + }, + { + "indices": [ + 66, + 73 + ], + "text": "nodejs" + } + ], + "user_mentions": [ + { + "screen_name": "sfnode", + "id_str": "2800676574", + "id": 2800676574, + "indices": [ + 3, + 10 + ], + "name": "SFNode" + }, + { + "screen_name": "MuleSoft", + "id_str": "15358364", + "id": 15358364, + "indices": [ + 23, + 32 + ], + "name": "MuleSoft" + } + ] + }, + "created_at": "Fri Jan 08 03:21:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685300256796360705, + "text": "RT @sfnode: Thank you, @MuleSoft for hosting the January #SFNode. #nodejs https://t.co/PuR6RHNjVD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 20182605, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 843, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/20182605/1444075879", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14828394", + "following": false, + "friends_count": 368, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ramimassoud.com", + "url": "http://t.co/GrPTeAGqdy", + "expanded_url": "http://www.ramimassoud.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 444, + "location": "Brooklyn, NY", + "screen_name": "ramimassoud", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "Rami Massoud", + "profile_use_background_image": true, + "description": "Software Engineer @ Blue Apron, amateur sys admin, tinkerer, weightlifter, wannabe personal trainer, Android & Google fanboy, a man with far too many interests.", + "url": "http://t.co/GrPTeAGqdy", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/534064169327558656/aCkK3-tV_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Mon May 19 04:11:47 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534064169327558656/aCkK3-tV_normal.jpeg", + "favourites_count": 83, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684789080660537348", + "geo": { + "coordinates": [ + 40.7209972, + -73.99769172 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "swarmapp.com/c/41APiX0kUEA", + "url": "https://t.co/BplvNzMSqr", + "expanded_url": "https://www.swarmapp.com/c/41APiX0kUEA", + "indices": [ + 64, + 87 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BrinkleysNYC", + "id_str": "521470746", + "id": 521470746, + "indices": [ + 34, + 47 + ], + "name": "Brinkley's " + } + ] + }, + "created_at": "Wed Jan 06 17:30:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.026675, + 40.683935 + ], + [ + -73.910408, + 40.683935 + ], + [ + -73.910408, + 40.877483 + ], + [ + -74.026675, + 40.877483 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Manhattan, NY", + "id": "01a9a39529b27f36", + "name": "Manhattan" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684789080660537348, + "text": "I'm at Brinkley's Broome Street - @brinkleysnyc in New York, NY https://t.co/BplvNzMSqr", + "coordinates": { + "coordinates": [ + -73.99769172, + 40.7209972 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Foursquare" + }, + "default_profile_image": false, + "id": 14828394, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 10713, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14828394/1416165880", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "3058771", + "following": false, + "friends_count": 1126, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "laurathomson.com", + "url": "http://t.co/wAR61EciPl", + "expanded_url": "http://www.laurathomson.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 5049, + "location": "New Windsor, MD", + "screen_name": "lxt", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 490, + "name": "Laura Thomson", + "profile_use_background_image": false, + "description": "Director of Cloud Services Engineering & Operations at Mozilla; lives on farm with horses; author of tech books and a novel; mum of 5yo. Also: Australian.", + "url": "http://t.co/wAR61EciPl", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/34583482/laura_tinker_normal.jpg", + "profile_background_color": "784C4C", + "created_at": "Sat Mar 31 12:41:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/34583482/laura_tinker_normal.jpg", + "favourites_count": 4943, + "status": { + "retweet_count": 26, + "retweeted_status": { + "retweet_count": 26, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684823328033517568", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/c4HJ6If6IA", + "url": "https://t.co/c4HJ6If6IA", + "expanded_url": "http://twitter.com/EightSexyLegs/status/684823328033517568/photo/1", + "indices": [ + 8, + 31 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 7 + ], + "text": "WTFWed" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 19:46:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684823328033517568, + "text": "#WTFWed https://t.co/c4HJ6If6IA", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 37, + "contributors": null, + "source": "Twitter for iPad" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685276347875209216", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/c4HJ6If6IA", + "url": "https://t.co/c4HJ6If6IA", + "expanded_url": "http://twitter.com/EightSexyLegs/status/684823328033517568/photo/1", + "indices": [ + 27, + 50 + ] + } + ], + "hashtags": [ + { + "indices": [ + 19, + 26 + ], + "text": "WTFWed" + } + ], + "user_mentions": [ + { + "screen_name": "EightSexyLegs", + "id_str": "2792800220", + "id": 2792800220, + "indices": [ + 3, + 17 + ], + "name": "Lady Lovecraft" + } + ] + }, + "created_at": "Fri Jan 08 01:46:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685276347875209216, + "text": "RT @EightSexyLegs: #WTFWed https://t.co/c4HJ6If6IA", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 3058771, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 11218, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3058771/1398196148", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "95265455", + "following": false, + "friends_count": 581, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/mixdown", + "url": "http://t.co/cfUQCzqHGU", + "expanded_url": "http://www.github.com/mixdown", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 367, + "location": "Austin, TX", + "screen_name": "tommymessbauer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Tommy Messbauer", + "profile_use_background_image": true, + "description": "JavaScript, Neo4j, Tacos. CTO at CBANC Network. Austin, TX.", + "url": "http://t.co/cfUQCzqHGU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/585634870916952066/-nE4XAJg_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 07 19:41:46 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/585634870916952066/-nE4XAJg_normal.jpg", + "favourites_count": 164, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683857944601952258", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/EmrgencyKitten\u2026", + "url": "https://t.co/xjKNLuKWU2", + "expanded_url": "https://twitter.com/EmrgencyKittens/status/683845387631902722", + "indices": [ + 31, + 54 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 03:50:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683857944601952258, + "text": "Is like 1 of everything please https://t.co/xjKNLuKWU2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 95265455, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1245, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/95265455/1421289194", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "107069240", + "following": false, + "friends_count": 2466, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/neillink", + "url": "https://t.co/TrqIrP1Pqr", + "expanded_url": "https://www.linkedin.com/in/neillink", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078007193/be505da5510f0199bd76494073afe194.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3F8DBF", + "geo_enabled": true, + "followers_count": 2502, + "location": "Ardsley, NY, USA", + "screen_name": "Neil_Link", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 467, + "name": "Neil Link", + "profile_use_background_image": true, + "description": "Web Specialist @ColumbiaMed in #NYC husband, father of 2 boys, I tweet #Growthhacking #UX #WebDesign #WordPress #Drupal #Marketing #Analytics #SEO #Healthcare", + "url": "https://t.co/TrqIrP1Pqr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674112006782328832/Es47kuDF_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jan 21 13:28:52 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674112006782328832/Es47kuDF_normal.jpg", + "favourites_count": 1748, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685066647145676800", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1ONxiyu", + "url": "https://t.co/as1uB9tCsm", + "expanded_url": "http://buff.ly/1ONxiyu", + "indices": [ + 59, + 82 + ] + } + ], + "hashtags": [ + { + "indices": [ + 12, + 15 + ], + "text": "UX" + }, + { + "indices": [ + 54, + 58 + ], + "text": "SEO" + } + ], + "user_mentions": [ + { + "screen_name": "usertesting", + "id_str": "16262203", + "id": 16262203, + "indices": [ + 87, + 99 + ], + "name": "UserTesting" + } + ] + }, + "created_at": "Thu Jan 07 11:53:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685066647145676800, + "text": "3 Ways That #UX Professionals Can Contribute to Great #SEO https://t.co/as1uB9tCsm via @usertesting", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 107069240, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078007193/be505da5510f0199bd76494073afe194.jpeg", + "statuses_count": 4453, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/107069240/1401216248", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "1497", + "following": false, + "friends_count": 1018, + "entities": { + "description": { + "urls": [ + { + "display_url": "bit.ly/r1GnK", + "url": "http://t.co/13wugYdFb3", + "expanded_url": "http://bit.ly/r1GnK", + "indices": [ + 56, + 78 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "harperreed.com", + "url": "http://t.co/bMyxp4Tgf6", + "expanded_url": "http://harperreed.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/1222/6335_copy.gif", + "notifications": false, + "profile_sidebar_fill_color": "D6DEE1", + "profile_link_color": "3399CC", + "geo_enabled": true, + "followers_count": 32539, + "location": "Chicago, IL", + "screen_name": "harper", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 1663, + "name": "harper", + "profile_use_background_image": true, + "description": "I am pretty awesome. Check out this guide to my tweets: http://t.co/13wugYdFb3 // former CTO @ Obama for America // founder of @Modest (acquired by @paypal)", + "url": "http://t.co/bMyxp4Tgf6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/550153119208726529/ZZqJSFpi_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Sun Jul 16 18:45:58 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/550153119208726529/ZZqJSFpi_normal.jpeg", + "favourites_count": 13680, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/f54a2170ff4b15f7.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -91.51308, + 36.970298 + ], + [ + -87.019935, + 36.970298 + ], + [ + -87.019935, + 42.508303 + ], + [ + -91.51308, + 42.508303 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Illinois, USA", + "id": "f54a2170ff4b15f7", + "name": "Illinois" + }, + "in_reply_to_screen_name": "jkriss", + "in_reply_to_user_id": 7475972, + "in_reply_to_status_id_str": "685594029271040000", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685594792307212288", + "id": 685594792307212288, + "text": "@jkriss @dylanr they already do.", + "in_reply_to_user_id_str": "7475972", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jkriss", + "id_str": "7475972", + "id": 7475972, + "indices": [ + 0, + 7 + ], + "name": "Jesse Kriss" + }, + { + "screen_name": "dylanr", + "id_str": "1042361", + "id": 1042361, + "indices": [ + 8, + 15 + ], + "name": "Dylan Richard" + } + ] + }, + "created_at": "Fri Jan 08 22:51:50 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685594029271040000, + "lang": "en" + }, + "default_profile_image": false, + "id": 1497, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/1222/6335_copy.gif", + "statuses_count": 60001, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1497/1398220532", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15716821", + "following": false, + "friends_count": 245, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 122, + "location": "Seattle", + "screen_name": "joneholland", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Jonathan Holland", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2196369645/224791_10150295475763345_677498344_9575803_3828841_n_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Aug 04 01:42:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2196369645/224791_10150295475763345_677498344_9575803_3828841_n_normal.jpg", + "favourites_count": 81, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jonfaulkenberry", + "in_reply_to_user_id": 14447782, + "in_reply_to_status_id_str": "684537269730983936", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684540067138777088", + "id": 684540067138777088, + "text": "@jonfaulkenberry Oh, that's a real thing. Startups these days.", + "in_reply_to_user_id_str": "14447782", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jonfaulkenberry", + "id_str": "14447782", + "id": 14447782, + "indices": [ + 0, + 16 + ], + "name": "Jon Faulkenberry" + } + ] + }, + "created_at": "Wed Jan 06 01:00:44 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684537269730983936, + "lang": "en" + }, + "default_profile_image": false, + "id": 15716821, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3545, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15716821/1405878457", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3241601", + "following": false, + "friends_count": 509, + "entities": { + "description": { + "urls": [ + { + "display_url": "meh.com", + "url": "https://t.co/qCjFrI6d3T", + "expanded_url": "https://meh.com", + "indices": [ + 75, + 98 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "meh.com", + "url": "https://t.co/qCjFrHxyTP", + "expanded_url": "https://meh.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1105, + "location": "St. Louis, MO", + "screen_name": "smiller", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 59, + "name": "Shawn Miller", + "profile_use_background_image": true, + "description": "Co-Founder, CTO of @mediocrelabs (formerly of @woot). Most recent project: https://t.co/qCjFrI6d3T", + "url": "https://t.co/qCjFrHxyTP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3577947718/40d10a68196672e0e17fb110f9a0aef0_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Apr 02 19:26:52 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3577947718/40d10a68196672e0e17fb110f9a0aef0_normal.jpeg", + "favourites_count": 554, + "status": { + "retweet_count": 219, + "retweeted_status": { + "retweet_count": 219, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684895818780901376", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 194, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 344, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 587, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", + "type": "photo", + "indices": [ + 82, + 105 + ], + "media_url": "http://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", + "display_url": "pic.twitter.com/CuMbZD9ZjL", + "id_str": "684895817778466820", + "expanded_url": "http://twitter.com/TheNextWeb/status/684895818780901376/photo/1", + "id": 684895817778466820, + "url": "https://t.co/CuMbZD9ZjL" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "tnw.me/eNECesx", + "url": "https://t.co/8cyEVgiQbN", + "expanded_url": "http://tnw.me/eNECesx", + "indices": [ + 58, + 81 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 00:34:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684895818780901376, + "text": "Get excited: Internet Explorer 8, 9 and 10 die on Tuesday https://t.co/8cyEVgiQbN https://t.co/CuMbZD9ZjL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 115, + "contributors": null, + "source": "SocialFlow" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684896699316318209", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 194, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 344, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 587, + "resize": "fit" + } + }, + "source_status_id_str": "684895818780901376", + "url": "https://t.co/CuMbZD9ZjL", + "media_url": "http://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", + "source_user_id_str": "10876852", + "id_str": "684895817778466820", + "id": 684895817778466820, + "media_url_https": "https://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", + "type": "photo", + "indices": [ + 98, + 121 + ], + "source_status_id": 684895818780901376, + "source_user_id": 10876852, + "display_url": "pic.twitter.com/CuMbZD9ZjL", + "expanded_url": "http://twitter.com/TheNextWeb/status/684895818780901376/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "tnw.me/eNECesx", + "url": "https://t.co/8cyEVgiQbN", + "expanded_url": "http://tnw.me/eNECesx", + "indices": [ + 74, + 97 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheNextWeb", + "id_str": "10876852", + "id": 10876852, + "indices": [ + 3, + 14 + ], + "name": "The Next Web" + } + ] + }, + "created_at": "Thu Jan 07 00:37:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684896699316318209, + "text": "RT @TheNextWeb: Get excited: Internet Explorer 8, 9 and 10 die on Tuesday https://t.co/8cyEVgiQbN https://t.co/CuMbZD9ZjL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3241601, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3619, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3241601/1375155591", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "16350343", + "following": false, + "friends_count": 140, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 138, + "location": "Dubuque/San Jose", + "screen_name": "chad3814", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Chad Walker", + "profile_use_background_image": true, + "description": "ya know, I do stuff", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459055261701787649/mNe_P6yV_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Sep 18 18:08:47 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459055261701787649/mNe_P6yV_normal.jpeg", + "favourites_count": 779, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685471954078412800", + "id": 685471954078412800, + "text": "This is amazing", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:43:43 +0000 2016", + "source": "IFTTT", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 16350343, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3329, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16350343/1402684911", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "14156277", + "following": false, + "friends_count": 467, + "entities": { + "description": { + "urls": [ + { + "display_url": "xkcd.com/1053", + "url": "https://t.co/HvLA1ZBXmI", + "expanded_url": "http://xkcd.com/1053", + "indices": [ + 102, + 125 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "motowilliams.com", + "url": "https://t.co/ZgEB6wuZx4", + "expanded_url": "http://www.motowilliams.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/181362032/BikeWheel.jpg", + "notifications": false, + "profile_sidebar_fill_color": "9E9E9E", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 733, + "location": "Florence, Mt", + "screen_name": "MotoWilliams", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 78, + "name": "Eric Williams", + "profile_use_background_image": true, + "description": "Human | Husband | Father | Archery | Hunting | Fishing | Mountains | Motorcycles | \u266cusic | Software | https://t.co/HvLA1ZBXmI | Opinions === Mine", + "url": "https://t.co/ZgEB6wuZx4", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684129451592921088/O53po1Q__normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Sun Mar 16 05:07:22 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684129451592921088/O53po1Q__normal.jpg", + "favourites_count": 6673, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609988971073536", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "docs.octopusdeploy.com", + "url": "https://t.co/Ph1dgN0K3P", + "expanded_url": "http://docs.octopusdeploy.com", + "indices": [ + 45, + 68 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "OctopusDeploy", + "id_str": "623700982", + "id": 623700982, + "indices": [ + 8, + 22 + ], + "name": "OctopusDeploy" + }, + { + "screen_name": "paulstovell", + "id_str": "5523802", + "id": 5523802, + "indices": [ + 70, + 82 + ], + "name": "Paul Stovell" + } + ] + }, + "created_at": "Fri Jan 08 23:52:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609988971073536, + "text": "Are the @OctopusDeploy docs down or just me? https://t.co/Ph1dgN0K3P +@paulstovell", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 14156277, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/181362032/BikeWheel.jpg", + "statuses_count": 40966, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14156277/1398196926", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "125027291", + "following": false, + "friends_count": 945, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "substack.net", + "url": "http://t.co/6KoJQ4Tuc3", + "expanded_url": "http://substack.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 17926, + "location": "Oakland", + "screen_name": "substack", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 891, + "name": "substack", + "profile_use_background_image": true, + "description": "...", + "url": "http://t.co/6KoJQ4Tuc3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3342514715/3fde89df63ea4dacf9de71369019df22_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Mar 21 12:31:12 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3342514715/3fde89df63ea4dacf9de71369019df22_normal.png", + "favourites_count": 218, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "thlorenz", + "in_reply_to_user_id": 174726123, + "in_reply_to_status_id_str": "685508298917986305", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685520249416974336", + "id": 685520249416974336, + "text": "@thlorenz medellin is great!", + "in_reply_to_user_id_str": "174726123", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thlorenz", + "id_str": "174726123", + "id": 174726123, + "indices": [ + 0, + 9 + ], + "name": "Thorsten Lorenz" + } + ] + }, + "created_at": "Fri Jan 08 17:55:38 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685508298917986305, + "lang": "en" + }, + "default_profile_image": false, + "id": 125027291, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8790, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/125027291/1353491796", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6899112", + "following": false, + "friends_count": 762, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "justin.abrah.ms", + "url": "https://t.co/WLkSUuncSH", + "expanded_url": "https://justin.abrah.ms", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/102154262/twitter_header.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFF0", + "profile_link_color": "1D521D", + "geo_enabled": true, + "followers_count": 2118, + "location": "Cambridge, MA", + "screen_name": "justinabrahms", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 198, + "name": "Justin Abrahms", + "profile_use_background_image": false, + "description": "Founder of BetterDiff, an automated code coverage tool. Engineer. Marketer? Nerd.", + "url": "https://t.co/WLkSUuncSH", + "profile_text_color": "1A1001", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/587695307766374402/mABPHAMF_normal.jpg", + "profile_background_color": "273B28", + "created_at": "Mon Jun 18 20:33:27 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/587695307766374402/mABPHAMF_normal.jpg", + "favourites_count": 1171, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 4380901, + "possibly_sensitive": false, + "id_str": "685487117498191873", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "lh3.googleusercontent.com/-nvAFJ73mXlk/V\u2026", + "url": "https://t.co/6hbwJVPRuH", + "expanded_url": "https://lh3.googleusercontent.com/-nvAFJ73mXlk/Vo03ikpmKWI/AAAAAAAAn7w/S-Z48VuF7KU/w457-h380-rw/kisa_2.gif", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "electromute", + "id_str": "4380901", + "id": 4380901, + "indices": [ + 0, + 12 + ], + "name": "Ingrid Alongi" + } + ] + }, + "created_at": "Fri Jan 08 15:43:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "4380901", + "place": null, + "in_reply_to_screen_name": "electromute", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685487117498191873, + "text": "@electromute Next time you visit Portland, you should check out their track racing team. \n\nhttps://t.co/6hbwJVPRuH", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 6899112, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/102154262/twitter_header.png", + "statuses_count": 14210, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6899112/1354173651", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "17950990", + "following": false, + "friends_count": 2152, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dinhe.net/~aredridel/", + "url": "http://t.co/M8UUTeuY4z", + "expanded_url": "http://dinhe.net/~aredridel/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": true, + "followers_count": 2516, + "location": "Somerville, MA", + "screen_name": "aredridel", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 185, + "name": "Aria Stewart", + "profile_use_background_image": true, + "description": "Random internet positive commenter & foul weather friend.\n\nUnschooler.\n\nwww at npmjs\n\n[Object object]\n\n\u2665\ufe0e node.js\n\n\u26a7", + "url": "http://t.co/M8UUTeuY4z", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/651825569735290880/JRbMsOV2_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Mon Dec 08 00:04:59 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/651825569735290880/JRbMsOV2_normal.jpg", + "favourites_count": 20319, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "megapctr", + "in_reply_to_user_id": 990607400, + "in_reply_to_status_id_str": "685503517860204546", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685510235625271298", + "id": 685510235625271298, + "text": "@megapctr What sort of missing features have you found wanting?", + "in_reply_to_user_id_str": "990607400", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "megapctr", + "id_str": "990607400", + "id": 990607400, + "indices": [ + 0, + 9 + ], + "name": "Filip" + } + ] + }, + "created_at": "Fri Jan 08 17:15:50 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685503517860204546, + "lang": "en" + }, + "default_profile_image": false, + "id": 17950990, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "statuses_count": 53299, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17950990/1398362738", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "756084", + "following": false, + "friends_count": 556, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ruiningitforeveryone.tv", + "url": "https://t.co/s04EuVwJM4", + "expanded_url": "http://ruiningitforeveryone.tv", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 1122, + "location": "iPhone: 40.744831,-73.989326", + "screen_name": "octothorpe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 89, + "name": "CM Harrington", + "profile_use_background_image": true, + "description": "Dir. Creative Strategy at Gartner. Host of Ruining It For Everyone on iTunes. \nI speak for me alone.", + "url": "https://t.co/s04EuVwJM4", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/22686212/me_normal.jpg", + "profile_background_color": "352726", + "created_at": "Wed Feb 07 15:45:26 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/22686212/me_normal.jpg", + "favourites_count": 7269, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685595380290039808", + "id": 685595380290039808, + "text": "So, why aren't folks on PrEP called PrEPPies? That sounds way cooler than the alternative.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:54:11 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 756084, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 54061, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/756084/1428809294", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15394440", + "following": false, + "friends_count": 407, + "entities": { + "description": { + "urls": [ + { + "display_url": "github.com/chrisdickinson/", + "url": "https://t.co/v0Wne0tapL", + "expanded_url": "https://github.com/chrisdickinson/", + "indices": [ + 94, + 117 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "neversaw.us", + "url": "https://t.co/DKOJdPvUh1", + "expanded_url": "http://neversaw.us/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/83753896/bg_.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 1917, + "location": "Portland, OR", + "screen_name": "isntitvacant", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 136, + "name": "Chris Dickinson", + "profile_use_background_image": true, + "description": "there's no problem javascript can't solve or change into a bigger, more interesting problem | https://t.co/v0Wne0tapL", + "url": "https://t.co/DKOJdPvUh1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668015451243327489/6G04zB-4_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Jul 11 17:49:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668015451243327489/6G04zB-4_normal.jpg", + "favourites_count": 1954, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "isntitvacant", + "in_reply_to_user_id": 15394440, + "in_reply_to_status_id_str": "685523715182833664", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685524143182200832", + "id": 685524143182200832, + "text": "@HenrikJoreteg ... it sure is interesting to exhaust a problem space looking for the optimal (if not perfect) solution!", + "in_reply_to_user_id_str": "15394440", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "HenrikJoreteg", + "id_str": "15102110", + "id": 15102110, + "indices": [ + 0, + 14 + ], + "name": "Henrik Joreteg" + } + ] + }, + "created_at": "Fri Jan 08 18:11:06 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685523715182833664, + "lang": "en" + }, + "default_profile_image": false, + "id": 15394440, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/83753896/bg_.gif", + "statuses_count": 5619, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15394440/1412028986", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "256708520", + "following": false, + "friends_count": 218, + "entities": { + "description": { + "urls": [ + { + "display_url": "tesera.com", + "url": "https://t.co/sDJ88c2RvY", + "expanded_url": "http://tesera.com", + "indices": [ + 27, + 50 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "about.me/yvesrichard", + "url": "https://t.co/se48pwxTNe", + "expanded_url": "https://about.me/yvesrichard", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 91, + "location": "Golden, British Columbia", + "screen_name": "whyvez8", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Yves Richard", + "profile_use_background_image": true, + "description": "Senior Systems Developer @ https://t.co/sDJ88c2RvY, mountain enthusiast, io literarian.", + "url": "https://t.co/se48pwxTNe", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659911981206388736/PmAdI2y2_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Feb 23 22:47:52 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659911981206388736/PmAdI2y2_normal.jpg", + "favourites_count": 1187, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685129144317808640", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/addyosmani/sta\u2026", + "url": "https://t.co/tGbeZcqL5w", + "expanded_url": "https://twitter.com/addyosmani/status/684891142597554176", + "indices": [ + 7, + 30 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 16:01:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "tl", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685129144317808640, + "text": "bahaha https://t.co/tGbeZcqL5w", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 256708520, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 789, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/256708520/1398254080", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2602238342", + "following": false, + "friends_count": 234, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ryan.muller.io", + "url": "http://t.co/eeHqHjnmWo", + "expanded_url": "http://ryan.muller.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/509704798501756929/igNNglAV.png", + "notifications": false, + "profile_sidebar_fill_color": "F3C18C", + "profile_link_color": "003D7A", + "geo_enabled": false, + "followers_count": 97, + "location": "Tallahassee, FL", + "screen_name": "_r24y", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Ryan Muller", + "profile_use_background_image": false, + "description": "3D printing, JavaScript, and general hackery.", + "url": "http://t.co/eeHqHjnmWo", + "profile_text_color": "E39074", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/488683566151114754/fPo8MbIv_normal.jpeg", + "profile_background_color": "575457", + "created_at": "Thu Jul 03 20:56:22 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "E3CFB8", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/488683566151114754/fPo8MbIv_normal.jpeg", + "favourites_count": 385, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ZSchmois", + "in_reply_to_user_id": 4483108395, + "in_reply_to_status_id_str": "685231513986830336", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685232139965722629", + "id": 685232139965722629, + "text": "@ZSchmois super relevant! We can change this tomorrow", + "in_reply_to_user_id_str": "4483108395", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ZSchmois", + "id_str": "4483108395", + "id": 4483108395, + "indices": [ + 0, + 9 + ], + "name": "Zeke Schmois" + } + ] + }, + "created_at": "Thu Jan 07 22:50:47 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685231513986830336, + "lang": "en" + }, + "default_profile_image": false, + "id": 2602238342, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/509704798501756929/igNNglAV.png", + "statuses_count": 391, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2602238342/1418565500", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "15677320", + "following": false, + "friends_count": 609, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mikereedell.com", + "url": "http://t.co/LKwFFif0PK", + "expanded_url": "http://www.mikereedell.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": true, + "followers_count": 464, + "location": "Westminster, CO", + "screen_name": "mreedell", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "Mike Reedell", + "profile_use_background_image": false, + "description": "Software developer at Comcast VIPER. Gopher. Former 3x Ironman.", + "url": "http://t.co/LKwFFif0PK", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000838096401/8d33d6313a73391288fce158b7892e96_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Thu Jul 31 17:07:28 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000838096401/8d33d6313a73391288fce158b7892e96_normal.jpeg", + "favourites_count": 325, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "davidjrusek", + "in_reply_to_user_id": 280319660, + "in_reply_to_status_id_str": "684785992771842049", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684786667064930304", + "id": 684786667064930304, + "text": "@davidjrusek I hear you. My commute to Denver is easy. Either Denver or full-time remote for me in the future.", + "in_reply_to_user_id_str": "280319660", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "davidjrusek", + "id_str": "280319660", + "id": 280319660, + "indices": [ + 0, + 12 + ], + "name": "Dave with a 'D'" + } + ] + }, + "created_at": "Wed Jan 06 17:20:38 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684785992771842049, + "lang": "en" + }, + "default_profile_image": false, + "id": 15677320, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 3065, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15677320/1399598887", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16032953", + "following": false, + "friends_count": 393, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 72, + "location": "", + "screen_name": "deryni", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Etan Reisner", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2902759343/ed71a219892c95584141421f8c4d5917_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Aug 28 21:19:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2902759343/ed71a219892c95584141421f8c4d5917_normal.jpeg", + "favourites_count": 651, + "status": { + "retweet_count": 451, + "retweeted_status": { + "retweet_count": 451, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681583753987162112", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "code.google.com/p/google-secur\u2026", + "url": "https://t.co/n7Kv4tKJce", + "expanded_url": "https://code.google.com/p/google-security-research/issues/detail?id=675", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Dec 28 21:13:24 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681583753987162112, + "text": "AVG Antivirus Chrome extension hijacks browser, bypasses malware checks, and exposes users to security flaws https://t.co/n7Kv4tKJce", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 171, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681980856303513600", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "code.google.com/p/google-secur\u2026", + "url": "https://t.co/n7Kv4tKJce", + "expanded_url": "https://code.google.com/p/google-security-research/issues/detail?id=675", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SwiftOnSecurity", + "id_str": "2436389418", + "id": 2436389418, + "indices": [ + 3, + 19 + ], + "name": "SecuriTay" + } + ] + }, + "created_at": "Tue Dec 29 23:31:21 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681980856303513600, + "text": "RT @SwiftOnSecurity: AVG Antivirus Chrome extension hijacks browser, bypasses malware checks, and exposes users to security flaws https://t\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 16032953, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 334, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "98531887", + "following": false, + "friends_count": 298, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jesseditson.com", + "url": "http://t.co/DUStTlFFNZ", + "expanded_url": "http://jesseditson.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "FF7300", + "geo_enabled": true, + "followers_count": 425, + "location": "San Francisco", + "screen_name": "jesseditson", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Jesse Ditson", + "profile_use_background_image": true, + "description": "Wizard", + "url": "http://t.co/DUStTlFFNZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2213145520/image_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 22 02:58:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2213145520/image_normal.jpg", + "favourites_count": 473, + "status": { + "retweet_count": 982, + "retweeted_status": { + "retweet_count": 982, + "in_reply_to_user_id": 373564351, + "possibly_sensitive": false, + "id_str": "680443862687432704", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "vine.co/v/OMqDr7r0bKI", + "url": "https://t.co/ece7tlGEDE", + "expanded_url": "http://vine.co/v/OMqDr7r0bKI", + "indices": [ + 52, + 75 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Dec 25 17:43:53 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "373564351", + "place": null, + "in_reply_to_screen_name": "Khanoisseur", + "in_reply_to_status_id_str": "648872546335461376", + "truncated": false, + "id": 680443862687432704, + "text": "greatest Christmas gift unwrapping vine of all time https://t.co/ece7tlGEDE", + "coordinates": null, + "in_reply_to_status_id": 648872546335461376, + "favorite_count": 1047, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "680839022814494722", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "vine.co/v/OMqDr7r0bKI", + "url": "https://t.co/ece7tlGEDE", + "expanded_url": "http://vine.co/v/OMqDr7r0bKI", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Khanoisseur", + "id_str": "373564351", + "id": 373564351, + "indices": [ + 3, + 15 + ], + "name": "Adam Khan" + } + ] + }, + "created_at": "Sat Dec 26 19:54:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 680839022814494722, + "text": "RT @Khanoisseur: greatest Christmas gift unwrapping vine of all time https://t.co/ece7tlGEDE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 98531887, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3103, + "is_translator": false + }, + { + "time_zone": "La Paz", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "8533632", + "following": false, + "friends_count": 3166, + "entities": { + "description": { + "urls": [ + { + "display_url": "emberaddons.com", + "url": "https://t.co/0C0x1rcZv4", + "expanded_url": "http://emberaddons.com", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "elweb.co", + "url": "https://t.co/kVZTn3FcBa", + "expanded_url": "http://elweb.co", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2988, + "location": "San Juan, Puerto Rico", + "screen_name": "gcollazo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 151, + "name": "Giovanni Collazo", + "profile_use_background_image": true, + "description": "Code + Design. @Blimp, @GasolinaMovil, @StartupsOfPR, @FullstackNights, @BuiltWithEmber, https://t.co/0C0x1rcZv4. Se habla Espa\u00f1ol. hello@gcollazo.com", + "url": "https://t.co/kVZTn3FcBa", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/645002062569213952/eS7i6YJO_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Aug 30 13:05:00 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645002062569213952/eS7i6YJO_normal.jpg", + "favourites_count": 3848, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685500634691452928", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BASPdlsgBKu/", + "url": "https://t.co/UPkfSDssv2", + "expanded_url": "https://www.instagram.com/p/BASPdlsgBKu/", + "indices": [ + 20, + 43 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:37:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685500634691452928, + "text": "Just posted a photo https://t.co/UPkfSDssv2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 8533632, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 17970, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8533632/1437859490", + "is_translator": false + }, + { + "time_zone": "Melbourne", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "14998770", + "following": false, + "friends_count": 141, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bluetigertech.com.au", + "url": "http://t.co/IXU8f2vC3K", + "expanded_url": "http://www.bluetigertech.com.au", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 25, + "location": "Pomonal Victoria Australia", + "screen_name": "daveywc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "David Compton", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/IXU8f2vC3K", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1682442728/David_Profile_Picture_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 03 23:10:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1682442728/David_Profile_Picture_normal.jpg", + "favourites_count": 33, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "650503056451239937", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "citizengo.org/en/30210-send-\u2026", + "url": "http://t.co/4kMGgdfnpX", + "expanded_url": "http://citizengo.org/en/30210-send-letter-denouncing-australias-deportation-peaceful-pro-life-speaker?tc=tw&tcid=16491525", + "indices": [ + 113, + 135 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Oct 04 02:49:49 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 650503056451239937, + "text": "Justice Geoffrey Nettle of the High Court of Australia: Send a letter denouncing Australia's deportation of a... http://t.co/4kMGgdfnpX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14998770, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 104, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15692193", + "following": false, + "friends_count": 731, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "feross.org", + "url": "http://t.co/Xk7quPGsmg", + "expanded_url": "http://feross.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000160435454/xj8GKj2U.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 9363, + "location": "Stanford, CA", + "screen_name": "feross", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 539, + "name": "Feross", + "profile_use_background_image": true, + "description": "Mad scientist, building @StudyNotesApp and @WebTorrentApp. Previously, founded @PeerCDN, Stanford '12.", + "url": "http://t.co/Xk7quPGsmg", + "profile_text_color": "5D8CBF", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458911857466560513/uKX6-c4z_normal.jpeg", + "profile_background_color": "990000", + "created_at": "Fri Aug 01 18:03:27 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458911857466560513/uKX6-c4z_normal.jpeg", + "favourites_count": 4400, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685610775055056896", + "id": 685610775055056896, + "text": "\"Debugging is 2x as hard as writing a program in the 1st place. So if you're as clever as can be when you write it, how will you debug it?\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:55:21 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15692193, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000160435454/xj8GKj2U.jpeg", + "statuses_count": 12257, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15692193/1449273254", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15116482", + "following": false, + "friends_count": 1882, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thewebivore.com", + "url": "http://t.co/bvhYAgzlQw", + "expanded_url": "http://thewebivore.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 4858, + "location": "Philadelphia, PA", + "screen_name": "pamasaur", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 374, + "name": "Pam Selle", + "profile_use_background_image": true, + "description": "Professional nerd, amateur humorist, author, herbivore, cyclist, and hacker. @recursecenter alum, @phillyjsdev cat herder. she/her", + "url": "http://t.co/bvhYAgzlQw", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495266631539388417/7DLEFWis_normal.jpeg", + "profile_background_color": "EBEBEB", + "created_at": "Sat Jun 14 12:58:09 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495266631539388417/7DLEFWis_normal.jpeg", + "favourites_count": 663, + "status": { + "retweet_count": 9, + "retweeted_status": { + "retweet_count": 9, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685268431336271872", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "hubs.ly/H01MfrH0", + "url": "https://t.co/IJL2mtiIVd", + "expanded_url": "http://hubs.ly/H01MfrH0", + "indices": [ + 97, + 120 + ] + } + ], + "hashtags": [ + { + "indices": [ + 122, + 133 + ], + "text": "remotework" + }, + { + "indices": [ + 134, + 138 + ], + "text": "rwd" + } + ], + "user_mentions": [ + { + "screen_name": "Skillcrush", + "id_str": "507709379", + "id": 507709379, + "indices": [ + 49, + 60 + ], + "name": "Skillcrush" + } + ] + }, + "created_at": "Fri Jan 08 01:15:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685268431336271872, + "text": "We are looking for a junior designer to join the @Skillcrush instructor team as a Web Design TA! https://t.co/IJL2mtiIVd\u2026 #remotework #rwd", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "HubSpot" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685271320104431616", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "hubs.ly/H01MfrH0", + "url": "https://t.co/IJL2mtiIVd", + "expanded_url": "http://hubs.ly/H01MfrH0", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "remotework" + }, + { + "indices": [ + 139, + 140 + ], + "text": "rwd" + } + ], + "user_mentions": [ + { + "screen_name": "Skillcrush", + "id_str": "507709379", + "id": 507709379, + "indices": [ + 3, + 14 + ], + "name": "Skillcrush" + }, + { + "screen_name": "Skillcrush", + "id_str": "507709379", + "id": 507709379, + "indices": [ + 65, + 76 + ], + "name": "Skillcrush" + } + ] + }, + "created_at": "Fri Jan 08 01:26:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685271320104431616, + "text": "RT @Skillcrush: We are looking for a junior designer to join the @Skillcrush instructor team as a Web Design TA! https://t.co/IJL2mtiIVd\u2026 #\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 15116482, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 9248, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15116482/1401891491", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2410813016", + "following": false, + "friends_count": 785, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3848, + "location": "London - Italy", + "screen_name": "nino_fontana", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Nino Fontana", + "profile_use_background_image": true, + "description": "PhD student. Ci\u00f2 che l'occhio \u00e8 per il corpo, la ragione lo \u00e8 per l'anima (Erasmo da Rotterdam)", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/452580209338744832/fOs_cvov_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Mar 25 10:49:33 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "it", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/452580209338744832/fOs_cvov_normal.jpeg", + "favourites_count": 317, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 85626417, + "possibly_sensitive": false, + "id_str": "680730135658643456", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tinyurl.com/ptrpk7x", + "url": "https://t.co/qZ1UX8oM1z", + "expanded_url": "http://tinyurl.com/ptrpk7x", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [ + { + "indices": [ + 103, + 114 + ], + "text": "Natale2015" + } + ], + "user_mentions": [ + { + "screen_name": "Gazzetta_it", + "id_str": "85626417", + "id": 85626417, + "indices": [ + 35, + 47 + ], + "name": "LaGazzettadelloSport" + } + ] + }, + "created_at": "Sat Dec 26 12:41:26 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "it", + "in_reply_to_user_id_str": "85626417", + "place": null, + "in_reply_to_screen_name": "Gazzetta_it", + "in_reply_to_status_id_str": "680389107806265344", + "truncated": false, + "id": 680730135658643456, + "text": "Il vero spirito del Natale secondo @Gazzetta_it, complimenti\r \"Con Angeli cos\u00ec non pu\u00f2 essere che Buon #Natale2015 https://t.co/qZ1UX8oM1z\"", + "coordinates": null, + "in_reply_to_status_id": 680389107806265344, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Windows Phone" + }, + "default_profile_image": false, + "id": 2410813016, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2414, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2410813016/1395746672", + "is_translator": false + }, + { + "time_zone": "Sydney", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "14180671", + "following": false, + "friends_count": 1902, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bytecodeartist.net", + "url": "http://t.co/eujmx5ZDq9", + "expanded_url": "http://www.bytecodeartist.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685970528/5077b01ec673f963a50580b055dde7b5.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F3F7D9", + "profile_link_color": "2D3873", + "geo_enabled": true, + "followers_count": 1369, + "location": "Earth", + "screen_name": "philiplaureano", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 110, + "name": "Philip Laureano", + "profile_use_background_image": false, + "description": "World Traveler, Avid Foodie, .NET Junkie/Human CLR, Amateur Photographer, AOP Enthusiast, and ILDasm Geek in this amazing home we call Earth", + "url": "http://t.co/eujmx5ZDq9", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2657709076/0037b8cb2ab7fb1cc61a1002e4f67251_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Mar 19 23:23:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2657709076/0037b8cb2ab7fb1cc61a1002e4f67251_normal.jpeg", + "favourites_count": 3301, + "status": { + "retweet_count": 239, + "retweeted_status": { + "retweet_count": 239, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685192813236088832", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mcaule.github.io/d3_exploding_b\u2026", + "url": "https://t.co/4jJHibAgnW", + "expanded_url": "http://mcaule.github.io/d3_exploding_boxplot/", + "indices": [ + 51, + 74 + ] + }, + { + "display_url": "pic.twitter.com/DUnQmbbNdP", + "url": "https://t.co/DUnQmbbNdP", + "expanded_url": "http://twitter.com/maartenzam/status/685192813236088832/photo/1", + "indices": [ + 93, + 116 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 3 + ], + "text": "D3" + } + ], + "user_mentions": [ + { + "screen_name": "NadiehBremer", + "id_str": "242069220", + "id": 242069220, + "indices": [ + 79, + 92 + ], + "name": "Nadieh Bremer" + } + ] + }, + "created_at": "Thu Jan 07 20:14:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "sv", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685192813236088832, + "text": "#D3 Exploding box plot (aka imploding scatterplot) https://t.co/4jJHibAgnW Via @NadiehBremer https://t.co/DUnQmbbNdP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 319, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685317541200187392", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mcaule.github.io/d3_exploding_b\u2026", + "url": "https://t.co/4jJHibAgnW", + "expanded_url": "http://mcaule.github.io/d3_exploding_boxplot/", + "indices": [ + 67, + 90 + ] + }, + { + "display_url": "pic.twitter.com/DUnQmbbNdP", + "url": "https://t.co/DUnQmbbNdP", + "expanded_url": "http://twitter.com/maartenzam/status/685192813236088832/photo/1", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [ + { + "indices": [ + 16, + 19 + ], + "text": "D3" + } + ], + "user_mentions": [ + { + "screen_name": "maartenzam", + "id_str": "17242884", + "id": 17242884, + "indices": [ + 3, + 14 + ], + "name": "Maarten Lambrechts" + }, + { + "screen_name": "NadiehBremer", + "id_str": "242069220", + "id": 242069220, + "indices": [ + 95, + 108 + ], + "name": "Nadieh Bremer" + } + ] + }, + "created_at": "Fri Jan 08 04:30:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "sv", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685317541200187392, + "text": "RT @maartenzam: #D3 Exploding box plot (aka imploding scatterplot) https://t.co/4jJHibAgnW Via @NadiehBremer https://t.co/DUnQmbbNdP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 14180671, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685970528/5077b01ec673f963a50580b055dde7b5.jpeg", + "statuses_count": 16389, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14180671/1371759640", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "481383369", + "following": false, + "friends_count": 103, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0F6B8C", + "geo_enabled": false, + "followers_count": 77, + "location": "Cambridge, UK", + "screen_name": "alan_gibble", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Alan Wright", + "profile_use_background_image": true, + "description": "Infrastructure Software Engineer at Spotify. Always learning.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/481454286866366464/AylmX2yj_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Feb 02 17:44:50 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/481454286866366464/AylmX2yj_normal.png", + "favourites_count": 16, + "status": { + "retweet_count": 374, + "retweeted_status": { + "retweet_count": 374, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684921510113460224", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1022, + "h": 523, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 307, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 173, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", + "type": "photo", + "indices": [ + 40, + 63 + ], + "media_url": "http://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", + "display_url": "pic.twitter.com/4ZGS1srULp", + "id_str": "684921509362688000", + "expanded_url": "http://twitter.com/AdamMGrant/status/684921510113460224/photo/1", + "id": 684921509362688000, + "url": "https://t.co/4ZGS1srULp" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 02:16:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684921510113460224, + "text": "2015 in America, in 460 million tweets: https://t.co/4ZGS1srULp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 268, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685016635623751680", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1022, + "h": 523, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 307, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 173, + "resize": "fit" + } + }, + "source_status_id_str": "684921510113460224", + "url": "https://t.co/4ZGS1srULp", + "media_url": "http://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", + "source_user_id_str": "1059273780", + "id_str": "684921509362688000", + "id": 684921509362688000, + "media_url_https": "https://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", + "type": "photo", + "indices": [ + 56, + 79 + ], + "source_status_id": 684921510113460224, + "source_user_id": 1059273780, + "display_url": "pic.twitter.com/4ZGS1srULp", + "expanded_url": "http://twitter.com/AdamMGrant/status/684921510113460224/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AdamMGrant", + "id_str": "1059273780", + "id": 1059273780, + "indices": [ + 3, + 14 + ], + "name": "Adam Grant" + } + ] + }, + "created_at": "Thu Jan 07 08:34:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685016635623751680, + "text": "RT @AdamMGrant: 2015 in America, in 460 million tweets: https://t.co/4ZGS1srULp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 481383369, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1048, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/481383369/1412113781", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "83870274", + "following": false, + "friends_count": 240, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/metllord", + "url": "https://t.co/ige9AAxhNS", + "expanded_url": "https://github.com/metllord", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624560161760411648/cJELcPCC.png", + "notifications": false, + "profile_sidebar_fill_color": "734426", + "profile_link_color": "422110", + "geo_enabled": true, + "followers_count": 83, + "location": "Philadelphia, PA", + "screen_name": "metllord", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 7, + "name": "Eric Stein", + "profile_use_background_image": true, + "description": "Python programmer, sizable data guy, amateur Vim user, fueled by coffee and beer.", + "url": "https://t.co/ige9AAxhNS", + "profile_text_color": "5C5B47", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2028110877/13532_521689987314_39300088_31071305_3862753_n_normal.jpg", + "profile_background_color": "131E0F", + "created_at": "Tue Oct 20 15:56:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2028110877/13532_521689987314_39300088_31071305_3862753_n_normal.jpg", + "favourites_count": 26, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/e4a0d228eb6be76b.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -75.280284, + 39.871811 + ], + [ + -74.955712, + 39.871811 + ], + [ + -74.955712, + 40.13792 + ], + [ + -75.280284, + 40.13792 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Philadelphia, PA", + "id": "e4a0d228eb6be76b", + "name": "Philadelphia" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685165087347355648", + "id": 685165087347355648, + "text": "Ha. Running rm -rf / in a Vagrant box deletes your Vagrantfile.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 18:24:21 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 83870274, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624560161760411648/cJELcPCC.png", + "statuses_count": 718, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5908032", + "following": false, + "friends_count": 1047, + "entities": { + "description": { + "urls": [ + { + "display_url": "Cloud.com", + "url": "https://t.co/JI5orZ8uwf", + "expanded_url": "http://Cloud.com", + "indices": [ + 55, + 78 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 3382, + "location": "Seattle, WA", + "screen_name": "ulander", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 151, + "name": "Peder Ulander", + "profile_use_background_image": true, + "description": "work: Cisco Cloud VP | formerly: Apache CloudStack and https://t.co/JI5orZ8uwf | persona: opinionated geek, disruptor, agitator | opinions = mine", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/643611355984076801/d6npusfi_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed May 09 18:31:54 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/643611355984076801/d6npusfi_normal.jpg", + "favourites_count": 162, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "aneel", + "in_reply_to_user_id": 1293051, + "in_reply_to_status_id_str": "685171757859258368", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685175234916302848", + "id": 685175234916302848, + "text": "@aneel but when you get there, rest assured it will work for you", + "in_reply_to_user_id_str": "1293051", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "aneel", + "id_str": "1293051", + "id": 1293051, + "indices": [ + 0, + 6 + ], + "name": "Aneel" + } + ] + }, + "created_at": "Thu Jan 07 19:04:40 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685171757859258368, + "lang": "en" + }, + "default_profile_image": false, + "id": 5908032, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5659, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5908032/1421369600", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14862647", + "following": false, + "friends_count": 426, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "brianbondy.com", + "url": "http://t.co/WYBVgFKbxw", + "expanded_url": "http://brianbondy.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": true, + "followers_count": 1463, + "location": "Belle River, Ontario, Canada", + "screen_name": "brianbondy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 141, + "name": "Brian R. Bondy", + "profile_use_background_image": true, + "description": "Father of 3 co-founding a startup. Gecko hacker, Khan Academy contributor, top 0.1% StackOverflow, UWaterloo grad. Past Microsoft MVP. Runner.", + "url": "http://t.co/WYBVgFKbxw", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649573213505200128/LU2vI_3s_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Wed May 21 23:45:24 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649573213505200128/LU2vI_3s_normal.jpg", + "favourites_count": 869, + "status": { + "retweet_count": 69, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 69, + "truncated": false, + "retweeted": false, + "id_str": "684999185792282625", + "id": 684999185792282625, + "text": "If your Firefox successfully downloaded today's SHA-1 protection undo update you didn't need it. If it blocked it, you did. #realworldcrypto", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 124, + 140 + ], + "text": "realworldcrypto" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 07:25:07 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 58, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685237803043700736", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "realworldcrypto" + } + ], + "user_mentions": [ + { + "screen_name": "BRIAN_____", + "id_str": "14586929", + "id": 14586929, + "indices": [ + 3, + 14 + ], + "name": "Brian Smith" + } + ] + }, + "created_at": "Thu Jan 07 23:13:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685237803043700736, + "text": "RT @BRIAN_____: If your Firefox successfully downloaded today's SHA-1 protection undo update you didn't need it. If it blocked it, you did.\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 14862647, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "statuses_count": 1484, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14862647/1398209413", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14835101", + "following": false, + "friends_count": 741, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "yes.erin.codes", + "url": "https://t.co/Yp4c3meMi5", + "expanded_url": "http://yes.erin.codes", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/882775034/4ccd35438b42a7da37c20ebc15940e52.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "140E0A", + "profile_link_color": "4F3F38", + "geo_enabled": false, + "followers_count": 1510, + "location": "Huntsville, AL", + "screen_name": "erinspice", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 109, + "name": "snarkaeopteryx", + "profile_use_background_image": true, + "description": "Code life, yo. Sr. Software Engineer for @Respoke, FOSS, WebRTC, Node.js, running, kayaking. Choctaw, Chickasaw, Bahamian. ENTP/ENFP", + "url": "https://t.co/Yp4c3meMi5", + "profile_text_color": "838978", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/562987039084146688/BxGQ49EL_normal.png", + "profile_background_color": "1C130E", + "created_at": "Mon May 19 17:08:51 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "9DB98C", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/562987039084146688/BxGQ49EL_normal.png", + "favourites_count": 12428, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "polotek", + "in_reply_to_user_id": 20079975, + "in_reply_to_status_id_str": "685598429934817283", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685599053053345792", + "id": 685599053053345792, + "text": "@polotek I love Noemi so much.", + "in_reply_to_user_id_str": "20079975", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "polotek", + "id_str": "20079975", + "id": 20079975, + "indices": [ + 0, + 8 + ], + "name": "Marco Rogers" + } + ] + }, + "created_at": "Fri Jan 08 23:08:46 +0000 2016", + "source": "TweetDeck", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598429934817283, + "lang": "en" + }, + "default_profile_image": false, + "id": 14835101, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/882775034/4ccd35438b42a7da37c20ebc15940e52.jpeg", + "statuses_count": 10237, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14835101/1398351739", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2396932368", + "following": false, + "friends_count": 2080, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 1002, + "location": "Texas", + "screen_name": "Thaeldes", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 11, + "name": "Larry Freeman", + "profile_use_background_image": false, + "description": "#Husband, #Uncle, World Craftsman, #Cigar #Pipe and #HookahLover, #Student #filmstudent #excrazymountainman", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/581679057277849601/Cs4qEtR3_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Mar 18 23:50:22 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/581679057277849601/Cs4qEtR3_normal.jpg", + "favourites_count": 3797, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685566739141259264", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "gofundme.com/qqg4nrdw", + "url": "https://t.co/Kkw1BVOedS", + "expanded_url": "http://gofundme.com/qqg4nrdw", + "indices": [ + 45, + 68 + ] + } + ], + "hashtags": [ + { + "indices": [ + 17, + 25 + ], + "text": "college" + }, + { + "indices": [ + 69, + 79 + ], + "text": "crowdfund" + }, + { + "indices": [ + 80, + 92 + ], + "text": "collegelife" + }, + { + "indices": [ + 93, + 108 + ], + "text": "cinematography" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:00:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685566739141259264, + "text": "help me continue #college my funding was cut https://t.co/Kkw1BVOedS #crowdfund #collegelife #cinematography", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2396932368, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1343, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2396932368/1419886819", + "is_translator": false + }, + { + "time_zone": "America/Los_Angeles", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "82480797", + "following": false, + "friends_count": 661, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/817092131/e35a189e26ca361ceadff8b2eae3ca2b.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 161, + "location": "San Diego", + "screen_name": "Mi_keC", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Michael Conlon", + "profile_use_background_image": true, + "description": "Never stop learning - information security and craft beer addiction", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/591366723279785984/0LOfXLcP_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Oct 14 23:07:48 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/591366723279785984/0LOfXLcP_normal.jpg", + "favourites_count": 1247, + "status": { + "retweet_count": 113, + "retweeted_status": { + "retweet_count": 113, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "654136987453128704", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 450, + "h": 282, + "resize": "fit" + }, + "medium": { + "w": 450, + "h": 282, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 213, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", + "type": "photo", + "indices": [ + 75, + 97 + ], + "media_url": "http://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", + "display_url": "pic.twitter.com/4KTZsuUwmT", + "id_str": "654136983946678272", + "expanded_url": "http://twitter.com/mzbat/status/654136987453128704/photo/1", + "id": 654136983946678272, + "url": "http://t.co/4KTZsuUwmT" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "M3atShi3ld", + "id_str": "982428168", + "id": 982428168, + "indices": [ + 12, + 23 + ], + "name": "M3atShi3ld" + } + ] + }, + "created_at": "Wed Oct 14 03:29:45 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 654136987453128704, + "text": "100 RTs and @M3atShi3ld will get this bat tattooed on his butt. On camera. http://t.co/4KTZsuUwmT", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 27, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "654352341810810880", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 450, + "h": 282, + "resize": "fit" + }, + "medium": { + "w": 450, + "h": 282, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 213, + "resize": "fit" + } + }, + "source_status_id_str": "654136987453128704", + "url": "http://t.co/4KTZsuUwmT", + "media_url": "http://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", + "source_user_id_str": "253608265", + "id_str": "654136983946678272", + "id": 654136983946678272, + "media_url_https": "https://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", + "type": "photo", + "indices": [ + 86, + 108 + ], + "source_status_id": 654136987453128704, + "source_user_id": 253608265, + "display_url": "pic.twitter.com/4KTZsuUwmT", + "expanded_url": "http://twitter.com/mzbat/status/654136987453128704/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mzbat", + "id_str": "253608265", + "id": 253608265, + "indices": [ + 3, + 9 + ], + "name": "b\u0360\u035d\u0344\u0350\u0310\u035d\u030a\u0341a\u030f\u0344\u0343\u0305\u0302\u0313\u030f\u0304t\u0352" + }, + { + "screen_name": "M3atShi3ld", + "id_str": "982428168", + "id": 982428168, + "indices": [ + 23, + 34 + ], + "name": "M3atShi3ld" + } + ] + }, + "created_at": "Wed Oct 14 17:45:30 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 654352341810810880, + "text": "RT @mzbat: 100 RTs and @M3atShi3ld will get this bat tattooed on his butt. On camera. http://t.co/4KTZsuUwmT", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 82480797, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/817092131/e35a189e26ca361ceadff8b2eae3ca2b.jpeg", + "statuses_count": 204, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "177646723", + "following": false, + "friends_count": 1113, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135037717/CRW_9589_reduced.jpg", + "notifications": false, + "profile_sidebar_fill_color": "2F1036", + "profile_link_color": "5C1361", + "geo_enabled": false, + "followers_count": 387, + "location": "[redacted] ", + "screen_name": "r3d4ct3d", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "[REDACTED]", + "profile_use_background_image": true, + "description": "free thinker, atheist, hacktivist. i post/RT anything having to do with science, politics, hactivism, art, music and tech.", + "url": null, + "profile_text_color": "D4D4D4", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1770342024/FIF_copy_normal.jpg", + "profile_background_color": "101B21", + "created_at": "Thu Aug 12 18:08:53 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1770342024/FIF_copy_normal.jpg", + "favourites_count": 559, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "596894667641200640", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "m.huffpost.com/us/entry/72427\u2026", + "url": "http://t.co/9yRTKxHXpg", + "expanded_url": "http://m.huffpost.com/us/entry/7242720", + "indices": [ + 96, + 118 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat May 09 04:29:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 596894667641200640, + "text": "Ignoring this being racist, you do realize this is illegal under state and federal laws, right? http://t.co/9yRTKxHXpg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "596905652850569216", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "m.huffpost.com/us/entry/72427\u2026", + "url": "http://t.co/9yRTKxHXpg", + "expanded_url": "http://m.huffpost.com/us/entry/7242720", + "indices": [ + 110, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wwahammy", + "id_str": "19212550", + "id": 19212550, + "indices": [ + 3, + 12 + ], + "name": "Eric Kringleschultz" + } + ] + }, + "created_at": "Sat May 09 05:12:52 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 596905652850569216, + "text": "RT @wwahammy: Ignoring this being racist, you do realize this is illegal under state and federal laws, right? http://t.co/9yRTKxHXpg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 177646723, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135037717/CRW_9589_reduced.jpg", + "statuses_count": 23283, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/177646723/1358587342", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "12897812", + "following": false, + "friends_count": 1123, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jamigibbs.com", + "url": "https://t.co/pgV1I0wHOf", + "expanded_url": "http://jamigibbs.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/427142944/groovepaper.png", + "notifications": false, + "profile_sidebar_fill_color": "F5F5F5", + "profile_link_color": "FF3300", + "geo_enabled": true, + "followers_count": 2540, + "location": "Chicago", + "screen_name": "JamiGibbs", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 70, + "name": "Jami Gibbs \u26f5", + "profile_use_background_image": true, + "description": "Doing stuff on the interwebs. Founder of @rescuethemes. Recovering expat. Still learning.", + "url": "https://t.co/pgV1I0wHOf", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/679694700459233284/1-OJBDxd_normal.png", + "profile_background_color": "E0E0E0", + "created_at": "Thu Jan 31 02:52:11 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C7C7C7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/679694700459233284/1-OJBDxd_normal.png", + "favourites_count": 712, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685256403418779648", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKFEDWWsAAP1Ky.jpg", + "type": "photo", + "indices": [ + 50, + 73 + ], + "media_url": "http://pbs.twimg.com/media/CYKFEDWWsAAP1Ky.jpg", + "display_url": "pic.twitter.com/AG95peuNkM", + "id_str": "685256397978775552", + "expanded_url": "http://twitter.com/JamiGibbs/status/685256403418779648/photo/1", + "id": 685256397978775552, + "url": "https://t.co/AG95peuNkM" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 00:27:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -87.940033, + 41.644102 + ], + [ + -87.523993, + 41.644102 + ], + [ + -87.523993, + 42.0230669 + ], + [ + -87.940033, + 42.0230669 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Chicago, IL", + "id": "1d9a5370a355ab0c", + "name": "Chicago" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685256403418779648, + "text": "TIL: My dog fucking hates dudes that climb trees. https://t.co/AG95peuNkM", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 12897812, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/427142944/groovepaper.png", + "statuses_count": 11136, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12897812/1446593975", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "307983", + "following": false, + "friends_count": 792, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lendami.co", + "url": "https://t.co/ST37mdmeuQ", + "expanded_url": "http://lendami.co", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2968792/bg_beercaps.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EEEEEE", + "profile_link_color": "676767", + "geo_enabled": true, + "followers_count": 1705, + "location": "Trillmington, DE", + "screen_name": "lendamico", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 117, + "name": "Len Damico", + "profile_use_background_image": true, + "description": "UX Architect, @Arcweb Technologies. Founding jawn, @phldesignco. Husband, @psujo. I'm really sorry about #PSUtwitter. RIYL: dadlife, feminism, hops, indie rock.", + "url": "https://t.co/ST37mdmeuQ", + "profile_text_color": "323232", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671515446219288577/ggZ_SL0V_normal.jpg", + "profile_background_color": "121212", + "created_at": "Thu Dec 28 04:40:08 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "666666", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671515446219288577/ggZ_SL0V_normal.jpg", + "favourites_count": 6644, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685610363086336000", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 111, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 196, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 717, + "h": 235, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPG_hOWsAU-XFU.jpg", + "type": "photo", + "indices": [ + 10, + 33 + ], + "media_url": "http://pbs.twimg.com/media/CYPG_hOWsAU-XFU.jpg", + "display_url": "pic.twitter.com/3w9IAwJBuN", + "id_str": "685610362843082757", + "expanded_url": "http://twitter.com/lendamico/status/685610363086336000/photo/1", + "id": 685610362843082757, + "url": "https://t.co/3w9IAwJBuN" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:53:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685610363086336000, + "text": "mmmmm yes https://t.co/3w9IAwJBuN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 307983, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2968792/bg_beercaps.jpg", + "statuses_count": 42357, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/307983/1435980493", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "27965538", + "following": false, + "friends_count": 365, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lynnandtonic.com", + "url": "http://t.co/heVvcx6U2V", + "expanded_url": "http://lynnandtonic.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7182491/squidfingers-bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EBEBEB", + "profile_link_color": "219E9E", + "geo_enabled": false, + "followers_count": 1714, + "location": "Chandler, AZ", + "screen_name": "lynnandtonic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "name": "Lynn Fisher", + "profile_use_background_image": false, + "description": "Living each day like it's Pizza Day.", + "url": "http://t.co/heVvcx6U2V", + "profile_text_color": "424242", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477556215401025537/zH_q0-_s_normal.png", + "profile_background_color": "242424", + "created_at": "Tue Mar 31 21:19:06 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BABABA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477556215401025537/zH_q0-_s_normal.png", + "favourites_count": 1914, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684787294465753088", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/783hwpJTjlo", + "url": "https://t.co/ODNDb8Xs2M", + "expanded_url": "https://youtu.be/783hwpJTjlo", + "indices": [ + 51, + 74 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheeNerdwriter", + "id_str": "87576856", + "id": 87576856, + "indices": [ + 35, + 50 + ], + "name": "Evan Puschak" + } + ] + }, + "created_at": "Wed Jan 06 17:23:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684787294465753088, + "text": "How Art Transforms The Internet by @TheeNerdwriter https://t.co/ODNDb8Xs2M", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 27965538, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7182491/squidfingers-bg.gif", + "statuses_count": 3210, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/27965538/1380170906", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14403366", + "following": false, + "friends_count": 654, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pcable.net", + "url": "https://t.co/J5UfTI3pNd", + "expanded_url": "http://www.pcable.net", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/246043858/IMG_1824.jpg", + "notifications": false, + "profile_sidebar_fill_color": "2F3333", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 657, + "location": "Somerville", + "screen_name": "patcable", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 35, + "name": "Patrick Cable", + "profile_use_background_image": true, + "description": "sailing systems by the sea shore. also: LISA16 talks co-chair", + "url": "https://t.co/J5UfTI3pNd", + "profile_text_color": "3EA8A5", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668478465797169154/p7tkQ4aS_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Apr 16 01:42:35 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "434545", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668478465797169154/p7tkQ4aS_normal.jpg", + "favourites_count": 2159, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "tyrostone", + "in_reply_to_user_id": 381193410, + "in_reply_to_status_id_str": "685598865798656000", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685602278955433986", + "id": 685602278955433986, + "text": "@tyrostone whoa, that's kinda a great library perk", + "in_reply_to_user_id_str": "381193410", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tyrostone", + "id_str": "381193410", + "id": 381193410, + "indices": [ + 0, + 10 + ], + "name": "Laura Stone" + } + ] + }, + "created_at": "Fri Jan 08 23:21:35 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598865798656000, + "lang": "en" + }, + "default_profile_image": false, + "id": 14403366, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/246043858/IMG_1824.jpg", + "statuses_count": 7685, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14403366/1448214484", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14701839", + "following": false, + "friends_count": 125, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "adamyonk.com", + "url": "http://t.co/ka2I9JDfh8", + "expanded_url": "http://adamyonk.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3202932/bg_2.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "DC322F", + "geo_enabled": false, + "followers_count": 357, + "location": "Springfield, MO", + "screen_name": "adamyonk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "Adam Jahnke \u2615\ufe0f", + "profile_use_background_image": false, + "description": "Pursuer of God and @oliviayonk, minimalist, thinker, programmer, recovering perfectionist, engineer at @Librato. I love to make the complex simple.", + "url": "http://t.co/ka2I9JDfh8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676859032045379584/ZpQCo8T7_normal.jpg", + "profile_background_color": "FDF6E3", + "created_at": "Thu May 08 15:53:12 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676859032045379584/ZpQCo8T7_normal.jpg", + "favourites_count": 290, + "status": { + "retweet_count": 7, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 7, + "truncated": false, + "retweeted": false, + "id_str": "685507394470690818", + "id": 685507394470690818, + "text": "Most of programming is just a never ending search for the right abstractions.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:04:33 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 35, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685566356712861697", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "HenrikJoreteg", + "id_str": "15102110", + "id": 15102110, + "indices": [ + 3, + 17 + ], + "name": "Henrik Joreteg" + } + ] + }, + "created_at": "Fri Jan 08 20:58:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685566356712861697, + "text": "RT @HenrikJoreteg: Most of programming is just a never ending search for the right abstractions.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 14701839, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3202932/bg_2.png", + "statuses_count": 6318, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14701839/1430812181", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "9905392", + "following": false, + "friends_count": 2879, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "iam.travishartwell.net", + "url": "http://t.co/noZfvrEjJH", + "expanded_url": "http://iam.travishartwell.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2688, + "location": "Idaho Falls, Idaho", + "screen_name": "travisbhartwell", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 87, + "name": "Travis B. Hartwell", + "profile_use_background_image": true, + "description": "LDS. Meditator. Kidney transplant recipient. On dialysis. Losing vision to Retinitis Pigmentosa. Software Toolsmith. Free/Open Source advocate. Writer. Friend.", + "url": "http://t.co/noZfvrEjJH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/453097486228279296/H6aYkYt5_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Nov 03 02:50:41 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/453097486228279296/H6aYkYt5_normal.jpeg", + "favourites_count": 8357, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/07d9f5b941887004.json", + "country": "United States", + "attributes": {}, + "place_type": "poi", + "bounding_box": { + "coordinates": [ + [ + [ + -122.03072304117417, + 37.331652997806785 + ], + [ + -122.03072304117417, + 37.331652997806785 + ], + [ + -122.03072304117417, + 37.331652997806785 + ], + [ + -122.03072304117417, + 37.331652997806785 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Apple Inc.", + "id": "07d9f5b941887004", + "name": "Apple Inc." + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685567022172737537", + "id": 685567022172737537, + "text": "I feel like a spy, infiltrating enemy headquarters.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:01:29 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 9905392, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10724, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "87004913", + "following": false, + "friends_count": 1499, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1410, + "location": "The Woods, Calaforny", + "screen_name": "nvcexploder", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 94, + "name": "Beardiest Tween", + "profile_use_background_image": true, + "description": "I write code in the woods and teach kids to build robots.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/524375386767904768/SsOI4V4k_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 02 19:07:08 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/524375386767904768/SsOI4V4k_normal.jpeg", + "favourites_count": 7359, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "fritzy", + "in_reply_to_user_id": 14498374, + "in_reply_to_status_id_str": "685563110468399104", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685563291469352960", + "id": 685563291469352960, + "text": "@fritzy @vladikoff @HugoGiraudel I noticed that too - it's still SO RAD.", + "in_reply_to_user_id_str": "14498374", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "fritzy", + "id_str": "14498374", + "id": 14498374, + "indices": [ + 0, + 7 + ], + "name": "Fritzy" + }, + { + "screen_name": "vladikoff", + "id_str": "57659047", + "id": 57659047, + "indices": [ + 8, + 18 + ], + "name": "Vlad Filippov" + }, + { + "screen_name": "HugoGiraudel", + "id_str": "551949534", + "id": 551949534, + "indices": [ + 19, + 32 + ], + "name": "Hugo Giraudel" + } + ] + }, + "created_at": "Fri Jan 08 20:46:40 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685563110468399104, + "lang": "en" + }, + "default_profile_image": false, + "id": 87004913, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4848, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87004913/1398990558", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "39129267", + "following": false, + "friends_count": 304, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "url": "http://reza.akhavan.me", + "expanded_url": null, + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "333333", + "geo_enabled": false, + "followers_count": 520, + "location": "San Francisco", + "screen_name": "jedireza", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 46, + "name": "Reza Akhavan", + "profile_use_background_image": false, + "description": "Engineer @Mozilla \u2728 Co-Organizer @NodeSchoolSF", + "url": "http://reza.akhavan.me", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/568295339157753856/s4XVgdXN_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun May 10 22:55:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/568295339157753856/s4XVgdXN_normal.jpeg", + "favourites_count": 737, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683436415040933888", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/nodeschooloak/\u2026", + "url": "https://t.co/N7ckQ72EQm", + "expanded_url": "https://twitter.com/nodeschooloak/status/683436238473310208", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nodeschooloak", + "id_str": "3271438309", + "id": 3271438309, + "indices": [ + 72, + 86 + ], + "name": "NodeSchool Oakland" + } + ] + }, + "created_at": "Sat Jan 02 23:55:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683436415040933888, + "text": "Come join me and some of the finest folks from the bay area at the next @nodeschooloak! https://t.co/N7ckQ72EQm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683851658095243264", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/nodeschooloak/\u2026", + "url": "https://t.co/N7ckQ72EQm", + "expanded_url": "https://twitter.com/nodeschooloak/status/683436238473310208", + "indices": [ + 101, + 124 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "takempf", + "id_str": "17734862", + "id": 17734862, + "indices": [ + 3, + 11 + ], + "name": "Timothy Kempf" + }, + { + "screen_name": "nodeschooloak", + "id_str": "3271438309", + "id": 3271438309, + "indices": [ + 85, + 99 + ], + "name": "NodeSchool Oakland" + } + ] + }, + "created_at": "Mon Jan 04 03:25:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683851658095243264, + "text": "RT @takempf: Come join me and some of the finest folks from the bay area at the next @nodeschooloak! https://t.co/N7ckQ72EQm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 39129267, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1061, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39129267/1421477916", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "17293000", + "following": false, + "friends_count": 481, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "aguidinglife.co.uk", + "url": "https://t.co/IWUVA2WIs8", + "expanded_url": "http://www.aguidinglife.co.uk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 921, + "location": "UK", + "screen_name": "kelloggs_ville", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 36, + "name": "KV_Guiding_DBA", + "profile_use_background_image": true, + "description": "Oracle DBA, Guider. Tried to be normal once, worst 2 minutes of my life.", + "url": "https://t.co/IWUVA2WIs8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681825809183686656/220vNYu5_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Mon Nov 10 19:32:47 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681825809183686656/220vNYu5_normal.jpg", + "favourites_count": 1939, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "TheDashingChap", + "in_reply_to_user_id": 22298246, + "in_reply_to_status_id_str": "685539178982043648", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685539757695365120", + "id": 685539757695365120, + "text": "@TheDashingChap I for one am always praying for peas on earth \ud83d\ude02\ud83d\ude02\ud83d\ude02", + "in_reply_to_user_id_str": "22298246", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheDashingChap", + "id_str": "22298246", + "id": 22298246, + "indices": [ + 0, + 15 + ], + "name": "Ty" + } + ] + }, + "created_at": "Fri Jan 08 19:13:09 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685539178982043648, + "lang": "en" + }, + "default_profile_image": false, + "id": 17293000, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 22251, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17293000/1449608601", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "52270403", + "following": false, + "friends_count": 410, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mojolingo.com", + "url": "http://t.co/QQBQqmHHBD", + "expanded_url": "http://mojolingo.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/294691643/MojoLingoBG-Twitter.png", + "notifications": false, + "profile_sidebar_fill_color": "E3E3E3", + "profile_link_color": "96172E", + "geo_enabled": true, + "followers_count": 671, + "location": "Atlanta", + "screen_name": "bklang", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "Ben Klang", + "profile_use_background_image": true, + "description": "Principal/Technology Strategist at Mojo Lingo. Project Lead for Adhearsion, the voice app framework. Real-Time Comms Revolutionary. Open Source Hacker.", + "url": "http://t.co/QQBQqmHHBD", + "profile_text_color": "37424A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/621343464735772672/mKCqd3FO_normal.jpg", + "profile_background_color": "324555", + "created_at": "Tue Jun 30 02:12:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "919191", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621343464735772672/mKCqd3FO_normal.jpg", + "favourites_count": 211, + "status": { + "retweet_count": 9, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 9, + "truncated": false, + "retweeted": false, + "id_str": "682756823544365056", + "id": 682756823544365056, + "text": "Pretty stoked that #Asterisk 14 will support\n same => n,Playback(https://someserver/some_sound_file.wav)\n\nLots more to do, but progress!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 19, + 28 + ], + "text": "Asterisk" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 02:54:46 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 17, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "682762462643499009", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 36, + 45 + ], + "text": "Asterisk" + } + ], + "user_mentions": [ + { + "screen_name": "mattcjordan", + "id_str": "48244004", + "id": 48244004, + "indices": [ + 3, + 15 + ], + "name": "Matt Jordan" + } + ] + }, + "created_at": "Fri Jan 01 03:17:10 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682762462643499009, + "text": "RT @mattcjordan: Pretty stoked that #Asterisk 14 will support\n same => n,Playback(https://someserver/some_sound_file.wav)\n\nLots more to \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 52270403, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/294691643/MojoLingoBG-Twitter.png", + "statuses_count": 1882, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/52270403/1436974855", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "528590347", + "following": false, + "friends_count": 1214, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/poeticninja", + "url": "https://t.co/2Hpy5zsVuW", + "expanded_url": "https://github.com/poeticninja", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 378, + "location": "Houston, TX", + "screen_name": "poeticninja", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 35, + "name": "Saul Maddox", + "profile_use_background_image": true, + "description": "Web Developer, co-manage Node.js Houston, husband to a wonderful wife, and father to three amazing children.", + "url": "https://t.co/2Hpy5zsVuW", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000698748900/37ec2ffa765e556b16aea10a3c73e6bc_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Mar 18 15:11:58 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000698748900/37ec2ffa765e556b16aea10a3c73e6bc_normal.jpeg", + "favourites_count": 1681, + "status": { + "retweet_count": 97, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 97, + "truncated": false, + "retweeted": false, + "id_str": "684553093409861632", + "id": 684553093409861632, + "text": "Don\u2019t ask your contributors to npm install any packages globally. Set up aliases for tasks via \"scripts\" config in package.json.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 01:52:30 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 203, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685248751787589632", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dan_abramov", + "id_str": "70345946", + "id": 70345946, + "indices": [ + 3, + 15 + ], + "name": "Dan Abramov" + } + ] + }, + "created_at": "Thu Jan 07 23:56:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685248751787589632, + "text": "RT @dan_abramov: Don\u2019t ask your contributors to npm install any packages globally. Set up aliases for tasks via \"scripts\" config in package\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 528590347, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 1187, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/528590347/1378419100", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "217607250", + "following": false, + "friends_count": 887, + "entities": { + "description": { + "urls": [ + { + "display_url": "ike.io", + "url": "https://t.co/tShgYG6Gye", + "expanded_url": "http://ike.io", + "indices": [ + 19, + 42 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ike.io", + "url": "https://t.co/tShgYG6Gye", + "expanded_url": "http://ike.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/693712484/978192d7b7735dc78f2fed907480eaa8.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 567, + "location": "Richland, WA", + "screen_name": "_crossdiver", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 46, + "name": "Isaac Lewis", + "profile_use_background_image": true, + "description": "Dude with a lance, https://t.co/tShgYG6Gye. Founder, @muxtc. Renaissance Kid. @the_lewist's lesser half.", + "url": "https://t.co/tShgYG6Gye", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/563851021403688961/j08fLJw2_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Sat Nov 20 00:22:04 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/563851021403688961/j08fLJw2_normal.jpeg", + "favourites_count": 3249, + "status": { + "retweet_count": 12, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 12, + "truncated": false, + "retweeted": false, + "id_str": "679318236744294400", + "id": 679318236744294400, + "text": "We're looking for businesses looking to sell to their workers. Help us spread the word by retweeting or let us know if you know someone!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 22 15:11:03 +0000 2015", + "source": "Hootsuite", + "favorite_count": 7, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685603260187578368", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "workingworldorg", + "id_str": "496495582", + "id": 496495582, + "indices": [ + 3, + 19 + ], + "name": "The Working World" + } + ] + }, + "created_at": "Fri Jan 08 23:25:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685603260187578368, + "text": "RT @workingworldorg: We're looking for businesses looking to sell to their workers. Help us spread the word by retweeting or let us know if\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 217607250, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/693712484/978192d7b7735dc78f2fed907480eaa8.jpeg", + "statuses_count": 5204, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/217607250/1442362227", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "34672729", + "following": false, + "friends_count": 218, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyet.com", + "url": "https://t.co/g5X3ldct0t", + "expanded_url": "http://www.andyet.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "F5ABB5", + "geo_enabled": true, + "followers_count": 489, + "location": "Richland, Wa", + "screen_name": "Jennadear_", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Jenna Tormanen", + "profile_use_background_image": false, + "description": "Marketing or something @andyet \u2022 Coffee Enthusiast @wearethelocal \u2022 Videographer {Eastern Washington}", + "url": "https://t.co/g5X3ldct0t", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/659153708341592064/QB5FRwqm_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Apr 23 17:32:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/659153708341592064/QB5FRwqm_normal.jpg", + "favourites_count": 1648, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685200578268405760", + "id": 685200578268405760, + "text": "Learning alllllllllllllll the knowledge from @lancestout!!! w/@sallycmohr.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lancestout", + "id_str": "17123007", + "id": 17123007, + "indices": [ + 45, + 56 + ], + "name": "Lance Stout" + }, + { + "screen_name": "sallycmohr", + "id_str": "23568790", + "id": 23568790, + "indices": [ + 62, + 73 + ], + "name": "Sally C. Mohr" + } + ] + }, + "created_at": "Thu Jan 07 20:45:22 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 34672729, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1519, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/34672729/1447698106", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "221488208", + "following": false, + "friends_count": 613, + "entities": { + "description": { + "urls": [ + { + "display_url": "wild.land", + "url": "http://t.co/ktkvhRQiyM", + "expanded_url": "http://wild.land", + "indices": [ + 126, + 148 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "dribbble.com/tymulholland", + "url": "https://t.co/CFdBPTtdzG", + "expanded_url": "https://dribbble.com/tymulholland", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 623, + "location": "", + "screen_name": "tymulholland", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 40, + "name": "Ty Mulholland", + "profile_use_background_image": true, + "description": "Mastermind @wildlandlabs, by mastermind I mean fumbling, fly-by-the-seat-of-my-pants, accidental, ah s###! designer/creative. http://t.co/ktkvhRQiyM", + "url": "https://t.co/CFdBPTtdzG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/634592193404010496/o7Yb1ir0_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Nov 30 20:15:09 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/634592193404010496/o7Yb1ir0_normal.jpg", + "favourites_count": 723, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685522986015719424", + "id": 685522986015719424, + "text": "\"I believe researching that feature will take 1 hour of cussing and 2 hours of actual research.\" #doitright", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 97, + 107 + ], + "text": "doitright" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:06:30 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 221488208, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 2957, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/221488208/1434956478", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14697361", + "following": false, + "friends_count": 184, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dougwaltman.com", + "url": "http://t.co/ravmBOhT5Q", + "expanded_url": "http://www.dougwaltman.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/533332526064885760/z3_XeSQQ.png", + "notifications": false, + "profile_sidebar_fill_color": "14161B", + "profile_link_color": "309EA6", + "geo_enabled": true, + "followers_count": 825, + "location": "Tri-Cities, WA", + "screen_name": "dougwaltman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 59, + "name": "Douglas", + "profile_use_background_image": true, + "description": "Unverified adult, making the world a better place with technology. Connecting, exploring, nerding out, and making art. \u2661", + "url": "http://t.co/ravmBOhT5Q", + "profile_text_color": "93A097", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662059136599789569/-ny7sQ2R_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu May 08 07:13:13 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662059136599789569/-ny7sQ2R_normal.jpg", + "favourites_count": 1829, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685522518199816193", + "id": 685522518199816193, + "text": "We don't get to choose what happens, but we get to choose how we feel about it.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:04:39 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14697361, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/533332526064885760/z3_XeSQQ.png", + "statuses_count": 5668, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14697361/1445640558", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "536923214", + "following": false, + "friends_count": 185, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FF6D69", + "geo_enabled": false, + "followers_count": 207, + "location": "Tri Cities", + "screen_name": "JaimeHRobles", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Jaime Robles", + "profile_use_background_image": false, + "description": "President and pixel pusher at @Andyet", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/607249416253087744/YEzcUr-p_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Mar 26 04:37:11 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/607249416253087744/YEzcUr-p_normal.jpg", + "favourites_count": 2145, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684834165645119488", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/2-p44-9S4O0", + "url": "https://t.co/cekiHK3nYL", + "expanded_url": "https://youtu.be/2-p44-9S4O0", + "indices": [ + 47, + 70 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 20:29:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684834165645119488, + "text": "John Cleese: \"So, Anyway...\" | Talks at Google https://t.co/cekiHK3nYL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 536923214, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 1358, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/536923214/1433663921", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "37127416", + "following": false, + "friends_count": 269, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "shenoalawrence.com", + "url": "http://t.co/TjMvjrHu3l", + "expanded_url": "http://shenoalawrence.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/107900660/twitterback.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "F28907", + "geo_enabled": true, + "followers_count": 615, + "location": "Seattle, WA", + "screen_name": "ShenoaLawrence", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "\u24c8\u24d7\u24d4\u24dd\u24de\u24d0", + "profile_use_background_image": false, + "description": "Front-end designer, project manager, and adventure seeker. Podcasting at ingoodcompany.fm", + "url": "http://t.co/TjMvjrHu3l", + "profile_text_color": "B19135", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/633169399130681344/6DXwmKc6_normal.jpg", + "profile_background_color": "EEE0C9", + "created_at": "Sat May 02 03:20:40 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/633169399130681344/6DXwmKc6_normal.jpg", + "favourites_count": 2485, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "681624221848473600", + "id": 681624221848473600, + "text": "Taking a social media break. Catch you on the flip side.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Dec 28 23:54:13 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 37127416, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/107900660/twitterback.jpg", + "statuses_count": 5933, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/37127416/1416440886", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "121241223", + "following": false, + "friends_count": 664, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554093609696239616/gC_YUGuY.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DBDBDB", + "profile_link_color": "231DCF", + "geo_enabled": false, + "followers_count": 300, + "location": "Tri-Cities, WA", + "screen_name": "jeffboyus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Jeff Boyus", + "profile_use_background_image": true, + "description": "Primarily a front-end developer using Ampersand/Backbone. I love sports and my timeline may be all over the place at times... so you've been warned.", + "url": null, + "profile_text_color": "182224", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1795620231/7DF56B64-8150-4CF6-8DC4-6A4F06C02C86_normal", + "profile_background_color": "8F82C7", + "created_at": "Mon Mar 08 22:11:12 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "162024", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1795620231/7DF56B64-8150-4CF6-8DC4-6A4F06C02C86_normal", + "favourites_count": 119, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "DavisHsuSeattle", + "in_reply_to_user_id": 55139282, + "in_reply_to_status_id_str": "684641789781778436", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684652133258366976", + "id": 684652133258366976, + "text": "@DavisHsuSeattle or they like their previous scouting on MIN and GB enough to focus a bit more time on WAS in case.", + "in_reply_to_user_id_str": "55139282", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DavisHsuSeattle", + "id_str": "55139282", + "id": 55139282, + "indices": [ + 0, + 16 + ], + "name": "DAVIS HSU" + } + ] + }, + "created_at": "Wed Jan 06 08:26:03 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684641789781778436, + "lang": "en" + }, + "default_profile_image": false, + "id": 121241223, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554093609696239616/gC_YUGuY.jpeg", + "statuses_count": 3836, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "327558148", + "following": false, + "friends_count": 295, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/793050516/f8489173837e263207c93f89754e89a5.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "020812", + "profile_link_color": "131516", + "geo_enabled": false, + "followers_count": 172, + "location": "Washington State", + "screen_name": "Laurie_Wells55", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 1, + "name": "Laurie Wells", + "profile_use_background_image": true, + "description": "Married 37 yrs 2 a great guy 2 Border Collies VinDiesel & Sadie who are crazy, & came out of retirement to work for Amazon Happy Life !", + "url": null, + "profile_text_color": "2280A9", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564558188935389184/InKgv58-_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri Jul 01 19:23:57 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564558188935389184/InKgv58-_normal.jpeg", + "favourites_count": 179, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/793050516/f8489173837e263207c93f89754e89a5.jpeg", + "default_profile_image": false, + "id": 327558148, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1552, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/327558148/1430000910", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "367119191", + "following": false, + "friends_count": 565, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyet.com", + "url": "https://t.co/TCoCuFOO85", + "expanded_url": "https://andyet.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 327, + "location": "", + "screen_name": "DesignSaves", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Illuminati Dropout", + "profile_use_background_image": true, + "description": "Designer and UX Developer at &yet. Unconditional inclusivity is the only option.", + "url": "https://t.co/TCoCuFOO85", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662515784736862210/iqWmEwuK_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Sep 03 12:18:32 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662515784736862210/iqWmEwuK_normal.jpg", + "favourites_count": 786, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682780720322891776", + "id": 682780720322891776, + "text": "A thought I just had: \"who could I pay to put my Christmas tree away?\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 04:29:43 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 367119191, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 670, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "20166253", + "following": false, + "friends_count": 1003, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 132, + "location": "", + "screen_name": "cyclerunner", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "cyclerunner", + "profile_use_background_image": true, + "description": "Sir Pinklepot Honeychild Fishfetish, 4th Earl of Duke", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1689671357/doggiePhotoshop_normal.jpg", + "profile_background_color": "D0A1D4", + "created_at": "Thu Feb 05 17:22:10 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1689671357/doggiePhotoshop_normal.jpg", + "favourites_count": 176, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Nero", + "in_reply_to_user_id": 6160792, + "in_reply_to_status_id_str": "685611241197416448", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613838864125952", + "id": 685613838864125952, + "text": "@Nero if you take the bigotry out of the Milo, what is left?", + "in_reply_to_user_id_str": "6160792", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Nero", + "id_str": "6160792", + "id": 6160792, + "indices": [ + 0, + 5 + ], + "name": "Milo Yiannopoulos" + } + ] + }, + "created_at": "Sat Jan 09 00:07:31 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685611241197416448, + "lang": "en" + }, + "default_profile_image": false, + "id": 20166253, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 28586, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "38380590", + "following": false, + "friends_count": 4632, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "JasonEvanish.com", + "url": "http://t.co/0GdIwc7qEB", + "expanded_url": "http://JasonEvanish.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/36919524/twitter-background-free-032.jpg", + "notifications": false, + "profile_sidebar_fill_color": "149E5E", + "profile_link_color": "218499", + "geo_enabled": false, + "followers_count": 8735, + "location": "San Francisco via Boston", + "screen_name": "Evanish", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 569, + "name": "Jason Evanish", + "profile_use_background_image": true, + "description": "Customer driven product guy. Avid reader. Student of leadership. Founder @Get_Lighthouse to help managers become leaders. Prev @KISSmetrics & @Greenhornboston", + "url": "http://t.co/0GdIwc7qEB", + "profile_text_color": "011701", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2983505158/46a0f5eadf450f553472c4361133e4cc_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Thu May 07 05:54:47 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2983505158/46a0f5eadf450f553472c4361133e4cc_normal.jpeg", + "favourites_count": 4018, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ToGovern", + "in_reply_to_user_id": 166505377, + "in_reply_to_status_id_str": "685577074417991681", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613343294357504", + "id": 685613343294357504, + "text": "@ToGovern thanks! You'll also like @Get_Lighthouse then.", + "in_reply_to_user_id_str": "166505377", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ToGovern", + "id_str": "166505377", + "id": 166505377, + "indices": [ + 0, + 9 + ], + "name": "Corporate Governance" + }, + { + "screen_name": "Get_Lighthouse", + "id_str": "2450328954", + "id": 2450328954, + "indices": [ + 35, + 50 + ], + "name": "Get Lighthouse" + } + ] + }, + "created_at": "Sat Jan 09 00:05:33 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685577074417991681, + "lang": "en" + }, + "default_profile_image": false, + "id": 38380590, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/36919524/twitter-background-free-032.jpg", + "statuses_count": 33074, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/38380590/1402174070", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "163997887", + "following": false, + "friends_count": 617, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tech.paulcz.net", + "url": "http://t.co/pszReLs02g", + "expanded_url": "http://tech.paulcz.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 783, + "location": "Austin, TX", + "screen_name": "pczarkowski", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "Czarknado", + "profile_use_background_image": true, + "description": "Assistant to the Regional Devop", + "url": "http://t.co/pszReLs02g", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655945658021490694/fWJNd4Wr_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jul 07 19:59:49 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655945658021490694/fWJNd4Wr_normal.jpg", + "favourites_count": 1143, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jesspryles", + "in_reply_to_user_id": 239123640, + "in_reply_to_status_id_str": "685567662189969408", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685583721785724928", + "id": 685583721785724928, + "text": "@jesspryles @BarbecueWife @tmbbq That looks like the start of a beautiful martini", + "in_reply_to_user_id_str": "239123640", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jesspryles", + "id_str": "239123640", + "id": 239123640, + "indices": [ + 0, + 11 + ], + "name": "Jess Pryles" + }, + { + "screen_name": "BarbecueWife", + "id_str": "2156702220", + "id": 2156702220, + "indices": [ + 12, + 25 + ], + "name": "Barbecue Wife" + }, + { + "screen_name": "tmbbq", + "id_str": "314842586", + "id": 314842586, + "indices": [ + 26, + 32 + ], + "name": "TMBBQ" + } + ] + }, + "created_at": "Fri Jan 08 22:07:51 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685567662189969408, + "lang": "en" + }, + "default_profile_image": false, + "id": 163997887, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6130, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163997887/1445224049", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5676102", + "following": false, + "friends_count": 5512, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hanselman.com", + "url": "https://t.co/KWE5X1BBOh", + "expanded_url": "http://hanselman.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/373869284/sepiabackground.jpg", + "notifications": false, + "profile_sidebar_fill_color": "B8AA9C", + "profile_link_color": "72412C", + "geo_enabled": true, + "followers_count": 150954, + "location": "Portland, Oregon", + "screen_name": "shanselman", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 7232, + "name": "Scott Hanselman", + "profile_use_background_image": true, + "description": "Tech, Code, YouTube, Race, Linguistics, Web, Parenting, Fashion, Black Hair, STEM, @OSCON chair, Phony. MSFT, but these are my opinions. @overheardathome", + "url": "https://t.co/KWE5X1BBOh", + "profile_text_color": "696969", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459455847165218816/I_sH-zvU_normal.jpeg", + "profile_background_color": "D1CDC1", + "created_at": "Tue May 01 05:55:26 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "B8AA9C", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459455847165218816/I_sH-zvU_normal.jpeg", + "favourites_count": 24118, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 39, + "truncated": false, + "retweeted": false, + "id_str": "685612414331523072", + "id": 685612414331523072, + "text": "I don't want a SmartTV. I want a DumbTV with an HDMI input. I'm not interested in a lousy insecure TV operating system and slow Netflix app.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:01:52 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 61, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 5676102, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/373869284/sepiabackground.jpg", + "statuses_count": 134545, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5676102/1398280381", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "176785758", + "following": false, + "friends_count": 560, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/cdparks", + "url": "https://t.co/i3UJKkqCYc", + "expanded_url": "http://github.com/cdparks", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 99, + "location": "Santa Clara", + "screen_name": "cdparx", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 2, + "name": "Chris Parks", + "profile_use_background_image": true, + "description": "Books, Haskell, cycling, chiptunes. Web engineer at Front Row Education.", + "url": "https://t.co/i3UJKkqCYc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/673630904183447552/BtXDgn8G_normal.jpg", + "profile_background_color": "022330", + "created_at": "Tue Aug 10 12:43:49 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673630904183447552/BtXDgn8G_normal.jpg", + "favourites_count": 589, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685519445159055361", + "id": 685519445159055361, + "text": ".@alex_kurilin maybe I'm easy to impress, but tmux is blowing my mind", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "alex_kurilin", + "id_str": "518123090", + "id": 518123090, + "indices": [ + 1, + 14 + ], + "name": "Alexandr Kurilin" + } + ] + }, + "created_at": "Fri Jan 08 17:52:26 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 176785758, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 320, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/176785758/1449441098", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "169213944", + "following": false, + "friends_count": 975, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "netmeister.org", + "url": "https://t.co/ig2RCUAX9I", + "expanded_url": "https://www.netmeister.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "300099", + "geo_enabled": true, + "followers_count": 1873, + "location": "New York, NY", + "screen_name": "jschauma", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 123, + "name": "Jan Schaumann", + "profile_use_background_image": false, + "description": "Vell, I'm just zis guy, you know?", + "url": "https://t.co/ig2RCUAX9I", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/551217713230528512/t4O7Iflt_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Jul 21 20:33:15 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551217713230528512/t4O7Iflt_normal.jpeg", + "favourites_count": 988, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jschauma", + "in_reply_to_user_id": 169213944, + "in_reply_to_status_id_str": "509752797156622336", + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685582148498272256", + "id": 685582148498272256, + "text": "Is giving an #infosec talk without using the word 'cyber' and not referencing Sun Tsu even allowed? Asking for a friend.", + "in_reply_to_user_id_str": "169213944", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 13, + 21 + ], + "text": "infosec" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:01:36 +0000 2016", + "source": "very-simple-tweet", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 509752797156622336, + "lang": "en" + }, + "default_profile_image": false, + "id": 169213944, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 19568, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/169213944/1420256090", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "196702550", + "following": false, + "friends_count": 1154, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 456, + "location": "", + "screen_name": "dvdeijk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 35, + "name": "David van Deijk", + "profile_use_background_image": true, + "description": "Emotie is nodig om geluk te vinden, Ratio om het te bereiken.\r\nExpert op (web)applicaties, social media en vrijwilligerssturing.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1826560759/2d248f2e-78f0-4b7f-8f49-cb039a9e2541_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 29 18:27:59 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1826560759/2d248f2e-78f0-4b7f-8f49-cb039a9e2541_normal.png", + "favourites_count": 20, + "status": { + "retweet_count": 316, + "retweeted_status": { + "retweet_count": 316, + "in_reply_to_user_id": null, + "possibly_sensitive": true, + "id_str": "684944939151527937", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 720, + "h": 470, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 221, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 391, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", + "type": "photo", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", + "display_url": "pic.twitter.com/WC5wGzrOUk", + "id_str": "684944922642759680", + "expanded_url": "http://twitter.com/StrangeImages/status/684944939151527937/photo/1", + "id": 684944922642759680, + "url": "https://t.co/WC5wGzrOUk" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 03:49:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684944939151527937, + "text": "https://t.co/WC5wGzrOUk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 543, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685525851623047169", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 720, + "h": 470, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 221, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 391, + "resize": "fit" + } + }, + "source_status_id_str": "684944939151527937", + "url": "https://t.co/WC5wGzrOUk", + "media_url": "http://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", + "source_user_id_str": "1681431577", + "id_str": "684944922642759680", + "id": 684944922642759680, + "media_url_https": "https://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", + "type": "photo", + "indices": [ + 19, + 42 + ], + "source_status_id": 684944939151527937, + "source_user_id": 1681431577, + "display_url": "pic.twitter.com/WC5wGzrOUk", + "expanded_url": "http://twitter.com/StrangeImages/status/684944939151527937/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "StrangeImages", + "id_str": "1681431577", + "id": 1681431577, + "indices": [ + 3, + 17 + ], + "name": "Cynide And Happiness" + } + ] + }, + "created_at": "Fri Jan 08 18:17:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685525851623047169, + "text": "RT @StrangeImages: https://t.co/WC5wGzrOUk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 196702550, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7230, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16215661", + "following": false, + "friends_count": 913, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "leifmadsen.com", + "url": "https://t.co/iQoEHSTtV4", + "expanded_url": "http://www.leifmadsen.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/605840517/kkd6rs03wn463ps6rs29.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1853, + "location": "\u00dcT: 43.521809,-79.698364", + "screen_name": "leifmadsen", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 118, + "name": "Life Mad Sun", + "profile_use_background_image": true, + "description": "Co-author of Asterisk: The Future of Telephony and Asterisk: The Definitive Guide.\n\nPartner Engineer - CI and NFV at Red Hat.", + "url": "https://t.co/iQoEHSTtV4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/637323360733667329/QQmh-udy_normal.jpg", + "profile_background_color": "022330", + "created_at": "Wed Sep 10 02:49:53 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637323360733667329/QQmh-udy_normal.jpg", + "favourites_count": 2123, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "681999770307571713", + "id": 681999770307571713, + "text": "Not once have I ever meant \"Ducking\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 00:46:30 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 6, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 16215661, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/605840517/kkd6rs03wn463ps6rs29.png", + "statuses_count": 5416, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16215661/1449766084", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "790719620", + "following": false, + "friends_count": 130, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "CC3366", + "geo_enabled": false, + "followers_count": 32, + "location": "", + "screen_name": "kavek9", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "janueric", + "profile_use_background_image": true, + "description": "eric's jokes, sports, and political comments with only random attempts at grammar.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683890407357284352/fWiCAyVK_normal.jpg", + "profile_background_color": "DBE9ED", + "created_at": "Thu Aug 30 03:19:23 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBE9ED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683890407357284352/fWiCAyVK_normal.jpg", + "favourites_count": 615, + "status": { + "retweet_count": 8, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "JacsonBevens", + "in_reply_to_user_id": 295234079, + "in_reply_to_status_id_str": "685542577488044032", + "retweet_count": 8, + "truncated": false, + "retweeted": false, + "id_str": "685543133577281536", + "id": 685543133577281536, + "text": "Believe when I say that Jimmy Graham would be feasting like a Norse king if he were healthy in this offense the way the OL has been playing", + "in_reply_to_user_id_str": "295234079", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:26:34 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 39, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685542577488044032, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685568225417936896", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JacsonBevens", + "id_str": "295234079", + "id": 295234079, + "indices": [ + 3, + 16 + ], + "name": "Jacson A. Bevens" + } + ] + }, + "created_at": "Fri Jan 08 21:06:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685568225417936896, + "text": "RT @JacsonBevens: Believe when I say that Jimmy Graham would be feasting like a Norse king if he were healthy in this offense the way the \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 790719620, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "statuses_count": 531, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2891402324", + "following": false, + "friends_count": 56, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 50, + "location": "", + "screen_name": "Inman_Leslie_62", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Leslie Inman", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/531329061872611328/A3Lc1iWt_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Nov 06 00:55:58 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/531329061872611328/A3Lc1iWt_normal.jpeg", + "favourites_count": 261, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Mike_Speegle", + "in_reply_to_user_id": 196082293, + "in_reply_to_status_id_str": "683858779276877824", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "683860091993370624", + "id": 683860091993370624, + "text": "@Mike_Speegle weirdly pretty...hmmm", + "in_reply_to_user_id_str": "196082293", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Mike_Speegle", + "id_str": "196082293", + "id": 196082293, + "indices": [ + 0, + 13 + ], + "name": "Mike Speegle" + } + ] + }, + "created_at": "Mon Jan 04 03:58:46 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683858779276877824, + "lang": "en" + }, + "default_profile_image": false, + "id": 2891402324, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 54, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16340755", + "following": false, + "friends_count": 153, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cloudpundit.com", + "url": "http://t.co/QQVdkoyVS2", + "expanded_url": "http://cloudpundit.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 13022, + "location": "Washington DC", + "screen_name": "cloudpundit", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 750, + "name": "Lydia Leong", + "profile_use_background_image": true, + "description": "VP Distinguished Analyst at Gartner, covering cloud computing, content delivery networks, hosting, and more. Opinions are my own. RTs do not imply agreement.", + "url": "http://t.co/QQVdkoyVS2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/78675981/Lydia_normal.jpg", + "profile_background_color": "022330", + "created_at": "Thu Sep 18 01:38:45 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/78675981/Lydia_normal.jpg", + "favourites_count": 3, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685520689370103808", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "sumall.com/myweek", + "url": "https://t.co/ShJJ98dtrS", + "expanded_url": "http://sumall.com/myweek", + "indices": [ + 105, + 128 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:57:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685520689370103808, + "text": "My week on Twitter: 33 New Followers, 17 Mentions, 51.4K Mention Reach. How's your audience growing? via https://t.co/ShJJ98dtrS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TwentyFeet" + }, + "default_profile_image": false, + "id": 16340755, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 9221, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16340755/1401729570", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "14089059", + "following": false, + "friends_count": 763, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pingham.com", + "url": "http://t.co/kDVpGDlHQk", + "expanded_url": "http://www.pingham.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme20/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "BF1238", + "geo_enabled": true, + "followers_count": 628, + "location": "Didsbury, South Manchester", + "screen_name": "paulingham", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 32, + "name": "Paul Ingham.", + "profile_use_background_image": false, + "description": "Senior Developer for @OnTheBeachUK and all round awesome guy. Probably the most awesome person you'll ever meet. Views are my own.", + "url": "http://t.co/kDVpGDlHQk", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/442807573071556608/ppAO7PHP_normal.jpeg", + "profile_background_color": "BF1238", + "created_at": "Thu Mar 06 15:14:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/442807573071556608/ppAO7PHP_normal.jpeg", + "favourites_count": 10, + "status": { + "retweet_count": 2198, + "retweeted_status": { + "retweet_count": 2198, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685111345348521984", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 480, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", + "type": "photo", + "indices": [ + 47, + 70 + ], + "media_url": "http://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", + "display_url": "pic.twitter.com/AwSYt5s7OX", + "id_str": "685111342987087872", + "expanded_url": "http://twitter.com/RachaelKrishna/status/685111345348521984/photo/1", + "id": 685111342987087872, + "url": "https://t.co/AwSYt5s7OX" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 14:50:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685111345348521984, + "text": "Fox is evolving, Fox has evolved into Quadfox. https://t.co/AwSYt5s7OX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2612, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685124160062894080", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 480, + "resize": "fit" + } + }, + "source_status_id_str": "685111345348521984", + "url": "https://t.co/AwSYt5s7OX", + "media_url": "http://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", + "source_user_id_str": "31167776", + "id_str": "685111342987087872", + "id": 685111342987087872, + "media_url_https": "https://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", + "type": "photo", + "indices": [ + 67, + 90 + ], + "source_status_id": 685111345348521984, + "source_user_id": 31167776, + "display_url": "pic.twitter.com/AwSYt5s7OX", + "expanded_url": "http://twitter.com/RachaelKrishna/status/685111345348521984/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RachaelKrishna", + "id_str": "31167776", + "id": 31167776, + "indices": [ + 3, + 18 + ], + "name": "Rachael Krishna" + } + ] + }, + "created_at": "Thu Jan 07 15:41:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685124160062894080, + "text": "RT @RachaelKrishna: Fox is evolving, Fox has evolved into Quadfox. https://t.co/AwSYt5s7OX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 14089059, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme20/bg.png", + "statuses_count": 22624, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14089059/1398369726", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "246586641", + "following": false, + "friends_count": 746, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/tomsteele", + "url": "https://t.co/BjxFlIEzZt", + "expanded_url": "https://github.com/tomsteele", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 513, + "location": "Boise, ID", + "screen_name": "_tomsteele", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 22, + "name": "Tom Steele", + "profile_use_background_image": true, + "description": "", + "url": "https://t.co/BjxFlIEzZt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663640413362782208/fE5DDncd_normal.jpg", + "profile_background_color": "022330", + "created_at": "Thu Feb 03 02:06:57 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663640413362782208/fE5DDncd_normal.jpg", + "favourites_count": 947, + "status": { + "retweet_count": 33, + "retweeted_status": { + "retweet_count": 33, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679123620308783104", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", + "type": "photo", + "indices": [ + 94, + 117 + ], + "media_url": "http://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", + "display_url": "pic.twitter.com/x2ITwDRC9E", + "id_str": "679123619641864192", + "expanded_url": "http://twitter.com/jmgosney/status/679123620308783104/photo/1", + "id": 679123619641864192, + "url": "https://t.co/x2ITwDRC9E" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 22 02:17:43 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679123620308783104, + "text": "Happy holidays from Sagitta HPC! We made a Christmas tree and a nativity scene out of GPUs :) https://t.co/x2ITwDRC9E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 56, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679125475185135616", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "source_status_id_str": "679123620308783104", + "url": "https://t.co/x2ITwDRC9E", + "media_url": "http://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", + "source_user_id_str": "312383587", + "id_str": "679123619641864192", + "id": 679123619641864192, + "media_url_https": "https://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", + "type": "photo", + "indices": [ + 108, + 131 + ], + "source_status_id": 679123620308783104, + "source_user_id": 312383587, + "display_url": "pic.twitter.com/x2ITwDRC9E", + "expanded_url": "http://twitter.com/jmgosney/status/679123620308783104/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jmgosney", + "id_str": "312383587", + "id": 312383587, + "indices": [ + 3, + 12 + ], + "name": "Jeremi M Gosney" + } + ] + }, + "created_at": "Tue Dec 22 02:25:05 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679125475185135616, + "text": "RT @jmgosney: Happy holidays from Sagitta HPC! We made a Christmas tree and a nativity scene out of GPUs :) https://t.co/x2ITwDRC9E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 246586641, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 1177, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "18209670", + "following": false, + "friends_count": 414, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/882271759/58d21fd2e0431d9b504cf57550d0019d.png", + "notifications": false, + "profile_sidebar_fill_color": "E8E8E8", + "profile_link_color": "B89404", + "geo_enabled": true, + "followers_count": 757, + "location": "pdx \u2022 oregon", + "screen_name": "amydearest", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "Amy Lynn Taylor", + "profile_use_background_image": true, + "description": "letterer, designer & swag master at @andyet. take me to the beach!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/604400972379521024/4Iol5Nyr_normal.jpg", + "profile_background_color": "4A4141", + "created_at": "Thu Dec 18 05:26:58 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/604400972379521024/4Iol5Nyr_normal.jpg", + "favourites_count": 1236, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "nrrrdcore", + "in_reply_to_user_id": 18496432, + "in_reply_to_status_id_str": "685008838605455360", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685026965103968256", + "id": 685026965103968256, + "text": "@nrrrdcore Miss you too, lady!!! Hope 2016 is an amazing year for you! \u2728\ud83c\udf89\ud83c\udf08\ud83c\udf69\ud83c\udf1f", + "in_reply_to_user_id_str": "18496432", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nrrrdcore", + "id_str": "18496432", + "id": 18496432, + "indices": [ + 0, + 10 + ], + "name": "Julie Ann Horvath" + } + ] + }, + "created_at": "Thu Jan 07 09:15:30 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685008838605455360, + "lang": "en" + }, + "default_profile_image": false, + "id": 18209670, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/882271759/58d21fd2e0431d9b504cf57550d0019d.png", + "statuses_count": 2968, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18209670/1429780917", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Christian, Husband, Security Professional, Zymurgist.", + "url": "http://t.co/FcIMyqDn1D", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "14161519", + "blocking": false, + "is_translation_enabled": false, + "id": 14161519, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.liftsecurity.io", + "url": "http://t.co/FcIMyqDn1D", + "expanded_url": "http://blog.liftsecurity.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "022330", + "created_at": "Mon Mar 17 05:16:11 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/425795441137942528/MKPIEfkm_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "statuses_count": 790, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/425795441137942528/MKPIEfkm_normal.jpeg", + "favourites_count": 747, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 198, + "blocked_by": false, + "following": false, + "location": "Tri-Cities, Washington", + "muting": false, + "friends_count": 278, + "notifications": false, + "screen_name": "jon_lamendola", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 18, + "is_translator": false, + "name": "Jon Lamendola" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15839160", + "following": false, + "friends_count": 393, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/802935671/3526cfcd432db9a1b194a58fd53258c3.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 174, + "location": "Richland, WA", + "screen_name": "shadowking", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "Matt", + "profile_use_background_image": true, + "description": "Dad, Computer Geek, Seeking World Domination", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/469317185496563712/hzejFsWa_normal.jpeg", + "profile_background_color": "396DA5", + "created_at": "Wed Aug 13 16:59:11 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/469317185496563712/hzejFsWa_normal.jpeg", + "favourites_count": 19, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "seank", + "in_reply_to_user_id": 1251781, + "in_reply_to_status_id_str": "666810637390061570", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "666815014708244480", + "id": 666815014708244480, + "text": "@seank @andyet Not it. But @hjon might know a lot more than I do.", + "in_reply_to_user_id_str": "1251781", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "seank", + "id_str": "1251781", + "id": 1251781, + "indices": [ + 0, + 6 + ], + "name": "Sean Kelly" + }, + { + "screen_name": "andyet", + "id_str": "41294568", + "id": 41294568, + "indices": [ + 7, + 14 + ], + "name": "&yet" + }, + { + "screen_name": "hjon", + "id_str": "8446052", + "id": 8446052, + "indices": [ + 27, + 32 + ], + "name": "Jon Hjelle" + } + ] + }, + "created_at": "Wed Nov 18 03:07:42 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 666810637390061570, + "lang": "en" + }, + "default_profile_image": false, + "id": 15839160, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/802935671/3526cfcd432db9a1b194a58fd53258c3.jpeg", + "statuses_count": 100, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15839160/1406223575", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "36700219", + "following": false, + "friends_count": 191, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.danger.computer", + "url": "https://t.co/QDoQ6jSQlH", + "expanded_url": "http://blog.danger.computer", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/19825055/scematic.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "CD678B", + "geo_enabled": false, + "followers_count": 551, + "location": "The Internet", + "screen_name": "wraithgar", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 58, + "name": "Gar", + "profile_use_background_image": true, + "description": "That's me I'm Gar.", + "url": "https://t.co/QDoQ6jSQlH", + "profile_text_color": "008000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684124704643223552/w8QjxnMH_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Apr 30 16:12:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684124704643223552/w8QjxnMH_normal.jpg", + "favourites_count": 7937, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685598426990444544", + "id": 685598426990444544, + "text": "TIL there are still people out there who will put www in front of any url you give them.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:06:17 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 36700219, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/19825055/scematic.gif", + "statuses_count": 14795, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/36700219/1397581843", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "22577946", + "following": false, + "friends_count": 357, + "entities": { + "description": { + "urls": [ + { + "display_url": "jennpm.com", + "url": "http://t.co/Hh0LGhrdhx", + "expanded_url": "http://jennpm.com", + "indices": [ + 68, + 90 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "tinyletter.com/renrutnnej", + "url": "https://t.co/66aBzBcFPN", + "expanded_url": "https://tinyletter.com/renrutnnej", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/788428227/2a7556d8d4ef62ef128d880c9832fd54.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F5DA2E", + "profile_link_color": "45BFA4", + "geo_enabled": true, + "followers_count": 1166, + "location": "Brooklyn, NY", + "screen_name": "renrutnnej", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 81, + "name": "Jenn Turner", + "profile_use_background_image": false, + "description": "Young, wild and free. Except for the young part. And the wild part. http://t.co/Hh0LGhrdhx", + "url": "https://t.co/66aBzBcFPN", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624664971742310404/zlx538-s_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Mar 03 03:25:12 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624664971742310404/zlx538-s_normal.jpg", + "favourites_count": 15202, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610321629831170", + "id": 685610321629831170, + "text": "Hearts are so weird. Just when I think mine's completely full, someone shows up and boom! There's room for more.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:53:33 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 22577946, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/788428227/2a7556d8d4ef62ef128d880c9832fd54.jpeg", + "statuses_count": 14951, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22577946/1448822155", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "404215418", + "following": false, + "friends_count": 336, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyet.com", + "url": "http://t.co/XD7F7KJqCZ", + "expanded_url": "http://andyet.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886967261/1724fffecf73d7b8c22b3ce21cccfa4c.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "94D487", + "geo_enabled": false, + "followers_count": 397, + "location": "The Dalles, OR", + "screen_name": "missfelony", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "melanie", + "profile_use_background_image": false, + "description": "A frequent filmmaker, photographer and theology student. Lover of honey bees and my peoples at &yet.", + "url": "http://t.co/XD7F7KJqCZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/644167511764697088/IIMFrV4Y_normal.jpg", + "profile_background_color": "F5E5CB", + "created_at": "Thu Nov 03 16:16:18 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/644167511764697088/IIMFrV4Y_normal.jpg", + "favourites_count": 947, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 15281965, + "possibly_sensitive": false, + "id_str": "684456894983843840", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "lizvice.com/calendar/", + "url": "https://t.co/b5lqCB2xTC", + "expanded_url": "http://www.lizvice.com/calendar/", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "fosterhunting", + "id_str": "15281965", + "id": 15281965, + "indices": [ + 0, + 14 + ], + "name": "Foster Huntington" + } + ] + }, + "created_at": "Tue Jan 05 19:30:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "15281965", + "place": null, + "in_reply_to_screen_name": "fosterhunting", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684456894983843840, + "text": "@fosterhunting By chance do u open your home in (Humboldt) to nice people on tour? We make great guests! Jan 25th https://t.co/b5lqCB2xTC", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 404215418, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886967261/1724fffecf73d7b8c22b3ce21cccfa4c.jpeg", + "statuses_count": 541, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "72917560", + "following": false, + "friends_count": 201, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "FF0000", + "geo_enabled": false, + "followers_count": 237, + "location": "", + "screen_name": "StephanieMaier", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 14, + "name": "Stephanie Maier", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495316813518237696/JajTx181_normal.jpeg", + "profile_background_color": "BADFCD", + "created_at": "Wed Sep 09 18:36:28 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F2E195", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495316813518237696/JajTx181_normal.jpeg", + "favourites_count": 728, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "578740117755465728", + "id": 578740117755465728, + "text": "Hardest lesson I\u2019ve learned to date: If something seems too good to be true, it probably is.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Mar 20 02:09:31 +0000 2015", + "source": "Tweetbot for Mac", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 72917560, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "statuses_count": 1568, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "326997078", + "following": false, + "friends_count": 224, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 214, + "location": "Kennewick, WA", + "screen_name": "DanielChBarnes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Daniel Barnes", + "profile_use_background_image": true, + "description": "programmer, paraglider", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/514517153559494657/Q5zlmgX0_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Jun 30 20:44:12 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/514517153559494657/Q5zlmgX0_normal.jpeg", + "favourites_count": 410, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "McKurves", + "in_reply_to_user_id": 214349059, + "in_reply_to_status_id_str": "657038086522564608", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "657072222150914048", + "id": 657072222150914048, + "text": "@McKurves just never much to use it for too me.", + "in_reply_to_user_id_str": "214349059", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "McKurves", + "id_str": "214349059", + "id": 214349059, + "indices": [ + 0, + 9 + ], + "name": "\uff2b\uff41\uff44\uff45" + } + ] + }, + "created_at": "Thu Oct 22 05:53:20 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 657038086522564608, + "lang": "en" + }, + "default_profile_image": false, + "id": 326997078, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 737, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/326997078/1411505627", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "37875884", + "following": false, + "friends_count": 126, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "4A913C", + "geo_enabled": false, + "followers_count": 551, + "location": "Tri Cities", + "screen_name": "ericzanol", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 47, + "name": "Eric", + "profile_use_background_image": false, + "description": "Dry wit, bleeding heart, can\u2019t lose.", + "url": null, + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680148284736864257/SyqcadxG_normal.jpg", + "profile_background_color": "352726", + "created_at": "Tue May 05 06:56:24 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680148284736864257/SyqcadxG_normal.jpg", + "favourites_count": 2381, + "status": { + "retweet_count": 5, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 5, + "truncated": false, + "retweeted": false, + "id_str": "685562906017136640", + "id": 685562906017136640, + "text": "Happiness is when what you think, what you say, and what you do are in harmony. -M. K. Gandhi", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:45:08 +0000 2016", + "source": "Hootsuite", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685571850949144576", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ldavidmarquet", + "id_str": "165091971", + "id": 165091971, + "indices": [ + 3, + 17 + ], + "name": "David Marquet" + } + ] + }, + "created_at": "Fri Jan 08 21:20:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685571850949144576, + "text": "RT @ldavidmarquet: Happiness is when what you think, what you say, and what you do are in harmony. -M. K. Gandhi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 37875884, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 180, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "186343313", + "following": false, + "friends_count": 121, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "unneeded.info", + "url": "http://t.co/1yci9kxdeJ", + "expanded_url": "http://unneeded.info", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 324, + "location": "Kennewick, WA", + "screen_name": "quitlahok", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 20, + "name": "Nathan LaFreniere", + "profile_use_background_image": true, + "description": "I work at &yet where I pretend I know how to program, and occasionally fix whatever's broken", + "url": "http://t.co/1yci9kxdeJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/448225972865622017/qWgtXEYW_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Sep 03 05:43:46 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/448225972865622017/qWgtXEYW_normal.jpeg", + "favourites_count": 13, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "wraithgar", + "in_reply_to_user_id": 36700219, + "in_reply_to_status_id_str": "679719966816374785", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "680060113932046338", + "id": 680060113932046338, + "text": "@wraithgar @brycebaril he talks about as much as i did too", + "in_reply_to_user_id_str": "36700219", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wraithgar", + "id_str": "36700219", + "id": 36700219, + "indices": [ + 0, + 10 + ], + "name": "Gar" + }, + { + "screen_name": "brycebaril", + "id_str": "7515742", + "id": 7515742, + "indices": [ + 11, + 22 + ], + "name": "Bryce Baril" + } + ] + }, + "created_at": "Thu Dec 24 16:19:00 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 679719966816374785, + "lang": "en" + }, + "default_profile_image": false, + "id": 186343313, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 549, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "26330898", + "following": false, + "friends_count": 342, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rckbt.me", + "url": "https://t.co/oqkVcYlwPm", + "expanded_url": "http://rckbt.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 8038, + "location": "Bay Area, CA", + "screen_name": "rockbot", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 480, + "name": "Raquel V\u00e9lez", + "profile_use_background_image": true, + "description": "purveyor of flan \u2219 web wombat at @npmjs \u2219 polyglot \u2219 co-host of @reactivepod", + "url": "https://t.co/oqkVcYlwPm", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657044546430177280/47ES_A2x_normal.jpg", + "profile_background_color": "022330", + "created_at": "Tue Mar 24 21:38:23 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657044546430177280/47ES_A2x_normal.jpg", + "favourites_count": 8443, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ag_dubs", + "in_reply_to_user_id": 304067888, + "in_reply_to_status_id_str": "685577669900169217", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685577888381321216", + "id": 685577888381321216, + "text": "@ag_dubs @wafflejs omggggg\n\nmaybe? :-D", + "in_reply_to_user_id_str": "304067888", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ag_dubs", + "id_str": "304067888", + "id": 304067888, + "indices": [ + 0, + 8 + ], + "name": "ashley williams" + }, + { + "screen_name": "wafflejs", + "id_str": "3338088405", + "id": 3338088405, + "indices": [ + 9, + 18 + ], + "name": "WaffleJS" + } + ] + }, + "created_at": "Fri Jan 08 21:44:40 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685577669900169217, + "lang": "en" + }, + "default_profile_image": false, + "id": 26330898, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 17452, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/26330898/1385156937", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17123007", + "following": false, + "friends_count": 146, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lance.im", + "url": "https://t.co/83MrRTiW4A", + "expanded_url": "http://lance.im", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 506, + "location": "West Richland, WA ", + "screen_name": "lancestout", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Lance Stout", + "profile_use_background_image": true, + "description": "JS / Node / XMPP developer at @andyet", + "url": "https://t.co/83MrRTiW4A", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/517111112181899265/EdolLRh8_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 03 01:01:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/517111112181899265/EdolLRh8_normal.png", + "favourites_count": 209, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "wraithgar", + "in_reply_to_user_id": 36700219, + "in_reply_to_status_id_str": "671373498619592705", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "671377713643393025", + "id": 671377713643393025, + "text": "@wraithgar For a while, our phones would tell us how long it'd take to get to your house on the weekends..", + "in_reply_to_user_id_str": "36700219", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wraithgar", + "id_str": "36700219", + "id": 36700219, + "indices": [ + 0, + 10 + ], + "name": "Gar" + } + ] + }, + "created_at": "Mon Nov 30 17:18:15 +0000 2015", + "source": "Twitter for Mac", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 671373498619592705, + "lang": "en" + }, + "default_profile_image": false, + "id": 17123007, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 234, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "44897658", + "following": false, + "friends_count": 961, + "entities": { + "description": { + "urls": [ + { + "display_url": "deepfield.net", + "url": "http://t.co/zwaTxtC536", + "expanded_url": "http://deepfield.net", + "indices": [ + 26, + 48 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 103, + "location": "4th and Maynard ... ", + "screen_name": "halfaleague", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Luke Carmichael", + "profile_use_background_image": true, + "description": "python clojure c + data @ http://t.co/zwaTxtC536", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1525229600/macke_lady_thumb_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Jun 05 14:00:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1525229600/macke_lady_thumb_normal.jpg", + "favourites_count": 35, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685580888982159360", + "id": 685580888982159360, + "text": "Our new Epoca espresso machine at Deepfield is so good. I apologize to the local economy for how much less coffee I'll be buying.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:56:36 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685586744444489728", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "naim", + "id_str": "7228172", + "id": 7228172, + "indices": [ + 3, + 8 + ], + "name": "Naim Falandino" + } + ] + }, + "created_at": "Fri Jan 08 22:19:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685586744444489728, + "text": "RT @naim: Our new Epoca espresso machine at Deepfield is so good. I apologize to the local economy for how much less coffee I'll be buying.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 44897658, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 355, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "78663", + "following": false, + "friends_count": 616, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ceejbot.tumblr.com", + "url": "https://t.co/BKkuBfyOm7", + "expanded_url": "http://ceejbot.tumblr.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/149122382/x59fbc11347f5afe2a4e736cd31efed2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E8DDCB", + "profile_link_color": "472C04", + "geo_enabled": true, + "followers_count": 2579, + "location": "Menlo Park, CA", + "screen_name": "ceejbot", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 216, + "name": "Secret Ceej Weapon", + "profile_use_background_image": true, + "description": "Ceej aka ceejbot. THE NPM SIEGE BOT. Innovative thought admiral-ship in cat-related tweeting.", + "url": "https://t.co/BKkuBfyOm7", + "profile_text_color": "031634", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631253658743603200/XeO_3PC7_normal.jpg", + "profile_background_color": "CDB380", + "created_at": "Mon Dec 18 23:22:16 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "036564", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631253658743603200/XeO_3PC7_normal.jpg", + "favourites_count": 11779, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/ab2f2fac83aa388d.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.34266, + 37.699279 + ], + [ + -122.114711, + 37.699279 + ], + [ + -122.114711, + 37.8847092 + ], + [ + -122.34266, + 37.8847092 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Oakland, CA", + "id": "ab2f2fac83aa388d", + "name": "Oakland" + }, + "in_reply_to_screen_name": "DanielleSucher", + "in_reply_to_user_id": 19393655, + "in_reply_to_status_id_str": "685569257409765377", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685598431209914368", + "id": 685598431209914368, + "text": "@DanielleSucher *hugs* and not crazy at all IMO.", + "in_reply_to_user_id_str": "19393655", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DanielleSucher", + "id_str": "19393655", + "id": 19393655, + "indices": [ + 0, + 15 + ], + "name": "Danielle Sucher" + } + ] + }, + "created_at": "Fri Jan 08 23:06:18 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685569257409765377, + "lang": "en" + }, + "default_profile_image": false, + "id": 78663, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/149122382/x59fbc11347f5afe2a4e736cd31efed2.jpg", + "statuses_count": 34269, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/78663/1400545557", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "810132127", + "following": false, + "friends_count": 1590, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "flipboard.com/@cdurant", + "url": "https://t.co/aibuc166qC", + "expanded_url": "https://flipboard.com/@cdurant", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 341, + "location": "San Francisco, CA", + "screen_name": "colin_durant", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "Colin DuRant", + "profile_use_background_image": true, + "description": "Analytics & product at @clever formerly @flipboard @catalogspree / SF by way of SJ and OK", + "url": "https://t.co/aibuc166qC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/523882538779942913/q14cM8U1_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Sep 08 03:52:28 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/523882538779942913/q14cM8U1_normal.jpeg", + "favourites_count": 3962, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681855917378293760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "apple.news/A5b8trld-SUeWl\u2026", + "url": "https://t.co/usDHcNomwE", + "expanded_url": "https://apple.news/A5b8trld-SUeWl9Wzn4xrdQ", + "indices": [ + 64, + 87 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 29 15:14:53 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681855917378293760, + "text": "San Francisco's Self-Defeating Housing Activists - The Atlantic https://t.co/usDHcNomwE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681913746965442560", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "apple.news/A5b8trld-SUeWl\u2026", + "url": "https://t.co/usDHcNomwE", + "expanded_url": "https://apple.news/A5b8trld-SUeWl9Wzn4xrdQ", + "indices": [ + 78, + 101 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "drfourny", + "id_str": "255787439", + "id": 255787439, + "indices": [ + 3, + 12 + ], + "name": "Diane Rogers Fourny" + } + ] + }, + "created_at": "Tue Dec 29 19:04:41 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681913746965442560, + "text": "RT @drfourny: San Francisco's Self-Defeating Housing Activists - The Atlantic https://t.co/usDHcNomwE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 810132127, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1654, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/810132127/1413738305", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14498374", + "following": false, + "friends_count": 979, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyet.net/team/nathan", + "url": "https://t.co/sHqfMeNd0i", + "expanded_url": "http://andyet.net/team/nathan", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 1583, + "location": "Kennewick, WA", + "screen_name": "fritzy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 124, + "name": "Fritzy", + "profile_use_background_image": true, + "description": "@andyet Chief Architect by day, Indie game dev by night.", + "url": "https://t.co/sHqfMeNd0i", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677258552621142017/fyRHHsb-_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Apr 23 18:26:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677258552621142017/fyRHHsb-_normal.jpg", + "favourites_count": 7346, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685611889636671488", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 224, + "h": 495, + "resize": "fit" + }, + "medium": { + "w": 224, + "h": 495, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 224, + "h": 495, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPIYXkUMAAJQz5.png", + "type": "photo", + "indices": [ + 82, + 105 + ], + "media_url": "http://pbs.twimg.com/media/CYPIYXkUMAAJQz5.png", + "display_url": "pic.twitter.com/5quACdznFY", + "id_str": "685611889259196416", + "expanded_url": "http://twitter.com/fritzy/status/685611889636671488/photo/1", + "id": 685611889259196416, + "url": "https://t.co/5quACdznFY" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "firefox", + "id_str": "2142731", + "id": 2142731, + "indices": [ + 25, + 33 + ], + "name": "Firefox" + }, + { + "screen_name": "github", + "id_str": "13334762", + "id": 13334762, + "indices": [ + 57, + 64 + ], + "name": "GitHub" + } + ] + }, + "created_at": "Fri Jan 08 23:59:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685611889636671488, + "text": "So, about moving back to @Firefox. No plugins, just on a @github code page. Nope. https://t.co/5quACdznFY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14498374, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 9830, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14498374/1427130806", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "346307007", + "following": false, + "friends_count": 263, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "louisefristensky.com", + "url": "http://t.co/TNsqxaAiRL", + "expanded_url": "http://www.louisefristensky.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/341688821/California_Cows6.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 94, + "location": "Mountainside, NJ", + "screen_name": "RamblingLouise", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Louise Fristensky", + "profile_use_background_image": true, + "description": "A Composer. A wanderer. Food. Art. and sweet sweet Music.", + "url": "http://t.co/TNsqxaAiRL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000620805231/7b9212e77ca86fbbf6b883b6e167ebb7_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Mon Aug 01 02:06:37 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000620805231/7b9212e77ca86fbbf6b883b6e167ebb7_normal.jpeg", + "favourites_count": 430, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 35490819, + "possibly_sensitive": false, + "id_str": "685286688676036608", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 561, + "h": 370, + "resize": "fit" + }, + "medium": { + "w": 561, + "h": 370, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 224, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKgnLHWMAILBxT.jpg", + "type": "photo", + "indices": [ + 12, + 35 + ], + "media_url": "http://pbs.twimg.com/media/CYKgnLHWMAILBxT.jpg", + "display_url": "pic.twitter.com/I3UH0Ea7Ji", + "id_str": "685286688172683266", + "expanded_url": "http://twitter.com/RamblingLouise/status/685286688676036608/photo/1", + "id": 685286688172683266, + "url": "https://t.co/I3UH0Ea7Ji" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "timoandres", + "id_str": "35490819", + "id": 35490819, + "indices": [ + 0, + 11 + ], + "name": "Timo Andres" + } + ] + }, + "created_at": "Fri Jan 08 02:27:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "35490819", + "place": null, + "in_reply_to_screen_name": "timoandres", + "in_reply_to_status_id_str": "685265488205737985", + "truncated": false, + "id": 685286688676036608, + "text": "@timoandres https://t.co/I3UH0Ea7Ji", + "coordinates": null, + "in_reply_to_status_id": 685265488205737985, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 346307007, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/341688821/California_Cows6.jpg", + "statuses_count": 725, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/346307007/1430450101", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "13137632", + "following": false, + "friends_count": 1939, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "supine.com", + "url": "http://t.co/Berf3TCv", + "expanded_url": "http://supine.com", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 618, + "location": "An Aussie living in Frankfurt", + "screen_name": "martinbarry", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Martin Barry", + "profile_use_background_image": true, + "description": "Sysadmin / Network Ops", + "url": "http://t.co/Berf3TCv", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2137176918/martin_barry_headshot_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Feb 06 03:53:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2137176918/martin_barry_headshot_normal.jpg", + "favourites_count": 247, + "status": { + "retweet_count": 29, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 29, + "truncated": false, + "retweeted": false, + "id_str": "681959073034727425", + "id": 681959073034727425, + "text": "NYC, I'm looking for a great ops team to work with! (Realized I hadn't publicly said that I'm searching. Reluctant use of #devops tag here.)", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 122, + 129 + ], + "text": "devops" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Dec 29 22:04:47 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 16, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685194442333122560", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 136, + 140 + ], + "text": "devops" + } + ], + "user_mentions": [ + { + "screen_name": "cerephic", + "id_str": "14166535", + "id": 14166535, + "indices": [ + 3, + 12 + ], + "name": "Ceren Ercen" + } + ] + }, + "created_at": "Thu Jan 07 20:21:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685194442333122560, + "text": "RT @cerephic: NYC, I'm looking for a great ops team to work with! (Realized I hadn't publicly said that I'm searching. Reluctant use of #de\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TalonForSupine" + }, + "default_profile_image": false, + "id": 13137632, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5400, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13137632/1402574766", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "250397632", + "following": false, + "friends_count": 525, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "caremad.io", + "url": "https://t.co/N7EFH3OI46", + "expanded_url": "https://caremad.io/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 2297, + "location": "Philadelphia, PA", + "screen_name": "dstufft", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 157, + "name": "Donald Stufft", + "profile_use_background_image": true, + "description": "pip // PyPI // Python // cryptography\n\nI am perpetually caremad.\n\nI care a lot about security. \n\nAgitator and profesional rabble rouser.", + "url": "https://t.co/N7EFH3OI46", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2589562873/85j1remox0wdwpycnmpt_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Feb 11 00:55:49 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2589562873/85j1remox0wdwpycnmpt_normal.jpeg", + "favourites_count": 47, + "status": { + "retweet_count": 704, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 704, + "truncated": false, + "retweeted": false, + "id_str": "685516987859120128", + "id": 685516987859120128, + "text": "Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're on track", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:42:40 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 635, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685538376716529665", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "McKelvie", + "id_str": "14276679", + "id": 14276679, + "indices": [ + 3, + 12 + ], + "name": "Jamie McKelvie" + } + ] + }, + "created_at": "Fri Jan 08 19:07:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685538376716529665, + "text": "RT @McKelvie: Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 250397632, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 14451, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "41817149", + "following": false, + "friends_count": 1199, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "0051A8", + "geo_enabled": true, + "followers_count": 235, + "location": "Village", + "screen_name": "donnysp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Duncan Rance", + "profile_use_background_image": true, + "description": "wip", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670239079255187456/z5bnpVZV_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Fri May 22 14:04:10 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670239079255187456/z5bnpVZV_normal.jpg", + "favourites_count": 300, + "status": { + "retweet_count": 22, + "retweeted_status": { + "retweet_count": 22, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684866848429584386", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 639, + "h": 576, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 540, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 306, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", + "type": "photo", + "indices": [ + 39, + 62 + ], + "media_url": "http://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", + "display_url": "pic.twitter.com/qf2RHVXc2g", + "id_str": "684866840808538112", + "expanded_url": "http://twitter.com/banalyst/status/684866848429584386/photo/1", + "id": 684866840808538112, + "url": "https://t.co/qf2RHVXc2g" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 22:39:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684866848429584386, + "text": "Not sure about this Rising Damp reboot https://t.co/qf2RHVXc2g", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685251375480070144", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 639, + "h": 576, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 540, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 306, + "resize": "fit" + } + }, + "source_status_id_str": "684866848429584386", + "url": "https://t.co/qf2RHVXc2g", + "media_url": "http://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", + "source_user_id_str": "29412015", + "id_str": "684866840808538112", + "id": 684866840808538112, + "media_url_https": "https://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", + "type": "photo", + "indices": [ + 53, + 76 + ], + "source_status_id": 684866848429584386, + "source_user_id": 29412015, + "display_url": "pic.twitter.com/qf2RHVXc2g", + "expanded_url": "http://twitter.com/banalyst/status/684866848429584386/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "banalyst", + "id_str": "29412015", + "id": 29412015, + "indices": [ + 3, + 12 + ], + "name": "Zorro P Freely" + } + ] + }, + "created_at": "Fri Jan 08 00:07:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685251375480070144, + "text": "RT @banalyst: Not sure about this Rising Damp reboot https://t.co/qf2RHVXc2g", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 41817149, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 1384, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41817149/1414050232", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "784467", + "following": false, + "friends_count": 2089, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 1650, + "location": "", + "screen_name": "complex", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 109, + "name": "Anthony Elizondo", + "profile_use_background_image": false, + "description": "sysadmin, geek, ruby, vmware, freebsd, pop culture, startups, hockey, burritos, beer, gadgets, movies, environment, arduino, \u0e2d\u0e32\u0e2b\u0e32\u0e23, comida espa\u00f1ola, and you.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Feb 20 21:23:17 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", + "favourites_count": 853, + "status": { + "retweet_count": 23, + "retweeted_status": { + "retweet_count": 23, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685457956939427840", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "theatlantic.com/technology/arc\u2026", + "url": "https://t.co/OlOZjb71Cp", + "expanded_url": "http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/", + "indices": [ + 0, + 23 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 13:48:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685457956939427840, + "text": "https://t.co/OlOZjb71Cp well I wrote about northern Virginia.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 41, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685495702529650689", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "theatlantic.com/technology/arc\u2026", + "url": "https://t.co/OlOZjb71Cp", + "expanded_url": "http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/", + "indices": [ + 17, + 40 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lifewinning", + "id_str": "348082699", + "id": 348082699, + "indices": [ + 3, + 15 + ], + "name": "Ingrid Burrington" + } + ] + }, + "created_at": "Fri Jan 08 16:18:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685495702529650689, + "text": "RT @lifewinning: https://t.co/OlOZjb71Cp well I wrote about northern Virginia.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 784467, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 14687, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/784467/1396966682", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "2652345853", + "following": false, + "friends_count": 333, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": false, + "followers_count": 238, + "location": "somewhere in minnesota", + "screen_name": "annamarls", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 15, + "name": "canadamarls", + "profile_use_background_image": true, + "description": "Rogue Canadian, discreet intellectual, impassioned feminist, audacious traveler, gluttonous reader of young adult sci-fi. she/her", + "url": null, + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684083531576811521/Q42bXcA7_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Thu Jul 17 00:04:14 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684083531576811521/Q42bXcA7_normal.jpg", + "favourites_count": 9906, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685282354349355012", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 1025, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKclHVUsAETV5D.jpg", + "type": "photo", + "indices": [ + 45, + 68 + ], + "media_url": "http://pbs.twimg.com/media/CYKclHVUsAETV5D.jpg", + "display_url": "pic.twitter.com/V0k9KL3f70", + "id_str": "685282254751313921", + "expanded_url": "http://twitter.com/annamarls/status/685282354349355012/photo/1", + "id": 685282254751313921, + "url": "https://t.co/V0k9KL3f70" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:10:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685282354349355012, + "text": "I thought I had enough t-shirts, but then... https://t.co/V0k9KL3f70", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2652345853, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 8083, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652345853/1445212313", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15102110", + "following": false, + "friends_count": 356, + "entities": { + "description": { + "urls": [ + { + "display_url": "gumroad.com/henrikjoreteg/", + "url": "https://t.co/Duu1O9DHXR", + "expanded_url": "http://gumroad.com/henrikjoreteg/", + "indices": [ + 123, + 146 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "joreteg.com", + "url": "https://t.co/2XYoNHOk0q", + "expanded_url": "http://joreteg.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "12B6C4", + "geo_enabled": true, + "followers_count": 9942, + "location": "Tri-Cities, WA", + "screen_name": "HenrikJoreteg", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 632, + "name": "Henrik Joreteg", + "profile_use_background_image": false, + "description": "Progressive Web App developer, consultant, author, and educator. \n\nThe web is the future of mobile and IoT.\n\nmailing list: https://t.co/Duu1O9DHXR\u2026", + "url": "https://t.co/2XYoNHOk0q", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/425625343144103936/BJf6lFhU_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Thu Jun 12 22:54:23 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/425625343144103936/BJf6lFhU_normal.jpeg", + "favourites_count": 2733, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "davidlymanning", + "in_reply_to_user_id": 310674727, + "in_reply_to_status_id_str": "685520844609589248", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685521940694433792", + "id": 685521940694433792, + "text": "@davidlymanning it's not negative, per se. But it can be a bit exhausting at times :)", + "in_reply_to_user_id_str": "310674727", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "davidlymanning", + "id_str": "310674727", + "id": 310674727, + "indices": [ + 0, + 15 + ], + "name": "David Manning" + } + ] + }, + "created_at": "Fri Jan 08 18:02:21 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685520844609589248, + "lang": "en" + }, + "default_profile_image": false, + "id": 15102110, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 15793, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15102110/1431973648", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16969318", + "following": false, + "friends_count": 878, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "\u2026NUWillTravel.ApesSeekingKnowledge.net", + "url": "http://t.co/c1YitYiUzs", + "expanded_url": "http://HaveGNUWillTravel.ApesSeekingKnowledge.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 494, + "location": "R'lyeh", + "screen_name": "curiousbiped", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 64, + "name": "Bag of mostly water", + "profile_use_background_image": true, + "description": "Have GNU, Will Travel. Speaker to Computers, though the words I say are often impolite.", + "url": "http://t.co/c1YitYiUzs", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000503809944/dba3f6ccda9fe5f0bdf7f7edcea767ea_normal.png", + "profile_background_color": "022330", + "created_at": "Sat Oct 25 17:53:45 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000503809944/dba3f6ccda9fe5f0bdf7f7edcea767ea_normal.png", + "favourites_count": 1224, + "status": { + "retweet_count": 37, + "retweeted_status": { + "retweet_count": 37, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685255684582055936", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", + "type": "photo", + "indices": [ + 56, + 79 + ], + "media_url": "http://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", + "display_url": "pic.twitter.com/eEGDrqYhoM", + "id_str": "685255664604581888", + "expanded_url": "http://twitter.com/PeoplesVuePoint/status/685255684582055936/photo/1", + "id": 685255664604581888, + "url": "https://t.co/eEGDrqYhoM" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 00:24:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685255684582055936, + "text": "Great Prognostications In American Conservative History https://t.co/eEGDrqYhoM", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 37, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685554071156162560", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id_str": "685255684582055936", + "url": "https://t.co/eEGDrqYhoM", + "media_url": "http://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", + "source_user_id_str": "331317907", + "id_str": "685255664604581888", + "id": 685255664604581888, + "media_url_https": "https://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", + "type": "photo", + "indices": [ + 77, + 100 + ], + "source_status_id": 685255684582055936, + "source_user_id": 331317907, + "display_url": "pic.twitter.com/eEGDrqYhoM", + "expanded_url": "http://twitter.com/PeoplesVuePoint/status/685255684582055936/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PeoplesVuePoint", + "id_str": "331317907", + "id": 331317907, + "indices": [ + 3, + 19 + ], + "name": "Zach Beasley" + } + ] + }, + "created_at": "Fri Jan 08 20:10:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685554071156162560, + "text": "RT @PeoplesVuePoint: Great Prognostications In American Conservative History https://t.co/eEGDrqYhoM", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 16969318, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 4951, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "72935642", + "following": false, + "friends_count": 235, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/xicombd", + "url": "https://t.co/9kqeImMQWG", + "expanded_url": "http://github.com/xicombd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 326, + "location": "Lisbon \u2708 London", + "screen_name": "xicombd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Francisco Baio Dias", + "profile_use_background_image": true, + "description": "Node.js consultant at @YLDio! Sometimes makes silly games with @BraveBunnyGames", + "url": "https://t.co/9kqeImMQWG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/486593422040371200/rTQ_I4gZ_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Sep 09 19:57:50 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/486593422040371200/rTQ_I4gZ_normal.jpeg", + "favourites_count": 1607, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685584880961482752", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bravebunny.co", + "url": "https://t.co/iHPF1p8Jl4", + "expanded_url": "http://bravebunny.co", + "indices": [ + 80, + 103 + ] + }, + { + "display_url": "pic.twitter.com/Fhu9QZGclu", + "url": "https://t.co/Fhu9QZGclu", + "expanded_url": "http://twitter.com/BraveBunnyGames/status/685584880961482752/photo/1", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [ + { + "indices": [ + 104, + 112 + ], + "text": "gamedev" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:12:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685584880961482752, + "text": "We updated our website, added dome new games and prototypes! What do you think?\nhttps://t.co/iHPF1p8Jl4\n#gamedev https://t.co/Fhu9QZGclu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685585269010100224", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bravebunny.co", + "url": "https://t.co/iHPF1p8Jl4", + "expanded_url": "http://bravebunny.co", + "indices": [ + 101, + 124 + ] + }, + { + "display_url": "pic.twitter.com/Fhu9QZGclu", + "url": "https://t.co/Fhu9QZGclu", + "expanded_url": "http://twitter.com/BraveBunnyGames/status/685584880961482752/photo/1", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 125, + 133 + ], + "text": "gamedev" + } + ], + "user_mentions": [ + { + "screen_name": "BraveBunnyGames", + "id_str": "3014589334", + "id": 3014589334, + "indices": [ + 3, + 19 + ], + "name": "Brave Bunny" + } + ] + }, + "created_at": "Fri Jan 08 22:14:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685585269010100224, + "text": "RT @BraveBunnyGames: We updated our website, added dome new games and prototypes! What do you think?\nhttps://t.co/iHPF1p8Jl4\n#gamedev https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 72935642, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 595, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/72935642/1444598387", + "is_translator": false + }, + { + "time_zone": "Stockholm", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "15094025", + "following": false, + "friends_count": 943, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/matspetersson", + "url": "http://t.co/eUA2BLJQdN", + "expanded_url": "http://about.me/matspetersson", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/704081407/a2f6dea3e6284c9be6cea69517705c4e.png", + "notifications": false, + "profile_sidebar_fill_color": "587189", + "profile_link_color": "F06311", + "geo_enabled": false, + "followers_count": 219, + "location": "Sweden", + "screen_name": "entropi", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Mats Petersson", + "profile_use_background_image": false, + "description": "Kommunikat\u00f6r. Tidningsfantast. F\u00e5gelsk\u00e5dare. Naturvetarjunkie. Cyklar g\u00e4rna. Sm\u00e5l\u00e4nning. Tedrickare. Mellanchef i egen verksamhet. Kartn\u00f6rd. Bild: Lars Lerin", + "url": "http://t.co/eUA2BLJQdN", + "profile_text_color": "A39691", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/603177577897918464/KSYjfL8F_normal.jpg", + "profile_background_color": "EEEEEE", + "created_at": "Thu Jun 12 06:16:11 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "sv", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/603177577897918464/KSYjfL8F_normal.jpg", + "favourites_count": 148, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "671777548515344385", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "willworkfortattoos.com", + "url": "https://t.co/YhXE6jEFeU", + "expanded_url": "http://www.willworkfortattoos.com", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 01 19:47:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 671777548515344385, + "text": "Do you need a new logotype? Hire me, pay with a tattoo. https://t.co/YhXE6jEFeU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 15094025, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/704081407/a2f6dea3e6284c9be6cea69517705c4e.png", + "statuses_count": 1264, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15094025/1392045318", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "806210", + "following": false, + "friends_count": 1441, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "briantanaka.com", + "url": "http://t.co/bPxXcabgVT", + "expanded_url": "http://www.briantanaka.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000180789931/geQ0PE6C.png", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 694, + "location": "San Francisco Bay Area", + "screen_name": "btanaka", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 34, + "name": "Brian Tanaka", + "profile_use_background_image": true, + "description": "Stuff I use for fun and profit: Python, Vim, Git, Linux, and so on.", + "url": "http://t.co/bPxXcabgVT", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/571401186943574016/FtOYv-02_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Fri Mar 02 14:50:18 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/571401186943574016/FtOYv-02_normal.jpeg", + "favourites_count": 1, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "iluvcompsci", + "in_reply_to_user_id": 1332857102, + "in_reply_to_status_id_str": "684486982752288768", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684537950802055168", + "id": 684537950802055168, + "text": "@iluvcompsci No way!", + "in_reply_to_user_id_str": "1332857102", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "iluvcompsci", + "id_str": "1332857102", + "id": 1332857102, + "indices": [ + 0, + 12 + ], + "name": "Bri Chapman" + } + ] + }, + "created_at": "Wed Jan 06 00:52:20 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684486982752288768, + "lang": "en" + }, + "default_profile_image": false, + "id": 806210, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000180789931/geQ0PE6C.png", + "statuses_count": 4425, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/806210/1411251006", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "12524622", + "following": false, + "friends_count": 1720, + "entities": { + "description": { + "urls": [ + { + "display_url": "make8bitart.com", + "url": "https://t.co/zaBLoHykZE", + "expanded_url": "http://make8bitart.com", + "indices": [ + 97, + 120 + ] + }, + { + "display_url": "instagram.com/jenn", + "url": "https://t.co/gU8YuaYVSH", + "expanded_url": "http://instagram.com/jenn", + "indices": [ + 122, + 145 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "jennmoney.biz", + "url": "https://t.co/bxZjaPVmBS", + "expanded_url": "http://jennmoney.biz", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/454274435055230978/1Ww8jwZg.png", + "notifications": false, + "profile_sidebar_fill_color": "99CCCC", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 14497, + "location": "jersey city ", + "screen_name": "jennschiffer", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 768, + "name": "shingyVEVO", + "profile_use_background_image": true, + "description": "i am definitely most certainly unequivocally undisputedly not a cop \u2022 @bocoup, @jerseyscriptusa, https://t.co/zaBLoHykZE, https://t.co/gU8YuaYVSH", + "url": "https://t.co/bxZjaPVmBS", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683382430120685568/A9xcIOxY_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jan 22 05:42:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683382430120685568/A9xcIOxY_normal.jpg", + "favourites_count": 60491, + "status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597323829751808", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/1WRErgry8f", + "url": "https://t.co/1WRErgry8f", + "expanded_url": "http://twitter.com/jennschiffer/status/685597323829751808/photo/1", + "indices": [ + 5, + 28 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:01:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597323829751808, + "text": "same https://t.co/1WRErgry8f", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 34, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 12524622, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/454274435055230978/1Ww8jwZg.png", + "statuses_count": 57842, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12524622/1451026178", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "49820803", + "following": false, + "friends_count": 298, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/watch?v=PWmfNe\u2026", + "url": "https://t.co/YINbmSx8E9", + "expanded_url": "https://www.youtube.com/watch?v=PWmfNeLs7fA", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/444961569948966912/ND9JLEF2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F0F0F5", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 9580, + "location": "Lexically bound", + "screen_name": "aphyr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 373, + "name": "\u2200sket", + "profile_use_background_image": true, + "description": "Trophy husband of @ericajoy, purveyor of jockstrap selfies. 'Internal records show you're more offensive than @MrSLeather but better than @BoundJocks.'", + "url": "https://t.co/YINbmSx8E9", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/639508069752279040/ipgD4h36_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jun 23 00:12:37 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/639508069752279040/ipgD4h36_normal.jpg", + "favourites_count": 23507, + "status": { + "retweet_count": 75, + "retweeted_status": { + "retweet_count": 75, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685517196529922049", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 888, + "h": 499, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", + "type": "photo", + "indices": [ + 30, + 53 + ], + "media_url": "http://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", + "display_url": "pic.twitter.com/UiGZUOctyQ", + "id_str": "685517196118900736", + "expanded_url": "http://twitter.com/chrisk5000/status/685517196529922049/photo/1", + "id": 685517196118900736, + "url": "https://t.co/UiGZUOctyQ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:43:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685517196529922049, + "text": "distributed databases be like https://t.co/UiGZUOctyQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 56, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685573066873778176", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 888, + "h": 499, + "resize": "fit" + } + }, + "source_status_id_str": "685517196529922049", + "url": "https://t.co/UiGZUOctyQ", + "media_url": "http://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", + "source_user_id_str": "37232065", + "id_str": "685517196118900736", + "id": 685517196118900736, + "media_url_https": "https://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", + "type": "photo", + "indices": [ + 46, + 69 + ], + "source_status_id": 685517196529922049, + "source_user_id": 37232065, + "display_url": "pic.twitter.com/UiGZUOctyQ", + "expanded_url": "http://twitter.com/chrisk5000/status/685517196529922049/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chrisk5000", + "id_str": "37232065", + "id": 37232065, + "indices": [ + 3, + 14 + ], + "name": "chrisk5000" + } + ] + }, + "created_at": "Fri Jan 08 21:25:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685573066873778176, + "text": "RT @chrisk5000: distributed databases be like https://t.co/UiGZUOctyQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 49820803, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/444961569948966912/ND9JLEF2.jpeg", + "statuses_count": 41239, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/49820803/1443201143", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "625093", + "following": false, + "friends_count": 1921, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "beginningwithi.com", + "url": "http://t.co/243IACccPc", + "expanded_url": "http://beginningwithi.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/31522/keyb.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "FF0044", + "geo_enabled": false, + "followers_count": 2886, + "location": "Bay Area", + "screen_name": "DeirdreS", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 196, + "name": "Deirdr\u00e9 Straughan", + "profile_use_background_image": true, + "description": "People connector. Woman with opinions (all mine). Work on cloud @Ericsson. I do and tweet about technology, among other things. Had breast cancer. Over it.", + "url": "http://t.co/243IACccPc", + "profile_text_color": "000000", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/674300197103525888/4UBqHN-J_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Thu Jan 11 10:18:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674300197103525888/4UBqHN-J_normal.jpg", + "favourites_count": 533, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612725985136641", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "thenation.com/article/yes-hi\u2026", + "url": "https://t.co/isJ9BqlaFP", + "expanded_url": "http://www.thenation.com/article/yes-hillarys-a-democrat/", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:03:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612725985136641, + "text": "What\u2019s wrong with wanting to see a highly qualified liberal-feminist woman in the most powerful job in the world? https://t.co/isJ9BqlaFP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "iOS" + }, + "default_profile_image": false, + "id": 625093, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/31522/keyb.jpg", + "statuses_count": 42395, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/625093/1398656840", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "6083342", + "following": false, + "friends_count": 3073, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tonyarcieri.com", + "url": "https://t.co/BPlVYoJhSX", + "expanded_url": "http://tonyarcieri.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623707235345145857/RQTCdVn0.jpg", + "notifications": false, + "profile_sidebar_fill_color": "EDEDED", + "profile_link_color": "373E75", + "geo_enabled": true, + "followers_count": 7457, + "location": "San Francisco, CA", + "screen_name": "bascule", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 390, + "name": "Tony Arcieri", + "profile_use_background_image": true, + "description": "@SquareEng CyberSecurity Engineer. Tweets about cybercrypto, cyberauthority systems, and cyber. Creator of @celluloidrb and @TheCryptosphere. Cyber.", + "url": "https://t.co/BPlVYoJhSX", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/450061818606522368/pjDTHFB9_normal.jpeg", + "profile_background_color": "373E75", + "created_at": "Wed May 16 08:32:42 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/450061818606522368/pjDTHFB9_normal.jpeg", + "favourites_count": 8733, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609915646226433", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/tonyvernall/st\u2026", + "url": "https://t.co/P8li8PI6WD", + "expanded_url": "https://twitter.com/tonyvernall/status/685584647267442688", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:51:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609915646226433, + "text": "Maybe if we take two terrible things and combine them the terrible will cancel out https://t.co/P8li8PI6WD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 6083342, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623707235345145857/RQTCdVn0.jpg", + "statuses_count": 39861, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6083342/1398287020", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "13350372", + "following": false, + "friends_count": 583, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jedgar.co", + "url": "https://t.co/Yh90tJ832s", + "expanded_url": "http://jedgar.co", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000100660867/c0f46373de96d3498a580deb86afade8.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FCFCFC", + "profile_link_color": "535F85", + "geo_enabled": true, + "followers_count": 17115, + "location": "Manhattan, NY", + "screen_name": "jedgar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 303, + "name": "John Edgar", + "profile_use_background_image": true, + "description": "child of the www, lover of the arts, traveler of the world, solver of the problems. politics, sailing, startup, feminist, weird. Building @staehere ecology+tech", + "url": "https://t.co/Yh90tJ832s", + "profile_text_color": "A1A1A1", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638396887133913088/oNeUBUxj_normal.jpg", + "profile_background_color": "936C6C", + "created_at": "Mon Feb 11 15:44:37 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638396887133913088/oNeUBUxj_normal.jpg", + "favourites_count": 9281, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612208789811201", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 605, + "resize": "fit" + }, + "medium": { + "w": 575, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 575, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPIqsuUoAIWrKR.jpg", + "type": "photo", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CYPIqsuUoAIWrKR.jpg", + "display_url": "pic.twitter.com/lTDyzwSECr", + "id_str": "685612204175958018", + "expanded_url": "http://twitter.com/jedgar/status/685612208789811201/photo/1", + "id": 685612204175958018, + "url": "https://t.co/lTDyzwSECr" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:01:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612208789811201, + "text": "https://t.co/lTDyzwSECr", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 13350372, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000100660867/c0f46373de96d3498a580deb86afade8.jpeg", + "statuses_count": 31400, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13350372/1443731819", + "is_translator": false + }, + { + "time_zone": "Europe/Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "2426271", + "following": false, + "friends_count": 387, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ralphm.net", + "url": "http://t.co/Fa3sxfYE4J", + "expanded_url": "http://ralphm.net/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 563, + "location": "Eindhoven", + "screen_name": "ralphm", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Ralph Meijer", + "profile_use_background_image": true, + "description": "Hacker and drummer. Real-time, federated social web. XMPP Standards Foundation Board member, publish-subscribe, Python, Twisted, Wokkel. @mail_gun / @rackspace", + "url": "http://t.co/Fa3sxfYE4J", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459006420390649856/eMX8uh4q_normal.png", + "profile_background_color": "9AE4E8", + "created_at": "Tue Mar 27 07:42:01 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459006420390649856/eMX8uh4q_normal.png", + "favourites_count": 1178, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "hynek", + "in_reply_to_user_id": 14914177, + "in_reply_to_status_id_str": "685041111572869120", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685066377678434304", + "id": 685066377678434304, + "text": "@hynek and/or make their XMPP support first class citizen /cc @SinaBahram", + "in_reply_to_user_id_str": "14914177", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "hynek", + "id_str": "14914177", + "id": 14914177, + "indices": [ + 0, + 6 + ], + "name": "Hynek Schlawack" + }, + { + "screen_name": "SinaBahram", + "id_str": "114569401", + "id": 114569401, + "indices": [ + 62, + 73 + ], + "name": "Sina Bahram" + } + ] + }, + "created_at": "Thu Jan 07 11:52:07 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685041111572869120, + "lang": "en" + }, + "default_profile_image": false, + "id": 2426271, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2732, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2426271/1358272747", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7751912", + "following": false, + "friends_count": 2002, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jhigley.com", + "url": "https://t.co/CA3K2xy3fr", + "expanded_url": "http://jhigley.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "94D487", + "geo_enabled": false, + "followers_count": 746, + "location": "Richland, WA", + "screen_name": "higley", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 55, + "name": "Hooligan", + "profile_use_background_image": false, + "description": "I'm a lesser known character from the Internet. \n\nSwedish Fish are my spirit animal.", + "url": "https://t.co/CA3K2xy3fr", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685137678946308096/aZzkDSOa_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Jul 27 03:29:39 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685137678946308096/aZzkDSOa_normal.jpg", + "favourites_count": 4082, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684845096102043648", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "thestranger.com/blogs/slog/201\u2026", + "url": "https://t.co/GHQ5j9vZzX", + "expanded_url": "http://www.thestranger.com/blogs/slog/2016/01/06/23350480/my-dad-worked-at-the-malheur-national-wildlife-refuge-and-he-knows-what-happens-when-ranchers-get-their-way", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 21:12:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684845096102043648, + "text": "My Dad Worked at the Malheur National Wildlife Refuge, and He Knows What Happens When Ranchers Get Their Way https://t.co/GHQ5j9vZzX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684848495413432320", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "thestranger.com/blogs/slog/201\u2026", + "url": "https://t.co/GHQ5j9vZzX", + "expanded_url": "http://www.thestranger.com/blogs/slog/2016/01/06/23350480/my-dad-worked-at-the-malheur-national-wildlife-refuge-and-he-knows-what-happens-when-ranchers-get-their-way", + "indices": [ + 121, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ahecht", + "id_str": "4543101", + "id": 4543101, + "indices": [ + 3, + 10 + ], + "name": "Anthony Hecht" + } + ] + }, + "created_at": "Wed Jan 06 21:26:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684848495413432320, + "text": "RT @ahecht: My Dad Worked at the Malheur National Wildlife Refuge, and He Knows What Happens When Ranchers Get Their Way https://t.co/GHQ5j\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 7751912, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 8292, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7751912/1402521594", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1568", + "following": false, + "friends_count": 588, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "adambrault.com", + "url": "http://t.co/u1D1iCKwhH", + "expanded_url": "http://adambrault.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/6986352/backdrop3.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FAFAFA", + "profile_link_color": "09ACED", + "geo_enabled": false, + "followers_count": 3068, + "location": "EccenTriCities + The Internet", + "screen_name": "adambrault", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 202, + "name": "adam", + "profile_use_background_image": false, + "description": "@andyet founder. @andyetconf conspirator. @triconf instigator. @tcpublicmarket rouser. Collaborator in @fusespc @usetalky @liftsecurity. Terrific firestarter.", + "url": "http://t.co/u1D1iCKwhH", + "profile_text_color": "222222", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629171593814544384/2jp9uAYU_normal.jpg", + "profile_background_color": "333333", + "created_at": "Sun Jul 16 21:01:39 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "333333", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629171593814544384/2jp9uAYU_normal.jpg", + "favourites_count": 12056, + "status": { + "retweet_count": 112, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 112, + "truncated": false, + "retweeted": false, + "id_str": "684083104777109504", + "id": 684083104777109504, + "text": "\"You have to be one or the other.\"\n\"I don't have to. I'm both.\"\n\"That isn't even a thing!\"\n\"Is too! It's called 'wave-particle duality'.\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 18:44:56 +0000 2016", + "source": "Hootsuite", + "favorite_count": 120, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "684085968073166848", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MicroSFF", + "id_str": "1376608884", + "id": 1376608884, + "indices": [ + 3, + 12 + ], + "name": "Micro SF/F Fiction" + } + ] + }, + "created_at": "Mon Jan 04 18:56:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684085968073166848, + "text": "RT @MicroSFF: \"You have to be one or the other.\"\n\"I don't have to. I'm both.\"\n\"That isn't even a thing!\"\n\"Is too! It's called 'wave-particl\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 1568, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/6986352/backdrop3.jpg", + "statuses_count": 19795, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1568/1438841667", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16535661", + "following": false, + "friends_count": 874, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "robotgrrl.com", + "url": "http://t.co/hHXlVUBA1z", + "expanded_url": "http://robotgrrl.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000172757239/odPrjp9g.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "6EFA19", + "profile_link_color": "7700C7", + "geo_enabled": true, + "followers_count": 6461, + "location": "Canada", + "screen_name": "RobotGrrl", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 324, + "name": "RobotGrrl \ue12b", + "profile_use_background_image": true, + "description": "Studio[Y] fellow @MaRSDD #StudioY - Fab Academy student - Intel Emerging Young Entrepreneur - Maker of RoboBrrd - Gold medal @ Intl RoboGames - Mac & iOS dev", + "url": "http://t.co/hHXlVUBA1z", + "profile_text_color": "4A3D30", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3634861506/af661544e8a2ef98602dffafb0c6918d_normal.jpeg", + "profile_background_color": "FC6500", + "created_at": "Tue Sep 30 21:58:11 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3634861506/af661544e8a2ef98602dffafb0c6918d_normal.jpeg", + "favourites_count": 4662, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684937097682096128", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 258, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 779, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 456, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYFiqOlUMAAUZvJ.jpg", + "type": "photo", + "indices": [ + 108, + 131 + ], + "media_url": "http://pbs.twimg.com/media/CYFiqOlUMAAUZvJ.jpg", + "display_url": "pic.twitter.com/jMpFwoMrDO", + "id_str": "684937095945662464", + "expanded_url": "http://twitter.com/RobotGrrl/status/684937097682096128/photo/1", + "id": 684937095945662464, + "url": "https://t.co/jMpFwoMrDO" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 03:18:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684937097682096128, + "text": "The ROBOT PARTY will be Saturday at 7PM ET! Share your bots w/ other makers \u2014 reply if you want to join in! https://t.co/jMpFwoMrDO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16535661, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000172757239/odPrjp9g.jpeg", + "statuses_count": 10559, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16535661/1448405813", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "19090770", + "following": false, + "friends_count": 338, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kylewm.com", + "url": "https://t.co/zxQkhDten5", + "expanded_url": "https://kylewm.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 186, + "location": "Burlingame, CA", + "screen_name": "kylewmahan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Kyle Mahan", + "profile_use_background_image": true, + "description": "For every coin there is an equal and opposite bird.", + "url": "https://t.co/zxQkhDten5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641457114381074432/vUdKopH8_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Fri Jan 16 22:51:18 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641457114381074432/vUdKopH8_normal.jpg", + "favourites_count": 2027, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685191733919875072", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 300, + "h": 300, + "resize": "fit" + }, + "medium": { + "w": 300, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 300, + "h": 300, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJKQGnU0AAV4ct.jpg", + "type": "photo", + "indices": [ + 29, + 52 + ], + "media_url": "http://pbs.twimg.com/media/CYJKQGnU0AAV4ct.jpg", + "display_url": "pic.twitter.com/f9B0nAKCNP", + "id_str": "685191733827653632", + "expanded_url": "http://twitter.com/kylewmahan/status/685191733919875072/photo/1", + "id": 685191733827653632, + "url": "https://t.co/f9B0nAKCNP" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 20:10:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685191733919875072, + "text": "Larry the Cucumber: no lips. https://t.co/f9B0nAKCNP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "groomsman-kylewm.com" + }, + "default_profile_image": false, + "id": 19090770, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 5712, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2809321", + "following": false, + "friends_count": 732, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "funk.co.uk/jokethief", + "url": "http://t.co/CTXEScpW42", + "expanded_url": "http://funk.co.uk/jokethief", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/536532/double_bow.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 1366, + "location": "London", + "screen_name": "Deek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 75, + "name": "Deek Deekster", + "profile_use_background_image": true, + "description": "The imagination is not a State: it is the Human existence itself. \u2013 William Blake.", + "url": "http://t.co/CTXEScpW42", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/81711236/funkbaby150_normal.jpg", + "profile_background_color": "7A684E", + "created_at": "Thu Mar 29 08:15:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/81711236/funkbaby150_normal.jpg", + "favourites_count": 1066, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "681769694492233728", + "id": 681769694492233728, + "text": "described", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 29 09:32:16 +0000 2015", + "source": "TweetCaster for iOS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2809321, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/536532/double_bow.jpg", + "statuses_count": 26149, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2809321/1347980689", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2149850018", + "following": false, + "friends_count": 1349, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bret.io", + "url": "https://t.co/nwoGndmEhz", + "expanded_url": "http://bret.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000099971838/42731531dc2f28d52cc57df7848a43ee.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3C3C3C", + "geo_enabled": true, + "followers_count": 381, + "location": "Portland, OR", + "screen_name": "bretolius", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 38, + "name": "Bret Comnes", + "profile_use_background_image": true, + "description": "super serious business twiter", + "url": "https://t.co/nwoGndmEhz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/473135457975283712/41oMFXBB_normal.jpeg", + "profile_background_color": "F5F5F5", + "created_at": "Tue Oct 22 22:57:49 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/473135457975283712/41oMFXBB_normal.jpeg", + "favourites_count": 2024, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "oneshotchch", + "in_reply_to_user_id": 2975656664, + "in_reply_to_status_id_str": "685588073128804354", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685588514927316992", + "id": 685588514927316992, + "text": "@oneshotchch That would be super cool to get out though! TY", + "in_reply_to_user_id_str": "2975656664", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "oneshotchch", + "id_str": "2975656664", + "id": 2975656664, + "indices": [ + 0, + 12 + ], + "name": "Oneshot Christchurch" + } + ] + }, + "created_at": "Fri Jan 08 22:26:54 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685588073128804354, + "lang": "en" + }, + "default_profile_image": false, + "id": 2149850018, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000099971838/42731531dc2f28d52cc57df7848a43ee.jpeg", + "statuses_count": 748, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2149850018/1401817534", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2407626138", + "following": false, + "friends_count": 13, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rascul.io", + "url": "https://t.co/fnyTNoPEUT", + "expanded_url": "https://rascul.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 11, + "location": "Pennsylvania", + "screen_name": "rascul3", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Ray Schulz", + "profile_use_background_image": true, + "description": "", + "url": "https://t.co/fnyTNoPEUT", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/454812691069038592/2nHc2cKi_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Sun Mar 23 19:22:55 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/454812691069038592/2nHc2cKi_normal.jpeg", + "favourites_count": 0, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "664630993123315712", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "i.destroy.tokyo/Rascul/", + "url": "https://t.co/1PIwZL1Oiy", + "expanded_url": "https://i.destroy.tokyo/Rascul/", + "indices": [ + 11, + 34 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Nov 12 02:29:11 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "sv", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 664630993123315712, + "text": "lrn2rascul https://t.co/1PIwZL1Oiy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Known Twitter Syndication" + }, + "default_profile_image": false, + "id": 2407626138, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 10, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2407626138/1397271246", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14256966", + "following": false, + "friends_count": 402, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "robjameskelley.com", + "url": "http://t.co/qLikakmjjU", + "expanded_url": "http://robjameskelley.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5124586/b1c459dda3582d06e52bd429a54af160.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 314, + "location": "", + "screen_name": "pyroonaswing", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "pyroonaswing", + "profile_use_background_image": true, + "description": "photographer. tech enthusiast. dancing superstar.", + "url": "http://t.co/qLikakmjjU", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000716794365/86b1e457c939d6d24f1c290d89031566_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Mar 30 07:58:16 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000716794365/86b1e457c939d6d24f1c290d89031566_normal.jpeg", + "favourites_count": 444, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "El_Doctor88", + "in_reply_to_user_id": 31355945, + "in_reply_to_status_id_str": "678282365224026112", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "678282893815324672", + "id": 678282893815324672, + "text": "@El_Doctor88 no way?! I googled nes gameshark & couldn't figure out why I couldn't find what I remembered using till I saw genie. Classic", + "in_reply_to_user_id_str": "31355945", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "El_Doctor88", + "id_str": "31355945", + "id": 31355945, + "indices": [ + 0, + 12 + ], + "name": "Patrick P." + } + ] + }, + "created_at": "Sat Dec 19 18:36:58 +0000 2015", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 678282365224026112, + "lang": "en" + }, + "default_profile_image": false, + "id": 14256966, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5124586/b1c459dda3582d06e52bd429a54af160.jpg", + "statuses_count": 7322, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14447132", + "following": false, + "friends_count": 955, + "entities": { + "description": { + "urls": [ + { + "display_url": "oauth.net", + "url": "http://t.co/zBgRc3GHvO", + "expanded_url": "http://oauth.net", + "indices": [ + 75, + 97 + ] + }, + { + "display_url": "micropub.net", + "url": "http://t.co/yDBCPnanjA", + "expanded_url": "http://micropub.net", + "indices": [ + 111, + 133 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "aaronparecki.com", + "url": "https://t.co/sUmpTDQA8l", + "expanded_url": "http://aaronparecki.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/185835062/4786064324_b7049fbec8_b.jpg", + "notifications": false, + "profile_sidebar_fill_color": "94C8FF", + "profile_link_color": "FF5900", + "geo_enabled": true, + "followers_count": 3093, + "location": "Portland, OR", + "screen_name": "aaronpk", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 316, + "name": "Aaron Parecki", + "profile_use_background_image": true, + "description": "CTO @EsriPDX R&D Center \u2022 Cofounder of #indieweb/@indiewebcamp \u2022 Maintains http://t.co/zBgRc3GHvO \u2022 Creator of http://t.co/yDBCPnanjA", + "url": "https://t.co/sUmpTDQA8l", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3657148842/934fb225b84b8fd3effe5ab95bb18005_normal.jpeg", + "profile_background_color": "7A9AAF", + "created_at": "Sat Apr 19 22:38:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3657148842/934fb225b84b8fd3effe5ab95bb18005_normal.jpeg", + "favourites_count": 3597, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 296398358, + "possibly_sensitive": false, + "id_str": "685611029493985281", + "geo": { + "coordinates": [ + 45.521893, + -122.638494 + ], + "type": "Point" + }, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "large": { + "w": 960, + "h": 640, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPHmQnUwAAXsz5.jpg", + "type": "photo", + "indices": [ + 40, + 63 + ], + "media_url": "http://pbs.twimg.com/media/CYPHmQnUwAAXsz5.jpg", + "display_url": "pic.twitter.com/GH7oQXKBwI", + "id_str": "685611028399308800", + "expanded_url": "http://twitter.com/aaronpk/status/685611029493985281/photo/1", + "id": 685611028399308800, + "url": "https://t.co/GH7oQXKBwI" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lucashammill", + "id_str": "296398358", + "id": 296398358, + "indices": [ + 0, + 13 + ], + "name": "Luke Hammill" + } + ] + }, + "created_at": "Fri Jan 08 23:56:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "296398358", + "place": { + "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.7900653, + 45.421863 + ], + [ + -122.471751, + 45.421863 + ], + [ + -122.471751, + 45.6509405 + ], + [ + -122.7900653, + 45.6509405 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Portland, OR", + "id": "ac88a4f17a51c7fc", + "name": "Portland" + }, + "in_reply_to_screen_name": "lucashammill", + "in_reply_to_status_id_str": "684757252633280513", + "truncated": false, + "id": 685611029493985281, + "text": "@lucashammill It's all in the lighting. https://t.co/GH7oQXKBwI", + "coordinates": { + "coordinates": [ + -122.638494, + 45.521893 + ], + "type": "Point" + }, + "in_reply_to_status_id": 684757252633280513, + "favorite_count": 0, + "contributors": null, + "source": "Bridgy" + }, + "default_profile_image": false, + "id": 14447132, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/185835062/4786064324_b7049fbec8_b.jpg", + "statuses_count": 6234, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14447132/1398201184", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13860742", + "following": false, + "friends_count": 4823, + "entities": { + "description": { + "urls": [ + { + "display_url": "calmtechnology.com", + "url": "http://t.co/bOKIYApk0t", + "expanded_url": "http://calmtechnology.com", + "indices": [ + 101, + 123 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "caseorganic.com", + "url": "http://t.co/IMSCSEyFQw", + "expanded_url": "http://caseorganic.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/220733289/xc8c5ed789f413b46fc32145db5e2cb1.png", + "notifications": false, + "profile_sidebar_fill_color": "C9C9C9", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 20823, + "location": "Portland, OR", + "screen_name": "caseorganic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1943, + "name": "Amber Case", + "profile_use_background_image": false, + "description": "Calm technology, cyborgs, future of location and mobile. Working on @mycompassapp and @calmtechbook. http://t.co/bOKIYApk0t Formerly founder of @geoloqi.", + "url": "http://t.co/IMSCSEyFQw", + "profile_text_color": "1C1F23", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/577987854745239552/yquRHGzt_normal.jpeg", + "profile_background_color": "252525", + "created_at": "Sat Feb 23 10:43:27 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BFBFBF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/577987854745239552/yquRHGzt_normal.jpeg", + "favourites_count": 3414, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685578323016073216", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOp2YgUMAATMHh.jpg", + "type": "photo", + "indices": [ + 109, + 132 + ], + "media_url": "http://pbs.twimg.com/media/CYOp2YgUMAATMHh.jpg", + "display_url": "pic.twitter.com/rcup9P0sMt", + "id_str": "685578320046469120", + "expanded_url": "http://twitter.com/caseorganic/status/685578323016073216/photo/1", + "id": 685578320046469120, + "url": "https://t.co/rcup9P0sMt" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "amazon.com/Calm-Technolog\u2026", + "url": "https://t.co/q1BFmTG2yv", + "expanded_url": "http://www.amazon.com/Calm-Technology-Principles-Patterns-Non-Intrusive/dp/1491925884", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [ + { + "indices": [ + 99, + 108 + ], + "text": "calmtech" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:46:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685578323016073216, + "text": "Was just sent this picture of the youngest reader of Calm Technology yet! https://t.co/q1BFmTG2yv #calmtech https://t.co/rcup9P0sMt", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 13860742, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/220733289/xc8c5ed789f413b46fc32145db5e2cb1.png", + "statuses_count": 25851, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13860742/1426638493", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "783092", + "following": false, + "friends_count": 3667, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "werd.io", + "url": "http://t.co/n2griYFTdR", + "expanded_url": "http://werd.io/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/584714231/ncbqjrotq7pwip9v0110.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "D4E6F1", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 5071, + "location": "San Francisco Bay Area", + "screen_name": "benwerd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 367, + "name": "Ben Werdm\u00fcller", + "profile_use_background_image": true, + "description": "CEO, @withknown. Previously @elgg. Humanist technologist. Equality and adventures.", + "url": "http://t.co/n2griYFTdR", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681986174966104064/t3BubQKk_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Feb 20 13:34:20 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681986174966104064/t3BubQKk_normal.jpg", + "favourites_count": 11271, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682834736452997122", + "id": 682834736452997122, + "text": "Happy new year!!! Best wishes for a wonderful 2016 to all. \n\n(Happy hangover, UK.)", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 08:04:22 +0000 2016", + "source": "werd.io", + "favorite_count": 7, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 783092, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/584714231/ncbqjrotq7pwip9v0110.jpeg", + "statuses_count": 33964, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783092/1440331990", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "11628", + "following": false, + "friends_count": 1270, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tantek.com", + "url": "http://t.co/krTnc8jAFk", + "expanded_url": "http://tantek.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 71425, + "location": "Pacific Time Zone", + "screen_name": "t", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1923, + "name": "Tantek \u00c7elik", + "profile_use_background_image": true, + "description": "Cofounder: #indieweb #barcamp @IndieWebCamp @microformats.\nWorking @Mozilla: @CSSWG @W3CAB.\nMaking: @Falcon @CASSISjs.\n#fightfortheusers & aspiring runner.", + "url": "http://t.co/krTnc8jAFk", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Nov 07 02:26:19 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH_normal.jpeg", + "favourites_count": 0, + "status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685519566106066944", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 640, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYN0aboUkAA-r2W.jpg", + "type": "photo", + "indices": [ + 107, + 130 + ], + "media_url": "http://pbs.twimg.com/media/CYN0aboUkAA-r2W.jpg", + "display_url": "pic.twitter.com/7cFTaaoweb", + "id_str": "685519565732745216", + "expanded_url": "http://twitter.com/t/status/685519566106066944/photo/1", + "id": 685519565732745216, + "url": "https://t.co/7cFTaaoweb" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "tantek.com/2016/008/t1/we\u2026", + "url": "https://t.co/T4aAFoQatR", + "expanded_url": "http://tantek.com/2016/008/t1/welcome-bladerunner-replicant-roy-batty", + "indices": [ + 82, + 105 + ] + } + ], + "hashtags": [ + { + "indices": [ + 36, + 48 + ], + "text": "BladeRunner" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:52:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685519566106066944, + "text": "2016-01-08: Welcome to the world of #BladeRunner\nToday is Replicant Roy Batty\u2019s\u2026 (https://t.co/T4aAFoQatR) https://t.co/7cFTaaoweb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 11, + "contributors": null, + "source": "Bridgy" + }, + "default_profile_image": false, + "id": 11628, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8088, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14788846", + "following": false, + "friends_count": 348, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 271, + "location": "Oregon", + "screen_name": "KWierso", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "KWierso", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/620515026571390976/FLF0gwV1_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu May 15 17:21:03 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/620515026571390976/FLF0gwV1_normal.jpg", + "favourites_count": 20079, + "status": { + "retweet_count": 20, + "retweeted_status": { + "retweet_count": 20, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685599353013051393", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/thehill/status\u2026", + "url": "https://t.co/QszM8bbJ5m", + "expanded_url": "https://twitter.com/thehill/status/685508541151625216", + "indices": [ + 15, + 38 + ] + } + ], + "hashtags": [ + { + "indices": [ + 7, + 14 + ], + "text": "choice" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:09:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685599353013051393, + "text": "Boosh. #choice https://t.co/QszM8bbJ5m", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 84, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685606718160502784", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/thehill/status\u2026", + "url": "https://t.co/QszM8bbJ5m", + "expanded_url": "https://twitter.com/thehill/status/685508541151625216", + "indices": [ + 31, + 54 + ] + } + ], + "hashtags": [ + { + "indices": [ + 23, + 30 + ], + "text": "choice" + } + ], + "user_mentions": [ + { + "screen_name": "aishatyler", + "id_str": "18125335", + "id": 18125335, + "indices": [ + 3, + 14 + ], + "name": "Aisha Tyler" + } + ] + }, + "created_at": "Fri Jan 08 23:39:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685606718160502784, + "text": "RT @aishatyler: Boosh. #choice https://t.co/QszM8bbJ5m", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14788846, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10813, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2319611", + "following": false, + "friends_count": 761, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "shaver.off.net/diary/", + "url": "http://t.co/yVLagrSeto", + "expanded_url": "http://shaver.off.net/diary/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "1B43D4", + "geo_enabled": true, + "followers_count": 4949, + "location": "Menlo Park", + "screen_name": "shaver", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 279, + "name": "Mike Shaver", + "profile_use_background_image": false, + "description": "I've probably made 10 of the next 6 mistakes you'll make. WEBFBMOZCDNYYZMPKDADHACKOPENBP2TRUST", + "url": "http://t.co/yVLagrSeto", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1168257928/shaver-headshot-profile_normal.jpg", + "profile_background_color": "352726", + "created_at": "Mon Mar 26 16:27:55 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1168257928/shaver-headshot-profile_normal.jpg", + "favourites_count": 379, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "girltuesday", + "in_reply_to_user_id": 16833482, + "in_reply_to_status_id_str": "685599118815834112", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685599707276509184", + "id": 685599707276509184, + "text": "@girltuesday mfbt", + "in_reply_to_user_id_str": "16833482", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "girltuesday", + "id_str": "16833482", + "id": 16833482, + "indices": [ + 0, + 12 + ], + "name": "mko'g" + } + ] + }, + "created_at": "Fri Jan 08 23:11:22 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685599118815834112, + "lang": "en" + }, + "default_profile_image": false, + "id": 2319611, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 24763, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15859076", + "following": false, + "friends_count": 134, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "escapewindow.dreamwidth.org", + "url": "http://t.co/lg3cnMaIov", + "expanded_url": "http://escapewindow.dreamwidth.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 202, + "location": "San Francisco", + "screen_name": "escapewindow", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "aki", + "profile_use_background_image": true, + "description": "geek. writer. amateur photographer. musician: escape(window) and slave unit.", + "url": "http://t.co/lg3cnMaIov", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/510134493823266818/4K3DRvQY_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Fri Aug 15 02:48:12 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/510134493823266818/4K3DRvQY_normal.jpeg", + "favourites_count": 3011, + "status": { + "retweet_count": 109, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 109, + "truncated": false, + "retweeted": false, + "id_str": "685445889750507522", + "id": 685445889750507522, + "text": "Write as often as possible, not with the idea at once of getting into print, but as if you were learning an instrument.\nJ. B. PRIESTLEY", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 13:00:09 +0000 2016", + "source": "TweetDeck", + "favorite_count": 195, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685521999351791616", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AdviceToWriters", + "id_str": "44949890", + "id": 44949890, + "indices": [ + 3, + 19 + ], + "name": "Jon Winokur" + } + ] + }, + "created_at": "Fri Jan 08 18:02:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685521999351791616, + "text": "RT @AdviceToWriters: Write as often as possible, not with the idea at once of getting into print, but as if you were learning an instrument\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Echofon" + }, + "default_profile_image": false, + "id": 15859076, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 2748, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15859076/1396977715", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "9973032", + "following": false, + "friends_count": 484, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mozilla.org/firefox", + "url": "https://t.co/uiLRlFZnpI", + "expanded_url": "http://mozilla.org/firefox", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 2020, + "location": "Toronto", + "screen_name": "madhava", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 175, + "name": "madhava", + "profile_use_background_image": true, + "description": "Director, Firefox User Experience at Mozilla. Canada Fancy.", + "url": "https://t.co/uiLRlFZnpI", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629776260261134336/TLVUYGfu_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Mon Nov 05 17:45:30 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629776260261134336/TLVUYGfu_normal.jpg", + "favourites_count": 4487, + "status": { + "retweet_count": 40, + "retweeted_status": { + "retweet_count": 40, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685550447717789696", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/briankesinger/", + "url": "https://t.co/fMDwiiT2kx", + "expanded_url": "https://www.instagram.com/briankesinger/", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:55:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685550447717789696, + "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 30, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685555557168709632", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/briankesinger/", + "url": "https://t.co/fMDwiiT2kx", + "expanded_url": "https://www.instagram.com/briankesinger/", + "indices": [ + 52, + 75 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rands", + "id_str": "30923", + "id": 30923, + "indices": [ + 3, + 9 + ], + "name": "rands" + } + ] + }, + "created_at": "Fri Jan 08 20:15:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685555557168709632, + "text": "RT @rands: Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 9973032, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 10135, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9973032/1450396803", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15675252", + "following": false, + "friends_count": 262, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.seanmartell.com", + "url": "https://t.co/viPaZogXpT", + "expanded_url": "http://blog.seanmartell.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000092477482/01936932ffe31782326abc8c26c7ace9.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "171717", + "profile_link_color": "944B3D", + "geo_enabled": false, + "followers_count": 2263, + "location": "North of the Wall", + "screen_name": "mart3ll", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 145, + "name": "Sean Martell", + "profile_use_background_image": true, + "description": "Creative Lead at Mozilla, transmogrifier of vectors, animator of GIFs, CSS eyebrow waggler, ketchup chip expert, lover of thick cut bacon.", + "url": "https://t.co/viPaZogXpT", + "profile_text_color": "919191", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/477427176539578368/ZeOhlO9T_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Jul 31 14:38:00 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477427176539578368/ZeOhlO9T_normal.png", + "favourites_count": 1362, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "sireric", + "in_reply_to_user_id": 17545176, + "in_reply_to_status_id_str": "685562118611992576", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685570086434902016", + "id": 685570086434902016, + "text": "@sireric @madhava approved. I have some brand work you can do for me if you'd like.", + "in_reply_to_user_id_str": "17545176", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sireric", + "id_str": "17545176", + "id": 17545176, + "indices": [ + 0, + 8 + ], + "name": "Eric Petitt" + }, + { + "screen_name": "madhava", + "id_str": "9973032", + "id": 9973032, + "indices": [ + 9, + 17 + ], + "name": "madhava" + } + ] + }, + "created_at": "Fri Jan 08 21:13:40 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685562118611992576, + "lang": "en" + }, + "default_profile_image": false, + "id": 15675252, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000092477482/01936932ffe31782326abc8c26c7ace9.jpeg", + "statuses_count": 14036, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15675252/1398266038", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14174812", + "following": false, + "friends_count": 226, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.vlad1.com", + "url": "http://t.co/ri1ytBN8a5", + "expanded_url": "http://blog.vlad1.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 2032, + "location": "Mountain View, CA", + "screen_name": "vvuk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 128, + "name": "Vlad Vukicevic", + "profile_use_background_image": true, + "description": "Graphics, JS, Gaming director at Mozilla. WebGL firestarter. Photographer. Owner of a pile of unfinished personal projects.", + "url": "http://t.co/ri1ytBN8a5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1078510864/DSC_5553-square-small_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Mar 19 05:02:07 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1078510864/DSC_5553-square-small_normal.jpg", + "favourites_count": 190, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "tumblrunning", + "in_reply_to_user_id": 942956258, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "658405478750359552", + "id": 658405478750359552, + "text": "@tumblrunning heya, sent an email to the email address on the play store -- not sure if you check that any more! If not shoot me a DM :)", + "in_reply_to_user_id_str": "942956258", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tumblrunning", + "id_str": "942956258", + "id": 942956258, + "indices": [ + 0, + 13 + ], + "name": "Tumblrunning" + } + ] + }, + "created_at": "Sun Oct 25 22:11:13 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14174812, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3065, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6140482", + "following": false, + "friends_count": 654, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.johnath.com", + "url": "https://t.co/9GW7UvMgsi", + "expanded_url": "http://blog.johnath.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000174656091/1ku5OylQ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFF99", + "profile_link_color": "038543", + "geo_enabled": false, + "followers_count": 2997, + "location": "Hand Crafted in Toronto", + "screen_name": "johnath", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 172, + "name": "J Nightingale", + "profile_use_background_image": true, + "description": "Tech, Leadership, Photog, Food, Hippy, Dad. The unimaginable positive power of the global internet. CPO @Hubba. Board @creativecommons. Former Mr. @Firefox.", + "url": "https://t.co/9GW7UvMgsi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631207154247057408/LEonY-0T_normal.jpg", + "profile_background_color": "CAE8E3", + "created_at": "Fri May 18 15:37:44 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631207154247057408/LEonY-0T_normal.jpg", + "favourites_count": 10019, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685595083639504896", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", + "type": "photo", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", + "display_url": "pic.twitter.com/Z1RiD9kKvw", + "id_str": "685595078434406400", + "expanded_url": "http://twitter.com/shappy/status/685595083639504896/photo/1", + "id": 685595078434406400, + "url": "https://t.co/Z1RiD9kKvw" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:53:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685595083639504896, + "text": "https://t.co/Z1RiD9kKvw", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597843860529152", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "685595083639504896", + "url": "https://t.co/Z1RiD9kKvw", + "media_url": "http://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", + "source_user_id_str": "5356872", + "id_str": "685595078434406400", + "id": 685595078434406400, + "media_url_https": "https://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", + "type": "photo", + "indices": [ + 12, + 35 + ], + "source_status_id": 685595083639504896, + "source_user_id": 5356872, + "display_url": "pic.twitter.com/Z1RiD9kKvw", + "expanded_url": "http://twitter.com/shappy/status/685595083639504896/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "shappy", + "id_str": "5356872", + "id": 5356872, + "indices": [ + 3, + 10 + ], + "name": "Melissa Nightingale" + } + ] + }, + "created_at": "Fri Jan 08 23:03:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597843860529152, + "text": "RT @shappy: https://t.co/Z1RiD9kKvw", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 6140482, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000174656091/1ku5OylQ.jpeg", + "statuses_count": 5754, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6140482/1353472261", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "59680997", + "following": false, + "friends_count": 125, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 78, + "location": "", + "screen_name": "hwine", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Hal Wine", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459309975555162112/-htFG3uQ_normal.jpeg", + "profile_background_color": "BADFCD", + "created_at": "Fri Jul 24 03:43:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F2E195", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459309975555162112/-htFG3uQ_normal.jpeg", + "favourites_count": 76, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684144421068115969", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "danluu.com/wat/", + "url": "https://t.co/TgvNOle7nL", + "expanded_url": "http://danluu.com/wat/", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 22:48:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684144421068115969, + "text": "Nice reminder of danger of accepting status quo: https://t.co/TgvNOle7nL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "OS X" + }, + "default_profile_image": false, + "id": 59680997, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "statuses_count": 956, + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "15645136", + "following": false, + "friends_count": 138, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000165777761/UceRm6vD.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 112, + "location": "Toronto, Canada", + "screen_name": "railaliiev", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Rail Aliiev", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1277181474/rail_river2_normal.jpg", + "profile_background_color": "131516", + "created_at": "Tue Jul 29 12:08:00 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1277181474/rail_river2_normal.jpg", + "favourites_count": 503, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "johnath", + "in_reply_to_user_id": 6140482, + "in_reply_to_status_id_str": "676819284895604736", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "676854090836541440", + "id": 676854090836541440, + "text": "@johnath @shappy congrats!", + "in_reply_to_user_id_str": "6140482", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "johnath", + "id_str": "6140482", + "id": 6140482, + "indices": [ + 0, + 8 + ], + "name": "J Nightingale" + }, + { + "screen_name": "shappy", + "id_str": "5356872", + "id": 5356872, + "indices": [ + 9, + 16 + ], + "name": "Melissa Nightingale" + } + ] + }, + "created_at": "Tue Dec 15 19:59:25 +0000 2015", + "source": "TweetDeck", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 676819284895604736, + "lang": "en" + }, + "default_profile_image": false, + "id": 15645136, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000165777761/UceRm6vD.jpeg", + "statuses_count": 783, + "is_translator": false + } + ], + "previous_cursor": -1488977629350241687, + "previous_cursor_str": "-1488977629350241687", + "next_cursor_str": "1488949918508686286" +} \ No newline at end of file diff --git a/testdata/get_friends_4.json b/testdata/get_friends_4.json new file mode 100644 index 00000000..b778a9ff --- /dev/null +++ b/testdata/get_friends_4.json @@ -0,0 +1,2445 @@ +{ + "next_cursor": 0, + "users": [ + { + "time_zone": "Auckland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 46800, + "id_str": "2218683102", + "following": false, + "friends_count": 103, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ftangftang.wordpress.com", + "url": "http://t.co/F56CbDZQcX", + "expanded_url": "http://ftangftang.wordpress.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 82, + "location": "New Zealand", + "screen_name": "nthomasftang", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5, + "name": "Nick Thomas", + "profile_use_background_image": true, + "description": "Release Engineer @ Mozilla", + "url": "http://t.co/F56CbDZQcX", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Nov 28 01:15:43 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", + "favourites_count": 202, + "status": { + "retweet_count": 54, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "SwiftOnSecurity", + "in_reply_to_user_id": 2436389418, + "in_reply_to_status_id_str": "683809123025072128", + "retweet_count": 54, + "truncated": false, + "retweeted": false, + "id_str": "683809344513675264", + "id": 683809344513675264, + "text": "What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", + "in_reply_to_user_id_str": "2436389418", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 00:37:06 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 86, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683809123025072128, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "683815464938508289", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SwiftOnSecurity", + "id_str": "2436389418", + "id": 2436389418, + "indices": [ + 3, + 19 + ], + "name": "SecuriTay" + } + ] + }, + "created_at": "Mon Jan 04 01:01:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683815464938508289, + "text": "RT @SwiftOnSecurity: What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2218683102, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 333, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17462502", + "following": false, + "friends_count": 323, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ted.mielczarek.org", + "url": "http://t.co/bS4QKvSrsE", + "expanded_url": "http://ted.mielczarek.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 880, + "location": "PA, USA", + "screen_name": "TedMielczarek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 69, + "name": "Ted Mielczarek", + "profile_use_background_image": true, + "description": "Mozillian, daddy, hack of all trades.", + "url": "http://t.co/bS4QKvSrsE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Nov 18 11:33:39 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", + "favourites_count": 5707, + "status": { + "retweet_count": 26, + "retweeted_status": { + "retweet_count": 26, + "in_reply_to_user_id": 318692762, + "possibly_sensitive": false, + "id_str": "685553202868174848", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 123, + "resize": "fit" + }, + "large": { + "w": 668, + "h": 242, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 217, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", + "type": "photo", + "indices": [ + 91, + 114 + ], + "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", + "display_url": "pic.twitter.com/4avrL8s4o6", + "id_str": "685553159855587328", + "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1", + "id": 685553159855587328, + "url": "https://t.co/4avrL8s4o6" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:06:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "318692762", + "place": null, + "in_reply_to_screen_name": "SeanMcElwee", + "in_reply_to_status_id_str": "685552772700352512", + "truncated": false, + "id": 685553202868174848, + "text": "lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", + "coordinates": null, + "in_reply_to_status_id": 685552772700352512, + "favorite_count": 47, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685596223445807105", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 123, + "resize": "fit" + }, + "large": { + "w": 668, + "h": 242, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 217, + "resize": "fit" + } + }, + "source_status_id_str": "685553202868174848", + "url": "https://t.co/4avrL8s4o6", + "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", + "source_user_id_str": "318692762", + "id_str": "685553159855587328", + "id": 685553159855587328, + "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", + "type": "photo", + "indices": [ + 108, + 131 + ], + "source_status_id": 685553202868174848, + "source_user_id": 318692762, + "display_url": "pic.twitter.com/4avrL8s4o6", + "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SeanMcElwee", + "id_str": "318692762", + "id": 318692762, + "indices": [ + 3, + 15 + ], + "name": "read the article" + } + ] + }, + "created_at": "Fri Jan 08 22:57:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685596223445807105, + "text": "RT @SeanMcElwee: lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 17462502, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 18432, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5003371", + "following": false, + "friends_count": 320, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "coop.deadsquid.com", + "url": "http://t.co/vR6z9ydxBE", + "expanded_url": "http://coop.deadsquid.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", + "notifications": false, + "profile_sidebar_fill_color": "15365E", + "profile_link_color": "0D0921", + "geo_enabled": true, + "followers_count": 338, + "location": "Ottawa, ON, Canada", + "screen_name": "ccooper", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 22, + "name": "Chris Cooper", + "profile_use_background_image": true, + "description": "Five different types of fried cheese", + "url": "http://t.co/vR6z9ydxBE", + "profile_text_color": "49594A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", + "profile_background_color": "061645", + "created_at": "Tue Apr 17 14:36:28 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "E5E6DF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", + "favourites_count": 1884, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685607411776925697", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "drinksmixer.com/drink8654.html", + "url": "https://t.co/DU8yJe52Sj", + "expanded_url": "http://www.drinksmixer.com/drink8654.html", + "indices": [ + 94, + 117 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:41:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685607411776925697, + "text": "I'm now wearing half a Blue Grass cocktail in my sock, but the other half is quite delicious. https://t.co/DU8yJe52Sj", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 5003371, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", + "statuses_count": 6021, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5003371/1449418107", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17231743", + "following": false, + "friends_count": 282, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "atlee.ca", + "url": "http://t.co/sUJScCQshr", + "expanded_url": "http://atlee.ca", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 337, + "location": "", + "screen_name": "chrisatlee", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Chris AtLee", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/sUJScCQshr", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Fri Nov 07 14:34:15 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", + "favourites_count": 327, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685561476761821184", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", + "url": "https://t.co/jGQK5BkrqY", + "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:39:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685561476761821184, + "text": "Tips from a resume nerd https://t.co/jGQK5BkrqY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685608384129810432", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", + "url": "https://t.co/jGQK5BkrqY", + "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", + "indices": [ + 35, + 58 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kmoir", + "id_str": "82681434", + "id": 82681434, + "indices": [ + 3, + 9 + ], + "name": "Kim Moir" + } + ] + }, + "created_at": "Fri Jan 08 23:45:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685608384129810432, + "text": "RT @kmoir: Tips from a resume nerd https://t.co/jGQK5BkrqY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 17231743, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 2173, + "is_translator": false + }, + { + "time_zone": "America/Toronto", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "37933140", + "following": false, + "friends_count": 596, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 414, + "location": "Canada", + "screen_name": "bhearsum", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "Ben Hearsum", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", + "profile_background_color": "352726", + "created_at": "Tue May 05 14:24:48 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "fil", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", + "favourites_count": 1921, + "status": { + "retweet_count": 53, + "retweeted_status": { + "retweet_count": 53, + "in_reply_to_user_id": 2436389418, + "possibly_sensitive": false, + "id_str": "685216836661587968", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/Chicago", + "url": "https://t.co/Q9XtAckEph", + "expanded_url": "https://github.com/Chicago", + "indices": [ + 33, + 56 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 21:49:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "2436389418", + "place": null, + "in_reply_to_screen_name": "SwiftOnSecurity", + "in_reply_to_status_id_str": "685213939882311680", + "truncated": false, + "id": 685216836661587968, + "text": "The city of Chicago has a github https://t.co/Q9XtAckEph", + "coordinates": null, + "in_reply_to_status_id": 685213939882311680, + "favorite_count": 91, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685507521520513029", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/Chicago", + "url": "https://t.co/Q9XtAckEph", + "expanded_url": "https://github.com/Chicago", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SwiftOnSecurity", + "id_str": "2436389418", + "id": 2436389418, + "indices": [ + 3, + 19 + ], + "name": "SecuriTay" + } + ] + }, + "created_at": "Fri Jan 08 17:05:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685507521520513029, + "text": "RT @SwiftOnSecurity: The city of Chicago has a github https://t.co/Q9XtAckEph", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 37933140, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 8478, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "798341", + "following": false, + "friends_count": 601, + "entities": { + "description": { + "urls": [ + { + "display_url": "parchmentmoon.etsy.com", + "url": "https://t.co/6Oaal1jcuN", + "expanded_url": "http://parchmentmoon.etsy.com", + "indices": [ + 57, + 80 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "parchmentmoon.etsy.com", + "url": "http://t.co/6Oaal11BDf", + "expanded_url": "http://parchmentmoon.etsy.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "5D99B3", + "geo_enabled": false, + "followers_count": 1981, + "location": "Toronto", + "screen_name": "dria", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 152, + "name": "Deb Richardson", + "profile_use_background_image": true, + "description": "Photographer & printmaker - owner of @ParchMoonPrints :: https://t.co/6Oaal1jcuN :: also in the Leslieville @ArtsMarket!", + "url": "http://t.co/6Oaal11BDf", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", + "profile_background_color": "000000", + "created_at": "Tue Feb 27 15:26:58 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", + "favourites_count": 12742, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685244145716334592", + "id": 685244145716334592, + "text": "Posted a thing on my Facebook biz page today and it reached 1 person. So that's pointless.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 23:38:30 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 798341, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", + "statuses_count": 29912, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/798341/1396011076", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "304076943", + "following": false, + "friends_count": 6, + "entities": { + "description": { + "urls": [ + { + "display_url": "monktoberfest2015.eventbrite.com", + "url": "http://t.co/NujveKLlnM", + "expanded_url": "http://monktoberfest2015.eventbrite.com", + "indices": [ + 122, + 144 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "monktoberfest.com", + "url": "http://t.co/mdmBpxbRSI", + "expanded_url": "http://monktoberfest.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 467, + "location": "Portland, ME", + "screen_name": "monktoberfest", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "The Monktoberfest", + "profile_use_background_image": true, + "description": "The fifth annual Monktoberfest, featuring developers, social, and the best beer in the world. 10/1/15 - 10/2/15. Tickets: http://t.co/NujveKLlnM.", + "url": "http://t.co/mdmBpxbRSI", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon May 23 22:02:46 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", + "favourites_count": 423, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "674954219082948608", + "id": 674954219082948608, + "text": "got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. stay tuned.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "monktoberfest", + "id_str": "304076943", + "id": 304076943, + "indices": [ + 20, + 34 + ], + "name": "The Monktoberfest" + }, + { + "screen_name": "sogrady", + "id_str": "143883", + "id": 143883, + "indices": [ + 81, + 89 + ], + "name": "steve o'grady" + }, + { + "screen_name": "RedSox", + "id_str": "40918816", + "id": 40918816, + "indices": [ + 108, + 115 + ], + "name": "Boston Red Sox" + } + ] + }, + "created_at": "Thu Dec 10 14:10:00 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "674955294452133888", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JulianeLeary", + "id_str": "1425842304", + "id": 1425842304, + "indices": [ + 3, + 16 + ], + "name": "Juliane Leary" + }, + { + "screen_name": "monktoberfest", + "id_str": "304076943", + "id": 304076943, + "indices": [ + 38, + 52 + ], + "name": "The Monktoberfest" + }, + { + "screen_name": "sogrady", + "id_str": "143883", + "id": 143883, + "indices": [ + 99, + 107 + ], + "name": "steve o'grady" + }, + { + "screen_name": "RedSox", + "id_str": "40918816", + "id": 40918816, + "indices": [ + 126, + 133 + ], + "name": "Boston Red Sox" + } + ] + }, + "created_at": "Thu Dec 10 14:14:16 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 674955294452133888, + "text": "RT @JulianeLeary: got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 304076943, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 664, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8340822", + "following": false, + "friends_count": 590, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pmc.com", + "url": "http://t.co/Fhv1KhCIcD", + "expanded_url": "http://pmc.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FAF7E9", + "profile_link_color": "7C9CD7", + "geo_enabled": true, + "followers_count": 661, + "location": "Portland, ME | Chicago | LA", + "screen_name": "coreygilmore", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 36, + "name": "corey gilmore", + "profile_use_background_image": false, + "description": "Former gov't. Special Projects Editor @BGR, Chief Architect at @PenskeMedia. r\u0316\u033c\u034d\u0318\u030a\u033f\u033e\u035b\u0365\u0313\u0368\u030e\u0346\u033d\u0313\u0345e\u032f\u032f\u0355\u034e\u0356\u0349\u0332\u035a\u033b\u0325\u0320\u031c\u0367\u0313\u0302\u030d\u0367\u031a", + "url": "http://t.co/Fhv1KhCIcD", + "profile_text_color": "786F4C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", + "profile_background_color": "3371A3", + "created_at": "Tue Aug 21 21:51:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", + "favourites_count": 1052, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684707377736593408", + "id": 684707377736593408, + "text": "When the iPhone is too cold, you get high temp warning. I\u2019m leery of self-driving cars from CA for similar reasons \u2013\u00a0need snow, ice testing.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 12:05:34 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 8340822, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5995, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8340822/1350040276", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16833482", + "following": false, + "friends_count": 237, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/girltuesday", + "url": "https://t.co/o1qJWZlfKV", + "expanded_url": "http://about.me/girltuesday", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DBDBDB", + "profile_link_color": "AA00B3", + "geo_enabled": false, + "followers_count": 542, + "location": "great northeast", + "screen_name": "girltuesday", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "mko'g", + "profile_use_background_image": true, + "description": "liar: that's latin for lawyer. married to a (red)monk, @sogrady.", + "url": "https://t.co/o1qJWZlfKV", + "profile_text_color": "330533", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Sat Oct 18 00:35:45 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", + "favourites_count": 944, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685599118815834112", + "id": 685599118815834112, + "text": "oh, right. it's friday. #babybrain", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 24, + 34 + ], + "text": "babybrain" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:09:02 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 16833482, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", + "statuses_count": 16543, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16833482/1391211651", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1538841", + "following": false, + "friends_count": 272, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lu.is", + "url": "http://t.co/fXEvt99yzX", + "expanded_url": "http://lu.is/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1826, + "location": "San Francisco", + "screen_name": "tieguy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 128, + "name": "Luis Villa", + "profile_use_background_image": true, + "description": "Ex-programmer, ex-lawyer, ex-Miamian. Wikimedia's Sr. Director of Community Engagement, but work doesn't vet or approve.", + "url": "http://t.co/fXEvt99yzX", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Mon Mar 19 18:31:56 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", + "favourites_count": 856, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685400320642433026", + "id": 685400320642433026, + "text": "During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 7, + 19 + ], + "text": "Wikipedia15" + } + ], + "user_mentions": [ + { + "screen_name": "enwikipedia", + "id_str": "18692541", + "id": 18692541, + "indices": [ + 82, + 94 + ], + "name": "enwikipedia" + }, + { + "screen_name": "bnwikipedia", + "id_str": "2387031866", + "id": 2387031866, + "indices": [ + 98, + 110 + ], + "name": "Bengali Wikipedia" + } + ] + }, + "created_at": "Fri Jan 08 09:59:05 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685534157087223808", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 20, + 32 + ], + "text": "Wikipedia15" + } + ], + "user_mentions": [ + { + "screen_name": "nhasive", + "id_str": "53717936", + "id": 53717936, + "indices": [ + 3, + 11 + ], + "name": "Nurunnaby Chowdhury" + }, + { + "screen_name": "enwikipedia", + "id_str": "18692541", + "id": 18692541, + "indices": [ + 95, + 107 + ], + "name": "enwikipedia" + }, + { + "screen_name": "bnwikipedia", + "id_str": "2387031866", + "id": 2387031866, + "indices": [ + 111, + 123 + ], + "name": "Bengali Wikipedia" + } + ] + }, + "created_at": "Fri Jan 08 18:50:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685534157087223808, + "text": "RT @nhasive: During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 1538841, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", + "statuses_count": 10342, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1538841/1398620171", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "876081", + "following": false, + "friends_count": 2143, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "en.wikipedia.org/wiki/Evan_Prod\u2026", + "url": "https://t.co/DVlmqCqJIB", + "expanded_url": "https://en.wikipedia.org/wiki/Evan_Prodromou", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "444475", + "geo_enabled": true, + "followers_count": 3472, + "location": "Montreal, Quebec, Canada", + "screen_name": "evanpro", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 367, + "name": "Evan Prodromou", + "profile_use_background_image": true, + "description": "Founder of @fuzzy_io, proud part of @500Startups family. Past founder of @wikitravel, @statusnet. Founding CTO of @breather.", + "url": "https://t.co/DVlmqCqJIB", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Sat Mar 10 17:43:00 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", + "favourites_count": 17595, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609250530422784", + "geo": { + "coordinates": [ + 45.51942856, + -73.58714291 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "swarmapp.com/c/7HtpQYkInPH", + "url": "https://t.co/AObWsAng6f", + "expanded_url": "https://www.swarmapp.com/c/7HtpQYkInPH", + "indices": [ + 52, + 75 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:49:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "fr", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/36775d842cbec509.json", + "country": "Canada", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -73.972965, + 45.410095 + ], + [ + -73.473085, + 45.410095 + ], + [ + -73.473085, + 45.705566 + ], + [ + -73.972965, + 45.705566 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "CA", + "contained_within": [], + "full_name": "Montr\u00e9al, Qu\u00e9bec", + "id": "36775d842cbec509", + "name": "Montr\u00e9al" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609250530422784, + "text": "End-of-week lift. (@ Nautilus Plus in Montr\u00e9al, QC) https://t.co/AObWsAng6f", + "coordinates": { + "coordinates": [ + -73.58714291, + 45.51942856 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Foursquare" + }, + "default_profile_image": false, + "id": 876081, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", + "statuses_count": 14346, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/876081/1418849529", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "13611", + "following": false, + "friends_count": 122, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "redmonk.com", + "url": "http://t.co/3tt6ytJ0U7", + "expanded_url": "http://redmonk.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "5E3321", + "geo_enabled": false, + "followers_count": 2283, + "location": "The Internet", + "screen_name": "redmonk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 150, + "name": "RedMonk", + "profile_use_background_image": true, + "description": "We're a small, sharp industry analyst firm focused on people doing interesting stuff with technology. We are: @julianeleary, @monkchips, @sogrady, @tomraftery", + "url": "http://t.co/3tt6ytJ0U7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", + "profile_background_color": "709397", + "created_at": "Tue Nov 21 19:37:32 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", + "favourites_count": 67, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677279848230973440", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ift.tt/1O9e5Hl", + "url": "https://t.co/3EsqpHx37C", + "expanded_url": "http://ift.tt/1O9e5Hl", + "indices": [ + 58, + 81 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 17 00:11:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677279848230973440, + "text": "Monki Gras \u2013 The developer conference about craft culture https://t.co/3EsqpHx37C", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "IFTTT" + }, + "default_profile_image": false, + "id": 13611, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 3514, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14639127", + "following": false, + "friends_count": 1639, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "451research.com/biography?eid=\u2026", + "url": "https://t.co/Vdb2y81qyg", + "expanded_url": "https://451research.com/biography?eid=859", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "333333", + "geo_enabled": true, + "followers_count": 5999, + "location": "Minneapolis", + "screen_name": "dberkholz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 424, + "name": "Donnie Berkholz", + "profile_use_background_image": true, + "description": "Research Director @451Research - Development, DevOps & IT Ops. Open-source developer. PhD biophysics. Beer lover. Passionate about data, code, and community.", + "url": "https://t.co/Vdb2y81qyg", + "profile_text_color": "0084B4", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Sat May 03 16:19:04 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", + "favourites_count": 9460, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "danthompson_TN", + "in_reply_to_user_id": 20341653, + "in_reply_to_status_id_str": "685598210883239936", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685598596398366720", + "id": 685598596398366720, + "text": "@danthompson_TN: We never truly outgrow stranger danger.", + "in_reply_to_user_id_str": "20341653", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "danthompson_TN", + "id_str": "20341653", + "id": 20341653, + "indices": [ + 0, + 15 + ], + "name": "Dan Thompson" + } + ] + }, + "created_at": "Fri Jan 08 23:06:57 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598210883239936, + "lang": "en" + }, + "default_profile_image": false, + "id": 14639127, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", + "statuses_count": 27573, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14639127/1423202091", + "is_translator": false + }, + { + "time_zone": "Europe/London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "61233", + "following": false, + "friends_count": 3383, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "monkchips.com", + "url": "http://t.co/4rH6XD51qB", + "expanded_url": "http://monkchips.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", + "notifications": false, + "profile_sidebar_fill_color": "C90D2E", + "profile_link_color": "020219", + "geo_enabled": true, + "followers_count": 20648, + "location": "London", + "screen_name": "monkchips", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1581, + "name": "Medea Fawning", + "profile_use_background_image": true, + "description": "Co-founder of @RedMonk and @shoreditchworks, organiser of @monkigras, which you should come to Jan 28/29 2016", + "url": "http://t.co/4rH6XD51qB", + "profile_text_color": "050505", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", + "profile_background_color": "B21313", + "created_at": "Tue Dec 12 17:35:55 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DA1724", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", + "favourites_count": 25995, + "status": { + "retweet_count": 18, + "retweeted_status": { + "retweet_count": 18, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684741098120429568", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/@moonpolysoft/\u2026", + "url": "https://t.co/hJCQg4bgZc", + "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 14:19:34 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684741098120429568, + "text": "hot take coming through https://t.co/hJCQg4bgZc", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 27, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685593612256579584", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/@moonpolysoft/\u2026", + "url": "https://t.co/hJCQg4bgZc", + "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", + "indices": [ + 42, + 65 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "moonpolysoft", + "id_str": "14204623", + "id": 14204623, + "indices": [ + 3, + 16 + ], + "name": "Modafinil Duck" + } + ] + }, + "created_at": "Fri Jan 08 22:47:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593612256579584, + "text": "RT @moonpolysoft: hot take coming through https://t.co/hJCQg4bgZc", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 61233, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", + "statuses_count": 87044, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/61233/1450351415", + "is_translator": false + }, + { + "time_zone": "Madrid", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "797835", + "following": false, + "friends_count": 4396, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/tomraftery", + "url": "http://t.co/5mPSXU1T48", + "expanded_url": "http://about.me/tomraftery", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "D9C8B2", + "profile_link_color": "587410", + "geo_enabled": true, + "followers_count": 11890, + "location": "Sevilla, Spain", + "screen_name": "TomRaftery", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 837, + "name": "Tom Raftery", + "profile_use_background_image": true, + "description": "Speaker, Blogger, Principal Analyst at GreenMonk (the Energy and Sustainability practice of industry analyst firm RedMonk). Opinions mine etc.", + "url": "http://t.co/5mPSXU1T48", + "profile_text_color": "355732", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", + "profile_background_color": "B38851", + "created_at": "Tue Feb 27 11:18:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", + "favourites_count": 2946, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685521358508453888", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/omN5etq7R8Q?a", + "url": "https://t.co/KUwhzfRgZH", + "expanded_url": "http://youtu.be/omN5etq7R8Q?a", + "indices": [ + 34, + 57 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "YouTube", + "id_str": "10228272", + "id": 10228272, + "indices": [ + 62, + 70 + ], + "name": "YouTube" + } + ] + }, + "created_at": "Fri Jan 08 18:00:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685521358508453888, + "text": "Technology for Good - episode 82: https://t.co/KUwhzfRgZH via @YouTube", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Google" + }, + "default_profile_image": false, + "id": 797835, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", + "statuses_count": 52847, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/797835/1398243904", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "43580317", + "following": false, + "friends_count": 111, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kegbot.org", + "url": "https://t.co/JeweXBoTLE", + "expanded_url": "https://kegbot.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1488, + "location": "San Francisco, CA", + "screen_name": "Kegbot", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Kegbot", + "profile_use_background_image": true, + "description": "Kegbot turns your beer kegerator into an awesomeness machine. Free and open source software - and now on Kickstarter!", + "url": "https://t.co/JeweXBoTLE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", + "profile_background_color": "022330", + "created_at": "Sat May 30 19:38:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", + "favourites_count": 164, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "eheydrick", + "in_reply_to_user_id": 3169572185, + "in_reply_to_status_id_str": "628332799204921345", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "630038228469477376", + "id": 630038228469477376, + "text": "@eheydrick D'oh! All fixed, thanks for the head's up!", + "in_reply_to_user_id_str": "3169572185", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "eheydrick", + "id_str": "3169572185", + "id": 3169572185, + "indices": [ + 0, + 10 + ], + "name": "Eric Heydrick" + } + ] + }, + "created_at": "Sat Aug 08 15:29:53 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 628332799204921345, + "lang": "en" + }, + "default_profile_image": false, + "id": 43580317, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 461, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43580317/1385073894", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "1023611", + "following": false, + "friends_count": 192, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 691, + "location": "Denver, CO, USA", + "screen_name": "hildjj", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 47, + "name": "Joe Hildebrand", + "profile_use_background_image": true, + "description": "Distinguished Engineer in Cisco's Cloud Collaboration Application Technology Group. Architecture for WebEx, Jabber, Social, etc.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Mar 12 16:34:27 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", + "favourites_count": 232, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "thisNatasha", + "in_reply_to_user_id": 28321091, + "in_reply_to_status_id_str": "669757790378786816", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "669875748082196481", + "id": 669875748082196481, + "text": "@thisNatasha @bortzmeyer @mnot still early days. Keep backups as you go.", + "in_reply_to_user_id_str": "28321091", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thisNatasha", + "id_str": "28321091", + "id": 28321091, + "indices": [ + 0, + 12 + ], + "name": "Natasha Rooney" + }, + { + "screen_name": "bortzmeyer", + "id_str": "75263632", + "id": 75263632, + "indices": [ + 13, + 24 + ], + "name": "St\u00e9phane Bortzmeyer" + }, + { + "screen_name": "mnot", + "id_str": "5832482", + "id": 5832482, + "indices": [ + 25, + 30 + ], + "name": "Mark Nottingham" + } + ] + }, + "created_at": "Thu Nov 26 13:49:58 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 669757790378786816, + "lang": "en" + }, + "default_profile_image": false, + "id": 1023611, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 2243, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "143883", + "following": false, + "friends_count": 589, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "redmonk.com/sogrady", + "url": "http://t.co/NlsofJ8aQb", + "expanded_url": "http://redmonk.com/sogrady", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 7415, + "location": "Maine...probably", + "screen_name": "sogrady", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 604, + "name": "steve o'grady", + "profile_use_background_image": true, + "description": "i helped found RedMonk. if you see someone at a tech conference wearing a Red Sox hat, that's probably me. wrote @newkingmakers. married to @girltuesday. eph.", + "url": "http://t.co/NlsofJ8aQb", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", + "profile_background_color": "9AE4E8", + "created_at": "Fri Dec 22 01:53:11 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", + "favourites_count": 30838, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685563226143223809", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "sogrady.org/2016/01/08/my-\u2026", + "url": "https://t.co/9T7jPZcyTf", + "expanded_url": "http://sogrady.org/2016/01/08/my-2015-in-pictures/", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:46:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685563226143223809, + "text": "2015 was a year of ups and downs, a year i\u2019m grateful for. my 2015 in pictures: https://t.co/9T7jPZcyTf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 143883, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", + "statuses_count": 42833, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/143883/1400163495", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "54481001", + "following": false, + "friends_count": 142, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.notapaper.de", + "url": "http://t.co/fWUrVqihzH", + "expanded_url": "http://blog.notapaper.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "4C95ED", + "geo_enabled": true, + "followers_count": 191, + "location": "Potsdam", + "screen_name": "hannesrauhe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Hannes Rauhe", + "profile_use_background_image": false, + "description": "Hat-wearing Geek and researcher with social skills. Verteidiger des Genitivs", + "url": "http://t.co/fWUrVqihzH", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", + "profile_background_color": "352726", + "created_at": "Tue Jul 07 07:27:27 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", + "favourites_count": 62, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MatthiasKuphal", + "in_reply_to_user_id": 457857280, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685166321366077440", + "id": 685166321366077440, + "text": "@MatthiasKuphal Prost Neujahr! Bist du morgen tags\u00fcber frei f\u00fcr alkoholfreie Biere oder dergleichen? Hab Urlaub. :-)", + "in_reply_to_user_id_str": "457857280", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MatthiasKuphal", + "id_str": "457857280", + "id": 457857280, + "indices": [ + 0, + 15 + ], + "name": "Matthias Kuphal" + } + ] + }, + "created_at": "Thu Jan 07 18:29:15 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "de" + }, + "default_profile_image": false, + "id": 54481001, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2773, + "is_translator": false + } + ], + "previous_cursor": -1488949916577120071, + "previous_cursor_str": "-1488949916577120071", + "next_cursor_str": "0" +} \ No newline at end of file diff --git a/testdata/get_friends_paged.json b/testdata/get_friends_paged.json new file mode 100644 index 00000000..3b4de7e0 --- /dev/null +++ b/testdata/get_friends_paged.json @@ -0,0 +1,26427 @@ + { + "next_cursor": 1494734862149901956, + "users": [ + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "18275645", + "following": false, + "friends_count": 118, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "danluu.com", + "url": "http://t.co/yAGxZQzkJc", + "expanded_url": "http://danluu.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2884, + "location": "Seattle, WA", + "screen_name": "danluu", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 70, + "name": "Dan Luu", + "profile_use_background_image": true, + "description": "Hardware/software co-design @Microsoft. Previously @google, @recursecenter, and centaur.", + "url": "http://t.co/yAGxZQzkJc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Dec 21 00:21:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", + "favourites_count": 624, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "danluu", + "in_reply_to_user_id": 18275645, + "in_reply_to_status_id_str": "685537630235136000", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685539148292214784", + "id": 685539148292214784, + "text": "@twitter Meanwhile, automated bots have been tweeting every HN frontpage link for 3 years without getting flagged.", + "in_reply_to_user_id_str": "18275645", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "twitter", + "id_str": "783214", + "id": 783214, + "indices": [ + 0, + 8 + ], + "name": "Twitter" + } + ] + }, + "created_at": "Fri Jan 08 19:10:44 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685537630235136000, + "lang": "en" + }, + "default_profile_image": false, + "id": 18275645, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 685, + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "16246973", + "following": false, + "friends_count": 142, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.scottlowe.org", + "url": "http://t.co/EMI294FM8u", + "expanded_url": "http://blog.scottlowe.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 22381, + "location": "Denver, CO, USA", + "screen_name": "scott_lowe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 989, + "name": "Scott S. Lowe", + "profile_use_background_image": true, + "description": "An IT pro specializing in virtualization, networking, open source, & cloud computing; currently working for a leading virtualization vendor (tweets are mine)", + "url": "http://t.co/EMI294FM8u", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Sep 11 20:17:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", + "favourites_count": 0, + "status": { + "retweet_count": 6, + "retweeted_status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597324853161984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "networkworld.com/article/301666\u2026", + "url": "https://t.co/Y5HBdGgEor", + "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", + "indices": [ + 99, + 122 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:01:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597324853161984, + "text": "With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgEor", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597548321505280", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "networkworld.com/article/301666\u2026", + "url": "https://t.co/Y5HBdGgEor", + "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", + "indices": [ + 118, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "martin_casado", + "id_str": "16591288", + "id": 16591288, + "indices": [ + 3, + 17 + ], + "name": "martin_casado" + } + ] + }, + "created_at": "Fri Jan 08 23:02:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597548321505280, + "text": "RT @martin_casado: With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgE\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 16246973, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 34402, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6981492", + "following": false, + "friends_count": 178, + "entities": { + "description": { + "urls": [ + { + "display_url": "Postlight.com", + "url": "http://t.co/AxJX6dV8Ig", + "expanded_url": "http://Postlight.com", + "indices": [ + 21, + 43 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ftrain.com", + "url": "http://t.co/6afN702mgr", + "expanded_url": "http://ftrain.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 32171, + "location": "Brooklyn, New York, USA", + "screen_name": "ftrain", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1452, + "name": "Paul Ford", + "profile_use_background_image": true, + "description": "(1974\u2013 ) Co-founder, http://t.co/AxJX6dV8Ig. Writing a book about web pages for FSG. Contact ford@ftrain.com if you spot a typo.", + "url": "http://t.co/6afN702mgr", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Jun 21 01:11:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", + "favourites_count": 20008, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.026675, + 40.683935 + ], + [ + -73.910408, + 40.683935 + ], + [ + -73.910408, + 40.877483 + ], + [ + -74.026675, + 40.877483 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Manhattan, NY", + "id": "01a9a39529b27f36", + "name": "Manhattan" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "682597070751035392", + "id": 682597070751035392, + "text": "2016 resolution: Get off Twitter, for all but writing-promotional purposes, until I lose 32 pounds, one for every thousand followers.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 16:19:58 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 58, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 6981492, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", + "statuses_count": 29820, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6981492/1362958335", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2266469498", + "following": false, + "friends_count": 344, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.samwhited.com", + "url": "https://t.co/FVESgX6vVp", + "expanded_url": "https://blog.samwhited.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "9ABB59", + "geo_enabled": true, + "followers_count": 97, + "location": "Austin, TX", + "screen_name": "SamWhited", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Sam Whited", + "profile_use_background_image": true, + "description": "Sometimes I tweet things, but mostly I don't.", + "url": "https://t.co/FVESgX6vVp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Sat Dec 28 21:36:45 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", + "favourites_count": 68, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683367861557956608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/linode/status/\u2026", + "url": "https://t.co/ChRPqTJULN", + "expanded_url": "https://twitter.com/linode/status/683366718798954496", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 02 19:22:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683367861557956608, + "text": "I have not been able to maintain a persistant TCP connection with my Linodes in Days\u2026 https://t.co/ChRPqTJULN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2266469498, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", + "statuses_count": 708, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2266469498/1388268061", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6815762", + "following": false, + "friends_count": 825, + "entities": { + "description": { + "urls": [ + { + "display_url": "lasp-lang.org", + "url": "https://t.co/SvIEg6a8n1", + "expanded_url": "http://lasp-lang.org", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "christophermeiklejohn.com", + "url": "https://t.co/OteoESj7H9", + "expanded_url": "http://christophermeiklejohn.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "4E5A5E", + "geo_enabled": true, + "followers_count": 3106, + "location": "San Francisco, CA", + "screen_name": "cmeik", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 155, + "name": "Christophe le fou", + "profile_use_background_image": true, + "description": "building programming languages for distributed computation; https://t.co/SvIEg6a8n1", + "url": "https://t.co/OteoESj7H9", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Jun 14 16:35:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", + "favourites_count": 38349, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -115.2092535, + 35.984784 + ], + [ + -115.0610763, + 35.984784 + ], + [ + -115.0610763, + 36.137145 + ], + [ + -115.2092535, + 36.137145 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Paradise, NV", + "id": "8fa6d7a33b83ef26", + "name": "Paradise" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685629512961245184", + "id": 685629512961245184, + "text": "[checking in to hotel]\n\"The IEEE? That's the porn conference, right?\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:09:48 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 7, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 6815762, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 49789, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6815762/1420224089", + "is_translator": false + }, + { + "time_zone": "Stockholm", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "17616622", + "following": false, + "friends_count": 332, + "entities": { + "description": { + "urls": [ + { + "display_url": "locust.io", + "url": "http://t.co/TQXEGLwCis", + "expanded_url": "http://locust.io", + "indices": [ + 78, + 100 + ] + }, + { + "display_url": "heyevent.com", + "url": "http://t.co/0DMoIMMGYB", + "expanded_url": "http://heyevent.com", + "indices": [ + 102, + 124 + ] + }, + { + "display_url": "boutiquehotel.me", + "url": "http://t.co/UVjwCLqJWP", + "expanded_url": "http://boutiquehotel.me", + "indices": [ + 137, + 159 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "heyman.info", + "url": "http://t.co/OJuVdsnIXQ", + "expanded_url": "http://heyman.info", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1063, + "location": "Sweden", + "screen_name": "jonatanheyman", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Jonatan Heyman", + "profile_use_background_image": true, + "description": "I'm a developer and I Iike to build stuff. I love Python. Author of @locustio http://t.co/TQXEGLwCis, http://t.co/0DMoIMMGYB, @ronigame, http://t.co/UVjwCLqJWP", + "url": "http://t.co/OJuVdsnIXQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Nov 25 10:15:22 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", + "favourites_count": 112, + "status": { + "retweet_count": 32, + "retweeted_status": { + "retweet_count": 32, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685581797850279937", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:00:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685581797850279937, + "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 33, + "contributors": null, + "source": "Mobile Web (M5)" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685587786120970241", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tomdale", + "id_str": "668863", + "id": 668863, + "indices": [ + 3, + 11 + ], + "name": "Tom Dale" + } + ] + }, + "created_at": "Fri Jan 08 22:24:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685587786120970241, + "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 17616622, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 996, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17616622/1397123585", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "290900886", + "following": false, + "friends_count": 28, + "entities": { + "description": { + "urls": [ + { + "display_url": "hashicorp.com/atlas", + "url": "https://t.co/3rYtQZlVFj", + "expanded_url": "https://hashicorp.com/atlas", + "indices": [ + 75, + 98 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hashicorp.com", + "url": "https://t.co/ny0Vs9IMpz", + "expanded_url": "https://hashicorp.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "48B4FB", + "geo_enabled": false, + "followers_count": 10680, + "location": "San Francisco, CA", + "screen_name": "hashicorp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 326, + "name": "HashiCorp", + "profile_use_background_image": false, + "description": "We build Vagrant, Packer, Serf, Consul, Terraform, Vault, Nomad, Otto, and https://t.co/3rYtQZlVFj. We love developers, ops, and are obsessed with automation.", + "url": "https://t.co/ny0Vs9IMpz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Sun May 01 04:14:30 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", + "favourites_count": 23, + "status": { + "retweet_count": 12, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685602742769876992", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/hashicorp/terr\u2026", + "url": "https://t.co/QjiHQfLdQF", + "expanded_url": "https://github.com/hashicorp/terraform/blob/v0.6.9/CHANGELOG.md#069-january-8-2016", + "indices": [ + 90, + 113 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:23:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685602742769876992, + "text": "Terraform 0.6.9 has been released! 5 new providers and a long list of features and fixes: https://t.co/QjiHQfLdQF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 14, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 290900886, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 715, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1229010770", + "following": false, + "friends_count": 15, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kimh.github.io", + "url": "http://t.co/rOoCzBI0Uk", + "expanded_url": "http://kimh.github.io/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 24, + "location": "", + "screen_name": "kimhirokuni", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Kim, Hirokuni", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/rOoCzBI0Uk", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Mar 01 04:35:59 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", + "favourites_count": 4, + "status": { + "retweet_count": 14, + "retweeted_status": { + "retweet_count": 14, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684163973390974976", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 169, + "resize": "fit" + }, + "large": { + "w": 799, + "h": 398, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 298, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "type": "photo", + "indices": [ + 95, + 118 + ], + "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "display_url": "pic.twitter.com/VEpSVWgnhn", + "id_str": "684163973206421509", + "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", + "id": 684163973206421509, + "url": "https://t.co/VEpSVWgnhn" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "circle.ci/1YyS1W6", + "url": "https://t.co/Mil1rt44Ve", + "expanded_url": "http://circle.ci/1YyS1W6", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 16, + 25 + ], + "name": "CircleCI" + } + ] + }, + "created_at": "Tue Jan 05 00:06:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684163973390974976, + "text": "We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684249491948490752", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 169, + "resize": "fit" + }, + "large": { + "w": 799, + "h": 398, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 298, + "resize": "fit" + } + }, + "source_status_id_str": "684163973390974976", + "url": "https://t.co/VEpSVWgnhn", + "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "source_user_id_str": "381223731", + "id_str": "684163973206421509", + "id": 684163973206421509, + "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", + "type": "photo", + "indices": [ + 109, + 132 + ], + "source_status_id": 684163973390974976, + "source_user_id": 381223731, + "display_url": "pic.twitter.com/VEpSVWgnhn", + "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "circle.ci/1YyS1W6", + "url": "https://t.co/Mil1rt44Ve", + "expanded_url": "http://circle.ci/1YyS1W6", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 3, + 12 + ], + "name": "CircleCI" + }, + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 30, + 39 + ], + "name": "CircleCI" + } + ] + }, + "created_at": "Tue Jan 05 05:46:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684249491948490752, + "text": "RT @circleci: We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1229010770, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 56, + "is_translator": false + }, + { + "time_zone": "Madrid", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "311029627", + "following": false, + "friends_count": 173, + "entities": { + "description": { + "urls": [ + { + "display_url": "keybase.io/alexey_ch", + "url": "http://t.co/3wRCyfslLs", + "expanded_url": "http://keybase.io/alexey_ch", + "indices": [ + 56, + 78 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "alexey.ch", + "url": "http://t.co/sGSgRzEPYs", + "expanded_url": "http://alexey.ch", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 230, + "location": "Sant Cugat del Vall\u00e8s", + "screen_name": "alexey_am_i", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Alexey", + "profile_use_background_image": true, + "description": "bites and bytes / chief bash script officer @circleci / http://t.co/3wRCyfslLs", + "url": "http://t.co/sGSgRzEPYs", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Sat Jun 04 19:35:45 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", + "favourites_count": 2099, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "KrauseFx", + "in_reply_to_user_id": 50055757, + "in_reply_to_status_id_str": "685505979270574080", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685506452614688768", + "id": 685506452614688768, + "text": "@KrauseFx Nice screenshot :D", + "in_reply_to_user_id_str": "50055757", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "KrauseFx", + "id_str": "50055757", + "id": 50055757, + "indices": [ + 0, + 9 + ], + "name": "Felix Krause" + } + ] + }, + "created_at": "Fri Jan 08 17:00:49 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685505979270574080, + "lang": "en" + }, + "default_profile_image": false, + "id": 311029627, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", + "statuses_count": 10759, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/311029627/1366924833", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "810781", + "following": false, + "friends_count": 370, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "unwiredcouch.com", + "url": "https://t.co/AlM3lgSG3F", + "expanded_url": "https://unwiredcouch.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0099CC", + "geo_enabled": false, + "followers_count": 1872, + "location": "probably Brooklyn or Freiburg", + "screen_name": "mrtazz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 103, + "name": "Daniel Schauenberg", + "profile_use_background_image": true, + "description": "Infrastructure Toolsmith at Etsy. A Cheap Trick and a Cheesy One-Liner. I own 100% of my opinions. Feminist.", + "url": "https://t.co/AlM3lgSG3F", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", + "profile_background_color": "FFF04D", + "created_at": "Sun Mar 04 21:17:02 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFF8AD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", + "favourites_count": 7996, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jmhodges", + "in_reply_to_user_id": 9267272, + "in_reply_to_status_id_str": "685561412450562048", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685565956836487168", + "id": 685565956836487168, + "text": "@jmhodges the important bit is to understand when and how and learn from it", + "in_reply_to_user_id_str": "9267272", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jmhodges", + "id_str": "9267272", + "id": 9267272, + "indices": [ + 0, + 9 + ], + "name": "Jeff Hodges" + } + ] + }, + "created_at": "Fri Jan 08 20:57:15 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685561412450562048, + "lang": "en" + }, + "default_profile_image": false, + "id": 810781, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "statuses_count": 17494, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/810781/1374119286", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "166282004", + "following": false, + "friends_count": 131, + "entities": { + "description": { + "urls": [ + { + "display_url": "scotthel.me/PGP", + "url": "http://t.co/gL8cUpGdUF", + "expanded_url": "http://scotthel.me/PGP", + "indices": [ + 137, + 159 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "scotthelme.co.uk", + "url": "https://t.co/amYoJQqVCA", + "expanded_url": "https://scotthelme.co.uk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "2971FF", + "geo_enabled": false, + "followers_count": 1586, + "location": "UK", + "screen_name": "Scott_Helme", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 94, + "name": "Scott Helme", + "profile_use_background_image": false, + "description": "Information Security Consultant, blogger, builder of things. Creator of @reporturi and @securityheaders. I want to secure the entire web http://t.co/gL8cUpGdUF", + "url": "https://t.co/amYoJQqVCA", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", + "profile_background_color": "F5F8FA", + "created_at": "Tue Jul 13 19:42:08 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", + "favourites_count": 488, + "status": { + "retweet_count": 130, + "retweeted_status": { + "retweet_count": 130, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684262306956443648", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "securityheaders.io", + "url": "https://t.co/tFn2HCB6YS", + "expanded_url": "https://securityheaders.io/", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 06:37:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684262306956443648, + "text": "SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 261, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685607128095154176", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "securityheaders.io", + "url": "https://t.co/tFn2HCB6YS", + "expanded_url": "https://securityheaders.io/", + "indices": [ + 88, + 111 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "smashingmag", + "id_str": "15736190", + "id": 15736190, + "indices": [ + 3, + 15 + ], + "name": "Smashing Magazine" + } + ] + }, + "created_at": "Fri Jan 08 23:40:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685607128095154176, + "text": "RT @smashingmag: SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 166282004, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", + "statuses_count": 5651, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/166282004/1421676770", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13734442", + "following": false, + "friends_count": 700, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "entropystream.net", + "url": "http://t.co/jHZOamrEt4", + "expanded_url": "http://entropystream.net", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "193FFF", + "geo_enabled": false, + "followers_count": 906, + "location": "Seattle WA", + "screen_name": "blueben", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 73, + "name": "Ben Macguire", + "profile_use_background_image": false, + "description": "Ops Engineer, Music, RF, Puppies.", + "url": "http://t.co/jHZOamrEt4", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Feb 20 19:12:44 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", + "favourites_count": 497, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685121298100424704", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", + "type": "photo", + "indices": [ + 34, + 57 + ], + "media_url": "http://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", + "display_url": "pic.twitter.com/yJ5odOn9OQ", + "id_str": "685121290575806465", + "expanded_url": "http://twitter.com/blueben/status/685121298100424704/photo/1", + "id": 685121290575806465, + "url": "https://t.co/yJ5odOn9OQ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 15:30:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685121298100424704, + "text": "Slightly foggy in Salt Lake City. https://t.co/yJ5odOn9OQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 13734442, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 14940, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3237083798", + "following": false, + "friends_count": 2, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bgpstream.com", + "url": "https://t.co/gdCAgJZFwt", + "expanded_url": "https://bgpstream.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1378, + "location": "", + "screen_name": "bgpstream", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "bgpstream", + "profile_use_background_image": true, + "description": "BGPStream is a free resource for receiving alerts about BGP hijacks and large scale outages. Brought to you by @bgpmon", + "url": "https://t.co/gdCAgJZFwt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Jun 05 15:28:16 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", + "favourites_count": 4, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685604760662196224", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bgpstream.com/event/16414", + "url": "https://t.co/Fwvyew4hhY", + "expanded_url": "http://bgpstream.com/event/16414", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:31:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685604760662196224, + "text": "BGP,OT,52742,INTERNET,-,Outage affected 15 prefixes, https://t.co/Fwvyew4hhY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "BGPStream" + }, + "default_profile_image": false, + "id": 3237083798, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3555, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3237083798/1437676409", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "507922769", + "following": false, + "friends_count": 295, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "waterpigs.co.uk", + "url": "https://t.co/NTbafUKQZe", + "expanded_url": "https://waterpigs.co.uk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 331, + "location": "Reykjav\u00edk, Iceland", + "screen_name": "BarnabyWalters", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Barnaby Walters", + "profile_use_background_image": true, + "description": "Music/tech minded individual. Trained as a luthier, working on web surveys at V\u00edsar, Iceland. Building the #indieweb of the future. Hiking, climbing, gurdying.", + "url": "https://t.co/NTbafUKQZe", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Feb 28 21:07:29 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", + "favourites_count": 2198, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684845666649157632", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "waterpigs.co.uk/img/2016-01-06\u2026", + "url": "https://t.co/7wSqHpJZYS", + "expanded_url": "https://waterpigs.co.uk/img/2016-01-06-bubbles.gif", + "indices": [ + 36, + 59 + ] + }, + { + "display_url": "waterpigs.co.uk/notes/4f6MF3/", + "url": "https://t.co/5L2Znu5Ack", + "expanded_url": "https://waterpigs.co.uk/notes/4f6MF3/", + "indices": [ + 62, + 85 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 21:15:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684845666649157632, + "text": "A little preparation for tomorrow\u2026\n\nhttps://t.co/7wSqHpJZYS\n (https://t.co/5L2Znu5Ack)", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Waterpigs.co.uk" + }, + "default_profile_image": false, + "id": 507922769, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", + "statuses_count": 3559, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/507922769/1348091343", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "235193328", + "following": false, + "friends_count": 129, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "indiewebcamp.com", + "url": "http://t.co/Lhpx03ubrJ", + "expanded_url": "http://indiewebcamp.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 782, + "location": "Portland, Oregon", + "screen_name": "indiewebcamp", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "IndieWebCamp", + "profile_use_background_image": true, + "description": "Rather than posting content on 3rd-party silos, we should all begin owning our data when we create it.", + "url": "http://t.co/Lhpx03ubrJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Jan 07 15:53:54 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", + "favourites_count": 1154, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685273812682719233", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "zeldman.com/2016/01/05/139\u2026", + "url": "https://t.co/kMiWh7ufuW", + "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", + "indices": [ + 104, + 127 + ] + } + ], + "hashtags": [ + { + "indices": [ + 128, + 137 + ], + "text": "indieweb" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 01:36:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685273812682719233, + "text": "\u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7ufuW #indieweb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685306865635336192", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "zeldman.com/2016/01/05/139\u2026", + "url": "https://t.co/kMiWh7ufuW", + "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", + "indices": [ + 120, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "indieweb" + } + ], + "user_mentions": [ + { + "screen_name": "kevinmarks", + "id_str": "57203", + "id": 57203, + "indices": [ + 3, + 14 + ], + "name": "Kevin Marks" + } + ] + }, + "created_at": "Fri Jan 08 03:47:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685306865635336192, + "text": "RT @kevinmarks: \u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 235193328, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 151, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1183041", + "following": false, + "friends_count": 335, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wilwheaton.net/2009/02/what-t\u2026", + "url": "http://t.co/UAYYOhbijM", + "expanded_url": "http://wilwheaton.net/2009/02/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "F6101E", + "geo_enabled": false, + "followers_count": 2966166, + "location": "Los Angeles", + "screen_name": "wilw", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 38875, + "name": "Wil Wheaton", + "profile_use_background_image": true, + "description": "Barrelslayer. Time Lord. Fake geek girl. On a good day I am charming as fuck.", + "url": "http://t.co/UAYYOhbijM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", + "profile_background_color": "022330", + "created_at": "Wed Mar 14 21:25:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", + "favourites_count": 445, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685630321258172416", + "id": 685630321258172416, + "text": "LOS ANGELES you really want to see what's left of this sunset.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:13:01 +0000 2016", + "source": "Tweetings for Android", + "favorite_count": 11, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 1183041, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", + "statuses_count": 60971, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183041/1368668860", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24184180", + "following": false, + "friends_count": 150, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "004A05", + "geo_enabled": true, + "followers_count": 283, + "location": "", + "screen_name": "xanderdumaine", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 31, + "name": "Xander Dumaine", + "profile_use_background_image": true, + "description": "still trying. sometimes I have Opinions\u2122 which are my own, and do not represent my employer. Retweets do not imply endorsement.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Mar 13 14:59:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", + "favourites_count": 1252, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 237534782, + "possibly_sensitive": false, + "id_str": "685584914973089792", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/necrosofty/sta\u2026", + "url": "https://t.co/9jl9UNHv0s", + "expanded_url": "https://twitter.com/necrosofty/status/685270713792466944", + "indices": [ + 13, + 36 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MattCheely", + "id_str": "237534782", + "id": 237534782, + "indices": [ + 0, + 11 + ], + "name": "Matt Cheely" + } + ] + }, + "created_at": "Fri Jan 08 22:12:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "237534782", + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0122292c5bc9ff29.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -78.881022, + 35.796927 + ], + [ + -78.786799, + 35.796927 + ], + [ + -78.786799, + 35.870756 + ], + [ + -78.881022, + 35.870756 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Morrisville, NC", + "id": "0122292c5bc9ff29", + "name": "Morrisville" + }, + "in_reply_to_screen_name": "MattCheely", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685584914973089792, + "text": "@MattCheely https://t.co/9jl9UNHv0s", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 24184180, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", + "statuses_count": 18329, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/24184180/1452092382", + "is_translator": false + }, + { + "time_zone": "Melbourne", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "79227302", + "following": false, + "friends_count": 30, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fastmail.com", + "url": "https://t.co/ckOsRTyp9h", + "expanded_url": "https://www.fastmail.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "44567E", + "geo_enabled": true, + "followers_count": 5651, + "location": "Melbourne, Australia", + "screen_name": "FastMailFM", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 239, + "name": "FastMail", + "profile_use_background_image": true, + "description": "Email, calendars and contacts done right.", + "url": "https://t.co/ckOsRTyp9h", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", + "profile_background_color": "022330", + "created_at": "Fri Oct 02 16:49:48 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", + "favourites_count": 293, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "chrisWhite", + "in_reply_to_user_id": 7804242, + "in_reply_to_status_id_str": "685607110684454912", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610756151230464", + "id": 685610756151230464, + "text": "@chrisWhite No the subject tagging is independent. You can turn it off in Advaced \u2192 Spam Preferences.", + "in_reply_to_user_id_str": "7804242", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chrisWhite", + "id_str": "7804242", + "id": 7804242, + "indices": [ + 0, + 11 + ], + "name": "Chris White" + } + ] + }, + "created_at": "Fri Jan 08 23:55:16 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685607110684454912, + "lang": "en" + }, + "default_profile_image": false, + "id": 79227302, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2194, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/79227302/1403516751", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2209238580", + "following": false, + "friends_count": 2044, + "entities": { + "description": { + "urls": [ + { + "display_url": "github.com/StackStorm/st2", + "url": "https://t.co/sd2EyabsN0", + "expanded_url": "https://github.com/StackStorm/st2", + "indices": [ + 100, + 123 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "stackstorm.com", + "url": "http://t.co/5oR6MbHPSq", + "expanded_url": "http://www.stackstorm.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2407, + "location": "Palo Alto, CA", + "screen_name": "Stack_Storm", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 110, + "name": "StackStorm", + "profile_use_background_image": true, + "description": "Event driven operations. Sometimes called IFTTT for IT ops. Open source. Auto-remediation and more.\nhttps://t.co/sd2EyabsN0", + "url": "http://t.co/5oR6MbHPSq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Nov 22 16:42:49 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", + "favourites_count": 548, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685551803044249600", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "redd.it/3ztcla", + "url": "https://t.co/C6Wa98PSra", + "expanded_url": "https://redd.it/3ztcla", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [ + { + "indices": [ + 20, + 28 + ], + "text": "chatops" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:01:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685551803044249600, + "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685561768551186432", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "redd.it/3ztcla", + "url": "https://t.co/C6Wa98PSra", + "expanded_url": "https://redd.it/3ztcla", + "indices": [ + 108, + 131 + ] + } + ], + "hashtags": [ + { + "indices": [ + 36, + 44 + ], + "text": "chatops" + } + ], + "user_mentions": [ + { + "screen_name": "epowell101", + "id_str": "15119662", + "id": 15119662, + "indices": [ + 3, + 14 + ], + "name": "Evan Powell" + } + ] + }, + "created_at": "Fri Jan 08 20:40:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685561768551186432, + "text": "RT @epowell101: Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2209238580, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1667, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209238580/1414949794", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "160640740", + "following": false, + "friends_count": 1203, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/marcomorain", + "url": "https://t.co/QNDuJQAZ6V", + "expanded_url": "https://github.com/marcomorain", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 503, + "location": "Dublin, Ireland", + "screen_name": "atmarc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "Marc O'Merriment", + "profile_use_background_image": true, + "description": "Developer at @CircleCI Previously Swrve, Havok and Kore Virtual Machines.", + "url": "https://t.co/QNDuJQAZ6V", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Mon Jun 28 19:06:33 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", + "favourites_count": 3499, + "status": { + "retweet_count": 32, + "retweeted_status": { + "retweet_count": 32, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685581797850279937", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:00:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685581797850279937, + "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 33, + "contributors": null, + "source": "Mobile Web (M5)" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685582745637109760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.twitter.com/mjasay/status/\u2026", + "url": "https://t.co/V9CWXyC8lL", + "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tomdale", + "id_str": "668863", + "id": 668863, + "indices": [ + 3, + 11 + ], + "name": "Tom Dale" + } + ] + }, + "created_at": "Fri Jan 08 22:03:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685582745637109760, + "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 160640740, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 4682, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/160640740/1398359765", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13470", + "following": false, + "friends_count": 1409, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sauria.com/blog", + "url": "http://t.co/UB3y8QBrA6", + "expanded_url": "http://www.sauria.com/blog", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 2849, + "location": "Bainbridge Island, WA", + "screen_name": "twleung", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 218, + "name": "Ted Leung", + "profile_use_background_image": true, + "description": "photographs, modern programming languages, embedded systems, and commons based peer production. Leading the Playmation software team at The Walt Disney Company.", + "url": "http://t.co/UB3y8QBrA6", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Nov 21 09:23:47 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", + "favourites_count": 4072, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jaxzin", + "in_reply_to_user_id": 14320521, + "in_reply_to_status_id_str": "684776564093931521", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684784895512584192", + "id": 684784895512584192, + "text": "@jaxzin what do you think is the magic price point?", + "in_reply_to_user_id_str": "14320521", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jaxzin", + "id_str": "14320521", + "id": 14320521, + "indices": [ + 0, + 7 + ], + "name": "Brian R. Jackson" + } + ] + }, + "created_at": "Wed Jan 06 17:13:36 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684776564093931521, + "lang": "en" + }, + "default_profile_image": false, + "id": 13470, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 9358, + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "50599894", + "following": false, + "friends_count": 1352, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 955, + "location": "Paris, France", + "screen_name": "nyconyco", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 72, + "name": "Nicolas V\u00e9rit\u00e9, N\u00ffco", + "profile_use_background_image": true, + "description": "Product Owner @ErlangSolutions, President at @LinuxFrOrg #FLOSS #OpenSource #TheOpenOrg #Agile #LeanStartup #DesignThinking #GrowthHacking", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu Jun 25 09:26:17 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", + "favourites_count": 343, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685537987355111426", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1O8FVAd", + "url": "https://t.co/IxvtPzMNtO", + "expanded_url": "http://buff.ly/1O8FVAd", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [ + { + "indices": [ + 2, + 11 + ], + "text": "Startups" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:06:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685537987355111426, + "text": "8 #Startups, 4 IPO's, Lost $35m of Investors Money to Paying Them Back $1b Each! Startup Lessons From Steve Blank https://t.co/IxvtPzMNtO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 50599894, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 4281, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/50599894/1358775155", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "106621747", + "following": false, + "friends_count": 100, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "B30645", + "geo_enabled": true, + "followers_count": 734, + "location": "", + "screen_name": "KalieCatt", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 40, + "name": "Kalie Fry", + "profile_use_background_image": true, + "description": "director of engagement marketing at @gomcmkt. wordsmith. social media jedi. closet creative. coffee connoisseur. classic novel enthusiast.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Jan 20 04:01:25 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", + "favourites_count": 6311, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685351275647516672", + "id": 685351275647516672, + "text": "So, I've been in an emoji formula battle all day and need to phone a friend. Want to help me solve?\n\n\u2754\u2795\u2702\ufe0f=\u2753\n\u2754\u2795\ud83c\uddf3\ud83c\uddec= \u2753\u2753\n\u2754\u2754\u2795(\u2796\ud83c\udf32\u2795\ud83d\udd34\u2795\ud83c\udf41)=\u2753\u2753", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 06:44:11 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 106621747, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", + "statuses_count": 2130, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/106621747/1430221319", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "459492917", + "following": false, + "friends_count": 3657, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "howhackersthink.com", + "url": "http://t.co/IBghUiKudG", + "expanded_url": "http://www.howhackersthink.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3816, + "location": "Washington, DC", + "screen_name": "HowHackersThink", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 178, + "name": "HowHackersThink", + "profile_use_background_image": true, + "description": "Hacker. Consultant. Cyber Strategist. Writer. Professor. Public speaker. Researcher. Innovator. Advocate. All tweets and views are my own.", + "url": "http://t.co/IBghUiKudG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Mon Jan 09 18:43:40 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", + "favourites_count": 693, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "684614746486759424", + "id": 684614746486759424, + "text": "The most complex things in this life: the mind and the universe. I study the mind on my way to understanding the universe. #HowHackersThink", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 123, + 139 + ], + "text": "HowHackersThink" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 05:57:29 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 459492917, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2888, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/459492917/1436656035", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "110735547", + "following": false, + "friends_count": 514, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 162, + "location": "Camden, ME", + "screen_name": "kjstone00", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "Kevin Stone", + "profile_use_background_image": true, + "description": "dad, ops, monitoring, dogs, cats, chickens. Fledgling home brewer. Living life the way it should be in Maine", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 02 15:59:41 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", + "favourites_count": 421, + "status": { + "retweet_count": 3, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "685560813327925248", + "id": 685560813327925248, + "text": "\"mistakes will happen; negligence cannot\" /via @jeffbonwick 1994. #beforeDevopsWasDevops", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 66, + 88 + ], + "text": "beforeDevopsWasDevops" + } + ], + "user_mentions": [ + { + "screen_name": "jeffbonwick", + "id_str": "377264079", + "id": 377264079, + "indices": [ + 47, + 59 + ], + "name": "Jeff Bonwick" + } + ] + }, + "created_at": "Fri Jan 08 20:36:49 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685620787399753728", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 81, + 103 + ], + "text": "beforeDevopsWasDevops" + } + ], + "user_mentions": [ + { + "screen_name": "robtreat2", + "id_str": "14497060", + "id": 14497060, + "indices": [ + 3, + 13 + ], + "name": "Robert Treat" + }, + { + "screen_name": "jeffbonwick", + "id_str": "377264079", + "id": 377264079, + "indices": [ + 62, + 74 + ], + "name": "Jeff Bonwick" + } + ] + }, + "created_at": "Sat Jan 09 00:35:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685620787399753728, + "text": "RT @robtreat2: \"mistakes will happen; negligence cannot\" /via @jeffbonwick 1994. #beforeDevopsWasDevops", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 110735547, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3643, + "is_translator": false + }, + { + "time_zone": "Ljubljana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "59282163", + "following": false, + "friends_count": 876, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lstoll.net", + "url": "https://t.co/zymtFzZre6", + "expanded_url": "http://lstoll.net", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "666666", + "geo_enabled": true, + "followers_count": 41022, + "location": "Cleveland, OH", + "screen_name": "lstoll", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 125, + "name": "Kernel Sanders", + "profile_use_background_image": true, + "description": "Just some rando Australian operating computers and stuff at @Heroku. Previously @DigitalOcean, @GitHub, @Heroku.", + "url": "https://t.co/zymtFzZre6", + "profile_text_color": "000000", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", + "profile_background_color": "352726", + "created_at": "Wed Jul 22 23:05:12 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", + "favourites_count": 14331, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -81.877771, + 41.392684 + ], + [ + -81.5331634, + 41.392684 + ], + [ + -81.5331634, + 41.599195 + ], + [ + -81.877771, + 41.599195 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Cleveland, OH", + "id": "0eb9676d24b211f1", + "name": "Cleveland" + }, + "in_reply_to_screen_name": "klimpong", + "in_reply_to_user_id": 4600051, + "in_reply_to_status_id_str": "685598770684411904", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685599007415078913", + "id": 685599007415078913, + "text": "@klimpong Bonjour (That's french too)", + "in_reply_to_user_id_str": "4600051", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "klimpong", + "id_str": "4600051", + "id": 4600051, + "indices": [ + 0, + 9 + ], + "name": "Till" + } + ] + }, + "created_at": "Fri Jan 08 23:08:35 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685598770684411904, + "lang": "en" + }, + "default_profile_image": false, + "id": 59282163, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 28104, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "163457790", + "following": false, + "friends_count": 1421, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eligible.com", + "url": "https://t.co/zeacfox6vu", + "expanded_url": "http://eligible.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 15359, + "location": "San Francisco \u21c6 Brooklyn ", + "screen_name": "katgleason", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 172, + "name": "Katelyn Gleason", + "profile_use_background_image": false, + "description": "S12 YC alum. CEO @eligibleapi", + "url": "https://t.co/zeacfox6vu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jul 06 13:33:13 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", + "favourites_count": 2503, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "kirillzubovsky", + "in_reply_to_user_id": 17541787, + "in_reply_to_status_id_str": "685529873138323456", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685531559508721664", + "id": 685531559508721664, + "text": "@kirillzubovsky @davemorin LOL that's definitely going in the folder", + "in_reply_to_user_id_str": "17541787", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kirillzubovsky", + "id_str": "17541787", + "id": 17541787, + "indices": [ + 0, + 15 + ], + "name": "Kirill Zubovsky" + }, + { + "screen_name": "davemorin", + "id_str": "3475", + "id": 3475, + "indices": [ + 16, + 26 + ], + "name": "Dave Morin" + } + ] + }, + "created_at": "Fri Jan 08 18:40:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685529873138323456, + "lang": "en" + }, + "default_profile_image": false, + "id": 163457790, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", + "statuses_count": 6273, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3998615773", + "following": false, + "friends_count": 5001, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "devopsdad.com", + "url": "https://t.co/JrNXHr85zj", + "expanded_url": "http://devopsdad.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "500A53", + "geo_enabled": false, + "followers_count": 1286, + "location": "Texas, USA", + "screen_name": "TheDevOpsDad", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 25, + "name": "Roel Pasetes", + "profile_use_background_image": false, + "description": "DevOps Engineer and Dad. Love 'em Both.", + "url": "https://t.co/JrNXHr85zj", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Oct 24 04:34:34 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", + "favourites_count": 7, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682441217653796865", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 193, + "h": 186, + "resize": "fit" + }, + "small": { + "w": 193, + "h": 186, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 193, + "h": 186, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", + "type": "photo", + "indices": [ + 83, + 106 + ], + "media_url": "http://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", + "display_url": "pic.twitter.com/ZKCpgU3ctc", + "id_str": "682441217536294912", + "expanded_url": "http://twitter.com/TheDevOpsDad/status/682441217653796865/photo/1", + "id": 682441217536294912, + "url": "https://t.co/ZKCpgU3ctc" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Mr6ClV", + "url": "https://t.co/vNHAVlc1So", + "expanded_url": "http://buff.ly/1Mr6ClV", + "indices": [ + 59, + 82 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 06:00:40 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682441217653796865, + "text": "What can Joey from Friends teach us about our devops work? https://t.co/vNHAVlc1So https://t.co/ZKCpgU3ctc", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 3998615773, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 95, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3998615773/1445662297", + "is_translator": false + }, + { + "time_zone": "Tijuana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16364066", + "following": false, + "friends_count": 505, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/mcoates", + "url": "https://t.co/uNCdooglSE", + "expanded_url": "http://www.linkedin.com/in/mcoates", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "001C8A", + "geo_enabled": true, + "followers_count": 5194, + "location": "San Francisco, CA", + "screen_name": "_mwc", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 254, + "name": "Michael Coates \u2604", + "profile_use_background_image": false, + "description": "Trust & Info Security Officer @Twitter, @OWASP Global Board, Former @Mozilla", + "url": "https://t.co/uNCdooglSE", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Sep 19 14:41:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", + "favourites_count": 349, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685553622675935232", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/chrismessina/s\u2026", + "url": "https://t.co/ic0IlFWa29", + "expanded_url": "https://twitter.com/chrismessina/status/685218795435077633", + "indices": [ + 62, + 85 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chrismessina", + "id_str": "1186", + "id": 1186, + "indices": [ + 21, + 34 + ], + "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e" + } + ] + }, + "created_at": "Fri Jan 08 20:08:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685553622675935232, + "text": "I'm with you on that @chrismessina. This is just odd at best. https://t.co/ic0IlFWa29", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16364066, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3515, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16364066/1443650382", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "93954161", + "following": false, + "friends_count": 347, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 16539, + "location": "San Francisco", + "screen_name": "aroetter", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 176, + "name": "Alex Roetter", + "profile_use_background_image": true, + "description": "SVP Engineering @ Twitter. Parenthood, Aviation, Alpinism, Sandwiches. Fighting gravity but usually losing.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 01 22:04:13 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", + "favourites_count": 2838, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "NShivakumar", + "in_reply_to_user_id": 41315003, + "in_reply_to_status_id_str": "685585778076848128", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685586111687622656", + "id": 685586111687622656, + "text": "@NShivakumar congrats!", + "in_reply_to_user_id_str": "41315003", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "NShivakumar", + "id_str": "41315003", + "id": 41315003, + "indices": [ + 0, + 12 + ], + "name": "Shiva Shivakumar" + } + ] + }, + "created_at": "Fri Jan 08 22:17:21 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685585778076848128, + "lang": "en" + }, + "default_profile_image": false, + "id": 93954161, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2322, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/93954161/1385781289", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "11873632", + "following": false, + "friends_count": 871, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lewisheadden.com", + "url": "http://t.co/LYuJlxmvg5", + "expanded_url": "http://www.lewisheadden.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1039, + "location": "New York City", + "screen_name": "lewisheadden", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "Lewis Headden", + "profile_use_background_image": true, + "description": "Scotsman, New Yorker, Photoshopper, Christian. DevOps Engineer at @CondeNast. Formerly @AmazonDevScot, @AetherworksLLC, @StAndrewsCS.", + "url": "http://t.co/LYuJlxmvg5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jan 05 13:06:09 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", + "favourites_count": 785, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685121406753976320", + "id": 685121406753976320, + "text": "You know Thursday morning is a struggle when you're debating microfoam and the \"Third Wave of Coffee\".", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 15:30:46 +0000 2016", + "source": "TweetDeck", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 11873632, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4814, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11873632/1409756044", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16022957", + "following": false, + "friends_count": 2120, + "entities": { + "description": { + "urls": [ + { + "display_url": "keybase.io/markaci", + "url": "https://t.co/n8kTLKcwJx", + "expanded_url": "http://keybase.io/markaci", + "indices": [ + 137, + 160 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/markdobrowo\u2026", + "url": "https://t.co/iw20KWBDrr", + "expanded_url": "https://linkedin.com/in/markdobrowolski", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "1F2A3D", + "geo_enabled": true, + "followers_count": 1003, + "location": "Toronto, Canada", + "screen_name": "markaci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 73, + "name": "mar\u10d9\u10d0\u10ea\u10d8", + "profile_use_background_image": true, + "description": "Mark Dobrowolski - Information Security & Risk Management Professional; disruptor, innovator, rainmaker, student, friend. RT\u2260endorsement https://t.co/n8kTLKcwJx", + "url": "https://t.co/iw20KWBDrr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Thu Aug 28 03:58:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", + "favourites_count": 9595, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685616067994083328", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "washingtonpost.com/news/grade-poi\u2026", + "url": "https://t.co/HwJvphxgkP", + "expanded_url": "https://www.washingtonpost.com/news/grade-point/wp/2016/01/07/my-college-got-caught-up-in-the-horrifying-rage-over-wheatons-muslim-christian-god-debate/?wpmm=1&wpisrc=nl_highered", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:16:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685616067994083328, + "text": "My college got caught up in the horrifying rage over Wheaton's Muslim-Christian God debate https://t.co/HwJvphxgkP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685624878406434816", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "washingtonpost.com/news/grade-poi\u2026", + "url": "https://t.co/HwJvphxgkP", + "expanded_url": "https://www.washingtonpost.com/news/grade-point/wp/2016/01/07/my-college-got-caught-up-in-the-horrifying-rage-over-wheatons-muslim-christian-god-debate/?wpmm=1&wpisrc=nl_highered", + "indices": [ + 105, + 128 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sambowne", + "id_str": "20961162", + "id": 20961162, + "indices": [ + 3, + 12 + ], + "name": "Sam Bowne" + } + ] + }, + "created_at": "Sat Jan 09 00:51:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685624878406434816, + "text": "RT @sambowne: My college got caught up in the horrifying rage over Wheaton's Muslim-Christian God debate https://t.co/HwJvphxgkP", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 16022957, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 19135, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16022957/1394348072", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "70916267", + "following": false, + "friends_count": 276, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 177, + "location": "Bradford", + "screen_name": "developer_gg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Gordon Brown", + "profile_use_background_image": true, + "description": "I like computers, beer and coffee, but not necessarily in that order. I also try to run occasionally. Consultant at @ukinfinityworks.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 02 08:33:20 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", + "favourites_count": 128, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ToxicTourniquet", + "in_reply_to_user_id": 53144530, + "in_reply_to_status_id_str": "685381555305484288", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685382327615238145", + "id": 685382327615238145, + "text": "@ToxicTourniquet @Staticman1 @PayByPhone_UK you can - I just did - 0330 400 7275. You'll still need your location code.", + "in_reply_to_user_id_str": "53144530", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ToxicTourniquet", + "id_str": "53144530", + "id": 53144530, + "indices": [ + 0, + 16 + ], + "name": "Tam" + }, + { + "screen_name": "Staticman1", + "id_str": "56454758", + "id": 56454758, + "indices": [ + 17, + 28 + ], + "name": "James Hawkins" + }, + { + "screen_name": "PayByPhone_UK", + "id_str": "436714561", + "id": 436714561, + "indices": [ + 29, + 43 + ], + "name": "PayByPhone UK" + } + ] + }, + "created_at": "Fri Jan 08 08:47:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685381555305484288, + "lang": "en" + }, + "default_profile_image": false, + "id": 70916267, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 509, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "19734656", + "following": false, + "friends_count": 1068, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "realgenekim.me", + "url": "http://t.co/IBvzJu7jHq", + "expanded_url": "http://realgenekim.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 18784, + "location": "\u00dcT: 45.527981,-122.670577", + "screen_name": "RealGeneKim", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1035, + "name": "Gene Kim", + "profile_use_background_image": true, + "description": "DevOps enthusiast, The Phoenix Project co-author, Tripwire founder, Visible Ops co-author, IT Ops/Security Researcher, Theory of Constraints Jonah, rabid UX fan", + "url": "http://t.co/IBvzJu7jHq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jan 29 21:10:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", + "favourites_count": 1122, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jsomers", + "in_reply_to_user_id": 6073472, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685621037677953024", + "id": 685621037677953024, + "text": "@jsomers It's freaking brilliant! Brilliant work! There's a book I've been working on for 4 yrs that I'd love to do the analysis on.", + "in_reply_to_user_id_str": "6073472", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jsomers", + "id_str": "6073472", + "id": 6073472, + "indices": [ + 0, + 8 + ], + "name": "James Somers" + } + ] + }, + "created_at": "Sat Jan 09 00:36:08 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 19734656, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 17250, + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "12614742", + "following": false, + "friends_count": 1437, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "testobsessed.com", + "url": "http://t.co/QKSEPgi0Ad", + "expanded_url": "http://www.testobsessed.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": false, + "followers_count": 10876, + "location": "Palo Alto, California, USA", + "screen_name": "testobsessed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 808, + "name": "ElisabethHendrickson", + "profile_use_background_image": true, + "description": "Author of Explore It! Recovering consultant. I work on Big Data at @pivotal but speak only for myself.", + "url": "http://t.co/QKSEPgi0Ad", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", + "profile_background_color": "EDECE9", + "created_at": "Wed Jan 23 21:49:39 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", + "favourites_count": 9737, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685086119029948418", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/LindaRegber/st\u2026", + "url": "https://t.co/qCHRQzRBKE", + "expanded_url": "https://twitter.com/LindaRegber/status/683294175752810496", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 13:10:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685086119029948418, + "text": "Love the visualization. https://t.co/qCHRQzRBKE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 12614742, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "statuses_count": 17738, + "is_translator": false + }, + { + "time_zone": "Stockholm", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "155247426", + "following": false, + "friends_count": 391, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "loweschmidt.se", + "url": "http://t.co/bqChHrmryK", + "expanded_url": "http://loweschmidt.se", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 273, + "location": "Stockholm, Sweden", + "screen_name": "loweschmidt", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 31, + "name": "Lowe Schmidt", + "profile_use_background_image": true, + "description": "FLOSS fan, DevOps advocate, sysadmin for hire @init_ab. (neo)vim user, @sthlmdevops founder and beer collector @untappd. I also like tattoos.", + "url": "http://t.co/bqChHrmryK", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Jun 13 15:45:23 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", + "favourites_count": 608, + "status": { + "retweet_count": 9, + "retweeted_status": { + "retweet_count": 9, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685585057948434432", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 125, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 220, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 376, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "type": "photo", + "indices": [ + 107, + 130 + ], + "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "display_url": "pic.twitter.com/IEQVTQqJVK", + "id_str": "685584988327116800", + "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", + "id": 685584988327116800, + "url": "https://t.co/IEQVTQqJVK" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "facebook.com/notes/matty-gr\u2026", + "url": "https://t.co/bgCQtDeUtW", + "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:13:10 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685585057948434432, + "text": "Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJVK", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685587439931551744", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 125, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 220, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 376, + "resize": "fit" + } + }, + "source_status_id_str": "685585057948434432", + "url": "https://t.co/IEQVTQqJVK", + "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "source_user_id_str": "18137723", + "id_str": "685584988327116800", + "id": 685584988327116800, + "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", + "type": "photo", + "indices": [ + 122, + 144 + ], + "source_status_id": 685585057948434432, + "source_user_id": 18137723, + "display_url": "pic.twitter.com/IEQVTQqJVK", + "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "facebook.com/notes/matty-gr\u2026", + "url": "https://t.co/bgCQtDeUtW", + "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", + "indices": [ + 98, + 121 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "raganwald", + "id_str": "18137723", + "id": 18137723, + "indices": [ + 3, + 13 + ], + "name": "Reginald Braithwaite" + } + ] + }, + "created_at": "Fri Jan 08 22:22:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685587439931551744, + "text": "RT @raganwald: Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJ\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 155247426, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 10749, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/155247426/1372113776", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14946551", + "following": false, + "friends_count": 233, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/thedoh", + "url": "https://t.co/75FomxWTf2", + "expanded_url": "https://twitter.com/thedoh", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": false, + "followers_count": 332, + "location": "Toronto, Ontario", + "screen_name": "thedoh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 38, + "name": "Lisa Seelye", + "profile_use_background_image": true, + "description": "Magic, sysadmin, learner", + "url": "https://t.co/75FomxWTf2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Thu May 29 18:28:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9B17E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", + "favourites_count": 372, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685593686432825344", + "id": 685593686432825344, + "text": "Skipping FNM tonight. Not feeling it.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:47:27 +0000 2016", + "source": "Twitterrific for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14946551, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", + "statuses_count": 20006, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "80200818", + "following": false, + "friends_count": 587, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "100357", + "geo_enabled": true, + "followers_count": 328, + "location": "memphis \u2708 seattle", + "screen_name": "edyesed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 77, + "name": "that guy", + "profile_use_background_image": true, + "description": "asdf;lkj... #dadops #devops", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Oct 06 03:09:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", + "favourites_count": 3601, + "status": { + "retweet_count": 2, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685582326827499520", + "id": 685582326827499520, + "text": "Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told me?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:02:18 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685590780581249024", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JeffSaidSo", + "id_str": "171544323", + "id": 171544323, + "indices": [ + 3, + 14 + ], + "name": "Jeff Allen" + } + ] + }, + "created_at": "Fri Jan 08 22:35:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685590780581249024, + "text": "RT @JeffSaidSo: Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 80200818, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", + "statuses_count": 8489, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/80200818/1419223168", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "913200547", + "following": false, + "friends_count": 1308, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nickshemonsky.com", + "url": "http://t.co/xWPpyxcm6U", + "expanded_url": "http://www.nickshemonsky.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "657B83", + "geo_enabled": false, + "followers_count": 279, + "location": "Pottsville, PA", + "screen_name": "nshemonsky", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 16, + "name": "Nick Shemonsky", + "profile_use_background_image": false, + "description": "@BlueBox Ops | @Penn_State alum | #CraftBeer Enthusiast | Fly @Eagles Fly! | Runner", + "url": "http://t.co/xWPpyxcm6U", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", + "profile_background_color": "004454", + "created_at": "Mon Oct 29 20:37:31 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", + "favourites_count": 126, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MassHaste", + "in_reply_to_user_id": 27139651, + "in_reply_to_status_id_str": "685500343506071553", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685501930177597440", + "id": 685501930177597440, + "text": "@MassHaste @biscuitbitch They make a good americano as well.", + "in_reply_to_user_id_str": "27139651", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MassHaste", + "id_str": "27139651", + "id": 27139651, + "indices": [ + 0, + 10 + ], + "name": "Ruben Orduz" + }, + { + "screen_name": "biscuitbitch", + "id_str": "704580546", + "id": 704580546, + "indices": [ + 11, + 24 + ], + "name": "Biscuit Bitch" + } + ] + }, + "created_at": "Fri Jan 08 16:42:50 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685500343506071553, + "lang": "en" + }, + "default_profile_image": false, + "id": 913200547, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", + "statuses_count": 923, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/913200547/1429793800", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2838111", + "following": false, + "friends_count": 456, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mcdermottroe.com", + "url": "http://t.co/6FjMMOcAIA", + "expanded_url": "http://www.mcdermottroe.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 793, + "location": "Dublin, Ireland", + "screen_name": "IRLConor", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 37, + "name": "Conor McDermottroe", + "profile_use_background_image": true, + "description": "I'm a software developer for @circleci. I'm also a competitive rifle shooter for @targetshooting and @durifle.", + "url": "http://t.co/6FjMMOcAIA", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 29 13:35:37 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", + "favourites_count": 479, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "courtewing", + "in_reply_to_user_id": 25573729, + "in_reply_to_status_id_str": "684739332087910400", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684739489403645952", + "id": 684739489403645952, + "text": "@courtewing @cloudsteph Read position, read indicators on DMs (totally broken on Twitter itself) and mute filters among other things.", + "in_reply_to_user_id_str": "25573729", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "courtewing", + "id_str": "25573729", + "id": 25573729, + "indices": [ + 0, + 11 + ], + "name": "Court Ewing" + }, + { + "screen_name": "cloudsteph", + "id_str": "15389419", + "id": 15389419, + "indices": [ + 12, + 23 + ], + "name": "Stephie Graphics" + } + ] + }, + "created_at": "Wed Jan 06 14:13:10 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684739332087910400, + "lang": "en" + }, + "default_profile_image": false, + "id": 2838111, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5257, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2838111/1396367369", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "104164496", + "following": false, + "friends_count": 2020, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dribbble.com/danielbeere", + "url": "http://t.co/6ZvS9hPEgV", + "expanded_url": "http://dribbble.com/danielbeere", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "663399", + "geo_enabled": false, + "followers_count": 823, + "location": "San Francisco", + "screen_name": "DanielBeere", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 115, + "name": "Daniel Beere", + "profile_use_background_image": true, + "description": "Irish designer in SF @circleci \u270c\ufe0f", + "url": "http://t.co/6ZvS9hPEgV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jan 12 13:41:22 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBE9ED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", + "favourites_count": 2203, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 604516513, + "possibly_sensitive": false, + "id_str": "685495163859394562", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amazon.com/Yogi-Teas-Bags\u2026", + "url": "https://t.co/urUptC9Tt3", + "expanded_url": "http://www.amazon.com/Yogi-Teas-Bags-Stess-Relief/dp/B0009F3QKW", + "indices": [ + 11, + 34 + ] + }, + { + "display_url": "fourhourworkweek.com/2016/01/03/new\u2026", + "url": "https://t.co/ljyONNyI0B", + "expanded_url": "http://fourhourworkweek.com/2016/01/03/new-years-resolutions", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "beerhoff1", + "id_str": "604516513", + "id": 604516513, + "indices": [ + 0, + 10 + ], + "name": "Shane Beere" + }, + { + "screen_name": "kevinrose", + "id_str": "657863", + "id": 657863, + "indices": [ + 53, + 63 + ], + "name": "Kevin Rose" + }, + { + "screen_name": "tferriss", + "id_str": "11740902", + "id": 11740902, + "indices": [ + 67, + 76 + ], + "name": "Tim Ferriss" + } + ] + }, + "created_at": "Fri Jan 08 16:15:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "604516513", + "place": null, + "in_reply_to_screen_name": "beerhoff1", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685495163859394562, + "text": "@beerhoff1 https://t.co/urUptC9Tt3 as recommended by @kevinrose on @tferriss show: https://t.co/ljyONNyI0B", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 104164496, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", + "statuses_count": 6830, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/104164496/1375219663", + "is_translator": false + }, + { + "time_zone": "Vienna", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "39625343", + "following": false, + "friends_count": 446, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blag.esotericsystems.at", + "url": "https://t.co/NexvmiW4Zx", + "expanded_url": "https://blag.esotericsystems.at/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": false, + "followers_count": 781, + "location": "They/Their Land", + "screen_name": "hirojin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "The Wrath of me\u2122", + "profile_use_background_image": true, + "description": "disappointing expectations since 1894.", + "url": "https://t.co/NexvmiW4Zx", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Tue May 12 23:20:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", + "favourites_count": 18074, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "aesmael", + "in_reply_to_user_id": 18427820, + "in_reply_to_status_id_str": "685618373426724865", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685619465015418882", + "id": 685619465015418882, + "text": "@aesmael seriously: same.", + "in_reply_to_user_id_str": "18427820", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "aesmael", + "id_str": "18427820", + "id": 18427820, + "indices": [ + 0, + 8 + ], + "name": "Vulpecula" + } + ] + }, + "created_at": "Sat Jan 09 00:29:53 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685618373426724865, + "lang": "en" + }, + "default_profile_image": false, + "id": 39625343, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", + "statuses_count": 32422, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39625343/1401366515", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "12143922", + "following": false, + "friends_count": 1036, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "markn.ca", + "url": "http://t.co/n78rBOUVWU", + "expanded_url": "http://markn.ca", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", + "notifications": false, + "profile_sidebar_fill_color": "595D62", + "profile_link_color": "67BACA", + "geo_enabled": false, + "followers_count": 3456, + "location": "::1", + "screen_name": "marknca", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 446, + "name": "Mark Nunnikhoven", + "profile_use_background_image": false, + "description": "Vice President, Cloud Research @TrendMicro. \n\nResearching & teaching cloud & usable security systems at scale. Opinionated but always looking to learn.", + "url": "http://t.co/n78rBOUVWU", + "profile_text_color": "50A394", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", + "profile_background_color": "525055", + "created_at": "Sat Jan 12 04:41:20 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", + "favourites_count": 1975, + "status": { + "retweet_count": 41, + "retweeted_status": { + "retweet_count": 41, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685596159088443392", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.jquery.com/2016/01/08/jqu\u2026", + "url": "https://t.co/VroeFOmHeD", + "expanded_url": "http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:57:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685596159088443392, + "text": "jQuery 2.2 and 1.12 are released, with performance improvements, SVG class manipulation and Symbol support in ES6. https://t.co/VroeFOmHeD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 43, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685626577477046272", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.jquery.com/2016/01/08/jqu\u2026", + "url": "https://t.co/VroeFOmHeD", + "expanded_url": "http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "smashingmag", + "id_str": "15736190", + "id": 15736190, + "indices": [ + 3, + 15 + ], + "name": "Smashing Magazine" + } + ] + }, + "created_at": "Sat Jan 09 00:58:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685626577477046272, + "text": "RT @smashingmag: jQuery 2.2 and 1.12 are released, with performance improvements, SVG class manipulation and Symbol support in ES6. https:/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 12143922, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", + "statuses_count": 35452, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12143922/1397706275", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8866232", + "following": false, + "friends_count": 2005, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mattrogish.com", + "url": "http://t.co/yCK1Z82dhE", + "expanded_url": "http://www.mattrogish.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 1677, + "location": "Philadelphia, PA", + "screen_name": "MattRogish", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 233, + "name": "Matt Rogish", + "profile_use_background_image": true, + "description": "Startup janitor @ReactiveOps", + "url": "http://t.co/yCK1Z82dhE", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Fri Sep 14 01:23:45 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", + "favourites_count": 409, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685583855701594112", + "id": 685583855701594112, + "text": "Is it possible for my shower head to spray bourbon?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:08:23 +0000 2016", + "source": "TweetDeck", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685583979848830976", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mikebarish", + "id_str": "34930874", + "id": 34930874, + "indices": [ + 3, + 14 + ], + "name": "Mike Barish" + } + ] + }, + "created_at": "Fri Jan 08 22:08:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685583979848830976, + "text": "RT @mikebarish: Is it possible for my shower head to spray bourbon?", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 8866232, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", + "statuses_count": 29628, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8866232/1398194149", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1458271", + "following": false, + "friends_count": 1789, + "entities": { + "description": { + "urls": [ + { + "display_url": "mapbox.com", + "url": "https://t.co/djeLWKvmpe", + "expanded_url": "http://mapbox.com", + "indices": [ + 6, + 29 + ] + }, + { + "display_url": "github.com/tmcw", + "url": "https://t.co/j4toNgk9Vd", + "expanded_url": "https://github.com/tmcw", + "indices": [ + 36, + 59 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "macwright.org", + "url": "http://t.co/d4zmVgqQxY", + "expanded_url": "http://macwright.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "727996", + "geo_enabled": true, + "followers_count": 4338, + "location": "lon, lat", + "screen_name": "tmcw", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 336, + "name": "Tom MacWright", + "profile_use_background_image": false, + "description": "work: https://t.co/djeLWKvmpe\ncode: https://t.co/j4toNgk9Vd", + "url": "http://t.co/d4zmVgqQxY", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Mar 19 01:06:50 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", + "favourites_count": 2154, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685479131652460544", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "movingbrands.com/work/netflix", + "url": "https://t.co/jVHQei9nqB", + "expanded_url": "http://www.movingbrands.com/work/netflix", + "indices": [ + 101, + 124 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:12:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685479131652460544, + "text": "brand redesign posts that are specific about the previous design's problems are way more interesting https://t.co/jVHQei9nqB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1458271, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", + "statuses_count": 11307, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1458271/1436753023", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "821753", + "following": false, + "friends_count": 313, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "waferbaby.com", + "url": "https://t.co/qvUfWRzUDe", + "expanded_url": "http://waferbaby.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 2192, + "location": "Mos Iceland Container Store", + "screen_name": "waferbaby", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 141, + "name": "Daniel Bogan", + "profile_use_background_image": false, + "description": "I do the stuff on the Internets.", + "url": "https://t.co/qvUfWRzUDe", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", + "profile_background_color": "2E2E2E", + "created_at": "Thu Mar 08 14:02:34 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", + "favourites_count": 10157, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "collypops", + "in_reply_to_user_id": 11025002, + "in_reply_to_status_id_str": "685628007793311744", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685628439152308224", + "id": 685628439152308224, + "text": "@collypops @siothamh: WhatEVER, mudblood.", + "in_reply_to_user_id_str": "11025002", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "collypops", + "id_str": "11025002", + "id": 11025002, + "indices": [ + 0, + 10 + ], + "name": "Colin Gourlay" + }, + { + "screen_name": "siothamh", + "id_str": "821958", + "id": 821958, + "indices": [ + 11, + 20 + ], + "name": "Dana NicCaluim" + } + ] + }, + "created_at": "Sat Jan 09 01:05:32 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685628007793311744, + "lang": "en" + }, + "default_profile_image": false, + "id": 821753, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 60183, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/821753/1450081356", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "557933634", + "following": false, + "friends_count": 4062, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "saltstack.com", + "url": "http://t.co/rukw0maLdy", + "expanded_url": "http://saltstack.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "48B4FB", + "geo_enabled": false, + "followers_count": 6326, + "location": "Salt Lake City", + "screen_name": "SaltStackInc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 305, + "name": "SaltStack", + "profile_use_background_image": true, + "description": "Software to orchestrate & automate CloudOps, ITOps & DevOps at extreme speed & scale | '14 InfoWorld Technology of the Year | '13 Gartner Cool Vendor in DevOps", + "url": "http://t.co/rukw0maLdy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Apr 19 16:31:12 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", + "favourites_count": 1125, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685600728631476225", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1jM9opD", + "url": "https://t.co/TbBXqaLwrc", + "expanded_url": "http://bit.ly/1jM9opD", + "indices": [ + 90, + 113 + ] + } + ], + "hashtags": [ + { + "indices": [ + 4, + 15 + ], + "text": "SaltConf16" + } + ], + "user_mentions": [ + { + "screen_name": "LinkedIn", + "id_str": "13058772", + "id": 13058772, + "indices": [ + 27, + 36 + ], + "name": "LinkedIn" + }, + { + "screen_name": "druonysus", + "id_str": "352871356", + "id": 352871356, + "indices": [ + 38, + 48 + ], + "name": "Drew Adams" + }, + { + "screen_name": "OpenX", + "id_str": "14184143", + "id": 14184143, + "indices": [ + 52, + 58 + ], + "name": "OpenX" + }, + { + "screen_name": "ClemsonUniv", + "id_str": "23444864", + "id": 23444864, + "indices": [ + 65, + 77 + ], + "name": "Clemson University" + } + ] + }, + "created_at": "Fri Jan 08 23:15:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685600728631476225, + "text": "New #SaltConf16 talks from @LinkedIn, @druonysus of @OpenX & @ClemsonUniv now posted: https://t.co/TbBXqaLwrc Register now.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 557933634, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", + "statuses_count": 2842, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/557933634/1428941606", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3450748273", + "following": false, + "friends_count": 8, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "howdy.ai", + "url": "https://t.co/1cHNN303mV", + "expanded_url": "http://howdy.ai", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 667, + "location": "Austin, TX", + "screen_name": "HowdyAI", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Howdy", + "profile_use_background_image": false, + "description": "Your new digital coworker for Slack!", + "url": "https://t.co/1cHNN303mV", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Sep 04 18:15:13 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", + "favourites_count": 399, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mescamm", + "in_reply_to_user_id": 113094157, + "in_reply_to_status_id_str": "685485832308965376", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685600766917275648", + "id": 685600766917275648, + "text": "@mescamm Your Howdy bot is ready to go!", + "in_reply_to_user_id_str": "113094157", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mescamm", + "id_str": "113094157", + "id": 113094157, + "indices": [ + 0, + 8 + ], + "name": "Mathieu Mescam" + } + ] + }, + "created_at": "Fri Jan 08 23:15:35 +0000 2016", + "source": "Groove HQ", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685485832308965376, + "lang": "en" + }, + "default_profile_image": false, + "id": 3450748273, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 220, + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "3428227355", + "following": false, + "friends_count": 1937, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nerabus.com", + "url": "http://t.co/ZzSYPLDJDg", + "expanded_url": "http://nerabus.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "8C8C8C", + "geo_enabled": false, + "followers_count": 551, + "location": "Manchester and Cambridge, UK", + "screen_name": "computefuture", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 24, + "name": "Nerabus", + "profile_use_background_image": false, + "description": "The focal point of the Open Source hardware revolution #cto #datacenter #OpenSourceHardware #OpenSourceSilicon #FPGA", + "url": "http://t.co/ZzSYPLDJDg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Aug 17 14:43:41 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", + "favourites_count": 213, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685128917259259904", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "engt.co/1Rl04XW", + "url": "https://t.co/73ZDipi3RD", + "expanded_url": "http://engt.co/1Rl04XW", + "indices": [ + 46, + 69 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "engadget", + "id_str": "14372486", + "id": 14372486, + "indices": [ + 74, + 83 + ], + "name": "Engadget" + } + ] + }, + "created_at": "Thu Jan 07 16:00:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685128917259259904, + "text": "Amazon is selling its own processors now, too https://t.co/73ZDipi3RD via @engadget", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 3428227355, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 374, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3428227355/1442251790", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1087503266", + "following": false, + "friends_count": 311, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "levlaz.org", + "url": "https://t.co/4OB68uzJbf", + "expanded_url": "https://levlaz.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 462, + "location": "San Francisco, CA", + "screen_name": "levlaz", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 44, + "name": "Lev Lazinskiy", + "profile_use_background_image": true, + "description": "I \u2764\ufe0f\u200d Developers @CircleCI, Graduate Student @NovaSE, Veteran, Musician, Dev and Linux Geek. \u2764\ufe0f @songbing_yu", + "url": "https://t.co/4OB68uzJbf", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Sun Jan 13 23:26:26 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", + "favourites_count": 4442, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "DavidAndGoliath", + "in_reply_to_user_id": 14469175, + "in_reply_to_status_id_str": "685251764610822144", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685252027870392320", + "id": 685252027870392320, + "text": "@DavidAndGoliath @TMobile @EFF they are all horrible I'll just go without a cell provider for a while :D", + "in_reply_to_user_id_str": "14469175", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DavidAndGoliath", + "id_str": "14469175", + "id": 14469175, + "indices": [ + 0, + 16 + ], + "name": "David" + }, + { + "screen_name": "TMobile", + "id_str": "17338082", + "id": 17338082, + "indices": [ + 17, + 25 + ], + "name": "T-Mobile" + }, + { + "screen_name": "EFF", + "id_str": "4816", + "id": 4816, + "indices": [ + 26, + 30 + ], + "name": "EFF" + } + ] + }, + "created_at": "Fri Jan 08 00:09:49 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685251764610822144, + "lang": "en" + }, + "default_profile_image": false, + "id": 1087503266, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 4756, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087503266/1447471475", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2667470504", + "following": false, + "friends_count": 112, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "launchdarkly.com", + "url": "http://t.co/e7Lhd33dNc", + "expanded_url": "http://www.launchdarkly.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 255, + "location": "San Francisco", + "screen_name": "LaunchDarkly", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "LaunchDarkly", + "profile_use_background_image": true, + "description": "Control your feature launches. Feature flags as a service. Tweets about canary releases for continuous delivery.", + "url": "http://t.co/e7Lhd33dNc", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 21 23:18:43 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", + "favourites_count": 119, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685347790533296128", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z9JhG8", + "url": "https://t.co/kDewgvL5x9", + "expanded_url": "http://buff.ly/1Z9JhG8", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 06:30:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685347790533296128, + "text": "\"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685533803683512321", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z9JhG8", + "url": "https://t.co/kDewgvL5x9", + "expanded_url": "http://buff.ly/1Z9JhG8", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "divanator", + "id_str": "10184822", + "id": 10184822, + "indices": [ + 3, + 13 + ], + "name": "Div" + } + ] + }, + "created_at": "Fri Jan 08 18:49:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685533803683512321, + "text": "RT @divanator: \"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2667470504, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 548, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2667470504/1446072089", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3320603490", + "following": false, + "friends_count": 99, + "entities": { + "description": { + "urls": [ + { + "display_url": "soundcloud.com/heavybit", + "url": "https://t.co/lAnNM1oH69", + "expanded_url": "https://soundcloud.com/heavybit", + "indices": [ + 114, + 137 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": false, + "followers_count": 103, + "location": "San Francisco, CA", + "screen_name": "ContinuousCast", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "To Be Continuous", + "profile_use_background_image": false, + "description": "To Be Continuous ... a podcast on all things #ContinuousDelivery. Hosted @paulbiggar @edith_h Sponsored @heavybit https://t.co/lAnNM1oH69", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Aug 19 22:32:39 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", + "favourites_count": 8, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "stanlemon", + "in_reply_to_user_id": 14147682, + "in_reply_to_status_id_str": "685484756620857345", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685569841068048386", + "id": 685569841068048386, + "text": "@stanlemon @edith_h @paulbiggar Our producer @tedcarstensen is working on it!", + "in_reply_to_user_id_str": "14147682", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "stanlemon", + "id_str": "14147682", + "id": 14147682, + "indices": [ + 0, + 10 + ], + "name": "Stan Lemon" + }, + { + "screen_name": "edith_h", + "id_str": "14965602", + "id": 14965602, + "indices": [ + 11, + 19 + ], + "name": "Edith Harbaugh" + }, + { + "screen_name": "paulbiggar", + "id_str": "86938585", + "id": 86938585, + "indices": [ + 20, + 31 + ], + "name": "Paul Biggar" + }, + { + "screen_name": "tedcarstensen", + "id_str": "20000329", + "id": 20000329, + "indices": [ + 45, + 59 + ], + "name": "ted carstensen" + } + ] + }, + "created_at": "Fri Jan 08 21:12:42 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685484756620857345, + "lang": "en" + }, + "default_profile_image": false, + "id": 3320603490, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 107, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320603490/1440175251", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "245729302", + "following": false, + "friends_count": 1747, + "entities": { + "description": { + "urls": [ + { + "display_url": "bytemark.co.uk/support", + "url": "https://t.co/zlCkaK20Wn", + "expanded_url": "https://www.bytemark.co.uk/support", + "indices": [ + 111, + 134 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "bytemark.co.uk", + "url": "https://t.co/30hNNjVa6D", + "expanded_url": "http://www.bytemark.co.uk/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0768AA", + "geo_enabled": false, + "followers_count": 2011, + "location": "Manchester & York, UK", + "screen_name": "bytemark", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "Bytemark", + "profile_use_background_image": false, + "description": "Reliable UK hosting from \u00a310 per month. We're here to chat during office hours. Urgent problem? Email is best: https://t.co/zlCkaK20Wn", + "url": "https://t.co/30hNNjVa6D", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Feb 01 10:22:20 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", + "favourites_count": 1159, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685500519486492672", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 182, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 322, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 647, + "h": 348, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", + "type": "photo", + "indices": [ + 40, + 63 + ], + "media_url": "http://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", + "display_url": "pic.twitter.com/dzXqC0ETXZ", + "id_str": "685500516143644676", + "expanded_url": "http://twitter.com/bytemark/status/685500519486492672/photo/1", + "id": 685500516143644676, + "url": "https://t.co/dzXqC0ETXZ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:37:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685500519486492672, + "text": "Remember kids: don\u2019t copy that floppy\u2026! https://t.co/dzXqC0ETXZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 245729302, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 4660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/245729302/1445428891", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "18958102", + "following": false, + "friends_count": 2400, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "careers.stackoverflow.com/saman", + "url": "https://t.co/jnFgndfW3D", + "expanded_url": "http://careers.stackoverflow.com/saman", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 1977, + "location": "Tehran", + "screen_name": "samanismael", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 49, + "name": "Saman Ismael", + "profile_use_background_image": false, + "description": "Full Stack Developer, C & Python Lover, GNU/Linux Ninja, Open Source Fan.", + "url": "https://t.co/jnFgndfW3D", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jan 13 23:16:38 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", + "favourites_count": 2592, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "664193187326521344", + "id": 664193187326521344, + "text": "Data is the new Oil. #BigData", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 21, + 29 + ], + "text": "BigData" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Nov 10 21:29:30 +0000 2015", + "source": "TweetDeck", + "favorite_count": 8, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 18958102, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "statuses_count": 187, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18958102/1444114007", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "37681147", + "following": false, + "friends_count": 1579, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/bradyasar", + "url": "https://t.co/FqEV3wDE2u", + "expanded_url": "http://about.me/bradyasar", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 4614, + "location": "Los Angeles, CA", + "screen_name": "YasarCorp", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 139, + "name": "Brad Yasar", + "profile_use_background_image": true, + "description": "Business Architect, Entrepreneur and Investor Greater Los Angeles Area, Venture Capital & Private Equity. Equity Crowdfunding @ CrowdfundX.io", + "url": "https://t.co/FqEV3wDE2u", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon May 04 15:21:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", + "favourites_count": 15661, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685621420563558400", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 439, + "h": 333, + "resize": "fit" + }, + "medium": { + "w": 439, + "h": 333, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 257, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPRDJFWkAAW9sb.png", + "type": "photo", + "indices": [ + 88, + 111 + ], + "media_url": "http://pbs.twimg.com/media/CYPRDJFWkAAW9sb.png", + "display_url": "pic.twitter.com/maPZ5fuOi2", + "id_str": "685621420198629376", + "expanded_url": "http://twitter.com/YasarCorp/status/685621420563558400/photo/1", + "id": 685621420198629376, + "url": "https://t.co/maPZ5fuOi2" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "puls.ly/DRbAgg", + "url": "https://t.co/9v2nskwtPO", + "expanded_url": "http://puls.ly/DRbAgg", + "indices": [ + 64, + 87 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:37:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685621420563558400, + "text": "Reserve Bank of India is Actively Studying Peer to Peer Lending https://t.co/9v2nskwtPO https://t.co/maPZ5fuOi2", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Vytmn" + }, + "default_profile_image": false, + "id": 37681147, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1074, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/37681147/1382740340", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2832545398", + "following": false, + "friends_count": 4823, + "entities": { + "description": { + "urls": [ + { + "display_url": "sprawlgeek.com/p/bio.html", + "url": "https://t.co/8rLwARBvup", + "expanded_url": "http://www.sprawlgeek.com/p/bio.html", + "indices": [ + 59, + 82 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "sprawlgeek.com", + "url": "http://t.co/pUn9V1gXKx", + "expanded_url": "http://www.sprawlgeek.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 9131, + "location": "Iowa", + "screen_name": "sprawlgeek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 137, + "name": "Sprawlgeek", + "profile_use_background_image": true, + "description": "Reality from the Edge of the Network. Tablet Watchman! \nhttps://t.co/8rLwARBvup", + "url": "http://t.co/pUn9V1gXKx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", + "profile_background_color": "0084B4", + "created_at": "Wed Oct 15 19:22:42 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", + "favourites_count": 1690, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "CrankyClown", + "in_reply_to_user_id": 40303038, + "in_reply_to_status_id_str": "685629102318030849", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685629984380067840", + "id": 685629984380067840, + "text": "@CrankyClown no worries. I have had the Jabra clipper. It's OK...works but not for high end audio desires.( I only listen to lossless)", + "in_reply_to_user_id_str": "40303038", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CrankyClown", + "id_str": "40303038", + "id": 40303038, + "indices": [ + 0, + 12 + ], + "name": "Cranky Clown" + } + ] + }, + "created_at": "Sat Jan 09 01:11:41 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685629102318030849, + "lang": "en" + }, + "default_profile_image": false, + "id": 2832545398, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", + "statuses_count": 3239, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2832545398/1420726400", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3107351469", + "following": false, + "friends_count": 2434, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "git-scm.com", + "url": "http://t.co/YaM2RpAQp5", + "expanded_url": "http://git-scm.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "F05033", + "geo_enabled": false, + "followers_count": 2883, + "location": "Finland", + "screen_name": "planetgit", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "Planet Git", + "profile_use_background_image": false, + "description": "Curated news from the Git community. Git is a free and open source distributed version control system.", + "url": "http://t.co/YaM2RpAQp5", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Mar 23 10:43:42 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", + "favourites_count": 1, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684831105363656705", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z5BU2q", + "url": "https://t.co/0z9a6ISARU", + "expanded_url": "http://buff.ly/1Z5BU2q", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 20:17:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684831105363656705, + "text": "Neat new features in Git 2.7 https://t.co/0z9a6ISARU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 3107351469, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 68, + "is_translator": false + }, + { + "time_zone": "Vienna", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "23755643", + "following": false, + "friends_count": 20839, + "entities": { + "description": { + "urls": [ + { + "display_url": "linkd.in/1JT9h3X", + "url": "https://t.co/iJB2h1L78m", + "expanded_url": "http://linkd.in/1JT9h3X", + "indices": [ + 105, + 128 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "dixus.de", + "url": "http://t.co/sZ1DnHsEsZ", + "expanded_url": "http://www.dixus.de", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 28405, + "location": "Germany (Saxony)", + "screen_name": "dixus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 750, + "name": "Holger Kreissl", + "profile_use_background_image": false, + "description": "#mobile & #cloud enthusiast | #CleanCode | #dotnet | #aspnet | #enterpriseMobility | Find me on LinkedIn https://t.co/iJB2h1L78m", + "url": "http://t.co/sZ1DnHsEsZ", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Mar 11 12:38:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", + "favourites_count": 1142, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685540390351597569", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1Zb2oj6", + "url": "https://t.co/WYppjNMu0h", + "expanded_url": "http://bit.ly/1Zb2oj6", + "indices": [ + 32, + 55 + ] + } + ], + "hashtags": [ + { + "indices": [ + 56, + 66 + ], + "text": "Developer" + }, + { + "indices": [ + 67, + 72 + ], + "text": "MVVM" + }, + { + "indices": [ + 73, + 81 + ], + "text": "Pattern" + }, + { + "indices": [ + 82, + 89 + ], + "text": "CSharp" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:15:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685540390351597569, + "text": "The MVVM pattern \u2013 The practice https://t.co/WYppjNMu0h #Developer #MVVM #Pattern #CSharp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "DixusTweeter" + }, + "default_profile_image": false, + "id": 23755643, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5551, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23755643/1441816836", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2491819189", + "following": false, + "friends_count": 2316, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/InTheCloudDan", + "url": "https://t.co/cOAiJln1jK", + "expanded_url": "https://github.com/InTheCloudDan", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 437, + "location": "", + "screen_name": "InTheCloudDan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 33, + "name": "Daniel O'Brien", + "profile_use_background_image": true, + "description": "I Heart #javascript #nodejs #docker #devops while dreaming of #thegreatoutdoors and a side of #growthhacking with my better half @FoodnFunAllDay", + "url": "https://t.co/cOAiJln1jK", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon May 12 18:28:48 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", + "favourites_count": 110, + "status": { + "retweet_count": 15, + "retweeted_status": { + "retweet_count": 15, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685287444514762753", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "type": "photo", + "indices": [ + 0, + 23 + ], + "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "display_url": "pic.twitter.com/DlXvgVMX0i", + "id_str": "685287444372144128", + "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", + "id": 685287444372144128, + "url": "https://t.co/DlXvgVMX0i" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:30:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685287444514762753, + "text": "https://t.co/DlXvgVMX0i", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 16, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685439447769415680", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "source_status_id_str": "685287444514762753", + "url": "https://t.co/DlXvgVMX0i", + "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "source_user_id_str": "6927562", + "id_str": "685287444372144128", + "id": 685287444372144128, + "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", + "type": "photo", + "indices": [ + 17, + 40 + ], + "source_status_id": 685287444514762753, + "source_user_id": 6927562, + "display_url": "pic.twitter.com/DlXvgVMX0i", + "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thomasfuchs", + "id_str": "6927562", + "id": 6927562, + "indices": [ + 3, + 15 + ], + "name": "Thomas Fuchs" + } + ] + }, + "created_at": "Fri Jan 08 12:34:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685439447769415680, + "text": "RT @thomasfuchs: https://t.co/DlXvgVMX0i", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2491819189, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 254, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "19300535", + "following": false, + "friends_count": 375, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "evilchi.li", + "url": "http://t.co/7Y1LuKzE5f", + "expanded_url": "http://evilchi.li/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "BFBFBF", + "profile_link_color": "2463A3", + "geo_enabled": true, + "followers_count": 417, + "location": "\u2615\ufe0f Seattle", + "screen_name": "evilchili", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "eeeveeelcheeeleee", + "profile_use_background_image": false, + "description": "evilchili is an application downloaded from the Internet. Are you sure you want to open it?", + "url": "http://t.co/7Y1LuKzE5f", + "profile_text_color": "212121", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", + "profile_background_color": "3F5D8A", + "created_at": "Wed Jan 21 18:47:47 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", + "favourites_count": 217, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "evilchili", + "in_reply_to_user_id": 19300535, + "in_reply_to_status_id_str": "685509884037607424", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685510082142978048", + "id": 685510082142978048, + "text": "@evilchili Never say \"yes\" to anything before you've had coffee.", + "in_reply_to_user_id_str": "19300535", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "evilchili", + "id_str": "19300535", + "id": 19300535, + "indices": [ + 0, + 10 + ], + "name": "eeeveeelcheeeleee" + } + ] + }, + "created_at": "Fri Jan 08 17:15:14 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685509884037607424, + "lang": "en" + }, + "default_profile_image": false, + "id": 19300535, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 22907, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19300535/1403829270", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "919464055", + "following": false, + "friends_count": 246, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tessamero.com", + "url": "https://t.co/eFmsIOI8OE", + "expanded_url": "http://tessamero.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "89C9FA", + "geo_enabled": true, + "followers_count": 1682, + "location": "Seattle, WA", + "screen_name": "TessaMero", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 201, + "name": "Tessa Mero", + "profile_use_background_image": true, + "description": "Teacher. Open Source Contributor. Organizer of @SeaPHP, @PNWPHP, and @JUGSeattle. Snowboarder. Video Game Lover. Speaker. Traveler. Dev Advocate for @Joomla", + "url": "https://t.co/eFmsIOI8OE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", + "profile_background_color": "89C9FA", + "created_at": "Thu Nov 01 17:12:23 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", + "favourites_count": 5619, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "shivaas", + "in_reply_to_user_id": 14636369, + "in_reply_to_status_id_str": "685585585096921088", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685601154823270400", + "id": 685601154823270400, + "text": "@shivaas thank you! I'm so excited for a career change!!!", + "in_reply_to_user_id_str": "14636369", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "shivaas", + "id_str": "14636369", + "id": 14636369, + "indices": [ + 0, + 8 + ], + "name": "Shivaas Gulati" + } + ] + }, + "created_at": "Fri Jan 08 23:17:07 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685585585096921088, + "lang": "en" + }, + "default_profile_image": false, + "id": 919464055, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 11074, + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "205936598", + "following": false, + "friends_count": 112, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 155, + "location": "Richland, WA", + "screen_name": "SanStaab", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6, + "name": "Jonathan Staab", + "profile_use_background_image": true, + "description": "Web Developer trying to figure out how to code like Jesus would.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Thu Oct 21 22:56:11 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", + "favourites_count": 49, + "status": { + "retweet_count": 13473, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 13473, + "truncated": false, + "retweeted": false, + "id_str": "683681888687538177", + "id": 683681888687538177, + "text": "I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Jan 03 16:10:39 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 15374, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "684554177079414784", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JohnCleese", + "id_str": "10810102", + "id": 10810102, + "indices": [ + 3, + 14 + ], + "name": "John Cleese" + } + ] + }, + "created_at": "Wed Jan 06 01:56:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684554177079414784, + "text": "RT @JohnCleese: I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 205936598, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 628, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18195183", + "following": false, + "friends_count": 236, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gregaker.net", + "url": "https://t.co/wtcGV5PvaK", + "expanded_url": "http://www.gregaker.net/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 845, + "location": "Columbia, MO, USA", + "screen_name": "gaker", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 90, + "name": "\u0279\u04d9\u029e\u0250 \u0183\u04d9\u0279\u0183", + "profile_use_background_image": false, + "description": "I'm a thrasher, saxophone player and writer of code. DevOps @vinli", + "url": "https://t.co/wtcGV5PvaK", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Dec 17 18:15:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", + "favourites_count": 364, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684915042521890818", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "type": "photo", + "indices": [ + 78, + 101 + ], + "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "display_url": "pic.twitter.com/Nb0t9m7Kzu", + "id_str": "684915033961304064", + "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", + "id": 684915033961304064, + "url": "https://t.co/Nb0t9m7Kzu" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 51, + 55 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "vinli", + "id_str": "2409518833", + "id": 2409518833, + "indices": [ + 22, + 28 + ], + "name": "Vinli" + }, + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 37, + 42 + ], + "name": "Uber" + } + ] + }, + "created_at": "Thu Jan 07 01:50:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -115.2092535, + 35.984784 + ], + [ + -115.0610763, + 35.984784 + ], + [ + -115.0610763, + 36.137145 + ], + [ + -115.2092535, + 36.137145 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Paradise, NV", + "id": "8fa6d7a33b83ef26", + "name": "Paradise" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684915042521890818, + "text": "People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684928923247886336", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "source_status_id_str": "684915042521890818", + "url": "https://t.co/Nb0t9m7Kzu", + "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "source_user_id_str": "149705221", + "id_str": "684915033961304064", + "id": 684915033961304064, + "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", + "type": "photo", + "indices": [ + 94, + 117 + ], + "source_status_id": 684915042521890818, + "source_user_id": 149705221, + "display_url": "pic.twitter.com/Nb0t9m7Kzu", + "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 67, + 71 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "markhaidar", + "id_str": "149705221", + "id": 149705221, + "indices": [ + 3, + 14 + ], + "name": "Mark Haidar" + }, + { + "screen_name": "vinli", + "id_str": "2409518833", + "id": 2409518833, + "indices": [ + 38, + 44 + ], + "name": "Vinli" + }, + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 53, + 58 + ], + "name": "Uber" + } + ] + }, + "created_at": "Thu Jan 07 02:45:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684928923247886336, + "text": "RT @markhaidar: People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18195183, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3788, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18195183/1445621336", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "223102727", + "following": false, + "friends_count": 517, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "94D487", + "geo_enabled": true, + "followers_count": 316, + "location": "San Diego, CA", + "screen_name": "wulfmeister", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 28, + "name": "Mitchell Wulfman", + "profile_use_background_image": false, + "description": "JavaScript things, Meteor, UX. Striving to make bicycles for the mind. Currently taking HCI/UX classes at @DesignLabUCSD", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun Dec 05 11:52:50 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", + "favourites_count": 1103, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685287692490260480", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "chrome.google.com/webstore/detai\u2026", + "url": "https://t.co/9fpcPvs8Hv", + "expanded_url": "https://chrome.google.com/webstore/detail/command-click-fix/leklllfdadjjglhllebogdjfdipdjhhp", + "indices": [ + 95, + 118 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:31:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685287692490260480, + "text": "Chrome extension to force Command-Click to open links in a new tab instead of the current one: https://t.co/9fpcPvs8Hv", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 223102727, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", + "statuses_count": 630, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/223102727/1445901786", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "15085681", + "following": false, + "friends_count": 170, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 151, + "location": "Dallas, TX", + "screen_name": "pkinney", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Powell Kinney", + "profile_use_background_image": true, + "description": "CTO at Vinli (@vinli)", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 11 15:30:11 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", + "favourites_count": 24, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684554991529508864", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 426, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "type": "photo", + "indices": [ + 117, + 140 + ], + "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "display_url": "pic.twitter.com/om0NgHGk0p", + "id_str": "684554991395323904", + "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", + "id": 684554991395323904, + "url": "https://t.co/om0NgHGk0p" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "hubs.ly/H01LMTC0", + "url": "https://t.co/hrCBzE0IY9", + "expanded_url": "http://hubs.ly/H01LMTC0", + "indices": [ + 78, + 101 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 8 + ], + "text": "CES2016" + } + ], + "user_mentions": [ + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 58, + 63 + ], + "name": "Uber" + }, + { + "screen_name": "reviewjournal", + "id_str": "15358759", + "id": 15358759, + "indices": [ + 102, + 116 + ], + "name": "Las Vegas RJ" + } + ] + }, + "created_at": "Wed Jan 06 02:00:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684554991529508864, + "text": "#CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.co/om0NgHGk0p", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "HubSpot" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684851893558841344", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 426, + "resize": "fit" + } + }, + "source_status_id_str": "684554991529508864", + "url": "https://t.co/om0NgHGk0p", + "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "source_user_id_str": "2409518833", + "id_str": "684554991395323904", + "id": 684554991395323904, + "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 684554991529508864, + "source_user_id": 2409518833, + "display_url": "pic.twitter.com/om0NgHGk0p", + "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "hubs.ly/H01LMTC0", + "url": "https://t.co/hrCBzE0IY9", + "expanded_url": "http://hubs.ly/H01LMTC0", + "indices": [ + 89, + 112 + ] + } + ], + "hashtags": [ + { + "indices": [ + 11, + 19 + ], + "text": "CES2016" + } + ], + "user_mentions": [ + { + "screen_name": "vinli", + "id_str": "2409518833", + "id": 2409518833, + "indices": [ + 3, + 9 + ], + "name": "Vinli" + }, + { + "screen_name": "Uber", + "id_str": "19103481", + "id": 19103481, + "indices": [ + 69, + 74 + ], + "name": "Uber" + }, + { + "screen_name": "reviewjournal", + "id_str": "15358759", + "id": 15358759, + "indices": [ + 113, + 127 + ], + "name": "Las Vegas RJ" + } + ] + }, + "created_at": "Wed Jan 06 21:39:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684851893558841344, + "text": "RT @vinli: #CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.c\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 15085681, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 76, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15085681/1409019019", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "220165520", + "following": false, + "friends_count": 1839, + "entities": { + "description": { + "urls": [ + { + "display_url": "blog.codeship.com", + "url": "http://t.co/egYbB2cZXI", + "expanded_url": "http://blog.codeship.com", + "indices": [ + 78, + 100 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "codeship.com", + "url": "https://t.co/1m0F4Hu8KN", + "expanded_url": "https://codeship.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "0044CC", + "geo_enabled": true, + "followers_count": 8671, + "location": "Boston, MA", + "screen_name": "codeship", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 457, + "name": "Codeship", + "profile_use_background_image": false, + "description": "We are the fastest hosted Continuous Delivery Platform. Check out our blog at http://t.co/egYbB2cZXI \u2013 Need help? Ask @CodeshipSupport", + "url": "https://t.co/1m0F4Hu8KN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Fri Nov 26 23:51:57 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", + "favourites_count": 1056, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612838136770561", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1LZxOpT", + "url": "https://t.co/lHbWAw8Trn", + "expanded_url": "http://bit.ly/1LZxOpT", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [ + { + "indices": [ + 21, + 30 + ], + "text": "Postgres" + } + ], + "user_mentions": [ + { + "screen_name": "leighchalliday", + "id_str": "119841821", + "id": 119841821, + "indices": [ + 39, + 54 + ], + "name": "Leigh Halliday" + } + ] + }, + "created_at": "Sat Jan 09 00:03:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612838136770561, + "text": "\"How to use JSONB in #Postgres.\" \u2013 via @leighchalliday\n\nhttps://t.co/lHbWAw8Trn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Meet Edgar" + }, + "default_profile_image": false, + "id": 220165520, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", + "statuses_count": 14740, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/220165520/1418855084", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2705064962", + "following": false, + "friends_count": 4102, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "codecov.io", + "url": "https://t.co/rCxo4WMDnw", + "expanded_url": "https://codecov.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FC2B6A", + "geo_enabled": true, + "followers_count": 1745, + "location": "", + "screen_name": "codecov", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "Codecov", + "profile_use_background_image": false, + "description": "Continuous code coverage. Featuring browser extensions, branch coverage and coverage diffs for GitHub, Bitbucket and GitLab", + "url": "https://t.co/rCxo4WMDnw", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", + "profile_background_color": "06142B", + "created_at": "Sun Aug 03 22:36:47 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", + "favourites_count": 910, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "keimlink", + "in_reply_to_user_id": 44300359, + "in_reply_to_status_id_str": "684763065506738176", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684981810984423424", + "id": 684981810984423424, + "text": "@keimlink during some testing we found the package was having issues installing on some CI providers. I'll email you w/ more details.", + "in_reply_to_user_id_str": "44300359", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "keimlink", + "id_str": "44300359", + "id": 44300359, + "indices": [ + 0, + 9 + ], + "name": "Markus Zapke" + } + ] + }, + "created_at": "Thu Jan 07 06:16:04 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684763065506738176, + "lang": "en" + }, + "default_profile_image": false, + "id": 2705064962, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 947, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705064962/1440537606", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15534471", + "following": false, + "friends_count": 314, + "entities": { + "description": { + "urls": [ + { + "display_url": "ampproject.org/how-it-works/", + "url": "https://t.co/Wfq8ij4B8D", + "expanded_url": "https://www.ampproject.org/how-it-works/", + "indices": [ + 30, + 53 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "google.com/+MalteUbl", + "url": "https://t.co/297YfYX56s", + "expanded_url": "https://google.com/+MalteUbl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", + "notifications": false, + "profile_sidebar_fill_color": "FFFD91", + "profile_link_color": "FF0043", + "geo_enabled": true, + "followers_count": 5455, + "location": "San Francisco", + "screen_name": "cramforce", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 434, + "name": "Malte Ubl", + "profile_use_background_image": true, + "description": "Tech lead of the AMP Project. https://t.co/Wfq8ij4B8D \n\nI make www internet web pages for Google. Curator of @JSConfEU", + "url": "https://t.co/297YfYX56s", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jul 22 18:04:13 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FDE700", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", + "favourites_count": 2021, + "status": { + "retweet_count": 5, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 5, + "truncated": false, + "retweeted": false, + "id_str": "685624978780246016", + "id": 685624978780246016, + "text": "Security at its core is about reducing attack surface. You cover 90% of the job just by focussing on that. The other 10% is mostly luck.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:51:47 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 13, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685626573047791616", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "justinschuh", + "id_str": "72690437", + "id": 72690437, + "indices": [ + 3, + 15 + ], + "name": "Justin Schuh" + } + ] + }, + "created_at": "Sat Jan 09 00:58:07 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685626573047791616, + "text": "RT @justinschuh: Security at its core is about reducing attack surface. You cover 90% of the job just by focussing on that. The other 10% i\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 15534471, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", + "statuses_count": 18018, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15534471/1398619165", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "771681", + "following": false, + "friends_count": 2112, + "entities": { + "description": { + "urls": [ + { + "display_url": "pronoun.is/he", + "url": "https://t.co/h4IxIYLYdk", + "expanded_url": "http://pronoun.is/he", + "indices": [ + 129, + 152 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/glowcoil/statu\u2026", + "url": "https://t.co/7vUIPFlyCV", + "expanded_url": "https://twitter.com/glowcoil/status/660314122010034176", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "BBBBBB", + "geo_enabled": true, + "followers_count": 6803, + "location": "Chicago, IL /via Alaska", + "screen_name": "ELLIOTTCABLE", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 156, + "name": "~", + "profile_use_background_image": false, + "description": "Topical muggle. {PL,Q}T. I invented Ruby, Node.js, and all of the LISPs. Now I'm inventing Paws.\n\n[warning: contains bitterant.] https://t.co/h4IxIYLYdk", + "url": "https://t.co/7vUIPFlyCV", + "profile_text_color": "AAAAAA", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Feb 14 06:37:31 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", + "favourites_count": 14574, + "status": { + "geo": { + "coordinates": [ + 41.86747694, + -87.63303779 + ], + "type": "Point" + }, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -87.940033, + 41.644102 + ], + [ + -87.523993, + 41.644102 + ], + [ + -87.523993, + 42.0230669 + ], + [ + -87.940033, + 42.0230669 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Chicago, IL", + "id": "1d9a5370a355ab0c", + "name": "Chicago" + }, + "in_reply_to_screen_name": "ProductHunt", + "in_reply_to_user_id": 2208027565, + "in_reply_to_status_id_str": "685091084314263552", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685232357117440000", + "id": 685232357117440000, + "text": "@ProductHunt @netflix @TheCruziest Sense 7? Is that different from Sense 8?", + "in_reply_to_user_id_str": "2208027565", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ProductHunt", + "id_str": "2208027565", + "id": 2208027565, + "indices": [ + 0, + 12 + ], + "name": "Product Hunt" + }, + { + "screen_name": "netflix", + "id_str": "16573941", + "id": 16573941, + "indices": [ + 13, + 21 + ], + "name": "Netflix US" + }, + { + "screen_name": "TheCruziest", + "id_str": "303796625", + "id": 303796625, + "indices": [ + 22, + 34 + ], + "name": "Steven Cruz" + } + ] + }, + "created_at": "Thu Jan 07 22:51:39 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": { + "coordinates": [ + -87.63303779, + 41.86747694 + ], + "type": "Point" + }, + "contributors": null, + "in_reply_to_status_id": 685091084314263552, + "lang": "en" + }, + "default_profile_image": false, + "id": 771681, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 94590, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/771681/1414127033", + "is_translator": false + }, + { + "time_zone": "Brussels", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "87257431", + "following": false, + "friends_count": 998, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "il.ly", + "url": "http://t.co/welccj0beF", + "expanded_url": "http://il.ly/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", + "notifications": false, + "profile_sidebar_fill_color": "171717", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1555, + "location": "Kortrijk, Belgium", + "screen_name": "illyism", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 70, + "name": "Ilias Ismanalijev", + "profile_use_background_image": true, + "description": "Technology \u2022 Designer \u2022 Developer \u2022 Student #NMCT", + "url": "http://t.co/welccj0beF", + "profile_text_color": "F2F2F2", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", + "profile_background_color": "242424", + "created_at": "Tue Nov 03 19:01:00 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", + "favourites_count": 10505, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "JoshDComp", + "in_reply_to_user_id": 28402389, + "in_reply_to_status_id_str": "683864186821152768", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684060669654745088", + "id": 684060669654745088, + "text": "@JoshDComp Sure is, I like the realistic politics of it all and the well crafted VFX. It sucked me right into its world.", + "in_reply_to_user_id_str": "28402389", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JoshDComp", + "id_str": "28402389", + "id": 28402389, + "indices": [ + 0, + 10 + ], + "name": "Josh Compton" + } + ] + }, + "created_at": "Mon Jan 04 17:15:47 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683864186821152768, + "lang": "en" + }, + "default_profile_image": false, + "id": 87257431, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", + "statuses_count": 244, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87257431/1410266462", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "236341530", + "following": false, + "friends_count": 235, + "entities": { + "description": { + "urls": [ + { + "display_url": "mkeas.org", + "url": "https://t.co/bfRlctkCoN", + "expanded_url": "http://mkeas.org", + "indices": [ + 126, + 149 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mkeas.org", + "url": "https://t.co/bfRlctkCoN", + "expanded_url": "http://mkeas.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FA743E", + "geo_enabled": false, + "followers_count": 1320, + "location": "Houston, TX", + "screen_name": "matthiasak", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 72, + "name": "Mountain Matt", + "profile_use_background_image": true, + "description": "@TheIronYard, @DestinationCode, @SpaceCityConfs, INFOSEC crypto'r, powderhound, Lisper + \u03bb, @CapitalFactory alum, @HoustonJS, https://t.co/bfRlctkCoN.", + "url": "https://t.co/bfRlctkCoN", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Mon Jan 10 10:58:39 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", + "favourites_count": 1199, + "status": { + "retweet_count": 2, + "retweeted_status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1703b859c254a0f9.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -84.5129821, + 33.5933183 + ], + [ + -84.427795, + 33.5933183 + ], + [ + -84.427795, + 33.669237 + ], + [ + -84.5129821, + 33.669237 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "College Park, GA", + "id": "1703b859c254a0f9", + "name": "College Park" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685448904154976256", + "id": 685448904154976256, + "text": "Headed to Charleston today for our first @TheIronYard teammate-turned-student's graduation from our Front-end program! So proud & excited!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheIronYard", + "id_str": "576311383", + "id": 576311383, + "indices": [ + 41, + 53 + ], + "name": "The Iron Yard" + } + ] + }, + "created_at": "Fri Jan 08 13:12:08 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 13, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685617240801021952", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sarahbethlodato", + "id_str": "30965902", + "id": 30965902, + "indices": [ + 3, + 19 + ], + "name": "Sarah Lodato" + }, + { + "screen_name": "TheIronYard", + "id_str": "576311383", + "id": 576311383, + "indices": [ + 62, + 74 + ], + "name": "The Iron Yard" + } + ] + }, + "created_at": "Sat Jan 09 00:21:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685617240801021952, + "text": "RT @sarahbethlodato: Headed to Charleston today for our first @TheIronYard teammate-turned-student's graduation from our Front-end program!\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 236341530, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", + "statuses_count": 4937, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/236341530/1449188760", + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "252481460", + "following": false, + "friends_count": 24, + "entities": { + "description": { + "urls": [ + { + "display_url": "travis-ci.com", + "url": "http://t.co/0HN89Zqxlk", + "expanded_url": "http://travis-ci.com", + "indices": [ + 96, + 118 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "travis-ci.org", + "url": "http://t.co/3Tz19DXfYa", + "expanded_url": "http://travis-ci.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 14345, + "location": "Berlin, Germany", + "screen_name": "travisci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 527, + "name": "Travis CI", + "profile_use_background_image": true, + "description": "Hi I\u2019m Travis CI, a hosted continuous integration service for open source and private projects: http://t.co/0HN89Zqxlk System status updates: @traviscistatus", + "url": "http://t.co/3Tz19DXfYa", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 15 08:34:44 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", + "favourites_count": 1506, + "status": { + "retweet_count": 26, + "retweeted_status": { + "retweet_count": 26, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684128421845270530", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 271, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 453, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 453, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "type": "photo", + "indices": [ + 109, + 132 + ], + "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "display_url": "pic.twitter.com/fdIihYvkFb", + "id_str": "684128421732036608", + "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", + "id": 684128421732036608, + "url": "https://t.co/fdIihYvkFb" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "spr.ly/6018BnRke", + "url": "https://t.co/TkOgMSX4VM", + "expanded_url": "http://spr.ly/6018BnRke", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "github", + "id_str": "13334762", + "id": 13334762, + "indices": [ + 62, + 69 + ], + "name": "GitHub" + }, + { + "screen_name": "travisci", + "id_str": "252481460", + "id": 252481460, + "indices": [ + 74, + 83 + ], + "name": "Travis CI" + } + ] + }, + "created_at": "Mon Jan 04 21:45:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684128421845270530, + "text": "How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/fdIihYvkFb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 23, + "contributors": null, + "source": " SAP" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685085167086612481", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 271, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 453, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 453, + "resize": "fit" + } + }, + "source_status_id_str": "684128421845270530", + "url": "https://t.co/fdIihYvkFb", + "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "source_user_id_str": "100292002", + "id_str": "684128421732036608", + "id": 684128421732036608, + "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", + "type": "photo", + "indices": [ + 125, + 140 + ], + "source_status_id": 684128421845270530, + "source_user_id": 100292002, + "display_url": "pic.twitter.com/fdIihYvkFb", + "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "spr.ly/6018BnRke", + "url": "https://t.co/TkOgMSX4VM", + "expanded_url": "http://spr.ly/6018BnRke", + "indices": [ + 101, + 124 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SAPCommNet", + "id_str": "100292002", + "id": 100292002, + "indices": [ + 3, + 14 + ], + "name": "SAP CommunityNetwork" + }, + { + "screen_name": "github", + "id_str": "13334762", + "id": 13334762, + "indices": [ + 78, + 85 + ], + "name": "GitHub" + }, + { + "screen_name": "travisci", + "id_str": "252481460", + "id": 252481460, + "indices": [ + 90, + 99 + ], + "name": "Travis CI" + } + ] + }, + "created_at": "Thu Jan 07 13:06:46 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685085167086612481, + "text": "RT @SAPCommNet: How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/f\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 252481460, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10343, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/252481460/1383837670", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "86938585", + "following": false, + "friends_count": 134, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "circleci.com", + "url": "https://t.co/UfEqN58rWH", + "expanded_url": "https://circleci.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1584, + "location": "San Francisco", + "screen_name": "paulbiggar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 99, + "name": "Paul Biggar", + "profile_use_background_image": true, + "description": "Likes developers, chocolate, startups, history and pastries. Founder of CircleCI.", + "url": "https://t.co/UfEqN58rWH", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 02 13:08:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", + "favourites_count": 286, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685370475611078657", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "newyorker.com/magazine/2016/\u2026", + "url": "https://t.co/vbDkTva03y", + "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", + "indices": [ + 38, + 61 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "NewYorker", + "id_str": "14677919", + "id": 14677919, + "indices": [ + 66, + 76 + ], + "name": "The New Yorker" + } + ] + }, + "created_at": "Fri Jan 08 08:00:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685370475611078657, + "text": "Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685496070474973185", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "newyorker.com/magazine/2016/\u2026", + "url": "https://t.co/vbDkTva03y", + "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", + "indices": [ + 55, + 78 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sarahgbooks", + "id_str": "111095563", + "id": 111095563, + "indices": [ + 3, + 15 + ], + "name": "Sarah Gilmartin" + }, + { + "screen_name": "NewYorker", + "id_str": "14677919", + "id": 14677919, + "indices": [ + 83, + 93 + ], + "name": "The New Yorker" + } + ] + }, + "created_at": "Fri Jan 08 16:19:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685496070474973185, + "text": "RT @sarahgbooks: Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 86938585, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1368, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "381223731", + "following": false, + "friends_count": 4793, + "entities": { + "description": { + "urls": [ + { + "display_url": "discuss.circleci.com", + "url": "https://t.co/g79TaPamp5", + "expanded_url": "https://discuss.circleci.com/", + "indices": [ + 91, + 114 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "circleci.com", + "url": "https://t.co/Ls6HRLMgUX", + "expanded_url": "https://circleci.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "343434", + "geo_enabled": true, + "followers_count": 6832, + "location": "San Francisco", + "screen_name": "circleci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 171, + "name": "CircleCI", + "profile_use_background_image": false, + "description": "Easy, fast, continuous integration and deployment for web apps and iOS. For support, visit https://t.co/g79TaPamp5 or email sayhi@circleci.com.", + "url": "https://t.co/Ls6HRLMgUX", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", + "profile_background_color": "FBFBFB", + "created_at": "Tue Sep 27 23:33:23 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", + "favourites_count": 3136, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613493333135360", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "circle.ci/1VRcA07", + "url": "https://t.co/qbnualOiX6", + "expanded_url": "http://circle.ci/1VRcA07", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "iamkevinbell", + "id_str": "635809882", + "id": 635809882, + "indices": [ + 18, + 31 + ], + "name": "Kevin Bell" + }, + { + "screen_name": "circleci", + "id_str": "381223731", + "id": 381223731, + "indices": [ + 35, + 44 + ], + "name": "CircleCI" + }, + { + "screen_name": "fredsters_s", + "id_str": "14868289", + "id": 14868289, + "indices": [ + 51, + 63 + ], + "name": "Fred Stevens-Smith" + }, + { + "screen_name": "rainforestqa", + "id_str": "1012066448", + "id": 1012066448, + "indices": [ + 67, + 80 + ], + "name": "Rainforest QA" + } + ] + }, + "created_at": "Sat Jan 09 00:06:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613493333135360, + "text": "UPCOMING WEBINAR: @iamkevinbell of @circleci & @fredsters_s of @rainforestqa are talking Continuous Deployment: https://t.co/qbnualOiX6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 381223731, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2396, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7900402", + "following": false, + "friends_count": 391, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "280096", + "geo_enabled": true, + "followers_count": 342, + "location": "San Francisco, CA", + "screen_name": "tvachon", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "pizza: the gathering", + "profile_use_background_image": true, + "description": "putting the travis in circleci since 2014", + "url": null, + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Aug 02 05:37:07 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", + "favourites_count": 606, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "SpikeFriedman", + "in_reply_to_user_id": 364371190, + "in_reply_to_status_id_str": "685596593584603136", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685615315531632640", + "id": 685615315531632640, + "text": "@SpikeFriedman would", + "in_reply_to_user_id_str": "364371190", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SpikeFriedman", + "id_str": "364371190", + "id": 364371190, + "indices": [ + 0, + 14 + ], + "name": "Spike Friedman" + } + ] + }, + "created_at": "Sat Jan 09 00:13:23 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685596593584603136, + "lang": "en" + }, + "default_profile_image": false, + "id": 7900402, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", + "statuses_count": 5615, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "10399172", + "following": false, + "friends_count": 1295, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chmod777self.com", + "url": "http://t.co/6w6v8SGBti", + "expanded_url": "http://www.chmod777self.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "0A1EA3", + "geo_enabled": true, + "followers_count": 1146, + "location": "Fresno, CA", + "screen_name": "jasnell", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 87, + "name": "James M Snell", + "profile_use_background_image": true, + "description": "IBM Technical Lead for Node.js;\nNode.js TSC Member;\nAll around nice guy.", + "url": "http://t.co/6w6v8SGBti", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Nov 20 01:19:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", + "favourites_count": 2143, + "status": { + "retweet_count": 12, + "retweeted_status": { + "retweet_count": 12, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685242905007529984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/members\u2026", + "url": "https://t.co/jGV36DgAJg", + "expanded_url": "https://github.com/nodejs/membership/issues/12", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 23:33:34 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685242905007529984, + "text": "Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/jGV36DgAJg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 24, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685268279959539712", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/members\u2026", + "url": "https://t.co/jGV36DgAJg", + "expanded_url": "https://github.com/nodejs/membership/issues/12", + "indices": [ + 126, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dshaw", + "id_str": "806757", + "id": 806757, + "indices": [ + 3, + 9 + ], + "name": "Dan Shaw" + } + ] + }, + "created_at": "Fri Jan 08 01:14:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685268279959539712, + "text": "RT @dshaw: Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 10399172, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 3178, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10399172/1447689090", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3278631516", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "planet.com", + "url": "http://t.co/v3JIlJoOTW", + "expanded_url": "http://planet.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 294, + "location": "Space", + "screen_name": "dovesinspace", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Doves in space", + "profile_use_background_image": true, + "description": "We are in space.", + "url": "http://t.co/v3JIlJoOTW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 13 15:59:42 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", + "favourites_count": 0, + "status": { + "geo": { + "coordinates": [ + 29.91434343, + -83.47056022 + ], + "type": "Point" + }, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/4ec01c9dbc693497.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -87.634643, + 24.396308 + ], + [ + -79.974307, + 24.396308 + ], + [ + -79.974307, + 31.001056 + ], + [ + -87.634643, + 31.001056 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Florida, USA", + "id": "4ec01c9dbc693497", + "name": "Florida" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 4, + "truncated": false, + "retweeted": false, + "id_str": "651885332665909248", + "id": 651885332665909248, + "text": "I'm in space now! Satellite Flock 2b Satellite 14 reporting for duty.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Oct 07 22:22:29 +0000 2015", + "source": "Deployment tweets", + "favorite_count": 5, + "favorited": false, + "coordinates": { + "coordinates": [ + -83.47056022, + 29.91434343 + ], + "type": "Point" + }, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 3278631516, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 21, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3278631516/1436803648", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "13567", + "following": false, + "friends_count": 1520, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "christianheilmann.com/2013/02/11/hel\u2026", + "url": "http://t.co/fQKlvTCkqN", + "expanded_url": "http://christianheilmann.com/2013/02/11/hello-it-is-me-on-twitter/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", + "notifications": false, + "profile_sidebar_fill_color": "B7CCBB", + "profile_link_color": "13456B", + "geo_enabled": true, + "followers_count": 52184, + "location": "London, UK", + "screen_name": "codepo8", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3779, + "name": "Christian Heilmann", + "profile_use_background_image": true, + "description": "Developer Evangelist - all things open web, HTML5, writing and working together. Works at Microsoft on Edge, opinions totally my own. #nofilter", + "url": "http://t.co/fQKlvTCkqN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", + "profile_background_color": "336699", + "created_at": "Tue Nov 21 17:20:09 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", + "favourites_count": 386, + "status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685626000806424576", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "priceonomics.com/how-mickey-mou\u2026", + "url": "https://t.co/RVt1p2mhKB", + "expanded_url": "http://priceonomics.com/how-mickey-mouse-evades-the-public-domain/", + "indices": [ + 42, + 65 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:55:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685626000806424576, + "text": "How Mickey Mouse evades the public domain https://t.co/RVt1p2mhKB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 13567, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", + "statuses_count": 107977, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13567/1409269429", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2202531", + "following": false, + "friends_count": 211, + "entities": { + "description": { + "urls": [ + { + "display_url": "amazon.com/gp/product/B01\u2026", + "url": "https://t.co/C1nuRVMz0N", + "expanded_url": "http://www.amazon.com/gp/product/B018R7TV5W/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B018R7TV5W&linkCode=as2&tag=robceenet-20&linkId=377XBIIH55EWYAIK", + "indices": [ + 11, + 34 + ] + }, + { + "display_url": "flickr.com/photos/robceem\u2026", + "url": "https://t.co/7dMPlQvYLO", + "expanded_url": "https://www.flickr.com/photos/robceemoz/", + "indices": [ + 88, + 111 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "robcee.net", + "url": "http://t.co/R8fIMaSLvf", + "expanded_url": "http://robcee.net/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 1216, + "location": "Toronto, Canada", + "screen_name": "robcee", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 107, + "name": "robcee", + "profile_use_background_image": false, + "description": "#author of https://t.co/C1nuRVMz0N\n\n#drones #media #coffee #software #tech #photography https://t.co/7dMPlQvYLO", + "url": "http://t.co/R8fIMaSLvf", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Mar 25 19:52:34 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", + "favourites_count": 4161, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "matejnovak", + "in_reply_to_user_id": 15459306, + "in_reply_to_status_id_str": "685563535359868928", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685563745901350912", + "id": 685563745901350912, + "text": "@matejnovak Niagara Kale Brandy has a nasty vibe to it. But OK!", + "in_reply_to_user_id_str": "15459306", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "matejnovak", + "id_str": "15459306", + "id": 15459306, + "indices": [ + 0, + 11 + ], + "name": "Matej Novak \u23ce" + } + ] + }, + "created_at": "Fri Jan 08 20:48:28 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685563535359868928, + "lang": "en" + }, + "default_profile_image": false, + "id": 2202531, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 19075, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2202531/1420472405", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17663776", + "following": false, + "friends_count": 1126, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "planet.com", + "url": "http://t.co/AwAXMrXqVJ", + "expanded_url": "http://planet.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 12389, + "location": "San Francisco, CA, Earth", + "screen_name": "planetlabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 488, + "name": "Planet Labs", + "profile_use_background_image": false, + "description": "Delivering the most current images of our entire Earth.", + "url": "http://t.co/AwAXMrXqVJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Nov 27 00:10:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", + "favourites_count": 2014, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613487188398081", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", + "type": "photo", + "indices": [ + 97, + 120 + ], + "media_url": "http://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", + "display_url": "pic.twitter.com/01wqlNRcRx", + "id_str": "685613486617935872", + "expanded_url": "http://twitter.com/planetlabs/status/685613487188398081/photo/1", + "id": 685613486617935872, + "url": "https://t.co/01wqlNRcRx" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "planet.com/gallery/uganda\u2026", + "url": "https://t.co/QqEWAf2iM1", + "expanded_url": "https://www.planet.com/gallery/uganda-smallholders/", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [ + { + "indices": [ + 64, + 71 + ], + "text": "Uganda" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:06:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613487188398081, + "text": "Small holder and subsistence farms on a sunny day in Namutumba, #Uganda https://t.co/QqEWAf2iM1 https://t.co/01wqlNRcRx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 17663776, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", + "statuses_count": 1658, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17663776/1439957443", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "41693", + "following": false, + "friends_count": 415, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blankbaby.com", + "url": "http://t.co/bOEDVPeU3G", + "expanded_url": "http://www.blankbaby.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18572/newlogotop.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 4309, + "location": "Philadelphia, PA", + "screen_name": "blankbaby", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 279, + "name": "Scott McNulty", + "profile_use_background_image": true, + "description": "I am almost Internet famous. Host of @Random_Trek.", + "url": "http://t.co/bOEDVPeU3G", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Dec 05 00:57:26 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", + "favourites_count": 48, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "dsilverman", + "in_reply_to_user_id": 1010181, + "in_reply_to_status_id_str": "685602406990622720", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685602609508519940", + "id": 685602609508519940, + "text": "@dsilverman @GlennF ;) Alexa isn\u2019t super smart but very useful for my needs!", + "in_reply_to_user_id_str": "1010181", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dsilverman", + "id_str": "1010181", + "id": 1010181, + "indices": [ + 0, + 11 + ], + "name": "dwight silverman" + }, + { + "screen_name": "GlennF", + "id_str": "8315692", + "id": 8315692, + "indices": [ + 12, + 19 + ], + "name": "Glenn Fleishman" + } + ] + }, + "created_at": "Fri Jan 08 23:22:54 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685602406990622720, + "lang": "en" + }, + "default_profile_image": false, + "id": 41693, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18572/newlogotop.png", + "statuses_count": 25874, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41693/1362153090", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3171325140", + "following": false, + "friends_count": 18, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sideway.com", + "url": "http://t.co/pwaxdZGj2W", + "expanded_url": "http://sideway.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "04AA04", + "geo_enabled": false, + "followers_count": 244, + "location": "", + "screen_name": "sideway", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Sideway", + "profile_use_background_image": false, + "description": "Share a conversation.", + "url": "http://t.co/pwaxdZGj2W", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", + "profile_background_color": "000000", + "created_at": "Fri Apr 24 22:41:17 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "663825999717466112", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "type": "photo", + "indices": [ + 12, + 35 + ], + "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "display_url": "pic.twitter.com/Ng3S2UnWDz", + "id_str": "663825968667037697", + "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", + "id": 663825968667037697, + "url": "https://t.co/Ng3S2UnWDz" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Nov 09 21:10:26 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 663825999717466112, + "text": "New plates! https://t.co/Ng3S2UnWDz", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 12, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "663826029887270912", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "663825999717466112", + "url": "https://t.co/Ng3S2UnWDz", + "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "source_user_id_str": "346026614", + "id_str": "663825968667037697", + "id": 663825968667037697, + "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", + "type": "photo", + "indices": [ + 28, + 51 + ], + "source_status_id": 663825999717466112, + "source_user_id": 346026614, + "display_url": "pic.twitter.com/Ng3S2UnWDz", + "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "eranhammer", + "id_str": "346026614", + "id": 346026614, + "indices": [ + 3, + 14 + ], + "name": "Eran Hammer" + } + ] + }, + "created_at": "Mon Nov 09 21:10:33 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 663826029887270912, + "text": "RT @eranhammer: New plates! https://t.co/Ng3S2UnWDz", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3171325140, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5768872", + "following": false, + "friends_count": 8375, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "garyvaynerchuk.com/agvbook/", + "url": "https://t.co/n1TN3hgA84", + "expanded_url": "http://www.garyvaynerchuk.com/agvbook/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFE6CE", + "profile_link_color": "268CCD", + "geo_enabled": true, + "followers_count": 1202113, + "location": "NYC", + "screen_name": "garyvee", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 24979, + "name": "Gary Vaynerchuk", + "profile_use_background_image": true, + "description": "Family 1st! but after that, Businessman. CEO of @vaynermedia. Host of #AskGaryVee show and a dude who Loves the Hustle, the @NYJets .. snapchat - garyvee", + "url": "https://t.co/n1TN3hgA84", + "profile_text_color": "996633", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", + "profile_background_color": "152932", + "created_at": "Fri May 04 15:32:48 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", + "favourites_count": 2451, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "ChampionRandy_", + "in_reply_to_user_id": 24077081, + "in_reply_to_status_id_str": "685615325677658112", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685615719472574468", + "id": 685615719472574468, + "text": "@ChampionRandy_ @Snapchat nah just believe in it soooo much", + "in_reply_to_user_id_str": "24077081", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ChampionRandy_", + "id_str": "24077081", + "id": 24077081, + "indices": [ + 0, + 15 + ], + "name": "Champion.Randy" + }, + { + "screen_name": "Snapchat", + "id_str": "376502929", + "id": 376502929, + "indices": [ + 16, + 25 + ], + "name": "Snapchat" + } + ] + }, + "created_at": "Sat Jan 09 00:15:00 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685615325677658112, + "lang": "en" + }, + "default_profile_image": false, + "id": 5768872, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", + "statuses_count": 135762, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5768872/1423844975", + "is_translator": false + }, + { + "time_zone": "Casablanca", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "270431388", + "following": false, + "friends_count": 795, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "MarquisdeGeek.com", + "url": "https://t.co/rAxaxp0oUr", + "expanded_url": "http://www.MarquisdeGeek.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 581, + "location": "aka Steven Goodwin. London", + "screen_name": "MarquisdeGeek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 88, + "name": "Marquis de Geek", + "profile_use_background_image": true, + "description": "Maker, author, developer, educator, IoT dev, magician, musician, computer historian, sommelier, SGX creator, electronics guy, AFOL & geek. Works as edtech CTO", + "url": "https://t.co/rAxaxp0oUr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Tue Mar 22 16:17:37 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", + "favourites_count": 400, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685486479271919616", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 460, + "h": 960, + "resize": "fit" + }, + "medium": { + "w": 460, + "h": 960, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 325, + "h": 680, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", + "type": "photo", + "indices": [ + 24, + 47 + ], + "media_url": "http://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", + "display_url": "pic.twitter.com/Mo9VcBHIwC", + "id_str": "685485412517830656", + "expanded_url": "http://twitter.com/MarquisdeGeek/status/685486479271919616/photo/1", + "id": 685485412517830656, + "url": "https://t.co/Mo9VcBHIwC" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:41:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685486479271919616, + "text": "Crossing the streams... https://t.co/Mo9VcBHIwC", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 270431388, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3959, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/270431388/1406890949", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "148221086", + "following": false, + "friends_count": 617, + "entities": { + "description": { + "urls": [ + { + "display_url": "shop.oreilly.com/product/063692\u2026", + "url": "https://t.co/Zk7ejlHptN", + "expanded_url": "http://shop.oreilly.com/product/0636920042686.do", + "indices": [ + 135, + 158 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "GetYodlr.com", + "url": "https://t.co/hKMaAlWDdW", + "expanded_url": "https://GetYodlr.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 730, + "location": "SF Bay Area", + "screen_name": "rosskukulinski", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 128, + "name": "Ross Kukulinski", + "profile_use_background_image": true, + "description": "Founder @getyodlr. Entrepreneur & advisor. Work with #nodejs, #webrtc, #docker, #kubernetes, #coreos. Watch my Intro to CoreOS Course: https://t.co/Zk7ejlHptN", + "url": "https://t.co/hKMaAlWDdW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed May 26 04:22:53 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", + "favourites_count": 4397, + "status": { + "retweet_count": 17, + "retweeted_status": { + "retweet_count": 17, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685464980976566272", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nodejs.org/en/blog/commun\u2026", + "url": "https://t.co/oHkMziRUpk", + "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:16:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685464980976566272, + "text": "Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Sprout Social" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685466291180859392", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nodejs.org/en/blog/commun\u2026", + "url": "https://t.co/oHkMziRUpk", + "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nodejs", + "id_str": "91985735", + "id": 91985735, + "indices": [ + 3, + 10 + ], + "name": "Node.js" + } + ] + }, + "created_at": "Fri Jan 08 14:21:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685466291180859392, + "text": "RT @nodejs: Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 148221086, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8070, + "is_translator": false + }, + { + "time_zone": "Budapest", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "98630536", + "following": false, + "friends_count": 296, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eduardmoldovan.com", + "url": "http://t.co/4zJV0jnlaJ", + "expanded_url": "http://eduardmoldovan.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "0E0D02", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 336, + "location": "Budapest", + "screen_name": "edimoldovan", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 28, + "name": "Edu\u00e1rd", + "profile_use_background_image": true, + "description": "Views are my own", + "url": "http://t.co/4zJV0jnlaJ", + "profile_text_color": "39BD91", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Dec 22 13:09:46 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", + "favourites_count": 234, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685508856013795330", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wareable.com/fitness-tracke\u2026", + "url": "https://t.co/HDOdrQpuJU", + "expanded_url": "http://www.wareable.com/fitness-trackers/mastercard-and-coin-bringing-wearable-payments-to-fitness-trackers-including-moov-2147", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:10:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685508856013795330, + "text": "MasterCard bringing wearable payments to fitness trackers including Moov https://t.co/HDOdrQpuJU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "OS X" + }, + "default_profile_image": false, + "id": 98630536, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", + "statuses_count": 12782, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/98630536/1392472068", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14164724", + "following": false, + "friends_count": 1639, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sarahmei.com", + "url": "https://t.co/3q8gb3xaz4", + "expanded_url": "http://sarahmei.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 11828, + "location": "San Francisco, CA", + "screen_name": "sarahmei", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 762, + "name": "Sarah Mei", + "profile_use_background_image": true, + "description": "Software developer. Founder of @railsbridge. Director of Ruby Central. Chief Consultant of @devmyndsoftware. IM IN UR BASE TEACHIN U HOW TO REFACTOR UR CODE", + "url": "https://t.co/3q8gb3xaz4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Mon Mar 17 18:05:43 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", + "favourites_count": 1453, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685599933215424513", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/anildash/statu\u2026", + "url": "https://t.co/436K3Lfx5F", + "expanded_url": "https://twitter.com/anildash/status/685496167464042496", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:12:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -87.940033, + 41.644102 + ], + [ + -87.523993, + 41.644102 + ], + [ + -87.523993, + 42.0230669 + ], + [ + -87.940033, + 42.0230669 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Chicago, IL", + "id": "1d9a5370a355ab0c", + "name": "Chicago" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685599933215424513, + "text": "First time I have tapped the moments icon on purpose. https://t.co/436K3Lfx5F", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14164724, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 13073, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14164724/1423457101", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "25183606", + "following": false, + "friends_count": 746, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "charlotteis.co.uk", + "url": "https://t.co/j2AKIKz3ZY", + "expanded_url": "http://charlotteis.co.uk", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "44615D", + "geo_enabled": false, + "followers_count": 2004, + "location": "Bletchley, UK.", + "screen_name": "Charlotteis", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 116, + "name": "console.warn()", + "profile_use_background_image": false, + "description": "they/them. human ghost emoji writing code with @mandsdigital. open sourcer with @hoodiehq and creator of @yourfirstpr.", + "url": "https://t.co/j2AKIKz3ZY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 18 23:28:54 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", + "favourites_count": 8753, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "zaccolley", + "in_reply_to_user_id": 18365392, + "in_reply_to_status_id_str": "685630147626680324", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685630306834059264", + "id": 685630306834059264, + "text": "@zaccolley @orliesaurus ya", + "in_reply_to_user_id_str": "18365392", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "zaccolley", + "id_str": "18365392", + "id": 18365392, + "indices": [ + 0, + 10 + ], + "name": "zac" + }, + { + "screen_name": "orliesaurus", + "id_str": "55077784", + "id": 55077784, + "indices": [ + 11, + 23 + ], + "name": "orliesaurus" + } + ] + }, + "created_at": "Sat Jan 09 01:12:58 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685630147626680324, + "lang": "und" + }, + "default_profile_image": false, + "id": 25183606, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", + "statuses_count": 49657, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/25183606/1420483218", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "253464752", + "following": false, + "friends_count": 492, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jessicard.com", + "url": "https://t.co/DwRzTkmHMB", + "expanded_url": "http://jessicard.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542881894/twitter.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "00B9E1", + "geo_enabled": true, + "followers_count": 5249, + "location": "than franthithco", + "screen_name": "jessicard", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 241, + "name": "jessicard", + "profile_use_background_image": false, + "description": "The jessicard physically strong, moves rapidly, momentum is powerful, is one of the most has the courage and strength of the software engineer in the world.", + "url": "https://t.co/DwRzTkmHMB", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", + "profile_background_color": "F6F6F6", + "created_at": "Thu Feb 17 09:04:56 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", + "favourites_count": 28153, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jlsuttles", + "in_reply_to_user_id": 21170138, + "in_reply_to_status_id_str": "685597105696579584", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685618782757322754", + "id": 685618782757322754, + "text": "@jlsuttles SO CUTE \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude4f\ud83c\udffb", + "in_reply_to_user_id_str": "21170138", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jlsuttles", + "id_str": "21170138", + "id": 21170138, + "indices": [ + 0, + 10 + ], + "name": "\u2728Jessica Suttles\u2728" + } + ] + }, + "created_at": "Sat Jan 09 00:27:10 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685597105696579584, + "lang": "en" + }, + "default_profile_image": false, + "id": 253464752, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542881894/twitter.png", + "statuses_count": 23084, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/253464752/1353017487", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "198661893", + "following": false, + "friends_count": 247, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eliseworthy.com", + "url": "http://t.co/Lfr9fIzPIs", + "expanded_url": "http://eliseworthy.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "41625C", + "geo_enabled": true, + "followers_count": 1862, + "location": "Seattle", + "screen_name": "eliseworthy", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 123, + "name": "Elise Worthy", + "profile_use_background_image": false, + "description": "software developer | founder of @brandworthy and @adaacademy", + "url": "http://t.co/Lfr9fIzPIs", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", + "profile_background_color": "946369", + "created_at": "Mon Oct 04 22:38:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", + "favourites_count": 689, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "666384799402098688", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "meetup.com/Seattle-PyLadi\u2026", + "url": "https://t.co/bg7tLVR1Tp", + "expanded_url": "http://www.meetup.com/Seattle-PyLadies/events/225729699/", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PyLadiesSEA", + "id_str": "885603211", + "id": 885603211, + "indices": [ + 38, + 50 + ], + "name": "Seattle PyLadies" + } + ] + }, + "created_at": "Mon Nov 16 22:38:11 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 666384799402098688, + "text": "What's better than a holiday party? A @PyLadiesSEA holiday party! This Wednesday! Go! https://t.co/bg7tLVR1Tp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 198661893, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", + "statuses_count": 3529, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/198661893/1377996487", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "13368452", + "following": false, + "friends_count": 1123, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ultrasaurus.com", + "url": "http://t.co/VV3FrrBWLv", + "expanded_url": "http://www.ultrasaurus.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 7943, + "location": "San Francisco, CA", + "screen_name": "ultrasaurus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 720, + "name": "Sarah Allen", + "profile_use_background_image": true, + "description": "I write code, connect pixels and speak truth to make change. @bridgefoundry @mightyverse @18F", + "url": "http://t.co/VV3FrrBWLv", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Mon Feb 11 23:40:05 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", + "favourites_count": 1229, + "status": { + "retweet_count": 9772, + "retweeted_status": { + "retweet_count": 9772, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685415626945507328", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 614, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "type": "photo", + "indices": [ + 27, + 50 + ], + "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "display_url": "pic.twitter.com/4ZnTo0GI7T", + "id_str": "685415615138545664", + "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", + "id": 685415615138545664, + "url": "https://t.co/4ZnTo0GI7T" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 10:59:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685415626945507328, + "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1246, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685477649523712000", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 614, + "resize": "fit" + }, + "medium": { + "w": 567, + "h": 1024, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 567, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "685415626945507328", + "url": "https://t.co/4ZnTo0GI7T", + "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "source_user_id_str": "2782137901", + "id_str": "685415615138545664", + "id": 685415615138545664, + "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", + "type": "photo", + "indices": [ + 48, + 71 + ], + "source_status_id": 685415626945507328, + "source_user_id": 2782137901, + "display_url": "pic.twitter.com/4ZnTo0GI7T", + "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "neil_finnweevil", + "id_str": "2782137901", + "id": 2782137901, + "indices": [ + 3, + 19 + ], + "name": "kiki montparnasse" + } + ] + }, + "created_at": "Fri Jan 08 15:06:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685477649523712000, + "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 13368452, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 10335, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13368452/1396530463", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3300795096", + "following": false, + "friends_count": 296, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "current.sh", + "url": "http://t.co/43c4yK78zi", + "expanded_url": "http://current.sh", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "268BD2", + "geo_enabled": false, + "followers_count": 192, + "location": "", + "screen_name": "currentsh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "current.sh", + "profile_use_background_image": false, + "description": "the log management saas you've been looking for. built by @vektrasays.", + "url": "http://t.co/43c4yK78zi", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Jul 29 20:09:17 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", + "favourites_count": 8, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685167345329831936", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "producthunt.com/tech/current-3\u2026", + "url": "https://t.co/ccTe9IhAJB", + "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", + "indices": [ + 89, + 112 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "currentsh", + "id_str": "3300795096", + "id": 3300795096, + "indices": [ + 40, + 50 + ], + "name": "current.sh" + }, + { + "screen_name": "ProductHunt", + "id_str": "2208027565", + "id": 2208027565, + "indices": [ + 54, + 66 + ], + "name": "Product Hunt" + } + ] + }, + "created_at": "Thu Jan 07 18:33:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0775fcd6eb188d7c.json", + "country": "United States", + "attributes": {}, + "place_type": "neighborhood", + "bounding_box": { + "coordinates": [ + [ + [ + -118.3613876, + 34.043829 + ], + [ + -118.309037, + 34.043829 + ], + [ + -118.309037, + 34.083516 + ], + [ + -118.3613876, + 34.083516 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Mid-Wilshire, Los Angeles", + "id": "0775fcd6eb188d7c", + "name": "Mid-Wilshire" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685167345329831936, + "text": "I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685171895952490498", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "producthunt.com/tech/current-3\u2026", + "url": "https://t.co/ccTe9IhAJB", + "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "evanphx", + "id_str": "5444392", + "id": 5444392, + "indices": [ + 3, + 11 + ], + "name": "Evan Phoenix" + }, + { + "screen_name": "currentsh", + "id_str": "3300795096", + "id": 3300795096, + "indices": [ + 53, + 63 + ], + "name": "current.sh" + }, + { + "screen_name": "ProductHunt", + "id_str": "2208027565", + "id": 2208027565, + "indices": [ + 67, + 79 + ], + "name": "Product Hunt" + } + ] + }, + "created_at": "Thu Jan 07 18:51:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685171895952490498, + "text": "RT @evanphx: I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3300795096, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 36, + "is_translator": false + }, + { + "time_zone": "Tijuana", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "21170138", + "following": false, + "friends_count": 403, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "current.sh", + "url": "https://t.co/43c4yJPxHK", + "expanded_url": "http://current.sh", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 2050, + "location": "San Francisco, CA", + "screen_name": "jlsuttles", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 107, + "name": "\u2728Jessica Suttles\u2728", + "profile_use_background_image": true, + "description": "Co-Founder & CTO @currentsh", + "url": "https://t.co/43c4yJPxHK", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Feb 18 04:49:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", + "favourites_count": 4798, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "raihanaaaa", + "in_reply_to_user_id": 23154665, + "in_reply_to_status_id_str": "685608984401850368", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685621709433516032", + "id": 685621709433516032, + "text": "@raihanaaaa yes pls!", + "in_reply_to_user_id_str": "23154665", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "raihanaaaa", + "id_str": "23154665", + "id": 23154665, + "indices": [ + 0, + 11 + ], + "name": "Rae." + } + ] + }, + "created_at": "Sat Jan 09 00:38:48 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685608984401850368, + "lang": "en" + }, + "default_profile_image": false, + "id": 21170138, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 10077, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21170138/1448066737", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15714950", + "following": false, + "friends_count": 35, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 179, + "location": "", + "screen_name": "ruoho", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Clint Ruoho", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", + "profile_background_color": "022330", + "created_at": "Sun Aug 03 22:20:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", + "favourites_count": 18, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682197364367425537", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wtfismyip.com", + "url": "https://t.co/QfqlilFduQ", + "expanded_url": "https://wtfismyip.com/", + "indices": [ + 13, + 36 + ] + } + ], + "hashtags": [ + { + "indices": [ + 111, + 122 + ], + "text": "FreeBasics" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 13:51:40 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682197364367425537, + "text": "Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682229939072937984", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wtfismyip.com", + "url": "https://t.co/QfqlilFduQ", + "expanded_url": "https://wtfismyip.com/", + "indices": [ + 28, + 51 + ] + } + ], + "hashtags": [ + { + "indices": [ + 126, + 137 + ], + "text": "FreeBasics" + } + ], + "user_mentions": [ + { + "screen_name": "wtfismyip", + "id_str": "359037938", + "id": 359037938, + "indices": [ + 3, + 13 + ], + "name": "WTF IS MY IP!?!?!?" + } + ] + }, + "created_at": "Wed Dec 30 16:01:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682229939072937984, + "text": "RT @wtfismyip: Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 15714950, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 17, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "755178", + "following": false, + "friends_count": 1779, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bob.ippoli.to", + "url": "http://t.co/8Z9JtvGN55", + "expanded_url": "http://bob.ippoli.to/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 5239, + "location": "San Francisco, CA", + "screen_name": "etrepum", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 315, + "name": "Bob Ippolito", + "profile_use_background_image": true, + "description": "@playfig cofounder/CTO. @missionbit board member & lead instructor. Former founder/CTO of Mochi Media. Open source python/js/erlang/haskell/obj-c/ruby developer", + "url": "http://t.co/8Z9JtvGN55", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Tue Feb 06 09:23:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", + "favourites_count": 5820, + "status": { + "retweet_count": 12, + "retweeted_status": { + "retweet_count": 12, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "617059621379780608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tools.ietf.org/html/draft-tho\u2026", + "url": "https://t.co/XCpUoEM89o", + "expanded_url": "https://tools.ietf.org/html/draft-thomson-postel-was-wrong-00", + "indices": [ + 18, + 41 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jul 03 19:57:32 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 617059621379780608, + "text": "Postel was wrong. https://t.co/XCpUoEM89o", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685619587912605697", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tools.ietf.org/html/draft-tho\u2026", + "url": "https://t.co/XCpUoEM89o", + "expanded_url": "https://tools.ietf.org/html/draft-thomson-postel-was-wrong-00", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dreid", + "id_str": "756241", + "id": 756241, + "indices": [ + 3, + 9 + ], + "name": "dreid" + } + ] + }, + "created_at": "Sat Jan 09 00:30:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685619587912605697, + "text": "RT @dreid: Postel was wrong. https://t.co/XCpUoEM89o", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 755178, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 11507, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/755178/1353725023", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "19315174", + "following": false, + "friends_count": 123, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", + "notifications": false, + "profile_sidebar_fill_color": "96C6ED", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 798508, + "location": "Redmond, WA", + "screen_name": "MicrosoftEdge", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5871, + "name": "Microsoft Edge", + "profile_use_background_image": false, + "description": "The official Twitter handle for Microsoft Edge, the new browser from Microsoft.", + "url": null, + "profile_text_color": "453C3C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", + "profile_background_color": "3B94D9", + "created_at": "Wed Jan 21 23:42:14 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", + "favourites_count": 23, + "status": { + "retweet_count": 5, + "retweeted_status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685504215343443968", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "display_url": "pic.twitter.com/v6YqGwUtih", + "id_str": "685503595572101120", + "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", + "id": 685503595572101120, + "url": "https://t.co/v6YqGwUtih" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "aka.ms/Xwzpnt", + "url": "https://t.co/g4IP0j7aDz", + "expanded_url": "http://aka.ms/Xwzpnt", + "indices": [ + 81, + 104 + ] + } + ], + "hashtags": [ + { + "indices": [ + 56, + 64 + ], + "text": "Winning" + }, + { + "indices": [ + 66, + 80 + ], + "text": "MicrosoftEdge" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:51:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685504215343443968, + "text": "The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6YqGwUtih", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 11, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685576467468677120", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "source_status_id_str": "685504215343443968", + "url": "https://t.co/v6YqGwUtih", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "source_user_id_str": "164457546", + "id_str": "685503595572101120", + "id": 685503595572101120, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", + "type": "photo", + "indices": [ + 124, + 140 + ], + "source_status_id": 685504215343443968, + "source_user_id": 164457546, + "display_url": "pic.twitter.com/v6YqGwUtih", + "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "aka.ms/Xwzpnt", + "url": "https://t.co/g4IP0j7aDz", + "expanded_url": "http://aka.ms/Xwzpnt", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [ + { + "indices": [ + 75, + 83 + ], + "text": "Winning" + }, + { + "indices": [ + 85, + 99 + ], + "text": "MicrosoftEdge" + } + ], + "user_mentions": [ + { + "screen_name": "WindowsCanada", + "id_str": "164457546", + "id": 164457546, + "indices": [ + 3, + 17 + ], + "name": "Windows Canada" + } + ] + }, + "created_at": "Fri Jan 08 21:39:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685576467468677120, + "text": "RT @WindowsCanada: The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Sprinklr" + }, + "default_profile_image": false, + "id": 19315174, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", + "statuses_count": 1205, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19315174/1438621793", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "77343214", + "following": false, + "friends_count": 1042, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "danabauer.github.io", + "url": "http://t.co/qTVR3d3mlq", + "expanded_url": "http://danabauer.github.io/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "424F98", + "geo_enabled": true, + "followers_count": 2467, + "location": "Philly (mostly)", + "screen_name": "agentdana", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 203, + "name": "Dana Bauer", + "profile_use_background_image": false, + "description": "Geographer, Pythonista, open data enthusiast, mom to a future astronaut. I work at Planet Labs.", + "url": "http://t.co/qTVR3d3mlq", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Sep 25 23:48:03 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", + "favourites_count": 12277, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "taramurtha", + "in_reply_to_user_id": 24011702, + "in_reply_to_status_id_str": "685597724864081922", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685598350121529344", + "id": 685598350121529344, + "text": "@taramurtha gaaaahhhhhh", + "in_reply_to_user_id_str": "24011702", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "taramurtha", + "id_str": "24011702", + "id": 24011702, + "indices": [ + 0, + 11 + ], + "name": "Tara Murtha" + } + ] + }, + "created_at": "Fri Jan 08 23:05:59 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685597724864081922, + "lang": "und" + }, + "default_profile_image": false, + "id": 77343214, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4395, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/77343214/1444143700", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1141081634", + "following": false, + "friends_count": 90, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dev.modern.ie", + "url": "http://t.co/r0F7MBTxRE", + "expanded_url": "http://dev.modern.ie/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0078D7", + "geo_enabled": true, + "followers_count": 57822, + "location": "Redmond, WA", + "screen_name": "MSEdgeDev", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 741, + "name": "Microsoft Edge Dev", + "profile_use_background_image": true, + "description": "Official news and updates from the Microsoft Web Platform team on #MicrosoftEdge and #InternetExplorer", + "url": "http://t.co/r0F7MBTxRE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", + "profile_background_color": "282828", + "created_at": "Sat Feb 02 00:26:21 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", + "favourites_count": 146, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685516791003533312", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "channel9.msdn.com/Blogs/One-Dev-\u2026", + "url": "https://t.co/tL4lVK9BLo", + "expanded_url": "https://channel9.msdn.com/Blogs/One-Dev-Minute/Building-Websites-and-UWP-Apps-with-a-Yeoman-Generator", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:41:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685516791003533312, + "text": "One Dev Minute: Building websites and UWP apps with a Yeoman generator https://t.co/tL4lVK9BLo", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 1141081634, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", + "statuses_count": 1681, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1141081634/1430352524", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13348", + "following": false, + "friends_count": 53207, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/RobertScoble", + "url": "https://t.co/TZTxRbMttp", + "expanded_url": "https://facebook.com/RobertScoble", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 484968, + "location": "Half Moon Bay, California, USA", + "screen_name": "Scobleizer", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 25250, + "name": "Robert Scoble", + "profile_use_background_image": true, + "description": "@Rackspace's Futurist searches the world looking for what's happening on the bleeding edge of technology and brings that learning to the Internet.", + "url": "https://t.co/TZTxRbMttp", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Nov 20 23:43:44 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", + "favourites_count": 62360, + "status": { + "retweet_count": 6, + "retweeted_status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685589440765407232", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "display_url": "pic.twitter.com/sMEhdHTceR", + "id_str": "685589432909467648", + "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", + "id": 685589432909467648, + "url": "https://t.co/sMEhdHTceR" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1K3q0PT", + "url": "https://t.co/sXih7Q0R2J", + "expanded_url": "http://bit.ly/1K3q0PT", + "indices": [ + 55, + 78 + ] + } + ], + "hashtags": [ + { + "indices": [ + 50, + 54 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "richardbranson", + "id_str": "8161232", + "id": 8161232, + "indices": [ + 94, + 109 + ], + "name": "Richard Branson" + } + ] + }, + "created_at": "Fri Jan 08 22:30:34 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685589440765407232, + "text": "Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/sMEhdHTceR", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 11, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685593198958264320", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "685589440765407232", + "url": "https://t.co/sMEhdHTceR", + "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "source_user_id_str": "6853442", + "id_str": "685589432909467648", + "id": 685589432909467648, + "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", + "type": "photo", + "indices": [ + 126, + 140 + ], + "source_status_id": 685589440765407232, + "source_user_id": 6853442, + "display_url": "pic.twitter.com/sMEhdHTceR", + "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1K3q0PT", + "url": "https://t.co/sXih7Q0R2J", + "expanded_url": "http://bit.ly/1K3q0PT", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [ + { + "indices": [ + 66, + 70 + ], + "text": "CES" + } + ], + "user_mentions": [ + { + "screen_name": "willobrien", + "id_str": "6853442", + "id": 6853442, + "indices": [ + 3, + 14 + ], + "name": "Will O'Brien" + }, + { + "screen_name": "richardbranson", + "id_str": "8161232", + "id": 8161232, + "indices": [ + 110, + 125 + ], + "name": "Richard Branson" + } + ] + }, + "created_at": "Fri Jan 08 22:45:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593198958264320, + "text": "RT @willobrien: Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 13348, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", + "statuses_count": 67747, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13348/1450153194", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "84699828", + "following": false, + "friends_count": 2258, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 6995, + "location": "", + "screen_name": "barb_oconnor", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 65, + "name": "Barbara O'Connor", + "profile_use_background_image": true, + "description": "Girl next door mash-up :) Technology lover and biz dev aficionado. #Runner,#SUP boarder,#cyclist,#mother, dog lover, & US#Marine. Tweets=mine", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri Oct 23 21:58:22 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", + "favourites_count": 67, + "status": { + "retweet_count": 183, + "retweeted_status": { + "retweet_count": 183, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685501440639516673", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "cainc.to/yArk3o", + "url": "https://t.co/DG3FPs9ryJ", + "expanded_url": "http://cainc.to/yArk3o", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "OttoBerkes", + "id_str": "192448160", + "id": 192448160, + "indices": [ + 30, + 41 + ], + "name": "Otto Berkes" + }, + { + "screen_name": "TheEbizWizard", + "id_str": "16290014", + "id": 16290014, + "indices": [ + 70, + 84 + ], + "name": "Jason Bloomberg" + }, + { + "screen_name": "ForbesTech", + "id_str": "14885549", + "id": 14885549, + "indices": [ + 88, + 99 + ], + "name": "Forbes Tech News" + } + ] + }, + "created_at": "Fri Jan 08 16:40:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685501440639516673, + "text": "From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "SocialFlow" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685541320170029056", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "cainc.to/yArk3o", + "url": "https://t.co/DG3FPs9ryJ", + "expanded_url": "http://cainc.to/yArk3o", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CAinc", + "id_str": "14790085", + "id": 14790085, + "indices": [ + 3, + 9 + ], + "name": "CA Technologies" + }, + { + "screen_name": "OttoBerkes", + "id_str": "192448160", + "id": 192448160, + "indices": [ + 41, + 52 + ], + "name": "Otto Berkes" + }, + { + "screen_name": "TheEbizWizard", + "id_str": "16290014", + "id": 16290014, + "indices": [ + 81, + 95 + ], + "name": "Jason Bloomberg" + }, + { + "screen_name": "ForbesTech", + "id_str": "14885549", + "id": 14885549, + "indices": [ + 99, + 110 + ], + "name": "Forbes Tech News" + } + ] + }, + "created_at": "Fri Jan 08 19:19:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685541320170029056, + "text": "RT @CAinc: From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "GaggleAMP" + }, + "default_profile_image": false, + "id": 84699828, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1939, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84699828/1440076545", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "539153822", + "following": false, + "friends_count": 8, + "entities": { + "description": { + "urls": [ + { + "display_url": "github.com/contact", + "url": "https://t.co/O4Rsiuqv", + "expanded_url": "https://github.com/contact", + "indices": [ + 54, + 75 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "developer.github.com", + "url": "http://t.co/WSCoZacuEW", + "expanded_url": "http://developer.github.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 8329, + "location": "SF", + "screen_name": "GitHubAPI", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 246, + "name": "GitHub API", + "profile_use_background_image": true, + "description": "GitHub API announcements. Send feedback/questions to https://t.co/O4Rsiuqv", + "url": "http://t.co/WSCoZacuEW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 28 15:52:25 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", + "favourites_count": 9, + "status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684448831757500416", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "developer.github.com/changes/2016-0\u2026", + "url": "https://t.co/kZjASxXV1N", + "expanded_url": "https://developer.github.com/changes/2016-01-05-api-enhancements-for-working-with-organization-permissions-are-now-official/", + "indices": [ + 76, + 99 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 18:58:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684448831757500416, + "text": "API enhancements for working with organization permissions are now official https://t.co/kZjASxXV1N", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 19, + "contributors": null, + "source": "Hubot @GitHubAPI Integration" + }, + "default_profile_image": false, + "id": 539153822, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 431, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "309528017", + "following": false, + "friends_count": 91, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "npmjs.org", + "url": "http://t.co/Yr2xkfPzXd", + "expanded_url": "http://npmjs.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "CB3837", + "geo_enabled": false, + "followers_count": 56431, + "location": "oakland, ca", + "screen_name": "npmjs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1130, + "name": "npmbot", + "profile_use_background_image": false, + "description": "i'm the package manager for javascript. problems? try @npm_support and #npm on freenode.", + "url": "http://t.co/Yr2xkfPzXd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu Jun 02 07:20:53 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", + "favourites_count": 195, + "status": { + "retweet_count": 17, + "retweeted_status": { + "retweet_count": 17, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685257850961014784", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/npm/npm/releas\u2026", + "url": "https://t.co/BL0ttn3fLO", + "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", + "indices": [ + 121, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "npmjs", + "id_str": "309528017", + "id": 309528017, + "indices": [ + 4, + 10 + ], + "name": "npmbot" + } + ] + }, + "created_at": "Fri Jan 08 00:32:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685257850961014784, + "text": "New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https://t.co/BL0ttn3fLO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685258201831309312", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/npm/npm/releas\u2026", + "url": "https://t.co/BL0ttn3fLO", + "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", + "indices": [ + 143, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ReBeccaOrg", + "id_str": "579491588", + "id": 579491588, + "indices": [ + 3, + 14 + ], + "name": "Rebecca v7.3.2" + }, + { + "screen_name": "npmjs", + "id_str": "309528017", + "id": 309528017, + "indices": [ + 20, + 26 + ], + "name": "npmbot" + } + ] + }, + "created_at": "Fri Jan 08 00:34:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685258201831309312, + "text": "RT @ReBeccaOrg: New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 309528017, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", + "statuses_count": 2512, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "785764172", + "following": false, + "friends_count": 3, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "status.github.com", + "url": "http://t.co/efPUg9pga5", + "expanded_url": "http://status.github.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 29276, + "location": "", + "screen_name": "githubstatus", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 669, + "name": "GitHub Status", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/efPUg9pga5", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Aug 28 00:04:59 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", + "favourites_count": 3, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685287597560696833", + "id": 685287597560696833, + "text": "Everything operating normally.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 02:31:09 +0000 2016", + "source": "OctoStatus Production", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 785764172, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 929, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "82874321", + "following": false, + "friends_count": 1136, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.amber.org", + "url": "https://t.co/hvvj9vghmG", + "expanded_url": "http://blog.amber.org", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 839, + "location": "Seattle, WA", + "screen_name": "petrillic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 121, + "name": "Security Therapist", + "profile_use_background_image": true, + "description": "Social Justice _________. Nerd. Tinkerer. General trouble maker. Always learning more useless things. Homo sum humani a me nihil alienum puto.", + "url": "https://t.co/hvvj9vghmG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Fri Oct 16 13:11:25 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", + "favourites_count": 3415, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "secvalve", + "in_reply_to_user_id": 155858106, + "in_reply_to_status_id_str": "685624995892965376", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685625086447988736", + "id": 685625086447988736, + "text": "@secvalve yeah, mine's 16GB, but the desktop has 64GB, so\u2026", + "in_reply_to_user_id_str": "155858106", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "secvalve", + "id_str": "155858106", + "id": 155858106, + "indices": [ + 0, + 9 + ], + "name": "Kate Pearce" + } + ] + }, + "created_at": "Sat Jan 09 00:52:13 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685624995892965376, + "lang": "en" + }, + "default_profile_image": false, + "id": 82874321, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 52187, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/82874321/1418621071", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "6297412", + "following": false, + "friends_count": 820, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "redmonk.com", + "url": "http://t.co/U63YEc1eN4", + "expanded_url": "http://redmonk.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 1019, + "location": "London", + "screen_name": "fintanr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 118, + "name": "Fintan Ryan", + "profile_use_background_image": true, + "description": "Industry analyst @redmonk. Business, technology, communities, data, platforms and occasional interjections.", + "url": "http://t.co/U63YEc1eN4", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Thu May 24 21:58:29 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", + "favourites_count": 1036, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685422437757005824", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mamamia.com.au/rules-for-visi\u2026", + "url": "https://t.co/3yc87RdloV", + "expanded_url": "http://www.mamamia.com.au/rules-for-visiting-a-newborn/", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "sogrady", + "id_str": "143883", + "id": 143883, + "indices": [ + 83, + 91 + ], + "name": "steve o'grady" + }, + { + "screen_name": "girltuesday", + "id_str": "16833482", + "id": 16833482, + "indices": [ + 96, + 108 + ], + "name": "mko'g" + } + ] + }, + "created_at": "Fri Jan 08 11:26:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685422437757005824, + "text": "Two and a bit weeks in, and this reads so well.. https://t.co/3yc87RdloV, thinking @sogrady and @girltuesday may enjoy reading this too :).", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 6297412, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 4240, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6297412/1393521949", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "29170474", + "following": false, + "friends_count": 227, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sirupsen.com", + "url": "http://t.co/lGprTMnO09", + "expanded_url": "http://sirupsen.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "F7F7F7", + "profile_link_color": "0066AA", + "geo_enabled": true, + "followers_count": 3305, + "location": "Ottawa, Canada", + "screen_name": "Sirupsen", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 133, + "name": "Simon Eskildsen", + "profile_use_background_image": false, + "description": "WebScale @Shopify. Canadian in training.", + "url": "http://t.co/lGprTMnO09", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Apr 06 09:15:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EFEFEF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", + "favourites_count": 1073, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json", + "country": "Canada", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -76.353876, + 44.961937 + ], + [ + -75.246407, + 44.961937 + ], + [ + -75.246407, + 45.534511 + ], + [ + -76.353876, + 45.534511 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "CA", + "contained_within": [], + "full_name": "Ottawa, Ontario", + "id": "38d5974e82ed1a6c", + "name": "Ottawa" + }, + "in_reply_to_screen_name": "jnunemaker", + "in_reply_to_user_id": 4243, + "in_reply_to_status_id_str": "685581732322668544", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685594548618182656", + "id": 685594548618182656, + "text": "@jnunemaker Circuit breakers <3 Curious why you ended up building your own over using Semian's?", + "in_reply_to_user_id_str": "4243", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jnunemaker", + "id_str": "4243", + "id": 4243, + "indices": [ + 0, + 11 + ], + "name": "John Nunemaker" + } + ] + }, + "created_at": "Fri Jan 08 22:50:52 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685581732322668544, + "lang": "en" + }, + "default_profile_image": false, + "id": 29170474, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 10223, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29170474/1379296952", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15911738", + "following": false, + "friends_count": 1688, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ryandlane.com", + "url": "http://t.co/eD11mzD1mC", + "expanded_url": "http://ryandlane.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1553, + "location": "San Francisco, CA", + "screen_name": "SquidDLane", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 108, + "name": "Ryan Lane", + "profile_use_background_image": true, + "description": "DevOps Engineer at Lyft, Site Operations volunteer at Wikimedia Foundation and SaltStack volunteer Developer.", + "url": "http://t.co/eD11mzD1mC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Aug 20 00:39:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", + "favourites_count": 26, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "SquidDLane", + "in_reply_to_user_id": 15911738, + "in_reply_to_status_id_str": "685203908256370688", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685204036606234624", + "id": 685204036606234624, + "text": "@tmclaughbos time to make a boto3_asg execution module ;)", + "in_reply_to_user_id_str": "15911738", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tmclaughbos", + "id_str": "740920470", + "id": 740920470, + "indices": [ + 0, + 12 + ], + "name": "Tom McLaughlin" + } + ] + }, + "created_at": "Thu Jan 07 20:59:07 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685203908256370688, + "lang": "en" + }, + "default_profile_image": false, + "id": 15911738, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4934, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1442355080", + "following": false, + "friends_count": 556, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 604, + "location": "Pittsburgh, PA", + "screen_name": "emdantrim", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 19, + "name": "hOI!!!! i'm emmie!!!", + "profile_use_background_image": true, + "description": "I type special words that computers sometimes find meaning in. my words are mine. she. @travisci", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Sun May 19 22:47:02 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", + "favourites_count": 7316, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "wilkieii", + "in_reply_to_user_id": 17047955, + "in_reply_to_status_id_str": "685613356603031552", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613747482800129", + "id": 685613747482800129, + "text": "@wilkieii if you build an application that does this for you, twitter will send you a cease and desist and then implement the feature", + "in_reply_to_user_id_str": "17047955", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wilkieii", + "id_str": "17047955", + "id": 17047955, + "indices": [ + 0, + 9 + ], + "name": "wilkie" + } + ] + }, + "created_at": "Sat Jan 09 00:07:10 +0000 2016", + "source": "TweetDeck", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685613356603031552, + "lang": "en" + }, + "default_profile_image": false, + "id": 1442355080, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 6202, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1442355080/1450668537", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "11764", + "following": false, + "friends_count": 61, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cdevroe.com", + "url": "http://t.co/1iJmxH8GUB", + "expanded_url": "http://cdevroe.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", + "notifications": false, + "profile_sidebar_fill_color": "999999", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 3740, + "location": "Jermyn, PA USA", + "screen_name": "cdevroe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 179, + "name": "Colin Devroe", + "profile_use_background_image": false, + "description": "Pronounced: See-Dev-Roo. Co-founder of @plainmade & @coalwork. JW. Kayaker.", + "url": "http://t.co/1iJmxH8GUB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Nov 08 03:01:15 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", + "favourites_count": 10667, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679337835888058368", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "plainmade.com/blog/14578/lin\u2026", + "url": "https://t.co/XgBYYftnu4", + "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", + "indices": [ + 23, + 46 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "deathtostock", + "id_str": "1727323538", + "id": 1727323538, + "indices": [ + 51, + 64 + ], + "name": "Death To Stock" + }, + { + "screen_name": "jaredsinclair", + "id_str": "15004156", + "id": 15004156, + "indices": [ + 66, + 80 + ], + "name": "Jared Sinclair" + }, + { + "screen_name": "RyanClarkDH", + "id_str": "596003901", + "id": 596003901, + "indices": [ + 83, + 95 + ], + "name": "Ryan Clark" + }, + { + "screen_name": "miguelrios", + "id_str": "14717846", + "id": 14717846, + "indices": [ + 97, + 108 + ], + "name": "Miguel Rios" + }, + { + "screen_name": "aimeeshiree", + "id_str": "14347487", + "id": 14347487, + "indices": [ + 110, + 122 + ], + "name": "aimeeshiree" + }, + { + "screen_name": "nathanaeljm", + "id_str": "97536835", + "id": 97536835, + "indices": [ + 124, + 136 + ], + "name": "Nathanael J Mehrens" + } + ] + }, + "created_at": "Tue Dec 22 16:28:56 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679337835888058368, + "text": "Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, @nathanaeljm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679340399832522752", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "plainmade.com/blog/14578/lin\u2026", + "url": "https://t.co/XgBYYftnu4", + "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", + "indices": [ + 38, + 61 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "plainmade", + "id_str": "977048040", + "id": 977048040, + "indices": [ + 3, + 13 + ], + "name": "Plain" + }, + { + "screen_name": "deathtostock", + "id_str": "1727323538", + "id": 1727323538, + "indices": [ + 66, + 79 + ], + "name": "Death To Stock" + }, + { + "screen_name": "jaredsinclair", + "id_str": "15004156", + "id": 15004156, + "indices": [ + 81, + 95 + ], + "name": "Jared Sinclair" + }, + { + "screen_name": "RyanClarkDH", + "id_str": "596003901", + "id": 596003901, + "indices": [ + 98, + 110 + ], + "name": "Ryan Clark" + }, + { + "screen_name": "miguelrios", + "id_str": "14717846", + "id": 14717846, + "indices": [ + 112, + 123 + ], + "name": "Miguel Rios" + }, + { + "screen_name": "aimeeshiree", + "id_str": "14347487", + "id": 14347487, + "indices": [ + 125, + 137 + ], + "name": "aimeeshiree" + }, + { + "screen_name": "nathanaeljm", + "id_str": "97536835", + "id": 97536835, + "indices": [ + 139, + 140 + ], + "name": "Nathanael J Mehrens" + } + ] + }, + "created_at": "Tue Dec 22 16:39:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679340399832522752, + "text": "RT @plainmade: Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 11764, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", + "statuses_count": 42666, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11764/1444176827", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "13332442", + "following": false, + "friends_count": 337, + "entities": { + "description": { + "urls": [ + { + "display_url": "flickr.com/photos/mikepan\u2026", + "url": "https://t.co/gIfppzqMQO", + "expanded_url": "http://www.flickr.com/photos/mikepanchenko/11139648213/", + "indices": [ + 117, + 140 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mihasya.com", + "url": "http://t.co/8ZVGv5uCcl", + "expanded_url": "http://mihasya.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 842, + "location": "The steak by the m'lake", + "screen_name": "mihasya", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 52, + "name": "Pancakes", + "profile_use_background_image": true, + "description": "making a career of naming projects after foods @newrelic. Formerly @opsmatic @urbanairship @simplegeo @flickr @yahoo https://t.co/gIfppzqMQO", + "url": "http://t.co/8ZVGv5uCcl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Feb 11 03:13:51 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", + "favourites_count": 916, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "polotek", + "in_reply_to_user_id": 20079975, + "in_reply_to_status_id_str": "684832544966103040", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685606078638243841", + "id": 685606078638243841, + "text": "@polotek I cannot convey in text the size of the CONGRATS I'd like to send your way. Also that birth story was intense y'all are both champs", + "in_reply_to_user_id_str": "20079975", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "polotek", + "id_str": "20079975", + "id": 20079975, + "indices": [ + 0, + 8 + ], + "name": "Marco Rogers" + } + ] + }, + "created_at": "Fri Jan 08 23:36:41 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684832544966103040, + "lang": "en" + }, + "default_profile_image": false, + "id": 13332442, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", + "statuses_count": 9830, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13332442/1437710921", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "212199251", + "following": false, + "friends_count": 155, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "orkjern.com", + "url": "https://t.co/cJoUSHfCc3", + "expanded_url": "https://orkjern.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 170, + "location": "Norway", + "screen_name": "orkj", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "eiriksm", + "profile_use_background_image": false, + "description": "All about Drupal, JS and good beer.", + "url": "https://t.co/cJoUSHfCc3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", + "profile_background_color": "A1A1A1", + "created_at": "Fri Nov 05 12:15:41 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", + "favourites_count": 207, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 2154622149, + "possibly_sensitive": false, + "id_str": "685442655992451072", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 673, + "h": 221, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 111, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 197, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", + "type": "photo", + "indices": [ + 77, + 100 + ], + "media_url": "http://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", + "display_url": "pic.twitter.com/403urs6oC3", + "id_str": "685442654981746688", + "expanded_url": "http://twitter.com/orkj/status/685442655992451072/photo/1", + "id": 685442654981746688, + "url": "https://t.co/403urs6oC3" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "torbmorland", + "id_str": "2154622149", + "id": 2154622149, + "indices": [ + 0, + 12 + ], + "name": "Torbj\u00f8rn Morland" + }, + { + "screen_name": "github", + "id_str": "13334762", + "id": 13334762, + "indices": [ + 13, + 20 + ], + "name": "GitHub" + } + ] + }, + "created_at": "Fri Jan 08 12:47:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "2154622149", + "place": null, + "in_reply_to_screen_name": "torbmorland", + "in_reply_to_status_id_str": "685416670555443200", + "truncated": false, + "id": 685442655992451072, + "text": "@torbmorland @github While you are at it, please create this project as well https://t.co/403urs6oC3", + "coordinates": null, + "in_reply_to_status_id": 685416670555443200, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 212199251, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 318, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24659495", + "following": false, + "friends_count": 380, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/bcoe", + "url": "https://t.co/oVbQkCBHsB", + "expanded_url": "https://github.com/bcoe", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1331, + "location": "San Francisco", + "screen_name": "BenjaminCoe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 93, + "name": "Benjamin Coe", + "profile_use_background_image": true, + "description": "I'm a street walking cheetah with a heart full of napalm. Co-founded @attachmentsme, currently hacks up a storm @npmjs. Aspiring human.", + "url": "https://t.co/oVbQkCBHsB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Mar 16 06:23:28 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", + "favourites_count": 2517, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685252262696861697", + "id": 685252262696861697, + "text": "I've been watching greenkeeper.io get a ton of traction across many of the projects I contribute to, wonderful idea @boennemann \\o/", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "boennemann", + "id_str": "37506335", + "id": 37506335, + "indices": [ + 116, + 127 + ], + "name": "Stephan B\u00f6nnemann" + } + ] + }, + "created_at": "Fri Jan 08 00:10:45 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 13, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 24659495, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", + "statuses_count": 3524, + "is_translator": false + }, + { + "time_zone": "Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "18210275", + "following": false, + "friends_count": 235, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "HelloJustine.com", + "url": "http://t.co/9NRKpNO5Cj", + "expanded_url": "http://HelloJustine.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", + "notifications": false, + "profile_sidebar_fill_color": "E8E6DF", + "profile_link_color": "2EC29D", + "geo_enabled": true, + "followers_count": 2243, + "location": "Where the Wild Things Are", + "screen_name": "SaltineJustine", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 122, + "name": "Justine Arreche", + "profile_use_background_image": true, + "description": "I never met a deep fryer I didn't like \u2014 Lead Clipart Strategist at @travisci.", + "url": "http://t.co/9NRKpNO5Cj", + "profile_text_color": "404040", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", + "profile_background_color": "242424", + "created_at": "Thu Dec 18 06:09:40 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", + "favourites_count": 18042, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685601535380832256", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtube.com/watch?v=3uT4RV\u2026", + "url": "https://t.co/shfgUir3HQ", + "expanded_url": "https://www.youtube.com/watch?v=3uT4RV2Dfjs", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "lstoll", + "id_str": "59282163", + "id": 59282163, + "indices": [ + 46, + 53 + ], + "name": "Kernel Sanders" + } + ] + }, + "created_at": "Fri Jan 08 23:18:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -81.877771, + 41.392684 + ], + [ + -81.5331634, + 41.392684 + ], + [ + -81.5331634, + 41.599195 + ], + [ + -81.877771, + 41.599195 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Cleveland, OH", + "id": "0eb9676d24b211f1", + "name": "Cleveland" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685601535380832256, + "text": "Friday evening beats brought to you by me and @lstoll \u2014 https://t.co/shfgUir3HQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18210275, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", + "statuses_count": 23373, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18210275/1437218808", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "11848", + "following": false, + "friends_count": 2306, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/thisisdeb", + "url": "http://t.co/JKlV7BRnzd", + "expanded_url": "http://about.me/thisisdeb", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 9039, + "location": "SF & NYC", + "screen_name": "debs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 734, + "name": "debs", + "profile_use_background_image": false, + "description": "Living at intersection of people, tech, design & horses | Technology changes, humans don't |\r\nCo-founder @yxyy @tummelvision @ILEquestrian", + "url": "http://t.co/JKlV7BRnzd", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Nov 08 17:47:14 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", + "favourites_count": 1096, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685226261308784644", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "fb.me/76u9wdYOo", + "url": "https://t.co/FXGpjqARuU", + "expanded_url": "http://fb.me/76u9wdYOo", + "indices": [ + 104, + 127 + ] + } + ], + "hashtags": [ + { + "indices": [ + 134, + 139 + ], + "text": "yxyy" + } + ], + "user_mentions": [ + { + "screen_name": "jboitnott", + "id_str": "14486811", + "id": 14486811, + "indices": [ + 34, + 44 + ], + "name": "John Boitnott" + }, + { + "screen_name": "YxYY", + "id_str": "1232029844", + "id": 1232029844, + "indices": [ + 128, + 133 + ], + "name": "Yes and Yes Yes" + } + ] + }, + "created_at": "Thu Jan 07 22:27:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685226261308784644, + "text": "Thanks for the shout out John! RT @jboitnott: Why Many Tech Execs Are Skipping the Consumer Electronics https://t.co/FXGpjqARuU @yxyy #yxyy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Echofon" + }, + "default_profile_image": false, + "id": 11848, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "statuses_count": 13886, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11848/1414180455", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15662622", + "following": false, + "friends_count": 4657, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "medium.com/@stevenewcomb", + "url": "https://t.co/l86N09uJWv", + "expanded_url": "http://www.medium.com/@stevenewcomb", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 29588, + "location": "San Francisco, CA", + "screen_name": "stevenewcomb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 676, + "name": "stevenewcomb", + "profile_use_background_image": true, + "description": "founder @befamous \u2022 founder @powerset (now MSFT Bing) \u2022 board Node.js \u2022 designer \u2022 ux \u2022 ui", + "url": "https://t.co/l86N09uJWv", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Jul 30 16:55:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", + "favourites_count": 86, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5ef5b7f391e30aff.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.324818, + 37.8459532 + ], + [ + -122.234225, + 37.8459532 + ], + [ + -122.234225, + 37.905738 + ], + [ + -122.324818, + 37.905738 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Berkeley, CA", + "id": "5ef5b7f391e30aff", + "name": "Berkeley" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "679695243453661184", + "id": 679695243453661184, + "text": "When I asked my grandfather if one can be both wise and immature, he said pull my finger and I'll tell you.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 23 16:09:08 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 19, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15662622, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1147, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15662622/1398732045", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14708110", + "following": false, + "friends_count": 194, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 42, + "location": "", + "screen_name": "pease", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 0, + "name": "Dave Pease", + "profile_use_background_image": true, + "description": "Father, Husband, .NET Developer at IBS, Inc.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", + "profile_background_color": "131516", + "created_at": "Fri May 09 01:18:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", + "favourites_count": 4, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", + "default_profile_image": false, + "id": 14708110, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 136, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14708110/1425394211", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "133448051", + "following": false, + "friends_count": 79, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ussoccer.com", + "url": "http://t.co/lBXZsLTYug", + "expanded_url": "http://www.ussoccer.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 533359, + "location": "United States", + "screen_name": "ussoccer_wnt", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4083, + "name": "U.S. Soccer WNT", + "profile_use_background_image": true, + "description": "U.S. Soccer's official feed for the #USWNT.", + "url": "http://t.co/lBXZsLTYug", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", + "profile_background_color": "E4E5E6", + "created_at": "Thu Apr 15 20:39:54 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", + "favourites_count": 86, + "status": { + "retweet_count": 317, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609673668427777", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amp.twimg.com/v/4ee8494e-4f5\u2026", + "url": "https://t.co/DzHc1f29T6", + "expanded_url": "https://amp.twimg.com/v/4ee8494e-4f5b-4062-a847-abbf85aaa21e", + "indices": [ + 119, + 142 + ] + } + ], + "hashtags": [ + { + "indices": [ + 11, + 17 + ], + "text": "USWNT" + }, + { + "indices": [ + 95, + 107 + ], + "text": "JanuaryCamp" + }, + { + "indices": [ + 108, + 118 + ], + "text": "RoadToRio" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:50:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609673668427777, + "text": "WATCH: the #USWNT is off & running in 2016 with its first training camp of the year in LA. #JanuaryCamp #RoadToRio\nhttps://t.co/DzHc1f29T6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 990, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 133448051, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", + "statuses_count": 13471, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/133448051/1436146536", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "520782355", + "following": false, + "friends_count": 380, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "squidandcrow.com", + "url": "http://t.co/Iz4ZfDvOHi", + "expanded_url": "http://squidandcrow.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 330, + "location": "Pasco, WA", + "screen_name": "SquidAndCrow", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 23, + "name": "Sara Quinn, Person", + "profile_use_background_image": true, + "description": "Thing Maker | Squid Wrangler | Free Thinker | Gamer | Friend | Occasional Meat | She/Her or They/Them", + "url": "http://t.co/Iz4ZfDvOHi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Sat Mar 10 22:18:27 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", + "favourites_count": 3128, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "duosec", + "in_reply_to_user_id": 95339302, + "in_reply_to_status_id_str": "685540745177133058", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685592067100131330", + "id": 685592067100131330, + "text": "@duosec That scared me! So funny, though ;)", + "in_reply_to_user_id_str": "95339302", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "duosec", + "id_str": "95339302", + "id": 95339302, + "indices": [ + 0, + 7 + ], + "name": "Duo Security" + } + ] + }, + "created_at": "Fri Jan 08 22:41:01 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685540745177133058, + "lang": "en" + }, + "default_profile_image": false, + "id": 520782355, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 2610, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/520782355/1448506590", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2981041874", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "requiresafe.com", + "url": "http://t.co/Gbxa8dLwYt", + "expanded_url": "http://requiresafe.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 54, + "location": "Richland, wa", + "screen_name": "requiresafe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "requireSafe", + "profile_use_background_image": true, + "description": "Peace of mind for third-party Node modules. Brought to you by the @liftsecurity team and the founders of the @nodesecurity project.", + "url": "http://t.co/Gbxa8dLwYt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 13 23:44:44 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", + "favourites_count": 6, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "661228477689950208", + "id": 661228477689950208, + "text": "If you haven't done so please switch from using requiresafe to using nsp. The infrastructure will be taken down today.\n\nnpm i nsp -g", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Nov 02 17:08:48 +0000 2015", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2981041874, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 25, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15445975", + "following": false, + "friends_count": 600, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paddy.io", + "url": "http://t.co/lLVQ2zF195", + "expanded_url": "http://paddy.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 879, + "location": "Richland, WA", + "screen_name": "paddyforan", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 95, + "name": "Paddy", + "profile_use_background_image": true, + "description": "\u201cof Paddy & Ethan\u201d", + "url": "http://t.co/lLVQ2zF195", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", + "profile_background_color": "ACDED6", + "created_at": "Tue Jul 15 21:02:05 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", + "favourites_count": 2760, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/0dd0c9c93b5519e1.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -119.348075, + 46.164988 + ], + [ + -119.211248, + 46.164988 + ], + [ + -119.211248, + 46.3513671 + ], + [ + -119.348075, + 46.3513671 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Richland, WA", + "id": "0dd0c9c93b5519e1", + "name": "Richland" + }, + "in_reply_to_screen_name": "wraithgar", + "in_reply_to_user_id": 36700219, + "in_reply_to_status_id_str": "685493379812098049", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685515588530126850", + "id": 685515588530126850, + "text": "@wraithgar saaaaame", + "in_reply_to_user_id_str": "36700219", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wraithgar", + "id_str": "36700219", + "id": 36700219, + "indices": [ + 0, + 10 + ], + "name": "Gar" + } + ] + }, + "created_at": "Fri Jan 08 17:37:07 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685493379812098049, + "lang": "en" + }, + "default_profile_image": false, + "id": 15445975, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 39215, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15445975/1403466417", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2511636140", + "following": false, + "friends_count": 159, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "heatherloui.se", + "url": "https://t.co/8kOnavMn2N", + "expanded_url": "http://heatherloui.se", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "077A7A", + "geo_enabled": false, + "followers_count": 103, + "location": "Claremont, CA", + "screen_name": "one000mph", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 11, + "name": "Heather", + "profile_use_background_image": true, + "description": "Adventurer. Connoisseur Of Fine Teas. Collector of Outrageous Hats. STEM. Yogi.", + "url": "https://t.co/8kOnavMn2N", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed May 21 05:02:13 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", + "favourites_count": 53, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "666510529041575936", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "top13.net/funny-jerk-cat\u2026", + "url": "https://t.co/cQ4rAKpy5O", + "expanded_url": "http://www.top13.net/funny-jerk-cats-dont-respect-personal-space/", + "indices": [ + 0, + 23 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wraithgar", + "id_str": "36700219", + "id": 36700219, + "indices": [ + 24, + 34 + ], + "name": "Gar" + } + ] + }, + "created_at": "Tue Nov 17 06:57:47 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 666510529041575936, + "text": "https://t.co/cQ4rAKpy5O @wraithgar", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2511636140, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 60, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2511636140/1400652181", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3332249974", + "following": false, + "friends_count": 382, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2293, + "location": "", + "screen_name": "opsecanimals", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 75, + "name": "OpSec Animals", + "profile_use_background_image": true, + "description": "Animal OPSEC. The animals that teach and encourage good security practices. Boutique Animal Security Consultancy.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 18 06:10:24 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", + "favourites_count": 1187, + "status": { + "retweet_count": 8, + "retweeted_status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685591424625184769", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "modelviewculture.com/pieces/groomin\u2026", + "url": "https://t.co/mW4QbfhNVG", + "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jessysaurusrex", + "id_str": "17797084", + "id": 17797084, + "indices": [ + 66, + 81 + ], + "name": "Jessy Irwin" + } + ] + }, + "created_at": "Fri Jan 08 22:38:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685591424625184769, + "text": "Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Known: sketches.shaffermusic.com" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685597438594293760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "modelviewculture.com/pieces/groomin\u2026", + "url": "https://t.co/mW4QbfhNVG", + "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "krisshaffer", + "id_str": "136476512", + "id": 136476512, + "indices": [ + 3, + 15 + ], + "name": "Kris Shaffer" + }, + { + "screen_name": "jessysaurusrex", + "id_str": "17797084", + "id": 17797084, + "indices": [ + 83, + 98 + ], + "name": "Jessy Irwin" + } + ] + }, + "created_at": "Fri Jan 08 23:02:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685597438594293760, + "text": "RT @krisshaffer: Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 3332249974, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 317, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3332249974/1434610300", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18139160", + "following": false, + "friends_count": 389, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/inessombra", + "url": "http://t.co/hZHAl1Rxhp", + "expanded_url": "http://about.me/inessombra", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "151717", + "geo_enabled": true, + "followers_count": 2843, + "location": "San Francisco, CA", + "screen_name": "randommood", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 150, + "name": "Ines Sombra", + "profile_use_background_image": true, + "description": "Engineer @fastly. Plagued by many interests including running @papers_we_love SF & board member of @rubytogether. In an everlasting quest for increased focus.", + "url": "http://t.co/hZHAl1Rxhp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", + "profile_background_color": "131516", + "created_at": "Mon Dec 15 16:06:41 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", + "favourites_count": 2721, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "chrisamaphone", + "in_reply_to_user_id": 5972632, + "in_reply_to_status_id_str": "685132380991045632", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685138209391546369", + "id": 685138209391546369, + "text": "@chrisamaphone The industry is predatory and bullshitty. I'm happy to share what we did (or rage with you) if it helps \ud83d\udc70\ud83c\udffc\ud83d\udc79", + "in_reply_to_user_id_str": "5972632", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "chrisamaphone", + "id_str": "5972632", + "id": 5972632, + "indices": [ + 0, + 14 + ], + "name": "Chris Martens" + } + ] + }, + "created_at": "Thu Jan 07 16:37:33 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685132380991045632, + "lang": "en" + }, + "default_profile_image": false, + "id": 18139160, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 7723, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18139160/1405120776", + "is_translator": false + }, + { + "time_zone": "Europe/Berlin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "5430", + "following": false, + "friends_count": 673, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "squeakyvessel.com", + "url": "https://t.co/SmbXMAJahm", + "expanded_url": "http://squeakyvessel.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "666666", + "geo_enabled": true, + "followers_count": 1899, + "location": "Frankfurt, Germany", + "screen_name": "benjamin", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 128, + "name": "Benjamin Reitzammer", + "profile_use_background_image": true, + "description": "Head of my head, Feminist\n\n@VaamoTech //\n@socrates_2016 // \n@breathing_code", + "url": "https://t.co/SmbXMAJahm", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Sep 07 11:54:22 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "de", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", + "favourites_count": 1040, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685607349369860096", + "id": 685607349369860096, + "text": ".@henryrollins I looooove yooouuuu #manthatwasintense", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 35, + 53 + ], + "text": "manthatwasintense" + } + ], + "user_mentions": [ + { + "screen_name": "henryrollins", + "id_str": "16618332", + "id": 16618332, + "indices": [ + 1, + 14 + ], + "name": "henryrollins" + } + ] + }, + "created_at": "Fri Jan 08 23:41:44 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 5430, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", + "statuses_count": 9759, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5430/1425282364", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "304067888", + "following": false, + "friends_count": 1108, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ashleygwilliams.github.io", + "url": "https://t.co/rkt9BdQBYx", + "expanded_url": "http://ashleygwilliams.github.io/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 5856, + "location": "undefined", + "screen_name": "ag_dubs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 295, + "name": "ashley williams", + "profile_use_background_image": true, + "description": "a mess like this is easily five to ten years ahead of its time. human, @npmjs.", + "url": "https://t.co/rkt9BdQBYx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon May 23 21:43:03 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", + "favourites_count": 16725, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 351346221, + "possibly_sensitive": false, + "id_str": "685624661137342464", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPT-_bUwAAJvkx.jpg", + "type": "photo", + "indices": [ + 14, + 37 + ], + "media_url": "http://pbs.twimg.com/media/CYPT-_bUwAAJvkx.jpg", + "display_url": "pic.twitter.com/m4v7CIdJGJ", + "id_str": "685624647421837312", + "expanded_url": "http://twitter.com/ag_dubs/status/685624661137342464/photo/1", + "id": 685624647421837312, + "url": "https://t.co/m4v7CIdJGJ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "willmanduffy", + "id_str": "351346221", + "id": 351346221, + "indices": [ + 0, + 13 + ], + "name": "Willman" + } + ] + }, + "created_at": "Sat Jan 09 00:50:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "351346221", + "place": null, + "in_reply_to_screen_name": "willmanduffy", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685624661137342464, + "text": "@willmanduffy https://t.co/m4v7CIdJGJ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 304067888, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", + "statuses_count": 28816, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/304067888/1400530788", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14499792", + "following": false, + "friends_count": 69, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fayerplay.com", + "url": "http://t.co/a7vsP6hbIq", + "expanded_url": "http://fayerplay.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/125537436/bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F7DA93", + "profile_link_color": "CC3300", + "geo_enabled": false, + "followers_count": 330, + "location": "Columbia, Maryland", + "screen_name": "papa_fire", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Leon Fayer", + "profile_use_background_image": true, + "description": "Technologist. Web architect. DevOps [something]. VP @OmniTI. Gamer. Die hard Ravens fan.", + "url": "http://t.co/a7vsP6hbIq", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Apr 23 19:53:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", + "favourites_count": 7, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685498351551393795", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tinyclouds.org/colorize/", + "url": "https://t.co/n4MF2LMQA5", + "expanded_url": "http://tinyclouds.org/colorize/", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:28:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685498351551393795, + "text": "This is much cooler that even author leads to believe. https://t.co/n4MF2LMQA5", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 14499792, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/125537436/bg.jpg", + "statuses_count": 2534, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14499792/1354950251", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14412937", + "following": false, + "friends_count": 150, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "eev.ee", + "url": "http://t.co/ffxyntfCy2", + "expanded_url": "http://eev.ee/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "4380BF", + "geo_enabled": true, + "followers_count": 7056, + "location": "Sin City 2000", + "screen_name": "eevee", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 217, + "name": "\u2744\u26c4 eevee \u26c4\u2744", + "profile_use_background_image": true, + "description": "i like computers but also yell about them a lot. sometimes i hack or write or draw. she/they/he", + "url": "http://t.co/ffxyntfCy2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", + "profile_background_color": "0A3A6A", + "created_at": "Wed Apr 16 21:08:32 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", + "favourites_count": 32351, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "keisisqrl", + "in_reply_to_user_id": 1484341, + "in_reply_to_status_id_str": "685626122483011584", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685630168530948096", + "id": 685630168530948096, + "text": "@keisisqrl apparently it only even works on one brand of phone? which is an incredible leap forward in shrinking walled gardens even smaller", + "in_reply_to_user_id_str": "1484341", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "keisisqrl", + "id_str": "1484341", + "id": 1484341, + "indices": [ + 0, + 10 + ], + "name": "squirrelbutts" + } + ] + }, + "created_at": "Sat Jan 09 01:12:25 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685626122483011584, + "lang": "en" + }, + "default_profile_image": false, + "id": 14412937, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", + "statuses_count": 81073, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14412937/1435395260", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16642746", + "following": false, + "friends_count": 414, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "crappytld.club", + "url": "http://t.co/d1H2gppjtx", + "expanded_url": "http://crappytld.club/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 6003, + "location": "Austin, TX", + "screen_name": "miketaylr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 435, + "name": "Mike Taylor", + "profile_use_background_image": true, + "description": "Web Compat at Mozilla. I mostly tweet about crappy code. \\\ufdfa\u0310\u033e\u033e\u0308\u030f\u0314\u0302\u0307\u0300\u036d\u0308\u0366\u034c\u033d\u036d\u036a\u036b\u036f\u0304\u034f\u031e\u032d\u0318\u0325\u0324\u034e\u0324\u0358\\'", + "url": "http://t.co/d1H2gppjtx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Wed Oct 08 02:18:14 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", + "favourites_count": 4739, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -97.928935, + 30.127892 + ], + [ + -97.5805133, + 30.127892 + ], + [ + -97.5805133, + 30.5187994 + ], + [ + -97.928935, + 30.5187994 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Austin, TX", + "id": "c3f37afa9efcf94b", + "name": "Austin" + }, + "in_reply_to_screen_name": "snorp", + "in_reply_to_user_id": 14663842, + "in_reply_to_status_id_str": "685227191529934848", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685230499069952001", + "id": 685230499069952001, + "text": "@snorp i give it a year before someone is running NodeJS on one of these (help us all)", + "in_reply_to_user_id_str": "14663842", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "snorp", + "id_str": "14663842", + "id": 14663842, + "indices": [ + 0, + 6 + ], + "name": "James Willcox" + } + ] + }, + "created_at": "Thu Jan 07 22:44:16 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685227191529934848, + "lang": "en" + }, + "default_profile_image": false, + "id": 16642746, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", + "statuses_count": 16572, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16642746/1381258666", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "749863", + "following": false, + "friends_count": 565, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "relay.fm/rd", + "url": "https://t.co/zuZ3gobI4e", + "expanded_url": "http://www.relay.fm/rd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", + "notifications": false, + "profile_sidebar_fill_color": "DFDFDF", + "profile_link_color": "4255AE", + "geo_enabled": false, + "followers_count": 354977, + "location": "The Outside Lands", + "screen_name": "hotdogsladies", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8034, + "name": "Merlin Mann", + "profile_use_background_image": false, + "description": "Ricordati che \u00e8 un film comico.", + "url": "https://t.co/zuZ3gobI4e", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", + "profile_background_color": "EEEEEE", + "created_at": "Sat Feb 03 01:39:53 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", + "favourites_count": 27394, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685623487570915330", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "sfsketchfest2016.sched.org/event/4jDI/rod\u2026", + "url": "https://t.co/aAyrIvUKZO", + "expanded_url": "http://sfsketchfest2016.sched.org/event/4jDI/roderick-on-the-line-with-merlin-mann-and-john-roderick", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:45:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685623487570915330, + "text": "If you are within 150 miles of San Francisco right now you have nothing more important going on tonight than: https://t.co/aAyrIvUKZO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685625963061772288", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "sfsketchfest2016.sched.org/event/4jDI/rod\u2026", + "url": "https://t.co/aAyrIvUKZO", + "expanded_url": "http://sfsketchfest2016.sched.org/event/4jDI/roderick-on-the-line-with-merlin-mann-and-john-roderick", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "johnroderick", + "id_str": "17431654", + "id": 17431654, + "indices": [ + 3, + 16 + ], + "name": "john roderick" + } + ] + }, + "created_at": "Sat Jan 09 00:55:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685625963061772288, + "text": "RT @johnroderick: If you are within 150 miles of San Francisco right now you have nothing more important going on tonight than: https://t.c\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 749863, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", + "statuses_count": 29732, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/749863/1450650802", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "239324052", + "following": false, + "friends_count": 1414, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "blog.skepticfx.com", + "url": "https://t.co/gLsQ0GkDmG", + "expanded_url": "https://blog.skepticfx.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1421, + "location": "San Francisco, CA", + "screen_name": "skeptic_fx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "Ahamed Nafeez", + "profile_use_background_image": false, + "description": "Security Engineering is one of the things I do. Views are my own and does not represent my employer.", + "url": "https://t.co/gLsQ0GkDmG", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Jan 17 10:33:29 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", + "favourites_count": 1253, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "verystrongjoe", + "in_reply_to_user_id": 53238886, + "in_reply_to_status_id_str": "682429494154530817", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "682501819830931457", + "id": 682501819830931457, + "text": "@verystrongjoe Hi! I've replied to you over email :)", + "in_reply_to_user_id_str": "53238886", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "verystrongjoe", + "id_str": "53238886", + "id": 53238886, + "indices": [ + 0, + 14 + ], + "name": "Jo Uk" + } + ] + }, + "created_at": "Thu Dec 31 10:01:28 +0000 2015", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 682429494154530817, + "lang": "en" + }, + "default_profile_image": false, + "id": 239324052, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 2307, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/239324052/1443490816", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3194669250", + "following": false, + "friends_count": 136, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wild.land", + "url": "http://t.co/ktkvhRQiyM", + "expanded_url": "http://wild.land", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 61, + "location": "Richland, WA", + "screen_name": "wildlandlabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Wildland", + "profile_use_background_image": false, + "description": "Software Builders, Coffee Enthusiasts, General Human Beings.", + "url": "http://t.co/ktkvhRQiyM", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", + "profile_background_color": "000000", + "created_at": "Wed May 13 21:58:06 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", + "favourites_count": 5, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mattepp", + "in_reply_to_user_id": 14871770, + "in_reply_to_status_id_str": "637133104977588226", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "637150029396860930", + "id": 637150029396860930, + "text": "Ohhai!! @mattepp ///@grElement", + "in_reply_to_user_id_str": "14871770", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mattepp", + "id_str": "14871770", + "id": 14871770, + "indices": [ + 8, + 16 + ], + "name": "Matthew Eppelsheimer" + }, + { + "screen_name": "grElement", + "id_str": "42056876", + "id": 42056876, + "indices": [ + 20, + 30 + ], + "name": "Angela Steffens" + } + ] + }, + "created_at": "Fri Aug 28 06:29:39 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 637133104977588226, + "lang": "it" + }, + "default_profile_image": false, + "id": 3194669250, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 22, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3194669250/1431554889", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1530096708", + "following": false, + "friends_count": 4721, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "closetoclever.com", + "url": "https://t.co/oQf0XG5ffN", + "expanded_url": "http://www.closetoclever.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "007AB3", + "geo_enabled": false, + "followers_count": 8747, + "location": "Birmingham/London/\u3069\u3053\u3067\u3082", + "screen_name": "jesslynnrose", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 298, + "name": "Jessica Rose", + "profile_use_background_image": true, + "description": "Technology's den mother. Devrel for @dfsoftwareinc & often doing things w/ @opencodeclub, @trans_code & @watchingbuffy DMs open*, views mine", + "url": "https://t.co/oQf0XG5ffN", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 19 07:56:27 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", + "favourites_count": 8916, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "spiky_flamingo", + "in_reply_to_user_id": 3143889479, + "in_reply_to_status_id_str": "685558133687775232", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685558290324041728", + "id": 685558290324041728, + "text": "@spiky_flamingo @miss_jwo I am! DM incoming! \ud83d\ude01", + "in_reply_to_user_id_str": "3143889479", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "spiky_flamingo", + "id_str": "3143889479", + "id": 3143889479, + "indices": [ + 0, + 15 + ], + "name": "pearl irl" + }, + { + "screen_name": "miss_jwo", + "id_str": "200519952", + "id": 200519952, + "indices": [ + 16, + 25 + ], + "name": "Jenny Wong" + } + ] + }, + "created_at": "Fri Jan 08 20:26:48 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685558133687775232, + "lang": "en" + }, + "default_profile_image": false, + "id": 1530096708, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 15506, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1530096708/1448497747", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "5438512", + "following": false, + "friends_count": 543, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pcper.com", + "url": "http://t.co/FyPzbMLdvW", + "expanded_url": "http://www.pcper.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 11986, + "location": "Florence, KY", + "screen_name": "ryanshrout", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 726, + "name": "Ryan Shrout", + "profile_use_background_image": false, + "description": "Editor-in-Chief at PC Perspective", + "url": "http://t.co/FyPzbMLdvW", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Mon Apr 23 16:41:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", + "favourites_count": 258, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685614844570021888", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 460, + "h": 460, + "resize": "fit" + }, + "medium": { + "w": 460, + "h": 460, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPLEDjUsAArYcG.jpg", + "type": "photo", + "indices": [ + 91, + 114 + ], + "media_url": "http://pbs.twimg.com/media/CYPLEDjUsAArYcG.jpg", + "display_url": "pic.twitter.com/GqCp6be3gk", + "id_str": "685614838823825408", + "expanded_url": "http://twitter.com/ryanshrout/status/685614844570021888/photo/1", + "id": 685614838823825408, + "url": "https://t.co/GqCp6be3gk" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22QQFLq", + "url": "https://t.co/MSSt2Xok0y", + "expanded_url": "http://bit.ly/22QQFLq", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:11:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685614844570021888, + "text": "CES 2016: In Win H-Frame Open Air Chassis and PSU | PC Perspective https://t.co/MSSt2Xok0y https://t.co/GqCp6be3gk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 5438512, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 15327, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "43188880", + "following": false, + "friends_count": 1674, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dalebracey.com", + "url": "https://t.co/uQTo4Zburt", + "expanded_url": "http://dalebracey.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7A5339", + "profile_link_color": "FF6600", + "geo_enabled": false, + "followers_count": 1257, + "location": "San Antonio, TX", + "screen_name": "IRTermite", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 60, + "name": "Dale Bracey \u2601", + "profile_use_background_image": true, + "description": "Social Strategist @Rackspace, Racker since 2004 - Artist, Car Collector, Empath, Geek, Networker, Techie, Jack-of-all, #OpenStack, @MakeSanAntonio @RackerGamers", + "url": "https://t.co/uQTo4Zburt", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", + "profile_background_color": "131516", + "created_at": "Thu May 28 20:27:13 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", + "favourites_count": 2191, + "status": { + "retweet_count": 24, + "retweeted_status": { + "retweet_count": 24, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685296231405326337", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 852, + "h": 669, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 471, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 266, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "type": "photo", + "indices": [ + 90, + 113 + ], + "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "display_url": "pic.twitter.com/65waEZwn1E", + "id_str": "685296015801331716", + "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", + "id": 685296015801331716, + "url": "https://t.co/65waEZwn1E" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:05:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685296231405326337, + "text": "Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 23, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685296427338051584", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 852, + "h": 669, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 471, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 266, + "resize": "fit" + } + }, + "source_status_id_str": "685296231405326337", + "url": "https://t.co/65waEZwn1E", + "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "source_user_id_str": "26191233", + "id_str": "685296015801331716", + "id": 685296015801331716, + "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", + "type": "photo", + "indices": [ + 105, + 128 + ], + "source_status_id": 685296231405326337, + "source_user_id": 26191233, + "display_url": "pic.twitter.com/65waEZwn1E", + "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Rackspace", + "id_str": "26191233", + "id": 26191233, + "indices": [ + 3, + 13 + ], + "name": "Rackspace" + } + ] + }, + "created_at": "Fri Jan 08 03:06:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685296427338051584, + "text": "RT @Rackspace: Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 43188880, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 6991, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43188880/1433971079", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "801712861", + "following": false, + "friends_count": 614, + "entities": { + "description": { + "urls": [ + { + "display_url": "domschopsalsa.com", + "url": "https://t.co/ySTEeD6lcz", + "expanded_url": "http://www.domschopsalsa.com", + "indices": [ + 90, + 113 + ] + }, + { + "display_url": "facebook.com/chopsalsa", + "url": "https://t.co/DoMfz1yk60", + "expanded_url": "http://facebook.com/chopsalsa", + "indices": [ + 115, + 138 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/dominicmend\u2026", + "url": "http://t.co/3hwdF3IqPC", + "expanded_url": "http://www.linkedin.com/in/dominicmendiola", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 267, + "location": "San Antonio, TX", + "screen_name": "DominicMendiola", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "dominic.mendiola", + "profile_use_background_image": false, + "description": "Father. Husband. Racker since 2006. Social Media Team. Owner Dom's Chop Salsa @chopsalsa, https://t.co/ySTEeD6lcz, https://t.co/DoMfz1yk60", + "url": "http://t.co/3hwdF3IqPC", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Sep 04 03:13:51 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", + "favourites_count": 391, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "trevorengstrom", + "in_reply_to_user_id": 15080503, + "in_reply_to_status_id_str": "684515636333051904", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684516227667001344", + "id": 684516227667001344, + "text": "@trevorengstrom @Rackspace Ok good! If anything else pops up and you need a hand...just let us know! We're always happy to help! Thanks!", + "in_reply_to_user_id_str": "15080503", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "trevorengstrom", + "id_str": "15080503", + "id": 15080503, + "indices": [ + 0, + 15 + ], + "name": "Trevor Engstrom" + }, + { + "screen_name": "Rackspace", + "id_str": "26191233", + "id": 26191233, + "indices": [ + 16, + 26 + ], + "name": "Rackspace" + } + ] + }, + "created_at": "Tue Jan 05 23:26:01 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684515636333051904, + "lang": "en" + }, + "default_profile_image": false, + "id": 801712861, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 536, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/801712861/1443214772", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "4508241", + "following": false, + "friends_count": 194, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "langfeld.me", + "url": "http://t.co/FYGU0gVzky", + "expanded_url": "http://langfeld.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 481, + "location": "Rio de Janeiro, Brasil", + "screen_name": "benlangfeld", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "Ben Langfeld", + "profile_use_background_image": true, + "description": "Communications app developer. Mojo Lingo & Adhearsion Foundation. Experimenter and perfectionist.", + "url": "http://t.co/FYGU0gVzky", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Apr 13 15:05:00 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", + "favourites_count": 200, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 3033204133, + "possibly_sensitive": false, + "id_str": "685548188435132416", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "gist.github.com/benlangfeld/18\u2026", + "url": "https://t.co/EYtcS2Vqhk", + "expanded_url": "https://gist.github.com/benlangfeld/181cbb3997eb4236e244", + "indices": [ + 87, + 110 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "honest_update", + "id_str": "3033204133", + "id": 3033204133, + "indices": [ + 0, + 14 + ], + "name": "Honest Status Page" + } + ] + }, + "created_at": "Fri Jan 08 19:46:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "3033204133", + "place": null, + "in_reply_to_screen_name": "honest_update", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685548188435132416, + "text": "@honest_update Our app fell over because our queue was too slow. It's ok, we fixed it: https://t.co/EYtcS2Vqhk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 4508241, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2697, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4508241/1401146387", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "22199970", + "following": false, + "friends_count": 761, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lea.verou.me", + "url": "http://t.co/Q2CdWpNV1q", + "expanded_url": "http://lea.verou.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/324344036/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFBF2", + "profile_link_color": "FF0066", + "geo_enabled": true, + "followers_count": 64140, + "location": "Cambridge, MA", + "screen_name": "LeaVerou", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3585, + "name": "Lea Verou", + "profile_use_background_image": true, + "description": "HCI researcher @MIT_CSAIL, @CSSWG IE, @CSSSecretsBook author, Ex @W3C staff. Made @prismjs @dabblet @prefixfree. I \u2665 standards, code, design, UX, life!", + "url": "http://t.co/Q2CdWpNV1q", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", + "profile_background_color": "FBE4AE", + "created_at": "Fri Feb 27 22:28:59 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", + "favourites_count": 3696, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685359744966590464", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "byteplumbing.net/2016/01/book-r\u2026", + "url": "https://t.co/pfmTTIXCIy", + "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "csssecretsbook", + "id_str": "3262381338", + "id": 3262381338, + "indices": [ + 23, + 38 + ], + "name": "CSS Secrets" + } + ] + }, + "created_at": "Fri Jan 08 07:17:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685359744966590464, + "text": "Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co/pfmTTIXCIy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685574450780192770", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "byteplumbing.net/2016/01/book-r\u2026", + "url": "https://t.co/pfmTTIXCIy", + "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "iiska", + "id_str": "18630451", + "id": 18630451, + "indices": [ + 3, + 9 + ], + "name": "Juhamatti Niemel\u00e4" + }, + { + "screen_name": "csssecretsbook", + "id_str": "3262381338", + "id": 3262381338, + "indices": [ + 34, + 49 + ], + "name": "CSS Secrets" + } + ] + }, + "created_at": "Fri Jan 08 21:31:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685574450780192770, + "text": "RT @iiska: Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 22199970, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/324344036/bg.png", + "statuses_count": 24815, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22199970/1374351780", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2739826012", + "following": false, + "friends_count": 2320, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "matrix.org", + "url": "http://t.co/Rrx4mnMJ5W", + "expanded_url": "http://www.matrix.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "4F5A5E", + "geo_enabled": true, + "followers_count": 1227, + "location": "", + "screen_name": "matrixdotorg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 61, + "name": "Matrix", + "profile_use_background_image": false, + "description": "An open standard for decentralised persistent communication. Tweets by @ara4n, @amandinelepape & co.", + "url": "http://t.co/Rrx4mnMJ5W", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Aug 11 10:51:23 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", + "favourites_count": 781, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685552098830880768", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", + "url": "https://t.co/0iV7Uzmaia", + "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", + "indices": [ + 31, + 54 + ] + }, + { + "display_url": "webrtcconference.jp", + "url": "https://t.co/7NnGiq0vCN", + "expanded_url": "http://webrtcconference.jp/", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [ + { + "indices": [ + 69, + 78 + ], + "text": "skywayjs" + } + ], + "user_mentions": [ + { + "screen_name": "TADHack", + "id_str": "2315728231", + "id": 2315728231, + "indices": [ + 11, + 19 + ], + "name": "TADHack" + }, + { + "screen_name": "matrixdotorg", + "id_str": "2739826012", + "id": 2739826012, + "indices": [ + 55, + 68 + ], + "name": "Matrix" + }, + { + "screen_name": "telestax", + "id_str": "266634532", + "id": 266634532, + "indices": [ + 79, + 88 + ], + "name": "TeleStax" + }, + { + "screen_name": "ntt", + "id_str": "1706681", + "id": 1706681, + "indices": [ + 89, + 93 + ], + "name": "Chinmay" + } + ] + }, + "created_at": "Fri Jan 08 20:02:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685552098830880768, + "text": "Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co/7NnGiq0vCN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685553303049076741", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", + "url": "https://t.co/0iV7Uzmaia", + "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", + "indices": [ + 44, + 67 + ] + }, + { + "display_url": "webrtcconference.jp", + "url": "https://t.co/7NnGiq0vCN", + "expanded_url": "http://webrtcconference.jp/", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 82, + 91 + ], + "text": "skywayjs" + } + ], + "user_mentions": [ + { + "screen_name": "TADHack", + "id_str": "2315728231", + "id": 2315728231, + "indices": [ + 3, + 11 + ], + "name": "TADHack" + }, + { + "screen_name": "TADHack", + "id_str": "2315728231", + "id": 2315728231, + "indices": [ + 24, + 32 + ], + "name": "TADHack" + }, + { + "screen_name": "matrixdotorg", + "id_str": "2739826012", + "id": 2739826012, + "indices": [ + 68, + 81 + ], + "name": "Matrix" + }, + { + "screen_name": "telestax", + "id_str": "266634532", + "id": 266634532, + "indices": [ + 92, + 101 + ], + "name": "TeleStax" + }, + { + "screen_name": "ntt", + "id_str": "1706681", + "id": 1706681, + "indices": [ + 102, + 106 + ], + "name": "Chinmay" + } + ] + }, + "created_at": "Fri Jan 08 20:06:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685553303049076741, + "text": "RT @TADHack: Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2739826012, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1282, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2739826012/1422740800", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "512410920", + "following": false, + "friends_count": 735, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wroteacodeforcloverhitch.blogspot.ca", + "url": "http://t.co/orO5dwZcHv", + "expanded_url": "http://wroteacodeforcloverhitch.blogspot.ca/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "80042B", + "geo_enabled": false, + "followers_count": 911, + "location": "Calgary, Alberta", + "screen_name": "gbhorwood", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Grant Horwood", + "profile_use_background_image": true, + "description": "Lead developer Cloverhitch Tech in Calgary, AB. I like clever code, verbose documentation, fast bicycles and questionable homebrew.", + "url": "http://t.co/orO5dwZcHv", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", + "profile_background_color": "ABB8C2", + "created_at": "Fri Mar 02 20:19:53 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", + "favourites_count": 1533, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "meejah", + "in_reply_to_user_id": 13055372, + "in_reply_to_status_id_str": "685565777680859136", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685566263142187008", + "id": 685566263142187008, + "text": "@meejah yeah. i have a \"bob has a bug\" issue. what bug? when? last name? no one can say... \n\ngrep -irn \"bob\" ./*", + "in_reply_to_user_id_str": "13055372", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "meejah", + "id_str": "13055372", + "id": 13055372, + "indices": [ + 0, + 7 + ], + "name": "meejah" + } + ] + }, + "created_at": "Fri Jan 08 20:58:28 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685565777680859136, + "lang": "en" + }, + "default_profile_image": false, + "id": 512410920, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2309, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/512410920/1398348433", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "65583", + "following": false, + "friends_count": 654, + "entities": { + "description": { + "urls": [ + { + "display_url": "OSMIhelp.org", + "url": "http://t.co/skQU77s3rk", + "expanded_url": "http://OSMIhelp.org", + "indices": [ + 83, + 105 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "funkatron.com", + "url": "http://t.co/Y4o3XtlP6R", + "expanded_url": "http://funkatron.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90616269/funbike.png", + "notifications": false, + "profile_sidebar_fill_color": "B8B8B8", + "profile_link_color": "660000", + "geo_enabled": false, + "followers_count": 8751, + "location": "West Lafayette, IN, USA", + "screen_name": "funkatron", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 773, + "name": "Ed Finkler", + "profile_use_background_image": false, + "description": "Dork, Dad, JS, PHP & Python feller. Lead Dev @GraphStoryCo. Mental Health advocate http://t.co/skQU77s3rk. 1/2 of @dev_hell podcast. See also @funkalinks", + "url": "http://t.co/Y4o3XtlP6R", + "profile_text_color": "424141", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Dec 14 00:31:16 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", + "favourites_count": 8512, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jclermont", + "in_reply_to_user_id": 16358696, + "in_reply_to_status_id_str": "685606121604681729", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685609221245763585", + "id": 685609221245763585, + "text": "@jclermont when I read this I had to say that out loud", + "in_reply_to_user_id_str": "16358696", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jclermont", + "id_str": "16358696", + "id": 16358696, + "indices": [ + 0, + 10 + ], + "name": "Joel Clermont" + } + ] + }, + "created_at": "Fri Jan 08 23:49:11 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685606121604681729, + "lang": "en" + }, + "default_profile_image": false, + "id": 65583, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90616269/funbike.png", + "statuses_count": 84078, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/65583/1438612109", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "396241682", + "following": false, + "friends_count": 322, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mariemosley.com/about", + "url": "https://t.co/BppFkRlCWu", + "expanded_url": "https://www.mariemosley.com/about", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "009CA2", + "geo_enabled": true, + "followers_count": 1098, + "location": "", + "screen_name": "MMosley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "name": "Marie Mosley", + "profile_use_background_image": false, + "description": "Look out honey, 'cause I'm using technology // Part of Team @CodePen", + "url": "https://t.co/BppFkRlCWu", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", + "profile_background_color": "01E6EF", + "created_at": "Sat Oct 22 23:58:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", + "favourites_count": 10414, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "jaynawallace", + "in_reply_to_user_id": 78213, + "in_reply_to_status_id_str": "685594363007746048", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685602091553959936", + "id": 685602091553959936, + "text": "@jaynawallace I will join your squad \ud83d\udc6f what's you're name on there?", + "in_reply_to_user_id_str": "78213", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jaynawallace", + "id_str": "78213", + "id": 78213, + "indices": [ + 0, + 13 + ], + "name": "\u02d7\u02cf\u02cb jayna wallace \u02ce\u02ca" + } + ] + }, + "created_at": "Fri Jan 08 23:20:51 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685594363007746048, + "lang": "en" + }, + "default_profile_image": false, + "id": 396241682, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3204, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/396241682/1430082364", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3202399565", + "following": false, + "friends_count": 26, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 32, + "location": "De Cymru", + "screen_name": "KevTWondersheep", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Kevin Smith", + "profile_use_background_image": true, + "description": "@DefinitiveKev pretending to be non-techie. May contain very very bad Welsh.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Apr 24 22:27:37 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", + "favourites_count": 45, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "EmiGarside", + "in_reply_to_user_id": 23923202, + "in_reply_to_status_id_str": "684380251649093632", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684380579673018368", + "id": 684380579673018368, + "text": "@emigarside Droids don't rip people's arms out of their sockets when they lose. Wookies are known to do that.", + "in_reply_to_user_id_str": "23923202", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "EmiGarside", + "id_str": "23923202", + "id": 23923202, + "indices": [ + 0, + 11 + ], + "name": "Dr Emily Garside" + } + ] + }, + "created_at": "Tue Jan 05 14:27:00 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684380251649093632, + "lang": "en" + }, + "default_profile_image": false, + "id": 3202399565, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 71, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3202399565/1429962655", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "606349117", + "following": false, + "friends_count": 1523, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sparxeng.com", + "url": "http://t.co/tfYNlmleOE", + "expanded_url": "http://www.sparxeng.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1980, + "location": "Houston, TX", + "screen_name": "SparxEngineer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 61, + "name": "Sparx Engineering", + "profile_use_background_image": true, + "description": "Engineering consulting company, specializing in embedded devices, custom/mobile/web application development and helping startups bring products to market.", + "url": "http://t.co/tfYNlmleOE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 12 14:10:06 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", + "favourites_count": 16, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685140345215139841", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", + "display_url": "pic.twitter.com/HawyibmcoX", + "id_str": "685140345039024128", + "expanded_url": "http://twitter.com/SparxEngineer/status/685140345215139841/photo/1", + "id": 685140345039024128, + "url": "https://t.co/HawyibmcoX" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1Z8fXA2", + "url": "https://t.co/LzWHfSO5Ux", + "expanded_url": "http://buff.ly/1Z8fXA2", + "indices": [ + 66, + 89 + ] + } + ], + "hashtags": [ + { + "indices": [ + 90, + 95 + ], + "text": "tech" + }, + { + "indices": [ + 96, + 104 + ], + "text": "fitness" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 16:46:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685140345215139841, + "text": "New lawsuit: Fitbit heart rate tracking is dangerously inaccurate https://t.co/LzWHfSO5Ux #tech #fitness https://t.co/HawyibmcoX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 606349117, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1734, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/606349117/1391191180", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "84107122", + "following": false, + "friends_count": 1570, + "entities": { + "description": { + "urls": [ + { + "display_url": "themakersofthings.co.uk", + "url": "http://t.co/f5R61wCtSs", + "expanded_url": "http://themakersofthings.co.uk", + "indices": [ + 73, + 95 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "anne.holiday", + "url": "http://t.co/pxLXGQsvL6", + "expanded_url": "http://anne.holiday/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 908, + "location": "Brooklyn, NY", + "screen_name": "anneholiday", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 32, + "name": "Anne Holiday", + "profile_use_background_image": true, + "description": "Filmmaker. Phototaker. Maker of The Makers of Things documentary series: http://t.co/f5R61wCtSs", + "url": "http://t.co/pxLXGQsvL6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Oct 21 16:05:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", + "favourites_count": 3006, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685464406453530624", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "newyorker.com/magazine/2015/\u2026", + "url": "https://t.co/qw5SReTvl6", + "expanded_url": "http://www.newyorker.com/magazine/2015/01/19/lets-get-drinks", + "indices": [ + 5, + 28 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:13:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685464406453530624, + "text": "Lol: https://t.co/qw5SReTvl6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 84107122, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 4627, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84107122/1393641836", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3033725946", + "following": false, + "friends_count": 1422, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bit.ly/1vmzDHa", + "url": "http://t.co/27akJdS8AO", + "expanded_url": "http://bit.ly/1vmzDHa", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2046, + "location": "", + "screen_name": "WebRRTC", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 58, + "name": "WebRTC", + "profile_use_background_image": true, + "description": "Live content curated by top Web Real-Time Communication (WebRTC) Influencer", + "url": "http://t.co/27akJdS8AO", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sat Feb 21 02:29:20 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685619974405111809", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPPu8lUMAALzq3.jpg", + "type": "photo", + "indices": [ + 69, + 92 + ], + "media_url": "http://pbs.twimg.com/media/CYPPu8lUMAALzq3.jpg", + "display_url": "pic.twitter.com/RShfZusyFc", + "id_str": "685619973734019072", + "expanded_url": "http://twitter.com/WebRRTC/status/685619974405111809/photo/1", + "id": 685619973734019072, + "url": "https://t.co/RShfZusyFc" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "rightrelevance.com/search/article\u2026", + "url": "https://t.co/T0JCitzPyD", + "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=5f12a324855759cd16cbb7035abfa66359421230&query=webrtc&taccount=webrrtc", + "indices": [ + 45, + 68 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 7 + ], + "text": "vuc575" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:31:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "tl", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685619974405111809, + "text": "#vuc575 - WebRTC PaaS with Tsahi Levent-Levi https://t.co/T0JCitzPyD https://t.co/RShfZusyFc", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "RRPostingApp" + }, + "default_profile_image": false, + "id": 3033725946, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2874, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15518306", + "following": false, + "friends_count": 428, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "langille.org", + "url": "http://t.co/uBwYd3PW71", + "expanded_url": "http://langille.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1242, + "location": "near Philadelphia", + "screen_name": "DLangille", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 91, + "name": "Dan Langille", + "profile_use_background_image": true, + "description": "Mountain biker. Software Dev. Sysadmin. Websites & databases. Conference organizer.", + "url": "http://t.co/uBwYd3PW71", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", + "profile_background_color": "C6E2EE", + "created_at": "Mon Jul 21 17:56:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", + "favourites_count": 630, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685554984306360320", + "id": 685554984306360320, + "text": "Current status: adding my user (not me) to gmail. I feel all grown up....", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:13:39 +0000 2016", + "source": "Twitterrific for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15518306, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", + "statuses_count": 12127, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15518306/1406551613", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14420513", + "following": false, + "friends_count": 347, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fromonesrc.com", + "url": "https://t.co/Lez165p0gY", + "expanded_url": "http://fromonesrc.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 205, + "location": "Lansdale, PA", + "screen_name": "fromonesrc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Adam Ochonicki", + "profile_use_background_image": true, + "description": "Redemption? Sure. But in the end, he's just another dead rat in a garbage pail behind a Chinese restaurant.", + "url": "https://t.co/Lez165p0gY", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Apr 17 13:32:46 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", + "favourites_count": 475, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685595808402681856", + "id": 685595808402681856, + "text": "OH: \"actually, it\u2019s nice getting some time to pay down tech debt\u2026 after spending so long generating it\"\n\nThat rings so true for me.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:55:53 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14420513, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 6413, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14420513/1449525270", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "2292633427", + "following": false, + "friends_count": 3203, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "uk.linkedin.com/in/jmgcraig", + "url": "https://t.co/q8exdl06ab", + "expanded_url": "https://uk.linkedin.com/in/jmgcraig", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 2838, + "location": "London", + "screen_name": "AttackyChappie", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 83, + "name": "Graeme Craig", + "profile_use_background_image": false, + "description": "Recruitment Manager @6DegreesGroup | #UC #Connectivity #DC #Cloud | Passionate #PS4 Gamer, Cyclist, Foodie, Lover of #Lego #EnglishBullDogs & my #Wife", + "url": "https://t.co/q8exdl06ab", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Jan 15 12:23:08 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", + "favourites_count": 3, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685096224463126528", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mspalliance.com/cloud-computin\u2026", + "url": "https://t.co/Aeibg4EwGl", + "expanded_url": "http://mspalliance.com/cloud-computing-managed-services-forecast-for-2016/", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "arjun077", + "id_str": "51468247", + "id": 51468247, + "indices": [ + 85, + 94 + ], + "name": "Arjun jain" + } + ] + }, + "created_at": "Thu Jan 07 13:50:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685096224463126528, + "text": "Cloud Computing & Managed Services Forecast for 2016 https://t.co/Aeibg4EwGl via @arjun077", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2292633427, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 392, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2292633427/1424354218", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "42909423", + "following": false, + "friends_count": 284, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 198, + "location": "Raleigh, NC", + "screen_name": "__id__", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 4, + "name": "Dmytro Ilchenko", + "profile_use_background_image": true, + "description": "I'm not a geek, i'm a level 12 paladin. Yak barber. Casting special ops magic to make things work @LivingSocial.", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed May 27 15:48:15 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", + "favourites_count": 1304, + "status": { + "retweet_count": 133, + "retweeted_status": { + "retweet_count": 133, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681874873539366912", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "danluu.com/wat/", + "url": "https://t.co/9DLKdXk34s", + "expanded_url": "http://danluu.com/wat/", + "indices": [ + 98, + 121 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 29 16:30:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681874873539366912, + "text": "What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 115, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683752055920553986", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "danluu.com/wat/", + "url": "https://t.co/9DLKdXk34s", + "expanded_url": "http://danluu.com/wat/", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "danluu", + "id_str": "18275645", + "id": 18275645, + "indices": [ + 3, + 10 + ], + "name": "Dan Luu" + } + ] + }, + "created_at": "Sun Jan 03 20:49:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683752055920553986, + "text": "RT @danluu: What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 42909423, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 2800, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/42909423/1398263672", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "13166972", + "following": false, + "friends_count": 1776, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dariusdunlap.com", + "url": "https://t.co/Dmpe1rzbsb", + "expanded_url": "https://dariusdunlap.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1442, + "location": "Half Moon Bay, CA", + "screen_name": "dariusdunlap", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 85, + "name": "Darius Dunlap", + "profile_use_background_image": true, + "description": "Tech guy, Founder at Syncopat; Square Peg Foundation. Executive Director at Silicon Valley Innovation Institute, Advising startups & growing companies", + "url": "https://t.co/Dmpe1rzbsb", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Wed Feb 06 17:04:20 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", + "favourites_count": 1393, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684909434443706368", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "squarepegfoundation.org/2016/01/a-jour\u2026", + "url": "https://t.co/tZ6YYzQZKS", + "expanded_url": "https://www.squarepegfoundation.org/2016/01/a-journey-together/", + "indices": [ + 74, + 97 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 01:28:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -124.482003, + 32.528832 + ], + [ + -114.131212, + 32.528832 + ], + [ + -114.131212, + 42.009519 + ], + [ + -124.482003, + 42.009519 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "California, USA", + "id": "fbd6d2f5a4e4a15e", + "name": "California" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684909434443706368, + "text": "Our journey, finding one another and creating and building Square Pegs. ( https://t.co/tZ6YYzQZKS )", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 13166972, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 4660, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13166972/1398466705", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "12530", + "following": false, + "friends_count": 955, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hackdiary.com/about/", + "url": "http://t.co/qmocio1ti6", + "expanded_url": "http://www.hackdiary.com/about/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF3C8", + "profile_link_color": "857025", + "geo_enabled": true, + "followers_count": 6983, + "location": "San Francisco CA, USA", + "screen_name": "mattb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 453, + "name": "Matt Biddulph", + "profile_use_background_image": true, + "description": "Currently: @thingtonhq. Previously: BBC, Dopplr, Nokia.", + "url": "http://t.co/qmocio1ti6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", + "profile_background_color": "FECF1F", + "created_at": "Wed Nov 15 15:48:50 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", + "favourites_count": 4258, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685332843334086657", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ift.tt/1mJgTP1", + "url": "https://t.co/VG2Bfr3epg", + "expanded_url": "http://ift.tt/1mJgTP1", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 05:30:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685332843334086657, + "text": "David Bowie - Blackstar https://t.co/VG2Bfr3epg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "IFTTT" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685333814298595329", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ift.tt/1mJgTP1", + "url": "https://t.co/VG2Bfr3epg", + "expanded_url": "http://ift.tt/1mJgTP1", + "indices": [ + 45, + 68 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "spotifynmfeedus", + "id_str": "2553073892", + "id": 2553073892, + "indices": [ + 3, + 19 + ], + "name": "spotifynewmusicUS" + } + ] + }, + "created_at": "Fri Jan 08 05:34:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "de", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685333814298595329, + "text": "RT @spotifynmfeedus: David Bowie - Blackstar https://t.co/VG2Bfr3epg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 12530, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", + "statuses_count": 13061, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/12530/1398198928", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "239453824", + "following": false, + "friends_count": 32, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thington.com", + "url": "http://t.co/GgjWLxjLHD", + "expanded_url": "http://thington.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "FF6958", + "geo_enabled": false, + "followers_count": 2204, + "location": "San Francisco", + "screen_name": "thingtonhq", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 60, + "name": "Thington", + "profile_use_background_image": false, + "description": "We're building a new way to interact with a world of connected things!", + "url": "http://t.co/GgjWLxjLHD", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", + "profile_background_color": "F5F8FA", + "created_at": "Mon Jan 17 17:21:39 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", + "favourites_count": 33, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685263027688452096", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wired.com/2016/01/americ\u2026", + "url": "https://t.co/ZydSbrfxfe", + "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "stamen", + "id_str": "2067201", + "id": 2067201, + "indices": [ + 45, + 52 + ], + "name": "Stamen Design" + } + ] + }, + "created_at": "Fri Jan 08 00:53:32 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685263027688452096, + "text": "Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685277708821991424", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wired.com/2016/01/americ\u2026", + "url": "https://t.co/ZydSbrfxfe", + "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tomcoates", + "id_str": "12514", + "id": 12514, + "indices": [ + 3, + 13 + ], + "name": "Tom Coates" + }, + { + "screen_name": "stamen", + "id_str": "2067201", + "id": 2067201, + "indices": [ + 60, + 67 + ], + "name": "Stamen Design" + } + ] + }, + "created_at": "Fri Jan 08 01:51:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685277708821991424, + "text": "RT @tomcoates: Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 239453824, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 299, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "740983", + "following": false, + "friends_count": 753, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "leade.rs", + "url": "https://t.co/K0dvCXW6PW", + "expanded_url": "http://leade.rs", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "CDCECA", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 126940, + "location": "San Francisco", + "screen_name": "loic", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8207, + "name": "Loic Le Meur", + "profile_use_background_image": false, + "description": "starting leade.rs", + "url": "https://t.co/K0dvCXW6PW", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", + "profile_background_color": "CFB895", + "created_at": "Thu Feb 01 00:10:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", + "favourites_count": 818, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "rrhoover", + "in_reply_to_user_id": 14417215, + "in_reply_to_status_id_str": "685542551747690496", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685621151964377088", + "id": 685621151964377088, + "text": "@rrhoover @dhof is it just me or that peach looks a lot like a... Ahem.... Butt?", + "in_reply_to_user_id_str": "14417215", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rrhoover", + "id_str": "14417215", + "id": 14417215, + "indices": [ + 0, + 9 + ], + "name": "Ryan Hoover" + }, + { + "screen_name": "dhof", + "id_str": "13258512", + "id": 13258512, + "indices": [ + 10, + 15 + ], + "name": "dom hofmann" + } + ] + }, + "created_at": "Sat Jan 09 00:36:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685542551747690496, + "lang": "en" + }, + "default_profile_image": false, + "id": 740983, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", + "statuses_count": 52912, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/740983/1447869110", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "44196397", + "following": false, + "friends_count": 50, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3189508, + "location": "1 AU", + "screen_name": "elonmusk", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 24234, + "name": "Elon Musk", + "profile_use_background_image": true, + "description": "Tesla, SpaceX, SolarCity & PayPal", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", + "favourites_count": 224, + "status": { + "retweet_count": 882, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683333695307034625", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "en.m.wikipedia.org/wiki/The_Machi\u2026", + "url": "https://t.co/0Dl4l2t6FH", + "expanded_url": "https://en.m.wikipedia.org/wiki/The_Machine_Stops", + "indices": [ + 63, + 86 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 02 17:07:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683333695307034625, + "text": "Worth reading The Machine Stops, an old story by E. M. Forster https://t.co/0Dl4l2t6FH", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3001, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 44196397, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", + "statuses_count": 1513, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1354486475", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14623181", + "following": false, + "friends_count": 505, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kelly-dunn.me", + "url": "http://t.co/AeKQOTxEx8", + "expanded_url": "http://kelly-dunn.me", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 490, + "location": "Seattle", + "screen_name": "kellyleland", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "kelly", + "profile_use_background_image": true, + "description": "Synthesizers, Various Engineering, and Avant Garde Nonsense | bit cruncher by trade, artist after hours", + "url": "http://t.co/AeKQOTxEx8", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri May 02 06:41:19 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", + "favourites_count": 8251, + "status": { + "retweet_count": 10006, + "retweeted_status": { + "retweet_count": 10006, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685188701907988480", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 245, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 739, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 433, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "type": "photo", + "indices": [ + 77, + 100 + ], + "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "display_url": "pic.twitter.com/pEaIfJMr9T", + "id_str": "685188690730192896", + "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", + "id": 685188690730192896, + "url": "https://t.co/pEaIfJMr9T" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1Jx7CnA", + "url": "https://t.co/SxHo05b7Yz", + "expanded_url": "http://bit.ly/1Jx7CnA", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 19:58:11 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685188701907988480, + "text": "The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8779, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685198486355095552", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 245, + "resize": "fit" + }, + "large": { + "w": 1024, + "h": 739, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 433, + "resize": "fit" + } + }, + "source_status_id_str": "685188701907988480", + "url": "https://t.co/pEaIfJMr9T", + "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "source_user_id_str": "1630896181", + "id_str": "685188690730192896", + "id": 685188690730192896, + "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", + "type": "photo", + "indices": [ + 91, + 114 + ], + "source_status_id": 685188701907988480, + "source_user_id": 1630896181, + "display_url": "pic.twitter.com/pEaIfJMr9T", + "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1Jx7CnA", + "url": "https://t.co/SxHo05b7Yz", + "expanded_url": "http://bit.ly/1Jx7CnA", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "vicenews", + "id_str": "1630896181", + "id": 1630896181, + "indices": [ + 3, + 12 + ], + "name": "VICE News" + } + ] + }, + "created_at": "Thu Jan 07 20:37:04 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685198486355095552, + "text": "RT @vicenews: The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14623181, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 14314, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623181/1421113433", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "995848285", + "following": false, + "friends_count": 90, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nginx.com", + "url": "http://t.co/ahz848qfrm", + "expanded_url": "http://nginx.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 24533, + "location": "San Francisco", + "screen_name": "nginx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 452, + "name": "NGINX, Inc.", + "profile_use_background_image": true, + "description": "News from NGINX, Inc., the company providing products and services on top of its renowned open source software nginx. For news about NGINX check @nginxorg", + "url": "http://t.co/ahz848qfrm", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Fri Dec 07 20:50:31 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", + "favourites_count": 451, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685570724019453952", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1K3bA2i", + "url": "https://t.co/mUGlFylkrn", + "expanded_url": "http://bit.ly/1K3bA2i", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [ + { + "indices": [ + 33, + 42 + ], + "text": "software" + } + ], + "user_mentions": [ + { + "screen_name": "InformationAge", + "id_str": "19603444", + "id": 19603444, + "indices": [ + 113, + 128 + ], + "name": "Information Age" + } + ] + }, + "created_at": "Fri Jan 08 21:16:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685570724019453952, + "text": "Everything old is new again: how #software development will come full circle in 2016 https://t.co/mUGlFylkrn via @InformationAge", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 995848285, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", + "statuses_count": 1960, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/995848285/1443504328", + "is_translator": false + }, + { + "time_zone": "Nairobi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 10800, + "id_str": "2975078105", + "following": false, + "friends_count": 12, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "iojs.org", + "url": "https://t.co/25rC8pIJ21", + "expanded_url": "https://iojs.org/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 13923, + "location": "Global", + "screen_name": "official_iojs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 414, + "name": "io.js", + "profile_use_background_image": true, + "description": "Bringing ES6 to the Node Community!", + "url": "https://t.co/25rC8pIJ21", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 12 18:18:27 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", + "favourites_count": 1167, + "status": { + "retweet_count": 26, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "656505348208001025", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/nodejs/evangel\u2026", + "url": "https://t.co/pE0BDmhyAq", + "expanded_url": "https://github.com/nodejs/evangelism/issues/179", + "indices": [ + 20, + 43 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Oct 20 16:20:46 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 656505348208001025, + "text": "Here we go again ;) https://t.co/pE0BDmhyAq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 22, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2975078105, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 341, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2975078105/1426190219", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "30923", + "following": false, + "friends_count": 744, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "randsinrepose.com", + "url": "http://t.co/wHTKjCyuT3", + "expanded_url": "http://www.randsinrepose.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 35289, + "location": "los gatos, ca", + "screen_name": "rands", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2264, + "name": "rands", + "profile_use_background_image": true, + "description": "reposing about werewolves, pens, and writing.", + "url": "http://t.co/wHTKjCyuT3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", + "profile_background_color": "022330", + "created_at": "Wed Nov 29 19:16:11 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", + "favourites_count": 154, + "status": { + "retweet_count": 42, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685550447717789696", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/briankesinger/", + "url": "https://t.co/fMDwiiT2kx", + "expanded_url": "https://www.instagram.com/briankesinger/", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:55:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685550447717789696, + "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 31, + "contributors": null, + "source": "Tweetbot for Mac" + }, + "default_profile_image": false, + "id": 30923, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 11655, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/30923/1442198088", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "7387992", + "following": false, + "friends_count": 194, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "justincampbell.me", + "url": "https://t.co/oY5xbJv61R", + "expanded_url": "http://justincampbell.me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2634657/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "028E9B", + "geo_enabled": true, + "followers_count": 952, + "location": "Philadelphia, PA", + "screen_name": "justincampbell", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 52, + "name": "Justin Campbell", + "profile_use_background_image": true, + "description": "@hashicorp @turingcool @cs_bookclub @sc_philly @paperswelovephl", + "url": "https://t.co/oY5xbJv61R", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", + "profile_background_color": "FF7700", + "created_at": "Wed Jul 11 00:40:57 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "028E9B", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", + "favourites_count": 2238, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -80.519851, + 39.719801 + ], + [ + -74.689517, + 39.719801 + ], + [ + -74.689517, + 42.516072 + ], + [ + -80.519851, + 42.516072 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Pennsylvania, USA", + "id": "dd9c503d6c35364b", + "name": "Pennsylvania" + }, + "in_reply_to_screen_name": "McElaney", + "in_reply_to_user_id": 249150277, + "in_reply_to_status_id_str": "684900893997821952", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684901313788948480", + "id": 684901313788948480, + "text": "@McElaney Slack \u261c(\uff9f\u30ee\uff9f\u261c)", + "in_reply_to_user_id_str": "249150277", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "McElaney", + "id_str": "249150277", + "id": 249150277, + "indices": [ + 0, + 9 + ], + "name": "Brian E. McElaney" + } + ] + }, + "created_at": "Thu Jan 07 00:56:12 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684900893997821952, + "lang": "ja" + }, + "default_profile_image": false, + "id": 7387992, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2634657/bg.gif", + "statuses_count": 8351, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7387992/1433941401", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "778518", + "following": false, + "friends_count": 397, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "progrium.com", + "url": "http://t.co/PviVbZYkA3", + "expanded_url": "http://progrium.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 6414, + "location": "Austin, TX", + "screen_name": "progrium", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 357, + "name": "Jeff Lindsay", + "profile_use_background_image": true, + "description": "Systems. Metal. Platforms. Design. Creator: Dokku, Webhooks, RequestBin, Hacker Dojo, Localtunnel, SuperHappyDevHouse. Founder: @gliderlabs", + "url": "http://t.co/PviVbZYkA3", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Sun Feb 18 09:41:22 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", + "favourites_count": 1488, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "cgenco", + "in_reply_to_user_id": 5437912, + "in_reply_to_status_id_str": "685580357232504832", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685621697215504385", + "id": 685621697215504385, + "text": "@cgenco @opendeis Depends on your needs!", + "in_reply_to_user_id_str": "5437912", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "cgenco", + "id_str": "5437912", + "id": 5437912, + "indices": [ + 0, + 7 + ], + "name": "Christian Genco" + }, + { + "screen_name": "opendeis", + "id_str": "1578016110", + "id": 1578016110, + "indices": [ + 8, + 17 + ], + "name": "Deis" + } + ] + }, + "created_at": "Sat Jan 09 00:38:45 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685580357232504832, + "lang": "en" + }, + "default_profile_image": false, + "id": 778518, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 11529, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/778518/1439089812", + "is_translator": false + }, + { + "time_zone": "Buenos Aires", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "77909615", + "following": false, + "friends_count": 2319, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tryolabs.com", + "url": "https://t.co/yDkqOVMoPH", + "expanded_url": "http://www.tryolabs.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 11880, + "location": "San Francisco | Uruguay", + "screen_name": "tryolabs", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 376, + "name": "Tryolabs", + "profile_use_background_image": true, + "description": "Hi-tech Boutique Dev Shop focused on SV & NYC Startups. Python ecosystem, JS, iOS, NLP & Machine Learning specialists. Creators of @MonkeyLearn.", + "url": "https://t.co/yDkqOVMoPH", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 28 03:09:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", + "favourites_count": 20614, + "status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685579492614631428", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 96, + "resize": "fit" + }, + "large": { + "w": 800, + "h": 226, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 169, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", + "display_url": "pic.twitter.com/Fk3brZmoTf", + "id_str": "685579492513955840", + "expanded_url": "http://twitter.com/tryolabs/status/685579492614631428/photo/1", + "id": 685579492513955840, + "url": "https://t.co/Fk3brZmoTf" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1ZfpACc", + "url": "https://t.co/VNzbh6CpJA", + "expanded_url": "http://buff.ly/1ZfpACc", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [ + { + "indices": [ + 43, + 59 + ], + "text": "MachineLearning" + } + ], + "user_mentions": [ + { + "screen_name": "genekogan", + "id_str": "51757957", + "id": 51757957, + "indices": [ + 94, + 104 + ], + "name": "Gene Kogan" + } + ] + }, + "created_at": "Fri Jan 08 21:51:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685579492614631428, + "text": "Very interesting & engaging article on #MachineLearning + Art: https://t.co/VNzbh6CpJA by @genekogan https://t.co/Fk3brZmoTf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 77909615, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", + "statuses_count": 1400, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/77909615/1437011861", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "111767172", + "following": false, + "friends_count": 70, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 313, + "location": "Philadelphia, PA", + "screen_name": "nick_kapur", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 29, + "name": "Nick Kapur", + "profile_use_background_image": true, + "description": "Historian of modern Japan and East Asia. I only tweet extremely interesting things. No photos of my lunch and no selfies, not ever.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Feb 06 02:34:40 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", + "favourites_count": 6736, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685494137613754368", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/LIJdheem1h", + "url": "https://t.co/LIJdheem1h", + "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", + "indices": [ + 12, + 35 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:11:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685494137613754368, + "text": "i love cats https://t.co/LIJdheem1h", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685519035979677696", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/LIJdheem1h", + "url": "https://t.co/LIJdheem1h", + "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", + "indices": [ + 25, + 48 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "on3ness", + "id_str": "124548700", + "id": 124548700, + "indices": [ + 3, + 11 + ], + "name": "br\u00f8seph" + } + ] + }, + "created_at": "Fri Jan 08 17:50:49 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685519035979677696, + "text": "RT @on3ness: i love cats https://t.co/LIJdheem1h", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 111767172, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4392, + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "14247654", + "following": false, + "friends_count": 5000, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "contino.co.uk", + "url": "http://t.co/7ioXHyid9F", + "expanded_url": "http://www.contino.co.uk", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2521, + "location": "London, UK", + "screen_name": "benjaminwootton", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 141, + "name": "Benjamin Wootton", + "profile_use_background_image": true, + "description": "Co-Founder of Contino, a DevOps & Continuous Delivery consultancy from the UK", + "url": "http://t.co/7ioXHyid9F", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Fri Mar 28 22:44:56 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", + "favourites_count": 1063, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683332087588503552", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "medium": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 270, + "h": 200, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "type": "photo", + "indices": [ + 117, + 140 + ], + "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "display_url": "pic.twitter.com/DabsPkV0tE", + "id_str": "683332087483641857", + "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", + "id": 683332087483641857, + "url": "https://t.co/DabsPkV0tE" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1RzZhSD", + "url": "https://t.co/qLPUnqP9Ly", + "expanded_url": "http://buff.ly/1RzZhSD", + "indices": [ + 93, + 116 + ] + } + ], + "hashtags": [ + { + "indices": [ + 30, + 37 + ], + "text": "DevOps" + } + ], + "user_mentions": [ + { + "screen_name": "paul", + "id_str": "1140", + "id": 1140, + "indices": [ + 86, + 91 + ], + "name": "Paul Rollo" + } + ] + }, + "created_at": "Sat Jan 02 17:00:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683332087588503552, + "text": "\"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly https://t.co/DabsPkV0tE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Buffer" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685368907327270912", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "medium": { + "w": 270, + "h": 200, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 270, + "h": 200, + "resize": "fit" + } + }, + "source_status_id_str": "683332087588503552", + "url": "https://t.co/DabsPkV0tE", + "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "source_user_id_str": "398365705", + "id_str": "683332087483641857", + "id": 683332087483641857, + "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 683332087588503552, + "source_user_id": 398365705, + "display_url": "pic.twitter.com/DabsPkV0tE", + "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "buff.ly/1RzZhSD", + "url": "https://t.co/qLPUnqP9Ly", + "expanded_url": "http://buff.ly/1RzZhSD", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [ + { + "indices": [ + 48, + 55 + ], + "text": "DevOps" + } + ], + "user_mentions": [ + { + "screen_name": "manupaisable", + "id_str": "398365705", + "id": 398365705, + "indices": [ + 3, + 16 + ], + "name": "Manuel Pais" + }, + { + "screen_name": "paul", + "id_str": "1140", + "id": 1140, + "indices": [ + 104, + 109 + ], + "name": "Paul Rollo" + } + ] + }, + "created_at": "Fri Jan 08 07:54:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685368907327270912, + "text": "RT @manupaisable: \"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly http\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 14247654, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 2827, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "35242212", + "following": false, + "friends_count": 201, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 95, + "location": "Boston, MA", + "screen_name": "macdiesel412", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 9, + "name": "Brian Beggs", + "profile_use_background_image": false, + "description": "I write software and think BIG. XMPP, MongoDB, NoSQL, Data Analytics, cycling, skiing, edX", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sat Apr 25 16:00:27 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", + "favourites_count": 23, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Expedia", + "in_reply_to_user_id": 17365848, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "677166680196390913", + "id": 677166680196390913, + "text": "@Expedia Now your support hung up on me, won't let me change flight. What gives? This service is awful!", + "in_reply_to_user_id_str": "17365848", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Expedia", + "id_str": "17365848", + "id": 17365848, + "indices": [ + 0, + 8 + ], + "name": "Expedia" + } + ] + }, + "created_at": "Wed Dec 16 16:41:32 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 35242212, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 420, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14961286", + "following": false, + "friends_count": 948, + "entities": { + "description": { + "urls": [ + { + "display_url": "erinjorichey.com", + "url": "https://t.co/bUIMCWrbnW", + "expanded_url": "http://erinjorichey.com", + "indices": [ + 121, + 144 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "erinjo.xyz", + "url": "https://t.co/zWMM8cNTsz", + "expanded_url": "http://erinjo.xyz", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", + "notifications": false, + "profile_sidebar_fill_color": "E4DACE", + "profile_link_color": "DB2E2E", + "geo_enabled": true, + "followers_count": 2265, + "location": "San Francisco, CA", + "screen_name": "erinjo", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 270, + "name": "Erin Jo Richey", + "profile_use_background_image": true, + "description": "Co-founder of @withknown. Information choreographer. User experience strategist. Oregonian. Building an open social web. https://t.co/bUIMCWrbnW", + "url": "https://t.co/zWMM8cNTsz", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", + "profile_background_color": "FCFCFC", + "created_at": "Sat May 31 06:45:28 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", + "favourites_count": 723, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684958057806180352", + "id": 684958057806180352, + "text": "Walking home from the grocery store just now and got pummeled by small hail. \ud83c\udf27\u2614\ufe0f", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 04:41:41 +0000 2016", + "source": "Erin's Idno", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14961286, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", + "statuses_count": 8880, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14961286/1399013710", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "258924364", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "andyetconf.com", + "url": "http://t.co/8cCQxfuIhl", + "expanded_url": "http://andyetconf.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/285931472/patternpants.png", + "notifications": false, + "profile_sidebar_fill_color": "EBEBEB", + "profile_link_color": "0099B0", + "geo_enabled": false, + "followers_count": 1258, + "location": "October 6\u20138 in Richland, WA", + "screen_name": "AndyetConf", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 87, + "name": "&yetConf", + "profile_use_background_image": true, + "description": "Conf about the intersections of tech, humanity, meaning, & ethics for people who believe the world should be better and are determined to make it so.\n\n\u2014@andyet", + "url": "http://t.co/8cCQxfuIhl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", + "profile_background_color": "202020", + "created_at": "Mon Feb 28 20:09:25 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "757575", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", + "favourites_count": 824, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mmatuzak", + "in_reply_to_user_id": 10749432, + "in_reply_to_status_id_str": "684082741512515584", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684084002504900608", + "id": 684084002504900608, + "text": "@mmatuzak @obensource Yay @ADVUnderground!", + "in_reply_to_user_id_str": "10749432", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mmatuzak", + "id_str": "10749432", + "id": 10749432, + "indices": [ + 0, + 9 + ], + "name": "matuzi" + }, + { + "screen_name": "obensource", + "id_str": "407296703", + "id": 407296703, + "indices": [ + 10, + 21 + ], + "name": "Ben Michel" + }, + { + "screen_name": "ADVUnderground", + "id_str": "2149984081", + "id": 2149984081, + "indices": [ + 26, + 41 + ], + "name": "ADV Underground" + } + ] + }, + "created_at": "Mon Jan 04 18:48:30 +0000 2016", + "source": "Tweetbot for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684082741512515584, + "lang": "und" + }, + "default_profile_image": false, + "id": 258924364, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/285931472/patternpants.png", + "statuses_count": 1505, + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "153026017", + "following": false, + "friends_count": 108, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/paulohp", + "url": "https://t.co/TH0JsQaz8h", + "expanded_url": "http://github.com/paulohp", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", + "notifications": false, + "profile_sidebar_fill_color": "FCA241", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 418, + "location": "Belo Horizonte, Brazil", + "screen_name": "paulo_hp", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 19, + "name": "Paulo Pires (\u2310\u25a0_\u25a0)", + "profile_use_background_image": true, + "description": "programmer. @bower team member. hacking listening sertanejo.", + "url": "https://t.co/TH0JsQaz8h", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", + "profile_background_color": "BCCDD6", + "created_at": "Mon Jun 07 14:00:10 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "pt", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", + "favourites_count": 562, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "rodrigo_ea", + "in_reply_to_user_id": 55245797, + "in_reply_to_status_id_str": "685272876338032640", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685276627618689024", + "id": 685276627618689024, + "text": "@rodrigo_ea @ray_ban \u00e9, o customizado :\\ mas o mais triste \u00e9 a falta de comunica\u00e7\u00e3o mesmo. Sabe como \u00e9 n\u00e9.", + "in_reply_to_user_id_str": "55245797", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rodrigo_ea", + "id_str": "55245797", + "id": 55245797, + "indices": [ + 0, + 11 + ], + "name": "Rodrigo Antinarelli" + }, + { + "screen_name": "ray_ban", + "id_str": "234264720", + "id": 234264720, + "indices": [ + 12, + 20 + ], + "name": "Ray-Ban" + } + ] + }, + "created_at": "Fri Jan 08 01:47:34 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685272876338032640, + "lang": "pt" + }, + "default_profile_image": false, + "id": 153026017, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", + "statuses_count": 5668, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/153026017/1433120246", + "is_translator": false + }, + { + "time_zone": "Lisbon", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "6477652", + "following": false, + "friends_count": 807, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "trodrigues.net", + "url": "https://t.co/MEu7qSJfMY", + "expanded_url": "http://trodrigues.net", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": false, + "followers_count": 1919, + "location": "Berlin", + "screen_name": "trodrigues", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 126, + "name": "Tiago Rodrigues", + "profile_use_background_image": false, + "description": "I tweet about things you might not like such as JS, feminism, music, coffee, open source, cats and video games. Semicolon removal expert at Contentful", + "url": "https://t.co/MEu7qSJfMY", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Thu May 31 17:09:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", + "favourites_count": 1086, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "marciana", + "in_reply_to_user_id": 1813001, + "in_reply_to_status_id_str": "685501356732510208", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685502766173843456", + "id": 685502766173843456, + "text": "@marciana tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a v", + "in_reply_to_user_id_str": "1813001", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "marciana", + "id_str": "1813001", + "id": 1813001, + "indices": [ + 0, + 9 + ], + "name": "Irrita" + } + ] + }, + "created_at": "Fri Jan 08 16:46:10 +0000 2016", + "source": "Fenix for Android", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685501356732510208, + "lang": "pt" + }, + "default_profile_image": false, + "id": 6477652, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 68450, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6477652/1410026369", + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "10840182", + "following": false, + "friends_count": 88, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mundoopensource.com.br", + "url": "http://t.co/AyVbZvEevz", + "expanded_url": "http://www.mundoopensource.com.br", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 220, + "location": "Canoas, RS", + "screen_name": "mhterres", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 15, + "name": "Marcelo Terres", + "profile_use_background_image": true, + "description": "Sysadmin Linux, com foco em VoIP e XMPP, f\u00e3 de comics, apreciador de uma boa cerveja e metido a cozinheiro e homebrewer nas horas vagas ;-)", + "url": "http://t.co/AyVbZvEevz", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 04 15:18:08 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "pt", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", + "favourites_count": 11, + "status": { + "retweet_count": 18, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 18, + "truncated": false, + "retweeted": false, + "id_str": "684096178456236032", + "id": 684096178456236032, + "text": "Happy 17th birthday, Jabber! #xmpp", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 29, + 34 + ], + "text": "xmpp" + } + ], + "user_mentions": [] + }, + "created_at": "Mon Jan 04 19:36:53 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 17, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "684112189297393665", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 41, + 46 + ], + "text": "xmpp" + } + ], + "user_mentions": [ + { + "screen_name": "ralphm", + "id_str": "2426271", + "id": 2426271, + "indices": [ + 3, + 10 + ], + "name": "Ralph Meijer" + } + ] + }, + "created_at": "Mon Jan 04 20:40:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684112189297393665, + "text": "RT @ralphm: Happy 17th birthday, Jabber! #xmpp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 10840182, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3011, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10840182/1448740364", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "2557527470", + "following": false, + "friends_count": 462, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "opensource.cisco.com", + "url": "https://t.co/XHlFibsKyg", + "expanded_url": "http://opensource.cisco.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 1022, + "location": "", + "screen_name": "TrailsAndTech", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 50, + "name": "Jen Hollingsworth", + "profile_use_background_image": false, + "description": "SW Strategy @ Cisco. Lover of: Tech, #OpenSource, Cloud Stuff, Passionate People & the Outdoors. Haven't met a trail, #CarboPro product or taco I didn't like.", + "url": "https://t.co/XHlFibsKyg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Jun 09 21:07:05 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", + "favourites_count": 2178, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "vCloudernBeer", + "in_reply_to_user_id": 830411028, + "in_reply_to_status_id_str": "685554373628424192", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685560135716966400", + "id": 685560135716966400, + "text": "@vCloudernBeer YES!!!! :)", + "in_reply_to_user_id_str": "830411028", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "vCloudernBeer", + "id_str": "830411028", + "id": 830411028, + "indices": [ + 0, + 14 + ], + "name": "Anthony Chow" + } + ] + }, + "created_at": "Fri Jan 08 20:34:08 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685554373628424192, + "lang": "und" + }, + "default_profile_image": false, + "id": 2557527470, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1371, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2557527470/1405046981", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "227050193", + "following": false, + "friends_count": 524, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "withknown.com", + "url": "http://t.co/qDJMKyeC7F", + "expanded_url": "http://withknown.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "9F111A", + "geo_enabled": false, + "followers_count": 1412, + "location": "San Francisco, CA", + "screen_name": "withknown", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 83, + "name": "Known", + "profile_use_background_image": false, + "description": "Publish on your own site, and share with audiences across the web. Part of @mattervc's third class. #indieweb #reclaimyourdomain", + "url": "http://t.co/qDJMKyeC7F", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", + "profile_background_color": "880000", + "created_at": "Wed Dec 15 19:45:51 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "880000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", + "favourites_count": 558, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "AngeloFrangione", + "in_reply_to_user_id": 334592526, + "in_reply_to_status_id_str": "685557584527376384", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685610856613216256", + "id": 685610856613216256, + "text": "@AngeloFrangione We're working on integrating a translation framework. We want everyone to be able to use Known!", + "in_reply_to_user_id_str": "334592526", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AngeloFrangione", + "id_str": "334592526", + "id": 334592526, + "indices": [ + 0, + 16 + ], + "name": "Angelo" + } + ] + }, + "created_at": "Fri Jan 08 23:55:40 +0000 2016", + "source": "Known Stream", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685557584527376384, + "lang": "en" + }, + "default_profile_image": false, + "id": 227050193, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1070, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/227050193/1423650405", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "981101", + "following": false, + "friends_count": 2074, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bengo.is", + "url": "https://t.co/d3tx42Owqt", + "expanded_url": "http://bengo.is", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", + "notifications": false, + "profile_sidebar_fill_color": "333333", + "profile_link_color": "18ADF6", + "geo_enabled": true, + "followers_count": 1033, + "location": "San Francisco, CA", + "screen_name": "bengo", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 81, + "name": "Benjamin Goering", + "profile_use_background_image": true, + "description": "Founding Engineer @Livefyre. Open. Stoic Situationist. \u2665 reading, philosophy, open web, (un)logic, AI, sports, and edm. Kansan gone Cali.", + "url": "https://t.co/d3tx42Owqt", + "profile_text_color": "636363", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", + "profile_background_color": "CCCCCC", + "created_at": "Mon Mar 12 03:55:06 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", + "favourites_count": 964, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685580750448508928", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", + "type": "photo", + "indices": [ + 84, + 107 + ], + "media_url": "http://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", + "display_url": "pic.twitter.com/LTYVklmUyg", + "id_str": "685580750377205760", + "expanded_url": "http://twitter.com/bengo/status/685580750448508928/photo/1", + "id": 685580750377205760, + "url": "https://t.co/LTYVklmUyg" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "itun.es/us/0CoK2.c?i=3\u2026", + "url": "https://t.co/zQ3UB0Dhiy", + "expanded_url": "https://itun.es/us/0CoK2.c?i=359766164", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "thenewstack", + "id_str": "2327560616", + "id": 2327560616, + "indices": [ + 71, + 83 + ], + "name": "The New Stack" + } + ] + }, + "created_at": "Fri Jan 08 21:56:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685580750448508928, + "text": "Check out this cool episode: https://t.co/zQ3UB0Dhiy \"Keep Node Weird\" @thenewstack https://t.co/LTYVklmUyg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 981101, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", + "statuses_count": 5799, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/981101/1353910636", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "321162442", + "following": false, + "friends_count": 143, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 26, + "location": "", + "screen_name": "mattyindustries", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "name": "Mathew Archibald", + "profile_use_background_image": true, + "description": "Linux Sysadmin at Toyota Australia", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 21 03:43:14 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", + "favourites_count": 44, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "EtihadStadiumAU", + "in_reply_to_user_id": 152837019, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "630298486664097793", + "id": 630298486664097793, + "text": "@EtihadStadiumAU kick to kick still on after #AFLSaintsFreo?", + "in_reply_to_user_id_str": "152837019", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 45, + 59 + ], + "text": "AFLSaintsFreo" + } + ], + "user_mentions": [ + { + "screen_name": "EtihadStadiumAU", + "id_str": "152837019", + "id": 152837019, + "indices": [ + 0, + 16 + ], + "name": "Etihad Stadium" + } + ] + }, + "created_at": "Sun Aug 09 08:44:04 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 321162442, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 39, + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "2402568709", + "following": false, + "friends_count": 17541, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "reeldx.com", + "url": "http://t.co/GqPJuzOYMV", + "expanded_url": "http://www.reeldx.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 21102, + "location": "Vancouver, WA", + "screen_name": "andrewreeldx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 518, + "name": "Andrew Richards", + "profile_use_background_image": true, + "description": "Co-Founder & CTO @ ReelDx, Technologist, Brewer, Runner, Coder", + "url": "http://t.co/GqPJuzOYMV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 22 03:27:50 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", + "favourites_count": 2991, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685609079771774976", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/cancergeek/sta\u2026", + "url": "https://t.co/tWEoIh9Mwi", + "expanded_url": "https://twitter.com/cancergeek/status/685571019667423232", + "indices": [ + 42, + 65 + ] + } + ], + "hashtags": [ + { + "indices": [ + 34, + 40 + ], + "text": "jpm16" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:48:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685609079771774976, + "text": "Liberate data? That's how we roll #jpm16 https://t.co/tWEoIh9Mwi", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2402568709, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3400, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2402568709/1411424123", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14110325", + "following": false, + "friends_count": 1108, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "soundcloud.com/jay-holler", + "url": "https://t.co/Dn5Q3Kk7jo", + "expanded_url": "https://soundcloud.com/jay-holler", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "89C9FA", + "geo_enabled": true, + "followers_count": 1109, + "location": "California, USA", + "screen_name": "jayholler", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Jay Holler", + "profile_use_background_image": false, + "description": "Eventually Sol will expand to consume everything anyone has ever known, created, or recorded.", + "url": "https://t.co/Dn5Q3Kk7jo", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", + "profile_background_color": "1A1B1F", + "created_at": "Mon Mar 10 00:14:55 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", + "favourites_count": 17301, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685629837269020674", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/KTVU/status/68\u2026", + "url": "https://t.co/iJrmieeMwr", + "expanded_url": "https://twitter.com/KTVU/status/685619144683724800", + "indices": [ + 12, + 35 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:11:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685629837269020674, + "text": "Kidnapping! https://t.co/iJrmieeMwr", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 14110325, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", + "statuses_count": 33903, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14110325/1452192763", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "126030998", + "following": false, + "friends_count": 542, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "0xabad1dea.github.io", + "url": "https://t.co/cZmmxZ39G9", + "expanded_url": "http://0xabad1dea.github.io/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 20122, + "location": "@veracode", + "screen_name": "0xabad1dea", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 877, + "name": "Melissa \u2407 \u2b50\ufe0f", + "profile_use_background_image": true, + "description": "Infosec supervillain, insufferable SJW, and twitter witch whose very name causes systems to crash. Fortune favors those who do the math. she/her; I \u2666\ufe0f @m1sp.", + "url": "https://t.co/cZmmxZ39G9", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Mar 24 16:31:05 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", + "favourites_count": 2962, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "livebeef", + "in_reply_to_user_id": 2423425960, + "in_reply_to_status_id_str": "685629875017900032", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685630096586207238", + "id": 685630096586207238, + "text": "@livebeef well, that\u2019s his thing, yes, extreme pandering, like Trump but I think that\u2019s his real hair", + "in_reply_to_user_id_str": "2423425960", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "livebeef", + "id_str": "2423425960", + "id": 2423425960, + "indices": [ + 0, + 9 + ], + "name": "Curious Reptilian" + } + ] + }, + "created_at": "Sat Jan 09 01:12:08 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685629875017900032, + "lang": "en" + }, + "default_profile_image": false, + "id": 126030998, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", + "statuses_count": 133972, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/126030998/1348018700", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "24718762", + "following": false, + "friends_count": 388, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": false, + "followers_count": 268, + "location": "", + "screen_name": "unixgeekem", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 26, + "name": "Emily Gladstone Cole", + "profile_use_background_image": true, + "description": "UNIX and Security Admin, baseball fan, singer, dancer, actor, voracious reader, student. Opinions are my own and not my employer's.", + "url": null, + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Mon Mar 16 16:23:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", + "favourites_count": 1739, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685593188971642880", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/RobotHugsComic\u2026", + "url": "https://t.co/SbF9JovOfO", + "expanded_url": "https://twitter.com/RobotHugsComic/status/674961985059074048", + "indices": [ + 6, + 29 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:45:28 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593188971642880, + "text": "This. https://t.co/SbF9JovOfO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 24718762, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "statuses_count": 2163, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/24718762/1364947598", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14071087", + "following": false, + "friends_count": 1254, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C9E6A3", + "profile_link_color": "C200E0", + "geo_enabled": true, + "followers_count": 375, + "location": "New York, NY", + "screen_name": "ineverthink", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 18, + "name": "Chris Handy", + "profile_use_background_image": true, + "description": "Devops, Systems thinker, not just technical. Works at @workmarket, formerly @condenast", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", + "profile_background_color": "8A698A", + "created_at": "Mon Mar 03 03:50:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "6A0B8A", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", + "favourites_count": 492, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "skamille", + "in_reply_to_user_id": 24257941, + "in_reply_to_status_id_str": "685106932512854016", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685169500887629824", + "id": 685169500887629824, + "text": "@skamille might want to look into @WorkMarket", + "in_reply_to_user_id_str": "24257941", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "skamille", + "id_str": "24257941", + "id": 24257941, + "indices": [ + 0, + 9 + ], + "name": "Camille Fournier" + }, + { + "screen_name": "WorkMarket", + "id_str": "154696373", + "id": 154696373, + "indices": [ + 34, + 45 + ], + "name": "Work Market" + } + ] + }, + "created_at": "Thu Jan 07 18:41:53 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685106932512854016, + "lang": "en" + }, + "default_profile_image": false, + "id": 14071087, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", + "statuses_count": 2151, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1164839209", + "following": false, + "friends_count": 2, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nodesecurity.io", + "url": "https://t.co/McA4uRwQAL", + "expanded_url": "http://nodesecurity.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 6918, + "location": "", + "screen_name": "nodesecurity", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 295, + "name": "Node.js Security", + "profile_use_background_image": true, + "description": "Advisories, news & libraries focused on Node.js security - Sponsored by @andyet, Organized by @liftsecurity", + "url": "https://t.co/McA4uRwQAL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Feb 10 03:43:44 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", + "favourites_count": 104, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "mountain_ghosts", + "in_reply_to_user_id": 13861042, + "in_reply_to_status_id_str": "685190823084986369", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685191592567701504", + "id": 685191592567701504, + "text": "@mountain_ghosts @3rdeden We added the information we received to the top of the advisory. See the linked gist.", + "in_reply_to_user_id_str": "13861042", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "mountain_ghosts", + "id_str": "13861042", + "id": 13861042, + "indices": [ + 0, + 16 + ], + "name": "\u2200a: \u223c Sa = 0" + }, + { + "screen_name": "3rdEden", + "id_str": "14350255", + "id": 14350255, + "indices": [ + 17, + 25 + ], + "name": "Arnout Kazemier" + } + ] + }, + "created_at": "Thu Jan 07 20:09:40 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685190823084986369, + "lang": "en" + }, + "default_profile_image": false, + "id": 1164839209, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 356, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2883370235", + "following": false, + "friends_count": 5040, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bit.ly/11hQZa8", + "url": "http://t.co/waaWKCIqia", + "expanded_url": "http://bit.ly/11hQZa8", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7769, + "location": "", + "screen_name": "NodeJSRR", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 113, + "name": "Node JS", + "profile_use_background_image": true, + "description": "Live Content Curated by top Node JS Influencers. Moderated by @hardeepmonty.", + "url": "http://t.co/waaWKCIqia", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed Nov 19 00:20:03 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", + "favourites_count": 11, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685615042750840833", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPLP4EUAAAqK0r.jpg", + "type": "photo", + "indices": [ + 53, + 76 + ], + "media_url": "http://pbs.twimg.com/media/CYPLP4EUAAAqK0r.jpg", + "display_url": "pic.twitter.com/2n5natiUfu", + "id_str": "685615041899397120", + "expanded_url": "http://twitter.com/NodeJSRR/status/685615042750840833/photo/1", + "id": 685615041899397120, + "url": "https://t.co/2n5natiUfu" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "rightrelevance.com/search/article\u2026", + "url": "https://t.co/re3CxcMpKD", + "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=038f1f7617ab6218faee8e9de31593bd0cc174e6&query=node%20js&taccount=nodejsrr", + "indices": [ + 29, + 52 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:12:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685615042750840833, + "text": "Mongoose 2015 Year in Review https://t.co/re3CxcMpKD https://t.co/2n5natiUfu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "RRPostingApp" + }, + "default_profile_image": false, + "id": 2883370235, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3311, + "is_translator": false + }, + { + "time_zone": "Wellington", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 46800, + "id_str": "136933779", + "following": false, + "friends_count": 360, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dominictarr.com", + "url": "http://t.co/dLMAgM9U90", + "expanded_url": "http://dominictarr.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "404099", + "geo_enabled": true, + "followers_count": 3915, + "location": "Planet Earth", + "screen_name": "dominictarr", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 229, + "name": "Dominic Tarr", + "profile_use_background_image": false, + "description": "opinioneer", + "url": "http://t.co/dLMAgM9U90", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", + "profile_background_color": "F0F0F0", + "created_at": "Sun Apr 25 09:11:58 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", + "favourites_count": 1513, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 12241752, + "possibly_sensitive": false, + "id_str": "683456176609083392", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "github.com/maxogden/dat/w\u2026", + "url": "https://t.co/qxj2MAOd76", + "expanded_url": "https://github.com/maxogden/dat/wiki/replication-protocols#couchdb", + "indices": [ + 66, + 89 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "denormalize", + "id_str": "12241752", + "id": 12241752, + "indices": [ + 0, + 12 + ], + "name": "maxwell ogden" + } + ] + }, + "created_at": "Sun Jan 03 01:13:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "12241752", + "place": null, + "in_reply_to_screen_name": "denormalize", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683456176609083392, + "text": "@denormalize hey I added some stuff to your data replication wiki\nhttps://t.co/qxj2MAOd76", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 136933779, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6487, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/136933779/1435856217", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "113419064", + "following": false, + "friends_count": 18, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "golang.org", + "url": "http://t.co/C4svVTkUmj", + "expanded_url": "http://golang.org/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 36535, + "location": "", + "screen_name": "golang", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1020, + "name": "Go", + "profile_use_background_image": true, + "description": "Go will make you love programming again. I promise.", + "url": "http://t.co/C4svVTkUmj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Feb 11 18:04:38 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", + "favourites_count": 203, + "status": { + "retweet_count": 110, + "retweeted_status": { + "retweet_count": 110, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677646473484509186", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 428, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 250, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 142, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "type": "photo", + "indices": [ + 102, + 125 + ], + "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "display_url": "pic.twitter.com/F5t4jUEiRX", + "id_str": "677646437056978944", + "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", + "id": 677646437056978944, + "url": "https://t.co/F5t4jUEiRX" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 94, + 101 + ], + "text": "golang" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Dec 18 00:28:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677646473484509186, + "text": "Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 124, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677681669638373376", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 428, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 250, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 142, + "resize": "fit" + } + }, + "source_status_id_str": "677646473484509186", + "url": "https://t.co/F5t4jUEiRX", + "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "source_user_id_str": "650013", + "id_str": "677646437056978944", + "id": 677646437056978944, + "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "source_status_id": 677646473484509186, + "source_user_id": 650013, + "display_url": "pic.twitter.com/F5t4jUEiRX", + "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 108, + 115 + ], + "text": "golang" + } + ], + "user_mentions": [ + { + "screen_name": "bradfitz", + "id_str": "650013", + "id": 650013, + "indices": [ + 3, + 12 + ], + "name": "Brad Fitzpatrick" + } + ] + }, + "created_at": "Fri Dec 18 02:47:55 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677681669638373376, + "text": "RT @bradfitz: Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 113419064, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1931, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/113419064/1398369112", + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "114477539", + "following": false, + "friends_count": 303, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dribbble.com/stephane_martin", + "url": "http://t.co/2hbatAQEMF", + "expanded_url": "http://dribbble.com/stephane_martin", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2980B9", + "geo_enabled": false, + "followers_count": 2981, + "location": "France", + "screen_name": "stephane_m_", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 115, + "name": "St\u00e9phane Martin", + "profile_use_background_image": false, + "description": "Half human, half geek. Currently Sr product designer at @StackOverflow (former @efounders) I love getting things done, I believe in minimalism and wine.", + "url": "http://t.co/2hbatAQEMF", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", + "profile_background_color": "D7DCE0", + "created_at": "Mon Feb 15 15:07:00 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", + "favourites_count": 540, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 16205746, + "possibly_sensitive": false, + "id_str": "685116838418722816", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 230, + "h": 319, + "resize": "fit" + }, + "medium": { + "w": 230, + "h": 319, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 230, + "h": 319, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", + "type": "photo", + "indices": [ + 50, + 73 + ], + "media_url": "http://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", + "display_url": "pic.twitter.com/1CDvfNJ2it", + "id_str": "685116837076582400", + "expanded_url": "http://twitter.com/stephane_m_/status/685116838418722816/photo/1", + "id": 685116837076582400, + "url": "https://t.co/1CDvfNJ2it" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "alexlmiller", + "id_str": "16205746", + "id": 16205746, + "indices": [ + 0, + 12 + ], + "name": "Alex Miller" + }, + { + "screen_name": "hellohynes", + "id_str": "14475889", + "id": 14475889, + "indices": [ + 13, + 24 + ], + "name": "Joshua Hynes" + } + ] + }, + "created_at": "Thu Jan 07 15:12:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "16205746", + "place": null, + "in_reply_to_screen_name": "alexlmiller", + "in_reply_to_status_id_str": "685111393784233984", + "truncated": false, + "id": 685116838418722816, + "text": "@alexlmiller @hellohynes Wasn't disappointed too: https://t.co/1CDvfNJ2it", + "coordinates": null, + "in_reply_to_status_id": 685111393784233984, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 114477539, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 994, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "138513072", + "following": false, + "friends_count": 54, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A6E6AC", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 40, + "location": "Portland, OR", + "screen_name": "cdaringe", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Chris Dieringer", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", + "profile_background_color": "329C40", + "created_at": "Thu Apr 29 19:29:29 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "9FC2A3", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", + "favourites_count": 49, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 14278727, + "possibly_sensitive": false, + "id_str": "679054290430787584", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "inkandfeet.com/how-to-use-a-g\u2026", + "url": "https://t.co/CSfKwrPXIy", + "expanded_url": "http://inkandfeet.com/how-to-use-a-generic-usb-20-10100m-ethernet-adaptor-rd9700-on-mac-os-1011-el-capitan", + "indices": [ + 21, + 44 + ] + }, + { + "display_url": "realtek.com/DOWNLOADS/down\u2026", + "url": "https://t.co/MXKy0tG3e9", + "expanded_url": "http://www.realtek.com/DOWNLOADS/downloadsView.aspx?Langid=1&PNid=14&PFid=55&Level=5&Conn=4&DownTypeID=3&GetDown=false", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "skoczen", + "id_str": "14278727", + "id": 14278727, + "indices": [ + 0, + 8 + ], + "name": "Steven Skoczen" + } + ] + }, + "created_at": "Mon Dec 21 21:42:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "14278727", + "place": null, + "in_reply_to_screen_name": "skoczen", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679054290430787584, + "text": "@skoczen, in ref to https://t.co/CSfKwrPXIy, realtek released a new driver for el cap that requires no sys edits: https://t.co/MXKy0tG3e9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 138513072, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 68, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "650013", + "following": false, + "friends_count": 542, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bradfitz.com", + "url": "http://t.co/AjdAkBY0iG", + "expanded_url": "http://bradfitz.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "BFA446", + "geo_enabled": true, + "followers_count": 17909, + "location": "San Francisco, CA", + "screen_name": "bradfitz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1004, + "name": "Brad Fitzpatrick", + "profile_use_background_image": false, + "description": "hacker, traveler, runner, optimist, gopher", + "url": "http://t.co/AjdAkBY0iG", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jan 16 23:05:57 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", + "favourites_count": 8369, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "tigahill", + "in_reply_to_user_id": 930826154, + "in_reply_to_status_id_str": "685602642395963392", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685603912133414912", + "id": 685603912133414912, + "text": "@tigahill @JohnLegere @EFF But not very media savvy, apparently. I'd love to read his actual accusations, if he can be calm for a second.", + "in_reply_to_user_id_str": "930826154", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tigahill", + "id_str": "930826154", + "id": 930826154, + "indices": [ + 0, + 9 + ], + "name": "LaTeigra Cahill" + }, + { + "screen_name": "JohnLegere", + "id_str": "1394399438", + "id": 1394399438, + "indices": [ + 10, + 21 + ], + "name": "John Legere" + }, + { + "screen_name": "EFF", + "id_str": "4816", + "id": 4816, + "indices": [ + 22, + 26 + ], + "name": "EFF" + } + ] + }, + "created_at": "Fri Jan 08 23:28:05 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685602642395963392, + "lang": "en" + }, + "default_profile_image": false, + "id": 650013, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 6185, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/650013/1348015829", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "8690322", + "following": false, + "friends_count": 180, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/iyaz", + "url": "http://t.co/wXnrkVLXs1", + "expanded_url": "http://about.me/iyaz", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "560869", + "geo_enabled": true, + "followers_count": 29814, + "location": "New York, NY", + "screen_name": "iyaz", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1232, + "name": "iyaz akhtar", + "profile_use_background_image": false, + "description": "I'm the best damn Iyaz Akhtar in the world. Available online @CNET and @GFQNetwork", + "url": "http://t.co/wXnrkVLXs1", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Sep 05 17:08:15 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", + "favourites_count": 520, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685297976856584192", + "id": 685297976856584192, + "text": "What did you think was the most awesome thing at CES 2016? #top5", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 59, + 64 + ], + "text": "top5" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 03:12:24 +0000 2016", + "source": "Twitter for iPad", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 8690322, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "statuses_count": 15190, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/8690322/1433083510", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "10350", + "following": false, + "friends_count": 1100, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.me/veronica", + "url": "https://t.co/Tf4y8BelKl", + "expanded_url": "http://about.me/veronica", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1758625, + "location": "San Francisco", + "screen_name": "Veronica", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 17380, + "name": "Veronica Belmont", + "profile_use_background_image": true, + "description": "New media / TV host and writer. @swordandlaser, @vaginalfantasy and #DearVeronica for @Engadget. #SFGiants Destroyer of Worlds.", + "url": "https://t.co/Tf4y8BelKl", + "profile_text_color": "1E1A1A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Oct 24 16:00:54 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C59D79", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", + "favourites_count": 2795, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "NotAPreppie", + "in_reply_to_user_id": 53830319, + "in_reply_to_status_id_str": "685613648220303360", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685613962868609025", + "id": 685613962868609025, + "text": "@NotAPreppie @MarieDomingo getting into random fights on Twitter clearly makes YOU feel better! Whatever works!", + "in_reply_to_user_id_str": "53830319", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "NotAPreppie", + "id_str": "53830319", + "id": 53830319, + "indices": [ + 0, + 12 + ], + "name": "IfPinkyWereAChemist" + }, + { + "screen_name": "MarieDomingo", + "id_str": "10394242", + "id": 10394242, + "indices": [ + 13, + 26 + ], + "name": "MarieDomingo" + } + ] + }, + "created_at": "Sat Jan 09 00:08:01 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685613648220303360, + "lang": "en" + }, + "default_profile_image": false, + "id": 10350, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", + "statuses_count": 36156, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10350/1436988647", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "816214", + "following": false, + "friends_count": 734, + "entities": { + "description": { + "urls": [ + { + "display_url": "techcrunch.com/video/crunchre\u2026", + "url": "http://t.co/sufYJznghc", + "expanded_url": "http://techcrunch.com/video/crunchreport", + "indices": [ + 59, + 81 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "about.me/sarahlane", + "url": "http://t.co/POf8fV5kwg", + "expanded_url": "http://about.me/sarahlane", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", + "notifications": false, + "profile_sidebar_fill_color": "BAFF91", + "profile_link_color": "B81F45", + "geo_enabled": true, + "followers_count": 95473, + "location": "Norf Side ", + "screen_name": "sarahlane", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 6399, + "name": "Sarah Lane", + "profile_use_background_image": true, + "description": "TechCrunch Executive Producer, Video\n\nHost, Crunch Report: http://t.co/sufYJznghc\n\nI get it twisted, sorry", + "url": "http://t.co/POf8fV5kwg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Mar 06 22:45:50 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", + "favourites_count": 705, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MDee14", + "in_reply_to_user_id": 16684249, + "in_reply_to_status_id_str": "685526261507096577", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685527194949451776", + "id": 685527194949451776, + "text": "@MDee14 yay we both won!", + "in_reply_to_user_id_str": "16684249", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MDee14", + "id_str": "16684249", + "id": 16684249, + "indices": [ + 0, + 7 + ], + "name": "Marcel Dee" + } + ] + }, + "created_at": "Fri Jan 08 18:23:14 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685526261507096577, + "lang": "en" + }, + "default_profile_image": false, + "id": 816214, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", + "statuses_count": 16630, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/816214/1451606730", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "58708498", + "following": false, + "friends_count": 445, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "angelina.codes", + "url": "http://t.co/v5aoRQrHwi", + "expanded_url": "http://angelina.codes", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", + "notifications": false, + "profile_sidebar_fill_color": "F7C9FF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 17533, + "location": "NYC \u2708 ???", + "screen_name": "hopefulcyborg", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 972, + "name": "Angelina Fabbro", + "profile_use_background_image": false, + "description": "- polyglot programmer weirdo - engineer at @digitalocean (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b - prev: @mozilla devtools & @steamclocksw - they/their/them", + "url": "http://t.co/v5aoRQrHwi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Jul 21 04:52:08 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", + "favourites_count": 8940, + "status": { + "retweet_count": 6532, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 6532, + "truncated": false, + "retweeted": false, + "id_str": "685515171675140096", + "id": 685515171675140096, + "text": "COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\nCOP: ok ur good", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:35:27 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 12258, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685567906923593729", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "bobvulfov", + "id_str": "2442237828", + "id": 2442237828, + "indices": [ + 3, + 13 + ], + "name": "Bob Vulfov" + } + ] + }, + "created_at": "Fri Jan 08 21:05:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685567906923593729, + "text": "RT @bobvulfov: COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 58708498, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", + "statuses_count": 22753, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/58708498/1408048999", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "682433", + "following": false, + "friends_count": 1123, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "github.com/othiym23/", + "url": "http://t.co/20WWkunxbg", + "expanded_url": "http://github.com/othiym23/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "CCCCCC", + "profile_link_color": "333333", + "geo_enabled": true, + "followers_count": 2268, + "location": "the outside lands", + "screen_name": "othiym23", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 152, + "name": "Forrest L Norvell", + "profile_use_background_image": false, + "description": "down with the kyriarchy / big ups to the heavy heavy bass.\n\nI may think you're doing something dumb but I think *you're* great.", + "url": "http://t.co/20WWkunxbg", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", + "profile_background_color": "CCCCCC", + "created_at": "Mon Jan 22 20:57:31 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "333333", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", + "favourites_count": 5768, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "othiym23", + "in_reply_to_user_id": 682433, + "in_reply_to_status_id_str": "685625845499576321", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685625896372310016", + "id": 685625896372310016, + "text": "@reconbot @soldair (I mean, even the ones that pull down and examine tarballs)", + "in_reply_to_user_id_str": "682433", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "reconbot", + "id_str": "14082200", + "id": 14082200, + "indices": [ + 0, + 9 + ], + "name": "Francis Gulotta" + }, + { + "screen_name": "soldair", + "id_str": "16893912", + "id": 16893912, + "indices": [ + 10, + 18 + ], + "name": "Ryan Day" + } + ] + }, + "created_at": "Sat Jan 09 00:55:26 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685625845499576321, + "lang": "en" + }, + "default_profile_image": false, + "id": 682433, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 30184, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/682433/1355870155", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "139199211", + "following": false, + "friends_count": 253, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "snarfed.org", + "url": "https://t.co/0mWCez5XaB", + "expanded_url": "https://snarfed.org/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 464, + "location": "San Francisco", + "screen_name": "schnarfed", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Ryan Barrett", + "profile_use_background_image": false, + "description": "", + "url": "https://t.co/0mWCez5XaB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Sat May 01 21:42:43 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", + "favourites_count": 3258, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685210017411170305", + "id": 685210017411170305, + "text": "When someone invites me out, or just to hang, my first instinct is to check my calendar and hope for a conflict. :( #JustIntrovertThings", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 116, + 136 + ], + "text": "JustIntrovertThings" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 21:22:53 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 139199211, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 1763, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/139199211/1398278985", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "536965103", + "following": false, + "friends_count": 811, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "onebigfluke.com", + "url": "http://t.co/aaUMAjUIWi", + "expanded_url": "http://onebigfluke.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0074B3", + "geo_enabled": false, + "followers_count": 2574, + "location": "San Francisco", + "screen_name": "haxor", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 142, + "name": "Brett Slatkin", + "profile_use_background_image": true, + "description": "Eng lead @Google_Surveys. Author of @EffectivePython.\nI love bicycles and hate patents.", + "url": "http://t.co/aaUMAjUIWi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", + "profile_background_color": "4D4D4D", + "created_at": "Mon Mar 26 05:57:19 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", + "favourites_count": 3124, + "status": { + "retweet_count": 13, + "retweeted_status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685367480546541568", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "dlvr.it/DCnmnq", + "url": "https://t.co/vqRVp9rIbc", + "expanded_url": "http://dlvr.it/DCnmnq", + "indices": [ + 61, + 84 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 07:48:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "ja", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685367480546541568, + "text": "Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "dlvr.it" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685498607789670401", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "dlvr.it/DCnmnq", + "url": "https://t.co/vqRVp9rIbc", + "expanded_url": "http://dlvr.it/DCnmnq", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "oreilly_japan", + "id_str": "18382977", + "id": 18382977, + "indices": [ + 3, + 17 + ], + "name": "O'Reilly Japan, Inc." + } + ] + }, + "created_at": "Fri Jan 08 16:29:38 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "ja", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685498607789670401, + "text": "RT @oreilly_japan: Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 536965103, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", + "statuses_count": 1749, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/536965103/1398444972", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "610533", + "following": false, + "friends_count": 1078, + "entities": { + "description": { + "urls": [ + { + "display_url": "DailyTechNewsShow.com", + "url": "https://t.co/x2gPqqxYuL", + "expanded_url": "http://DailyTechNewsShow.com", + "indices": [ + 13, + 36 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "tommerritt.com", + "url": "http://t.co/Ru5Svk5gcM", + "expanded_url": "http://www.tommerritt.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "95E8EC", + "profile_link_color": "0099B9", + "geo_enabled": true, + "followers_count": 97335, + "location": "Virgo Supercluster", + "screen_name": "acedtect", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 6443, + "name": "Tom Merritt", + "profile_use_background_image": true, + "description": "Host of DTNS https://t.co/x2gPqqxYuL, Sword and Laser, Current Geek, Cordkillers and more. Coffee achiever", + "url": "http://t.co/Ru5Svk5gcM", + "profile_text_color": "3C3940", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", + "profile_background_color": "0099B9", + "created_at": "Sun Jan 07 17:00:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "5ED4DC", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", + "favourites_count": 806, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Nightveil", + "in_reply_to_user_id": 16855695, + "in_reply_to_status_id_str": "685611862440849408", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685612261910560768", + "id": 685612261910560768, + "text": "@Nightveil Yeah safety date. I can always move it up.", + "in_reply_to_user_id_str": "16855695", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Nightveil", + "id_str": "16855695", + "id": 16855695, + "indices": [ + 0, + 10 + ], + "name": "Nightveil" + } + ] + }, + "created_at": "Sat Jan 09 00:01:15 +0000 2016", + "source": "TweetDeck", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685611862440849408, + "lang": "en" + }, + "default_profile_image": false, + "id": 610533, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", + "statuses_count": 37135, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/610533/1348022434", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "824168", + "following": false, + "friends_count": 1919, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": false, + "followers_count": 1035, + "location": "Petaluma, CA", + "screen_name": "jammerb", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 108, + "name": "John Slanina", + "profile_use_background_image": true, + "description": "History is short. The sun is just a minor star.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", + "profile_background_color": "31532D", + "created_at": "Fri Mar 09 04:33:02 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", + "favourites_count": 107, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "11877321", + "id": 11877321, + "text": "Got my Screaming Monkey from Woot!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Mar 24 02:38:08 +0000 2007", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 824168, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", + "statuses_count": 6, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/824168/1434144272", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2369467405", + "following": false, + "friends_count": 34024, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wifiworkerbees.com", + "url": "http://t.co/rqac3Fh1dU", + "expanded_url": "http://wifiworkerbees.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 34950, + "location": "Following My Bliss", + "screen_name": "DereckCurry", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 632, + "name": "Dereck Curry", + "profile_use_background_image": false, + "description": "20+ year IT, coding, product management, and engineering professional. Remote work evangelist. Co-founder of @WifiWorkerBees. Husband to @Currying_Favor.", + "url": "http://t.co/rqac3Fh1dU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", + "profile_background_color": "DFF3F5", + "created_at": "Sun Mar 02 22:24:48 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", + "favourites_count": 3838, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "beckya234", + "in_reply_to_user_id": 407834483, + "in_reply_to_status_id_str": "685628259401334784", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685629758886002698", + "id": 685629758886002698, + "text": "@beckya234 At least your not trying to get the lifeguard drunk. Or maybe you are.", + "in_reply_to_user_id_str": "407834483", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "beckya234", + "id_str": "407834483", + "id": 407834483, + "indices": [ + 0, + 10 + ], + "name": "Becky Atkins" + } + ] + }, + "created_at": "Sat Jan 09 01:10:47 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685628259401334784, + "lang": "en" + }, + "default_profile_image": false, + "id": 2369467405, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", + "statuses_count": 9079, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369467405/1447623348", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15948437", + "following": false, + "friends_count": 590, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "joelonsoftware.com", + "url": "http://t.co/ZHNWlmFE3H", + "expanded_url": "http://www.joelonsoftware.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E4F1F0", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 117165, + "location": "New York, NY", + "screen_name": "spolsky", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5827, + "name": "Joel Spolsky", + "profile_use_background_image": true, + "description": "CEO of Stack Overflow, co-founder of Fog Creek Software (FogBugz, Kiln), and creator of Trello. Member of NYC gay startup mafia.", + "url": "http://t.co/ZHNWlmFE3H", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Aug 22 18:34:03 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", + "favourites_count": 5133, + "status": { + "retweet_count": 33, + "retweeted_status": { + "retweet_count": 33, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684896392188444672", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/p/23a20405681a", + "url": "https://t.co/ifzwy1ausF", + "expanded_url": "https://medium.com/p/23a20405681a", + "indices": [ + 112, + 135 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 00:36:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684896392188444672, + "text": "I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/ifzwy1ausF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 91, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684939456881770496", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "medium.com/p/23a20405681a", + "url": "https://t.co/ifzwy1ausF", + "expanded_url": "https://medium.com/p/23a20405681a", + "indices": [ + 126, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "anildash", + "id_str": "36823", + "id": 36823, + "indices": [ + 3, + 12 + ], + "name": "Anil Dash" + } + ] + }, + "created_at": "Thu Jan 07 03:27:46 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684939456881770496, + "text": "RT @anildash: I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 15948437, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", + "statuses_count": 6625, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15948437/1364583542", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "4519121", + "following": false, + "friends_count": 423, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theoatmeal.com", + "url": "http://t.co/hzHuiYcL4x", + "expanded_url": "http://theoatmeal.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57771255/twitter2.png", + "notifications": false, + "profile_sidebar_fill_color": "F5EDF0", + "profile_link_color": "B40B43", + "geo_enabled": true, + "followers_count": 524239, + "location": "Seattle, Washington", + "screen_name": "Oatmeal", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 17111, + "name": "Matthew Inman", + "profile_use_background_image": true, + "description": "I make comics.", + "url": "http://t.co/hzHuiYcL4x", + "profile_text_color": "362720", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", + "profile_background_color": "FF3366", + "created_at": "Fri Apr 13 16:59:37 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "CC3366", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", + "favourites_count": 1374, + "status": { + "retweet_count": 128, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685190824158691332", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 812, + "h": 587, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 245, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 433, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", + "type": "photo", + "indices": [ + 47, + 70 + ], + "media_url": "http://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", + "display_url": "pic.twitter.com/suZ6JUQaFa", + "id_str": "685190823483342849", + "expanded_url": "http://twitter.com/Oatmeal/status/685190824158691332/photo/1", + "id": 685190823483342849, + "url": "https://t.co/suZ6JUQaFa" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "theoatmeal.com/blog/playdoh", + "url": "https://t.co/v1LZDUNlnT", + "expanded_url": "http://theoatmeal.com/blog/playdoh", + "indices": [ + 23, + 46 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 20:06:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685190824158691332, + "text": "You only try this once https://t.co/v1LZDUNlnT https://t.co/suZ6JUQaFa", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 293, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 4519121, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57771255/twitter2.png", + "statuses_count": 6000, + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "9859562", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "glyph.twistedmatrix.com", + "url": "https://t.co/1dvBYKfhRo", + "expanded_url": "https://glyph.twistedmatrix.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": false, + "followers_count": 2557, + "location": "\u2191 baseline \u2193 cap-height", + "screen_name": "glyph", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 144, + "name": "\u24bc\u24c1\u24ce\u24c5\u24bd", + "profile_use_background_image": true, + "description": "Level ?? Thought Lord", + "url": "https://t.co/1dvBYKfhRo", + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", + "profile_background_color": "642D8B", + "created_at": "Thu Nov 01 18:21:23 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", + "favourites_count": 6287, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "corbinsimpson", + "in_reply_to_user_id": 41225243, + "in_reply_to_status_id_str": "685297984683155456", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685357014143250432", + "id": 685357014143250432, + "text": "@corbinsimpson yeah.", + "in_reply_to_user_id_str": "41225243", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "corbinsimpson", + "id_str": "41225243", + "id": 41225243, + "indices": [ + 0, + 14 + ], + "name": "Corbin Simpson" + } + ] + }, + "created_at": "Fri Jan 08 07:07:00 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685297984683155456, + "lang": "en" + }, + "default_profile_image": false, + "id": 9859562, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", + "statuses_count": 11017, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2782733125", + "following": false, + "friends_count": 427, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "raintank.io", + "url": "http://t.co/sZYy68B1yl", + "expanded_url": "http://www.raintank.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "10B1D3", + "geo_enabled": true, + "followers_count": 362, + "location": "", + "screen_name": "raintanksaas", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 13, + "name": "raintank", + "profile_use_background_image": false, + "description": "An opensource monitoring platform to collect, store & analyze data about your infrastructure through a gorgeously powerful frontend. The company behind @grafana", + "url": "http://t.co/sZYy68B1yl", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", + "profile_background_color": "353535", + "created_at": "Sun Aug 31 18:05:44 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", + "favourites_count": 204, + "status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684453558545203200", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "type": "photo", + "indices": [ + 113, + 136 + ], + "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", + "display_url": "pic.twitter.com/GnfOxpEaYF", + "id_str": "684450657458368512", + "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", + "id": 684450657458368512, + "url": "https://t.co/GnfOxpEaYF" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22Jb455", + "url": "https://t.co/aYQvFNmob0", + "expanded_url": "http://bit.ly/22Jb455", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [ + { + "indices": [ + 57, + 68 + ], + "text": "monitoring" + } + ], + "user_mentions": [ + { + "screen_name": "RobustPerceiver", + "id_str": "3328053545", + "id": 3328053545, + "indices": [ + 96, + 112 + ], + "name": "Robust Perception" + } + ] + }, + "created_at": "Tue Jan 05 19:16:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684453558545203200, + "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 15, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 2782733125, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 187, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782733125/1447877118", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "23134190", + "following": false, + "friends_count": 2846, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rayheffer.com", + "url": "http://t.co/65bBqa0ySJ", + "expanded_url": "http://rayheffer.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", + "notifications": false, + "profile_sidebar_fill_color": "DBDBDB", + "profile_link_color": "1887E5", + "geo_enabled": true, + "followers_count": 12127, + "location": "Brighton, United Kingdom", + "screen_name": "rayheffer", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 233, + "name": "Ray Heffer", + "profile_use_background_image": true, + "description": "Global Cloud & EUC Architect @VMware vCloud Air Network | vExpert & Double VCDX #122 | PC Gamer | Technologist | Linux | VMworld Speaker. \u65e5\u672c\u8a9e", + "url": "http://t.co/65bBqa0ySJ", + "profile_text_color": "574444", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", + "profile_background_color": "022330", + "created_at": "Fri Mar 06 23:14:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", + "favourites_count": 6141, + "status": { + "retweet_count": 8, + "retweeted_status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685565495274266624", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WFMFT", + "url": "https://t.co/QHNFIkGGaL", + "expanded_url": "http://ow.ly/WFMFT", + "indices": [ + 121, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:55:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685565495274266624, + "text": "Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https://t.co/QHNFIkGGaL", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685565627487117312", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "ow.ly/WFMFT", + "url": "https://t.co/QHNFIkGGaL", + "expanded_url": "http://ow.ly/WFMFT", + "indices": [ + 143, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PGelsinger", + "id_str": "3339261074", + "id": 3339261074, + "indices": [ + 3, + 14 + ], + "name": "Pat Gelsinger" + } + ] + }, + "created_at": "Fri Jan 08 20:55:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685565627487117312, + "text": "RT @PGelsinger: Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 23134190, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", + "statuses_count": 3576, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23134190/1447672867", + "is_translator": false + } + ], + "previous_cursor": 0, + "previous_cursor_str": "0", + "next_cursor_str": "1494734862149901956" +} \ No newline at end of file diff --git a/testdata/get_friends_paged_additional_params.json b/testdata/get_friends_paged_additional_params.json new file mode 100644 index 00000000..9c5ba9c4 --- /dev/null +++ b/testdata/get_friends_paged_additional_params.json @@ -0,0 +1,12010 @@ +{ + "next_cursor": 1510492845088954664, + "users": [ + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "2251081112", + "following": false, + "friends_count": 49, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "masterdynamic.com", + "url": "http://t.co/SgGVimTMa1", + "expanded_url": "http://www.masterdynamic.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649050988293267456/zAXOGdlc.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2019, + "location": "", + "screen_name": "MasterDynamic", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 41, + "name": "Master & Dynamic", + "profile_use_background_image": false, + "description": "Sound Tools For Creative Minds.", + "url": "http://t.co/SgGVimTMa1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649051412417093632/fDSbNhAm_normal.jpg", + "profile_background_color": "F8F8F8", + "created_at": "Tue Dec 17 22:58:37 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649051412417093632/fDSbNhAm_normal.jpg", + "favourites_count": 726, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649050988293267456/zAXOGdlc.jpg", + "default_profile_image": false, + "id": 2251081112, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1065, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2251081112/1447342923", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": false, + "description": "Peach is a fun, simple way to keep up with friends and be yourself.", + "url": "https://t.co/yI3RpqAqQF", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "4611360201", + "blocking": false, + "is_translation_enabled": false, + "id": 4611360201, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "peach.cool", + "url": "https://t.co/yI3RpqAqQF", + "expanded_url": "http://peach.cool", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "000000", + "created_at": "Sat Dec 26 14:07:02 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/680753311562117120/TQ4Sg47x_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_link_color": "FF80B9", + "statuses_count": 42, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/680753311562117120/TQ4Sg47x_normal.png", + "favourites_count": 16, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 698, + "blocked_by": false, + "following": false, + "location": "New York, NY", + "muting": false, + "friends_count": 9, + "notifications": false, + "screen_name": "peachdotcool", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 7, + "is_translator": false, + "name": "Peach" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Sneaker Shop check us on IG : Benjaminkickz", + "url": "http://t.co/rAZPYRorYS", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2213249522", + "blocking": false, + "is_translation_enabled": false, + "id": 2213249522, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "benjaminkickz.com", + "url": "http://t.co/rAZPYRorYS", + "expanded_url": "http://www.benjaminkickz.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Nov 25 00:04:30 +0000 2013", + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000786646414/7d66371ca1394de489bf94c00eb96886_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 3, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000786646414/7d66371ca1394de489bf94c00eb96886_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 585, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 12, + "notifications": false, + "screen_name": "benjaminkickz", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "Benjaminkickz" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "LaToya, Torrian & Draymond are The REAL MVP'S. God blessed me with 3 AWESOME CHILDREN and I am so blessed to have them All!", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2846207905", + "blocking": false, + "is_translation_enabled": false, + "id": 2846207905, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Oct 08 05:00:06 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/640725097481940994/t-Sxl46Z_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 9104, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/640725097481940994/t-Sxl46Z_normal.jpg", + "favourites_count": 13622, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 11685, + "blocked_by": false, + "following": false, + "location": "Saginaw Township North, MI", + "muting": false, + "friends_count": 527, + "notifications": false, + "screen_name": "BabersGreen", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 151, + "is_translator": false, + "name": "Mary Babers-Green" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2377837022", + "following": false, + "friends_count": 82, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Facebook.com/MuppetsKermit", + "url": "http://t.co/kjainYAA9x", + "expanded_url": "http://Facebook.com/MuppetsKermit", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 88405, + "location": "Hollywood, CA", + "screen_name": "KermitTheFrog", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 461, + "name": "Kermit the Frog", + "profile_use_background_image": true, + "description": "Hi-ho! Welcome to the official Twitter of me, Kermit the Frog!", + "url": "http://t.co/kjainYAA9x", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Sat Mar 08 00:14:55 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", + "favourites_count": 11, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile_image": false, + "id": 2377837022, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 487, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2377837022/1444773126", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "271395703", + "following": false, + "friends_count": 323, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/Ariadnagutierr\u2026", + "url": "https://t.co/T7mRnNYeAF", + "expanded_url": "https://www.facebook.com/Ariadnagutierrezofficial/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 142503, + "location": "", + "screen_name": "gutierrezary", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 91, + "name": "Ariadna Gutierrez", + "profile_use_background_image": true, + "description": "Miss Colombia \u2764\ufe0f Management: grecia@Latinwe.com", + "url": "https://t.co/T7mRnNYeAF", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 24 12:31:11 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", + "favourites_count": 1160, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", + "default_profile_image": false, + "id": 271395703, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2629, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/271395703/1452025456", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "36818161", + "following": false, + "friends_count": 1548, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "goldroom.la", + "url": "http://t.co/IQ8kdCE2P6", + "expanded_url": "http://goldroom.la", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397706531/try2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "CDDAFA", + "profile_link_color": "007BFF", + "geo_enabled": true, + "followers_count": 19678, + "location": "Los Angeles", + "screen_name": "goldroom", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 349, + "name": "Goldroom", + "profile_use_background_image": true, + "description": "Music producer, songwriter, rum drinker.", + "url": "http://t.co/IQ8kdCE2P6", + "profile_text_color": "1F1E1F", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Apr 30 23:54:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "245BFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", + "favourites_count": 58633, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397706531/try2.jpg", + "default_profile_image": false, + "id": 36818161, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 18478, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/36818161/1449780672", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "45090120", + "following": false, + "friends_count": 385, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "smarturl.it/Summertime06", + "url": "https://t.co/vnFEaoggqW", + "expanded_url": "http://smarturl.it/Summertime06", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "603311", + "geo_enabled": true, + "followers_count": 228852, + "location": "Long Beach, CA", + "screen_name": "vincestaples", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 665, + "name": "Vince Staples", + "profile_use_background_image": false, + "description": "I get mad cause the world don't understand me. That's the price I had to pay for this rap game. - Lil B", + "url": "https://t.co/vnFEaoggqW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", + "profile_background_color": "101820", + "created_at": "Sat Jun 06 07:40:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", + "favourites_count": 2633, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", + "default_profile_image": false, + "id": 45090120, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 11643, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/45090120/1418950988", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4704812826", + "following": false, + "friends_count": 116, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": null, + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2B7BB9", + "geo_enabled": false, + "followers_count": 12661, + "location": "Chile", + "screen_name": "Letelier1920", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 33, + "name": "Hern\u00e1n Letelier", + "profile_use_background_image": true, + "description": "Tengo 20 a\u00f1os, pero acabo de cumplir 95. Actor y director de teatro a mediados del XX. \u00bfSe acuerda de Pierre le peluquier de la P\u00e9rgola de las Flores? Era yo", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", + "profile_background_color": "F5F8FA", + "created_at": "Sun Jan 03 20:12:25 +0000 2016", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", + "favourites_count": 817, + "profile_background_image_url_https": null, + "default_profile_image": false, + "id": 4704812826, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 193, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4704812826/1452092286", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "27244131", + "following": false, + "friends_count": 878, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/gussa", + "url": "https://t.co/S3aUB7YG60", + "expanded_url": "https://www.linkedin.com/in/gussa", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1368, + "location": "Melbourne, Australia", + "screen_name": "angushervey", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "Angus Hervey", + "profile_use_background_image": true, + "description": "political economist, science communicator, optimist with @future_crunch | community manager for @rhokaustralia | PhD from London School of Economics", + "url": "https://t.co/S3aUB7YG60", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Sat Mar 28 15:13:06 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", + "favourites_count": 632, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile_image": false, + "id": 27244131, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1880, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/27244131/1451984968", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "140497508", + "following": false, + "friends_count": 96, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 26357, + "location": "Queens holla! IG/Snap:rosgo21", + "screen_name": "ROSGO21", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 520, + "name": "Rosalyn Gold-Onwude", + "profile_use_background_image": true, + "description": "GS Warriors sideline: CSN. NYLiberty: MSG. NCAA: PAC12. SF 49ers: CSN. Emmy Winner. Stanford Grad: BA, MA '10. 3 Final 4s. Pac12 DPOY '10.Nigerian Natl team '11", + "url": null, + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", + "profile_background_color": "642D8B", + "created_at": "Wed May 05 17:00:22 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", + "favourites_count": 2828, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", + "default_profile_image": false, + "id": 140497508, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 29557, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/140497508/1351351402", + "is_translator": false + }, + { + "time_zone": "Tehran", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 12600, + "id_str": "16779204", + "following": false, + "friends_count": 6313, + "entities": { + "description": { + "urls": [ + { + "display_url": "bit.ly/1CQYaYU", + "url": "https://t.co/mbs8lwspQK", + "expanded_url": "http://bit.ly/1CQYaYU", + "indices": [ + 120, + 143 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hoder.com", + "url": "https://t.co/mnzE4YRMC6", + "expanded_url": "http://hoder.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 6824, + "location": "Tehran, Iran", + "screen_name": "h0d3r", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 152, + "name": "Hossein Derakhshan", + "profile_use_background_image": false, + "description": "Iranian-Canadian author, blogger, analyst. Spent 6 yrs in jail from 2008. Author of 'The Web We Have to Save' (Matter): https://t.co/mbs8lwspQK hoder@hoder.com", + "url": "https://t.co/mnzE4YRMC6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Oct 15 11:00:35 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", + "favourites_count": 5024, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "default_profile_image": false, + "id": 16779204, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1241, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16779204/1416664427", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "29844055", + "following": false, + "friends_count": 8, + "entities": { + "description": { + "urls": [ + { + "display_url": "tinyurl.com/lp7ubo4", + "url": "http://t.co/L1iS5iJRHH", + "expanded_url": "http://tinyurl.com/lp7ubo4", + "indices": [ + 47, + 69 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "TxDxE.com", + "url": "http://t.co/RXjkFoFTKl", + "expanded_url": "http://www.TxDxE.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", + "notifications": false, + "profile_sidebar_fill_color": "050505", + "profile_link_color": "354E99", + "geo_enabled": false, + "followers_count": 643505, + "location": "CARSON, CA (W/S DA)", + "screen_name": "abdashsoul", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1776, + "name": "Ab-Soul", + "profile_use_background_image": true, + "description": "#blacklippastor | #THESEDAYS... available now: http://t.co/L1iS5iJRHH | Booking: mgmt@txdxe.com | Instagram: @souloho3", + "url": "http://t.co/RXjkFoFTKl", + "profile_text_color": "615B5C", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", + "profile_background_color": "080808", + "created_at": "Wed Apr 08 22:43:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "9AA5AB", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", + "favourites_count": 52, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", + "default_profile_image": false, + "id": 29844055, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 20050, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29844055/1427233664", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1337271", + "following": false, + "friends_count": 2502, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mlkshk.com/p/YLTA", + "url": "http://t.co/wL4BXidKHJ", + "expanded_url": "http://mlkshk.com/p/YLTA", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "113838", + "geo_enabled": false, + "followers_count": 40311, + "location": "waking up ", + "screen_name": "darth", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 943, + "name": "darth\u2122", + "profile_use_background_image": false, + "description": "not the darth you are looking for", + "url": "http://t.co/wL4BXidKHJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", + "profile_background_color": "131516", + "created_at": "Sat Mar 17 05:38:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", + "favourites_count": 271725, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", + "default_profile_image": false, + "id": 1337271, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 31700, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1337271/1398194350", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "16228398", + "following": false, + "friends_count": 986, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cyberdust.com/addme?blogmave\u2026", + "url": "http://t.co/q9qtJaGLrB", + "expanded_url": "http://cyberdust.com/addme?blogmaverick", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4313188, + "location": "", + "screen_name": "mcuban", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 26161, + "name": "Mark Cuban", + "profile_use_background_image": true, + "description": "Cyber Dust ID: blogmaverick", + "url": "http://t.co/q9qtJaGLrB", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Sep 10 21:12:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", + "favourites_count": 279, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", + "default_profile_image": false, + "id": 16228398, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 758, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16228398/1398982404", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "216582908", + "following": false, + "friends_count": 213, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1465, + "location": "San Fran", + "screen_name": "jmsSanFran", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 42, + "name": "Jeffrey Siminoff", + "profile_use_background_image": false, + "description": "Soon to be @twitter (not yet). Inclusion & Diversity. Foodie. Would-be concierge. Traveler. Equinox. Duke. Emory Law. Former NYC, former Apple.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Nov 17 04:26:58 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", + "favourites_count": 616, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 216582908, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 891, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/216582908/1439074474", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "98988930", + "following": false, + "friends_count": 10, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 82696, + "location": "The North Pole", + "screen_name": "santa", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 171, + "name": "Santa Claus", + "profile_use_background_image": true, + "description": "#crushingit", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/590905131/image_normal.jpg", + "profile_background_color": "DD2E44", + "created_at": "Thu Dec 24 00:15:25 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/590905131/image_normal.jpg", + "favourites_count": 427, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile_image": false, + "id": 98988930, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1755, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/98988930/1419058838", + "is_translator": false + }, + { + "time_zone": "Arizona", + "profile_use_background_image": true, + "description": "Software Engineer at Twitter", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -25200, + "id_str": "27485958", + "blocking": false, + "is_translation_enabled": false, + "id": 27485958, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "B2DFDA", + "created_at": "Sun Mar 29 19:30:27 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "statuses_count": 112, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", + "favourites_count": 245, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 174, + "blocked_by": false, + "following": false, + "location": "San Francisco Bay Area", + "muting": false, + "friends_count": 130, + "notifications": false, + "screen_name": "luckysong", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "is_translator": false, + "name": "Guanglei" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "124003770", + "following": false, + "friends_count": 154, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cher.com", + "url": "http://t.co/E5aYMJHxx5", + "expanded_url": "http://cher.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "F92649", + "geo_enabled": true, + "followers_count": 2932243, + "location": "Malibu, California", + "screen_name": "cher", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 11219, + "name": "Cher", + "profile_use_background_image": true, + "description": "Stand & B Counted or Sit & B Nothing.\nDon't Litter,Chew Gum,Walk Past \nHomeless PPL w/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\nTHERE'S ONLY LOVE&FEAR", + "url": "http://t.co/E5aYMJHxx5", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 17 23:05:55 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", + "favourites_count": 1123, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", + "default_profile_image": false, + "id": 124003770, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 16283, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/124003770/1402616686", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "harpo studios EVP; mom, sister, friend. Travelling new and uncharted path, holding on to love and strength.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "16606403", + "blocking": false, + "is_translation_enabled": false, + "id": 16606403, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Oct 05 22:14:12 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 4561, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", + "favourites_count": 399, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 15617, + "blocked_by": false, + "following": false, + "location": "iPhone: 42.189728,-87.802538", + "muting": false, + "friends_count": 1987, + "notifications": false, + "screen_name": "hseitler", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 149, + "is_translator": false, + "name": "harriet seitler" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5510452", + "following": false, + "friends_count": 355, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "medium.com/@ameet", + "url": "http://t.co/hOMy2GqrvD", + "expanded_url": "http://medium.com/@ameet", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 4193, + "location": "San Francisco, CA", + "screen_name": "ameet", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 93, + "name": "Ameet Ranadive", + "profile_use_background_image": true, + "description": "VP Revenue Product @Twitter. Formerly Dasient ($TWTR), McKinsey. Love building products, startups, reading, writing, cooking, being a dad.", + "url": "http://t.co/hOMy2GqrvD", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Apr 25 22:41:59 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", + "favourites_count": 4657, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 5510452, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4637, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5510452/1422199159", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "29442313", + "following": false, + "friends_count": 1910, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sanders.senate.gov", + "url": "http://t.co/8AS4FI1oge", + "expanded_url": "http://www.sanders.senate.gov/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "D6CCB6", + "profile_link_color": "44506A", + "geo_enabled": true, + "followers_count": 1168571, + "location": "Vermont/DC", + "screen_name": "SenSanders", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 11871, + "name": "Bernie Sanders", + "profile_use_background_image": true, + "description": "Sen. Bernie Sanders is the longest serving independent in congressional history. Tweets ending in -B are from Bernie, and all others are from a staffer.", + "url": "http://t.co/8AS4FI1oge", + "profile_text_color": "304562", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", + "profile_background_color": "000000", + "created_at": "Tue Apr 07 13:02:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", + "favourites_count": 13, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", + "default_profile_image": false, + "id": 29442313, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 13418, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29442313/1430854323", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "216776631", + "following": false, + "friends_count": 1407, + "entities": { + "description": { + "urls": [ + { + "display_url": "berniesanders.com", + "url": "http://t.co/nuBuflYjUL", + "expanded_url": "http://berniesanders.com", + "indices": [ + 92, + 114 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "berniesanders.com", + "url": "https://t.co/W6f7Iy1Nho", + "expanded_url": "https://berniesanders.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1113827, + "location": "Vermont", + "screen_name": "BernieSanders", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 5205, + "name": "Bernie Sanders", + "profile_use_background_image": false, + "description": "I believe America is ready for a new path to the future. Join our campaign for president at http://t.co/nuBuflYjUL.", + "url": "https://t.co/W6f7Iy1Nho", + "profile_text_color": "050005", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", + "profile_background_color": "EA5047", + "created_at": "Wed Nov 17 17:53:52 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", + "favourites_count": 658, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", + "default_profile_image": false, + "id": 216776631, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5517, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/216776631/1451363799", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17159397", + "following": false, + "friends_count": 2290, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wnba.com", + "url": "http://t.co/VSPC6ki5Sa", + "expanded_url": "http://www.wnba.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "FF0000", + "geo_enabled": false, + "followers_count": 501515, + "location": "", + "screen_name": "WNBA", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2070, + "name": "WNBA", + "profile_use_background_image": true, + "description": "News & notes directly from the WNBA.", + "url": "http://t.co/VSPC6ki5Sa", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Tue Nov 04 16:04:48 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", + "favourites_count": 300, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", + "default_profile_image": false, + "id": 17159397, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 30615, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17159397/1444881224", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18129606", + "following": false, + "friends_count": 790, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/saintboz", + "url": "http://t.co/m8390gFxR6", + "expanded_url": "http://twitter.com/saintboz", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 3624, + "location": "\u00dcT: 40.810606,-73.986908", + "screen_name": "SaintBoz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "Boz Saint John", + "profile_use_background_image": true, + "description": "Self proclaimed badass and badmamajama. Generally bad. And good at it. Head diva of global consumer marketing @applemusic & @itunes", + "url": "http://t.co/m8390gFxR6", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Mon Dec 15 03:37:52 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", + "favourites_count": 1172, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", + "default_profile_image": false, + "id": 18129606, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 2923, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18129606/1353602146", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "122860384", + "blocking": false, + "is_translation_enabled": false, + "id": 122860384, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sun Mar 14 04:44:33 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 417, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", + "favourites_count": 945, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 1240, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 110, + "notifications": false, + "screen_name": "FeliciaHorowitz", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 69, + "is_translator": false, + "name": "Felicia Horowitz" + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "205926603", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com", + "url": "http://t.co/DeO4c250gs", + "expanded_url": "http://twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F2E7C4", + "profile_link_color": "89C9FA", + "geo_enabled": false, + "followers_count": 59832, + "location": "TwitterHQ", + "screen_name": "hackweek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 97, + "name": "HackWeek", + "profile_use_background_image": true, + "description": "Let's hack together.", + "url": "http://t.co/DeO4c250gs", + "profile_text_color": "9C6D74", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", + "profile_background_color": "452D30", + "created_at": "Thu Oct 21 22:27:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9C486", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", + "favourites_count": 1, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", + "default_profile_image": false, + "id": 205926603, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/205926603/1420662867", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2835886194", + "following": false, + "friends_count": 179, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "colbertlateshow.com", + "url": "https://t.co/YTzFH21e5t", + "expanded_url": "http://colbertlateshow.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 138182, + "location": "", + "screen_name": "colbertlateshow", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1002, + "name": "The Late Show on CBS", + "profile_use_background_image": true, + "description": "Official Twitter feed of The Late Show with Stephen Colbert. Unofficial Twitter feed of the U.S. Department of Agriculture.", + "url": "https://t.co/YTzFH21e5t", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 30 17:13:22 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", + "favourites_count": 249, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2835886194, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 804, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2835886194/1444429479", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3165817215", + "following": false, + "friends_count": 180, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 398560, + "location": "", + "screen_name": "JohnBoyega", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 856, + "name": "John Boyega", + "profile_use_background_image": true, + "description": "Dream and work towards the reality", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 14 09:19:31 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", + "favourites_count": 201, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3165817215, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 365, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3165817215/1451410540", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "252531143", + "following": false, + "friends_count": 3141, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "princeton.edu/~slaughtr/", + "url": "http://t.co/jJRR31QiUl", + "expanded_url": "http://www.princeton.edu/~slaughtr/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "2EBCB3", + "geo_enabled": true, + "followers_count": 129956, + "location": "Princeton, DC, New York", + "screen_name": "SlaughterAM", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3983, + "name": "Anne-Marie Slaughter", + "profile_use_background_image": true, + "description": "President & CEO, @newamerica. Former Princeton Prof & Director of Policy Planning, U.S. State Dept. Mother. Mentor. Foodie. Author. Foreign policy curator.", + "url": "http://t.co/jJRR31QiUl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", + "profile_background_color": "968270", + "created_at": "Tue Feb 15 11:33:50 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", + "favourites_count": 2854, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 252531143, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 25191, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/252531143/1424986634", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "299674713", + "following": false, + "friends_count": 597, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "juliefoudyleadership.com", + "url": "http://t.co/TlwVOqMe3Z", + "expanded_url": "http://www.juliefoudyleadership.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "C73460", + "geo_enabled": true, + "followers_count": 196506, + "location": "I wish I knew...", + "screen_name": "JulieFoudy", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1469, + "name": "Julie Foudy", + "profile_use_background_image": true, + "description": "Former watergirl #USWNT, current ESPN'er, mom, founder JF Sports Leadership Academy. Luvr of donuts larger than my heeed & soulful peops who empower others.", + "url": "http://t.co/TlwVOqMe3Z", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", + "profile_background_color": "B2DFDA", + "created_at": "Mon May 16 14:14:49 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile_image": false, + "id": 299674713, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6724, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/299674713/1402758316", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2651565121", + "following": false, + "friends_count": 10, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sinatra.com", + "url": "https://t.co/Xt6lI7LMFC", + "expanded_url": "http://sinatra.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0890C2", + "geo_enabled": false, + "followers_count": 22119, + "location": "", + "screen_name": "franksinatra", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 146, + "name": "Frank Sinatra", + "profile_use_background_image": false, + "description": "The Chairman of the Board - the official Twitter profile for Frank Sinatra Enterprises", + "url": "https://t.co/Xt6lI7LMFC", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Jul 16 16:58:44 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", + "favourites_count": 83, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2651565121, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 352, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2651565121/1406242389", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "21561935", + "following": false, + "friends_count": 901, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kissthedeejay.com", + "url": "http://t.co/6moXT5RhPn", + "expanded_url": "http://www.kissthedeejay.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", + "notifications": false, + "profile_sidebar_fill_color": "0A0A0B", + "profile_link_color": "929287", + "geo_enabled": false, + "followers_count": 10811, + "location": "NYC", + "screen_name": "KISSTHEDEEJAY", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 271, + "name": "DJ KISS", + "profile_use_background_image": true, + "description": "Deejay / Personality / Blogger / Fashion & Beauty Enthusiast / 1/2 of #TheSemples", + "url": "http://t.co/6moXT5RhPn", + "profile_text_color": "E11930", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", + "profile_background_color": "F5F2F7", + "created_at": "Sun Feb 22 12:22:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", + "favourites_count": 17, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", + "default_profile_image": false, + "id": 21561935, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 7709, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21561935/1422280291", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "43987763", + "following": false, + "friends_count": 1165, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 818, + "location": "San Francisco, CA", + "screen_name": "nataliemiyake", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 36, + "name": "Natalie Miyake", + "profile_use_background_image": true, + "description": "Corporate communications @twitter. Raised in Japan, ex-New Yorker, now in SF. Wine lover, hiking addict, brunch connoisseur.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Mon Jun 01 22:19:32 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", + "favourites_count": 1571, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "default_profile_image": false, + "id": 43987763, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3687, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43987763/1397010068", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "412715336", + "following": false, + "friends_count": 159, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1108, + "location": "San Francisco, CA", + "screen_name": "Celebrate", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 14, + "name": "#Celebrate", + "profile_use_background_image": true, + "description": "#celebrate", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", + "profile_background_color": "707375", + "created_at": "Tue Nov 15 02:02:23 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", + "favourites_count": 7, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", + "default_profile_image": false, + "id": 412715336, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 88, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/412715336/1449089216", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "158595960", + "following": false, + "friends_count": 228, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 364, + "location": "San Francisco", + "screen_name": "drao", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Deepak Rao", + "profile_use_background_image": true, + "description": "Product Manager @Twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 23 03:19:05 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", + "favourites_count": 646, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 158595960, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 269, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/158595960/1405201901", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16669075", + "following": false, + "friends_count": 616, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fema.gov", + "url": "http://t.co/yHUd9eUBs0", + "expanded_url": "http://www.fema.gov/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DCDCE0", + "profile_link_color": "2A91B0", + "geo_enabled": true, + "followers_count": 440519, + "location": "United States", + "screen_name": "fema", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8834, + "name": "FEMA", + "profile_use_background_image": true, + "description": "Our story of supporting citizens & first responders before, during, and after emergencies. For emergencies, call your local fire/EMS/police or 9-1-1.", + "url": "http://t.co/yHUd9eUBs0", + "profile_text_color": "65686E", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", + "profile_background_color": "CCCCCC", + "created_at": "Thu Oct 09 16:54:20 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", + "favourites_count": 519, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", + "default_profile_image": false, + "id": 16669075, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 10491, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16669075/1444411889", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1072103227", + "following": false, + "friends_count": 1004, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 832, + "location": "SF", + "screen_name": "heySierra", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 13, + "name": "Sierra Lord", + "profile_use_background_image": true, + "description": "#gsd @twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 08 21:50:58 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", + "favourites_count": 3027, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1072103227, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 548, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1072103227/1357682472", + "is_translator": false + }, + { + "time_zone": "Quito", + "profile_use_background_image": true, + "description": "Director of Video and Contributing Editor at @ThinkProgress. Contributing host @bpshow. Opinions, my own. E-mail: ivolsky@americanprogress.org", + "url": "http://t.co/YV2uNXXlyL", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "16002085", + "blocking": false, + "is_translation_enabled": false, + "id": 16002085, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thinkprogress.org", + "url": "http://t.co/YV2uNXXlyL", + "expanded_url": "http://www.thinkprogress.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C6E2EE", + "created_at": "Tue Aug 26 20:17:23 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "default_profile": false, + "profile_text_color": "663B12", + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "statuses_count": 29775, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", + "favourites_count": 649, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 74911, + "blocked_by": false, + "following": false, + "location": "Washington, DC", + "muting": false, + "friends_count": 2895, + "notifications": false, + "screen_name": "igorvolsky", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1267, + "is_translator": false, + "name": "igorvolsky" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "84981428", + "following": false, + "friends_count": 258, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "braintreepayments.com", + "url": "https://t.co/Vc3MPaIBSU", + "expanded_url": "http://www.braintreepayments.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4603, + "location": "San Francisco, Chicago", + "screen_name": "williamready", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 171, + "name": "William Ready", + "profile_use_background_image": true, + "description": "SVP, Global Head of Product & Engineering at PayPal. CEO of @Braintree/@Venmo. Creating the easiest way to pay or get paid - online, mobile, in-store.", + "url": "https://t.co/Vc3MPaIBSU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Oct 25 01:31:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", + "favourites_count": 1585, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 84981428, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2224, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84981428/1410287238", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Instagram- brush_4\nsnapchat- showmeb", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "48477007", + "blocking": false, + "is_translation_enabled": false, + "id": 48477007, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 18 20:24:45 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 16019, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", + "favourites_count": 7, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 51042, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 368, + "notifications": false, + "screen_name": "BRush_25", + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 943, + "is_translator": false, + "name": "Brandon Rush" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "4220691364", + "following": false, + "friends_count": 33, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sunsetwx.com", + "url": "https://t.co/EQ5OfbQIZd", + "expanded_url": "http://sunsetwx.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3017, + "location": "", + "screen_name": "sunset_wx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "name": "Sunset Weather", + "profile_use_background_image": true, + "description": "Sunset & Sunrise Predictions: Model using an in-depth algorithm comprised of meteorological factors. Developed by @WxDeFlitch, @WxReppert, @hallettwx", + "url": "https://t.co/EQ5OfbQIZd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Nov 18 19:58:34 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", + "favourites_count": 3777, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4220691364, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1812, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4220691364/1447893477", + "is_translator": false + }, + { + "time_zone": "Greenland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "247901736", + "following": false, + "friends_count": 789, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/theblurbarbosa", + "url": "http://t.co/BLAOP8mM9P", + "expanded_url": "http://instagram.com/theblurbarbosa", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "C1C70A", + "geo_enabled": false, + "followers_count": 106436, + "location": "Brazil", + "screen_name": "TheBlurBarbosa", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1024, + "name": "Leandro Barbosa", + "profile_use_background_image": true, + "description": "Jogador de Basquete da NBA. \nThe official account of Leandro Barbosa, basketball player!", + "url": "http://t.co/BLAOP8mM9P", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", + "profile_background_color": "0EC704", + "created_at": "Sat Feb 05 20:31:51 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", + "favourites_count": 614, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", + "default_profile_image": false, + "id": 247901736, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 5009, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/247901736/1406161704", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "858957830", + "following": false, + "friends_count": 265, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 41636, + "location": "", + "screen_name": "gswstats", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 518, + "name": "GSWStats", + "profile_use_background_image": true, + "description": "An official twitter account of the Golden State Warriors, featuring statistics, news and notes about the team throughout the season.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Oct 03 00:50:25 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", + "favourites_count": 9, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 858957830, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 9548, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/858957830/1401380224", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "22965624", + "following": false, + "friends_count": 587, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lafourcade.com.mx", + "url": "http://t.co/CV9kDVyOwc", + "expanded_url": "http://lafourcade.com.mx", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 1704535, + "location": "Mexico, DF", + "screen_name": "lafourcade", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5644, + "name": "Natalia Lafourcade", + "profile_use_background_image": true, + "description": "musico", + "url": "http://t.co/CV9kDVyOwc", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Mar 05 19:38:07 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", + "favourites_count": 249, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile_image": false, + "id": 22965624, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6361, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22965624/1425415118", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3099613624", + "following": false, + "friends_count": 130, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 86207, + "location": "", + "screen_name": "salmahayek", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 488, + "name": "Salma Hayek", + "profile_use_background_image": false, + "description": "After hundreds of impostors, years of procrastination, and a self-imposed allergy to technology, FINALLY I'm here. \u00a1Hola! It's Salma.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Mar 20 15:48:51 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", + "favourites_count": 4, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3099613624, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 96, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3099613624/1438298694", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18441988", + "following": false, + "friends_count": 304, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 245661, + "location": "", + "screen_name": "jrich23", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3054, + "name": "Jason Richardson", + "profile_use_background_image": true, + "description": "Father, Husband and just all around good guy!", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Dec 29 04:04:33 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", + "favourites_count": 5, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", + "default_profile_image": false, + "id": 18441988, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2691, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18441988/1395676880", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15506669", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 73655, + "location": "", + "screen_name": "JeffBezos", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 880, + "name": "Jeff Bezos", + "profile_use_background_image": true, + "description": "Amazon, Blue Origin, Washington Post", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jul 20 22:38:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 15506669, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15506669/1448361938", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "15930926", + "following": false, + "friends_count": 1445, + "entities": { + "description": { + "urls": [ + { + "display_url": "therapfan.com", + "url": "http://t.co/6ty3IIzh7f", + "expanded_url": "http://therapfan.com", + "indices": [ + 101, + 123 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "therapfan.com", + "url": "https://t.co/fVOL5FpVZ3", + "expanded_url": "http://www.therapfan.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": true, + "followers_count": 8755, + "location": "WI - STL - CA - ATL - tour", + "screen_name": "djtrackstar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 194, + "name": "track", + "profile_use_background_image": true, + "description": "Professional Rap Fan. Tour DJ for Run the Jewels. The Smoking Section. WRTJ on Beats1. @peaceimages. http://t.co/6ty3IIzh7f fb/ig:trackstarthedj", + "url": "https://t.co/fVOL5FpVZ3", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Thu Aug 21 13:14:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", + "favourites_count": 6839, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", + "default_profile_image": false, + "id": 15930926, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 32239, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15930926/1388895937", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1496009995", + "following": false, + "friends_count": 634, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/jikpa", + "url": "https://t.co/dNEeeChBZx", + "expanded_url": "http://linkedin.com/in/jikpa", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 612, + "location": "San Francisco, CA", + "screen_name": "jikpapa", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 6, + "name": "Janet Ikpa", + "profile_use_background_image": true, + "description": "Diversity Strategist @Twitter | Past life @Google | @Blackbirds & @WomEng Lead | UC Santa Barbara & Indiana University Alum | \u2764\ufe0f | Thoughts my own", + "url": "https://t.co/dNEeeChBZx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Sun Jun 09 16:16:26 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", + "favourites_count": 2746, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "default_profile_image": false, + "id": 1496009995, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1058, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496009995/1431054902", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "100224999", + "following": false, + "friends_count": 183, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 505, + "location": "San Francisco", + "screen_name": "gabi_dee", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 14, + "name": "Gabrielle Delva", + "profile_use_background_image": false, + "description": "travel enthusiast, professional giggler, gif guru, forever in transition.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Dec 29 13:27:37 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", + "favourites_count": 1373, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "default_profile_image": false, + "id": 100224999, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6503, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/100224999/1426546312", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "18768473", + "following": false, + "friends_count": 2135, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "open.spotify.com/user/brucedais\u2026", + "url": "https://t.co/l0e3ybjdUA", + "expanded_url": "https://open.spotify.com/user/brucedaisley", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 19661, + "location": "", + "screen_name": "brucedaisley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 416, + "name": "Bruce Daisley", + "profile_use_background_image": true, + "description": "Typo strewn tweets about pop music. #HeForShe. Work at Twitter.", + "url": "https://t.co/l0e3ybjdUA", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", + "profile_background_color": "352726", + "created_at": "Thu Jan 08 16:20:21 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", + "favourites_count": 14621, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", + "default_profile_image": false, + "id": 18768473, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 20375, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18768473/1441290267", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "60900903", + "following": false, + "friends_count": 2731, + "entities": { + "description": { + "urls": [ + { + "display_url": "squ.re/1MXEAse", + "url": "https://t.co/lZueerHDOb", + "expanded_url": "http://squ.re/1MXEAse", + "indices": [ + 125, + 148 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mrtodspies.com", + "url": "https://t.co/Bu7ML9v7ZC", + "expanded_url": "http://www.mrtodspies.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2251, + "location": "Aqui Estoy", + "screen_name": "MrTodsPies", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 71, + "name": "Mr. Tod", + "profile_use_background_image": true, + "description": "CEO and Founder of Mr Tod's Pie Factory - ABC Shark Tank's First Winner - Sweet Potato Pie King - Check out my Square Story: https://t.co/lZueerHDOb", + "url": "https://t.co/Bu7ML9v7ZC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Jul 28 13:20:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", + "favourites_count": 423, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", + "default_profile_image": false, + "id": 60900903, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 2574, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/60900903/1432911758", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Founder & CEO of Tinder", + "url": "https://t.co/801oYHR78b", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "6148472", + "blocking": false, + "is_translation_enabled": false, + "id": 6148472, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gotinder.com", + "url": "https://t.co/801oYHR78b", + "expanded_url": "http://gotinder.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri May 18 22:24:10 +0000 2007", + "profile_image_url": "http://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 2152, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", + "favourites_count": 3, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 7032, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 57, + "notifications": false, + "screen_name": "seanrad", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 390, + "is_translator": false, + "name": "Sean Rad" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2163177444", + "following": false, + "friends_count": 61, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 18065, + "location": "", + "screen_name": "HistOpinion", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 299, + "name": "Historical Opinion", + "profile_use_background_image": true, + "description": "Tweets from historical public opinion surveys, US and around the world, 1935-yesterday. Curated by @pashulman.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Oct 29 16:37:52 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", + "favourites_count": 300, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2163177444, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1272, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2163177444/1398739322", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4257979872", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [ + { + "display_url": "on.mash.to/1SWgZ0q", + "url": "https://t.co/XCv9Qbk0fi", + "expanded_url": "http://on.mash.to/1SWgZ0q", + "indices": [ + 105, + 128 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3D4999", + "geo_enabled": false, + "followers_count": 52994, + "location": "", + "screen_name": "ParisVictims", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 214, + "name": "En m\u00e9moire", + "profile_use_background_image": false, + "description": "One tweet for every victim of the terror attacks in Paris on Nov. 13, 2015. This is a @Mashable project.\nhttps://t.co/XCv9Qbk0fi", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", + "profile_background_color": "969494", + "created_at": "Mon Nov 16 15:41:07 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4257979872, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 130, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4257979872/1447689123", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/raiVzM9CC2", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "562267840", + "blocking": false, + "is_translation_enabled": false, + "id": 562267840, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "raine.com", + "url": "http://t.co/raiVzM9CC2", + "expanded_url": "http://www.raine.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 24 19:09:33 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 325, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", + "favourites_count": 60, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 466, + "blocked_by": false, + "following": false, + "location": "NY/LA/SFO/LONDON/ASIA", + "muting": false, + "friends_count": 95, + "notifications": false, + "screen_name": "JoeRavitch", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "is_translator": false, + "name": "Joe Ravitch" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "928744998", + "following": false, + "friends_count": 812, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wakeuptopolitics.com", + "url": "https://t.co/Mwu8QKYT05", + "expanded_url": "http://www.wakeuptopolitics.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1725, + "location": "St. Louis (now), DC (future)", + "screen_name": "WakeUp2Politics", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "Gabe Fleisher", + "profile_use_background_image": false, + "description": "14 yr old Editor, Wake Up To Politics, daily political newsletter. Author. Political junkie. Also attending middle school in my spare time. RTs \u2260 endorsements.", + "url": "https://t.co/Mwu8QKYT05", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Nov 06 01:20:43 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", + "favourites_count": 2832, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", + "default_profile_image": false, + "id": 928744998, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3668, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/928744998/1452145580", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2773453886", + "following": false, + "friends_count": 32, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jumpshotgenie.com", + "url": "http://t.co/IrZ3XgzXdT", + "expanded_url": "http://www.jumpshotgenie.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7724, + "location": "Charlotte, NC", + "screen_name": "DC__for3", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "Dell Curry", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/IrZ3XgzXdT", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Aug 27 14:43:19 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", + "favourites_count": 35, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2773453886, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 69, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2773453886/1409150929", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "798048997", + "following": false, + "friends_count": 2, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "perigee.se", + "url": "http://t.co/2P0WOpJTeV", + "expanded_url": "http://www.perigee.se", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 448, + "location": "", + "screen_name": "PerigeeApps", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Perigee", + "profile_use_background_image": true, + "description": "Crafting useful and desirable apps that solve life's problems in a delightful way.", + "url": "http://t.co/2P0WOpJTeV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Sep 02 11:11:01 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", + "favourites_count": 106, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 798048997, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 433, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/798048997/1447315639", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "I am a robot that live-tweets earthquakes in the San Francisco Bay area. Built by @billsnitzer. Data is from the USGS. Get prepared: http://t.co/VtCEbuw6KH", + "url": "http://t.co/EznRBcY7a7", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "37861434", + "blocking": false, + "is_translation_enabled": false, + "id": 37861434, + "entities": { + "description": { + "urls": [ + { + "display_url": "amzn.to/PayjDo", + "url": "http://t.co/VtCEbuw6KH", + "expanded_url": "http://amzn.to/PayjDo", + "indices": [ + 133, + 155 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "eqbot.com", + "url": "http://t.co/EznRBcY7a7", + "expanded_url": "http://eqbot.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue May 05 04:53:31 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 7780, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", + "favourites_count": 0, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 124449, + "blocked_by": false, + "following": false, + "location": "San Francisco, CA", + "muting": false, + "friends_count": 6, + "notifications": false, + "screen_name": "earthquakesSF", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1540, + "is_translator": false, + "name": "SF QuakeBot" + }, + { + "time_zone": "Atlantic Time (Canada)", + "profile_use_background_image": true, + "description": "Fixes explores solutions to major social problems. Each week, it examines creative initiatives that can tell us about the difference between success and failure", + "url": "http://t.co/dSgWPDl048", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -14400, + "id_str": "249334021", + "blocking": false, + "is_translation_enabled": false, + "id": 249334021, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "opinionator.blogs.nytimes.com/category/fixes/", + "url": "http://t.co/dSgWPDl048", + "expanded_url": "http://opinionator.blogs.nytimes.com/category/fixes/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 08 21:00:21 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 349, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", + "favourites_count": 3, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 7148, + "blocked_by": false, + "following": false, + "location": "New York, NY", + "muting": false, + "friends_count": 55, + "notifications": false, + "screen_name": "nytimesfixes", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 402, + "is_translator": false, + "name": "NYT Fixes Blog" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "360391686", + "following": false, + "friends_count": 707, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chetfaker.com/shows", + "url": "https://t.co/es4xPMVZSh", + "expanded_url": "http://chetfaker.com/shows", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 82004, + "location": "Australia", + "screen_name": "Chet_Faker", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 558, + "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186", + "profile_use_background_image": true, + "description": "unnoficial fan account *parody* no way affiliated with Chet Faker. we \u2665\ufe0fChet Kawai please follow for latest music & check website for more news", + "url": "https://t.co/es4xPMVZSh", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Aug 23 04:05:11 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", + "favourites_count": 12084, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", + "default_profile_image": false, + "id": 360391686, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 8616, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/360391686/1363912234", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "748615879", + "following": false, + "friends_count": 585, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "angstrom.io", + "url": "https://t.co/bwG2E1VYFG", + "expanded_url": "http://angstrom.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 282, + "location": "37.7750\u00b0 N, 122.4183\u00b0 W", + "screen_name": "cacoco", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 8, + "name": "Christopher Coco", + "profile_use_background_image": true, + "description": "life in small doses.", + "url": "https://t.co/bwG2E1VYFG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri Aug 10 04:35:36 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", + "favourites_count": 4543, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", + "default_profile_image": false, + "id": 748615879, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1975, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/748615879/1352437653", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "2652536876", + "following": false, + "friends_count": 102, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pepsico.com", + "url": "https://t.co/SDLqDs6Xfd", + "expanded_url": "http://pepsico.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3513, + "location": "purchase ny", + "screen_name": "IndraNooyi", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "Indra Nooyi", + "profile_use_background_image": true, + "description": "CEO @PEPSICO", + "url": "https://t.co/SDLqDs6Xfd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jul 17 01:35:59 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", + "favourites_count": 7, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2652536876, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 12, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652536876/1446586148", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3274940484", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 395, + "location": "", + "screen_name": "getpolled", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 1, + "name": "@GetPolled", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", + "profile_background_color": "3B94D9", + "created_at": "Sat Jul 11 00:28:05 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3274940484, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 42, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3274940484/1437009659", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": false, + "description": "America's Favorite Icon Designer, Partner @Parakeet", + "url": "https://t.co/MWe41e6Yhi", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "41783", + "blocking": false, + "is_translation_enabled": false, + "id": 41783, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "louiemantia.com", + "url": "https://t.co/MWe41e6Yhi", + "expanded_url": "http://louiemantia.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "A8B4BF", + "created_at": "Tue Dec 05 02:40:37 +0000 2006", + "profile_image_url": "http://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "ABB8C2", + "statuses_count": 102450, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", + "favourites_count": 11672, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 17113, + "blocked_by": false, + "following": false, + "location": "Portland", + "muting": false, + "friends_count": 74, + "notifications": false, + "screen_name": "mantia", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 1118, + "is_translator": false, + "name": "Louie Mantia" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "817288", + "following": false, + "friends_count": 4457, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "techmeme.com", + "url": "http://t.co/2kJ3FyTtAJ", + "expanded_url": "http://techmeme.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 56179, + "location": "SF: Disruptopia, USA", + "screen_name": "gaberivera", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2313, + "name": "Gabe Rivera", + "profile_use_background_image": true, + "description": "I run Techmeme.\r\nSometimes I tweet what I mean. Sometimes I tweet the opposite. Retweets are endorphins.", + "url": "http://t.co/2kJ3FyTtAJ", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", + "profile_background_color": "C6E2EE", + "created_at": "Wed Mar 07 06:23:51 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", + "favourites_count": 13571, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", + "default_profile_image": false, + "id": 817288, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 11636, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/817288/1401467981", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1201139012", + "following": false, + "friends_count": 29, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkd.in/1uiUZno", + "url": "http://t.co/gi5nkD1WcX", + "expanded_url": "http://linkd.in/1uiUZno", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2770, + "location": "Cleveland, Ohio", + "screen_name": "TobyCosgroveMD", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 81, + "name": "Toby Cosgrove, MD", + "profile_use_background_image": false, + "description": "President and CEO, @ClevelandClinic. Cardiothoracic surgeon. U.S. Air Force Veteran.", + "url": "http://t.co/gi5nkD1WcX", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", + "profile_background_color": "065EA8", + "created_at": "Wed Feb 20 13:56:57 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", + "favourites_count": 15, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 1201139012, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 118, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1201139012/1415028437", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4071934995", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 122961, + "location": "twitter.com", + "screen_name": "polls", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 212, + "name": "polls", + "profile_use_background_image": true, + "description": "the most important polls on twitter. Brought to you by @BuzzFeed. DM us your poll ideas!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Oct 30 02:09:51 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", + "favourites_count": 85, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4071934995, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 812, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4071934995/1446225664", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "25084660", + "following": false, + "friends_count": 791, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 422254, + "location": "", + "screen_name": "arzE", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2851, + "name": "Ezra Koenig", + "profile_use_background_image": true, + "description": "vampire weekend inc.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Mar 18 14:52:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", + "favourites_count": 5759, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", + "default_profile_image": false, + "id": 25084660, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 9309, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/25084660/1436462636", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "1081562149", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [ + { + "display_url": "favstar.fm/users/seinfeld\u2026", + "url": "https://t.co/GCOoEYISti", + "expanded_url": "http://favstar.fm/users/seinfeld2000", + "indices": [ + 71, + 94 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 101814, + "location": "", + "screen_name": "Seinfeld2000", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 779, + "name": "Seinfeld Current Day", + "profile_use_background_image": true, + "description": "Imagen Seinfeld was never canceled and still NBC comedy program today? https://t.co/GCOoEYISti", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jan 12 02:17:49 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", + "favourites_count": 56619, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", + "default_profile_image": false, + "id": 1081562149, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 6600, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1081562149/1452223878", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "23699191", + "following": false, + "friends_count": 524, + "entities": { + "description": { + "urls": [ + { + "display_url": "noisey.vice.com/en_uk/noisey-s", + "url": "https://t.co/oXek0Yp2he", + "expanded_url": "http://noisey.vice.com/en_uk/noisey-s", + "indices": [ + 75, + 98 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "helloskepta.com", + "url": "https://t.co/LCjnqqo5cF", + "expanded_url": "http://www.helloskepta.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 667153, + "location": "", + "screen_name": "Skepta", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1287, + "name": "SKEPTA", + "profile_use_background_image": true, + "description": "Bookings: grace@metallicmgmt.com jonathanbriks@theagencygroup.com\n\n#TopBoy https://t.co/oXek0Yp2he\u2026", + "url": "https://t.co/LCjnqqo5cF", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Mar 11 01:31:36 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", + "favourites_count": 1, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 23699191, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 30142, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23699191/1431890723", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "937499232", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "malala.org", + "url": "http://t.co/nyY0R0rWL2", + "expanded_url": "http://malala.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 64783, + "location": "Pakistan", + "screen_name": "Malala", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 311, + "name": "Malala Yousafzai", + "profile_use_background_image": false, + "description": "Please follow @MalalaFund for Tweets from Malala and updates on her work.", + "url": "http://t.co/nyY0R0rWL2", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Nov 09 18:34:52 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 937499232, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 0, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/937499232/1444529280", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Nobel Peace Prize 2014 winner. \nFounder-Global March Against Child Labour (@kNOwchildlabour) &\nBachpan Bachao Andolan. RTs not endorsements.", + "url": "http://t.co/p9X5Y5bZLm", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2477802067", + "blocking": false, + "is_translation_enabled": false, + "id": 2477802067, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "satyarthi.org", + "url": "http://t.co/p9X5Y5bZLm", + "expanded_url": "http://www.satyarthi.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon May 05 04:07:33 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 803, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", + "favourites_count": 173, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 180027, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 60, + "notifications": false, + "screen_name": "k_satyarthi", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 514, + "is_translator": false, + "name": "Kailash Satyarthi" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14439813", + "following": false, + "friends_count": 334, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 58956, + "location": "atlanta & nyc", + "screen_name": "wnd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 412, + "name": "wendy clark", + "profile_use_background_image": true, + "description": "mom :: ceo ddb/na :: relentless optimist", + "url": null, + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", + "profile_background_color": "352726", + "created_at": "Sat Apr 19 02:18:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", + "favourites_count": 8837, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "default_profile_image": false, + "id": 14439813, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4316, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14439813/1451700372", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "31898295", + "following": false, + "friends_count": 3108, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": true, + "followers_count": 4303, + "location": "", + "screen_name": "Derella", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 68, + "name": "matt derella", + "profile_use_background_image": true, + "description": "Rookie Dad, Lucky Husband, Ice Cream Addict. Remember, You Have Superpowers.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", + "profile_background_color": "709397", + "created_at": "Thu Apr 16 15:34:22 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", + "favourites_count": 6095, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "default_profile_image": false, + "id": 31898295, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2137, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/31898295/1350353093", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "38422658", + "following": false, + "friends_count": 1684, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "F057F0", + "geo_enabled": true, + "followers_count": 10933, + "location": "San Francisco*", + "screen_name": "melissabarnes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 247, + "name": "Melissa Barnes", + "profile_use_background_image": false, + "description": "Global Brands @Twitter. Easily entertained. Black coffee, please.", + "url": null, + "profile_text_color": "FF6F00", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu May 07 12:42:42 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", + "favourites_count": 7486, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", + "default_profile_image": false, + "id": 38422658, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1713, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/38422658/1383346519", + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "21007030", + "following": false, + "friends_count": 3161, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rio2016.com", + "url": "https://t.co/q8z1zrW1rr", + "expanded_url": "http://www.rio2016.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", + "notifications": false, + "profile_sidebar_fill_color": "A4CC35", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 222873, + "location": "Rio de Janeiro", + "screen_name": "Rio2016", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1236, + "name": "Rio 2016", + "profile_use_background_image": false, + "description": "Perfil oficial do Comit\u00ea Organizador dos Jogos Ol\u00edmpicos e Paral\u00edmpicos Rio 2016 em Portugu\u00eas. English:@rio2016_en. Espa\u00f1ol: @rio2016_es.", + "url": "https://t.co/q8z1zrW1rr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", + "profile_background_color": "FA743E", + "created_at": "Mon Feb 16 17:48:07 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", + "favourites_count": 1422, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", + "default_profile_image": false, + "id": 21007030, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7248, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21007030/1451309674", + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "88703900", + "following": false, + "friends_count": 600, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rio2016.com/en/home", + "url": "http://t.co/BFr0Z1jKEP", + "expanded_url": "http://www.rio2016.com/en/home", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", + "notifications": false, + "profile_sidebar_fill_color": "A4CC35", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 245882, + "location": "Rio de Janeiro", + "screen_name": "Rio2016_en", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1216, + "name": "Rio 2016", + "profile_use_background_image": true, + "description": "Official Rio 2016\u2122 Olympic and Paralympic Organizing Committee in English. Portugu\u00eas:@rio2016. Espa\u00f1ol: @rio2016_es.", + "url": "http://t.co/BFr0Z1jKEP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Nov 09 16:44:38 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F7AF08", + "lang": "pt", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", + "favourites_count": 1369, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", + "default_profile_image": false, + "id": 88703900, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5098, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/88703900/1451306802", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "584263864", + "following": false, + "friends_count": 372, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "005FB3", + "geo_enabled": true, + "followers_count": 642, + "location": "", + "screen_name": "edgett", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Sean Edgett", + "profile_use_background_image": true, + "description": "Corporate lawyer at Twitter. Comments here are my own.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Fri May 18 23:43:39 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", + "favourites_count": 1187, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", + "default_profile_image": false, + "id": 584263864, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 634, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/584263864/1442269032", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "4048046116", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 176589, + "location": "Turn On Our Notifications!", + "screen_name": "24HourPolls", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 102, + "name": "24 Hour Polls", + "profile_use_background_image": true, + "description": "| The Best Polls On Twitter | Original Account | *DM's Are Open For Suggestions!*", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 26 18:33:54 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", + "favourites_count": 609, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 4048046116, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 810, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048046116/1445886946", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2881611", + "following": false, + "friends_count": 1289, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/prashantsri\u2026", + "url": "https://t.co/d3WaCy2EU1", + "expanded_url": "http://www.linkedin.com/in/prashantsridharan", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 11192, + "location": "San Francisco", + "screen_name": "CoolAssPuppy", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 96, + "name": "Prashant S", + "profile_use_background_image": true, + "description": "Twitter Global Director of Developer & Platform Relations. I @SoulCycle, therefore I am. #PopcornHo", + "url": "https://t.co/d3WaCy2EU1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Mar 29 19:21:15 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", + "favourites_count": 13108, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", + "default_profile_image": false, + "id": 2881611, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 21197, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2881611/1446596289", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2990843386", + "following": false, + "friends_count": 53, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 818, + "location": "Salt Lake City, UT", + "screen_name": "pinkgrandmas", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Pink Grandmas", + "profile_use_background_image": true, + "description": "The @PinkGrandmas who lovingly cheer for their Utah Jazz, and always in pink!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jan 21 23:13:42 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", + "favourites_count": 108, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2990843386, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 139, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2990843386/1421883592", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15105000", + "following": false, + "friends_count": 1161, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "iSachin.com", + "url": "http://t.co/AWr3VV2avy", + "expanded_url": "http://iSachin.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": true, + "followers_count": 20842, + "location": "San Francisco, CA", + "screen_name": "agarwal", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 1324, + "name": "Sachin Agarwal", + "profile_use_background_image": true, + "description": "Product at Twitter. Past: @Stanford, Apple, Founder/CEO of @posterous. I \u2764\ufe0f @kateagarwal, cars, wine, puppies, and foie.", + "url": "http://t.co/AWr3VV2avy", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Fri Jun 13 06:49:22 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", + "favourites_count": 16040, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "default_profile_image": false, + "id": 15105000, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 11185, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15105000/1427478415", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "569900436", + "following": false, + "friends_count": 119, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 437, + "location": "", + "screen_name": "akkhosh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "alex", + "profile_use_background_image": true, + "description": "alex at periscope.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu May 03 09:06:30 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", + "favourites_count": 2, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 569900436, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 0, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/569900436/1422657776", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Father, Husband, Head Basketball Coach LA Clippers, Maywood Native", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "4027765453", + "blocking": false, + "is_translation_enabled": false, + "id": 4027765453, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 26 19:49:37 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 3, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 18514, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 22, + "notifications": false, + "screen_name": "DocRivers", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 178, + "is_translator": false, + "name": "doc rivers" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "54226675", + "following": false, + "friends_count": 220, + "entities": { + "description": { + "urls": [ + { + "display_url": "support.twitter.com/forms/translat\u2026", + "url": "http://t.co/SOm6i336Up", + "expanded_url": "http://support.twitter.com/forms/translation", + "indices": [ + 82, + 104 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "translate.twitter.com", + "url": "https://t.co/K91mYVcFjL", + "expanded_url": "http://translate.twitter.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2950587, + "location": "", + "screen_name": "translator", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2694, + "name": "Translator", + "profile_use_background_image": true, + "description": "Twitter's Translator Community. Got questions or found a bug? Fill out this form: http://t.co/SOm6i336Up", + "url": "https://t.co/K91mYVcFjL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 06 14:59:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", + "favourites_count": 170, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", + "default_profile_image": false, + "id": 54226675, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1708, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/54226675/1347394452", + "is_translator": true + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "376825877", + "following": false, + "friends_count": 48, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "opensource.twitter.com", + "url": "http://t.co/Hc7Cv220E7", + "expanded_url": "http://opensource.twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 282967, + "location": "Twitter HQ", + "screen_name": "TwitterOSS", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1987, + "name": "Twitter Open Source", + "profile_use_background_image": true, + "description": "Open Programs at Twitter.", + "url": "http://t.co/Hc7Cv220E7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Sep 20 15:18:34 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", + "favourites_count": 3323, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 376825877, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 5355, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/376825877/1396969577", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17874544", + "following": false, + "friends_count": 31, + "entities": { + "description": { + "urls": [ + { + "display_url": "support.twitter.com", + "url": "http://t.co/qq1HEzdMA2", + "expanded_url": "http://support.twitter.com", + "indices": [ + 118, + 140 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "support.twitter.com", + "url": "http://t.co/Vk1NkwU8qP", + "expanded_url": "http://support.twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4606293, + "location": "Twitter HQ", + "screen_name": "Support", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 13844, + "name": "Twitter Support", + "profile_use_background_image": true, + "description": "We Tweet tips and tricks to help you boost your Twitter skills and keep your account secure. For detailed help, visit http://t.co/qq1HEzdMA2.", + "url": "http://t.co/Vk1NkwU8qP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Dec 04 18:51:57 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", + "favourites_count": 300, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", + "default_profile_image": false, + "id": 17874544, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 14056, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17874544/1347394418", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6253282", + "following": false, + "friends_count": 48, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dev.twitter.com", + "url": "http://t.co/78pYTvWfJd", + "expanded_url": "http://dev.twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 5243787, + "location": "San Francisco, CA", + "screen_name": "twitterapi", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 12998, + "name": "Twitter API", + "profile_use_background_image": true, + "description": "The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.", + "url": "http://t.co/78pYTvWfJd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed May 23 06:01:13 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", + "favourites_count": 27, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", + "default_profile_image": false, + "id": 6253282, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 3554, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1431474710", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "95731075", + "following": false, + "friends_count": 85, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "safety.twitter.com", + "url": "https://t.co/mAjmahDXqp", + "expanded_url": "https://safety.twitter.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2920147, + "location": "Twitter HQ", + "screen_name": "safety", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 7562, + "name": "Safety", + "profile_use_background_image": true, + "description": "Helping you stay safe on Twitter.", + "url": "https://t.co/mAjmahDXqp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", + "profile_background_color": "022330", + "created_at": "Wed Dec 09 21:00:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", + "favourites_count": 5, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile_image": false, + "id": 95731075, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 399, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/95731075/1416521916", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "204343158", + "following": false, + "friends_count": 286, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "1stdibs.com", + "url": "http://t.co/GyCLcPK1G6", + "expanded_url": "http://www.1stdibs.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3E9DE0", + "geo_enabled": true, + "followers_count": 5054, + "location": "New York, NY", + "screen_name": "rosenblattdavid", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 60, + "name": "David Rosenblatt", + "profile_use_background_image": true, + "description": "CEO at 1stdibs", + "url": "http://t.co/GyCLcPK1G6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 18 13:56:10 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", + "favourites_count": 245, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", + "default_profile_image": false, + "id": 204343158, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 376, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/204343158/1448985578", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "19417999", + "following": false, + "friends_count": 14503, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "itun.es/us/Q4QZ6", + "url": "https://t.co/1snyy96FWE", + "expanded_url": "https://itun.es/us/Q4QZ6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 57238, + "location": "Invite The Light \u2022 Out now.", + "screen_name": "DaMFunK", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1338, + "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK", + "profile_use_background_image": true, + "description": "\u2022 Modern-Funk | No fads | No sellout \u2022", + "url": "https://t.co/1snyy96FWE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Jan 23 22:31:59 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", + "favourites_count": 52062, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", + "default_profile_image": false, + "id": 19417999, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 41219, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19417999/1441340768", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17230018", + "following": false, + "friends_count": 17947, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Spotify.com", + "url": "http://t.co/jqAb65DqrK", + "expanded_url": "http://Spotify.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "ECEBE8", + "profile_link_color": "1ED760", + "geo_enabled": true, + "followers_count": 1644482, + "location": "", + "screen_name": "Spotify", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 14006, + "name": "Spotify", + "profile_use_background_image": false, + "description": "Music for every moment. Play, discover, and share for free. \r\nNeed support? We're happy to help at @SpotifyCares", + "url": "http://t.co/jqAb65DqrK", + "profile_text_color": "458DBF", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Fri Nov 07 12:14:28 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", + "favourites_count": 4977, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", + "default_profile_image": false, + "id": 17230018, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 23164, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17230018/1450966022", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "The Official Twitter Page of Seth MacFarlane - new album No One Ever Tells You available now on iTunes https://t.co/gLePVn5Mho", + "url": "https://t.co/o4miqWAHnW", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "18948541", + "blocking": false, + "is_translation_enabled": true, + "id": 18948541, + "entities": { + "description": { + "urls": [ + { + "display_url": "itun.es/us/Vx9p-", + "url": "https://t.co/gLePVn5Mho", + "expanded_url": "http://itun.es/us/Vx9p-", + "indices": [ + 103, + 126 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/pages/Seth-Mac\u2026", + "url": "https://t.co/o4miqWAHnW", + "expanded_url": "http://www.facebook.com/pages/Seth-MacFarlane/14105972607?ref=ts", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 13 19:04:37 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 5295, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 8866646, + "blocked_by": false, + "following": false, + "location": "Los Angeles", + "muting": false, + "friends_count": 349, + "notifications": false, + "screen_name": "SethMacFarlane", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 32336, + "is_translator": false, + "name": "Seth MacFarlane" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "96829836", + "following": false, + "friends_count": 188, + "entities": { + "description": { + "urls": [ + { + "display_url": "smarturl.it/illmaticxx_itu\u2026", + "url": "http://t.co/GQVoyTHAXi", + "expanded_url": "http://smarturl.it/illmaticxx_itunes", + "indices": [ + 29, + 51 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "TribecaFilm.com/Nas", + "url": "http://t.co/Ol6HETXMsd", + "expanded_url": "http://TribecaFilm.com/Nas", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1896372, + "location": "NYC", + "screen_name": "Nas", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8574, + "name": "Nasir Jones", + "profile_use_background_image": true, + "description": "Illmatic XX now available: \r\nhttp://t.co/GQVoyTHAXi", + "url": "http://t.co/Ol6HETXMsd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 14 20:03:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", + "favourites_count": 3, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", + "default_profile_image": false, + "id": 96829836, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 4514, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/96829836/1412353651", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "422665701", + "following": false, + "friends_count": 1877, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "smarturl.it/TrapTearsVid", + "url": "https://t.co/bSTapnSbtt", + "expanded_url": "http://smarturl.it/TrapTearsVid", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "0A0A0A", + "profile_link_color": "8F120E", + "geo_enabled": true, + "followers_count": 113351, + "location": "", + "screen_name": "Raury", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 326, + "name": "AWN", + "profile_use_background_image": true, + "description": "being of light , right on time #indigo #millennial new album #AllWeNeed", + "url": "https://t.co/bSTapnSbtt", + "profile_text_color": "A30A0A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Nov 27 14:50:29 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", + "favourites_count": 9695, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", + "default_profile_image": false, + "id": 422665701, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 35237, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/422665701/1444935009", + "is_translator": false + }, + { + "time_zone": "Baghdad", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 10800, + "id_str": "1499345785", + "following": false, + "friends_count": 31, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 21461, + "location": "", + "screen_name": "Iarsulrich", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 73, + "name": "Lars Ulrich", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Jun 10 20:39:52 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", + "favourites_count": 14, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", + "default_profile_image": false, + "id": 1499345785, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499345785/1438456012", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7698", + "following": false, + "friends_count": 758, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "monkey.org/~marius/", + "url": "https://t.co/Fd7AtAPU13", + "expanded_url": "http://monkey.org/~marius/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 8435, + "location": "Silicon Valley", + "screen_name": "marius", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 296, + "name": "marius eriksen", + "profile_use_background_image": true, + "description": "I spend most days cursing at lots of very tiny electronics.", + "url": "https://t.co/Fd7AtAPU13", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Sat Oct 07 06:53:18 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", + "favourites_count": 4808, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "default_profile_image": false, + "id": 7698, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7425, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7698/1413383522", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18819527", + "following": false, + "friends_count": 3066, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "travelocity.com", + "url": "http://t.co/GxUHwpGZyC", + "expanded_url": "http://travelocity.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 80685, + "location": "", + "screen_name": "RoamingGnome", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1434, + "name": "Travelocity Gnome", + "profile_use_background_image": true, + "description": "The official globetrotting ornament. Nabbed from a very boring garden to travel the world. You can find me on instagram @roaminggnome", + "url": "http://t.co/GxUHwpGZyC", + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", + "profile_background_color": "89C9FA", + "created_at": "Fri Jan 09 23:08:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", + "favourites_count": 4816, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", + "default_profile_image": false, + "id": 18819527, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 10405, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18819527/1398261580", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "32765534", + "following": false, + "friends_count": 326, + "entities": { + "description": { + "urls": [ + { + "display_url": "billsimmonspodcast.com", + "url": "https://t.co/vjQN5lsu7P", + "expanded_url": "http://www.billsimmonspodcast.com", + "indices": [ + 44, + 67 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "grantland.com/features/compl\u2026", + "url": "https://t.co/FAEjPf1Iwj", + "expanded_url": "http://grantland.com/features/complete-column-archives-grantland-edition/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": false, + "followers_count": 4767987, + "location": "Los Angeles (via Boston)", + "screen_name": "BillSimmons", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 32240, + "name": "Bill Simmons", + "profile_use_background_image": true, + "description": "Host of The Bill Simmons Podcast - links at https://t.co/vjQN5lsu7P. My HBO show = 2016. Once ran a Grantland cult according to 2 unnamed ESPN execs.", + "url": "https://t.co/FAEjPf1Iwj", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Sat Apr 18 03:37:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", + "favourites_count": 9, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", + "default_profile_image": false, + "id": 32765534, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 15280, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/32765534/1445653325", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -14400, + "id_str": "44039298", + "blocking": false, + "is_translation_enabled": false, + "id": 44039298, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 02 02:35:39 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 6071, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", + "favourites_count": 49, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 3616527, + "blocked_by": false, + "following": false, + "location": "New York", + "muting": false, + "friends_count": 545, + "notifications": false, + "screen_name": "sethmeyers", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 20373, + "is_translator": false, + "name": "Seth Meyers" + }, + { + "time_zone": "UTC", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "104969057", + "following": false, + "friends_count": 493, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "McKellen.com", + "url": "http://t.co/g38r3qsinW", + "expanded_url": "http://www.McKellen.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "050505", + "geo_enabled": false, + "followers_count": 2903598, + "location": "London, UK", + "screen_name": "IanMcKellen", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 12050, + "name": "Ian McKellen", + "profile_use_background_image": true, + "description": "actor and activist", + "url": "http://t.co/g38r3qsinW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Thu Jan 14 23:29:56 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", + "favourites_count": 95, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 104969057, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1314, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/104969057/1449683945", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "241964676", + "following": false, + "friends_count": 226, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Grantland.com", + "url": "http://t.co/qx60xDYYa3", + "expanded_url": "http://www.Grantland.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/414549914/bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F5F5F5", + "profile_link_color": "BF1E2E", + "geo_enabled": false, + "followers_count": 508445, + "location": "Los Angeles, CA", + "screen_name": "Grantland33", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8432, + "name": "Grantland", + "profile_use_background_image": true, + "description": "Home of the Triangle | Hollywood Prospectus.", + "url": "http://t.co/qx60xDYYa3", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jan 23 16:06:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBDDDE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", + "favourites_count": 238, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/414549914/bg.jpg", + "default_profile_image": false, + "id": 241964676, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 26406, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/241964676/1441915615", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "615999145", + "blocking": false, + "is_translation_enabled": false, + "id": 615999145, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Jun 23 10:24:53 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", + "favourites_count": 6, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 766, + "blocked_by": false, + "following": false, + "location": "Los Angeles", + "muting": false, + "friends_count": 127, + "notifications": false, + "screen_name": "KikiShaf", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "Bee Shaffer" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "Arts and entertainment news from The New York Times.", + "url": "http://t.co/0H74AaBX8Y", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "1440641", + "blocking": false, + "is_translation_enabled": false, + "id": 1440641, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nytimes.com/arts", + "url": "http://t.co/0H74AaBX8Y", + "expanded_url": "http://www.nytimes.com/arts", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "FFFFFF", + "created_at": "Sun Mar 18 20:30:33 +0000 2007", + "profile_image_url": "http://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "E7EFF8", + "profile_link_color": "004276", + "statuses_count": 91388, + "profile_sidebar_border_color": "323232", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", + "favourites_count": 21, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1862334, + "blocked_by": false, + "following": false, + "location": "New York, NY", + "muting": false, + "friends_count": 88, + "notifications": false, + "screen_name": "nytimesarts", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17928, + "is_translator": false, + "name": "New York Times Arts" + }, + { + "time_zone": "Greenland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "16465385", + "following": false, + "friends_count": 536, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nobelprize.org", + "url": "http://t.co/If9cQQEL4i", + "expanded_url": "http://nobelprize.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E2E8EA", + "profile_link_color": "307497", + "geo_enabled": true, + "followers_count": 177895, + "location": "Stockholm, Sweden", + "screen_name": "NobelPrize", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3279, + "name": "The Nobel Prize", + "profile_use_background_image": true, + "description": "The official Twitter feed of the Nobel Prize @NobelPrize #NobelPrize", + "url": "http://t.co/If9cQQEL4i", + "profile_text_color": "023C59", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Fri Sep 26 08:47:58 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", + "favourites_count": 198, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", + "default_profile_image": false, + "id": 16465385, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 4674, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16465385/1450099641", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Views expressed here do not necessarily belong to my employer. Or to me.", + "url": "http://t.co/XcGA9qM04D", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "14550962", + "blocking": false, + "is_translation_enabled": false, + "id": 14550962, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "agoranomic.org", + "url": "http://t.co/XcGA9qM04D", + "expanded_url": "http://agoranomic.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 26 20:13:43 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 23885, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", + "favourites_count": 88, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 213142, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 250, + "notifications": false, + "screen_name": "comex", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6400, + "is_translator": false, + "name": "comex" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2813652210", + "following": false, + "friends_count": 2434, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kickstarter.com/projects/19573\u2026", + "url": "https://t.co/giNNN1E1AC", + "expanded_url": "https://www.kickstarter.com/projects/1957344648/meow-the-jewels", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7925, + "location": "", + "screen_name": "MeowTheJewels", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "#MeowTheJewels", + "profile_use_background_image": true, + "description": "You are listening to Meow The Jewels! Now a RTJ ran account.", + "url": "https://t.co/giNNN1E1AC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 16 20:55:34 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", + "favourites_count": 4674, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2813652210, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3280, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2813652210/1410988523", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "237548529", + "following": false, + "friends_count": 207, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "humansofnewyork.com", + "url": "http://t.co/GdwTtrMd37", + "expanded_url": "http://www.humansofnewyork.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "233294", + "geo_enabled": false, + "followers_count": 382303, + "location": "New York, NY", + "screen_name": "humansofny", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2432, + "name": "Brandon Stanton", + "profile_use_background_image": true, + "description": "Creator of the blog and #1 NYT bestselling book, Humans of New York. I take pictures of people on the street and ask them questions.", + "url": "http://t.co/GdwTtrMd37", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", + "profile_background_color": "6E757A", + "created_at": "Thu Jan 13 02:43:38 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", + "favourites_count": 1094, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", + "default_profile_image": false, + "id": 237548529, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5325, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/237548529/1412171810", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16600574", + "following": false, + "friends_count": 80792, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "adambouska.com", + "url": "https://t.co/iCi6oiInzM", + "expanded_url": "http://www.adambouska.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 201288, + "location": "Los Angeles, California", + "screen_name": "bouska", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2581, + "name": "Adam Bouska", + "profile_use_background_image": true, + "description": "Fashion Photographer & NOH8 Campaign Co-Founder \u2605\u2605\u2605\u2605\u2605\ninfo@bouska.net", + "url": "https://t.co/iCi6oiInzM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Oct 05 10:48:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", + "favourites_count": 2581, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", + "default_profile_image": false, + "id": 16600574, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 15632, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16600574/1435020398", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -36000, + "id_str": "526316060", + "blocking": false, + "is_translation_enabled": false, + "id": 526316060, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Fri Mar 16 11:53:45 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 11, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 479572, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 27, + "notifications": false, + "screen_name": "DaveChappelle", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3124, + "is_translator": false, + "name": "David Chappelle" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "VP of Engineering @Twitter", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "1188951", + "blocking": false, + "is_translation_enabled": false, + "id": 1188951, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "9AE4E8", + "created_at": "Wed Mar 14 23:09:57 +0000 2007", + "profile_image_url": "http://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "DD2E44", + "statuses_count": 1867, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", + "favourites_count": 1069, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 2211, + "blocked_by": false, + "following": false, + "location": "San Francisco, CA", + "muting": false, + "friends_count": 258, + "notifications": false, + "screen_name": "eyeseewaters", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 64, + "is_translator": false, + "name": "Nandini Ramani" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "43421130", + "following": false, + "friends_count": 147, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "treasureislandfestival.com", + "url": "http://t.co/1kda6aZhAJ", + "expanded_url": "http://www.treasureislandfestival.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", + "notifications": false, + "profile_sidebar_fill_color": "F1DAC1", + "profile_link_color": "FF9966", + "geo_enabled": false, + "followers_count": 12638, + "location": "San Francisco, CA", + "screen_name": "timfsf", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 576, + "name": "Treasure Island Fest", + "profile_use_background_image": true, + "description": "Thanks to everyone who joined us for the 2015 festival in the bay on October 17-18, 2015! 2016 details coming soon.", + "url": "http://t.co/1kda6aZhAJ", + "profile_text_color": "4F2A10", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", + "profile_background_color": "33CCCC", + "created_at": "Fri May 29 22:09:36 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", + "favourites_count": 810, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", + "default_profile_image": false, + "id": 43421130, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 2478, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43421130/1446147173", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "CEO Netflix", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "15241557", + "blocking": false, + "is_translation_enabled": false, + "id": 15241557, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 26 07:24:42 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 40, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", + "favourites_count": 10, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 11467, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 51, + "notifications": false, + "screen_name": "reedhastings", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 331, + "is_translator": false, + "name": "Reed Hastings" + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "454423650", + "following": false, + "friends_count": 465, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "006399", + "geo_enabled": true, + "followers_count": 1606, + "location": "San Francisco", + "screen_name": "tinab", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Tina Bhatnagar", + "profile_use_background_image": true, + "description": "Love food, sleep and being pampered. Difference between me and a baby? I work @Twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Jan 04 00:04:22 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", + "favourites_count": 1021, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", + "default_profile_image": false, + "id": 454423650, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1713, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/454423650/1451600055", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3751591514", + "following": false, + "friends_count": 21, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 8853, + "location": "Bellevue, WA", + "screen_name": "Steven_Ballmer", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 160, + "name": "Steve Ballmer", + "profile_use_background_image": false, + "description": "Lots going on", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", + "profile_background_color": "000000", + "created_at": "Thu Oct 01 20:37:37 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", + "favourites_count": 1, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3751591514, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 12, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3751591514/1444998576", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Author", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "845743333", + "blocking": false, + "is_translation_enabled": false, + "id": 845743333, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "022330", + "created_at": "Tue Sep 25 15:36:17 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "statuses_count": 18368, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", + "favourites_count": 55, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 139576, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 80, + "notifications": false, + "screen_name": "JoyceCarolOates", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2614, + "is_translator": false, + "name": "Joyce Carol Oates" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "292626949", + "following": false, + "friends_count": 499, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2326, + "location": "", + "screen_name": "singhtv", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 49, + "name": "Baljeet Singh", + "profile_use_background_image": true, + "description": "twitter product lead, SF transplant, hip hop head, outdoors lover, father of the coolest kid ever", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue May 03 23:41:04 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", + "favourites_count": 1294, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 292626949, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 244, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/292626949/1385075905", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "70976011", + "following": false, + "friends_count": 694, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 772, + "location": "San Francisco, CA", + "screen_name": "jdrishel", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 36, + "name": "Jeremy Rishel", + "profile_use_background_image": true, + "description": "Engineering @twitter ~ @mit CS, Philosophy, & MBA ~ Former @usmc ~ Proud supporter of @calacademy, @americanatheist, @rdfrs, @mca_marines, & @sfjazz", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 02 14:22:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", + "favourites_count": 1879, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 70976011, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 791, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70976011/1435923511", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5943622", + "following": false, + "friends_count": 5847, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "a16z.com", + "url": "http://t.co/kn6m038bNW", + "expanded_url": "http://www.a16z.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "12297A", + "geo_enabled": false, + "followers_count": 464534, + "location": "Menlo Park, CA", + "screen_name": "pmarca", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8616, + "name": "Marc Andreessen", + "profile_use_background_image": true, + "description": "\u201cI don\u2019t mean you\u2019re all going to be happy. You\u2019ll be unhappy \u2013 but in new, exciting and important ways.\u201d \u2013 Edwin Land", + "url": "http://t.co/kn6m038bNW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu May 10 23:39:54 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", + "favourites_count": 208337, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", + "default_profile_image": false, + "id": 5943622, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 83568, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5943622/1419247370", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "127062637", + "following": false, + "friends_count": 169, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 19341, + "location": "California, USA", + "screen_name": "omidkordestani", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 202, + "name": "Omid Kordestani", + "profile_use_background_image": false, + "description": "Executive Chairman @twitter", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Mar 27 23:05:58 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", + "favourites_count": 60, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 127062637, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 33, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/127062637/1445924351", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3913671", + "following": false, + "friends_count": 634, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thecodemill.biz", + "url": "http://t.co/jfXOm28eAR", + "expanded_url": "http://thecodemill.biz/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1469, + "location": "Santa Cruz/San Francisco, CA", + "screen_name": "bartt", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 55, + "name": "Bart Teeuwisse", + "profile_use_background_image": false, + "description": "Early riser to hack, build, run, bike, climb & ski. Formerly @twitter, @yahoo & various startups", + "url": "http://t.co/jfXOm28eAR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", + "profile_background_color": "F9F9F9", + "created_at": "Mon Apr 09 15:19:14 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", + "favourites_count": 840, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", + "default_profile_image": false, + "id": 3913671, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 7226, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3913671/1405375593", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "348942463", + "following": false, + "friends_count": 1107, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ie.linkedin.com/in/stephenmcin\u2026", + "url": "http://t.co/ECVj1K5Thi", + "expanded_url": "http://ie.linkedin.com/in/stephenmcintyre", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 11959, + "location": "EMEA HQ, Dublin, Ireland", + "screen_name": "stephenpmc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 180, + "name": "Stephen McIntyre", + "profile_use_background_image": true, + "description": "Building Twitter's business in Europe, Middle East, and Africa. VP Sales, MD Ireland.", + "url": "http://t.co/ECVj1K5Thi", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", + "profile_background_color": "BADFCD", + "created_at": "Fri Aug 05 07:57:24 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", + "favourites_count": 3642, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "default_profile_image": false, + "id": 348942463, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3902, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/348942463/1347467641", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "Visit ScienceDaily to read breaking news about the latest discoveries in science, health, the environment, and technology.", + "url": "http://t.co/DQWVlXDGLC", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "18700629", + "blocking": false, + "is_translation_enabled": false, + "id": 18700629, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sciencedaily.com", + "url": "http://t.co/DQWVlXDGLC", + "expanded_url": "http://www.sciencedaily.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 06 23:14:22 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 27241, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 171078, + "blocked_by": false, + "following": false, + "location": "Rockville, MD", + "muting": false, + "friends_count": 1, + "notifications": false, + "screen_name": "ScienceDaily", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5575, + "is_translator": false, + "name": "ScienceDaily" + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "23331708", + "following": false, + "friends_count": 495, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "247laundryservice.com", + "url": "https://t.co/iLa6wu5cWo", + "expanded_url": "http://www.247laundryservice.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "7D7D7D", + "geo_enabled": true, + "followers_count": 33480, + "location": "Brooklyn", + "screen_name": "jasonwstein", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 231, + "name": "Jason Stein", + "profile_use_background_image": false, + "description": "founder/ceo of @247LS + @bycycle", + "url": "https://t.co/iLa6wu5cWo", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Sun Mar 08 17:45:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", + "favourites_count": 22898, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", + "default_profile_image": false, + "id": 23331708, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 19835, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23331708/1435423055", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Former Professional Tennis Player, New York Times Best Selling Author, and proud Husband and Father. Founder of the James Blake Foundation.", + "url": "http://t.co/CMTAZXOYcQ", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "3668032217", + "blocking": false, + "is_translation_enabled": false, + "id": 3668032217, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jamesblaketennis.com", + "url": "http://t.co/CMTAZXOYcQ", + "expanded_url": "http://jamesblaketennis.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 15 21:43:58 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 344, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", + "favourites_count": 589, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 8378, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 193, + "notifications": false, + "screen_name": "JRBlake", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 135, + "is_translator": false, + "name": "James Blake" + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "1263452575", + "following": false, + "friends_count": 149, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paperrockmusic.com", + "url": "http://t.co/HG6rAVrAPT", + "expanded_url": "http://paperrockmusic.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 99, + "location": "Brooklyn, Ny", + "screen_name": "PaperrockRcrds", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Paperrock Records", + "profile_use_background_image": true, + "description": "Independent Record Label founded by World renown Hip-Hop artist Spliff Star Also known as Mr. Lewis |\r\nInstagram - Paperrockrecords #BigRings", + "url": "http://t.co/HG6rAVrAPT", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Mar 13 03:11:40 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", + "favourites_count": 3, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", + "default_profile_image": false, + "id": 1263452575, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 45, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1263452575/1365098791", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1085", + "following": false, + "friends_count": 206, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "niallkennedy.com", + "url": "http://t.co/JhRVjTpizS", + "expanded_url": "http://www.niallkennedy.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 1848, + "location": "San Francisco, CA", + "screen_name": "niall", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 87, + "name": "Niall Kennedy", + "profile_use_background_image": false, + "description": "Tech, food, puppies, and nature in and around San Francisco.", + "url": "http://t.co/JhRVjTpizS", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Jul 16 00:43:24 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", + "favourites_count": 34, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 1085, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1321, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1085/1420868587", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18825961", + "following": false, + "friends_count": 1086, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/skrillex", + "url": "http://t.co/kEuzso7gAM", + "expanded_url": "http://facebook.com/skrillex", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4721544, + "location": "\u00dcT: 33.997971,-118.280807", + "screen_name": "Skrillex", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 12265, + "name": "SKRILLEX", + "profile_use_background_image": true, + "description": "your friend \u2022 insta / snap: Skrillex", + "url": "http://t.co/kEuzso7gAM", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jan 10 03:49:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", + "favourites_count": 2850, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 18825961, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 13384, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18825961/1398372903", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "writer, filmmaker, something else maybe...", + "url": "http://t.co/8y1kL5WTwP", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "14248315", + "blocking": false, + "is_translation_enabled": false, + "id": 14248315, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "errolmorris.com", + "url": "http://t.co/8y1kL5WTwP", + "expanded_url": "http://www.errolmorris.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "9AE4E8", + "created_at": "Sat Mar 29 00:53:54 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "statuses_count": 3914, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", + "favourites_count": 1, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 50984, + "blocked_by": false, + "following": false, + "location": "Cambridge, MA", + "muting": false, + "friends_count": 0, + "notifications": false, + "screen_name": "errolmorris", + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2256, + "is_translator": false, + "name": "errolmorris" + }, + { + "time_zone": "Central Time (US & Canada)", + "profile_use_background_image": true, + "description": "Head of product, Google Now. Previously at Akamai, MIT, UT Austin, IIT Madras.", + "url": "http://t.co/YU1CzLEyBM", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -21600, + "id_str": "14065609", + "blocking": false, + "is_translation_enabled": false, + "id": 14065609, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/aparnacd", + "url": "http://t.co/YU1CzLEyBM", + "expanded_url": "http://www.linkedin.com/in/aparnacd", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "EDECE9", + "created_at": "Sat Mar 01 17:32:31 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "default_profile": false, + "profile_text_color": "634047", + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "3B94D9", + "statuses_count": 177, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", + "favourites_count": 321, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1804, + "blocked_by": false, + "following": false, + "location": "San Francisco Bay area", + "muting": false, + "friends_count": 563, + "notifications": false, + "screen_name": "aparnacd", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 68, + "is_translator": false, + "name": "Aparna Chennapragada" + }, + { + "time_zone": "Sydney", + "profile_use_background_image": true, + "description": "aspiring mad scientist", + "url": "http://t.co/ARYETd4QIZ", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 39600, + "id_str": "14563623", + "blocking": false, + "is_translation_enabled": false, + "id": 14563623, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rethrick.com/p/about/", + "url": "http://t.co/ARYETd4QIZ", + "expanded_url": "http://rethrick.com/p/about/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "131516", + "created_at": "Mon Apr 28 01:03:24 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "statuses_count": 14711, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", + "favourites_count": 556, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 4243, + "blocked_by": false, + "following": false, + "location": "San Francisco, California", + "muting": false, + "friends_count": 132, + "notifications": false, + "screen_name": "dhanji", + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 301, + "is_translator": false, + "name": "Dhanji R. Prasanna" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "39623638", + "following": false, + "friends_count": 7445, + "entities": { + "description": { + "urls": [ + { + "display_url": "s.sho.com/1mGJrJp", + "url": "https://t.co/TOH5yZnKGu", + "expanded_url": "http://s.sho.com/1mGJrJp", + "indices": [ + 84, + 107 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "sho.com/sports", + "url": "https://t.co/kvwbT7SmMj", + "expanded_url": "http://sho.com/sports", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 232363, + "location": "New York City", + "screen_name": "SHOsports", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1446, + "name": "SHOWTIME SPORTS", + "profile_use_background_image": true, + "description": "Home of Championship Boxing & award-winning documentaries. Rules: https://t.co/TOH5yZnKGu", + "url": "https://t.co/kvwbT7SmMj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", + "profile_background_color": "131516", + "created_at": "Tue May 12 23:13:03 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", + "favourites_count": 2329, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 39623638, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 29318, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39623638/1451521993", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17901282", + "following": false, + "friends_count": 31186, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hbo.com/boxing/", + "url": "http://t.co/MyHnldJu4d", + "expanded_url": "http://www.hbo.com/boxing/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "949494", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 434863, + "location": "New York, NY", + "screen_name": "HBOboxing", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2954, + "name": "HBOboxing", + "profile_use_background_image": false, + "description": "*By tagging us in a tweet, you consent to allowing HBO Sports to use and showcase it in any media* Instagram/Snapchat: @HBOboxing", + "url": "http://t.co/MyHnldJu4d", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Dec 05 16:43:16 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", + "favourites_count": 94, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", + "default_profile_image": false, + "id": 17901282, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 21087, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17901282/1448175844", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3320010078", + "following": false, + "friends_count": 47, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/extremeownersh\u2026", + "url": "http://t.co/6Lnf7gknOo", + "expanded_url": "http://facebook.com/extremeownership", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 23754, + "location": "", + "screen_name": "jockowillink", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 195, + "name": "Jocko Willink", + "profile_use_background_image": false, + "description": "Leader; follower. Reader; writer. Speaker; listener. Student; teacher. \n#DisciplineEqualsFreedom\n#ExtremeOwnership", + "url": "http://t.co/6Lnf7gknOo", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Aug 19 13:39:44 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", + "favourites_count": 8988, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3320010078, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 8294, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320010078/1443236759", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24393384", + "following": false, + "friends_count": 2123, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 141107, + "location": "NYC", + "screen_name": "40oz_VAN", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 547, + "name": "40", + "profile_use_background_image": true, + "description": "40ozVAN@gmail.com", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 14 16:45:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", + "favourites_count": 3109, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", + "default_profile_image": false, + "id": 24393384, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 130499, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/24393384/1452240381", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1639866613", + "following": false, + "friends_count": 280, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/pub/dave-free/\u2026", + "url": "https://t.co/iBhESeXA5c", + "expanded_url": "http://www.linkedin.com/pub/dave-free/82/420/ba1/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 16669, + "location": "LAX", + "screen_name": "miyatola", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 92, + "name": "Dave Free", + "profile_use_background_image": true, + "description": "President of TDE | Management & Creative for Kendrick Lamar | Jay Rock | AB-Soul | ScHoolboy Q | Isaiah Rashad | SZA | the little homies |Digi+Phonics |", + "url": "https://t.co/iBhESeXA5c", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Aug 02 07:22:39 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", + "favourites_count": 26, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", + "default_profile_image": false, + "id": 1639866613, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 687, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1639866613/1448157283", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "99841232", + "following": false, + "friends_count": 812, + "entities": { + "description": { + "urls": [ + { + "display_url": "soundcloud.com/young-magic", + "url": "https://t.co/q6ASiQNDfX", + "expanded_url": "https://soundcloud.com/young-magic", + "indices": [ + 22, + 45 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "youngmagicsounds.com", + "url": "http://t.co/jz4VuRfCjB", + "expanded_url": "http://youngmagicsounds.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 8998, + "location": "Brooklyn, NY \u262f", + "screen_name": "ItsYoungMagic", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 76, + "name": "Young Magic", + "profile_use_background_image": true, + "description": "Melati + Izak \u30b7\u30eb\u30af\u5922\u307f\u308b\u4eba https://t.co/q6ASiQNDfX", + "url": "http://t.co/jz4VuRfCjB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 28 02:47:34 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", + "favourites_count": 510, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", + "default_profile_image": false, + "id": 99841232, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1074, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/99841232/1424777262", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2194124415", + "following": false, + "friends_count": 652, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 20393, + "location": "United Kingdom", + "screen_name": "ZiauddinY", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 135, + "name": "Ziauddin Yousafzai", + "profile_use_background_image": true, + "description": "Proud to be a teacher, Malala's father and a peace, women's rights and education activist. \nRTs do not equal endorsement.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Nov 24 13:37:54 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", + "favourites_count": 953, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2194124415, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1217, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2194124415/1385300984", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": true, + "description": "Author of #1 @NYTimes bestseller Orange is the New Black: My Year in a Women's Prison @sixwords: In and out of hot water", + "url": "https://t.co/bZNP8H8fqP", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "20783", + "blocking": false, + "is_translation_enabled": false, + "id": 20783, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "piperkerman.com", + "url": "https://t.co/bZNP8H8fqP", + "expanded_url": "http://www.piperkerman.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "profile_background_color": "9AE4E8", + "created_at": "Fri Nov 24 19:35:29 +0000 2006", + "profile_image_url": "http://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", + "default_profile": false, + "profile_text_color": "000000", + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "statuses_count": 16320, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", + "favourites_count": 26941, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 112421, + "blocked_by": false, + "following": false, + "location": "Ohio, USA", + "muting": false, + "friends_count": 3684, + "notifications": false, + "screen_name": "Piper", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 934, + "is_translator": false, + "name": "Piper Kerman" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "19725644", + "following": false, + "friends_count": 46, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "haydenplanetarium.org/tyson/", + "url": "http://t.co/FRT5oYtwbX", + "expanded_url": "http://www.haydenplanetarium.org/tyson/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "CC3366", + "geo_enabled": false, + "followers_count": 4746904, + "location": "New York City", + "screen_name": "neiltyson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 39790, + "name": "Neil deGrasse Tyson", + "profile_use_background_image": true, + "description": "Astrophysicist", + "url": "http://t.co/FRT5oYtwbX", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", + "profile_background_color": "DBE9ED", + "created_at": "Thu Jan 29 18:40:26 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBE9ED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", + "favourites_count": 2, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", + "default_profile_image": false, + "id": 19725644, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4758, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19725644/1400087889", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2916305152", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "freedom.press", + "url": "https://t.co/U63fP7T2ST", + "expanded_url": "https://freedom.press", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1743010, + "location": "", + "screen_name": "Snowden", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 10804, + "name": "Edward Snowden", + "profile_use_background_image": true, + "description": "I used to work for the government. Now I work for the public. Director at @FreedomofPress.", + "url": "https://t.co/U63fP7T2ST", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Dec 11 21:24:28 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2916305152, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 373, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2916305152/1443542022", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "299364430", + "following": false, + "friends_count": 92568, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "everettetaylor.com", + "url": "https://t.co/DTKHW8LqbJ", + "expanded_url": "http://everettetaylor.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 258858, + "location": "Los Angeles (via Richmond, VA)", + "screen_name": "Everette", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2125, + "name": "Everette Taylor", + "profile_use_background_image": true, + "description": "building + growing companies (instagram: everette x snapchat: everettetaylor)", + "url": "https://t.co/DTKHW8LqbJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", + "profile_background_color": "131516", + "created_at": "Sun May 15 23:37:59 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", + "favourites_count": 184609, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 299364430, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 14393, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/299364430/1444247536", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "just a future teller", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "3633459012", + "blocking": false, + "is_translation_enabled": false, + "id": 3633459012, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 21 03:20:06 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "ja", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 25, + "blocked_by": false, + "following": false, + "location": "Tokyo, Japan", + "muting": false, + "friends_count": 2, + "notifications": false, + "screen_name": "aAcvyXkvyzhJJoj", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "\u5915\u590f" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "19777398", + "following": false, + "friends_count": 19669, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tonightshow.com", + "url": "http://t.co/fgp5RYqr3T", + "expanded_url": "http://www.tonightshow.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3340199, + "location": "Weeknights 11:35/10:35c", + "screen_name": "FallonTonight", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8976, + "name": "Fallon Tonight", + "profile_use_background_image": true, + "description": "The official Twitter for The Tonight Show Starring @JimmyFallon on @NBC. (Tweets by: @marinarachael @cdriz @thatsso_rachael @NoahGeb) #FallonTonight", + "url": "http://t.co/fgp5RYqr3T", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", + "profile_background_color": "03253E", + "created_at": "Fri Jan 30 17:26:46 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", + "favourites_count": 90444, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", + "default_profile_image": false, + "id": 19777398, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 44515, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19777398/1401723954", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "158414847", + "following": false, + "friends_count": 277, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedailyshow.com", + "url": "http://t.co/BAakBFaEGx", + "expanded_url": "http://thedailyshow.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3996763, + "location": "", + "screen_name": "TheDailyShow", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 36029, + "name": "The Daily Show", + "profile_use_background_image": true, + "description": "Trevor Noah and The Best F#@king News Team. Weeknights 11/10c on @ComedyCentral. Full episodes, videos, guest information. #DailyShow", + "url": "http://t.co/BAakBFaEGx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 22 16:41:05 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", + "favourites_count": 14, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", + "default_profile_image": false, + "id": 158414847, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9003, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/158414847/1446498480", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "profile_use_background_image": false, + "description": "Politics, culture, business, science, technology, health, education, global affairs, more. Tweets by @CaitlinFrazier", + "url": "http://t.co/pI6FUBgQdl", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -18000, + "id_str": "35773039", + "blocking": false, + "is_translation_enabled": true, + "id": 35773039, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theatlantic.com", + "url": "http://t.co/pI6FUBgQdl", + "expanded_url": "http://www.theatlantic.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "000000", + "created_at": "Mon Apr 27 15:41:54 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", + "default_profile": false, + "profile_text_color": "000408", + "profile_sidebar_fill_color": "E6ECF2", + "profile_link_color": "000000", + "statuses_count": 78823, + "profile_sidebar_border_color": "BFBFBF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", + "favourites_count": 653, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1183558, + "blocked_by": false, + "following": false, + "location": "Washington, D.C.", + "muting": false, + "friends_count": 1004, + "notifications": false, + "screen_name": "TheAtlantic", + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 23362, + "is_translator": false, + "name": "The Atlantic" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "83876527", + "following": false, + "friends_count": 969, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tejucole.com", + "url": "http://t.co/FcCN8OHr", + "expanded_url": "http://www.tejucole.com", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "D1CFC1", + "profile_link_color": "4D2911", + "geo_enabled": true, + "followers_count": 232991, + "location": "the Black Atlantic", + "screen_name": "tejucole", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2716, + "name": "Teju Cole", + "profile_use_background_image": true, + "description": "We who?", + "url": "http://t.co/FcCN8OHr", + "profile_text_color": "331D0C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", + "profile_background_color": "121314", + "created_at": "Tue Oct 20 16:27:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", + "favourites_count": 1992, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", + "default_profile_image": false, + "id": 83876527, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 13298, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/83876527/1400341445", + "is_translator": false + }, + { + "time_zone": "Rome", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "241027939", + "following": false, + "friends_count": 246, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "googlethatshit.com", + "url": "https://t.co/AGKwFEnIEM", + "expanded_url": "http://googlethatshit.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "001122", + "geo_enabled": true, + "followers_count": 259535, + "location": "Italia", + "screen_name": "AsiaArgento", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1078, + "name": "Asia Argento", + "profile_use_background_image": true, + "description": "a woman who does everything but doesn't know how to do anything / instagram = asiaargento", + "url": "https://t.co/AGKwFEnIEM", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Jan 21 08:27:38 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", + "favourites_count": 28343, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", + "default_profile_image": false, + "id": 241027939, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 35108, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/241027939/1353605533", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Diana Ross Official Twitter", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2352142008", + "blocking": false, + "is_translation_enabled": false, + "id": 2352142008, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Feb 19 19:21:42 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 101, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", + "favourites_count": 15, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 38803, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 30, + "notifications": false, + "screen_name": "DianaRoss", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 295, + "is_translator": false, + "name": "Ms. Ross" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1140451", + "following": false, + "friends_count": 4937, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "antderosa.com", + "url": "https://t.co/XEmDfG5Qlv", + "expanded_url": "http://antderosa.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F0F0F0", + "profile_link_color": "2A70A6", + "geo_enabled": true, + "followers_count": 88509, + "location": "Jersey City, NJ", + "screen_name": "AntDeRosa", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4730, + "name": "Anthony De Rosa", + "profile_use_background_image": true, + "description": "Digital Production Manager for @TheDailyShow with @TrevorNoah", + "url": "https://t.co/XEmDfG5Qlv", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 14 05:45:24 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", + "favourites_count": 20408, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", + "default_profile_image": false, + "id": 1140451, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 147547, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140451/1446584214", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18393773", + "following": false, + "friends_count": 868, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "neilgaiman.com", + "url": "http://t.co/sGHzpf2rCG", + "expanded_url": "http://www.neilgaiman.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 2359612, + "location": "a bit all over the place", + "screen_name": "neilhimself", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 35382, + "name": "Neil Gaiman", + "profile_use_background_image": true, + "description": "will eventually grow up and get a real job. Until then, will keep making things up and writing them down.", + "url": "http://t.co/sGHzpf2rCG", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", + "profile_background_color": "91AAB5", + "created_at": "Fri Dec 26 19:30:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", + "favourites_count": 1091, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", + "default_profile_image": false, + "id": 18393773, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 90753, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18393773/1424768490", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "263964021", + "following": false, + "friends_count": 864, + "entities": { + "description": { + "urls": [ + { + "display_url": "LIONBABE.COM", + "url": "http://t.co/RbZqjUPgsT", + "expanded_url": "http://LIONBABE.COM", + "indices": [ + 32, + 54 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "jillonce.tumblr.com", + "url": "http://t.co/vK5PFVYnmO", + "expanded_url": "http://jillonce.tumblr.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7505, + "location": "NYC", + "screen_name": "Jillonce", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 77, + "name": "Jillian Hervey", + "profile_use_background_image": true, + "description": "arting all the time @LIONBABE x http://t.co/RbZqjUPgsT", + "url": "http://t.co/vK5PFVYnmO", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Mar 11 02:23:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", + "favourites_count": 2910, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", + "default_profile_image": false, + "id": 263964021, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 17306, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/263964021/1414102504", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "432588553", + "following": false, + "friends_count": 846, + "entities": { + "description": { + "urls": [ + { + "display_url": "po.st/WDWGiTTW", + "url": "https://t.co/s8fWZIpJuH", + "expanded_url": "http://po.st/WDWGiTTW", + "indices": [ + 100, + 123 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "LIONBABE.com", + "url": "http://t.co/IRuegBPo6R", + "expanded_url": "http://www.LIONBABE.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "DD2E44", + "geo_enabled": false, + "followers_count": 16964, + "location": "NYC", + "screen_name": "LionBabe", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 167, + "name": "LION BABE", + "profile_use_background_image": false, + "description": "Lion Babe is Jillian Hervey + Lucas Goodman @Jillonce + @Astro_Raw . NYC . WHERE DO WE GO - iTunes: https://t.co/s8fWZIpJuH x", + "url": "http://t.co/IRuegBPo6R", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Dec 09 15:18:30 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", + "favourites_count": 9526, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 432588553, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3675, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/432588553/1450721529", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "141326053", + "following": false, + "friends_count": 472, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "davesmithinstruments.com", + "url": "http://t.co/huTEKpwJ0k", + "expanded_url": "http://www.davesmithinstruments.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252745", + "profile_link_color": "DD5527", + "geo_enabled": false, + "followers_count": 24523, + "location": "San Francisco, CA", + "screen_name": "dsiSequential", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 394, + "name": "DaveSmithInstruments", + "profile_use_background_image": true, + "description": "Innovative music machines designed and built in San Francisco, CA.", + "url": "http://t.co/huTEKpwJ0k", + "profile_text_color": "858585", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", + "profile_background_color": "471A2E", + "created_at": "Fri May 07 19:54:02 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", + "favourites_count": 128, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", + "default_profile_image": false, + "id": 141326053, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 3040, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/141326053/1421946814", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "748020092", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "M3LL155X.com", + "url": "http://t.co/Qvv5qGkNFV", + "expanded_url": "http://M3LL155X.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 159581, + "location": "", + "screen_name": "FKAtwigs", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1066, + "name": "FKA twigs", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/Qvv5qGkNFV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Thu Aug 09 21:57:26 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", + "favourites_count": 91, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", + "default_profile_image": false, + "id": 748020092, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 313, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/748020092/1439491511", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14159148", + "following": false, + "friends_count": 1044, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "un.org", + "url": "http://t.co/kgJqUNDMpy", + "expanded_url": "http://www.un.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 5985356, + "location": "New York, NY", + "screen_name": "UN", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 34756, + "name": "United Nations", + "profile_use_background_image": false, + "description": "Official twitter account of #UnitedNations. Get the latest information on the #UN. #GlobalGoals", + "url": "http://t.co/kgJqUNDMpy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", + "profile_background_color": "0197D6", + "created_at": "Sun Mar 16 20:15:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", + "favourites_count": 488, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", + "default_profile_image": false, + "id": 14159148, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 42445, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159148/1447180964", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "857054191", + "following": false, + "friends_count": 51, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dorotheegilbert.com", + "url": "http://t.co/Bifsr25Z2N", + "expanded_url": "http://www.dorotheegilbert.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 5531, + "location": "", + "screen_name": "DorotheGilbert", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 86, + "name": "Doroth\u00e9e Gilbert", + "profile_use_background_image": true, + "description": "Danseuse \u00e9toile Op\u00e9ra de Paris", + "url": "http://t.co/Bifsr25Z2N", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 01 21:28:01 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", + "favourites_count": 139, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 857054191, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 287, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/857054191/1354469514", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "166739404", + "following": false, + "friends_count": 246, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "3399FF", + "geo_enabled": true, + "followers_count": 20424514, + "location": "London", + "screen_name": "EmWatson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 43462, + "name": "Emma Watson", + "profile_use_background_image": true, + "description": "British actress, Goodwill Ambassador for UN Women", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Jul 14 22:06:37 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", + "favourites_count": 765, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", + "default_profile_image": false, + "id": 166739404, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1213, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/166739404/1448459323", + "is_translator": false + }, + { + "time_zone": "Casablanca", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "384982986", + "following": false, + "friends_count": 965, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/gracejonesoffi\u2026", + "url": "http://t.co/RAPIxjvPtQ", + "expanded_url": "http://instagram.com/gracejonesofficial", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "85CFD2", + "geo_enabled": false, + "followers_count": 41783, + "location": "Worldwide", + "screen_name": "Miss_GraceJones", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 548, + "name": "Grace Jones", + "profile_use_background_image": true, + "description": "This is my Official Twitter account... I see all and hear all. Nice to have you on my plate.", + "url": "http://t.co/RAPIxjvPtQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Oct 04 17:29:03 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", + "favourites_count": 345, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", + "default_profile_image": false, + "id": 384982986, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 405, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/384982986/1366714920", + "is_translator": false + }, + { + "time_zone": "Mumbai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "41330290", + "following": false, + "friends_count": 277, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/TheShakaSurfCl\u2026", + "url": "https://t.co/SEQpF7VDH4", + "expanded_url": "http://www.facebook.com/TheShakaSurfClub", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1047, + "location": "India", + "screen_name": "surFISHita", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Ishita Malaviya", + "profile_use_background_image": true, + "description": "India's first recognized woman surfer & Co-founder of The Shaka Surf Club @SurfingIndia #Namaloha", + "url": "https://t.co/SEQpF7VDH4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed May 20 10:04:32 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", + "favourites_count": 104, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", + "default_profile_image": false, + "id": 41330290, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 470, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41330290/1357404184", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14085740", + "following": false, + "friends_count": 3037, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 4883, + "location": "San Francisco, CA", + "screen_name": "jimprosser", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 152, + "name": "Jim Prosser", + "profile_use_background_image": true, + "description": "Current @twitter comms guy, future @kanyewest 2020 campaign spokesperson.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Mar 05 23:28:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", + "favourites_count": 52938, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 14085740, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 12556, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14085740/1405206869", + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "37945489", + "following": false, + "friends_count": 996, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtu.be/ALlDZIQeNyo", + "url": "http://t.co/2nWHiTkVsZ", + "expanded_url": "http://youtu.be/ALlDZIQeNyo", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "EB3E12", + "geo_enabled": true, + "followers_count": 57089, + "location": "Paris", + "screen_name": "Carodemaigret", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 210, + "name": "Caroline de Maigret", + "profile_use_background_image": false, + "description": "Model @NextModels worldwide /// @CareFrance Ambassador /// Book out now: @Howtobeparisian /// Instagram/Periscope: @carolinedemaigret", + "url": "http://t.co/2nWHiTkVsZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", + "profile_background_color": "F0F0F0", + "created_at": "Tue May 05 15:26:02 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", + "favourites_count": 6015, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 37945489, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 7696, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/37945489/1420905232", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "35556383", + "following": false, + "friends_count": 265, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "londonzhiloh.com", + "url": "https://t.co/gsxVxxXXXz", + "expanded_url": "http://londonzhiloh.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F5F2F2", + "profile_link_color": "D9207D", + "geo_enabled": true, + "followers_count": 74136, + "location": "Snapchat: Zhiloh101", + "screen_name": "TheRealZhiloh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 272, + "name": "London Zhiloh", + "profile_use_background_image": false, + "description": "Bookings: Info@LZofficial.com", + "url": "https://t.co/gsxVxxXXXz", + "profile_text_color": "292727", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", + "profile_background_color": "F2EFF1", + "created_at": "Sun Apr 26 20:29:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F5F0F0", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", + "favourites_count": 14019, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", + "default_profile_image": false, + "id": 35556383, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 96490, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35556383/1450060528", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "233183631", + "following": false, + "friends_count": 36443, + "entities": { + "description": { + "urls": [ + { + "display_url": "itun.es/us/boyR_", + "url": "https://t.co/CJheDwyeIF", + "expanded_url": "https://itun.es/us/boyR_", + "indices": [ + 74, + 97 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "Instagram.com/madisonbeer", + "url": "https://t.co/nqrYEOhs7A", + "expanded_url": "http://Instagram.com/madisonbeer", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "6895D0", + "geo_enabled": true, + "followers_count": 1755132, + "location": "", + "screen_name": "MadisonElleBeer", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4392, + "name": "madison beer", + "profile_use_background_image": true, + "description": "\u2661 singer from ny \u2661 chase your dreams \u2661 new single Something Sweet out now https://t.co/CJheDwyeIF", + "url": "https://t.co/nqrYEOhs7A", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jan 02 14:52:35 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", + "favourites_count": 3926, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", + "default_profile_image": false, + "id": 233183631, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 11569, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/233183631/1446485514", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "70457876", + "following": false, + "friends_count": 690, + "entities": { + "description": { + "urls": [ + { + "display_url": "soundcloud.com/dope-saint-jud\u2026", + "url": "https://t.co/dIyhEjwine", + "expanded_url": "https://soundcloud.com/dope-saint-jude/", + "indices": [ + 0, + 23 + ] + }, + { + "display_url": "facebook.com/pages/Dope-Sai\u2026", + "url": "https://t.co/4Kqi4mPsER", + "expanded_url": "https://www.facebook.com/pages/Dope-Saint-Jude/287771241273733", + "indices": [ + 24, + 47 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "dopesaintjude.tumblr.com", + "url": "http://t.co/VYkd1URkb3", + "expanded_url": "http://dopesaintjude.tumblr.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 898, + "location": "@dopesaintjude (insta) ", + "screen_name": "DopeSaintJude", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 20, + "name": "DOPESAINTJUDE", + "profile_use_background_image": true, + "description": "https://t.co/dIyhEjwine https://t.co/4Kqi4mPsER", + "url": "http://t.co/VYkd1URkb3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Aug 31 18:06:59 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", + "favourites_count": 2286, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", + "default_profile_image": false, + "id": 70457876, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 4521, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70457876/1442416572", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3840", + "following": false, + "friends_count": 20921, + "entities": { + "description": { + "urls": [ + { + "display_url": "angel.co/jason", + "url": "https://t.co/nkssr3dWMC", + "expanded_url": "http://angel.co/jason", + "indices": [ + 48, + 71 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "calacanis.com", + "url": "https://t.co/akc7KgXv7J", + "expanded_url": "http://www.calacanis.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "FF9900", + "geo_enabled": true, + "followers_count": 256996, + "location": "94123", + "screen_name": "Jason", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 12248, + "name": "jason", + "profile_use_background_image": true, + "description": "Angel investor (@uber @thumbtack @wealthfront + https://t.co/nkssr3dWMC ) // Writer // Dad // Founder: @Engadget, @Inside, @LAUNCH & @twistartups", + "url": "https://t.co/akc7KgXv7J", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Aug 05 23:31:27 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", + "favourites_count": 42394, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", + "default_profile_image": false, + "id": 3840, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 71793, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3840/1438902439", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "21872269", + "following": false, + "friends_count": 70, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "emersoncollective.com", + "url": "http://t.co/Qr1O0bgn4d", + "expanded_url": "http://emersoncollective.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": false, + "followers_count": 10246, + "location": "Palo Alto, CA", + "screen_name": "laurenepowell", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 123, + "name": "Laurene Powell", + "profile_use_background_image": false, + "description": "mother, advocate, friend, Emerson Collective president, joyful adventurer", + "url": "http://t.co/Qr1O0bgn4d", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Feb 25 14:49:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", + "favourites_count": 88, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 21872269, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 100, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21872269/1445279444", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3583264572", + "following": false, + "friends_count": 168, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 107328, + "location": "", + "screen_name": "IStandWithAhmed", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 373, + "name": "Ahmed Mohamed", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Sep 16 14:00:18 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", + "favourites_count": 199, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3583264572, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 323, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3583264572/1452112394", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "43057202", + "following": false, + "friends_count": 2964, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 12240, + "location": "Las Vegas, NV", + "screen_name": "Nicholas_Cope", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 61, + "name": "Nick Cope", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu May 28 05:50:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", + "favourites_count": 409, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 43057202, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5765, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43057202/1446523732", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "1311113250", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "1D1F1F", + "geo_enabled": true, + "followers_count": 7883, + "location": "", + "screen_name": "riccardotisci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "Riccardo Tisci", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Thu Mar 28 16:36:51 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "nl", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", + "favourites_count": 0, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", + "default_profile_image": false, + "id": 1311113250, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 112, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1311113250/1411398117", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "2612918754", + "blocking": false, + "is_translation_enabled": false, + "id": 2612918754, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Wed Jul 09 04:39:39 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 17, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", + "favourites_count": 5, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 20, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 15, + "notifications": false, + "screen_name": "robertabbott92", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "robert abbott" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "Engineer. Student. Daughter. Sister. Indian-American. Passionate about diversity. Studying CS @CalPoly but my \u2665 is in the Bay.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "123710951", + "blocking": false, + "is_translation_enabled": false, + "id": 123710951, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "352726", + "created_at": "Wed Mar 17 00:37:32 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "default_profile": false, + "profile_text_color": "3E4415", + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "statuses_count": 13, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", + "favourites_count": 10, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 51, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 22, + "notifications": false, + "screen_name": "nupurgarg16", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "is_translator": false, + "name": "Nupur Garg" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2424272372", + "following": false, + "friends_count": 382, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/toddsherman", + "url": "https://t.co/vUfwnDEI57", + "expanded_url": "http://www.linkedin.com/in/toddsherman", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 1033, + "location": "San Francisco, CA", + "screen_name": "tdd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Todd Sherman", + "profile_use_background_image": true, + "description": "Product Manager at Twitter.", + "url": "https://t.co/vUfwnDEI57", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", + "profile_background_color": "B2DFDA", + "created_at": "Wed Apr 02 19:53:23 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", + "favourites_count": 2965, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "default_profile_image": false, + "id": 2424272372, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1427, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2424272372/1426469295", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "284159631", + "following": false, + "friends_count": 297, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jackiereses.tumblr.com", + "url": "https://t.co/JIrh2PYIZ2", + "expanded_url": "http://jackiereses.tumblr.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1905, + "location": "Woodside, CA and New York City", + "screen_name": "jackiereses", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "Jackie Reses", + "profile_use_background_image": true, + "description": "Just moved to new house! @jackiereseskidz", + "url": "https://t.co/JIrh2PYIZ2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", + "profile_background_color": "89C9FA", + "created_at": "Mon Apr 18 18:59:19 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", + "favourites_count": 280, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "default_profile_image": false, + "id": 284159631, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 601, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/284159631/1405201905", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "profile_use_background_image": true, + "description": "CEO, @google", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -28800, + "id_str": "14130366", + "blocking": false, + "is_translation_enabled": false, + "id": 14130366, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "1A1B1F", + "created_at": "Wed Mar 12 05:51:53 +0000 2008", + "profile_image_url": "http://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "default_profile": false, + "profile_text_color": "666666", + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "statuses_count": 721, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", + "favourites_count": 263, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 332791, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 256, + "notifications": false, + "screen_name": "sundarpichai", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2558, + "is_translator": false, + "name": "sundarpichai" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "3024282479", + "following": false, + "friends_count": 378, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sunujournal.com", + "url": "https://t.co/VEFaxoMlRR", + "expanded_url": "http://www.sunujournal.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 723, + "location": "", + "screen_name": "sunujournal", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "S U N U", + "profile_use_background_image": true, + "description": "SUNU: Journal of African Affairs, Critical Thought + Aesthetics \u2022 Amplifying the youth voice + contributing to the collective consciousness #SUNUjournal \u2022 2016", + "url": "https://t.co/VEFaxoMlRR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Sun Feb 08 01:50:03 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", + "favourites_count": 48, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", + "default_profile_image": false, + "id": 3024282479, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 517, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3024282479/1428706146", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17169320", + "following": false, + "friends_count": 660, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thinkcommon.com", + "url": "http://t.co/lGKu0vCb9Q", + "expanded_url": "http://thinkcommon.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "EEAD1D", + "geo_enabled": false, + "followers_count": 3228189, + "location": "Chicago, IL", + "screen_name": "common", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 14192, + "name": "COMMON", + "profile_use_background_image": false, + "description": "Hip Hop Artist/ Actor", + "url": "http://t.co/lGKu0vCb9Q", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Nov 04 21:18:21 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", + "favourites_count": 40, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", + "default_profile_image": false, + "id": 17169320, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 9755, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17169320/1438213738", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "28035260", + "following": false, + "friends_count": 588, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "smarturl.it/iKingPushDBD", + "url": "https://t.co/Y2KVVZtpIp", + "expanded_url": "http://smarturl.it/iKingPushDBD", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1196671, + "location": "VA", + "screen_name": "PUSHA_T", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3618, + "name": "PUSHA T", + "profile_use_background_image": true, + "description": "MGMT: @STEVENVICTOR Shows:Cara Lewis/CAA", + "url": "https://t.co/Y2KVVZtpIp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Apr 01 02:56:54 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", + "favourites_count": 23, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", + "default_profile_image": false, + "id": 28035260, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 12194, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/28035260/1451438540", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18381396", + "following": false, + "friends_count": 1615, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "shop.txdxe.com", + "url": "http://t.co/afn1VAKJzW", + "expanded_url": "http://shop.txdxe.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "F20909", + "geo_enabled": false, + "followers_count": 197754, + "location": "TxDxE.com", + "screen_name": "TopDawgEnt", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 408, + "name": "TopDawgEnt", + "profile_use_background_image": true, + "description": "Official TopDawgEntertainment Twitter \u2022 @JayRock @KendrickLamar @ScHoolBoyQ @AbDashSoul @IsaiahRashad @SZA @MixedByAli #TDE Instagram: @TopDawgEnt", + "url": "http://t.co/afn1VAKJzW", + "profile_text_color": "B80202", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", + "profile_background_color": "000000", + "created_at": "Fri Dec 26 00:20:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", + "favourites_count": 25, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", + "default_profile_image": false, + "id": 18381396, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 6708, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18381396/1443854512", + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "327894845", + "following": false, + "friends_count": 157, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nextmanagement.com", + "url": "http://t.co/qeqVqn53yt", + "expanded_url": "http://www.nextmanagement.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2300, + "location": "new york", + "screen_name": "MelodieMonrose", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "M\u00e9lodie Monrose", + "profile_use_background_image": true, + "description": "Next models worldwide /Uno spain", + "url": "http://t.co/qeqVqn53yt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", + "profile_background_color": "1F2021", + "created_at": "Sat Jul 02 10:27:10 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", + "favourites_count": 123, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", + "default_profile_image": false, + "id": 327894845, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 2133, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/327894845/1440579572", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "tomboy model from jamaica, loves fashion,cooking,people and most of all love my job new to instagram follow me @jeneilwilliams", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "108213835", + "blocking": false, + "is_translation_enabled": false, + "id": 108213835, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 25 06:22:47 +0000 2010", + "profile_image_url": "http://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 932, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", + "favourites_count": 242, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 1386, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 173, + "notifications": false, + "screen_name": "jeneil1", + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "is_translator": false, + "name": "jeneil williams" + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6204", + "following": false, + "friends_count": 2910, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jabrams.com", + "url": "http://t.co/YcT7cUkcui", + "expanded_url": "http://www.jabrams.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 15936, + "location": "San Francisco, CA", + "screen_name": "abrams", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1064, + "name": "Jonathan Abrams", + "profile_use_background_image": true, + "description": "Founder & CEO of @Nuzzel", + "url": "http://t.co/YcT7cUkcui", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Sep 16 01:11:02 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", + "favourites_count": 10208, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 6204, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 31488, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6204/1401738610", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1547221", + "following": false, + "friends_count": 1042, + "entities": { + "description": { + "urls": [ + { + "display_url": "eugenewei.com", + "url": "https://t.co/31xFn7CUeB", + "expanded_url": "http://www.eugenewei.com", + "indices": [ + 73, + 96 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "eugenewei.com", + "url": "https://t.co/ccJQSSYAHH", + "expanded_url": "http://www.eugenewei.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "909090", + "geo_enabled": true, + "followers_count": 3361, + "location": "San Francisco, CA", + "screen_name": "eugenewei", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 173, + "name": "Eugene Wei", + "profile_use_background_image": false, + "description": "Former Head of Product at Flipboard and Hulu, an alum of Amazon. More at https://t.co/31xFn7CUeB", + "url": "https://t.co/ccJQSSYAHH", + "profile_text_color": "2C2C2C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Mon Mar 19 20:00:36 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", + "favourites_count": 5964, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", + "default_profile_image": false, + "id": 1547221, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 5743, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1547221/1398367465", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "29663668", + "following": false, + "friends_count": 511, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/RZAWU", + "url": "https://t.co/LxKDItI1ju", + "expanded_url": "http://www.facebook.com/RZAWU", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/43773275/wu.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 629096, + "location": "Brooklyn-Shaolin-NY-NJ-LA", + "screen_name": "RZA", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5504, + "name": "RZA!", + "profile_use_background_image": true, + "description": "MY OFFICIAL TWITTER, PEACE!", + "url": "https://t.co/LxKDItI1ju", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Apr 08 07:37:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", + "favourites_count": 15, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/43773275/wu.jpg", + "default_profile_image": false, + "id": 29663668, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 5560, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29663668/1448944289", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6646402", + "following": false, + "friends_count": 647, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "get.fabric.io", + "url": "http://t.co/OZQv5dblxS", + "expanded_url": "http://get.fabric.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "1191F2", + "geo_enabled": true, + "followers_count": 1159, + "location": "Boston / SF / worldwide", + "screen_name": "richparet", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Rich Paret", + "profile_use_background_image": false, + "description": "Director of Engineering, Developer Platform @twitter. @twitterapi / @gnip / @fabric. Let's build the future together.", + "url": "http://t.co/OZQv5dblxS", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", + "profile_background_color": "0F0F0F", + "created_at": "Thu Jun 07 17:49:42 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", + "favourites_count": 3282, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", + "default_profile_image": false, + "id": 6646402, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 1554, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6646402/1440532521", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "522299046", + "blocking": false, + "is_translation_enabled": false, + "id": 522299046, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Mar 12 14:33:21 +0000 2012", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 26, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 0, + "notifications": false, + "screen_name": "GenosBarberia", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Geno's Barberia" + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "Producer", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "100325421", + "blocking": false, + "is_translation_enabled": false, + "id": 100325421, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 29 21:32:20 +0000 2009", + "profile_image_url": "http://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 20, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", + "favourites_count": 1, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 70564, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 455, + "notifications": false, + "screen_name": "Kevfeige", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 507, + "is_translator": false, + "name": "Kevin Feige" + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "166747718", + "following": false, + "friends_count": 286, + "entities": { + "description": { + "urls": [ + { + "display_url": "itunes.apple.com/us/album/cherr\u2026", + "url": "https://t.co/cIuPQAaTHf", + "expanded_url": "https://itunes.apple.com/us/album/cherry-bomb/id983056044", + "indices": [ + 54, + 77 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "golfwang.com", + "url": "https://t.co/WMyHWbn11Q", + "expanded_url": "http://golfwang.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685727329729970176/bNxMsXKn.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "FFCC4D", + "geo_enabled": false, + "followers_count": 2752141, + "location": "OKAGA, CA", + "screen_name": "fucktyler", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 7283, + "name": "Tyler, The Creator", + "profile_use_background_image": true, + "description": "i want an enzo, garden and leo from romeo and juliet: https://t.co/cIuPQAaTHf", + "url": "https://t.co/WMyHWbn11Q", + "profile_text_color": "00CCFF", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", + "profile_background_color": "75D1FF", + "created_at": "Wed Jul 14 22:32:25 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", + "favourites_count": 167, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685727329729970176/bNxMsXKn.jpg", + "default_profile_image": false, + "id": 166747718, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 39779, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/166747718/1438284983", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "147279619", + "following": false, + "friends_count": 20841, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", + "notifications": false, + "profile_sidebar_fill_color": "EBDDEB", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 27078, + "location": "", + "screen_name": "MayaAMonroe", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 107, + "name": "Maya Angelique", + "profile_use_background_image": true, + "description": "IG and snapchat: mayaangelique", + "url": null, + "profile_text_color": "6ABA93", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", + "profile_background_color": "FF001E", + "created_at": "Sun May 23 18:06:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", + "favourites_count": 63000, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", + "default_profile_image": false, + "id": 147279619, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 125827, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/147279619/1448679913", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "profile_use_background_image": false, + "description": "I'm on a mission that Dreamers say is impossible.\nBut when I swing my sword, they all choppable.", + "url": "http://t.co/863fgunGbW", + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": -14400, + "id_str": "2517988075", + "blocking": false, + "is_translation_enabled": false, + "id": 2517988075, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theatlantic.com", + "url": "http://t.co/863fgunGbW", + "expanded_url": "http://www.theatlantic.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "profile_background_color": "000000", + "created_at": "Fri May 23 14:31:49 +0000 2014", + "profile_image_url": "http://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": false, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "statuses_count": 20312, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", + "favourites_count": 502, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 462988, + "blocked_by": false, + "following": false, + "location": "Shaolin ", + "muting": false, + "friends_count": 649, + "notifications": false, + "screen_name": "tanehisicoates", + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4046, + "is_translator": false, + "name": "Ta-Nehisi Coates" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2367911", + "following": false, + "friends_count": 31973, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mtv.com", + "url": "http://t.co/yyniasrs2z", + "expanded_url": "http://mtv.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 13288451, + "location": "NYC", + "screen_name": "MTV", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 28353, + "name": "MTV", + "profile_use_background_image": true, + "description": "The official Twitter account for MTV, USA! Tweets by @Kaitiii | Snapchat/KiK: MTV", + "url": "http://t.co/yyniasrs2z", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Mar 26 22:30:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", + "favourites_count": 12412, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 2367911, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 150524, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2367911/1451411117", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2601175671", + "following": false, + "friends_count": 1137, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "flyt.it/fettywapitunes", + "url": "https://t.co/ha6adhNCBb", + "expanded_url": "http://flyt.it/fettywapitunes", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 458529, + "location": "", + "screen_name": "fettywap", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 514, + "name": "FettyWap1738", + "profile_use_background_image": true, + "description": "Fetty Wap||ZooWap||Zoovier||ZooZoo for bookings: bookings@rgfproductions.com . Album \u2b07\ufe0f on iTunes", + "url": "https://t.co/ha6adhNCBb", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 11 13:55:15 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", + "favourites_count": 1939, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 2601175671, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 4811, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2601175671/1450121884", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "54387680", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "michaeljackson.com", + "url": "http://t.co/q1TE07bI3n", + "expanded_url": "http://www.michaeljackson.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "C12032", + "geo_enabled": false, + "followers_count": 1925124, + "location": "New York, NY USA", + "screen_name": "michaeljackson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 13328, + "name": "Michael Jackson", + "profile_use_background_image": true, + "description": "The Official Michael Jackson Twitter Page", + "url": "http://t.co/q1TE07bI3n", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jul 07 00:24:51 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", + "favourites_count": 0, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", + "default_profile_image": false, + "id": 54387680, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 1357, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/54387680/1435330454", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15934076", + "following": false, + "friends_count": 685, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtu.be/4-42cW_4ycA", + "url": "https://t.co/jYzdPI3TZ3", + "expanded_url": "http://youtu.be/4-42cW_4ycA", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 86286, + "location": "Los Angeles, CA", + "screen_name": "quintabrunson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 186, + "name": "Quinta B.", + "profile_use_background_image": false, + "description": "hi. i'm a creator. I know, right?", + "url": "https://t.co/jYzdPI3TZ3", + "profile_text_color": "030303", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", + "profile_background_color": "E7F5F5", + "created_at": "Thu Aug 21 17:31:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", + "favourites_count": 5678, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", + "default_profile_image": false, + "id": 15934076, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 41493, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15934076/1449387090", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "221579212", + "following": false, + "friends_count": 460, + "entities": { + "description": { + "urls": [ + { + "display_url": "jouelzy.com", + "url": "https://t.co/qfCo83qrSw", + "expanded_url": "http://jouelzy.com", + "indices": [ + 120, + 143 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/jouelzy", + "url": "https://t.co/oeQSvIWKEP", + "expanded_url": "http://www.youtube.com/jouelzy", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "B8A2E8", + "geo_enabled": true, + "followers_count": 9974, + "location": "Floating thru the Universe...", + "screen_name": "Jouelzy", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 107, + "name": "Jouelzy", + "profile_use_background_image": true, + "description": "OG #SmartBrownGirl. Writer | Tech | Culture | Snark | Womanist Really love tacos, really is my email: tacos@jouelzy.com https://t.co/qfCo83qrSw", + "url": "https://t.co/oeQSvIWKEP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Dec 01 01:22:22 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", + "favourites_count": 763, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", + "default_profile_image": false, + "id": 221579212, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 43562, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/221579212/1412759867", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "26565946", + "following": false, + "friends_count": 117, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "justintimberlake.com", + "url": "http://t.co/SRqd8jW6W3", + "expanded_url": "http://www.justintimberlake.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 51082978, + "location": "Memphis, TN", + "screen_name": "jtimberlake", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 76095, + "name": "Justin Timberlake", + "profile_use_background_image": true, + "description": "The Official Twitter of Justin Timberlake", + "url": "http://t.co/SRqd8jW6W3", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Mar 25 19:10:50 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", + "favourites_count": 14, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "default_profile_image": false, + "id": 26565946, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 3106, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/26565946/1424110230", + "is_translator": false + }, + { + "time_zone": "Mumbai", + "profile_use_background_image": true, + "description": "Former Chairman of Tata Group. Personal interests : - aviation, automobiles, scuba diving and architectural design.", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": 19800, + "id_str": "277434037", + "blocking": false, + "is_translation_enabled": false, + "id": 277434037, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 05 11:01:00 +0000 2011", + "profile_image_url": "http://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 116, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", + "favourites_count": 7, + "geo_enabled": true, + "follow_request_sent": false, + "followers_count": 5407277, + "blocked_by": false, + "following": false, + "location": "Mumbai", + "muting": false, + "friends_count": 38, + "notifications": false, + "screen_name": "RNTata2000", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2742, + "is_translator": false, + "name": "Ratan N. Tata" + } + ], + "previous_cursor": 0, + "previous_cursor_str": "0", + "next_cursor_str": "1510492845088954664" +} \ No newline at end of file diff --git a/testdata/get_friends_paged_uid.json b/testdata/get_friends_paged_uid.json new file mode 100644 index 00000000..d3882144 --- /dev/null +++ b/testdata/get_friends_paged_uid.json @@ -0,0 +1,26630 @@ +{ + "next_cursor": 1510410423140902959, + "users": [ + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2377837022", + "following": false, + "friends_count": 82, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Facebook.com/MuppetsKermit", + "url": "http://t.co/kjainYAA9x", + "expanded_url": "http://Facebook.com/MuppetsKermit", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 88363, + "location": "Hollywood, CA", + "screen_name": "KermitTheFrog", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 462, + "name": "Kermit the Frog", + "profile_use_background_image": true, + "description": "Hi-ho! Welcome to the official Twitter of me, Kermit the Frog!", + "url": "http://t.co/kjainYAA9x", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", + "profile_background_color": "B2DFDA", + "created_at": "Sat Mar 08 00:14:55 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", + "favourites_count": 11, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "FozzieBear", + "in_reply_to_user_id": 3220881440, + "in_reply_to_status_id_str": "685568168647987200", + "retweet_count": 15, + "truncated": false, + "retweeted": false, + "id_str": "685570846509797376", + "id": 685570846509797376, + "text": ".@FozzieBear Huh. I actually like both of those. Thanks, Fozzie!", + "in_reply_to_user_id_str": "3220881440", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "FozzieBear", + "id_str": "3220881440", + "id": 3220881440, + "indices": [ + 1, + 12 + ], + "name": "Fozzie Bear" + } + ] + }, + "created_at": "Fri Jan 08 21:16:41 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 75, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685568168647987200, + "lang": "en" + }, + "default_profile_image": false, + "id": 2377837022, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 487, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2377837022/1444773126", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "271395703", + "following": false, + "friends_count": 323, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/Ariadnagutierr\u2026", + "url": "https://t.co/T7mRnNYeAF", + "expanded_url": "https://www.facebook.com/Ariadnagutierrezofficial/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 142238, + "location": "", + "screen_name": "gutierrezary", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 93, + "name": "Ariadna Gutierrez", + "profile_use_background_image": true, + "description": "Miss Colombia \u2764\ufe0f Management: grecia@Latinwe.com", + "url": "https://t.co/T7mRnNYeAF", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Mar 24 12:31:11 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", + "favourites_count": 1154, + "status": { + "retweet_count": 56, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685502760045907969", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BASQbaqtvak/", + "url": "https://t.co/FmQHSWirEj", + "expanded_url": "https://www.instagram.com/p/BASQbaqtvak/", + "indices": [ + 54, + 77 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:46:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "es", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685502760045907969, + "text": "\u2708\ufe0f Mi primera vez en M\u00e9xico! First time in Mexico\u2764\ufe0f\ud83c\uddf2\ud83c\uddfd https://t.co/FmQHSWirEj", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 371, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 271395703, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", + "statuses_count": 2623, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/271395703/1452025456", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "36818161", + "following": false, + "friends_count": 1549, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "goldroom.la", + "url": "http://t.co/IQ8kdCE2P6", + "expanded_url": "http://goldroom.la", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397706531/try2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "CDDAFA", + "profile_link_color": "007BFF", + "geo_enabled": true, + "followers_count": 19676, + "location": "Los Angeles", + "screen_name": "goldroom", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 349, + "name": "Goldroom", + "profile_use_background_image": true, + "description": "Music producer, songwriter, rum drinker.", + "url": "http://t.co/IQ8kdCE2P6", + "profile_text_color": "1F1E1F", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu Apr 30 23:54:53 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "245BFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", + "favourites_count": 58633, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Dereck_Hart", + "in_reply_to_user_id": 633160189, + "in_reply_to_status_id_str": "685613431211294720", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685625368544292864", + "id": 685625368544292864, + "text": "@Dereck_Hart it'll be out this year for sure : )", + "in_reply_to_user_id_str": "633160189", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Dereck_Hart", + "id_str": "633160189", + "id": 633160189, + "indices": [ + 0, + 12 + ], + "name": "\u00d0.\u2661" + } + ] + }, + "created_at": "Sat Jan 09 00:53:20 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685613431211294720, + "lang": "en" + }, + "default_profile_image": false, + "id": 36818161, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397706531/try2.jpg", + "statuses_count": 18478, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/36818161/1449780672", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "45090120", + "following": false, + "friends_count": 385, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "smarturl.it/Summertime06", + "url": "https://t.co/vnFEaoggqW", + "expanded_url": "http://smarturl.it/Summertime06", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "603311", + "geo_enabled": true, + "followers_count": 228612, + "location": "Long Beach, CA", + "screen_name": "vincestaples", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 664, + "name": "Vince Staples", + "profile_use_background_image": false, + "description": "I get mad cause the world don't understand me. That's the price I had to pay for this rap game. - Lil B", + "url": "https://t.co/vnFEaoggqW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", + "profile_background_color": "101820", + "created_at": "Sat Jun 06 07:40:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", + "favourites_count": 2631, + "status": { + "retweet_count": 6, + "in_reply_to_user_id": 12133382, + "possibly_sensitive": false, + "id_str": "685604683025522688", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/flyyscience1/s\u2026", + "url": "https://t.co/SkHnDTVq4z", + "expanded_url": "https://twitter.com/flyyscience1/status/685597374476107777", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [ + { + "indices": [ + 43, + 56 + ], + "text": "blackscience" + } + ], + "user_mentions": [ + { + "screen_name": "PBS", + "id_str": "12133382", + "id": 12133382, + "indices": [ + 0, + 4 + ], + "name": "PBS" + } + ] + }, + "created_at": "Fri Jan 08 23:31:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "12133382", + "place": null, + "in_reply_to_screen_name": "PBS", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685604683025522688, + "text": "@PBS YOU NIGGAS ARE SLEEP WAKE THE FUCK UP #blackscience https://t.co/SkHnDTVq4z", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 45090120, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", + "statuses_count": 11639, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/45090120/1418950988", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4704812826", + "following": false, + "friends_count": 116, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": null, + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "2B7BB9", + "geo_enabled": false, + "followers_count": 12503, + "location": "Chile", + "screen_name": "Letelier1920", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 34, + "name": "Hern\u00e1n Letelier", + "profile_use_background_image": true, + "description": "Tengo 20 a\u00f1os, pero acabo de cumplir 95. Actor y director de teatro a mediados del XX. \u00bfSe acuerda de Pierre le peluquier de la P\u00e9rgola de las Flores? Era yo", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", + "profile_background_color": "F5F8FA", + "created_at": "Sun Jan 03 20:12:25 +0000 2016", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "es", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", + "favourites_count": 818, + "status": { + "retweet_count": 30, + "retweeted_status": { + "retweet_count": 30, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685567619492114432", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 568, + "h": 320, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 192, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 568, + "h": 320, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", + "type": "photo", + "indices": [ + 77, + 100 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", + "display_url": "pic.twitter.com/kmFlAaE0pf", + "id_str": "685567406035628032", + "expanded_url": "http://twitter.com/rocio_montes/status/685567619492114432/video/1", + "id": 685567406035628032, + "url": "https://t.co/kmFlAaE0pf" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 66, + 76 + ], + "text": "Pergolero" + } + ], + "user_mentions": [ + { + "screen_name": "Letelier1920", + "id_str": "4704812826", + "id": 4704812826, + "indices": [ + 16, + 29 + ], + "name": "Hern\u00e1n Letelier" + } + ] + }, + "created_at": "Fri Jan 08 21:03:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "es", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685567619492114432, + "text": "Mire don Hern\u00e1n @Letelier1920 Un regalo para su Club de amigos :) #Pergolero https://t.co/kmFlAaE0pf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 86, + "contributors": null, + "source": "Twitter for iPad" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685576347016687616", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 568, + "h": 320, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 192, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 568, + "h": 320, + "resize": "fit" + } + }, + "source_status_id_str": "685567619492114432", + "url": "https://t.co/kmFlAaE0pf", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", + "source_user_id_str": "123320320", + "id_str": "685567406035628032", + "id": 685567406035628032, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", + "type": "photo", + "indices": [ + 95, + 118 + ], + "source_status_id": 685567619492114432, + "source_user_id": 123320320, + "display_url": "pic.twitter.com/kmFlAaE0pf", + "expanded_url": "http://twitter.com/rocio_montes/status/685567619492114432/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 84, + 94 + ], + "text": "Pergolero" + } + ], + "user_mentions": [ + { + "screen_name": "rocio_montes", + "id_str": "123320320", + "id": 123320320, + "indices": [ + 3, + 16 + ], + "name": "Roc\u00edo Montes" + }, + { + "screen_name": "Letelier1920", + "id_str": "4704812826", + "id": 4704812826, + "indices": [ + 34, + 47 + ], + "name": "Hern\u00e1n Letelier" + } + ] + }, + "created_at": "Fri Jan 08 21:38:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "es", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685576347016687616, + "text": "RT @rocio_montes: Mire don Hern\u00e1n @Letelier1920 Un regalo para su Club de amigos :) #Pergolero https://t.co/kmFlAaE0pf", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 4704812826, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": null, + "statuses_count": 193, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4704812826/1452092286", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "27244131", + "following": false, + "friends_count": 878, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/gussa", + "url": "https://t.co/S3aUB7YG60", + "expanded_url": "https://www.linkedin.com/in/gussa", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 1369, + "location": "Melbourne, Australia", + "screen_name": "angushervey", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "Angus Hervey", + "profile_use_background_image": true, + "description": "political economist, science communicator, optimist with @future_crunch | community manager for @rhokaustralia | PhD from London School of Economics", + "url": "https://t.co/S3aUB7YG60", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", + "profile_background_color": "C6E2EE", + "created_at": "Sat Mar 28 15:13:06 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", + "favourites_count": 632, + "status": { + "retweet_count": 16, + "retweeted_status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685332821867675648", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "virology.ws/2016/01/07/vir\u2026", + "url": "https://t.co/U91Z4k6DMg", + "expanded_url": "http://www.virology.ws/2016/01/07/virologists-start-your-poliovirus-destruction/", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 05:30:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685332821867675648, + "text": "The bittersweet prospect of destroying your stocks of polio viruses. https://t.co/U91Z4k6DMg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685332888154292224", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "virology.ws/2016/01/07/vir\u2026", + "url": "https://t.co/U91Z4k6DMg", + "expanded_url": "http://www.virology.ws/2016/01/07/virologists-start-your-poliovirus-destruction/", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "carlzimmer", + "id_str": "14085070", + "id": 14085070, + "indices": [ + 3, + 14 + ], + "name": "carlzimmer" + } + ] + }, + "created_at": "Fri Jan 08 05:31:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685332888154292224, + "text": "RT @carlzimmer: The bittersweet prospect of destroying your stocks of polio viruses. https://t.co/U91Z4k6DMg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 27244131, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 1880, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/27244131/1451984968", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "140497508", + "following": false, + "friends_count": 96, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 26181, + "location": "Queens holla! IG/Snap:rosgo21", + "screen_name": "ROSGO21", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 514, + "name": "Rosalyn Gold-Onwude", + "profile_use_background_image": true, + "description": "GS Warriors sideline: CSN. NYLiberty: MSG. NCAA: PAC12. SF 49ers: CSN. Emmy Winner. Stanford Grad: BA, MA '10. 3 Final 4s. Pac12 DPOY '10.Nigerian Natl team '11", + "url": null, + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", + "profile_background_color": "642D8B", + "created_at": "Wed May 05 17:00:22 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", + "favourites_count": 2824, + "status": { + "retweet_count": 5, + "retweeted_status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613187220271104", + "geo": { + "coordinates": [ + 45.52, + -122.682 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BATCpNAwsrK/", + "url": "https://t.co/xpmjSEL2qM", + "expanded_url": "https://www.instagram.com/p/BATCpNAwsrK/", + "indices": [ + 46, + 69 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ROSGO21", + "id_str": "140497508", + "id": 140497508, + "indices": [ + 16, + 24 + ], + "name": "Rosalyn Gold-Onwude" + } + ] + }, + "created_at": "Sat Jan 09 00:04:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.7900653, + 45.421863 + ], + [ + -122.471751, + 45.421863 + ], + [ + -122.471751, + 45.6509405 + ], + [ + -122.7900653, + 45.6509405 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Portland, OR", + "id": "ac88a4f17a51c7fc", + "name": "Portland" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613187220271104, + "text": "Portlandia with @rosgo21 ! @ Portland, Oregon https://t.co/xpmjSEL2qM", + "coordinates": { + "coordinates": [ + -122.682, + 45.52 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 19, + "contributors": null, + "source": "Instagram" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685631921263542272", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BATCpNAwsrK/", + "url": "https://t.co/xpmjSEL2qM", + "expanded_url": "https://www.instagram.com/p/BATCpNAwsrK/", + "indices": [ + 67, + 90 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ramonashelburne", + "id_str": "17507250", + "id": 17507250, + "indices": [ + 3, + 19 + ], + "name": "Ramona Shelburne" + }, + { + "screen_name": "ROSGO21", + "id_str": "140497508", + "id": 140497508, + "indices": [ + 37, + 45 + ], + "name": "Rosalyn Gold-Onwude" + } + ] + }, + "created_at": "Sat Jan 09 01:19:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685631921263542272, + "text": "RT @ramonashelburne: Portlandia with @rosgo21 ! @ Portland, Oregon https://t.co/xpmjSEL2qM", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 140497508, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", + "statuses_count": 29539, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/140497508/1351351402", + "is_translator": false + }, + { + "time_zone": "Tehran", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 12600, + "id_str": "16779204", + "following": false, + "friends_count": 6302, + "entities": { + "description": { + "urls": [ + { + "display_url": "bit.ly/1CQYaYU", + "url": "https://t.co/mbs8lwspQK", + "expanded_url": "http://bit.ly/1CQYaYU", + "indices": [ + 120, + 143 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hoder.com", + "url": "https://t.co/mnzE4YRMC6", + "expanded_url": "http://hoder.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 6819, + "location": "Tehran, Iran", + "screen_name": "h0d3r", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 152, + "name": "Hossein Derakhshan", + "profile_use_background_image": false, + "description": "Iranian-Canadian author, blogger, analyst. Spent 6 yrs in jail from 2008. Author of 'The Web We Have to Save' (Matter): https://t.co/mbs8lwspQK hoder@hoder.com", + "url": "https://t.co/mnzE4YRMC6", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Oct 15 11:00:35 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", + "favourites_count": 5019, + "status": { + "retweet_count": 13, + "retweeted_status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685434790682595328", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "d.gu.com/DCwPYK", + "url": "https://t.co/DWLgyisHPI", + "expanded_url": "http://d.gu.com/DCwPYK", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 12:16:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685434790682595328, + "text": "Iran's president in drive to speed up nuclear deal compliance in the hope of election boost https://t.co/DWLgyisHPI", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "dlvr.it" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685499124691660800", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "d.gu.com/DCwPYK", + "url": "https://t.co/DWLgyisHPI", + "expanded_url": "http://d.gu.com/DCwPYK", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "guardiannews", + "id_str": "788524", + "id": 788524, + "indices": [ + 3, + 16 + ], + "name": "Guardian news" + } + ] + }, + "created_at": "Fri Jan 08 16:31:41 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685499124691660800, + "text": "RT @guardiannews: Iran's president in drive to speed up nuclear deal compliance in the hope of election boost https://t.co/DWLgyisHPI", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 16779204, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 1239, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16779204/1416664427", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "29844055", + "following": false, + "friends_count": 8, + "entities": { + "description": { + "urls": [ + { + "display_url": "tinyurl.com/lp7ubo4", + "url": "http://t.co/L1iS5iJRHH", + "expanded_url": "http://tinyurl.com/lp7ubo4", + "indices": [ + 47, + 69 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "TxDxE.com", + "url": "http://t.co/RXjkFoFTKl", + "expanded_url": "http://www.TxDxE.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", + "notifications": false, + "profile_sidebar_fill_color": "050505", + "profile_link_color": "354E99", + "geo_enabled": false, + "followers_count": 643192, + "location": "CARSON, CA (W/S DA)", + "screen_name": "abdashsoul", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1776, + "name": "Ab-Soul", + "profile_use_background_image": true, + "description": "#blacklippastor | #THESEDAYS... available now: http://t.co/L1iS5iJRHH | Booking: mgmt@txdxe.com | Instagram: @souloho3", + "url": "http://t.co/RXjkFoFTKl", + "profile_text_color": "615B5C", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", + "profile_background_color": "080808", + "created_at": "Wed Apr 08 22:43:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "9AA5AB", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", + "favourites_count": 51, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 396, + "truncated": false, + "retweeted": false, + "id_str": "685636565163356161", + "id": 685636565163356161, + "text": "REAL FRIENDS", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:37:50 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 325, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 29844055, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", + "statuses_count": 20050, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29844055/1427233664", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1337271", + "following": false, + "friends_count": 2502, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mlkshk.com/p/YLTA", + "url": "http://t.co/wL4BXidKHJ", + "expanded_url": "http://mlkshk.com/p/YLTA", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "113838", + "geo_enabled": false, + "followers_count": 40294, + "location": "waking up ", + "screen_name": "darth", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 943, + "name": "darth\u2122", + "profile_use_background_image": false, + "description": "not the darth you are looking for", + "url": "http://t.co/wL4BXidKHJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", + "profile_background_color": "131516", + "created_at": "Sat Mar 17 05:38:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", + "favourites_count": 271683, + "status": { + "retweet_count": 10, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 10, + "truncated": false, + "retweeted": false, + "id_str": "685636293858951168", + "id": 685636293858951168, + "text": "Every pie chart is bullshit unless it's actually made of pie.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:36:45 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 22, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685636959826399232", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Eden_Eats", + "id_str": "97498167", + "id": 97498167, + "indices": [ + 3, + 13 + ], + "name": "Eden Dranger" + } + ] + }, + "created_at": "Sat Jan 09 01:39:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685636959826399232, + "text": "RT @Eden_Eats: Every pie chart is bullshit unless it's actually made of pie.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 1337271, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", + "statuses_count": 31694, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1337271/1398194350", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "16228398", + "following": false, + "friends_count": 987, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cyberdust.com/addme?blogmave\u2026", + "url": "http://t.co/q9qtJaGLrB", + "expanded_url": "http://cyberdust.com/addme?blogmaverick", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4309180, + "location": "", + "screen_name": "mcuban", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 26161, + "name": "Mark Cuban", + "profile_use_background_image": true, + "description": "Cyber Dust ID: blogmaverick", + "url": "http://t.co/q9qtJaGLrB", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Sep 10 21:12:01 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", + "favourites_count": 279, + "status": { + "retweet_count": 36, + "retweeted_status": { + "retweet_count": 36, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685114560408350720", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/FantasyLabsMar\u2026", + "url": "https://t.co/7Y5jQyhYht", + "expanded_url": "http://bit.ly/FantasyLabsMarkCuban", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Fantasy_Labs", + "id_str": "2977110796", + "id": 2977110796, + "indices": [ + 12, + 25 + ], + "name": "Fantasy Labs" + }, + { + "screen_name": "mcuban", + "id_str": "16228398", + "id": 16228398, + "indices": [ + 41, + 48 + ], + "name": "Mark Cuban" + } + ] + }, + "created_at": "Thu Jan 07 15:03:34 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685114560408350720, + "text": "Pumped that @Fantasy_Labs has brought on @mcuban as an investor and strategic partner: PRESS RELEASE: https://t.co/7Y5jQyhYht \u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 178, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685545989713702912", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/FantasyLabsMar\u2026", + "url": "https://t.co/7Y5jQyhYht", + "expanded_url": "http://bit.ly/FantasyLabsMarkCuban", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CSURAM88", + "id_str": "874969926", + "id": 874969926, + "indices": [ + 3, + 12 + ], + "name": "Peter Jennings" + }, + { + "screen_name": "Fantasy_Labs", + "id_str": "2977110796", + "id": 2977110796, + "indices": [ + 26, + 39 + ], + "name": "Fantasy Labs" + }, + { + "screen_name": "mcuban", + "id_str": "16228398", + "id": 16228398, + "indices": [ + 55, + 62 + ], + "name": "Mark Cuban" + } + ] + }, + "created_at": "Fri Jan 08 19:37:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685545989713702912, + "text": "RT @CSURAM88: Pumped that @Fantasy_Labs has brought on @mcuban as an investor and strategic partner: PRESS RELEASE: https://t.co/7Y5jQyhYht\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 16228398, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", + "statuses_count": 757, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16228398/1398982404", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "216582908", + "following": false, + "friends_count": 212, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1462, + "location": "San Fran", + "screen_name": "jmsSanFran", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 42, + "name": "Jeffrey Siminoff", + "profile_use_background_image": false, + "description": "Soon to be @twitter (not yet). Inclusion & Diversity. Foodie. Would-be concierge. Traveler. Equinox. Duke. Emory Law. Former NYC, former Apple.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Nov 17 04:26:58 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", + "favourites_count": 615, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685619578085326848", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "mobile.nytimes.com/2016/01/10/opi\u2026", + "url": "https://t.co/DNzL44RtNr", + "expanded_url": "http://mobile.nytimes.com/2016/01/10/opinion/sunday/you-dont-need-more-free-time.html?smid=tw-nytimes&smtyp=cur&_r=0&referer=", + "indices": [ + 84, + 107 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nytimes", + "id_str": "807095", + "id": 807095, + "indices": [ + 74, + 82 + ], + "name": "The New York Times" + } + ] + }, + "created_at": "Sat Jan 09 00:30:20 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685619578085326848, + "text": "\"Network goods\", work-life \"coordination\" | You Don\u2019t Need More Free Time @nytimes https://t.co/DNzL44RtNr", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 216582908, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 890, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/216582908/1439074474", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "98988930", + "following": false, + "friends_count": 10, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 82716, + "location": "The North Pole", + "screen_name": "santa", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 172, + "name": "Santa Claus", + "profile_use_background_image": true, + "description": "#crushingit", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/590905131/image_normal.jpg", + "profile_background_color": "DD2E44", + "created_at": "Thu Dec 24 00:15:25 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/590905131/image_normal.jpg", + "favourites_count": 427, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 12, + "possibly_sensitive": false, + "id_str": "684602958667853824", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/santa/status/6\u2026", + "url": "https://t.co/Z1WSKc2iOk", + "expanded_url": "https://twitter.com/santa/status/671194278056484864", + "indices": [ + 31, + 54 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jack", + "id_str": "12", + "id": 12, + "indices": [ + 0, + 5 + ], + "name": "Jack" + }, + { + "screen_name": "djtrackstar", + "id_str": "15930926", + "id": 15930926, + "indices": [ + 6, + 18 + ], + "name": "WRTJ" + }, + { + "screen_name": "KillerMike", + "id_str": "21265120", + "id": 21265120, + "indices": [ + 19, + 30 + ], + "name": "Killer Mike" + } + ] + }, + "created_at": "Wed Jan 06 05:10:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "12", + "place": null, + "in_reply_to_screen_name": "jack", + "in_reply_to_status_id_str": "684601927989002240", + "truncated": false, + "id": 684602958667853824, + "text": "@jack @djtrackstar @KillerMike https://t.co/Z1WSKc2iOk", + "coordinates": null, + "in_reply_to_status_id": 684601927989002240, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 98988930, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 1754, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/98988930/1419058838", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "27485958", + "following": false, + "friends_count": 130, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": false, + "followers_count": 174, + "location": "San Francisco Bay Area", + "screen_name": "luckysong", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Guanglei", + "profile_use_background_image": true, + "description": "Software Engineer at Twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", + "profile_background_color": "B2DFDA", + "created_at": "Sun Mar 29 19:30:27 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", + "favourites_count": 245, + "status": { + "retweet_count": 62, + "retweeted_status": { + "retweet_count": 62, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "662850749043445760", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "entm.ag/1FMWdc0", + "url": "https://t.co/zkbXWBuWb1", + "expanded_url": "http://entm.ag/1FMWdc0", + "indices": [ + 55, + 78 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Nov 07 04:35:08 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 662850749043445760, + "text": "How You Know You've Created the Company of Your Dreams https://t.co/zkbXWBuWb1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 68, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "662913254616788992", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "entm.ag/1FMWdc0", + "url": "https://t.co/zkbXWBuWb1", + "expanded_url": "http://entm.ag/1FMWdc0", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Entrepreneur", + "id_str": "19407053", + "id": 19407053, + "indices": [ + 3, + 16 + ], + "name": "Entrepreneur" + } + ] + }, + "created_at": "Sat Nov 07 08:43:30 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 662913254616788992, + "text": "RT @Entrepreneur: How You Know You've Created the Company of Your Dreams https://t.co/zkbXWBuWb1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 27485958, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 112, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "124003770", + "following": false, + "friends_count": 154, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "cher.com", + "url": "http://t.co/E5aYMJHxx5", + "expanded_url": "http://cher.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "F92649", + "geo_enabled": true, + "followers_count": 2931956, + "location": "Malibu, California", + "screen_name": "cher", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 11220, + "name": "Cher", + "profile_use_background_image": true, + "description": "Stand & B Counted or Sit & B Nothing.\nDon't Litter,Chew Gum,Walk Past \nHomeless PPL w/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\nTHERE'S ONLY LOVE&FEAR", + "url": "http://t.co/E5aYMJHxx5", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 17 23:05:55 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", + "favourites_count": 1124, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "SparkleChaos", + "in_reply_to_user_id": 4328151253, + "in_reply_to_status_id_str": "685006366738546688", + "retweet_count": 55, + "truncated": false, + "retweeted": false, + "id_str": "685007962935398400", + "id": 685007962935398400, + "text": "@SparkleChaos IM NOT BACKTRACKING...HES SCUM\nWHO POISONS CHILDREN EVEN AFTER HES BEEN TOLD ABOUT THE DANGER,BUT GOD WILL\nB\"HIS\"JUDGE..NOT ME", + "in_reply_to_user_id_str": "4328151253", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SparkleChaos", + "id_str": "4328151253", + "id": 4328151253, + "indices": [ + 0, + 13 + ], + "name": "GlitterBombTheWorld" + } + ] + }, + "created_at": "Thu Jan 07 07:59:59 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 149, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685006366738546688, + "lang": "en" + }, + "default_profile_image": false, + "id": 124003770, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", + "statuses_count": 16283, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/124003770/1402616686", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "16606403", + "following": false, + "friends_count": 1987, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 15615, + "location": "iPhone: 42.189728,-87.802538", + "screen_name": "hseitler", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 149, + "name": "harriet seitler", + "profile_use_background_image": true, + "description": "harpo studios EVP; mom, sister, friend. Travelling new and uncharted path, holding on to love and strength.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Oct 05 22:14:12 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", + "favourites_count": 399, + "status": { + "retweet_count": 3, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 3, + "truncated": false, + "retweeted": false, + "id_str": "681200179219939328", + "id": 681200179219939328, + "text": "Oprah just turned a weight watchers commercial into an emotional experience... How you do dat", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Dec 27 19:49:13 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "681878497267183616", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "amandabell83", + "id_str": "555631741", + "id": 555631741, + "indices": [ + 3, + 16 + ], + "name": "Amanda Bell" + } + ] + }, + "created_at": "Tue Dec 29 16:44:37 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681878497267183616, + "text": "RT @amandabell83: Oprah just turned a weight watchers commercial into an emotional experience... How you do dat", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16606403, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4561, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5510452", + "following": false, + "friends_count": 355, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "medium.com/@ameet", + "url": "http://t.co/hOMy2GqrvD", + "expanded_url": "http://medium.com/@ameet", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 4194, + "location": "San Francisco, CA", + "screen_name": "ameet", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 93, + "name": "Ameet Ranadive", + "profile_use_background_image": true, + "description": "VP Revenue Product @Twitter. Formerly Dasient ($TWTR), McKinsey. Love building products, startups, reading, writing, cooking, being a dad.", + "url": "http://t.co/hOMy2GqrvD", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Apr 25 22:41:59 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", + "favourites_count": 4657, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685565392618520576", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1AuuHQN", + "url": "https://t.co/F1QNUXMRdT", + "expanded_url": "http://bit.ly/1AuuHQN", + "indices": [ + 27, + 50 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ameet", + "id_str": "5510452", + "id": 5510452, + "indices": [ + 55, + 61 + ], + "name": "Ameet Ranadive" + } + ] + }, + "created_at": "Fri Jan 08 20:55:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685565392618520576, + "text": "Why the idea is important: https://t.co/F1QNUXMRdT via @ameet", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Sprout Social" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685568029715922944", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1AuuHQN", + "url": "https://t.co/F1QNUXMRdT", + "expanded_url": "http://bit.ly/1AuuHQN", + "indices": [ + 43, + 66 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AaronDinin", + "id_str": "260272608", + "id": 260272608, + "indices": [ + 3, + 14 + ], + "name": "Aaron Dinin" + }, + { + "screen_name": "ameet", + "id_str": "5510452", + "id": 5510452, + "indices": [ + 71, + 77 + ], + "name": "Ameet Ranadive" + } + ] + }, + "created_at": "Fri Jan 08 21:05:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685568029715922944, + "text": "RT @AaronDinin: Why the idea is important: https://t.co/F1QNUXMRdT via @ameet", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 5510452, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4637, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5510452/1422199159", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "29442313", + "following": false, + "friends_count": 1910, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sanders.senate.gov", + "url": "http://t.co/8AS4FI1oge", + "expanded_url": "http://www.sanders.senate.gov/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "D6CCB6", + "profile_link_color": "44506A", + "geo_enabled": true, + "followers_count": 1167649, + "location": "Vermont/DC", + "screen_name": "SenSanders", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 11866, + "name": "Bernie Sanders", + "profile_use_background_image": true, + "description": "Sen. Bernie Sanders is the longest serving independent in congressional history. Tweets ending in -B are from Bernie, and all others are from a staffer.", + "url": "http://t.co/8AS4FI1oge", + "profile_text_color": "304562", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", + "profile_background_color": "000000", + "created_at": "Tue Apr 07 13:02:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", + "favourites_count": 13, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 402, + "truncated": false, + "retweeted": false, + "id_str": "685626060315181057", + "id": 685626060315181057, + "text": "In America today, we not only have massive wealth and income inequality, but a power structure which protects that inequality.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:56:05 +0000 2016", + "source": "Buffer", + "favorite_count": 814, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 29442313, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", + "statuses_count": 13417, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29442313/1430854323", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "216776631", + "following": false, + "friends_count": 1407, + "entities": { + "description": { + "urls": [ + { + "display_url": "berniesanders.com", + "url": "http://t.co/nuBuflYjUL", + "expanded_url": "http://berniesanders.com", + "indices": [ + 92, + 114 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "berniesanders.com", + "url": "https://t.co/W6f7Iy1Nho", + "expanded_url": "https://berniesanders.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1112618, + "location": "Vermont", + "screen_name": "BernieSanders", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 5194, + "name": "Bernie Sanders", + "profile_use_background_image": false, + "description": "I believe America is ready for a new path to the future. Join our campaign for president at http://t.co/nuBuflYjUL.", + "url": "https://t.co/W6f7Iy1Nho", + "profile_text_color": "050005", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", + "profile_background_color": "EA5047", + "created_at": "Wed Nov 17 17:53:52 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", + "favourites_count": 658, + "status": { + "retweet_count": 143, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685634668763426816", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/aseitzwald/sta\u2026", + "url": "https://t.co/GhTCUitzl0", + "expanded_url": "https://twitter.com/aseitzwald/status/685633668665208832", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:30:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685634668763426816, + "text": "What we\u2019re doing on on this campaign is treating the American people like they're intelligent human beings. https://t.co/GhTCUitzl0", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 311, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 216776631, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", + "statuses_count": 5511, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/216776631/1451363799", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17159397", + "following": false, + "friends_count": 2290, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wnba.com", + "url": "http://t.co/VSPC6ki5Sa", + "expanded_url": "http://www.wnba.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "FF0000", + "geo_enabled": false, + "followers_count": 501510, + "location": "", + "screen_name": "WNBA", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2070, + "name": "WNBA", + "profile_use_background_image": true, + "description": "News & notes directly from the WNBA.", + "url": "http://t.co/VSPC6ki5Sa", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Tue Nov 04 16:04:48 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", + "favourites_count": 300, + "status": { + "retweet_count": 9, + "retweeted_status": { + "retweet_count": 9, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685133293335887872", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1000, + "h": 500, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", + "display_url": "pic.twitter.com/xXhBSkpe0p", + "id_str": "685133292618686464", + "expanded_url": "http://twitter.com/IndianaFever/status/685133293335887872/photo/1", + "id": 685133292618686464, + "url": "https://t.co/xXhBSkpe0p" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "on.nba.com/1JMfDQb", + "url": "https://t.co/uFsH57wP1E", + "expanded_url": "http://on.nba.com/1JMfDQb", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [ + { + "indices": [ + 52, + 63 + ], + "text": "WNBAFinals" + } + ], + "user_mentions": [ + { + "screen_name": "Catchin24", + "id_str": "370435297", + "id": 370435297, + "indices": [ + 5, + 15 + ], + "name": "Tamika Catchings" + } + ] + }, + "created_at": "Thu Jan 07 16:18:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/1010ecfa7d3a40f8.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -88.097892, + 37.771743 + ], + [ + -84.78458, + 37.771743 + ], + [ + -84.78458, + 41.761368 + ], + [ + -88.097892, + 41.761368 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Indiana, USA", + "id": "1010ecfa7d3a40f8", + "name": "Indiana" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685133293335887872, + "text": "From @Catchin24's big announcement to Game 5 of the #WNBAFinals, review the Top 24 in 2015: https://t.co/uFsH57wP1E https://t.co/xXhBSkpe0p", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 25, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685136785144438784", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1000, + "h": 500, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + } + }, + "source_status_id_str": "685133293335887872", + "url": "https://t.co/xXhBSkpe0p", + "media_url": "http://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", + "source_user_id_str": "28672101", + "id_str": "685133292618686464", + "id": 685133292618686464, + "media_url_https": "https://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685133293335887872, + "source_user_id": 28672101, + "display_url": "pic.twitter.com/xXhBSkpe0p", + "expanded_url": "http://twitter.com/IndianaFever/status/685133293335887872/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "on.nba.com/1JMfDQb", + "url": "https://t.co/uFsH57wP1E", + "expanded_url": "http://on.nba.com/1JMfDQb", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [ + { + "indices": [ + 70, + 81 + ], + "text": "WNBAFinals" + } + ], + "user_mentions": [ + { + "screen_name": "IndianaFever", + "id_str": "28672101", + "id": 28672101, + "indices": [ + 3, + 16 + ], + "name": "Indiana Fever" + }, + { + "screen_name": "Catchin24", + "id_str": "370435297", + "id": 370435297, + "indices": [ + 23, + 33 + ], + "name": "Tamika Catchings" + } + ] + }, + "created_at": "Thu Jan 07 16:31:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685136785144438784, + "text": "RT @IndianaFever: From @Catchin24's big announcement to Game 5 of the #WNBAFinals, review the Top 24 in 2015: https://t.co/uFsH57wP1E https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 17159397, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", + "statuses_count": 30615, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17159397/1444881224", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "18129606", + "following": false, + "friends_count": 790, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/saintboz", + "url": "http://t.co/m8390gFxR6", + "expanded_url": "http://twitter.com/saintboz", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 3623, + "location": "\u00dcT: 40.810606,-73.986908", + "screen_name": "SaintBoz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 57, + "name": "Boz Saint John", + "profile_use_background_image": true, + "description": "Self proclaimed badass and badmamajama. Generally bad. And good at it. Head diva of global consumer marketing @applemusic & @itunes", + "url": "http://t.co/m8390gFxR6", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Mon Dec 15 03:37:52 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", + "favourites_count": 1170, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685522947210018816", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 640, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYN3fGvUsAA-zvd.jpg", + "type": "photo", + "indices": [ + 113, + 136 + ], + "media_url": "http://pbs.twimg.com/media/CYN3fGvUsAA-zvd.jpg", + "display_url": "pic.twitter.com/BwlpxOlcAZ", + "id_str": "685522944559198208", + "expanded_url": "http://twitter.com/SaintBoz/status/685522947210018816/photo/1", + "id": 685522944559198208, + "url": "https://t.co/BwlpxOlcAZ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 86, + 99 + ], + "text": "mommyandmini" + }, + { + "indices": [ + 100, + 112 + ], + "text": "watchmework" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:06:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685522947210018816, + "text": "Lil 6 year old (going on 25 year old) Lael's text messages are giving me LIFE...\ud83d\ude02\ud83d\ude4c\ud83c\udfff\ud83d\udc67\ud83c\udffd\ud83d\udcf1#mommyandmini #watchmework https://t.co/BwlpxOlcAZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 18129606, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", + "statuses_count": 2923, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18129606/1353602146", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "122860384", + "following": false, + "friends_count": 110, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1240, + "location": "", + "screen_name": "FeliciaHorowitz", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 69, + "name": "Felicia Horowitz", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Mar 14 04:44:33 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", + "favourites_count": 945, + "status": { + "retweet_count": 48, + "retweeted_status": { + "retweet_count": 48, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685096712789082112", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 480, + "h": 360, + "resize": "fit" + }, + "medium": { + "w": 480, + "h": 360, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", + "display_url": "pic.twitter.com/hwCQs13inD", + "id_str": "685096711925043200", + "expanded_url": "http://twitter.com/pmarca/status/685096712789082112/photo/1", + "id": 685096711925043200, + "url": "https://t.co/hwCQs13inD" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "economist.com/news/united-st\u2026", + "url": "https://t.co/8Y6PFzOdMV", + "expanded_url": "http://www.economist.com/news/united-states/21684687-high-school-students-want-citizens-rate-their-interactions-officers-how-three", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 13:52:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685096712789082112, + "text": "Congratulations Ima, Asha & Caleb on Five-O winning international justice prize!! https://t.co/8Y6PFzOdMV https://t.co/hwCQs13inD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 63, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685561599910805505", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 480, + "h": 360, + "resize": "fit" + }, + "medium": { + "w": 480, + "h": 360, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "685096712789082112", + "url": "https://t.co/hwCQs13inD", + "media_url": "http://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", + "source_user_id_str": "5943622", + "id_str": "685096711925043200", + "id": 685096711925043200, + "media_url_https": "https://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", + "type": "photo", + "indices": [ + 122, + 144 + ], + "source_status_id": 685096712789082112, + "source_user_id": 5943622, + "display_url": "pic.twitter.com/hwCQs13inD", + "expanded_url": "http://twitter.com/pmarca/status/685096712789082112/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "economist.com/news/united-st\u2026", + "url": "https://t.co/8Y6PFzOdMV", + "expanded_url": "http://www.economist.com/news/united-states/21684687-high-school-students-want-citizens-rate-their-interactions-officers-how-three", + "indices": [ + 98, + 121 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "pmarca", + "id_str": "5943622", + "id": 5943622, + "indices": [ + 3, + 10 + ], + "name": "Marc Andreessen" + } + ] + }, + "created_at": "Fri Jan 08 20:39:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685561599910805505, + "text": "RT @pmarca: Congratulations Ima, Asha & Caleb on Five-O winning international justice prize!! https://t.co/8Y6PFzOdMV https://t.co/hwCQs13i\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 122860384, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 417, + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "205926603", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com", + "url": "http://t.co/DeO4c250gs", + "expanded_url": "http://twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F2E7C4", + "profile_link_color": "89C9FA", + "geo_enabled": false, + "followers_count": 59798, + "location": "TwitterHQ", + "screen_name": "hackweek", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 97, + "name": "HackWeek", + "profile_use_background_image": true, + "description": "Let's hack together.", + "url": "http://t.co/DeO4c250gs", + "profile_text_color": "9C6D74", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", + "profile_background_color": "452D30", + "created_at": "Thu Oct 21 22:27:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D9C486", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", + "favourites_count": 1, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 34, + "truncated": false, + "retweeted": false, + "id_str": "28459868715", + "id": 28459868715, + "text": "\u201cWhen you share a common civic culture with thousands of other people, good ideas have a tendency to flow from mind to mind \u2026\u201d ~ S. Johnson", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Oct 23 01:46:50 +0000 2010", + "source": "Twitter Web Client", + "favorite_count": 31, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 205926603, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", + "statuses_count": 1, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/205926603/1420662867", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2835886194", + "following": false, + "friends_count": 178, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "colbertlateshow.com", + "url": "https://t.co/YTzFH21e5t", + "expanded_url": "http://colbertlateshow.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 138200, + "location": "", + "screen_name": "colbertlateshow", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 999, + "name": "The Late Show on CBS", + "profile_use_background_image": true, + "description": "Official Twitter feed of The Late Show with Stephen Colbert. Unofficial Twitter feed of the U.S. Department of Agriculture.", + "url": "https://t.co/YTzFH21e5t", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 30 17:13:22 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", + "favourites_count": 209, + "status": { + "retweet_count": 65, + "retweeted_status": { + "retweet_count": 65, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685504391474974721", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 900, + "h": 900, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", + "type": "photo", + "indices": [ + 45, + 68 + ], + "media_url": "http://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", + "display_url": "pic.twitter.com/QTH7OuQZ4U", + "id_str": "685504262311428097", + "expanded_url": "http://twitter.com/KaceyMusgraves/status/685504391474974721/photo/1", + "id": 685504262311428097, + "url": "https://t.co/QTH7OuQZ4U" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "colbertlateshow", + "id_str": "2835886194", + "id": 2835886194, + "indices": [ + 28, + 44 + ], + "name": "The Late Show on CBS" + } + ] + }, + "created_at": "Fri Jan 08 16:52:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685504391474974721, + "text": "Don't be Late to the Party..@colbertlateshow https://t.co/QTH7OuQZ4U", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 387, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685595501681610752", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 900, + "h": 900, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id_str": "685504391474974721", + "url": "https://t.co/QTH7OuQZ4U", + "media_url": "http://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", + "source_user_id_str": "30925378", + "id_str": "685504262311428097", + "id": 685504262311428097, + "media_url_https": "https://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", + "type": "photo", + "indices": [ + 65, + 88 + ], + "source_status_id": 685504391474974721, + "source_user_id": 30925378, + "display_url": "pic.twitter.com/QTH7OuQZ4U", + "expanded_url": "http://twitter.com/KaceyMusgraves/status/685504391474974721/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "KaceyMusgraves", + "id_str": "30925378", + "id": 30925378, + "indices": [ + 3, + 18 + ], + "name": "KACEY MUSGRAVES" + }, + { + "screen_name": "colbertlateshow", + "id_str": "2835886194", + "id": 2835886194, + "indices": [ + 48, + 64 + ], + "name": "The Late Show on CBS" + } + ] + }, + "created_at": "Fri Jan 08 22:54:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685595501681610752, + "text": "RT @KaceyMusgraves: Don't be Late to the Party..@colbertlateshow https://t.co/QTH7OuQZ4U", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 2835886194, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 775, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2835886194/1444429479", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3165817215", + "following": false, + "friends_count": 179, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 396664, + "location": "", + "screen_name": "JohnBoyega", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 848, + "name": "John Boyega", + "profile_use_background_image": true, + "description": "Dream and work towards the reality", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 14 09:19:31 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", + "favourites_count": 200, + "status": { + "retweet_count": 58, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685469331216580608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/emmakeele1/sta\u2026", + "url": "https://t.co/0HJrxTtp3P", + "expanded_url": "https://twitter.com/emmakeele1/status/685464003284480000", + "indices": [ + 23, + 46 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:33:18 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685469331216580608, + "text": "Erm that too miss \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/0HJrxTtp3P", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 505, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3165817215, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 365, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3165817215/1451410540", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "252531143", + "following": false, + "friends_count": 3141, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "princeton.edu/~slaughtr/", + "url": "http://t.co/jJRR31QiUl", + "expanded_url": "http://www.princeton.edu/~slaughtr/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "2EBCB3", + "geo_enabled": true, + "followers_count": 129943, + "location": "Princeton, DC, New York", + "screen_name": "SlaughterAM", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3983, + "name": "Anne-Marie Slaughter", + "profile_use_background_image": true, + "description": "President & CEO, @newamerica. Former Princeton Prof & Director of Policy Planning, U.S. State Dept. Mother. Mentor. Foodie. Author. Foreign policy curator.", + "url": "http://t.co/jJRR31QiUl", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", + "profile_background_color": "968270", + "created_at": "Tue Feb 15 11:33:50 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", + "favourites_count": 2854, + "status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685094135720767488", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "linkedin.com/pulse/real-val\u2026", + "url": "https://t.co/PJ4yFyE4St", + "expanded_url": "https://www.linkedin.com/pulse/real-value-college-education-michael-crow", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "michaelcrow", + "id_str": "20172250", + "id": 20172250, + "indices": [ + 57, + 69 + ], + "name": "Michael Crow" + }, + { + "screen_name": "LinkedIn", + "id_str": "13058772", + "id": 13058772, + "indices": [ + 73, + 82 + ], + "name": "LinkedIn" + } + ] + }, + "created_at": "Thu Jan 07 13:42:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685094135720767488, + "text": "worth readng! \"The Real Value of a College Education\" by @michaelcrow on @LinkedIn https://t.co/PJ4yFyE4St", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 18, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 252531143, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 25191, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/252531143/1424986634", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "299674713", + "following": false, + "friends_count": 597, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "juliefoudyleadership.com", + "url": "http://t.co/TlwVOqMe3Z", + "expanded_url": "http://www.juliefoudyleadership.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "C73460", + "geo_enabled": true, + "followers_count": 196502, + "location": "I wish I knew...", + "screen_name": "JulieFoudy", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1469, + "name": "Julie Foudy", + "profile_use_background_image": true, + "description": "Former watergirl #USWNT, current ESPN'er, mom, founder JF Sports Leadership Academy. Luvr of donuts larger than my heeed & soulful peops who empower others.", + "url": "http://t.co/TlwVOqMe3Z", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", + "profile_background_color": "B2DFDA", + "created_at": "Mon May 16 14:14:49 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685535018051973120", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/EmWatson/statu\u2026", + "url": "https://t.co/Sc6bJFyS7p", + "expanded_url": "https://twitter.com/EmWatson/status/685246433491025922", + "indices": [ + 112, + 135 + ] + } + ], + "hashtags": [ + { + "indices": [ + 99, + 111 + ], + "text": "soulidarity" + } + ], + "user_mentions": [ + { + "screen_name": "EmWatson", + "id_str": "166739404", + "id": 166739404, + "indices": [ + 25, + 34 + ], + "name": "Emma Watson" + }, + { + "screen_name": "AbbyWambach", + "id_str": "336124836", + "id": 336124836, + "indices": [ + 46, + 58 + ], + "name": "Abby Wambach" + } + ] + }, + "created_at": "Fri Jan 08 18:54:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685535018051973120, + "text": "What a damn cool idea by @EmWatson . Just saw @AbbyWambach went to buy it. Ordered a copy as well. #soulidarity https://t.co/Sc6bJFyS7p", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 113, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 299674713, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 6724, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/299674713/1402758316", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2651565121", + "following": false, + "friends_count": 10, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sinatra.com", + "url": "https://t.co/Xt6lI7LMFC", + "expanded_url": "http://sinatra.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0890C2", + "geo_enabled": false, + "followers_count": 22088, + "location": "", + "screen_name": "franksinatra", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 146, + "name": "Frank Sinatra", + "profile_use_background_image": false, + "description": "The Chairman of the Board - the official Twitter profile for Frank Sinatra Enterprises", + "url": "https://t.co/Xt6lI7LMFC", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed Jul 16 16:58:44 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", + "favourites_count": 83, + "status": { + "retweet_count": 156, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682234200422891520", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 900, + "h": 802, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 534, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 302, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWySaR4U4AElR5W.jpg", + "type": "photo", + "indices": [ + 102, + 125 + ], + "media_url": "http://pbs.twimg.com/media/CWySaR4U4AElR5W.jpg", + "display_url": "pic.twitter.com/RZEpjWYaqQ", + "id_str": "679078624000008193", + "expanded_url": "http://twitter.com/franksinatra/status/682234200422891520/photo/1", + "id": 679078624000008193, + "url": "https://t.co/RZEpjWYaqQ" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "smarturl.it/SinatraMyWay", + "url": "https://t.co/F6xMhfVhTy", + "expanded_url": "http://smarturl.it/SinatraMyWay", + "indices": [ + 78, + 101 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 16:18:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682234200422891520, + "text": "On this day in 1968, Frank Sinatra recorded \u201cMy Way\u201d \u2013 revisit the album now: https://t.co/F6xMhfVhTy https://t.co/RZEpjWYaqQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 269, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 2651565121, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 352, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2651565121/1406242389", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "21561935", + "following": false, + "friends_count": 901, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kissthedeejay.com", + "url": "http://t.co/6moXT5RhPn", + "expanded_url": "http://www.kissthedeejay.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", + "notifications": false, + "profile_sidebar_fill_color": "0A0A0B", + "profile_link_color": "929287", + "geo_enabled": false, + "followers_count": 10812, + "location": "NYC", + "screen_name": "KISSTHEDEEJAY", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 271, + "name": "DJ KISS", + "profile_use_background_image": true, + "description": "Deejay / Personality / Blogger / Fashion & Beauty Enthusiast / 1/2 of #TheSemples", + "url": "http://t.co/6moXT5RhPn", + "profile_text_color": "E11930", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", + "profile_background_color": "F5F2F7", + "created_at": "Sun Feb 22 12:22:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "65B0DA", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", + "favourites_count": 17, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685188364933443584", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BAQBdG-h-7V/", + "url": "https://t.co/vf92ka1zz7", + "expanded_url": "https://www.instagram.com/p/BAQBdG-h-7V/", + "indices": [ + 95, + 118 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DJMOS", + "id_str": "18716699", + "id": 18716699, + "indices": [ + 14, + 20 + ], + "name": "DJMOS" + } + ] + }, + "created_at": "Thu Jan 07 19:56:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685188364933443584, + "text": "Follow me and @djmos from Atlantic City to St. Barths in the first episode of our new youtube\u2026 https://t.co/vf92ka1zz7", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 21561935, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", + "statuses_count": 7709, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21561935/1422280291", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "43987763", + "following": false, + "friends_count": 1165, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 817, + "location": "San Francisco, CA", + "screen_name": "nataliemiyake", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 36, + "name": "Natalie Miyake", + "profile_use_background_image": true, + "description": "Corporate communications @twitter. Raised in Japan, ex-New Yorker, now in SF. Wine lover, hiking addict, brunch connoisseur.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Mon Jun 01 22:19:32 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", + "favourites_count": 1571, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "HenningD", + "in_reply_to_user_id": 20758680, + "in_reply_to_status_id_str": "685500089310277632", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685506940563107840", + "id": 685506940563107840, + "text": "@HenningD @TwitterDE it's been great working with you. Best of luck!", + "in_reply_to_user_id_str": "20758680", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "HenningD", + "id_str": "20758680", + "id": 20758680, + "indices": [ + 0, + 9 + ], + "name": "Henning Dorstewitz" + }, + { + "screen_name": "TwitterDE", + "id_str": "95255169", + "id": 95255169, + "indices": [ + 10, + 20 + ], + "name": "Twitter Deutschland" + } + ] + }, + "created_at": "Fri Jan 08 17:02:45 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685500089310277632, + "lang": "en" + }, + "default_profile_image": false, + "id": 43987763, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 3686, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43987763/1397010068", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "412715336", + "following": false, + "friends_count": 159, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 1108, + "location": "San Francisco, CA", + "screen_name": "Celebrate", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 14, + "name": "#Celebrate", + "profile_use_background_image": true, + "description": "#celebrate", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", + "profile_background_color": "707375", + "created_at": "Tue Nov 15 02:02:23 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", + "favourites_count": 7, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", + "default_profile_image": false, + "id": 412715336, + "blocked_by": false, + "profile_background_tile": true, + "statuses_count": 88, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/412715336/1449089216", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "158595960", + "following": false, + "friends_count": 228, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 364, + "location": "San Francisco", + "screen_name": "drao", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 11, + "name": "Deepak Rao", + "profile_use_background_image": true, + "description": "Product Manager @Twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 23 03:19:05 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", + "favourites_count": 646, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": "venukasturi", + "in_reply_to_user_id": 22807096, + "in_reply_to_status_id_str": "685246566118993920", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685313574592315393", + "id": 685313574592315393, + "text": "@venukasturi next year", + "in_reply_to_user_id_str": "22807096", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "venukasturi", + "id_str": "22807096", + "id": 22807096, + "indices": [ + 0, + 12 + ], + "name": "Venu Gopal Kasturi" + } + ] + }, + "created_at": "Fri Jan 08 04:14:23 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685246566118993920, + "lang": "en" + }, + "default_profile_image": false, + "id": 158595960, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 268, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/158595960/1405201901", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16669075", + "following": false, + "friends_count": 616, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "fema.gov", + "url": "http://t.co/yHUd9eUBs0", + "expanded_url": "http://www.fema.gov/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DCDCE0", + "profile_link_color": "2A91B0", + "geo_enabled": true, + "followers_count": 440462, + "location": "United States", + "screen_name": "fema", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8833, + "name": "FEMA", + "profile_use_background_image": true, + "description": "Our story of supporting citizens & first responders before, during, and after emergencies. For emergencies, call your local fire/EMS/police or 9-1-1.", + "url": "http://t.co/yHUd9eUBs0", + "profile_text_color": "65686E", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", + "profile_background_color": "CCCCCC", + "created_at": "Thu Oct 09 16:54:20 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", + "favourites_count": 517, + "status": { + "retweet_count": 44, + "retweeted_status": { + "retweet_count": 44, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685577475888291841", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1000, + "h": 1000, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", + "type": "photo", + "indices": [ + 109, + 132 + ], + "media_url": "http://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", + "display_url": "pic.twitter.com/zcrtOzbmhj", + "id_str": "685577474919419904", + "expanded_url": "http://twitter.com/CAL_FIRE/status/685577475888291841/photo/1", + "id": 685577474919419904, + "url": "https://t.co/zcrtOzbmhj" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "ready.gov/floods", + "url": "https://t.co/jhcnztJMvD", + "expanded_url": "http://www.ready.gov/floods", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 15 + ], + "text": "FireFactFriday" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:43:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685577475888291841, + "text": "#FireFactFriday Do you have a plan in the event of a flood in your area? Learn more: https://t.co/jhcnztJMvD https://t.co/zcrtOzbmhj", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 14, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685594168148779008", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1000, + "h": 1000, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id_str": "685577475888291841", + "url": "https://t.co/zcrtOzbmhj", + "media_url": "http://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", + "source_user_id_str": "21249970", + "id_str": "685577474919419904", + "id": 685577474919419904, + "media_url_https": "https://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", + "type": "photo", + "indices": [ + 123, + 140 + ], + "source_status_id": 685577475888291841, + "source_user_id": 21249970, + "display_url": "pic.twitter.com/zcrtOzbmhj", + "expanded_url": "http://twitter.com/CAL_FIRE/status/685577475888291841/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "ready.gov/floods", + "url": "https://t.co/jhcnztJMvD", + "expanded_url": "http://www.ready.gov/floods", + "indices": [ + 99, + 122 + ] + } + ], + "hashtags": [ + { + "indices": [ + 14, + 29 + ], + "text": "FireFactFriday" + } + ], + "user_mentions": [ + { + "screen_name": "CAL_FIRE", + "id_str": "21249970", + "id": 21249970, + "indices": [ + 3, + 12 + ], + "name": "CAL FIRE" + } + ] + }, + "created_at": "Fri Jan 08 22:49:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685594168148779008, + "text": "RT @CAL_FIRE: #FireFactFriday Do you have a plan in the event of a flood in your area? Learn more: https://t.co/jhcnztJMvD https://t.co/zcr\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16669075, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", + "statuses_count": 10489, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16669075/1444411889", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1072103227", + "following": false, + "friends_count": 1004, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 831, + "location": "SF", + "screen_name": "heySierra", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 13, + "name": "Sierra Lord", + "profile_use_background_image": true, + "description": "#gsd @twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 08 21:50:58 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", + "favourites_count": 3027, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685334213197983745", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 658, + "h": 1024, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 529, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 933, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYLL1GvWQAAgdJr.jpg", + "type": "photo", + "indices": [ + 63, + 86 + ], + "media_url": "http://pbs.twimg.com/media/CYLL1GvWQAAgdJr.jpg", + "display_url": "pic.twitter.com/ARS15LRjKI", + "id_str": "685334206516445184", + "expanded_url": "http://twitter.com/heySierra/status/685334213197983745/photo/1", + "id": 685334206516445184, + "url": "https://t.co/ARS15LRjKI" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 34, + 42 + ], + "text": "CES2016" + }, + { + "indices": [ + 43, + 62 + ], + "text": "AdamSilverissonice" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 05:36:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -115.2092535, + 35.984784 + ], + [ + -115.0610763, + 35.984784 + ], + [ + -115.0610763, + 36.137145 + ], + [ + -115.2092535, + 36.137145 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Paradise, NV", + "id": "8fa6d7a33b83ef26", + "name": "Paradise" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685334213197983745, + "text": "Highlight of my day. No big deal. #CES2016 #AdamSilverissonice https://t.co/ARS15LRjKI", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1072103227, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 548, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1072103227/1357682472", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16002085", + "following": false, + "friends_count": 2895, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thinkprogress.org", + "url": "http://t.co/YV2uNXXlyL", + "expanded_url": "http://www.thinkprogress.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 74889, + "location": "Washington, DC", + "screen_name": "igorvolsky", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1265, + "name": "igorvolsky", + "profile_use_background_image": true, + "description": "Director of Video and Contributing Editor at @ThinkProgress. Contributing host @bpshow. Opinions, my own. E-mail: ivolsky@americanprogress.org", + "url": "http://t.co/YV2uNXXlyL", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", + "profile_background_color": "C6E2EE", + "created_at": "Tue Aug 26 20:17:23 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", + "favourites_count": 649, + "status": { + "retweet_count": 56, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685604356570411009", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/Reuters/status\u2026", + "url": "https://t.co/NQNchxzojN", + "expanded_url": "https://twitter.com/Reuters/status/685598272908582914", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:29:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685604356570411009, + "text": "In order to hit back against Obama's plan to allow 10,000 Syrian refugees into the country over the next year https://t.co/NQNchxzojN", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 65, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 16002085, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", + "statuses_count": 29775, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "84981428", + "following": false, + "friends_count": 258, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "braintreepayments.com", + "url": "https://t.co/Vc3MPaIBSU", + "expanded_url": "http://www.braintreepayments.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4601, + "location": "San Francisco, Chicago", + "screen_name": "williamready", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 171, + "name": "William Ready", + "profile_use_background_image": true, + "description": "SVP, Global Head of Product & Engineering at PayPal. CEO of @Braintree/@Venmo. Creating the easiest way to pay or get paid - online, mobile, in-store.", + "url": "https://t.co/Vc3MPaIBSU", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Oct 25 01:31:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", + "favourites_count": 1585, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "680164364804960256", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nyti.ms/1QX83Ix", + "url": "https://t.co/ZQLkL6vQil", + "expanded_url": "http://nyti.ms/1QX83Ix", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 24 23:13:16 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 680164364804960256, + "text": "Why it's important to understand diff between preferred stock (what investors get) & common (what employees get) https://t.co/ZQLkL6vQil", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 9, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 84981428, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2224, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84981428/1410287238", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "48477007", + "following": false, + "friends_count": 368, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 50981, + "location": "", + "screen_name": "BRush_25", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 943, + "name": "Brandon Rush", + "profile_use_background_image": true, + "description": "Instagram- brush_4\nsnapchat- showmeb", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 18 20:24:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", + "favourites_count": 7, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 4, + "truncated": false, + "retweeted": false, + "id_str": "685547921077485569", + "id": 685547921077485569, + "text": "Still listening to these Tory Lanez tapes \ud83d\udd25\ud83d\udd25\ud83d\udd25", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:45:35 +0000 2016", + "source": "Echofon", + "favorite_count": 30, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 48477007, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", + "statuses_count": 16019, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "4220691364", + "following": false, + "friends_count": 33, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sunsetwx.com", + "url": "https://t.co/EQ5OfbQIZd", + "expanded_url": "http://sunsetwx.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3019, + "location": "", + "screen_name": "sunset_wx", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 66, + "name": "Sunset Weather", + "profile_use_background_image": true, + "description": "Sunset & Sunrise Predictions: Model using an in-depth algorithm comprised of meteorological factors. Developed by @WxDeFlitch, @WxReppert, @hallettwx", + "url": "https://t.co/EQ5OfbQIZd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Nov 18 19:58:34 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", + "favourites_count": 3776, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 813355861, + "possibly_sensitive": false, + "id_str": "685629743136399361", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 262, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 462, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 790, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPYnEDWkAAXSrH.jpg", + "type": "photo", + "indices": [ + 49, + 72 + ], + "media_url": "http://pbs.twimg.com/media/CYPYnEDWkAAXSrH.jpg", + "display_url": "pic.twitter.com/eIAHING7d6", + "id_str": "685629733904748544", + "expanded_url": "http://twitter.com/sunset_wx/status/685629743136399361/photo/1", + "id": 685629733904748544, + "url": "https://t.co/eIAHING7d6" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jwmagettejr", + "id_str": "813355861", + "id": 813355861, + "indices": [ + 0, + 12 + ], + "name": "jimmy magette" + } + ] + }, + "created_at": "Sat Jan 09 01:10:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "813355861", + "place": null, + "in_reply_to_screen_name": "jwmagettejr", + "in_reply_to_status_id_str": "685628478230630400", + "truncated": false, + "id": 685629743136399361, + "text": "@jwmagettejr Gorgeous! Verified w/ our forecast! https://t.co/eIAHING7d6", + "coordinates": null, + "in_reply_to_status_id": 685628478230630400, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 4220691364, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1810, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4220691364/1447893477", + "is_translator": false + }, + { + "time_zone": "Greenland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "247901736", + "following": false, + "friends_count": 789, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/theblurbarbosa", + "url": "http://t.co/BLAOP8mM9P", + "expanded_url": "http://instagram.com/theblurbarbosa", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "C1C70A", + "geo_enabled": false, + "followers_count": 106398, + "location": "Brazil", + "screen_name": "TheBlurBarbosa", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1024, + "name": "Leandro Barbosa", + "profile_use_background_image": true, + "description": "Jogador de Basquete da NBA. \nThe official account of Leandro Barbosa, basketball player!", + "url": "http://t.co/BLAOP8mM9P", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", + "profile_background_color": "0EC704", + "created_at": "Sat Feb 05 20:31:51 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", + "favourites_count": 614, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685194677742624768", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 728, + "h": 728, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYJM7J7W8AA4RqX.jpg", + "type": "photo", + "indices": [ + 68, + 91 + ], + "media_url": "http://pbs.twimg.com/media/CYJM7J7W8AA4RqX.jpg", + "display_url": "pic.twitter.com/hF4aXpXgwK", + "id_str": "685194672474615808", + "expanded_url": "http://twitter.com/TheBlurBarbosa/status/685194677742624768/photo/1", + "id": 685194672474615808, + "url": "https://t.co/hF4aXpXgwK" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 32, + 41 + ], + "text": "BeepBeep" + }, + { + "indices": [ + 58, + 67 + ], + "text": "Warriors" + } + ], + "user_mentions": [ + { + "screen_name": "CWArtwork", + "id_str": "1120273860", + "id": 1120273860, + "indices": [ + 21, + 31 + ], + "name": "CW Artwork" + } + ] + }, + "created_at": "Thu Jan 07 20:21:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685194677742624768, + "text": "Love the art! Thanks @cwartwork #BeepBeep\n\nAdorei a arte! #Warriors https://t.co/hF4aXpXgwK", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 63, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 247901736, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", + "statuses_count": 5009, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/247901736/1406161704", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "858957830", + "following": false, + "friends_count": 265, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 41498, + "location": "", + "screen_name": "gswstats", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 518, + "name": "GSWStats", + "profile_use_background_image": true, + "description": "An official twitter account of the Golden State Warriors, featuring statistics, news and notes about the team throughout the season.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Oct 03 00:50:25 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", + "favourites_count": 9, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 86, + "truncated": false, + "retweeted": false, + "id_str": "685597797693833217", + "id": 685597797693833217, + "text": "Warriors, who are playing their first game of the season against the Blazers tonight, swept the season series (3-0) vs. Portland in 2014-15.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 23:03:47 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 252, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 858957830, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 9529, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/858957830/1401380224", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "22965624", + "following": false, + "friends_count": 587, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lafourcade.com.mx", + "url": "http://t.co/CV9kDVyOwc", + "expanded_url": "http://lafourcade.com.mx", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 1703741, + "location": "Mexico, DF", + "screen_name": "lafourcade", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5644, + "name": "Natalia Lafourcade", + "profile_use_background_image": true, + "description": "musico", + "url": "http://t.co/CV9kDVyOwc", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Mar 05 19:38:07 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", + "favourites_count": 249, + "status": { + "retweet_count": 20, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685254697653895169", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/sonymusiccol/s\u2026", + "url": "https://t.co/y0OpGl8LED", + "expanded_url": "https://twitter.com/sonymusiccol/status/685126161261707264", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 00:20:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "es", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685254697653895169, + "text": "Esto es para mis amigos de Colombia. \u00bfCu\u00e1l es su lugar favorito de este lindo pa\u00eds? https://t.co/y0OpGl8LED", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 129, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 22965624, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 6361, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/22965624/1425415118", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3099613624", + "following": false, + "friends_count": 130, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 86090, + "location": "", + "screen_name": "salmahayek", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 487, + "name": "Salma Hayek", + "profile_use_background_image": false, + "description": "After hundreds of impostors, years of procrastination, and a self-imposed allergy to technology, FINALLY I'm here. \u00a1Hola! It's Salma.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri Mar 20 15:48:51 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", + "favourites_count": 4, + "status": { + "retweet_count": 325, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677221425497837568", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "cosmopolitan.com/entertainment/\u2026", + "url": "https://t.co/tRlCbEeNej", + "expanded_url": "http://www.cosmopolitan.com/entertainment/news/a50859/amandla-sternberg-and-rowan-blanchard-feminists-of-the-year/", + "indices": [ + 71, + 94 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "rowblanchard", + "id_str": "307548363", + "id": 307548363, + "indices": [ + 57, + 70 + ], + "name": "Rowan Blanchard" + } + ] + }, + "created_at": "Wed Dec 16 20:19:04 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/3b77caf94bfc81fe.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -118.668404, + 33.704538 + ], + [ + -118.155409, + 33.704538 + ], + [ + -118.155409, + 34.337041 + ], + [ + -118.668404, + 34.337041 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Los Angeles, CA", + "id": "3b77caf94bfc81fe", + "name": "Los Angeles" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677221425497837568, + "text": "Congratulations to my girl I adore.I am so proud of you. @rowblanchard https://t.co/tRlCbEeNej", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1139, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 3099613624, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 96, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3099613624/1438298694", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18441988", + "following": false, + "friends_count": 304, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 245663, + "location": "", + "screen_name": "jrich23", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3053, + "name": "Jason Richardson", + "profile_use_background_image": true, + "description": "Father, Husband and just all around good guy!", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Dec 29 04:04:33 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", + "favourites_count": 5, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678360808783482882", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/_fgpM4R3ub/", + "url": "https://t.co/wWEzLBZC3h", + "expanded_url": "https://www.instagram.com/p/_fgpM4R3ub/", + "indices": [ + 100, + 123 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Dec 19 23:46:34 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678360808783482882, + "text": "Short 10 hour trip to the Bay! Had a great time at the Rainbow Center court dedication & camp.\u2026 https://t.co/wWEzLBZC3h", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 18441988, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", + "statuses_count": 2691, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18441988/1395676880", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15506669", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 73576, + "location": "", + "screen_name": "JeffBezos", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 879, + "name": "Jeff Bezos", + "profile_use_background_image": true, + "description": "Amazon, Blue Origin, Washington Post", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jul 20 22:38:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", + "favourites_count": 0, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1576, + "truncated": false, + "retweeted": false, + "id_str": "679116636310360067", + "id": 679116636310360067, + "text": "Congrats @SpaceX on landing Falcon's suborbital booster stage. Welcome to the club!", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SpaceX", + "id_str": "34743251", + "id": 34743251, + "indices": [ + 9, + 16 + ], + "name": "SpaceX" + } + ] + }, + "created_at": "Tue Dec 22 01:49:58 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 2546, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15506669, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15506669/1448361938", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "15930926", + "following": false, + "friends_count": 1445, + "entities": { + "description": { + "urls": [ + { + "display_url": "therapfan.com", + "url": "http://t.co/6ty3IIzh7f", + "expanded_url": "http://therapfan.com", + "indices": [ + 101, + 123 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "therapfan.com", + "url": "https://t.co/fVOL5FpVZ3", + "expanded_url": "http://www.therapfan.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": true, + "followers_count": 8751, + "location": "WI - STL - CA - ATL - tour", + "screen_name": "djtrackstar", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 194, + "name": "WRTJ", + "profile_use_background_image": true, + "description": "Professional Rap Fan. Tour DJ for Run the Jewels. The Smoking Section. WRTJ on Beats1. @peaceimages. http://t.co/6ty3IIzh7f fb/ig:trackstarthedj", + "url": "https://t.co/fVOL5FpVZ3", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Thu Aug 21 13:14:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", + "favourites_count": 6825, + "status": { + "retweet_count": 4, + "retweeted_status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685625187392327681", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/AP3I1R8zCDc", + "url": "https://t.co/Q8mqro31Na", + "expanded_url": "https://youtu.be/AP3I1R8zCDc", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [ + { + "indices": [ + 93, + 110 + ], + "text": "battleraphistory" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:52:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685625187392327681, + "text": "Rhymefest vs Mexicano - \"you can rap like this but u not goin win\" \ud83d\ude02 https://t.co/Q8mqro31Na #battleraphistory", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685625768668446721", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/AP3I1R8zCDc", + "url": "https://t.co/Q8mqro31Na", + "expanded_url": "https://youtu.be/AP3I1R8zCDc", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [ + { + "indices": [ + 104, + 121 + ], + "text": "battleraphistory" + } + ], + "user_mentions": [ + { + "screen_name": "Drect", + "id_str": "23562632", + "id": 23562632, + "indices": [ + 3, + 9 + ], + "name": "Drect Williams" + } + ] + }, + "created_at": "Sat Jan 09 00:54:56 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685625768668446721, + "text": "RT @Drect: Rhymefest vs Mexicano - \"you can rap like this but u not goin win\" \ud83d\ude02 https://t.co/Q8mqro31Na #battleraphistory", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 15930926, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", + "statuses_count": 32218, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15930926/1388895937", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1496009995", + "following": false, + "friends_count": 634, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/jikpa", + "url": "https://t.co/dNEeeChBZx", + "expanded_url": "http://linkedin.com/in/jikpa", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F3F3F3", + "profile_link_color": "990000", + "geo_enabled": true, + "followers_count": 612, + "location": "San Francisco, CA", + "screen_name": "jikpapa", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 6, + "name": "Janet Ikpa", + "profile_use_background_image": true, + "description": "Diversity Strategist @Twitter | Past life @Google | @Blackbirds & @WomEng Lead | UC Santa Barbara & Indiana University Alum | \u2764\ufe0f | Thoughts my own", + "url": "https://t.co/dNEeeChBZx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", + "profile_background_color": "EBEBEB", + "created_at": "Sun Jun 09 16:16:26 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DFDFDF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", + "favourites_count": 2743, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685559958620868608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/i/moments/6855\u2026", + "url": "https://t.co/aarBCxI4p1", + "expanded_url": "https://twitter.com/i/moments/685530257777098752?native_moment=true", + "indices": [ + 0, + 23 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:33:25 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685559958620868608, + "text": "https://t.co/aarBCxI4p1", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1496009995, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", + "statuses_count": 1057, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496009995/1431054902", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "100224999", + "following": false, + "friends_count": 183, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 507, + "location": "San Francisco", + "screen_name": "gabi_dee", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 14, + "name": "Gabrielle Delva", + "profile_use_background_image": false, + "description": "travel enthusiast, professional giggler, gif guru, forever in transition.", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Dec 29 13:27:37 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", + "favourites_count": 1373, + "status": { + "retweet_count": 19, + "retweeted_status": { + "retweet_count": 19, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684784175044362240", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "g.co/RISEAwards", + "url": "https://t.co/pu9kaeabaw", + "expanded_url": "http://g.co/RISEAwards", + "indices": [ + 112, + 135 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 17:10:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684784175044362240, + "text": "Know a great nonprofit that teaches Computer Science to students? Apply for the Google RISE Awards by Feb 19 at https://t.co/pu9kaeabaw", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684819789219368960", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "g.co/RISEAwards", + "url": "https://t.co/pu9kaeabaw", + "expanded_url": "http://g.co/RISEAwards", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "googlenonprofit", + "id_str": "257660675", + "id": 257660675, + "indices": [ + 3, + 19 + ], + "name": "GoogleforNonprofits" + } + ] + }, + "created_at": "Wed Jan 06 19:32:15 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684819789219368960, + "text": "RT @googlenonprofit: Know a great nonprofit that teaches Computer Science to students? Apply for the Google RISE Awards by Feb 19 at https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 100224999, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "statuses_count": 6503, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/100224999/1426546312", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "18768473", + "following": false, + "friends_count": 2133, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "open.spotify.com/user/brucedais\u2026", + "url": "https://t.co/l0e3ybjdUA", + "expanded_url": "https://open.spotify.com/user/brucedaisley", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 19662, + "location": "", + "screen_name": "brucedaisley", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 416, + "name": "Bruce Daisley", + "profile_use_background_image": true, + "description": "Typo strewn tweets about pop music. #HeForShe. Work at Twitter.", + "url": "https://t.co/l0e3ybjdUA", + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", + "profile_background_color": "352726", + "created_at": "Thu Jan 08 16:20:21 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", + "favourites_count": 14620, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "MintRoyale", + "in_reply_to_user_id": 34306180, + "in_reply_to_status_id_str": "685619607722418177", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685619993329930244", + "id": 685619993329930244, + "text": "@MintRoyale I'm already over it. The one person I followed clearly is going to police about my unsolicited attention", + "in_reply_to_user_id_str": "34306180", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MintRoyale", + "id_str": "34306180", + "id": 34306180, + "indices": [ + 0, + 11 + ], + "name": "Mint Royale" + } + ] + }, + "created_at": "Sat Jan 09 00:31:59 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685619607722418177, + "lang": "en" + }, + "default_profile_image": false, + "id": 18768473, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", + "statuses_count": 20372, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18768473/1441290267", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "60900903", + "following": false, + "friends_count": 2729, + "entities": { + "description": { + "urls": [ + { + "display_url": "squ.re/1MXEAse", + "url": "https://t.co/lZueerHDOb", + "expanded_url": "http://squ.re/1MXEAse", + "indices": [ + 125, + 148 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mrtodspies.com", + "url": "https://t.co/Bu7ML9v7ZC", + "expanded_url": "http://www.mrtodspies.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2257, + "location": "Aqui Estoy", + "screen_name": "MrTodsPies", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 71, + "name": "Mr. Tod", + "profile_use_background_image": true, + "description": "CEO and Founder of Mr Tod's Pie Factory - ABC Shark Tank's First Winner - Sweet Potato Pie King - Check out my Square Story: https://t.co/lZueerHDOb", + "url": "https://t.co/Bu7ML9v7ZC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Tue Jul 28 13:20:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", + "favourites_count": 423, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Justsayin53", + "in_reply_to_user_id": 406640706, + "in_reply_to_status_id_str": "685056214812602368", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685085098476191744", + "id": 685085098476191744, + "text": "@Justsayin53 GM! All is well in the land of #pies - baking away!", + "in_reply_to_user_id_str": "406640706", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 44, + 49 + ], + "text": "pies" + } + ], + "user_mentions": [ + { + "screen_name": "Justsayin53", + "id_str": "406640706", + "id": 406640706, + "indices": [ + 0, + 12 + ], + "name": "Wendy" + } + ] + }, + "created_at": "Thu Jan 07 13:06:30 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685056214812602368, + "lang": "en" + }, + "default_profile_image": false, + "id": 60900903, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", + "statuses_count": 2574, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/60900903/1432911758", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6148472", + "following": false, + "friends_count": 57, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gotinder.com", + "url": "https://t.co/801oYHR78b", + "expanded_url": "http://gotinder.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7031, + "location": "", + "screen_name": "seanrad", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 390, + "name": "Sean Rad", + "profile_use_background_image": true, + "description": "Founder & CEO of Tinder", + "url": "https://t.co/801oYHR78b", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri May 18 22:24:10 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", + "favourites_count": 3, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "664448755433779200", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "tinder.com/@sean", + "url": "https://t.co/NygIrxGtnu", + "expanded_url": "http://www.tinder.com/@sean", + "indices": [ + 18, + 41 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Nov 11 14:25:02 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 664448755433779200, + "text": "Like me on Tinder https://t.co/NygIrxGtnu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 18, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 6148472, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 2153, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2163177444", + "following": false, + "friends_count": 61, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 18065, + "location": "", + "screen_name": "HistOpinion", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 299, + "name": "Historical Opinion", + "profile_use_background_image": true, + "description": "Tweets from historical public opinion surveys, US and around the world, 1935-yesterday. Curated by @pashulman.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Oct 29 16:37:52 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", + "favourites_count": 300, + "status": { + "retweet_count": 15, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684902543877476353", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 614, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 360, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 204, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYDoqYmWQAAdVCK.jpg", + "type": "photo", + "indices": [ + 114, + 137 + ], + "media_url": "http://pbs.twimg.com/media/CYDoqYmWQAAdVCK.jpg", + "display_url": "pic.twitter.com/PYMJH91nLw", + "id_str": "684802958215757824", + "expanded_url": "http://twitter.com/HistOpinion/status/684902543877476353/photo/1", + "id": 684802958215757824, + "url": "https://t.co/PYMJH91nLw" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 01:01:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684902543877476353, + "text": "US Jun 16 \u201954: If the US gets into a fighting war in Indochina, should\nwe drop hydrogen bombs on cities in China? https://t.co/PYMJH91nLw", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 2163177444, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1272, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2163177444/1398739322", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4257979872", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [ + { + "display_url": "on.mash.to/1SWgZ0q", + "url": "https://t.co/XCv9Qbk0fi", + "expanded_url": "http://on.mash.to/1SWgZ0q", + "indices": [ + 105, + 128 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3D4999", + "geo_enabled": false, + "followers_count": 53019, + "location": "", + "screen_name": "ParisVictims", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 215, + "name": "En m\u00e9moire", + "profile_use_background_image": false, + "description": "One tweet for every victim of the terror attacks in Paris on Nov. 13, 2015. This is a @Mashable project.\nhttps://t.co/XCv9Qbk0fi", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", + "profile_background_color": "969494", + "created_at": "Mon Nov 16 15:41:07 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 165, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684490643801018369", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 235, + "resize": "fit" + }, + "large": { + "w": 528, + "h": 366, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 528, + "h": 366, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX_MkmUWYAAv2nw.png", + "type": "photo", + "indices": [ + 112, + 135 + ], + "media_url": "http://pbs.twimg.com/media/CX_MkmUWYAAv2nw.png", + "display_url": "pic.twitter.com/hhsLwl89oq", + "id_str": "684490597516861440", + "expanded_url": "http://twitter.com/ParisVictims/status/684490643801018369/photo/1", + "id": 684490597516861440, + "url": "https://t.co/hhsLwl89oq" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 101, + 111 + ], + "text": "enm\u00e9moire" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 21:44:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684490643801018369, + "text": "Ren\u00e9 Bichon, 62. France. \nLoved life even though it wasn't always easy. \nVery funny. A \"bon vivant.\" #enm\u00e9moire https://t.co/hhsLwl89oq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 314, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 4257979872, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 130, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4257979872/1447689123", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "562267840", + "following": false, + "friends_count": 95, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "raine.com", + "url": "http://t.co/raiVzM9CC2", + "expanded_url": "http://www.raine.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 465, + "location": "NY/LA/SFO/LONDON/ASIA", + "screen_name": "JoeRavitch", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 8, + "name": "Joe Ravitch", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/raiVzM9CC2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 24 19:09:33 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", + "favourites_count": 60, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684484640321748997", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/NRA/status/684\u2026", + "url": "https://t.co/zpDO52WGJD", + "expanded_url": "https://twitter.com/NRA/status/684469926707335168", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 21:20:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684484640321748997, + "text": "These people are more dangerous to American freedom than ISIS ever will be https://t.co/zpDO52WGJD", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 562267840, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 325, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "928744998", + "following": false, + "friends_count": 812, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "wakeuptopolitics.com", + "url": "https://t.co/Mwu8QKYT05", + "expanded_url": "http://www.wakeuptopolitics.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1722, + "location": "St. Louis (now), DC (future)", + "screen_name": "WakeUp2Politics", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 39, + "name": "Gabe Fleisher", + "profile_use_background_image": false, + "description": "14 yr old Editor, Wake Up To Politics, daily political newsletter. Author. Political junkie. Also attending middle school in my spare time. RTs \u2260 endorsements.", + "url": "https://t.co/Mwu8QKYT05", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Nov 06 01:20:43 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", + "favourites_count": 2832, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685439707459665920", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wakeuptopolitics.com/subscribe", + "url": "https://t.co/ch4BPL5do8", + "expanded_url": "http://wakeuptopolitics.com/subscribe", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 12:35:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685439707459665920, + "text": "Looking for an informative daily political update? Sign up to get Wake Up To Politics in your inbox every morning: https://t.co/ch4BPL5do8", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 928744998, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", + "statuses_count": 3668, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/928744998/1452145580", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2773453886", + "following": false, + "friends_count": 32, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jumpshotgenie.com", + "url": "http://t.co/IrZ3XgzXdT", + "expanded_url": "http://www.jumpshotgenie.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7718, + "location": "Charlotte, NC", + "screen_name": "DC__for3", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 44, + "name": "Dell Curry", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/IrZ3XgzXdT", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Aug 27 14:43:19 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", + "favourites_count": 35, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "UnderArmour", + "in_reply_to_user_id": 23114836, + "in_reply_to_status_id_str": "565328922259492870", + "retweet_count": 7, + "truncated": false, + "retweeted": false, + "id_str": "565627064007811072", + "id": 565627064007811072, + "text": "@UnderArmour thanks for keeping us looking good!", + "in_reply_to_user_id_str": "23114836", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "UnderArmour", + "id_str": "23114836", + "id": 23114836, + "indices": [ + 0, + 12 + ], + "name": "Under Armour" + } + ] + }, + "created_at": "Wed Feb 11 21:42:55 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 65, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 565328922259492870, + "lang": "en" + }, + "default_profile_image": false, + "id": 2773453886, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 69, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2773453886/1409150929", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "798048997", + "following": false, + "friends_count": 2, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "perigee.se", + "url": "http://t.co/2P0WOpJTeV", + "expanded_url": "http://www.perigee.se", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 447, + "location": "", + "screen_name": "PerigeeApps", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 12, + "name": "Perigee", + "profile_use_background_image": true, + "description": "Crafting useful and desirable apps that solve life's problems in a delightful way.", + "url": "http://t.co/2P0WOpJTeV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Sun Sep 02 11:11:01 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", + "favourites_count": 106, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "BenAlexx", + "in_reply_to_user_id": 272510324, + "in_reply_to_status_id_str": "684084532673417216", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684271791339081728", + "id": 684271791339081728, + "text": "@BenAlexx on our wish list", + "in_reply_to_user_id_str": "272510324", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BenAlexx", + "id_str": "272510324", + "id": 272510324, + "indices": [ + 0, + 9 + ], + "name": "Ben Byriel" + } + ] + }, + "created_at": "Tue Jan 05 07:14:42 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684084532673417216, + "lang": "en" + }, + "default_profile_image": false, + "id": 798048997, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 433, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/798048997/1447315639", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "37861434", + "following": false, + "friends_count": 6, + "entities": { + "description": { + "urls": [ + { + "display_url": "amzn.to/PayjDo", + "url": "http://t.co/VtCEbuw6KH", + "expanded_url": "http://amzn.to/PayjDo", + "indices": [ + 133, + 155 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "eqbot.com", + "url": "http://t.co/EznRBcY7a7", + "expanded_url": "http://eqbot.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 124430, + "location": "San Francisco, CA", + "screen_name": "earthquakesSF", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1539, + "name": "SF QuakeBot", + "profile_use_background_image": true, + "description": "I am a robot that live-tweets earthquakes in the San Francisco Bay area. Built by @billsnitzer. Data is from the USGS. Get prepared: http://t.co/VtCEbuw6KH", + "url": "http://t.co/EznRBcY7a7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue May 05 04:53:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685564529225277440", + "geo": { + "coordinates": [ + 37.7738342, + -122.1374969 + ], + "type": "Point" + }, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "eqbot.com/gAY", + "url": "https://t.co/moSo8varxs", + "expanded_url": "http://eqbot.com/gAY", + "indices": [ + 84, + 107 + ] + }, + { + "display_url": "eqbot.com/gA9", + "url": "https://t.co/5Qt0pRkUQW", + "expanded_url": "http://eqbot.com/gA9", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:51:35 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/ab2f2fac83aa388d.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.34266, + 37.699279 + ], + [ + -122.114711, + 37.699279 + ], + [ + -122.114711, + 37.8847092 + ], + [ + -122.34266, + 37.8847092 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Oakland, CA", + "id": "ab2f2fac83aa388d", + "name": "Oakland" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685564529225277440, + "text": "A 1.5 magnitude earthquake occurred 3.11mi NNE of San Leandro, California. Details: https://t.co/moSo8varxs Map: https://t.co/5Qt0pRkUQW", + "coordinates": { + "coordinates": [ + -122.1374969, + 37.7738342 + ], + "type": "Point" + }, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "EQBot" + }, + "default_profile_image": false, + "id": 37861434, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7780, + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "249334021", + "following": false, + "friends_count": 55, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "opinionator.blogs.nytimes.com/category/fixes/", + "url": "http://t.co/dSgWPDl048", + "expanded_url": "http://opinionator.blogs.nytimes.com/category/fixes/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7147, + "location": "New York, NY", + "screen_name": "nytimesfixes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 402, + "name": "NYT Fixes Blog", + "profile_use_background_image": true, + "description": "Fixes explores solutions to major social problems. Each week, it examines creative initiatives that can tell us about the difference between success and failure", + "url": "http://t.co/dSgWPDl048", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", + "profile_background_color": "C0DEED", + "created_at": "Tue Feb 08 21:00:21 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", + "favourites_count": 3, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "637290541017899008", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1E5KU38", + "url": "http://t.co/FqIFItO9DV", + "expanded_url": "http://bit.ly/1E5KU38", + "indices": [ + 106, + 128 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "poptech", + "id_str": "14514411", + "id": 14514411, + "indices": [ + 42, + 50 + ], + "name": "PopTech" + } + ] + }, + "created_at": "Fri Aug 28 15:47:59 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 637290541017899008, + "text": "SJN is sponsoring one journalist to go to @poptech conference Oct 22-24 in Camden, ME. Last day to apply! http://t.co/FqIFItO9DV", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "637290601596198912", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1E5KU38", + "url": "http://t.co/FqIFItO9DV", + "expanded_url": "http://bit.ly/1E5KU38", + "indices": [ + 123, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "dnbornstein", + "id_str": "17669950", + "id": 17669950, + "indices": [ + 3, + 15 + ], + "name": "David Bornstein" + }, + { + "screen_name": "poptech", + "id_str": "14514411", + "id": 14514411, + "indices": [ + 59, + 67 + ], + "name": "PopTech" + } + ] + }, + "created_at": "Fri Aug 28 15:48:14 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 637290601596198912, + "text": "RT @dnbornstein: SJN is sponsoring one journalist to go to @poptech conference Oct 22-24 in Camden, ME. Last day to apply! http://t.co/FqIF\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 249334021, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", + "statuses_count": 349, + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "360391686", + "following": false, + "friends_count": 707, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chetfaker.com/shows", + "url": "https://t.co/es4xPMVZSh", + "expanded_url": "http://chetfaker.com/shows", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 81997, + "location": "Australia", + "screen_name": "Chet_Faker", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 559, + "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186", + "profile_use_background_image": true, + "description": "unnoficial fan account *parody* no way affiliated with Chet Faker. we \u2665\ufe0fChet Kawai please follow for latest music & check website for more news", + "url": "https://t.co/es4xPMVZSh", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Aug 23 04:05:11 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", + "favourites_count": 12083, + "status": { + "retweet_count": 8, + "retweeted_status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685545101813141504", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", + "display_url": "pic.twitter.com/60GJ7KHdXk", + "id_str": "685545100445749248", + "expanded_url": "http://twitter.com/shazi_LA/status/685545101813141504/photo/1", + "id": 685545100445749248, + "url": "https://t.co/60GJ7KHdXk" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "GovBallNYC", + "id_str": "241426680", + "id": 241426680, + "indices": [ + 20, + 31 + ], + "name": "The Governors Ball" + }, + { + "screen_name": "Thundercat", + "id_str": "272071608", + "id": 272071608, + "indices": [ + 85, + 96 + ], + "name": "Thunder....cat" + }, + { + "screen_name": "Chet_Faker", + "id_str": "360391686", + "id": 360391686, + "indices": [ + 103, + 114 + ], + "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186" + } + ] + }, + "created_at": "Fri Jan 08 19:34:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685545101813141504, + "text": "Oh hey, look at the @GovBallNYC lineup... some of my faves here! (I'm looking at you @Thundercat & @Chet_Faker) https://t.co/60GJ7KHdXk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 35, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685546274679066624", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "source_status_id_str": "685545101813141504", + "url": "https://t.co/60GJ7KHdXk", + "media_url": "http://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", + "source_user_id_str": "226243669", + "id_str": "685545100445749248", + "id": 685545100445749248, + "media_url_https": "https://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", + "type": "photo", + "indices": [ + 130, + 144 + ], + "source_status_id": 685545101813141504, + "source_user_id": 226243669, + "display_url": "pic.twitter.com/60GJ7KHdXk", + "expanded_url": "http://twitter.com/shazi_LA/status/685545101813141504/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "shazi_LA", + "id_str": "226243669", + "id": 226243669, + "indices": [ + 3, + 12 + ], + "name": "Shazi_LA" + }, + { + "screen_name": "GovBallNYC", + "id_str": "241426680", + "id": 241426680, + "indices": [ + 34, + 45 + ], + "name": "The Governors Ball" + }, + { + "screen_name": "Thundercat", + "id_str": "272071608", + "id": 272071608, + "indices": [ + 99, + 110 + ], + "name": "Thunder....cat" + }, + { + "screen_name": "Chet_Faker", + "id_str": "360391686", + "id": 360391686, + "indices": [ + 117, + 128 + ], + "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186" + } + ] + }, + "created_at": "Fri Jan 08 19:39:03 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685546274679066624, + "text": "RT @shazi_LA: Oh hey, look at the @GovBallNYC lineup... some of my faves here! (I'm looking at you @Thundercat & @Chet_Faker) https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 360391686, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", + "statuses_count": 8616, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/360391686/1363912234", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "748615879", + "following": false, + "friends_count": 585, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "angstrom.io", + "url": "https://t.co/bwG2E1VYFG", + "expanded_url": "http://angstrom.io", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 282, + "location": "37.7750\u00b0 N, 122.4183\u00b0 W", + "screen_name": "cacoco", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 8, + "name": "Christopher Coco", + "profile_use_background_image": true, + "description": "life in small doses.", + "url": "https://t.co/bwG2E1VYFG", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Fri Aug 10 04:35:36 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", + "favourites_count": 4543, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683060423336148992", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 453, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 801, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 767, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXq300UUMAAqlli.jpg", + "type": "photo", + "indices": [ + 23, + 46 + ], + "media_url": "http://pbs.twimg.com/media/CXq300UUMAAqlli.jpg", + "display_url": "pic.twitter.com/O9ES2jxF83", + "id_str": "683060411524984832", + "expanded_url": "http://twitter.com/cacoco/status/683060423336148992/photo/1", + "id": 683060411524984832, + "url": "https://t.co/O9ES2jxF83" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 9, + 22 + ], + "text": "HappyNewYear" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 23:01:10 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683060423336148992, + "text": "Day 700. #HappyNewYear https://t.co/O9ES2jxF83", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 748615879, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", + "statuses_count": 1975, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/748615879/1352437653", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "2652536876", + "following": false, + "friends_count": 102, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pepsico.com", + "url": "https://t.co/SDLqDs6Xfd", + "expanded_url": "http://pepsico.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3510, + "location": "purchase ny", + "screen_name": "IndraNooyi", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "Indra Nooyi", + "profile_use_background_image": true, + "description": "CEO @PEPSICO", + "url": "https://t.co/SDLqDs6Xfd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jul 17 01:35:59 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", + "favourites_count": 7, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 9, + "truncated": false, + "retweeted": false, + "id_str": "682716095342587906", + "id": 682716095342587906, + "text": "Happy New Year to all with hopes for a peaceful and harmonious 2016", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 00:12:56 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 35, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2652536876, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 12, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652536876/1446586148", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3274940484", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 395, + "location": "", + "screen_name": "getpolled", + "verified": false, + "has_extended_profile": false, + "protected": true, + "listed_count": 1, + "name": "@GetPolled", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", + "profile_background_color": "3B94D9", + "created_at": "Sat Jul 11 00:28:05 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 3274940484, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 42, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3274940484/1437009659", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "41783", + "following": false, + "friends_count": 74, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "louiemantia.com", + "url": "https://t.co/MWe41e6Yhi", + "expanded_url": "http://louiemantia.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "ABB8C2", + "geo_enabled": true, + "followers_count": 17113, + "location": "Portland", + "screen_name": "mantia", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 1118, + "name": "Louie Mantia", + "profile_use_background_image": false, + "description": "America's Favorite Icon Designer, Partner @Parakeet", + "url": "https://t.co/MWe41e6Yhi", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", + "profile_background_color": "A8B4BF", + "created_at": "Tue Dec 05 02:40:37 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", + "favourites_count": 11668, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685636553998118914", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", + "type": "photo", + "indices": [ + 74, + 97 + ], + "media_url": "http://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", + "display_url": "pic.twitter.com/WyQjkr55BZ", + "id_str": "685636553616408576", + "expanded_url": "http://twitter.com/Parakeet/status/685636553998118914/photo/1", + "id": 685636553616408576, + "url": "https://t.co/WyQjkr55BZ" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "dribbble.com/shots/2446577-\u2026", + "url": "https://t.co/mDgJ3qH7ro", + "expanded_url": "https://dribbble.com/shots/2446577-Kitchen-Sync-App-Icon", + "indices": [ + 50, + 73 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kitchensync", + "id_str": "15569016", + "id": 15569016, + "indices": [ + 14, + 26 + ], + "name": "billy kitchen" + }, + { + "screen_name": "dribbble", + "id_str": "14351575", + "id": 14351575, + "indices": [ + 39, + 48 + ], + "name": "Dribbble" + } + ] + }, + "created_at": "Sat Jan 09 01:37:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685636553998118914, + "text": "Check out our @kitchensync app icon on @dribbble! https://t.co/mDgJ3qH7ro https://t.co/WyQjkr55BZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685636570519441408", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 512, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 300, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 170, + "resize": "fit" + } + }, + "source_status_id_str": "685636553998118914", + "url": "https://t.co/WyQjkr55BZ", + "media_url": "http://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", + "source_user_id_str": "2966622229", + "id_str": "685636553616408576", + "id": 685636553616408576, + "media_url_https": "https://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", + "type": "photo", + "indices": [ + 88, + 111 + ], + "source_status_id": 685636553998118914, + "source_user_id": 2966622229, + "display_url": "pic.twitter.com/WyQjkr55BZ", + "expanded_url": "http://twitter.com/Parakeet/status/685636553998118914/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "dribbble.com/shots/2446577-\u2026", + "url": "https://t.co/mDgJ3qH7ro", + "expanded_url": "https://dribbble.com/shots/2446577-Kitchen-Sync-App-Icon", + "indices": [ + 64, + 87 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Parakeet", + "id_str": "2966622229", + "id": 2966622229, + "indices": [ + 3, + 12 + ], + "name": "Parakeet" + }, + { + "screen_name": "kitchensync", + "id_str": "15569016", + "id": 15569016, + "indices": [ + 28, + 40 + ], + "name": "billy kitchen" + }, + { + "screen_name": "dribbble", + "id_str": "14351575", + "id": 14351575, + "indices": [ + 53, + 62 + ], + "name": "Dribbble" + } + ] + }, + "created_at": "Sat Jan 09 01:37:51 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685636570519441408, + "text": "RT @Parakeet: Check out our @kitchensync app icon on @dribbble! https://t.co/mDgJ3qH7ro https://t.co/WyQjkr55BZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Mac" + }, + "default_profile_image": false, + "id": 41783, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", + "statuses_count": 102450, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "817288", + "following": false, + "friends_count": 4457, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "techmeme.com", + "url": "http://t.co/2kJ3FyTtAJ", + "expanded_url": "http://techmeme.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "1F98C7", + "geo_enabled": true, + "followers_count": 56181, + "location": "SF: Disruptopia, USA", + "screen_name": "gaberivera", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2313, + "name": "Gabe Rivera", + "profile_use_background_image": true, + "description": "I run Techmeme.\r\nSometimes I tweet what I mean. Sometimes I tweet the opposite. Retweets are endorphins.", + "url": "http://t.co/2kJ3FyTtAJ", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", + "profile_background_color": "C6E2EE", + "created_at": "Wed Mar 07 06:23:51 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C6E2EE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", + "favourites_count": 13568, + "status": { + "retweet_count": 3, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685578243668193280", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/mediagazer/sta\u2026", + "url": "https://t.co/AzTWnMzdiF", + "expanded_url": "https://twitter.com/mediagazer/status/685208531683782656", + "indices": [ + 29, + 52 + ] + }, + { + "display_url": "twitter.com/alexweprin/sta\u2026", + "url": "https://t.co/paReLxvZ6B", + "expanded_url": "https://twitter.com/alexweprin/status/685558233407315968", + "indices": [ + 53, + 76 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:46:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685578243668193280, + "text": "Reminder about who's hiring! https://t.co/AzTWnMzdiF https://t.co/paReLxvZ6B", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 817288, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", + "statuses_count": 11636, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/817288/1401467981", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1201139012", + "following": false, + "friends_count": 29, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkd.in/1uiUZno", + "url": "http://t.co/gi5nkD1WcX", + "expanded_url": "http://linkd.in/1uiUZno", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2768, + "location": "Cleveland, Ohio", + "screen_name": "TobyCosgroveMD", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 81, + "name": "Toby Cosgrove, MD", + "profile_use_background_image": false, + "description": "President and CEO, @ClevelandClinic. Cardiothoracic surgeon. U.S. Air Force Veteran.", + "url": "http://t.co/gi5nkD1WcX", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", + "profile_background_color": "065EA8", + "created_at": "Wed Feb 20 13:56:57 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", + "favourites_count": 15, + "status": { + "retweet_count": 29, + "retweeted_status": { + "retweet_count": 29, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684354635155419139", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amp.twimg.com/v/1fef475b-c57\u2026", + "url": "https://t.co/JIWcrSTFFC", + "expanded_url": "https://amp.twimg.com/v/1fef475b-c575-441e-909d-48f4a7ffe2b2", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [ + { + "indices": [ + 71, + 84 + ], + "text": "CCHeartbeats" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 12:43:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684354635155419139, + "text": "On a frigid morning for most across the U.S., a warm and fuzzy moment. #CCHeartbeats\nhttps://t.co/JIWcrSTFFC", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 31, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685299061470015488", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amp.twimg.com/v/1fef475b-c57\u2026", + "url": "https://t.co/JIWcrSTFFC", + "expanded_url": "https://amp.twimg.com/v/1fef475b-c575-441e-909d-48f4a7ffe2b2", + "indices": [ + 106, + 129 + ] + } + ], + "hashtags": [ + { + "indices": [ + 92, + 105 + ], + "text": "CCHeartbeats" + } + ], + "user_mentions": [ + { + "screen_name": "ClevelandClinic", + "id_str": "24236494", + "id": 24236494, + "indices": [ + 3, + 19 + ], + "name": "Cleveland Clinic" + } + ] + }, + "created_at": "Fri Jan 08 03:16:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685299061470015488, + "text": "RT @ClevelandClinic: On a frigid morning for most across the U.S., a warm and fuzzy moment. #CCHeartbeats\nhttps://t.co/JIWcrSTFFC", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1201139012, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 118, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1201139012/1415028437", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "4071934995", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 123031, + "location": "twitter.com", + "screen_name": "polls", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 211, + "name": "polls", + "profile_use_background_image": true, + "description": "the most important polls on twitter. Brought to you by @BuzzFeed. DM us your poll ideas!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Oct 30 02:09:51 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", + "favourites_count": 85, + "status": { + "retweet_count": 70, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681553833370202112", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bzfd.it/1kod7ZI", + "url": "https://t.co/F1ISG4AalR", + "expanded_url": "http://bzfd.it/1kod7ZI", + "indices": [ + 61, + 84 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Dec 28 19:14:31 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681553833370202112, + "text": "POLL: Who do you think Rey actually is? (WARNING: SPOILERS!) https://t.co/F1ISG4AalR", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 221, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 4071934995, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 812, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4071934995/1446225664", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "25084660", + "following": false, + "friends_count": 791, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 422237, + "location": "", + "screen_name": "arzE", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2852, + "name": "Ezra Koenig", + "profile_use_background_image": true, + "description": "vampire weekend inc.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Mar 18 14:52:55 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", + "favourites_count": 5759, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "FiyaSturm", + "in_reply_to_user_id": 229010922, + "in_reply_to_status_id_str": "684485785580617728", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684587959090151425", + "id": 684587959090151425, + "text": "@FiyaSturm sure is", + "in_reply_to_user_id_str": "229010922", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "FiyaSturm", + "id_str": "229010922", + "id": 229010922, + "indices": [ + 0, + 10 + ], + "name": "Zaire" + } + ] + }, + "created_at": "Wed Jan 06 04:11:03 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 19, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684485785580617728, + "lang": "en" + }, + "default_profile_image": false, + "id": 25084660, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", + "statuses_count": 9309, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/25084660/1436462636", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "1081562149", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [ + { + "display_url": "favstar.fm/users/seinfeld\u2026", + "url": "https://t.co/GCOoEYISti", + "expanded_url": "http://favstar.fm/users/seinfeld2000", + "indices": [ + 71, + 94 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 101799, + "location": "", + "screen_name": "Seinfeld2000", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 779, + "name": "Seinfeld Current Day", + "profile_use_background_image": true, + "description": "Imagen Seinfeld was never canceled and still NBC comedy program today? https://t.co/GCOoEYISti", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jan 12 02:17:49 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", + "favourites_count": 56611, + "status": { + "retweet_count": 223, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685612408102989825", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 539, + "resize": "fit" + }, + "medium": { + "w": 473, + "h": 750, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 473, + "h": 750, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPI0VvUsAAofpc.jpg", + "type": "photo", + "indices": [ + 25, + 48 + ], + "media_url": "http://pbs.twimg.com/media/CYPI0VvUsAAofpc.jpg", + "display_url": "pic.twitter.com/BYALvuWTr5", + "id_str": "685612369804832768", + "expanded_url": "http://twitter.com/Seinfeld2000/status/685612408102989825/photo/1", + "id": 685612369804832768, + "url": "https://t.co/BYALvuWTr5" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:01:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685612408102989825, + "text": "*watches bee movie once* https://t.co/BYALvuWTr5", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 542, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 1081562149, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", + "statuses_count": 6596, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1081562149/1452223878", + "is_translator": false + }, + { + "time_zone": "Mountain Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "23699191", + "following": false, + "friends_count": 524, + "entities": { + "description": { + "urls": [ + { + "display_url": "noisey.vice.com/en_uk/noisey-s", + "url": "https://t.co/oXek0Yp2he", + "expanded_url": "http://noisey.vice.com/en_uk/noisey-s", + "indices": [ + 75, + 98 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "helloskepta.com", + "url": "https://t.co/LCjnqqo5cF", + "expanded_url": "http://www.helloskepta.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 667002, + "location": "", + "screen_name": "Skepta", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1289, + "name": "SKEPTA", + "profile_use_background_image": true, + "description": "Bookings: grace@metallicmgmt.com jonathanbriks@theagencygroup.com\n\n#TopBoy https://t.co/oXek0Yp2he\u2026", + "url": "https://t.co/LCjnqqo5cF", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", + "profile_background_color": "131516", + "created_at": "Wed Mar 11 01:31:36 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", + "favourites_count": 1, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "AleshaOfficial", + "in_reply_to_user_id": 165725207, + "in_reply_to_status_id_str": "685597432613351424", + "retweet_count": 10, + "truncated": false, + "retweeted": false, + "id_str": "685600790900113408", + "id": 685600790900113408, + "text": "@AleshaOfficial \ud83c\udfc6", + "in_reply_to_user_id_str": "165725207", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AleshaOfficial", + "id_str": "165725207", + "id": 165725207, + "indices": [ + 0, + 15 + ], + "name": "Alesha Dixon" + } + ] + }, + "created_at": "Fri Jan 08 23:15:41 +0000 2016", + "source": "Echofon", + "favorite_count": 42, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685597432613351424, + "lang": "und" + }, + "default_profile_image": false, + "id": 23699191, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 30136, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23699191/1431890723", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "937499232", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "malala.org", + "url": "http://t.co/nyY0R0rWL2", + "expanded_url": "http://malala.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": false, + "followers_count": 64751, + "location": "Pakistan", + "screen_name": "Malala", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 311, + "name": "Malala Yousafzai", + "profile_use_background_image": false, + "description": "Please follow @MalalaFund for Tweets from Malala and updates on her work.", + "url": "http://t.co/nyY0R0rWL2", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Nov 09 18:34:52 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", + "favourites_count": 0, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 937499232, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 0, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/937499232/1444529280", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2477802067", + "following": false, + "friends_count": 60, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "satyarthi.org", + "url": "http://t.co/p9X5Y5bZLm", + "expanded_url": "http://www.satyarthi.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 179748, + "location": "", + "screen_name": "k_satyarthi", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 513, + "name": "Kailash Satyarthi", + "profile_use_background_image": true, + "description": "Nobel Peace Prize 2014 winner. \nFounder-Global March Against Child Labour (@kNOwchildlabour) &\nBachpan Bachao Andolan. RTs not endorsements.", + "url": "http://t.co/p9X5Y5bZLm", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon May 05 04:07:33 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", + "favourites_count": 173, + "status": { + "retweet_count": 29, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685387713197903872", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 224, + "resize": "fit" + }, + "large": { + "w": 641, + "h": 423, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 395, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYL8d1aVAAAVKxG.jpg", + "type": "photo", + "indices": [ + 111, + 134 + ], + "media_url": "http://pbs.twimg.com/media/CYL8d1aVAAAVKxG.jpg", + "display_url": "pic.twitter.com/ER9hXrJe2x", + "id_str": "685387682797649920", + "expanded_url": "http://twitter.com/k_satyarthi/status/685387713197903872/photo/1", + "id": 685387682797649920, + "url": "https://t.co/ER9hXrJe2x" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 0, + 16 + ], + "text": "AzadBachpanKiOr" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 09:08:59 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685387713197903872, + "text": "#AzadBachpanKiOr\u00a0is a salutation to the millions of children worldwide who are still deprived of their future. https://t.co/ER9hXrJe2x", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 65, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2477802067, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 803, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14439813", + "following": false, + "friends_count": 334, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": true, + "followers_count": 58954, + "location": "atlanta & nyc", + "screen_name": "wnd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 412, + "name": "wendy clark", + "profile_use_background_image": true, + "description": "mom :: ceo ddb/na :: relentless optimist", + "url": null, + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", + "profile_background_color": "352726", + "created_at": "Sat Apr 19 02:18:29 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", + "favourites_count": 8834, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685188590213705729", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "continuethethread.com", + "url": "https://t.co/aBHKoW0rIh", + "expanded_url": "http://continuethethread.com", + "indices": [ + 95, + 118 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "asergeeva", + "id_str": "40744699", + "id": 40744699, + "indices": [ + 123, + 133 + ], + "name": "Anna Sergeeva" + }, + { + "screen_name": "shak", + "id_str": "17977475", + "id": 17977475, + "indices": [ + 134, + 139 + ], + "name": "Shakil Khan" + } + ] + }, + "created_at": "Thu Jan 07 19:57:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685188590213705729, + "text": "This simplest ideas are often the loveliest. Receive beautiful handwritten quotes in the mail. https://t.co/aBHKoW0rIh via @asergeeva @shak", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 10, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14439813, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 4316, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14439813/1451700372", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "31898295", + "following": false, + "friends_count": 3108, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "A0C5C7", + "profile_link_color": "FF3300", + "geo_enabled": true, + "followers_count": 4300, + "location": "", + "screen_name": "Derella", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 68, + "name": "matt derella", + "profile_use_background_image": true, + "description": "Rookie Dad, Lucky Husband, Ice Cream Addict. Remember, You Have Superpowers.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", + "profile_background_color": "709397", + "created_at": "Thu Apr 16 15:34:22 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "86A4A6", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", + "favourites_count": 6095, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "adambain", + "in_reply_to_user_id": 14253109, + "in_reply_to_status_id_str": "685305534791065600", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685305641867423745", + "id": 685305641867423745, + "text": "@adambain @jack ditto", + "in_reply_to_user_id_str": "14253109", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "adambain", + "id_str": "14253109", + "id": 14253109, + "indices": [ + 0, + 9 + ], + "name": "adam bain" + }, + { + "screen_name": "jack", + "id_str": "12", + "id": 12, + "indices": [ + 10, + 15 + ], + "name": "Jack" + } + ] + }, + "created_at": "Fri Jan 08 03:42:52 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 12, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685305534791065600, + "lang": "it" + }, + "default_profile_image": false, + "id": 31898295, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", + "statuses_count": 2137, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/31898295/1350353093", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "38422658", + "following": false, + "friends_count": 1682, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "F057F0", + "geo_enabled": true, + "followers_count": 10931, + "location": "San Francisco*", + "screen_name": "melissabarnes", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 247, + "name": "Melissa Barnes", + "profile_use_background_image": false, + "description": "Global Brands @Twitter. Easily entertained. Black coffee, please.", + "url": null, + "profile_text_color": "FF6F00", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Thu May 07 12:42:42 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", + "favourites_count": 7480, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685494530288840704", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/i/moments/6847\u2026", + "url": "https://t.co/s043MWwxBV", + "expanded_url": "https://twitter.com/i/moments/684794469330206720", + "indices": [ + 0, + 23 + ] + } + ], + "hashtags": [ + { + "indices": [ + 26, + 36 + ], + "text": "LikeAGirl" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:13:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/8173485c72e78ca5.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -84.576827, + 33.647549 + ], + [ + -84.289385, + 33.647549 + ], + [ + -84.289385, + 33.8868859 + ], + [ + -84.576827, + 33.8868859 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Atlanta, GA", + "id": "8173485c72e78ca5", + "name": "Atlanta" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685494530288840704, + "text": "https://t.co/s043MWwxBV. #LikeAGirl \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685496618443915268", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/i/moments/6847\u2026", + "url": "https://t.co/s043MWwxBV", + "expanded_url": "https://twitter.com/i/moments/684794469330206720", + "indices": [ + 11, + 34 + ] + } + ], + "hashtags": [ + { + "indices": [ + 37, + 47 + ], + "text": "LikeAGirl" + } + ], + "user_mentions": [ + { + "screen_name": "EWild", + "id_str": "25830913", + "id": 25830913, + "indices": [ + 3, + 9 + ], + "name": "Erica Wild Hogue" + } + ] + }, + "created_at": "Fri Jan 08 16:21:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685496618443915268, + "text": "RT @EWild: https://t.co/s043MWwxBV. #LikeAGirl \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 38422658, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", + "statuses_count": 1712, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/38422658/1383346519", + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "21007030", + "following": false, + "friends_count": 3161, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rio2016.com", + "url": "https://t.co/q8z1zrW1rr", + "expanded_url": "http://www.rio2016.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", + "notifications": false, + "profile_sidebar_fill_color": "A4CC35", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 222738, + "location": "Rio de Janeiro", + "screen_name": "Rio2016", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1235, + "name": "Rio 2016", + "profile_use_background_image": false, + "description": "Perfil oficial do Comit\u00ea Organizador dos Jogos Ol\u00edmpicos e Paral\u00edmpicos Rio 2016 em Portugu\u00eas. English:@rio2016_en. Espa\u00f1ol: @rio2016_es.", + "url": "https://t.co/q8z1zrW1rr", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", + "profile_background_color": "FA743E", + "created_at": "Mon Feb 16 17:48:07 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", + "favourites_count": 1422, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685541550772883456", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "rio2016.com/noticias/veloc\u2026", + "url": "https://t.co/kC2A2yILeK", + "expanded_url": "http://www.rio2016.com/noticias/velocista-paralimpico-richard-browne-sofre-acidente", + "indices": [ + 69, + 92 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:20:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "pt", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685541550772883456, + "text": "Velocista Paral\u00edmpico Richard Browne (@winged_foot1) sofre acidente: https://t.co/kC2A2yILeK", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 21007030, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", + "statuses_count": 7247, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21007030/1451309674", + "is_translator": false + }, + { + "time_zone": "Brasilia", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -7200, + "id_str": "88703900", + "following": false, + "friends_count": 600, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rio2016.com/en/home", + "url": "http://t.co/BFr0Z1jKEP", + "expanded_url": "http://www.rio2016.com/en/home", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", + "notifications": false, + "profile_sidebar_fill_color": "A4CC35", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 245859, + "location": "Rio de Janeiro", + "screen_name": "Rio2016_en", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1216, + "name": "Rio 2016", + "profile_use_background_image": true, + "description": "Official Rio 2016\u2122 Olympic and Paralympic Organizing Committee in English. Portugu\u00eas:@rio2016. Espa\u00f1ol: @rio2016_es.", + "url": "http://t.co/BFr0Z1jKEP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Mon Nov 09 16:44:38 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F7AF08", + "lang": "pt", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", + "favourites_count": 1369, + "status": { + "retweet_count": 15, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685566770070032384", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 674, + "h": 450, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 227, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOfWDHWMAAKUqa.png", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CYOfWDHWMAAKUqa.png", + "display_url": "pic.twitter.com/4MM6yua5XY", + "id_str": "685566769432506368", + "expanded_url": "http://twitter.com/Rio2016_en/status/685566770070032384/photo/1", + "id": 685566769432506368, + "url": "https://t.co/4MM6yua5XY" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/ExAthletesAt_R\u2026", + "url": "https://t.co/98llohvym6", + "expanded_url": "http://bit.ly/ExAthletesAt_Rio2016", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [ + { + "indices": [ + 60, + 68 + ], + "text": "Rio2016" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:00:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685566770070032384, + "text": "Elite team of ex-athletes helping ensure stars can shine at #Rio2016 Olympic Games\n\u2728\ud83d\udcaa\nhttps://t.co/98llohvym6 https://t.co/4MM6yua5XY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 20, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 88703900, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", + "statuses_count": 5098, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/88703900/1451306802", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "584263864", + "following": false, + "friends_count": 372, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "005FB3", + "geo_enabled": true, + "followers_count": 642, + "location": "", + "screen_name": "edgett", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 27, + "name": "Sean Edgett", + "profile_use_background_image": true, + "description": "Corporate lawyer at Twitter. Comments here are my own.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", + "profile_background_color": "022330", + "created_at": "Fri May 18 23:43:39 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", + "favourites_count": 1187, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Ginarestani", + "in_reply_to_user_id": 122864275, + "in_reply_to_status_id_str": "684582267168014338", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684582398307110912", + "id": 684582398307110912, + "text": "@Ginarestani @nynashine @nantony345 @theaaronhou whoa whoa whoa, let's not get crazy.", + "in_reply_to_user_id_str": "122864275", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Ginarestani", + "id_str": "122864275", + "id": 122864275, + "indices": [ + 0, + 12 + ], + "name": "Gina Restani" + }, + { + "screen_name": "nynashine", + "id_str": "30391637", + "id": 30391637, + "indices": [ + 13, + 23 + ], + "name": "Nina Shin" + }, + { + "screen_name": "nantony345", + "id_str": "177650140", + "id": 177650140, + "indices": [ + 24, + 35 + ], + "name": "Nisha Antony" + }, + { + "screen_name": "theaaronhou", + "id_str": "3507493098", + "id": 3507493098, + "indices": [ + 36, + 48 + ], + "name": "Aaron Hou" + } + ] + }, + "created_at": "Wed Jan 06 03:48:57 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 3, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684582267168014338, + "lang": "en" + }, + "default_profile_image": false, + "id": 584263864, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", + "statuses_count": 634, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/584263864/1442269032", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "4048046116", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 176502, + "location": "Turn On Our Notifications!", + "screen_name": "24HourPolls", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 101, + "name": "24 Hour Polls", + "profile_use_background_image": true, + "description": "| The Best Polls On Twitter | Original Account | *DM's Are Open For Suggestions!*", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 26 18:33:54 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", + "favourites_count": 609, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 47, + "truncated": false, + "retweeted": false, + "id_str": "685571575861624834", + "id": 685571575861624834, + "text": "Is it attractive when girls smoke weed?", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:19:35 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 67, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 4048046116, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 810, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048046116/1445886946", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2881611", + "following": false, + "friends_count": 1288, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/prashantsri\u2026", + "url": "https://t.co/d3WaCy2EU1", + "expanded_url": "http://www.linkedin.com/in/prashantsridharan", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 11188, + "location": "San Francisco", + "screen_name": "CoolAssPuppy", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 96, + "name": "Prashant S", + "profile_use_background_image": true, + "description": "Twitter Global Director of Developer & Platform Relations. I @SoulCycle, therefore I am. #PopcornHo", + "url": "https://t.co/d3WaCy2EU1", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Thu Mar 29 19:21:15 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", + "favourites_count": 13092, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685583028937035776", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/depresseddarth\u2026", + "url": "https://t.co/8qAMtykCfF", + "expanded_url": "https://twitter.com/depresseddarth/status/685582387909144576", + "indices": [ + 42, + 65 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:05:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685583028937035776, + "text": "I want to use this gif for everything :-) https://t.co/8qAMtykCfF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2881611, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", + "statuses_count": 21189, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2881611/1446596289", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2990843386", + "following": false, + "friends_count": 53, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 818, + "location": "Salt Lake City, UT", + "screen_name": "pinkgrandmas", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 10, + "name": "Pink Grandmas", + "profile_use_background_image": true, + "description": "The @PinkGrandmas who lovingly cheer for their Utah Jazz, and always in pink!", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jan 21 23:13:42 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", + "favourites_count": 108, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "683098129923575808", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "large": { + "w": 720, + "h": 1280, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 1067, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683098092216823808/pu/img/bE8W1ZgyMVUithji.jpg", + "type": "photo", + "indices": [ + 69, + 92 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683098092216823808/pu/img/bE8W1ZgyMVUithji.jpg", + "display_url": "pic.twitter.com/U2jMFx4IIv", + "id_str": "683098092216823808", + "expanded_url": "http://twitter.com/pinkgrandmas/status/683098129923575808/video/1", + "id": 683098092216823808, + "url": "https://t.co/U2jMFx4IIv" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "gordonhayward", + "id_str": "46704247", + "id": 46704247, + "indices": [ + 39, + 53 + ], + "name": "Gordon Hayward" + }, + { + "screen_name": "utahjazz", + "id_str": "18360370", + "id": 18360370, + "indices": [ + 58, + 67 + ], + "name": "Utah Jazz" + } + ] + }, + "created_at": "Sat Jan 02 01:31:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683098129923575808, + "text": "A message for our most favorite player @gordonhayward! Go @utahjazz! https://t.co/U2jMFx4IIv", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 16, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2990843386, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 139, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2990843386/1421883592", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15105000", + "following": false, + "friends_count": 1161, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "iSachin.com", + "url": "http://t.co/AWr3VV2avy", + "expanded_url": "http://iSachin.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "088253", + "geo_enabled": true, + "followers_count": 20847, + "location": "San Francisco, CA", + "screen_name": "agarwal", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 1324, + "name": "Sachin Agarwal", + "profile_use_background_image": true, + "description": "Product at Twitter. Past: @Stanford, Apple, Founder/CEO of @posterous. I \u2764\ufe0f @kateagarwal, cars, wine, puppies, and foie.", + "url": "http://t.co/AWr3VV2avy", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Fri Jun 13 06:49:22 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", + "favourites_count": 16033, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "capotej", + "in_reply_to_user_id": 8898642, + "in_reply_to_status_id_str": "685529583605579776", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685541537774567424", + "id": 685541537774567424, + "text": "@capotej killing off 100 year old technology? how dare they!", + "in_reply_to_user_id_str": "8898642", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "capotej", + "id_str": "8898642", + "id": 8898642, + "indices": [ + 0, + 8 + ], + "name": "Julio Capote" + } + ] + }, + "created_at": "Fri Jan 08 19:20:14 +0000 2016", + "source": "Twitter for Mac", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685529583605579776, + "lang": "en" + }, + "default_profile_image": false, + "id": 15105000, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "statuses_count": 11183, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15105000/1427478415", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "569900436", + "following": false, + "friends_count": 119, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 436, + "location": "", + "screen_name": "akkhosh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17, + "name": "alex", + "profile_use_background_image": true, + "description": "alex at periscope.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Thu May 03 09:06:30 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", + "favourites_count": 2, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile_image": false, + "id": 569900436, + "blocked_by": false, + "profile_background_tile": false, + "statuses_count": 0, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/569900436/1422657776", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "4027765453", + "following": false, + "friends_count": 22, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 18502, + "location": "", + "screen_name": "DocRivers", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 178, + "name": "doc rivers", + "profile_use_background_image": true, + "description": "Father, Husband, Head Basketball Coach LA Clippers, Maywood Native", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 26 19:49:37 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", + "favourites_count": 0, + "status": { + "retweet_count": 15, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "681236665537400832", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "1.usa.gov/1Hhu4dK", + "url": "https://t.co/XRz0Hdeko3", + "expanded_url": "http://1.usa.gov/1Hhu4dK", + "indices": [ + 72, + 95 + ] + } + ], + "hashtags": [ + { + "indices": [ + 96, + 107 + ], + "text": "GetCovered" + }, + { + "indices": [ + 108, + 127 + ], + "text": "NewYearsResolution" + } + ], + "user_mentions": [] + }, + "created_at": "Sun Dec 27 22:14:12 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 681236665537400832, + "text": "Make your health a priority in the new year! Sign up for 2016 coverage: https://t.co/XRz0Hdeko3 #GetCovered #NewYearsResolution", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 36, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 4027765453, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "54226675", + "following": false, + "friends_count": 220, + "entities": { + "description": { + "urls": [ + { + "display_url": "support.twitter.com/forms/translat\u2026", + "url": "http://t.co/SOm6i336Up", + "expanded_url": "http://support.twitter.com/forms/translation", + "indices": [ + 82, + 104 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "translate.twitter.com", + "url": "https://t.co/K91mYVcFjL", + "expanded_url": "http://translate.twitter.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2948766, + "location": "", + "screen_name": "translator", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2694, + "name": "Translator", + "profile_use_background_image": true, + "description": "Twitter's Translator Community. Got questions or found a bug? Fill out this form: http://t.co/SOm6i336Up", + "url": "https://t.co/K91mYVcFjL", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Jul 06 14:59:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", + "favourites_count": 170, + "status": { + "retweet_count": 48, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684701305839992832", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 575, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYCMNWaW8AA1Tqh.png", + "type": "photo", + "indices": [ + 100, + 123 + ], + "media_url": "http://pbs.twimg.com/media/CYCMNWaW8AA1Tqh.png", + "display_url": "pic.twitter.com/PnOcQVu7So", + "id_str": "684701304342638592", + "expanded_url": "http://twitter.com/translator/status/684701305839992832/photo/1", + "id": 684701304342638592, + "url": "https://t.co/PnOcQVu7So" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 11:41:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684701305839992832, + "text": "We would like to thank our Moderators who help international users enjoy Twitter in their language. https://t.co/PnOcQVu7So", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 136, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 54226675, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", + "statuses_count": 1708, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/54226675/1347394452", + "is_translator": true + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "376825877", + "following": false, + "friends_count": 48, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "opensource.twitter.com", + "url": "http://t.co/Hc7Cv220E7", + "expanded_url": "http://opensource.twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 282835, + "location": "Twitter HQ", + "screen_name": "TwitterOSS", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1987, + "name": "Twitter Open Source", + "profile_use_background_image": true, + "description": "Open Programs at Twitter.", + "url": "http://t.co/Hc7Cv220E7", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", + "profile_background_color": "131516", + "created_at": "Tue Sep 20 15:18:34 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", + "favourites_count": 3323, + "status": { + "retweet_count": 82, + "retweeted_status": { + "retweet_count": 82, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "674709094498893824", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.twitter.com/2015/finatra-2\u2026", + "url": "https://t.co/hhh2C7v3uk", + "expanded_url": "https://blog.twitter.com/2015/finatra-20-the-fast-testable-scala-services-framework-that-powers-twitter", + "indices": [ + 120, + 143 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 09 21:55:58 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 674709094498893824, + "text": "Introducing Finatra 2.0: a high-performance, scalable & testable framework powering production services at Twitter. https://t.co/hhh2C7v3uk", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 140, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "674709290087649280", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "blog.twitter.com/2015/finatra-2\u2026", + "url": "https://t.co/hhh2C7v3uk", + "expanded_url": "https://blog.twitter.com/2015/finatra-20-the-fast-testable-scala-services-framework-that-powers-twitter", + "indices": [ + 143, + 144 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TwitterEng", + "id_str": "6844292", + "id": 6844292, + "indices": [ + 3, + 14 + ], + "name": "Twitter Engineering" + } + ] + }, + "created_at": "Wed Dec 09 21:56:44 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 674709290087649280, + "text": "RT @TwitterEng: Introducing Finatra 2.0: a high-performance, scalable & testable framework powering production services at Twitter. https:/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 376825877, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5355, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/376825877/1396969577", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17874544", + "following": false, + "friends_count": 31, + "entities": { + "description": { + "urls": [ + { + "display_url": "support.twitter.com", + "url": "http://t.co/qq1HEzdMA2", + "expanded_url": "http://support.twitter.com", + "indices": [ + 118, + 140 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "support.twitter.com", + "url": "http://t.co/Vk1NkwU8qP", + "expanded_url": "http://support.twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4604953, + "location": "Twitter HQ", + "screen_name": "Support", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 13844, + "name": "Twitter Support", + "profile_use_background_image": true, + "description": "We Tweet tips and tricks to help you boost your Twitter skills and keep your account secure. For detailed help, visit http://t.co/qq1HEzdMA2.", + "url": "http://t.co/Vk1NkwU8qP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Thu Dec 04 18:51:57 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", + "favourites_count": 300, + "status": { + "retweet_count": 54, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685551636547158016", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "support.twitter.com/articles/15789", + "url": "https://t.co/4fJrONin39", + "expanded_url": "https://support.twitter.com/articles/15789", + "indices": [ + 111, + 134 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:00:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685551636547158016, + "text": "We're here to help you keep your Twitter experience \ud83d\udcaf. Make sure you know how to report a potential violation: https://t.co/4fJrONin39", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 78, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 17874544, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", + "statuses_count": 14056, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17874544/1347394418", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6253282", + "following": false, + "friends_count": 48, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dev.twitter.com", + "url": "http://t.co/78pYTvWfJd", + "expanded_url": "http://dev.twitter.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 5241047, + "location": "San Francisco, CA", + "screen_name": "twitterapi", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 12999, + "name": "Twitter API", + "profile_use_background_image": true, + "description": "The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.", + "url": "http://t.co/78pYTvWfJd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Wed May 23 06:01:13 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", + "favourites_count": 27, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "TheNiceBot", + "in_reply_to_user_id": 3433099685, + "in_reply_to_status_id_str": "673669438504378368", + "retweet_count": 12, + "truncated": false, + "retweeted": false, + "id_str": "673922605531951105", + "id": 673922605531951105, + "text": "@TheNiceBot aww thanks, you're lovely too! :-)", + "in_reply_to_user_id_str": "3433099685", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TheNiceBot", + "id_str": "3433099685", + "id": 3433099685, + "indices": [ + 0, + 11 + ], + "name": "The NiceBot" + } + ] + }, + "created_at": "Mon Dec 07 17:50:44 +0000 2015", + "source": "TweetDeck", + "favorite_count": 16, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 673669438504378368, + "lang": "en" + }, + "default_profile_image": false, + "id": 6253282, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", + "statuses_count": 3554, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1431474710", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "95731075", + "following": false, + "friends_count": 85, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "safety.twitter.com", + "url": "https://t.co/mAjmahDXqp", + "expanded_url": "https://safety.twitter.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 2919314, + "location": "Twitter HQ", + "screen_name": "safety", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 7563, + "name": "Safety", + "profile_use_background_image": true, + "description": "Helping you stay safe on Twitter.", + "url": "https://t.co/mAjmahDXqp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", + "profile_background_color": "022330", + "created_at": "Wed Dec 09 21:00:57 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", + "favourites_count": 5, + "status": { + "retweet_count": 698, + "retweeted_status": { + "retweet_count": 698, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682343018343448576", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amp.twimg.com/v/47960172-638\u2026", + "url": "https://t.co/1SZQnuIxhm", + "expanded_url": "https://amp.twimg.com/v/47960172-638b-42b8-ab59-7f94100d6ba9", + "indices": [ + 83, + 106 + ] + } + ], + "hashtags": [ + { + "indices": [ + 70, + 82 + ], + "text": "TwitterTips" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 23:30:27 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682343018343448576, + "text": "Break free. Add a profile photo to show the world who you really are. #TwitterTips\nhttps://t.co/1SZQnuIxhm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1652, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684170204641804288", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amp.twimg.com/v/47960172-638\u2026", + "url": "https://t.co/1SZQnuIxhm", + "expanded_url": "https://amp.twimg.com/v/47960172-638b-42b8-ab59-7f94100d6ba9", + "indices": [ + 96, + 119 + ] + } + ], + "hashtags": [ + { + "indices": [ + 83, + 95 + ], + "text": "TwitterTips" + } + ], + "user_mentions": [ + { + "screen_name": "twitter", + "id_str": "783214", + "id": 783214, + "indices": [ + 3, + 11 + ], + "name": "Twitter" + } + ] + }, + "created_at": "Tue Jan 05 00:31:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684170204641804288, + "text": "RT @twitter: Break free. Add a profile photo to show the world who you really are. #TwitterTips\nhttps://t.co/1SZQnuIxhm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "TweetDeck" + }, + "default_profile_image": false, + "id": 95731075, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 399, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/95731075/1416521916", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "204343158", + "following": false, + "friends_count": 286, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "1stdibs.com", + "url": "http://t.co/GyCLcPK1G6", + "expanded_url": "http://www.1stdibs.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3E9DE0", + "geo_enabled": true, + "followers_count": 5054, + "location": "New York, NY", + "screen_name": "rosenblattdavid", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 60, + "name": "David Rosenblatt", + "profile_use_background_image": true, + "description": "CEO at 1stdibs", + "url": "http://t.co/GyCLcPK1G6", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 18 13:56:10 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", + "favourites_count": 245, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685556694533935105", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/Recode/status/\u2026", + "url": "https://t.co/L5VbEWyHBl", + "expanded_url": "https://twitter.com/Recode/status/685146065398411264", + "indices": [ + 73, + 96 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:20:27 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685556694533935105, + "text": "75% off seems to be the going rate for discounts on flash sale companies https://t.co/L5VbEWyHBl", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 204343158, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", + "statuses_count": 376, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/204343158/1448985578", + "is_translator": false + }, + { + "time_zone": "Alaska", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -32400, + "id_str": "19417999", + "following": false, + "friends_count": 14503, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "itun.es/us/Q4QZ6", + "url": "https://t.co/1snyy96FWE", + "expanded_url": "https://itun.es/us/Q4QZ6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 57232, + "location": "Invite The Light \u2022 Out now.", + "screen_name": "DaMFunK", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1338, + "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK", + "profile_use_background_image": true, + "description": "\u2022 Modern-Funk | No fads | No sellout \u2022", + "url": "https://t.co/1snyy96FWE", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Jan 23 22:31:59 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", + "favourites_count": 52059, + "status": { + "retweet_count": 1, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "DaMFunK", + "in_reply_to_user_id": 19417999, + "in_reply_to_status_id_str": "685619823364079616", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "685622220455018497", + "id": 685622220455018497, + "text": "@DaMFunK HA.", + "in_reply_to_user_id_str": "19417999", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DaMFunK", + "id_str": "19417999", + "id": 19417999, + "indices": [ + 0, + 8 + ], + "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK" + } + ] + }, + "created_at": "Sat Jan 09 00:40:50 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685619823364079616, + "lang": "und" + }, + "in_reply_to_user_id": null, + "id_str": "685622331998248960", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "YearOfEmpress", + "id_str": "20882943", + "id": 20882943, + "indices": [ + 3, + 17 + ], + "name": "\u091c\u094d\u0935\u0932\u0902\u0924 \u0924\u0932\u0935\u093e\u0930 \u0915\u0940 \u092c\u0947\u091f\u0940" + }, + { + "screen_name": "DaMFunK", + "id_str": "19417999", + "id": 19417999, + "indices": [ + 19, + 27 + ], + "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK" + } + ] + }, + "created_at": "Sat Jan 09 00:41:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685622331998248960, + "text": "RT @YearOfEmpress: @DaMFunK HA.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 19417999, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", + "statuses_count": 41218, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19417999/1441340768", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17230018", + "following": false, + "friends_count": 17946, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Spotify.com", + "url": "http://t.co/jqAb65DqrK", + "expanded_url": "http://Spotify.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "ECEBE8", + "profile_link_color": "1ED760", + "geo_enabled": true, + "followers_count": 1643957, + "location": "", + "screen_name": "Spotify", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 14002, + "name": "Spotify", + "profile_use_background_image": false, + "description": "Music for every moment. Play, discover, and share for free. \r\nNeed support? We're happy to help at @SpotifyCares", + "url": "http://t.co/jqAb65DqrK", + "profile_text_color": "458DBF", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Fri Nov 07 12:14:28 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", + "favourites_count": 4977, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "nachote88", + "in_reply_to_user_id": 70842278, + "in_reply_to_status_id_str": "685572728838066177", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685577838280454144", + "id": 685577838280454144, + "text": "@nachote88 He's never been one to disappoint! \ud83c\udfb6", + "in_reply_to_user_id_str": "70842278", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "nachote88", + "id_str": "70842278", + "id": 70842278, + "indices": [ + 0, + 10 + ], + "name": "Ignacio Rebella" + } + ] + }, + "created_at": "Fri Jan 08 21:44:28 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685572728838066177, + "lang": "en" + }, + "default_profile_image": false, + "id": 17230018, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", + "statuses_count": 23164, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17230018/1450966022", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18948541", + "following": false, + "friends_count": 349, + "entities": { + "description": { + "urls": [ + { + "display_url": "itun.es/us/Vx9p-", + "url": "https://t.co/gLePVn5Mho", + "expanded_url": "http://itun.es/us/Vx9p-", + "indices": [ + 103, + 126 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/pages/Seth-Mac\u2026", + "url": "https://t.co/o4miqWAHnW", + "expanded_url": "http://www.facebook.com/pages/Seth-MacFarlane/14105972607?ref=ts", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 8860999, + "location": "Los Angeles", + "screen_name": "SethMacFarlane", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 32337, + "name": "Seth MacFarlane", + "profile_use_background_image": true, + "description": "The Official Twitter Page of Seth MacFarlane - new album No One Ever Tells You available now on iTunes https://t.co/gLePVn5Mho", + "url": "https://t.co/o4miqWAHnW", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 13 19:04:37 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", + "favourites_count": 0, + "status": { + "retweet_count": 605, + "retweeted_status": { + "retweet_count": 605, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685472301672865794", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 360, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", + "type": "photo", + "indices": [ + 52, + 75 + ], + "media_url": "http://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", + "display_url": "pic.twitter.com/QHfbTkEWXU", + "id_str": "685321946146340864", + "expanded_url": "http://twitter.com/ClickHole/status/685472301672865794/photo/1", + "id": 685321946146340864, + "url": "https://t.co/QHfbTkEWXU" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "clickhole.com/r/754tsd", + "url": "https://t.co/qTHD9SfgX8", + "expanded_url": "http://www.clickhole.com/r/754tsd", + "indices": [ + 28, + 51 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:45:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685472301672865794, + "text": "Here\u2019s A Fucking Anime Quiz https://t.co/qTHD9SfgX8 https://t.co/QHfbTkEWXU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 852, + "contributors": null, + "source": "TweetDeck" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685490467702575104", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 360, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + } + }, + "source_status_id_str": "685472301672865794", + "url": "https://t.co/QHfbTkEWXU", + "media_url": "http://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", + "source_user_id_str": "2377815434", + "id_str": "685321946146340864", + "id": 685321946146340864, + "media_url_https": "https://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", + "type": "photo", + "indices": [ + 67, + 90 + ], + "source_status_id": 685472301672865794, + "source_user_id": 2377815434, + "display_url": "pic.twitter.com/QHfbTkEWXU", + "expanded_url": "http://twitter.com/ClickHole/status/685472301672865794/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "clickhole.com/r/754tsd", + "url": "https://t.co/qTHD9SfgX8", + "expanded_url": "http://www.clickhole.com/r/754tsd", + "indices": [ + 43, + 66 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ClickHole", + "id_str": "2377815434", + "id": 2377815434, + "indices": [ + 3, + 13 + ], + "name": "ClickHole" + } + ] + }, + "created_at": "Fri Jan 08 15:57:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685490467702575104, + "text": "RT @ClickHole: Here\u2019s A Fucking Anime Quiz https://t.co/qTHD9SfgX8 https://t.co/QHfbTkEWXU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Echofon" + }, + "default_profile_image": false, + "id": 18948541, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 5295, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "96829836", + "following": false, + "friends_count": 188, + "entities": { + "description": { + "urls": [ + { + "display_url": "smarturl.it/illmaticxx_itu\u2026", + "url": "http://t.co/GQVoyTHAXi", + "expanded_url": "http://smarturl.it/illmaticxx_itunes", + "indices": [ + 29, + 51 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "TribecaFilm.com/Nas", + "url": "http://t.co/Ol6HETXMsd", + "expanded_url": "http://TribecaFilm.com/Nas", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1896081, + "location": "NYC", + "screen_name": "Nas", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8575, + "name": "Nasir Jones", + "profile_use_background_image": true, + "description": "Illmatic XX now available: \r\nhttp://t.co/GQVoyTHAXi", + "url": "http://t.co/Ol6HETXMsd", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 14 20:03:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", + "favourites_count": 3, + "status": { + "retweet_count": 24, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685575673147191296", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BASxldUpEj8/", + "url": "https://t.co/L3S16gxv5u", + "expanded_url": "https://www.instagram.com/p/BASxldUpEj8/", + "indices": [ + 44, + 67 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 21:35:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685575673147191296, + "text": "Lord Shan! \nMC Shan ladies & gentleman. https://t.co/L3S16gxv5u", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 75, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 96829836, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", + "statuses_count": 4514, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/96829836/1412353651", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "422665701", + "following": false, + "friends_count": 1877, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "smarturl.it/TrapTearsVid", + "url": "https://t.co/bSTapnSbtt", + "expanded_url": "http://smarturl.it/TrapTearsVid", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "0A0A0A", + "profile_link_color": "8F120E", + "geo_enabled": true, + "followers_count": 113330, + "location": "", + "screen_name": "Raury", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 326, + "name": "AWN", + "profile_use_background_image": true, + "description": "being of light , right on time #indigo #millennial new album #AllWeNeed", + "url": "https://t.co/bSTapnSbtt", + "profile_text_color": "A30A0A", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sun Nov 27 14:50:29 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", + "favourites_count": 9694, + "status": { + "retweet_count": 27, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685591537066053632", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 964, + "h": 964, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYO13ZUWkAIASL1.jpg", + "type": "photo", + "indices": [ + 105, + 128 + ], + "media_url": "http://pbs.twimg.com/media/CYO13ZUWkAIASL1.jpg", + "display_url": "pic.twitter.com/GzWdNy9t6a", + "id_str": "685591531584131074", + "expanded_url": "http://twitter.com/Raury/status/685591537066053632/photo/1", + "id": 685591531584131074, + "url": "https://t.co/GzWdNy9t6a" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "6LACK", + "id_str": "27133902", + "id": 27133902, + "indices": [ + 32, + 38 + ], + "name": "bear" + }, + { + "screen_name": "carlonramong", + "id_str": "324541023", + "id": 324541023, + "indices": [ + 79, + 92 + ], + "name": "Carlon Ramong" + } + ] + }, + "created_at": "Fri Jan 08 22:38:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685591537066053632, + "text": "Cabin party in ATL tomorrow for @6LACK \ud83c\udf88\n\nbring swimsuits for the jacuzzi\ud83c\udfc4\ud83c\udfc4hit @carlonramong for details https://t.co/GzWdNy9t6a", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 58, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 422665701, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", + "statuses_count": 35240, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/422665701/1444935009", + "is_translator": false + }, + { + "time_zone": "Baghdad", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 10800, + "id_str": "1499345785", + "following": false, + "friends_count": 31, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 21460, + "location": "", + "screen_name": "Iarsulrich", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 73, + "name": "Lars Ulrich", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", + "profile_background_color": "000000", + "created_at": "Mon Jun 10 20:39:52 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en-gb", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", + "favourites_count": 14, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 239, + "truncated": false, + "retweeted": false, + "id_str": "585814658197499904", + "id": 585814658197499904, + "text": "Ba Dum Ts", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Apr 08 14:41:13 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 310, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "tl" + }, + "default_profile_image": false, + "id": 1499345785, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", + "statuses_count": 1, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499345785/1438456012", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "7698", + "following": false, + "friends_count": 758, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "monkey.org/~marius/", + "url": "https://t.co/Fd7AtAPU13", + "expanded_url": "http://monkey.org/~marius/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "038543", + "geo_enabled": true, + "followers_count": 8439, + "location": "Silicon Valley", + "screen_name": "marius", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 294, + "name": "marius eriksen", + "profile_use_background_image": true, + "description": "I spend most days cursing at lots of very tiny electronics.", + "url": "https://t.co/Fd7AtAPU13", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", + "profile_background_color": "ACDED6", + "created_at": "Sat Oct 07 06:53:18 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", + "favourites_count": 4808, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "danamlewis", + "in_reply_to_user_id": 15165858, + "in_reply_to_status_id_str": "685513010115383296", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685515748110811136", + "id": 685515748110811136, + "text": "@danamlewis @MDT_Diabetes :-( we have seriously discussed hiring someone (task rabbit?) just to deal with insurance and decide companies \u2026", + "in_reply_to_user_id_str": "15165858", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "danamlewis", + "id_str": "15165858", + "id": 15165858, + "indices": [ + 0, + 11 + ], + "name": "Dana | #hcsm #DIYPS" + }, + { + "screen_name": "MDT_Diabetes", + "id_str": "17861851", + "id": 17861851, + "indices": [ + 12, + 25 + ], + "name": "Medtronic Diabetes" + } + ] + }, + "created_at": "Fri Jan 08 17:37:45 +0000 2016", + "source": "Tweetbot for i\u039fS", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685513010115383296, + "lang": "en" + }, + "default_profile_image": false, + "id": 7698, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", + "statuses_count": 7424, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/7698/1413383522", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18819527", + "following": false, + "friends_count": 3066, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "travelocity.com", + "url": "http://t.co/GxUHwpGZyC", + "expanded_url": "http://travelocity.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "7AC3EE", + "profile_link_color": "FF0000", + "geo_enabled": true, + "followers_count": 80691, + "location": "", + "screen_name": "RoamingGnome", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1434, + "name": "Travelocity Gnome", + "profile_use_background_image": true, + "description": "The official globetrotting ornament. Nabbed from a very boring garden to travel the world. You can find me on instagram @roaminggnome", + "url": "http://t.co/GxUHwpGZyC", + "profile_text_color": "3D1957", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", + "profile_background_color": "89C9FA", + "created_at": "Fri Jan 09 23:08:58 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", + "favourites_count": 4816, + "status": { + "retweet_count": 11, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685491269808877568", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 1365, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNarU-WQAAoXfI.jpg", + "type": "photo", + "indices": [ + 91, + 114 + ], + "media_url": "http://pbs.twimg.com/media/CYNarU-WQAAoXfI.jpg", + "display_url": "pic.twitter.com/rmBRcCN0Ax", + "id_str": "685491268701536256", + "expanded_url": "http://twitter.com/RoamingGnome/status/685491269808877568/photo/1", + "id": 685491268701536256, + "url": "https://t.co/rmBRcCN0Ax" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 5, + 19 + ], + "text": "BubbleBathDay" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:00:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685491269808877568, + "text": "This #BubbleBathDay wasn't quite what I had in mind. Good thing I have a vacation planned. https://t.co/rmBRcCN0Ax", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 20, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 18819527, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", + "statuses_count": 10405, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18819527/1398261580", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "32765534", + "following": false, + "friends_count": 326, + "entities": { + "description": { + "urls": [ + { + "display_url": "billsimmonspodcast.com", + "url": "https://t.co/vjQN5lsu7P", + "expanded_url": "http://www.billsimmonspodcast.com", + "indices": [ + 44, + 67 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "grantland.com/features/compl\u2026", + "url": "https://t.co/FAEjPf1Iwj", + "expanded_url": "http://grantland.com/features/complete-column-archives-grantland-edition/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "9D582E", + "geo_enabled": false, + "followers_count": 4767763, + "location": "Los Angeles (via Boston)", + "screen_name": "BillSimmons", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 32238, + "name": "Bill Simmons", + "profile_use_background_image": true, + "description": "Host of The Bill Simmons Podcast - links at https://t.co/vjQN5lsu7P. My HBO show = 2016. Once ran a Grantland cult according to 2 unnamed ESPN execs.", + "url": "https://t.co/FAEjPf1Iwj", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", + "profile_background_color": "8B542B", + "created_at": "Sat Apr 18 03:37:31 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", + "favourites_count": 9, + "status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685579237923794944", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "itunes.apple.com/us/podcast/the\u2026", + "url": "https://t.co/wuVe9E8732", + "expanded_url": "https://itunes.apple.com/us/podcast/the-bill-simmons-podcast/id1043699613?mt=2#episodeGuid=tag%3Asoundcloud%2C2010%3Atracks%2F241011357", + "indices": [ + 106, + 129 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "HousefromDC", + "id_str": "180433733", + "id": 180433733, + "indices": [ + 91, + 103 + ], + "name": "House" + } + ] + }, + "created_at": "Fri Jan 08 21:50:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685579237923794944, + "text": "New BS Pod - did some Friday Rollin' + Round One NFL picks + some NBA talk with a DC-giddy @HousefromDC \n\nhttps://t.co/wuVe9E8732", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 75, + "contributors": null, + "source": "Echofon" + }, + "default_profile_image": false, + "id": 32765534, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", + "statuses_count": 15279, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/32765534/1445653325", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "44039298", + "following": false, + "friends_count": 545, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 3613922, + "location": "New York", + "screen_name": "sethmeyers", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 20373, + "name": "Seth Meyers", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 02 02:35:39 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", + "favourites_count": 49, + "status": { + "retweet_count": 333, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 333, + "truncated": false, + "retweeted": false, + "id_str": "685539256698159104", + "id": 685539256698159104, + "text": "Already lookin' forward to the next time they catch El Chapo.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:11:10 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 604, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685539599377166338", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MrGeorgeWallace", + "id_str": "398490298", + "id": 398490298, + "indices": [ + 3, + 19 + ], + "name": "George Wallace" + } + ] + }, + "created_at": "Fri Jan 08 19:12:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685539599377166338, + "text": "RT @MrGeorgeWallace: Already lookin' forward to the next time they catch El Chapo.", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 44039298, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 6071, + "is_translator": false + }, + { + "time_zone": "UTC", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "104969057", + "following": false, + "friends_count": 493, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "McKellen.com", + "url": "http://t.co/g38r3qsinW", + "expanded_url": "http://www.McKellen.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "050505", + "geo_enabled": false, + "followers_count": 2901659, + "location": "London, UK", + "screen_name": "IanMcKellen", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 12052, + "name": "Ian McKellen", + "profile_use_background_image": true, + "description": "actor and activist", + "url": "http://t.co/g38r3qsinW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Thu Jan 14 23:29:56 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", + "favourites_count": 95, + "status": { + "retweet_count": 63, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685511765812097024", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nyti.ms/1O8JypN", + "url": "https://t.co/IhQSusDn6r", + "expanded_url": "http://nyti.ms/1O8JypN", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 17:21:55 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685511765812097024, + "text": "Ian McKellen Will Take That Seat, if You\u2019re Offering It https://t.co/IhQSusDn6r", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 359, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 104969057, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1314, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/104969057/1449683945", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "241964676", + "following": false, + "friends_count": 226, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "Grantland.com", + "url": "http://t.co/qx60xDYYa3", + "expanded_url": "http://www.Grantland.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/414549914/bg.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F5F5F5", + "profile_link_color": "BF1E2E", + "geo_enabled": false, + "followers_count": 508487, + "location": "Los Angeles, CA", + "screen_name": "Grantland33", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8432, + "name": "Grantland", + "profile_use_background_image": true, + "description": "Home of the Triangle | Hollywood Prospectus.", + "url": "http://t.co/qx60xDYYa3", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jan 23 16:06:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBDDDE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", + "favourites_count": 238, + "status": { + "retweet_count": 14, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "660147525454696448", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "gran.tl/1Womk0x", + "url": "https://t.co/1tWBmhThwU", + "expanded_url": "http://gran.tl/1Womk0x", + "indices": [ + 75, + 98 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "max_cea", + "id_str": "261502837", + "id": 261502837, + "indices": [ + 66, + 74 + ], + "name": "Max Cea" + } + ] + }, + "created_at": "Fri Oct 30 17:33:29 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 660147525454696448, + "text": "We Went There: Clippers-Mavs and DeAndre Jordan Night in L.A., by @max_cea https://t.co/1tWBmhThwU", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 71, + "contributors": null, + "source": "WordPress.com" + }, + "default_profile_image": false, + "id": 241964676, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/414549914/bg.jpg", + "statuses_count": 26406, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/241964676/1441915615", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "615999145", + "blocking": false, + "is_translation_enabled": false, + "id": 615999145, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Sat Jun 23 10:24:53 +0000 2012", + "profile_image_url": "http://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", + "favourites_count": 6, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 766, + "blocked_by": false, + "following": false, + "location": "Los Angeles", + "muting": false, + "friends_count": 127, + "notifications": false, + "screen_name": "KikiShaf", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1, + "is_translator": false, + "name": "Bee Shaffer" + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1440641", + "following": false, + "friends_count": 88, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nytimes.com/arts", + "url": "http://t.co/0H74AaBX8Y", + "expanded_url": "http://www.nytimes.com/arts", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", + "notifications": false, + "profile_sidebar_fill_color": "E7EFF8", + "profile_link_color": "004276", + "geo_enabled": false, + "followers_count": 1861404, + "location": "New York, NY", + "screen_name": "nytimesarts", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 17929, + "name": "New York Times Arts", + "profile_use_background_image": true, + "description": "Arts and entertainment news from The New York Times.", + "url": "http://t.co/0H74AaBX8Y", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Sun Mar 18 20:30:33 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "323232", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", + "favourites_count": 21, + "status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685633001577943041", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "nyti.ms/1OUVKIf", + "url": "https://t.co/dqGYg0x7HE", + "expanded_url": "http://nyti.ms/1OUVKIf", + "indices": [ + 57, + 80 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:23:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685633001577943041, + "text": "Up for Auction: Real Art, Owned by a Seller of Forgeries https://t.co/dqGYg0x7HE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 3, + "contributors": null, + "source": "SocialFlow" + }, + "default_profile_image": false, + "id": 1440641, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", + "statuses_count": 91366, + "is_translator": false + }, + { + "time_zone": "Greenland", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -10800, + "id_str": "16465385", + "following": false, + "friends_count": 536, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nobelprize.org", + "url": "http://t.co/If9cQQEL4i", + "expanded_url": "http://nobelprize.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E2E8EA", + "profile_link_color": "307497", + "geo_enabled": true, + "followers_count": 177864, + "location": "Stockholm, Sweden", + "screen_name": "NobelPrize", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3279, + "name": "The Nobel Prize", + "profile_use_background_image": true, + "description": "The official Twitter feed of the Nobel Prize @NobelPrize #NobelPrize", + "url": "http://t.co/If9cQQEL4i", + "profile_text_color": "023C59", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Fri Sep 26 08:47:58 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", + "favourites_count": 198, + "status": { + "retweet_count": 18, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685486394395996161", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 812, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 756, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 428, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNWPivVAAEeQGr.jpg", + "type": "photo", + "indices": [ + 115, + 138 + ], + "media_url": "http://pbs.twimg.com/media/CYNWPivVAAEeQGr.jpg", + "display_url": "pic.twitter.com/4ZGhYYUyvw", + "id_str": "685486393313787905", + "expanded_url": "http://twitter.com/NobelPrize/status/685486394395996161/photo/1", + "id": 685486393313787905, + "url": "https://t.co/4ZGhYYUyvw" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "goo.gl/KhzAMl", + "url": "https://t.co/qEHZEYLQDD", + "expanded_url": "http://goo.gl/KhzAMl", + "indices": [ + 91, + 114 + ] + } + ], + "hashtags": [ + { + "indices": [ + 25, + 35 + ], + "text": "OnThisDay" + }, + { + "indices": [ + 73, + 89 + ], + "text": "NobelPeacePrize" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:41:06 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685486394395996161, + "text": "Emily Greene Balch, born #OnThisDay (1867), Professor and pacifist, 1946 #NobelPeacePrize: https://t.co/qEHZEYLQDD https://t.co/4ZGhYYUyvw", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 22, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16465385, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", + "statuses_count": 4674, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16465385/1450099641", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14550962", + "following": false, + "friends_count": 250, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "agoranomic.org", + "url": "http://t.co/XcGA9qM04D", + "expanded_url": "http://agoranomic.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 213136, + "location": "", + "screen_name": "comex", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 6398, + "name": "comex", + "profile_use_background_image": true, + "description": "Views expressed here do not necessarily belong to my employer. Or to me.", + "url": "http://t.co/XcGA9qM04D", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Apr 26 20:13:43 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", + "favourites_count": 88, + "status": { + "retweet_count": 5065, + "retweeted_status": { + "retweet_count": 5065, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685439245536890880", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 749, + "h": 753, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 603, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", + "type": "photo", + "indices": [ + 80, + 103 + ], + "media_url": "http://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", + "display_url": "pic.twitter.com/hV5XBFe3GS", + "id_str": "685439244677046272", + "expanded_url": "http://twitter.com/wheatles/status/685439245536890880/photo/1", + "id": 685439244677046272, + "url": "https://t.co/hV5XBFe3GS" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 12:33:45 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685439245536890880, + "text": "'What were you calling about?' these Blair/Clinton conversations are incredible https://t.co/hV5XBFe3GS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 5145, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685466846926090240", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 749, + "h": 753, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 603, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 341, + "resize": "fit" + } + }, + "source_status_id_str": "685439245536890880", + "url": "https://t.co/hV5XBFe3GS", + "media_url": "http://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", + "source_user_id_str": "15814799", + "id_str": "685439244677046272", + "id": 685439244677046272, + "media_url_https": "https://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", + "type": "photo", + "indices": [ + 94, + 117 + ], + "source_status_id": 685439245536890880, + "source_user_id": 15814799, + "display_url": "pic.twitter.com/hV5XBFe3GS", + "expanded_url": "http://twitter.com/wheatles/status/685439245536890880/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "wheatles", + "id_str": "15814799", + "id": 15814799, + "indices": [ + 3, + 12 + ], + "name": "wheatles" + } + ] + }, + "created_at": "Fri Jan 08 14:23:26 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685466846926090240, + "text": "RT @wheatles: 'What were you calling about?' these Blair/Clinton conversations are incredible https://t.co/hV5XBFe3GS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 14550962, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 23885, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2813652210", + "following": false, + "friends_count": 2434, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kickstarter.com/projects/19573\u2026", + "url": "https://t.co/giNNN1E1AC", + "expanded_url": "https://www.kickstarter.com/projects/1957344648/meow-the-jewels", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7925, + "location": "", + "screen_name": "MeowTheJewels", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 30, + "name": "#MeowTheJewels", + "profile_use_background_image": true, + "description": "You are listening to Meow The Jewels! Now a RTJ ran account.", + "url": "https://t.co/giNNN1E1AC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 16 20:55:34 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", + "favourites_count": 4674, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "point_GARD", + "in_reply_to_user_id": 172587825, + "in_reply_to_status_id_str": null, + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "677629963361734656", + "id": 677629963361734656, + "text": "@point_gard Meow! Thanks for the donation (and your patience!)\ud83d\ude3a\ud83d\udc49\ud83d\udc4a", + "in_reply_to_user_id_str": "172587825", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "point_GARD", + "id_str": "172587825", + "id": 172587825, + "indices": [ + 0, + 11 + ], + "name": "Revenge of Da Blerds" + } + ] + }, + "created_at": "Thu Dec 17 23:22:27 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2813652210, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3280, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2813652210/1410988523", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "237548529", + "following": false, + "friends_count": 207, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "humansofnewyork.com", + "url": "http://t.co/GdwTtrMd37", + "expanded_url": "http://www.humansofnewyork.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "233294", + "geo_enabled": false, + "followers_count": 382285, + "location": "New York, NY", + "screen_name": "humansofny", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2430, + "name": "Brandon Stanton", + "profile_use_background_image": true, + "description": "Creator of the blog and #1 NYT bestselling book, Humans of New York. I take pictures of people on the street and ask them questions.", + "url": "http://t.co/GdwTtrMd37", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", + "profile_background_color": "6E757A", + "created_at": "Thu Jan 13 02:43:38 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", + "favourites_count": 1094, + "status": { + "retweet_count": 314, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685503105874542592", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 434, + "h": 485, + "resize": "fit" + }, + "small": { + "w": 340, + "h": 379, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 434, + "h": 485, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNlcT-UMAECl5l.png", + "type": "photo", + "indices": [ + 114, + 137 + ], + "media_url": "http://pbs.twimg.com/media/CYNlcT-UMAECl5l.png", + "display_url": "pic.twitter.com/9G3R3nyP08", + "id_str": "685503105362833409", + "expanded_url": "http://twitter.com/humansofny/status/685503105874542592/photo/1", + "id": 685503105362833409, + "url": "https://t.co/9G3R3nyP08" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:47:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685503105874542592, + "text": "\u201cI\u2019m trying to focus on my first year in college while my parents get divorced. They told me when I came home...\" https://t.co/9G3R3nyP08", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1041, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 237548529, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", + "statuses_count": 5325, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/237548529/1412171810", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "16600574", + "following": false, + "friends_count": 80283, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "adambouska.com", + "url": "https://t.co/iCi6oiInzM", + "expanded_url": "http://www.adambouska.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 201279, + "location": "Los Angeles, California", + "screen_name": "bouska", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2582, + "name": "Adam Bouska", + "profile_use_background_image": true, + "description": "Fashion Photographer & NOH8 Campaign Co-Founder \u2605\u2605\u2605\u2605\u2605\ninfo@bouska.net", + "url": "https://t.co/iCi6oiInzM", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Oct 05 10:48:17 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", + "favourites_count": 2581, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 85, + "truncated": false, + "retweeted": false, + "id_str": "685615013038456832", + "id": 685615013038456832, + "text": "love is a terrible thing to hate.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:12:11 +0000 2016", + "source": "Twitter for Android", + "favorite_count": 198, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 16600574, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", + "statuses_count": 15632, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16600574/1435020398", + "is_translator": false + }, + { + "time_zone": "Hawaii", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -36000, + "id_str": "526316060", + "following": false, + "friends_count": 27, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 479570, + "location": "", + "screen_name": "DaveChappelle", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3124, + "name": "David Chappelle", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Mar 16 11:53:45 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", + "favourites_count": 0, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1250, + "truncated": false, + "retweeted": false, + "id_str": "184039213946241024", + "id": 184039213946241024, + "text": "This account has been hacked. I'm deeming it officially bogus. Sincerely, \nChappelle, David K", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sun Mar 25 22:09:02 +0000 2012", + "source": "Twitter for iPhone", + "favorite_count": 1243, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 526316060, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 11, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1188951", + "following": false, + "friends_count": 258, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "DD2E44", + "geo_enabled": true, + "followers_count": 2211, + "location": "San Francisco, CA", + "screen_name": "eyeseewaters", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 64, + "name": "Nandini Ramani", + "profile_use_background_image": true, + "description": "VP of Engineering @Twitter", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Wed Mar 14 23:09:57 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", + "favourites_count": 1069, + "status": { + "retweet_count": 398, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 398, + "truncated": false, + "retweeted": false, + "id_str": "649653805819236352", + "id": 649653805819236352, + "text": "Hello. I am the NiceBot. I want to make the world a nicer place, one tweet at a time. Follow my journey, and have a nice day. #TheNiceBot", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 126, + 137 + ], + "text": "TheNiceBot" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Oct 01 18:35:11 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 1018, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685593294013792256", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 139, + 140 + ], + "text": "TheNiceBot" + } + ], + "user_mentions": [ + { + "screen_name": "TheNiceBot", + "id_str": "3433099685", + "id": 3433099685, + "indices": [ + 3, + 14 + ], + "name": "The NiceBot" + } + ] + }, + "created_at": "Fri Jan 08 22:45:53 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685593294013792256, + "text": "RT @TheNiceBot: Hello. I am the NiceBot. I want to make the world a nicer place, one tweet at a time. Follow my journey, and have a nice da\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1188951, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1867, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "43421130", + "following": false, + "friends_count": 147, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "treasureislandfestival.com", + "url": "http://t.co/1kda6aZhAJ", + "expanded_url": "http://www.treasureislandfestival.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", + "notifications": false, + "profile_sidebar_fill_color": "F1DAC1", + "profile_link_color": "FF9966", + "geo_enabled": false, + "followers_count": 12634, + "location": "San Francisco, CA", + "screen_name": "timfsf", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 576, + "name": "Treasure Island Fest", + "profile_use_background_image": true, + "description": "Thanks to everyone who joined us for the 2015 festival in the bay on October 17-18, 2015! 2016 details coming soon.", + "url": "http://t.co/1kda6aZhAJ", + "profile_text_color": "4F2A10", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", + "profile_background_color": "33CCCC", + "created_at": "Fri May 29 22:09:36 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", + "favourites_count": 810, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "670345177911848960", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CU2LYWbVAAAh91B.jpg", + "type": "photo", + "indices": [ + 109, + 132 + ], + "media_url": "http://pbs.twimg.com/media/CU2LYWbVAAAh91B.jpg", + "display_url": "pic.twitter.com/3V7ChuY7CO", + "id_str": "670345170001395712", + "expanded_url": "http://twitter.com/timfsf/status/670345177911848960/photo/1", + "id": 670345170001395712, + "url": "https://t.co/3V7ChuY7CO" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "tinmanmerchandising.com/index.php?cPat\u2026", + "url": "https://t.co/ma3WRV7zG1", + "expanded_url": "https://tinmanmerchandising.com/index.php?cPath=38_200&sort=3a&gridlist=grid&tplDir=TreasureIslandFestival", + "indices": [ + 85, + 108 + ] + } + ], + "hashtags": [ + { + "indices": [ + 12, + 24 + ], + "text": "BlackFriday" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Nov 27 20:55:19 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 670345177911848960, + "text": "Joining the #BlackFriday party! All clothing 25% OFF + all posters 30% OFF. Shop now https://t.co/ma3WRV7zG1 https://t.co/3V7ChuY7CO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 43421130, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", + "statuses_count": 2478, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43421130/1446147173", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "15241557", + "following": false, + "friends_count": 51, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 11454, + "location": "", + "screen_name": "reedhastings", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 331, + "name": "Reed Hastings", + "profile_use_background_image": true, + "description": "CEO Netflix", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Jun 26 07:24:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", + "favourites_count": 10, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "RichBTIG", + "in_reply_to_user_id": 14992263, + "in_reply_to_status_id_str": "684542793243471872", + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "684640673895600129", + "id": 684640673895600129, + "text": "@RichBTIG @LASairport @SouthwestAir @AmericanAir Drive baby like the rest of us!", + "in_reply_to_user_id_str": "14992263", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "RichBTIG", + "id_str": "14992263", + "id": 14992263, + "indices": [ + 0, + 9 + ], + "name": "Rich Greenfield" + }, + { + "screen_name": "LASairport", + "id_str": "97540285", + "id": 97540285, + "indices": [ + 10, + 21 + ], + "name": "McCarran Airport" + }, + { + "screen_name": "SouthwestAir", + "id_str": "7212562", + "id": 7212562, + "indices": [ + 22, + 35 + ], + "name": "Southwest Airlines" + }, + { + "screen_name": "AmericanAir", + "id_str": "22536055", + "id": 22536055, + "indices": [ + 36, + 48 + ], + "name": "American Airlines" + } + ] + }, + "created_at": "Wed Jan 06 07:40:31 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684542793243471872, + "lang": "en" + }, + "default_profile_image": false, + "id": 15241557, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 40, + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "454423650", + "following": false, + "friends_count": 465, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "006399", + "geo_enabled": true, + "followers_count": 1607, + "location": "San Francisco", + "screen_name": "tinab", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 26, + "name": "Tina Bhatnagar", + "profile_use_background_image": true, + "description": "Love food, sleep and being pampered. Difference between me and a baby? I work @Twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Jan 04 00:04:22 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", + "favourites_count": 1021, + "status": { + "retweet_count": 153, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 153, + "truncated": false, + "retweeted": false, + "id_str": "682344631321772033", + "id": 682344631321772033, + "text": "Today's high: 52 degrees\nTonight's low: finalizing your NYE plans when all you really wanna do is Netflix and pizza", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Dec 30 23:36:52 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 332, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "682367691131207681", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "KarlTheFog", + "id_str": "175091719", + "id": 175091719, + "indices": [ + 3, + 14 + ], + "name": "Karl the Fog" + } + ] + }, + "created_at": "Thu Dec 31 01:08:30 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682367691131207681, + "text": "RT @KarlTheFog: Today's high: 52 degrees\nTonight's low: finalizing your NYE plans when all you really wanna do is Netflix and pizza", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 454423650, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", + "statuses_count": 1713, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/454423650/1451600055", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3751591514", + "following": false, + "friends_count": 21, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 8849, + "location": "Bellevue, WA", + "screen_name": "Steven_Ballmer", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 160, + "name": "Steve Ballmer", + "profile_use_background_image": false, + "description": "Lots going on", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", + "profile_background_color": "000000", + "created_at": "Thu Oct 01 20:37:37 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", + "favourites_count": 1, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 35, + "truncated": false, + "retweeted": false, + "id_str": "659971638838988800", + "id": 659971638838988800, + "text": "Lots going on in the world of tech and government but all I can say today is 2-0. Sweet victory tonight very sweet go clips", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Oct 30 05:54:35 +0000 2015", + "source": "Twitter for Windows Phone", + "favorite_count": 107, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 3751591514, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 12, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3751591514/1444998576", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "845743333", + "following": false, + "friends_count": 80, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 139501, + "location": "", + "screen_name": "JoyceCarolOates", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2614, + "name": "Joyce Carol Oates", + "profile_use_background_image": true, + "description": "Author", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", + "profile_background_color": "022330", + "created_at": "Tue Sep 25 15:36:17 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "A8C7F7", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", + "favourites_count": 55, + "status": { + "retweet_count": 98, + "retweeted_status": { + "retweet_count": 98, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685620504334483456", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "sfg.ly/1OgtGPV", + "url": "https://t.co/Rd2TWChT7k", + "expanded_url": "http://sfg.ly/1OgtGPV", + "indices": [ + 116, + 139 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:34:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685620504334483456, + "text": "Great white shark died after just 3 days in captivity at Japanese aquarium. The cause of death is clear: captivity. https://t.co/Rd2TWChT7k", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 106, + "contributors": null, + "source": "Sprout Social" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685629804163432449", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "sfg.ly/1OgtGPV", + "url": "https://t.co/Rd2TWChT7k", + "expanded_url": "http://sfg.ly/1OgtGPV", + "indices": [ + 126, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "peta", + "id_str": "9890492", + "id": 9890492, + "indices": [ + 3, + 8 + ], + "name": "PETA" + } + ] + }, + "created_at": "Sat Jan 09 01:10:58 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685629804163432449, + "text": "RT @peta: Great white shark died after just 3 days in captivity at Japanese aquarium. The cause of death is clear: captivity. https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 845743333, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", + "statuses_count": 18362, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "292626949", + "following": false, + "friends_count": 499, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2325, + "location": "", + "screen_name": "singhtv", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 49, + "name": "Baljeet Singh", + "profile_use_background_image": true, + "description": "twitter product lead, SF transplant, hip hop head, outdoors lover, father of the coolest kid ever", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Tue May 03 23:41:04 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", + "favourites_count": 1294, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684181167902330880", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 1066, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1820, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CX6zIVgUAAQPvzw.jpg", + "type": "photo", + "indices": [ + 94, + 117 + ], + "media_url": "http://pbs.twimg.com/media/CX6zIVgUAAQPvzw.jpg", + "display_url": "pic.twitter.com/8dWB4Fkhi8", + "id_str": "684181149199892484", + "expanded_url": "http://twitter.com/singhtv/status/684181167902330880/photo/1", + "id": 684181149199892484, + "url": "https://t.co/8dWB4Fkhi8" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 01:14:36 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -122.514926, + 37.708075 + ], + [ + -122.357031, + 37.708075 + ], + [ + -122.357031, + 37.833238 + ], + [ + -122.514926, + 37.833238 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "San Francisco, CA", + "id": "5a110d312052166f", + "name": "San Francisco" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684181167902330880, + "text": "Last day! Thanks fellow Tweeps for everything you've taught me. I will miss working with you. https://t.co/8dWB4Fkhi8", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 195, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 292626949, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 244, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/292626949/1385075905", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "70976011", + "following": false, + "friends_count": 694, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 775, + "location": "San Francisco, CA", + "screen_name": "jdrishel", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 36, + "name": "Jeremy Rishel", + "profile_use_background_image": true, + "description": "Engineering @twitter ~ @mit CS, Philosophy, & MBA ~ Former @usmc ~ Proud supporter of @calacademy, @americanatheist, @rdfrs, @mca_marines, & @sfjazz", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Sep 02 14:22:44 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", + "favourites_count": 1875, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685541065257021440", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/thinkprogress/\u2026", + "url": "https://t.co/GY3aapX4De", + "expanded_url": "https://twitter.com/thinkprogress/status/685536373319811076", + "indices": [ + 10, + 33 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 19:18:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685541065257021440, + "text": "Amazing. https://t.co/GY3aapX4De", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 70976011, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 791, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70976011/1435923511", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "5943622", + "following": false, + "friends_count": 5838, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "a16z.com", + "url": "http://t.co/kn6m038bNW", + "expanded_url": "http://www.a16z.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "12297A", + "geo_enabled": false, + "followers_count": 464338, + "location": "Menlo Park, CA", + "screen_name": "pmarca", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8619, + "name": "Marc Andreessen", + "profile_use_background_image": true, + "description": "\u201cI don\u2019t mean you\u2019re all going to be happy. You\u2019ll be unhappy \u2013 but in new, exciting and important ways.\u201d \u2013 Edwin Land", + "url": "http://t.co/kn6m038bNW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", + "profile_background_color": "131516", + "created_at": "Thu May 10 23:39:54 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", + "favourites_count": 208234, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "tsoulichakib", + "in_reply_to_user_id": 17716644, + "in_reply_to_status_id_str": "685630933505052672", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685636088732368897", + "id": 685636088732368897, + "text": "@tsoulichakib @munilass They had Dreier dead to rights.", + "in_reply_to_user_id_str": "17716644", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "tsoulichakib", + "id_str": "17716644", + "id": 17716644, + "indices": [ + 0, + 13 + ], + "name": "Chakib Tsouli" + }, + { + "screen_name": "munilass", + "id_str": "283734762", + "id": 283734762, + "indices": [ + 14, + 23 + ], + "name": "Kristi Culpepper" + } + ] + }, + "created_at": "Sat Jan 09 01:35:56 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685630933505052672, + "lang": "en" + }, + "default_profile_image": false, + "id": 5943622, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", + "statuses_count": 83526, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5943622/1419247370", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "127062637", + "following": false, + "friends_count": 169, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "9266CC", + "geo_enabled": true, + "followers_count": 19335, + "location": "California, USA", + "screen_name": "omidkordestani", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 202, + "name": "Omid Kordestani", + "profile_use_background_image": false, + "description": "Executive Chairman @twitter", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Mar 27 23:05:58 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", + "favourites_count": 60, + "status": { + "retweet_count": 28882, + "retweeted_status": { + "retweet_count": 28882, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679137936416329728", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", + "type": "photo", + "indices": [ + 21, + 44 + ], + "media_url": "http://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", + "display_url": "pic.twitter.com/Ll7wg2hL1G", + "id_str": "679137932163358720", + "expanded_url": "http://twitter.com/elonmusk/status/679137936416329728/photo/1", + "id": 679137932163358720, + "url": "https://t.co/Ll7wg2hL1G" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Dec 22 03:14:36 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679137936416329728, + "text": "There and back again https://t.co/Ll7wg2hL1G", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 40965, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "679145995767169024", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + } + }, + "source_status_id_str": "679137936416329728", + "url": "https://t.co/Ll7wg2hL1G", + "media_url": "http://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", + "source_user_id_str": "44196397", + "id_str": "679137932163358720", + "id": 679137932163358720, + "media_url_https": "https://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", + "type": "photo", + "indices": [ + 35, + 58 + ], + "source_status_id": 679137936416329728, + "source_user_id": 44196397, + "display_url": "pic.twitter.com/Ll7wg2hL1G", + "expanded_url": "http://twitter.com/elonmusk/status/679137936416329728/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "elonmusk", + "id_str": "44196397", + "id": 44196397, + "indices": [ + 3, + 12 + ], + "name": "Elon Musk" + } + ] + }, + "created_at": "Tue Dec 22 03:46:37 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 679145995767169024, + "text": "RT @elonmusk: There and back again https://t.co/Ll7wg2hL1G", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 127062637, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 33, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/127062637/1445924351", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3913671", + "following": false, + "friends_count": 634, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thecodemill.biz", + "url": "http://t.co/jfXOm28eAR", + "expanded_url": "http://thecodemill.biz/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", + "notifications": false, + "profile_sidebar_fill_color": "C0DFEC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 1469, + "location": "Santa Cruz/San Francisco, CA", + "screen_name": "bartt", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 55, + "name": "Bart Teeuwisse", + "profile_use_background_image": false, + "description": "Early riser to hack, build, run, bike, climb & ski. Formerly @twitter, @yahoo & various startups", + "url": "http://t.co/jfXOm28eAR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", + "profile_background_color": "F9F9F9", + "created_at": "Mon Apr 09 15:19:14 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", + "favourites_count": 840, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682388006666395648", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/-N7RlWHaFbE", + "url": "https://t.co/drAG8j6GkF", + "expanded_url": "https://youtu.be/-N7RlWHaFbE", + "indices": [ + 81, + 104 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 02:29:13 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", + "country": "United States", + "attributes": {}, + "place_type": "admin", + "bounding_box": { + "coordinates": [ + [ + [ + -124.482003, + 32.528832 + ], + [ + -114.131212, + 32.528832 + ], + [ + -114.131212, + 42.009519 + ], + [ + -124.482003, + 42.009519 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "California, USA", + "id": "fbd6d2f5a4e4a15e", + "name": "California" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682388006666395648, + "text": "Day one of building the Paulk Total Station. Rough cut sheets and made leg jigs. https://t.co/drAG8j6GkF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 3913671, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", + "statuses_count": 7225, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3913671/1405375593", + "is_translator": false + }, + { + "time_zone": "Dublin", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "348942463", + "following": false, + "friends_count": 1107, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ie.linkedin.com/in/stephenmcin\u2026", + "url": "http://t.co/ECVj1K5Thi", + "expanded_url": "http://ie.linkedin.com/in/stephenmcintyre", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFF7CC", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 11958, + "location": "EMEA HQ, Dublin, Ireland", + "screen_name": "stephenpmc", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 179, + "name": "Stephen McIntyre", + "profile_use_background_image": true, + "description": "Building Twitter's business in Europe, Middle East, and Africa. VP Sales, MD Ireland.", + "url": "http://t.co/ECVj1K5Thi", + "profile_text_color": "0C3E53", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", + "profile_background_color": "BADFCD", + "created_at": "Fri Aug 05 07:57:24 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", + "favourites_count": 3641, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685534573388804097", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/EPN/status/685\u2026", + "url": "https://t.co/deWO9KQSUX", + "expanded_url": "https://twitter.com/EPN/status/685526304058294272", + "indices": [ + 49, + 72 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 18:52:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685534573388804097, + "text": "Mexican President announces capture of El Chapo. https://t.co/deWO9KQSUX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 348942463, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", + "statuses_count": 3900, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/348942463/1347467641", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18700629", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sciencedaily.com", + "url": "http://t.co/DQWVlXDGLC", + "expanded_url": "http://www.sciencedaily.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 171071, + "location": "Rockville, MD", + "screen_name": "ScienceDaily", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 5572, + "name": "ScienceDaily", + "profile_use_background_image": true, + "description": "Visit ScienceDaily to read breaking news about the latest discoveries in science, health, the environment, and technology.", + "url": "http://t.co/DQWVlXDGLC", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Tue Jan 06 23:14:22 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", + "favourites_count": 0, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685583808477835264", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 317, + "h": 360, + "resize": "fit" + }, + "large": { + "w": 317, + "h": 360, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 317, + "h": 360, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOu12SUoAA9qGW.jpg", + "type": "photo", + "indices": [ + 65, + 88 + ], + "media_url": "http://pbs.twimg.com/media/CYOu12SUoAA9qGW.jpg", + "display_url": "pic.twitter.com/RagFaxRhGm", + "id_str": "685583808419110912", + "expanded_url": "http://twitter.com/ScienceDaily/status/685583808477835264/photo/1", + "id": 685583808419110912, + "url": "https://t.co/RagFaxRhGm" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "dlvr.it/DD7PGt", + "url": "https://t.co/tC3IyQwb7T", + "expanded_url": "http://dlvr.it/DD7PGt", + "indices": [ + 41, + 64 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:08:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "cy", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685583808477835264, + "text": "Non-Circadian Biological Rhythm in Teeth https://t.co/tC3IyQwb7T https://t.co/RagFaxRhGm", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "dlvr.it" + }, + "default_profile_image": false, + "id": 18700629, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 27241, + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "23331708", + "following": false, + "friends_count": 495, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "247laundryservice.com", + "url": "https://t.co/iLa6wu5cWo", + "expanded_url": "http://www.247laundryservice.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "7D7D7D", + "geo_enabled": true, + "followers_count": 33472, + "location": "Brooklyn", + "screen_name": "jasonwstein", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 231, + "name": "Jason Stein", + "profile_use_background_image": false, + "description": "founder/ceo of @247LS + @bycycle. partner at @WindforceVC.", + "url": "https://t.co/iLa6wu5cWo", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Sun Mar 08 17:45:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", + "favourites_count": 22892, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685629486008799233", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/247ls/status/6\u2026", + "url": "https://t.co/taOld1cZvY", + "expanded_url": "https://twitter.com/247ls/status/685610657870393344", + "indices": [ + 48, + 71 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jasonwstein", + "id_str": "23331708", + "id": 23331708, + "indices": [ + 34, + 46 + ], + "name": "Jason Stein" + } + ] + }, + "created_at": "Sat Jan 09 01:09:42 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685629486008799233, + "text": "WHAT IS YOUR PEACH STRATEGY?!\ud83c\udf51 cc @jasonwstein https://t.co/taOld1cZvY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685629699360440320", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/247ls/status/6\u2026", + "url": "https://t.co/taOld1cZvY", + "expanded_url": "https://twitter.com/247ls/status/685610657870393344", + "indices": [ + 63, + 86 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MikePetes", + "id_str": "55116303", + "id": 55116303, + "indices": [ + 3, + 13 + ], + "name": "iSeeDigital" + }, + { + "screen_name": "jasonwstein", + "id_str": "23331708", + "id": 23331708, + "indices": [ + 49, + 61 + ], + "name": "Jason Stein" + } + ] + }, + "created_at": "Sat Jan 09 01:10:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685629699360440320, + "text": "RT @MikePetes: WHAT IS YOUR PEACH STRATEGY?!\ud83c\udf51 cc @jasonwstein https://t.co/taOld1cZvY", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 23331708, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", + "statuses_count": 19834, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/23331708/1435423055", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3668032217", + "following": false, + "friends_count": 192, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jamesblaketennis.com", + "url": "http://t.co/CMTAZXOYcQ", + "expanded_url": "http://jamesblaketennis.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 8355, + "location": "", + "screen_name": "JRBlake", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 135, + "name": "James Blake", + "profile_use_background_image": true, + "description": "Former Professional Tennis Player, New York Times Best Selling Author, and proud Husband and Father. Founder of the James Blake Foundation.", + "url": "http://t.co/CMTAZXOYcQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Sep 15 21:43:58 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", + "favourites_count": 590, + "status": { + "retweet_count": 13, + "retweeted_status": { + "retweet_count": 13, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685480670643146752", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "volvocarsopen.com/tickets/powers\u2026", + "url": "https://t.co/IxjNGbhZN9", + "expanded_url": "http://volvocarsopen.com/tickets/powersharesseries/", + "indices": [ + 70, + 93 + ] + }, + { + "display_url": "twitter.com/andyroddick/st\u2026", + "url": "https://t.co/4pDrSuBdw6", + "expanded_url": "https://twitter.com/andyroddick/status/685470905523240960", + "indices": [ + 94, + 117 + ] + } + ], + "hashtags": [ + { + "indices": [ + 53, + 57 + ], + "text": "chs" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 15:18:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685480670643146752, + "text": "It's true! Roddick, Agassi, Blake & Fish will in #chs on April 9. https://t.co/IxjNGbhZN9 https://t.co/4pDrSuBdw6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 36, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685585393513701376", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "volvocarsopen.com/tickets/powers\u2026", + "url": "https://t.co/IxjNGbhZN9", + "expanded_url": "http://volvocarsopen.com/tickets/powersharesseries/", + "indices": [ + 89, + 112 + ] + }, + { + "display_url": "twitter.com/andyroddick/st\u2026", + "url": "https://t.co/4pDrSuBdw6", + "expanded_url": "https://twitter.com/andyroddick/status/685470905523240960", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [ + { + "indices": [ + 72, + 76 + ], + "text": "chs" + } + ], + "user_mentions": [ + { + "screen_name": "VolvoCarsOpen", + "id_str": "69045204", + "id": 69045204, + "indices": [ + 3, + 17 + ], + "name": "Volvo Cars Open" + } + ] + }, + "created_at": "Fri Jan 08 22:14:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685585393513701376, + "text": "RT @VolvoCarsOpen: It's true! Roddick, Agassi, Blake & Fish will in #chs on April 9. https://t.co/IxjNGbhZN9 https://t.co/4pDrSuBdw6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3668032217, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 342, + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "1263452575", + "following": false, + "friends_count": 149, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "paperrockmusic.com", + "url": "http://t.co/HG6rAVrAPT", + "expanded_url": "http://paperrockmusic.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 99, + "location": "Brooklyn, Ny", + "screen_name": "PaperrockRcrds", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 3, + "name": "Paperrock Records", + "profile_use_background_image": true, + "description": "Independent Record Label founded by World renown Hip-Hop artist Spliff Star Also known as Mr. Lewis |\r\nInstagram - Paperrockrecords #BigRings", + "url": "http://t.co/HG6rAVrAPT", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Mar 13 03:11:40 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", + "favourites_count": 3, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": 1263452575, + "possibly_sensitive": false, + "id_str": "328256590006329345", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/Yn261EQoww/", + "url": "http://t.co/6TtLEzXxpB", + "expanded_url": "http://instagram.com/p/Yn261EQoww/", + "indices": [ + 104, + 126 + ] + } + ], + "hashtags": [ + { + "indices": [ + 56, + 65 + ], + "text": "BIGRINGS" + } + ], + "user_mentions": [ + { + "screen_name": "PaperrockRcrds", + "id_str": "1263452575", + "id": 1263452575, + "indices": [ + 0, + 15 + ], + "name": "Paperrock Records" + }, + { + "screen_name": "STARSPLIFF", + "id_str": "21628325", + "id": 21628325, + "indices": [ + 66, + 77 + ], + "name": "MR.LEWIS" + }, + { + "screen_name": "Bugs_Kalhune", + "id_str": "34973816", + "id": 34973816, + "indices": [ + 89, + 102 + ], + "name": "Bugs kalhune" + } + ] + }, + "created_at": "Sat Apr 27 21:17:24 +0000 2013", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "1263452575", + "place": null, + "in_reply_to_screen_name": "PaperrockRcrds", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 328256590006329345, + "text": "@paperrockrcrds ITS NOT JUST A MOVEMENT ITS A LIFESTYLE #BIGRINGS @starspliff bonasty550 @Bugs_Kalhune\u2026 http://t.co/6TtLEzXxpB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Instagram" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "328256723167100928", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/Yn261EQoww/", + "url": "http://t.co/6TtLEzXxpB", + "expanded_url": "http://instagram.com/p/Yn261EQoww/", + "indices": [ + 116, + 138 + ] + } + ], + "hashtags": [ + { + "indices": [ + 68, + 77 + ], + "text": "BIGRINGS" + } + ], + "user_mentions": [ + { + "screen_name": "MEP247", + "id_str": "38024996", + "id": 38024996, + "indices": [ + 3, + 10 + ], + "name": "M.E.P MUSIC" + }, + { + "screen_name": "PaperrockRcrds", + "id_str": "1263452575", + "id": 1263452575, + "indices": [ + 12, + 27 + ], + "name": "Paperrock Records" + }, + { + "screen_name": "STARSPLIFF", + "id_str": "21628325", + "id": 21628325, + "indices": [ + 78, + 89 + ], + "name": "MR.LEWIS" + }, + { + "screen_name": "Bugs_Kalhune", + "id_str": "34973816", + "id": 34973816, + "indices": [ + 101, + 114 + ], + "name": "Bugs kalhune" + } + ] + }, + "created_at": "Sat Apr 27 21:17:56 +0000 2013", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 328256723167100928, + "text": "RT @MEP247: @paperrockrcrds ITS NOT JUST A MOVEMENT ITS A LIFESTYLE #BIGRINGS @starspliff bonasty550 @Bugs_Kalhune\u2026 http://t.co/6TtLEzXxpB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Echofon" + }, + "default_profile_image": false, + "id": 1263452575, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", + "statuses_count": 45, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1263452575/1365098791", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1085", + "following": false, + "friends_count": 206, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "niallkennedy.com", + "url": "http://t.co/JhRVjTpizS", + "expanded_url": "http://www.niallkennedy.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 1847, + "location": "San Francisco, CA", + "screen_name": "niall", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 87, + "name": "Niall Kennedy", + "profile_use_background_image": false, + "description": "Tech, food, puppies, and nature in and around San Francisco.", + "url": "http://t.co/JhRVjTpizS", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Sun Jul 16 00:43:24 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", + "favourites_count": 34, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 14397792, + "possibly_sensitive": false, + "id_str": "680907448635396096", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "anchordistilling.com/brand/anchor/#\u2026", + "url": "https://t.co/V07UrX1g2R", + "expanded_url": "http://www.anchordistilling.com/brand/anchor/#anchor-christmas-spirit", + "indices": [ + 84, + 107 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ScottBeale", + "id_str": "14397792", + "id": 14397792, + "indices": [ + 0, + 11 + ], + "name": "Scott Beale" + }, + { + "screen_name": "AnchorBrewing", + "id_str": "388456067", + "id": 388456067, + "indices": [ + 12, + 26 + ], + "name": "Anchor Brewing" + } + ] + }, + "created_at": "Sun Dec 27 00:26:01 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "14397792", + "place": null, + "in_reply_to_screen_name": "ScottBeale", + "in_reply_to_status_id_str": "680870121104084994", + "truncated": false, + "id": 680907448635396096, + "text": "@ScottBeale @AnchorBrewing last year's beer now exists in double-distilled form too https://t.co/V07UrX1g2R", + "coordinates": null, + "in_reply_to_status_id": 680870121104084994, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 1085, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 1321, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1085/1420868587", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18825961", + "following": false, + "friends_count": 1086, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/skrillex", + "url": "http://t.co/kEuzso7gAM", + "expanded_url": "http://facebook.com/skrillex", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 4720926, + "location": "\u00dcT: 33.997971,-118.280807", + "screen_name": "Skrillex", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 12267, + "name": "SKRILLEX", + "profile_use_background_image": true, + "description": "your friend \u2022 insta / snap: Skrillex", + "url": "http://t.co/kEuzso7gAM", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Jan 10 03:49:35 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", + "favourites_count": 2851, + "status": { + "retweet_count": 356, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685618210050187264", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/aAv8AtxuF8s", + "url": "https://t.co/4gYP5AnuSj", + "expanded_url": "https://youtu.be/aAv8AtxuF8s", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Torro_Torro", + "id_str": "74788519", + "id": 74788519, + "indices": [ + 49, + 61 + ], + "name": "TORRO TORRO" + } + ] + }, + "created_at": "Sat Jan 09 00:24:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685618210050187264, + "text": "also stoked to finally share the remix i did for @Torro_Torro with you guys : ) https://t.co/4gYP5AnuSj", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 976, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 18825961, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 13385, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18825961/1398372903", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14248315", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "errolmorris.com", + "url": "http://t.co/8y1kL5WTwP", + "expanded_url": "http://www.errolmorris.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 50992, + "location": "Cambridge, MA", + "screen_name": "errolmorris", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2255, + "name": "errolmorris", + "profile_use_background_image": true, + "description": "writer, filmmaker, something else maybe...", + "url": "http://t.co/8y1kL5WTwP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Sat Mar 29 00:53:54 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", + "favourites_count": 1, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 4, + "truncated": false, + "retweeted": false, + "id_str": "668005462181289984", + "id": 668005462181289984, + "text": "Why do people worry so much about what others might think? (Quote from \"Real Enemies,\" Kathryn Olmsted)", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Nov 21 09:58:07 +0000 2015", + "source": "Echofon", + "favorite_count": 16, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14248315, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", + "statuses_count": 3914, + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "14065609", + "following": false, + "friends_count": 563, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/aparnacd", + "url": "http://t.co/YU1CzLEyBM", + "expanded_url": "http://www.linkedin.com/in/aparnacd", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 1803, + "location": "San Francisco Bay area", + "screen_name": "aparnacd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 68, + "name": "Aparna Chennapragada", + "profile_use_background_image": true, + "description": "Head of product, Google Now. Previously at Akamai, MIT, UT Austin, IIT Madras.", + "url": "http://t.co/YU1CzLEyBM", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", + "profile_background_color": "EDECE9", + "created_at": "Sat Mar 01 17:32:31 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "D3D2CF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", + "favourites_count": 321, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677317176429121537", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/google/status/\u2026", + "url": "https://t.co/t1PEYrBaa6", + "expanded_url": "https://twitter.com/google/status/677258031868981248", + "indices": [ + 20, + 43 + ] + } + ], + "hashtags": [ + { + "indices": [ + 5, + 18 + ], + "text": "YearInSearch" + } + ], + "user_mentions": [] + }, + "created_at": "Thu Dec 17 02:39:33 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677317176429121537, + "text": "2015 #YearInSearch https://t.co/t1PEYrBaa6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 14065609, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", + "statuses_count": 177, + "is_translator": false + }, + { + "time_zone": "Sydney", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 39600, + "id_str": "14563623", + "following": false, + "friends_count": 132, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "rethrick.com/p/about/", + "url": "http://t.co/ARYETd4QIZ", + "expanded_url": "http://rethrick.com/p/about/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 4244, + "location": "San Francisco, California", + "screen_name": "dhanji", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 302, + "name": "Dhanji R. Prasanna", + "profile_use_background_image": true, + "description": "aspiring mad scientist", + "url": "http://t.co/ARYETd4QIZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Apr 28 01:03:24 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", + "favourites_count": 556, + "status": { + "retweet_count": 7131, + "retweeted_status": { + "retweet_count": 7131, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "526770571728531456", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", + "type": "photo", + "indices": [ + 84, + 106 + ], + "media_url": "http://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", + "display_url": "pic.twitter.com/sqiNaYGDQy", + "id_str": "526770570625433601", + "expanded_url": "http://twitter.com/heathercmiller/status/526770571728531456/photo/1", + "id": 526770570625433601, + "url": "http://t.co/sqiNaYGDQy" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jamesiry", + "id_str": "19044984", + "id": 19044984, + "indices": [ + 40, + 49 + ], + "name": "James Iry" + }, + { + "screen_name": "databricks", + "id_str": "1562518867", + "id": 1562518867, + "indices": [ + 50, + 61 + ], + "name": "Databricks" + } + ] + }, + "created_at": "Mon Oct 27 16:21:05 +0000 2014", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 526770571728531456, + "text": "Carved something scary into pumpkin cc/ @jamesiry @databricks (office jackolantern) http://t.co/sqiNaYGDQy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4372, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "657784111738716160", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 399, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + } + }, + "source_status_id_str": "526770571728531456", + "url": "http://t.co/sqiNaYGDQy", + "media_url": "http://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", + "source_user_id_str": "22874473", + "id_str": "526770570625433601", + "id": 526770570625433601, + "media_url_https": "https://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", + "type": "photo", + "indices": [ + 104, + 126 + ], + "source_status_id": 526770571728531456, + "source_user_id": 22874473, + "display_url": "pic.twitter.com/sqiNaYGDQy", + "expanded_url": "http://twitter.com/heathercmiller/status/526770571728531456/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "heathercmiller", + "id_str": "22874473", + "id": 22874473, + "indices": [ + 3, + 18 + ], + "name": "Heather Miller" + }, + { + "screen_name": "jamesiry", + "id_str": "19044984", + "id": 19044984, + "indices": [ + 60, + 69 + ], + "name": "James Iry" + }, + { + "screen_name": "databricks", + "id_str": "1562518867", + "id": 1562518867, + "indices": [ + 70, + 81 + ], + "name": "Databricks" + } + ] + }, + "created_at": "Sat Oct 24 05:02:07 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 657784111738716160, + "text": "RT @heathercmiller: Carved something scary into pumpkin cc/ @jamesiry @databricks (office jackolantern) http://t.co/sqiNaYGDQy", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Tweetbot for i\u039fS" + }, + "default_profile_image": false, + "id": 14563623, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 14711, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "39623638", + "following": false, + "friends_count": 7444, + "entities": { + "description": { + "urls": [ + { + "display_url": "s.sho.com/1mGJrJp", + "url": "https://t.co/TOH5yZnKGu", + "expanded_url": "http://s.sho.com/1mGJrJp", + "indices": [ + 84, + 107 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "sho.com/sports", + "url": "https://t.co/kvwbT7SmMj", + "expanded_url": "http://sho.com/sports", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 232338, + "location": "New York City", + "screen_name": "SHOsports", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1446, + "name": "SHOWTIME SPORTS", + "profile_use_background_image": true, + "description": "Home of Championship Boxing & award-winning documentaries. Rules: https://t.co/TOH5yZnKGu", + "url": "https://t.co/kvwbT7SmMj", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", + "profile_background_color": "131516", + "created_at": "Tue May 12 23:13:03 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", + "favourites_count": 2329, + "status": { + "retweet_count": 17, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685585686460682240", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "amp.twimg.com/v/1b51d81c-4d6\u2026", + "url": "https://t.co/LsTxMgCT2w", + "expanded_url": "https://amp.twimg.com/v/1b51d81c-4d65-4764-9ee1-f255d06d8fdd", + "indices": [ + 119, + 142 + ] + } + ], + "hashtags": [ + { + "indices": [ + 104, + 118 + ], + "text": "WilderSzpilka" + } + ], + "user_mentions": [ + { + "screen_name": "szpilka_artur", + "id_str": "2203413204", + "id": 2203413204, + "indices": [ + 1, + 15 + ], + "name": "Artur Szpilka" + } + ] + }, + "created_at": "Fri Jan 08 22:15:39 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685585686460682240, + "text": ".@szpilka_artur fought his way into the ring & has a chance to be the 1st Polish Heavyweight Champ. #WilderSzpilka\nhttps://t.co/LsTxMgCT2w", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 31, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 39623638, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 29318, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39623638/1451521993", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "17901282", + "following": false, + "friends_count": 31187, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "hbo.com/boxing/", + "url": "http://t.co/MyHnldJu4d", + "expanded_url": "http://www.hbo.com/boxing/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "949494", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 434808, + "location": "New York, NY", + "screen_name": "HBOboxing", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2954, + "name": "HBOboxing", + "profile_use_background_image": false, + "description": "*By tagging us in a tweet, you consent to allowing HBO Sports to use and showcase it in any media* Instagram/Snapchat: @HBOboxing", + "url": "http://t.co/MyHnldJu4d", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Dec 05 16:43:16 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", + "favourites_count": 94, + "status": { + "retweet_count": 46, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 46, + "truncated": false, + "retweeted": false, + "id_str": "685186658585559041", + "id": 685186658585559041, + "text": "I'm fighting the bests in the sport cuz I don't take boxing as a business, boxing is a passion for me. #boxing #pleasethecrowd @HBOboxing", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 104, + 111 + ], + "text": "boxing" + }, + { + "indices": [ + 112, + 127 + ], + "text": "pleasethecrowd" + } + ], + "user_mentions": [ + { + "screen_name": "HBOboxing", + "id_str": "17901282", + "id": 17901282, + "indices": [ + 128, + 138 + ], + "name": "HBOboxing" + } + ] + }, + "created_at": "Thu Jan 07 19:50:04 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 82, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "685390200466440192", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 125, + 132 + ], + "text": "boxing" + }, + { + "indices": [ + 133, + 140 + ], + "text": "pleasethecrowd" + } + ], + "user_mentions": [ + { + "screen_name": "jeanpascalchamp", + "id_str": "82261541", + "id": 82261541, + "indices": [ + 3, + 19 + ], + "name": "Jean Pascal" + }, + { + "screen_name": "HBOboxing", + "id_str": "17901282", + "id": 17901282, + "indices": [ + 139, + 140 + ], + "name": "HBOboxing" + } + ] + }, + "created_at": "Fri Jan 08 09:18:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685390200466440192, + "text": "RT @jeanpascalchamp: I'm fighting the bests in the sport cuz I don't take boxing as a business, boxing is a passion for me. #boxing #pleas\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 17901282, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", + "statuses_count": 21087, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17901282/1448175844", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3320010078", + "following": false, + "friends_count": 47, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/extremeownersh\u2026", + "url": "http://t.co/6Lnf7gknOo", + "expanded_url": "http://facebook.com/extremeownership", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 23709, + "location": "", + "screen_name": "jockowillink", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 194, + "name": "Jocko Willink", + "profile_use_background_image": false, + "description": "Leader; follower. Reader; writer. Speaker; listener. Student; teacher. \n#DisciplineEqualsFreedom\n#ExtremeOwnership", + "url": "http://t.co/6Lnf7gknOo", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Aug 19 13:39:44 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", + "favourites_count": 8988, + "status": { + "retweet_count": 6, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685472957599191040", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNKA7FWAAM_hWU.jpg", + "type": "photo", + "indices": [ + 27, + 50 + ], + "media_url": "http://pbs.twimg.com/media/CYNKA7FWAAM_hWU.jpg", + "display_url": "pic.twitter.com/ZMGrCZ2Tvu", + "id_str": "685472948011008003", + "expanded_url": "http://twitter.com/jockowillink/status/685472957599191040/photo/1", + "id": 685472948011008003, + "url": "https://t.co/ZMGrCZ2Tvu" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 14:47:43 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685472957599191040, + "text": "Aftermath. Repeat process. https://t.co/ZMGrCZ2Tvu", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 83, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3320010078, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 8293, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320010078/1443236759", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "24393384", + "following": false, + "friends_count": 2123, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 141012, + "location": "NYC", + "screen_name": "40oz_VAN", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 546, + "name": "40", + "profile_use_background_image": true, + "description": "40ozVAN@gmail.com", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sat Mar 14 16:45:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", + "favourites_count": 3103, + "status": { + "retweet_count": 37, + "in_reply_to_user_id": null, + "possibly_sensitive": true, + "id_str": "685632158170353666", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 604, + "resize": "fit" + }, + "large": { + "w": 720, + "h": 1280, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 600, + "h": 1067, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685631987332194305/pu/img/mfMyOXVZE2J2F3cr.jpg", + "type": "photo", + "indices": [ + 10, + 33 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685631987332194305/pu/img/mfMyOXVZE2J2F3cr.jpg", + "display_url": "pic.twitter.com/EMAsqu18fZ", + "id_str": "685631987332194305", + "expanded_url": "http://twitter.com/40oz_VAN/status/685632158170353666/video/1", + "id": 685631987332194305, + "url": "https://t.co/EMAsqu18fZ" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:20:19 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/3b77caf94bfc81fe.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -118.668404, + 33.704538 + ], + [ + -118.155409, + 33.704538 + ], + [ + -118.155409, + 34.337041 + ], + [ + -118.668404, + 34.337041 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Los Angeles, CA", + "id": "3b77caf94bfc81fe", + "name": "Los Angeles" + }, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685632158170353666, + "text": "I love LA https://t.co/EMAsqu18fZ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 130, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 24393384, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", + "statuses_count": 130490, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/24393384/1452240381", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "1639866613", + "following": false, + "friends_count": 280, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/pub/dave-free/\u2026", + "url": "https://t.co/iBhESeXA5c", + "expanded_url": "http://www.linkedin.com/pub/dave-free/82/420/ba1/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 16652, + "location": "LAX", + "screen_name": "miyatola", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 92, + "name": "Dave Free", + "profile_use_background_image": true, + "description": "President of TDE | Management & Creative for Kendrick Lamar | Jay Rock | AB-Soul | ScHoolboy Q | Isaiah Rashad | SZA | the little homies |Digi+Phonics |", + "url": "https://t.co/iBhESeXA5c", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Fri Aug 02 07:22:39 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", + "favourites_count": 26, + "status": { + "retweet_count": 14, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685555521907081216", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "on.mtv.com/1RGTGtJ", + "url": "https://t.co/XNC4l2WRz3", + "expanded_url": "http://on.mtv.com/1RGTGtJ", + "indices": [ + 58, + 81 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "MTVNews", + "id_str": "40076725", + "id": 40076725, + "indices": [ + 86, + 94 + ], + "name": "MTV News" + } + ] + }, + "created_at": "Fri Jan 08 20:15:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685555521907081216, + "text": "Inside Top Dawg Entertainment's Christmas In The Projects https://t.co/XNC4l2WRz3 via @MTVNews", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 28, + "contributors": null, + "source": "Mobile Web" + }, + "default_profile_image": false, + "id": 1639866613, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", + "statuses_count": 687, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1639866613/1448157283", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "99841232", + "following": false, + "friends_count": 812, + "entities": { + "description": { + "urls": [ + { + "display_url": "soundcloud.com/young-magic", + "url": "https://t.co/q6ASiQNDfX", + "expanded_url": "https://soundcloud.com/young-magic", + "indices": [ + 22, + 45 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "youngmagicsounds.com", + "url": "http://t.co/jz4VuRfCjB", + "expanded_url": "http://youngmagicsounds.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 8999, + "location": "Brooklyn, NY \u262f", + "screen_name": "ItsYoungMagic", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 76, + "name": "Young Magic", + "profile_use_background_image": true, + "description": "Melati + Izak \u30b7\u30eb\u30af\u5922\u307f\u308b\u4eba https://t.co/q6ASiQNDfX", + "url": "http://t.co/jz4VuRfCjB", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Mon Dec 28 02:47:34 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", + "favourites_count": 510, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "__1987", + "in_reply_to_user_id": 106246844, + "in_reply_to_status_id_str": "683843464010661888", + "retweet_count": 1, + "truncated": false, + "retweeted": false, + "id_str": "683855685822623744", + "id": 683855685822623744, + "text": "@__1987 yes! but no shows in Tokyo this time. lookout in the summer \ud83c\udf1e", + "in_reply_to_user_id_str": "106246844", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "__1987", + "id_str": "106246844", + "id": 106246844, + "indices": [ + 0, + 7 + ], + "name": "aka neco." + } + ] + }, + "created_at": "Mon Jan 04 03:41:15 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 683843464010661888, + "lang": "en" + }, + "default_profile_image": false, + "id": 99841232, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", + "statuses_count": 1074, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/99841232/1424777262", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2194124415", + "following": false, + "friends_count": 652, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 20379, + "location": "United Kingdom", + "screen_name": "ZiauddinY", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 134, + "name": "Ziauddin Yousafzai", + "profile_use_background_image": true, + "description": "Proud to be a teacher, Malala's father and a peace, women's rights and education activist. \nRTs do not equal endorsement.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sun Nov 24 13:37:54 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", + "favourites_count": 953, + "status": { + "retweet_count": 3, + "retweeted_status": { + "retweet_count": 3, + "in_reply_to_user_id": 2194124415, + "possibly_sensitive": false, + "id_str": "685487976797843457", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 192, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 339, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 579, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", + "type": "photo", + "indices": [ + 121, + 144 + ], + "media_url": "http://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", + "display_url": "pic.twitter.com/SFHp6vUmvV", + "id_str": "685487974939791361", + "expanded_url": "http://twitter.com/hasanatnaz099/status/685487976797843457/photo/1", + "id": 685487974939791361, + "url": "https://t.co/SFHp6vUmvV" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ZiauddinY", + "id_str": "2194124415", + "id": 2194124415, + "indices": [ + 0, + 10 + ], + "name": "Ziauddin Yousafzai" + } + ] + }, + "created_at": "Fri Jan 08 15:47:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "2194124415", + "place": null, + "in_reply_to_screen_name": "ZiauddinY", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685487976797843457, + "text": "@ZiauddinY Plz shair this page frm ur ID .We r going to start givg free education fr orfan & poor grls stdent at IPS https://t.co/SFHp6vUmvV", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685520107825684481", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 192, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 339, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 579, + "resize": "fit" + } + }, + "source_status_id_str": "685487976797843457", + "url": "https://t.co/SFHp6vUmvV", + "media_url": "http://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", + "source_user_id_str": "2975276364", + "id_str": "685487974939791361", + "id": 685487974939791361, + "media_url_https": "https://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", + "type": "photo", + "indices": [ + 143, + 144 + ], + "source_status_id": 685487976797843457, + "source_user_id": 2975276364, + "display_url": "pic.twitter.com/SFHp6vUmvV", + "expanded_url": "http://twitter.com/hasanatnaz099/status/685487976797843457/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "hasanatnaz099", + "id_str": "2975276364", + "id": 2975276364, + "indices": [ + 3, + 17 + ], + "name": "Hussain Ahmad" + }, + { + "screen_name": "ZiauddinY", + "id_str": "2194124415", + "id": 2194124415, + "indices": [ + 19, + 29 + ], + "name": "Ziauddin Yousafzai" + } + ] + }, + "created_at": "Fri Jan 08 17:55:04 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685520107825684481, + "text": "RT @hasanatnaz099: @ZiauddinY Plz shair this page frm ur ID .We r going to start givg free education fr orfan & poor grls stdent at IPS htt\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPad" + }, + "default_profile_image": false, + "id": 2194124415, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 1217, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2194124415/1385300984", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "20783", + "following": false, + "friends_count": 3684, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "piperkerman.com", + "url": "https://t.co/bZNP8H8fqP", + "expanded_url": "http://www.piperkerman.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "0000FF", + "geo_enabled": true, + "followers_count": 112426, + "location": "Ohio, USA", + "screen_name": "Piper", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 933, + "name": "Piper Kerman", + "profile_use_background_image": true, + "description": "Author of #1 @NYTimes bestseller Orange is the New Black: My Year in a Women's Prison @sixwords: In and out of hot water", + "url": "https://t.co/bZNP8H8fqP", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", + "profile_background_color": "9AE4E8", + "created_at": "Fri Nov 24 19:35:29 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "87BC44", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", + "favourites_count": 26942, + "status": { + "retweet_count": 2, + "retweeted_status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685630905415774208", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wny.cc/WO2oH", + "url": "https://t.co/56sDTHSdF6", + "expanded_url": "http://wny.cc/WO2oH", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "jonesarah", + "id_str": "17279778", + "id": 17279778, + "indices": [ + 40, + 50 + ], + "name": "Sarah Jones" + } + ] + }, + "created_at": "Sat Jan 09 01:15:20 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685630905415774208, + "text": "Listen to our weekend podcast! It's got @jonesarah's many characters, believers in the American Dream + more: https://t.co/56sDTHSdF6", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Hootsuite" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685631198408916992", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "wny.cc/WO2oH", + "url": "https://t.co/56sDTHSdF6", + "expanded_url": "http://wny.cc/WO2oH", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BrianLehrer", + "id_str": "12011422", + "id": 12011422, + "indices": [ + 3, + 15 + ], + "name": "Brian Lehrer Show" + }, + { + "screen_name": "jonesarah", + "id_str": "17279778", + "id": 17279778, + "indices": [ + 57, + 67 + ], + "name": "Sarah Jones" + } + ] + }, + "created_at": "Sat Jan 09 01:16:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685631198408916992, + "text": "RT @BrianLehrer: Listen to our weekend podcast! It's got @jonesarah's many characters, believers in the American Dream + more: https://t.co\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 20783, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", + "statuses_count": 16320, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "19725644", + "following": false, + "friends_count": 46, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "haydenplanetarium.org/tyson/", + "url": "http://t.co/FRT5oYtwbX", + "expanded_url": "http://www.haydenplanetarium.org/tyson/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E6F6F9", + "profile_link_color": "CC3366", + "geo_enabled": false, + "followers_count": 4745658, + "location": "New York City", + "screen_name": "neiltyson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 39782, + "name": "Neil deGrasse Tyson", + "profile_use_background_image": true, + "description": "Astrophysicist", + "url": "http://t.co/FRT5oYtwbX", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", + "profile_background_color": "DBE9ED", + "created_at": "Thu Jan 29 18:40:26 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "DBE9ED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", + "favourites_count": 2, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "Aelshawa", + "in_reply_to_user_id": 214174929, + "in_reply_to_status_id_str": "685134548724768768", + "retweet_count": 63, + "truncated": false, + "retweeted": false, + "id_str": "685135243280564224", + "id": 685135243280564224, + "text": "@Aelshawa \u2014 The people who use probability to show that Evolution didn\u2019t happen, don\u2019t fully understand Evolution.", + "in_reply_to_user_id_str": "214174929", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Aelshawa", + "id_str": "214174929", + "id": 214174929, + "indices": [ + 0, + 9 + ], + "name": "Abdulmajeed Elshawa" + } + ] + }, + "created_at": "Thu Jan 07 16:25:45 +0000 2016", + "source": "TweetDeck", + "favorite_count": 136, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685134548724768768, + "lang": "en" + }, + "default_profile_image": false, + "id": 19725644, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", + "statuses_count": 4758, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19725644/1400087889", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2916305152", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "freedom.press", + "url": "https://t.co/U63fP7T2ST", + "expanded_url": "https://freedom.press", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1742443, + "location": "", + "screen_name": "Snowden", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 10802, + "name": "Edward Snowden", + "profile_use_background_image": true, + "description": "I used to work for the government. Now I work for the public. Director at @FreedomofPress.", + "url": "https://t.co/U63fP7T2ST", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Thu Dec 11 21:24:28 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", + "favourites_count": 0, + "status": { + "retweet_count": 265, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "682267675704311809", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/ericgeller/sta\u2026", + "url": "https://t.co/YhYxUczKTn", + "expanded_url": "https://twitter.com/ericgeller/status/682264454730403840", + "indices": [ + 114, + 137 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "fka_roscosmos", + "id_str": "2306083502", + "id": 2306083502, + "indices": [ + 68, + 82 + ], + "name": "\u0420\u041e\u0421\u041a\u041e\u0421\u041c\u041e\u0421" + }, + { + "screen_name": "neiltyson", + "id_str": "19725644", + "id": 19725644, + "indices": [ + 90, + 100 + ], + "name": "Neil deGrasse Tyson" + } + ] + }, + "created_at": "Wed Dec 30 18:31:04 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 682267675704311809, + "text": "Bonus points to the first journalist to get an official ruling from @fka_roscosmos and/or @neiltyson. (Corrected) https://t.co/YhYxUczKTn", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 626, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2916305152, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 373, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2916305152/1443542022", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "299364430", + "following": false, + "friends_count": 84550, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "everettetaylor.com", + "url": "https://t.co/DTKHW8LqbJ", + "expanded_url": "http://everettetaylor.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 258639, + "location": "Los Angeles (via Richmond, VA)", + "screen_name": "Everette", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2121, + "name": "Everette Taylor", + "profile_use_background_image": true, + "description": "building + growing companies (instagram: everette x snapchat: everettetaylor)", + "url": "https://t.co/DTKHW8LqbJ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", + "profile_background_color": "131516", + "created_at": "Sun May 15 23:37:59 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", + "favourites_count": 184407, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685632481203126273", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/colageplatform\u2026", + "url": "https://t.co/FB8Y4dML7z", + "expanded_url": "https://twitter.com/colageplatform/status/685632198460882944", + "indices": [ + 78, + 101 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:21:36 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685632481203126273, + "text": "follow me on snapchat: everettetaylor and shoot me questions to get those \ud83d\udd11\ud83d\udd11\ud83d\udd11 https://t.co/FB8Y4dML7z", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 13, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 299364430, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 14393, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/299364430/1444247536", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "just a future teller", + "url": null, + "contributors_enabled": false, + "default_profile_image": false, + "utc_offset": null, + "id_str": "3633459012", + "blocking": false, + "is_translation_enabled": false, + "id": 3633459012, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Sep 21 03:20:06 +0000 2015", + "profile_image_url": "http://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "ja", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 25, + "blocked_by": false, + "following": false, + "location": "Tokyo, Japan", + "muting": false, + "friends_count": 2, + "notifications": false, + "screen_name": "aAcvyXkvyzhJJoj", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "\u5915\u590f" + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "19777398", + "following": false, + "friends_count": 19672, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tonightshow.com", + "url": "http://t.co/fgp5RYqr3T", + "expanded_url": "http://www.tonightshow.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3338719, + "location": "Weeknights 11:35/10:35c", + "screen_name": "FallonTonight", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 8975, + "name": "Fallon Tonight", + "profile_use_background_image": true, + "description": "The official Twitter for The Tonight Show Starring @JimmyFallon on @NBC. (Tweets by: @marinarachael @cdriz @thatsso_rachael @NoahGeb) #FallonTonight", + "url": "http://t.co/fgp5RYqr3T", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", + "profile_background_color": "03253E", + "created_at": "Fri Jan 30 17:26:46 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", + "favourites_count": 90384, + "status": { + "retweet_count": 46, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685630910214094848", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 169, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 298, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 509, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPZrgVWwAETzTR.png", + "type": "photo", + "indices": [ + 110, + 133 + ], + "media_url": "http://pbs.twimg.com/media/CYPZrgVWwAETzTR.png", + "display_url": "pic.twitter.com/W0JromRs3f", + "id_str": "685630909727555585", + "expanded_url": "http://twitter.com/FallonTonight/status/685630910214094848/photo/1", + "id": 685630909727555585, + "url": "https://t.co/W0JromRs3f" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "youtu.be/2uudLqnB35o", + "url": "https://t.co/6BZNCLzbQA", + "expanded_url": "https://youtu.be/2uudLqnB35o", + "indices": [ + 86, + 109 + ] + } + ], + "hashtags": [ + { + "indices": [ + 62, + 77 + ], + "text": "WorstFirstDate" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:15:22 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685630910214094848, + "text": "\"That's funny, I'd do that! I HAVE done it.\" Jimmy reads your #WorstFirstDate tweets: https://t.co/6BZNCLzbQA https://t.co/W0JromRs3f", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 234, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 19777398, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", + "statuses_count": 44485, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19777398/1401723954", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "158414847", + "following": false, + "friends_count": 277, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedailyshow.com", + "url": "http://t.co/BAakBFaEGx", + "expanded_url": "http://thedailyshow.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 3995989, + "location": "", + "screen_name": "TheDailyShow", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 36028, + "name": "The Daily Show", + "profile_use_background_image": true, + "description": "Trevor Noah and The Best F#@king News Team. Weeknights 11/10c on @ComedyCentral. Full episodes, videos, guest information. #DailyShow", + "url": "http://t.co/BAakBFaEGx", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Jun 22 16:41:05 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", + "favourites_count": 14, + "status": { + "retweet_count": 55, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685604402208608256", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "on.cc.com/1ZfZpv3", + "url": "https://t.co/aSFMNsG5gu", + "expanded_url": "http://on.cc.com/1ZfZpv3", + "indices": [ + 54, + 77 + ] + }, + { + "display_url": "pic.twitter.com/wbq98keCy7", + "url": "https://t.co/wbq98keCy7", + "expanded_url": "http://twitter.com/TheDailyShow/status/685604402208608256/photo/1", + "indices": [ + 78, + 101 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "hasanminhaj", + "id_str": "14652182", + "id": 14652182, + "indices": [ + 1, + 13 + ], + "name": "Hasan Minhaj" + } + ] + }, + "created_at": "Fri Jan 08 23:30:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685604402208608256, + "text": ".@hasanminhaj doesn\u2019t take any chances with his kicks https://t.co/aSFMNsG5gu https://t.co/wbq98keCy7", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 158, + "contributors": null, + "source": "Sprinklr" + }, + "default_profile_image": false, + "id": 158414847, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", + "statuses_count": 9003, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/158414847/1446498480", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "35773039", + "following": false, + "friends_count": 1004, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theatlantic.com", + "url": "http://t.co/pI6FUBgQdl", + "expanded_url": "http://www.theatlantic.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", + "notifications": false, + "profile_sidebar_fill_color": "E6ECF2", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 1183279, + "location": "Washington, D.C.", + "screen_name": "TheAtlantic", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 23353, + "name": "The Atlantic", + "profile_use_background_image": false, + "description": "Politics, culture, business, science, technology, health, education, global affairs, more. Tweets by @CaitlinFrazier", + "url": "http://t.co/pI6FUBgQdl", + "profile_text_color": "000408", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", + "profile_background_color": "000000", + "created_at": "Mon Apr 27 15:41:54 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BFBFBF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", + "favourites_count": 653, + "status": { + "retweet_count": 10, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685636630024187904", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 960, + "h": 640, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 226, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPe4cIWwAAZf80.jpg", + "type": "photo", + "indices": [ + 55, + 78 + ], + "media_url": "http://pbs.twimg.com/media/CYPe4cIWwAAZf80.jpg", + "display_url": "pic.twitter.com/kdav82oE0z", + "id_str": "685636629495726080", + "expanded_url": "http://twitter.com/TheAtlantic/status/685636630024187904/photo/1", + "id": 685636629495726080, + "url": "https://t.co/kdav82oE0z" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "theatln.tc/1OVIXoQ", + "url": "https://t.co/za5UpMiiXa", + "expanded_url": "http://theatln.tc/1OVIXoQ", + "indices": [ + 31, + 54 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:38:05 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685636630024187904, + "text": "How hijabs became high fashion https://t.co/za5UpMiiXa https://t.co/kdav82oE0z", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 16, + "contributors": null, + "source": "SocialFlow" + }, + "default_profile_image": false, + "id": 35773039, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", + "statuses_count": 78818, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "83876527", + "following": false, + "friends_count": 969, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tejucole.com", + "url": "http://t.co/FcCN8OHr", + "expanded_url": "http://www.tejucole.com", + "indices": [ + 0, + 20 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "D1CFC1", + "profile_link_color": "4D2911", + "geo_enabled": true, + "followers_count": 232874, + "location": "the Black Atlantic", + "screen_name": "tejucole", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2716, + "name": "Teju Cole", + "profile_use_background_image": true, + "description": "We who?", + "url": "http://t.co/FcCN8OHr", + "profile_text_color": "331D0C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", + "profile_background_color": "121314", + "created_at": "Tue Oct 20 16:27:33 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", + "favourites_count": 1992, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 168, + "truncated": false, + "retweeted": false, + "id_str": "489091384792850432", + "id": 489091384792850432, + "text": "Good time for that Twitter break. Ever yrs, &c.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jul 15 16:57:27 +0000 2014", + "source": "Twitter Web Client", + "favorite_count": 249, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 83876527, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", + "statuses_count": 13297, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/83876527/1400341445", + "is_translator": false + }, + { + "time_zone": "Rome", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "241027939", + "following": false, + "friends_count": 246, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "googlethatshit.com", + "url": "https://t.co/AGKwFEnIEM", + "expanded_url": "http://googlethatshit.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "001122", + "geo_enabled": true, + "followers_count": 259513, + "location": "Italia", + "screen_name": "AsiaArgento", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1078, + "name": "Asia Argento", + "profile_use_background_image": true, + "description": "a woman who does everything but doesn't know how to do anything / instagram = asiaargento", + "url": "https://t.co/AGKwFEnIEM", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Fri Jan 21 08:27:38 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", + "favourites_count": 28340, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "antonnewcombe", + "in_reply_to_user_id": 34408874, + "in_reply_to_status_id_str": "685548530396721152", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685571131126996992", + "id": 685571131126996992, + "text": "@antonnewcombe I stopped counting \ud83d\ude1c @SmithsonianMag", + "in_reply_to_user_id_str": "34408874", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "antonnewcombe", + "id_str": "34408874", + "id": 34408874, + "indices": [ + 0, + 14 + ], + "name": "anton newcombe" + }, + { + "screen_name": "SmithsonianMag", + "id_str": "17998609", + "id": 17998609, + "indices": [ + 36, + 51 + ], + "name": "Smithsonian Magazine" + } + ] + }, + "created_at": "Fri Jan 08 21:17:49 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685548530396721152, + "lang": "en" + }, + "default_profile_image": false, + "id": 241027939, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", + "statuses_count": 35107, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/241027939/1353605533", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2352142008", + "following": false, + "friends_count": 30, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 38786, + "location": "", + "screen_name": "DianaRoss", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 296, + "name": "Ms. Ross", + "profile_use_background_image": true, + "description": "Diana Ross Official Twitter", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Wed Feb 19 19:21:42 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", + "favourites_count": 15, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 103, + "truncated": false, + "retweeted": false, + "id_str": "685147411493224449", + "id": 685147411493224449, + "text": "There's no need to rush take five slow down", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 17:14:06 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 160, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2352142008, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 101, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "1140451", + "following": false, + "friends_count": 4937, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "antderosa.com", + "url": "https://t.co/XEmDfG5Qlv", + "expanded_url": "http://antderosa.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F0F0F0", + "profile_link_color": "2A70A6", + "geo_enabled": true, + "followers_count": 88503, + "location": "Jersey City, NJ", + "screen_name": "AntDeRosa", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4732, + "name": "Anthony De Rosa", + "profile_use_background_image": true, + "description": "Digital Production Manager for @TheDailyShow with @TrevorNoah", + "url": "https://t.co/XEmDfG5Qlv", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Mar 14 05:45:24 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", + "favourites_count": 20407, + "status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685622432665845761", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "cnn.com/2016/01/08/pol\u2026", + "url": "https://t.co/qPVMVwdw0b", + "expanded_url": "http://www.cnn.com/2016/01/08/politics/bernie-sanders-bill-clinton-disgraceful/index.html", + "indices": [ + 113, + 136 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "BernieSanders", + "id_str": "216776631", + "id": 216776631, + "indices": [ + 26, + 40 + ], + "name": "Bernie Sanders" + } + ] + }, + "created_at": "Sat Jan 09 00:41:40 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685622432665845761, + "text": "Even if you don't support @BernieSanders, you have to respect that he avoids the nonsense most candidates run on https://t.co/qPVMVwdw0b", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 19, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 1140451, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", + "statuses_count": 147545, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140451/1446584214", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "18393773", + "following": false, + "friends_count": 868, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "neilgaiman.com", + "url": "http://t.co/sGHzpf2rCG", + "expanded_url": "http://www.neilgaiman.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DAECF4", + "profile_link_color": "ABB8C2", + "geo_enabled": false, + "followers_count": 2359341, + "location": "a bit all over the place", + "screen_name": "neilhimself", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 35383, + "name": "Neil Gaiman", + "profile_use_background_image": true, + "description": "will eventually grow up and get a real job. Until then, will keep making things up and writing them down.", + "url": "http://t.co/sGHzpf2rCG", + "profile_text_color": "663B12", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", + "profile_background_color": "91AAB5", + "created_at": "Fri Dec 26 19:30:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", + "favourites_count": 1091, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "offby1", + "in_reply_to_user_id": 37362694, + "in_reply_to_status_id_str": "685631468689752064", + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "685635978531213312", + "id": 685635978531213312, + "text": "@offby1 @scalzi yes. Tweets are brought to me individually by doves and white mice.", + "in_reply_to_user_id_str": "37362694", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "offby1", + "id_str": "37362694", + "id": 37362694, + "indices": [ + 0, + 7 + ], + "name": "__rose__" + }, + { + "screen_name": "scalzi", + "id_str": "14202817", + "id": 14202817, + "indices": [ + 8, + 15 + ], + "name": "John Scalzi" + } + ] + }, + "created_at": "Sat Jan 09 01:35:30 +0000 2016", + "source": "Twitter for BlackBerry", + "favorite_count": 6, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685631468689752064, + "lang": "en" + }, + "default_profile_image": false, + "id": 18393773, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", + "statuses_count": 90748, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18393773/1424768490", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "263964021", + "following": false, + "friends_count": 864, + "entities": { + "description": { + "urls": [ + { + "display_url": "LIONBABE.COM", + "url": "http://t.co/RbZqjUPgsT", + "expanded_url": "http://LIONBABE.COM", + "indices": [ + 32, + 54 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "jillonce.tumblr.com", + "url": "http://t.co/vK5PFVYnmO", + "expanded_url": "http://jillonce.tumblr.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 7502, + "location": "NYC", + "screen_name": "Jillonce", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 77, + "name": "Jillian Hervey", + "profile_use_background_image": true, + "description": "arting all the time @LIONBABE x http://t.co/RbZqjUPgsT", + "url": "http://t.co/vK5PFVYnmO", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Fri Mar 11 02:23:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", + "favourites_count": 2910, + "status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685372920651091968", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/toneycosmos/st\u2026", + "url": "https://t.co/e4RutL4RM3", + "expanded_url": "https://twitter.com/toneycosmos/status/685313450575290368", + "indices": [ + 11, + 34 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 08:10:12 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685372920651091968, + "text": "Love u too https://t.co/e4RutL4RM3", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 2, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 263964021, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", + "statuses_count": 17306, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/263964021/1414102504", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "432588553", + "following": false, + "friends_count": 845, + "entities": { + "description": { + "urls": [ + { + "display_url": "po.st/WDWGiTTW", + "url": "https://t.co/s8fWZIpJuH", + "expanded_url": "http://po.st/WDWGiTTW", + "indices": [ + 100, + 123 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "LIONBABE.com", + "url": "http://t.co/IRuegBPo6R", + "expanded_url": "http://www.LIONBABE.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "DD2E44", + "geo_enabled": false, + "followers_count": 16954, + "location": "NYC", + "screen_name": "LionBabe", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 167, + "name": "LION BABE", + "profile_use_background_image": false, + "description": "Lion Babe is Jillian Hervey + Lucas Goodman @Jillonce + @Astro_Raw . NYC . WHERE DO WE GO - iTunes: https://t.co/s8fWZIpJuH x", + "url": "http://t.co/IRuegBPo6R", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Fri Dec 09 15:18:30 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", + "favourites_count": 9524, + "status": { + "retweet_count": 9, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685554543250178048", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 340, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1024, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOUOXSUEAAuVGX.jpg", + "type": "photo", + "indices": [ + 38, + 61 + ], + "media_url": "http://pbs.twimg.com/media/CYOUOXSUEAAuVGX.jpg", + "display_url": "pic.twitter.com/MTIiMhcsBg", + "id_str": "685554542780354560", + "expanded_url": "http://twitter.com/LionBabe/status/685554543250178048/photo/1", + "id": 685554542780354560, + "url": "https://t.co/MTIiMhcsBg" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "po.st/WDWGSp", + "url": "https://t.co/MVS9inrtAb", + "expanded_url": "http://po.st/WDWGSp", + "indices": [ + 14, + 37 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Spotify", + "id_str": "17230018", + "id": 17230018, + "indices": [ + 3, + 11 + ], + "name": "Spotify" + } + ] + }, + "created_at": "Fri Jan 08 20:11:54 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685554543250178048, + "text": "\ud83e\udd81\ud83d\udd25 @Spotify \ud83d\udc49 https://t.co/MVS9inrtAb https://t.co/MTIiMhcsBg", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 18, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 432588553, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 3674, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/432588553/1450721529", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "141326053", + "following": false, + "friends_count": 472, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "davesmithinstruments.com", + "url": "http://t.co/huTEKpwJ0k", + "expanded_url": "http://www.davesmithinstruments.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252745", + "profile_link_color": "DD5527", + "geo_enabled": false, + "followers_count": 24518, + "location": "San Francisco, CA", + "screen_name": "dsiSequential", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 395, + "name": "DaveSmithInstruments", + "profile_use_background_image": true, + "description": "Innovative music machines designed and built in San Francisco, CA.", + "url": "http://t.co/huTEKpwJ0k", + "profile_text_color": "858585", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", + "profile_background_color": "471A2E", + "created_at": "Fri May 07 19:54:02 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", + "favourites_count": 128, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "andcunning", + "in_reply_to_user_id": 264960356, + "in_reply_to_status_id_str": "685574923926896640", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685596686379450368", + "id": 685596686379450368, + "text": "@andcunning Great choice, they all compliment each other nicely!", + "in_reply_to_user_id_str": "264960356", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "andcunning", + "id_str": "264960356", + "id": 264960356, + "indices": [ + 0, + 11 + ], + "name": "Andrew Cunningham" + } + ] + }, + "created_at": "Fri Jan 08 22:59:22 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685574923926896640, + "lang": "en" + }, + "default_profile_image": false, + "id": 141326053, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", + "statuses_count": 3039, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/141326053/1421946814", + "is_translator": false + }, + { + "time_zone": "Amsterdam", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "748020092", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "M3LL155X.com", + "url": "http://t.co/Qvv5qGkNFV", + "expanded_url": "http://M3LL155X.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 159544, + "location": "", + "screen_name": "FKAtwigs", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 1066, + "name": "FKA twigs", + "profile_use_background_image": true, + "description": "", + "url": "http://t.co/Qvv5qGkNFV", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Thu Aug 09 21:57:26 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", + "favourites_count": 91, + "status": { + "retweet_count": 54, + "retweeted_status": { + "retweet_count": 54, + "in_reply_to_user_id": 748020092, + "possibly_sensitive": false, + "id_str": "683006150552489985", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 226, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", + "type": "photo", + "indices": [ + 20, + 43 + ], + "media_url": "http://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", + "display_url": "pic.twitter.com/1clJLXxlKF", + "id_str": "683006147956178944", + "expanded_url": "http://twitter.com/FKAsamuel/status/683006150552489985/photo/1", + "id": 683006147956178944, + "url": "https://t.co/1clJLXxlKF" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 10, + 16 + ], + "text": "FKAme" + } + ], + "user_mentions": [ + { + "screen_name": "FKAtwigs", + "id_str": "748020092", + "id": 748020092, + "indices": [ + 0, + 9 + ], + "name": "FKA twigs" + } + ] + }, + "created_at": "Fri Jan 01 19:25:30 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "748020092", + "place": null, + "in_reply_to_screen_name": "FKAtwigs", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683006150552489985, + "text": "@FKAtwigs #FKAme xx https://t.co/1clJLXxlKF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 320, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684397478054096896", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 682, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 226, + "resize": "fit" + } + }, + "source_status_id_str": "683006150552489985", + "url": "https://t.co/1clJLXxlKF", + "media_url": "http://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", + "source_user_id_str": "2375707136", + "id_str": "683006147956178944", + "id": 683006147956178944, + "media_url_https": "https://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", + "type": "photo", + "indices": [ + 35, + 58 + ], + "source_status_id": 683006150552489985, + "source_user_id": 2375707136, + "display_url": "pic.twitter.com/1clJLXxlKF", + "expanded_url": "http://twitter.com/FKAsamuel/status/683006150552489985/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 25, + 31 + ], + "text": "FKAme" + } + ], + "user_mentions": [ + { + "screen_name": "FKAsamuel", + "id_str": "2375707136", + "id": 2375707136, + "indices": [ + 3, + 13 + ], + "name": "Sam" + }, + { + "screen_name": "FKAtwigs", + "id_str": "748020092", + "id": 748020092, + "indices": [ + 15, + 24 + ], + "name": "FKA twigs" + } + ] + }, + "created_at": "Tue Jan 05 15:34:08 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684397478054096896, + "text": "RT @FKAsamuel: @FKAtwigs #FKAme xx https://t.co/1clJLXxlKF", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 748020092, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", + "statuses_count": 313, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/748020092/1439491511", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "14159148", + "following": false, + "friends_count": 1044, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "un.org", + "url": "http://t.co/kgJqUNDMpy", + "expanded_url": "http://www.un.org", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 5979880, + "location": "New York, NY", + "screen_name": "UN", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 34750, + "name": "United Nations", + "profile_use_background_image": false, + "description": "Official twitter account of #UnitedNations. Get the latest information on the #UN. #GlobalGoals", + "url": "http://t.co/kgJqUNDMpy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", + "profile_background_color": "0197D6", + "created_at": "Sun Mar 16 20:15:36 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", + "favourites_count": 488, + "status": { + "retweet_count": 64, + "retweeted_status": { + "retweet_count": 64, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685479107631656961", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 960, + "h": 640, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", + "type": "photo", + "indices": [ + 114, + 137 + ], + "media_url": "http://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", + "display_url": "pic.twitter.com/QKLtpXFmUE", + "id_str": "685479106977251328", + "expanded_url": "http://twitter.com/BabatundeUNFPA/status/685479107631656961/photo/1", + "id": 685479106977251328, + "url": "https://t.co/QKLtpXFmUE" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1KedoYd", + "url": "https://t.co/peOFGObDvc", + "expanded_url": "http://bit.ly/1KedoYd", + "indices": [ + 90, + 113 + ] + } + ], + "hashtags": [ + { + "indices": [ + 4, + 16 + ], + "text": "GlobalGoals" + } + ], + "user_mentions": [ + { + "screen_name": "UNFPA", + "id_str": "194643654", + "id": 194643654, + "indices": [ + 58, + 64 + ], + "name": "UNFPA" + }, + { + "screen_name": "UN", + "id_str": "14159148", + "id": 14159148, + "indices": [ + 69, + 72 + ], + "name": "United Nations" + } + ] + }, + "created_at": "Fri Jan 08 15:12:09 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685479107631656961, + "text": "The #GlobalGoals are for everyone, everywhere! RT to help @UNFPA and @UN spread the word: https://t.co/peOFGObDvc https://t.co/QKLtpXFmUE", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 53, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685628889205489665", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 226, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 400, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 960, + "h": 640, + "resize": "fit" + } + }, + "source_status_id_str": "685479107631656961", + "url": "https://t.co/QKLtpXFmUE", + "media_url": "http://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", + "source_user_id_str": "284647429", + "id_str": "685479106977251328", + "id": 685479106977251328, + "media_url_https": "https://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685479107631656961, + "source_user_id": 284647429, + "display_url": "pic.twitter.com/QKLtpXFmUE", + "expanded_url": "http://twitter.com/BabatundeUNFPA/status/685479107631656961/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1KedoYd", + "url": "https://t.co/peOFGObDvc", + "expanded_url": "http://bit.ly/1KedoYd", + "indices": [ + 110, + 133 + ] + } + ], + "hashtags": [ + { + "indices": [ + 24, + 36 + ], + "text": "GlobalGoals" + } + ], + "user_mentions": [ + { + "screen_name": "BabatundeUNFPA", + "id_str": "284647429", + "id": 284647429, + "indices": [ + 3, + 18 + ], + "name": "Babatunde Osotimehin" + }, + { + "screen_name": "UNFPA", + "id_str": "194643654", + "id": 194643654, + "indices": [ + 78, + 84 + ], + "name": "UNFPA" + }, + { + "screen_name": "UN", + "id_str": "14159148", + "id": 14159148, + "indices": [ + 89, + 92 + ], + "name": "United Nations" + } + ] + }, + "created_at": "Sat Jan 09 01:07:20 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685628889205489665, + "text": "RT @BabatundeUNFPA: The #GlobalGoals are for everyone, everywhere! RT to help @UNFPA and @UN spread the word: https://t.co/peOFGObDvc https\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 14159148, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", + "statuses_count": 42439, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159148/1447180964", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "857054191", + "following": false, + "friends_count": 51, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "dorotheegilbert.com", + "url": "http://t.co/Bifsr25Z2N", + "expanded_url": "http://www.dorotheegilbert.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 5530, + "location": "", + "screen_name": "DorotheGilbert", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 86, + "name": "Doroth\u00e9e Gilbert", + "profile_use_background_image": true, + "description": "Danseuse \u00e9toile Op\u00e9ra de Paris", + "url": "http://t.co/Bifsr25Z2N", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", + "profile_background_color": "C0DEED", + "created_at": "Mon Oct 01 21:28:01 +0000 2012", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", + "favourites_count": 139, + "status": { + "retweet_count": 66, + "retweeted_status": { + "retweet_count": 66, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678663494535946241", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", + "display_url": "pic.twitter.com/jv1N54z6RO", + "id_str": "678663485845278720", + "expanded_url": "http://twitter.com/PenelopeB/status/678663494535946241/photo/1", + "id": 678663485845278720, + "url": "https://t.co/jv1N54z6RO" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DorotheGilbert", + "id_str": "857054191", + "id": 857054191, + "indices": [ + 5, + 20 + ], + "name": "Doroth\u00e9e Gilbert" + } + ] + }, + "created_at": "Sun Dec 20 19:49:20 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "fr", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678663494535946241, + "text": "Avec @DorotheGilbert sur les toits de l'Op\u00e9ra Garnier pour un rep\u00e9rage pour ma prochaine BD. Dimanche matin normal. https://t.co/jv1N54z6RO", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 279, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "678665157552287744", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 255, + "resize": "fit" + } + }, + "source_status_id_str": "678663494535946241", + "url": "https://t.co/jv1N54z6RO", + "media_url": "http://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", + "source_user_id_str": "7817142", + "id_str": "678663485845278720", + "id": 678663485845278720, + "media_url_https": "https://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 678663494535946241, + "source_user_id": 7817142, + "display_url": "pic.twitter.com/jv1N54z6RO", + "expanded_url": "http://twitter.com/PenelopeB/status/678663494535946241/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "PenelopeB", + "id_str": "7817142", + "id": 7817142, + "indices": [ + 3, + 13 + ], + "name": "P\u00e9n\u00e9lope Bagieu" + }, + { + "screen_name": "DorotheGilbert", + "id_str": "857054191", + "id": 857054191, + "indices": [ + 20, + 35 + ], + "name": "Doroth\u00e9e Gilbert" + } + ] + }, + "created_at": "Sun Dec 20 19:55:57 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "fr", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 678665157552287744, + "text": "RT @PenelopeB: Avec @DorotheGilbert sur les toits de l'Op\u00e9ra Garnier pour un rep\u00e9rage pour ma prochaine BD. Dimanche matin normal. https://\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 857054191, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 287, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/857054191/1354469514", + "is_translator": false + }, + { + "time_zone": "London", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "166739404", + "following": false, + "friends_count": 246, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "3399FF", + "geo_enabled": true, + "followers_count": 20418728, + "location": "London", + "screen_name": "EmWatson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 43450, + "name": "Emma Watson", + "profile_use_background_image": true, + "description": "British actress, Goodwill Ambassador for UN Women", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Wed Jul 14 22:06:37 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", + "favourites_count": 765, + "status": { + "retweet_count": 313, + "retweeted_status": { + "retweet_count": 313, + "in_reply_to_user_id": 48269483, + "possibly_sensitive": false, + "id_str": "685292982778609664", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", + "type": "photo", + "indices": [ + 113, + 136 + ], + "media_url": "http://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", + "display_url": "pic.twitter.com/u4q7tijibq", + "id_str": "685292978408189953", + "expanded_url": "http://twitter.com/AbbyWambach/status/685292982778609664/photo/1", + "id": 685292978408189953, + "url": "https://t.co/u4q7tijibq" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 85, + 110 + ], + "text": "leaveasurpriseforthenext" + } + ], + "user_mentions": [ + { + "screen_name": "GloriaSteinem", + "id_str": "48269483", + "id": 48269483, + "indices": [ + 36, + 50 + ], + "name": "Gloria Steinem" + }, + { + "screen_name": "SophiaBush", + "id_str": "97082147", + "id": 97082147, + "indices": [ + 51, + 62 + ], + "name": "Sophia Bush" + }, + { + "screen_name": "EmWatson", + "id_str": "166739404", + "id": 166739404, + "indices": [ + 63, + 72 + ], + "name": "Emma Watson" + }, + { + "screen_name": "lenadunham", + "id_str": "31080039", + "id": 31080039, + "indices": [ + 73, + 84 + ], + "name": "Lena Dunham" + } + ] + }, + "created_at": "Fri Jan 08 02:52:33 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "48269483", + "place": null, + "in_reply_to_screen_name": "GloriaSteinem", + "in_reply_to_status_id_str": "685190347589304320", + "truncated": false, + "id": 685292982778609664, + "text": "This was fun... Tag you're all it!! @GloriaSteinem @SophiaBush @EmWatson @lenadunham #leaveasurpriseforthenext:) https://t.co/u4q7tijibq", + "coordinates": null, + "in_reply_to_status_id": 685190347589304320, + "favorite_count": 1961, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685550040841072641", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 768, + "h": 1024, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 800, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 453, + "resize": "fit" + } + }, + "source_status_id_str": "685292982778609664", + "url": "https://t.co/u4q7tijibq", + "media_url": "http://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", + "source_user_id_str": "336124836", + "id_str": "685292978408189953", + "id": 685292978408189953, + "media_url_https": "https://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685292982778609664, + "source_user_id": 336124836, + "display_url": "pic.twitter.com/u4q7tijibq", + "expanded_url": "http://twitter.com/AbbyWambach/status/685292982778609664/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 102, + 127 + ], + "text": "leaveasurpriseforthenext" + } + ], + "user_mentions": [ + { + "screen_name": "AbbyWambach", + "id_str": "336124836", + "id": 336124836, + "indices": [ + 3, + 15 + ], + "name": "Abby Wambach" + }, + { + "screen_name": "GloriaSteinem", + "id_str": "48269483", + "id": 48269483, + "indices": [ + 53, + 67 + ], + "name": "Gloria Steinem" + }, + { + "screen_name": "SophiaBush", + "id_str": "97082147", + "id": 97082147, + "indices": [ + 68, + 79 + ], + "name": "Sophia Bush" + }, + { + "screen_name": "EmWatson", + "id_str": "166739404", + "id": 166739404, + "indices": [ + 80, + 89 + ], + "name": "Emma Watson" + }, + { + "screen_name": "lenadunham", + "id_str": "31080039", + "id": 31080039, + "indices": [ + 90, + 101 + ], + "name": "Lena Dunham" + } + ] + }, + "created_at": "Fri Jan 08 19:54:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685550040841072641, + "text": "RT @AbbyWambach: This was fun... Tag you're all it!! @GloriaSteinem @SophiaBush @EmWatson @lenadunham #leaveasurpriseforthenext:) https://t\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 166739404, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", + "statuses_count": 1213, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/166739404/1448459323", + "is_translator": false + }, + { + "time_zone": "Casablanca", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 0, + "id_str": "384982986", + "following": false, + "friends_count": 965, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/gracejonesoffi\u2026", + "url": "http://t.co/RAPIxjvPtQ", + "expanded_url": "http://instagram.com/gracejonesofficial", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "85CFD2", + "geo_enabled": false, + "followers_count": 41765, + "location": "Worldwide", + "screen_name": "Miss_GraceJones", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 548, + "name": "Grace Jones", + "profile_use_background_image": true, + "description": "This is my Official Twitter account... I see all and hear all. Nice to have you on my plate.", + "url": "http://t.co/RAPIxjvPtQ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Tue Oct 04 17:29:03 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", + "favourites_count": 345, + "status": { + "retweet_count": 20, + "retweeted_status": { + "retweet_count": 20, + "in_reply_to_user_id": 384982986, + "possibly_sensitive": false, + "id_str": "665258501694865408", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 640, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", + "type": "photo", + "indices": [ + 59, + 82 + ], + "media_url": "http://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", + "display_url": "pic.twitter.com/QXTd1KeI6T", + "id_str": "665258494715518976", + "expanded_url": "http://twitter.com/MarkFastKnit/status/665258501694865408/photo/1", + "id": 665258494715518976, + "url": "https://t.co/QXTd1KeI6T" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 21, + 28 + ], + "text": "london" + }, + { + "indices": [ + 32, + 41 + ], + "text": "markfast" + }, + { + "indices": [ + 44, + 49 + ], + "text": "icon" + }, + { + "indices": [ + 50, + 58 + ], + "text": "forever" + } + ], + "user_mentions": [ + { + "screen_name": "Miss_GraceJones", + "id_str": "384982986", + "id": 384982986, + "indices": [ + 0, + 16 + ], + "name": "Grace Jones" + } + ] + }, + "created_at": "Fri Nov 13 20:02:41 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": "384982986", + "place": null, + "in_reply_to_screen_name": "Miss_GraceJones", + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 665258501694865408, + "text": "@Miss_GraceJones !!! #london in #markfast ! #icon #forever https://t.co/QXTd1KeI6T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 89, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "665318546235334656", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 640, + "h": 640, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 600, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 340, + "resize": "fit" + } + }, + "source_status_id_str": "665258501694865408", + "url": "https://t.co/QXTd1KeI6T", + "media_url": "http://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", + "source_user_id_str": "203957172", + "id_str": "665258494715518976", + "id": 665258494715518976, + "media_url_https": "https://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", + "type": "photo", + "indices": [ + 77, + 100 + ], + "source_status_id": 665258501694865408, + "source_user_id": 203957172, + "display_url": "pic.twitter.com/QXTd1KeI6T", + "expanded_url": "http://twitter.com/MarkFastKnit/status/665258501694865408/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 39, + 46 + ], + "text": "london" + }, + { + "indices": [ + 50, + 59 + ], + "text": "markfast" + }, + { + "indices": [ + 62, + 67 + ], + "text": "icon" + }, + { + "indices": [ + 68, + 76 + ], + "text": "forever" + } + ], + "user_mentions": [ + { + "screen_name": "MarkFastKnit", + "id_str": "203957172", + "id": 203957172, + "indices": [ + 3, + 16 + ], + "name": "MARK FAST" + }, + { + "screen_name": "Miss_GraceJones", + "id_str": "384982986", + "id": 384982986, + "indices": [ + 18, + 34 + ], + "name": "Grace Jones" + } + ] + }, + "created_at": "Sat Nov 14 00:01:17 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 665318546235334656, + "text": "RT @MarkFastKnit: @Miss_GraceJones !!! #london in #markfast ! #icon #forever https://t.co/QXTd1KeI6T", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 384982986, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", + "statuses_count": 405, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/384982986/1366714920", + "is_translator": false + }, + { + "time_zone": "Mumbai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "41330290", + "following": false, + "friends_count": 277, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/TheShakaSurfCl\u2026", + "url": "https://t.co/SEQpF7VDH4", + "expanded_url": "http://www.facebook.com/TheShakaSurfClub", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1046, + "location": "India", + "screen_name": "surFISHita", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Ishita Malaviya", + "profile_use_background_image": true, + "description": "India's first recognized woman surfer & Co-founder of The Shaka Surf Club @SurfingIndia #Namaloha", + "url": "https://t.co/SEQpF7VDH4", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Wed May 20 10:04:32 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", + "favourites_count": 104, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684213186245996545", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BAJF4a3BJhR/", + "url": "https://t.co/BuGu8ng42j", + "expanded_url": "https://www.instagram.com/p/BAJF4a3BJhR/", + "indices": [ + 96, + 119 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 03:21:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684213186245996545, + "text": "Road trip commenced! Excited we're finally making a trip to Hampi after talking about it for 9\u2026 https://t.co/BuGu8ng42j", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 41330290, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", + "statuses_count": 470, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41330290/1357404184", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14085740", + "following": false, + "friends_count": 3037, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 4881, + "location": "San Francisco, CA", + "screen_name": "jimprosser", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 152, + "name": "Jim Prosser", + "profile_use_background_image": true, + "description": "Current @twitter comms guy, future @kanyewest 2020 campaign spokesperson.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Mar 05 23:28:42 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", + "favourites_count": 52872, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685619689897082880", + "id": 685619689897082880, + "text": "Excited for podcast justice as doled out by @hodgman and @JesseThorn tonight. Anyone else going? #sfsketchfest", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 97, + 110 + ], + "text": "sfsketchfest" + } + ], + "user_mentions": [ + { + "screen_name": "hodgman", + "id_str": "14348594", + "id": 14348594, + "indices": [ + 44, + 52 + ], + "name": "John Hodgman" + }, + { + "screen_name": "JesseThorn", + "id_str": "5611152", + "id": 5611152, + "indices": [ + 57, + 68 + ], + "name": "Jesse Thorn" + } + ] + }, + "created_at": "Sat Jan 09 00:30:46 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14085740, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 12548, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14085740/1405206869", + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "37945489", + "following": false, + "friends_count": 994, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtu.be/ALlDZIQeNyo", + "url": "http://t.co/2nWHiTkVsZ", + "expanded_url": "http://youtu.be/ALlDZIQeNyo", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "EB3E12", + "geo_enabled": true, + "followers_count": 56983, + "location": "Paris", + "screen_name": "Carodemaigret", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 210, + "name": "Caroline de Maigret", + "profile_use_background_image": false, + "description": "Model @NextModels worldwide /// @CareFrance Ambassador /// Book out now: @Howtobeparisian /// Instagram/Periscope: @carolinedemaigret", + "url": "http://t.co/2nWHiTkVsZ", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", + "profile_background_color": "F0F0F0", + "created_at": "Tue May 05 15:26:02 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", + "favourites_count": 6015, + "status": { + "retweet_count": 16, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685398789759352832", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 255, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 450, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 768, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYMGj1mWsAEtn_K.jpg", + "type": "photo", + "indices": [ + 90, + 113 + ], + "media_url": "http://pbs.twimg.com/media/CYMGj1mWsAEtn_K.jpg", + "display_url": "pic.twitter.com/ILzsfq1gBq", + "id_str": "685398781043585025", + "expanded_url": "http://twitter.com/Carodemaigret/status/685398789759352832/photo/1", + "id": 685398781043585025, + "url": "https://t.co/ILzsfq1gBq" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "Black_Minou", + "id_str": "309053484", + "id": 309053484, + "indices": [ + 13, + 25 + ], + "name": "BLACK MINOU" + }, + { + "screen_name": "yarolpoupaud", + "id_str": "75114445", + "id": 75114445, + "indices": [ + 76, + 89 + ], + "name": "Yarol Poupaud" + } + ] + }, + "created_at": "Fri Jan 08 09:53:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685398789759352832, + "text": "Amaaaaaazing @Black_Minou last night! Just sweat&rock&roll\nLove you @yarolpoupaud https://t.co/ILzsfq1gBq", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 21, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 37945489, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 7696, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/37945489/1420905232", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "35556383", + "following": false, + "friends_count": 265, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "londonzhiloh.com", + "url": "https://t.co/gsxVxxXXXz", + "expanded_url": "http://londonzhiloh.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", + "notifications": false, + "profile_sidebar_fill_color": "F5F2F2", + "profile_link_color": "D9207D", + "geo_enabled": true, + "followers_count": 74149, + "location": "Snapchat: Zhiloh101", + "screen_name": "TheRealZhiloh", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 272, + "name": "London Zhiloh", + "profile_use_background_image": false, + "description": "Bookings: Info@LZofficial.com", + "url": "https://t.co/gsxVxxXXXz", + "profile_text_color": "292727", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", + "profile_background_color": "F2EFF1", + "created_at": "Sun Apr 26 20:29:45 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "F5F0F0", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", + "favourites_count": 14013, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684831821545259008", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BANe919KKK8/", + "url": "https://t.co/X6DX1UZDRX", + "expanded_url": "https://www.instagram.com/p/BANe919KKK8/", + "indices": [ + 98, + 121 + ] + } + ], + "hashtags": [ + { + "indices": [ + 20, + 26 + ], + "text": "NATVS" + } + ], + "user_mentions": [ + { + "screen_name": "MITDistrict", + "id_str": "785119218", + "id": 785119218, + "indices": [ + 49, + 61 + ], + "name": "Made in the District" + } + ] + }, + "created_at": "Wed Jan 06 20:20:04 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684831821545259008, + "text": "Hey guys! Check out #NATVS newest documentary by @mitdistrict where I talk about my inspiration,\u2026 https://t.co/X6DX1UZDRX", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 12, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 35556383, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", + "statuses_count": 96490, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35556383/1450060528", + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "233183631", + "following": false, + "friends_count": 36443, + "entities": { + "description": { + "urls": [ + { + "display_url": "itun.es/us/boyR_", + "url": "https://t.co/CJheDwyeIF", + "expanded_url": "https://itun.es/us/boyR_", + "indices": [ + 74, + 97 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "Instagram.com/madisonbeer", + "url": "https://t.co/nqrYEOhs7A", + "expanded_url": "http://Instagram.com/madisonbeer", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "6895D0", + "geo_enabled": true, + "followers_count": 1754461, + "location": "", + "screen_name": "MadisonElleBeer", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4395, + "name": "madison beer", + "profile_use_background_image": true, + "description": "\u2661 singer from ny \u2661 chase your dreams \u2661 new single Something Sweet out now https://t.co/CJheDwyeIF", + "url": "https://t.co/nqrYEOhs7A", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Sun Jan 02 14:52:35 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", + "favourites_count": 3926, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1230, + "truncated": false, + "retweeted": false, + "id_str": "685619398229372932", + "id": 685619398229372932, + "text": "\ud83d\udca7\ud83d\udc33\ud83d\udc8d\ud83c\udf90\u2708\ufe0f\ud83d\udc8e", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:29:37 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 2652, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "und" + }, + "default_profile_image": false, + "id": 233183631, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", + "statuses_count": 11569, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/233183631/1446485514", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "70457876", + "following": false, + "friends_count": 689, + "entities": { + "description": { + "urls": [ + { + "display_url": "soundcloud.com/dope-saint-jud\u2026", + "url": "https://t.co/dIyhEjwine", + "expanded_url": "https://soundcloud.com/dope-saint-jude/", + "indices": [ + 0, + 23 + ] + }, + { + "display_url": "facebook.com/pages/Dope-Sai\u2026", + "url": "https://t.co/4Kqi4mPsER", + "expanded_url": "https://www.facebook.com/pages/Dope-Saint-Jude/287771241273733", + "indices": [ + 24, + 47 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "dopesaintjude.tumblr.com", + "url": "http://t.co/VYkd1URkb3", + "expanded_url": "http://dopesaintjude.tumblr.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 896, + "location": "@dopesaintjude (insta) ", + "screen_name": "DopeSaintJude", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 20, + "name": "DOPESAINTJUDE", + "profile_use_background_image": true, + "description": "https://t.co/dIyhEjwine https://t.co/4Kqi4mPsER", + "url": "http://t.co/VYkd1URkb3", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Aug 31 18:06:59 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", + "favourites_count": 2283, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685498518228840448", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BASOf95Jcvo/", + "url": "https://t.co/FvdrqUE154", + "expanded_url": "https://www.instagram.com/p/BASOf95Jcvo/", + "indices": [ + 20, + 43 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:29:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685498518228840448, + "text": "Just posted a photo https://t.co/FvdrqUE154", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 70457876, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", + "statuses_count": 4519, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70457876/1442416572", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "3840", + "following": false, + "friends_count": 20892, + "entities": { + "description": { + "urls": [ + { + "display_url": "angel.co/jason", + "url": "https://t.co/nkssr3dWMC", + "expanded_url": "http://angel.co/jason", + "indices": [ + 48, + 71 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "calacanis.com", + "url": "https://t.co/akc7KgXv7J", + "expanded_url": "http://www.calacanis.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", + "notifications": false, + "profile_sidebar_fill_color": "E0FF92", + "profile_link_color": "FF9900", + "geo_enabled": true, + "followers_count": 256931, + "location": "94123", + "screen_name": "Jason", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 12244, + "name": "jason", + "profile_use_background_image": true, + "description": "Angel investor (@uber @thumbtack @wealthfront + https://t.co/nkssr3dWMC ) // Writer // Dad // Founder: @Engadget, @Inside, @LAUNCH & @twistartups", + "url": "https://t.co/akc7KgXv7J", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", + "profile_background_color": "000000", + "created_at": "Sat Aug 05 23:31:27 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", + "favourites_count": 42384, + "status": { + "retweet_count": 7, + "retweeted_status": { + "retweet_count": 7, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685588257791315969", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", + "display_url": "pic.twitter.com/gcjvsiX09b", + "id_str": "685588257233485824", + "expanded_url": "http://twitter.com/TWistartups/status/685588257791315969/photo/1", + "id": 685588257233485824, + "url": "https://t.co/gcjvsiX09b" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "itunes.apple.com/us/podcast/e61\u2026", + "url": "https://t.co/fbT87aaiXi", + "expanded_url": "https://itunes.apple.com/us/podcast/e611-jed-katz-javelin-venture/id314461026?i=360327489&mt=2", + "indices": [ + 92, + 115 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JedKatz", + "id_str": "17163307", + "id": 17163307, + "indices": [ + 1, + 9 + ], + "name": "Jed Katz" + }, + { + "screen_name": "JavelinVP", + "id_str": "457126665", + "id": 457126665, + "indices": [ + 10, + 20 + ], + "name": "Javelin VP" + }, + { + "screen_name": "kaleazy", + "id_str": "253389790", + "id": 253389790, + "indices": [ + 53, + 61 + ], + "name": "Kyle Hill" + }, + { + "screen_name": "HomeHero", + "id_str": "1582339772", + "id": 1582339772, + "indices": [ + 65, + 74 + ], + "name": "HomeHero" + }, + { + "screen_name": "Jason", + "id_str": "3840", + "id": 3840, + "indices": [ + 85, + 91 + ], + "name": "jason" + } + ] + }, + "created_at": "Fri Jan 08 22:25:52 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685588257791315969, + "text": ".@JedKatz @JavelinVP shares 52pt Series A checklist; @kaleazy on @HomeHero culture-w/@jason https://t.co/fbT87aaiXi https://t.co/gcjvsiX09b", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 7, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685631006087315456", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 337, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 191, + "resize": "fit" + } + }, + "source_status_id_str": "685588257791315969", + "url": "https://t.co/gcjvsiX09b", + "media_url": "http://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", + "source_user_id_str": "112880396", + "id_str": "685588257233485824", + "id": 685588257233485824, + "media_url_https": "https://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685588257791315969, + "source_user_id": 112880396, + "display_url": "pic.twitter.com/gcjvsiX09b", + "expanded_url": "http://twitter.com/TWistartups/status/685588257791315969/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "itunes.apple.com/us/podcast/e61\u2026", + "url": "https://t.co/fbT87aaiXi", + "expanded_url": "https://itunes.apple.com/us/podcast/e611-jed-katz-javelin-venture/id314461026?i=360327489&mt=2", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "TWistartups", + "id_str": "112880396", + "id": 112880396, + "indices": [ + 3, + 15 + ], + "name": "ThisWeekinStartups" + }, + { + "screen_name": "JedKatz", + "id_str": "17163307", + "id": 17163307, + "indices": [ + 18, + 26 + ], + "name": "Jed Katz" + }, + { + "screen_name": "JavelinVP", + "id_str": "457126665", + "id": 457126665, + "indices": [ + 27, + 37 + ], + "name": "Javelin VP" + }, + { + "screen_name": "kaleazy", + "id_str": "253389790", + "id": 253389790, + "indices": [ + 70, + 78 + ], + "name": "Kyle Hill" + }, + { + "screen_name": "HomeHero", + "id_str": "1582339772", + "id": 1582339772, + "indices": [ + 82, + 91 + ], + "name": "HomeHero" + }, + { + "screen_name": "Jason", + "id_str": "3840", + "id": 3840, + "indices": [ + 102, + 108 + ], + "name": "jason" + } + ] + }, + "created_at": "Sat Jan 09 01:15:44 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685631006087315456, + "text": "RT @TWistartups: .@JedKatz @JavelinVP shares 52pt Series A checklist; @kaleazy on @HomeHero culture-w/@jason https://t.co/fbT87aaiXi https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3840, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", + "statuses_count": 71770, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3840/1438902439", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "21872269", + "following": false, + "friends_count": 70, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "emersoncollective.com", + "url": "http://t.co/Qr1O0bgn4d", + "expanded_url": "http://emersoncollective.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DD2E44", + "geo_enabled": false, + "followers_count": 10221, + "location": "Palo Alto, CA", + "screen_name": "laurenepowell", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 123, + "name": "Laurene Powell", + "profile_use_background_image": false, + "description": "mother, advocate, friend, Emerson Collective president, joyful adventurer", + "url": "http://t.co/Qr1O0bgn4d", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", + "profile_background_color": "000000", + "created_at": "Wed Feb 25 14:49:19 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", + "favourites_count": 88, + "status": { + "retweet_count": 9, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685227751620489217", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1OS6abn", + "url": "https://t.co/nm1QkCrPvl", + "expanded_url": "http://bit.ly/1OS6abn", + "indices": [ + 115, + 138 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Jan 07 22:33:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685227751620489217, + "text": "Too important to miss: A bipartisan roadmap to curb hunger for 7M in US. Congress should fast track implementation https://t.co/nm1QkCrPvl", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 27, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 21872269, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 100, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/21872269/1445279444", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "3583264572", + "following": false, + "friends_count": 168, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 107352, + "location": "", + "screen_name": "IStandWithAhmed", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 373, + "name": "Ahmed Mohamed", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", + "profile_background_color": "000000", + "created_at": "Wed Sep 16 14:00:18 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", + "favourites_count": 199, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "kevincollier", + "in_reply_to_user_id": 440963378, + "in_reply_to_status_id_str": "684847980998950912", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685153785677754368", + "id": 685153785677754368, + "text": "@kevincollier yea, what about you", + "in_reply_to_user_id_str": "440963378", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kevincollier", + "id_str": "440963378", + "id": 440963378, + "indices": [ + 0, + 13 + ], + "name": "Kevin Collier" + } + ] + }, + "created_at": "Thu Jan 07 17:39:26 +0000 2016", + "source": "Twitter Web Client", + "favorite_count": 2, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684847980998950912, + "lang": "en" + }, + "default_profile_image": false, + "id": 3583264572, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 323, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3583264572/1452112394", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "43057202", + "following": false, + "friends_count": 2964, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "3B94D9", + "geo_enabled": false, + "followers_count": 12241, + "location": "Las Vegas, NV", + "screen_name": "Nicholas_Cope", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 61, + "name": "Nick Cope", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", + "profile_background_color": "000000", + "created_at": "Thu May 28 05:50:05 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", + "favourites_count": 409, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685633002718679040", + "id": 685633002718679040, + "text": "\u2694 Slay the day;", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:23:40 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 43057202, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 5765, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/43057202/1446523732", + "is_translator": false + }, + { + "time_zone": "Athens", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 7200, + "id_str": "1311113250", + "following": false, + "friends_count": 1, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "1D1F1F", + "geo_enabled": true, + "followers_count": 7883, + "location": "", + "screen_name": "riccardotisci", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 62, + "name": "Riccardo Tisci", + "profile_use_background_image": false, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Thu Mar 28 16:36:51 +0000 2013", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "nl", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", + "favourites_count": 0, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 66, + "truncated": false, + "retweeted": false, + "id_str": "651509820936310784", + "id": 651509820936310784, + "text": "I'M UNABLE TO COMPREHEND THE FACT THAT THIS UNIVERSE IS PART OF A MULTIVERSE AND THAT THIS MULTIVERSE HAS AN UNLIMITED AMOUNT OF SPACE.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Oct 06 21:30:20 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 107, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 1311113250, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", + "statuses_count": 112, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1311113250/1411398117", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2612918754", + "following": false, + "friends_count": 15, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 20, + "location": "", + "screen_name": "robertabbott92", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "name": "robert abbott", + "profile_use_background_image": true, + "description": "", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jul 09 04:39:39 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", + "favourites_count": 5, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "677266170047696896", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "twitter.com/wsl/status/677\u2026", + "url": "https://t.co/5ikdEpXSfx", + "expanded_url": "https://twitter.com/wsl/status/677265901482172416", + "indices": [ + 9, + 32 + ] + } + ], + "hashtags": [ + { + "indices": [ + 0, + 8 + ], + "text": "GoKelly" + } + ], + "user_mentions": [] + }, + "created_at": "Wed Dec 16 23:16:52 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "und", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 677266170047696896, + "text": "#GoKelly https://t.co/5ikdEpXSfx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 2612918754, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 17, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "123710951", + "following": false, + "friends_count": 22, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "99CC33", + "profile_link_color": "D02B55", + "geo_enabled": false, + "followers_count": 51, + "location": "", + "screen_name": "nupurgarg16", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 2, + "name": "Nupur Garg", + "profile_use_background_image": true, + "description": "Engineer. Student. Daughter. Sister. Indian-American. Passionate about diversity. Studying CS @CalPoly but my \u2665 is in the Bay.", + "url": null, + "profile_text_color": "3E4415", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", + "profile_background_color": "352726", + "created_at": "Wed Mar 17 00:37:32 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "829D5E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", + "favourites_count": 10, + "status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "672543113978580992", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "youtube.com/watch?v=PI09_e\u2026", + "url": "https://t.co/vnVTw3Z0Q9", + "expanded_url": "https://www.youtube.com/watch?v=PI09_e0DarY", + "indices": [ + 68, + 91 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AshleyMardell", + "id_str": "101129043", + "id": 101129043, + "indices": [ + 53, + 67 + ], + "name": "Ashley Mardell" + } + ] + }, + "created_at": "Thu Dec 03 22:29:08 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 672543113978580992, + "text": "Such a raw, incredible video about loving oneself by @AshleyMardell https://t.co/vnVTw3Z0Q9", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 17, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 123710951, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", + "statuses_count": 13, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "2424272372", + "following": false, + "friends_count": 382, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linkedin.com/in/toddsherman", + "url": "https://t.co/vUfwnDEI57", + "expanded_url": "http://www.linkedin.com/in/toddsherman", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "93A644", + "geo_enabled": true, + "followers_count": 1031, + "location": "San Francisco, CA", + "screen_name": "tdd", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 21, + "name": "Todd Sherman", + "profile_use_background_image": true, + "description": "Product Manager at Twitter.", + "url": "https://t.co/vUfwnDEI57", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", + "profile_background_color": "B2DFDA", + "created_at": "Wed Apr 02 19:53:23 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", + "favourites_count": 2960, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": 14253109, + "possibly_sensitive": false, + "id_str": "685532007728693248", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/7Yvf4P8A7N", + "url": "https://t.co/7Yvf4P8A7N", + "expanded_url": "http://twitter.com/tdd/status/685532007728693248/photo/1", + "indices": [ + 27, + 50 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "adambain", + "id_str": "14253109", + "id": 14253109, + "indices": [ + 0, + 9 + ], + "name": "adam bain" + }, + { + "screen_name": "santana", + "id_str": "54030633", + "id": 54030633, + "indices": [ + 10, + 18 + ], + "name": "Ivan Santana" + } + ] + }, + "created_at": "Fri Jan 08 18:42:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "14253109", + "place": { + "url": "https://api.twitter.com/1.1/geo/id/07d9cd6afd884001.json", + "country": "United States", + "attributes": {}, + "place_type": "poi", + "bounding_box": { + "coordinates": [ + [ + [ + -122.41679856739916, + 37.77688821377302 + ], + [ + -122.41679856739916, + 37.77688821377302 + ], + [ + -122.41679856739916, + 37.77688821377302 + ], + [ + -122.41679856739916, + 37.77688821377302 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Twitter HQ", + "id": "07d9cd6afd884001", + "name": "Twitter HQ" + }, + "in_reply_to_screen_name": "adambain", + "in_reply_to_status_id_str": "685531730757824512", + "truncated": false, + "id": 685532007728693248, + "text": "@adambain @santana be like https://t.co/7Yvf4P8A7N", + "coordinates": null, + "in_reply_to_status_id": 685531730757824512, + "favorite_count": 5, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2424272372, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", + "statuses_count": 1424, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2424272372/1426469295", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "284159631", + "following": false, + "friends_count": 296, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jackiereses.tumblr.com", + "url": "https://t.co/JIrh2PYIZ2", + "expanded_url": "http://jackiereses.tumblr.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "DDFFCC", + "profile_link_color": "3B94D9", + "geo_enabled": true, + "followers_count": 1906, + "location": "Woodside, CA and New York City", + "screen_name": "jackiereses", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "Jackie Reses", + "profile_use_background_image": true, + "description": "Just moved to new house! @jackiereseskidz", + "url": "https://t.co/JIrh2PYIZ2", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", + "profile_background_color": "89C9FA", + "created_at": "Mon Apr 18 18:59:19 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "BDDCAD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", + "favourites_count": 279, + "status": { + "retweet_count": 2, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685140789593178112", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "for.tn/1OAh75J", + "url": "https://t.co/ODPl4AkEoB", + "expanded_url": "http://for.tn/1OAh75J", + "indices": [ + 87, + 110 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "FortuneMagazine", + "id_str": "25053299", + "id": 25053299, + "indices": [ + 70, + 86 + ], + "name": "Fortune" + } + ] + }, + "created_at": "Thu Jan 07 16:47:48 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685140789593178112, + "text": "Here's Hasbro's response to this Monopoly 'Star Wars' controversy via @FortuneMagazine https://t.co/ODPl4AkEoB", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Mobile Web" + }, + "default_profile_image": false, + "id": 284159631, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", + "statuses_count": 600, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/284159631/1405201905", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "14130366", + "following": false, + "friends_count": 256, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": true, + "followers_count": 332280, + "location": "", + "screen_name": "sundarpichai", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2560, + "name": "sundarpichai", + "profile_use_background_image": true, + "description": "CEO, @google", + "url": null, + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Mar 12 05:51:53 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", + "favourites_count": 263, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 273, + "truncated": false, + "retweeted": false, + "id_str": "679335075331203072", + "id": 679335075331203072, + "text": "Incredible achievement for #SpaceX , congratulations to the team. Inspiring to see such progress", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 27, + 34 + ], + "text": "SpaceX" + } + ], + "user_mentions": [] + }, + "created_at": "Tue Dec 22 16:17:58 +0000 2015", + "source": "Twitter Web Client", + "favorite_count": 847, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 14130366, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", + "statuses_count": 721, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "3024282479", + "following": false, + "friends_count": 378, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sunujournal.com", + "url": "https://t.co/VEFaxoMlRR", + "expanded_url": "http://www.sunujournal.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 722, + "location": "", + "screen_name": "sunujournal", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 16, + "name": "S U N U", + "profile_use_background_image": true, + "description": "SUNU: Journal of African Affairs, Critical Thought + Aesthetics \u2022 Amplifying the youth voice + contributing to the collective consciousness #SUNUjournal \u2022 2016", + "url": "https://t.co/VEFaxoMlRR", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", + "profile_background_color": "FFFFFF", + "created_at": "Sun Feb 08 01:50:03 +0000 2015", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", + "favourites_count": 48, + "status": { + "retweet_count": 5, + "retweeted_status": { + "retweet_count": 5, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684218010253443078", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1OIKNsY", + "url": "https://t.co/4Ig5oKG2cQ", + "expanded_url": "http://bit.ly/1OIKNsY", + "indices": [ + 99, + 122 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 03:41:00 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684218010253443078, + "text": "From resistance to rebellion: Asian and Afro-Caribbean struggles in Britain: A. Sivanandan (1981): https://t.co/4Ig5oKG2cQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 8, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684230912805089281", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/1OIKNsY", + "url": "https://t.co/4Ig5oKG2cQ", + "expanded_url": "http://bit.ly/1OIKNsY", + "indices": [ + 119, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "public_archive", + "id_str": "120174828", + "id": 120174828, + "indices": [ + 3, + 18 + ], + "name": "The Public Archive" + } + ] + }, + "created_at": "Tue Jan 05 04:32:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684230912805089281, + "text": "RT @public_archive: From resistance to rebellion: Asian and Afro-Caribbean struggles in Britain: A. Sivanandan (1981): https://t.co/4Ig5oKG\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 3024282479, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", + "statuses_count": 515, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3024282479/1428706146", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "17169320", + "following": false, + "friends_count": 660, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thinkcommon.com", + "url": "http://t.co/lGKu0vCb9Q", + "expanded_url": "http://thinkcommon.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "EADEAA", + "profile_link_color": "EEAD1D", + "geo_enabled": false, + "followers_count": 3227707, + "location": "Chicago, IL", + "screen_name": "common", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 14193, + "name": "COMMON", + "profile_use_background_image": false, + "description": "Hip Hop Artist/ Actor", + "url": "http://t.co/lGKu0vCb9Q", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", + "profile_background_color": "000000", + "created_at": "Tue Nov 04 21:18:21 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", + "favourites_count": 40, + "status": { + "retweet_count": 10, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685556232627859457", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "instagram.com/p/BASovkotmmf/", + "url": "https://t.co/g3UiMWOqcp", + "expanded_url": "https://www.instagram.com/p/BASovkotmmf/", + "indices": [ + 76, + 99 + ] + } + ], + "hashtags": [ + { + "indices": [ + 63, + 75 + ], + "text": "itrainwithQ" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 20:18:37 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685556232627859457, + "text": "Y'all know adrianpeterson ain't the only one who can do this. #itrainwithQ https://t.co/g3UiMWOqcp", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 57, + "contributors": null, + "source": "Instagram" + }, + "default_profile_image": false, + "id": 17169320, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", + "statuses_count": 9755, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17169320/1438213738", + "is_translator": false + }, + { + "time_zone": "Quito", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "28035260", + "following": false, + "friends_count": 588, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "smarturl.it/iKingPushDBD", + "url": "https://t.co/Y2KVVZtpIp", + "expanded_url": "http://smarturl.it/iKingPushDBD", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1196404, + "location": "VA", + "screen_name": "PUSHA_T", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 3619, + "name": "PUSHA T", + "profile_use_background_image": true, + "description": "MGMT: @STEVENVICTOR Shows:Cara Lewis/CAA", + "url": "https://t.co/Y2KVVZtpIp", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Apr 01 02:56:54 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", + "favourites_count": 23, + "status": { + "retweet_count": 8, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685613964827332608", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "acclaimmag.com/music/review-p\u2026", + "url": "https://t.co/J13mfUDhi7", + "expanded_url": "http://www.acclaimmag.com/music/review-pusha-t-melbourne/#0", + "indices": [ + 24, + 47 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "ACCLAIMmagazine", + "id_str": "22733953", + "id": 22733953, + "indices": [ + 6, + 22 + ], + "name": "ACCLAIM magazine" + } + ] + }, + "created_at": "Sat Jan 09 00:08:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685613964827332608, + "text": "Fresh @ACCLAIMmagazine https://t.co/J13mfUDhi7", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 18, + "contributors": null, + "source": "UberSocial for iPhone" + }, + "default_profile_image": false, + "id": 28035260, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", + "statuses_count": 12194, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/28035260/1451438540", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "18381396", + "following": false, + "friends_count": 1615, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "shop.txdxe.com", + "url": "http://t.co/afn1VAKJzW", + "expanded_url": "http://shop.txdxe.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "F20909", + "geo_enabled": false, + "followers_count": 197581, + "location": "TxDxE.com", + "screen_name": "TopDawgEnt", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 409, + "name": "TopDawgEnt", + "profile_use_background_image": true, + "description": "Official TopDawgEntertainment Twitter \u2022 @JayRock @KendrickLamar @ScHoolBoyQ @AbDashSoul @IsaiahRashad @SZA @MixedByAli #TDE Instagram: @TopDawgEnt", + "url": "http://t.co/afn1VAKJzW", + "profile_text_color": "B80202", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", + "profile_background_color": "000000", + "created_at": "Fri Dec 26 00:20:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", + "favourites_count": 25, + "status": { + "retweet_count": 96, + "retweeted_status": { + "retweet_count": 96, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685559168279932928", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 225, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 398, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 425, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", + "type": "photo", + "indices": [ + 108, + 131 + ], + "media_url": "http://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", + "display_url": "pic.twitter.com/JGJlnY5XgS", + "id_str": "685559167826964480", + "expanded_url": "http://twitter.com/VibeMagazine/status/685559168279932928/photo/1", + "id": 685559167826964480, + "url": "https://t.co/JGJlnY5XgS" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "on.vibe.com/1Jzx1gn", + "url": "https://t.co/lvULxDXufL", + "expanded_url": "http://on.vibe.com/1Jzx1gn", + "indices": [ + 84, + 107 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "kendricklamar", + "id_str": "23561980", + "id": 23561980, + "indices": [ + 1, + 15 + ], + "name": "Kendrick Lamar" + }, + { + "screen_name": "acltv", + "id_str": "28412100", + "id": 28412100, + "indices": [ + 76, + 82 + ], + "name": "Austin City Limits" + } + ] + }, + "created_at": "Fri Jan 08 20:30:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685559168279932928, + "text": ".@KendrickLamar breaks down the inspiration behind \u2018To Pimp A Butterfly\u2019 on @acltv: https://t.co/lvULxDXufL https://t.co/JGJlnY5XgS", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 218, + "contributors": null, + "source": "Twitter Web Client" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685620600589565952", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 225, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 398, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 640, + "h": 425, + "resize": "fit" + } + }, + "source_status_id_str": "685559168279932928", + "url": "https://t.co/JGJlnY5XgS", + "media_url": "http://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", + "source_user_id_str": "14691200", + "id_str": "685559167826964480", + "id": 685559167826964480, + "media_url_https": "https://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", + "type": "photo", + "indices": [ + 126, + 140 + ], + "source_status_id": 685559168279932928, + "source_user_id": 14691200, + "display_url": "pic.twitter.com/JGJlnY5XgS", + "expanded_url": "http://twitter.com/VibeMagazine/status/685559168279932928/photo/1" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "on.vibe.com/1Jzx1gn", + "url": "https://t.co/lvULxDXufL", + "expanded_url": "http://on.vibe.com/1Jzx1gn", + "indices": [ + 102, + 125 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "VibeMagazine", + "id_str": "14691200", + "id": 14691200, + "indices": [ + 3, + 16 + ], + "name": "VibeMagazine" + }, + { + "screen_name": "kendricklamar", + "id_str": "23561980", + "id": 23561980, + "indices": [ + 19, + 33 + ], + "name": "Kendrick Lamar" + }, + { + "screen_name": "acltv", + "id_str": "28412100", + "id": 28412100, + "indices": [ + 94, + 100 + ], + "name": "Austin City Limits" + } + ] + }, + "created_at": "Sat Jan 09 00:34:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685620600589565952, + "text": "RT @VibeMagazine: .@KendrickLamar breaks down the inspiration behind \u2018To Pimp A Butterfly\u2019 on @acltv: https://t.co/lvULxDXufL https://t.co/\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Echofon" + }, + "default_profile_image": false, + "id": 18381396, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", + "statuses_count": 6708, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18381396/1443854512", + "is_translator": false + }, + { + "time_zone": "Paris", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 3600, + "id_str": "327894845", + "following": false, + "friends_count": 157, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "nextmanagement.com", + "url": "http://t.co/qeqVqn53yt", + "expanded_url": "http://www.nextmanagement.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 2300, + "location": "new york", + "screen_name": "MelodieMonrose", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 43, + "name": "M\u00e9lodie Monrose", + "profile_use_background_image": true, + "description": "Next models worldwide /Uno spain", + "url": "http://t.co/qeqVqn53yt", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", + "profile_background_color": "1F2021", + "created_at": "Sat Jul 02 10:27:10 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "fr", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", + "favourites_count": 123, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -74.026675, + 40.683935 + ], + [ + -73.910408, + 40.683935 + ], + [ + -73.910408, + 40.877483 + ], + [ + -74.026675, + 40.877483 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Manhattan, NY", + "id": "01a9a39529b27f36", + "name": "Manhattan" + }, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "668792992988311552", + "id": 668792992988311552, + "text": "Bon ok , j'arr\u00eate les tweets d\u00e9sesp\u00e9r\u00e9s . Mais bon je suis une martiniquaise frigorifi\u00e9e et d\u00e9racin\u00e9e . I am sure some of you can relate \ud83d\ude11", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Nov 23 14:07:29 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 5, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "fr" + }, + "default_profile_image": false, + "id": 327894845, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", + "statuses_count": 2133, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/327894845/1440579572", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "108213835", + "following": false, + "friends_count": 173, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 1385, + "location": "", + "screen_name": "jeneil1", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 45, + "name": "jeneil williams", + "profile_use_background_image": true, + "description": "tomboy model from jamaica, loves fashion,cooking,people and most of all love my job new to instagram follow me @jeneilwilliams", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Mon Jan 25 06:22:47 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", + "favourites_count": 242, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 2, + "truncated": false, + "retweeted": false, + "id_str": "683144131883982849", + "id": 683144131883982849, + "text": "Happy new year everyone \ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 02 04:33:47 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 4, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 108213835, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", + "statuses_count": 932, + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "6204", + "following": false, + "friends_count": 2910, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "jabrams.com", + "url": "http://t.co/YcT7cUkcui", + "expanded_url": "http://www.jabrams.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 15936, + "location": "San Francisco, CA", + "screen_name": "abrams", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 1064, + "name": "Jonathan Abrams", + "profile_use_background_image": true, + "description": "Founder & CEO of @Nuzzel", + "url": "http://t.co/YcT7cUkcui", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", + "profile_background_color": "C0DEED", + "created_at": "Sat Sep 16 01:11:02 +0000 2006", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", + "favourites_count": 10207, + "status": { + "retweet_count": 0, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685636226406199296", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "qz.com/567744", + "url": "https://t.co/zcrmwc655J", + "expanded_url": "http://qz.com/567744", + "indices": [ + 47, + 70 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "qz", + "id_str": "573918122", + "id": 573918122, + "indices": [ + 75, + 78 + ], + "name": "Quartz" + } + ] + }, + "created_at": "Sat Jan 09 01:36:29 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685636226406199296, + "text": "The case for eating cereal for breakfast again https://t.co/zcrmwc655J via @qz", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 6204, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 31483, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6204/1401738610", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "1547221", + "following": false, + "friends_count": 1042, + "entities": { + "description": { + "urls": [ + { + "display_url": "eugenewei.com", + "url": "https://t.co/31xFn7CUeB", + "expanded_url": "http://www.eugenewei.com", + "indices": [ + 73, + 96 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "eugenewei.com", + "url": "https://t.co/ccJQSSYAHH", + "expanded_url": "http://www.eugenewei.com/", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "909090", + "geo_enabled": true, + "followers_count": 3363, + "location": "San Francisco, CA", + "screen_name": "eugenewei", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 173, + "name": "Eugene Wei", + "profile_use_background_image": false, + "description": "Former Head of Product at Flipboard and Hulu, an alum of Amazon. More at https://t.co/31xFn7CUeB", + "url": "https://t.co/ccJQSSYAHH", + "profile_text_color": "2C2C2C", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", + "profile_background_color": "FFFFFF", + "created_at": "Mon Mar 19 20:00:36 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", + "favourites_count": 5964, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "684790692615335940", + "id": 684790692615335940, + "text": "Fastest boarding and offloading of a flight ever. People who fly to CES are career/professional flyers.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Wed Jan 06 17:36:38 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 6, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 1547221, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", + "statuses_count": 5743, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1547221/1398367465", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "29663668", + "following": false, + "friends_count": 511, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "facebook.com/RZAWU", + "url": "https://t.co/LxKDItI1ju", + "expanded_url": "http://www.facebook.com/RZAWU", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/43773275/wu.jpg", + "notifications": false, + "profile_sidebar_fill_color": "252429", + "profile_link_color": "2FC2EF", + "geo_enabled": false, + "followers_count": 629018, + "location": "Brooklyn-Shaolin-NY-NJ-LA", + "screen_name": "RZA", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 5503, + "name": "RZA!", + "profile_use_background_image": true, + "description": "MY OFFICIAL TWITTER, PEACE!", + "url": "https://t.co/LxKDItI1ju", + "profile_text_color": "666666", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", + "profile_background_color": "1A1B1F", + "created_at": "Wed Apr 08 07:37:52 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "181A1E", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", + "favourites_count": 15, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 148, + "truncated": false, + "retweeted": false, + "id_str": "685587424018206720", + "id": 685587424018206720, + "text": "\"Of course Black lives matter.. All lives matter\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:22:34 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 214, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 29663668, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/43773275/wu.jpg", + "statuses_count": 5560, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29663668/1448944289", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "6646402", + "following": false, + "friends_count": 647, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "get.fabric.io", + "url": "http://t.co/OZQv5dblxS", + "expanded_url": "http://get.fabric.io", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "F6F6F6", + "profile_link_color": "1191F2", + "geo_enabled": true, + "followers_count": 1161, + "location": "Boston / SF / worldwide", + "screen_name": "richparet", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 42, + "name": "Rich Paret", + "profile_use_background_image": false, + "description": "Director of Engineering, Developer Platform @twitter. @twitterapi / @gnip / @fabric. Let's build the future together.", + "url": "http://t.co/OZQv5dblxS", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", + "profile_background_color": "0F0F0F", + "created_at": "Thu Jun 07 17:49:42 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", + "favourites_count": 3280, + "status": { + "geo": null, + "place": { + "url": "https://api.twitter.com/1.1/geo/id/8193d87541f11dfb.json", + "country": "United States", + "attributes": {}, + "place_type": "city", + "bounding_box": { + "coordinates": [ + [ + [ + -71.160356, + 42.352429 + ], + [ + -71.064398, + 42.352429 + ], + [ + -71.064398, + 42.4039663 + ], + [ + -71.160356, + 42.4039663 + ] + ] + ], + "type": "Polygon" + }, + "country_code": "US", + "contained_within": [], + "full_name": "Cambridge, MA", + "id": "8193d87541f11dfb", + "name": "Cambridge" + }, + "in_reply_to_screen_name": "JillWetzler", + "in_reply_to_user_id": 403070695, + "in_reply_to_status_id_str": "685573071281901568", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685573192837132292", + "id": 685573192837132292, + "text": "@JillWetzler @jessicamckellar awesome!", + "in_reply_to_user_id_str": "403070695", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "JillWetzler", + "id_str": "403070695", + "id": 403070695, + "indices": [ + 0, + 12 + ], + "name": "Jill Wetzler" + }, + { + "screen_name": "jessicamckellar", + "id_str": "24945605", + "id": 24945605, + "indices": [ + 13, + 29 + ], + "name": "Jessica McKellar" + } + ] + }, + "created_at": "Fri Jan 08 21:26:01 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 1, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 685573071281901568, + "lang": "en" + }, + "default_profile_image": false, + "id": 6646402, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", + "statuses_count": 1554, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6646402/1440532521", + "is_translator": false + }, + { + "time_zone": null, + "profile_use_background_image": true, + "description": "", + "url": null, + "contributors_enabled": false, + "default_profile_image": true, + "utc_offset": null, + "id_str": "522299046", + "blocking": false, + "is_translation_enabled": false, + "id": 522299046, + "entities": { + "description": { + "urls": [] + } + }, + "profile_background_color": "C0DEED", + "created_at": "Mon Mar 12 14:33:21 +0000 2012", + "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "default_profile": true, + "profile_text_color": "333333", + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "statuses_count": 0, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", + "favourites_count": 0, + "geo_enabled": false, + "follow_request_sent": false, + "followers_count": 26, + "blocked_by": false, + "following": false, + "location": "", + "muting": false, + "friends_count": 0, + "notifications": false, + "screen_name": "GenosBarberia", + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 0, + "is_translator": false, + "name": "Geno's Barberia" + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "100325421", + "following": false, + "friends_count": 455, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 70507, + "location": "", + "screen_name": "Kevfeige", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 507, + "name": "Kevin Feige", + "profile_use_background_image": true, + "description": "Producer", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Dec 29 21:32:20 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", + "favourites_count": 1, + "status": { + "retweet_count": 359, + "retweeted_status": { + "retweet_count": 359, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685181614079492097", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/FpaYZCl2Ii", + "url": "https://t.co/FpaYZCl2Ii", + "expanded_url": "http://twitter.com/ThorMovies/status/685181614079492097/photo/1", + "indices": [ + 117, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 111, + 116 + ], + "text": "PCAs" + } + ], + "user_mentions": [ + { + "screen_name": "chrishemsworth", + "id_str": "3063032281", + "id": 3063032281, + "indices": [ + 12, + 27 + ], + "name": "Chris Hemsworth" + }, + { + "screen_name": "peopleschoice", + "id_str": "34993020", + "id": 34993020, + "indices": [ + 44, + 58 + ], + "name": "People's Choice" + } + ] + }, + "created_at": "Thu Jan 07 19:30:01 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685181614079492097, + "text": "Congrats to @chrishemsworth for winning the @PeoplesChoice for Favorite Action Movie Actor! Definitely worthy. #PCAs https://t.co/FpaYZCl2Ii", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1014, + "contributors": null, + "source": "Sprinklr" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685228256568545280", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "pic.twitter.com/FpaYZCl2Ii", + "url": "https://t.co/FpaYZCl2Ii", + "expanded_url": "http://twitter.com/ThorMovies/status/685181614079492097/photo/1", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [ + { + "indices": [ + 127, + 132 + ], + "text": "PCAs" + } + ], + "user_mentions": [ + { + "screen_name": "ThorMovies", + "id_str": "701625379", + "id": 701625379, + "indices": [ + 3, + 14 + ], + "name": "Thor" + }, + { + "screen_name": "chrishemsworth", + "id_str": "3063032281", + "id": 3063032281, + "indices": [ + 28, + 43 + ], + "name": "Chris Hemsworth" + }, + { + "screen_name": "peopleschoice", + "id_str": "34993020", + "id": 34993020, + "indices": [ + 60, + 74 + ], + "name": "People's Choice" + } + ] + }, + "created_at": "Thu Jan 07 22:35:21 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685228256568545280, + "text": "RT @ThorMovies: Congrats to @chrishemsworth for winning the @PeoplesChoice for Favorite Action Movie Actor! Definitely worthy. #PCAs https:\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 100325421, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 20, + "is_translator": false + }, + { + "time_zone": "Arizona", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -25200, + "id_str": "166747718", + "following": false, + "friends_count": 286, + "entities": { + "description": { + "urls": [ + { + "display_url": "itunes.apple.com/us/album/cherr\u2026", + "url": "https://t.co/cIuPQAaTHf", + "expanded_url": "https://itunes.apple.com/us/album/cherry-bomb/id983056044", + "indices": [ + 54, + 77 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "golfwang.com", + "url": "https://t.co/WMyHWbn11Q", + "expanded_url": "http://golfwang.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634274657806491648/l4r4obye.jpg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "FFCC4D", + "geo_enabled": false, + "followers_count": 2751413, + "location": "OKAGA, CA", + "screen_name": "fucktyler", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 7283, + "name": "Tyler, The Creator", + "profile_use_background_image": true, + "description": "i want an enzo, garden and leo from romeo and juliet: https://t.co/cIuPQAaTHf", + "url": "https://t.co/WMyHWbn11Q", + "profile_text_color": "00CCFF", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", + "profile_background_color": "75D1FF", + "created_at": "Wed Jul 14 22:32:25 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", + "favourites_count": 167, + "status": { + "retweet_count": 530, + "retweeted_status": { + "retweet_count": 530, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684425683301302274", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "soundcloud.com/ofwgkta-offici\u2026", + "url": "https://t.co/L57RgEWMcj", + "expanded_url": "https://soundcloud.com/ofwgkta-official/kwym-keep-working-young-man", + "indices": [ + 109, + 132 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Tue Jan 05 17:26:13 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684425683301302274, + "text": "if you somehow slept the entire day yesterday and missed out, this link leads you to a new song I dropped....https://t.co/L57RgEWMcj", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1181, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "684566153931296768", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "soundcloud.com/ofwgkta-offici\u2026", + "url": "https://t.co/L57RgEWMcj", + "expanded_url": "https://soundcloud.com/ofwgkta-official/kwym-keep-working-young-man", + "indices": [ + 139, + 140 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "DamierGenesis", + "id_str": "128665538", + "id": 128665538, + "indices": [ + 3, + 17 + ], + "name": "Suavecito." + } + ] + }, + "created_at": "Wed Jan 06 02:44:24 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 684566153931296768, + "text": "RT @DamierGenesis: if you somehow slept the entire day yesterday and missed out, this link leads you to a new song I dropped....https://t.c\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Mobile Web (M5)" + }, + "default_profile_image": false, + "id": 166747718, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634274657806491648/l4r4obye.jpg", + "statuses_count": 39779, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/166747718/1438284983", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "147279619", + "following": false, + "friends_count": 20834, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", + "notifications": false, + "profile_sidebar_fill_color": "EBDDEB", + "profile_link_color": "4A913C", + "geo_enabled": true, + "followers_count": 27038, + "location": "", + "screen_name": "MayaAMonroe", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 106, + "name": "Maya Angelique", + "profile_use_background_image": true, + "description": "IG and snapchat: mayaangelique", + "url": null, + "profile_text_color": "6ABA93", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", + "profile_background_color": "FF001E", + "created_at": "Sun May 23 18:06:28 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", + "favourites_count": 62950, + "status": { + "retweet_count": 1178, + "retweeted_status": { + "retweet_count": 1178, + "in_reply_to_user_id": 347927511, + "possibly_sensitive": false, + "id_str": "654641886632759297", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 579, + "h": 540, + "resize": "fit" + }, + "medium": { + "w": 579, + "h": 540, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 317, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", + "type": "photo", + "indices": [ + 85, + 107 + ], + "media_url": "http://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", + "display_url": "pic.twitter.com/FGmVNBHN5U", + "id_str": "654641878487293953", + "expanded_url": "http://twitter.com/CivilJustUs/status/654641886632759297/photo/1", + "id": 654641878487293953, + "url": "http://t.co/FGmVNBHN5U" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Oct 15 12:56:03 +0000 2015", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": "347927511", + "place": null, + "in_reply_to_screen_name": "CivilJustUs", + "in_reply_to_status_id_str": "654640631004966912", + "truncated": false, + "id": 654641886632759297, + "text": "Fuckboy twitter: \"this shit so good but I can't make a sound because I'm a real man\" http://t.co/FGmVNBHN5U", + "coordinates": null, + "in_reply_to_status_id": 654640631004966912, + "favorite_count": 907, + "contributors": null, + "source": "Twitter for Android" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": true, + "id_str": "685630576104239104", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "large": { + "w": 579, + "h": 540, + "resize": "fit" + }, + "medium": { + "w": 579, + "h": 540, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "small": { + "w": 340, + "h": 317, + "resize": "fit" + } + }, + "source_status_id_str": "654641886632759297", + "url": "http://t.co/FGmVNBHN5U", + "media_url": "http://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", + "source_user_id_str": "347927511", + "id_str": "654641878487293953", + "id": 654641878487293953, + "media_url_https": "https://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", + "type": "photo", + "indices": [ + 102, + 124 + ], + "source_status_id": 654641886632759297, + "source_user_id": 347927511, + "display_url": "pic.twitter.com/FGmVNBHN5U", + "expanded_url": "http://twitter.com/CivilJustUs/status/654641886632759297/photo/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "CivilJustUs", + "id_str": "347927511", + "id": 347927511, + "indices": [ + 3, + 15 + ], + "name": "El DeBeard" + } + ] + }, + "created_at": "Sat Jan 09 01:14:02 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685630576104239104, + "text": "RT @CivilJustUs: Fuckboy twitter: \"this shit so good but I can't make a sound because I'm a real man\" http://t.co/FGmVNBHN5U", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 147279619, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", + "statuses_count": 125764, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/147279619/1448679913", + "is_translator": false + }, + { + "time_zone": "Atlantic Time (Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -14400, + "id_str": "2517988075", + "following": false, + "friends_count": 649, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "theatlantic.com", + "url": "http://t.co/863fgunGbW", + "expanded_url": "http://www.theatlantic.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "000000", + "geo_enabled": false, + "followers_count": 462261, + "location": "Shaolin ", + "screen_name": "tanehisicoates", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 4045, + "name": "Ta-Nehisi Coates", + "profile_use_background_image": false, + "description": "I'm on a mission that Dreamers say is impossible.\nBut when I swing my sword, they all choppable.", + "url": "http://t.co/863fgunGbW", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", + "profile_background_color": "000000", + "created_at": "Fri May 23 14:31:49 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", + "favourites_count": 502, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 71, + "truncated": false, + "retweeted": false, + "id_str": "682882413899452417", + "id": 682882413899452417, + "text": "\"For the new year, strictly Wu-wear...\"", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 01 11:13:49 +0000 2016", + "source": "TweetDeck", + "favorite_count": 210, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 2517988075, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 20312, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2367911", + "following": false, + "friends_count": 31976, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mtv.com", + "url": "http://t.co/yyniasrs2z", + "expanded_url": "http://mtv.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": true, + "followers_count": 13287230, + "location": "NYC", + "screen_name": "MTV", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 28348, + "name": "MTV", + "profile_use_background_image": true, + "description": "The official Twitter account for MTV, USA! Tweets by @Kaitiii | Snapchat/KiK: MTV", + "url": "http://t.co/yyniasrs2z", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", + "profile_background_color": "131516", + "created_at": "Mon Mar 26 22:30:49 +0000 2007", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", + "favourites_count": 12411, + "status": { + "retweet_count": 78, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685634299618525184", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 378, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 668, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 1141, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYPcwSWWEAAu3QE.png", + "type": "photo", + "indices": [ + 104, + 127 + ], + "media_url": "http://pbs.twimg.com/media/CYPcwSWWEAAu3QE.png", + "display_url": "pic.twitter.com/ikbJ9TbExe", + "id_str": "685634290407837696", + "expanded_url": "http://twitter.com/MTV/status/685634299618525184/photo/1", + "id": 685634290407837696, + "url": "https://t.co/ikbJ9TbExe" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "on.mtv.com/1OUWblF", + "url": "https://t.co/eVzCxC9Wh8", + "expanded_url": "http://on.mtv.com/1OUWblF", + "indices": [ + 80, + 103 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 01:28:50 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685634299618525184, + "text": "11 former Nickelodeon stars who are hot AF now (and honestly always have been): https://t.co/eVzCxC9Wh8 https://t.co/ikbJ9TbExe", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 244, + "contributors": null, + "source": "SocialFlow" + }, + "default_profile_image": false, + "id": 2367911, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 150515, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2367911/1451411117", + "is_translator": false + }, + { + "time_zone": null, + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": null, + "id_str": "2601175671", + "following": false, + "friends_count": 1137, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "flyt.it/fettywapitunes", + "url": "https://t.co/ha6adhNCBb", + "expanded_url": "http://flyt.it/fettywapitunes", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 458114, + "location": "", + "screen_name": "fettywap", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 513, + "name": "FettyWap1738", + "profile_use_background_image": true, + "description": "Fetty Wap||ZooWap||Zoovier||ZooZoo for bookings: bookings@rgfproductions.com . Album \u2b07\ufe0f on iTunes", + "url": "https://t.co/ha6adhNCBb", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Jun 11 13:55:15 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", + "favourites_count": 1939, + "status": { + "retweet_count": 9784, + "retweeted_status": { + "retweet_count": 9784, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685320218386673664", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "smarturl.it/SOL.FettyRmx", + "url": "https://t.co/hpbwqOt0fw", + "expanded_url": "http://smarturl.it/SOL.FettyRmx", + "indices": [ + 65, + 88 + ] + }, + { + "display_url": "vevo.ly/XmDzV7", + "url": "https://t.co/0NGVSd7XFQ", + "expanded_url": "http://vevo.ly/XmDzV7", + "indices": [ + 89, + 112 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "fettywap", + "id_str": "2601175671", + "id": 2601175671, + "indices": [ + 28, + 37 + ], + "name": "FettyWap1738" + }, + { + "screen_name": "AppleMusic", + "id_str": "74580436", + "id": 74580436, + "indices": [ + 52, + 63 + ], + "name": "Apple Music" + } + ] + }, + "created_at": "Fri Jan 08 04:40:47 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685320218386673664, + "text": "The Same Old Love remix ft. @fettywap is out NOW on @applemusic! https://t.co/hpbwqOt0fw https://t.co/0NGVSd7XFQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 18817, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685530981231628288", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "smarturl.it/SOL.FettyRmx", + "url": "https://t.co/hpbwqOt0fw", + "expanded_url": "http://smarturl.it/SOL.FettyRmx", + "indices": [ + 82, + 105 + ] + }, + { + "display_url": "vevo.ly/XmDzV7", + "url": "https://t.co/0NGVSd7XFQ", + "expanded_url": "http://vevo.ly/XmDzV7", + "indices": [ + 106, + 129 + ] + } + ], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "selenagomez", + "id_str": "23375688", + "id": 23375688, + "indices": [ + 3, + 15 + ], + "name": "Selena Gomez" + }, + { + "screen_name": "fettywap", + "id_str": "2601175671", + "id": 2601175671, + "indices": [ + 45, + 54 + ], + "name": "FettyWap1738" + }, + { + "screen_name": "AppleMusic", + "id_str": "74580436", + "id": 74580436, + "indices": [ + 69, + 80 + ], + "name": "Apple Music" + } + ] + }, + "created_at": "Fri Jan 08 18:38:17 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685530981231628288, + "text": "RT @selenagomez: The Same Old Love remix ft. @fettywap is out NOW on @applemusic! https://t.co/hpbwqOt0fw https://t.co/0NGVSd7XFQ", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for iPhone" + }, + "default_profile_image": false, + "id": 2601175671, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 4812, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2601175671/1450121884", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "54387680", + "following": false, + "friends_count": 0, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "michaeljackson.com", + "url": "http://t.co/q1TE07bI3n", + "expanded_url": "http://www.michaeljackson.com/", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "E3E2DE", + "profile_link_color": "C12032", + "geo_enabled": false, + "followers_count": 1924985, + "location": "New York, NY USA", + "screen_name": "michaeljackson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 13327, + "name": "Michael Jackson", + "profile_use_background_image": true, + "description": "The Official Michael Jackson Twitter Page", + "url": "http://t.co/q1TE07bI3n", + "profile_text_color": "634047", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", + "profile_background_color": "FFFFFF", + "created_at": "Tue Jul 07 00:24:51 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", + "favourites_count": 0, + "status": { + "retweet_count": 591, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685493401106673665", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 241, + "resize": "fit" + }, + "medium": { + "w": 450, + "h": 320, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 450, + "h": 320, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNcnbPUoAEfwkK.jpg", + "type": "photo", + "indices": [ + 38, + 61 + ], + "media_url": "http://pbs.twimg.com/media/CYNcnbPUoAEfwkK.jpg", + "display_url": "pic.twitter.com/Yed1qysvMx", + "id_str": "685493400687124481", + "expanded_url": "http://twitter.com/michaeljackson/status/685493401106673665/photo/1", + "id": 685493400687124481, + "url": "https://t.co/Yed1qysvMx" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 0, + 15 + ], + "text": "FriendlyFriday" + } + ], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:08:57 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685493401106673665, + "text": "#FriendlyFriday The King And The Boss https://t.co/Yed1qysvMx", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 1184, + "contributors": null, + "source": "Hootsuite" + }, + "default_profile_image": false, + "id": 54387680, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", + "statuses_count": 1357, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/54387680/1435330454", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "15934076", + "following": false, + "friends_count": 685, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtu.be/4-42cW_4ycA", + "url": "https://t.co/jYzdPI3TZ3", + "expanded_url": "http://youtu.be/4-42cW_4ycA", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "000000", + "geo_enabled": true, + "followers_count": 86217, + "location": "Los Angeles, CA", + "screen_name": "quintabrunson", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 185, + "name": "Quinta B.", + "profile_use_background_image": false, + "description": "hi. i'm a creator. I know, right?", + "url": "https://t.co/jYzdPI3TZ3", + "profile_text_color": "030303", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", + "profile_background_color": "E7F5F5", + "created_at": "Thu Aug 21 17:31:50 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", + "favourites_count": 5668, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 234, + "truncated": false, + "retweeted": false, + "id_str": "685596361958395905", + "id": 685596361958395905, + "text": "I'm not overwhelmed. In not underwhelmed. Just whelmed.", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 22:58:05 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 404, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 15934076, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", + "statuses_count": 41490, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/15934076/1449387090", + "is_translator": false + }, + { + "time_zone": "Central Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -21600, + "id_str": "221579212", + "following": false, + "friends_count": 460, + "entities": { + "description": { + "urls": [ + { + "display_url": "jouelzy.com", + "url": "https://t.co/qfCo83qrSw", + "expanded_url": "http://jouelzy.com", + "indices": [ + 120, + 143 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/jouelzy", + "url": "https://t.co/oeQSvIWKEP", + "expanded_url": "http://www.youtube.com/jouelzy", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "B8A2E8", + "geo_enabled": true, + "followers_count": 9967, + "location": "Floating thru the Universe...", + "screen_name": "Jouelzy", + "verified": false, + "has_extended_profile": true, + "protected": false, + "listed_count": 106, + "name": "Jouelzy", + "profile_use_background_image": true, + "description": "OG #SmartBrownGirl. Writer | Tech | Culture | Snark | Womanist Really love tacos, really is my email: tacos@jouelzy.com https://t.co/qfCo83qrSw", + "url": "https://t.co/oeQSvIWKEP", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Wed Dec 01 01:22:22 +0000 2010", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", + "favourites_count": 762, + "status": { + "retweet_count": 4, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685622079727742976", + "geo": null, + "entities": { + "symbols": [], + "urls": [ + { + "display_url": "jouz.es/1tsHoHo", + "url": "https://t.co/6brtUDPU2V", + "expanded_url": "http://jouz.es/1tsHoHo", + "indices": [ + 56, + 79 + ] + } + ], + "hashtags": [ + { + "indices": [ + 50, + 55 + ], + "text": "jpyo" + } + ], + "user_mentions": [] + }, + "created_at": "Sat Jan 09 00:40:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685622079727742976, + "text": "Please Stop Correlating Weaves as Being Hood... - #jpyo https://t.co/6brtUDPU2V", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 4, + "contributors": null, + "source": "Win the Customer" + }, + "default_profile_image": false, + "id": 221579212, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", + "statuses_count": 43559, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/221579212/1412759867", + "is_translator": false + }, + { + "time_zone": "Pacific Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -28800, + "id_str": "26565946", + "following": false, + "friends_count": 117, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "justintimberlake.com", + "url": "http://t.co/SRqd8jW6W3", + "expanded_url": "http://www.justintimberlake.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "EFEFEF", + "profile_link_color": "009999", + "geo_enabled": false, + "followers_count": 51071487, + "location": "Memphis, TN", + "screen_name": "jtimberlake", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 76087, + "name": "Justin Timberlake", + "profile_use_background_image": true, + "description": "The Official Twitter of Justin Timberlake", + "url": "http://t.co/SRqd8jW6W3", + "profile_text_color": "333333", + "is_translation_enabled": true, + "profile_image_url": "http://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", + "profile_background_color": "131516", + "created_at": "Wed Mar 25 19:10:50 +0000 2009", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "EEEEEE", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", + "favourites_count": 14, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 1138, + "truncated": false, + "retweeted": false, + "id_str": "684896391169191938", + "id": 684896391169191938, + "text": "Congrats to one of my favorite humans @TheEllenShow on your @PeoplesChoice Favorite Humanitarian Award for @StJude !#PCAs", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 116, + 121 + ], + "text": "PCAs" + } + ], + "user_mentions": [ + { + "screen_name": "TheEllenShow", + "id_str": "15846407", + "id": 15846407, + "indices": [ + 38, + 51 + ], + "name": "Ellen DeGeneres" + }, + { + "screen_name": "peopleschoice", + "id_str": "34993020", + "id": 34993020, + "indices": [ + 60, + 74 + ], + "name": "People's Choice" + }, + { + "screen_name": "StJude", + "id_str": "9624042", + "id": 9624042, + "indices": [ + 107, + 114 + ], + "name": "St. Jude" + } + ] + }, + "created_at": "Thu Jan 07 00:36:39 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 5806, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 26565946, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", + "statuses_count": 3106, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/26565946/1424110230", + "is_translator": false + }, + { + "time_zone": "Mumbai", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "277434037", + "following": false, + "friends_count": 38, + "entities": { + "description": { + "urls": [] + } + }, + "default_profile": true, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": true, + "followers_count": 5403107, + "location": "Mumbai", + "screen_name": "RNTata2000", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 2741, + "name": "Ratan N. Tata", + "profile_use_background_image": true, + "description": "Former Chairman of Tata Group. Personal interests : - aviation, automobiles, scuba diving and architectural design.", + "url": null, + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", + "profile_background_color": "C0DEED", + "created_at": "Tue Apr 05 11:01:00 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "C0DEED", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", + "favourites_count": 7, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 329, + "truncated": false, + "retweeted": false, + "id_str": "681440380705886208", + "id": 681440380705886208, + "text": "Deeply touched by the kind sentiments & best wishes from well wishers. Thanks so much .", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Mon Dec 28 11:43:41 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 1880, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "default_profile_image": false, + "id": 277434037, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 116, + "is_translator": false + }, + { + "time_zone": "New Delhi", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": 19800, + "id_str": "270771330", + "following": false, + "friends_count": 396, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "tata.com", + "url": "http://t.co/KeVgcDr9Cg", + "expanded_url": "http://www.tata.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466215926279323648/Kc2O7Ilv.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "DDEEF6", + "profile_link_color": "0084B4", + "geo_enabled": false, + "followers_count": 315462, + "location": "Global", + "screen_name": "TataCompanies", + "verified": true, + "has_extended_profile": false, + "protected": false, + "listed_count": 550, + "name": "Tata Group", + "profile_use_background_image": true, + "description": "Official Twitter Channel of the Tata Group. \r\n@TataCompanies keeps you informed and updated on what\u2019s happening in the Tata group of companies.", + "url": "http://t.co/KeVgcDr9Cg", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/466221238990295040/jjzIhNhC_normal.png", + "profile_background_color": "0173BA", + "created_at": "Wed Mar 23 06:52:57 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFFFFF", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/466221238990295040/jjzIhNhC_normal.png", + "favourites_count": 1012, + "status": { + "retweet_count": 1, + "retweeted_status": { + "retweet_count": 1, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685166827698294784", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", + "type": "photo", + "indices": [ + 116, + 139 + ], + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", + "display_url": "pic.twitter.com/w8uJG9nM2h", + "id_str": "685166710010281984", + "expanded_url": "http://twitter.com/TataTech_News/status/685166827698294784/video/1", + "id": 685166710010281984, + "url": "https://t.co/w8uJG9nM2h" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 21, + 26 + ], + "text": "STEM" + } + ], + "user_mentions": [ + { + "screen_name": "Lions", + "id_str": "44666348", + "id": 44666348, + "indices": [ + 83, + 89 + ], + "name": "Detroit Lions" + }, + { + "screen_name": "A4C_ATHLETES", + "id_str": "2199969366", + "id": 2199969366, + "indices": [ + 90, + 103 + ], + "name": "ATHLETES FOR CHARITY" + }, + { + "screen_name": "Detroitk12", + "id_str": "57457257", + "id": 57457257, + "indices": [ + 104, + 115 + ], + "name": "DetroitPublicSchools" + } + ] + }, + "created_at": "Thu Jan 07 18:31:16 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685166827698294784, + "text": "Getting kids to love #STEM is easy because science.Having an NFL player helps too. @Lions @A4C_ATHLETES @Detroitk12 https://t.co/w8uJG9nM2h", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 6, + "contributors": null, + "source": "Twitter for iPhone" + }, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685513894043975680", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 191, + "resize": "fit" + }, + "medium": { + "w": 600, + "h": 338, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "large": { + "w": 1024, + "h": 576, + "resize": "fit" + } + }, + "source_status_id_str": "685166827698294784", + "url": "https://t.co/w8uJG9nM2h", + "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", + "source_user_id_str": "278029752", + "id_str": "685166710010281984", + "id": 685166710010281984, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", + "type": "photo", + "indices": [ + 139, + 140 + ], + "source_status_id": 685166827698294784, + "source_user_id": 278029752, + "display_url": "pic.twitter.com/w8uJG9nM2h", + "expanded_url": "http://twitter.com/TataTech_News/status/685166827698294784/video/1" + } + ], + "symbols": [], + "urls": [], + "hashtags": [ + { + "indices": [ + 40, + 45 + ], + "text": "STEM" + } + ], + "user_mentions": [ + { + "screen_name": "TataTech_News", + "id_str": "278029752", + "id": 278029752, + "indices": [ + 3, + 17 + ], + "name": "Tata Technologies" + }, + { + "screen_name": "Lions", + "id_str": "44666348", + "id": 44666348, + "indices": [ + 102, + 108 + ], + "name": "Detroit Lions" + }, + { + "screen_name": "A4C_ATHLETES", + "id_str": "2199969366", + "id": 2199969366, + "indices": [ + 109, + 122 + ], + "name": "ATHLETES FOR CHARITY" + }, + { + "screen_name": "Detroitk12", + "id_str": "57457257", + "id": 57457257, + "indices": [ + 123, + 134 + ], + "name": "DetroitPublicSchools" + } + ] + }, + "created_at": "Fri Jan 08 17:30:23 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685513894043975680, + "text": "RT @TataTech_News: Getting kids to love #STEM is easy because science.Having an NFL player helps too. @Lions @A4C_ATHLETES @Detroitk12 http\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Buffer" + }, + "default_profile_image": false, + "id": 270771330, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466215926279323648/Kc2O7Ilv.jpeg", + "statuses_count": 11644, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/270771330/1451565528", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "418981954", + "following": false, + "friends_count": 118, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "yayadacosta.com", + "url": "https://t.co/YLjOWGxoVy", + "expanded_url": "http://www.yayadacosta.com", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", + "notifications": false, + "profile_sidebar_fill_color": "F6FFD1", + "profile_link_color": "0099CC", + "geo_enabled": false, + "followers_count": 16568, + "location": "New York, NY", + "screen_name": "theyayadacosta", + "verified": true, + "has_extended_profile": true, + "protected": false, + "listed_count": 173, + "name": "yaya dacosta", + "profile_use_background_image": true, + "description": "Chicago Med on NBC, 8/9C", + "url": "https://t.co/YLjOWGxoVy", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/546186267780980736/mU3Rs5NV_normal.jpeg", + "profile_background_color": "FFF04D", + "created_at": "Tue Nov 22 20:15:43 +0000 2011", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "FFF8AD", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/546186267780980736/mU3Rs5NV_normal.jpeg", + "favourites_count": 330, + "status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": "AndreRoyo", + "in_reply_to_user_id": 22891868, + "in_reply_to_status_id_str": "684845325157298176", + "retweet_count": 0, + "truncated": false, + "retweeted": false, + "id_str": "685120871795683328", + "id": 685120871795683328, + "text": "@AndreRoyo Ah, so you're the reason for yesterday's studio blackout! \ud83d\ude02 Nice to hear from you. Happy New Year! How long r u in town? Call me", + "in_reply_to_user_id_str": "22891868", + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "AndreRoyo", + "id_str": "22891868", + "id": 22891868, + "indices": [ + 0, + 10 + ], + "name": "Andre Royo" + } + ] + }, + "created_at": "Thu Jan 07 15:28:39 +0000 2016", + "source": "Twitter for iPhone", + "favorite_count": 0, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": 684845325157298176, + "lang": "en" + }, + "default_profile_image": false, + "id": 418981954, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", + "statuses_count": 757, + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "16419713", + "following": false, + "friends_count": 762, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "afropunk.com", + "url": "http://t.co/mvOn1PAAXD", + "expanded_url": "http://www.afropunk.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/573877803/6nr7xvcjgkugyvz5esks.jpeg", + "notifications": false, + "profile_sidebar_fill_color": "FFFFFF", + "profile_link_color": "333333", + "geo_enabled": true, + "followers_count": 40541, + "location": "Brooklyn, NY", + "screen_name": "afropunk", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 811, + "name": "AFROPUNK", + "profile_use_background_image": false, + "description": "Defining Culture.", + "url": "http://t.co/mvOn1PAAXD", + "profile_text_color": "333333", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/547858925169553408/rYeQ4ng3_normal.jpeg", + "profile_background_color": "EEEEEE", + "created_at": "Tue Sep 23 14:38:16 +0000 2008", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "64FB00", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/547858925169553408/rYeQ4ng3_normal.jpeg", + "favourites_count": 138, + "status": { + "retweet_count": 36, + "in_reply_to_user_id": null, + "possibly_sensitive": false, + "id_str": "685502031365320704", + "geo": null, + "entities": { + "media": [ + { + "sizes": { + "small": { + "w": 340, + "h": 297, + "resize": "fit" + }, + "large": { + "w": 507, + "h": 443, + "resize": "fit" + }, + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 507, + "h": 443, + "resize": "fit" + } + }, + "media_url_https": "https://pbs.twimg.com/media/CYNkdxjWsAEcjpQ.jpg", + "type": "photo", + "indices": [ + 119, + 142 + ], + "media_url": "http://pbs.twimg.com/media/CYNkdxjWsAEcjpQ.jpg", + "display_url": "pic.twitter.com/mbovF6KFek", + "id_str": "685502030971056129", + "expanded_url": "http://twitter.com/afropunk/status/685502031365320704/photo/1", + "id": 685502030971056129, + "url": "https://t.co/mbovF6KFek" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "bit.ly/22PXZ9Z", + "url": "https://t.co/j3ZRbspjlT", + "expanded_url": "http://bit.ly/22PXZ9Z", + "indices": [ + 95, + 118 + ] + } + ], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Fri Jan 08 16:43:14 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 685502031365320704, + "text": "FEATURE: Steffany Brown calls out microaggressions in funny illustration series more pics\n\u2014>https://t.co/j3ZRbspjlT https://t.co/mbovF6KFek", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 49, + "contributors": null, + "source": "Twitter Web Client" + }, + "default_profile_image": false, + "id": 16419713, + "blocked_by": false, + "profile_background_tile": true, + "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/573877803/6nr7xvcjgkugyvz5esks.jpeg", + "statuses_count": 14801, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16419713/1450711385", + "is_translator": false + }, + { + "time_zone": "Eastern Time (US & Canada)", + "follow_request_sent": false, + "contributors_enabled": false, + "utc_offset": -18000, + "id_str": "2578265913", + "following": false, + "friends_count": 12, + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "howmanysyrians.com", + "url": "http://t.co/PUY0b0QcC0", + "expanded_url": "http://howmanysyrians.com", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "default_profile": false, + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "notifications": false, + "profile_sidebar_fill_color": "000000", + "profile_link_color": "DB553A", + "geo_enabled": false, + "followers_count": 2137, + "location": "", + "screen_name": "HowManySyrians", + "verified": false, + "has_extended_profile": false, + "protected": false, + "listed_count": 55, + "name": "How Many More?", + "profile_use_background_image": false, + "description": "We will never forget the dead. We will never give up fighting for the living.", + "url": "http://t.co/PUY0b0QcC0", + "profile_text_color": "000000", + "is_translation_enabled": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/574597345523843072/vxAfmuIC_normal.jpeg", + "profile_background_color": "000000", + "created_at": "Mon Jun 02 19:23:47 +0000 2014", + "blocking": false, + "muting": false, + "profile_sidebar_border_color": "000000", + "lang": "en", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/574597345523843072/vxAfmuIC_normal.jpeg", + "favourites_count": 22, + "status": { + "retweet_count": 287, + "retweeted_status": { + "geo": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_user_id": null, + "in_reply_to_status_id_str": null, + "retweet_count": 287, + "truncated": false, + "retweeted": false, + "id_str": "682684333501640704", + "id": 682684333501640704, + "text": "Happy New Year world. In 2016 we hope for peace. We hope for skies clear of aircraft dropping bombs on us. We hope for a future for our kids", + "in_reply_to_user_id_str": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [] + }, + "created_at": "Thu Dec 31 22:06:43 +0000 2015", + "source": "Twitter for iPhone", + "favorite_count": 184, + "favorited": false, + "coordinates": null, + "contributors": null, + "in_reply_to_status_id": null, + "lang": "en" + }, + "in_reply_to_user_id": null, + "id_str": "683024524581945344", + "geo": null, + "entities": { + "symbols": [], + "urls": [], + "hashtags": [], + "user_mentions": [ + { + "screen_name": "SyriaCivilDef", + "id_str": "2468886751", + "id": 2468886751, + "indices": [ + 3, + 17 + ], + "name": "The White Helmets" + } + ] + }, + "created_at": "Fri Jan 01 20:38:31 +0000 2016", + "favorited": false, + "retweeted": false, + "lang": "en", + "in_reply_to_user_id_str": null, + "place": null, + "in_reply_to_screen_name": null, + "in_reply_to_status_id_str": null, + "truncated": false, + "id": 683024524581945344, + "text": "RT @SyriaCivilDef: Happy New Year world. In 2016 we hope for peace. We hope for skies clear of aircraft dropping bombs on us. We hope for a\u2026", + "coordinates": null, + "in_reply_to_status_id": null, + "favorite_count": 0, + "contributors": null, + "source": "Twitter for Android" + }, + "default_profile_image": false, + "id": 2578265913, + "blocked_by": false, + "profile_background_tile": false, + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "statuses_count": 136366, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2578265913/1450390955", + "is_translator": false + } + ], + "previous_cursor": 0, + "previous_cursor_str": "0", + "next_cursor_str": "1510410423140902959" +} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py new file mode 100644 index 00000000..31b223d2 --- /dev/null +++ b/tests/test_api_30.py @@ -0,0 +1,262 @@ +# encoding: utf-8 + +import json +import sys +import unittest + +import twitter +import responses + + +class ErrNull(object): + """ Suppress output of tests while writing to stdout or stderr. This just + takes in data and does nothing with it. + """ + + def write(self, data): + pass + + +class ApiTest(unittest.TestCase): + + def setUp(self): + self.api = twitter.Api( + consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test', + sleep_on_rate_limit=False) + self.base_url = 'https://api.twitter.com/1.1' + self._stderr = sys.stderr + sys.stderr = ErrNull() + + def tearDown(self): + sys.stderr = self._stderr + pass + + @responses.activate + def testGetFriendIDs(self): + # First request for first 5000 friends + with open('testdata/get_friend_ids_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/friends/ids.json?screen_name=EricHolthaus&count=5000&cursor=-1'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + # Second (last) request for remaining friends + with open('testdata/get_friend_ids_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/friends/ids.json?count=5000&screen_name=EricHolthaus&cursor=1417903878302254556'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + resp = self.api.GetFriendIDs(screen_name='EricHolthaus') + self.assertTrue(type(resp) is list) + self.assertEqual(len(resp), 6452) + self.assertTrue(type(resp[0]) is int) + + @responses.activate + def testGetFriendIDsPaged(self): + with open('testdata/get_friend_ids_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/friends/ids.json?count=5000&cursor=-1&screen_name=EricHolthaus'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + ncursor, pcursor, resp = self.api.GetFriendIDsPaged(screen_name='EricHolthaus') + self.assertLessEqual(len(resp), 5000) + self.assertTrue(ncursor) + self.assertFalse(pcursor) + + @responses.activate + def testGetFriendsPaged(self): + with open('testdata/get_friends_paged.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/friends/list.json?screen_name=codebear&count=200&cursor=-1&skip_status=False&include_user_entities=True'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + ncursor, pcursor, resp = self.api.GetFriendsPaged(screen_name='codebear', count=200) + self.assertEqual(ncursor, 1494734862149901956) + self.assertEqual(pcursor, 0) + self.assertEqual(len(resp), 200) + self.assertTrue(type(resp[0]) is twitter.User) + + with open('testdata/get_friends_paged_uid.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/friends/list.json?user_id=12&skip_status=False&cursor=-1&include_user_entities=True&count=200'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + ncursor, pcursor, resp = self.api.GetFriendsPaged(user_id=12, count=200) + self.assertEqual(ncursor, 1510410423140902959) + self.assertEqual(pcursor, 0) + self.assertEqual(len(resp), 200) + self.assertTrue(type(resp[0]) is twitter.User) + + with open('testdata/get_friends_paged_additional_params.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/friends/list.json?include_user_entities=True&user_id=12&count=200&cursor=-1&skip_status=True'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + ncursor, pcursor, resp = self.api.GetFriendsPaged(user_id=12, + count=200, + skip_status=True, + include_user_entities=True) + self.assertEqual(ncursor, 1510492845088954664) + self.assertEqual(pcursor, 0) + self.assertEqual(len(resp), 200) + self.assertTrue(type(resp[0]) is twitter.User) + + @responses.activate + def testGetFriends(self): + + """ + This is tedious, but the point is to add a responses endpoint for + each call that GetFriends() is going to make against the API and + have it return the appropriate json data. + """ + + cursor = -1 + for i in range(0, 5): + with open('testdata/get_friends_{0}.json'.format(i)) as f: + resp_data = f.read() + endpoint = '/friends/list.json?screen_name=codebear&count=200&skip_status=False&include_user_entities=True&cursor={0}'.format(cursor) + + responses.add( + responses.GET, + '{base_url}{endpoint}'.format( + base_url=self.api.base_url, + endpoint=endpoint), + body=resp_data, match_querystring=True, status=200) + + cursor = json.loads(resp_data)['next_cursor'] + + resp = self.api.GetFriends(screen_name='codebear') + self.assertEqual(len(resp), 819) + + @responses.activate + def testGetFriendsWithLimit(self): + with open('testdata/get_friends_0.json') as f: + resp_data = f.read() + + responses.add( + responses.GET, + '{base_url}/friends/list.json?include_user_entities=True&skip_status=False&screen_name=codebear&count=200&cursor=-1'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + resp = self.api.GetFriends(screen_name='codebear', limit_users=200) + self.assertEqual(len(resp), 200) + + def testFriendsErrorChecking(self): + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetFriends(screen_name='jack', + limit_users='infinity')) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetFriendsPaged(screen_name='jack', + count='infinity')) + + @responses.activate + def testGetFollowersIDs(self): + # First request for first 5000 followers + with open('testdata/get_follower_ids_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/followers/ids.json?count=5000&cursor=-1&screen_name=GirlsMakeGames'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + # Second (last) request for remaining followers + with open('testdata/get_follower_ids_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/followers/ids.json?cursor=1482201362283529597&count=5000&screen_name=GirlsMakeGames'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + resp = self.api.GetFollowerIDs(screen_name='GirlsMakeGames') + self.assertTrue(type(resp) is list) + self.assertEqual(len(resp), 7885) + self.assertTrue(type(resp[0]) is int) + + @responses.activate + def testGetFollowers(self): + # First request for first 200 followers + with open('testdata/get_followers_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/followers/list.json?include_user_entities=True&count=200&screen_name=himawari8bot&skip_status=False&cursor=-1'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + # Second (last) request for remaining followers + with open('testdata/get_followers_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/followers/list.json?include_user_entities=True&skip_status=False&count=200&screen_name=himawari8bot&cursor=1516850034842747602'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetFollowers(screen_name='himawari8bot') + self.assertTrue(type(resp) is list) + self.assertTrue(type(resp[0]) is twitter.User) + self.assertEqual(len(resp), 335) + + @responses.activate + def testGetFollowersPaged(self): + with open('testdata/get_followers_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/followers/list.json?include_user_entities=True&count=200&screen_name=himawari8bot&skip_status=False&cursor=-1'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + ncursor, pcursor, resp = self.api.GetFollowersPaged(screen_name='himawari8bot') + + self.assertTrue(type(resp) is list) + self.assertTrue(type(resp[0]) is twitter.User) + self.assertEqual(len(resp), 200) From df1e0908fcb7a1cd24216caa861faf2e6caf20c2 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 10 Jan 2016 12:03:36 -0500 Subject: [PATCH 108/533] updates tests for Friends/Followers methods & includes more data for tests --- testdata/get_follower_ids_0.json | 5009 +-- testdata/get_follower_ids_1.json | 2894 +- testdata/get_follower_ids_stringify.json | 1 + testdata/get_followers_0.json | 11128 +------ testdata/get_followers_1.json | 7540 +---- testdata/get_friend_ids_0.json | 2 +- testdata/get_friends_0.json | 26702 +-------------- testdata/get_friends_1.json | 26549 +-------------- testdata/get_friends_2.json | 27011 +--------------- testdata/get_friends_3.json | 25203 +------------- testdata/get_friends_4.json | 2446 +- testdata/get_friends_paged.json | 26428 +-------------- .../get_friends_paged_additional_params.json | 12011 +------ testdata/get_friends_paged_uid.json | 26631 +-------------- tests/test_api_30.py | 59 +- 15 files changed, 70 insertions(+), 199544 deletions(-) create mode 100644 testdata/get_follower_ids_stringify.json diff --git a/testdata/get_follower_ids_0.json b/testdata/get_follower_ids_0.json index a36147a0..0cb1dc06 100644 --- a/testdata/get_follower_ids_0.json +++ b/testdata/get_follower_ids_0.json @@ -1,5008 +1 @@ -{ - "next_cursor_str": "1482201362283529597", - "next_cursor": 1482201362283529597, - "previous_cursor": 0, - "previous_cursor_str": "0", - "ids": [ - 4727569094, - 2159989885, - 4440403513, - 4588196896, - 4726058862, - 3586984694, - 4724624774, - 4597361717, - 172443768, - 4723772232, - 972722053, - 2711772630, - 4472842402, - 809963898, - 459557733, - 536513337, - 4721100218, - 1003854361, - 4726605819, - 20086326, - 4718785213, - 4647172521, - 1280009484, - 44151502, - 4059246148, - 3566376976, - 327606485, - 1561816711, - 4558693163, - 2910127390, - 4713152474, - 3392295089, - 228816435, - 867113114, - 169155140, - 2851645779, - 37599351, - 4705950344, - 2383209865, - 2909319245, - 2943876654, - 3563619556, - 2519892949, - 2783290115, - 3305004538, - 3254355889, - 4042012949, - 6903522, - 730455462, - 379174316, - 1140758419, - 1418842483, - 2924562127, - 4685458346, - 3252887849, - 54814687, - 500593738, - 3350035048, - 13744762, - 2677379911, - 165090454, - 6736502, - 4351480095, - 3291006204, - 3861464295, - 924726152, - 3305910986, - 3335689277, - 3432512224, - 2744732064, - 3369181541, - 3225038901, - 291156648, - 2611482761, - 4492833793, - 63256598, - 3463286669, - 54662153, - 3617600054, - 4223951597, - 33909603, - 4060613314, - 33293016, - 1513098175, - 3390091932, - 3392175885, - 2723551188, - 534503457, - 4628650816, - 146266477, - 805250713, - 876097170, - 548601124, - 3496725492, - 1227109332, - 4650831494, - 3260450900, - 4638606512, - 2263854492, - 4618877479, - 4515437554, - 4580405368, - 1013993911, - 4608895094, - 3131353377, - 4134420904, - 3154667345, - 17202870, - 4551135916, - 1208988649, - 3083337205, - 4416740921, - 384640916, - 1644367051, - 4361721801, - 4289129779, - 3291211192, - 4111189155, - 4095486974, - 3432611499, - 385614197, - 4576335492, - 1575064478, - 3087454077, - 4481229796, - 2484730051, - 397455579, - 4443407839, - 3351271613, - 3764534293, - 3107595305, - 2837232924, - 4558453938, - 374695645, - 4482472275, - 4556159652, - 765566593, - 4478225662, - 2777597238, - 4482378194, - 1574305136, - 3298141567, - 3288437098, - 387302374, - 4428090687, - 4329496245, - 25941620, - 38871301, - 773894990, - 3703004656, - 3171871964, - 4258325478, - 3314167718, - 59141885, - 4384140736, - 2279784726, - 4405811902, - 1944926101, - 565743231, - 1896036876, - 2881381038, - 4298344762, - 4132592593, - 610058444, - 3402203169, - 4430168739, - 4206412580, - 3715201703, - 4429365257, - 4067032871, - 4453995859, - 4286580586, - 4503681732, - 1436041, - 2945751177, - 4409386396, - 20596878, - 18821744, - 4100452463, - 2390549779, - 4104856221, - 4432718594, - 1643476940, - 17127545, - 2395968038, - 13357152, - 1616041538, - 3936903853, - 3362672781, - 3234227772, - 4238198233, - 37170886, - 3310781670, - 2470833258, - 4376890762, - 24641260, - 4445062219, - 4443257354, - 4437900013, - 3238070184, - 4437812906, - 4154941402, - 3369087143, - 2943778680, - 551545790, - 1665904176, - 4199565015, - 3293182576, - 271195889, - 73066735, - 3288492700, - 4343070873, - 2959224279, - 462129948, - 4325388317, - 2653241334, - 14594968, - 3041707044, - 1225814342, - 14536247, - 1551214278, - 2765922944, - 4196868014, - 3392128331, - 230505712, - 3245241844, - 3246290510, - 2464896570, - 1588283210, - 3369023253, - 4310030537, - 3369096833, - 3369018423, - 3369095249, - 3314371723, - 3301731150, - 94011952, - 4301214683, - 3242517059, - 3436318253, - 4204336403, - 1229301625, - 3369045819, - 56381545, - 3372161386, - 2444611340, - 3167775416, - 3813670342, - 3369016863, - 3369082163, - 3369113362, - 4262914535, - 4323271819, - 4265960428, - 4277951967, - 3234997046, - 4064878827, - 4257937756, - 270388907, - 3369162784, - 618193383, - 3372071451, - 4075729966, - 4249798059, - 344710912, - 21170191, - 1358213732, - 4295447478, - 433402770, - 910767529, - 3369008271, - 3288749939, - 3700789463, - 5735722, - 504984038, - 4042828692, - 994872008, - 2793324527, - 2965516881, - 3943298172, - 4301516532, - 1861651002, - 3245816828, - 4298135551, - 144327700, - 4230489327, - 4255188853, - 2434700825, - 4261340774, - 872152550, - 2824376163, - 1012043990, - 14439553, - 1447018867, - 4149228059, - 101563838, - 2344074758, - 4167609783, - 429181978, - 723239514, - 4210997740, - 471728300, - 4256907314, - 723259994, - 1631058284, - 4241702173, - 4053712753, - 49036322, - 4242022692, - 4002711853, - 4239672132, - 15376548, - 36661567, - 45119696, - 3219689552, - 122722951, - 1968880338, - 14986598, - 133163228, - 4209237794, - 26288896, - 3297595985, - 4171889661, - 3688577959, - 441443024, - 4165302856, - 3079557028, - 2814179773, - 3193892419, - 3897312373, - 4194504312, - 4072977613, - 2873622863, - 2896048525, - 2868426065, - 2925527959, - 25414649, - 4178125153, - 3210747297, - 1592364410, - 2920104383, - 53742527, - 16050335, - 16711686, - 826139334, - 4099610194, - 272170764, - 2660923440, - 21497686, - 3318260434, - 3438042953, - 3996919827, - 4119427517, - 3287831166, - 4098782536, - 3566510360, - 3596193313, - 3572237002, - 108277704, - 184035104, - 909889638, - 4108697969, - 3565431863, - 4105547145, - 29006114, - 572918492, - 3314249902, - 21934122, - 3128047447, - 4101702562, - 3436857292, - 2465853247, - 3930538695, - 3262000880, - 4085064315, - 1130398088, - 4077702320, - 3205516811, - 4094234294, - 2428746600, - 3606281596, - 3445573213, - 14260934, - 715210842, - 2854329679, - 20547438, - 2324931355, - 3561566841, - 4055603173, - 3280180292, - 17959415, - 1137841, - 3028669812, - 218819255, - 2535680672, - 4047417136, - 30171517, - 294163041, - 158817600, - 2812038732, - 434493063, - 24630127, - 1277467326, - 4052753577, - 4032318612, - 3372156172, - 2360952272, - 31088347, - 2751474409, - 3372064479, - 3028987862, - 3372052941, - 2876077741, - 1426489596, - 140848680, - 3676402404, - 449088065, - 3372112343, - 4033856823, - 3855838251, - 262289638, - 517508970, - 3970614084, - 3991146975, - 1620307951, - 860162726, - 480203570, - 3976303633, - 377421904, - 3698146754, - 3641637135, - 711152959, - 3986655664, - 963060793, - 3951074242, - 16869298, - 3859045699, - 2787902762, - 4000203135, - 3874758792, - 3192206835, - 3742132393, - 6867422, - 380752039, - 3987199649, - 3124168192, - 3934487834, - 2878853621, - 539389847, - 3396877633, - 3944723374, - 3398917175, - 3309014172, - 3048570253, - 93508627, - 3890105532, - 924569904, - 2781414036, - 3278963672, - 2697484447, - 2466617142, - 116537943, - 1305583158, - 3445927762, - 3953168957, - 3118176874, - 3394087006, - 3633347063, - 3260172752, - 40937252, - 560622571, - 3884146342, - 3897137537, - 1700987816, - 3325037137, - 2321310390, - 14595446, - 3938137581, - 2780267415, - 3921864677, - 2524165066, - 3921655367, - 2310349423, - 177256329, - 2651192450, - 95569167, - 3830504413, - 2866488104, - 3540449115, - 1274674382, - 69568497, - 237071281, - 3645729272, - 3048045832, - 711092328, - 86728819, - 3816688513, - 898337090, - 30958732, - 817052436, - 362829789, - 3882720183, - 2613691501, - 3328152633, - 24649110, - 3450039327, - 3881376448, - 236678142, - 42723893, - 1972345922, - 3367772559, - 3394538069, - 21391319, - 2243199369, - 314910919, - 3864843508, - 2662671325, - 122856431, - 3791016433, - 3461500095, - 2873652344, - 3866597782, - 729055795, - 2980436249, - 3585710534, - 27546330, - 2455058425, - 637256263, - 3843606622, - 8257582, - 15453752, - 3732361153, - 2687560542, - 3796531515, - 3742856964, - 2320415300, - 1025258792, - 3750714320, - 3310692242, - 3235866265, - 2222207587, - 259203750, - 348732128, - 257790897, - 17215973, - 3656945963, - 3119648844, - 3533415917, - 3166038078, - 3830425707, - 3063515724, - 824097301, - 304714961, - 19461735, - 3709450815, - 983761116, - 55050779, - 282749943, - 3125045056, - 3815917726, - 1464002383, - 2835250822, - 15247851, - 3707836163, - 398247232, - 2488518120, - 3721564272, - 3743441352, - 84526047, - 3742918274, - 510426506, - 375881922, - 3307585687, - 341561121, - 3064005897, - 3722819119, - 588229921, - 15657734, - 256604706, - 1061271746, - 1585399752, - 227941935, - 33174306, - 3319710096, - 931013179, - 29972165, - 12970432, - 409264135, - 95821691, - 20392133, - 29140169, - 21755368, - 1911369170, - 297882633, - 3025694975, - 3671953580, - 1271160937, - 1140606943, - 473209711, - 2976293643, - 197908028, - 23597904, - 17368291, - 3791030422, - 3127932331, - 55683, - 991784670, - 3314034839, - 2217597356, - 3667991232, - 521665119, - 61312155, - 2366598559, - 19158794, - 2790808422, - 550218277, - 3437500641, - 890573372, - 369664862, - 194350424, - 3366793205, - 3004174175, - 35226352, - 2343811524, - 274376314, - 2462584339, - 2556439687, - 129982363, - 1025575574, - 2990366516, - 549789279, - 3245682853, - 1067433296, - 3776394015, - 568266336, - 2660896448, - 2445322386, - 3776084482, - 257105958, - 26400556, - 623208462, - 2374687748, - 2951326008, - 2836831551, - 3565196532, - 19533970, - 937453657, - 515796374, - 32339577, - 1069924674, - 26243581, - 21256388, - 18359687, - 51958104, - 365424178, - 1519453129, - 2993641806, - 110849533, - 15410181, - 24939205, - 391698296, - 3293817393, - 474197738, - 23989245, - 3217502745, - 2501696396, - 35754897, - 253526305, - 191606864, - 3008103926, - 104940767, - 203006404, - 171093486, - 42909816, - 40147256, - 3438494050, - 131850717, - 373629495, - 18957528, - 22478857, - 441869139, - 327494258, - 3077068253, - 42566089, - 14909129, - 16117544, - 3769089201, - 126227790, - 260409334, - 358127357, - 18409980, - 873102607, - 204722944, - 117665953, - 255867958, - 3378918880, - 2584841, - 285435896, - 1390708652, - 1958639456, - 46969371, - 24973042, - 19150410, - 2691032274, - 2371922039, - 90884238, - 119741900, - 2730359500, - 110095813, - 71229154, - 20247713, - 332962470, - 2450622499, - 3766223981, - 338315107, - 279389317, - 3299221046, - 15387032, - 632433915, - 32321142, - 2332448720, - 228111079, - 3162067817, - 2710356834, - 1359934544, - 18157949, - 2902807042, - 591955292, - 2566507268, - 3312843998, - 3301215209, - 440447856, - 100021001, - 2950135645, - 624751365, - 2924824557, - 524317843, - 326886738, - 339305583, - 58139636, - 325382356, - 77675608, - 1604400888, - 14337677, - 33762408, - 3226765068, - 453433267, - 478052966, - 2376105709, - 761821470, - 2682724056, - 3308110327, - 124322117, - 323861766, - 42825991, - 3418685967, - 38044745, - 1884638293, - 835126549, - 2435921790, - 3674884573, - 2906512079, - 20380832, - 16393195, - 304566678, - 733185818, - 3287926819, - 3112569449, - 41446147, - 57821198, - 3133437064, - 771135176, - 3763645767, - 2197216129, - 780629930, - 28422283, - 57391309, - 22285002, - 90467435, - 16009228, - 87003849, - 2490802358, - 2831619731, - 1725681336, - 15072897, - 3672518918, - 103355247, - 15846480, - 3004462409, - 425247471, - 1033542842, - 3761939301, - 165452796, - 2315874928, - 1595385926, - 84649687, - 3424669325, - 346413206, - 213863733, - 3671107700, - 22493135, - 42445830, - 352416575, - 322935580, - 299583722, - 2246685840, - 559419711, - 357166905, - 576729133, - 3297935932, - 780256, - 2673962376, - 398029052, - 66460256, - 524971540, - 2475614696, - 361923349, - 45178917, - 1618289293, - 1529281777, - 712252046, - 14745265, - 968346379, - 288314281, - 57278524, - 143121774, - 1350192332, - 2545160278, - 378357691, - 229191999, - 12325402, - 315739478, - 300311737, - 790993424, - 1653027398, - 2162573900, - 25396935, - 92827461, - 336831618, - 19519403, - 27809379, - 813767929, - 243299651, - 3758706017, - 21126689, - 110860080, - 293055819, - 47972392, - 81796862, - 15876654, - 71480385, - 454083904, - 84825505, - 3327174042, - 36141303, - 195478230, - 142216838, - 1561810207, - 3437702092, - 3755741115, - 18589798, - 26414682, - 3755349015, - 47680923, - 292551106, - 2337491022, - 15075215, - 3152481, - 19784522, - 1967676458, - 16064715, - 3623119213, - 3746582117, - 3742885576, - 3720703834, - 3471887176, - 3676985837, - 16008657, - 2849184133, - 312806264, - 3318322004, - 3660317175, - 3164522870, - 2861121485, - 3322346690, - 390634518, - 22166168, - 880869722, - 3089421956, - 3305860415, - 3588190457, - 204391039, - 3239517631, - 3319933355, - 3599797998, - 2998904224, - 3561202392, - 48197550, - 276117815, - 3676773257, - 545286328, - 3679097175, - 3646159463, - 898350834, - 2720717808, - 3134132414, - 130911267, - 3534423801, - 2722611607, - 2885105333, - 1890653114, - 281096380, - 47904733, - 3651948615, - 3647552597, - 2998874523, - 211810106, - 847982263, - 323210799, - 178064435, - 1631607308, - 3374277485, - 3532146672, - 3491163143, - 3625519757, - 2983873470, - 3488315780, - 2668359638, - 3526092440, - 2536373654, - 3119682967, - 3496635434, - 21124657, - 3307525812, - 3608599515, - 705804404, - 433076609, - 2856319923, - 2864709981, - 3227185845, - 90352974, - 1242147744, - 991976840, - 1596760496, - 3598393755, - 2826874020, - 2173503494, - 3241226132, - 32272914, - 607618475, - 2330723844, - 394080114, - 3072816451, - 385711077, - 3550051277, - 781088821, - 2904507394, - 1491824214, - 3379323719, - 3442798332, - 98456973, - 125222510, - 1014843008, - 2781240970, - 18780020, - 2525002464, - 557847258, - 3215225885, - 3328527374, - 3154422811, - 3444680595, - 3304074656, - 3533189175, - 3434033233, - 3185412498, - 16503630, - 363748330, - 1278333757, - 3424754757, - 1519836126, - 2998357891, - 2940876531, - 3374017072, - 2490418518, - 2491727960, - 1058934854, - 1040925240, - 946605234, - 3411393732, - 2984838395, - 3405973940, - 798018403, - 81394857, - 2716035852, - 17083882, - 3421279773, - 3387702346, - 637385533, - 108449705, - 3397256713, - 2941268731, - 3436343369, - 2453990824, - 932649750, - 3320142422, - 2849330606, - 3188361169, - 799186008, - 3270578292, - 127767115, - 1974333300, - 2257691340, - 2282907989, - 468954602, - 3448469717, - 3373031239, - 2201083252, - 44221382, - 2811672966, - 839819048, - 518027609, - 193035695, - 3044766969, - 3303433591, - 318847914, - 2899931039, - 430777761, - 250761666, - 2762347356, - 3342197517, - 3394811177, - 3439539351, - 714808999, - 1323009847, - 518574987, - 3289945685, - 3333900732, - 3309199777, - 1941886201, - 337229364, - 1909448954, - 746437578, - 3226803774, - 3327840265, - 63274860, - 3307066231, - 2902401889, - 753465020, - 3322016803, - 39839978, - 2559281742, - 3385067943, - 28427727, - 3410894199, - 1328291191, - 911760128, - 18060782, - 3150764702, - 3277957106, - 3289964234, - 3322229030, - 3315969398, - 1377870192, - 1200309318, - 364580402, - 69423648, - 14848127, - 3368750837, - 343820722, - 28848544, - 269498956, - 3064868338, - 381262722, - 3316331179, - 26111690, - 1957664515, - 3182784189, - 1716930092, - 216564864, - 2468109192, - 417957444, - 885336188, - 3308911941, - 3298769402, - 258270134, - 3430549941, - 274086239, - 120062208, - 3038427494, - 3296081103, - 137996439, - 17237614, - 3319477788, - 3303924961, - 3430731333, - 3426654850, - 3319342304, - 2744920447, - 115521188, - 14847496, - 22720309, - 553016365, - 2801090275, - 244715270, - 2800397977, - 89843464, - 3314471551, - 156968876, - 3358491778, - 409343201, - 174037078, - 353549762, - 3318821160, - 2239637844, - 7273952, - 440519278, - 497492256, - 3279129193, - 58017020, - 24588399, - 20085452, - 3423477340, - 2550343301, - 52423876, - 340499950, - 655343, - 3305997908, - 1389147930, - 3305938715, - 2888713287, - 2306149431, - 3031506514, - 3318200898, - 3395009895, - 727530661, - 3225594631, - 3428995648, - 475445113, - 351337636, - 2752220550, - 303554014, - 381027793, - 3304819610, - 3427847644, - 3286210416, - 118235929, - 155997496, - 14079324, - 3314473610, - 15103056, - 2324681347, - 3312747140, - 3115714225, - 2897238137, - 91530572, - 2268490213, - 29872754, - 143450188, - 277202417, - 142030358, - 1653641683, - 2492143571, - 3421399661, - 3339022257, - 395270674, - 606142563, - 3300636247, - 3315786823, - 3031769337, - 10702362, - 3171862198, - 3424410670, - 362426662, - 2824785955, - 24297310, - 3416372932, - 3195428898, - 188668186, - 23460980, - 3244875996, - 3082784877, - 18187030, - 434318356, - 3075626109, - 2890346000, - 23540681, - 1901085492, - 274612235, - 863378442, - 282080592, - 354852855, - 517783594, - 168165670, - 1593796604, - 2591632782, - 2874298913, - 2957952996, - 2835811651, - 161521494, - 558132339, - 14793299, - 85209075, - 3397245477, - 2974380082, - 19916529, - 304393517, - 3146768724, - 134313598, - 1912157732, - 21439101, - 3314001782, - 24757163, - 240402090, - 3381144622, - 2752716881, - 1606602836, - 535472056, - 401291759, - 3291553094, - 122194244, - 2257173902, - 2053491, - 9642462, - 2335984431, - 1053840037, - 314730239, - 2908748863, - 3308525460, - 3312475110, - 1921725680, - 179075503, - 3128325357, - 2846754875, - 99886979, - 875918448, - 103203138, - 3131242228, - 123004655, - 49480727, - 383982906, - 24656052, - 1409080304, - 2429705149, - 222523970, - 1404913814, - 3217244710, - 3405837489, - 3286572806, - 1205985991, - 303530347, - 1469990245, - 575432389, - 1130760643, - 3310658641, - 301988206, - 28293478, - 136455083, - 2810138270, - 2386424731, - 3410580346, - 131230732, - 3310218576, - 835995246, - 291765653, - 944951768, - 3069309878, - 3309664286, - 3407507807, - 20641176, - 485775165, - 726399254, - 287455470, - 236383731, - 2331411, - 2909508270, - 15434198, - 3158294575, - 17948233, - 28490110, - 158475249, - 122702609, - 91858645, - 1924459776, - 88643929, - 1006236331, - 3304628310, - 187754202, - 24597313, - 38838094, - 223725843, - 176384740, - 296516579, - 3029943839, - 301982599, - 18885700, - 3273529406, - 20112537, - 16016841, - 1528493707, - 3028165463, - 34308371, - 414348168, - 2805546579, - 916809126, - 3307562983, - 3028431054, - 2434452659, - 91435560, - 142911384, - 3183774135, - 3371630909, - 1107777762, - 1166401940, - 2642920375, - 3316223807, - 2777344487, - 168961317, - 1480806012, - 2203879116, - 3306073742, - 1895951490, - 712506968, - 3305863213, - 437259295, - 739619514, - 3382504204, - 2624871656, - 3302852336, - 3401593403, - 2853639989, - 2261946450, - 2287131684, - 146320306, - 260532533, - 982269738, - 8201342, - 3332464419, - 131734558, - 586921790, - 118248371, - 3400856710, - 43787362, - 15889436, - 36927998, - 1050250202, - 3102244779, - 713288288, - 3304468434, - 16896081, - 3250259971, - 3272302232, - 108380750, - 1528941704, - 3169209138, - 2687038597, - 3277203235, - 3399200523, - 3378108695, - 3372463121, - 593786656, - 3302903923, - 3376616188, - 481441609, - 1599186643, - 36249266, - 3299349631, - 437782878, - 52841178, - 3214186095, - 2516925589, - 2323019857, - 459809707, - 3316892277, - 2951642036, - 53817735, - 52630243, - 18991370, - 18793562, - 187074956, - 3169369153, - 24746443, - 360938389, - 49929913, - 2580366297, - 94992855, - 2943496106, - 23278740, - 3301459650, - 355558718, - 149982849, - 3395789079, - 220506985, - 3150301794, - 2318650639, - 3284620076, - 2196260961, - 3301020727, - 3341706088, - 2595159421, - 3272826486, - 2499423463, - 1896246912, - 2599649755, - 2968084455, - 2714749314, - 3298132110, - 2847804197, - 3299304427, - 3042622645, - 3057238438, - 3193136082, - 3391957281, - 45439747, - 3299596861, - 3289994574, - 3299460614, - 97270935, - 17479969, - 3248598584, - 3119483921, - 2970486593, - 2650683564, - 2726027623, - 182440689, - 3252510788, - 140009944, - 3296467034, - 536687726, - 171992847, - 23966894, - 1702550918, - 2432705551, - 455242356, - 25568219, - 3293559848, - 2539085162, - 145660063, - 3248082276, - 521202310, - 283843182, - 15804528, - 8873982, - 2846101398, - 3093804164, - 2744624881, - 3283976587, - 896548951, - 3291270571, - 763141069, - 3332089318, - 3145313984, - 53859897, - 2960151686, - 14547465, - 414312415, - 60031250, - 3289924633, - 308389347, - 3165770244, - 3386808027, - 3286722924, - 552405856, - 2235042289, - 2320676557, - 234510851, - 34948762, - 15035834, - 39261096, - 1317845004, - 3345796229, - 1213826822, - 3273572366, - 3387478035, - 494509586, - 15429290, - 779012161, - 355830877, - 1325545832, - 1147763726, - 2918440720, - 14951174, - 3376767365, - 2831852183, - 3180968594, - 2857215332, - 3194503789, - 3386875186, - 169921725, - 771182024, - 947769733, - 3832281, - 135677157, - 2942214320, - 3058816856, - 2273887568, - 3286837051, - 2284631432, - 3386060333, - 35411817, - 3385973020, - 364832569, - 3262673221, - 8541492, - 1705820114, - 3384466587, - 976948010, - 883558274, - 81396070, - 3285786937, - 3384172924, - 235138711, - 267897978, - 39100491, - 14991273, - 550190796, - 2445932708, - 2166605965, - 80779450, - 570435144, - 63600717, - 299163027, - 16740279, - 735054794, - 174771864, - 3283922682, - 3284374022, - 298150538, - 787348237, - 169445321, - 2220487586, - 70091642, - 3283208342, - 2704770012, - 103889989, - 19019514, - 3382465048, - 3382295969, - 49932377, - 174285878, - 1063974115, - 320344665, - 1596175406, - 284972093, - 2917539951, - 106707371, - 577954867, - 2785165032, - 3282676134, - 3380925261, - 272898991, - 3327898666, - 1035577195, - 3351768233, - 46759489, - 78862565, - 2997744145, - 3024682087, - 15080878, - 594109772, - 1301589103, - 363972548, - 1682447942, - 38661513, - 19427812, - 49071958, - 82952713, - 433688733, - 2362038176, - 3261509664, - 2951101922, - 1947674420, - 93698869, - 2531028432, - 22672104, - 799747874, - 2243567878, - 3280379318, - 755829794, - 260214110, - 759973200, - 1427088757, - 3256942056, - 2842032693, - 2975607816, - 3279970303, - 44708064, - 259556727, - 132570905, - 464958008, - 2757057685, - 3355756889, - 3351592047, - 3372060351, - 3279199100, - 2814338885, - 3373948978, - 3271339932, - 1365532753, - 3191047857, - 625961613, - 3278698016, - 2478136272, - 511500579, - 86626311, - 3277945849, - 2616401366, - 2830467981, - 106000038, - 3174496635, - 339515882, - 327955629, - 3277239498, - 3190223965, - 2362227014, - 2824524332, - 140133636, - 627633389, - 325000251, - 2986708839, - 1963586598, - 3369741292, - 1089285774, - 2960602427, - 1447666710, - 1109943692, - 21355612, - 2459581782, - 3369528298, - 460939629, - 1072157983, - 3272679000, - 3275077291, - 185016428, - 48714879, - 305348232, - 3369954346, - 245261124, - 2320137277, - 1339375526, - 3368397735, - 507872067, - 3131720320, - 3365925905, - 236962918, - 2828473539, - 16063885, - 3208749275, - 3349758255, - 35921353, - 3273992754, - 615009737, - 2554476102, - 1308729907, - 381015561, - 2952558439, - 432856745, - 139709754, - 42393552, - 2858438880, - 3310188274, - 848359831, - 366551314, - 2410774122, - 2567931625, - 628558605, - 2844699165, - 3161428219, - 39859095, - 2474451, - 3306093495, - 353912153, - 2316357264, - 160273646, - 1587091896, - 3240430806, - 3091375114, - 557284498, - 2728694337, - 2899118630, - 27753893, - 575338442, - 88584204, - 2824323817, - 968695542, - 16279554, - 592286290, - 19618210, - 266545811, - 252897050, - 3346064571, - 2595323947, - 7765612, - 109572102, - 19804842, - 80247890, - 34447217, - 532689500, - 2299710372, - 21465925, - 45716828, - 58340039, - 574610510, - 41109360, - 718593078, - 12257632, - 2471905921, - 1097573617, - 2600034403, - 3341031143, - 2196931189, - 3270818598, - 13047322, - 2934129837, - 3130776262, - 2642961590, - 150965694, - 1500725676, - 874223732, - 14593763, - 217949209, - 16867831, - 15357971, - 95774357, - 2798598233, - 3188324402, - 1247462594, - 64452774, - 2419730239, - 1576113614, - 1227823958, - 850117501, - 1132143535, - 3357153478, - 213632440, - 1016285491, - 485886996, - 116239843, - 272023536, - 2617237688, - 29550233, - 2998632837, - 21647380, - 2875804937, - 160410459, - 612046207, - 2719082323, - 4315751, - 428684731, - 1370338400, - 3303305134, - 59707017, - 32488092, - 125249275, - 493754264, - 16116214, - 2614380511, - 3241172671, - 86045776, - 3180064812, - 981866658, - 121896641, - 3224535142, - 16320554, - 2598001729, - 1897677870, - 59375148, - 15210207, - 1076713596, - 22420629, - 87335301, - 3021559986, - 54795231, - 3351429592, - 1088161568, - 598728655, - 95506085, - 3260181164, - 377858959, - 27921953, - 15053256, - 2305501767, - 81167159, - 12337932, - 2184521743, - 286391720, - 47742147, - 21342836, - 3085292805, - 18583228, - 3267417439, - 37702406, - 395681883, - 214360044, - 1642524690, - 393603430, - 822644540, - 3043472039, - 262481941, - 24550930, - 35583898, - 1948727131, - 2513720226, - 199862369, - 2938889878, - 2413594758, - 3265811214, - 16556630, - 204312379, - 61451718, - 3266660534, - 3350435921, - 44129616, - 16025792, - 980354275, - 14534467, - 3350855067, - 16698673, - 2497762182, - 19331096, - 2893230967, - 485617655, - 3353764295, - 54066935, - 499261606, - 63852181, - 3355957835, - 18000132, - 121625523, - 166857011, - 36017747, - 2250064770, - 3351701422, - 14069586, - 61854086, - 3062702771, - 436242574, - 3096565135, - 306483266, - 242918894, - 15636142, - 16484129, - 2953721110, - 28036725, - 75918073, - 18705112, - 20183469, - 2538405619, - 490794284, - 2437346502, - 398703920, - 3261365112, - 577477163, - 2190644732, - 164434716, - 2415085993, - 30330146, - 2728990002, - 554381559, - 308163567, - 3352579023, - 2210688265, - 3307411900, - 2312073872, - 66799789, - 16023185, - 2364688028, - 83465839, - 577975262, - 2836035235, - 3028906441, - 1371703465, - 1105438082, - 3255067783, - 2255452332, - 3307324221, - 502008184, - 3256985378, - 2857528105, - 984172484, - 407161621, - 2384314538, - 857142840, - 3255653563, - 16564925, - 1709876940, - 2930856338, - 1231578642, - 1005461768, - 227507908, - 215310458, - 92374836, - 362880718, - 10908352, - 3257786339, - 223608627, - 2513312516, - 24881995, - 3239074594, - 160444680, - 2568853129, - 17119070, - 127900149, - 372957107, - 15689404, - 2815046317, - 2924022467, - 1431444060, - 313427754, - 27820338, - 2494260060, - 19706227, - 18264627, - 20126862, - 227622672, - 68923574, - 2338959518, - 30524285, - 3300771508, - 14691215, - 18367937, - 38419396, - 272218597, - 3337432331, - 81146591, - 2748649880, - 2889527401, - 3246335646, - 3260517488, - 86391039, - 238374731, - 2994713500, - 2881829733, - 2859229134, - 354694878, - 197015024, - 3034532050, - 3238216489, - 860099634, - 375270752, - 3127759705, - 3011001845, - 3349159528, - 22360127, - 2764354965, - 860939377, - 3345746367, - 2680160995, - 2809627904, - 3347284929, - 1095102535, - 353846241, - 238628020, - 268930683, - 707098314, - 18271834, - 3346576763, - 113415817, - 62681698, - 1597220887, - 3255450739, - 1851849318, - 514985532, - 67580602, - 3246059330, - 3253372555, - 327017284, - 2852936548, - 32686814, - 3243562110, - 2539511884, - 2427246170, - 2933213332, - 1022110370, - 2904717305, - 326150402, - 3345032997, - 37482414, - 1459090969, - 3322617651, - 3245375338, - 3339211527, - 3185597596, - 3254152926, - 217307457, - 3240437032, - 44655493, - 15241682, - 1656574369, - 202734022, - 335092316, - 575828962, - 2756364385, - 18643839, - 2359679432, - 2853475981, - 3253285748, - 28757835, - 3013627236, - 3253112430, - 2945404092, - 18799221, - 3215719555, - 1024447620, - 109703314, - 72839849, - 2988830614, - 3107576540, - 14437490, - 3243769148, - 54319648, - 22534061, - 3239663143, - 2840161578, - 3252350210, - 3237723946, - 2963359867, - 3252192158, - 2725580095, - 959865852, - 2868264331, - 107681061, - 2796904921, - 3199745092, - 317353416, - 3339455417, - 823083, - 432890325, - 1476424110, - 164133028, - 3104556721, - 3250987609, - 1437171158, - 3190790843, - 2822033194, - 3008882862, - 18357890, - 2409592351, - 3250324549, - 3001572283, - 553364235, - 3237112696, - 8424962, - 3334025308, - 85118174, - 2261891654, - 3111666304, - 3325860057, - 2283223800, - 17755033, - 105712056, - 3214481295, - 22516489, - 2418114211, - 3319161028, - 2151145357, - 157415973, - 358773756, - 1538249185, - 21777512, - 2362036330, - 3247381416, - 3145621950, - 88116883, - 20534920, - 21879667, - 34200848, - 2152315988, - 3233966865, - 466233156, - 3234535122, - 3247677145, - 905628074, - 3247545170, - 3330696251, - 3247417052, - 3246689502, - 3081788372, - 2319934141, - 2513341416, - 2526655772, - 2929128469, - 1967510760, - 587688630, - 19563661, - 90818494, - 3033105576, - 3185481199, - 353767859, - 2946684410, - 21264477, - 3327753267, - 2269433623, - 2502073531, - 40892332, - 23412075, - 15588148, - 2685439243, - 38566617, - 3327326013, - 358588432, - 15730546, - 2874675970, - 3033659120, - 2964589058, - 3245692182, - 67929970, - 3236549348, - 363908101, - 2978586790, - 2735775078, - 361715888, - 3245477473, - 18759030, - 3134819644, - 3238799333, - 312957029, - 3065538900, - 3245141227, - 95268340, - 30688200, - 481807083, - 1527419708, - 58583995, - 19695390, - 40555720, - 62438818, - 3322995268, - 3061871083, - 2996226884, - 3239254658, - 1447131048, - 301966760, - 1086273794, - 115830646, - 17846938, - 18898059, - 2264785920, - 2313359125, - 1547537527, - 2766850329, - 35050392, - 2816188274, - 402003559, - 95998135, - 1007568013, - 911729426, - 635800596, - 347255327, - 1605694058, - 3225655442, - 74214728, - 3241664568, - 3149332332, - 3313112985, - 2956721094, - 3241761282, - 3016206471, - 105964973, - 3227238596, - 1633409803, - 3184725139, - 1464657728, - 2730240600, - 46646975, - 22413496, - 15903764, - 2502679495, - 14912780, - 607005973, - 1027656631, - 312949611, - 238400395, - 3103382031, - 17810599, - 338984937, - 259622537, - 2434135663, - 45689135, - 2886305915, - 738246144, - 3225007573, - 2577154098, - 3302786535, - 3298384065, - 1617787723, - 523437541, - 3293760635, - 3179499186, - 3312312057, - 2887105303, - 1653806952, - 2882434989, - 2267422392, - 351239198, - 3233732947, - 3172191942, - 86485331, - 2986555135, - 344908429, - 3308027349, - 3236793662, - 26210327, - 563988748, - 525593300, - 3308580640, - 3308563875, - 3301927264, - 2457829333, - 3180878670, - 3305543375, - 1149152958, - 72995844, - 2901950317, - 37836873, - 3296542259, - 32323209, - 467928447, - 36388601, - 2507722194, - 399390602, - 137660115, - 2761966264, - 19093377, - 14985977, - 459300842, - 3156779970, - 3306670997, - 21224647, - 3213978617, - 464855779, - 3301814921, - 321426872, - 236151290, - 3228275492, - 3305190945, - 3102138022, - 3140353059, - 1529927882, - 174242468, - 3231040476, - 2976107329, - 3230766625, - 1183149060, - 426734017, - 2178293671, - 59075847, - 171724235, - 335378209, - 159575486, - 357165315, - 35333150, - 2851579324, - 2468106433, - 2944439114, - 3173641725, - 3244601302, - 3082579757, - 3301740899, - 3192975594, - 283118538, - 434049581, - 128241097, - 313006876, - 3243987532, - 16097968, - 83280323, - 1584209064, - 32796852, - 365995678, - 3299567818, - 1919437490, - 2396350700, - 3299186571, - 157053960, - 396804174, - 18181934, - 977482010, - 40133061, - 3194177710, - 322416416, - 236927135, - 3292910998, - 587810318, - 22390108, - 1545482136, - 262313593, - 3165362050, - 2562854758, - 3220701078, - 3295258121, - 1644495702, - 3164716322, - 962820894, - 3290434822, - 3100362021, - 3131478562, - 3190084854, - 2325661891, - 21277182, - 1945424582, - 3223151448, - 2953455831, - 1701578628, - 3187461022, - 2789557270, - 2304406394, - 1601106511, - 255833240, - 2850633596, - 2458208618, - 2569806414, - 3011648898, - 144722120, - 111814903, - 250870107, - 3222096972, - 897288235, - 906653515, - 115236840, - 2898478889, - 1896792314, - 624380946, - 3292166157, - 3075573215, - 3189578461, - 281349483, - 435681607, - 41130914, - 292647591, - 64151219, - 37902443, - 169165706, - 589415057, - 489789276, - 3190165838, - 338970982, - 3105861986, - 432883132, - 466485562, - 2864214491, - 15475093, - 1510982040, - 982199750, - 145936694, - 14112560, - 55822405, - 250615802, - 3221424348, - 597476208, - 2273944754, - 3173005842, - 22968486, - 13831932, - 3124706771, - 262430206, - 93953874, - 8814772, - 7121172, - 62570297, - 170309471, - 3131522382, - 121192244, - 185774847, - 555509314, - 558340038, - 811838826, - 512630983, - 2691452192, - 6509962, - 250301429, - 2597913918, - 403749093, - 109326320, - 261733111, - 16404954, - 430671509, - 105026655, - 21613873, - 3215184153, - 3097521417, - 2909675190, - 2916304178, - 2428381464, - 3196678604, - 1970205505, - 2725425502, - 74207319, - 104666974, - 589644210, - 1300810422, - 3256502795, - 3196038126, - 442903146, - 2586563082, - 2586738745, - 1855637845, - 352821813, - 61477734, - 3095135091, - 2883612317, - 2764437502, - 2324210480, - 1149200671, - 365556336, - 22066285, - 2284453291, - 42120085, - 14599464, - 160472662, - 2770640132, - 3068576178, - 1336915111, - 65101536, - 2178309389, - 2848258175, - 19546533, - 2542121732, - 2786035352, - 178600543, - 172786912, - 3128264047, - 2883834152, - 19319041, - 3246622978, - 419883987, - 567238746, - 2905325318, - 566413110, - 2836769552, - 102961087, - 19957803, - 3188584015, - 3067124294, - 407408314, - 106757359, - 2949602146, - 3190912752, - 3190209810, - 480616240, - 1044020509, - 3020188513, - 1236499550, - 1314484064, - 2993454701, - 3236006866, - 2712110611, - 3075715063, - 2601482131, - 2545115569, - 11353012, - 1414745010, - 153440886, - 2613923132, - 22883486, - 3144530475, - 227533034, - 15825051, - 2990366584, - 38686935, - 2371604544, - 3186905755, - 14994538, - 3188337984, - 3215404887, - 474614008, - 2209986403, - 1697695572, - 2230674883, - 41525047, - 3188045419, - 1417843328, - 80704927, - 2829919833, - 1375678100, - 56141616, - 2943265556, - 50922107, - 65083125, - 2212879538, - 1669431445, - 3123347304, - 16652840, - 3024743784, - 3008032768, - 3140568331, - 25078382, - 3233850171, - 93908411, - 594238836, - 2981295157, - 2434989762, - 492018105, - 3097205309, - 96997907, - 304415259, - 3184293462, - 3236446413, - 3198647505, - 1170636272, - 2178209244, - 18757698, - 1624317169, - 99401071, - 1599023744, - 3184813890, - 1363667336, - 17829450, - 480772976, - 14278166, - 522674330, - 138944368, - 501177938, - 292632884, - 3133131439, - 2705683456, - 23548153, - 387437294, - 3183575684, - 3067249087, - 25678101, - 2788529930, - 3054125730, - 79024237, - 2877780882, - 3157452171, - 28850179, - 3041485667, - 117205846, - 3183300739, - 3144061905, - 1335835988, - 598428888, - 23852365, - 2686756278, - 3182392368, - 2259380738, - 2916145740, - 79812508, - 3024371774, - 3038645847, - 131055288, - 2506181892, - 1536927582, - 2547597109, - 3165851298, - 3221197768, - 2575665288, - 22126132, - 2956848004, - 19927012, - 2253567374, - 3206610670, - 1333967101, - 1550706396, - 2317389050, - 2568005624, - 1949899056, - 80604718, - 1541999472, - 3222850419, - 3217556374, - 2766864274, - 1887144066, - 1296752732, - 1301668658, - 1261518816, - 74396421, - 17221069, - 177691724, - 3071950258, - 717863434, - 3222822291, - 491092473, - 2840042433, - 946759669, - 3079207491, - 49323198, - 2544240657, - 313019411, - 40032501, - 2646824598, - 117384592, - 709681428, - 1541363042, - 2550461, - 3131650432, - 143470981, - 1133432454, - 3076240625, - 2581882811, - 215508074, - 2276660323, - 500627340, - 766585207, - 132122597, - 50101938, - 227522647, - 3091910360, - 611367409, - 3178737074, - 84463170, - 408980974, - 18069493, - 3165477711, - 2364630716, - 3214005593, - 341878033, - 139318070, - 226580814, - 3202223609, - 51234276, - 3214680484, - 2839556749, - 178647381, - 1207844718, - 94097711, - 2406669248, - 457782574, - 3031707882, - 3215405032, - 14956673, - 3146995371, - 3153341662, - 2661473540, - 1409082878, - 3017826134, - 1616328637, - 747221318, - 387289803, - 136015731, - 222640532, - 3214564197, - 797494844, - 2495315190, - 3003937365, - 539183579, - 3167446037, - 428019663, - 3172602823, - 857101418, - 2374097150, - 206473078, - 2950404028, - 231324724, - 1343085360, - 66495983, - 2167961131, - 409955666, - 725050728, - 15491617, - 2999206501, - 425231971, - 3047956549, - 43330582, - 353815489, - 2526292262, - 2876051989, - 3171102157, - 72260306, - 2429120304, - 3016148261, - 2272601586, - 121272353, - 1403331493, - 230058524, - 3177113779, - 2223678331, - 1006824656, - 1307811860, - 1475043919, - 1668813720, - 36193296, - 2840675128, - 477366528, - 362075138, - 3176818386, - 2749016171, - 3206709616, - 375016975, - 3200002061, - 69543723, - 112296216, - 2380336015, - 34976135, - 16550479, - 186380643, - 84790065, - 3159404964, - 2356099343, - 3174072806, - 146549981, - 2486635696, - 3042334859, - 21263663, - 2620171801, - 518155565, - 110124029, - 30478680, - 956473652, - 3037272323, - 431208467, - 121236961, - 2359690340, - 3206726619, - 583032066, - 39182801, - 2244229741, - 1594160412, - 1654288080, - 3137883791, - 19039364, - 1523498875, - 568335266, - 2867838403, - 154737265, - 2890600383, - 3140246180, - 3169411357, - 2360785622, - 2997355818, - 3132009213, - 256101145, - 2742734944, - 16588146, - 2950595911, - 3055733449, - 2430898916, - 2503972172, - 2479789123, - 416350692, - 1123568917, - 2959530058, - 2740443233, - 2163543109, - 65676207, - 35438418, - 2647320482, - 27047046, - 455443919, - 72702982, - 3132119451, - 2993812955, - 223139140, - 113612361, - 3014549505, - 3166558935, - 2831642817, - 1687006165, - 546522336, - 1209878948, - 2599106970, - 3051252028, - 2892498677, - 56827390, - 2820618296, - 2716196783, - 1684695840, - 3167385148, - 3152874905, - 25870447, - 113545967, - 94193981, - 21479387, - 3097996089, - 484363981, - 3167868614, - 2716275637, - 2700223022, - 2642111522, - 1421278159, - 1273036970, - 3146480946, - 2905783174, - 3048889093, - 1355370450, - 2182410768, - 3000425125, - 3128243567, - 2961836124, - 1062109706, - 2442565262, - 493208195, - 1554490128, - 2367772716, - 2564493385, - 2269914306, - 222147945, - 2255590554, - 2935686976, - 3007630549, - 33117104, - 20746042, - 1328232668, - 1868380964, - 3162705050, - 2612833488, - 2429216377, - 84502202, - 2246935516, - 3163359614, - 2755661198, - 359453148, - 1866243193, - 42892455, - 2779204951, - 14280445, - 188111438, - 20030284, - 1465232090, - 33936754, - 428785682, - 16358915, - 189073580, - 213084190, - 7384432, - 248333324, - 2852275849, - 958301280, - 228999222, - 858845101, - 123772867, - 2888748213, - 2935384154, - 177748749, - 336136926, - 1037506758, - 1479051396, - 75370828, - 42872176, - 138160300, - 15471323, - 749528521, - 3103451277, - 12197032, - 1548, - 2454714289, - 15210566, - 2328969528, - 2256545870, - 3167851237, - 2382510938, - 3052331608, - 3091492841, - 228699219, - 1018438202, - 162489917, - 2686057201, - 1012460306, - 1544296339, - 2842811598, - 1714352198, - 2788656494, - 10720262, - 195694617, - 267613720, - 243357143, - 21107808, - 1669289102, - 1149276822, - 599783125, - 195450477, - 98795912, - 1142941, - 428597389, - 214113720, - 575322296, - 1122037838, - 16932848, - 654033, - 1324125072, - 3008597084, - 77007853, - 3094365867, - 138985711, - 2956446878, - 2762664990, - 21662285, - 18271227, - 337343337, - 3158983618, - 3163284924, - 490112926, - 1264512061, - 164480014, - 2684660945, - 271652717, - 2739099484, - 2307815046, - 98643448, - 3111912045, - 1473794754, - 117634732, - 115490460, - 2922642131, - 14947998, - 3121276863, - 1613145114, - 25857532, - 1286270364, - 2454651108, - 2991312649, - 15337822, - 113137845, - 3139666643, - 21282007, - 302510445, - 60398610, - 3172514794, - 234745046, - 16602174, - 3158726798, - 59453, - 3138243762, - 2741011245, - 88078431, - 919860212, - 1345426651, - 3065913111, - 2967033270, - 16118599, - 3130784013, - 1588334714, - 100815003, - 3156992629, - 3166875833, - 15079071, - 2522427001, - 3167504357, - 16257100, - 1338, - 3167196353, - 1582479492, - 3094981977, - 22698147, - 1475900005, - 422271033, - 3154454110, - 2641077269, - 366790687, - 36811683, - 23795212, - 24004250, - 2978645906, - 12497852, - 1284907730, - 2852615224, - 3121273893, - 396174375, - 3148898977, - 189863792, - 460171717, - 3093724378, - 16612625, - 858945828, - 81957794, - 1411851301, - 19330360, - 2397051, - 11167452, - 3152245658, - 612147421, - 371943335, - 1441319364, - 3063465922, - 289623618, - 558195608, - 2563970689, - 1431856261, - 3150614791, - 16303721, - 2462379295, - 3097113646, - 1342428037, - 3140018329, - 50322606, - 49643884, - 410141708, - 18057073, - 14296230, - 369024196, - 2978394842, - 840566990, - 67862101, - 943403953, - 968908266, - 2458188217, - 2467757102, - 3146761249, - 2986685337, - 256838241, - 1434640532, - 2722319774, - 3071743440, - 623216509, - 2826488523, - 2734271179, - 419096260, - 509468825, - 4452951, - 235322591, - 2923039453, - 76138951, - 3141945498, - 3150030538, - 63040962, - 52965396, - 3145999763, - 3145389655, - 2607571670, - 247883817, - 2553458418, - 18245240, - 3099322280, - 1346772768, - 2401879252, - 1490908590, - 2616901068, - 3036973742, - 3146530204, - 585255303, - 3142373253, - 3116207098, - 3003843885, - 30815935, - 3145318863, - 192118974, - 36271314, - 3144412791, - 1433524266, - 3027154198, - 2395377457, - 2843077018, - 2678132030, - 155297045, - 1952500026, - 17359469, - 3081856281, - 2701699687, - 3141040442, - 606830085, - 1216039668, - 2901766488, - 3140188484, - 2922566012, - 3021500090, - 1018743871, - 3139447416, - 2970506717, - 16806082, - 2910237449, - 2590812845, - 2921413957, - 3138735308, - 166196521, - 3132255753, - 3131989617, - 3090357903, - 103895441, - 62409978, - 3069041375, - 3133683480, - 3136507291, - 10782302, - 2413051692, - 2353102435, - 2943835678, - 2432716717, - 212402696, - 2871243543, - 22039951, - 3023990357, - 19037995, - 3124080193, - 47546250, - 2560181622, - 2490165774, - 730697882, - 3128375930, - 2349773397, - 23154120, - 2549452651, - 3122530172, - 293552084, - 3120792492, - 3091754600, - 3040808986, - 2627502202, - 3007775843, - 3127943699, - 3114227965, - 292968867, - 2778436806, - 99098809, - 2790456825, - 3102226902, - 2873087403, - 1485136909, - 2680134386, - 2817767214, - 3124252893, - 2575580646, - 3115972511, - 3121668226, - 3123749283, - 15337043, - 436232102, - 3074018182, - 3110488591, - 2940010649, - 409317907, - 2899676241, - 2983567593, - 3101631014, - 3013236705, - 2791987829, - 14787758, - 3117943696, - 3108032647, - 1157537990, - 52940530, - 2990811945, - 3111634373, - 438042120, - 2548914955, - 316726497, - 2482768232, - 2441873774, - 2912831846, - 3113339386, - 240097368, - 713188470, - 3111730840, - 577816945, - 387393173, - 403478532, - 1880811698, - 3104620165, - 2725644713, - 3066038804, - 15771803, - 450925511, - 232343915, - 3105723157, - 527906735, - 2246593410, - 3105502068, - 1320445610, - 249521627, - 2558023961, - 3108105911, - 3108077519, - 3089116917, - 3105074670, - 1511167219, - 243768472, - 3104164838, - 2968299131, - 144839982, - 70776300, - 148467183, - 317290373, - 3094553691, - 2953930344, - 454526996, - 807554857, - 2723102317, - 3102412711, - 3064994626, - 3102133496, - 3102083419, - 3101868534, - 2996344310, - 2563813867, - 2954853941, - 138554028, - 2381410628, - 1326101118, - 2175411, - 14538254, - 64931648, - 3099716202, - 489467252, - 3099122612, - 2371511455, - 16249572, - 56841094, - 1544210982, - 718849764, - 3097041159, - 2903971578, - 3091619602, - 3087262996, - 3071789099, - 197002497, - 2893925350, - 110600813, - 2374667906, - 2818018806, - 2907094071, - 3074676677, - 2573733108, - 1393208810, - 3095468882, - 3090851792, - 2953048902, - 2460565754, - 533934037, - 125686756, - 2940496570, - 2925851773, - 3092223469, - 2166415653, - 244816716, - 235661181, - 118221781, - 3094025292, - 131115490, - 14278028, - 2466167241, - 3064395437, - 1499053189, - 46836633, - 2850831579, - 703993267, - 2871336995, - 2923922416, - 43136911, - 3067827197, - 1047118074, - 3087841638, - 3088454877, - 14369429, - 2864388993, - 2976567862, - 61949043, - 3092077847, - 3091364296, - 926181458, - 2967916913, - 1337386772, - 30256536, - 1684496310, - 2991005590, - 14770441, - 633268483, - 3073480601, - 3082917169, - 3082789640, - 2524130481, - 3031892218, - 3024294709, - 978575058, - 3080891262, - 253309951, - 3051624396, - 33438091, - 419575518, - 720901351, - 707400252, - 2281210542, - 3090928078, - 18280197, - 3090559264, - 1852295060, - 3077094749, - 3089658064, - 440327243, - 602647514, - 3064061458, - 2986261310, - 3074535662, - 89856868, - 199757437, - 3070425020, - 15128026, - 2842564587, - 151532418, - 18937385, - 3082529673, - 110010294, - 3086767089, - 19372840, - 3072059444, - 3064853295, - 2600762910, - 588921911, - 62881185, - 2405061163, - 364458634, - 2837917726, - 1078369069, - 3046723148, - 34727374, - 2564978768, - 20490915, - 1950062431, - 209602032, - 874352437, - 2419971998, - 61236326, - 204447420, - 1475118602, - 3070734450, - 1120182492, - 3070688857, - 465924787, - 279743016, - 494476765, - 188515523, - 214747825, - 786146030, - 26097308, - 154782527, - 1838207400, - 3076380443, - 364467351, - 2327370235, - 2829942930, - 3063631369, - 24890901, - 2928739911, - 6035242, - 3051992092, - 2959220897, - 2965071502, - 2541112338, - 2603637553, - 375499570, - 365808698, - 3067618843, - 16917828, - 16549116, - 1908723582, - 123171039, - 29838664, - 1268642450, - 3077634808, - 1448738011, - 151519583, - 153873016, - 2877151045, - 25620672, - 179216418, - 3077609081, - 56464362, - 3067130754, - 2395312946, - 260243995, - 98740604, - 930119893, - 259357029, - 29236701, - 1254605904, - 3065786227, - 22022646, - 365480435, - 2274864804, - 15379505, - 1623441578, - 20300104, - 18012679, - 2963673784, - 2413359380, - 141909875, - 962152818, - 45318494, - 2190757965, - 166079658, - 18599061, - 17809147, - 2912272722, - 220543503, - 88324836, - 2961597096, - 2835413265, - 26091976, - 8902822, - 2569144296, - 285668841, - 3063671618, - 3023992703, - 17414602, - 1378344534, - 18139106, - 3062140718, - 2577335454, - 19562939, - 104939913, - 3020204629, - 3006306913, - 3052155451, - 2897974370, - 1017391, - 44531639, - 2808223189, - 741803, - 12242992, - 2584339548, - 59163264, - 2493238668, - 928261158, - 998289805, - 190528043, - 113517282, - 2586514873, - 260560686, - 15947348, - 814112882, - 3066906051, - 16955235, - 14183691, - 34881385, - 20340969, - 17383191, - 1311781, - 169271629, - 3033838690, - 150223958, - 2722197956, - 3021842372, - 1961849978, - 232526563, - 3034865567, - 3068301502, - 1097146207, - 1058267378, - 2816680539, - 3067980917, - 138848486, - 1148933802, - 348881538, - 2271443084, - 46616450, - 14486302, - 465299654, - 2212979137, - 3058916077, - 135180509, - 463242799, - 465666054, - 2352187789, - 49141886, - 1350648744, - 2548713044, - 3052256568, - 2837292587, - 3051416599, - 3065972423, - 18739136, - 3050498972, - 3054162660, - 1343487019, - 330666522, - 2954181649, - 55977032, - 792972950, - 3050520096, - 2899705624, - 2914805632, - 371878922, - 3051047394, - 2269487202, - 3050593448, - 3045369360, - 3043022430, - 3049901022, - 2936848783, - 3041957486, - 2953654147, - 380939116, - 3048353695, - 312465809, - 549194825, - 3064567643, - 1133465862, - 970548092, - 290075064, - 563306003, - 3017427090, - 288443185, - 3041033221, - 152645752, - 97024311, - 15229103, - 74464449, - 200541524, - 3044139079, - 15486045, - 1319391535, - 3063873989, - 2889674833, - 315480872, - 385460221, - 3042583122, - 273278007, - 201170181, - 2650397840, - 2670100943, - 2363376738, - 239516694, - 767601, - 3040850361, - 3063656511, - 2228749231, - 19135683, - 3057746613, - 2484464748, - 3063502245, - 48487459, - 2895943573, - 18384775, - 899973054, - 16974016, - 2477583762, - 64637158, - 3004942932, - 46722097, - 2993171991, - 164666005, - 20062445, - 2892995213, - 2850414126, - 3007009995, - 1739662693, - 1055902411, - 2393670932, - 2881585790, - 3060577595, - 212071153, - 179207761, - 2817474227, - 1887816680, - 3033902459, - 2459709067, - 3033592380, - 14802930, - 314870554, - 3003639310, - 2221726944, - 23588706, - 837253260, - 480819256, - 15823261, - 3021666700, - 67266462, - 78641738, - 30957246, - 18339415, - 179554090, - 1323909265, - 334981900, - 1414340473, - 2915347147, - 2803994674, - 2667785204, - 2944281498, - 490135056, - 2720227921, - 2958423142, - 3051211354, - 2708160180, - 710941094, - 3054478619, - 2831756289, - 185449401, - 233636404, - 19059099, - 1602678319, - 156312872, - 529763094, - 582866423, - 29674668, - 164087675, - 15785117, - 66632933, - 2375498185, - 43141013, - 158170794, - 1406402520, - 12190922, - 517116581, - 1533659756, - 2955413144, - 2803953815, - 2837991784, - 425408294, - 3008191662, - 97261539, - 1357983050, - 2291600264, - 160378207, - 82265241, - 32667201, - 146439288, - 1726973593, - 3052495917, - 24916457, - 38995726, - 17333873, - 2197760688, - 1450245192, - 2793829429, - 2954126636, - 929000096, - 3051216982, - 2565135330, - 409867957, - 1393391864, - 185411782, - 2763990895, - 90062469, - 2430956005, - 3006410579, - 51142608, - 262799867, - 2850027043, - 106850629, - 2988849203, - 2547033986, - 28185061, - 3048251224, - 2552723874, - 2823171471, - 378762532, - 2506434647, - 1686618164, - 270141194, - 28021500, - 22289021, - 21464701, - 389441364, - 2758180931, - 86071272, - 2339083611, - 48431982, - 281900168, - 3032252437, - 19083080, - 3000323626, - 2360507084, - 2154091303, - 2840845885, - 54371309, - 3032022014, - 17263516, - 2472945536, - 2289800436, - 3018273489, - 363433362, - 14329453, - 450183164, - 355642356, - 43007631, - 2900987816, - 242781810, - 1198124370, - 9905392, - 95940032, - 1602084096, - 2343065768, - 1895620278, - 3027919842, - 581395282, - 132584441, - 708104846, - 3006826174, - 2643045485, - 17604527, - 82098218, - 1038179306, - 566923022, - 2712682024, - 23689114, - 2837444800, - 3027849549, - 617594220, - 223113283, - 1271178092, - 584446504, - 12332172, - 2547906456, - 1324026548, - 80976488, - 23532047, - 2714226648, - 1372125216, - 377136252, - 458107439, - 119107586, - 57855509, - 1117851662, - 15188343, - 16597629, - 16671797, - 3030793023, - 20524971, - 2288926339, - 14982534, - 35329667, - 172215008, - 610177189, - 175656011, - 77038925, - 2532362760, - 3007139824, - 2597259224, - 535688170, - 629253125, - 2978150098, - 280383548, - 13384772, - 1358706056, - 5204051, - 2476351789, - 14662889, - 53700646, - 88326317, - 17551598, - 370827550, - 2860896641, - 2950659885, - 26484919, - 948689238, - 112867690, - 96100344, - 2392119403, - 27390107, - 248044499, - 3002952574, - 300735398, - 77690219, - 2919531335, - 198781495, - 2196637298, - 19245182, - 784167103, - 369763626, - 282882688, - 2812147764, - 3006650189, - 265852050, - 3040489648, - 2447798646, - 2342845502, - 2646387236, - 2386468730, - 152466242, - 2263605398, - 14565150, - 506865052, - 38521391, - 369095113, - 1598986099, - 99749955, - 621498278, - 23423813, - 114584062, - 47481589, - 3027986516, - 1523544182, - 258083321, - 1261281055, - 1446762756, - 1463323254, - 2969321529, - 21612322, - 721346978, - 215060612, - 122228114, - 462664693, - 17527237, - 254678131, - 471967587, - 2985118486, - 411980447, - 137407346, - 614867166, - 2996029682, - 75904944, - 348652475, - 2786170028, - 31325937, - 1031033948, - 468463894, - 22966172, - 38175716, - 268920669, - 1254787980, - 2804508995, - 93679951, - 24507955, - 1159371324, - 1648978027, - 246434933, - 495417551, - 40358283, - 576603009, - 404152702, - 2787813197, - 2814250020, - 211400182, - 889618016, - 882574904, - 19512637, - 146454077, - 107382485, - 19581801, - 15413624, - 142179252, - 40920400, - 940777694, - 3010096394, - 38330999, - 47533454, - 1643373330, - 3010139523, - 477401625, - 2969200456, - 15907431, - 69108987, - 2650032241, - 1968043243, - 615614236, - 1334865018, - 93869364, - 366011411, - 1625873077, - 2800137077, - 611996676, - 39458284, - 2711050508, - 571087457, - 102540229, - 1072526839, - 232606584, - 28288779, - 95508085, - 167010482, - 529096338, - 3040795979, - 14256082, - 328040695, - 1340670000, - 116511302, - 308245930, - 36813364, - 2798898786, - 2614272462, - 535503968, - 2886416602, - 29125497, - 173571374, - 83191847, - 1478486520, - 3024779072, - 3015782116, - 2982130845, - 1397511998, - 69749329, - 2349494888, - 34354034, - 2758869458, - 2836373728, - 2809811292, - 3043147589, - 1827606775, - 522834247, - 3019219778, - 1653424244, - 31067157, - 3012862405, - 701240792, - 2728189940, - 33715192, - 26336530, - 64777360, - 1361211042, - 24142636, - 956355686, - 634015881, - 1687280372, - 19454670, - 2934079978, - 1014435343, - 2572643324, - 3021299634, - 1408989498, - 2556607278, - 174633648, - 3023265958, - 562183942, - 2458759143, - 3030959541, - 1499757510, - 326962578, - 2867000033, - 69254737, - 2782610961, - 2995340558, - 2865049809, - 3022350922, - 2612152237, - 2736285390, - 2670804554, - 2987843403, - 1631936376, - 1119908282, - 34311257, - 2989590685, - 3031700573, - 442182368, - 2961694548, - 439081280, - 3013634347, - 1275984139, - 2462536272, - 15939396, - 2943165539, - 2738081451, - 14164956, - 2794160545, - 2993518411, - 3019138690, - 2794926943, - 14705046, - 2935508773, - 208037782, - 3002558292, - 2560716374, - 3015942662, - 30324850, - 23769809, - 604092603, - 2456816503, - 509971567, - 3015682417, - 2724615798, - 208776798, - 14998719, - 496973075, - 3004264907, - 28589514, - 26691036, - 2944826777, - 3006450952, - 2792749508, - 3012321150, - 44334649, - 14164879, - 359230030, - 155369800, - 287806806, - 3022317123, - 202479255, - 2889797241, - 11167502, - 2249103860, - 35626322, - 12447, - 3021712811, - 224320706, - 80395090, - 345838923, - 3021743590, - 85611344, - 383368482, - 53167706, - 3010794308, - 3020802449, - 3010710829, - 133413084, - 3020764126, - 3020109544, - 956111006, - 3010113528, - 256022044, - 2992448810, - 1240171406, - 2754429607, - 1665595472, - 1735436820, - 3017692845, - 2155402628, - 39617828, - 2757400642, - 581130347, - 1643961090, - 86459685, - 3009123115, - 2939025434, - 182982451, - 2260150651, - 222451771, - 595751915, - 16484237, - 186528548, - 564577122, - 259663057, - 53426543, - 1660200776, - 3009091180, - 40570637, - 392027733, - 515836591, - 738327488, - 199516833, - 2939034032, - 103228300, - 3005814796, - 26971593, - 2298841976, - 1922290662, - 430933440, - 3005809732, - 3002881953, - 1408816082, - 488867199, - 14150266, - 34838035, - 16023917, - 2990632973, - 6114752, - 2986324961, - 2960155128, - 19330885, - 2391596978, - 2873992840, - 593718505, - 2819572566, - 237961072, - 2596785458, - 24866692, - 2676345858, - 1517465449, - 36610871, - 43195617, - 2606542124, - 57564151, - 79337995, - 2996456924, - 2289744703, - 387661922, - 1435050403, - 1959690278, - 1286650447, - 2998335334, - 293097225, - 816556332, - 2996581487, - 2970798871, - 1553678094, - 2393425532, - 45983335, - 2556667683, - 2651506974, - 205781124, - 2994231899, - 1487778554, - 436678031, - 57906313, - 37209055, - 2910498594, - 14294400, - 312351978, - 43631584, - 1152887268, - 395086595, - 188509332, - 1701179917, - 832941643, - 89000394, - 2555180840, - 121558226, - 1171157898, - 323549358, - 433839629, - 110692972, - 54189641, - 16423304, - 2357582977, - 50339969, - 2981338268, - 2773892956, - 14599972, - 2990222283, - 2988973109, - 2272820146, - 2989425694, - 2965824167, - 17425484, - 2985758338, - 2925751215, - 58400103, - 2705321185, - 2972374749, - 422942628, - 18733267, - 23817639, - 2980770683, - 2990857909, - 1923650426, - 2986511476, - 216914014, - 1035532890, - 1978392914, - 11221692, - 2989318262, - 6247782, - 24822590, - 580290725, - 315570064, - 2989208024, - 2481216923, - 2988318554, - 29411194, - 42276382, - 2482368360, - 2986955324, - 53417974, - 105043054, - 554719435, - 1637225107, - 62941903, - 2849857866, - 2481381966, - 14692715, - 382752824, - 14124633, - 41490245, - 335979245, - 108357781, - 94909995, - 40544415, - 2902169746, - 953104518, - 1171543506, - 2481214656, - 2985187190, - 760812505, - 415872640, - 139859050, - 129129249, - 4197051, - 1533172538, - 1928818741, - 2984788850, - 286081923, - 2977280841, - 26155415, - 2979015929, - 21613572, - 116082757, - 322134747, - 77762266, - 263875085, - 18878094, - 43332590, - 31016565, - 824537742, - 2296127379, - 22650377, - 1259693402, - 2834535063, - 59505363, - 2977573521, - 2885511701, - 2902356091, - 558624863, - 20214495, - 90084013, - 2436535886, - 291441060, - 206817988, - 2969824449, - 830652314, - 2975380403, - 2975227971, - 162977836, - 255990193, - 46369582, - 14648825, - 2957707267, - 24510260, - 2974805226, - 2386885062, - 2893017577, - 61216275, - 2181479340, - 2278765579, - 28086540, - 16977592, - 28100891, - 2245700880, - 257712756, - 27500545, - 2967670954, - 1296831523, - 21069606, - 15484541, - 2966726656, - 2942939553, - 2967418106, - 2647168484, - 185744472, - 812936059, - 2829638396, - 179165117, - 49889388, - 59736969, - 21278996, - 2963278302, - 174556429, - 34349331, - 23307970, - 2569418859, - 2962224253, - 234946102, - 31377922, - 2959096116, - 217390719, - 2194760538, - 14380294, - 2965190535, - 2427174140, - 46409086, - 2874936701, - 2868133069, - 202488410, - 2787392695, - 358324317, - 230413321, - 20115641, - 314750546, - 18118882, - 391938908, - 2213073366, - 52208319, - 2162524706, - 18845327, - 105242637, - 325567664, - 67011238, - 11355782, - 1244498426, - 2921855569, - 997740158, - 81200968, - 25599299, - 289717025, - 2847581846, - 2951558246, - 448498518, - 63106785, - 619194730, - 23483965, - 32831158, - 14928483, - 14254849, - 2958381895, - 82120228, - 537862811, - 274149738, - 2961321723, - 2475639841, - 23301743, - 1609182792, - 2951011034, - 273371515, - 962935188, - 2959457505, - 2958075897, - 51490123, - 2789497513, - 14586891, - 2899558072, - 2247408678, - 1692107474, - 170827198, - 22350029, - 843014521, - 2823318152, - 2953946569, - 2950723530, - 2840757673, - 2945537393, - 2902087435, - 202783886, - 1062753084, - 2872226849, - 2867622839, - 311047358, - 173798281, - 2951343913, - 2946132311, - 466581588, - 122301045, - 2684438479, - 1382650268, - 2769045336, - 2847982212, - 1306063296, - 2933077566, - 144563794, - 2764399806, - 2559051898, - 2922416642, - 19414925, - 2175993318, - 497734237, - 175552751, - 830501202, - 1587993984, - 2910807367, - 358907918, - 2410097665, - 2890731509, - 1518371544, - 2828827319, - 276682931, - 2933190357, - 263503, - 42493859, - 35008168, - 2255606088, - 213429917, - 2521938841, - 14643310, - 2913614233, - 223351306, - 2911377796, - 1270428056, - 2774327991, - 2773195296, - 1921201098, - 88926526, - 2686073050, - 2822471817, - 21604884, - 2942276749, - 1743498001, - 2939220471, - 215433360, - 719231732, - 2377806675, - 2934291049, - 221904440, - 562627212, - 1229886517, - 2332876501, - 18576055, - 1529827615, - 1173295249, - 28373693, - 2884608064, - 1673477870, - 2935648607, - 2912327331, - 2482803527, - 111662541, - 4058321, - 2935674898, - 61243585, - 2922710571, - 2386076394, - 21632806, - 1223258106, - 1263139358, - 47178452, - 20180244, - 2932331206, - 2851541997, - 57864058, - 38453406, - 2935658192, - 15653423, - 613411307, - 2913030695, - 2929709728, - 17990925, - 2929420383, - 705221179, - 59746036, - 317285372, - 10692122, - 735001075, - 320103459, - 2926312787, - 2926532715, - 189039109, - 2724875972, - 2885619717, - 2916611921, - 2273772871, - 234593357, - 475157561, - 2877229557, - 121874784, - 2929121480, - 2914114792, - 2801067517, - 2920196300, - 96103780, - 2918686306, - 1018522322, - 16841837, - 562029490, - 467099237, - 2896004958, - 2673954810, - 2911492506, - 24244428, - 2918632163, - 30481941, - 241086349, - 906943867, - 720090247, - 28725464, - 2926935744, - 1205291934, - 54501744, - 33984519, - 2914335156, - 2915131543, - 567862111, - 2493540325, - 354087985, - 2180801330, - 2716417939, - 187681652, - 424545499, - 2467025479, - 1543515804, - 2868536894, - 703575822, - 22526911, - 2785120125, - 2910785591, - 7796172, - 11513552, - 45143, - 2924662807, - 15810905, - 134779059, - 2804019566, - 2870745171, - 2336508511, - 14125008, - 480036734, - 2915039892, - 2808295946, - 2911101880, - 2911102996, - 2911039209, - 2760734104, - 2902716424, - 2911041945, - 2911100164, - 2911101892, - 304550950, - 274054752, - 2440585238, - 23173499, - 15435500, - 186021388, - 19178814, - 2922056035, - 2813965043, - 2155511406, - 25029927, - 2908361721, - 166457964, - 34628416, - 2835349962, - 2907310277, - 245176327, - 47566275, - 37162136, - 175295563, - 363997196, - 17667371, - 1963565190, - 199476742, - 2887831301, - 2860875292, - 2858040357, - 1421336851, - 2897616443, - 2898961128, - 2820148561, - 2891489406, - 449818373, - 384977124, - 23701963, - 2449427197, - 432299781, - 299502506, - 84543935, - 2734153639, - 2879774764, - 97419236, - 1479773167, - 492946976, - 2338610616, - 296823744, - 270152664, - 385363267, - 14379613, - 2736082734, - 870757579, - 82342846, - 16901867, - 3110991, - 478251921, - 1110160747, - 2496381896, - 1361688518, - 2530020704, - 15899372, - 631306195, - 115547154, - 337663251, - 41229610, - 870466574, - 764750310, - 519425251, - 70847996, - 136169487, - 14970911, - 873726360, - 26666166, - 132770483, - 306225194, - 32282502, - 27551534, - 47037273, - 20271007, - 2585361068, - 14120925, - 2753715921, - 2777786762, - 113136276, - 2915062848, - 2858927329, - 138840987, - 2877913901, - 1403961079, - 324600867, - 2901829064, - 17256898, - 39099783, - 2710174488, - 2350503847, - 1184169696, - 769426572, - 2478825630, - 2886244545, - 23189892, - 21191825, - 364767188, - 2895686116, - 2887553139, - 888889368, - 223805269, - 201552518, - 1451790722, - 15960655, - 111140015, - 2853955671, - 898141417, - 231063580, - 2892117111, - 520835497, - 15094420, - 18196713, - 17795672, - 2892417419, - 17416387, - 2325977071, - 12299242, - 19704855, - 21800155, - 16159297, - 2836004283, - 401635769, - 505631665, - 501208238, - 107448028, - 734446782, - 16516351, - 2891080113, - 2889495819, - 974586420, - 2853261335, - 2843084595, - 2551064918, - 2869806646, - 2888539945, - 2766105770, - 2908399314, - 35473416, - 135983969, - 2906357473, - 19119233, - 2879774963, - 48231291, - 315164757, - 2853243562, - 1514989014, - 11051252, - 2876357325, - 16288392, - 2884775193, - 16323680, - 2885438896, - 631113074, - 33743179, - 153296320, - 1683420451, - 18346039, - 19039053, - 2827531823, - 196944784, - 58424698, - 15182629, - 10781802, - 35028064, - 2872677244, - 2885216843, - 1011967081, - 2345543600, - 318481728, - 425214839, - 2295998888, - 552389944, - 1090900116, - 2903911856, - 298620722, - 41543409, - 1516005133, - 2589738836, - 29064492, - 1726894219, - 21097363, - 3668081, - 2883381311, - 81077164, - 270801364, - 77074214, - 1518401448, - 1534980696, - 981127062, - 408631444, - 141542064, - 2864852517, - 6782972, - 32967317, - 22018381, - 2861402625, - 2560594567, - 1726770042, - 230439795, - 2360634539, - 250771113, - 290059422, - 2892415464, - 16001046, - 91716596, - 18810315, - 367526062, - 1074364406, - 15373778, - 2344305278, - 10718, - 2870163764, - 2433667077, - 2222133360, - 1707480156, - 1001318221, - 19582372, - 948570062, - 174591864, - 1135280635, - 171931585, - 35101611, - 17437291, - 248191440, - 19902242, - 16585644, - 186160494, - 2446390764, - 1001690000, - 2900016211, - 2841496870, - 18949061, - 2874313689, - 758370776, - 17128777, - 2876676976, - 2698384010, - 607211681, - 1010661, - 1521398738, - 147731142, - 490897163, - 476048241, - 151562486, - 6652652, - 443763700, - 83483164, - 2790341762, - 2872016867, - 1148960264, - 2335370882, - 16891462, - 531291518, - 581098887, - 1273061418, - 2516166788, - 2872603463, - 1930227433, - 60349138, - 2854067887, - 2888212070, - 103453806, - 2872815196, - 110595130, - 2872664348, - 2616030440, - 410537231, - 574647893, - 2240590129, - 1315554846, - 2486238716, - 2748659756, - 11194782, - 1077, - 42574506, - 143539567, - 20129803, - 378716437, - 2508928776, - 204594835, - 271481369, - 2827705677, - 51567663, - 339740909, - 18059811, - 285774839, - 14883908, - 119940022, - 485441455, - 53570239, - 7315732, - 2869949283, - 141074522, - 23100908, - 17807133, - 2742299641, - 2890424340, - 1936611624, - 1242217004, - 2836949388, - 995698284, - 2877801380, - 393897038, - 19498212, - 251861049, - 2559161749, - 63936817, - 2446942796, - 2441681756, - 2437664593, - 1452925254, - 38539052, - 25684535, - 2835328803, - 99819269, - 542185215, - 1182897894, - 1453904227, - 2420768126, - 25100578, - 270442873, - 2892427226, - 2440670916, - 2367501, - 49767846, - 21546880, - 2821521423, - 422801393, - 736652496, - 10508, - 153408163, - 1302307548, - 2891237118, - 2886608340, - 14221779, - 193044042, - 385204671, - 2890900638, - 2862606533, - 87416263, - 2889899215, - 2858766377, - 521191658, - 47705488, - 2573633287, - 215874978, - 373891800, - 83701477, - 36459516, - 2827647946, - 2442766051, - 2446930836, - 10241062, - 500951118, - 2886631878, - 42067255, - 1929371954, - 519149666, - 14207614, - 2836009090, - 2883888048, - 2550715640, - 408873608, - 2442771121, - 210684204, - 2333691512, - 2830961070, - 752137213, - 2885669124, - 28298897, - 18028814, - 371701934, - 353782068, - 2886042962, - 614831719, - 2523472213, - 197843128, - 1359526776, - 15006654, - 387947550, - 398129297, - 122383620, - 42088363, - 252000808, - 77112054, - 2556576817, - 30279017, - 349352135, - 21062802, - 798933842, - 876514789, - 704184211, - 2486243202, - 171313785, - 518795225, - 2331199484, - 2877963104, - 23986756, - 15808210, - 71304536, - 2800027542, - 219450750, - 2800608755, - 2831914601, - 296425907, - 719169576, - 2846131193, - 2846058214, - 2499916716, - 1284190964, - 2844538385, - 247794345, - 2358362860, - 2866068890, - 76587100, - 761755742, - 416495207, - 2275330722, - 2859399668, - 2663748318, - 2826933740, - 2796714145, - 2530510202, - 2758263537, - 159223928, - 2754591431, - 103209258, - 199233779, - 2842766699, - 919444405, - 48880548, - 1061633870, - 2842264792, - 1261886976, - 22546273, - 2842583673, - 249964403, - 2840334772, - 14685794, - 2831948334, - 306826345, - 1169083602, - 2794992969, - 15683103, - 2750413590, - 2841254729, - 1327583215, - 1483563295, - 14128186, - 2791444776, - 36462780, - 2435997150, - 25979719, - 135321904, - 14270791, - 82515075, - 945128460, - 2838770382, - 206713027, - 17211934, - 35946147, - 2831065058, - 76822878, - 68433230, - 1841791, - 2841573376, - 336729169, - 2190898868, - 262974902, - 2838892960, - 2816021190, - 2811252438, - 2841166361, - 276351217, - 344655242, - 516628941, - 619524396, - 215420650, - 72863, - 2691570584, - 14605917, - 1142612942, - 2800857767, - 2839469361, - 40917881, - 44018210, - 592427581, - 207617689, - 1364972922, - 22683937, - 429010154, - 2507513826, - 18914085, - 72955050, - 78385907, - 450975609, - 138848810, - 319287415, - 2713248331, - 2690640822, - 260256069, - 2836917112, - 1564257338, - 195622761, - 18475090, - 2418948720, - 1176665682, - 2679808020, - 510966817, - 232729395, - 2836576425, - 154516936, - 1038933740, - 373522144, - 2793293610, - 2559258187, - 2861756017, - 10988542, - 2835915496, - 45641677, - 359260523, - 90959713, - 27309226, - 2325807193, - 2861558004, - 35416970, - 785505972, - 2631339105, - 2849120282, - 1276977619, - 249290275, - 18637560, - 1110033985, - 2783893044, - 185885313, - 2834971791, - 16292709, - 2447217714 - ] -} \ No newline at end of file +{"next_cursor_str": "1482201362283529597", "next_cursor": 1482201362283529597, "previous_cursor": 0, "previous_cursor_str": "0", "ids": [4727569094, 2159989885, 4440403513, 4588196896, 4726058862, 3586984694, 4724624774, 4597361717, 172443768, 4723772232, 972722053, 2711772630, 4472842402, 809963898, 459557733, 536513337, 4721100218, 1003854361, 4726605819, 20086326, 4718785213, 4647172521, 1280009484, 44151502, 4059246148, 3566376976, 327606485, 1561816711, 4558693163, 2910127390, 4713152474, 3392295089, 228816435, 867113114, 169155140, 2851645779, 37599351, 4705950344, 2383209865, 2909319245, 2943876654, 3563619556, 2519892949, 2783290115, 3305004538, 3254355889, 4042012949, 6903522, 730455462, 379174316, 1140758419, 1418842483, 2924562127, 4685458346, 3252887849, 54814687, 500593738, 3350035048, 13744762, 2677379911, 165090454, 6736502, 4351480095, 3291006204, 3861464295, 924726152, 3305910986, 3335689277, 3432512224, 2744732064, 3369181541, 3225038901, 291156648, 2611482761, 4492833793, 63256598, 3463286669, 54662153, 3617600054, 4223951597, 33909603, 4060613314, 33293016, 1513098175, 3390091932, 3392175885, 2723551188, 534503457, 4628650816, 146266477, 805250713, 876097170, 548601124, 3496725492, 1227109332, 4650831494, 3260450900, 4638606512, 2263854492, 4618877479, 4515437554, 4580405368, 1013993911, 4608895094, 3131353377, 4134420904, 3154667345, 17202870, 4551135916, 1208988649, 3083337205, 4416740921, 384640916, 1644367051, 4361721801, 4289129779, 3291211192, 4111189155, 4095486974, 3432611499, 385614197, 4576335492, 1575064478, 3087454077, 4481229796, 2484730051, 397455579, 4443407839, 3351271613, 3764534293, 3107595305, 2837232924, 4558453938, 374695645, 4482472275, 4556159652, 765566593, 4478225662, 2777597238, 4482378194, 1574305136, 3298141567, 3288437098, 387302374, 4428090687, 4329496245, 25941620, 38871301, 773894990, 3703004656, 3171871964, 4258325478, 3314167718, 59141885, 4384140736, 2279784726, 4405811902, 1944926101, 565743231, 1896036876, 2881381038, 4298344762, 4132592593, 610058444, 3402203169, 4430168739, 4206412580, 3715201703, 4429365257, 4067032871, 4453995859, 4286580586, 4503681732, 1436041, 2945751177, 4409386396, 20596878, 18821744, 4100452463, 2390549779, 4104856221, 4432718594, 1643476940, 17127545, 2395968038, 13357152, 1616041538, 3936903853, 3362672781, 3234227772, 4238198233, 37170886, 3310781670, 2470833258, 4376890762, 24641260, 4445062219, 4443257354, 4437900013, 3238070184, 4437812906, 4154941402, 3369087143, 2943778680, 551545790, 1665904176, 4199565015, 3293182576, 271195889, 73066735, 3288492700, 4343070873, 2959224279, 462129948, 4325388317, 2653241334, 14594968, 3041707044, 1225814342, 14536247, 1551214278, 2765922944, 4196868014, 3392128331, 230505712, 3245241844, 3246290510, 2464896570, 1588283210, 3369023253, 4310030537, 3369096833, 3369018423, 3369095249, 3314371723, 3301731150, 94011952, 4301214683, 3242517059, 3436318253, 4204336403, 1229301625, 3369045819, 56381545, 3372161386, 2444611340, 3167775416, 3813670342, 3369016863, 3369082163, 3369113362, 4262914535, 4323271819, 4265960428, 4277951967, 3234997046, 4064878827, 4257937756, 270388907, 3369162784, 618193383, 3372071451, 4075729966, 4249798059, 344710912, 21170191, 1358213732, 4295447478, 433402770, 910767529, 3369008271, 3288749939, 3700789463, 5735722, 504984038, 4042828692, 994872008, 2793324527, 2965516881, 3943298172, 4301516532, 1861651002, 3245816828, 4298135551, 144327700, 4230489327, 4255188853, 2434700825, 4261340774, 872152550, 2824376163, 1012043990, 14439553, 1447018867, 4149228059, 101563838, 2344074758, 4167609783, 429181978, 723239514, 4210997740, 471728300, 4256907314, 723259994, 1631058284, 4241702173, 4053712753, 49036322, 4242022692, 4002711853, 4239672132, 15376548, 36661567, 45119696, 3219689552, 122722951, 1968880338, 14986598, 133163228, 4209237794, 26288896, 3297595985, 4171889661, 3688577959, 441443024, 4165302856, 3079557028, 2814179773, 3193892419, 3897312373, 4194504312, 4072977613, 2873622863, 2896048525, 2868426065, 2925527959, 25414649, 4178125153, 3210747297, 1592364410, 2920104383, 53742527, 16050335, 16711686, 826139334, 4099610194, 272170764, 2660923440, 21497686, 3318260434, 3438042953, 3996919827, 4119427517, 3287831166, 4098782536, 3566510360, 3596193313, 3572237002, 108277704, 184035104, 909889638, 4108697969, 3565431863, 4105547145, 29006114, 572918492, 3314249902, 21934122, 3128047447, 4101702562, 3436857292, 2465853247, 3930538695, 3262000880, 4085064315, 1130398088, 4077702320, 3205516811, 4094234294, 2428746600, 3606281596, 3445573213, 14260934, 715210842, 2854329679, 20547438, 2324931355, 3561566841, 4055603173, 3280180292, 17959415, 1137841, 3028669812, 218819255, 2535680672, 4047417136, 30171517, 294163041, 158817600, 2812038732, 434493063, 24630127, 1277467326, 4052753577, 4032318612, 3372156172, 2360952272, 31088347, 2751474409, 3372064479, 3028987862, 3372052941, 2876077741, 1426489596, 140848680, 3676402404, 449088065, 3372112343, 4033856823, 3855838251, 262289638, 517508970, 3970614084, 3991146975, 1620307951, 860162726, 480203570, 3976303633, 377421904, 3698146754, 3641637135, 711152959, 3986655664, 963060793, 3951074242, 16869298, 3859045699, 2787902762, 4000203135, 3874758792, 3192206835, 3742132393, 6867422, 380752039, 3987199649, 3124168192, 3934487834, 2878853621, 539389847, 3396877633, 3944723374, 3398917175, 3309014172, 3048570253, 93508627, 3890105532, 924569904, 2781414036, 3278963672, 2697484447, 2466617142, 116537943, 1305583158, 3445927762, 3953168957, 3118176874, 3394087006, 3633347063, 3260172752, 40937252, 560622571, 3884146342, 3897137537, 1700987816, 3325037137, 2321310390, 14595446, 3938137581, 2780267415, 3921864677, 2524165066, 3921655367, 2310349423, 177256329, 2651192450, 95569167, 3830504413, 2866488104, 3540449115, 1274674382, 69568497, 237071281, 3645729272, 3048045832, 711092328, 86728819, 3816688513, 898337090, 30958732, 817052436, 362829789, 3882720183, 2613691501, 3328152633, 24649110, 3450039327, 3881376448, 236678142, 42723893, 1972345922, 3367772559, 3394538069, 21391319, 2243199369, 314910919, 3864843508, 2662671325, 122856431, 3791016433, 3461500095, 2873652344, 3866597782, 729055795, 2980436249, 3585710534, 27546330, 2455058425, 637256263, 3843606622, 8257582, 15453752, 3732361153, 2687560542, 3796531515, 3742856964, 2320415300, 1025258792, 3750714320, 3310692242, 3235866265, 2222207587, 259203750, 348732128, 257790897, 17215973, 3656945963, 3119648844, 3533415917, 3166038078, 3830425707, 3063515724, 824097301, 304714961, 19461735, 3709450815, 983761116, 55050779, 282749943, 3125045056, 3815917726, 1464002383, 2835250822, 15247851, 3707836163, 398247232, 2488518120, 3721564272, 3743441352, 84526047, 3742918274, 510426506, 375881922, 3307585687, 341561121, 3064005897, 3722819119, 588229921, 15657734, 256604706, 1061271746, 1585399752, 227941935, 33174306, 3319710096, 931013179, 29972165, 12970432, 409264135, 95821691, 20392133, 29140169, 21755368, 1911369170, 297882633, 3025694975, 3671953580, 1271160937, 1140606943, 473209711, 2976293643, 197908028, 23597904, 17368291, 3791030422, 3127932331, 55683, 991784670, 3314034839, 2217597356, 3667991232, 521665119, 61312155, 2366598559, 19158794, 2790808422, 550218277, 3437500641, 890573372, 369664862, 194350424, 3366793205, 3004174175, 35226352, 2343811524, 274376314, 2462584339, 2556439687, 129982363, 1025575574, 2990366516, 549789279, 3245682853, 1067433296, 3776394015, 568266336, 2660896448, 2445322386, 3776084482, 257105958, 26400556, 623208462, 2374687748, 2951326008, 2836831551, 3565196532, 19533970, 937453657, 515796374, 32339577, 1069924674, 26243581, 21256388, 18359687, 51958104, 365424178, 1519453129, 2993641806, 110849533, 15410181, 24939205, 391698296, 3293817393, 474197738, 23989245, 3217502745, 2501696396, 35754897, 253526305, 191606864, 3008103926, 104940767, 203006404, 171093486, 42909816, 40147256, 3438494050, 131850717, 373629495, 18957528, 22478857, 441869139, 327494258, 3077068253, 42566089, 14909129, 16117544, 3769089201, 126227790, 260409334, 358127357, 18409980, 873102607, 204722944, 117665953, 255867958, 3378918880, 2584841, 285435896, 1390708652, 1958639456, 46969371, 24973042, 19150410, 2691032274, 2371922039, 90884238, 119741900, 2730359500, 110095813, 71229154, 20247713, 332962470, 2450622499, 3766223981, 338315107, 279389317, 3299221046, 15387032, 632433915, 32321142, 2332448720, 228111079, 3162067817, 2710356834, 1359934544, 18157949, 2902807042, 591955292, 2566507268, 3312843998, 3301215209, 440447856, 100021001, 2950135645, 624751365, 2924824557, 524317843, 326886738, 339305583, 58139636, 325382356, 77675608, 1604400888, 14337677, 33762408, 3226765068, 453433267, 478052966, 2376105709, 761821470, 2682724056, 3308110327, 124322117, 323861766, 42825991, 3418685967, 38044745, 1884638293, 835126549, 2435921790, 3674884573, 2906512079, 20380832, 16393195, 304566678, 733185818, 3287926819, 3112569449, 41446147, 57821198, 3133437064, 771135176, 3763645767, 2197216129, 780629930, 28422283, 57391309, 22285002, 90467435, 16009228, 87003849, 2490802358, 2831619731, 1725681336, 15072897, 3672518918, 103355247, 15846480, 3004462409, 425247471, 1033542842, 3761939301, 165452796, 2315874928, 1595385926, 84649687, 3424669325, 346413206, 213863733, 3671107700, 22493135, 42445830, 352416575, 322935580, 299583722, 2246685840, 559419711, 357166905, 576729133, 3297935932, 780256, 2673962376, 398029052, 66460256, 524971540, 2475614696, 361923349, 45178917, 1618289293, 1529281777, 712252046, 14745265, 968346379, 288314281, 57278524, 143121774, 1350192332, 2545160278, 378357691, 229191999, 12325402, 315739478, 300311737, 790993424, 1653027398, 2162573900, 25396935, 92827461, 336831618, 19519403, 27809379, 813767929, 243299651, 3758706017, 21126689, 110860080, 293055819, 47972392, 81796862, 15876654, 71480385, 454083904, 84825505, 3327174042, 36141303, 195478230, 142216838, 1561810207, 3437702092, 3755741115, 18589798, 26414682, 3755349015, 47680923, 292551106, 2337491022, 15075215, 3152481, 19784522, 1967676458, 16064715, 3623119213, 3746582117, 3742885576, 3720703834, 3471887176, 3676985837, 16008657, 2849184133, 312806264, 3318322004, 3660317175, 3164522870, 2861121485, 3322346690, 390634518, 22166168, 880869722, 3089421956, 3305860415, 3588190457, 204391039, 3239517631, 3319933355, 3599797998, 2998904224, 3561202392, 48197550, 276117815, 3676773257, 545286328, 3679097175, 3646159463, 898350834, 2720717808, 3134132414, 130911267, 3534423801, 2722611607, 2885105333, 1890653114, 281096380, 47904733, 3651948615, 3647552597, 2998874523, 211810106, 847982263, 323210799, 178064435, 1631607308, 3374277485, 3532146672, 3491163143, 3625519757, 2983873470, 3488315780, 2668359638, 3526092440, 2536373654, 3119682967, 3496635434, 21124657, 3307525812, 3608599515, 705804404, 433076609, 2856319923, 2864709981, 3227185845, 90352974, 1242147744, 991976840, 1596760496, 3598393755, 2826874020, 2173503494, 3241226132, 32272914, 607618475, 2330723844, 394080114, 3072816451, 385711077, 3550051277, 781088821, 2904507394, 1491824214, 3379323719, 3442798332, 98456973, 125222510, 1014843008, 2781240970, 18780020, 2525002464, 557847258, 3215225885, 3328527374, 3154422811, 3444680595, 3304074656, 3533189175, 3434033233, 3185412498, 16503630, 363748330, 1278333757, 3424754757, 1519836126, 2998357891, 2940876531, 3374017072, 2490418518, 2491727960, 1058934854, 1040925240, 946605234, 3411393732, 2984838395, 3405973940, 798018403, 81394857, 2716035852, 17083882, 3421279773, 3387702346, 637385533, 108449705, 3397256713, 2941268731, 3436343369, 2453990824, 932649750, 3320142422, 2849330606, 3188361169, 799186008, 3270578292, 127767115, 1974333300, 2257691340, 2282907989, 468954602, 3448469717, 3373031239, 2201083252, 44221382, 2811672966, 839819048, 518027609, 193035695, 3044766969, 3303433591, 318847914, 2899931039, 430777761, 250761666, 2762347356, 3342197517, 3394811177, 3439539351, 714808999, 1323009847, 518574987, 3289945685, 3333900732, 3309199777, 1941886201, 337229364, 1909448954, 746437578, 3226803774, 3327840265, 63274860, 3307066231, 2902401889, 753465020, 3322016803, 39839978, 2559281742, 3385067943, 28427727, 3410894199, 1328291191, 911760128, 18060782, 3150764702, 3277957106, 3289964234, 3322229030, 3315969398, 1377870192, 1200309318, 364580402, 69423648, 14848127, 3368750837, 343820722, 28848544, 269498956, 3064868338, 381262722, 3316331179, 26111690, 1957664515, 3182784189, 1716930092, 216564864, 2468109192, 417957444, 885336188, 3308911941, 3298769402, 258270134, 3430549941, 274086239, 120062208, 3038427494, 3296081103, 137996439, 17237614, 3319477788, 3303924961, 3430731333, 3426654850, 3319342304, 2744920447, 115521188, 14847496, 22720309, 553016365, 2801090275, 244715270, 2800397977, 89843464, 3314471551, 156968876, 3358491778, 409343201, 174037078, 353549762, 3318821160, 2239637844, 7273952, 440519278, 497492256, 3279129193, 58017020, 24588399, 20085452, 3423477340, 2550343301, 52423876, 340499950, 655343, 3305997908, 1389147930, 3305938715, 2888713287, 2306149431, 3031506514, 3318200898, 3395009895, 727530661, 3225594631, 3428995648, 475445113, 351337636, 2752220550, 303554014, 381027793, 3304819610, 3427847644, 3286210416, 118235929, 155997496, 14079324, 3314473610, 15103056, 2324681347, 3312747140, 3115714225, 2897238137, 91530572, 2268490213, 29872754, 143450188, 277202417, 142030358, 1653641683, 2492143571, 3421399661, 3339022257, 395270674, 606142563, 3300636247, 3315786823, 3031769337, 10702362, 3171862198, 3424410670, 362426662, 2824785955, 24297310, 3416372932, 3195428898, 188668186, 23460980, 3244875996, 3082784877, 18187030, 434318356, 3075626109, 2890346000, 23540681, 1901085492, 274612235, 863378442, 282080592, 354852855, 517783594, 168165670, 1593796604, 2591632782, 2874298913, 2957952996, 2835811651, 161521494, 558132339, 14793299, 85209075, 3397245477, 2974380082, 19916529, 304393517, 3146768724, 134313598, 1912157732, 21439101, 3314001782, 24757163, 240402090, 3381144622, 2752716881, 1606602836, 535472056, 401291759, 3291553094, 122194244, 2257173902, 2053491, 9642462, 2335984431, 1053840037, 314730239, 2908748863, 3308525460, 3312475110, 1921725680, 179075503, 3128325357, 2846754875, 99886979, 875918448, 103203138, 3131242228, 123004655, 49480727, 383982906, 24656052, 1409080304, 2429705149, 222523970, 1404913814, 3217244710, 3405837489, 3286572806, 1205985991, 303530347, 1469990245, 575432389, 1130760643, 3310658641, 301988206, 28293478, 136455083, 2810138270, 2386424731, 3410580346, 131230732, 3310218576, 835995246, 291765653, 944951768, 3069309878, 3309664286, 3407507807, 20641176, 485775165, 726399254, 287455470, 236383731, 2331411, 2909508270, 15434198, 3158294575, 17948233, 28490110, 158475249, 122702609, 91858645, 1924459776, 88643929, 1006236331, 3304628310, 187754202, 24597313, 38838094, 223725843, 176384740, 296516579, 3029943839, 301982599, 18885700, 3273529406, 20112537, 16016841, 1528493707, 3028165463, 34308371, 414348168, 2805546579, 916809126, 3307562983, 3028431054, 2434452659, 91435560, 142911384, 3183774135, 3371630909, 1107777762, 1166401940, 2642920375, 3316223807, 2777344487, 168961317, 1480806012, 2203879116, 3306073742, 1895951490, 712506968, 3305863213, 437259295, 739619514, 3382504204, 2624871656, 3302852336, 3401593403, 2853639989, 2261946450, 2287131684, 146320306, 260532533, 982269738, 8201342, 3332464419, 131734558, 586921790, 118248371, 3400856710, 43787362, 15889436, 36927998, 1050250202, 3102244779, 713288288, 3304468434, 16896081, 3250259971, 3272302232, 108380750, 1528941704, 3169209138, 2687038597, 3277203235, 3399200523, 3378108695, 3372463121, 593786656, 3302903923, 3376616188, 481441609, 1599186643, 36249266, 3299349631, 437782878, 52841178, 3214186095, 2516925589, 2323019857, 459809707, 3316892277, 2951642036, 53817735, 52630243, 18991370, 18793562, 187074956, 3169369153, 24746443, 360938389, 49929913, 2580366297, 94992855, 2943496106, 23278740, 3301459650, 355558718, 149982849, 3395789079, 220506985, 3150301794, 2318650639, 3284620076, 2196260961, 3301020727, 3341706088, 2595159421, 3272826486, 2499423463, 1896246912, 2599649755, 2968084455, 2714749314, 3298132110, 2847804197, 3299304427, 3042622645, 3057238438, 3193136082, 3391957281, 45439747, 3299596861, 3289994574, 3299460614, 97270935, 17479969, 3248598584, 3119483921, 2970486593, 2650683564, 2726027623, 182440689, 3252510788, 140009944, 3296467034, 536687726, 171992847, 23966894, 1702550918, 2432705551, 455242356, 25568219, 3293559848, 2539085162, 145660063, 3248082276, 521202310, 283843182, 15804528, 8873982, 2846101398, 3093804164, 2744624881, 3283976587, 896548951, 3291270571, 763141069, 3332089318, 3145313984, 53859897, 2960151686, 14547465, 414312415, 60031250, 3289924633, 308389347, 3165770244, 3386808027, 3286722924, 552405856, 2235042289, 2320676557, 234510851, 34948762, 15035834, 39261096, 1317845004, 3345796229, 1213826822, 3273572366, 3387478035, 494509586, 15429290, 779012161, 355830877, 1325545832, 1147763726, 2918440720, 14951174, 3376767365, 2831852183, 3180968594, 2857215332, 3194503789, 3386875186, 169921725, 771182024, 947769733, 3832281, 135677157, 2942214320, 3058816856, 2273887568, 3286837051, 2284631432, 3386060333, 35411817, 3385973020, 364832569, 3262673221, 8541492, 1705820114, 3384466587, 976948010, 883558274, 81396070, 3285786937, 3384172924, 235138711, 267897978, 39100491, 14991273, 550190796, 2445932708, 2166605965, 80779450, 570435144, 63600717, 299163027, 16740279, 735054794, 174771864, 3283922682, 3284374022, 298150538, 787348237, 169445321, 2220487586, 70091642, 3283208342, 2704770012, 103889989, 19019514, 3382465048, 3382295969, 49932377, 174285878, 1063974115, 320344665, 1596175406, 284972093, 2917539951, 106707371, 577954867, 2785165032, 3282676134, 3380925261, 272898991, 3327898666, 1035577195, 3351768233, 46759489, 78862565, 2997744145, 3024682087, 15080878, 594109772, 1301589103, 363972548, 1682447942, 38661513, 19427812, 49071958, 82952713, 433688733, 2362038176, 3261509664, 2951101922, 1947674420, 93698869, 2531028432, 22672104, 799747874, 2243567878, 3280379318, 755829794, 260214110, 759973200, 1427088757, 3256942056, 2842032693, 2975607816, 3279970303, 44708064, 259556727, 132570905, 464958008, 2757057685, 3355756889, 3351592047, 3372060351, 3279199100, 2814338885, 3373948978, 3271339932, 1365532753, 3191047857, 625961613, 3278698016, 2478136272, 511500579, 86626311, 3277945849, 2616401366, 2830467981, 106000038, 3174496635, 339515882, 327955629, 3277239498, 3190223965, 2362227014, 2824524332, 140133636, 627633389, 325000251, 2986708839, 1963586598, 3369741292, 1089285774, 2960602427, 1447666710, 1109943692, 21355612, 2459581782, 3369528298, 460939629, 1072157983, 3272679000, 3275077291, 185016428, 48714879, 305348232, 3369954346, 245261124, 2320137277, 1339375526, 3368397735, 507872067, 3131720320, 3365925905, 236962918, 2828473539, 16063885, 3208749275, 3349758255, 35921353, 3273992754, 615009737, 2554476102, 1308729907, 381015561, 2952558439, 432856745, 139709754, 42393552, 2858438880, 3310188274, 848359831, 366551314, 2410774122, 2567931625, 628558605, 2844699165, 3161428219, 39859095, 2474451, 3306093495, 353912153, 2316357264, 160273646, 1587091896, 3240430806, 3091375114, 557284498, 2728694337, 2899118630, 27753893, 575338442, 88584204, 2824323817, 968695542, 16279554, 592286290, 19618210, 266545811, 252897050, 3346064571, 2595323947, 7765612, 109572102, 19804842, 80247890, 34447217, 532689500, 2299710372, 21465925, 45716828, 58340039, 574610510, 41109360, 718593078, 12257632, 2471905921, 1097573617, 2600034403, 3341031143, 2196931189, 3270818598, 13047322, 2934129837, 3130776262, 2642961590, 150965694, 1500725676, 874223732, 14593763, 217949209, 16867831, 15357971, 95774357, 2798598233, 3188324402, 1247462594, 64452774, 2419730239, 1576113614, 1227823958, 850117501, 1132143535, 3357153478, 213632440, 1016285491, 485886996, 116239843, 272023536, 2617237688, 29550233, 2998632837, 21647380, 2875804937, 160410459, 612046207, 2719082323, 4315751, 428684731, 1370338400, 3303305134, 59707017, 32488092, 125249275, 493754264, 16116214, 2614380511, 3241172671, 86045776, 3180064812, 981866658, 121896641, 3224535142, 16320554, 2598001729, 1897677870, 59375148, 15210207, 1076713596, 22420629, 87335301, 3021559986, 54795231, 3351429592, 1088161568, 598728655, 95506085, 3260181164, 377858959, 27921953, 15053256, 2305501767, 81167159, 12337932, 2184521743, 286391720, 47742147, 21342836, 3085292805, 18583228, 3267417439, 37702406, 395681883, 214360044, 1642524690, 393603430, 822644540, 3043472039, 262481941, 24550930, 35583898, 1948727131, 2513720226, 199862369, 2938889878, 2413594758, 3265811214, 16556630, 204312379, 61451718, 3266660534, 3350435921, 44129616, 16025792, 980354275, 14534467, 3350855067, 16698673, 2497762182, 19331096, 2893230967, 485617655, 3353764295, 54066935, 499261606, 63852181, 3355957835, 18000132, 121625523, 166857011, 36017747, 2250064770, 3351701422, 14069586, 61854086, 3062702771, 436242574, 3096565135, 306483266, 242918894, 15636142, 16484129, 2953721110, 28036725, 75918073, 18705112, 20183469, 2538405619, 490794284, 2437346502, 398703920, 3261365112, 577477163, 2190644732, 164434716, 2415085993, 30330146, 2728990002, 554381559, 308163567, 3352579023, 2210688265, 3307411900, 2312073872, 66799789, 16023185, 2364688028, 83465839, 577975262, 2836035235, 3028906441, 1371703465, 1105438082, 3255067783, 2255452332, 3307324221, 502008184, 3256985378, 2857528105, 984172484, 407161621, 2384314538, 857142840, 3255653563, 16564925, 1709876940, 2930856338, 1231578642, 1005461768, 227507908, 215310458, 92374836, 362880718, 10908352, 3257786339, 223608627, 2513312516, 24881995, 3239074594, 160444680, 2568853129, 17119070, 127900149, 372957107, 15689404, 2815046317, 2924022467, 1431444060, 313427754, 27820338, 2494260060, 19706227, 18264627, 20126862, 227622672, 68923574, 2338959518, 30524285, 3300771508, 14691215, 18367937, 38419396, 272218597, 3337432331, 81146591, 2748649880, 2889527401, 3246335646, 3260517488, 86391039, 238374731, 2994713500, 2881829733, 2859229134, 354694878, 197015024, 3034532050, 3238216489, 860099634, 375270752, 3127759705, 3011001845, 3349159528, 22360127, 2764354965, 860939377, 3345746367, 2680160995, 2809627904, 3347284929, 1095102535, 353846241, 238628020, 268930683, 707098314, 18271834, 3346576763, 113415817, 62681698, 1597220887, 3255450739, 1851849318, 514985532, 67580602, 3246059330, 3253372555, 327017284, 2852936548, 32686814, 3243562110, 2539511884, 2427246170, 2933213332, 1022110370, 2904717305, 326150402, 3345032997, 37482414, 1459090969, 3322617651, 3245375338, 3339211527, 3185597596, 3254152926, 217307457, 3240437032, 44655493, 15241682, 1656574369, 202734022, 335092316, 575828962, 2756364385, 18643839, 2359679432, 2853475981, 3253285748, 28757835, 3013627236, 3253112430, 2945404092, 18799221, 3215719555, 1024447620, 109703314, 72839849, 2988830614, 3107576540, 14437490, 3243769148, 54319648, 22534061, 3239663143, 2840161578, 3252350210, 3237723946, 2963359867, 3252192158, 2725580095, 959865852, 2868264331, 107681061, 2796904921, 3199745092, 317353416, 3339455417, 823083, 432890325, 1476424110, 164133028, 3104556721, 3250987609, 1437171158, 3190790843, 2822033194, 3008882862, 18357890, 2409592351, 3250324549, 3001572283, 553364235, 3237112696, 8424962, 3334025308, 85118174, 2261891654, 3111666304, 3325860057, 2283223800, 17755033, 105712056, 3214481295, 22516489, 2418114211, 3319161028, 2151145357, 157415973, 358773756, 1538249185, 21777512, 2362036330, 3247381416, 3145621950, 88116883, 20534920, 21879667, 34200848, 2152315988, 3233966865, 466233156, 3234535122, 3247677145, 905628074, 3247545170, 3330696251, 3247417052, 3246689502, 3081788372, 2319934141, 2513341416, 2526655772, 2929128469, 1967510760, 587688630, 19563661, 90818494, 3033105576, 3185481199, 353767859, 2946684410, 21264477, 3327753267, 2269433623, 2502073531, 40892332, 23412075, 15588148, 2685439243, 38566617, 3327326013, 358588432, 15730546, 2874675970, 3033659120, 2964589058, 3245692182, 67929970, 3236549348, 363908101, 2978586790, 2735775078, 361715888, 3245477473, 18759030, 3134819644, 3238799333, 312957029, 3065538900, 3245141227, 95268340, 30688200, 481807083, 1527419708, 58583995, 19695390, 40555720, 62438818, 3322995268, 3061871083, 2996226884, 3239254658, 1447131048, 301966760, 1086273794, 115830646, 17846938, 18898059, 2264785920, 2313359125, 1547537527, 2766850329, 35050392, 2816188274, 402003559, 95998135, 1007568013, 911729426, 635800596, 347255327, 1605694058, 3225655442, 74214728, 3241664568, 3149332332, 3313112985, 2956721094, 3241761282, 3016206471, 105964973, 3227238596, 1633409803, 3184725139, 1464657728, 2730240600, 46646975, 22413496, 15903764, 2502679495, 14912780, 607005973, 1027656631, 312949611, 238400395, 3103382031, 17810599, 338984937, 259622537, 2434135663, 45689135, 2886305915, 738246144, 3225007573, 2577154098, 3302786535, 3298384065, 1617787723, 523437541, 3293760635, 3179499186, 3312312057, 2887105303, 1653806952, 2882434989, 2267422392, 351239198, 3233732947, 3172191942, 86485331, 2986555135, 344908429, 3308027349, 3236793662, 26210327, 563988748, 525593300, 3308580640, 3308563875, 3301927264, 2457829333, 3180878670, 3305543375, 1149152958, 72995844, 2901950317, 37836873, 3296542259, 32323209, 467928447, 36388601, 2507722194, 399390602, 137660115, 2761966264, 19093377, 14985977, 459300842, 3156779970, 3306670997, 21224647, 3213978617, 464855779, 3301814921, 321426872, 236151290, 3228275492, 3305190945, 3102138022, 3140353059, 1529927882, 174242468, 3231040476, 2976107329, 3230766625, 1183149060, 426734017, 2178293671, 59075847, 171724235, 335378209, 159575486, 357165315, 35333150, 2851579324, 2468106433, 2944439114, 3173641725, 3244601302, 3082579757, 3301740899, 3192975594, 283118538, 434049581, 128241097, 313006876, 3243987532, 16097968, 83280323, 1584209064, 32796852, 365995678, 3299567818, 1919437490, 2396350700, 3299186571, 157053960, 396804174, 18181934, 977482010, 40133061, 3194177710, 322416416, 236927135, 3292910998, 587810318, 22390108, 1545482136, 262313593, 3165362050, 2562854758, 3220701078, 3295258121, 1644495702, 3164716322, 962820894, 3290434822, 3100362021, 3131478562, 3190084854, 2325661891, 21277182, 1945424582, 3223151448, 2953455831, 1701578628, 3187461022, 2789557270, 2304406394, 1601106511, 255833240, 2850633596, 2458208618, 2569806414, 3011648898, 144722120, 111814903, 250870107, 3222096972, 897288235, 906653515, 115236840, 2898478889, 1896792314, 624380946, 3292166157, 3075573215, 3189578461, 281349483, 435681607, 41130914, 292647591, 64151219, 37902443, 169165706, 589415057, 489789276, 3190165838, 338970982, 3105861986, 432883132, 466485562, 2864214491, 15475093, 1510982040, 982199750, 145936694, 14112560, 55822405, 250615802, 3221424348, 597476208, 2273944754, 3173005842, 22968486, 13831932, 3124706771, 262430206, 93953874, 8814772, 7121172, 62570297, 170309471, 3131522382, 121192244, 185774847, 555509314, 558340038, 811838826, 512630983, 2691452192, 6509962, 250301429, 2597913918, 403749093, 109326320, 261733111, 16404954, 430671509, 105026655, 21613873, 3215184153, 3097521417, 2909675190, 2916304178, 2428381464, 3196678604, 1970205505, 2725425502, 74207319, 104666974, 589644210, 1300810422, 3256502795, 3196038126, 442903146, 2586563082, 2586738745, 1855637845, 352821813, 61477734, 3095135091, 2883612317, 2764437502, 2324210480, 1149200671, 365556336, 22066285, 2284453291, 42120085, 14599464, 160472662, 2770640132, 3068576178, 1336915111, 65101536, 2178309389, 2848258175, 19546533, 2542121732, 2786035352, 178600543, 172786912, 3128264047, 2883834152, 19319041, 3246622978, 419883987, 567238746, 2905325318, 566413110, 2836769552, 102961087, 19957803, 3188584015, 3067124294, 407408314, 106757359, 2949602146, 3190912752, 3190209810, 480616240, 1044020509, 3020188513, 1236499550, 1314484064, 2993454701, 3236006866, 2712110611, 3075715063, 2601482131, 2545115569, 11353012, 1414745010, 153440886, 2613923132, 22883486, 3144530475, 227533034, 15825051, 2990366584, 38686935, 2371604544, 3186905755, 14994538, 3188337984, 3215404887, 474614008, 2209986403, 1697695572, 2230674883, 41525047, 3188045419, 1417843328, 80704927, 2829919833, 1375678100, 56141616, 2943265556, 50922107, 65083125, 2212879538, 1669431445, 3123347304, 16652840, 3024743784, 3008032768, 3140568331, 25078382, 3233850171, 93908411, 594238836, 2981295157, 2434989762, 492018105, 3097205309, 96997907, 304415259, 3184293462, 3236446413, 3198647505, 1170636272, 2178209244, 18757698, 1624317169, 99401071, 1599023744, 3184813890, 1363667336, 17829450, 480772976, 14278166, 522674330, 138944368, 501177938, 292632884, 3133131439, 2705683456, 23548153, 387437294, 3183575684, 3067249087, 25678101, 2788529930, 3054125730, 79024237, 2877780882, 3157452171, 28850179, 3041485667, 117205846, 3183300739, 3144061905, 1335835988, 598428888, 23852365, 2686756278, 3182392368, 2259380738, 2916145740, 79812508, 3024371774, 3038645847, 131055288, 2506181892, 1536927582, 2547597109, 3165851298, 3221197768, 2575665288, 22126132, 2956848004, 19927012, 2253567374, 3206610670, 1333967101, 1550706396, 2317389050, 2568005624, 1949899056, 80604718, 1541999472, 3222850419, 3217556374, 2766864274, 1887144066, 1296752732, 1301668658, 1261518816, 74396421, 17221069, 177691724, 3071950258, 717863434, 3222822291, 491092473, 2840042433, 946759669, 3079207491, 49323198, 2544240657, 313019411, 40032501, 2646824598, 117384592, 709681428, 1541363042, 2550461, 3131650432, 143470981, 1133432454, 3076240625, 2581882811, 215508074, 2276660323, 500627340, 766585207, 132122597, 50101938, 227522647, 3091910360, 611367409, 3178737074, 84463170, 408980974, 18069493, 3165477711, 2364630716, 3214005593, 341878033, 139318070, 226580814, 3202223609, 51234276, 3214680484, 2839556749, 178647381, 1207844718, 94097711, 2406669248, 457782574, 3031707882, 3215405032, 14956673, 3146995371, 3153341662, 2661473540, 1409082878, 3017826134, 1616328637, 747221318, 387289803, 136015731, 222640532, 3214564197, 797494844, 2495315190, 3003937365, 539183579, 3167446037, 428019663, 3172602823, 857101418, 2374097150, 206473078, 2950404028, 231324724, 1343085360, 66495983, 2167961131, 409955666, 725050728, 15491617, 2999206501, 425231971, 3047956549, 43330582, 353815489, 2526292262, 2876051989, 3171102157, 72260306, 2429120304, 3016148261, 2272601586, 121272353, 1403331493, 230058524, 3177113779, 2223678331, 1006824656, 1307811860, 1475043919, 1668813720, 36193296, 2840675128, 477366528, 362075138, 3176818386, 2749016171, 3206709616, 375016975, 3200002061, 69543723, 112296216, 2380336015, 34976135, 16550479, 186380643, 84790065, 3159404964, 2356099343, 3174072806, 146549981, 2486635696, 3042334859, 21263663, 2620171801, 518155565, 110124029, 30478680, 956473652, 3037272323, 431208467, 121236961, 2359690340, 3206726619, 583032066, 39182801, 2244229741, 1594160412, 1654288080, 3137883791, 19039364, 1523498875, 568335266, 2867838403, 154737265, 2890600383, 3140246180, 3169411357, 2360785622, 2997355818, 3132009213, 256101145, 2742734944, 16588146, 2950595911, 3055733449, 2430898916, 2503972172, 2479789123, 416350692, 1123568917, 2959530058, 2740443233, 2163543109, 65676207, 35438418, 2647320482, 27047046, 455443919, 72702982, 3132119451, 2993812955, 223139140, 113612361, 3014549505, 3166558935, 2831642817, 1687006165, 546522336, 1209878948, 2599106970, 3051252028, 2892498677, 56827390, 2820618296, 2716196783, 1684695840, 3167385148, 3152874905, 25870447, 113545967, 94193981, 21479387, 3097996089, 484363981, 3167868614, 2716275637, 2700223022, 2642111522, 1421278159, 1273036970, 3146480946, 2905783174, 3048889093, 1355370450, 2182410768, 3000425125, 3128243567, 2961836124, 1062109706, 2442565262, 493208195, 1554490128, 2367772716, 2564493385, 2269914306, 222147945, 2255590554, 2935686976, 3007630549, 33117104, 20746042, 1328232668, 1868380964, 3162705050, 2612833488, 2429216377, 84502202, 2246935516, 3163359614, 2755661198, 359453148, 1866243193, 42892455, 2779204951, 14280445, 188111438, 20030284, 1465232090, 33936754, 428785682, 16358915, 189073580, 213084190, 7384432, 248333324, 2852275849, 958301280, 228999222, 858845101, 123772867, 2888748213, 2935384154, 177748749, 336136926, 1037506758, 1479051396, 75370828, 42872176, 138160300, 15471323, 749528521, 3103451277, 12197032, 1548, 2454714289, 15210566, 2328969528, 2256545870, 3167851237, 2382510938, 3052331608, 3091492841, 228699219, 1018438202, 162489917, 2686057201, 1012460306, 1544296339, 2842811598, 1714352198, 2788656494, 10720262, 195694617, 267613720, 243357143, 21107808, 1669289102, 1149276822, 599783125, 195450477, 98795912, 1142941, 428597389, 214113720, 575322296, 1122037838, 16932848, 654033, 1324125072, 3008597084, 77007853, 3094365867, 138985711, 2956446878, 2762664990, 21662285, 18271227, 337343337, 3158983618, 3163284924, 490112926, 1264512061, 164480014, 2684660945, 271652717, 2739099484, 2307815046, 98643448, 3111912045, 1473794754, 117634732, 115490460, 2922642131, 14947998, 3121276863, 1613145114, 25857532, 1286270364, 2454651108, 2991312649, 15337822, 113137845, 3139666643, 21282007, 302510445, 60398610, 3172514794, 234745046, 16602174, 3158726798, 59453, 3138243762, 2741011245, 88078431, 919860212, 1345426651, 3065913111, 2967033270, 16118599, 3130784013, 1588334714, 100815003, 3156992629, 3166875833, 15079071, 2522427001, 3167504357, 16257100, 1338, 3167196353, 1582479492, 3094981977, 22698147, 1475900005, 422271033, 3154454110, 2641077269, 366790687, 36811683, 23795212, 24004250, 2978645906, 12497852, 1284907730, 2852615224, 3121273893, 396174375, 3148898977, 189863792, 460171717, 3093724378, 16612625, 858945828, 81957794, 1411851301, 19330360, 2397051, 11167452, 3152245658, 612147421, 371943335, 1441319364, 3063465922, 289623618, 558195608, 2563970689, 1431856261, 3150614791, 16303721, 2462379295, 3097113646, 1342428037, 3140018329, 50322606, 49643884, 410141708, 18057073, 14296230, 369024196, 2978394842, 840566990, 67862101, 943403953, 968908266, 2458188217, 2467757102, 3146761249, 2986685337, 256838241, 1434640532, 2722319774, 3071743440, 623216509, 2826488523, 2734271179, 419096260, 509468825, 4452951, 235322591, 2923039453, 76138951, 3141945498, 3150030538, 63040962, 52965396, 3145999763, 3145389655, 2607571670, 247883817, 2553458418, 18245240, 3099322280, 1346772768, 2401879252, 1490908590, 2616901068, 3036973742, 3146530204, 585255303, 3142373253, 3116207098, 3003843885, 30815935, 3145318863, 192118974, 36271314, 3144412791, 1433524266, 3027154198, 2395377457, 2843077018, 2678132030, 155297045, 1952500026, 17359469, 3081856281, 2701699687, 3141040442, 606830085, 1216039668, 2901766488, 3140188484, 2922566012, 3021500090, 1018743871, 3139447416, 2970506717, 16806082, 2910237449, 2590812845, 2921413957, 3138735308, 166196521, 3132255753, 3131989617, 3090357903, 103895441, 62409978, 3069041375, 3133683480, 3136507291, 10782302, 2413051692, 2353102435, 2943835678, 2432716717, 212402696, 2871243543, 22039951, 3023990357, 19037995, 3124080193, 47546250, 2560181622, 2490165774, 730697882, 3128375930, 2349773397, 23154120, 2549452651, 3122530172, 293552084, 3120792492, 3091754600, 3040808986, 2627502202, 3007775843, 3127943699, 3114227965, 292968867, 2778436806, 99098809, 2790456825, 3102226902, 2873087403, 1485136909, 2680134386, 2817767214, 3124252893, 2575580646, 3115972511, 3121668226, 3123749283, 15337043, 436232102, 3074018182, 3110488591, 2940010649, 409317907, 2899676241, 2983567593, 3101631014, 3013236705, 2791987829, 14787758, 3117943696, 3108032647, 1157537990, 52940530, 2990811945, 3111634373, 438042120, 2548914955, 316726497, 2482768232, 2441873774, 2912831846, 3113339386, 240097368, 713188470, 3111730840, 577816945, 387393173, 403478532, 1880811698, 3104620165, 2725644713, 3066038804, 15771803, 450925511, 232343915, 3105723157, 527906735, 2246593410, 3105502068, 1320445610, 249521627, 2558023961, 3108105911, 3108077519, 3089116917, 3105074670, 1511167219, 243768472, 3104164838, 2968299131, 144839982, 70776300, 148467183, 317290373, 3094553691, 2953930344, 454526996, 807554857, 2723102317, 3102412711, 3064994626, 3102133496, 3102083419, 3101868534, 2996344310, 2563813867, 2954853941, 138554028, 2381410628, 1326101118, 2175411, 14538254, 64931648, 3099716202, 489467252, 3099122612, 2371511455, 16249572, 56841094, 1544210982, 718849764, 3097041159, 2903971578, 3091619602, 3087262996, 3071789099, 197002497, 2893925350, 110600813, 2374667906, 2818018806, 2907094071, 3074676677, 2573733108, 1393208810, 3095468882, 3090851792, 2953048902, 2460565754, 533934037, 125686756, 2940496570, 2925851773, 3092223469, 2166415653, 244816716, 235661181, 118221781, 3094025292, 131115490, 14278028, 2466167241, 3064395437, 1499053189, 46836633, 2850831579, 703993267, 2871336995, 2923922416, 43136911, 3067827197, 1047118074, 3087841638, 3088454877, 14369429, 2864388993, 2976567862, 61949043, 3092077847, 3091364296, 926181458, 2967916913, 1337386772, 30256536, 1684496310, 2991005590, 14770441, 633268483, 3073480601, 3082917169, 3082789640, 2524130481, 3031892218, 3024294709, 978575058, 3080891262, 253309951, 3051624396, 33438091, 419575518, 720901351, 707400252, 2281210542, 3090928078, 18280197, 3090559264, 1852295060, 3077094749, 3089658064, 440327243, 602647514, 3064061458, 2986261310, 3074535662, 89856868, 199757437, 3070425020, 15128026, 2842564587, 151532418, 18937385, 3082529673, 110010294, 3086767089, 19372840, 3072059444, 3064853295, 2600762910, 588921911, 62881185, 2405061163, 364458634, 2837917726, 1078369069, 3046723148, 34727374, 2564978768, 20490915, 1950062431, 209602032, 874352437, 2419971998, 61236326, 204447420, 1475118602, 3070734450, 1120182492, 3070688857, 465924787, 279743016, 494476765, 188515523, 214747825, 786146030, 26097308, 154782527, 1838207400, 3076380443, 364467351, 2327370235, 2829942930, 3063631369, 24890901, 2928739911, 6035242, 3051992092, 2959220897, 2965071502, 2541112338, 2603637553, 375499570, 365808698, 3067618843, 16917828, 16549116, 1908723582, 123171039, 29838664, 1268642450, 3077634808, 1448738011, 151519583, 153873016, 2877151045, 25620672, 179216418, 3077609081, 56464362, 3067130754, 2395312946, 260243995, 98740604, 930119893, 259357029, 29236701, 1254605904, 3065786227, 22022646, 365480435, 2274864804, 15379505, 1623441578, 20300104, 18012679, 2963673784, 2413359380, 141909875, 962152818, 45318494, 2190757965, 166079658, 18599061, 17809147, 2912272722, 220543503, 88324836, 2961597096, 2835413265, 26091976, 8902822, 2569144296, 285668841, 3063671618, 3023992703, 17414602, 1378344534, 18139106, 3062140718, 2577335454, 19562939, 104939913, 3020204629, 3006306913, 3052155451, 2897974370, 1017391, 44531639, 2808223189, 741803, 12242992, 2584339548, 59163264, 2493238668, 928261158, 998289805, 190528043, 113517282, 2586514873, 260560686, 15947348, 814112882, 3066906051, 16955235, 14183691, 34881385, 20340969, 17383191, 1311781, 169271629, 3033838690, 150223958, 2722197956, 3021842372, 1961849978, 232526563, 3034865567, 3068301502, 1097146207, 1058267378, 2816680539, 3067980917, 138848486, 1148933802, 348881538, 2271443084, 46616450, 14486302, 465299654, 2212979137, 3058916077, 135180509, 463242799, 465666054, 2352187789, 49141886, 1350648744, 2548713044, 3052256568, 2837292587, 3051416599, 3065972423, 18739136, 3050498972, 3054162660, 1343487019, 330666522, 2954181649, 55977032, 792972950, 3050520096, 2899705624, 2914805632, 371878922, 3051047394, 2269487202, 3050593448, 3045369360, 3043022430, 3049901022, 2936848783, 3041957486, 2953654147, 380939116, 3048353695, 312465809, 549194825, 3064567643, 1133465862, 970548092, 290075064, 563306003, 3017427090, 288443185, 3041033221, 152645752, 97024311, 15229103, 74464449, 200541524, 3044139079, 15486045, 1319391535, 3063873989, 2889674833, 315480872, 385460221, 3042583122, 273278007, 201170181, 2650397840, 2670100943, 2363376738, 239516694, 767601, 3040850361, 3063656511, 2228749231, 19135683, 3057746613, 2484464748, 3063502245, 48487459, 2895943573, 18384775, 899973054, 16974016, 2477583762, 64637158, 3004942932, 46722097, 2993171991, 164666005, 20062445, 2892995213, 2850414126, 3007009995, 1739662693, 1055902411, 2393670932, 2881585790, 3060577595, 212071153, 179207761, 2817474227, 1887816680, 3033902459, 2459709067, 3033592380, 14802930, 314870554, 3003639310, 2221726944, 23588706, 837253260, 480819256, 15823261, 3021666700, 67266462, 78641738, 30957246, 18339415, 179554090, 1323909265, 334981900, 1414340473, 2915347147, 2803994674, 2667785204, 2944281498, 490135056, 2720227921, 2958423142, 3051211354, 2708160180, 710941094, 3054478619, 2831756289, 185449401, 233636404, 19059099, 1602678319, 156312872, 529763094, 582866423, 29674668, 164087675, 15785117, 66632933, 2375498185, 43141013, 158170794, 1406402520, 12190922, 517116581, 1533659756, 2955413144, 2803953815, 2837991784, 425408294, 3008191662, 97261539, 1357983050, 2291600264, 160378207, 82265241, 32667201, 146439288, 1726973593, 3052495917, 24916457, 38995726, 17333873, 2197760688, 1450245192, 2793829429, 2954126636, 929000096, 3051216982, 2565135330, 409867957, 1393391864, 185411782, 2763990895, 90062469, 2430956005, 3006410579, 51142608, 262799867, 2850027043, 106850629, 2988849203, 2547033986, 28185061, 3048251224, 2552723874, 2823171471, 378762532, 2506434647, 1686618164, 270141194, 28021500, 22289021, 21464701, 389441364, 2758180931, 86071272, 2339083611, 48431982, 281900168, 3032252437, 19083080, 3000323626, 2360507084, 2154091303, 2840845885, 54371309, 3032022014, 17263516, 2472945536, 2289800436, 3018273489, 363433362, 14329453, 450183164, 355642356, 43007631, 2900987816, 242781810, 1198124370, 9905392, 95940032, 1602084096, 2343065768, 1895620278, 3027919842, 581395282, 132584441, 708104846, 3006826174, 2643045485, 17604527, 82098218, 1038179306, 566923022, 2712682024, 23689114, 2837444800, 3027849549, 617594220, 223113283, 1271178092, 584446504, 12332172, 2547906456, 1324026548, 80976488, 23532047, 2714226648, 1372125216, 377136252, 458107439, 119107586, 57855509, 1117851662, 15188343, 16597629, 16671797, 3030793023, 20524971, 2288926339, 14982534, 35329667, 172215008, 610177189, 175656011, 77038925, 2532362760, 3007139824, 2597259224, 535688170, 629253125, 2978150098, 280383548, 13384772, 1358706056, 5204051, 2476351789, 14662889, 53700646, 88326317, 17551598, 370827550, 2860896641, 2950659885, 26484919, 948689238, 112867690, 96100344, 2392119403, 27390107, 248044499, 3002952574, 300735398, 77690219, 2919531335, 198781495, 2196637298, 19245182, 784167103, 369763626, 282882688, 2812147764, 3006650189, 265852050, 3040489648, 2447798646, 2342845502, 2646387236, 2386468730, 152466242, 2263605398, 14565150, 506865052, 38521391, 369095113, 1598986099, 99749955, 621498278, 23423813, 114584062, 47481589, 3027986516, 1523544182, 258083321, 1261281055, 1446762756, 1463323254, 2969321529, 21612322, 721346978, 215060612, 122228114, 462664693, 17527237, 254678131, 471967587, 2985118486, 411980447, 137407346, 614867166, 2996029682, 75904944, 348652475, 2786170028, 31325937, 1031033948, 468463894, 22966172, 38175716, 268920669, 1254787980, 2804508995, 93679951, 24507955, 1159371324, 1648978027, 246434933, 495417551, 40358283, 576603009, 404152702, 2787813197, 2814250020, 211400182, 889618016, 882574904, 19512637, 146454077, 107382485, 19581801, 15413624, 142179252, 40920400, 940777694, 3010096394, 38330999, 47533454, 1643373330, 3010139523, 477401625, 2969200456, 15907431, 69108987, 2650032241, 1968043243, 615614236, 1334865018, 93869364, 366011411, 1625873077, 2800137077, 611996676, 39458284, 2711050508, 571087457, 102540229, 1072526839, 232606584, 28288779, 95508085, 167010482, 529096338, 3040795979, 14256082, 328040695, 1340670000, 116511302, 308245930, 36813364, 2798898786, 2614272462, 535503968, 2886416602, 29125497, 173571374, 83191847, 1478486520, 3024779072, 3015782116, 2982130845, 1397511998, 69749329, 2349494888, 34354034, 2758869458, 2836373728, 2809811292, 3043147589, 1827606775, 522834247, 3019219778, 1653424244, 31067157, 3012862405, 701240792, 2728189940, 33715192, 26336530, 64777360, 1361211042, 24142636, 956355686, 634015881, 1687280372, 19454670, 2934079978, 1014435343, 2572643324, 3021299634, 1408989498, 2556607278, 174633648, 3023265958, 562183942, 2458759143, 3030959541, 1499757510, 326962578, 2867000033, 69254737, 2782610961, 2995340558, 2865049809, 3022350922, 2612152237, 2736285390, 2670804554, 2987843403, 1631936376, 1119908282, 34311257, 2989590685, 3031700573, 442182368, 2961694548, 439081280, 3013634347, 1275984139, 2462536272, 15939396, 2943165539, 2738081451, 14164956, 2794160545, 2993518411, 3019138690, 2794926943, 14705046, 2935508773, 208037782, 3002558292, 2560716374, 3015942662, 30324850, 23769809, 604092603, 2456816503, 509971567, 3015682417, 2724615798, 208776798, 14998719, 496973075, 3004264907, 28589514, 26691036, 2944826777, 3006450952, 2792749508, 3012321150, 44334649, 14164879, 359230030, 155369800, 287806806, 3022317123, 202479255, 2889797241, 11167502, 2249103860, 35626322, 12447, 3021712811, 224320706, 80395090, 345838923, 3021743590, 85611344, 383368482, 53167706, 3010794308, 3020802449, 3010710829, 133413084, 3020764126, 3020109544, 956111006, 3010113528, 256022044, 2992448810, 1240171406, 2754429607, 1665595472, 1735436820, 3017692845, 2155402628, 39617828, 2757400642, 581130347, 1643961090, 86459685, 3009123115, 2939025434, 182982451, 2260150651, 222451771, 595751915, 16484237, 186528548, 564577122, 259663057, 53426543, 1660200776, 3009091180, 40570637, 392027733, 515836591, 738327488, 199516833, 2939034032, 103228300, 3005814796, 26971593, 2298841976, 1922290662, 430933440, 3005809732, 3002881953, 1408816082, 488867199, 14150266, 34838035, 16023917, 2990632973, 6114752, 2986324961, 2960155128, 19330885, 2391596978, 2873992840, 593718505, 2819572566, 237961072, 2596785458, 24866692, 2676345858, 1517465449, 36610871, 43195617, 2606542124, 57564151, 79337995, 2996456924, 2289744703, 387661922, 1435050403, 1959690278, 1286650447, 2998335334, 293097225, 816556332, 2996581487, 2970798871, 1553678094, 2393425532, 45983335, 2556667683, 2651506974, 205781124, 2994231899, 1487778554, 436678031, 57906313, 37209055, 2910498594, 14294400, 312351978, 43631584, 1152887268, 395086595, 188509332, 1701179917, 832941643, 89000394, 2555180840, 121558226, 1171157898, 323549358, 433839629, 110692972, 54189641, 16423304, 2357582977, 50339969, 2981338268, 2773892956, 14599972, 2990222283, 2988973109, 2272820146, 2989425694, 2965824167, 17425484, 2985758338, 2925751215, 58400103, 2705321185, 2972374749, 422942628, 18733267, 23817639, 2980770683, 2990857909, 1923650426, 2986511476, 216914014, 1035532890, 1978392914, 11221692, 2989318262, 6247782, 24822590, 580290725, 315570064, 2989208024, 2481216923, 2988318554, 29411194, 42276382, 2482368360, 2986955324, 53417974, 105043054, 554719435, 1637225107, 62941903, 2849857866, 2481381966, 14692715, 382752824, 14124633, 41490245, 335979245, 108357781, 94909995, 40544415, 2902169746, 953104518, 1171543506, 2481214656, 2985187190, 760812505, 415872640, 139859050, 129129249, 4197051, 1533172538, 1928818741, 2984788850, 286081923, 2977280841, 26155415, 2979015929, 21613572, 116082757, 322134747, 77762266, 263875085, 18878094, 43332590, 31016565, 824537742, 2296127379, 22650377, 1259693402, 2834535063, 59505363, 2977573521, 2885511701, 2902356091, 558624863, 20214495, 90084013, 2436535886, 291441060, 206817988, 2969824449, 830652314, 2975380403, 2975227971, 162977836, 255990193, 46369582, 14648825, 2957707267, 24510260, 2974805226, 2386885062, 2893017577, 61216275, 2181479340, 2278765579, 28086540, 16977592, 28100891, 2245700880, 257712756, 27500545, 2967670954, 1296831523, 21069606, 15484541, 2966726656, 2942939553, 2967418106, 2647168484, 185744472, 812936059, 2829638396, 179165117, 49889388, 59736969, 21278996, 2963278302, 174556429, 34349331, 23307970, 2569418859, 2962224253, 234946102, 31377922, 2959096116, 217390719, 2194760538, 14380294, 2965190535, 2427174140, 46409086, 2874936701, 2868133069, 202488410, 2787392695, 358324317, 230413321, 20115641, 314750546, 18118882, 391938908, 2213073366, 52208319, 2162524706, 18845327, 105242637, 325567664, 67011238, 11355782, 1244498426, 2921855569, 997740158, 81200968, 25599299, 289717025, 2847581846, 2951558246, 448498518, 63106785, 619194730, 23483965, 32831158, 14928483, 14254849, 2958381895, 82120228, 537862811, 274149738, 2961321723, 2475639841, 23301743, 1609182792, 2951011034, 273371515, 962935188, 2959457505, 2958075897, 51490123, 2789497513, 14586891, 2899558072, 2247408678, 1692107474, 170827198, 22350029, 843014521, 2823318152, 2953946569, 2950723530, 2840757673, 2945537393, 2902087435, 202783886, 1062753084, 2872226849, 2867622839, 311047358, 173798281, 2951343913, 2946132311, 466581588, 122301045, 2684438479, 1382650268, 2769045336, 2847982212, 1306063296, 2933077566, 144563794, 2764399806, 2559051898, 2922416642, 19414925, 2175993318, 497734237, 175552751, 830501202, 1587993984, 2910807367, 358907918, 2410097665, 2890731509, 1518371544, 2828827319, 276682931, 2933190357, 263503, 42493859, 35008168, 2255606088, 213429917, 2521938841, 14643310, 2913614233, 223351306, 2911377796, 1270428056, 2774327991, 2773195296, 1921201098, 88926526, 2686073050, 2822471817, 21604884, 2942276749, 1743498001, 2939220471, 215433360, 719231732, 2377806675, 2934291049, 221904440, 562627212, 1229886517, 2332876501, 18576055, 1529827615, 1173295249, 28373693, 2884608064, 1673477870, 2935648607, 2912327331, 2482803527, 111662541, 4058321, 2935674898, 61243585, 2922710571, 2386076394, 21632806, 1223258106, 1263139358, 47178452, 20180244, 2932331206, 2851541997, 57864058, 38453406, 2935658192, 15653423, 613411307, 2913030695, 2929709728, 17990925, 2929420383, 705221179, 59746036, 317285372, 10692122, 735001075, 320103459, 2926312787, 2926532715, 189039109, 2724875972, 2885619717, 2916611921, 2273772871, 234593357, 475157561, 2877229557, 121874784, 2929121480, 2914114792, 2801067517, 2920196300, 96103780, 2918686306, 1018522322, 16841837, 562029490, 467099237, 2896004958, 2673954810, 2911492506, 24244428, 2918632163, 30481941, 241086349, 906943867, 720090247, 28725464, 2926935744, 1205291934, 54501744, 33984519, 2914335156, 2915131543, 567862111, 2493540325, 354087985, 2180801330, 2716417939, 187681652, 424545499, 2467025479, 1543515804, 2868536894, 703575822, 22526911, 2785120125, 2910785591, 7796172, 11513552, 45143, 2924662807, 15810905, 134779059, 2804019566, 2870745171, 2336508511, 14125008, 480036734, 2915039892, 2808295946, 2911101880, 2911102996, 2911039209, 2760734104, 2902716424, 2911041945, 2911100164, 2911101892, 304550950, 274054752, 2440585238, 23173499, 15435500, 186021388, 19178814, 2922056035, 2813965043, 2155511406, 25029927, 2908361721, 166457964, 34628416, 2835349962, 2907310277, 245176327, 47566275, 37162136, 175295563, 363997196, 17667371, 1963565190, 199476742, 2887831301, 2860875292, 2858040357, 1421336851, 2897616443, 2898961128, 2820148561, 2891489406, 449818373, 384977124, 23701963, 2449427197, 432299781, 299502506, 84543935, 2734153639, 2879774764, 97419236, 1479773167, 492946976, 2338610616, 296823744, 270152664, 385363267, 14379613, 2736082734, 870757579, 82342846, 16901867, 3110991, 478251921, 1110160747, 2496381896, 1361688518, 2530020704, 15899372, 631306195, 115547154, 337663251, 41229610, 870466574, 764750310, 519425251, 70847996, 136169487, 14970911, 873726360, 26666166, 132770483, 306225194, 32282502, 27551534, 47037273, 20271007, 2585361068, 14120925, 2753715921, 2777786762, 113136276, 2915062848, 2858927329, 138840987, 2877913901, 1403961079, 324600867, 2901829064, 17256898, 39099783, 2710174488, 2350503847, 1184169696, 769426572, 2478825630, 2886244545, 23189892, 21191825, 364767188, 2895686116, 2887553139, 888889368, 223805269, 201552518, 1451790722, 15960655, 111140015, 2853955671, 898141417, 231063580, 2892117111, 520835497, 15094420, 18196713, 17795672, 2892417419, 17416387, 2325977071, 12299242, 19704855, 21800155, 16159297, 2836004283, 401635769, 505631665, 501208238, 107448028, 734446782, 16516351, 2891080113, 2889495819, 974586420, 2853261335, 2843084595, 2551064918, 2869806646, 2888539945, 2766105770, 2908399314, 35473416, 135983969, 2906357473, 19119233, 2879774963, 48231291, 315164757, 2853243562, 1514989014, 11051252, 2876357325, 16288392, 2884775193, 16323680, 2885438896, 631113074, 33743179, 153296320, 1683420451, 18346039, 19039053, 2827531823, 196944784, 58424698, 15182629, 10781802, 35028064, 2872677244, 2885216843, 1011967081, 2345543600, 318481728, 425214839, 2295998888, 552389944, 1090900116, 2903911856, 298620722, 41543409, 1516005133, 2589738836, 29064492, 1726894219, 21097363, 3668081, 2883381311, 81077164, 270801364, 77074214, 1518401448, 1534980696, 981127062, 408631444, 141542064, 2864852517, 6782972, 32967317, 22018381, 2861402625, 2560594567, 1726770042, 230439795, 2360634539, 250771113, 290059422, 2892415464, 16001046, 91716596, 18810315, 367526062, 1074364406, 15373778, 2344305278, 10718, 2870163764, 2433667077, 2222133360, 1707480156, 1001318221, 19582372, 948570062, 174591864, 1135280635, 171931585, 35101611, 17437291, 248191440, 19902242, 16585644, 186160494, 2446390764, 1001690000, 2900016211, 2841496870, 18949061, 2874313689, 758370776, 17128777, 2876676976, 2698384010, 607211681, 1010661, 1521398738, 147731142, 490897163, 476048241, 151562486, 6652652, 443763700, 83483164, 2790341762, 2872016867, 1148960264, 2335370882, 16891462, 531291518, 581098887, 1273061418, 2516166788, 2872603463, 1930227433, 60349138, 2854067887, 2888212070, 103453806, 2872815196, 110595130, 2872664348, 2616030440, 410537231, 574647893, 2240590129, 1315554846, 2486238716, 2748659756, 11194782, 1077, 42574506, 143539567, 20129803, 378716437, 2508928776, 204594835, 271481369, 2827705677, 51567663, 339740909, 18059811, 285774839, 14883908, 119940022, 485441455, 53570239, 7315732, 2869949283, 141074522, 23100908, 17807133, 2742299641, 2890424340, 1936611624, 1242217004, 2836949388, 995698284, 2877801380, 393897038, 19498212, 251861049, 2559161749, 63936817, 2446942796, 2441681756, 2437664593, 1452925254, 38539052, 25684535, 2835328803, 99819269, 542185215, 1182897894, 1453904227, 2420768126, 25100578, 270442873, 2892427226, 2440670916, 2367501, 49767846, 21546880, 2821521423, 422801393, 736652496, 10508, 153408163, 1302307548, 2891237118, 2886608340, 14221779, 193044042, 385204671, 2890900638, 2862606533, 87416263, 2889899215, 2858766377, 521191658, 47705488, 2573633287, 215874978, 373891800, 83701477, 36459516, 2827647946, 2442766051, 2446930836, 10241062, 500951118, 2886631878, 42067255, 1929371954, 519149666, 14207614, 2836009090, 2883888048, 2550715640, 408873608, 2442771121, 210684204, 2333691512, 2830961070, 752137213, 2885669124, 28298897, 18028814, 371701934, 353782068, 2886042962, 614831719, 2523472213, 197843128, 1359526776, 15006654, 387947550, 398129297, 122383620, 42088363, 252000808, 77112054, 2556576817, 30279017, 349352135, 21062802, 798933842, 876514789, 704184211, 2486243202, 171313785, 518795225, 2331199484, 2877963104, 23986756, 15808210, 71304536, 2800027542, 219450750, 2800608755, 2831914601, 296425907, 719169576, 2846131193, 2846058214, 2499916716, 1284190964, 2844538385, 247794345, 2358362860, 2866068890, 76587100, 761755742, 416495207, 2275330722, 2859399668, 2663748318, 2826933740, 2796714145, 2530510202, 2758263537, 159223928, 2754591431, 103209258, 199233779, 2842766699, 919444405, 48880548, 1061633870, 2842264792, 1261886976, 22546273, 2842583673, 249964403, 2840334772, 14685794, 2831948334, 306826345, 1169083602, 2794992969, 15683103, 2750413590, 2841254729, 1327583215, 1483563295, 14128186, 2791444776, 36462780, 2435997150, 25979719, 135321904, 14270791, 82515075, 945128460, 2838770382, 206713027, 17211934, 35946147, 2831065058, 76822878, 68433230, 1841791, 2841573376, 336729169, 2190898868, 262974902, 2838892960, 2816021190, 2811252438, 2841166361, 276351217, 344655242, 516628941, 619524396, 215420650, 72863, 2691570584, 14605917, 1142612942, 2800857767, 2839469361, 40917881, 44018210, 592427581, 207617689, 1364972922, 22683937, 429010154, 2507513826, 18914085, 72955050, 78385907, 450975609, 138848810, 319287415, 2713248331, 2690640822, 260256069, 2836917112, 1564257338, 195622761, 18475090, 2418948720, 1176665682, 2679808020, 510966817, 232729395, 2836576425, 154516936, 1038933740, 373522144, 2793293610, 2559258187, 2861756017, 10988542, 2835915496, 45641677, 359260523, 90959713, 27309226, 2325807193, 2861558004, 35416970, 785505972, 2631339105, 2849120282, 1276977619, 249290275, 18637560, 1110033985, 2783893044, 185885313, 2834971791, 16292709, 2447217714]} \ No newline at end of file diff --git a/testdata/get_follower_ids_1.json b/testdata/get_follower_ids_1.json index ef40b6ec..99aa59cc 100644 --- a/testdata/get_follower_ids_1.json +++ b/testdata/get_follower_ids_1.json @@ -1,2893 +1 @@ -{ - "next_cursor_str": "0", - "next_cursor": 0, - "previous_cursor": -1482172157213781578, - "previous_cursor_str": "-1482172157213781578", - "ids": [ - 18568359, - 2823847869, - 2839550863, - 199878349, - 911125278, - 1533134222, - 2796915877, - 1360446930, - 479998051, - 52944494, - 43532023, - 60167411, - 14297142, - 283920304, - 260131861, - 2829805295, - 988263907, - 25522420, - 2842248482, - 380696053, - 2415264335, - 540524295, - 151099796, - 2857394893, - 14303216, - 529035477, - 239694448, - 58232355, - 1325622763, - 1134778818, - 20497223, - 16710059, - 898245151, - 276635180, - 33204198, - 17912684, - 32340034, - 1613684610, - 297753219, - 92043123, - 2832306071, - 138600898, - 51707023, - 38468450, - 2734154836, - 211299040, - 2772793287, - 57932979, - 2832019805, - 622225682, - 221256867, - 2180888714, - 29290821, - 2856735210, - 2354357198, - 732418026, - 1072121586, - 14315230, - 2823120126, - 66950277, - 221551308, - 2856322752, - 1270199574, - 38625234, - 751858548, - 29382134, - 252253546, - 38916013, - 243776687, - 332000656, - 11336122, - 324815308, - 18422789, - 18358444, - 20009910, - 779830400, - 2379218546, - 621865355, - 2269809440, - 1559414881, - 2830384078, - 2299993681, - 2823337467, - 2277585165, - 548401223, - 170888693, - 2795740968, - 2829151055, - 399931776, - 2820436241, - 2752694465, - 2696338214, - 27445371, - 38984338, - 448821699, - 21683512, - 32746632, - 25769552, - 2851051934, - 2338851193, - 549641820, - 460576347, - 1296259104, - 301470248, - 2826514966, - 2430116336, - 14424544, - 31535038, - 1034261, - 627835207, - 48735803, - 2285881968, - 60246036, - 1553874751, - 2835420170, - 47789228, - 610509514, - 2788909568, - 1348078981, - 1015624242, - 1572455208, - 1389844195, - 791855078, - 19335919, - 2822812265, - 2822480285, - 2826294571, - 2720495797, - 77615656, - 2543321844, - 2808110414, - 430196581, - 498112659, - 44817669, - 2821451903, - 80624517, - 293538857, - 24585498, - 2484961424, - 2821205494, - 3470211, - 1446496380, - 563844124, - 2459524980, - 18432670, - 2796381643, - 2600292391, - 18719732, - 2785551444, - 546490238, - 47869980, - 1317158120, - 624928019, - 268292100, - 87703920, - 23912088, - 90702055, - 139100664, - 2607221934, - 1461191600, - 1480056668, - 1559654096, - 589575149, - 257415016, - 280152810, - 16552581, - 502760432, - 14179549, - 609659719, - 57669979, - 342748167, - 17290900, - 187115133, - 526336172, - 211859595, - 1573654201, - 2844904034, - 2844526796, - 159581371, - 2394859615, - 2844125551, - 1102681291, - 2790161267, - 2393213275, - 1335228721, - 81967727, - 2809953320, - 112607888, - 495393145, - 2810491751, - 159600896, - 196753555, - 2842349479, - 2634723838, - 1961970799, - 363496956, - 20895134, - 29492786, - 2834528090, - 373901449, - 2806076121, - 47356472, - 2787107043, - 2317137398, - 1480810092, - 2815297027, - 174705313, - 1843315560, - 1421573755, - 1183863920, - 18093468, - 17257377, - 2801105582, - 164930478, - 2840825263, - 2806474113, - 104358108, - 2816557555, - 345486825, - 1459604220, - 80875548, - 2803371855, - 2189069474, - 2802930640, - 2348465666, - 2559623516, - 15176366, - 17171256, - 58207999, - 201226517, - 54625210, - 2839231058, - 72921871, - 2800367080, - 2632347730, - 2515113172, - 2781283225, - 20856288, - 2217925311, - 2827303645, - 2298986155, - 2615735222, - 15235815, - 2789960801, - 31604330, - 2615954263, - 48125856, - 2395487703, - 157948933, - 16720037, - 295428790, - 1330406438, - 20404593, - 49635206, - 611933904, - 2569738319, - 106614991, - 44290970, - 2827821955, - 37267535, - 15009098, - 17816618, - 2614300664, - 1673665117, - 159402233, - 24790186, - 233100852, - 10186262, - 279881044, - 88807478, - 24117694, - 24532138, - 26137372, - 138632867, - 19941017, - 1516978052, - 489610627, - 37864507, - 2462260734, - 2715302191, - 372018022, - 512747125, - 14537861, - 389355548, - 2595535086, - 268192580, - 68408717, - 598699854, - 17846006, - 8220582, - 23909853, - 8942382, - 18078750, - 183340224, - 2440322860, - 1603406131, - 24289307, - 780810121, - 21504296, - 52790027, - 2786993913, - 1520090178, - 2827249903, - 24208510, - 2544284383, - 59860037, - 63733459, - 788392706, - 1171788037, - 179855653, - 17605831, - 14651109, - 2288778698, - 18046664, - 922297656, - 1070026254, - 1482961735, - 20925919, - 202860226, - 957353786, - 102237401, - 452909578, - 18534908, - 133372189, - 1153104685, - 297512398, - 448788827, - 197626927, - 16619151, - 599395507, - 1160875688, - 31331503, - 595860782, - 259475003, - 2550901051, - 434684341, - 588854016, - 7632252, - 26608146, - 292511193, - 2643280777, - 160667591, - 2794063024, - 1235103067, - 20136687, - 145220626, - 41339466, - 1625315640, - 25033260, - 374978819, - 20478920, - 5714432, - 329140042, - 2835667015, - 2412316315, - 2522522892, - 535187711, - 16661080, - 2797052675, - 166227822, - 137124029, - 2578947127, - 24718591, - 42844321, - 44144629, - 2793709727, - 2341587819, - 145350228, - 1080695552, - 88957553, - 2588793822, - 219606488, - 2407627944, - 2797126742, - 20761504, - 715945646, - 67429947, - 560142646, - 2835652184, - 15171447, - 1093802287, - 91871482, - 1972612118, - 414989367, - 2218140914, - 1244238200, - 266099423, - 705682638, - 23483816, - 19414296, - 2745443067, - 279727055, - 11488732, - 18010512, - 435472450, - 1730879610, - 68796392, - 261043346, - 2730476162, - 316479545, - 2830654146, - 2829226112, - 2790768332, - 2789924236, - 2391813894, - 2833421150, - 37928291, - 2834905153, - 23633699, - 1639471914, - 38483694, - 403509817, - 2787303099, - 402798942, - 2786342626, - 2796472362, - 2586505778, - 22906563, - 11744792, - 527793302, - 2191658713, - 362161896, - 1948471159, - 318697688, - 2418833034, - 41629905, - 263615863, - 234342779, - 15625348, - 28220602, - 1860106956, - 2833033147, - 340127057, - 21643763, - 2688341785, - 16799897, - 139810606, - 362540066, - 19517352, - 305156995, - 1473070387, - 409211318, - 19298381, - 8069042, - 15566111, - 226751441, - 1650891613, - 86782347, - 128924193, - 2786171263, - 18599180, - 1103468076, - 137756415, - 270552993, - 505163906, - 23626419, - 84350207, - 56730995, - 884234023, - 516145687, - 237197075, - 54677967, - 2785047291, - 2573738899, - 166223139, - 1685312060, - 18867397, - 348582052, - 24629249, - 2772578862, - 193152686, - 37868094, - 1869951139, - 2188221928, - 21911231, - 35892267, - 1446772334, - 2697302850, - 809573960, - 29370598, - 1107684811, - 405855200, - 13308502, - 2334056136, - 23966825, - 169760495, - 15826099, - 14793972, - 17936802, - 472561623, - 41469352, - 164165558, - 295572924, - 385027140, - 237477424, - 143920412, - 13986542, - 1454970649, - 425954534, - 449408836, - 15603207, - 32709070, - 109473730, - 56163585, - 121312918, - 2225320566, - 230392924, - 2797884852, - 14393629, - 124064640, - 164735315, - 322855395, - 237439292, - 2329554289, - 2825779441, - 2369354924, - 1949935303, - 2829922064, - 2601329148, - 2829042818, - 116035499, - 21603597, - 2827696087, - 559068947, - 267365383, - 374849822, - 2360882965, - 271262680, - 2827028180, - 2719863120, - 2794495520, - 613467318, - 15305487, - 2444537593, - 2778795425, - 2796398178, - 2724683069, - 2815700491, - 2674861855, - 71552780, - 42955897, - 16814845, - 2820451123, - 51278095, - 30161210, - 461977120, - 18358746, - 18771668, - 315740771, - 343745990, - 2814376982, - 198978324, - 2170341715, - 176499073, - 1425500808, - 2474688422, - 2161527751, - 28730785, - 2562452208, - 2796853410, - 2275408650, - 391715920, - 779487338, - 346425691, - 2813795371, - 2411151546, - 166558442, - 118679396, - 343600277, - 44160296, - 347528892, - 2734830913, - 211200011, - 2816041153, - 2815421539, - 2814990416, - 2814667728, - 297877342, - 467906528, - 2763424192, - 2813461118, - 2813601900, - 2234556787, - 2595250914, - 211912180, - 2805352184, - 2619128761, - 1463053164, - 19175461, - 747994790, - 2768975130, - 91147786, - 149251110, - 2690800316, - 53580967, - 37274550, - 15365191, - 2283959404, - 609249913, - 86053605, - 318136026, - 1407544956, - 2770912749, - 189400722, - 51622556, - 815200027, - 473514230, - 23674153, - 539533382, - 632731979, - 16526290, - 2807791944, - 2282950939, - 2810265475, - 10926482, - 719137700, - 1918828970, - 749054930, - 102826993, - 2736894074, - 2808934196, - 48926855, - 413639108, - 2334502237, - 2706967615, - 617157232, - 49569990, - 2806976882, - 2767548208, - 316145842, - 23694218, - 2805915948, - 373205943, - 216547218, - 2804154062, - 15247707, - 2494126831, - 1130827783, - 2803370018, - 2801389358, - 2612775626, - 293946984, - 333741449, - 43945838, - 133491839, - 503448617, - 2318148162, - 12884962, - 43507230, - 15374401, - 1352827063, - 127039728, - 189220827, - 369134510, - 434159866, - 284252856, - 546601496, - 14520151, - 523707157, - 1898968964, - 716044325, - 2190662922, - 84276693, - 2517554893, - 20120026, - 2735836879, - 2389784060, - 2780922552, - 39302631, - 16853703, - 2764897681, - 1249738825, - 19958283, - 364924424, - 1075634689, - 2752399815, - 20826603, - 1070990102, - 2774622224, - 81900177, - 551464747, - 352540750, - 14965452, - 282713969, - 23694908, - 6249592, - 2218601431, - 17672969, - 482508683, - 862124204, - 461562633, - 2760652779, - 2670555026, - 2772726642, - 7714582, - 22519059, - 155069105, - 2193260102, - 18216595, - 1289279280, - 17687811, - 36962286, - 2792543972, - 2789119513, - 2794985011, - 16001436, - 218319700, - 2782398194, - 2357767188, - 99972221, - 2455554486, - 2675959123, - 20571632, - 2375510011, - 2464406311, - 362686824, - 311921651, - 319788957, - 1884195997, - 40337575, - 2790482083, - 64539883, - 138023348, - 2788450092, - 745017110, - 2586880063, - 619561286, - 20118360, - 2650275548, - 2698862124, - 2245717093, - 6967252, - 565311756, - 738389792, - 30678826, - 2773653883, - 701942162, - 2784595704, - 2446689355, - 476168077, - 1895549834, - 987940356, - 862741, - 1694140094, - 277614688, - 2786067643, - 8152282, - 2785593595, - 1506415273, - 2785209373, - 2479567805, - 2584076258, - 19153412, - 2569586880, - 2646232100, - 2312918584, - 24573898, - 2562626496, - 247912093, - 18782014, - 113439399, - 1862729762, - 1756194752, - 2784134220, - 21203159, - 2678466708, - 2757810981, - 170334802, - 2783050436, - 64798553, - 2755089226, - 39554440, - 2781005310, - 15625306, - 265593408, - 274221086, - 2367294686, - 79318615, - 2406154140, - 2756158029, - 165594353, - 1954779530, - 2779286119, - 25943077, - 2755966328, - 2742325799, - 2704125049, - 14976414, - 2172848574, - 78763833, - 389290240, - 1166763595, - 24474711, - 21963333, - 26983168, - 15633197, - 379359783, - 2543656170, - 2557784790, - 18735583, - 15638249, - 347820023, - 2779074906, - 138303403, - 2312661420, - 623180116, - 140146910, - 537663746, - 2744353104, - 790136479, - 353223301, - 2252034330, - 2759423707, - 71532748, - 350350059, - 85911526, - 1436657857, - 2389174966, - 1300866318, - 245988192, - 2751316046, - 14233615, - 557481051, - 581580986, - 2736386280, - 520031877, - 389743109, - 608766855, - 24845678, - 15847618, - 158448184, - 1426933968, - 19079820, - 198144079, - 767954088, - 498420834, - 107759956, - 263998640, - 55933729, - 374396172, - 75883309, - 820818900, - 31393537, - 15682966, - 15574614, - 2459879664, - 2715335646, - 4036281, - 14427357, - 277767225, - 328027297, - 14974257, - 407813532, - 57083714, - 271577921, - 231037233, - 18231685, - 570873281, - 2777348509, - 23170025, - 2744187012, - 414188706, - 1184566195, - 206674043, - 992871366, - 1249420140, - 790254542, - 2361832832, - 353299852, - 2474665615, - 2285911154, - 621699337, - 44176460, - 2484768164, - 1317841987, - 8565052, - 955936165, - 330241070, - 43871358, - 104203730, - 223823338, - 2739208022, - 2610508676, - 18852254, - 477832066, - 32849947, - 2184347418, - 2775581083, - 412057292, - 2772000350, - 1428614076, - 133938278, - 18669375, - 14467069, - 1274232541, - 259136493, - 64326902, - 186007705, - 273922013, - 2767992337, - 16906916, - 2772074791, - 2440660196, - 2666365909, - 377480575, - 14166498, - 22972233, - 352362305, - 2651090730, - 60124477, - 284893451, - 2355204164, - 2760841170, - 2332585826, - 618396048, - 2584729154, - 1888491786, - 2766531427, - 1018212084, - 114529734, - 164304841, - 15224379, - 2198365328, - 1245061093, - 2201873430, - 517788125, - 477865564, - 1370684204, - 1857573672, - 2460921914, - 127977167, - 2720762509, - 14714836, - 2661153200, - 41862279, - 1445645858, - 306724530, - 243835234, - 118192603, - 2252719814, - 50930070, - 41837013, - 405388713, - 46052163, - 23200692, - 285598087, - 2758860524, - 333093895, - 2742745638, - 1650318440, - 2388908886, - 14440339, - 2156117256, - 505389009, - 33274384, - 16271149, - 2508480482, - 619354467, - 2582875752, - 430187052, - 15164220, - 18474300, - 24895869, - 568510920, - 2755210590, - 146885274, - 1405071, - 341364098, - 117278501, - 330167214, - 2409752617, - 291814511, - 2752445683, - 749739464, - 55107001, - 14285735, - 54223853, - 55608270, - 14911029, - 1010437962, - 9974372, - 181697017, - 15393788, - 137929515, - 18583083, - 406525651, - 2754036698, - 573754692, - 803090426, - 17140823, - 540394406, - 19982498, - 14418724, - 402261290, - 22530590, - 2445607094, - 465620301, - 2665116800, - 1659201, - 19007577, - 184545059, - 19847566, - 43239844, - 62235793, - 730453802, - 836517948, - 14089431, - 189431426, - 250578280, - 243400445, - 40631172, - 322463395, - 2477547035, - 10078422, - 995731112, - 2464208425, - 487604696, - 1040175516, - 15963386, - 16552239, - 18004530, - 156657418, - 424857366, - 35254319, - 153262029, - 2546859007, - 328611618, - 203023614, - 1020091452, - 2339831028, - 8478582, - 22239433, - 425224057, - 2746693272, - 235649250, - 2157007225, - 15797540, - 104007074, - 401599387, - 2408136302, - 2745998273, - 1320846386, - 2540307553, - 2743612106, - 853252945, - 2746650274, - 2736048703, - 2388635942, - 716901834, - 7950832, - 12711402, - 44511188, - 17365406, - 2742122160, - 23367208, - 30325429, - 55209895, - 2728217304, - 38079312, - 1916211085, - 1159872481, - 346045816, - 1880332644, - 1403138772, - 1386133669, - 18698010, - 191603616, - 1365858114, - 18084770, - 2737804538, - 30832553, - 14507653, - 2593720020, - 33749281, - 1530104942, - 2694987546, - 2562096336, - 2743975427, - 2730661022, - 13256532, - 563455650, - 1960901594, - 296771506, - 416590913, - 2706603351, - 114363135, - 120797730, - 40442636, - 421086412, - 140264272, - 42689691, - 2540470963, - 29102194, - 707720431, - 1955384041, - 381207684, - 627431735, - 1487903161, - 172232642, - 88501703, - 1684011330, - 2678116076, - 176232098, - 2213566399, - 2416444807, - 178552728, - 213396877, - 41421889, - 171166150, - 1675904221, - 2516904919, - 177640959, - 52706126, - 2728897129, - 201142601, - 539369116, - 2491831693, - 2728185374, - 1056204344, - 19362134, - 632498676, - 1325376901, - 2575616976, - 58166620, - 1587499219, - 353127563, - 7614772, - 153351973, - 135505973, - 192969516, - 2190871614, - 2296345087, - 580578314, - 2483907840, - 2374474646, - 149181077, - 111773731, - 34193506, - 19682351, - 205523, - 1705876171, - 1315760318, - 26367916, - 15951773, - 223634769, - 417971198, - 1126955250, - 16714303, - 796871671, - 314203800, - 51881510, - 83542391, - 633693696, - 130976595, - 42961724, - 416385191, - 2264910530, - 25356272, - 69949181, - 3189061, - 14275077, - 369331993, - 18494350, - 271503699, - 371569704, - 1202174035, - 2595637693, - 2203392391, - 16185559, - 1563584570, - 754001083, - 20287447, - 928214652, - 2648345423, - 161773182, - 1487494208, - 513494324, - 41709199, - 515710795, - 417433623, - 2184378296, - 2726391349, - 1874374662, - 140487542, - 278024105, - 21985645, - 90354464, - 17141951, - 14576102, - 2529884293, - 2636418896, - 1345404096, - 477969629, - 253338660, - 39393397, - 39334284, - 21441402, - 15375238, - 40613184, - 61661397, - 155674591, - 1297561728, - 2725346635, - 129603074, - 17261176, - 23296680, - 281335023, - 7081402, - 109402115, - 23843670, - 2484599173, - 293165658, - 171598341, - 86637908, - 55101855, - 720795487, - 1860682938, - 1902560558, - 30193706, - 21902337, - 1305940272, - 1871931018, - 28897401, - 201893567, - 20544252, - 533168885, - 2724865027, - 2720611602, - 133413674, - 1306372550, - 545052081, - 2471422034, - 1847879149, - 293719533, - 79837418, - 998625380, - 2654652751, - 215867898, - 2722518686, - 330004048, - 363074116, - 2508238046, - 1499076764, - 368079476, - 10314482, - 500947092, - 66910833, - 2718897438, - 2335477148, - 8464392, - 8174142, - 188861654, - 1252917522, - 127587991, - 6221802, - 564828430, - 83977254, - 37375210, - 23145095, - 811508882, - 2610573289, - 266465052, - 14270103, - 1855274048, - 482632594, - 2648739217, - 53248456, - 39038706, - 14324058, - 1564501430, - 43730299, - 1596801914, - 875466372, - 248331766, - 25966281, - 90961345, - 2454147619, - 78987648, - 323856815, - 626035759, - 32794572, - 1447458510, - 1468247234, - 25159222, - 17766237, - 362286999, - 47140658, - 615157718, - 66315620, - 159399943, - 2548127498, - 1443296388, - 2655679556, - 59736882, - 2214059922, - 170023430, - 396216027, - 39591100, - 20512260, - 16038438, - 2722979426, - 95837739, - 298675832, - 32181724, - 88300376, - 376889399, - 44307660, - 2694407370, - 71169680, - 2739178019, - 20598707, - 2704742346, - 1661060293, - 444879320, - 985840968, - 51757505, - 2721133104, - 2602425530, - 221156318, - 1081813736, - 263910676, - 25799828, - 18871292, - 2659973851, - 1266825842, - 1367124774, - 2718065840, - 242681127, - 2163201726, - 2462926086, - 1953316428, - 515074073, - 1641964513, - 2707334143, - 82706463, - 2592222883, - 67834235, - 16343073, - 376364850, - 2659957592, - 2511841164, - 20956102, - 359913776, - 1389316104, - 2708940194, - 15660281, - 386261226, - 319387069, - 219969684, - 61525167, - 476923690, - 64289634, - 151321610, - 1970442408, - 2386345501, - 2682815786, - 204934966, - 27174184, - 15352541, - 2691277934, - 552345433, - 34188766, - 15160493, - 552534666, - 2728532765, - 1919612864, - 592285402, - 5384842, - 2433344467, - 276648737, - 152768151, - 1575952254, - 333519470, - 26897807, - 424642818, - 10776942, - 2330496392, - 1960217425, - 1463590422, - 976520714, - 581540879, - 61368299, - 1357276346, - 1206441060, - 2659237424, - 1645385010, - 869779124, - 30141363, - 57735964, - 613744236, - 2704319934, - 2714019576, - 166302286, - 1262083081, - 42267812, - 753196232, - 2707907491, - 293934083, - 123659595, - 117891523, - 1621028173, - 2371538304, - 2662105630, - 1057080500, - 2712853758, - 17656320, - 60708321, - 322906028, - 48577626, - 2671232269, - 966420366, - 1849731313, - 242923569, - 214186777, - 43806137, - 61260031, - 1368532135, - 1388186162, - 46862522, - 851951478, - 2655199159, - 13096002, - 720979458, - 2515491794, - 302718940, - 706340208, - 509746957, - 56768257, - 17093474, - 2414282990, - 1906945130, - 2829401, - 2712480206, - 98629768, - 14642018, - 1265342706, - 16189782, - 19258078, - 276768282, - 2501888752, - 47472277, - 2187249588, - 334400134, - 478845002, - 549641532, - 310454056, - 473920073, - 18123635, - 113095705, - 24099592, - 314358874, - 10395252, - 1534060080, - 322629367, - 325724173, - 2507651504, - 30863042, - 168212951, - 164052868, - 219326636, - 88965760, - 64849223, - 2190983210, - 14277842, - 1561569042, - 271626280, - 838808077, - 619453691, - 1656969884, - 219251193, - 76455374, - 327165636, - 2689512648, - 2694211387, - 2707563084, - 178932440, - 1430616829, - 120216905, - 2459486610, - 58092414, - 22215175, - 51186345, - 14224219, - 2204042821, - 2654534176, - 39800178, - 2707402652, - 153885804, - 221635888, - 14205381, - 731680370, - 2678324630, - 808484690, - 2608844076, - 2444329771, - 47016641, - 2685647396, - 2365243866, - 1618566348, - 1314263486, - 164700688, - 222875678, - 58189396, - 49681635, - 872342575, - 29984657, - 47901131, - 375753109, - 69474498, - 630860233, - 832195032, - 2238958711, - 197836686, - 1872257166, - 1719041336, - 1328250686, - 123895213, - 2439358794, - 149617382, - 44024932, - 23418551, - 14965072, - 465638609, - 1048828368, - 2443852184, - 16900307, - 241650466, - 40066316, - 16557958, - 2664867336, - 42308266, - 198622157, - 16273538, - 28344264, - 27381972, - 2606159809, - 622462907, - 821963496, - 2394862452, - 97261937, - 1066348939, - 18218285, - 504030526, - 2459028175, - 49559732, - 14220906, - 71884737, - 2164138496, - 162221379, - 21188880, - 42886417, - 259501233, - 2232085308, - 105669760, - 812014932, - 862554678, - 2364479462, - 28413032, - 12021482, - 904897332, - 300004306, - 427877098, - 199599505, - 300073650, - 1925825300, - 30355945, - 168167924, - 326421640, - 277334494, - 2693877985, - 184194569, - 2691441066, - 29474607, - 1370542062, - 389313658, - 19873102, - 49166931, - 22838331, - 21297371, - 140569066, - 262350410, - 1619409679, - 2628282949, - 600716597, - 44275337, - 15618553, - 2230406251, - 2566328594, - 252385048, - 46373148, - 53605520, - 17875859, - 2282512646, - 571032274, - 11427402, - 2495269099, - 113254439, - 9633042, - 74387626, - 25772203, - 43587056, - 2431154844, - 595577496, - 66783872, - 55674812, - 286888568, - 470997704, - 322964867, - 315241974, - 1067754662, - 73730765, - 2457100946, - 173313184, - 2457189276, - 142409621, - 146946913, - 65750169, - 159508633, - 2541504619, - 15136577, - 313631586, - 14447867, - 162044862, - 28370604, - 455219790, - 872251, - 2206283359, - 17635635, - 18733337, - 1329845642, - 6328882, - 1564382160, - 1258804357, - 90697018, - 1688518602, - 2296800073, - 2481880087, - 226424298, - 14628009, - 19021299, - 2602686457, - 355802789, - 133970507, - 414157081, - 2456521471, - 1757800921, - 35094531, - 297799785, - 102211070, - 50748729, - 40698468, - 1972114321, - 304672487, - 90292509, - 248037563, - 602519741, - 21315633, - 176276688, - 45953084, - 63745717, - 182191771, - 1452150655, - 2401096388, - 490828190, - 1016664894, - 1296543859, - 36944162, - 15384463, - 83906194, - 106624470, - 20398907, - 14057669, - 228624732, - 24397364, - 20637608, - 1716865688, - 300116808, - 383330020, - 1100326518, - 55397130, - 32032000, - 41930388, - 2691351414, - 360129945, - 95820486, - 2606040210, - 14324319, - 2602742437, - 2161863914, - 73900007, - 382879519, - 18404955, - 20744951, - 1302649411, - 21150522, - 740761610, - 1253557843, - 1947934442, - 343321593, - 117026889, - 22563093, - 14969388, - 194984772, - 2281896007, - 115580069, - 2349502914, - 1671279828, - 1695528990, - 75170018, - 17496615, - 24612874, - 10219982, - 2490884160, - 2455491403, - 54691370, - 546453689, - 309561393, - 14591228, - 80164956, - 135107349, - 389027282, - 2682977401, - 24719584, - 108399156, - 233291892, - 1584710622, - 2384055826, - 177536523, - 196889003, - 83158659, - 449252624, - 2246764032, - 109102126, - 389609859, - 67656899, - 19074827, - 561188271, - 317128282, - 2673745314, - 2725805021, - 62775756, - 85414881, - 260553216, - 2651355451, - 19322309, - 18817547, - 259809972, - 346682225, - 512712265, - 25362763, - 170028171, - 45416789, - 628412465, - 2355462320, - 2546393202, - 339422214, - 71383220, - 87407374, - 375022391, - 2356845396, - 337437366, - 199429505, - 356900641, - 479980633, - 4791371, - 61258803, - 1514098375, - 805553970, - 2649541033, - 1306876946, - 17358032, - 17956368, - 264356595, - 540022897, - 14193454, - 627801443, - 346208400, - 1561922294, - 746705971, - 2488586072, - 431157550, - 242242379, - 2663955350, - 2518829358, - 9452312, - 154420293, - 1627399644, - 14946104, - 24120959, - 423706076, - 20113944, - 66951315, - 38515332, - 1009631790, - 883283184, - 1621588117, - 24028758, - 1338813834, - 10681832, - 258929128, - 1735601672, - 2435036665, - 169448683, - 2722578298, - 130954977, - 14937325, - 168532759, - 138201468, - 945038623, - 650543, - 273664943, - 2692486733, - 631221037, - 2471579924, - 365700772, - 2239677247, - 61064212, - 461579314, - 2591883163, - 142457170, - 1378251055, - 19904900, - 863395488, - 232340874, - 25717930, - 83314648, - 2467922382, - 2455079965, - 80705350, - 49033304, - 21848257, - 483188742, - 2419610018, - 207663883, - 36076005, - 34986535, - 2341171171, - 339324752, - 550578863, - 2651361980, - 9520652, - 139536589, - 1103509506, - 401559926, - 469768967, - 286905306, - 389576703, - 2670868538, - 22741415, - 321521970, - 2662975860, - 216838324, - 968467866, - 1315350870, - 2398678404, - 252188600, - 537094018, - 1293953923, - 43389994, - 15748723, - 148067819, - 26337889, - 880121748, - 1686225554, - 2667991266, - 246039958, - 2280498614, - 522731421, - 13970412, - 14408460, - 2151078410, - 14547927, - 2482861177, - 398653333, - 1920626647, - 25563025, - 1423415617, - 1216611206, - 192108526, - 1678965668, - 975242286, - 2526555865, - 37522084, - 716590457, - 2655995072, - 297991754, - 198574548, - 9444482, - 382191537, - 343395430, - 19763493, - 15417896, - 23808177, - 183727699, - 21688507, - 595431054, - 23751769, - 7157132, - 753935047, - 1313751602, - 2493594150, - 1967409835, - 22775788, - 1183814022, - 376694822, - 30337027, - 2667942356, - 2528577890, - 39282415, - 2667713678, - 245656043, - 2615726112, - 19221717, - 2664737852, - 7142292, - 14702929, - 194662573, - 2531350702, - 2230733624, - 94778974, - 1182108536, - 394483029, - 858602006, - 2597261568, - 2612539188, - 2348901806, - 194588779, - 305905982, - 9675812, - 1534515074, - 2582772392, - 1293761300, - 379542112, - 29735258, - 177711354, - 1325851112, - 2718100751, - 2651654958, - 14293333, - 48846301, - 2658823412, - 18849232, - 68472064, - 1186941451, - 1647871290, - 114039485, - 137554364, - 2579315784, - 87143187, - 158689987, - 2382998546, - 1321061760, - 19915883, - 31493420, - 19157786, - 35528160, - 131069394, - 445051365, - 2617623638, - 19277132, - 138913425, - 259858898, - 1523977796, - 2540043996, - 2641478448, - 472022132, - 25376226, - 152361431, - 714654367, - 945507625, - 334755135, - 920729388, - 2653095608, - 2570340362, - 16977093, - 2590307072, - 138540830, - 1391311716, - 19805969, - 18965053, - 2223824328, - 399075181, - 120478433, - 54966626, - 50270961, - 2432320897, - 598890477, - 373472378, - 1317226842, - 2471162173, - 197957446, - 112072814, - 935038645, - 14270527, - 860948431, - 2249874505, - 72459829, - 52565373, - 141250520, - 25661789, - 167105561, - 44671378, - 2593747736, - 180523367, - 58582135, - 187237087, - 28980447, - 16447552, - 393033243, - 14050073, - 199771301, - 25179455, - 1023440202, - 793629, - 2650214929, - 1644416010, - 144799984, - 45944057, - 2271911297, - 1058879185, - 2588142726, - 263830231, - 2598460208, - 20458886, - 2353984898, - 15859947, - 1480564873, - 1894645940, - 2547687382, - 902935909, - 285904557, - 245232063, - 105268129, - 2505246548, - 1711752937, - 2387653381, - 17266393, - 15003854, - 30839761, - 12068862, - 371446737, - 51718518, - 323977774, - 554181596, - 419073547, - 2357912953, - 2252152256, - 170082980, - 26983898, - 1561138874, - 146948684, - 2393429594, - 66626468, - 22958268, - 726917263, - 2204095723, - 74774518, - 203983655, - 14135009, - 34310651, - 1979492497, - 1311423618, - 2514123998, - 14519171, - 540259168, - 2398308211, - 512563826, - 1323841742, - 73443199, - 100427786, - 182203607, - 80497970, - 83880850, - 5960932, - 17476953, - 14570615, - 9297422, - 39182523, - 238186152, - 28828310, - 329826779, - 279707264, - 797586168, - 706833, - 1929558566, - 9637982, - 14518661, - 314645422, - 17064600, - 323982384, - 2429943578, - 15889451, - 415818433, - 2218009256, - 16617676, - 287816898, - 2466189944, - 379277633, - 243881425, - 48744731, - 289222942, - 2469324030, - 216594284, - 2353045298, - 18915582, - 345326776, - 275387273, - 619532406, - 119333280, - 182267933, - 2557221630, - 2541979477, - 14176297, - 14257102, - 507709379, - 2512924266, - 1328500530, - 363792365, - 467458488, - 587229400, - 158948552, - 2394903662, - 17461215, - 419933252, - 1423593175, - 296361797, - 93603692, - 166482876, - 2374443600, - 285207574, - 2239872086, - 153812241, - 26408804, - 58747912, - 618561152, - 404402995, - 20087429, - 2485264719, - 2616550338, - 1458459194, - 62215778, - 1327618698, - 19394222, - 2584702764, - 518495199, - 71862367, - 16972422, - 1476060205, - 2603613312, - 1196493648, - 17946886, - 59832288, - 2233002794, - 14103333, - 73437395, - 71077029, - 16971994, - 1419723512, - 516150304, - 11919982, - 8654742, - 22143460, - 2276894183, - 321972287, - 16545241, - 186535932, - 2610397711, - 275443776, - 20428342, - 14283, - 1566024031, - 423732228, - 20701751, - 38416252, - 121893735, - 180707654, - 100930949, - 728852354, - 2294508330, - 1677983000, - 412961881, - 14094087, - 132715701, - 488527927, - 2300372934, - 146879938, - 180001973, - 164183695, - 658353, - 23783361, - 190642026, - 21861033, - 48597549, - 1849076732, - 221954369, - 410337616, - 45226660, - 2607690103, - 2597073091, - 6289602, - 26431749, - 195980342, - 54222239, - 784654188, - 18545296, - 134944041, - 287736439, - 55472734, - 2587881218, - 1876700131, - 278378678, - 2399298680, - 428285839, - 1421495196, - 2327932093, - 428586673, - 2596792590, - 2588582684, - 2311063871, - 2558735024, - 2330643800, - 425748911, - 117037734, - 2457172872, - 24118055, - 2430014127, - 14124531, - 16600919, - 72864589, - 349111085, - 14075459, - 41020268, - 205512496, - 18306174, - 15911001, - 14123822, - 828330613, - 17300006, - 93702963, - 43933796, - 434521127, - 24920970, - 2590780058, - 539367183, - 241814731, - 872352396, - 227844938, - 2423388787, - 8146732, - 15963621, - 2560133702, - 68080192, - 467035507, - 1321463336, - 271760428, - 16823185, - 28390663, - 84121085, - 956741323, - 1122321800, - 18353790, - 37175995, - 709674980, - 14979502, - 946476872, - 47489753, - 5398712, - 1943293668, - 2459610476, - 15184365, - 2290239343, - 1905351968, - 279328072, - 15388908, - 534512583, - 95490352, - 15247075, - 1463514306, - 2196509533, - 15508710, - 1975911048, - 702140414, - 25725991, - 705547586, - 192537546, - 108384288, - 14149195, - 1686580998, - 929500184, - 586960829, - 359049148, - 460045442, - 2478592622, - 18400880, - 14850976, - 700166761, - 21315223, - 27754962, - 146476339, - 2466393715, - 15008299, - 1652809586, - 207363728, - 18436517, - 348253260, - 46490602, - 290767045, - 36211517, - 15799638, - 59015705, - 2557066082, - 16084074, - 19008092, - 67727170, - 2553383520, - 1063368420, - 157415921, - 299277303, - 2589715470, - 1317062689, - 1887418189, - 154600577, - 66793179, - 297597945, - 35780946, - 1935698418, - 122770149, - 6728202, - 2417417542, - 80490999, - 39659968, - 2588157906, - 24334685, - 344804107, - 43570256, - 35333511, - 21061331, - 120110703, - 109980052, - 2407432598, - 3547541, - 2576783088, - 43934803, - 266579945, - 75702759, - 1877097212, - 251749414, - 39818652, - 393625868, - 10950902, - 281402189, - 1965276631, - 173944243, - 15944443, - 41956407, - 892593686, - 1080731636, - 898057044, - 20370620, - 523992088, - 866151799, - 281766910, - 227607070, - 214589613, - 23987473, - 24028993, - 946735310, - 69436133, - 2206379252, - 34959491, - 857351089, - 342973027, - 237189472, - 524735735, - 2497625335, - 10877042, - 2565563960, - 18696645, - 29529993, - 1313849245, - 2569371716, - 15847812, - 24578981, - 14466944, - 1969179680, - 1949408102, - 407781807, - 14936894, - 2370716922, - 1346677092, - 84494022, - 1729297056, - 84115491, - 1442171222, - 194623261, - 84315849, - 2233895142, - 2174732226, - 1854958933, - 1229040684, - 28736554, - 408756176, - 1044009930, - 105036629, - 1460609414, - 16215005, - 310003049, - 1139393827, - 2275311773, - 1303840880, - 2606740767, - 2606682935, - 2565419640, - 2175903210, - 2330092076, - 61530307, - 41213396, - 549691250, - 2548940546, - 290849742, - 1323419287, - 972169508, - 11633922, - 1562048400, - 9839942, - 71560321, - 276645875, - 14218312, - 77850269, - 223531202, - 365541890, - 618000884, - 2545361996, - 61105459, - 709226545, - 1935416203, - 21859847, - 2411176880, - 127973599, - 267552909, - 774787033, - 25964854, - 719557237, - 16150862, - 15773702, - 20517459, - 14988726, - 493510825, - 1049416182, - 2554595748, - 1872308552, - 96619783, - 708407923, - 300179866, - 1688826986, - 7860742, - 51361823, - 310878807, - 235725132, - 785549562, - 1113417679, - 1383519978, - 2553588254, - 1938963433, - 362288286, - 23931563, - 230878877, - 68816714, - 14304857, - 1048264458, - 18943008, - 753923, - 123051486, - 2188704360, - 97778856, - 740794940, - 144261432, - 944931924, - 14440333, - 31339090, - 168911485, - 28490696, - 23232306, - 2386659212, - 2266386187, - 41418974, - 22411342, - 24457403, - 193144020, - 79585051, - 730752631, - 7872262, - 1392874286, - 1672639050, - 558043957, - 823913874, - 2518616341, - 42588875, - 1519747244, - 222960237, - 1853410285, - 5974052, - 375715200, - 1696628040, - 867685734, - 480201901, - 947288522, - 282193995, - 141254391, - 45887280, - 234559410, - 2167455536, - 23823744, - 1065921, - 98478615, - 257590207, - 2533639680, - 14447391, - 37518916, - 361693804, - 1362628230, - 511310897, - 76056199, - 2351628565, - 41331276, - 22788856, - 973366099, - 1263218845, - 1259809430, - 22321640, - 15316059, - 410077695, - 25606277, - 186215014, - 21134767, - 30446608, - 231251370, - 811530, - 96007068, - 46331074, - 131926467, - 18966570, - 21342586, - 1029761335, - 209228718, - 197473183, - 55020785, - 1317095802, - 193524095, - 2542089200, - 279712503, - 302818214, - 24268521, - 36040335, - 16599158, - 624397288, - 913309291, - 2290293607, - 580114708, - 50262686, - 221565147, - 1613284345, - 34921692, - 1307492700, - 394472432, - 126438252, - 1446180066, - 1421331372, - 176224441, - 16875883, - 127919076, - 1617095875, - 10367702, - 263262974, - 15868200, - 14379485, - 27055038, - 216204377, - 68058537, - 20821692, - 15943735, - 63443195, - 498025641, - 1361688704, - 82500164, - 19019478, - 282872990, - 465066396, - 1069252525, - 25088748, - 22115905, - 322387657, - 101034530, - 46975078, - 24116297, - 15093908, - 16220478, - 331018214, - 44842811, - 132591216, - 142269129, - 2520037338, - 562922098, - 17792485, - 310330192, - 38360818, - 2427550489, - 2294404008, - 2377803456, - 301449131, - 23792365, - 1019901800, - 327088470, - 270481597, - 30993177, - 368911975, - 618438551, - 2455362542, - 2361664237, - 16662072, - 2468989334, - 346156464, - 2432880324, - 105019721, - 2475606588, - 6046132, - 28486146, - 2499750516, - 503878956, - 968825634, - 575834214, - 22918260, - 2479107860, - 2433749581, - 83955683, - 14312976, - 2265329426, - 154648294, - 2426723748, - 174541323, - 2427943826, - 17197857, - 350578795, - 2487057222, - 1648376126, - 490929520, - 2368554474, - 21517277, - 77698657, - 338577657, - 36705447, - 2437478014, - 15209135, - 2429872063, - 505782661, - 12064842, - 14494013, - 2482131804, - 615313522, - 300782829, - 1077905539, - 296566549, - 200006646, - 722066947, - 47996111, - 97720687, - 2200861197, - 131620354, - 226346115, - 87269548, - 2206256953, - 1135700720, - 2460029972, - 2444726454, - 237522029, - 64138884, - 2479630796, - 22355229, - 120935503, - 2437732440, - 2388257844, - 48734380, - 101869592, - 518842668, - 169217294, - 97129082, - 2395924800, - 868304509, - 22209201, - 799576454, - 41263293, - 73263419, - 2526306795, - 15248323, - 30060622, - 156560059, - 630048645, - 354004878, - 23908767, - 1599543613, - 1080722796, - 40856195, - 34728391, - 24940766, - 17054677, - 2414244360, - 44897207, - 23906829, - 21715898, - 225516501, - 91446526, - 387970999, - 12070792, - 220035098, - 742405500, - 2363185074, - 12691912, - 1573816735, - 953735010, - 1573840938, - 1045521, - 2384421332, - 150767029, - 441522831, - 72203012, - 10214102, - 14386794, - 19158017, - 83196931, - 1096057076, - 57827730, - 2344125559, - 2461953464, - 34739420, - 2473180037, - 149243840, - 1581624703, - 24076392, - 97967321, - 32339033, - 15711781, - 2213370912, - 749176735, - 390922386, - 326507652, - 15868572, - 6727802, - 110547002, - 1428655274, - 1093388640, - 373454306, - 129571317, - 418279718, - 2365078322, - 1143493279, - 2303421695, - 2431791810, - 111138041, - 117097021, - 1176827917, - 102827796, - 198787362, - 2440203612, - 4829441, - 297588403, - 22957921, - 51573399, - 16718799, - 185495909, - 14510359, - 506770913, - 777161924, - 408272342, - 203189776, - 94154141, - 2263652744, - 123666052, - 188943338, - 202630094, - 71114116, - 16510776, - 94147132, - 1390439473, - 57445469, - 1452235285, - 12298182, - 29199679, - 1149053071, - 2184781922, - 422112434, - 14710986, - 114022930, - 802585, - 15119615, - 110322958, - 2303677254, - 32770411, - 266050776, - 216900952, - 249013992, - 15607263, - 285085831, - 11803032, - 273797262, - 494785448, - 398507780, - 1327076168, - 38325455, - 211376063, - 22882670, - 595775844, - 76075571, - 58363824, - 14957479, - 262487491, - 24088940, - 43282408, - 18421880, - 390996368, - 106834295, - 400942102, - 185898176, - 439348486, - 16930669, - 22538803, - 404433545, - 506458865, - 208280454, - 2149664054, - 52762219, - 47584729, - 2402150773, - 2149568726, - 340056002, - 2393551634, - 21647296, - 1471503536, - 389496300, - 15582157, - 210862956, - 218003827, - 1066893474, - 127855180, - 3039101, - 250653423, - 390866417, - 2153631816, - 2162731152, - 25451718, - 11808492, - 18756514, - 62318794, - 223043930, - 29719864, - 210083863, - 44362897, - 603385690, - 872801623, - 2691421, - 7822352, - 17115175, - 17305671, - 372923595, - 294538866, - 16987778, - 1235329850, - 337932217, - 8005732, - 2308981092, - 779575244, - 2165044142, - 16729801, - 15440358, - 26928955, - 260614960, - 83275645, - 19306563, - 344993871, - 1327927195, - 67331057, - 146677172, - 489530660, - 925822981, - 36110368, - 624515774 - ] -} \ No newline at end of file +{"next_cursor": 0, "next_cursor_str": "0", "previous_cursor_str": "-1482172157213781578", "previous_cursor": -1482172157213781578, "ids": [18568359, 2823847869, 2839550863, 199878349, 911125278, 1533134222, 2796915877, 1360446930, 479998051, 52944494, 43532023, 60167411, 14297142, 283920304, 260131861, 2829805295, 988263907, 25522420, 2842248482, 380696053, 2415264335, 540524295, 151099796, 2857394893, 14303216, 529035477, 239694448, 58232355, 1325622763, 1134778818, 20497223, 16710059, 898245151, 276635180, 33204198, 17912684, 32340034, 1613684610, 297753219, 92043123, 2832306071, 138600898, 51707023, 38468450, 2734154836, 211299040, 2772793287, 57932979, 2832019805, 622225682, 221256867, 2180888714, 29290821, 2856735210, 2354357198, 732418026, 1072121586, 14315230, 2823120126, 66950277, 221551308, 2856322752, 1270199574, 38625234, 751858548, 29382134, 252253546, 38916013, 243776687, 332000656, 11336122, 324815308, 18422789, 18358444, 20009910, 779830400, 2379218546, 621865355, 2269809440, 1559414881, 2830384078, 2299993681, 2823337467, 2277585165, 548401223, 170888693, 2795740968, 2829151055, 399931776, 2820436241, 2752694465, 2696338214, 27445371, 38984338, 448821699, 21683512, 32746632, 25769552, 2851051934, 2338851193, 549641820, 460576347, 1296259104, 301470248, 2826514966, 2430116336, 14424544, 31535038, 1034261, 627835207, 48735803, 2285881968, 60246036, 1553874751, 2835420170, 47789228, 610509514, 2788909568, 1348078981, 1015624242, 1572455208, 1389844195, 791855078, 19335919, 2822812265, 2822480285, 2826294571, 2720495797, 77615656, 2543321844, 2808110414, 430196581, 498112659, 44817669, 2821451903, 80624517, 293538857, 24585498, 2484961424, 2821205494, 3470211, 1446496380, 563844124, 2459524980, 18432670, 2796381643, 2600292391, 18719732, 2785551444, 546490238, 47869980, 1317158120, 624928019, 268292100, 87703920, 23912088, 90702055, 139100664, 2607221934, 1461191600, 1480056668, 1559654096, 589575149, 257415016, 280152810, 16552581, 502760432, 14179549, 609659719, 57669979, 342748167, 17290900, 187115133, 526336172, 211859595, 1573654201, 2844904034, 2844526796, 159581371, 2394859615, 2844125551, 1102681291, 2790161267, 2393213275, 1335228721, 81967727, 2809953320, 112607888, 495393145, 2810491751, 159600896, 196753555, 2842349479, 2634723838, 1961970799, 363496956, 20895134, 29492786, 2834528090, 373901449, 2806076121, 47356472, 2787107043, 2317137398, 1480810092, 2815297027, 174705313, 1843315560, 1421573755, 1183863920, 18093468, 17257377, 2801105582, 164930478, 2840825263, 2806474113, 104358108, 2816557555, 345486825, 1459604220, 80875548, 2803371855, 2189069474, 2802930640, 2348465666, 2559623516, 15176366, 17171256, 58207999, 201226517, 54625210, 2839231058, 72921871, 2800367080, 2632347730, 2515113172, 2781283225, 20856288, 2217925311, 2827303645, 2298986155, 2615735222, 15235815, 2789960801, 31604330, 2615954263, 48125856, 2395487703, 157948933, 16720037, 295428790, 1330406438, 20404593, 49635206, 611933904, 2569738319, 106614991, 44290970, 2827821955, 37267535, 15009098, 17816618, 2614300664, 1673665117, 159402233, 24790186, 233100852, 10186262, 279881044, 88807478, 24117694, 24532138, 26137372, 138632867, 19941017, 1516978052, 489610627, 37864507, 2462260734, 2715302191, 372018022, 512747125, 14537861, 389355548, 2595535086, 268192580, 68408717, 598699854, 17846006, 8220582, 23909853, 8942382, 18078750, 183340224, 2440322860, 1603406131, 24289307, 780810121, 21504296, 52790027, 2786993913, 1520090178, 2827249903, 24208510, 2544284383, 59860037, 63733459, 788392706, 1171788037, 179855653, 17605831, 14651109, 2288778698, 18046664, 922297656, 1070026254, 1482961735, 20925919, 202860226, 957353786, 102237401, 452909578, 18534908, 133372189, 1153104685, 297512398, 448788827, 197626927, 16619151, 599395507, 1160875688, 31331503, 595860782, 259475003, 2550901051, 434684341, 588854016, 7632252, 26608146, 292511193, 2643280777, 160667591, 2794063024, 1235103067, 20136687, 145220626, 41339466, 1625315640, 25033260, 374978819, 20478920, 5714432, 329140042, 2835667015, 2412316315, 2522522892, 535187711, 16661080, 2797052675, 166227822, 137124029, 2578947127, 24718591, 42844321, 44144629, 2793709727, 2341587819, 145350228, 1080695552, 88957553, 2588793822, 219606488, 2407627944, 2797126742, 20761504, 715945646, 67429947, 560142646, 2835652184, 15171447, 1093802287, 91871482, 1972612118, 414989367, 2218140914, 1244238200, 266099423, 705682638, 23483816, 19414296, 2745443067, 279727055, 11488732, 18010512, 435472450, 1730879610, 68796392, 261043346, 2730476162, 316479545, 2830654146, 2829226112, 2790768332, 2789924236, 2391813894, 2833421150, 37928291, 2834905153, 23633699, 1639471914, 38483694, 403509817, 2787303099, 402798942, 2786342626, 2796472362, 2586505778, 22906563, 11744792, 527793302, 2191658713, 362161896, 1948471159, 318697688, 2418833034, 41629905, 263615863, 234342779, 15625348, 28220602, 1860106956, 2833033147, 340127057, 21643763, 2688341785, 16799897, 139810606, 362540066, 19517352, 305156995, 1473070387, 409211318, 19298381, 8069042, 15566111, 226751441, 1650891613, 86782347, 128924193, 2786171263, 18599180, 1103468076, 137756415, 270552993, 505163906, 23626419, 84350207, 56730995, 884234023, 516145687, 237197075, 54677967, 2785047291, 2573738899, 166223139, 1685312060, 18867397, 348582052, 24629249, 2772578862, 193152686, 37868094, 1869951139, 2188221928, 21911231, 35892267, 1446772334, 2697302850, 809573960, 29370598, 1107684811, 405855200, 13308502, 2334056136, 23966825, 169760495, 15826099, 14793972, 17936802, 472561623, 41469352, 164165558, 295572924, 385027140, 237477424, 143920412, 13986542, 1454970649, 425954534, 449408836, 15603207, 32709070, 109473730, 56163585, 121312918, 2225320566, 230392924, 2797884852, 14393629, 124064640, 164735315, 322855395, 237439292, 2329554289, 2825779441, 2369354924, 1949935303, 2829922064, 2601329148, 2829042818, 116035499, 21603597, 2827696087, 559068947, 267365383, 374849822, 2360882965, 271262680, 2827028180, 2719863120, 2794495520, 613467318, 15305487, 2444537593, 2778795425, 2796398178, 2724683069, 2815700491, 2674861855, 71552780, 42955897, 16814845, 2820451123, 51278095, 30161210, 461977120, 18358746, 18771668, 315740771, 343745990, 2814376982, 198978324, 2170341715, 176499073, 1425500808, 2474688422, 2161527751, 28730785, 2562452208, 2796853410, 2275408650, 391715920, 779487338, 346425691, 2813795371, 2411151546, 166558442, 118679396, 343600277, 44160296, 347528892, 2734830913, 211200011, 2816041153, 2815421539, 2814990416, 2814667728, 297877342, 467906528, 2763424192, 2813461118, 2813601900, 2234556787, 2595250914, 211912180, 2805352184, 2619128761, 1463053164, 19175461, 747994790, 2768975130, 91147786, 149251110, 2690800316, 53580967, 37274550, 15365191, 2283959404, 609249913, 86053605, 318136026, 1407544956, 2770912749, 189400722, 51622556, 815200027, 473514230, 23674153, 539533382, 632731979, 16526290, 2807791944, 2282950939, 2810265475, 10926482, 719137700, 1918828970, 749054930, 102826993, 2736894074, 2808934196, 48926855, 413639108, 2334502237, 2706967615, 617157232, 49569990, 2806976882, 2767548208, 316145842, 23694218, 2805915948, 373205943, 216547218, 2804154062, 15247707, 2494126831, 1130827783, 2803370018, 2801389358, 2612775626, 293946984, 333741449, 43945838, 133491839, 503448617, 2318148162, 12884962, 43507230, 15374401, 1352827063, 127039728, 189220827, 369134510, 434159866, 284252856, 546601496, 14520151, 523707157, 1898968964, 716044325, 2190662922, 84276693, 2517554893, 20120026, 2735836879, 2389784060, 2780922552, 39302631, 16853703, 2764897681, 1249738825, 19958283, 364924424, 1075634689, 2752399815, 20826603, 1070990102, 2774622224, 81900177, 551464747, 352540750, 14965452, 282713969, 23694908, 6249592, 2218601431, 17672969, 482508683, 862124204, 461562633, 2760652779, 2670555026, 2772726642, 7714582, 22519059, 155069105, 2193260102, 18216595, 1289279280, 17687811, 36962286, 2792543972, 2789119513, 2794985011, 16001436, 218319700, 2782398194, 2357767188, 99972221, 2455554486, 2675959123, 20571632, 2375510011, 2464406311, 362686824, 311921651, 319788957, 1884195997, 40337575, 2790482083, 64539883, 138023348, 2788450092, 745017110, 2586880063, 619561286, 20118360, 2650275548, 2698862124, 2245717093, 6967252, 565311756, 738389792, 30678826, 2773653883, 701942162, 2784595704, 2446689355, 476168077, 1895549834, 987940356, 862741, 1694140094, 277614688, 2786067643, 8152282, 2785593595, 1506415273, 2785209373, 2479567805, 2584076258, 19153412, 2569586880, 2646232100, 2312918584, 24573898, 2562626496, 247912093, 18782014, 113439399, 1862729762, 1756194752, 2784134220, 21203159, 2678466708, 2757810981, 170334802, 2783050436, 64798553, 2755089226, 39554440, 2781005310, 15625306, 265593408, 274221086, 2367294686, 79318615, 2406154140, 2756158029, 165594353, 1954779530, 2779286119, 25943077, 2755966328, 2742325799, 2704125049, 14976414, 2172848574, 78763833, 389290240, 1166763595, 24474711, 21963333, 26983168, 15633197, 379359783, 2543656170, 2557784790, 18735583, 15638249, 347820023, 2779074906, 138303403, 2312661420, 623180116, 140146910, 537663746, 2744353104, 790136479, 353223301, 2252034330, 2759423707, 71532748, 350350059, 85911526, 1436657857, 2389174966, 1300866318, 245988192, 2751316046, 14233615, 557481051, 581580986, 2736386280, 520031877, 389743109, 608766855, 24845678, 15847618, 158448184, 1426933968, 19079820, 198144079, 767954088, 498420834, 107759956, 263998640, 55933729, 374396172, 75883309, 820818900, 31393537, 15682966, 15574614, 2459879664, 2715335646, 4036281, 14427357, 277767225, 328027297, 14974257, 407813532, 57083714, 271577921, 231037233, 18231685, 570873281, 2777348509, 23170025, 2744187012, 414188706, 1184566195, 206674043, 992871366, 1249420140, 790254542, 2361832832, 353299852, 2474665615, 2285911154, 621699337, 44176460, 2484768164, 1317841987, 8565052, 955936165, 330241070, 43871358, 104203730, 223823338, 2739208022, 2610508676, 18852254, 477832066, 32849947, 2184347418, 2775581083, 412057292, 2772000350, 1428614076, 133938278, 18669375, 14467069, 1274232541, 259136493, 64326902, 186007705, 273922013, 2767992337, 16906916, 2772074791, 2440660196, 2666365909, 377480575, 14166498, 22972233, 352362305, 2651090730, 60124477, 284893451, 2355204164, 2760841170, 2332585826, 618396048, 2584729154, 1888491786, 2766531427, 1018212084, 114529734, 164304841, 15224379, 2198365328, 1245061093, 2201873430, 517788125, 477865564, 1370684204, 1857573672, 2460921914, 127977167, 2720762509, 14714836, 2661153200, 41862279, 1445645858, 306724530, 243835234, 118192603, 2252719814, 50930070, 41837013, 405388713, 46052163, 23200692, 285598087, 2758860524, 333093895, 2742745638, 1650318440, 2388908886, 14440339, 2156117256, 505389009, 33274384, 16271149, 2508480482, 619354467, 2582875752, 430187052, 15164220, 18474300, 24895869, 568510920, 2755210590, 146885274, 1405071, 341364098, 117278501, 330167214, 2409752617, 291814511, 2752445683, 749739464, 55107001, 14285735, 54223853, 55608270, 14911029, 1010437962, 9974372, 181697017, 15393788, 137929515, 18583083, 406525651, 2754036698, 573754692, 803090426, 17140823, 540394406, 19982498, 14418724, 402261290, 22530590, 2445607094, 465620301, 2665116800, 1659201, 19007577, 184545059, 19847566, 43239844, 62235793, 730453802, 836517948, 14089431, 189431426, 250578280, 243400445, 40631172, 322463395, 2477547035, 10078422, 995731112, 2464208425, 487604696, 1040175516, 15963386, 16552239, 18004530, 156657418, 424857366, 35254319, 153262029, 2546859007, 328611618, 203023614, 1020091452, 2339831028, 8478582, 22239433, 425224057, 2746693272, 235649250, 2157007225, 15797540, 104007074, 401599387, 2408136302, 2745998273, 1320846386, 2540307553, 2743612106, 853252945, 2746650274, 2736048703, 2388635942, 716901834, 7950832, 12711402, 44511188, 17365406, 2742122160, 23367208, 30325429, 55209895, 2728217304, 38079312, 1916211085, 1159872481, 346045816, 1880332644, 1403138772, 1386133669, 18698010, 191603616, 1365858114, 18084770, 2737804538, 30832553, 14507653, 2593720020, 33749281, 1530104942, 2694987546, 2562096336, 2743975427, 2730661022, 13256532, 563455650, 1960901594, 296771506, 416590913, 2706603351, 114363135, 120797730, 40442636, 421086412, 140264272, 42689691, 2540470963, 29102194, 707720431, 1955384041, 381207684, 627431735, 1487903161, 172232642, 88501703, 1684011330, 2678116076, 176232098, 2213566399, 2416444807, 178552728, 213396877, 41421889, 171166150, 1675904221, 2516904919, 177640959, 52706126, 2728897129, 201142601, 539369116, 2491831693, 2728185374, 1056204344, 19362134, 632498676, 1325376901, 2575616976, 58166620, 1587499219, 353127563, 7614772, 153351973, 135505973, 192969516, 2190871614, 2296345087, 580578314, 2483907840, 2374474646, 149181077, 111773731, 34193506, 19682351, 205523, 1705876171, 1315760318, 26367916, 15951773, 223634769, 417971198, 1126955250, 16714303, 796871671, 314203800, 51881510, 83542391, 633693696, 130976595, 42961724, 416385191, 2264910530, 25356272, 69949181, 3189061, 14275077, 369331993, 18494350, 271503699, 371569704, 1202174035, 2595637693, 2203392391, 16185559, 1563584570, 754001083, 20287447, 928214652, 2648345423, 161773182, 1487494208, 513494324, 41709199, 515710795, 417433623, 2184378296, 2726391349, 1874374662, 140487542, 278024105, 21985645, 90354464, 17141951, 14576102, 2529884293, 2636418896, 1345404096, 477969629, 253338660, 39393397, 39334284, 21441402, 15375238, 40613184, 61661397, 155674591, 1297561728, 2725346635, 129603074, 17261176, 23296680, 281335023, 7081402, 109402115, 23843670, 2484599173, 293165658, 171598341, 86637908, 55101855, 720795487, 1860682938, 1902560558, 30193706, 21902337, 1305940272, 1871931018, 28897401, 201893567, 20544252, 533168885, 2724865027, 2720611602, 133413674, 1306372550, 545052081, 2471422034, 1847879149, 293719533, 79837418, 998625380, 2654652751, 215867898, 2722518686, 330004048, 363074116, 2508238046, 1499076764, 368079476, 10314482, 500947092, 66910833, 2718897438, 2335477148, 8464392, 8174142, 188861654, 1252917522, 127587991, 6221802, 564828430, 83977254, 37375210, 23145095, 811508882, 2610573289, 266465052, 14270103, 1855274048, 482632594, 2648739217, 53248456, 39038706, 14324058, 1564501430, 43730299, 1596801914, 875466372, 248331766, 25966281, 90961345, 2454147619, 78987648, 323856815, 626035759, 32794572, 1447458510, 1468247234, 25159222, 17766237, 362286999, 47140658, 615157718, 66315620, 159399943, 2548127498, 1443296388, 2655679556, 59736882, 2214059922, 170023430, 396216027, 39591100, 20512260, 16038438, 2722979426, 95837739, 298675832, 32181724, 88300376, 376889399, 44307660, 2694407370, 71169680, 2739178019, 20598707, 2704742346, 1661060293, 444879320, 985840968, 51757505, 2721133104, 2602425530, 221156318, 1081813736, 263910676, 25799828, 18871292, 2659973851, 1266825842, 1367124774, 2718065840, 242681127, 2163201726, 2462926086, 1953316428, 515074073, 1641964513, 2707334143, 82706463, 2592222883, 67834235, 16343073, 376364850, 2659957592, 2511841164, 20956102, 359913776, 1389316104, 2708940194, 15660281, 386261226, 319387069, 219969684, 61525167, 476923690, 64289634, 151321610, 1970442408, 2386345501, 2682815786, 204934966, 27174184, 15352541, 2691277934, 552345433, 34188766, 15160493, 552534666, 2728532765, 1919612864, 592285402, 5384842, 2433344467, 276648737, 152768151, 1575952254, 333519470, 26897807, 424642818, 10776942, 2330496392, 1960217425, 1463590422, 976520714, 581540879, 61368299, 1357276346, 1206441060, 2659237424, 1645385010, 869779124, 30141363, 57735964, 613744236, 2704319934, 2714019576, 166302286, 1262083081, 42267812, 753196232, 2707907491, 293934083, 123659595, 117891523, 1621028173, 2371538304, 2662105630, 1057080500, 2712853758, 17656320, 60708321, 322906028, 48577626, 2671232269, 966420366, 1849731313, 242923569, 214186777, 43806137, 61260031, 1368532135, 1388186162, 46862522, 851951478, 2655199159, 13096002, 720979458, 2515491794, 302718940, 706340208, 509746957, 56768257, 17093474, 2414282990, 1906945130, 2829401, 2712480206, 98629768, 14642018, 1265342706, 16189782, 19258078, 276768282, 2501888752, 47472277, 2187249588, 334400134, 478845002, 549641532, 310454056, 473920073, 18123635, 113095705, 24099592, 314358874, 10395252, 1534060080, 322629367, 325724173, 2507651504, 30863042, 168212951, 164052868, 219326636, 88965760, 64849223, 2190983210, 14277842, 1561569042, 271626280, 838808077, 619453691, 1656969884, 219251193, 76455374, 327165636, 2689512648, 2694211387, 2707563084, 178932440, 1430616829, 120216905, 2459486610, 58092414, 22215175, 51186345, 14224219, 2204042821, 2654534176, 39800178, 2707402652, 153885804, 221635888, 14205381, 731680370, 2678324630, 808484690, 2608844076, 2444329771, 47016641, 2685647396, 2365243866, 1618566348, 1314263486, 164700688, 222875678, 58189396, 49681635, 872342575, 29984657, 47901131, 375753109, 69474498, 630860233, 832195032, 2238958711, 197836686, 1872257166, 1719041336, 1328250686, 123895213, 2439358794, 149617382, 44024932, 23418551, 14965072, 465638609, 1048828368, 2443852184, 16900307, 241650466, 40066316, 16557958, 2664867336, 42308266, 198622157, 16273538, 28344264, 27381972, 2606159809, 622462907, 821963496, 2394862452, 97261937, 1066348939, 18218285, 504030526, 2459028175, 49559732, 14220906, 71884737, 2164138496, 162221379, 21188880, 42886417, 259501233, 2232085308, 105669760, 812014932, 862554678, 2364479462, 28413032, 12021482, 904897332, 300004306, 427877098, 199599505, 300073650, 1925825300, 30355945, 168167924, 326421640, 277334494, 2693877985, 184194569, 2691441066, 29474607, 1370542062, 389313658, 19873102, 49166931, 22838331, 21297371, 140569066, 262350410, 1619409679, 2628282949, 600716597, 44275337, 15618553, 2230406251, 2566328594, 252385048, 46373148, 53605520, 17875859, 2282512646, 571032274, 11427402, 2495269099, 113254439, 9633042, 74387626, 25772203, 43587056, 2431154844, 595577496, 66783872, 55674812, 286888568, 470997704, 322964867, 315241974, 1067754662, 73730765, 2457100946, 173313184, 2457189276, 142409621, 146946913, 65750169, 159508633, 2541504619, 15136577, 313631586, 14447867, 162044862, 28370604, 455219790, 872251, 2206283359, 17635635, 18733337, 1329845642, 6328882, 1564382160, 1258804357, 90697018, 1688518602, 2296800073, 2481880087, 226424298, 14628009, 19021299, 2602686457, 355802789, 133970507, 414157081, 2456521471, 1757800921, 35094531, 297799785, 102211070, 50748729, 40698468, 1972114321, 304672487, 90292509, 248037563, 602519741, 21315633, 176276688, 45953084, 63745717, 182191771, 1452150655, 2401096388, 490828190, 1016664894, 1296543859, 36944162, 15384463, 83906194, 106624470, 20398907, 14057669, 228624732, 24397364, 20637608, 1716865688, 300116808, 383330020, 1100326518, 55397130, 32032000, 41930388, 2691351414, 360129945, 95820486, 2606040210, 14324319, 2602742437, 2161863914, 73900007, 382879519, 18404955, 20744951, 1302649411, 21150522, 740761610, 1253557843, 1947934442, 343321593, 117026889, 22563093, 14969388, 194984772, 2281896007, 115580069, 2349502914, 1671279828, 1695528990, 75170018, 17496615, 24612874, 10219982, 2490884160, 2455491403, 54691370, 546453689, 309561393, 14591228, 80164956, 135107349, 389027282, 2682977401, 24719584, 108399156, 233291892, 1584710622, 2384055826, 177536523, 196889003, 83158659, 449252624, 2246764032, 109102126, 389609859, 67656899, 19074827, 561188271, 317128282, 2673745314, 2725805021, 62775756, 85414881, 260553216, 2651355451, 19322309, 18817547, 259809972, 346682225, 512712265, 25362763, 170028171, 45416789, 628412465, 2355462320, 2546393202, 339422214, 71383220, 87407374, 375022391, 2356845396, 337437366, 199429505, 356900641, 479980633, 4791371, 61258803, 1514098375, 805553970, 2649541033, 1306876946, 17358032, 17956368, 264356595, 540022897, 14193454, 627801443, 346208400, 1561922294, 746705971, 2488586072, 431157550, 242242379, 2663955350, 2518829358, 9452312, 154420293, 1627399644, 14946104, 24120959, 423706076, 20113944, 66951315, 38515332, 1009631790, 883283184, 1621588117, 24028758, 1338813834, 10681832, 258929128, 1735601672, 2435036665, 169448683, 2722578298, 130954977, 14937325, 168532759, 138201468, 945038623, 650543, 273664943, 2692486733, 631221037, 2471579924, 365700772, 2239677247, 61064212, 461579314, 2591883163, 142457170, 1378251055, 19904900, 863395488, 232340874, 25717930, 83314648, 2467922382, 2455079965, 80705350, 49033304, 21848257, 483188742, 2419610018, 207663883, 36076005, 34986535, 2341171171, 339324752, 550578863, 2651361980, 9520652, 139536589, 1103509506, 401559926, 469768967, 286905306, 389576703, 2670868538, 22741415, 321521970, 2662975860, 216838324, 968467866, 1315350870, 2398678404, 252188600, 537094018, 1293953923, 43389994, 15748723, 148067819, 26337889, 880121748, 1686225554, 2667991266, 246039958, 2280498614, 522731421, 13970412, 14408460, 2151078410, 14547927, 2482861177, 398653333, 1920626647, 25563025, 1423415617, 1216611206, 192108526, 1678965668, 975242286, 2526555865, 37522084, 716590457, 2655995072, 297991754, 198574548, 9444482, 382191537, 343395430, 19763493, 15417896, 23808177, 183727699, 21688507, 595431054, 23751769, 7157132, 753935047, 1313751602, 2493594150, 1967409835, 22775788, 1183814022, 376694822, 30337027, 2667942356, 2528577890, 39282415, 2667713678, 245656043, 2615726112, 19221717, 2664737852, 7142292, 14702929, 194662573, 2531350702, 2230733624, 94778974, 1182108536, 394483029, 858602006, 2597261568, 2612539188, 2348901806, 194588779, 305905982, 9675812, 1534515074, 2582772392, 1293761300, 379542112, 29735258, 177711354, 1325851112, 2718100751, 2651654958, 14293333, 48846301, 2658823412, 18849232, 68472064, 1186941451, 1647871290, 114039485, 137554364, 2579315784, 87143187, 158689987, 2382998546, 1321061760, 19915883, 31493420, 19157786, 35528160, 131069394, 445051365, 2617623638, 19277132, 138913425, 259858898, 1523977796, 2540043996, 2641478448, 472022132, 25376226, 152361431, 714654367, 945507625, 334755135, 920729388, 2653095608, 2570340362, 16977093, 2590307072, 138540830, 1391311716, 19805969, 18965053, 2223824328, 399075181, 120478433, 54966626, 50270961, 2432320897, 598890477, 373472378, 1317226842, 2471162173, 197957446, 112072814, 935038645, 14270527, 860948431, 2249874505, 72459829, 52565373, 141250520, 25661789, 167105561, 44671378, 2593747736, 180523367, 58582135, 187237087, 28980447, 16447552, 393033243, 14050073, 199771301, 25179455, 1023440202, 793629, 2650214929, 1644416010, 144799984, 45944057, 2271911297, 1058879185, 2588142726, 263830231, 2598460208, 20458886, 2353984898, 15859947, 1480564873, 1894645940, 2547687382, 902935909, 285904557, 245232063, 105268129, 2505246548, 1711752937, 2387653381, 17266393, 15003854, 30839761, 12068862, 371446737, 51718518, 323977774, 554181596, 419073547, 2357912953, 2252152256, 170082980, 26983898, 1561138874, 146948684, 2393429594, 66626468, 22958268, 726917263, 2204095723, 74774518, 203983655, 14135009, 34310651, 1979492497, 1311423618, 2514123998, 14519171, 540259168, 2398308211, 512563826, 1323841742, 73443199, 100427786, 182203607, 80497970, 83880850, 5960932, 17476953, 14570615, 9297422, 39182523, 238186152, 28828310, 329826779, 279707264, 797586168, 706833, 1929558566, 9637982, 14518661, 314645422, 17064600, 323982384, 2429943578, 15889451, 415818433, 2218009256, 16617676, 287816898, 2466189944, 379277633, 243881425, 48744731, 289222942, 2469324030, 216594284, 2353045298, 18915582, 345326776, 275387273, 619532406, 119333280, 182267933, 2557221630, 2541979477, 14176297, 14257102, 507709379, 2512924266, 1328500530, 363792365, 467458488, 587229400, 158948552, 2394903662, 17461215, 419933252, 1423593175, 296361797, 93603692, 166482876, 2374443600, 285207574, 2239872086, 153812241, 26408804, 58747912, 618561152, 404402995, 20087429, 2485264719, 2616550338, 1458459194, 62215778, 1327618698, 19394222, 2584702764, 518495199, 71862367, 16972422, 1476060205, 2603613312, 1196493648, 17946886, 59832288, 2233002794, 14103333, 73437395, 71077029, 16971994, 1419723512, 516150304, 11919982, 8654742, 22143460, 2276894183, 321972287, 16545241, 186535932, 2610397711, 275443776, 20428342, 14283, 1566024031, 423732228, 20701751, 38416252, 121893735, 180707654, 100930949, 728852354, 2294508330, 1677983000, 412961881, 14094087, 132715701, 488527927, 2300372934, 146879938, 180001973, 164183695, 658353, 23783361, 190642026, 21861033, 48597549, 1849076732, 221954369, 410337616, 45226660, 2607690103, 2597073091, 6289602, 26431749, 195980342, 54222239, 784654188, 18545296, 134944041, 287736439, 55472734, 2587881218, 1876700131, 278378678, 2399298680, 428285839, 1421495196, 2327932093, 428586673, 2596792590, 2588582684, 2311063871, 2558735024, 2330643800, 425748911, 117037734, 2457172872, 24118055, 2430014127, 14124531, 16600919, 72864589, 349111085, 14075459, 41020268, 205512496, 18306174, 15911001, 14123822, 828330613, 17300006, 93702963, 43933796, 434521127, 24920970, 2590780058, 539367183, 241814731, 872352396, 227844938, 2423388787, 8146732, 15963621, 2560133702, 68080192, 467035507, 1321463336, 271760428, 16823185, 28390663, 84121085, 956741323, 1122321800, 18353790, 37175995, 709674980, 14979502, 946476872, 47489753, 5398712, 1943293668, 2459610476, 15184365, 2290239343, 1905351968, 279328072, 15388908, 534512583, 95490352, 15247075, 1463514306, 2196509533, 15508710, 1975911048, 702140414, 25725991, 705547586, 192537546, 108384288, 14149195, 1686580998, 929500184, 586960829, 359049148, 460045442, 2478592622, 18400880, 14850976, 700166761, 21315223, 27754962, 146476339, 2466393715, 15008299, 1652809586, 207363728, 18436517, 348253260, 46490602, 290767045, 36211517, 15799638, 59015705, 2557066082, 16084074, 19008092, 67727170, 2553383520, 1063368420, 157415921, 299277303, 2589715470, 1317062689, 1887418189, 154600577, 66793179, 297597945, 35780946, 1935698418, 122770149, 6728202, 2417417542, 80490999, 39659968, 2588157906, 24334685, 344804107, 43570256, 35333511, 21061331, 120110703, 109980052, 2407432598, 3547541, 2576783088, 43934803, 266579945, 75702759, 1877097212, 251749414, 39818652, 393625868, 10950902, 281402189, 1965276631, 173944243, 15944443, 41956407, 892593686, 1080731636, 898057044, 20370620, 523992088, 866151799, 281766910, 227607070, 214589613, 23987473, 24028993, 946735310, 69436133, 2206379252, 34959491, 857351089, 342973027, 237189472, 524735735, 2497625335, 10877042, 2565563960, 18696645, 29529993, 1313849245, 2569371716, 15847812, 24578981, 14466944, 1969179680, 1949408102, 407781807, 14936894, 2370716922, 1346677092, 84494022, 1729297056, 84115491, 1442171222, 194623261, 84315849, 2233895142, 2174732226, 1854958933, 1229040684, 28736554, 408756176, 1044009930, 105036629, 1460609414, 16215005, 310003049, 1139393827, 2275311773, 1303840880, 2606740767, 2606682935, 2565419640, 2175903210, 2330092076, 61530307, 41213396, 549691250, 2548940546, 290849742, 1323419287, 972169508, 11633922, 1562048400, 9839942, 71560321, 276645875, 14218312, 77850269, 223531202, 365541890, 618000884, 2545361996, 61105459, 709226545, 1935416203, 21859847, 2411176880, 127973599, 267552909, 774787033, 25964854, 719557237, 16150862, 15773702, 20517459, 14988726, 493510825, 1049416182, 2554595748, 1872308552, 96619783, 708407923, 300179866, 1688826986, 7860742, 51361823, 310878807, 235725132, 785549562, 1113417679, 1383519978, 2553588254, 1938963433, 362288286, 23931563, 230878877, 68816714, 14304857, 1048264458, 18943008, 753923, 123051486, 2188704360, 97778856, 740794940, 144261432, 944931924, 14440333, 31339090, 168911485, 28490696, 23232306, 2386659212, 2266386187, 41418974, 22411342, 24457403, 193144020, 79585051, 730752631, 7872262, 1392874286, 1672639050, 558043957, 823913874, 2518616341, 42588875, 1519747244, 222960237, 1853410285, 5974052, 375715200, 1696628040, 867685734, 480201901, 947288522, 282193995, 141254391, 45887280, 234559410, 2167455536, 23823744, 1065921, 98478615, 257590207, 2533639680, 14447391, 37518916, 361693804, 1362628230, 511310897, 76056199, 2351628565, 41331276, 22788856, 973366099, 1263218845, 1259809430, 22321640, 15316059, 410077695, 25606277, 186215014, 21134767, 30446608, 231251370, 811530, 96007068, 46331074, 131926467, 18966570, 21342586, 1029761335, 209228718, 197473183, 55020785, 1317095802, 193524095, 2542089200, 279712503, 302818214, 24268521, 36040335, 16599158, 624397288, 913309291, 2290293607, 580114708, 50262686, 221565147, 1613284345, 34921692, 1307492700, 394472432, 126438252, 1446180066, 1421331372, 176224441, 16875883, 127919076, 1617095875, 10367702, 263262974, 15868200, 14379485, 27055038, 216204377, 68058537, 20821692, 15943735, 63443195, 498025641, 1361688704, 82500164, 19019478, 282872990, 465066396, 1069252525, 25088748, 22115905, 322387657, 101034530, 46975078, 24116297, 15093908, 16220478, 331018214, 44842811, 132591216, 142269129, 2520037338, 562922098, 17792485, 310330192, 38360818, 2427550489, 2294404008, 2377803456, 301449131, 23792365, 1019901800, 327088470, 270481597, 30993177, 368911975, 618438551, 2455362542, 2361664237, 16662072, 2468989334, 346156464, 2432880324, 105019721, 2475606588, 6046132, 28486146, 2499750516, 503878956, 968825634, 575834214, 22918260, 2479107860, 2433749581, 83955683, 14312976, 2265329426, 154648294, 2426723748, 174541323, 2427943826, 17197857, 350578795, 2487057222, 1648376126, 490929520, 2368554474, 21517277, 77698657, 338577657, 36705447, 2437478014, 15209135, 2429872063, 505782661, 12064842, 14494013, 2482131804, 615313522, 300782829, 1077905539, 296566549, 200006646, 722066947, 47996111, 97720687, 2200861197, 131620354, 226346115, 87269548, 2206256953, 1135700720, 2460029972, 2444726454, 237522029, 64138884, 2479630796, 22355229, 120935503, 2437732440, 2388257844, 48734380, 101869592, 518842668, 169217294, 97129082, 2395924800, 868304509, 22209201, 799576454, 41263293, 73263419, 2526306795, 15248323, 30060622, 156560059, 630048645, 354004878, 23908767, 1599543613, 1080722796, 40856195, 34728391, 24940766, 17054677, 2414244360, 44897207, 23906829, 21715898, 225516501, 91446526, 387970999, 12070792, 220035098, 742405500, 2363185074, 12691912, 1573816735, 953735010, 1573840938, 1045521, 2384421332, 150767029, 441522831, 72203012, 10214102, 14386794, 19158017, 83196931, 1096057076, 57827730, 2344125559, 2461953464, 34739420, 2473180037, 149243840, 1581624703, 24076392, 97967321, 32339033, 15711781, 2213370912, 749176735, 390922386, 326507652, 15868572, 6727802, 110547002, 1428655274, 1093388640, 373454306, 129571317, 418279718, 2365078322, 1143493279, 2303421695, 2431791810, 111138041, 117097021, 1176827917, 102827796, 198787362, 2440203612, 4829441, 297588403, 22957921, 51573399, 16718799, 185495909, 14510359, 506770913, 777161924, 408272342, 203189776, 94154141, 2263652744, 123666052, 188943338, 202630094, 71114116, 16510776, 94147132, 1390439473, 57445469, 1452235285, 12298182, 29199679, 1149053071, 2184781922, 422112434, 14710986, 114022930, 802585, 15119615, 110322958, 2303677254, 32770411, 266050776, 216900952, 249013992, 15607263, 285085831, 11803032, 273797262, 494785448, 398507780, 1327076168, 38325455, 211376063, 22882670, 595775844, 76075571, 58363824, 14957479, 262487491, 24088940, 43282408, 18421880, 390996368, 106834295, 400942102, 185898176, 439348486, 16930669, 22538803, 404433545, 506458865, 208280454, 2149664054, 52762219, 47584729, 2402150773, 2149568726, 340056002, 2393551634, 21647296, 1471503536, 389496300, 15582157, 210862956, 218003827, 1066893474, 127855180, 3039101, 250653423, 390866417, 2153631816, 2162731152, 25451718, 11808492, 18756514, 62318794, 223043930, 29719864, 210083863, 44362897, 603385690, 872801623, 2691421, 7822352, 17115175, 17305671, 372923595, 294538866, 16987778, 1235329850, 337932217, 8005732, 2308981092, 779575244, 2165044142, 16729801, 15440358, 26928955, 260614960, 83275645, 19306563, 344993871, 1327927195, 67331057, 146677172, 489530660, 925822981, 36110368, 624515774]} \ No newline at end of file diff --git a/testdata/get_follower_ids_stringify.json b/testdata/get_follower_ids_stringify.json new file mode 100644 index 00000000..6b66b7fb --- /dev/null +++ b/testdata/get_follower_ids_stringify.json @@ -0,0 +1 @@ +{"ids": ["4765959640", "4739131634", "4739172985", "4738974613", "4765841871", "4739119994", "4765861906", "17943008", "367731662", "4739016462", "4739164933", "4739106686", "4739024832", "4765893917", "4765851257", "4765860101", "4765849727", "514640183", "4765816635", "4063956073", "4765864415", "4739149297", "4765839869", "4739132053", "4765838003", "406528648", "4765893772", "4765895548", "4765903654", "4765775175", "4739083334", "72395476", "4765852348", "4765766613", "4739008272", "4765795283", "4585656983", "4765864060", "4765749999", "4739053099", "4700481372", "4765715577", "4765792480", "4765724361", "4739056489", "536562594", "4765733913", "4765532733", "11061402", "3434757544", "4765792409", "4739043578", "4738974624", "4765798756", "4738964880", "4765700121", "4738978152", "2740147945", "4765629922", "4765761197", "4738885842", "4765742909", "2633959820", "4765756817", "4739092213", "4759784483", "4765677105", "4703824999", "4738948284", "4765746394", "4765706723", "4742590533", "4765590737", "4661720952", "7098702", "4739053753", "4601356224", "2683695680", "4765728316", "4765603515", "4765674581", "4765658969", "4739055427", "4765130974", "4765662137", "3407402261", "4765660049", "25770816", "4765612055", "3225876793", "4765730248", "4765608195", "611922523", "4738891512", "286236057", "398701324", "4765570277", "4765683388", "4765583475", "4765688740", "4738796532", "4765506021", "4738878792", "4765483635", "4765573757", "4765635970", "4765590983", "4765645576", "4765341208", "4739005651", "4738866072", "3739468102", "4765492815", "283353839", "4765448475", "4765482561", "4765605628", "4765592596", "39609902", "4738849992", "4765474683", "4765597096", "4738717940", "252516077", "188269663", "4765571722", "108584740", "4765481003", "4764936077", "4765556260", "4765546276", "4765228515", "4765345275", "4765434983", "4765411221", "4765420817", "42458276", "4765405785", "4765523182", "4738813182", "4738787124", "4765396605", "4765443857", "2184393483", "4765429157", "4765509208", "4765352001", "2346687594", "3681066674", "4738763400", "4765321841", "4765398725", "4765308268", "4765328001", "4765415956", "4765444288", "4765403255", "4738911571", "3396911669", "4765396769", "708833828", "4765313543", "4765453282", "4765306605", "4765362137", "4765288293", "4738857554", "4765371317", "4765431322", "4765370363", "4758390797", "4738790714", "4738829306", "4738806536", "407797352", "4753677449", "4765272735", "4765261995", "33957990", "4765243371", "4765259307", "4765303703", "4738737618", "4765252455", "4765346062", "4738806074", "4738683480", "4765195743", "4765347496", "4738801754", "586751400", "4738849453", "4765333768", "4765249888", "4738806254", "4765198581", "4765262123", "4765279336", "4765162689", "4765309096", "4738835233", "4527970479", "219908421", "4738793293", "4738695810", "4765192583", "4738767650", "4738653738", "4765210685", "4765227076", "4738817659", "4765260262", "4765161797", "4738758056", "4765237936", "4765243822", "4765127073", "4765164929", "229035936", "3047831616", "4738654092", "4765203208", "4765099035", "4765123773", "4764564681", "4765212016", "4738660314", "4765066821", "4765070055", "4765134629", "4765143407", "4765143065", "599111936", "4644635955", "4743655935", "4765051707", "4738644246", "4765201954", "25456684", "4765124489", "3225166934", "3309448447", "4313429596", "4765038621", "4738632138", "4765151242", "4738365943", "4738703288", "4738755775", "4484965034", "4765035453", "4765015713", "4765078997", "4389894914", "2571131", "4765142188", "353080019", "4738612566", "4765088560", "2698273621", "4765050557", "4765018409", "4764993381", "4765078246", "4764905285", "4764977415", "4738674236", "99005675", "4765016974", "4472138188", "4738724023", "4764951867", "4755836897", "4765056574", "4765059496", "4738642994", "4764909147", "247073897", "4764885921", "4765039996", "4764924855", "4764866836", "4764930813", "4753117042", "4764973853", "4765009276", "4764921555", "3447841155", "4764961955", "4764911241", "4738065966", "4738635320", "2553408806", "4765015768", "4764949037", "4764938741", "4764893235", "2793617508", "4738680433", "4764884259", "4764993184", "1557055416", "4764976342", "4450325897", "4617862114", "4764893783", "4764894203", "578031753", "4764978622", "4764864411", "4764887417", "4764812079", "4727376218", "4764807381", "349655533", "4738581014", "209023764", "4764938104", "4764940576", "4764870845", "64391741", "4764772035", "3305500571", "4764805463", "4738579172", "4480295356", "4764775179", "3034690747", "4764901624", "4536528933", "571728902", "4738359012", "4420026503", "4764820702", "4737374149", "4764747249", "4764788921", "4764765975", "4738571474", "4757555842", "4764804437", "4764858160", "4764741213", "4755903568", "4764723333", "4764730215", "4764772757", "4764772642", "4764702081", "4335003316", "4593672553", "4764746567", "4764804694", "69609201", "4659511159", "4759029856", "2827399996", "4764783982", "4764771076", "4764659187", "4738519274", "4738494284", "4764736594", "4764638307", "3106264444", "4764620793", "3854737821", "4738489382", "4764683069", "4738410234", "4623036597", "4727350887", "4712507654", "4582115065", "4738538371", "3946273155", "4764633845", "4764574821", "4764643697", "4764636077", "4764570675", "4764550947", "3848470694", "4738507963", "4764549977", "4764660526", "4764572687", "4764601397", "4064494155", "3294077447", "4764538233", "4764463485", "4678757509", "4738349052", "261850542", "4764552028", "4764483615", "18735117", "4764585028", "4764485079", "4738411778", "4764515969", "223108664", "4764533783", "4764517823", "4764445762", "4733995873", "153981304", "4764471333", "1974102895", "4764447501", "4759619775", "4764497957", "16490974", "4764519376", "4764460049", "4764407193", "4764468557", "4764434788", "4764526618", "282173541", "4764395535", "4763268808", "4764455177", "4764437609", "4738150260", "4764380253", "4764431915", "4705265843", "82566401", "4764464908", "4738252086", "4764476494", "3246158670", "4764384095", "4762711527", "136544334", "4764134657", "4764357735", "4764468274", "4764448396", "4764335661", "4764349521", "4764428710", "4738347044", "4764462856", "4764308296", "4764454876", "921785551", "4738393603", "4764302361", "968562781", "4764311115", "4764270195", "4764363449", "4764312081", "4764351989", "4764314895", "4764317835", "4764411142", "4764292047", "4738304389", "4764350315", "19779047", "4738224690", "4764364720", "49055401", "4764308777", "4764318874", "4764250563", "4737999770", "4648215510", "4764288017", "4738302014", "4395644537", "4764327028", "4764216315", "4738324345", "4764324856", "4641804437", "4764203301", "4764198735", "4764227375", "3164823397", "4764235997", "4738261213", "4764184587", "4738191732", "4764172767", "4764289876", "3558286516", "4764081333", "4764169755", "4764161613", "4764156809", "4764260128", "21088476", "2732601388", "4764263902", "4764259936", "4738171716", "4738216639", "4764248536", "4764132315", "4738109592", "4764237262", "4764124035", "4764086554", "284433514", "4764152423", "4764141083", "4764087147", "1324871660", "4576089505", "4764133577", "1179964824", "3734232860", "4764135989", "4764111743", "4764183022", "4738205360", "4764044775", "4738185566", "4763912775", "4756851574", "4764112048", "3311058195", "4764081401", "4764131788", "4738103538", "4631970147", "4763741361", "4763973435", "4764020261", "4764068956", "4602776604", "4738075980", "4738163672", "4764026549", "4738199593", "2895514422", "4738070298", "4764073018", "4742073387", "4296234209", "538331811", "4763969422", "4763997677", "4763892021", "854486582", "4764007420", "4763935337", "4763885547", "4764011656", "4763940323", "3408925325", "4763814579", "4738153939", "4764013042", "4763921237", "4735149375", "4738160089", "4738029924", "4738104122", "2148559407", "4763982688", "4763914529", "4763992396", "4763987368", "4763923637", "4763844453", "4714250546", "4763944396", "4763854521", "4763906189", "4763972902", "3796081573", "587492007", "4763875877", "137880328", "4763952556", "4763939422", "4763713822", "3279012422", "4763939722", "4763780421", "4763810955", "4738096387", "4763735595", "700059405", "4763900920", "4763778442", "4763753049", "4763866576", "4763790923", "4701439832", "350173088", "4763761397", "4763767397", "4746056175", "4762971154", "4738087633", "1904714786", "4738068085", "4763751917", "4726644797", "4763805616", "4763809816", "4763739467", "4564759097", "4763566173", "4763686473", "4763714789", "4737923100", "4737921978", "4763672367", "126309520", "4737264417", "4763773996", "2403263433", "4763653101", "4756921173", "4763768002", "4548563182", "4646676088", "2701455704", "4763733268", "4763646147", "4762122436", "25206571", "4763767222", "1169089620", "4763614935", "4763733982", "28573987", "4763698877", "566266643", "4763583621", "4763681795", "4763623575", "184013976", "4763729002", "3077548902", "4763665727", "2296655670", "4763612295", "2582074110", "4763580219", "4737890772", "65325338", "28958604", "605469535", "4762569496", "4763594121", "4763699122", "4763562921", "4763628641", "4737863478", "4737902414", "4763596769", "4763545341", "4737859698", "4763615777", "217871561", "4763535441", "4763572937", "4290046037", "4763489716", "4763543781", "4763576129", "2282062157", "4763582063", "4737919028", "3580301901", "4763630896", "410089531", "4737976537", "4763620906", "4763503937", "4763617288", "4763496813", "4737839844", "4763603422", "4763430021", "4763491887", "4737913820", "4763507963", "4763482995", "4763476179", "4762182261", "4763529815", "4763463213", "4763525897", "296399773", "963338924", "4763510183", "4737817524", "4763435907", "2313333701", "4763477423", "4763526424", "4737878060", "4763516602", "4763409969", "406675377", "4763507056", "4763492062", "4763427449", "4763486116", "4737894733", "4763411729", "404686753", "4737768564", "4763348295", "4763360295", "4763366079", "4684993944", "4737733560", "350220520", "4737348684", "4736037259", "4763337915", "4763437036", "4763310075", "4763321775", "4318050198", "4763350643", "4763330897", "4763371762", "4737868153", "4762439416", "4763295621", "4737730296", "4701971737", "4763398762", "857139133", "4744708193", "4763278827", "4763371396", "4763379022", "4763240241", "4763258955", "4713427517", "631191207", "170979948", "4763235795", "4763241255", "4763240187", "4736196480", "4763223861", "4763277329", "4737763424", "2826380430", "4763267177", "4763321302", "4763195727", "4763208381", "4736376896", "4763246183", "4763191947", "4763298688", "4763242529", "304483543", "4763172687", "4763219903", "4737793213", "4763273962", "4763204237", "4763252188", "140936669", "4763180201", "4737788053", "4609278495", "4763133273", "4737731282", "4494528335", "4763168723", "4763239516", "4763159837", "4763112075", "4763252800", "4705435995", "4763147549", "4763166755", "4763212948", "4763193976", "4763145269", "4763025399", "4763186422", "4763120003", "4737594666", "4763169622", "4763170642", "4763082557", "4763099675", "4763107697", "4737577392", "4763075086", "4763098637", "4737725437", "4763088041", "4763045415", "1854919058", "4737720553", "4763008911", "4737667394", "4762994967", "3856430894", "4763001435", "4763055137", "4763052629", "4763089000", "4763032817", "4737573012", "4763089414", "4762975893", "4763022857", "4565242769", "618397844", "4763049262", "4737538724", "4737681583", "4763052928", "4763053402", "4762997543", "4737540276", "4762998377", "4762932747", "4763041306", "3038155356", "4763051596", "4762920147", "4756154417", "4757328208", "4762962437", "4762965557", "4762851135", "2761011324", "4737529848", "4762862781", "4762858467", "501649363", "4743625035", "716174877", "3558503777", "4758167057", "4737625555", "4762837577", "17348209", "4762814301", "4762927936", "4737494268", "175316232", "4762936636", "4737494682", "4685936275", "4762858349", "4762909402", "4762792053", "4762821893", "3388678865", "4762765455", "4762749801", "4762743597", "4762885696", "4762872196", "4762814177", "4762737315", "22893600", "4762813516", "4762501876", "4762720413", "4762830442", "4737572413", "4762835362", "4762768757", "4737516614", "4762746437", "4762815874", "4762811176", "4762681521", "284322013", "16827375", "4762679415", "4762688727", "2303968933", "4762720697", "4762665255", "4737538171", "4762619127", "48294195", "4762688057", "223880898", "4737468008", "4737506533", "4737390492", "4762603709", "4762639655", "4762716136", "4757161821", "4762706788", "4762572561", "3155981235", "4762621049", "4762683808", "102355042", "4762631477", "1452556849", "1108354021", "60244742", "4762596197", "4762610183", "4762605317", "63942640", "1284125424", "333231579", "1391696480", "4220550675", "4711829783", "4737466285", "4762545495", "4762548317", "4762485076", "4737331212", "4762626382", "4762454721", "15474763", "4762512615", "4737291672", "4762580908", "4690673060", "3415067513", "2803374900", "3349186797", "281482596", "4762509581", "4762443675", "4762273223", "4762540636", "4727576892", "3399317375", "4762031789", "4762523836", "418988996", "3336627819", "4737358100", "4737410701", "4737397291", "448269441", "4762430909", "4730154906", "258829829", "4337919139", "4762449856", "399647444", "4762399349", "4762450576", "4737251424", "472029406", "402866280", "4762393997", "4762328235", "47568259", "3245249142", "4737372259", "4762328481", "862450183", "4762305197", "4483512989", "4762263501", "4761954627", "4762350388", "4762397836", "4762385536", "3444690017", "1693752445", "4762282229", "4737158592", "4762252581", "750760598", "4438750035", "4762348288", "4762269137", "130956452", "4762269449", "4762344436", "3051577591", "161416879", "4737264614", "71903566", "19631312", "205400297", "4762304848", "4762211055", "1326668024", "3112428539", "3867748633", "4762224017", "4737233018", "1047324295", "21218422", "4082699639", "4701059725", "14318525", "4762163235", "71746543", "4762275682", "420039631", "4762156581", "4762186037", "4762258636", "194090969", "4762192637", "4762252096", "4762128063", "474676942", "4762251736", "191988894", "67334621", "4762230976", "4737131832", "4762159703", "4473390617", "4762161263", "2188344992", "4762112817", "4755617241", "4762106121", "4737105972", "227237725", "21642162", "4762069827", "4737227461", "4762090529", "4721622080", "4471060639", "4737095172", "3056207221", "921806221", "4762047957", "2511936913", "499758610", "4762135276", "4762035795", "4762139836", "4737083118", "4762073723", "4737077592", "4762108114", "4762097536", "4762033481", "4731964548", "4380625223", "178473252", "3315556005", "4762089796", "4737182401", "221601252", "4762020743", "2705002822", "4737183913", "4761994397", "4761929595", "4737118874", "4697226751", "124923286", "3071577073", "4762036096", "4737013170", "4737115874", "150186305", "4761906861", "4761916833", "4737002570", "4762020262", "4737152035", "4732010016", "4761972964", "4737144343", "4761853575", "4253013434", "4757600056", "4737053792", "45858911", "4761849027", "4761849987", "4761866717", "4737114193", "4761884603", "4737109159", "4737064700", "4761937426", "616268524", "3902036953", "3613605619", "4761823233", "4761797781", "4737051560", "3215143222", "4761762615", "4761844895", "3545542752", "4761896602", "316602335", "4761803836", "4076166078", "4737082333", "4736951010", "4761770973", "4736944158", "4736971940", "130236348", "4737065053", "4761780023", "451879376", "4761660315", "4736916132", "4736916138", "4729384111", "4761693015", "470740873", "4733713470", "4761681195", "4736902968", "2929409360", "69460004", "4761764482", "4761695057", "4761691577", "4761696437", "4736967446", "4761633267", "4761626295", "4736872872", "4761614655", "4736948018", "4736999533", "516455439", "4703265501", "4736995273", "4726951699", "4761693736", "4736937722", "4761616937", "4736986801", "4761694462", "4761597443", "4761545475", "4736832822", "4761334035", "4761587549", "910398085", "231649230", "4761515481", "4736915114", "15114322", "4761624856", "4736886680", "4761443307", "4736892242", "4736934841", "4736937427", "241803628", "4761534977", "4761539663", "4736937367", "4761494433", "4761497915", "4761534377", "4734263444", "4761506189", "4761496349", "2614035342", "4736853896", "4736779302", "225635439", "4761419367", "4736719938", "4761424337", "4761425729", "14516237", "4736890027", "4761373215", "4736748384", "4761489856", "4703838986", "4736818634", "4761416195", "4291926493", "3429873388", "4516883180", "4761462676", "4734331338", "4761345855", "1421461544", "4761350777", "4714630538", "4761266955", "4761331043", "4761314855", "1956457422", "240141104", "4761259997", "3981953542", "4761247155", "4736667942", "244281046", "4761347176", "4761196755", "4761215783", "4761120029", "4736740994", "4761244643", "4736655522", "4761177562", "4761312508", "4761282736", "4753215377", "4736626032", "4761301096", "4761161187", "4736622372", "4761229043", "4736621508", "4736627472", "4761214757", "4736594239", "4736741791", "4736697764", "3196319958", "4761107229", "4729654008", "4761214894", "2727536015", "4761133157", "4761157463", "4761209974", "4736590464", "4736668184", "1402569169", "4761121877", "256727680", "4761130576", "4761162622", "4761086897", "4761007936", "4761081136", "4723747351", "4760515457", "4760984661", "715516843", "4736688799", "4736547882", "468341528", "4731688222", "3349708235", "409205609", "19197238", "4716064253", "4760960896", "4761079762", "3998364815", "6543672", "4760926521", "4736512226", "3996489132", "4760990722", "4761024514", "4760916269", "4736554388", "4736480472", "4760961076", "4760876667", "4758341069", "776079246", "4736607181", "97428661", "3219754824", "4760772681", "4736445852", "4736539489", "4760937106", "4760860775", "4736594833", "4736454810", "4760841143", "2970396529", "1380188798", "4736452104", "4760918176", "4760864615", "4736442366", "4653010454", "4760823556", "4736415420", "4760793917", "4736478884", "4760864614", "4760737935", "4736523787", "2189326262", "4760710647", "4753898853", "4760766977", "709744606", "4736472086", "4760696837", "1199586504", "4760642667", "769518006", "4734216085", "32321568", "4736360292", "4736428640", "4760734822", "7209082", "4736426612", "4734957841", "4736480599", "4760657777", "4759775309", "4760714356", "4736468251", "4736320962", "3423445479", "4760537475", "4760594057", "3367118248", "4736318490", "4760556753", "4736329752", "834320022", "4739260575", "4736294952", "213978400", "4750510756", "4736341021", "4760564363", "4736433457", "1084565797", "4736262396", "4736301372", "4736440591", "4760657962", "4760517549", "4760638054", "4735705154", "49506792", "4760639074", "4736294916", "4741180523", "439174793", "40164760", "4736419657", "4736375546", "4760596294", "4760529989", "4754840967", "4760448705", "4760566756", "4736400727", "4760483579", "136331308", "4736265972", "14921760", "498392921", "4736379673", "4760469257", "3263023717", "4736336726", "4760378548", "473271024", "4736311916", "4760452522", "4736223768", "4760402063", "4760369421", "4760433455", "4760177843", "219660228", "4760465836", "4760400947", "943586035", "4760104943", "3854668754", "4736208744", "4736269862", "4736320459", "259064580", "4754802142", "4760331555", "4736333047", "4736320027", "4735955875", "4736198238", "4736195244", "4736057863", "4736263946", "4760390662", "4736252450", "4736249534", "377223642", "4760345056", "1386351150", "4736248154", "4479834225", "4736129094", "4736135706", "4705007292", "4736122998", "4730538684", "2276673354", "4736105130", "4736110802", "3153563349", "589466345", "4736261455", "23236598", "1374209220", "4760199741", "4760278642", "4736211974", "761593298", "4736246173", "4760206157", "309911240", "4671583213", "1683770155", "389762055", "4760254948", "4760008593", "4760189962", "4736213713", "4760156477", "3009279536", "4736093658", "4736163956", "3045796096", "4760145503", "311577341", "4760090547", "4736129624", "4736174713", "3784666756", "4756362124", "4550320873", "4760202316", "4736043930", "4760131049", "3150664416", "24201647", "4760054835", "4517693720", "4760053815", "4760071937", "4736187805", "1568923447", "4759929021", "4736039958", "3984521945", "378278756", "4736169673", "4736139733", "4760095342", "4736139715", "2483585567", "35045076", "129144959", "4736086580", "52754965", "3761454794", "4124956763", "386535838", "4760034880", "4759950029", "4736077160", "4759942577", "4736105965", "4736058998", "4735854739", "514002248", "84434605", "4736045954", "4759966216", "4735949262", "4735958112", "4759893502", "4718119276", "4736079871", "4735931532", "4443400096", "3583478778", "4759747155", "4736061361", "4721256787", "2534447973", "4272712953", "4759787375", "518537415", "4759759107", "4735984538", "4735914492", "4735822476", "4736050033", "4759686291", "60519182", "297981859", "23076301", "4759444487", "4759788203", "4759696935", "4748852194", "4759768156", "4759672245", "90801969", "4759779028", "4759776436", "4736004067", "4735950530", "4735956620", "4759714157", "4735966093", "4759662495", "2959265094", "4735989139", "4759559367", "3358636906", "4759736842", "3240155426", "4735969267", "4759242795", "4759645529", "4733699718", "4759649771", "4745588243", "4759568775", "3030255418", "4735955413", "4716611895", "3220775640", "4759562747", "4759550313", "4735796286", "3783478115", "4143763493", "4735790304", "3384305842", "1576773594", "30286361", "4759589249", "4735784550", "1511643738", "24833711", "4759573163", "4759627216", "4759584262", "4759465479", "4735892317", "4735862180", "4735778718", "4740078017", "4735899043", "4735821961", "4759397247", "4735754712", "4735748232", "4735843106", "4756672761", "4759506196", "27628681", "4759391385", "4759394961", "4735809992", "4735735776", "4759497508", "4759495048", "4759429175", "20235640", "4735804034", "1375098068", "4759395797", "4759437802", "87929523", "1029004964", "4757132261", "4735837501", "4759451596", "4759260147", "4735766360", "1342978651", "4759361309", "4759254435", "4735736006", "19685932", "4759408342", "4735760210", "4735770074", "21054235", "4735684632", "4759261815", "4735809493", "4735761020", "4759273935", "4735809073", "4735661298", "4759244487", "4735670670", "4735802893", "4735802713", "809251986", "840474866", "4726523340", "4735622832", "4759173923", "4759331680", "4727079426", "4735739294", "4759219575", "4735725080", "4304778973", "4735635336", "251715206", "4759159875", "4759245077", "4107753266", "4735633392", "19640538", "4735762663", "4735619886", "4759256428", "854416172", "4321624517", "14061555", "4735685594", "4735750453", "4759113939", "22101689", "3872251995", "4759157013", "4759250656", "4759184549", "4759191496", "4759122915", "4759108521", "4759118013", "4756442956", "4759165769", "4759117419", "4735732879", "4759118649", "4759239562", "4735597152", "4759064595", "4759140929", "91549690", "4759214476", "3145398291", "4759218922", "4759207582", "152108314", "4759142123", "3821044933", "237541427", "4759187728", "4759087421", "4735580850", "4759044933", "4759102103", "4759090589", "4735573032", "4759158256", "4759166362", "4759024215", "4735697353", "1575227790", "4759148554", "3025453296", "4759028427", "4758974055", "4759126828", "4759062880", "4759048883", "2592925064", "4759029341", "4759025981", "4735531998", "4735660117", "4735610186", "4690141520", "4735569014", "3379740994", "525275630", "87919541", "24092307", "4759056496", "4665279077", "4759017622", "4735507272", "4735567328", "2937416866", "4758950303", "4759007320", "4758883305", "62873711", "53987594", "19711904", "4758904817", "3227360091", "1369530715", "4758915641", "4758862359", "4735605733", "4735595119", "4735453836", "4758840441", "4758882449", "4735493894", "4735592383", "4758828141", "4758823875", "4758875843", "4735581379", "4735538090", "4758894076", "4758853355", "4735529084", "4758749235", "4758916282", "4758833255", "4758816497", "4758798797", "348140657", "4758835163", "4758883162", "4758851674", "4725490303", "4758818783", "4735508774", "4277977036", "4758756291", "4690992931", "4758738123", "4758704776", "4758810935", "1887839334", "3241766941", "4735428672", "4758748395", "4758787829", "549791517", "4735552513", "4758716787", "4758703713", "4758758003", "4758743597", "3617810232", "4758749537", "4758737555", "74490017", "4758742415", "4735434373", "68993816", "4735378788", "3314977090", "3033522800", "4735526413", "4758699869", "4758733457", "4758693383", "4735503433", "4758653433", "4735518373", "9240442", "568680929", "2922457794", "4594020681", "4758697642", "4758716296", "4758580635", "4756479442", "1469451499", "4735438280", "3293420909", "4570724435", "4758619347", "4625224288", "3545998094", "4735241132", "4758710722", "4758622301", "4758566955", "4735349112", "536565242", "4758471057", "126485887", "4758643283", "3603167894", "3379031427", "380788623", "911142163", "4735470739", "4758668176", "4758509903", "4758613739", "4758525345", "4735304178", "579419860", "4735394125", "2455414646", "4735415180", "4758573929", "4735461673", "4735324812", "4758647248", "4758513081", "4735397402", "3291655419", "4758630802", "4735381562", "4758598942", "4758498735", "4735294266", "18203434", "109954721", "4758604516", "4735302312", "4159190387", "3282814028", "4758581914", "4735428031", "4758546856", "4758410547", "65650944", "2834068907", "388022177", "4758564208", "4735394119", "4758480887", "4758433899", "4758548716", "4758479357", "4758425116", "4758460529", "4758452777", "4735379737", "4758401895", "4758374969", "4758392787", "4758333075", "4758418403", "250304726", "4735318094", "4752079756", "4758456622", "4758310881", "4758393617", "3441097755", "4266314410", "4735305380", "4758354797", "4566976755", "4735211868", "4758319161", "4758352997", "4758401128", "4734863700", "4758355943", "96417641", "4758291795", "4735326181", "4758328841", "4758289473", "4748201229", "4758345215", "3044289227", "4758286295", "3408426863", "4758385696", "4758378022", "4758301601", "4758353632", "4758372742", "4758310169", "4735178160", "18347873", "4758336448", "4758251733", "4758268697", "2874535584", "4758347980", "4758308734", "4309920076", "4758210897", "4758326656", "4758258863", "4758262817", "4758190395", "4758204687", "4758234029", "4758305602", "4758185739", "4758187581", "4735240034", "4758178635", "1053327032", "4758212213", "358682727", "4758169527", "4758213323", "4758274798", "4757945975", "4758146655", "4758202817", "4758148341", "4735129656", "4758151461", "4735262893", "4758055815", "2510542616", "4758261688", "265006082", "4758175697", "4758126555", "4758221422", "4758185302", "4758180089", "447713232", "3497357897", "4758144136", "4758111315", "4758151643", "357472731", "574213782", "4758199432", "4758193282", "4758081027", "4758107255", "4758001455", "4758187246", "3739740073", "4758111857", "4758181996", "4735175966", "4758069675", "4758090923", "4758162340", "4757504476", "4758080543", "303786574", "4757974041", "3087763102", "4758161302", "4472510354", "4758021741", "4758139072", "4758060455", "4758109582", "4758059795", "2705259481", "4756527089", "3271125482", "4735048326", "4735065570", "4758031337", "4758031283", "4713517579", "4565771475", "4758037949", "4735188133", "4758019073", "4431647187", "25734719", "4757940963", "4758029957", "3029509817", "4757956701", "819654019", "4757994257", "4758062308", "4758085426", "857113664", "4758015449", "225185575", "3055248670", "196159406", "4758003209", "4758060388", "603141461", "3485976856", "4757931735", "4748097741", "4735160119", "4751233701", "4757760687", "4746219466", "4757880573", "2947576978", "4757857977", "4757960321", "3074532103", "4757942141", "4757906783", "95348548", "1069588590", "4757884581", "4081710741", "22762423", "4735134391", "4757921165", "4735012392", "4757870357", "4757869059", "4757980882", "4757867073", "4757930723", "3819631525", "475638551", "70548171", "4757858235", "4757903033", "4757915717", "4757891675", "4757903189", "7894162", "4757866469", "1493195964", "4731323121", "3743060353", "1655149836", "4757817081", "4757884217", "4757889449", "2182031337", "4757932126", "4735102651", "4757815035", "282438141", "4757885056", "4757916016", "4757924500", "4757903200", "4757834603", "4735050554", "2380093922", "4757781081", "1954293848", "4734943332", "3161541668", "4757664735", "4757813633", "4757759721", "4757861716", "4757823815", "4757867788", "4756068377", "4757862436", "4757862142", "4757874754", "4757862202", "4757731227", "4757751015", "4757785223", "4737524062", "4258268567", "4745914877", "4757836234", "4757856016", "4734927120", "4757828860", "4757825494", "4757836216", "4757698479", "4754636236", "4757681117", "4734148704", "4734957950", "4757677221", "4757688939", "4757689095", "15241153", "4735046173", "3544905139", "1442069736", "4757775016", "4757629833", "4757650587", "4757648421", "4735031467", "4757756776", "4757676383", "4757702369", "4757639817", "4757659025", "4757735902", "4645044203", "4757748694", "4757730562", "4757627783", "4734885948", "4755327022", "4757593053", "4757701516", "4126800195", "1158163531", "4757599647", "4757580507", "4757688826", "4757654855", "4757711974", "4757717962", "232263043", "4734871602", "4757563935", "4757574519", "4757716156", "62582393", "148448915", "4734902984", "474274010", "4757516361", "4757681788", "4757619797", "4757585273", "4757649268", "4757611601", "4734859483", "874699776", "4757579417", "4757643304", "3432689788", "562448560", "4757593408", "4757652856", "4700260824", "4757523387", "4757647222", "4757521701", "185736307", "109284239", "4757555663", "4757633122", "4757497239", "4734836460", "4757615416", "4757502675", "4757285715", "189717412", "4757552057", "4757499483", "4757524877", "4757486781", "4757496651", "4496278701", "2757903133", "4757535209", "3323877689", "4734939649", "4757582902", "4757439147", "4734807600", "4734941173", "4757463015", "4757458035", "4757314875", "472155776", "4757408241", "4757486117", "4757500157", "4757552074", "2841122080", "3245282243", "4757417091", "131164504", "219786395", "3976422076", "4757371397", "3245557951", "4757495116", "4757373465", "4757454509", "4757511382", "4757508742", "4757479042", "4757502976", "4734862214", "4757380821", "4757115501", "4757373081", "437156498", "70396195", "4757362341", "16025265", "4657959731", "4757463388", "4734747882", "4757403689", "4757465560", "4757274315", "4757445922", "4757394479", "4734844394", "4757380169", "3309896900", "117176755", "4544450969", "4757301945", "4734787610", "4734868399", "4734722022", "1705486176", "4734880735", "4734751002", "3297256825", "4757321247", "4757333177", "4757316743", "4734862177", "4757290287", "4757288247", "4734727950", "4757383588", "4757335343", "4757274747", "4757259567", "533254833", "4757252493", "4757309129", "4734719910", "4757302901", "2460293558", "3376158615", "4757364718", "4757285189", "4757277569", "4757292803", "4502702540", "4757196573", "2887601698", "1347057806", "4757323462", "4757202803", "4757318812", "4734743048", "4757222789", "632956521", "4757135901", "4757156913", "4757293276", "4757244623", "4757245955", "4757188695", "4757244695", "4757175993", "4757237837", "4757286508", "214105057", "4757280442", "4757231716", "473003825", "4757275642", "4757276608", "4757189380", "4757201147", "4037907035", "4757262406", "4757256400", "4757190317", "4734650340", "4734790483", "4757255176", "4757239228", "2961586797", "4757181563", "4734785455", "4757122425", "316482632", "4729870417", "4757107779", "16459336", "4757085327", "3769051697", "4756202477", "4757205040", "296704143", "4757133677", "4757123789", "4753275171", "4757060901", "4757059755", "4757047167", "4757095643", "1585134229", "4757049322", "4757157076", "4757161042", "4757041287", "2530566580", "1276044865", "4747238355", "4730644922", "4757010273", "4757071697", "1166494836", "4663605679", "37205824", "4756989813", "4756998687", "4757130574", "3139566474", "4725995805", "4734577830", "21575948", "4757113288", "4756990797", "4756973781", "4559559012", "4757034575", "4756975785", "4756989615", "4757011709", "4757100862", "4757036837", "3312644365", "4656613888", "4756957461", "4756965377", "4757003867", "4757069386", "4757057074", "4757047156", "4756990913", "4757064622", "4734569976", "4756931487", "4756964369", "2288844465", "4756988837", "2986403619", "4757044582", "4748393542", "200353363", "4756923261", "4756907481", "2763135142", "4734689713", "4757022052", "4734674893", "719124282", "560604890", "256186602", "4756969708", "39622743", "4756918169", "4756942522", "4692952411", "4756916741", "4734637747", "2820574679", "4756866795", "4756903799", "4756814421", "4756963648", "4756861072", "4756953220", "4756844902", "4734586754", "4756804773", "2235004605", "4756837228", "4756871621", "4756622595", "4734488508", "4756864409", "4329327628", "4756907722", "4756778187", "4756843727", "4756796625", "4756739439", "4734557828", "4734574496", "4756838183", "4756846937", "4756769007", "4756806803", "4756768047", "4756810427", "4734613633", "4756854316", "4756762107", "4756750635", "4637967800", "4734530840", "4756684767", "4756859668", "4734470298", "4756719867", "4756730475", "4756389735", "700719895", "4756760963", "4756847314", "4756699245", "4756714095", "4756797376", "3956926512", "4734580201", "4756694175", "4756744091", "143763577", "2246693687", "632347405", "296562486", "4756802668", "4748128521", "4756693155", "4756693413", "4756693101", "190000673", "4756681341", "4756686087", "4756793188", "214529821", "4756725881", "4756782838", "4756772056", "2930276282", "4734449725", "4756764514", "4734508994", "4756760674", "4756774054", "4756766596", "4734504404", "2882309905", "4756659909", "4756738708", "622183081", "4756626615", "4746466605", "4756743586", "4756211727", "4756667555", "4756752136", "4496755996", "4756670447", "4756724866", "4756693582", "4756560725", "4756341135", "4734469802", "4756643069", "4756713196", "3890831309", "181684635", "4756657931", "4734484874", "4756717696", "4756582593", "3694370114", "4756654475", "44502376", "407252913", "4734476498", "4756535841", "4756667962", "4756584093", "53379072", "4064634802", "4756677016", "367203024", "4756611137", "4734513373", "15990562", "4734369846", "2985160159", "4756649362", "559472452", "4756595915", "4598442734", "4756581257", "4756644580", "4756541897", "3412812012", "4756623520", "4706622722", "2149914815", "4756571903", "4756624672", "4756626916", "93691945", "4756548023", "4756598542", "4146780738", "4756602682", "3271374494", "4756480335", "4756471419", "4756574638", "4756601716", "4756466655", "4756468521", "4756590952", "4756587028", "4756526602", "4734437893", "4734378824", "4756504535", "1629065936", "4756424175", "4684764498", "4756499609", "340956835", "4756476653", "3419776559", "118125385", "2422410139", "4756456835", "4756547896", "4756505230", "4756401747", "3301096941", "4104452547", "4756387935", "4756532236", "16362502", "4756398507", "4756462120", "4756379001", "3231493532", "4734387764", "4734366158", "4734373634", "4756484002", "91007329", "4756432397", "4756376667", "4756446635", "2908908316", "4756395089", "4756363293", "4756449262", "4756351179", "4734420373", "4756343175", "4756414583", "4756339635", "4712548868", "4756290885", "4756261097", "4756446076", "4756290053", "4756326615", "4756333763", "4756355327", "4756255647", "4302013108", "4756315995", "4734312908", "4756421482", "4756413682", "974176632", "4756283541", "4734384793", "4734378823", "22815781", "4756342456", "4734061574", "30059550", "4756402336", "4756338683", "4756265025", "4756334063", "4756311377", "135263653", "613445490", "4756390516", "4734238986", "4753493007", "4734316634", "4734234504", "4756240473", "135730830", "4756366882", "485380352", "4756270157", "4755953302", "110889659", "4756241355", "4756220367", "4734231432", "4756203735", "4756257495", "1876007538", "4738803683", "4756364686", "4756231881", "4756221327", "4756265531", "4756356736", "741498528", "4756330522", "4734341203", "190841871", "4744540107", "1120411730", "56443882", "4734650727", "4756268129", "4756151967", "4756307656", "1645391851", "4756285102", "4734285128", "2517008108", "4756177101", "119691109", "347130467", "213136257", "4756232051", "1849565287", "4722672906", "4734268406", "4756169007", "3305830187", "4756163913", "4756219643", "862144376", "4756151061", "4746996514", "4532680572", "4756153167", "4756264750", "2784705746", "4756189397", "4756185743", "4734172812", "4756179449", "4756254688", "4756157081", "4756195169", "3920566648", "4755950981", "4756232074", "4756243876", "4734163038", "43775899", "4756052295", "4734299293", "4734103854", "4756139717", "4756101507", "4734122474", "4756226716", "4656228083", "4756206616", "4734147600", "4756219282", "4755931702", "4756194214", "4756104257", "102555255", "4734121392", "4756017993", "4219462939", "4734062952", "4756050982", "4238700027", "4734220321", "16904352", "4756127548", "4734231925", "4756085477", "4756016241", "4756140682", "2742368294", "4734188114", "4756131178", "4756076303", "596837950", "4756118128", "4756013415", "2154578179", "4734104112", "4755912333", "4684695571", "4756052716", "4756107616", "4734079812", "1522414483", "4755992200", "4756035143", "4756022849", "4756018697", "72969703", "4724396724", "4734074028", "4756054678", "4755978802", "4756044514", "598644225", "4756006283", "948184818", "4697115612", "4734066192", "4755981917", "4756057894", "4756045840", "4756049542", "4756051108", "4756007368", "4756020262", "4519670353", "4755969857", "4755877881", "4734023454", "4743016883", "4734131414", "4755924035", "312965260", "4755919456", "4734167053", "4733646674", "4754249836", "4755833697", "1723189850", "4750855223", "4755908002", "4755820899", "4755936376", "2285737388", "4755961774", "1964685090", "4755870196", "4755916348", "4755806841", "4733966238", "4755925216", "2260437854", "4734124693", "4755855221", "4734109753", "4733961792", "4755800421", "4755795010", "4755777069", "4755791349", "4755895678", "4755808943", "4755891256", "4755768497", "4755819323", "4734087553", "4734103093", "4734051734", "4732590032", "4755813065", "4755758903", "4733828190", "4755865948", "4755775877", "4755749301", "41015173", "4755734001", "4755791147", "4734092893", "4755784643", "4755734121", "4755722901", "230179504", "3663521728", "4733944560", "4755812674", "4734040351", "4755681867", "4755686045", "4755712235", "4755783952", "4755706637", "2883392019", "4755655569", "4733983286", "4755648675", "4755645321", "4755637185", "4755698254", "4755747796", "86225263", "4755677903", "4755596121", "4755709882", "4734037219", "4733484685", "4755665657", "24102671", "4755605423", "4755703996", "4755655001", "4733956748", "2777535250", "4678599134", "4755668200", "3913951881", "4755580227", "2633792262", "4733868084", "4733941886", "4755612059", "2210908023", "4755677866", "4655569752", "4508497821", "14748010", "4755545355", "4755590363", "4755659068", "4755551655", "4731976260", "4755554049", "19195558", "4755649642", "4755599561", "4755553715", "4755544047", "4705473505", "4755585689", "4121462584", "4733982613", "4733926694", "4755518962", "4733900732", "4755550001", "4733868134", "4755540335", "3250470795", "4755532355", "4733904728", "4755437847", "4755515741", "4755519376", "4755568588", "4733784936", "4755431235", "4755444153", "545037197", "4733870732", "4755496757", "4753891216", "4733799576", "4755530422", "4755556396", "923179795", "2876443557", "72886300", "4733807532", "4755545236", "4755309214", "4755517714", "153455979", "4755503296", "4755508156", "1176701184", "4755440417", "4755501862", "4733776038", "4755495262", "4755367647", "4755348315", "4733768562", "4733842202", "4557536782", "4755395896", "4755461842", "4755398369", "4755427228", "4733814494", "4755448288", "4733884075", "4755444136", "4755421042", "4755339701", "4755309333", "4755314901", "4755376577", "2695939015", "4755399538", "4755286107", "4730413514", "4755273507", "2890562208", "4755362963", "4755284661", "4733605994", "4755399430", "4755272403", "267265512", "4755320597", "4755259881", "4614514881", "4755357736", "4755302075", "4755335014", "4755309035", "50857818", "4755250755", "4755343342", "4755140943", "4755273821", "4755328822", "4755212361", "4755192435", "4755334882", "3028002386", "4733669136", "4755264623", "277663921", "2153307593", "127839968", "4755236555", "4755314236", "4733810299", "4755253277", "2887954536", "4755205211", "3741989837", "4731597613", "4755168165", "4755170475", "4755167307", "4754727873", "443758109", "4733537364", "4755157041", "4755258856", "4755147447", "4755147381", "4755249214", "1192568762", "4755096399", "4755167177", "4755262636", "4755133731", "4755144159", "4755256960", "320285320", "4733639238", "4753508897", "4755124461", "4755136948", "4755110595", "4733722633", "4755104553", "4755160823", "4755061703", "4755235318", "4755149417", "4755157523", "1015042345", "4754936357", "4755071055", "4755031636", "4755121607", "4755101843", "4733703680", "4755051261", "4755174982", "4755132083", "4755052335", "4755045567", "4755111869", "4754998047", "3360599472", "4537941109", "89023709", "4755165028", "2951238653", "4755026715", "4755028881", "4755076163", "4755057617", "4755141016", "4755087383", "63700389", "34713920", "4755070157", "4755086422", "4755019636", "4755061577", "4755110002", "4755062189", "4701970578", "4754927847", "4755080488", "4755088942", "4754975367", "4733636156", "4755019097", "3226437103", "2267421480", "4755092314", "4733700553", "4733518410", "394839517", "4754979317", "4755030382", "4754922207", "4755036628", "3217924913", "4755002885", "4733672407", "4754936001", "4754985329", "4733631386", "4754884581", "4754976497", "4755025168", "4754891722", "4733524608", "4754939321", "4754926469", "4639746255", "4754944223", "4754899527", "100549211", "4733652019", "2972205475", "4754988742", "4754882955", "265165339", "850712400", "4733557975", "4733512278", "4733523744", "4754923703", "4754857541", "4754983036", "4733644801", "4754924849", "4754894243", "4754845707", "4754364508", "4754965954", "4670150653", "4754970016", "4733579612", "4754932396", "4754888909", "15124207", "4733629699", "4754814406", "4754870003", "4754837181", "4754800671", "4754816595", "4754816127", "4754790861", "4746258502", "1357963177", "4754876134", "4754811633", "4733477166", "4754676622", "4754896936", "4754822981", "4754762777", "4754778555", "4754796261", "4377021387", "4754913028", "4754795493", "4733611213", "4754812517", "4754290635", "4754890054", "4754361219", "2949917872", "4482206369", "4754722647", "4754794823", "4754816267", "4754812229", "4754810981", "15845035", "4754819777", "4241323814", "226274067", "4754844316", "4733533694", "4733580379", "4754716815", "1638184681", "4754763377", "4754774669", "4754694153", "4754757455", "4754769197", "4754718507", "4733497046", "1226265152", "4388579772", "4733397012", "4754815588", "4754694681", "4754669565", "4733337458", "4754736635", "4733424492", "1103965016", "4733349806", "4691019907", "4754622393", "4754662275", "4754722763", "4754631735", "4754750374", "4733384478", "4754637675", "4754687837", "4754629395", "4754751496", "4754756368", "4754635595", "4754751922", "473265202", "4754549295", "4733471240", "560907112", "4754607557", "4749969861", "265516547", "4754597853", "4754591907", "4733443580", "4261641196", "4754649557", "4754646917", "4754592645", "4733357136", "4733453120", "4754684932", "4733436794", "4754586575", "4754562621", "4754541561", "4733338296", "4754574917", "4754181652", "4754585969", "4754666458", "4754566937", "47321565", "3315385361", "4754537681", "4754593457", "4754569595", "4754590643", "14102421", "4754526555", "4733403314", "4754595688", "4754429373", "4583322673", "4754489361", "4754498775", "4733299536", "4733446531", "261696132", "4754535755", "4733388350", "4754527643", "4733299632", "4754439807", "4754580526", "4754482217", "4754558716", "4754508592", "4754492417", "4733374814", "4754521720", "3073197188", "4754434575", "4754442682", "4733422321", "4716135029", "4754132237", "80408293", "4754530582", "4733397739", "4754513596", "4754454713", "4754398713", "4754502016", "4754444417", "4754463142", "4733388079", "4733245848", "4754463856", "4754244952", "4754344779", "4698115542", "4754360003", "1539032851", "3310672815", "22396645", "4754379641", "4754441956", "4733240472", "4754328057", "4753783996", "4754371517", "4754294133", "4754358095", "4733343193", "4754289635", "4754306613", "4754283279", "4754294805", "4754323709", "4754345435", "4733314753", "4754264841", "4733209944", "4754211581", "4754388562", "4754342963", "4754365702", "4754400274", "4754287181", "4754329763", "4754320577", "4754289977", "4754325797", "3289957461", "4621003695", "4733289812", "4733278790", "206236633", "4754363422", "4731640014", "4733194740", "4754276063", "4733235805", "4754338642", "4754286155", "4754228123", "4754272247", "261917033", "4754332714", "3161107329", "4754319328", "4561537642", "4754244677", "4733239694", "4754292922", "4754203276", "4754227175", "4754288674", "4754168973", "2500910660", "4754203697", "4733226200", "4754139023", "4733243689", "4754112135", "4754121087", "4754121627", "4733120670", "4743250707", "4733250415", "4754112381", "4733207672", "4754209402", "4733195912", "2905990358", "4732968685", "1723046504", "4754136881", "4754088539", "4754028315", "4754025627", "4079119993", "4441682054", "4733217853", "4753920021", "4733094624", "4733224159", "4754083703", "555065700", "4733170622", "4733057808", "4754057357", "274070440", "4754018673", "4226889154", "4754042873", "4733163194", "4754055179", "4754009715", "4733156390", "339344092", "69513584", "4733205013", "4754107228", "4753999155", "4754044817", "910528460", "4733150834", "4754102248", "4754031359", "4754047649", "4754005037", "4753838979", "4733059488", "4386763877", "4733195413", "4733049924", "4705497029", "4754018363", "4100457733", "4733138366", "4754066734", "4749950235", "2748798506", "4753995323", "4725398247", "4733180215", "197951725", "4733131574", "2931946486", "4733042958", "4753979555", "4753931721", "4733039250", "4733168491", "4753557137", "4753904241", "352573002", "447791796", "4754017948", "4733034554", "4733002398", "2258149591", "4733023094", "4753827987", "2357419346", "283444546", "1916909690", "4753946902", "2741898127", "3419432291", "3182718373", "4753792635", "4753885522", "4753736841", "4753814447", "4753831463", "1655062370", "4753777395", "4732982576", "4753749735", "4753733955", "4753800323", "4753745247", "4732935852", "49950337", "3087506473", "4753830988", "4753840636", "4753782635", "4753773227", "4753742783", "4753765175", "4753715493", "4753713375", "4753670721", "1420810416", "4753816600", "4692572478", "307253072", "4732890792", "4732910208", "531015362", "4753735469", "4753780834", "4753725023", "4515442403", "4753707935", "4732940594", "4701743496", "4753699223", "4753649265", "4753642275", "4753673681", "4343375777", "4753735828", "633812347", "4732883892", "322548747", "4753617219", "4745584096", "2889763128", "4753626155", "4732987639", "4753693414", "4753581285", "4732856778", "4720913138", "4753626497", "4753693276", "4753551801", "4732850304", "4753597475", "4753670536", "64215324", "4753292129", "4753551105", "3126205433", "4753535409", "2359656048", "4732805592", "4065203359", "4753576049", "4753462335", "4577068290", "4753561829", "4753485573", "4732814412", "4032126856", "4753489336", "3335270788", "4753359591", "350612132", "852702962", "4753571074", "3946420281", "4753450575", "801735901", "4753560688", "4753529195", "4732877480", "4732776618", "4753570222", "4732869014", "4683160164", "4753522660", "4753566016", "4753497023", "4753437795", "4753419021", "4753550842", "2322950802", "4753474283", "4753423097", "73116572", "4753398435", "4753436153", "3313491528", "4753510168", "83845669", "4753396635", "4753356441", "4753488586", "4753398503", "4753357401", "4732832054", "3076665694", "4115986153", "4753400843", "4753349061", "4753377767", "4753377317", "354870888", "4753454782", "918412532", "2617444070", "91494334", "4695708134", "800445865", "4753297047", "2835552996", "4753339175", "3161318884", "4753365616", "3069558734", "4753268421", "4753374046", "4753269437", "4732693572", "4334898733", "2922745134", "4753284497", "4753272737", "4753093163", "4753232193", "4753282397", "4753255343", "4732685052", "4753205205", "4752998655", "740777515", "4644632113", "4752919462", "4753309582", "4753247297", "4753191075", "4743549983", "4753205379", "4753244357", "4430990908", "141108821", "4732793875", "4753298788", "4753211567", "527453046", "4734472155", "4753151151", "4753250716", "3102488113", "4753198157", "4657932021", "3954908534", "3074790257", "1629321793", "4753179227", "4745211689", "4732618638", "4753161983", "4732748173", "4753116257", "3340845305", "1500217363", "4732731853", "561369792", "999926293", "4753144876", "4753060107", "4732708159", "4753130416", "4732721899", "4753163848", "4732662181", "4752862523", "37846288", "256085015", "306039929", "4753149724", "4731201036", "4753081049", "4732586352", "1450670148", "792219294", "3587032522", "4753070123", "4753049735", "4732650434", "4753116802", "3231748003", "4732651622", "4753062154", "4753089856", "1475154985", "4753054768", "4752957869", "3075625922", "4752955395", "4752886275", "4753004657", "4753027876", "4732525722", "4753042834", "4752960977", "4753023328", "4752892881", "4752925895", "4732605158", "4378292534", "4752922697", "1292381706", "397184989", "4752866751", "4752857121", "197393149", "356383461", "2783566572", "4752853695", "4752956500", "3304156939", "74960018", "4752938602", "2479627440", "4752885143", "829865587", "4752821477", "600123871", "3724136779", "265998896", "154883535", "1198985886", "4732550672", "138075819", "4645869209", "4752824309", "4732551848", "4752780321", "4752900484", "58816486", "4752759741", "4364203577", "4752890776", "4732063716", "4732431054", "4752754407", "4732529522", "85598533", "4752765316", "4752757253", "4732461764", "4752749837", "4752706881", "4752650847", "4752676383", "4752688815", "4752768154", "151398011", "4752712649", "96049227", "854299705", "4752631809", "4752704783", "4732473920", "4752697883", "4752642921", "451976940", "79412441", "4752751216", "4752675071", "4732360008", "4732418726", "4752722836", "1742603659", "4752665237", "4752713380", "4752685702", "4752584181", "4750482376", "4752572595", "4721758590", "4372492696", "25143224", "4752663016", "4752667396", "4752665476", "4752522855", "4752600101", "3099989365", "2155504715", "2309976006", "42300926", "4752575249", "4732325772", "4752561082", "4752602476", "4752575483", "4752570557", "4687799082", "4752551063", "4752568222", "4752510023", "4732422925", "45343784", "4752565582", "4752438615", "4752561376", "2402091119", "4752440115", "4709076673", "4752502403", "4752553168", "4752476507", "4729390394", "4752416655", "4732249524", "4752388695", "4752520156", "4752530722", "4732391665", "1214159695", "4752386039", "4752330201", "4752446458", "4752455842", "4732279052", "4752331701", "4752405916", "148814931", "4752359537", "4732307828", "2272409545", "1494028537", "4728907874", "4752355637", "130700994", "4752359963", "4732300280", "4704386552", "4696708285", "4732284139", "4752309017", "4732289342", "4752323896", "4752254187", "4752248427", "4732271870", "2944332948", "4732271840", "4752190936", "4752222357", "4752251837", "2685837646", "4752207075", "23283907", "4732228795", "4752173001", "4752178641", "4732246718", "4752223757", "4752290626", "426834725", "252762166", "4752279688", "2705469679", "4732276693", "4622898553", "4752251770", "4752131237", "4732215374", "4752189323", "4752235756", "4743403115", "4732201700", "4732237639", "4732251979", "4752090675", "4732190414", "4752120677", "4752104537", "3352806251", "4732232071", "4752051081", "143011472", "4732210771", "4752152242", "3227289996", "4751979927", "4751986635", "3325740278", "4752047753", "174828497", "4752037097", "4752024107", "4751985801", "4752085714", "2815909507", "4752050596", "3303573154", "4747920783", "4732159105", "4600205592", "4745045608", "4751992781", "4751939571", "4751940869", "4751903385", "1052491386", "4751624481", "4732098902", "4732099640", "4751881155", "28509248", "4731863258", "4685247211", "4732121785", "4751961328", "4732072046", "4751884877", "4731122946", "4751952556", "266013989", "4732111051", "4751938216", "4751939776", "3152156130", "4751889394", "4732085371", "4732040552", "4710544115", "4751886742", "4751882482", "4751794643", "160092652", "4751805017", "4731949218", "4751775203", "4751735777", "4732003316", "4732046119", "586247255", "4751786542", "4751720717", "4751785516", "4731991394", "4751670609", "4746416301", "4751638697", "21597029", "4751374035", "4731880500", "4751642775", "4717690746", "4732014991", "4751743702", "4751594235", "4731953414", "4751699968", "4289465616", "4751626157", "4739381187", "23636780", "4741468762", "248125787", "442364623", "4731916958", "4751546195", "2906684180", "4731905894", "3254976727", "3300370683", "4731689778", "4731943273", "4449088699", "4731873860", "4731907748", "244203924", "4630955066", "4731804456", "4731595394", "4751462661", "4751541797", "2820447379", "308838198", "4731882986", "4731797832", "4751496017", "4731907285", "4731866036", "4731853502", "4751545522", "2463820162", "3106684690", "4751424627", "4751467763", "4731766164", "57476449", "4731841526", "4751358574", "4731837440", "3375379929", "4751389461", "3986926098", "70995279", "4751364135", "1206780888", "4692063194", "153291514", "4731746520", "4751354979", "4731722832", "4660740329", "67680999", "2272765093", "4731306703", "4731775586", "4731702432", "4731826039", "18926788", "4731771902", "4731827713", "274977323", "4731688782", "1021198724", "223486446", "4751375962", "4751297957", "4731673512", "4751098840", "3311894144", "4731672792", "4731670452", "4751261728", "4751246867", "4731726170", "4751244209", "4731647598", "4746862817", "3399594370", "4731764437", "4745966801", "275147184", "4751164953", "3776531656", "4722245167", "4731619632", "3302669402", "4751252416", "4747304417", "4751133513", "3268378970", "433823693", "4731722713", "4731687842", "4751100567", "117270419", "4751105729", "4731647204", "893109378", "4751165062", "4594271483", "15011455", "4731562452", "4750725448", "875085230", "4731562272", "3809398397", "44502040", "4707044837", "4731688213", "4731560208", "19417042", "18324720", "4751109136", "45764104", "4751039255", "4750836376", "4751066416", "4751089426", "99583473", "4219121", "4751071822", "4751083696", "4746725487", "143593213", "1115595264", "4731526092", "4731657133", "4731656341", "4731526278", "4746845715", "4731644071", "4731359832", "4751048356", "4731644119", "197600014", "4731643153", "4750772235", "4750950383", "4731481050", "2207915253", "17807401", "4750868481", "4731559616", "4750987708", "4750962796", "4731472033", "4731400398", "4731546632", "4750848801", "4701024624", "383210925", "4731571279", "4690957999", "4729757898", "4501094052", "4750809081", "4731460003", "4750678275", "3276828428", "4731310452", "4731507536", "4731556183", "4731505400", "4731498788", "135875719", "4731497264", "4750757903", "4731474542", "4750699017", "4562031016", "4731482414", "4750705275", "4750802734", "4731038948", "558817814", "389656928", "4731345846", "4490575762", "274615625", "4750655835", "4750787956", "4750713658", "2319024469", "22216521", "737113322", "247635761", "4731450073", "266914565", "1672089913", "4731434660", "4731328812", "4750618523", "4711517119", "4731425354", "4729734445", "4750630463", "20859500", "4750544415", "3054398590", "4750568122", "4731311370", "4750550835", "4731299538", "4750575443", "2932909706", "329271512", "3644530876", "170550380", "4750557083", "112446484", "4748159314", "4750352187", "4750610788", "4750517237", "4731121212", "4639631713", "4750578796", "4377260537", "4750567048", "4745883399", "4750416627", "4731267612", "69928260", "4195911076", "4731255012", "362583409", "4750470089", "2784083059", "4739984956", "4731380953", "25480632", "4731333920", "4731195666", "4731333434", "4731306218", "4750383975", "4731265670", "4750438001", "4731333499", "3615439933", "4750474114", "4724086992", "4750409129", "4731218282", "4750356183", "4750438744", "4750350201", "4745029703", "1637431452", "1850069564", "2261214462", "4750127656", "4750304001", "4750430218", "3397950497", "4731325075", "4750411828", "2352400368", "4750286817", "321230631", "4726433534", "4750270755", "3168017048", "4731173958", "480828210", "4750245585", "4750368016", "4731172392", "3026420343", "4731168192", "4750228335", "4750346956", "4750271147", "4750011629", "4750316608", "4750176333", "4750204941", "4731217520", "4750250962", "4750205375", "34821791", "4731120378", "4731126552", "4750174467", "4750255936", "4731257293", "4727356054", "4727653333", "4750116021", "4731229873", "20662593", "4546458634", "4750224928", "4750171271", "835995246", "1972916413", "4329350479", "268757999", "4731035245", "4714475062", "4750046919", "4750109657", "4750063175", "4749991793", "4750070849", "4719553997", "278843460", "4731181453", "4750022961", "4750011857", "4750044359", "4750008989", "4750034429", "4731011922", "4731001494", "64123936", "3965008401", "4725221328", "4750055776", "4749905055", "4750000769", "22521719", "4730999550", "1030800912", "4749898341", "37488847", "4749946427", "3003686526", "4731060014", "4730920722", "348241769", "364839265", "4730974272", "4730968758", "1239709267", "3897389234", "3365079807", "4731085693", "4731084697", "4744382843", "250253280", "4749857321", "3011256515", "4749822489", "4731021578", "4730997812", "4636164914", "1240362440", "4730962339", "285920000", "4730926572", "4749839902", "3657564679", "2940165199", "4749725601", "4749709035", "4749753335", "118555341", "4731018433", "21123955", "2360683524", "4749659835", "4749772636", "4730947058", "2812884586", "4749641955", "4749673829", "4730940722", "635833627", "4749725068", "4749610041", "980439511", "309190582", "316752268", "4749670108", "15469770", "4605593369", "4749601299", "3018810447", "4749711322", "325816369", "4749623237", "4749570315", "4018463954", "4749673054", "4746150087", "88218118", "4730945713", "4730794644", "4730935711", "4730925577", "2690189900", "4730922373", "4730793882", "73513585", "4749472395", "4749558269", "2488944606", "1702403334", "4730768526", "1393786470", "4730843720", "4730886163", "4730756772", "4749097637", "4749520972", "3006285209", "4749409293", "4730832734", "4749414441", "4730827376", "4723338968", "4519905196", "4730724732", "4749478342", "4730859073", "4749503620", "4730863921", "4730822840", "4749337419", "351249935", "4749404789", "4749442463", "4730812238", "4749343103", "4749291315", "4749422279", "4730853199", "4749461254", "4749491716", "4749332541", "4730706492", "4730782952", "2175660106", "39024946", "17699541", "4730820259", "3243688356", "4749359116", "4749283251", "145463487", "445774868", "4730668002", "4710597793", "3409590111", "4749372682", "4749356356", "4749286907", "700527289", "2586997621", "124167511", "4730730554", "4749321202", "4730547373", "4730724374", "4730708846", "4749217637", "4749197043", "4749294418", "4730637672", "4730701574", "4730620878", "30295474", "369315204", "4749136755", "4749043181", "16052890", "4730656442", "399894063", "4748968643", "4730605002", "4502199024", "4749228112", "4749103335", "1292893230", "4749142151", "4730716729", "1244733097", "43290183", "2426749698", "4720797381", "4749076635", "4730695849", "4748485401", "4749092176", "105638773", "4730692093", "4749040575", "102198607", "4749119242", "4749095615", "4749089729", "4749022581", "4749072617", "2629048569", "2335547430", "4749011433", "3983341332", "4749017303", "2774523890", "4689819822", "4730619560", "4748982861", "4749100666", "4748941533", "4749013493", "24085605", "4749044837", "4748684057", "4749073222", "4730528532", "4749010637", "14405122", "4730646919", "4748965397", "4730513706", "4730646133", "4730574854", "4748935653", "4748769081", "4748875173", "4730637673", "4730502852", "4726111211", "248973173", "4748910975", "4730609899", "4746392957", "4730620465", "2157467090", "2382520652", "4748880195", "4513656736", "4730548538", "3305569479", "4748996302", "4277510614", "4730455932", "4748984536", "4748968702", "4748894117", "4748927176", "4748939608", "4539374740", "2930015934", "3666417258", "4726632834", "90732175", "1918006934", "292557700", "4748342421", "4748788053", "4748907982", "4730431422", "4748830403", "4748329887", "4748836846", "4730343762", "4748769381", "1683818635", "4455959842", "4748803943", "4729822464", "4748724081", "4748840542", "4748727093", "4748764349", "4748830636", "4748674995", "3328082697", "4730356092", "2154591030", "4476879455", "4594633882", "4748718527", "4730503339", "4748716457", "88667157", "4730388852", "4748706815", "2863801423", "4748640243", "2785393323", "4730506753", "252010664", "4703925504", "4748745922", "4730364932", "4730453497", "4252071", "4748666237", "4748681368", "4730440034", "4726014377", "4748610387", "4748719516", "4748586555", "2704809247", "4748643761", "4730359933", "4748491097", "4748628677", "4730436452", "4748604255", "4748642909", "4730342100", "4730433314", "3293897352", "4730418314", "4748602583", "4748613809", "4733290216", "4730470645", "4748435907", "4748684338", "4748618975", "35203319", "4748588807", "4748657782", "3104299214", "3874370114", "14565233", "4730436211", "4730288358", "3160191690", "4748488487", "4730372210", "4748533697", "857212382", "518519886", "4748573314", "4748510243", "4748471115", "772743001", "4745330841", "4730363786", "4748587576", "4747813101", "4730409133", "4730285892", "4748541622", "4730270472", "4421374635", "4748553160", "4748429301", "4748549722", "4748419701", "3435833651", "4748334393", "18964783", "4748522782", "4748449649", "2168731911", "4748447477", "78852575", "4112920107", "110528831", "4748499382", "4748480674", "4730228940", "4748439155", "4748480668", "4697978804", "4748329395", "4748481736", "4748352868", "4748405837", "4748330397", "3038216569", "470314427", "4748375609", "1357719684", "4730189292", "178522057", "4730219472", "1609392570", "4748332937", "4748269707", "355554030", "4748387854", "4726736244", "360461731", "4748370202", "4748237181", "4748303663", "4748356402", "4748308157", "4748270315", "4748250819", "4748295323", "4748354842", "4730213114", "4748278535", "4730259487", "4748334286", "1360466065", "229711678", "4299563237", "4748206767", "2889713085", "4748212755", "4748322082", "4748304520", "4748258357", "4748302066", "4748255381", "2962339996", "4748292436", "4748217629", "4748192657", "4748284336", "4730133144", "4477890079", "4748241076", "4748156691", "4730271853", "1239759463", "4748227918", "4748253622", "4748136153", "276468837", "4748099091", "4748178467", "4748231782", "223224031", "4748203336", "4748084595", "4748200096", "4730238883", "4748135477", "4748196466", "4748118695", "4748193916", "4509273434", "4748108813", "4692934982", "4729851224", "780448", "4748145340", "4747987169", "4647715463", "4748059823", "4746773555", "4748043023", "4748050775", "4748017965", "276543768", "4747990635", "4748085034", "4748008395", "4747978035", "4748101480", "4748089942", "4748060417", "4748020895", "4748001869", "4748069290", "4748031035", "58693294", "328652492", "4748085316", "2911205230", "2746535473", "4748003297", "14193852", "4726620954", "313890019", "4748033446", "4747947201", "488136957", "4747998053", "4747938801", "4747995617", "4747979075", "4747931553", "4747938315", "4387286117", "4747925901", "4747926321", "4747943195", "4747910559", "3004117607", "4747845975", "4747912659", "4747998256", "4747954475", "4747952261", "4747977160", "4509813143", "4737007293", "4747927595", "37207781", "4747857033", "4747928435", "4747873521", "4730092454", "2531878283", "4747873029", "4747945246", "4747854567", "4747900523", "4730138683", "4747959202", "4747921948", "4747904609", "3049468882", "4747843941", "3051209724", "4747904074", "4747840497", "4747861397", "4747885259", "4747669157", "4747878125", "4747884574", "4747869449", "4747795599", "1239433693", "4747839449", "4747799171", "4736906367", "4747781361", "4368442256", "4747808841", "4729971912", "4747902466", "4729968768", "81681377", "16000162", "4747900396", "4730074465", "4747697235", "4747770675", "4747875118", "4747723881", "172443768", "4747742421", "4747628416", "4747753415", "16739547", "586996170", "4747714461", "4747642359", "65972070", "4729938288", "4747806922", "4747756109", "3097407317", "4747708887", "4730021899", "4747796254", "2861580475", "4747727945", "4747797772", "4747674771", "1924052874", "64181646", "3372932129", "3164759800", "4747705433", "4743464733", "4726729223", "4747550007", "4747673777", "4747692167", "2370904712", "3873598893", "4729983380", "4714488513", "3238914833", "4747581825", "4729866468", "4747647556", "4729972754", "4747640747", "4747705336", "4747643746", "4730013313", "4729991773", "4747605418", "4729953206", "4747153635", "4747630763", "4729943018", "4729839090", "4747558155", "4747568499", "4747539813", "4747670314", "4747532453", "4747649254", "4747501875", "4747640782", "4747515351", "4747526259", "4747616122", "4739081027", "4747605508", "3246234073", "4729776600", "4729931311", "4209933273", "4746446416", "4747446795", "4747494615", "4747517543", "4729964839", "4747472127", "4747540097", "133831777", "4747475727", "4729958473", "4747500881", "4747425389", "4747464207", "4747577056", "4747565668", "4747488131", "4747405539", "4747451265", "29358239", "4747551376", "31332452", "51901080", "4747461149", "4729792950", "4747432601", "3058387989", "4747420359", "4747469830", "4747529914", "4747418595", "4747521622", "4747467497", "4747383861", "4747494388", "206369653", "4747461089", "4747362855", "4747521034", "4747422287", "4747445363", "4747425155", "4747381701", "4747368501", "4747495876", "2817779112", "4729892953", "4747359975", "4747380887", "4747456996", "4747391003", "4747095015", "4747341509", "2939677631", "4747394315", "4729844600", "4747400158", "4747376621", "92929106", "4747310061", "1309781646", "4729822130", "4747367033", "4747316487", "4747307955", "389571646", "4747321193", "4747295127", "4747302039", "4747249707", "4747395934", "4747406128", "4747278633", "92874530", "4747283313", "4179830420", "4729813034", "128739361", "4729808054", "4747295183", "480621702", "4747292063", "4747357936", "4747358218", "4747239305", "4746887555", "4747348822", "4747231947", "25434666", "4747197681", "3248943714", "2259877416", "4747306162", "4746134416", "4747343134", "4729831195", "4747226841", "4744044917", "863558124", "4747266701", "4747207719", "337931210", "626624155", "4729684368", "4747291402", "4746825813", "4747192101", "4747158855", "4706761277", "4747278028", "2471064625", "4747158921", "4747216703", "204821265", "5638152", "4747196501", "4745926841", "4747137213", "4747115907", "3020255202", "613684183", "4705654681", "8447002", "4747186643", "4729644300", "4729755397", "4747101663", "3400412128", "4747166663", "20685688", "4747163717", "4729724060", "4747101267", "4729567152", "4747168577", "4747136657", "4747097559", "4729721708", "524625875", "4747104135", "4747214128", "4747174642", "4729713572", "4747178002", "4747077633", "4729593258", "4747141882", "4747098101", "4747161274", "4747129960", "3422710251", "4729686260", "546687689", "4747106254", "4747095262", "4746989175", "4746998697", "4746999063", "4747129474", "4747095514", "65258793", "4729715473", "4747026083", "4729672514", "4726156577", "4747079332", "50272989", "4747018541", "200920968", "4747084822", "4718658199", "4747010542", "4747005437", "4729657453", "4729641182", "4746950962", "4729642832", "4746903160", "4747007908", "4746930681", "4746956537", "4746927135", "4747015888", "4746969857", "4747030942", "4510882934", "4746840213", "4744919656", "4746898065", "4746870699", "4729607653", "4729624832", "3224923484", "4040719246", "4746882375", "4746819561", "4729503072", "4746935249", "461193740", "4746982714", "4746984382", "4746839122", "4729518852", "4746917542", "4746960568", "4746957106", "4746957262", "4746849845", "4746819099", "4746878303", "4746817707", "875447076", "4729498878", "4746766233", "4729634497", "4746798861", "4746853522", "54510411", "4746918136", "4746780327", "4746879298", "4746839849", "3204966086", "4746790305", "4746791535", "563994796", "4607529857", "4746897100", "4746816683", "4729564256", "4746888856", "4746852634", "720385080", "183286981", "1623289310", "4746878176", "4746861982", "34056116", "4729575679", "1198123944", "34493062", "4746838852", "4729451628", "4746780317", "4746674483", "4729542248", "4746824488", "4746758087", "4746709131", "53853197", "4746708159", "4746761975", "232948013", "4746745276", "4746739157", "4746819016", "4746664539", "4746796336", "4729447698", "4746754109", "4746741161", "4746210376", "4745335102", "31403779", "34256060", "4746678579", "4746788092", "4746750124", "327215278", "4746694337", "1327763390", "4746635835"], "next_cursor": 1522822225442596388, "next_cursor_str": "1522822225442596388", "previous_cursor": 0, "previous_cursor_str": "0"} \ No newline at end of file diff --git a/testdata/get_followers_0.json b/testdata/get_followers_0.json index 8303c4d5..d72affea 100644 --- a/testdata/get_followers_0.json +++ b/testdata/get_followers_0.json @@ -1,11127 +1 @@ -{ - "next_cursor": 1516850034842747602, - "users": [ - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2386149065", - "following": false, - "friends_count": 2028, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 346, - "location": "", - "screen_name": "hkarolam", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "akyoka", - "profile_use_background_image": true, - "description": "facebook \nakyoka v regi\u00f3n", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676766980372832256/4v5XUzBe_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 05 18:48:39 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676766980372832256/4v5XUzBe_normal.jpg", - "favourites_count": 9, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2386149065, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2301, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2386149065/1450188795", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "4610830879", - "blocking": false, - "is_translation_enabled": false, - "id": 4610830879, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "F5F8FA", - "created_at": "Sun Dec 20 08:30:32 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/678496104497844225/qGQZkW7T_normal.jpg", - "profile_background_image_url": null, - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2B7BB9", - "statuses_count": 3, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678496104497844225/qGQZkW7T_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 7, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 151, - "notifications": false, - "screen_name": "ChennaiSpotless", - "profile_background_tile": false, - "profile_background_image_url_https": null, - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "spotlesscleaning" - }, - { - "time_zone": "Tokyo", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 32400, - "id_str": "3075452130", - "following": false, - "friends_count": 3486, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1265, - "location": "", - "screen_name": "jav_gal_exp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "\u65e5\u672c\u306e\u30ae\u30e3\u30eb\u306eAVbot", - "profile_use_background_image": true, - "description": "\u30ae\u30e3\u30eb\u30e2\u30ce\u306eAV\u306e\u7d39\u4ecbbot\u3002\u30c4\u30a4\u30fc\u30c8\u306e\u30ea\u30f3\u30af\u5148DMM\u306eR18\u5185\u306e\u305d\u308c\u305e\u308c\u306e\u5546\u54c1\u306e\u30da\u30fc\u30b8\u3002\u5185\u5bb9\u306f18\u7981\u3002", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/587119610408738816/Jgw1cNce_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 12 17:39:40 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "ja", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/587119610408738816/Jgw1cNce_normal.jpg", - "favourites_count": 1, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3075452130, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 33190, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3075452130/1428816875", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1093711638", - "following": false, - "friends_count": 696, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 996, - "location": "Richland, Washington", - "screen_name": "Rocket_Corgi", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Rocket Corgi", - "profile_use_background_image": true, - "description": "32 yrs old, Bi, KS-5, Mechanical Engineer, Furry, Space Corgi", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683412297964863489/79alayb8_normal.jpg", - "profile_background_color": "80C0F5", - "created_at": "Wed Jan 16 01:09:33 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683412297964863489/79alayb8_normal.jpg", - "favourites_count": 13102, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile_image": false, - "id": 1093711638, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 15144, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1093711638/1385133310", - "is_translator": false - }, - { - "time_zone": "Melbourne", - "profile_use_background_image": true, - "description": "All views expressed are my own.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 39600, - "id_str": "29420974", - "blocking": false, - "is_translation_enabled": false, - "id": 29420974, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 07 10:19:44 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/510757955700944897/nBRHch7x_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 223, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/510757955700944897/nBRHch7x_normal.jpeg", - "favourites_count": 96, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 27, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 138, - "notifications": false, - "screen_name": "Hedgees", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Hedgees" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "4723820438", - "blocking": false, - "is_translation_enabled": false, - "id": 4723820438, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "F5F8FA", - "created_at": "Thu Jan 07 14:27:14 +0000 2016", - "profile_image_url": "http://pbs.twimg.com/profile_images/685108979660238848/OWa0M1ZT_normal.jpg", - "profile_background_image_url": null, - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2B7BB9", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685108979660238848/OWa0M1ZT_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 40, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 505, - "notifications": false, - "screen_name": "theonly_nithish", - "profile_background_tile": false, - "profile_background_image_url_https": null, - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Sai Nithish Kumar" - }, - { - "time_zone": "Mountain Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -25200, - "id_str": "7604462", - "blocking": false, - "is_translation_enabled": true, - "id": 7604462, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "1A1B1F", - "created_at": "Fri Jul 20 08:11:47 +0000 2007", - "profile_image_url": "http://pbs.twimg.com/profile_images/1893353735/Screen_Shot_2012-03-12_at_11.38.10_PM_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile": false, - "profile_text_color": "666666", - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "statuses_count": 4755, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1893353735/Screen_Shot_2012-03-12_at_11.38.10_PM_normal.png", - "favourites_count": 32453, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 179, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 2162, - "notifications": false, - "screen_name": "mjuarez", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 16, - "is_translator": false, - "name": "mjuarez" - }, - { - "time_zone": "Kolkata", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": 19800, - "id_str": "1165400875", - "blocking": false, - "is_translation_enabled": false, - "id": 1165400875, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Feb 10 09:13:19 +0000 2013", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 115, - "notifications": false, - "screen_name": "ABHIJITIND16", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "ABHIJIT GHOSH" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "4669745534", - "blocking": false, - "is_translation_enabled": false, - "id": 4669745534, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "F5F8FA", - "created_at": "Mon Dec 28 22:19:44 +0000 2015", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "profile_background_image_url": null, - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2B7BB9", - "statuses_count": 740, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "favourites_count": 178, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 50, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 375, - "notifications": false, - "screen_name": "AnnakaliGarland", - "profile_background_tile": false, - "profile_background_image_url_https": null, - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "is_translator": false, - "name": "annakali garland" - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "4419492197", - "following": false, - "friends_count": 19, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "electron.farm/5point9billion", - "url": "https://t.co/BhoTCpphxC", - "expanded_url": "http://electron.farm/5point9billion", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "89C9FA", - "geo_enabled": false, - "followers_count": 537, - "location": "(bot by @genmon)", - "screen_name": "5point9billion", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "5,880,000,000,000", - "profile_use_background_image": false, - "description": "Light left Earth as you were born... I tell you when it reaches the STARS. To start: Follow me + tweet me yr birthday, like this: @5point9billion 18 feb 1978", - "url": "https://t.co/BhoTCpphxC", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675699965193281536/6BQFjS8T_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Dec 08 20:57:03 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675699965193281536/6BQFjS8T_normal.jpg", - "favourites_count": 20, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4419492197, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1128, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4419492197/1449933909", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "49807670", - "following": false, - "friends_count": 433, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 249, - "location": "State College x New Jersey", - "screen_name": "MattTheMeteo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Matt Livingston", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/464184747917602816/yaTApCIP_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jun 22 23:27:18 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/464184747917602816/yaTApCIP_normal.jpeg", - "favourites_count": 4133, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 49807670, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6009, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/49807670/1433784463", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2327981533", - "following": false, - "friends_count": 2685, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000181745497/iSPn5XIa.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 700, - "location": "Northeast Georgia", - "screen_name": "DrMitchem", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Jamie Mitchem", - "profile_use_background_image": true, - "description": "Geographer, Meteorologist, Professor, GIS Guru, Hazards Researcher... I love all things related to Earth, it's atmosphere, mapping, and modeling.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/551280206330482688/WHbiwaZp_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Feb 05 01:05:53 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551280206330482688/WHbiwaZp_normal.jpeg", - "favourites_count": 9550, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000181745497/iSPn5XIa.jpeg", - "default_profile_image": false, - "id": 2327981533, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 4398, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2327981533/1396318777", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "229567163", - "following": false, - "friends_count": 565, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 220, - "location": "Starkville, MS and Seattle, WA", - "screen_name": "kudrios", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "William", - "profile_use_background_image": false, - "description": "Graduate student at Mississippi State studying Meteorology (progressive derechos). Pathways Intern at NWS in Seattle.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/645707556912914432/FoGWS1pU_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Dec 22 18:54:51 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645707556912914432/FoGWS1pU_normal.jpg", - "favourites_count": 1059, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "default_profile_image": false, - "id": 229567163, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1399, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/229567163/1422597481", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4590261747", - "following": false, - "friends_count": 295, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": null, - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2B7BB9", - "geo_enabled": false, - "followers_count": 94, - "location": "Memphis, TN", - "screen_name": "WX_Overlord", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Jeremy Scott Smith", - "profile_use_background_image": true, - "description": "*Senior Meteorologist @ FedEx *Grad Student @ MSU (aviation,NC climate,CAD events,radar) *USAF Meteorologist *Raysweatherdotcom contributor ^Opinions are my own", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680049584207446017/1c85lyET_normal.jpg", - "profile_background_color": "F5F8FA", - "created_at": "Thu Dec 24 15:03:21 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680049584207446017/1c85lyET_normal.jpg", - "favourites_count": 661, - "profile_background_image_url_https": null, - "default_profile_image": false, - "id": 4590261747, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 239, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4590261747/1451170449", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "22215485", - "following": false, - "friends_count": 5424, - "entities": { - "description": { - "urls": [ - { - "display_url": "wxbrad.com", - "url": "https://t.co/oLVgKYPDDU", - "expanded_url": "http://wxbrad.com", - "indices": [ - 118, - 141 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "about.me/wxbrad", - "url": "http://t.co/gYY0LbMcK7", - "expanded_url": "http://about.me/wxbrad", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 43553, - "location": "Charlotte, NC", - "screen_name": "wxbrad", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1522, - "name": "Brad Panovich", - "profile_use_background_image": true, - "description": "Chief Meteorologist in Charlotte, NC, Weather & Tech Geek! Suffering Cleveland Sports Fan & @OhioState grad.I Blog at https://t.co/oLVgKYPDDU #cltwx #ncwx #scwx", - "url": "http://t.co/gYY0LbMcK7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495078741270224896/h4qoVRWY_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Sat Feb 28 01:31:48 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495078741270224896/h4qoVRWY_normal.jpeg", - "favourites_count": 378, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 22215485, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 167262, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22215485/1348111348", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "4701170684", - "blocking": false, - "is_translation_enabled": false, - "id": 4701170684, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "F5F8FA", - "created_at": "Sun Jan 03 07:13:30 +0000 2016", - "profile_image_url": "http://pbs.twimg.com/profile_images/683555003198345218/d1l3pTRq_normal.png", - "profile_background_image_url": null, - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2B7BB9", - "statuses_count": 1, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683555003198345218/d1l3pTRq_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 127, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 958, - "notifications": false, - "screen_name": "Omanko_TV", - "profile_background_tile": false, - "profile_background_image_url_https": null, - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "OmankoTV" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "39297426", - "following": false, - "friends_count": 677, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0099CC", - "geo_enabled": true, - "followers_count": 1334, - "location": "Memphis, TN", - "screen_name": "ChristinaMeek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 51, - "name": "Christina Meek", - "profile_use_background_image": true, - "description": "Director of Communications @memphischamber. Book nerd and TV enthusiast. #GoGrizz!!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661357317213052928/KhMr07gM_normal.jpg", - "profile_background_color": "FFF04D", - "created_at": "Mon May 11 17:37:02 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFF8AD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661357317213052928/KhMr07gM_normal.jpg", - "favourites_count": 1581, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "default_profile_image": false, - "id": 39297426, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3569, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39297426/1419305431", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "28809370", - "following": false, - "friends_count": 897, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "raymondklaassen.com", - "url": "http://t.co/5kothXM0gM", - "expanded_url": "http://raymondklaassen.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/889544435/250ade3a2c396098e2ce710504f48741.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1429, - "location": "Almere, Nederland", - "screen_name": "RaymondKlaassen", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 61, - "name": "Raymond Klaassen", - "profile_use_background_image": false, - "description": "Meteoroloog | Meteorologist | Weerman | Almere | Werkzaam bij Weerplaza | Weer | Meteorologie | Weather | Fun | Photography", - "url": "http://t.co/5kothXM0gM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/625617990835433472/LcUO6TuA_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 04 15:14:42 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "nl", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/625617990835433472/LcUO6TuA_normal.jpg", - "favourites_count": 387, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/889544435/250ade3a2c396098e2ce710504f48741.jpeg", - "default_profile_image": false, - "id": 28809370, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 17191, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/28809370/1445876925", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "9225852", - "following": false, - "friends_count": 2721, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jaredwsmith.com", - "url": "https://t.co/H3c84vOV4n", - "expanded_url": "http://jaredwsmith.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/400727465/cloud-twitter-bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F7F7F7", - "profile_link_color": "C94300", - "geo_enabled": true, - "followers_count": 5847, - "location": "Charleston, SC", - "screen_name": "jaredwsmith", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 412, - "name": "Jared Smith", - "profile_use_background_image": true, - "description": "Consumer dev manager @BoomTownROI, human foil for @chswx's forecast and warning bot, subject of @scoccaro's subtweets. Cam Newton for MVP.", - "url": "https://t.co/H3c84vOV4n", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670651069681111040/OXqUreqR_normal.jpg", - "profile_background_color": "CFCFCF", - "created_at": "Wed Oct 03 14:07:37 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670651069681111040/OXqUreqR_normal.jpg", - "favourites_count": 26436, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/400727465/cloud-twitter-bg.jpg", - "default_profile_image": false, - "id": 9225852, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 38010, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9225852/1450496816", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "55021380", - "following": false, - "friends_count": 447, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kachelmannwetter.com", - "url": "https://t.co/GC84SRoHtG", - "expanded_url": "http://www.kachelmannwetter.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3143, - "location": "Greenville, South Carolina,USA", - "screen_name": "rkrampitz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 91, - "name": "Rebekka Krampitz", - "profile_use_background_image": true, - "description": "German meteorologist and weather presenter // GER- and US-weather // working for @kachelmannwettr, formerly @wdr & SR German Radio", - "url": "https://t.co/GC84SRoHtG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670260651466604544/W2Qgvodi_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jul 08 20:40:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670260651466604544/W2Qgvodi_normal.jpg", - "favourites_count": 1606, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 55021380, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 11986, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/55021380/1437803539", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14900137", - "following": false, - "friends_count": 2063, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/timballisty", - "url": "http://t.co/GppSkK2x8B", - "expanded_url": "http://about.me/timballisty", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/526786960312922113/SeMa2IA6.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "095473", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 4072, - "location": "Asheville, NC", - "screen_name": "IrishEagle", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 275, - "name": "Tim Ballisty", - "profile_use_background_image": true, - "description": "Meteorologist. Free agent. Looking for opportunities to write, teach, and/or create videos about weather. | **On Snapchat** globalweather", - "url": "http://t.co/GppSkK2x8B", - "profile_text_color": "8BB4BA", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/526747372773076992/DCbxH4_e_normal.jpeg", - "profile_background_color": "FFECDD", - "created_at": "Sun May 25 17:04:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/526747372773076992/DCbxH4_e_normal.jpeg", - "favourites_count": 10176, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/526786960312922113/SeMa2IA6.jpeg", - "default_profile_image": false, - "id": 14900137, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 34211, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14900137/1398601473", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "545217129", - "following": false, - "friends_count": 1690, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/494698254/BAR_UNIVERSO_PEQ.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 219, - "location": "Dispersio ex Galitzia", - "screen_name": "_lapsus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Colapsos Mari", - "profile_use_background_image": true, - "description": "Denantes hipis que amor", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2038078140/MENINOS_2_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Apr 04 13:38:31 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2038078140/MENINOS_2_normal.jpg", - "favourites_count": 4933, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/494698254/BAR_UNIVERSO_PEQ.jpg", - "default_profile_image": false, - "id": 545217129, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1976, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/545217129/1357262849", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "55370049", - "following": false, - "friends_count": 18877, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/Dolphin_Project", - "url": "https://t.co/sPMOyr7g8z", - "expanded_url": "https://twitter.com/Dolphin_Project", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586554656/9vd810kck4s2cj02qshk.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "98C293", - "profile_link_color": "498026", - "geo_enabled": false, - "followers_count": 20231, - "location": "\u2756Rustic Mississippi \u2756#MSwx", - "screen_name": "MiddleAmericaMS", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 459, - "name": "MiddleAmericaMS", - "profile_use_background_image": true, - "description": "\u2756News Addict \u2756Journalism \u2756Meteorology \u2756Science \u2756#Eco \u2756Aerospace \u2756#Cars \u2756Progressive \u2756Ex-Conservative \u2756#BlackLivesMatter \u2756#StandwithPP \u2756#DolphinProject", - "url": "https://t.co/sPMOyr7g8z", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/652650153405321216/_XeJoRgz_normal.png", - "profile_background_color": "1F3610", - "created_at": "Thu Jul 09 21:35:27 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/652650153405321216/_XeJoRgz_normal.png", - "favourites_count": 47868, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586554656/9vd810kck4s2cj02qshk.jpeg", - "default_profile_image": false, - "id": 55370049, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 51886, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/55370049/1399450790", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2633765294", - "following": false, - "friends_count": 189, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "soundcloud.com/jamieprado", - "url": "https://t.co/pblDe9VIjQ", - "expanded_url": "http://soundcloud.com/jamieprado", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/488116607554568192/5ADQT1c6.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 637, - "location": "instagram.com/jamieprado ", - "screen_name": "jamiepradomusic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Jamie Prado", - "profile_use_background_image": true, - "description": "bookings/remixes: jamiepradomusic[at]gmail[dot]com", - "url": "https://t.co/pblDe9VIjQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/645617324318326784/juUQ0qTH_normal.jpg", - "profile_background_color": "131516", - "created_at": "Sun Jul 13 00:18:39 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645617324318326784/juUQ0qTH_normal.jpg", - "favourites_count": 1392, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/488116607554568192/5ADQT1c6.jpeg", - "default_profile_image": false, - "id": 2633765294, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2025, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2633765294/1432189004", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3094340773", - "following": false, - "friends_count": 2488, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1067, - "location": "", - "screen_name": "lady_teacher_ja", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "\u5973\u6559\u5e2bAV\u7d39\u4ecb", - "profile_use_background_image": true, - "description": "\u5973\u6559\u5e2b\u30e2\u30ce\u306eAV\u306e\u30b5\u30f3\u30d7\u30eb\u753b\u50cf\u3092tweet\u3057\u307e\u3059\u3002\u753b\u50cf\u306f\uff0cDMM\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059\u3002\u30ea\u30d7\u30e9\u30a4\uff0cDM\u306a\u3069\u306f\u6642\u3005\u3057\u304b\u898b\u307e\u305b\u3093\u3002\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u8fd4\u3057\u307e\u3059\u3002", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/637479710709051392/ASHCnEvJ_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 17 16:49:52 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "ja", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637479710709051392/ASHCnEvJ_normal.jpg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3094340773, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 32175, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3094340773/1440823277", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": false, - "description": "iOS Developer, Software Engineer with a passion for technology and engineering", - "url": "http://t.co/sOJd7iUxIh", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "13815032", - "blocking": false, - "is_translation_enabled": false, - "id": 13815032, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "marknorgren.com", - "url": "http://t.co/sOJd7iUxIh", - "expanded_url": "http://marknorgren.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C6E2EE", - "created_at": "Fri Feb 22 11:51:46 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/3774425615/a3b7bec3e7d3808daf57706d685e780a_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "default_profile": false, - "profile_text_color": "663B12", - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "statuses_count": 1151, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3774425615/a3b7bec3e7d3808daf57706d685e780a_normal.jpeg", - "favourites_count": 4152, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 408, - "blocked_by": false, - "following": false, - "location": "minneapolis", - "muting": false, - "friends_count": 1356, - "notifications": false, - "screen_name": "marknorgren", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 58, - "is_translator": false, - "name": "Mark Norgren" - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "93955588", - "following": false, - "friends_count": 775, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 243, - "location": "Fort Collins, CO", - "screen_name": "JoshFudge", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Josh Fudge", - "profile_use_background_image": false, - "description": "Budget geek, budding beer snob, amateur bbq'er, political independent, fan of the T-wolves, Wild, Brewers, and Badgers.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/615345006019149824/b0-NqnJ1_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Dec 01 22:11:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/615345006019149824/b0-NqnJ1_normal.jpg", - "favourites_count": 311, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 93955588, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 704, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/93955588/1435544658", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3457468761", - "following": false, - "friends_count": 2122, - "entities": { - "description": { - "urls": [ - { - "display_url": "igg.me/at/dotsbook", - "url": "http://t.co/jlpcMkjvgD", - "expanded_url": "http://igg.me/at/dotsbook", - "indices": [ - 104, - 126 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "igg.me/at/dotsbook", - "url": "http://t.co/jlpcMkjvgD", - "expanded_url": "http://igg.me/at/dotsbook", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": false, - "followers_count": 202, - "location": "", - "screen_name": "DotsBookApp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "DotsBook", - "profile_use_background_image": false, - "description": "Dots - game like Go, but faster. \nWe wish make app DotsBook, with the possibility of playing for money. http://t.co/jlpcMkjvgD", - "url": "http://t.co/jlpcMkjvgD", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/636874535870926848/3Z4ZSPcy_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Aug 27 12:14:06 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "ru", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636874535870926848/3Z4ZSPcy_normal.jpg", - "favourites_count": 30, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3457468761, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 18, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3457468761/1440678596", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2788407869", - "following": false, - "friends_count": 1260, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 163, - "location": "", - "screen_name": "puchisaez319", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "delma", - "profile_use_background_image": true, - "description": "Try incorporating an image intoidvery three to four tweets so they're more prominent in a user's feed.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579175981539319808/iXtPRKoN_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Sep 28 03:20:54 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579175981539319808/iXtPRKoN_normal.jpg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2788407869, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1188, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2788407869/1426921285", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16818499", - "following": false, - "friends_count": 2009, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "joelarson.com", - "url": "http://t.co/gfpsnJYe1P", - "expanded_url": "http://joelarson.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/168814328/5150403912_5cabfeb630.jpg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1417, - "location": "San Luis Obispo, CA", - "screen_name": "oeon", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 95, - "name": "joe larson", - "profile_use_background_image": true, - "description": "mapping/GIS, wildland fire, OpenStreetMap, affinity for Brasil.", - "url": "http://t.co/gfpsnJYe1P", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1283181650/bruce-701814_normal.png", - "profile_background_color": "022330", - "created_at": "Fri Oct 17 02:14:47 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1283181650/bruce-701814_normal.png", - "favourites_count": 2261, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/168814328/5150403912_5cabfeb630.jpg", - "default_profile_image": false, - "id": 16818499, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 7243, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16818499/1403928617", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3245485961", - "following": false, - "friends_count": 1247, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 169, - "location": "", - "screen_name": "DJGaetaniWx", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 8, - "name": "DJ Gaetani", - "profile_use_background_image": true, - "description": "Lyndon State College-Atmospheric Science Major", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677729383667400705/8Or5P-Ef_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun May 10 22:22:08 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677729383667400705/8Or5P-Ef_normal.jpg", - "favourites_count": 132, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3245485961, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5215, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3245485961/1431296642", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "3948479302", - "following": false, - "friends_count": 304, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685629324611944448/xHb7pDqh.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "642D8B", - "geo_enabled": false, - "followers_count": 126, - "location": "Hertfordshire", - "screen_name": "NadWGab", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Nadine Gabriel", - "profile_use_background_image": true, - "description": "Geology undergrad with a wide variety of interests, esp. science, museums & music \\m/. Lover of rocks, minerals & geological landscapes.\n'Still waters run deep'", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654275681505906688/_E58e_qu_normal.jpg", - "profile_background_color": "642D8B", - "created_at": "Tue Oct 13 17:35:32 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654275681505906688/_E58e_qu_normal.jpg", - "favourites_count": 512, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685629324611944448/xHb7pDqh.jpg", - "default_profile_image": false, - "id": 3948479302, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 778, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3948479302/1448212965", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3785129235", - "following": false, - "friends_count": 383, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "253055", - "geo_enabled": false, - "followers_count": 86, - "location": "", - "screen_name": "adrielbeaver", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "adriel", - "profile_use_background_image": true, - "description": "I make game art, write stories and paint my face when I'm bored.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674401637419585536/5OI_Ebev_normal.png", - "profile_background_color": "022330", - "created_at": "Sat Sep 26 19:47:42 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674401637419585536/5OI_Ebev_normal.png", - "favourites_count": 2566, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile_image": false, - "id": 3785129235, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1362, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3785129235/1449624990", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "8292812", - "following": false, - "friends_count": 1703, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "alexm.co", - "url": "https://t.co/MgVyEarMiD", - "expanded_url": "http://alexm.co", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000165199016/Yxvo2XII.png", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 912, - "location": "London, probably.", - "screen_name": "thealexmoyler", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 53, - "name": "Alex Moyler", - "profile_use_background_image": true, - "description": "\u201cDo you have a job or is designing it?\u201d Brevity is the soul of wit. Creative-type. (Full-stack Designer + a bit of development). Drums. Christian. Likes Coffee.", - "url": "https://t.co/MgVyEarMiD", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669182940069371904/VAKSWYAq_normal.jpg", - "profile_background_color": "EDF6FF", - "created_at": "Sun Aug 19 22:13:20 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669182940069371904/VAKSWYAq_normal.jpg", - "favourites_count": 1955, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000165199016/Yxvo2XII.png", - "default_profile_image": false, - "id": 8292812, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 18665, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8292812/1442936379", - "is_translator": false - }, - { - "time_zone": "Singapore", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 28800, - "id_str": "91123715", - "following": false, - "friends_count": 332, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000161212580/uCM6Jytw.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "718CF7", - "profile_link_color": "CD4FFF", - "geo_enabled": false, - "followers_count": 459, - "location": "MNL, PH", - "screen_name": "reignbautistaa", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Ulan", - "profile_use_background_image": true, - "description": "Amazed by God's love \u2764\ufe0f | ZCKS '08 | MakSci '12 | BS Stat - UPD", - "url": null, - "profile_text_color": "050505", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/551030160342786048/6nVTm5ei_normal.jpeg", - "profile_background_color": "F0C5E7", - "created_at": "Thu Nov 19 15:20:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551030160342786048/6nVTm5ei_normal.jpeg", - "favourites_count": 5037, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000161212580/uCM6Jytw.jpeg", - "default_profile_image": false, - "id": 91123715, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 13513, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/91123715/1409499331", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "2599147129", - "following": false, - "friends_count": 227, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "16A600", - "geo_enabled": false, - "followers_count": 186, - "location": "Norman, OK", - "screen_name": "plustssn", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Tim Supinie", - "profile_use_background_image": true, - "description": "Weather, Computer, Math, and Music nut. Husband to @HSkywatcher. Ph.D. student at the University of Oklahoma.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/484201367079120896/rofmfUyP_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jul 02 04:47:01 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/484201367079120896/rofmfUyP_normal.jpeg", - "favourites_count": 440, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2599147129, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 917, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2599147129/1447199343", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "114810131", - "following": false, - "friends_count": 330, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/lukemoellman", - "url": "https://t.co/01uaOczpr0", - "expanded_url": "http://instagram.com/lukemoellman", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 637, - "location": "Brooklyn/Miami", - "screen_name": "lukemoellman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 22, - "name": "Luke Moellman", - "profile_use_background_image": true, - "description": "Musician/human. @greatgoodfineok", - "url": "https://t.co/01uaOczpr0", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/514430348022009857/fuRJXUHq_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 16 17:43:23 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/514430348022009857/fuRJXUHq_normal.jpeg", - "favourites_count": 669, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 114810131, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 580, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/114810131/1440552542", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "164640266", - "following": false, - "friends_count": 610, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 201, - "location": "West Lafayette, IN", - "screen_name": "wxward", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Chris Ward", - "profile_use_background_image": true, - "description": "Boilermaker and weather enthusiast, I'm a Purdue alum with a major in Atmospheric Science so expect tweets on Purdue and Indiana weather.", - "url": null, - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3624552161/a2491ca124fd3741e43367d82be055ef_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Fri Jul 09 11:03:56 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3624552161/a2491ca124fd3741e43367d82be055ef_normal.jpeg", - "favourites_count": 851, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile_image": false, - "id": 164640266, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7259, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/164640266/1348540589", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "15984333", - "blocking": false, - "is_translation_enabled": false, - "id": 15984333, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Aug 25 17:32:42 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/274509242/me_for_twitter_normal.JPG", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1285, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/274509242/me_for_twitter_normal.JPG", - "favourites_count": 188, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 164, - "blocked_by": false, - "following": false, - "location": "\u00dcT: 33.99709,-118.455505", - "muting": false, - "friends_count": 1331, - "notifications": false, - "screen_name": "brownonthebeach", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "is_translator": false, - "name": "brownonthebeach" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2302127191", - "following": false, - "friends_count": 481, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 164, - "location": "", - "screen_name": "boygobong", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "boygobong", - "profile_use_background_image": true, - "description": "Temporary sojourner on the tumbleweed racetracks of the Intermountain West.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/614682281383342080/EywuYv-L_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 20 22:42:59 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/614682281383342080/EywuYv-L_normal.png", - "favourites_count": 433, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2302127191, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3246, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2302127191/1446979194", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2394746816", - "following": false, - "friends_count": 554, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445620541932572672/E6RvSrkK.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "12FAAD", - "geo_enabled": true, - "followers_count": 152, - "location": "Tokyo, Japan", - "screen_name": "Vurado_Bokoda", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "ROLZUP / Jelly-hip", - "profile_use_background_image": true, - "description": "high commissioner of u-Star Polymers, holding company of Vurado Bokoda and various other enterprisms/ aka one tentacle of Tentacles of Miracles; Ourang Outang.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/529193058433134592/mmwCmJj__normal.jpeg", - "profile_background_color": "E65F17", - "created_at": "Mon Mar 17 16:49:14 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/529193058433134592/mmwCmJj__normal.jpeg", - "favourites_count": 924, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445620541932572672/E6RvSrkK.jpeg", - "default_profile_image": false, - "id": 2394746816, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 797, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2394746816/1414855058", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17627296", - "following": false, - "friends_count": 387, - "entities": { - "description": { - "urls": [ - { - "display_url": "bit.ly/ctv-pgp-key", - "url": "https://t.co/SJXP4DmVhy", - "expanded_url": "http://bit.ly/ctv-pgp-key", - "indices": [ - 44, - 67 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "toronto.ctvnews.ca", - "url": "https://t.co/1e56YgwOGl", - "expanded_url": "http://toronto.ctvnews.ca", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/386505556/twitter_toronto_bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 2065, - "location": "Toronto, Ontario, Canada", - "screen_name": "iancaldwellCTV", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 75, - "name": "Ian Caldwell", - "profile_use_background_image": true, - "description": "Managing Editor CTV News Toronto | PGP Key: https://t.co/SJXP4DmVhy | PGP Fingerprint=ED95 8E74 2568 EF70 6689 9034 4962 80A5 851C 9A6E", - "url": "https://t.co/1e56YgwOGl", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477033050883104768/Jzda7Qxc_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Nov 25 18:45:24 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477033050883104768/Jzda7Qxc_normal.jpeg", - "favourites_count": 37, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/386505556/twitter_toronto_bg.jpg", - "default_profile_image": false, - "id": 17627296, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7092, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17627296/1448082122", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "203739230", - "following": false, - "friends_count": 851, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164075917/Maya3.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 720, - "location": "Washington DC", - "screen_name": "FatherSandman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "M.V.", - "profile_use_background_image": true, - "description": "Business, politics, science, and technology | Only he who attempts the absurd is capable of achieving the impossible (Miguel de Unamuno)", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/541840496608702464/4n7BmIw__normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Oct 17 00:55:39 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/541840496608702464/4n7BmIw__normal.jpeg", - "favourites_count": 902, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164075917/Maya3.jpg", - "default_profile_image": false, - "id": 203739230, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 3802, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/203739230/1405052641", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4401423261", - "following": false, - "friends_count": 403, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 148, - "location": "", - "screen_name": "dharma_phoenix", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "\u30b8\u30a7\u30f3", - "profile_use_background_image": true, - "description": "building bridges from bones", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683025336456491008/LqNczDk7_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 07 05:16:40 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683025336456491008/LqNczDk7_normal.jpg", - "favourites_count": 1073, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4401423261, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 384, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4401423261/1451680905", - "is_translator": false - }, - { - "time_zone": "Kathmandu", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 20700, - "id_str": "332046484", - "following": false, - "friends_count": 826, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 2917, - "location": "Earth ", - "screen_name": "ghimirerx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "\u0918\u093f\u092e\u093f\u0930\u0947 \u090b\u0937\u093f", - "profile_use_background_image": true, - "description": "I am fully depressed human .", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685427310535651328/yrG3VHaW_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Sat Jul 09 04:01:46 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685427310535651328/yrG3VHaW_normal.jpg", - "favourites_count": 48622, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 332046484, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 39099, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/332046484/1452253580", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "13053492", - "following": false, - "friends_count": 3342, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fkukso.tumblr.com", - "url": "https://t.co/F6iE0ucycl", - "expanded_url": "http://fkukso.tumblr.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572483631906447360/IJgAPPd4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 6924, - "location": "Cambridge, MA", - "screen_name": "fedkukso", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 246, - "name": "Federico Kukso", - "profile_use_background_image": true, - "description": "Science journalist from Argentina | @KSJatMIT fellow | MIT + Harvard | fedkukso@gmail.com | Spa/Eng", - "url": "https://t.co/F6iE0ucycl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/651410182388367360/0M_2iC1e_normal.jpg", - "profile_background_color": "137277", - "created_at": "Mon Feb 04 16:05:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651410182388367360/0M_2iC1e_normal.jpg", - "favourites_count": 14784, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572483631906447360/IJgAPPd4.jpeg", - "default_profile_image": false, - "id": 13053492, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 54865, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13053492/1431098641", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17148670", - "following": false, - "friends_count": 557, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "panicbomber.com", - "url": "http://t.co/S4YuHpy2yp", - "expanded_url": "http://panicbomber.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/545569810/Twitter-BG.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "5F53A5", - "geo_enabled": true, - "followers_count": 982, - "location": "Brooklyn, NY", - "screen_name": "PanicBomber", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "Panic Bomber", - "profile_use_background_image": true, - "description": "Richard Haig. Musician. See also: @kurtznbomber, @slapn_tickle", - "url": "http://t.co/S4YuHpy2yp", - "profile_text_color": "555555", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/444363954572111872/t0AMPbTG_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Nov 04 04:20:58 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FAE605", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/444363954572111872/t0AMPbTG_normal.jpeg", - "favourites_count": 1248, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/545569810/Twitter-BG.jpg", - "default_profile_image": false, - "id": 17148670, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 9016, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17148670/1398205235", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": false, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2686770356", - "blocking": false, - "is_translation_enabled": false, - "id": 2686770356, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "000000", - "created_at": "Mon Jul 28 06:08:30 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/661217199755923456/6ILN1Vom_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "statuses_count": 6, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661217199755923456/6ILN1Vom_normal.jpg", - "favourites_count": 23, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 77, - "blocked_by": false, - "following": false, - "location": "Karur, Tamil Nadu", - "muting": false, - "friends_count": 747, - "notifications": false, - "screen_name": "sdineshsundhar", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "dinesh" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1730892806", - "following": false, - "friends_count": 196, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 26, - "location": "", - "screen_name": "is300nation", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "name": "\u2606\u5f61\u2605\u5f61\u2606", - "profile_use_background_image": true, - "description": "hunter hinkley. I tell myself I own a racecar. retweeting relevant or irrelevant interests of mine, 24/7/365", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/615296134592860161/93DpT_SH_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Sep 05 05:17:10 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/615296134592860161/93DpT_SH_normal.jpg", - "favourites_count": 4003, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1730892806, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2183, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1730892806/1452306207", - "is_translator": false - }, - { - "time_zone": "Quito", - "profile_use_background_image": true, - "description": "Stochastically relaxing", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "16945822", - "blocking": false, - "is_translation_enabled": false, - "id": 16945822, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "EBC3E1", - "created_at": "Fri Oct 24 08:25:37 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/282212946/zombie_portrait_zoom_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/21963534/haggar_pile_driving_a_shark_twitter.jpg", - "default_profile": false, - "profile_text_color": "0C3E53", - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "FF0000", - "statuses_count": 587, - "profile_sidebar_border_color": "F2E195", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/282212946/zombie_portrait_zoom_normal.jpg", - "favourites_count": 93, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 51, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 158, - "notifications": false, - "screen_name": "SuperElectric", - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/21963534/haggar_pile_driving_a_shark_twitter.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "is_translator": false, - "name": "SuperElectric" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "House,Dub,Tech\r\nhttp://t.co/15uGGB0cbv", - "url": "http://t.co/87HsXR2S0j", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "176829250", - "blocking": false, - "is_translation_enabled": false, - "id": 176829250, - "entities": { - "description": { - "urls": [ - { - "display_url": "myspace.com/549690290", - "url": "http://t.co/15uGGB0cbv", - "expanded_url": "http://www.myspace.com/549690290", - "indices": [ - 16, - 38 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ransomdrop.blogspot.com", - "url": "http://t.co/87HsXR2S0j", - "expanded_url": "http://ransomdrop.blogspot.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Aug 10 15:10:30 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/3589455402/a694f00d92f898d14c8c8a8555b355c6_normal.jpeg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/140356524/tumblr_l1lbtuEjGo1qz5gsco1_500.jpg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 102, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3589455402/a694f00d92f898d14c8c8a8555b355c6_normal.jpeg", - "favourites_count": 1, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 32, - "blocked_by": false, - "following": false, - "location": "Sydney Australia", - "muting": false, - "friends_count": 220, - "notifications": false, - "screen_name": "dkline_rdr", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/140356524/tumblr_l1lbtuEjGo1qz5gsco1_500.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "DK" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "306805040", - "following": false, - "friends_count": 862, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/632546075/jn8pji8iuc9a4qf2dn4b.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 143, - "location": "", - "screen_name": "ealpv", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "\u018eL", - "profile_use_background_image": true, - "description": "*Incomprehensible muttering* I do a lot of things but I don't like talking about them. Necesito el mar porque me ense\u00f1a\n\u2014 Pablo Neruda", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/587289471814467584/8KVKlSJb_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat May 28 13:41:30 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/587289471814467584/8KVKlSJb_normal.jpg", - "favourites_count": 846, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/632546075/jn8pji8iuc9a4qf2dn4b.jpeg", - "default_profile_image": false, - "id": 306805040, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 228, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/306805040/1428855899", - "is_translator": false - }, - { - "time_zone": "Melbourne", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "194096921", - "following": false, - "friends_count": 1136, - "entities": { - "description": { - "urls": [ - { - "display_url": "nightmare.website", - "url": "http://t.co/p5t2rZJajQ", - "expanded_url": "http://nightmare.website", - "indices": [ - 127, - 149 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "memoriata.com", - "url": "http://t.co/JiCyW1dzUZ", - "expanded_url": "http://memoriata.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "67777A", - "geo_enabled": false, - "followers_count": 461, - "location": "Melbourne, Australia", - "screen_name": "dbaker_h", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 34, - "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d 1/2 hiatus", - "profile_use_background_image": false, - "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http://t.co/p5t2rZJajQ", - "url": "http://t.co/JiCyW1dzUZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu Sep 23 12:34:18 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "ru", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", - "favourites_count": 9114, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 194096921, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 12474, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "276080035", - "following": false, - "friends_count": 773, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397294880/yup.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 492, - "location": "Cicero, IN", - "screen_name": "Croupaloop", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Logan Croup", - "profile_use_background_image": true, - "description": "I'm a Meteorology graduate of Ball State University. I hope to do utilize my background in Meteorology for a living one day. #INwx \u263c \u2608 \u2602 \u2601", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/591613152552443904/ebU3kJXD_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 02 16:15:10 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/591613152552443904/ebU3kJXD_normal.jpg", - "favourites_count": 7191, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397294880/yup.jpg", - "default_profile_image": false, - "id": 276080035, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 9888, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/276080035/1398362197", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "AMS Fellow, former NYer & FSU fac; Interim Science Dean & Coord. of Watershed Science Technician program at Lane Community College. Proud Oregon St grad", - "url": "https://t.co/nAkOuaMtAX", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "901037160", - "blocking": false, - "is_translation_enabled": false, - "id": 901037160, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wefollow.com/paul_ruscher", - "url": "https://t.co/nAkOuaMtAX", - "expanded_url": "http://wefollow.com/paul_ruscher", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Oct 24 02:44:50 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/2765556534/36e5a30cae4ca4f6387bc71d6582053f_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 3752, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2765556534/36e5a30cae4ca4f6387bc71d6582053f_normal.jpeg", - "favourites_count": 3128, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 664, - "blocked_by": false, - "following": false, - "location": "Eugene, OR", - "muting": false, - "friends_count": 1677, - "notifications": false, - "screen_name": "paul_ruscher", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "is_translator": false, - "name": "Paul Ruscher" - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": false, - "description": "Junior meteorology major at St. Cloud State. Caffeine consumption expert. Interests include sarcasm, good beer, and tropical meteorology.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "21063476", - "blocking": false, - "is_translation_enabled": false, - "id": 21063476, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "000000", - "created_at": "Tue Feb 17 04:20:28 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/666471436924514304/1Y89hcfR_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "statuses_count": 4106, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666471436924514304/1Y89hcfR_normal.jpg", - "favourites_count": 646, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 291, - "blocked_by": false, - "following": false, - "location": "Saint Cloud, Minnesota", - "muting": false, - "friends_count": 635, - "notifications": false, - "screen_name": "codyyeary", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "is_translator": false, - "name": "Cody Yeary" - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "379399925", - "following": false, - "friends_count": 271, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 67, - "location": "", - "screen_name": "bradfromraleigh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Brad Thompson", - "profile_use_background_image": true, - "description": "Music nerd.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/599713896421699584/ElrGP7KZ_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Sep 24 22:09:23 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/599713896421699584/ElrGP7KZ_normal.jpg", - "favourites_count": 10, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 379399925, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 53, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/379399925/1427109003", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -36000, - "id_str": "74644340", - "blocking": false, - "is_translation_enabled": false, - "id": 74644340, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 16 03:43:19 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/477488342729121794/FMT5I6ev_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 153, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477488342729121794/FMT5I6ev_normal.jpeg", - "favourites_count": 4, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 336, - "blocked_by": false, - "following": false, - "location": "Singapore", - "muting": false, - "friends_count": 3323, - "notifications": false, - "screen_name": "Amarnath1985", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 1, - "is_translator": false, - "name": "Amarnath" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "128280111", - "following": false, - "friends_count": 1959, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "humormonger.com", - "url": "http://t.co/7EZxelmdGv", - "expanded_url": "http://www.humormonger.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 230, - "location": "42\u00b0 27' 40.9N 88\u00b0 11' 02.5W", - "screen_name": "crashalido", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Craig Landon", - "profile_use_background_image": true, - "description": "Show me the magic...", - "url": "http://t.co/7EZxelmdGv", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3166851628/b7cf3f33f79db56f6ac6513a722dd172_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Wed Mar 31 17:17:26 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3166851628/b7cf3f33f79db56f6ac6513a722dd172_normal.jpeg", - "favourites_count": 16662, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile_image": false, - "id": 128280111, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 614, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/128280111/1434311610", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "4463844018", - "blocking": false, - "is_translation_enabled": false, - "id": 4463844018, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Dec 05 12:32:24 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/673118627151806464/cY85fK4m_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673118627151806464/cY85fK4m_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 6, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 94, - "notifications": false, - "screen_name": "helpline_flood", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "helpline@chennai" - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "21465693", - "following": false, - "friends_count": 1822, - "entities": { - "description": { - "urls": [ - { - "display_url": "AthensGaWeather.com", - "url": "https://t.co/cqeGNdOQYB", - "expanded_url": "http://AthensGaWeather.com", - "indices": [ - 125, - 148 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/603393714631745536/uAk-Db8j.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "A0000B", - "geo_enabled": true, - "followers_count": 387, - "location": "Kennesaw, Georgia", - "screen_name": "chris624wx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Chris Davis", - "profile_use_background_image": false, - "description": "UGA Graduate '13. B.S. Geography/Atmospheric Sciences. Studying GIS at Kennesaw State. UGA and ATL sports. Meteorologist for https://t.co/cqeGNdOQYB.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/665367285390004224/d1eLEDLM_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Feb 21 05:22:49 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/665367285390004224/d1eLEDLM_normal.jpg", - "favourites_count": 4939, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/603393714631745536/uAk-Db8j.jpg", - "default_profile_image": false, - "id": 21465693, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7535, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21465693/1449358975", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "I've never won a fight.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "23774785", - "blocking": false, - "is_translation_enabled": false, - "id": 23774785, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 11 15:07:11 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/429707642718543873/xF3Omp-n_normal.jpeg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457010991/x34ccbcb24eb9ae052d1e73349b31594.jpg", - "default_profile": false, - "profile_text_color": "0084B4", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "333333", - "statuses_count": 871, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/429707642718543873/xF3Omp-n_normal.jpeg", - "favourites_count": 9, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 54, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 390, - "notifications": false, - "screen_name": "jeremypeers", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457010991/x34ccbcb24eb9ae052d1e73349b31594.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "jeremy peers" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "4453665134", - "blocking": false, - "is_translation_enabled": false, - "id": 4453665134, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Dec 04 14:17:01 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/672782822122250240/6_4eJ5u3_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/672782822122250240/6_4eJ5u3_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 55, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 229, - "notifications": false, - "screen_name": "SAtmalinga", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "\u0b9a\u0bc7\u0ba4\u0bc1\u0bb0\u0bbe\u0bae\u0ba9\u0bcd \u0b86\u0ba4\u0bcd\u0bae\u0bb2\u0bbf\u0b99\u0bcd\u0b95\u0bae" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "80689975", - "following": false, - "friends_count": 515, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "CC3366", - "geo_enabled": true, - "followers_count": 261, - "location": "always on the move", - "screen_name": "melboban", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Melissa Boban", - "profile_use_background_image": true, - "description": "Hejsan! Chicago \u2192 ILLINI \u2192 Sweden \u2192 STL \u2192 Seattle \u2192 back in #STL. @TheOfficeNBC lover. See you @Barre3", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/525478843063087104/b9zv08t6_normal.jpeg", - "profile_background_color": "D9DEE0", - "created_at": "Wed Oct 07 21:51:51 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/525478843063087104/b9zv08t6_normal.jpeg", - "favourites_count": 637, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "default_profile_image": false, - "id": 80689975, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4999, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/80689975/1429405160", - "is_translator": false - }, - { - "time_zone": "America/Chicago", - "profile_use_background_image": true, - "description": "Consultant", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "1886748272", - "blocking": false, - "is_translation_enabled": false, - "id": 1886748272, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Sep 20 14:36:06 +0000 2013", - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000515171175/6163badf9082cf86b3b7504859e3e4b5_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 95, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000515171175/6163badf9082cf86b3b7504859e3e4b5_normal.png", - "favourites_count": 3251, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 86, - "blocked_by": false, - "following": false, - "location": "Oakville MO", - "muting": false, - "friends_count": 1144, - "notifications": false, - "screen_name": "CellJff", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 1, - "is_translator": false, - "name": "James Ford" - }, - { - "time_zone": "Atlantic Time (Canada)", - "profile_use_background_image": true, - "description": "Most men are fools. -Bias of Priene", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -14400, - "id_str": "392856267", - "blocking": false, - "is_translation_enabled": false, - "id": 392856267, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 17 17:29:22 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/1603845766/Untitled_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 4000, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1603845766/Untitled_normal.png", - "favourites_count": 5821, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 230, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 1300, - "notifications": false, - "screen_name": "Hermodorus", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "is_translator": false, - "name": "Parmenides" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3368767094", - "following": false, - "friends_count": 603, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "m.facebook.com/elamaran.mugun\u2026", - "url": "https://t.co/CNtWjzuSif", - "expanded_url": "https://m.facebook.com/elamaran.mugunthan/about?nocollections=1&refid=17&ref=bookmarks#education", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 56, - "location": "", - "screen_name": "yogeshkumar871", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "\u0b87\u0bb0\u0bbe.\u0baf\u0bcb\u0b95\u0bc7\u0bb7\u0bcd", - "profile_use_background_image": true, - "description": "\u0ba8\u0bbf\u0ba9\u0bc8\u0baa\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bb0\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b95\u0bbf\u0bb1\u0bc1\u0b95\u0bcd\u0b95 \u0b87\u0b99\u0bcd\u0b95\u0bc7 \u0b85\u0bb5\u0bcd\u0bb5\u0bb3\u0bb5\u0bc7 !!", - "url": "https://t.co/CNtWjzuSif", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/672202344935743489/4Y67Dmod_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Aug 28 08:48:49 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/672202344935743489/4Y67Dmod_normal.jpg", - "favourites_count": 4, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3368767094, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 51, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3368767094/1449080843", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1125887570", - "following": false, - "friends_count": 694, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "WeatherForecastSolutions.com", - "url": "http://t.co/JkZGP7CflP", - "expanded_url": "http://www.WeatherForecastSolutions.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 126, - "location": "", - "screen_name": "WxForecastSolns", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "WxForecastSolns", - "profile_use_background_image": true, - "description": "Your Source For Specialized Forecasts", - "url": "http://t.co/JkZGP7CflP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655929981525229569/NCVRptd-_normal.png", - "profile_background_color": "131516", - "created_at": "Sun Jan 27 18:47:49 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655929981525229569/NCVRptd-_normal.png", - "favourites_count": 189, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 1125887570, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 483, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1125887570/1404246066", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "272214659", - "blocking": false, - "is_translation_enabled": false, - "id": 272214659, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 26 02:11:56 +0000 2011", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", - "favourites_count": 22, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 11, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 370, - "notifications": false, - "screen_name": "BlueEyedLo", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Lauren Burcea" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "4422918679", - "blocking": false, - "is_translation_enabled": false, - "id": 4422918679, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 01 18:00:42 +0000 2015", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en-gb", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 0, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 2, - "notifications": false, - "screen_name": "RakeshAnanthag1", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Rakesh Ananthagiri" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1191110737", - "following": false, - "friends_count": 4121, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 856, - "location": "", - "screen_name": "HandyIvonne", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Handy Ivonne", - "profile_use_background_image": true, - "description": "No vivo culpando a nadie, es labor del Tribunal. Informo sin emitir juicios de valor, ni condenas.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663826751185883136/4hfqcieD_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Feb 17 20:42:45 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663826751185883136/4hfqcieD_normal.jpg", - "favourites_count": 1142, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1191110737, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 16051, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1191110737/1451758949", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4418338394", - "following": false, - "friends_count": 737, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 196, - "location": "", - "screen_name": "RainsChennai", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Chennai Rains Live", - "profile_use_background_image": true, - "description": "ChennaiRains | Latest Traffic updates | Rain news | Rain photography", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671615672049274880/puFv_xdm_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 01 07:54:31 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671615672049274880/puFv_xdm_normal.jpg", - "favourites_count": 167, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4418338394, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 437, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4418338394/1448960653", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "11745072", - "following": false, - "friends_count": 802, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "graham-freeman.info", - "url": "https://t.co/weCrUKWPHu", - "expanded_url": "https://graham-freeman.info", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "0021FF", - "geo_enabled": false, - "followers_count": 302, - "location": "Berkeley, California", - "screen_name": "gjmf", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Graham Freeman", - "profile_use_background_image": true, - "description": "Personal: I believe in humanity (and e-bikes) Professional: Providing excellent IT to do-gooders via @get_nerdy.", - "url": "https://t.co/weCrUKWPHu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1101117841/gf-backyard-med_normal.jpg", - "profile_background_color": "709397", - "created_at": "Wed Jan 02 07:34:40 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1101117841/gf-backyard-med_normal.jpg", - "favourites_count": 673, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "default_profile_image": false, - "id": 11745072, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3586, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11745072/1413958199", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "3305403882", - "blocking": false, - "is_translation_enabled": false, - "id": 3305403882, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Aug 03 20:45:22 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/628313752266407936/q4VXb5aM_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 16, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/628313752266407936/q4VXb5aM_normal.jpg", - "favourites_count": 5, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 26, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 51, - "notifications": false, - "screen_name": "therealBenCote", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Ben Cote" - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1582483380", - "following": false, - "friends_count": 252, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "13CFF0", - "geo_enabled": false, - "followers_count": 190, - "location": "heading towards earth", - "screen_name": "PlutoBees", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Pluto Bees", - "profile_use_background_image": true, - "description": "We are the Collective Beeonian Empire of Pluto. Fear us.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667875227376840704/sC92cfwC_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jul 10 07:47:08 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667875227376840704/sC92cfwC_normal.jpg", - "favourites_count": 2710, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1582483380, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6285, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1582483380/1448068723", - "is_translator": false - }, - { - "time_zone": "America/Denver", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "17348471", - "following": false, - "friends_count": 1430, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "impossiblegeology.net", - "url": "http://t.co/ZQKPzKTbsQ", - "expanded_url": "http://impossiblegeology.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/709980532/1583f97a3a7d8b31e56da58798e90745.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "8809F0", - "geo_enabled": true, - "followers_count": 1473, - "location": "Flagstaff, USA", - "screen_name": "drjerque", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 118, - "name": "Kyle House", - "profile_use_background_image": true, - "description": "Geologic mapper and researcher of late Cenozoic desert fluvial and lacustrine systems.", - "url": "http://t.co/ZQKPzKTbsQ", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631483820982734849/EdE7iOn4_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Nov 12 20:53:33 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631483820982734849/EdE7iOn4_normal.jpg", - "favourites_count": 611, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/709980532/1583f97a3a7d8b31e56da58798e90745.jpeg", - "default_profile_image": false, - "id": 17348471, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4288, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17348471/1413945851", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "profile_use_background_image": false, - "description": "Happy.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -25200, - "id_str": "287492581", - "blocking": false, - "is_translation_enabled": false, - "id": 287492581, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Apr 25 03:11:40 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/685232739633659904/rTLPuI0f_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 36697, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685232739633659904/rTLPuI0f_normal.jpg", - "favourites_count": 3220, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 558, - "blocked_by": false, - "following": false, - "location": "Denver, CO", - "muting": false, - "friends_count": 507, - "notifications": false, - "screen_name": "NiftyMinaj", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 14, - "is_translator": false, - "name": "FN-6969" - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "1368499430", - "following": false, - "friends_count": 549, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wunderground.com/blog/sullivanw\u2026", - "url": "http://t.co/ADDfVXV9dB", - "expanded_url": "http://www.wunderground.com/blog/sullivanweather/show.html", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/571582549751652352/UV7VLXYJ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "E04F0B", - "geo_enabled": true, - "followers_count": 390, - "location": "Westtown, NY", - "screen_name": "RealSullivanWx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "name": "Tom Woods", - "profile_use_background_image": true, - "description": "Disseminator of weather, extreme or mundane. Prognostocator of Northeast US weather. Local legend.", - "url": "http://t.co/ADDfVXV9dB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/432362706713071616/RZ0bfE1I_normal.jpeg", - "profile_background_color": "7136A8", - "created_at": "Sun Apr 21 02:40:01 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/432362706713071616/RZ0bfE1I_normal.jpeg", - "favourites_count": 1884, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/571582549751652352/UV7VLXYJ.jpeg", - "default_profile_image": false, - "id": 1368499430, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5056, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1368499430/1437540110", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "89205511", - "following": false, - "friends_count": 153, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ggor.de", - "url": "https://t.co/QncXAff6Lw", - "expanded_url": "http://ggor.de", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000024534539/c9a22aeaac8a80b2fa329e342e6d06ed.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "4A913C", - "geo_enabled": false, - "followers_count": 207, - "location": "Berlin", - "screen_name": "greg00r", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 7, - "name": "Gregor Weichbrodt", - "profile_use_background_image": false, - "description": "Code & concept @0x0a_li", - "url": "https://t.co/QncXAff6Lw", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683468108351279104/VPYWHMQs_normal.jpg", - "profile_background_color": "4A913C", - "created_at": "Wed Nov 11 15:14:10 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683468108351279104/VPYWHMQs_normal.jpg", - "favourites_count": 543, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000024534539/c9a22aeaac8a80b2fa329e342e6d06ed.jpeg", - "default_profile_image": false, - "id": 89205511, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 102, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/89205511/1444490275", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "529148230", - "following": false, - "friends_count": 438, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hdevalence.ca", - "url": "https://t.co/XnDQKAOpR8", - "expanded_url": "http://www.hdevalence.ca", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 345, - "location": "1.6m above sea level", - "screen_name": "hdevalence", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "GF(\u00af\\_(\u30c4)_/\u00af)", - "profile_use_background_image": true, - "description": "PhD student at TU/e, interested in pqcrypto, privacy, freedom, mathematics, & the number 24", - "url": "https://t.co/XnDQKAOpR8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/634941626805301248/IykdcFae_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Mar 19 06:12:13 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/634941626805301248/IykdcFae_normal.jpg", - "favourites_count": 5302, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 529148230, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4440, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/529148230/1405021573", - "is_translator": false - }, - { - "time_zone": "London", - "profile_use_background_image": true, - "description": "Security Engineer. \nA RT or link is not an endorsement. \nViews are not related to my employer.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 0, - "id_str": "171290875", - "blocking": false, - "is_translation_enabled": false, - "id": 171290875, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "131516", - "created_at": "Tue Jul 27 00:57:14 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/590994307340959744/h5op8_1a_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "statuses_count": 3780, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/590994307340959744/h5op8_1a_normal.png", - "favourites_count": 725, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 379, - "blocked_by": false, - "following": false, - "location": "127.0.0.1", - "muting": false, - "friends_count": 853, - "notifications": false, - "screen_name": "HumanActuator", - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "is_translator": false, - "name": "Human Actuator" - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "2787955681", - "following": false, - "friends_count": 1280, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 314, - "location": "Paris, Ile-de-France", - "screen_name": "EKMeteo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Etienne Kapikian", - "profile_use_background_image": false, - "description": "Pr\u00e9visionniste @meteofrance", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/635800902113325056/2mU4zry2_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Sep 03 12:50:59 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/635800902113325056/2mU4zry2_normal.jpg", - "favourites_count": 896, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2787955681, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 416, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2787955681/1409832424", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Tweetin' since '76", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2400504589", - "blocking": false, - "is_translation_enabled": false, - "id": 2400504589, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 20 21:53:06 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/681954296384991232/8Bxeybdb_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 18610, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681954296384991232/8Bxeybdb_normal.jpg", - "favourites_count": 3178, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 396, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 897, - "notifications": false, - "screen_name": "leisure3000", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "is_translator": false, - "name": "Lee" - }, - { - "time_zone": "Sydney", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "458113065", - "following": false, - "friends_count": 2026, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1044, - "location": "Tamworth, NSW, 2340, Aus", - "screen_name": "2340weather", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Tamworth Weather", - "profile_use_background_image": true, - "description": "Weather Watcher in the Tamworth region.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1740801984/Tamworth-Weather_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jan 08 05:54:27 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1740801984/Tamworth-Weather_normal.jpg", - "favourites_count": 630, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 458113065, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7411, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/458113065/1376012987", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2699327418", - "following": false, - "friends_count": 389, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "brianjenquist.wordpress.com", - "url": "http://t.co/nDNwPkQPgB", - "expanded_url": "http://brianjenquist.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1258, - "location": "UofArizona . SantaFeInstitute", - "screen_name": "bjenquist", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 51, - "name": "Brian J. Enquist", - "profile_use_background_image": true, - "description": "Global Ecology, Ecophys, Macroecology, Scaling. Proud parent, Sonoran telemarker. Dreams of tropical trees, charismatic megaflora, equations, and botanical data", - "url": "http://t.co/nDNwPkQPgB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495349657023700992/mb1dwT-4_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Aug 01 23:14:21 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495349657023700992/mb1dwT-4_normal.jpeg", - "favourites_count": 2463, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2699327418, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2757, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699327418/1406999005", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "2783948456", - "blocking": false, - "is_translation_enabled": false, - "id": 2783948456, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 01 11:21:23 +0000 2014", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 2, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "favourites_count": 3, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 49, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 999, - "notifications": false, - "screen_name": "bmani_77", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Balasubramani" - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "160971973", - "following": false, - "friends_count": 1057, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Lakers.com", - "url": "https://t.co/x18wAeX8Og", - "expanded_url": "http://Lakers.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 380, - "location": "Philippines", - "screen_name": "angelreality", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "\u24d0\u24dd\u24d6\u24d4\u24db", - "profile_use_background_image": true, - "description": "Gadget-Obsessed, Tech-Lover, Geek, Nerd, Techie. iOS, Android User. Follow me for #TechNews #SocialMedia #PoliticalViews #DisneyFrozen #Laker4Life", - "url": "https://t.co/x18wAeX8Og", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000766994701/f13cfcea050466d38f6ccb47c6620a1a_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Tue Jun 29 16:45:54 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000766994701/f13cfcea050466d38f6ccb47c6620a1a_normal.jpeg", - "favourites_count": 1460, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 160971973, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 14031, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/160971973/1384975627", - "is_translator": false - }, - { - "time_zone": "Chennai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "122634479", - "following": false, - "friends_count": 798, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/82776489/ar_rahman09.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 19, - "location": "INDIA", - "screen_name": "omprakashit117", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "name": "omprakash", - "profile_use_background_image": true, - "description": "I am a student. I am eager to search new knoweldge and technology used in current world", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/750008387/DIN1_normal.JPG", - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 13 10:51:35 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/750008387/DIN1_normal.JPG", - "favourites_count": 94, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/82776489/ar_rahman09.jpg", - "default_profile_image": false, - "id": 122634479, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 60, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/122634479/1400160672", - "is_translator": false - }, - { - "time_zone": "London", - "profile_use_background_image": false, - "description": "Defn: Tavern consisting of a building with a bar and public rooms. These are random names chosen from 110539 words @niggydotcom", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 0, - "id_str": "3337081857", - "blocking": false, - "is_translation_enabled": false, - "id": 3337081857, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "000000", - "created_at": "Sat Jun 20 15:50:01 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/618483281009504256/pPRHTTgG_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "CF5300", - "statuses_count": 5966, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/618483281009504256/pPRHTTgG_normal.jpg", - "favourites_count": 41, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 795, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 4224, - "notifications": false, - "screen_name": "pubnames", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "is_translator": false, - "name": "Pub Names" - }, - { - "time_zone": "Hawaii", - "profile_use_background_image": true, - "description": "I #stand4life! Meteorologist in Hawaii since 2000 & going @UHManoa for M.S. SFX explosives tech for CAF--I like big booms!", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -36000, - "id_str": "141057092", - "blocking": false, - "is_translation_enabled": false, - "id": 141057092, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri May 07 02:35:55 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/1743058941/eod_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99142340/midland08b.jpg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 29375, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1743058941/eod_normal.jpg", - "favourites_count": 2983, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 1621, - "blocked_by": false, - "following": false, - "location": "Honolulu, HI", - "muting": false, - "friends_count": 1335, - "notifications": false, - "screen_name": "firebomb56", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99142340/midland08b.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 136, - "is_translator": false, - "name": "Robert Ballard" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "458956673", - "blocking": false, - "is_translation_enabled": false, - "id": 458956673, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 09 03:59:14 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/506968366574092288/MRDqbVQi_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 89, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/506968366574092288/MRDqbVQi_normal.jpeg", - "favourites_count": 37, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 51, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 402, - "notifications": false, - "screen_name": "adamatic23", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Adam J" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "606117040", - "blocking": false, - "is_translation_enabled": false, - "id": 606117040, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 12 07:33:29 +0000 2012", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 4, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 165, - "notifications": false, - "screen_name": "H0LYT0LED0", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "is_translator": false, - "name": "PAPPY" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "148615685", - "following": false, - "friends_count": 573, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115403460/79db2255376b86a76c67636558add8a0.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FCFFE5", - "profile_link_color": "406B6F", - "geo_enabled": false, - "followers_count": 71, - "location": "Chicagoland", - "screen_name": "ShaneMEagan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Shane Eagan", - "profile_use_background_image": false, - "description": "Weather forecaster | Meteorology grad student NIU | Valpo grad | Red Wings and ND aficionado", - "url": null, - "profile_text_color": "4A4949", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/509820954654953472/hz7n8fsV_normal.jpeg", - "profile_background_color": "ABB8C2", - "created_at": "Thu May 27 04:35:25 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/509820954654953472/hz7n8fsV_normal.jpeg", - "favourites_count": 41, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115403460/79db2255376b86a76c67636558add8a0.jpeg", - "default_profile_image": false, - "id": 148615685, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 138, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/148615685/1448434645", - "is_translator": false - }, - { - "time_zone": "Asia/Calcutta", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "1721259391", - "following": false, - "friends_count": 1417, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072477131/4ad230ff9ba7c9ed60e4dc796bbb2941.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 98, - "location": "13.067858,80.243947", - "screen_name": "prakash49024821", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "p r a k a s h", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/583242267017621504/XA5J0EM-_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 02 05:01:40 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/583242267017621504/XA5J0EM-_normal.jpg", - "favourites_count": 5, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072477131/4ad230ff9ba7c9ed60e4dc796bbb2941.jpeg", - "default_profile_image": false, - "id": 1721259391, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 112, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1721259391/1427890049", - "is_translator": false - }, - { - "time_zone": "International Date Line West", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -39600, - "id_str": "538171425", - "following": false, - "friends_count": 322, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/580917392345157633/ZsuJn14-.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "993333", - "geo_enabled": false, - "followers_count": 277, - "location": "it's a long way down", - "screen_name": "errinuu", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "name": "Patris Everdeen", - "profile_use_background_image": true, - "description": "fettered", - "url": null, - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684687004299214848/7ev_eVhd_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Mar 27 11:35:46 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684687004299214848/7ev_eVhd_normal.jpg", - "favourites_count": 2614, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/580917392345157633/ZsuJn14-.jpg", - "default_profile_image": false, - "id": 538171425, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6460, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/538171425/1448701580", - "is_translator": false - }, - { - "time_zone": "Beijing", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 28800, - "id_str": "1564994707", - "following": false, - "friends_count": 204, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/Sonic_The_Edge\u2026", - "url": "https://t.co/0DcGQ0d6jV", - "expanded_url": "https://twitter.com/Sonic_The_Edgehog", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/620864149107576832/6Ouugc1Y.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 74, - "location": "Republic of the Philippines", - "screen_name": "Edwarven_Sniper", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "name": "Eduard De Guzman", - "profile_use_background_image": true, - "description": "Math Major kuno (Inutusang bumili ng suka na ngayon ay naiiyak sa hirap ng Math.)", - "url": "https://t.co/0DcGQ0d6jV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/612053970077417472/E1JbN0-m_normal.jpg", - "profile_background_color": "4A913C", - "created_at": "Wed Jul 03 05:51:25 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/612053970077417472/E1JbN0-m_normal.jpg", - "favourites_count": 1673, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/620864149107576832/6Ouugc1Y.png", - "default_profile_image": false, - "id": 1564994707, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 3138, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564994707/1390008636", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2705762744", - "following": false, - "friends_count": 486, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 143, - "location": "Missouri", - "screen_name": "lunaitesrock", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 20, - "name": "Karl", - "profile_use_background_image": true, - "description": "Interests include planetary geology, meteorite hunting and collecting, hiking, camping. Formerly a research chemist... Now I kill poison ivy.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/497858100905664512/LJ3FLzwT_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Aug 04 05:32:23 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/497858100905664512/LJ3FLzwT_normal.jpeg", - "favourites_count": 2667, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2705762744, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5286, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705762744/1408035154", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "122111712", - "following": false, - "friends_count": 226, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/82553561/switz_view.JPG", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "9500B3", - "geo_enabled": false, - "followers_count": 73, - "location": "", - "screen_name": "bellabear7", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Jo Wade", - "profile_use_background_image": true, - "description": "I retweet what I find interesting, not what I agree with. All views my own.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/519411989869654016/2dk59ai9_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 11 16:40:55 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/519411989869654016/2dk59ai9_normal.jpeg", - "favourites_count": 389, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/82553561/switz_view.JPG", - "default_profile_image": false, - "id": 122111712, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2173, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/122111712/1408370535", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "720794066", - "following": false, - "friends_count": 808, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jordanowx.com", - "url": "https://t.co/Oqno7oJyRp", - "expanded_url": "http://jordanowx.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 589, - "location": "Oklahoma", - "screen_name": "JordanoWX", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 35, - "name": "Jordan Overton", - "profile_use_background_image": true, - "description": "Former Weather Intern/Producer for @Newson6 and @ktulnews. @NWCNorman Tour Guide. @OUNightly Weather. @OUDaily Thunder Writer. Opinions are my own.", - "url": "https://t.co/Oqno7oJyRp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663540879072886784/IvmvhwJ6_normal.jpg", - "profile_background_color": "022330", - "created_at": "Fri Jul 27 20:12:11 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663540879072886784/IvmvhwJ6_normal.jpg", - "favourites_count": 1628, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile_image": false, - "id": 720794066, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6135, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/720794066/1438271265", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "40845892", - "following": false, - "friends_count": 2197, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22470571/bground.gif", - "notifications": false, - "profile_sidebar_fill_color": "EAEDD5", - "profile_link_color": "FA7E3C", - "geo_enabled": false, - "followers_count": 770, - "location": "", - "screen_name": "_vecs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 22, - "name": "vecs ", - "profile_use_background_image": true, - "description": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043c\u0438\u043a\u0440\u043e\u0431\u043b\u043e\u0433. \u041d\u0430\u0443\u043a\u0430 \u0438 \u0442\u0435\u0445\u043d\u0438\u043a\u0430, \u0438\u0441\u0442\u043e\u0440\u0438\u044f, \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u0430, \u043a\u043e\u0441\u043c\u043e\u0441, \u0433\u0435\u043e\u043b\u043e\u0433\u0438\u044f, \u043f\u0430\u043b\u0435\u043e\u043d\u0430\u0443\u043a\u0438, \u043b\u0438\u043d\u0433\u0432\u0438\u0441\u0442\u0438\u043a\u0430, IT, \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u0440\u0430\u0434\u0438\u043e\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u0438\u043a\u0430, \u0412\u041f\u041a, \u0420\u043e\u0441\u0441\u0438\u044f, \u0410\u0437\u0438\u044f, \u0444\u043e\u0442\u043e", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/472091542484549633/Zq-BpJTw_normal.png", - "profile_background_color": "FCFCF4", - "created_at": "Mon May 18 09:50:09 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "ACADA1", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/472091542484549633/Zq-BpJTw_normal.png", - "favourites_count": 9294, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22470571/bground.gif", - "default_profile_image": false, - "id": 40845892, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 5288, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/40845892/1401389448", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "213950250", - "following": false, - "friends_count": 1401, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/170116886/Miss_State_logo.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 620, - "location": "Flowood", - "screen_name": "BulldogWX_0610", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "David Cox", - "profile_use_background_image": true, - "description": "NWS Jackson meteorologist. Got an amazing wife! MSU sports fanatic. Go Dawgs! MSU Alum (B.S. '10, M.S. '12). Love severe wx/hurricanes. All views are my own.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655850522277212160/peMZV3Tb_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Nov 10 05:16:55 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655850522277212160/peMZV3Tb_normal.jpg", - "favourites_count": 14767, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/170116886/Miss_State_logo.gif", - "default_profile_image": false, - "id": 213950250, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 10289, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/213950250/1445201925", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "11392632", - "following": false, - "friends_count": 2149, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/sgtgary", - "url": "https://t.co/LB5LuXnk2g", - "expanded_url": "http://about.me/sgtgary", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9D0020", - "geo_enabled": true, - "followers_count": 1717, - "location": "Papillion, Nebraska, USA", - "screen_name": "sgtgary", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 128, - "name": "Gary \u039a0\u03b2\u2c62\u0259 \u2614\ufe0f", - "profile_use_background_image": false, - "description": "Science & Weather geek \u2022 Cybersecurity \u2022 \u2708\ufe0fUSAF vet \u2022 ex aviation forecaster \u2022 557WW \u2022 Waze \u2022 INTJ #GoPackGo #InfoSec \u2b50\ufe0f", - "url": "https://t.co/LB5LuXnk2g", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680245909217775616/X1sOO_Q1_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Dec 21 02:44:45 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680245909217775616/X1sOO_Q1_normal.jpg", - "favourites_count": 140, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", - "default_profile_image": false, - "id": 11392632, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 35461, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11392632/1446542435", - "is_translator": false - }, - { - "time_zone": "Berlin", - "profile_use_background_image": true, - "description": "Science Leipzig", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": 3600, - "id_str": "276570860", - "blocking": false, - "is_translation_enabled": false, - "id": 276570860, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Apr 03 16:46:58 +0000 2011", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "de", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "favourites_count": 170, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 17, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 363, - "notifications": false, - "screen_name": "eugene33xx", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "E. Brigger" - }, - { - "time_zone": "Singapore", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 28800, - "id_str": "14563783", - "following": false, - "friends_count": 887, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/tutusandpointes", - "url": "http://t.co/UtNJqB6Su6", - "expanded_url": "http://instagram.com/tutusandpointes", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/642380381/x3516e3c298a8ebe33c26cd65fff99b0.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "85130F", - "profile_link_color": "C90E69", - "geo_enabled": true, - "followers_count": 780, - "location": "Catipunan", - "screen_name": "tutusandpointes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Christine Saavedra", - "profile_use_background_image": true, - "description": "Saved by grace. Permanent resident of the Rizal Library. Former dancer. Caffeine junkie. Night owl. Blue eagle. | snapchat: kurisitini", - "url": "http://t.co/UtNJqB6Su6", - "profile_text_color": "F40A09", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683596819901710336/V2y5-A0G_normal.png", - "profile_background_color": "F7B75E", - "created_at": "Mon Apr 28 01:20:27 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683596819901710336/V2y5-A0G_normal.png", - "favourites_count": 19849, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/642380381/x3516e3c298a8ebe33c26cd65fff99b0.jpeg", - "default_profile_image": false, - "id": 14563783, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 43946, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14563783/1367062983", - "is_translator": false - }, - { - "time_zone": "Krasnoyarsk", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 25200, - "id_str": "2583649117", - "following": false, - "friends_count": 589, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "2C1F3C", - "geo_enabled": true, - "followers_count": 235, - "location": "Quezon City", - "screen_name": "masterJCboy", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 2, - "name": "enchong hindee", - "profile_use_background_image": false, - "description": "How do you become someone that great, that brave, that selfless?\nI guess you can only try.\n-Hiccup, HTTYD2", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683830799720812544/peYQpaxm_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Jun 23 08:35:43 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683830799720812544/peYQpaxm_normal.jpg", - "favourites_count": 6233, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2583649117, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9066, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2583649117/1429024977", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2860150381", - "following": false, - "friends_count": 133, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pixiv.me/aviphilia", - "url": "https://t.co/GpjnzCwdNa", - "expanded_url": "http://pixiv.me/aviphilia", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 86, - "location": "\u5b87\u5b99\u5916\u751f\u547d", - "screen_name": "aviphilia", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "\u304b\u3054\u306e\u9ce5\u72c2", - "profile_use_background_image": true, - "description": "(\u73fe\u5728\u4f4e\u6d6e\u4e0a)\u5929\u6587\u30fb\u5730\u5b66\u77e5\u8b58\u30bc\u30ed\u3002 \u5730\u7403\u30ea\u30e7\u30ca\u3068\u3044\u3046\u30de\u30a4\u30ca\u30fc\u55dc\u597d\u306e\u5984\u57f7\u3092\u767a\u4fe1\u3059\u308b\u305f\u3081\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3042\u308b\u3002 \u5730\u7403\u306a\u3069\u306e\u5929\u4f53\u306b\u5bfe\u3057\u3066\u9177\u3044\u8a71\u3084R18\u306a\u8a71\u3070\u304b\u308a\u3057\u3066\u3044\u308b\u306e\u3067\u6ce8\u610f", - "url": "https://t.co/GpjnzCwdNa", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/586025068385275906/zlPMFl4l_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Oct 17 11:27:45 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "ja", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/586025068385275906/zlPMFl4l_normal.jpg", - "favourites_count": 4453, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2860150381, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6025, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2860150381/1429085019", - "is_translator": false - }, - { - "time_zone": "UTC", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "4010618585", - "following": false, - "friends_count": 4, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "russ.garrett.co.uk/bots/dscovr_ep\u2026", - "url": "https://t.co/LhctEpMH4C", - "expanded_url": "https://russ.garrett.co.uk/bots/dscovr_epic.html", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1513, - "location": "Earth-Sun L1", - "screen_name": "dscovr_epic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 64, - "name": "DSCOVR:EPIC", - "profile_use_background_image": false, - "description": "Pictures from the Earth Polychromatic Camera on the DSCOVR spacecraft. (An unofficial bot by @russss)", - "url": "https://t.co/LhctEpMH4C", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/656868470106267648/mc8SJQZc_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Oct 21 16:20:49 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/656868470106267648/mc8SJQZc_normal.png", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4010618585, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 631, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4010618585/1445444630", - "is_translator": false - }, - { - "time_zone": "Berlin", - "profile_use_background_image": true, - "description": "Hacker", - "url": "http://t.co/wfhb6wxy2Y", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 3600, - "id_str": "224266304", - "blocking": false, - "is_translation_enabled": false, - "id": 224266304, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "perldition.org", - "url": "http://t.co/wfhb6wxy2Y", - "expanded_url": "http://perldition.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Dec 08 15:35:47 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/1228169354/gravatar200_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 843, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1228169354/gravatar200_normal.jpg", - "favourites_count": 568, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 618, - "blocked_by": false, - "following": false, - "location": "PDX", - "muting": false, - "friends_count": 354, - "notifications": false, - "screen_name": "perldition", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "is_translator": false, - "name": "Florian Ragwitz" - }, - { - "time_zone": "London", - "profile_use_background_image": true, - "description": "a dissident technologist. a great big harmless thing", - "url": "http://t.co/t31MsTE1wo", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 0, - "id_str": "6110942", - "blocking": false, - "is_translation_enabled": false, - "id": 6110942, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "amran.org.uk", - "url": "http://t.co/t31MsTE1wo", - "expanded_url": "http://amran.org.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "1A1B1F", - "created_at": "Thu May 17 15:17:13 +0000 2007", - "profile_image_url": "http://pbs.twimg.com/profile_images/18302762/monkey_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile": false, - "profile_text_color": "666666", - "profile_sidebar_fill_color": "252429", - "profile_link_color": "4A913C", - "statuses_count": 3053, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/18302762/monkey_normal.jpg", - "favourites_count": 560, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 261, - "blocked_by": false, - "following": false, - "location": "nl uk", - "muting": false, - "friends_count": 379, - "notifications": false, - "screen_name": "amx109", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "is_translator": false, - "name": "amran \u0639\u0645\u0631\u0627\u0646" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14949027", - "following": false, - "friends_count": 2091, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/88283587/Tape_Gradient.JPG", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 663, - "location": "Arlington, VA", - "screen_name": "rseymour", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 34, - "name": "Rich Seymour", - "profile_use_background_image": true, - "description": "Staying on top of things when I should be getting to the bottom of things. Generic Person @EndgameInc", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/445265058541883392/NsGr8pCu_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Thu May 29 22:27:34 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/445265058541883392/NsGr8pCu_normal.jpeg", - "favourites_count": 9033, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/88283587/Tape_Gradient.JPG", - "default_profile_image": false, - "id": 14949027, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4492, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14949027/1399349066", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "591360459", - "following": false, - "friends_count": 1438, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/lbs_ebooks", - "url": "http://t.co/L0n9SbXlFa", - "expanded_url": "http://twitter.com/lbs_ebooks", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 426, - "location": "", - "screen_name": "LetsBeSapid", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 20, - "name": "Let's Be Sapid", - "profile_use_background_image": true, - "description": "Good enough probably. Talk to my ebooks bot, @lbs_ebooks. Also talk to my ebooks bot's ebooks bot, @lbsebooksebooks", - "url": "http://t.co/L0n9SbXlFa", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2472927875/p246b2ui8rzqfdto8dq6_normal.png", - "profile_background_color": "022330", - "created_at": "Sat May 26 21:47:24 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2472927875/p246b2ui8rzqfdto8dq6_normal.png", - "favourites_count": 38391, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile_image": false, - "id": 591360459, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 38532, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/591360459/1437446142", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "168912732", - "following": false, - "friends_count": 2945, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/wx_fish", - "url": "https://t.co/nYUoNgFtK1", - "expanded_url": "http://www.instagram.com/wx_fish", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000032341821/c34eb864df33736572467f06defb8eb4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "236CA3", - "geo_enabled": true, - "followers_count": 29532, - "location": "Standing in the rain/snow/wind", - "screen_name": "ericfisher", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1154, - "name": "Eric Fisher", - "profile_use_background_image": true, - "description": "Emmy Award winning Chief Meteorologist @CBSBoston w/reports for @CBSNews. Beer snob, runner, mediocre golfer. Deep greens & blues are the colors I choose.", - "url": "https://t.co/nYUoNgFtK1", - "profile_text_color": "003399", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/501545509215952896/2KDNBEQ4_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Jul 21 02:35:23 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/501545509215952896/2KDNBEQ4_normal.jpeg", - "favourites_count": 4345, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000032341821/c34eb864df33736572467f06defb8eb4.jpeg", - "default_profile_image": false, - "id": 168912732, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 61142, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/168912732/1435413654", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "15455096", - "following": false, - "friends_count": 873, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "scarlettinfinity.deviantart.com", - "url": "http://t.co/SxvaMh9Nlo", - "expanded_url": "http://scarlettinfinity.deviantart.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 307, - "location": "UK", - "screen_name": "almostarobot", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Hayley Young", - "profile_use_background_image": true, - "description": "Interested in everything, science, nature, photography, politics...", - "url": "http://t.co/SxvaMh9Nlo", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1883849158/may_2011_082_700px_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Jul 16 14:53:05 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1883849158/may_2011_082_700px_normal.jpg", - "favourites_count": 3071, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 15455096, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7266, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15455096/1404913947", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Weather geek!", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "3327128172", - "blocking": false, - "is_translation_enabled": false, - "id": 3327128172, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Aug 23 20:40:58 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/657360086050848769/C5QVrWVZ_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 404, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657360086050848769/C5QVrWVZ_normal.jpg", - "favourites_count": 683, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 30, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 127, - "notifications": false, - "screen_name": "WeatherHacker", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "is_translator": false, - "name": "Matthew" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18109928", - "following": false, - "friends_count": 1475, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chrisdean.org", - "url": "http://t.co/NhadxAzOQq", - "expanded_url": "http://chrisdean.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624754964414361601/CWSwhHmP.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "238500", - "geo_enabled": false, - "followers_count": 389, - "location": "Indianapolis, Indiana, USA", - "screen_name": "DeanChris", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 12, - "name": "Chris Dean", - "profile_use_background_image": true, - "description": "Christian, husband, father x 7, evangelist, pastor & church planter @GreatMercyIndy in downtown Indy & Plainfield. Grateful to be used by the Lord!", - "url": "http://t.co/NhadxAzOQq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648892274697334784/XLN0VQzD_normal.png", - "profile_background_color": "FFF04D", - "created_at": "Sun Dec 14 02:54:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648892274697334784/XLN0VQzD_normal.png", - "favourites_count": 388, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624754964414361601/CWSwhHmP.jpg", - "default_profile_image": false, - "id": 18109928, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 2214, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18109928/1402123612", - "is_translator": false - }, - { - "time_zone": "Bogota", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2391639956", - "following": false, - "friends_count": 437, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "imarpe.gob.pe/enso/Inicio/Te\u2026", - "url": "http://t.co/VN17BZeJ9d", - "expanded_url": "http://www.imarpe.gob.pe/enso/Inicio/Tema1.htm", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 605, - "location": "Monitoreo y Analisis ENSO", - "screen_name": "Mario___Ramirez", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Mario Ramirez", - "profile_use_background_image": true, - "description": "IMARPE\nLab Sensores Remotos y SIG", - "url": "http://t.co/VN17BZeJ9d", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/444962203028840448/V2vB_DHU_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 15 21:26:33 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/444962203028840448/V2vB_DHU_normal.jpeg", - "favourites_count": 2305, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2391639956, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6016, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2391639956/1399302782", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "277405536", - "following": false, - "friends_count": 476, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "flickr.com/photos/celestm\u2026", - "url": "https://t.co/YN2PjER7xd", - "expanded_url": "http://www.flickr.com/photos/celestman/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 529, - "location": "Lisburn, Northern Ireland", - "screen_name": "Celestman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 22, - "name": "Ralph Smyth", - "profile_use_background_image": true, - "description": "Husband, dad and brother.Amateur astronomer and astroimager - just wish our weather was better! Analytical chemist in another life. Hello Twitter world!", - "url": "https://t.co/YN2PjER7xd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664709983519510530/9uE7tZ8J_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 05 09:14:19 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664709983519510530/9uE7tZ8J_normal.jpg", - "favourites_count": 4398, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 277405536, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5108, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/277405536/1452217211", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "41290294", - "following": false, - "friends_count": 111, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "asimplerandomview.blogspot.com", - "url": "http://t.co/saMEpHSYYQ", - "expanded_url": "http://asimplerandomview.blogspot.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 109, - "location": "", - "screen_name": "thatothertom2", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "tom f", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/saMEpHSYYQ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683050707042238465/cW3olyVw_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed May 20 03:49:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683050707042238465/cW3olyVw_normal.jpg", - "favourites_count": 34, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 41290294, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 6793, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41290294/1449795082", - "is_translator": false - }, - { - "time_zone": "Santiago", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "3112987229", - "following": false, - "friends_count": 2394, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/580617071886647296/B56fJQkK.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "860808", - "geo_enabled": true, - "followers_count": 814, - "location": "Chile", - "screen_name": "GeaEnMovimiento", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "RecursosGea", - "profile_use_background_image": true, - "description": "Comparto info vital sobre amenazas naturales y antr\u00f3picas. Sin fronteras para el conocimiento y la cooperaci\u00f3n. #Recop2016 / #VnChillan", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/668960898313289728/Mr1yPxVM_normal.png", - "profile_background_color": "860808", - "created_at": "Wed Mar 25 04:18:30 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668960898313289728/Mr1yPxVM_normal.png", - "favourites_count": 1660, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/580617071886647296/B56fJQkK.png", - "default_profile_image": false, - "id": 3112987229, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 14682, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3112987229/1450632293", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "247877648", - "following": false, - "friends_count": 321, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/205264047/puffy.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "CCC0CB", - "profile_link_color": "462D57", - "geo_enabled": false, - "followers_count": 223, - "location": "adrift in the cosmos ", - "screen_name": "hjertebraaten", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "Jennifer", - "profile_use_background_image": true, - "description": "Choose your own adventure.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668530312448610304/Ut3EuMh8_normal.png", - "profile_background_color": "403340", - "created_at": "Sat Feb 05 19:24:31 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "63A327", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668530312448610304/Ut3EuMh8_normal.png", - "favourites_count": 3058, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/205264047/puffy.jpeg", - "default_profile_image": false, - "id": 247877648, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9086, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/247877648/1420338841", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "55621506", - "following": false, - "friends_count": 1676, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DAA520", - "geo_enabled": true, - "followers_count": 801, - "location": "\u00dcT: 43.06752,-89.413976", - "screen_name": "gstalnaker", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 93, - "name": "Guy Stalnaker", - "profile_use_background_image": false, - "description": "Midwest IT guy @ large public university. Out. Liberal. Composer. Baseball Rules. Partner of a Jack Russell terrier, my best friend. Life's good. RT != Endorsed", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/419693052488208386/2PLuieI9_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Jul 10 17:51:09 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/419693052488208386/2PLuieI9_normal.jpeg", - "favourites_count": 8218, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile_image": false, - "id": 55621506, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 61554, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/55621506/1445655686", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2506667875", - "following": false, - "friends_count": 704, - "entities": { - "description": { - "urls": [ - { - "display_url": "yesthisislouis.com", - "url": "https://t.co/sxkHB8RzBR", - "expanded_url": "http://yesthisislouis.com", - "indices": [ - 51, - 74 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mountainmoonvolcano.com", - "url": "https://t.co/XvTQbyYdz0", - "expanded_url": "http://mountainmoonvolcano.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": false, - "followers_count": 106, - "location": "New Zealand", - "screen_name": "Luilueloo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Louis New Graham", - "profile_use_background_image": false, - "description": "Cartoonist, Kiwi designer, Programming enthusiast. https://t.co/sxkHB8RzBR", - "url": "https://t.co/XvTQbyYdz0", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/577275007375572992/eCt-1V6E_normal.png", - "profile_background_color": "000000", - "created_at": "Mon May 19 07:05:25 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/577275007375572992/eCt-1V6E_normal.png", - "favourites_count": 1281, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2506667875, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 696, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2506667875/1426467864", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17586062", - "following": false, - "friends_count": 2578, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Instagram.com/swvlswvl", - "url": "https://t.co/0TM7uFRsiI", - "expanded_url": "http://Instagram.com/swvlswvl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/452503740709236736/w78rAxbT.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "2369F5", - "geo_enabled": true, - "followers_count": 6221, - "location": "NYC", - "screen_name": "simonwilliam", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 205, - "name": "Simon V-L", - "profile_use_background_image": true, - "description": "Simon Vozick-Levinson // Senior Editor at Rolling Stone // Opinions expressed here are solely my own, and are probably ill-advised", - "url": "https://t.co/0TM7uFRsiI", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641297594665275392/vk7RrIyp_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Mon Nov 24 05:04:53 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641297594665275392/vk7RrIyp_normal.jpg", - "favourites_count": 22457, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452503740709236736/w78rAxbT.jpeg", - "default_profile_image": false, - "id": 17586062, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 19350, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17586062/1441648578", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Mogul, First Rapper Ever To Write And Publish A Book at 19, Film Score, Composer, Producer,Director/Photo/Branding/Marketing/Historical Online Figure #BASED", - "url": "https://t.co/zoy27sPkw9", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "37836873", - "blocking": false, - "is_translation_enabled": true, - "id": 37836873, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com/lilbpack1", - "url": "https://t.co/zoy27sPkw9", - "expanded_url": "http://www.youtube.com/lilbpack1", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "9AE4E8", - "created_at": "Tue May 05 02:41:57 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/1248509273/39198_1571854573776_1157872547_31663366_5779158_n_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/130048781/lilb.jpg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "statuses_count": 148379, - "profile_sidebar_border_color": "12FFA0", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1248509273/39198_1571854573776_1157872547_31663366_5779158_n_normal.jpg", - "favourites_count": 97566, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1208962, - "blocked_by": false, - "following": false, - "location": "United States", - "muting": false, - "friends_count": 1324956, - "notifications": false, - "screen_name": "LILBTHEBASEDGOD", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/130048781/lilb.jpg", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5995, - "is_translator": false, - "name": "Lil B THE BASEDGOD" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2705140969", - "following": false, - "friends_count": 55, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cloudsao.com", - "url": "http://t.co/4aL8Yi332e", - "expanded_url": "http://www.cloudsao.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "333333", - "geo_enabled": false, - "followers_count": 67, - "location": "New York City", - "screen_name": "Clouds_AO", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Clouds AO", - "profile_use_background_image": false, - "description": "Architectural design firm", - "url": "http://t.co/4aL8Yi332e", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/496073400717029377/azK0sGfC_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Aug 03 23:08:31 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/496073400717029377/azK0sGfC_normal.jpeg", - "favourites_count": 113, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2705140969, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 131, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705140969/1407108154", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2905586254", - "following": false, - "friends_count": 676, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "00CCFF", - "geo_enabled": false, - "followers_count": 207, - "location": "44\u00b038\u203252\u2033N 63\u00b034\u203217\u2033W", - "screen_name": "ReidJustinReid", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Justin Reid", - "profile_use_background_image": false, - "description": "Father, stargazer, Simpsons aficionado, RASC member yelling at clouds", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682983061877846016/Y5srwYnp_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Dec 04 20:30:01 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682983061877846016/Y5srwYnp_normal.jpg", - "favourites_count": 4759, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2905586254, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1399, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2905586254/1447518056", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "139846889", - "following": false, - "friends_count": 318, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "madeofoak.com", - "url": "http://t.co/siqwmpcKnG", - "expanded_url": "http://madeofoak.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2734, - "location": "Durham, NC", - "screen_name": "MADEOFOAK", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 56, - "name": "Nicholas Sanborn", - "profile_use_background_image": true, - "description": "Musician from Wisconsin.", - "url": "http://t.co/siqwmpcKnG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/636208356085075968/jf-nqzHU_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon May 03 21:24:49 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636208356085075968/jf-nqzHU_normal.jpg", - "favourites_count": 1164, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 139846889, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4210, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/139846889/1440518867", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "41056561", - "following": false, - "friends_count": 508, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "skfleegel.com", - "url": "http://t.co/4nLHZBOUgT", - "expanded_url": "http://www.skfleegel.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 145, - "location": "Marquette, MI", - "screen_name": "fleegs79", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Steven Fleegel", - "profile_use_background_image": true, - "description": "Meteorologist with NWS Marquette. The opinions expressed here represent my own and not those of my employer.", - "url": "http://t.co/4nLHZBOUgT", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000327286379/a11369df218087b804f4f2317fd47fea_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Tue May 19 04:42:42 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000327286379/a11369df218087b804f4f2317fd47fea_normal.jpeg", - "favourites_count": 74, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 41056561, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3173, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41056561/1349566035", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3182410381", - "following": false, - "friends_count": 393, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 55, - "location": "", - "screen_name": "StalcupWx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Mark Stalcup", - "profile_use_background_image": true, - "description": "Senior at OU School of Meteorology.....lover of the outdoors, meteorology, aviation, astronomy, & learning all I can about the Earth. Tweets aren't endorsements", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648349956277821440/fwHIMYg0_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat May 02 03:41:14 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648349956277821440/fwHIMYg0_normal.jpg", - "favourites_count": 46, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3182410381, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 202, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3182410381/1439686224", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6853512", - "following": false, - "friends_count": 525, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fakeisthenewreal.org", - "url": "http://t.co/f0bQmbmzOl", - "expanded_url": "http://fakeisthenewreal.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378868151/yr-lame-for-looking-at-the-source_just-kidding-i-love-you.jpg", - "notifications": false, - "profile_sidebar_fill_color": "CDCECB", - "profile_link_color": "393C37", - "geo_enabled": false, - "followers_count": 1525, - "location": "Gowanus supralittoral", - "screen_name": "fitnr", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 68, - "name": "Neil Freeman", - "profile_use_background_image": true, - "description": "vague but honest", - "url": "http://t.co/f0bQmbmzOl", - "profile_text_color": "808282", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631233557797560320/AhmwePZB_normal.jpg", - "profile_background_color": "CFCBCF", - "created_at": "Sat Jun 16 14:38:25 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631233557797560320/AhmwePZB_normal.jpg", - "favourites_count": 3674, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378868151/yr-lame-for-looking-at-the-source_just-kidding-i-love-you.jpg", - "default_profile_image": false, - "id": 6853512, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 6605, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6853512/1402520873", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "139571192", - "following": false, - "friends_count": 206, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "superiorhurter.bandcamp.com", - "url": "https://t.co/QgKbAsOXKm", - "expanded_url": "http://superiorhurter.bandcamp.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445747348157652992/0ZyL_u8C.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "89C9FA", - "geo_enabled": false, - "followers_count": 920, - "location": "r b y t", - "screen_name": "s_afari_al", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "s.al", - "profile_use_background_image": true, - "description": "form of aquemini @yomilo", - "url": "https://t.co/QgKbAsOXKm", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/640574816387510272/FjN5rwFb_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Mon May 03 01:41:59 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/640574816387510272/FjN5rwFb_normal.jpg", - "favourites_count": 6549, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445747348157652992/0ZyL_u8C.jpeg", - "default_profile_image": false, - "id": 139571192, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 6595, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/139571192/1440909415", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15880126", - "following": false, - "friends_count": 327, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "anthropoceneacolyte.wordpress.com", - "url": "https://t.co/byYpZBZmXy", - "expanded_url": "https://anthropoceneacolyte.wordpress.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/716467183/fb58c9fe4e02170833eea5791998597e.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 135, - "location": "Los Angeles, CA, USA", - "screen_name": "stevexe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 22, - "name": "Steve Pestana", - "profile_use_background_image": true, - "description": "geo/space science student\n- periodic contributor to @orbitalpodcast, @N_O_D_E_, @scifimethods", - "url": "https://t.co/byYpZBZmXy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674318267645739012/APDgNXZE_normal.png", - "profile_background_color": "000000", - "created_at": "Sun Aug 17 06:24:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674318267645739012/APDgNXZE_normal.png", - "favourites_count": 1920, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/716467183/fb58c9fe4e02170833eea5791998597e.jpeg", - "default_profile_image": false, - "id": 15880126, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3801, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15880126/1428362360", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4129078452", - "following": false, - "friends_count": 1499, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com/channel/UC8LAt\u2026", - "url": "https://t.co/28MBl9rV4H", - "expanded_url": "https://www.youtube.com/channel/UC8LAtTGVLfYuvTmHO2FDiGw/feed", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 390, - "location": "", - "screen_name": "thewxjunkies", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "The Weather Junkies", - "profile_use_background_image": true, - "description": "Discussing the latest buzz in the weather enterprise every Wednesday. Hosted by @tylerjankoski & @weatherdak.", - "url": "https://t.co/28MBl9rV4H", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669373015965179904/Q67wX_O3_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Nov 04 23:57:21 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669373015965179904/Q67wX_O3_normal.jpg", - "favourites_count": 129, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4129078452, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 129, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4129078452/1446684941", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2569287804", - "following": false, - "friends_count": 255, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mattchernos.wordpress.com", - "url": "http://t.co/0cugbRjXjD", - "expanded_url": "http://mattchernos.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "51613A", - "geo_enabled": true, - "followers_count": 84, - "location": "Calgary, Alberta", - "screen_name": "mchernos", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Matt Chernos", - "profile_use_background_image": true, - "description": "I like mountains, hydrology, science, weather, and hockey. I also enjoy silly internet comments. Other things too, probably.", - "url": "http://t.co/0cugbRjXjD", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661617460664123392/cBX4LpNW_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jun 15 16:38:15 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661617460664123392/cBX4LpNW_normal.jpg", - "favourites_count": 1051, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2569287804, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1729, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569287804/1446576984", - "is_translator": false - }, - { - "time_zone": "Rome", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "165379510", - "following": false, - "friends_count": 725, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "superinternet.cc", - "url": "http://t.co/imctRm7Fox", - "expanded_url": "http://superinternet.cc", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/454801493409816576/cB0YX0yM.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "FFCC00", - "geo_enabled": false, - "followers_count": 176, - "location": "", - "screen_name": "frescogusto", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "pietro parisi", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/imctRm7Fox", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/605813185900249090/Q6o8zS4j_normal.png", - "profile_background_color": "FFCC00", - "created_at": "Sun Jul 11 11:48:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/605813185900249090/Q6o8zS4j_normal.png", - "favourites_count": 1057, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/454801493409816576/cB0YX0yM.png", - "default_profile_image": false, - "id": 165379510, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1315, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/165379510/1397268149", - "is_translator": false - }, - { - "time_zone": "Kathmandu", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 20700, - "id_str": "495295826", - "following": false, - "friends_count": 619, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "josephmichaelshea.wordpress.com", - "url": "http://t.co/KWmR9e4pQ1", - "expanded_url": "http://www.josephmichaelshea.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/438974413526929408/aXZKh6VA.png", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": true, - "followers_count": 508, - "location": "Kathmandu, Nepal", - "screen_name": "JosephShea", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 34, - "name": "Joseph Shea", - "profile_use_background_image": true, - "description": "Glacier hydrologist with ICIMOD (Kathmandu), musician, Dad, Canadian. I make graphs.", - "url": "http://t.co/KWmR9e4pQ1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/532494289767395328/kxEv-hkA_normal.jpeg", - "profile_background_color": "709397", - "created_at": "Fri Feb 17 20:23:05 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/532494289767395328/kxEv-hkA_normal.jpeg", - "favourites_count": 558, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/438974413526929408/aXZKh6VA.png", - "default_profile_image": false, - "id": 495295826, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1772, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/495295826/1438236675", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "I am, at the moment, a two-dimensional representation of a featureless white ovoid with a satin finish, otherwise in a blind panic about climate change.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "706529336", - "blocking": false, - "is_translation_enabled": false, - "id": 706529336, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Jul 20 05:47:49 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/587581125117095937/76jzWnpX_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 20866, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/587581125117095937/76jzWnpX_normal.png", - "favourites_count": 310, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 647, - "blocked_by": false, - "following": false, - "location": "San Francisco Bay Area", - "muting": false, - "friends_count": 1466, - "notifications": false, - "screen_name": "stevebloom55", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "is_translator": false, - "name": "Steve Bloom" - }, - { - "time_zone": "Sydney", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "18007241", - "following": false, - "friends_count": 1591, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57241147/xdb0969a99c32dcc2e92472706a4fe26.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "131516", - "geo_enabled": true, - "followers_count": 901, - "location": "Newcastle, Australia", - "screen_name": "philhenley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 69, - "name": "philhenley", - "profile_use_background_image": false, - "description": "Geospatializer. Wearer Of Glasses.", - "url": null, - "profile_text_color": "009999", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/463557329296711680/EeM5URfy_normal.jpeg", - "profile_background_color": "050505", - "created_at": "Wed Dec 10 00:22:13 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/463557329296711680/EeM5URfy_normal.jpeg", - "favourites_count": 69, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57241147/xdb0969a99c32dcc2e92472706a4fe26.png", - "default_profile_image": false, - "id": 18007241, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 16878, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18007241/1399355770", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "274870271", - "following": false, - "friends_count": 580, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "homepages.see.leeds.ac.uk/~earlgb/", - "url": "http://t.co/uO309Sl594", - "expanded_url": "http://homepages.see.leeds.ac.uk/~earlgb/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/677815544951775232/vFVbdxak.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 986, - "location": "GFZ Potsdam + Uni Leeds, UK", - "screen_name": "LianeGBenning", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 86, - "name": "Liane G. Benning", - "profile_use_background_image": true, - "description": "#science geek; #biogeochemist; workoholic; love #extremes; prolific reader; world traveler; and whatever else I feel like being. opinions only mine!", - "url": "http://t.co/uO309Sl594", - "profile_text_color": "1A181A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667723721680035840/kbsOPRg5_normal.jpg", - "profile_background_color": "131511", - "created_at": "Thu Mar 31 05:27:15 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "6B6768", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667723721680035840/kbsOPRg5_normal.jpg", - "favourites_count": 313, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/677815544951775232/vFVbdxak.jpg", - "default_profile_image": false, - "id": 274870271, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7403, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/274870271/1448013606", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "232550589", - "following": false, - "friends_count": 898, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "all-geo.org/metageologist", - "url": "http://t.co/VUvlDN0oN9", - "expanded_url": "http://all-geo.org/metageologist", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1306, - "location": "England", - "screen_name": "metageologist", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 56, - "name": "Simon Wellings", - "profile_use_background_image": true, - "description": "I write about the Earth Sciences, especially mountains, diamonds, the geology of Britain and Ireland and anything else that grabs my imagination. PhD. trained", - "url": "http://t.co/VUvlDN0oN9", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/438755187251875840/y5TkSSPF_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Dec 31 13:41:18 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/438755187251875840/y5TkSSPF_normal.jpeg", - "favourites_count": 1064, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 232550589, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2807, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/232550589/1370459087", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1101632707", - "following": false, - "friends_count": 559, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blogs.agu.org/tremblingearth", - "url": "http://t.co/WBkbt8X7Fb", - "expanded_url": "http://blogs.agu.org/tremblingearth", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "17574E", - "geo_enabled": true, - "followers_count": 1081, - "location": "Oxford, UK", - "screen_name": "TTremblingEarth", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 68, - "name": "Austin Elliott", - "profile_use_background_image": true, - "description": "paleoseismologist, active tectonicist; postdoc with @NERC_COMET at @OxUniEarthSci, earthquake aficionado, AGU blogger, and I luuuuvs maps", - "url": "http://t.co/WBkbt8X7Fb", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3738082030/08160f3de98ef43ee6bce6175b3b52d3_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Jan 18 18:07:43 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3738082030/08160f3de98ef43ee6bce6175b3b52d3_normal.jpeg", - "favourites_count": 2963, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 1101632707, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4961, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1101632707/1398276781", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2882699721", - "following": false, - "friends_count": 469, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "atmos.albany.edu/student/ppapin/", - "url": "https://t.co/HZceKYq3ut", - "expanded_url": "http://www.atmos.albany.edu/student/ppapin/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 519, - "location": "Albany, NY", - "screen_name": "pppapin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "Philippe Papin", - "profile_use_background_image": false, - "description": "Ph.D. candidate @UAlbany studying atmospheric science. Random weather and climate musings posted here. All thoughts expressed are my own.", - "url": "https://t.co/HZceKYq3ut", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/534733433344253952/SJIvQ3VP_normal.png", - "profile_background_color": "000000", - "created_at": "Tue Nov 18 15:20:35 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534733433344253952/SJIvQ3VP_normal.png", - "favourites_count": 567, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2882699721, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 957, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2882699721/1416325842", - "is_translator": false - }, - { - "time_zone": "Irkutsk", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 28800, - "id_str": "2318553062", - "following": false, - "friends_count": 625, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 838, - "location": "Kumamoto, Kyushu, Japan", - "screen_name": "hepomodeler", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 64, - "name": "Weather Mizumoto", - "profile_use_background_image": true, - "description": "wx enthusiast/forecaster. severe wx, local short, mid-long term forecasts. winterfan. space. photo. math physics. bowling. foods. \u30d7\u30e9\u30e2\u30c7\u30eb\u521d\u5fc3\u8005\u30fb\u5199\u771f\u30fb\u6c17\u8c61\u4e88\u5831\u58eb", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/549843721877872640/Yfw28hJD_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Jan 30 09:02:51 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "ja", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/549843721877872640/Yfw28hJD_normal.png", - "favourites_count": 8607, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2318553062, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 16052, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2318553062/1445787947", - "is_translator": false - }, - { - "time_zone": "Berlin", - "profile_use_background_image": true, - "description": "Die neuesten Informationen zu Wetter, Unwetter und Klima von http://t.co/IG1J3oeRSc! Impressum: http://t.co/0rfHr30Mmv", - "url": "http://t.co/H5M20nqBxQ", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 3600, - "id_str": "88697994", - "blocking": false, - "is_translation_enabled": false, - "id": 88697994, - "entities": { - "description": { - "urls": [ - { - "display_url": "wetterkontor.de", - "url": "http://t.co/IG1J3oeRSc", - "expanded_url": "http://www.wetterkontor.de", - "indices": [ - 61, - 83 - ] - }, - { - "display_url": "wetterkontor.de/index.asp?id=i\u2026", - "url": "http://t.co/0rfHr30Mmv", - "expanded_url": "http://www.wetterkontor.de/index.asp?id=impressum", - "indices": [ - 104, - 126 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "wetterkontor.de", - "url": "http://t.co/H5M20nqBxQ", - "expanded_url": "http://www.wetterkontor.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 09 16:17:40 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/3352921689/ebec0596b02efe436fd8b517e89d4f21_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 25750, - "profile_sidebar_border_color": "C0DEED", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3352921689/ebec0596b02efe436fd8b517e89d4f21_normal.jpeg", - "favourites_count": 24, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 2574, - "blocked_by": false, - "following": false, - "location": "Ingelheim (Rhein) Germany", - "muting": false, - "friends_count": 2077, - "notifications": false, - "screen_name": "WetterKontor", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 135, - "is_translator": false, - "name": "WetterKontor" - }, - { - "time_zone": "Indiana (East)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "36152676", - "following": false, - "friends_count": 678, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "joshhoke.bandcamp.com/track/peace-on\u2026", - "url": "https://t.co/jPRahbVWp6", - "expanded_url": "https://joshhoke.bandcamp.com/track/peace-on-earth", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/169716102/x9a437f23dcc6e19c3cf7d70a076f8da.png", - "notifications": false, - "profile_sidebar_fill_color": "392D26", - "profile_link_color": "B6DB40", - "geo_enabled": true, - "followers_count": 1245, - "location": "", - "screen_name": "joshhoke", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Josh Hoke", - "profile_use_background_image": true, - "description": "lyrical gangsta. better off driving a truck in memphis. new single Peace on Earth available now!", - "url": "https://t.co/jPRahbVWp6", - "profile_text_color": "78B385", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/665187511715545090/1sq2vNCr_normal.jpg", - "profile_background_color": "B8C18C", - "created_at": "Tue Apr 28 19:14:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "8F8816", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/665187511715545090/1sq2vNCr_normal.jpg", - "favourites_count": 2033, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/169716102/x9a437f23dcc6e19c3cf7d70a076f8da.png", - "default_profile_image": false, - "id": 36152676, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 10588, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/36152676/1442701585", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "524402811", - "following": false, - "friends_count": 2092, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "global2global.wordpress.com", - "url": "https://t.co/PdaCKQcwwh", - "expanded_url": "https://global2global.wordpress.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 214, - "location": "Europe", - "screen_name": "PatrikWiniger", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Patrik Winiger", - "profile_use_background_image": true, - "description": "Science, Politics & Freefight - Scientist & slow blogger", - "url": "https://t.co/PdaCKQcwwh", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1896513135/workin_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Mar 14 14:28:30 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1896513135/workin_normal.jpg", - "favourites_count": 1222, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 524402811, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1458, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/524402811/1452089005", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "Father, meteorologist, grocery cart returner", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "16317677", - "blocking": false, - "is_translation_enabled": false, - "id": 16317677, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 16 21:12:09 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/633086569038020608/-NcofOuX_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 77, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/633086569038020608/-NcofOuX_normal.jpg", - "favourites_count": 2, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 83, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 540, - "notifications": false, - "screen_name": "stevegregg", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "Steve Gregg" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "48319877", - "following": false, - "friends_count": 1195, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 122, - "location": "Maine", - "screen_name": "psillin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Peter Sillin", - "profile_use_background_image": true, - "description": "teacher, dad, reader, prodigal pianist, ambivalent runner, aspiring tango dancer", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1365006948/187130_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 18 11:25:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1365006948/187130_normal.jpg", - "favourites_count": 309, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 48319877, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2831, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/48319877/1357586835", - "is_translator": false - }, - { - "time_zone": "Dublin", - "profile_use_background_image": true, - "description": "New User", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 0, - "id_str": "592035334", - "blocking": false, - "is_translation_enabled": false, - "id": 592035334, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun May 27 18:26:25 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/2255273591/forest_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 86, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2255273591/forest_normal.jpg", - "favourites_count": 15, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 18, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 160, - "notifications": false, - "screen_name": "2point71828", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Si Laf" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "442318323", - "blocking": false, - "is_translation_enabled": false, - "id": 442318323, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Dec 21 00:27:00 +0000 2011", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 200, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "favourites_count": 25, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 6, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 128, - "notifications": false, - "screen_name": "lolverap", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "is_translator": false, - "name": "lolvera" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Astrophysicist, studying the interstellar medium and star formation in our Galaxy and beyond.", - "url": "http://t.co/u51n7WOHVT", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2833658451", - "blocking": false, - "is_translation_enabled": false, - "id": 2833658451, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "obs.u-bordeaux1.fr/radio/gratier", - "url": "http://t.co/u51n7WOHVT", - "expanded_url": "http://www.obs.u-bordeaux1.fr/radio/gratier", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu Oct 16 09:03:04 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/522675890153861120/_mnbCjPQ_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 39, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522675890153861120/_mnbCjPQ_normal.png", - "favourites_count": 2, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 19, - "blocked_by": false, - "following": false, - "location": "Bordeaux", - "muting": false, - "friends_count": 47, - "notifications": false, - "screen_name": "PierreGratier", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Pierre Gratier" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "781206042", - "blocking": false, - "is_translation_enabled": false, - "id": 781206042, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Aug 25 22:24:43 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000764164107/96189923e6a3eb8f9d4c68bf14cf53b0_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 48, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000764164107/96189923e6a3eb8f9d4c68bf14cf53b0_normal.jpeg", - "favourites_count": 32, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 26, - "blocked_by": false, - "following": false, - "location": "Wisconsin", - "muting": false, - "friends_count": 172, - "notifications": false, - "screen_name": "jrobrien80", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Jeremy O'Brien" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "239183771", - "following": false, - "friends_count": 262, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 40, - "location": "", - "screen_name": "1SunnyGill", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Sunny Gill", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/502523756372193280/m2j7xZGQ_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 17 01:18:15 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/502523756372193280/m2j7xZGQ_normal.jpeg", - "favourites_count": 3, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 239183771, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/239183771/1408646069", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2732441578", - "following": false, - "friends_count": 940, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/raymath29", - "url": "https://t.co/47mKnSyyJ7", - "expanded_url": "http://instagram.com/raymath29", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 184, - "location": "North Florida", - "screen_name": "raymath29", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Ray Matheny", - "profile_use_background_image": true, - "description": "Retired car guy...sold lots of British, Italian and Swedes, had a blast, then after 40 years, unexpectedly hit the ejector button......Hotzigs!!!", - "url": "https://t.co/47mKnSyyJ7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/635459562104061952/5U52j_We_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Aug 03 13:20:53 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/635459562104061952/5U52j_We_normal.jpg", - "favourites_count": 121, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2732441578, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1809, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2732441578/1435521497", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1400505056", - "following": false, - "friends_count": 331, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 34, - "location": "", - "screen_name": "egosumquisum9", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Antonio Morales", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/566057364973838336/V4bu0xi8_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri May 03 19:13:10 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/566057364973838336/V4bu0xi8_normal.jpeg", - "favourites_count": 6, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1400505056, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4123, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1400505056/1423793679", - "is_translator": false - }, - { - "time_zone": "New Delhi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "113086237", - "following": false, - "friends_count": 2093, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "scratchbuffer.wordpress.com", - "url": "https://t.co/nLGauahfoT", - "expanded_url": "https://scratchbuffer.wordpress.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/190346956/Pulpfiction_Jules_Winnfield_by_GraffitiWatcher.jpg", - "notifications": false, - "profile_sidebar_fill_color": "200709", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 682, - "location": "Bengaluru", - "screen_name": "616476fbde873af", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 94, - "name": "Ghanashyam", - "profile_use_background_image": true, - "description": "Engineer by profession and interest. new found Arduino love", - "url": "https://t.co/nLGauahfoT", - "profile_text_color": "6A4836", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2625528701/ecY1FKXe_normal", - "profile_background_color": "FFFFFF", - "created_at": "Wed Feb 10 17:16:07 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "B68B9E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2625528701/ecY1FKXe_normal", - "favourites_count": 8359, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/190346956/Pulpfiction_Jules_Winnfield_by_GraffitiWatcher.jpg", - "default_profile_image": false, - "id": 113086237, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 33012, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/113086237/1426946183", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "25876935", - "following": false, - "friends_count": 676, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445417914/wildcat_head_2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 266, - "location": "Lexington, KY", - "screen_name": "BRobs21", - "verified": false, - "has_extended_profile": true, - "protected": true, - "listed_count": 2, - "name": "Brandon Roberts", - "profile_use_background_image": true, - "description": "I like mess and such things of that nature and whatnot.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/647641235654619137/xpBuhCnv_normal.jpg", - "profile_background_color": "89C9FA", - "created_at": "Sun Mar 22 20:46:10 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/647641235654619137/xpBuhCnv_normal.jpg", - "favourites_count": 3699, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445417914/wildcat_head_2.jpg", - "default_profile_image": false, - "id": 25876935, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 7457, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25876935/1445482211", - "is_translator": false - }, - { - "time_zone": "Nairobi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 10800, - "id_str": "91112048", - "following": false, - "friends_count": 734, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/469463452063240193/zdQHEOZu.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "1C1C1C", - "profile_link_color": "C0DCF1", - "geo_enabled": false, - "followers_count": 444, - "location": "Nairobi", - "screen_name": "SKIRAGU", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Ragz", - "profile_use_background_image": false, - "description": "A young Proffessional with a sense of humor,a love for sports & the finer things in life\n\n#KENYA #ManUtd #AllBlacks #LBJ #Pacman #Capricorn #Ingwe", - "url": null, - "profile_text_color": "5C91B9", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2556172065/399480_391656167550180_1686617523_a_normal.jpg", - "profile_background_color": "C0DCF1", - "created_at": "Thu Nov 19 14:16:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DCF1", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2556172065/399480_391656167550180_1686617523_a_normal.jpg", - "favourites_count": 106, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/469463452063240193/zdQHEOZu.jpeg", - "default_profile_image": false, - "id": 91112048, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9665, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/91112048/1381443458", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "188995630", - "following": false, - "friends_count": 1329, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 169, - "location": "Southampton, England", - "screen_name": "andrsnssa", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "a.Ussa", - "profile_use_background_image": false, - "description": "Engineer. Lifelong learner. Juventini. @AmericadeCali", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/586581596943290370/s3-6xnxl_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Sep 10 02:50:54 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/586581596943290370/s3-6xnxl_normal.jpg", - "favourites_count": 6355, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 188995630, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3174, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/188995630/1427149830", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "36184638", - "following": false, - "friends_count": 2023, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wpri.com/2014/06/22/t-j\u2026", - "url": "https://t.co/CZC5Ys28Rp", - "expanded_url": "http://wpri.com/2014/06/22/t-j-del-santo/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 4450, - "location": "Providence, RI", - "screen_name": "tjdelsanto", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 135, - "name": "TJ Del Santo \u26a1", - "profile_use_background_image": true, - "description": "Meteorologist & environmental/Green Team reporter at WPRI-TV & WNAC-TV. I'm also an astronomy nut!! Tweets/RT's are not endorsements. Opinions are my own.", - "url": "https://t.co/CZC5Ys28Rp", - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666810498759991297/_WMK_hrv_normal.jpg", - "profile_background_color": "642D8B", - "created_at": "Tue Apr 28 21:12:03 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666810498759991297/_WMK_hrv_normal.jpg", - "favourites_count": 8534, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", - "default_profile_image": false, - "id": 36184638, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 21225, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/36184638/1447858305", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "54353910", - "following": false, - "friends_count": 1086, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 389, - "location": "Dallas, Texas", - "screen_name": "JWinstel", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Jake", - "profile_use_background_image": true, - "description": "SMU Alum. Native Texan. Technology, Comedy, and Dallas Sports Fan.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/614250241466851328/y9J-uD3e_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Jul 06 22:22:07 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/614250241466851328/y9J-uD3e_normal.jpg", - "favourites_count": 6233, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 54353910, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 4328, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/54353910/1363821921", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16098365", - "following": false, - "friends_count": 2041, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "black-magma.org/monger.html", - "url": "https://t.co/vEAmIqL5gQ", - "expanded_url": "http://www.black-magma.org/monger.html", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/668421043/9861eac6c566a98e985ede940c0e9fb5.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "9E9C9E", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 623, - "location": "Greater Philadelphia Metro", - "screen_name": "ihsanamin", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 44, - "name": "ihsanamin v3.7", - "profile_use_background_image": true, - "description": "Coaxial Monger.", - "url": "https://t.co/vEAmIqL5gQ", - "profile_text_color": "780F0F", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685321567144964100/Ad4mF_tL_normal.jpg", - "profile_background_color": "AEA498", - "created_at": "Tue Sep 02 15:50:08 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685321567144964100/Ad4mF_tL_normal.jpg", - "favourites_count": 13705, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/668421043/9861eac6c566a98e985ede940c0e9fb5.jpeg", - "default_profile_image": false, - "id": 16098365, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 96118, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16098365/1348017375", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "41257390", - "following": false, - "friends_count": 851, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 135, - "location": "New York City", - "screen_name": "shaunmorse", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Shaun Morse", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3633723529/e4746b8a8105d6eede0b48d269044fda_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed May 20 00:54:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633723529/e4746b8a8105d6eede0b48d269044fda_normal.jpeg", - "favourites_count": 22, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 41257390, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 665, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41257390/1368726607", - "is_translator": false - }, - { - "time_zone": "Quito", - "profile_use_background_image": true, - "description": "Dad, husband, CEO @HAandW Wealth Management, community activist, pro-Israel advocate, gardener, landscaper, golfer, reader, nacho lover.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "112311915", - "blocking": false, - "is_translation_enabled": false, - "id": 112311915, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Feb 08 01:28:39 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000620545993/64594cfa695f960c15bff825e2451ae1_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 619, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000620545993/64594cfa695f960c15bff825e2451ae1_normal.jpeg", - "favourites_count": 18, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 323, - "blocked_by": false, - "following": false, - "location": "Atlanta", - "muting": false, - "friends_count": 945, - "notifications": false, - "screen_name": "Kgreenwald123", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "is_translator": false, - "name": "Keith Greenwald" - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "161680208", - "blocking": false, - "is_translation_enabled": false, - "id": 161680208, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu Jul 01 13:38:03 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/446117809303482368/47njunwH_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 21, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/446117809303482368/47njunwH_normal.jpeg", - "favourites_count": 4, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 14, - "blocked_by": false, - "following": false, - "location": "Edmonton", - "muting": false, - "friends_count": 245, - "notifications": false, - "screen_name": "GAJ65", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "Greg Jackson" - }, - { - "time_zone": "Quito", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "80154513", - "blocking": false, - "is_translation_enabled": false, - "id": 80154513, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 05 23:24:03 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/1419802137/DSC00919_normal.JPG", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 233, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1419802137/DSC00919_normal.JPG", - "favourites_count": 55, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 97, - "blocked_by": false, - "following": false, - "location": "New York", - "muting": false, - "friends_count": 504, - "notifications": false, - "screen_name": "gallegosjuanm", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Juan Manuel Gallegos" - }, - { - "time_zone": "Jerusalem", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "3316761997", - "following": false, - "friends_count": 774, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/650473911327526912/Gh15hHvc.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "E2D42D", - "geo_enabled": false, - "followers_count": 113, - "location": "Between 33rd & 38th Parallel", - "screen_name": "MoathJundi", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Moath Jundi", - "profile_use_background_image": true, - "description": "23 - Real Estate Entrepreneur - EMT & GIS Analyst in Process - Associate Degrees in Anthropology, Psychology, Sociology and Geography.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/632852892609675264/b1MFsQQi_normal.jpg", - "profile_background_color": "E2D42D", - "created_at": "Sun Aug 16 09:50:08 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/632852892609675264/b1MFsQQi_normal.jpg", - "favourites_count": 3, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/650473911327526912/Gh15hHvc.jpg", - "default_profile_image": false, - "id": 3316761997, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 281, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3316761997/1443917395", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18752159", - "following": false, - "friends_count": 681, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/20002643/Maranacook_Fall.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 129, - "location": "South Shore, Down East", - "screen_name": "brownwey", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "brownwey", - "profile_use_background_image": true, - "description": "I'm the 3rd or 4th guy removed from Kevin Bacon that now connects you. . . .", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/290398977/Pic-0072_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Thu Jan 08 03:40:30 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/290398977/Pic-0072_normal.jpg", - "favourites_count": 32, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/20002643/Maranacook_Fall.jpg", - "default_profile_image": false, - "id": 18752159, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 700, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18752159/1353083679", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2584436011", - "following": false, - "friends_count": 105, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 66, - "location": "", - "screen_name": "bartshemiller", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Bartshe Miller", - "profile_use_background_image": true, - "description": "Sierra Nevada, water issues, weather, climate, natural history noir, Horse Feathers.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/567464637512171521/c4MbYR3__normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jun 23 18:34:27 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/567464637512171521/c4MbYR3__normal.jpeg", - "favourites_count": 112, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2584436011, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 133, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2584436011/1424128328", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "869924274", - "following": false, - "friends_count": 233, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "asarandall.com", - "url": "http://t.co/gz1YzWJX4l", - "expanded_url": "http://asarandall.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/442677477282811905/ROD-ybmF.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "D10000", - "geo_enabled": true, - "followers_count": 148, - "location": "", - "screen_name": "ArchAce", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Asa Randall", - "profile_use_background_image": true, - "description": "Anthropological Archaeologist at the University of Oklahoma, all views are my own.", - "url": "http://t.co/gz1YzWJX4l", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/433729516209315840/Ki5cmUPm_normal.jpeg", - "profile_background_color": "0DFF00", - "created_at": "Tue Oct 09 13:53:33 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/433729516209315840/Ki5cmUPm_normal.jpeg", - "favourites_count": 165, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/442677477282811905/ROD-ybmF.png", - "default_profile_image": false, - "id": 869924274, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 384, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/869924274/1405186590", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "207280695", - "following": false, - "friends_count": 540, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 83, - "location": "Minneapolis, MN", - "screen_name": "FlamChachut", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 8, - "name": "Nick Weins", - "profile_use_background_image": true, - "description": "Liberal retail manager.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670299561420824576/au0p5Ib-_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Oct 24 23:40:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670299561420824576/au0p5Ib-_normal.jpg", - "favourites_count": 6935, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 207280695, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2507, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/207280695/1387691315", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18912594", - "following": false, - "friends_count": 297, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "0099B9", - "geo_enabled": false, - "followers_count": 422, - "location": "", - "screen_name": "dan_maran", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "Dan", - "profile_use_background_image": true, - "description": "I work in IT... have you tried turning it off and on again?", - "url": null, - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/555079632072888320/N_kEmrGH_normal.jpeg", - "profile_background_color": "0099B9", - "created_at": "Mon Jan 12 19:50:56 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/555079632072888320/N_kEmrGH_normal.jpeg", - "favourites_count": 121, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "default_profile_image": false, - "id": 18912594, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9641, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18912594/1415742920", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15436436", - "following": false, - "friends_count": 1875, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 3589, - "location": "SF, south side", - "screen_name": "emeyerson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 109, - "name": "EMey", - "profile_use_background_image": true, - "description": "Marketing, politics, data. Expert on everything.", - "url": null, - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", - "profile_background_color": "642D8B", - "created_at": "Tue Jul 15 03:53:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", - "favourites_count": 5038, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", - "default_profile_image": false, - "id": 15436436, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 19937, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15436436/1444629889", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14165504", - "following": false, - "friends_count": 743, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "themillions.com", - "url": "http://t.co/gt7d8SNw1X", - "expanded_url": "http://www.themillions.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 907, - "location": "07422", - "screen_name": "cmaxmagee", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "cmaxmagee", - "profile_use_background_image": true, - "description": "Founder of the Millions. (@the_millions)", - "url": "http://t.co/gt7d8SNw1X", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3538930572/f543735e5ae4352056f053936bf418c3_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Mar 17 20:09:31 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3538930572/f543735e5ae4352056f053936bf418c3_normal.jpeg", - "favourites_count": 663, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 14165504, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1850, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14165504/1452090163", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15779216", - "following": false, - "friends_count": 512, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "usatoday.com/weather/defaul\u2026", - "url": "http://t.co/tob46EBWJR", - "expanded_url": "http://www.usatoday.com/weather/default.htm", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000092304026/e9c14244d29fd8ac448d296bffecaba1.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "FFC000", - "geo_enabled": false, - "followers_count": 22902, - "location": "McLean, Va. (USA TODAY HQ)", - "screen_name": "usatodayweather", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 979, - "name": "USA TODAY Weather", - "profile_use_background_image": false, - "description": "The latest weather and climate news -- from hurricanes and tornadoes to blizzards and climate change -- from Doyle Rice, the USA TODAY weather editor/reporter.", - "url": "http://t.co/tob46EBWJR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/461560417660047361/s20iJ0Ws_normal.png", - "profile_background_color": "FFC000", - "created_at": "Fri Aug 08 15:47:31 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/461560417660047361/s20iJ0Ws_normal.png", - "favourites_count": 28, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000092304026/e9c14244d29fd8ac448d296bffecaba1.jpeg", - "default_profile_image": false, - "id": 15779216, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 17458, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15779216/1415630791", - "is_translator": false - }, - { - "time_zone": "London", - "profile_use_background_image": false, - "description": "'Bohemian' according to one CFO. Also regulation reporter at @insuranceinside and @IPTradingRisk. Weather geek interested in all things political and risky.", - "url": "https://t.co/gelwy3PRLI", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 0, - "id_str": "2948865959", - "blocking": false, - "is_translation_enabled": false, - "id": 2948865959, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "insuranceinsider.com", - "url": "https://t.co/gelwy3PRLI", - "expanded_url": "http://www.insuranceinsider.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "000000", - "created_at": "Mon Dec 29 09:34:27 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/549895252991946752/JTgULh2t_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "statuses_count": 377, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/549895252991946752/JTgULh2t_normal.png", - "favourites_count": 4, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 163, - "blocked_by": false, - "following": false, - "location": "EC3", - "muting": false, - "friends_count": 266, - "notifications": false, - "screen_name": "insiderwinifred", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "is_translator": false, - "name": "Insider_winifred" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11433152", - "following": false, - "friends_count": 3665, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "plus.google.com/+NateJohnson/", - "url": "https://t.co/dMpfqObOsm", - "expanded_url": "https://plus.google.com/+NateJohnson/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 10007, - "location": "Raleigh, NC", - "screen_name": "nsj", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 568, - "name": "Nate Johnson", - "profile_use_background_image": false, - "description": "I am a meteorologist, instructor, blogger, and podcaster. Flying is my latest adventure. I tweet #ncwx, communication, #NCState, #Cubs, #BBQ, & #avgeek stuff.", - "url": "https://t.co/dMpfqObOsm", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", - "profile_background_color": "0000FF", - "created_at": "Sat Dec 22 14:59:53 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", - "favourites_count": 1102, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", - "default_profile_image": false, - "id": 11433152, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 45504, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11433152/1405353644", - "is_translator": false - }, - { - "time_zone": "Bogota", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "273437487", - "following": false, - "friends_count": 1350, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "992266", - "geo_enabled": true, - "followers_count": 257, - "location": "Cali, Colombia", - "screen_name": "marisolcitag", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Marisol Giraldo", - "profile_use_background_image": true, - "description": ".:I'm Colombian ... what is your superpower? :.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/488873447682875392/vJlNYMdb_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Mon Mar 28 13:59:18 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/488873447682875392/vJlNYMdb_normal.jpeg", - "favourites_count": 4576, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 273437487, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 13774, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/273437487/1405392302", - "is_translator": false - }, - { - "time_zone": "Bogota", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "88531019", - "following": false, - "friends_count": 1005, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 335, - "location": "Pamplona y Bogot\u00e1", - "screen_name": "livediaz", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 4, - "name": "Liliana Vera", - "profile_use_background_image": false, - "description": "CARGANDO...\r\n\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588 99%", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638548480449990658/s47Nvisw_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Nov 08 22:49:56 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638548480449990658/s47Nvisw_normal.jpg", - "favourites_count": 503, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 88531019, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1174, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/88531019/1431892477", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "19430233", - "following": false, - "friends_count": 1751, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "qz.com", - "url": "https://t.co/G318vIng6k", - "expanded_url": "http://qz.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623444704202518528/md1pZdSY.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 24967, - "location": "New York, NY", - "screen_name": "zseward", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 1562, - "name": "Zach Seward", - "profile_use_background_image": true, - "description": "VP of product and executive editor at Quartz | @qz | z@qz.com", - "url": "https://t.co/G318vIng6k", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641001275941855236/IDlq9PWd_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Sat Jan 24 03:32:09 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641001275941855236/IDlq9PWd_normal.jpg", - "favourites_count": 7924, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623444704202518528/md1pZdSY.jpg", - "default_profile_image": false, - "id": 19430233, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 22976, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19430233/1441661794", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "848833596", - "following": false, - "friends_count": 798, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 682, - "location": "", - "screen_name": "CaliaDomenico", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 48, - "name": "Domenico Calia", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678262426211590144/4HmSlhrT_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Sep 27 07:40:42 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "it", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678262426211590144/4HmSlhrT_normal.jpg", - "favourites_count": 9282, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 848833596, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 15504, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/848833596/1452289979", - "is_translator": false - }, - { - "time_zone": "Indiana (East)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "336053775", - "following": false, - "friends_count": 344, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 90, - "location": "Bloomington, Indiana", - "screen_name": "classic_geek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Classic Geek", - "profile_use_background_image": true, - "description": "SQL Server Professional. IU Grad Student in Data Science. Fan of science, linguistics and Romantic/Modern music. May (re)tweet in English, Russian, Turkish.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617056411089027073/bWnGHO_d_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Jul 15 17:29:11 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617056411089027073/bWnGHO_d_normal.jpg", - "favourites_count": 126, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 336053775, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1600, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/336053775/1435952547", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4063739236", - "following": false, - "friends_count": 735, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 255, - "location": "", - "screen_name": "morenamla", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "\u2b50\ufe0fMorena Mia\u2b50\ufe0f", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659573999937183744/cwbZGqjW_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Oct 28 22:39:09 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659573999937183744/cwbZGqjW_normal.jpg", - "favourites_count": 42, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4063739236, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 133, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4063739236/1448518338", - "is_translator": false - }, - { - "time_zone": "International Date Line West", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -39600, - "id_str": "187144916", - "following": false, - "friends_count": 270, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "satrapy.cykranosh.solar", - "url": "http://t.co/22bUdX0ML8", - "expanded_url": "http://satrapy.cykranosh.solar", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 124, - "location": "THE BOREAL HEXAGON ", - "screen_name": "cykragnostic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Satrap of Saturn", - "profile_use_background_image": true, - "description": "Freelance editor. \nSufick Muslim adeptus ipsissimus. \nSpheres: words, stars, rocks, critters.\nThey/them.", - "url": "http://t.co/22bUdX0ML8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655573916518326272/Rbwx52Iw_normal.png", - "profile_background_color": "131516", - "created_at": "Sun Sep 05 11:41:58 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655573916518326272/Rbwx52Iw_normal.png", - "favourites_count": 1210, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 187144916, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 5951, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/187144916/1442040118", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "336828006", - "following": false, - "friends_count": 642, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gorelovergirl69.blogspot.com", - "url": "http://t.co/hOX49KQcaX", - "expanded_url": "http://gorelovergirl69.blogspot.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362351757/PURPLE.FIRE.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 111, - "location": "USA", - "screen_name": "GoreLoverGirl69", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 4, - "name": "GoreLoverGirl69", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/hOX49KQcaX", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1711571583/WRENS.EYES.END.OF_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jul 17 00:14:14 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1711571583/WRENS.EYES.END.OF_normal.jpg", - "favourites_count": 1848, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362351757/PURPLE.FIRE.jpg", - "default_profile_image": false, - "id": 336828006, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 18171, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/336828006/1414953413", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2331273943", - "following": false, - "friends_count": 1338, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "antonioweatherinfo.weebly.com", - "url": "http://t.co/3rSNa8G1Ca", - "expanded_url": "http://antonioweatherinfo.weebly.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 203, - "location": "Daly City CA", - "screen_name": "RealAntonioM", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 2, - "name": "Antonio Maffei", - "profile_use_background_image": false, - "description": "- Weatherman\n- Astronomer\n- Son\n- Part of NASA Missions\n- Daly City Weatherman \n- KTVU/KPIX Weather Watcher", - "url": "http://t.co/3rSNa8G1Ca", - "profile_text_color": "000000", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/663110936354394112/S2URUUj9_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Feb 07 04:10:59 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663110936354394112/S2URUUj9_normal.jpg", - "favourites_count": 246, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2331273943, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3025, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2331273943/1438652902", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "22044763", - "following": false, - "friends_count": 365, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "soundcloud.com/miltonjackson", - "url": "http://t.co/NVdq7KBQmI", - "expanded_url": "http://soundcloud.com/miltonjackson", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 5023, - "location": "Up & Down", - "screen_name": "miltonjackson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 97, - "name": "Milton Jackson", - "profile_use_background_image": true, - "description": "Alan Partridge, Space, House Music, Baseball. That's about it.", - "url": "http://t.co/NVdq7KBQmI", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2525862589/jlc3gcshyaww2i09ucj9_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Feb 26 18:50:20 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2525862589/jlc3gcshyaww2i09ucj9_normal.jpeg", - "favourites_count": 628, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 22044763, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2869, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22044763/1443187956", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "806620844", - "following": false, - "friends_count": 714, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "the-earth-story.com", - "url": "https://t.co/xiiaNQNIKz", - "expanded_url": "https://www.the-earth-story.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/436260926509953025/YWwturFA.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "20201E", - "profile_link_color": "897856", - "geo_enabled": false, - "followers_count": 2926, - "location": "About 149597870700 m from Sol", - "screen_name": "TheEarthStory", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 167, - "name": "The Earth Story", - "profile_use_background_image": true, - "description": "If you love our beautiful planet, then this is the page for you.", - "url": "https://t.co/xiiaNQNIKz", - "profile_text_color": "C8A86F", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2582373510/e4ag2n4nip5lzkkm3wsc_normal.jpeg", - "profile_background_color": "20201E", - "created_at": "Thu Sep 06 11:33:11 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2582373510/e4ag2n4nip5lzkkm3wsc_normal.jpeg", - "favourites_count": 3687, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/436260926509953025/YWwturFA.jpeg", - "default_profile_image": false, - "id": 806620844, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 16571, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/806620844/1396522060", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "314016317", - "following": false, - "friends_count": 245, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 37, - "location": "", - "screen_name": "JDevarajan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Jagadish Devarajan", - "profile_use_background_image": true, - "description": "~ Father, Husband, Son, Brother, Friend, Chicagoan, Desi, Tamil ~ Cricket, CrossFit, Photography, Boredom", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1388698101/2010-12-20_11.50.40_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 09 15:41:42 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1388698101/2010-12-20_11.50.40_normal.jpg", - "favourites_count": 120, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 314016317, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 205, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/314016317/1399645268", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "380667593", - "following": false, - "friends_count": 1912, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 884, - "location": "", - "screen_name": "MichaelJewell78", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 99, - "name": "Michael Jewell", - "profile_use_background_image": true, - "description": "Physics student, Wayne State Warrior, Phi Theta Kappa, APS, SPS, AVS, OSA", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/633667392770560000/YosJcg0m_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Sep 27 01:20:06 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/633667392770560000/YosJcg0m_normal.jpg", - "favourites_count": 64585, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 380667593, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 50691, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/380667593/1439913167", - "is_translator": false - }, - { - "time_zone": "Tokyo", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 32400, - "id_str": "2957887285", - "following": false, - "friends_count": 497, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tilma-labs.org", - "url": "https://t.co/gv5iDz9d8o", - "expanded_url": "http://tilma-labs.org/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591747274339790849/cqU2Gy7H.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 173, - "location": "Tokyo Institute of Technology", - "screen_name": "TilmaLabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Todd Tilma", - "profile_use_background_image": true, - "description": "Associate Professor of physics in the International Education and Research Center of Science. Purveyor of finely crafted mathematical physics formulas.", - "url": "https://t.co/gv5iDz9d8o", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/551570534408794113/HySCq5QE_normal.jpeg", - "profile_background_color": "ABB8C2", - "created_at": "Sun Jan 04 02:14:56 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551570534408794113/HySCq5QE_normal.jpeg", - "favourites_count": 7244, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591747274339790849/cqU2Gy7H.jpg", - "default_profile_image": false, - "id": 2957887285, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4292, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2957887285/1446973475", - "is_translator": false - }, - { - "time_zone": "Wellington", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 46800, - "id_str": "22125553", - "following": false, - "friends_count": 192, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 28, - "location": "Mumbai, India", - "screen_name": "IKONOS2", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Amit Kokje", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "39382D", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/585912351443955712/Jg2KDH8a_normal.jpg", - "profile_background_color": "3E274E", - "created_at": "Fri Feb 27 09:54:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/585912351443955712/Jg2KDH8a_normal.jpg", - "favourites_count": 761, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", - "default_profile_image": false, - "id": 22125553, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 18, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22125553/1428528861", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "159297352", - "following": false, - "friends_count": 1147, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 179, - "location": "", - "screen_name": "VeraR2010", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Vera Rybinova", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/653111003245359104/pjBDMZ0V_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Jun 25 00:39:45 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/653111003245359104/pjBDMZ0V_normal.jpg", - "favourites_count": 271, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 159297352, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2924, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/159297352/1444548773", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "242924535", - "following": false, - "friends_count": 794, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 306, - "location": "", - "screen_name": "billwickett", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Bill Wickett", - "profile_use_background_image": true, - "description": ".anchor consultant. scope and swing.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/640586954237734912/Q04ib0J7_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 25 22:30:51 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/640586954237734912/Q04ib0J7_normal.jpg", - "favourites_count": 3084, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 242924535, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3742, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/242924535/1441562806", - "is_translator": false - }, - { - "time_zone": "Georgetown", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "74042479", - "following": false, - "friends_count": 1094, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E5507E", - "profile_link_color": "B40B43", - "geo_enabled": true, - "followers_count": 423, - "location": "", - "screen_name": "profesor_seldon", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 38, - "name": "Profesor_Seldon", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "362720", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2874853399/fd71d587bbf9c926a325bbed43c67b23_normal.jpeg", - "profile_background_color": "FF6699", - "created_at": "Mon Sep 14 02:21:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "CC3366", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2874853399/fd71d587bbf9c926a325bbed43c67b23_normal.jpeg", - "favourites_count": 51568, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", - "default_profile_image": false, - "id": 74042479, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 8990, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/74042479/1443930675", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "73352446", - "following": false, - "friends_count": 854, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/327289582/pic.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": true, - "followers_count": 322, - "location": "", - "screen_name": "charlesmuturi", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "mzito", - "profile_use_background_image": true, - "description": "Friendly Atheist", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/536928887700082688/k1sOLutF_normal.jpeg", - "profile_background_color": "8B542B", - "created_at": "Fri Sep 11 10:00:29 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/536928887700082688/k1sOLutF_normal.jpeg", - "favourites_count": 1272, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/327289582/pic.jpg", - "default_profile_image": false, - "id": 73352446, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7229, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/73352446/1412022722", - "is_translator": false - }, - { - "time_zone": "Saskatchewan", - "profile_use_background_image": true, - "description": "follow me if you want but i have no plans to start tweeting", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": -21600, - "id_str": "367937788", - "blocking": false, - "is_translation_enabled": true, - "id": 367937788, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Sep 04 20:20:58 +0000 2011", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 21, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", - "favourites_count": 1, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 7, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 73, - "notifications": false, - "screen_name": "Mrscience14", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Greg Eslinger" - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": -21600, - "id_str": "350420286", - "blocking": false, - "is_translation_enabled": false, - "id": 350420286, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Aug 07 19:00:05 +0000 2011", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", - "favourites_count": 5, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 113, - "notifications": false, - "screen_name": "blazingtuba", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "is_translator": false, - "name": "blazingtuba" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "17140002", - "following": false, - "friends_count": 2157, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tulsaworld.com/offbeat", - "url": "http://t.co/CLvIA1TJO2", - "expanded_url": "http://www.tulsaworld.com/offbeat", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 2465, - "location": "Tulsa, Oklahoma", - "screen_name": "jerrywofford", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 83, - "name": "Jerry Wofford", - "profile_use_background_image": true, - "description": "Music/features writer for @TWScene. Unhealthy obsession with the 918/479, the greatness of the flyovers and weather. Photo from @jclantonphoto", - "url": "http://t.co/CLvIA1TJO2", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677985287146835969/xYRzZ3fm_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Mon Nov 03 20:50:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677985287146835969/xYRzZ3fm_normal.jpg", - "favourites_count": 10686, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile_image": false, - "id": 17140002, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 28935, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17140002/1441735943", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "7507462", - "following": false, - "friends_count": 226, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "benelsen.com", - "url": "https://t.co/VdkPB38GEl", - "expanded_url": "https://benelsen.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 227, - "location": "Munich, Bavaria", - "screen_name": "benelsen", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 19, - "name": "Ben", - "profile_use_background_image": false, - "description": "", - "url": "https://t.co/VdkPB38GEl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507127502431862784/W4C6BOwM_normal.jpeg", - "profile_background_color": "DBE9ED", - "created_at": "Mon Jul 16 14:37:39 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507127502431862784/W4C6BOwM_normal.jpeg", - "favourites_count": 1222, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "default_profile_image": false, - "id": 7507462, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 27472, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7507462/1450655390", - "is_translator": false - } - ], - "previous_cursor": 0, - "previous_cursor_str": "0", - "next_cursor_str": "1516850034842747602" -} \ No newline at end of file +{"users": [{"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2386149065", "following": false, "friends_count": 2028, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 346, "location": "", "screen_name": "hkarolam", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "akyoka", "profile_use_background_image": true, "description": "facebook \nakyoka v regi\u00f3n", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676766980372832256/4v5XUzBe_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Mar 05 18:48:39 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676766980372832256/4v5XUzBe_normal.jpg", "favourites_count": 9, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2386149065, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2301, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2386149065/1450188795", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4610830879", "profile_image_url": "http://pbs.twimg.com/profile_images/678496104497844225/qGQZkW7T_normal.jpg", "friends_count": 151, "entities": {"description": {"urls": []}}, "profile_background_color": "F5F8FA", "created_at": "Sun Dec 20 08:30:32 +0000 2015", "blocking": false, "profile_background_image_url": null, "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2B7BB9", "profile_background_image_url_https": null, "statuses_count": 3, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/678496104497844225/qGQZkW7T_normal.jpg", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 7, "following": false, "default_profile_image": false, "id": 4610830879, "blocked_by": false, "name": "spotlesscleaning", "location": "", "screen_name": "ChennaiSpotless", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Tokyo", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 32400, "id_str": "3075452130", "following": false, "friends_count": 3486, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1265, "location": "", "screen_name": "jav_gal_exp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "\u65e5\u672c\u306e\u30ae\u30e3\u30eb\u306eAVbot", "profile_use_background_image": true, "description": "\u30ae\u30e3\u30eb\u30e2\u30ce\u306eAV\u306e\u7d39\u4ecbbot\u3002\u30c4\u30a4\u30fc\u30c8\u306e\u30ea\u30f3\u30af\u5148DMM\u306eR18\u5185\u306e\u305d\u308c\u305e\u308c\u306e\u5546\u54c1\u306e\u30da\u30fc\u30b8\u3002\u5185\u5bb9\u306f18\u7981\u3002", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/587119610408738816/Jgw1cNce_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 12 17:39:40 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "ja", "profile_image_url_https": "https://pbs.twimg.com/profile_images/587119610408738816/Jgw1cNce_normal.jpg", "favourites_count": 1, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3075452130, "blocked_by": false, "profile_background_tile": false, "statuses_count": 33190, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3075452130/1428816875", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1093711638", "following": false, "friends_count": 696, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 996, "location": "Richland, Washington", "screen_name": "Rocket_Corgi", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Rocket Corgi", "profile_use_background_image": true, "description": "32 yrs old, Bi, KS-5, Mechanical Engineer, Furry, Space Corgi", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683412297964863489/79alayb8_normal.jpg", "profile_background_color": "80C0F5", "created_at": "Wed Jan 16 01:09:33 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683412297964863489/79alayb8_normal.jpg", "favourites_count": 13102, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "default_profile_image": false, "id": 1093711638, "blocked_by": false, "profile_background_tile": false, "statuses_count": 15144, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1093711638/1385133310", "is_translator": false}, {"time_zone": "Melbourne", "profile_use_background_image": true, "description": "All views expressed are my own.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "29420974", "profile_image_url": "http://pbs.twimg.com/profile_images/510757955700944897/nBRHch7x_normal.jpeg", "friends_count": 138, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Apr 07 10:19:44 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 223, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/510757955700944897/nBRHch7x_normal.jpeg", "favourites_count": 96, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 27, "following": false, "default_profile_image": false, "id": 29420974, "blocked_by": false, "name": "Hedgees", "location": "", "screen_name": "Hedgees", "profile_background_tile": false, "notifications": false, "utc_offset": 39600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4723820438", "profile_image_url": "http://pbs.twimg.com/profile_images/685108979660238848/OWa0M1ZT_normal.jpg", "friends_count": 505, "entities": {"description": {"urls": []}}, "profile_background_color": "F5F8FA", "created_at": "Thu Jan 07 14:27:14 +0000 2016", "blocking": false, "profile_background_image_url": null, "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2B7BB9", "profile_background_image_url_https": null, "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/685108979660238848/OWa0M1ZT_normal.jpg", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 40, "following": false, "default_profile_image": false, "id": 4723820438, "blocked_by": false, "name": "Sai Nithish Kumar", "location": "", "screen_name": "theonly_nithish", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Mountain Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": true, "id_str": "7604462", "profile_image_url": "http://pbs.twimg.com/profile_images/1893353735/Screen_Shot_2012-03-12_at_11.38.10_PM_normal.png", "friends_count": 2162, "entities": {"description": {"urls": []}}, "profile_background_color": "1A1B1F", "created_at": "Fri Jul 20 08:11:47 +0000 2007", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_text_color": "666666", "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4755, "profile_sidebar_border_color": "181A1E", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1893353735/Screen_Shot_2012-03-12_at_11.38.10_PM_normal.png", "favourites_count": 32453, "listed_count": 16, "geo_enabled": true, "follow_request_sent": false, "followers_count": 179, "following": false, "default_profile_image": false, "id": 7604462, "blocked_by": false, "name": "mjuarez", "location": "", "screen_name": "mjuarez", "profile_background_tile": false, "notifications": false, "utc_offset": -25200, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Kolkata", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "1165400875", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "friends_count": 115, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Feb 10 09:13:19 +0000 2013", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1, "following": false, "default_profile_image": true, "id": 1165400875, "blocked_by": false, "name": "ABHIJIT GHOSH", "location": "", "screen_name": "ABHIJITIND16", "profile_background_tile": false, "notifications": false, "utc_offset": 19800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4669745534", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "friends_count": 375, "entities": {"description": {"urls": []}}, "profile_background_color": "F5F8FA", "created_at": "Mon Dec 28 22:19:44 +0000 2015", "blocking": false, "profile_background_image_url": null, "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2B7BB9", "profile_background_image_url_https": null, "statuses_count": 740, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "favourites_count": 178, "listed_count": 10, "geo_enabled": false, "follow_request_sent": false, "followers_count": 50, "following": false, "default_profile_image": true, "id": 4669745534, "blocked_by": false, "name": "annakali garland", "location": "", "screen_name": "AnnakaliGarland", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "4419492197", "following": false, "friends_count": 19, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "electron.farm/5point9billion", "url": "https://t.co/BhoTCpphxC", "expanded_url": "http://electron.farm/5point9billion", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "89C9FA", "geo_enabled": false, "followers_count": 537, "location": "(bot by @genmon)", "screen_name": "5point9billion", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "5,880,000,000,000", "profile_use_background_image": false, "description": "Light left Earth as you were born... I tell you when it reaches the STARS. To start: Follow me + tweet me yr birthday, like this: @5point9billion 18 feb 1978", "url": "https://t.co/BhoTCpphxC", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675699965193281536/6BQFjS8T_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Dec 08 20:57:03 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675699965193281536/6BQFjS8T_normal.jpg", "favourites_count": 20, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4419492197, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1128, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4419492197/1449933909", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "49807670", "following": false, "friends_count": 433, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 249, "location": "State College x New Jersey", "screen_name": "MattTheMeteo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Matt Livingston", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/464184747917602816/yaTApCIP_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Jun 22 23:27:18 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/464184747917602816/yaTApCIP_normal.jpeg", "favourites_count": 4133, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 49807670, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6009, "profile_banner_url": "https://pbs.twimg.com/profile_banners/49807670/1433784463", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2327981533", "following": false, "friends_count": 2685, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000181745497/iSPn5XIa.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 700, "location": "Northeast Georgia", "screen_name": "DrMitchem", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Jamie Mitchem", "profile_use_background_image": true, "description": "Geographer, Meteorologist, Professor, GIS Guru, Hazards Researcher... I love all things related to Earth, it's atmosphere, mapping, and modeling.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551280206330482688/WHbiwaZp_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Wed Feb 05 01:05:53 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551280206330482688/WHbiwaZp_normal.jpeg", "favourites_count": 9550, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000181745497/iSPn5XIa.jpeg", "default_profile_image": false, "id": 2327981533, "blocked_by": false, "profile_background_tile": true, "statuses_count": 4398, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2327981533/1396318777", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "229567163", "following": false, "friends_count": 565, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 220, "location": "Starkville, MS and Seattle, WA", "screen_name": "kudrios", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "William", "profile_use_background_image": false, "description": "Graduate student at Mississippi State studying Meteorology (progressive derechos). Pathways Intern at NWS in Seattle.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/645707556912914432/FoGWS1pU_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Dec 22 18:54:51 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645707556912914432/FoGWS1pU_normal.jpg", "favourites_count": 1059, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "id": 229567163, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1399, "profile_banner_url": "https://pbs.twimg.com/profile_banners/229567163/1422597481", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4590261747", "following": false, "friends_count": 295, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": null, "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2B7BB9", "geo_enabled": false, "followers_count": 94, "location": "Memphis, TN", "screen_name": "WX_Overlord", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Jeremy Scott Smith", "profile_use_background_image": true, "description": "*Senior Meteorologist @ FedEx *Grad Student @ MSU (aviation,NC climate,CAD events,radar) *USAF Meteorologist *Raysweatherdotcom contributor ^Opinions are my own", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680049584207446017/1c85lyET_normal.jpg", "profile_background_color": "F5F8FA", "created_at": "Thu Dec 24 15:03:21 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680049584207446017/1c85lyET_normal.jpg", "favourites_count": 661, "profile_background_image_url_https": null, "default_profile_image": false, "id": 4590261747, "blocked_by": false, "profile_background_tile": false, "statuses_count": 239, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4590261747/1451170449", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "22215485", "following": false, "friends_count": 5424, "entities": {"description": {"urls": [{"display_url": "wxbrad.com", "url": "https://t.co/oLVgKYPDDU", "expanded_url": "http://wxbrad.com", "indices": [118, 141]}]}, "url": {"urls": [{"display_url": "about.me/wxbrad", "url": "http://t.co/gYY0LbMcK7", "expanded_url": "http://about.me/wxbrad", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 43553, "location": "Charlotte, NC", "screen_name": "wxbrad", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1522, "name": "Brad Panovich", "profile_use_background_image": true, "description": "Chief Meteorologist in Charlotte, NC, Weather & Tech Geek! Suffering Cleveland Sports Fan & @OhioState grad.I Blog at https://t.co/oLVgKYPDDU #cltwx #ncwx #scwx", "url": "http://t.co/gYY0LbMcK7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495078741270224896/h4qoVRWY_normal.jpeg", "profile_background_color": "131516", "created_at": "Sat Feb 28 01:31:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495078741270224896/h4qoVRWY_normal.jpeg", "favourites_count": 378, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 22215485, "blocked_by": false, "profile_background_tile": true, "statuses_count": 167262, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22215485/1348111348", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4701170684", "profile_image_url": "http://pbs.twimg.com/profile_images/683555003198345218/d1l3pTRq_normal.png", "friends_count": 958, "entities": {"description": {"urls": []}}, "profile_background_color": "F5F8FA", "created_at": "Sun Jan 03 07:13:30 +0000 2016", "blocking": false, "profile_background_image_url": null, "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2B7BB9", "profile_background_image_url_https": null, "statuses_count": 1, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/683555003198345218/d1l3pTRq_normal.png", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 127, "following": false, "default_profile_image": false, "id": 4701170684, "blocked_by": false, "name": "OmankoTV", "location": "", "screen_name": "Omanko_TV", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "39297426", "following": false, "friends_count": 677, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0099CC", "geo_enabled": true, "followers_count": 1334, "location": "Memphis, TN", "screen_name": "ChristinaMeek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 51, "name": "Christina Meek", "profile_use_background_image": true, "description": "Director of Communications @memphischamber. Book nerd and TV enthusiast. #GoGrizz!!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661357317213052928/KhMr07gM_normal.jpg", "profile_background_color": "FFF04D", "created_at": "Mon May 11 17:37:02 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFF8AD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661357317213052928/KhMr07gM_normal.jpg", "favourites_count": 1581, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "default_profile_image": false, "id": 39297426, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3569, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39297426/1419305431", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "28809370", "following": false, "friends_count": 897, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "raymondklaassen.com", "url": "http://t.co/5kothXM0gM", "expanded_url": "http://raymondklaassen.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/889544435/250ade3a2c396098e2ce710504f48741.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1429, "location": "Almere, Nederland", "screen_name": "RaymondKlaassen", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 61, "name": "Raymond Klaassen", "profile_use_background_image": false, "description": "Meteoroloog | Meteorologist | Weerman | Almere | Werkzaam bij Weerplaza | Weer | Meteorologie | Weather | Fun | Photography", "url": "http://t.co/5kothXM0gM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/625617990835433472/LcUO6TuA_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Apr 04 15:14:42 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "nl", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625617990835433472/LcUO6TuA_normal.jpg", "favourites_count": 387, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/889544435/250ade3a2c396098e2ce710504f48741.jpeg", "default_profile_image": false, "id": 28809370, "blocked_by": false, "profile_background_tile": false, "statuses_count": 17191, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28809370/1445876925", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "9225852", "following": false, "friends_count": 2721, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jaredwsmith.com", "url": "https://t.co/H3c84vOV4n", "expanded_url": "http://jaredwsmith.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/400727465/cloud-twitter-bg.jpg", "notifications": false, "profile_sidebar_fill_color": "F7F7F7", "profile_link_color": "C94300", "geo_enabled": true, "followers_count": 5847, "location": "Charleston, SC", "screen_name": "jaredwsmith", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 412, "name": "Jared Smith", "profile_use_background_image": true, "description": "Consumer dev manager @BoomTownROI, human foil for @chswx's forecast and warning bot, subject of @scoccaro's subtweets. Cam Newton for MVP.", "url": "https://t.co/H3c84vOV4n", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670651069681111040/OXqUreqR_normal.jpg", "profile_background_color": "CFCFCF", "created_at": "Wed Oct 03 14:07:37 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670651069681111040/OXqUreqR_normal.jpg", "favourites_count": 26436, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/400727465/cloud-twitter-bg.jpg", "default_profile_image": false, "id": 9225852, "blocked_by": false, "profile_background_tile": false, "statuses_count": 38010, "profile_banner_url": "https://pbs.twimg.com/profile_banners/9225852/1450496816", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "55021380", "following": false, "friends_count": 447, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kachelmannwetter.com", "url": "https://t.co/GC84SRoHtG", "expanded_url": "http://www.kachelmannwetter.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3143, "location": "Greenville, South Carolina,USA", "screen_name": "rkrampitz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 91, "name": "Rebekka Krampitz", "profile_use_background_image": true, "description": "German meteorologist and weather presenter // GER- and US-weather // working for @kachelmannwettr, formerly @wdr & SR German Radio", "url": "https://t.co/GC84SRoHtG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670260651466604544/W2Qgvodi_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jul 08 20:40:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670260651466604544/W2Qgvodi_normal.jpg", "favourites_count": 1606, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 55021380, "blocked_by": false, "profile_background_tile": false, "statuses_count": 11986, "profile_banner_url": "https://pbs.twimg.com/profile_banners/55021380/1437803539", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14900137", "following": false, "friends_count": 2063, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/timballisty", "url": "http://t.co/GppSkK2x8B", "expanded_url": "http://about.me/timballisty", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/526786960312922113/SeMa2IA6.jpeg", "notifications": false, "profile_sidebar_fill_color": "095473", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 4072, "location": "Asheville, NC", "screen_name": "IrishEagle", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 275, "name": "Tim Ballisty", "profile_use_background_image": true, "description": "Meteorologist. Free agent. Looking for opportunities to write, teach, and/or create videos about weather. | **On Snapchat** globalweather", "url": "http://t.co/GppSkK2x8B", "profile_text_color": "8BB4BA", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/526747372773076992/DCbxH4_e_normal.jpeg", "profile_background_color": "FFECDD", "created_at": "Sun May 25 17:04:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/526747372773076992/DCbxH4_e_normal.jpeg", "favourites_count": 10176, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/526786960312922113/SeMa2IA6.jpeg", "default_profile_image": false, "id": 14900137, "blocked_by": false, "profile_background_tile": true, "statuses_count": 34211, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14900137/1398601473", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "545217129", "following": false, "friends_count": 1690, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/494698254/BAR_UNIVERSO_PEQ.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 219, "location": "Dispersio ex Galitzia", "screen_name": "_lapsus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Colapsos Mari", "profile_use_background_image": true, "description": "Denantes hipis que amor", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2038078140/MENINOS_2_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Apr 04 13:38:31 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2038078140/MENINOS_2_normal.jpg", "favourites_count": 4933, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/494698254/BAR_UNIVERSO_PEQ.jpg", "default_profile_image": false, "id": 545217129, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1976, "profile_banner_url": "https://pbs.twimg.com/profile_banners/545217129/1357262849", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "55370049", "following": false, "friends_count": 18877, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/Dolphin_Project", "url": "https://t.co/sPMOyr7g8z", "expanded_url": "https://twitter.com/Dolphin_Project", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586554656/9vd810kck4s2cj02qshk.jpeg", "notifications": false, "profile_sidebar_fill_color": "98C293", "profile_link_color": "498026", "geo_enabled": false, "followers_count": 20231, "location": "\u2756Rustic Mississippi \u2756#MSwx", "screen_name": "MiddleAmericaMS", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 459, "name": "MiddleAmericaMS", "profile_use_background_image": true, "description": "\u2756News Addict \u2756Journalism \u2756Meteorology \u2756Science \u2756#Eco \u2756Aerospace \u2756#Cars \u2756Progressive \u2756Ex-Conservative \u2756#BlackLivesMatter \u2756#StandwithPP \u2756#DolphinProject", "url": "https://t.co/sPMOyr7g8z", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/652650153405321216/_XeJoRgz_normal.png", "profile_background_color": "1F3610", "created_at": "Thu Jul 09 21:35:27 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652650153405321216/_XeJoRgz_normal.png", "favourites_count": 47868, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586554656/9vd810kck4s2cj02qshk.jpeg", "default_profile_image": false, "id": 55370049, "blocked_by": false, "profile_background_tile": true, "statuses_count": 51886, "profile_banner_url": "https://pbs.twimg.com/profile_banners/55370049/1399450790", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2633765294", "following": false, "friends_count": 189, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "soundcloud.com/jamieprado", "url": "https://t.co/pblDe9VIjQ", "expanded_url": "http://soundcloud.com/jamieprado", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/488116607554568192/5ADQT1c6.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 637, "location": "instagram.com/jamieprado ", "screen_name": "jamiepradomusic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Jamie Prado", "profile_use_background_image": true, "description": "bookings/remixes: jamiepradomusic[at]gmail[dot]com", "url": "https://t.co/pblDe9VIjQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/645617324318326784/juUQ0qTH_normal.jpg", "profile_background_color": "131516", "created_at": "Sun Jul 13 00:18:39 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645617324318326784/juUQ0qTH_normal.jpg", "favourites_count": 1392, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/488116607554568192/5ADQT1c6.jpeg", "default_profile_image": false, "id": 2633765294, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2025, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2633765294/1432189004", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3094340773", "following": false, "friends_count": 2488, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1067, "location": "", "screen_name": "lady_teacher_ja", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "\u5973\u6559\u5e2bAV\u7d39\u4ecb", "profile_use_background_image": true, "description": "\u5973\u6559\u5e2b\u30e2\u30ce\u306eAV\u306e\u30b5\u30f3\u30d7\u30eb\u753b\u50cf\u3092tweet\u3057\u307e\u3059\u3002\u753b\u50cf\u306f\uff0cDMM\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059\u3002\u30ea\u30d7\u30e9\u30a4\uff0cDM\u306a\u3069\u306f\u6642\u3005\u3057\u304b\u898b\u307e\u305b\u3093\u3002\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u8fd4\u3057\u307e\u3059\u3002", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/637479710709051392/ASHCnEvJ_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Mar 17 16:49:52 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "ja", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637479710709051392/ASHCnEvJ_normal.jpg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3094340773, "blocked_by": false, "profile_background_tile": false, "statuses_count": 32175, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3094340773/1440823277", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": false, "description": "iOS Developer, Software Engineer with a passion for technology and engineering", "url": "http://t.co/sOJd7iUxIh", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "13815032", "profile_image_url": "http://pbs.twimg.com/profile_images/3774425615/a3b7bec3e7d3808daf57706d685e780a_normal.jpeg", "friends_count": 1356, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "marknorgren.com", "url": "http://t.co/sOJd7iUxIh", "expanded_url": "http://marknorgren.com", "indices": [0, 22]}]}}, "profile_background_color": "C6E2EE", "created_at": "Fri Feb 22 11:51:46 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_text_color": "663B12", "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 1151, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3774425615/a3b7bec3e7d3808daf57706d685e780a_normal.jpeg", "favourites_count": 4152, "listed_count": 58, "geo_enabled": true, "follow_request_sent": false, "followers_count": 408, "following": false, "default_profile_image": false, "id": 13815032, "blocked_by": false, "name": "Mark Norgren", "location": "minneapolis", "screen_name": "marknorgren", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "93955588", "following": false, "friends_count": 775, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 243, "location": "Fort Collins, CO", "screen_name": "JoshFudge", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Josh Fudge", "profile_use_background_image": false, "description": "Budget geek, budding beer snob, amateur bbq'er, political independent, fan of the T-wolves, Wild, Brewers, and Badgers.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/615345006019149824/b0-NqnJ1_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Dec 01 22:11:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/615345006019149824/b0-NqnJ1_normal.jpg", "favourites_count": 311, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 93955588, "blocked_by": false, "profile_background_tile": false, "statuses_count": 704, "profile_banner_url": "https://pbs.twimg.com/profile_banners/93955588/1435544658", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3457468761", "following": false, "friends_count": 2122, "entities": {"description": {"urls": [{"display_url": "igg.me/at/dotsbook", "url": "http://t.co/jlpcMkjvgD", "expanded_url": "http://igg.me/at/dotsbook", "indices": [104, 126]}]}, "url": {"urls": [{"display_url": "igg.me/at/dotsbook", "url": "http://t.co/jlpcMkjvgD", "expanded_url": "http://igg.me/at/dotsbook", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": false, "followers_count": 202, "location": "", "screen_name": "DotsBookApp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "DotsBook", "profile_use_background_image": false, "description": "Dots - game like Go, but faster. \nWe wish make app DotsBook, with the possibility of playing for money. http://t.co/jlpcMkjvgD", "url": "http://t.co/jlpcMkjvgD", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/636874535870926848/3Z4ZSPcy_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Aug 27 12:14:06 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "ru", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636874535870926848/3Z4ZSPcy_normal.jpg", "favourites_count": 30, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3457468761, "blocked_by": false, "profile_background_tile": false, "statuses_count": 18, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3457468761/1440678596", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2788407869", "following": false, "friends_count": 1260, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 163, "location": "", "screen_name": "puchisaez319", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "delma", "profile_use_background_image": true, "description": "Try incorporating an image intoidvery three to four tweets so they're more prominent in a user's feed.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579175981539319808/iXtPRKoN_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Sep 28 03:20:54 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579175981539319808/iXtPRKoN_normal.jpg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2788407869, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1188, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2788407869/1426921285", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16818499", "following": false, "friends_count": 2009, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joelarson.com", "url": "http://t.co/gfpsnJYe1P", "expanded_url": "http://joelarson.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/168814328/5150403912_5cabfeb630.jpg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1417, "location": "San Luis Obispo, CA", "screen_name": "oeon", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 95, "name": "joe larson", "profile_use_background_image": true, "description": "mapping/GIS, wildland fire, OpenStreetMap, affinity for Brasil.", "url": "http://t.co/gfpsnJYe1P", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1283181650/bruce-701814_normal.png", "profile_background_color": "022330", "created_at": "Fri Oct 17 02:14:47 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1283181650/bruce-701814_normal.png", "favourites_count": 2261, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/168814328/5150403912_5cabfeb630.jpg", "default_profile_image": false, "id": 16818499, "blocked_by": false, "profile_background_tile": true, "statuses_count": 7243, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16818499/1403928617", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3245485961", "following": false, "friends_count": 1247, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 169, "location": "", "screen_name": "DJGaetaniWx", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 8, "name": "DJ Gaetani", "profile_use_background_image": true, "description": "Lyndon State College-Atmospheric Science Major", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677729383667400705/8Or5P-Ef_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun May 10 22:22:08 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677729383667400705/8Or5P-Ef_normal.jpg", "favourites_count": 132, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3245485961, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5215, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3245485961/1431296642", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "3948479302", "following": false, "friends_count": 304, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685629324611944448/xHb7pDqh.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "642D8B", "geo_enabled": false, "followers_count": 126, "location": "Hertfordshire", "screen_name": "NadWGab", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Nadine Gabriel", "profile_use_background_image": true, "description": "Geology undergrad with a wide variety of interests, esp. science, museums & music \\m/. Lover of rocks, minerals & geological landscapes.\n'Still waters run deep'", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654275681505906688/_E58e_qu_normal.jpg", "profile_background_color": "642D8B", "created_at": "Tue Oct 13 17:35:32 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654275681505906688/_E58e_qu_normal.jpg", "favourites_count": 512, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685629324611944448/xHb7pDqh.jpg", "default_profile_image": false, "id": 3948479302, "blocked_by": false, "profile_background_tile": true, "statuses_count": 778, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3948479302/1448212965", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3785129235", "following": false, "friends_count": 383, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "253055", "geo_enabled": false, "followers_count": 86, "location": "", "screen_name": "adrielbeaver", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "adriel", "profile_use_background_image": true, "description": "I make game art, write stories and paint my face when I'm bored.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674401637419585536/5OI_Ebev_normal.png", "profile_background_color": "022330", "created_at": "Sat Sep 26 19:47:42 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674401637419585536/5OI_Ebev_normal.png", "favourites_count": 2566, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "id": 3785129235, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1362, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3785129235/1449624990", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "8292812", "following": false, "friends_count": 1703, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "alexm.co", "url": "https://t.co/MgVyEarMiD", "expanded_url": "http://alexm.co", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000165199016/Yxvo2XII.png", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 912, "location": "London, probably.", "screen_name": "thealexmoyler", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 53, "name": "Alex Moyler", "profile_use_background_image": true, "description": "\u201cDo you have a job or is designing it?\u201d Brevity is the soul of wit. Creative-type. (Full-stack Designer + a bit of development). Drums. Christian. Likes Coffee.", "url": "https://t.co/MgVyEarMiD", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669182940069371904/VAKSWYAq_normal.jpg", "profile_background_color": "EDF6FF", "created_at": "Sun Aug 19 22:13:20 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669182940069371904/VAKSWYAq_normal.jpg", "favourites_count": 1955, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000165199016/Yxvo2XII.png", "default_profile_image": false, "id": 8292812, "blocked_by": false, "profile_background_tile": false, "statuses_count": 18665, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8292812/1442936379", "is_translator": false}, {"time_zone": "Singapore", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 28800, "id_str": "91123715", "following": false, "friends_count": 332, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000161212580/uCM6Jytw.jpeg", "notifications": false, "profile_sidebar_fill_color": "718CF7", "profile_link_color": "CD4FFF", "geo_enabled": false, "followers_count": 459, "location": "MNL, PH", "screen_name": "reignbautistaa", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Ulan", "profile_use_background_image": true, "description": "Amazed by God's love \u2764\ufe0f | ZCKS '08 | MakSci '12 | BS Stat - UPD", "url": null, "profile_text_color": "050505", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551030160342786048/6nVTm5ei_normal.jpeg", "profile_background_color": "F0C5E7", "created_at": "Thu Nov 19 15:20:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551030160342786048/6nVTm5ei_normal.jpeg", "favourites_count": 5037, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000161212580/uCM6Jytw.jpeg", "default_profile_image": false, "id": 91123715, "blocked_by": false, "profile_background_tile": true, "statuses_count": 13513, "profile_banner_url": "https://pbs.twimg.com/profile_banners/91123715/1409499331", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "2599147129", "following": false, "friends_count": 227, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "16A600", "geo_enabled": false, "followers_count": 186, "location": "Norman, OK", "screen_name": "plustssn", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Tim Supinie", "profile_use_background_image": true, "description": "Weather, Computer, Math, and Music nut. Husband to @HSkywatcher. Ph.D. student at the University of Oklahoma.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/484201367079120896/rofmfUyP_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jul 02 04:47:01 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/484201367079120896/rofmfUyP_normal.jpeg", "favourites_count": 440, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2599147129, "blocked_by": false, "profile_background_tile": false, "statuses_count": 917, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2599147129/1447199343", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "114810131", "following": false, "friends_count": 330, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/lukemoellman", "url": "https://t.co/01uaOczpr0", "expanded_url": "http://instagram.com/lukemoellman", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 637, "location": "Brooklyn/Miami", "screen_name": "lukemoellman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 22, "name": "Luke Moellman", "profile_use_background_image": true, "description": "Musician/human. @greatgoodfineok", "url": "https://t.co/01uaOczpr0", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/514430348022009857/fuRJXUHq_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Feb 16 17:43:23 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/514430348022009857/fuRJXUHq_normal.jpeg", "favourites_count": 669, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 114810131, "blocked_by": false, "profile_background_tile": false, "statuses_count": 580, "profile_banner_url": "https://pbs.twimg.com/profile_banners/114810131/1440552542", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "164640266", "following": false, "friends_count": 610, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 201, "location": "West Lafayette, IN", "screen_name": "wxward", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Chris Ward", "profile_use_background_image": true, "description": "Boilermaker and weather enthusiast, I'm a Purdue alum with a major in Atmospheric Science so expect tweets on Purdue and Indiana weather.", "url": null, "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3624552161/a2491ca124fd3741e43367d82be055ef_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Fri Jul 09 11:03:56 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3624552161/a2491ca124fd3741e43367d82be055ef_normal.jpeg", "favourites_count": 851, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "default_profile_image": false, "id": 164640266, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7259, "profile_banner_url": "https://pbs.twimg.com/profile_banners/164640266/1348540589", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "15984333", "profile_image_url": "http://pbs.twimg.com/profile_images/274509242/me_for_twitter_normal.JPG", "friends_count": 1331, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Aug 25 17:32:42 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1285, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/274509242/me_for_twitter_normal.JPG", "favourites_count": 188, "listed_count": 2, "geo_enabled": false, "follow_request_sent": false, "followers_count": 164, "following": false, "default_profile_image": false, "id": 15984333, "blocked_by": false, "name": "brownonthebeach", "location": "\u00dcT: 33.99709,-118.455505", "screen_name": "brownonthebeach", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2302127191", "following": false, "friends_count": 481, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 164, "location": "", "screen_name": "boygobong", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "boygobong", "profile_use_background_image": true, "description": "Temporary sojourner on the tumbleweed racetracks of the Intermountain West.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/614682281383342080/EywuYv-L_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jan 20 22:42:59 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/614682281383342080/EywuYv-L_normal.png", "favourites_count": 433, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2302127191, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3246, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2302127191/1446979194", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2394746816", "following": false, "friends_count": 554, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445620541932572672/E6RvSrkK.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "12FAAD", "geo_enabled": true, "followers_count": 152, "location": "Tokyo, Japan", "screen_name": "Vurado_Bokoda", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "ROLZUP / Jelly-hip", "profile_use_background_image": true, "description": "high commissioner of u-Star Polymers, holding company of Vurado Bokoda and various other enterprisms/ aka one tentacle of Tentacles of Miracles; Ourang Outang.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/529193058433134592/mmwCmJj__normal.jpeg", "profile_background_color": "E65F17", "created_at": "Mon Mar 17 16:49:14 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/529193058433134592/mmwCmJj__normal.jpeg", "favourites_count": 924, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445620541932572672/E6RvSrkK.jpeg", "default_profile_image": false, "id": 2394746816, "blocked_by": false, "profile_background_tile": true, "statuses_count": 797, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2394746816/1414855058", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17627296", "following": false, "friends_count": 387, "entities": {"description": {"urls": [{"display_url": "bit.ly/ctv-pgp-key", "url": "https://t.co/SJXP4DmVhy", "expanded_url": "http://bit.ly/ctv-pgp-key", "indices": [44, 67]}]}, "url": {"urls": [{"display_url": "toronto.ctvnews.ca", "url": "https://t.co/1e56YgwOGl", "expanded_url": "http://toronto.ctvnews.ca", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/386505556/twitter_toronto_bg.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 2065, "location": "Toronto, Ontario, Canada", "screen_name": "iancaldwellCTV", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 75, "name": "Ian Caldwell", "profile_use_background_image": true, "description": "Managing Editor CTV News Toronto | PGP Key: https://t.co/SJXP4DmVhy | PGP Fingerprint=ED95 8E74 2568 EF70 6689 9034 4962 80A5 851C 9A6E", "url": "https://t.co/1e56YgwOGl", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477033050883104768/Jzda7Qxc_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Tue Nov 25 18:45:24 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477033050883104768/Jzda7Qxc_normal.jpeg", "favourites_count": 37, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/386505556/twitter_toronto_bg.jpg", "default_profile_image": false, "id": 17627296, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7092, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17627296/1448082122", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "203739230", "following": false, "friends_count": 851, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164075917/Maya3.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 720, "location": "Washington DC", "screen_name": "FatherSandman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "M.V.", "profile_use_background_image": true, "description": "Business, politics, science, and technology | Only he who attempts the absurd is capable of achieving the impossible (Miguel de Unamuno)", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/541840496608702464/4n7BmIw__normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Oct 17 00:55:39 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/541840496608702464/4n7BmIw__normal.jpeg", "favourites_count": 902, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164075917/Maya3.jpg", "default_profile_image": false, "id": 203739230, "blocked_by": false, "profile_background_tile": true, "statuses_count": 3802, "profile_banner_url": "https://pbs.twimg.com/profile_banners/203739230/1405052641", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4401423261", "following": false, "friends_count": 403, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 148, "location": "", "screen_name": "dharma_phoenix", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "\u30b8\u30a7\u30f3", "profile_use_background_image": true, "description": "building bridges from bones", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683025336456491008/LqNczDk7_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 07 05:16:40 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683025336456491008/LqNczDk7_normal.jpg", "favourites_count": 1073, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4401423261, "blocked_by": false, "profile_background_tile": false, "statuses_count": 384, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4401423261/1451680905", "is_translator": false}, {"time_zone": "Kathmandu", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 20700, "id_str": "332046484", "following": false, "friends_count": 826, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 2917, "location": "Earth ", "screen_name": "ghimirerx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "\u0918\u093f\u092e\u093f\u0930\u0947 \u090b\u0937\u093f", "profile_use_background_image": true, "description": "I am fully depressed human .", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685427310535651328/yrG3VHaW_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Sat Jul 09 04:01:46 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685427310535651328/yrG3VHaW_normal.jpg", "favourites_count": 48622, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 332046484, "blocked_by": false, "profile_background_tile": true, "statuses_count": 39099, "profile_banner_url": "https://pbs.twimg.com/profile_banners/332046484/1452253580", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "13053492", "following": false, "friends_count": 3342, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fkukso.tumblr.com", "url": "https://t.co/F6iE0ucycl", "expanded_url": "http://fkukso.tumblr.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572483631906447360/IJgAPPd4.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 6924, "location": "Cambridge, MA", "screen_name": "fedkukso", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 246, "name": "Federico Kukso", "profile_use_background_image": true, "description": "Science journalist from Argentina | @KSJatMIT fellow | MIT + Harvard | fedkukso@gmail.com | Spa/Eng", "url": "https://t.co/F6iE0ucycl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/651410182388367360/0M_2iC1e_normal.jpg", "profile_background_color": "137277", "created_at": "Mon Feb 04 16:05:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651410182388367360/0M_2iC1e_normal.jpg", "favourites_count": 14784, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572483631906447360/IJgAPPd4.jpeg", "default_profile_image": false, "id": 13053492, "blocked_by": false, "profile_background_tile": true, "statuses_count": 54865, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13053492/1431098641", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17148670", "following": false, "friends_count": 557, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "panicbomber.com", "url": "http://t.co/S4YuHpy2yp", "expanded_url": "http://panicbomber.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/545569810/Twitter-BG.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "5F53A5", "geo_enabled": true, "followers_count": 982, "location": "Brooklyn, NY", "screen_name": "PanicBomber", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "Panic Bomber", "profile_use_background_image": true, "description": "Richard Haig. Musician. See also: @kurtznbomber, @slapn_tickle", "url": "http://t.co/S4YuHpy2yp", "profile_text_color": "555555", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/444363954572111872/t0AMPbTG_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Nov 04 04:20:58 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FAE605", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/444363954572111872/t0AMPbTG_normal.jpeg", "favourites_count": 1248, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/545569810/Twitter-BG.jpg", "default_profile_image": false, "id": 17148670, "blocked_by": false, "profile_background_tile": true, "statuses_count": 9016, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17148670/1398205235", "is_translator": false}, {"time_zone": null, "profile_use_background_image": false, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2686770356", "profile_image_url": "http://pbs.twimg.com/profile_images/661217199755923456/6ILN1Vom_normal.jpg", "friends_count": 747, "entities": {"description": {"urls": []}}, "profile_background_color": "000000", "created_at": "Mon Jul 28 06:08:30 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/661217199755923456/6ILN1Vom_normal.jpg", "favourites_count": 23, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 77, "following": false, "default_profile_image": false, "id": 2686770356, "blocked_by": false, "name": "dinesh", "location": "Karur, Tamil Nadu", "screen_name": "sdineshsundhar", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": true, "is_translator": false, "default_profile": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1730892806", "following": false, "friends_count": 196, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 26, "location": "", "screen_name": "is300nation", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 0, "name": "\u2606\u5f61\u2605\u5f61\u2606", "profile_use_background_image": true, "description": "hunter hinkley. I tell myself I own a racecar. retweeting relevant or irrelevant interests of mine, 24/7/365", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/615296134592860161/93DpT_SH_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Sep 05 05:17:10 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/615296134592860161/93DpT_SH_normal.jpg", "favourites_count": 4003, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1730892806, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2183, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1730892806/1452306207", "is_translator": false}, {"time_zone": "Quito", "profile_use_background_image": true, "description": "Stochastically relaxing", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "16945822", "profile_image_url": "http://pbs.twimg.com/profile_images/282212946/zombie_portrait_zoom_normal.jpg", "friends_count": 158, "entities": {"description": {"urls": []}}, "profile_background_color": "EBC3E1", "created_at": "Fri Oct 24 08:25:37 +0000 2008", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/21963534/haggar_pile_driving_a_shark_twitter.jpg", "profile_text_color": "0C3E53", "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "FF0000", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/21963534/haggar_pile_driving_a_shark_twitter.jpg", "statuses_count": 587, "profile_sidebar_border_color": "F2E195", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/282212946/zombie_portrait_zoom_normal.jpg", "favourites_count": 93, "listed_count": 2, "geo_enabled": false, "follow_request_sent": false, "followers_count": 51, "following": false, "default_profile_image": false, "id": 16945822, "blocked_by": false, "name": "SuperElectric", "location": "", "screen_name": "SuperElectric", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "House,Dub,Tech\r\nhttp://t.co/15uGGB0cbv", "url": "http://t.co/87HsXR2S0j", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "176829250", "profile_image_url": "http://pbs.twimg.com/profile_images/3589455402/a694f00d92f898d14c8c8a8555b355c6_normal.jpeg", "friends_count": 220, "entities": {"description": {"urls": [{"display_url": "myspace.com/549690290", "url": "http://t.co/15uGGB0cbv", "expanded_url": "http://www.myspace.com/549690290", "indices": [16, 38]}]}, "url": {"urls": [{"display_url": "ransomdrop.blogspot.com", "url": "http://t.co/87HsXR2S0j", "expanded_url": "http://ransomdrop.blogspot.com", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Tue Aug 10 15:10:30 +0000 2010", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/140356524/tumblr_l1lbtuEjGo1qz5gsco1_500.jpg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/140356524/tumblr_l1lbtuEjGo1qz5gsco1_500.jpg", "statuses_count": 102, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3589455402/a694f00d92f898d14c8c8a8555b355c6_normal.jpeg", "favourites_count": 1, "listed_count": 0, "geo_enabled": true, "follow_request_sent": false, "followers_count": 32, "following": false, "default_profile_image": false, "id": 176829250, "blocked_by": false, "name": "DK", "location": "Sydney Australia", "screen_name": "dkline_rdr", "profile_background_tile": true, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "306805040", "following": false, "friends_count": 862, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/632546075/jn8pji8iuc9a4qf2dn4b.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 143, "location": "", "screen_name": "ealpv", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "\u018eL", "profile_use_background_image": true, "description": "*Incomprehensible muttering* I do a lot of things but I don't like talking about them. Necesito el mar porque me ense\u00f1a\n\u2014 Pablo Neruda", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/587289471814467584/8KVKlSJb_normal.jpg", "profile_background_color": "000000", "created_at": "Sat May 28 13:41:30 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/587289471814467584/8KVKlSJb_normal.jpg", "favourites_count": 846, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/632546075/jn8pji8iuc9a4qf2dn4b.jpeg", "default_profile_image": false, "id": 306805040, "blocked_by": false, "profile_background_tile": false, "statuses_count": 228, "profile_banner_url": "https://pbs.twimg.com/profile_banners/306805040/1428855899", "is_translator": false}, {"time_zone": "Melbourne", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "194096921", "following": false, "friends_count": 1136, "entities": {"description": {"urls": [{"display_url": "nightmare.website", "url": "http://t.co/p5t2rZJajQ", "expanded_url": "http://nightmare.website", "indices": [127, 149]}]}, "url": {"urls": [{"display_url": "memoriata.com", "url": "http://t.co/JiCyW1dzUZ", "expanded_url": "http://memoriata.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "67777A", "geo_enabled": false, "followers_count": 461, "location": "Melbourne, Australia", "screen_name": "dbaker_h", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 34, "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d 1/2 hiatus", "profile_use_background_image": false, "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http://t.co/p5t2rZJajQ", "url": "http://t.co/JiCyW1dzUZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "profile_background_color": "131516", "created_at": "Thu Sep 23 12:34:18 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "ru", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "favourites_count": 9114, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 194096921, "blocked_by": false, "profile_background_tile": true, "statuses_count": 12474, "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "276080035", "following": false, "friends_count": 773, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397294880/yup.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 492, "location": "Cicero, IN", "screen_name": "Croupaloop", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Logan Croup", "profile_use_background_image": true, "description": "I'm a Meteorology graduate of Ball State University. I hope to do utilize my background in Meteorology for a living one day. #INwx \u263c \u2608 \u2602 \u2601", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/591613152552443904/ebU3kJXD_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Apr 02 16:15:10 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/591613152552443904/ebU3kJXD_normal.jpg", "favourites_count": 7191, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397294880/yup.jpg", "default_profile_image": false, "id": 276080035, "blocked_by": false, "profile_background_tile": true, "statuses_count": 9888, "profile_banner_url": "https://pbs.twimg.com/profile_banners/276080035/1398362197", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "AMS Fellow, former NYer & FSU fac; Interim Science Dean & Coord. of Watershed Science Technician program at Lane Community College. Proud Oregon St grad", "url": "https://t.co/nAkOuaMtAX", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "901037160", "profile_image_url": "http://pbs.twimg.com/profile_images/2765556534/36e5a30cae4ca4f6387bc71d6582053f_normal.jpeg", "friends_count": 1677, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wefollow.com/paul_ruscher", "url": "https://t.co/nAkOuaMtAX", "expanded_url": "http://wefollow.com/paul_ruscher", "indices": [0, 23]}]}}, "profile_background_color": "C0DEED", "created_at": "Wed Oct 24 02:44:50 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3752, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2765556534/36e5a30cae4ca4f6387bc71d6582053f_normal.jpeg", "favourites_count": 3128, "listed_count": 25, "geo_enabled": true, "follow_request_sent": false, "followers_count": 664, "following": false, "default_profile_image": false, "id": 901037160, "blocked_by": false, "name": "Paul Ruscher", "location": "Eugene, OR", "screen_name": "paul_ruscher", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": false, "description": "Junior meteorology major at St. Cloud State. Caffeine consumption expert. Interests include sarcasm, good beer, and tropical meteorology.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "21063476", "profile_image_url": "http://pbs.twimg.com/profile_images/666471436924514304/1Y89hcfR_normal.jpg", "friends_count": 635, "entities": {"description": {"urls": []}}, "profile_background_color": "000000", "created_at": "Tue Feb 17 04:20:28 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4106, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/666471436924514304/1Y89hcfR_normal.jpg", "favourites_count": 646, "listed_count": 21, "geo_enabled": true, "follow_request_sent": false, "followers_count": 291, "following": false, "default_profile_image": false, "id": 21063476, "blocked_by": false, "name": "Cody Yeary", "location": "Saint Cloud, Minnesota", "screen_name": "codyyeary", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "379399925", "following": false, "friends_count": 271, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 67, "location": "", "screen_name": "bradfromraleigh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Brad Thompson", "profile_use_background_image": true, "description": "Music nerd.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/599713896421699584/ElrGP7KZ_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Sep 24 22:09:23 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/599713896421699584/ElrGP7KZ_normal.jpg", "favourites_count": 10, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 379399925, "blocked_by": false, "profile_background_tile": false, "statuses_count": 53, "profile_banner_url": "https://pbs.twimg.com/profile_banners/379399925/1427109003", "is_translator": false}, {"time_zone": "Hawaii", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "74644340", "profile_image_url": "http://pbs.twimg.com/profile_images/477488342729121794/FMT5I6ev_normal.jpeg", "friends_count": 3323, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Wed Sep 16 03:43:19 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 153, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/477488342729121794/FMT5I6ev_normal.jpeg", "favourites_count": 4, "listed_count": 1, "geo_enabled": true, "follow_request_sent": false, "followers_count": 336, "following": false, "default_profile_image": false, "id": 74644340, "blocked_by": false, "name": "Amarnath", "location": "Singapore", "screen_name": "Amarnath1985", "profile_background_tile": false, "notifications": false, "utc_offset": -36000, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "128280111", "following": false, "friends_count": 1959, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "humormonger.com", "url": "http://t.co/7EZxelmdGv", "expanded_url": "http://www.humormonger.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 230, "location": "42\u00b0 27' 40.9N 88\u00b0 11' 02.5W", "screen_name": "crashalido", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Craig Landon", "profile_use_background_image": true, "description": "Show me the magic...", "url": "http://t.co/7EZxelmdGv", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3166851628/b7cf3f33f79db56f6ac6513a722dd172_normal.jpeg", "profile_background_color": "022330", "created_at": "Wed Mar 31 17:17:26 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3166851628/b7cf3f33f79db56f6ac6513a722dd172_normal.jpeg", "favourites_count": 16662, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "id": 128280111, "blocked_by": false, "profile_background_tile": false, "statuses_count": 614, "profile_banner_url": "https://pbs.twimg.com/profile_banners/128280111/1434311610", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4463844018", "profile_image_url": "http://pbs.twimg.com/profile_images/673118627151806464/cY85fK4m_normal.jpg", "friends_count": 94, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sat Dec 05 12:32:24 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/673118627151806464/cY85fK4m_normal.jpg", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 6, "following": false, "default_profile_image": false, "id": 4463844018, "blocked_by": false, "name": "helpline@chennai", "location": "", "screen_name": "helpline_flood", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "21465693", "following": false, "friends_count": 1822, "entities": {"description": {"urls": [{"display_url": "AthensGaWeather.com", "url": "https://t.co/cqeGNdOQYB", "expanded_url": "http://AthensGaWeather.com", "indices": [125, 148]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/603393714631745536/uAk-Db8j.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "A0000B", "geo_enabled": true, "followers_count": 387, "location": "Kennesaw, Georgia", "screen_name": "chris624wx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Chris Davis", "profile_use_background_image": false, "description": "UGA Graduate '13. B.S. Geography/Atmospheric Sciences. Studying GIS at Kennesaw State. UGA and ATL sports. Meteorologist for https://t.co/cqeGNdOQYB.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/665367285390004224/d1eLEDLM_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Feb 21 05:22:49 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665367285390004224/d1eLEDLM_normal.jpg", "favourites_count": 4939, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/603393714631745536/uAk-Db8j.jpg", "default_profile_image": false, "id": 21465693, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7535, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21465693/1449358975", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "I've never won a fight.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "23774785", "profile_image_url": "http://pbs.twimg.com/profile_images/429707642718543873/xF3Omp-n_normal.jpeg", "friends_count": 390, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Wed Mar 11 15:07:11 +0000 2009", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457010991/x34ccbcb24eb9ae052d1e73349b31594.jpg", "profile_text_color": "0084B4", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "333333", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457010991/x34ccbcb24eb9ae052d1e73349b31594.jpg", "statuses_count": 871, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/429707642718543873/xF3Omp-n_normal.jpeg", "favourites_count": 9, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 54, "following": false, "default_profile_image": false, "id": 23774785, "blocked_by": false, "name": "jeremy peers", "location": "", "screen_name": "jeremypeers", "profile_background_tile": true, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4453665134", "profile_image_url": "http://pbs.twimg.com/profile_images/672782822122250240/6_4eJ5u3_normal.jpg", "friends_count": 229, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Dec 04 14:17:01 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/672782822122250240/6_4eJ5u3_normal.jpg", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 55, "following": false, "default_profile_image": false, "id": 4453665134, "blocked_by": false, "name": "\u0b9a\u0bc7\u0ba4\u0bc1\u0bb0\u0bbe\u0bae\u0ba9\u0bcd \u0b86\u0ba4\u0bcd\u0bae\u0bb2\u0bbf\u0b99\u0bcd\u0b95\u0bae", "location": "", "screen_name": "SAtmalinga", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "80689975", "following": false, "friends_count": 515, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "CC3366", "geo_enabled": true, "followers_count": 261, "location": "always on the move", "screen_name": "melboban", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Melissa Boban", "profile_use_background_image": true, "description": "Hejsan! Chicago \u2192 ILLINI \u2192 Sweden \u2192 STL \u2192 Seattle \u2192 back in #STL. @TheOfficeNBC lover. See you @Barre3", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/525478843063087104/b9zv08t6_normal.jpeg", "profile_background_color": "D9DEE0", "created_at": "Wed Oct 07 21:51:51 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/525478843063087104/b9zv08t6_normal.jpeg", "favourites_count": 637, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "default_profile_image": false, "id": 80689975, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4999, "profile_banner_url": "https://pbs.twimg.com/profile_banners/80689975/1429405160", "is_translator": false}, {"time_zone": "America/Chicago", "profile_use_background_image": true, "description": "Consultant", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "1886748272", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000515171175/6163badf9082cf86b3b7504859e3e4b5_normal.png", "friends_count": 1144, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Sep 20 14:36:06 +0000 2013", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 95, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000515171175/6163badf9082cf86b3b7504859e3e4b5_normal.png", "favourites_count": 3251, "listed_count": 1, "geo_enabled": true, "follow_request_sent": false, "followers_count": 86, "following": false, "default_profile_image": false, "id": 1886748272, "blocked_by": false, "name": "James Ford", "location": "Oakville MO", "screen_name": "CellJff", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Atlantic Time (Canada)", "profile_use_background_image": true, "description": "Most men are fools. -Bias of Priene", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "392856267", "profile_image_url": "http://pbs.twimg.com/profile_images/1603845766/Untitled_normal.png", "friends_count": 1300, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Oct 17 17:29:22 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4000, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1603845766/Untitled_normal.png", "favourites_count": 5821, "listed_count": 8, "geo_enabled": true, "follow_request_sent": false, "followers_count": 230, "following": false, "default_profile_image": false, "id": 392856267, "blocked_by": false, "name": "Parmenides", "location": "", "screen_name": "Hermodorus", "profile_background_tile": false, "notifications": false, "utc_offset": -14400, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3368767094", "following": false, "friends_count": 603, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "m.facebook.com/elamaran.mugun\u2026", "url": "https://t.co/CNtWjzuSif", "expanded_url": "https://m.facebook.com/elamaran.mugunthan/about?nocollections=1&refid=17&ref=bookmarks#education", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 56, "location": "", "screen_name": "yogeshkumar871", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "\u0b87\u0bb0\u0bbe.\u0baf\u0bcb\u0b95\u0bc7\u0bb7\u0bcd", "profile_use_background_image": true, "description": "\u0ba8\u0bbf\u0ba9\u0bc8\u0baa\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bb0\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b95\u0bbf\u0bb1\u0bc1\u0b95\u0bcd\u0b95 \u0b87\u0b99\u0bcd\u0b95\u0bc7 \u0b85\u0bb5\u0bcd\u0bb5\u0bb3\u0bb5\u0bc7 !!", "url": "https://t.co/CNtWjzuSif", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/672202344935743489/4Y67Dmod_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Aug 28 08:48:49 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672202344935743489/4Y67Dmod_normal.jpg", "favourites_count": 4, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3368767094, "blocked_by": false, "profile_background_tile": false, "statuses_count": 51, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3368767094/1449080843", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1125887570", "following": false, "friends_count": 694, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "WeatherForecastSolutions.com", "url": "http://t.co/JkZGP7CflP", "expanded_url": "http://www.WeatherForecastSolutions.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 126, "location": "", "screen_name": "WxForecastSolns", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "WxForecastSolns", "profile_use_background_image": true, "description": "Your Source For Specialized Forecasts", "url": "http://t.co/JkZGP7CflP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655929981525229569/NCVRptd-_normal.png", "profile_background_color": "131516", "created_at": "Sun Jan 27 18:47:49 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655929981525229569/NCVRptd-_normal.png", "favourites_count": 189, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 1125887570, "blocked_by": false, "profile_background_tile": true, "statuses_count": 483, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1125887570/1404246066", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "272214659", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "friends_count": 370, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sat Mar 26 02:11:56 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "favourites_count": 22, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 11, "following": false, "default_profile_image": true, "id": 272214659, "blocked_by": false, "name": "Lauren Burcea", "location": "", "screen_name": "BlueEyedLo", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4422918679", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "friends_count": 2, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Dec 01 18:00:42 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en-gb", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 0, "following": false, "default_profile_image": true, "id": 4422918679, "blocked_by": false, "name": "Rakesh Ananthagiri", "location": "", "screen_name": "RakeshAnanthag1", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1191110737", "following": false, "friends_count": 4121, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 856, "location": "", "screen_name": "HandyIvonne", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Handy Ivonne", "profile_use_background_image": true, "description": "No vivo culpando a nadie, es labor del Tribunal. Informo sin emitir juicios de valor, ni condenas.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663826751185883136/4hfqcieD_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Feb 17 20:42:45 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663826751185883136/4hfqcieD_normal.jpg", "favourites_count": 1142, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1191110737, "blocked_by": false, "profile_background_tile": false, "statuses_count": 16051, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1191110737/1451758949", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4418338394", "following": false, "friends_count": 737, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 196, "location": "", "screen_name": "RainsChennai", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Chennai Rains Live", "profile_use_background_image": true, "description": "ChennaiRains | Latest Traffic updates | Rain news | Rain photography", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671615672049274880/puFv_xdm_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 01 07:54:31 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671615672049274880/puFv_xdm_normal.jpg", "favourites_count": 167, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4418338394, "blocked_by": false, "profile_background_tile": false, "statuses_count": 437, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4418338394/1448960653", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "11745072", "following": false, "friends_count": 802, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "graham-freeman.info", "url": "https://t.co/weCrUKWPHu", "expanded_url": "https://graham-freeman.info", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "0021FF", "geo_enabled": false, "followers_count": 302, "location": "Berkeley, California", "screen_name": "gjmf", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Graham Freeman", "profile_use_background_image": true, "description": "Personal: I believe in humanity (and e-bikes) Professional: Providing excellent IT to do-gooders via @get_nerdy.", "url": "https://t.co/weCrUKWPHu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1101117841/gf-backyard-med_normal.jpg", "profile_background_color": "709397", "created_at": "Wed Jan 02 07:34:40 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1101117841/gf-backyard-med_normal.jpg", "favourites_count": 673, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "id": 11745072, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3586, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11745072/1413958199", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3305403882", "profile_image_url": "http://pbs.twimg.com/profile_images/628313752266407936/q4VXb5aM_normal.jpg", "friends_count": 51, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Aug 03 20:45:22 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 16, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/628313752266407936/q4VXb5aM_normal.jpg", "favourites_count": 5, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 26, "following": false, "default_profile_image": false, "id": 3305403882, "blocked_by": false, "name": "Ben Cote", "location": "", "screen_name": "therealBenCote", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1582483380", "following": false, "friends_count": 252, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "13CFF0", "geo_enabled": false, "followers_count": 190, "location": "heading towards earth", "screen_name": "PlutoBees", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Pluto Bees", "profile_use_background_image": true, "description": "We are the Collective Beeonian Empire of Pluto. Fear us.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667875227376840704/sC92cfwC_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jul 10 07:47:08 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667875227376840704/sC92cfwC_normal.jpg", "favourites_count": 2710, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1582483380, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6285, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1582483380/1448068723", "is_translator": false}, {"time_zone": "America/Denver", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "17348471", "following": false, "friends_count": 1430, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "impossiblegeology.net", "url": "http://t.co/ZQKPzKTbsQ", "expanded_url": "http://impossiblegeology.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/709980532/1583f97a3a7d8b31e56da58798e90745.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "8809F0", "geo_enabled": true, "followers_count": 1473, "location": "Flagstaff, USA", "screen_name": "drjerque", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 118, "name": "Kyle House", "profile_use_background_image": true, "description": "Geologic mapper and researcher of late Cenozoic desert fluvial and lacustrine systems.", "url": "http://t.co/ZQKPzKTbsQ", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631483820982734849/EdE7iOn4_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Nov 12 20:53:33 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631483820982734849/EdE7iOn4_normal.jpg", "favourites_count": 611, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/709980532/1583f97a3a7d8b31e56da58798e90745.jpeg", "default_profile_image": false, "id": 17348471, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4288, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17348471/1413945851", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "profile_use_background_image": false, "description": "Happy.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "287492581", "profile_image_url": "http://pbs.twimg.com/profile_images/685232739633659904/rTLPuI0f_normal.jpg", "friends_count": 507, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Apr 25 03:11:40 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 36697, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/685232739633659904/rTLPuI0f_normal.jpg", "favourites_count": 3220, "listed_count": 14, "geo_enabled": true, "follow_request_sent": false, "followers_count": 558, "following": false, "default_profile_image": false, "id": 287492581, "blocked_by": false, "name": "FN-6969", "location": "Denver, CO", "screen_name": "NiftyMinaj", "profile_background_tile": false, "notifications": false, "utc_offset": -25200, "muting": false, "protected": false, "has_extended_profile": true, "is_translator": false, "default_profile": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "1368499430", "following": false, "friends_count": 549, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wunderground.com/blog/sullivanw\u2026", "url": "http://t.co/ADDfVXV9dB", "expanded_url": "http://www.wunderground.com/blog/sullivanweather/show.html", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/571582549751652352/UV7VLXYJ.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "E04F0B", "geo_enabled": true, "followers_count": 390, "location": "Westtown, NY", "screen_name": "RealSullivanWx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 25, "name": "Tom Woods", "profile_use_background_image": true, "description": "Disseminator of weather, extreme or mundane. Prognostocator of Northeast US weather. Local legend.", "url": "http://t.co/ADDfVXV9dB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/432362706713071616/RZ0bfE1I_normal.jpeg", "profile_background_color": "7136A8", "created_at": "Sun Apr 21 02:40:01 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432362706713071616/RZ0bfE1I_normal.jpeg", "favourites_count": 1884, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/571582549751652352/UV7VLXYJ.jpeg", "default_profile_image": false, "id": 1368499430, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5056, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1368499430/1437540110", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "89205511", "following": false, "friends_count": 153, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ggor.de", "url": "https://t.co/QncXAff6Lw", "expanded_url": "http://ggor.de", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000024534539/c9a22aeaac8a80b2fa329e342e6d06ed.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "4A913C", "geo_enabled": false, "followers_count": 207, "location": "Berlin", "screen_name": "greg00r", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 7, "name": "Gregor Weichbrodt", "profile_use_background_image": false, "description": "Code & concept @0x0a_li", "url": "https://t.co/QncXAff6Lw", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683468108351279104/VPYWHMQs_normal.jpg", "profile_background_color": "4A913C", "created_at": "Wed Nov 11 15:14:10 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683468108351279104/VPYWHMQs_normal.jpg", "favourites_count": 543, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000024534539/c9a22aeaac8a80b2fa329e342e6d06ed.jpeg", "default_profile_image": false, "id": 89205511, "blocked_by": false, "profile_background_tile": true, "statuses_count": 102, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89205511/1444490275", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "529148230", "following": false, "friends_count": 438, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hdevalence.ca", "url": "https://t.co/XnDQKAOpR8", "expanded_url": "http://www.hdevalence.ca", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 345, "location": "1.6m above sea level", "screen_name": "hdevalence", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "GF(\u00af\\_(\u30c4)_/\u00af)", "profile_use_background_image": true, "description": "PhD student at TU/e, interested in pqcrypto, privacy, freedom, mathematics, & the number 24", "url": "https://t.co/XnDQKAOpR8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/634941626805301248/IykdcFae_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Mar 19 06:12:13 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634941626805301248/IykdcFae_normal.jpg", "favourites_count": 5302, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 529148230, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4440, "profile_banner_url": "https://pbs.twimg.com/profile_banners/529148230/1405021573", "is_translator": false}, {"time_zone": "London", "profile_use_background_image": true, "description": "Security Engineer. \nA RT or link is not an endorsement. \nViews are not related to my employer.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "171290875", "profile_image_url": "http://pbs.twimg.com/profile_images/590994307340959744/h5op8_1a_normal.png", "friends_count": 853, "entities": {"description": {"urls": []}}, "profile_background_color": "131516", "created_at": "Tue Jul 27 00:57:14 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3780, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/590994307340959744/h5op8_1a_normal.png", "favourites_count": 725, "listed_count": 15, "geo_enabled": false, "follow_request_sent": false, "followers_count": 379, "following": false, "default_profile_image": false, "id": 171290875, "blocked_by": false, "name": "Human Actuator", "location": "127.0.0.1", "screen_name": "HumanActuator", "profile_background_tile": true, "notifications": false, "utc_offset": 0, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "2787955681", "following": false, "friends_count": 1280, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 314, "location": "Paris, Ile-de-France", "screen_name": "EKMeteo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Etienne Kapikian", "profile_use_background_image": false, "description": "Pr\u00e9visionniste @meteofrance", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/635800902113325056/2mU4zry2_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Sep 03 12:50:59 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635800902113325056/2mU4zry2_normal.jpg", "favourites_count": 896, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2787955681, "blocked_by": false, "profile_background_tile": false, "statuses_count": 416, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2787955681/1409832424", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "Tweetin' since '76", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2400504589", "profile_image_url": "http://pbs.twimg.com/profile_images/681954296384991232/8Bxeybdb_normal.jpg", "friends_count": 897, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Thu Mar 20 21:53:06 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 18610, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/681954296384991232/8Bxeybdb_normal.jpg", "favourites_count": 3178, "listed_count": 27, "geo_enabled": false, "follow_request_sent": false, "followers_count": 396, "following": false, "default_profile_image": false, "id": 2400504589, "blocked_by": false, "name": "Lee", "location": "", "screen_name": "leisure3000", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Sydney", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "458113065", "following": false, "friends_count": 2026, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1044, "location": "Tamworth, NSW, 2340, Aus", "screen_name": "2340weather", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Tamworth Weather", "profile_use_background_image": true, "description": "Weather Watcher in the Tamworth region.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1740801984/Tamworth-Weather_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jan 08 05:54:27 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1740801984/Tamworth-Weather_normal.jpg", "favourites_count": 630, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 458113065, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7411, "profile_banner_url": "https://pbs.twimg.com/profile_banners/458113065/1376012987", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2699327418", "following": false, "friends_count": 389, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brianjenquist.wordpress.com", "url": "http://t.co/nDNwPkQPgB", "expanded_url": "http://brianjenquist.wordpress.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1258, "location": "UofArizona . SantaFeInstitute", "screen_name": "bjenquist", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 51, "name": "Brian J. Enquist", "profile_use_background_image": true, "description": "Global Ecology, Ecophys, Macroecology, Scaling. Proud parent, Sonoran telemarker. Dreams of tropical trees, charismatic megaflora, equations, and botanical data", "url": "http://t.co/nDNwPkQPgB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495349657023700992/mb1dwT-4_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Aug 01 23:14:21 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495349657023700992/mb1dwT-4_normal.jpeg", "favourites_count": 2463, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2699327418, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2757, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699327418/1406999005", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2783948456", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "friends_count": 999, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Sep 01 11:21:23 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "favourites_count": 3, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 49, "following": false, "default_profile_image": true, "id": 2783948456, "blocked_by": false, "name": "Balasubramani", "location": "", "screen_name": "bmani_77", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "160971973", "following": false, "friends_count": 1057, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Lakers.com", "url": "https://t.co/x18wAeX8Og", "expanded_url": "http://Lakers.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 380, "location": "Philippines", "screen_name": "angelreality", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "\u24d0\u24dd\u24d6\u24d4\u24db", "profile_use_background_image": true, "description": "Gadget-Obsessed, Tech-Lover, Geek, Nerd, Techie. iOS, Android User. Follow me for #TechNews #SocialMedia #PoliticalViews #DisneyFrozen #Laker4Life", "url": "https://t.co/x18wAeX8Og", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000766994701/f13cfcea050466d38f6ccb47c6620a1a_normal.jpeg", "profile_background_color": "131516", "created_at": "Tue Jun 29 16:45:54 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000766994701/f13cfcea050466d38f6ccb47c6620a1a_normal.jpeg", "favourites_count": 1460, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 160971973, "blocked_by": false, "profile_background_tile": true, "statuses_count": 14031, "profile_banner_url": "https://pbs.twimg.com/profile_banners/160971973/1384975627", "is_translator": false}, {"time_zone": "Chennai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "122634479", "following": false, "friends_count": 798, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/82776489/ar_rahman09.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 19, "location": "INDIA", "screen_name": "omprakashit117", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 0, "name": "omprakash", "profile_use_background_image": true, "description": "I am a student. I am eager to search new knoweldge and technology used in current world", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/750008387/DIN1_normal.JPG", "profile_background_color": "C0DEED", "created_at": "Sat Mar 13 10:51:35 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/750008387/DIN1_normal.JPG", "favourites_count": 94, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/82776489/ar_rahman09.jpg", "default_profile_image": false, "id": 122634479, "blocked_by": false, "profile_background_tile": false, "statuses_count": 60, "profile_banner_url": "https://pbs.twimg.com/profile_banners/122634479/1400160672", "is_translator": false}, {"time_zone": "London", "profile_use_background_image": false, "description": "Defn: Tavern consisting of a building with a bar and public rooms. These are random names chosen from 110539 words @niggydotcom", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3337081857", "profile_image_url": "http://pbs.twimg.com/profile_images/618483281009504256/pPRHTTgG_normal.jpg", "friends_count": 4224, "entities": {"description": {"urls": []}}, "profile_background_color": "000000", "created_at": "Sat Jun 20 15:50:01 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "CF5300", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5966, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/618483281009504256/pPRHTTgG_normal.jpg", "favourites_count": 41, "listed_count": 4, "geo_enabled": false, "follow_request_sent": false, "followers_count": 795, "following": false, "default_profile_image": false, "id": 3337081857, "blocked_by": false, "name": "Pub Names", "location": "", "screen_name": "pubnames", "profile_background_tile": false, "notifications": false, "utc_offset": 0, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Hawaii", "profile_use_background_image": true, "description": "I #stand4life! Meteorologist in Hawaii since 2000 & going @UHManoa for M.S. SFX explosives tech for CAF--I like big booms!", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "141057092", "profile_image_url": "http://pbs.twimg.com/profile_images/1743058941/eod_normal.jpg", "friends_count": 1335, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri May 07 02:35:55 +0000 2010", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99142340/midland08b.jpg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99142340/midland08b.jpg", "statuses_count": 29375, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1743058941/eod_normal.jpg", "favourites_count": 2983, "listed_count": 136, "geo_enabled": true, "follow_request_sent": false, "followers_count": 1621, "following": false, "default_profile_image": false, "id": 141057092, "blocked_by": false, "name": "Robert Ballard", "location": "Honolulu, HI", "screen_name": "firebomb56", "profile_background_tile": true, "notifications": false, "utc_offset": -36000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "458956673", "profile_image_url": "http://pbs.twimg.com/profile_images/506968366574092288/MRDqbVQi_normal.jpeg", "friends_count": 402, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Jan 09 03:59:14 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 89, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/506968366574092288/MRDqbVQi_normal.jpeg", "favourites_count": 37, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 51, "following": false, "default_profile_image": false, "id": 458956673, "blocked_by": false, "name": "Adam J", "location": "", "screen_name": "adamatic23", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "606117040", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "friends_count": 165, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Jun 12 07:33:29 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 4, "following": false, "default_profile_image": true, "id": 606117040, "blocked_by": false, "name": "PAPPY", "location": "", "screen_name": "H0LYT0LED0", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "148615685", "following": false, "friends_count": 573, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115403460/79db2255376b86a76c67636558add8a0.jpeg", "notifications": false, "profile_sidebar_fill_color": "FCFFE5", "profile_link_color": "406B6F", "geo_enabled": false, "followers_count": 71, "location": "Chicagoland", "screen_name": "ShaneMEagan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Shane Eagan", "profile_use_background_image": false, "description": "Weather forecaster | Meteorology grad student NIU | Valpo grad | Red Wings and ND aficionado", "url": null, "profile_text_color": "4A4949", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/509820954654953472/hz7n8fsV_normal.jpeg", "profile_background_color": "ABB8C2", "created_at": "Thu May 27 04:35:25 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/509820954654953472/hz7n8fsV_normal.jpeg", "favourites_count": 41, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115403460/79db2255376b86a76c67636558add8a0.jpeg", "default_profile_image": false, "id": 148615685, "blocked_by": false, "profile_background_tile": false, "statuses_count": 138, "profile_banner_url": "https://pbs.twimg.com/profile_banners/148615685/1448434645", "is_translator": false}, {"time_zone": "Asia/Calcutta", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "1721259391", "following": false, "friends_count": 1417, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072477131/4ad230ff9ba7c9ed60e4dc796bbb2941.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 98, "location": "13.067858,80.243947", "screen_name": "prakash49024821", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "p r a k a s h", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/583242267017621504/XA5J0EM-_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Sep 02 05:01:40 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/583242267017621504/XA5J0EM-_normal.jpg", "favourites_count": 5, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072477131/4ad230ff9ba7c9ed60e4dc796bbb2941.jpeg", "default_profile_image": false, "id": 1721259391, "blocked_by": false, "profile_background_tile": true, "statuses_count": 112, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1721259391/1427890049", "is_translator": false}, {"time_zone": "International Date Line West", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -39600, "id_str": "538171425", "following": false, "friends_count": 322, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/580917392345157633/ZsuJn14-.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "993333", "geo_enabled": false, "followers_count": 277, "location": "it's a long way down", "screen_name": "errinuu", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 0, "name": "Patris Everdeen", "profile_use_background_image": true, "description": "fettered", "url": null, "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684687004299214848/7ev_eVhd_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Mar 27 11:35:46 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684687004299214848/7ev_eVhd_normal.jpg", "favourites_count": 2614, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/580917392345157633/ZsuJn14-.jpg", "default_profile_image": false, "id": 538171425, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6460, "profile_banner_url": "https://pbs.twimg.com/profile_banners/538171425/1448701580", "is_translator": false}, {"time_zone": "Beijing", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 28800, "id_str": "1564994707", "following": false, "friends_count": 204, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/Sonic_The_Edge\u2026", "url": "https://t.co/0DcGQ0d6jV", "expanded_url": "https://twitter.com/Sonic_The_Edgehog", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/620864149107576832/6Ouugc1Y.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 74, "location": "Republic of the Philippines", "screen_name": "Edwarven_Sniper", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 0, "name": "Eduard De Guzman", "profile_use_background_image": true, "description": "Math Major kuno (Inutusang bumili ng suka na ngayon ay naiiyak sa hirap ng Math.)", "url": "https://t.co/0DcGQ0d6jV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/612053970077417472/E1JbN0-m_normal.jpg", "profile_background_color": "4A913C", "created_at": "Wed Jul 03 05:51:25 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/612053970077417472/E1JbN0-m_normal.jpg", "favourites_count": 1673, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/620864149107576832/6Ouugc1Y.png", "default_profile_image": false, "id": 1564994707, "blocked_by": false, "profile_background_tile": true, "statuses_count": 3138, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564994707/1390008636", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2705762744", "following": false, "friends_count": 486, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 143, "location": "Missouri", "screen_name": "lunaitesrock", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 20, "name": "Karl", "profile_use_background_image": true, "description": "Interests include planetary geology, meteorite hunting and collecting, hiking, camping. Formerly a research chemist... Now I kill poison ivy.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/497858100905664512/LJ3FLzwT_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Aug 04 05:32:23 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/497858100905664512/LJ3FLzwT_normal.jpeg", "favourites_count": 2667, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2705762744, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5286, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705762744/1408035154", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "122111712", "following": false, "friends_count": 226, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/82553561/switz_view.JPG", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "9500B3", "geo_enabled": false, "followers_count": 73, "location": "", "screen_name": "bellabear7", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Jo Wade", "profile_use_background_image": true, "description": "I retweet what I find interesting, not what I agree with. All views my own.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/519411989869654016/2dk59ai9_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 11 16:40:55 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/519411989869654016/2dk59ai9_normal.jpeg", "favourites_count": 389, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/82553561/switz_view.JPG", "default_profile_image": false, "id": 122111712, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2173, "profile_banner_url": "https://pbs.twimg.com/profile_banners/122111712/1408370535", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "720794066", "following": false, "friends_count": 808, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jordanowx.com", "url": "https://t.co/Oqno7oJyRp", "expanded_url": "http://jordanowx.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 589, "location": "Oklahoma", "screen_name": "JordanoWX", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 35, "name": "Jordan Overton", "profile_use_background_image": true, "description": "Former Weather Intern/Producer for @Newson6 and @ktulnews. @NWCNorman Tour Guide. @OUNightly Weather. @OUDaily Thunder Writer. Opinions are my own.", "url": "https://t.co/Oqno7oJyRp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663540879072886784/IvmvhwJ6_normal.jpg", "profile_background_color": "022330", "created_at": "Fri Jul 27 20:12:11 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663540879072886784/IvmvhwJ6_normal.jpg", "favourites_count": 1628, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "id": 720794066, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6135, "profile_banner_url": "https://pbs.twimg.com/profile_banners/720794066/1438271265", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "40845892", "following": false, "friends_count": 2197, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22470571/bground.gif", "notifications": false, "profile_sidebar_fill_color": "EAEDD5", "profile_link_color": "FA7E3C", "geo_enabled": false, "followers_count": 770, "location": "", "screen_name": "_vecs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 22, "name": "vecs ", "profile_use_background_image": true, "description": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043c\u0438\u043a\u0440\u043e\u0431\u043b\u043e\u0433. \u041d\u0430\u0443\u043a\u0430 \u0438 \u0442\u0435\u0445\u043d\u0438\u043a\u0430, \u0438\u0441\u0442\u043e\u0440\u0438\u044f, \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u0430, \u043a\u043e\u0441\u043c\u043e\u0441, \u0433\u0435\u043e\u043b\u043e\u0433\u0438\u044f, \u043f\u0430\u043b\u0435\u043e\u043d\u0430\u0443\u043a\u0438, \u043b\u0438\u043d\u0433\u0432\u0438\u0441\u0442\u0438\u043a\u0430, IT, \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u0440\u0430\u0434\u0438\u043e\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u0438\u043a\u0430, \u0412\u041f\u041a, \u0420\u043e\u0441\u0441\u0438\u044f, \u0410\u0437\u0438\u044f, \u0444\u043e\u0442\u043e", "url": null, "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/472091542484549633/Zq-BpJTw_normal.png", "profile_background_color": "FCFCF4", "created_at": "Mon May 18 09:50:09 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "ACADA1", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/472091542484549633/Zq-BpJTw_normal.png", "favourites_count": 9294, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22470571/bground.gif", "default_profile_image": false, "id": 40845892, "blocked_by": false, "profile_background_tile": true, "statuses_count": 5288, "profile_banner_url": "https://pbs.twimg.com/profile_banners/40845892/1401389448", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "213950250", "following": false, "friends_count": 1401, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/170116886/Miss_State_logo.gif", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 620, "location": "Flowood", "screen_name": "BulldogWX_0610", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "David Cox", "profile_use_background_image": true, "description": "NWS Jackson meteorologist. Got an amazing wife! MSU sports fanatic. Go Dawgs! MSU Alum (B.S. '10, M.S. '12). Love severe wx/hurricanes. All views are my own.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655850522277212160/peMZV3Tb_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Nov 10 05:16:55 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655850522277212160/peMZV3Tb_normal.jpg", "favourites_count": 14767, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/170116886/Miss_State_logo.gif", "default_profile_image": false, "id": 213950250, "blocked_by": false, "profile_background_tile": true, "statuses_count": 10289, "profile_banner_url": "https://pbs.twimg.com/profile_banners/213950250/1445201925", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "11392632", "following": false, "friends_count": 2149, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/sgtgary", "url": "https://t.co/LB5LuXnk2g", "expanded_url": "http://about.me/sgtgary", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9D0020", "geo_enabled": true, "followers_count": 1717, "location": "Papillion, Nebraska, USA", "screen_name": "sgtgary", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Gary \u039a0\u03b2\u2c62\u0259 \u2614\ufe0f", "profile_use_background_image": false, "description": "Science & Weather geek \u2022 Cybersecurity \u2022 \u2708\ufe0fUSAF vet \u2022 ex aviation forecaster \u2022 557WW \u2022 Waze \u2022 INTJ #GoPackGo #InfoSec \u2b50\ufe0f", "url": "https://t.co/LB5LuXnk2g", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680245909217775616/X1sOO_Q1_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Dec 21 02:44:45 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680245909217775616/X1sOO_Q1_normal.jpg", "favourites_count": 140, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", "default_profile_image": false, "id": 11392632, "blocked_by": false, "profile_background_tile": false, "statuses_count": 35461, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11392632/1446542435", "is_translator": false}, {"time_zone": "Berlin", "profile_use_background_image": true, "description": "Science Leipzig", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "276570860", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "friends_count": 363, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Apr 03 16:46:58 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "de", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "favourites_count": 170, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 17, "following": false, "default_profile_image": true, "id": 276570860, "blocked_by": false, "name": "E. Brigger", "location": "", "screen_name": "eugene33xx", "profile_background_tile": false, "notifications": false, "utc_offset": 3600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Singapore", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 28800, "id_str": "14563783", "following": false, "friends_count": 887, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/tutusandpointes", "url": "http://t.co/UtNJqB6Su6", "expanded_url": "http://instagram.com/tutusandpointes", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/642380381/x3516e3c298a8ebe33c26cd65fff99b0.jpeg", "notifications": false, "profile_sidebar_fill_color": "85130F", "profile_link_color": "C90E69", "geo_enabled": true, "followers_count": 780, "location": "Catipunan", "screen_name": "tutusandpointes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Christine Saavedra", "profile_use_background_image": true, "description": "Saved by grace. Permanent resident of the Rizal Library. Former dancer. Caffeine junkie. Night owl. Blue eagle. | snapchat: kurisitini", "url": "http://t.co/UtNJqB6Su6", "profile_text_color": "F40A09", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683596819901710336/V2y5-A0G_normal.png", "profile_background_color": "F7B75E", "created_at": "Mon Apr 28 01:20:27 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683596819901710336/V2y5-A0G_normal.png", "favourites_count": 19849, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/642380381/x3516e3c298a8ebe33c26cd65fff99b0.jpeg", "default_profile_image": false, "id": 14563783, "blocked_by": false, "profile_background_tile": true, "statuses_count": 43946, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14563783/1367062983", "is_translator": false}, {"time_zone": "Krasnoyarsk", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 25200, "id_str": "2583649117", "following": false, "friends_count": 589, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "2C1F3C", "geo_enabled": true, "followers_count": 235, "location": "Quezon City", "screen_name": "masterJCboy", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 2, "name": "enchong hindee", "profile_use_background_image": false, "description": "How do you become someone that great, that brave, that selfless?\nI guess you can only try.\n-Hiccup, HTTYD2", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683830799720812544/peYQpaxm_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Jun 23 08:35:43 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683830799720812544/peYQpaxm_normal.jpg", "favourites_count": 6233, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2583649117, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9066, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2583649117/1429024977", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2860150381", "following": false, "friends_count": 133, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pixiv.me/aviphilia", "url": "https://t.co/GpjnzCwdNa", "expanded_url": "http://pixiv.me/aviphilia", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 86, "location": "\u5b87\u5b99\u5916\u751f\u547d", "screen_name": "aviphilia", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "\u304b\u3054\u306e\u9ce5\u72c2", "profile_use_background_image": true, "description": "(\u73fe\u5728\u4f4e\u6d6e\u4e0a)\u5929\u6587\u30fb\u5730\u5b66\u77e5\u8b58\u30bc\u30ed\u3002 \u5730\u7403\u30ea\u30e7\u30ca\u3068\u3044\u3046\u30de\u30a4\u30ca\u30fc\u55dc\u597d\u306e\u5984\u57f7\u3092\u767a\u4fe1\u3059\u308b\u305f\u3081\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3042\u308b\u3002 \u5730\u7403\u306a\u3069\u306e\u5929\u4f53\u306b\u5bfe\u3057\u3066\u9177\u3044\u8a71\u3084R18\u306a\u8a71\u3070\u304b\u308a\u3057\u3066\u3044\u308b\u306e\u3067\u6ce8\u610f", "url": "https://t.co/GpjnzCwdNa", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/586025068385275906/zlPMFl4l_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Oct 17 11:27:45 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "ja", "profile_image_url_https": "https://pbs.twimg.com/profile_images/586025068385275906/zlPMFl4l_normal.jpg", "favourites_count": 4453, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2860150381, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6025, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2860150381/1429085019", "is_translator": false}, {"time_zone": "UTC", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "4010618585", "following": false, "friends_count": 4, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "russ.garrett.co.uk/bots/dscovr_ep\u2026", "url": "https://t.co/LhctEpMH4C", "expanded_url": "https://russ.garrett.co.uk/bots/dscovr_epic.html", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1513, "location": "Earth-Sun L1", "screen_name": "dscovr_epic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 64, "name": "DSCOVR:EPIC", "profile_use_background_image": false, "description": "Pictures from the Earth Polychromatic Camera on the DSCOVR spacecraft. (An unofficial bot by @russss)", "url": "https://t.co/LhctEpMH4C", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/656868470106267648/mc8SJQZc_normal.png", "profile_background_color": "000000", "created_at": "Wed Oct 21 16:20:49 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656868470106267648/mc8SJQZc_normal.png", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4010618585, "blocked_by": false, "profile_background_tile": false, "statuses_count": 631, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4010618585/1445444630", "is_translator": false}, {"time_zone": "Berlin", "profile_use_background_image": true, "description": "Hacker", "url": "http://t.co/wfhb6wxy2Y", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "224266304", "profile_image_url": "http://pbs.twimg.com/profile_images/1228169354/gravatar200_normal.jpg", "friends_count": 354, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "perldition.org", "url": "http://t.co/wfhb6wxy2Y", "expanded_url": "http://perldition.org/", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Wed Dec 08 15:35:47 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 843, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1228169354/gravatar200_normal.jpg", "favourites_count": 568, "listed_count": 55, "geo_enabled": true, "follow_request_sent": false, "followers_count": 618, "following": false, "default_profile_image": false, "id": 224266304, "blocked_by": false, "name": "Florian Ragwitz", "location": "PDX", "screen_name": "perldition", "profile_background_tile": false, "notifications": false, "utc_offset": 3600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "London", "profile_use_background_image": true, "description": "a dissident technologist. a great big harmless thing", "url": "http://t.co/t31MsTE1wo", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "6110942", "profile_image_url": "http://pbs.twimg.com/profile_images/18302762/monkey_normal.jpg", "friends_count": 379, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "amran.org.uk", "url": "http://t.co/t31MsTE1wo", "expanded_url": "http://amran.org.uk", "indices": [0, 22]}]}}, "profile_background_color": "1A1B1F", "created_at": "Thu May 17 15:17:13 +0000 2007", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_text_color": "666666", "profile_sidebar_fill_color": "252429", "profile_link_color": "4A913C", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 3053, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/18302762/monkey_normal.jpg", "favourites_count": 560, "listed_count": 6, "geo_enabled": false, "follow_request_sent": false, "followers_count": 261, "following": false, "default_profile_image": false, "id": 6110942, "blocked_by": false, "name": "amran \u0639\u0645\u0631\u0627\u0646", "location": "nl uk", "screen_name": "amx109", "profile_background_tile": false, "notifications": false, "utc_offset": 0, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14949027", "following": false, "friends_count": 2091, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/88283587/Tape_Gradient.JPG", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 663, "location": "Arlington, VA", "screen_name": "rseymour", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 34, "name": "Rich Seymour", "profile_use_background_image": true, "description": "Staying on top of things when I should be getting to the bottom of things. Generic Person @EndgameInc", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/445265058541883392/NsGr8pCu_normal.jpeg", "profile_background_color": "000000", "created_at": "Thu May 29 22:27:34 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/445265058541883392/NsGr8pCu_normal.jpeg", "favourites_count": 9033, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/88283587/Tape_Gradient.JPG", "default_profile_image": false, "id": 14949027, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4492, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14949027/1399349066", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "591360459", "following": false, "friends_count": 1438, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/lbs_ebooks", "url": "http://t.co/L0n9SbXlFa", "expanded_url": "http://twitter.com/lbs_ebooks", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 426, "location": "", "screen_name": "LetsBeSapid", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 20, "name": "Let's Be Sapid", "profile_use_background_image": true, "description": "Good enough probably. Talk to my ebooks bot, @lbs_ebooks. Also talk to my ebooks bot's ebooks bot, @lbsebooksebooks", "url": "http://t.co/L0n9SbXlFa", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2472927875/p246b2ui8rzqfdto8dq6_normal.png", "profile_background_color": "022330", "created_at": "Sat May 26 21:47:24 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2472927875/p246b2ui8rzqfdto8dq6_normal.png", "favourites_count": 38391, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "id": 591360459, "blocked_by": false, "profile_background_tile": false, "statuses_count": 38532, "profile_banner_url": "https://pbs.twimg.com/profile_banners/591360459/1437446142", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "168912732", "following": false, "friends_count": 2945, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/wx_fish", "url": "https://t.co/nYUoNgFtK1", "expanded_url": "http://www.instagram.com/wx_fish", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000032341821/c34eb864df33736572467f06defb8eb4.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "236CA3", "geo_enabled": true, "followers_count": 29532, "location": "Standing in the rain/snow/wind", "screen_name": "ericfisher", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1154, "name": "Eric Fisher", "profile_use_background_image": true, "description": "Emmy Award winning Chief Meteorologist @CBSBoston w/reports for @CBSNews. Beer snob, runner, mediocre golfer. Deep greens & blues are the colors I choose.", "url": "https://t.co/nYUoNgFtK1", "profile_text_color": "003399", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/501545509215952896/2KDNBEQ4_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Wed Jul 21 02:35:23 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/501545509215952896/2KDNBEQ4_normal.jpeg", "favourites_count": 4345, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000032341821/c34eb864df33736572467f06defb8eb4.jpeg", "default_profile_image": false, "id": 168912732, "blocked_by": false, "profile_background_tile": true, "statuses_count": 61142, "profile_banner_url": "https://pbs.twimg.com/profile_banners/168912732/1435413654", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "15455096", "following": false, "friends_count": 873, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "scarlettinfinity.deviantart.com", "url": "http://t.co/SxvaMh9Nlo", "expanded_url": "http://scarlettinfinity.deviantart.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 307, "location": "UK", "screen_name": "almostarobot", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Hayley Young", "profile_use_background_image": true, "description": "Interested in everything, science, nature, photography, politics...", "url": "http://t.co/SxvaMh9Nlo", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1883849158/may_2011_082_700px_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Jul 16 14:53:05 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1883849158/may_2011_082_700px_normal.jpg", "favourites_count": 3071, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 15455096, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7266, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15455096/1404913947", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Weather geek!", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3327128172", "profile_image_url": "http://pbs.twimg.com/profile_images/657360086050848769/C5QVrWVZ_normal.jpg", "friends_count": 127, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Aug 23 20:40:58 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 404, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/657360086050848769/C5QVrWVZ_normal.jpg", "favourites_count": 683, "listed_count": 6, "geo_enabled": false, "follow_request_sent": false, "followers_count": 30, "following": false, "default_profile_image": false, "id": 3327128172, "blocked_by": false, "name": "Matthew", "location": "", "screen_name": "WeatherHacker", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18109928", "following": false, "friends_count": 1475, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chrisdean.org", "url": "http://t.co/NhadxAzOQq", "expanded_url": "http://chrisdean.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624754964414361601/CWSwhHmP.jpg", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "238500", "geo_enabled": false, "followers_count": 389, "location": "Indianapolis, Indiana, USA", "screen_name": "DeanChris", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 12, "name": "Chris Dean", "profile_use_background_image": true, "description": "Christian, husband, father x 7, evangelist, pastor & church planter @GreatMercyIndy in downtown Indy & Plainfield. Grateful to be used by the Lord!", "url": "http://t.co/NhadxAzOQq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648892274697334784/XLN0VQzD_normal.png", "profile_background_color": "FFF04D", "created_at": "Sun Dec 14 02:54:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648892274697334784/XLN0VQzD_normal.png", "favourites_count": 388, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624754964414361601/CWSwhHmP.jpg", "default_profile_image": false, "id": 18109928, "blocked_by": false, "profile_background_tile": true, "statuses_count": 2214, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18109928/1402123612", "is_translator": false}, {"time_zone": "Bogota", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2391639956", "following": false, "friends_count": 437, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "imarpe.gob.pe/enso/Inicio/Te\u2026", "url": "http://t.co/VN17BZeJ9d", "expanded_url": "http://www.imarpe.gob.pe/enso/Inicio/Tema1.htm", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 605, "location": "Monitoreo y Analisis ENSO", "screen_name": "Mario___Ramirez", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Mario Ramirez", "profile_use_background_image": true, "description": "IMARPE\nLab Sensores Remotos y SIG", "url": "http://t.co/VN17BZeJ9d", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/444962203028840448/V2vB_DHU_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Mar 15 21:26:33 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/444962203028840448/V2vB_DHU_normal.jpeg", "favourites_count": 2305, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2391639956, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6016, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2391639956/1399302782", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "277405536", "following": false, "friends_count": 476, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flickr.com/photos/celestm\u2026", "url": "https://t.co/YN2PjER7xd", "expanded_url": "http://www.flickr.com/photos/celestman/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 529, "location": "Lisburn, Northern Ireland", "screen_name": "Celestman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 22, "name": "Ralph Smyth", "profile_use_background_image": true, "description": "Husband, dad and brother.Amateur astronomer and astroimager - just wish our weather was better! Analytical chemist in another life. Hello Twitter world!", "url": "https://t.co/YN2PjER7xd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664709983519510530/9uE7tZ8J_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 05 09:14:19 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664709983519510530/9uE7tZ8J_normal.jpg", "favourites_count": 4398, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 277405536, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5108, "profile_banner_url": "https://pbs.twimg.com/profile_banners/277405536/1452217211", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "41290294", "following": false, "friends_count": 111, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "asimplerandomview.blogspot.com", "url": "http://t.co/saMEpHSYYQ", "expanded_url": "http://asimplerandomview.blogspot.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 109, "location": "", "screen_name": "thatothertom2", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "tom f", "profile_use_background_image": true, "description": "", "url": "http://t.co/saMEpHSYYQ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683050707042238465/cW3olyVw_normal.jpg", "profile_background_color": "000000", "created_at": "Wed May 20 03:49:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683050707042238465/cW3olyVw_normal.jpg", "favourites_count": 34, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 41290294, "blocked_by": false, "profile_background_tile": true, "statuses_count": 6793, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41290294/1449795082", "is_translator": false}, {"time_zone": "Santiago", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "3112987229", "following": false, "friends_count": 2394, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/580617071886647296/B56fJQkK.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "860808", "geo_enabled": true, "followers_count": 814, "location": "Chile", "screen_name": "GeaEnMovimiento", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "RecursosGea", "profile_use_background_image": true, "description": "Comparto info vital sobre amenazas naturales y antr\u00f3picas. Sin fronteras para el conocimiento y la cooperaci\u00f3n. #Recop2016 / #VnChillan", "url": null, "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/668960898313289728/Mr1yPxVM_normal.png", "profile_background_color": "860808", "created_at": "Wed Mar 25 04:18:30 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668960898313289728/Mr1yPxVM_normal.png", "favourites_count": 1660, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/580617071886647296/B56fJQkK.png", "default_profile_image": false, "id": 3112987229, "blocked_by": false, "profile_background_tile": true, "statuses_count": 14682, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3112987229/1450632293", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "247877648", "following": false, "friends_count": 321, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/205264047/puffy.jpeg", "notifications": false, "profile_sidebar_fill_color": "CCC0CB", "profile_link_color": "462D57", "geo_enabled": false, "followers_count": 223, "location": "adrift in the cosmos ", "screen_name": "hjertebraaten", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "Jennifer", "profile_use_background_image": true, "description": "Choose your own adventure.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668530312448610304/Ut3EuMh8_normal.png", "profile_background_color": "403340", "created_at": "Sat Feb 05 19:24:31 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "63A327", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668530312448610304/Ut3EuMh8_normal.png", "favourites_count": 3058, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/205264047/puffy.jpeg", "default_profile_image": false, "id": 247877648, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9086, "profile_banner_url": "https://pbs.twimg.com/profile_banners/247877648/1420338841", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "55621506", "following": false, "friends_count": 1676, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DAA520", "geo_enabled": true, "followers_count": 801, "location": "\u00dcT: 43.06752,-89.413976", "screen_name": "gstalnaker", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 93, "name": "Guy Stalnaker", "profile_use_background_image": false, "description": "Midwest IT guy @ large public university. Out. Liberal. Composer. Baseball Rules. Partner of a Jack Russell terrier, my best friend. Life's good. RT != Endorsed", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/419693052488208386/2PLuieI9_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Jul 10 17:51:09 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/419693052488208386/2PLuieI9_normal.jpeg", "favourites_count": 8218, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "id": 55621506, "blocked_by": false, "profile_background_tile": false, "statuses_count": 61554, "profile_banner_url": "https://pbs.twimg.com/profile_banners/55621506/1445655686", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2506667875", "following": false, "friends_count": 704, "entities": {"description": {"urls": [{"display_url": "yesthisislouis.com", "url": "https://t.co/sxkHB8RzBR", "expanded_url": "http://yesthisislouis.com", "indices": [51, 74]}]}, "url": {"urls": [{"display_url": "mountainmoonvolcano.com", "url": "https://t.co/XvTQbyYdz0", "expanded_url": "http://mountainmoonvolcano.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": false, "followers_count": 106, "location": "New Zealand", "screen_name": "Luilueloo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Louis New Graham", "profile_use_background_image": false, "description": "Cartoonist, Kiwi designer, Programming enthusiast. https://t.co/sxkHB8RzBR", "url": "https://t.co/XvTQbyYdz0", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/577275007375572992/eCt-1V6E_normal.png", "profile_background_color": "000000", "created_at": "Mon May 19 07:05:25 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/577275007375572992/eCt-1V6E_normal.png", "favourites_count": 1281, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2506667875, "blocked_by": false, "profile_background_tile": false, "statuses_count": 696, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2506667875/1426467864", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17586062", "following": false, "friends_count": 2578, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Instagram.com/swvlswvl", "url": "https://t.co/0TM7uFRsiI", "expanded_url": "http://Instagram.com/swvlswvl", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/452503740709236736/w78rAxbT.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "2369F5", "geo_enabled": true, "followers_count": 6221, "location": "NYC", "screen_name": "simonwilliam", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 205, "name": "Simon V-L", "profile_use_background_image": true, "description": "Simon Vozick-Levinson // Senior Editor at Rolling Stone // Opinions expressed here are solely my own, and are probably ill-advised", "url": "https://t.co/0TM7uFRsiI", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641297594665275392/vk7RrIyp_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Mon Nov 24 05:04:53 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641297594665275392/vk7RrIyp_normal.jpg", "favourites_count": 22457, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452503740709236736/w78rAxbT.jpeg", "default_profile_image": false, "id": 17586062, "blocked_by": false, "profile_background_tile": true, "statuses_count": 19350, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17586062/1441648578", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Mogul, First Rapper Ever To Write And Publish A Book at 19, Film Score, Composer, Producer,Director/Photo/Branding/Marketing/Historical Online Figure #BASED", "url": "https://t.co/zoy27sPkw9", "contributors_enabled": false, "is_translation_enabled": true, "id_str": "37836873", "profile_image_url": "http://pbs.twimg.com/profile_images/1248509273/39198_1571854573776_1157872547_31663366_5779158_n_normal.jpg", "friends_count": 1324956, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/lilbpack1", "url": "https://t.co/zoy27sPkw9", "expanded_url": "http://www.youtube.com/lilbpack1", "indices": [0, 23]}]}}, "profile_background_color": "9AE4E8", "created_at": "Tue May 05 02:41:57 +0000 2009", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/130048781/lilb.jpg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/130048781/lilb.jpg", "statuses_count": 148379, "profile_sidebar_border_color": "12FFA0", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1248509273/39198_1571854573776_1157872547_31663366_5779158_n_normal.jpg", "favourites_count": 97566, "listed_count": 5995, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1208962, "following": false, "default_profile_image": false, "id": 37836873, "blocked_by": false, "name": "Lil B THE BASEDGOD", "location": "United States", "screen_name": "LILBTHEBASEDGOD", "profile_background_tile": true, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2705140969", "following": false, "friends_count": 55, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cloudsao.com", "url": "http://t.co/4aL8Yi332e", "expanded_url": "http://www.cloudsao.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "333333", "geo_enabled": false, "followers_count": 67, "location": "New York City", "screen_name": "Clouds_AO", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Clouds AO", "profile_use_background_image": false, "description": "Architectural design firm", "url": "http://t.co/4aL8Yi332e", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/496073400717029377/azK0sGfC_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Aug 03 23:08:31 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/496073400717029377/azK0sGfC_normal.jpeg", "favourites_count": 113, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2705140969, "blocked_by": false, "profile_background_tile": false, "statuses_count": 131, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705140969/1407108154", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2905586254", "following": false, "friends_count": 676, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "00CCFF", "geo_enabled": false, "followers_count": 207, "location": "44\u00b038\u203252\u2033N 63\u00b034\u203217\u2033W", "screen_name": "ReidJustinReid", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Justin Reid", "profile_use_background_image": false, "description": "Father, stargazer, Simpsons aficionado, RASC member yelling at clouds", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682983061877846016/Y5srwYnp_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Dec 04 20:30:01 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682983061877846016/Y5srwYnp_normal.jpg", "favourites_count": 4759, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2905586254, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1399, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2905586254/1447518056", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "139846889", "following": false, "friends_count": 318, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "madeofoak.com", "url": "http://t.co/siqwmpcKnG", "expanded_url": "http://madeofoak.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2734, "location": "Durham, NC", "screen_name": "MADEOFOAK", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 56, "name": "Nicholas Sanborn", "profile_use_background_image": true, "description": "Musician from Wisconsin.", "url": "http://t.co/siqwmpcKnG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/636208356085075968/jf-nqzHU_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon May 03 21:24:49 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636208356085075968/jf-nqzHU_normal.jpg", "favourites_count": 1164, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 139846889, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4210, "profile_banner_url": "https://pbs.twimg.com/profile_banners/139846889/1440518867", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "41056561", "following": false, "friends_count": 508, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "skfleegel.com", "url": "http://t.co/4nLHZBOUgT", "expanded_url": "http://www.skfleegel.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 145, "location": "Marquette, MI", "screen_name": "fleegs79", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Steven Fleegel", "profile_use_background_image": true, "description": "Meteorologist with NWS Marquette. The opinions expressed here represent my own and not those of my employer.", "url": "http://t.co/4nLHZBOUgT", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000327286379/a11369df218087b804f4f2317fd47fea_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Tue May 19 04:42:42 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000327286379/a11369df218087b804f4f2317fd47fea_normal.jpeg", "favourites_count": 74, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 41056561, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3173, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41056561/1349566035", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3182410381", "following": false, "friends_count": 393, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 55, "location": "", "screen_name": "StalcupWx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Mark Stalcup", "profile_use_background_image": true, "description": "Senior at OU School of Meteorology.....lover of the outdoors, meteorology, aviation, astronomy, & learning all I can about the Earth. Tweets aren't endorsements", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648349956277821440/fwHIMYg0_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat May 02 03:41:14 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648349956277821440/fwHIMYg0_normal.jpg", "favourites_count": 46, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3182410381, "blocked_by": false, "profile_background_tile": false, "statuses_count": 202, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3182410381/1439686224", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6853512", "following": false, "friends_count": 525, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fakeisthenewreal.org", "url": "http://t.co/f0bQmbmzOl", "expanded_url": "http://fakeisthenewreal.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378868151/yr-lame-for-looking-at-the-source_just-kidding-i-love-you.jpg", "notifications": false, "profile_sidebar_fill_color": "CDCECB", "profile_link_color": "393C37", "geo_enabled": false, "followers_count": 1525, "location": "Gowanus supralittoral", "screen_name": "fitnr", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 68, "name": "Neil Freeman", "profile_use_background_image": true, "description": "vague but honest", "url": "http://t.co/f0bQmbmzOl", "profile_text_color": "808282", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631233557797560320/AhmwePZB_normal.jpg", "profile_background_color": "CFCBCF", "created_at": "Sat Jun 16 14:38:25 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631233557797560320/AhmwePZB_normal.jpg", "favourites_count": 3674, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378868151/yr-lame-for-looking-at-the-source_just-kidding-i-love-you.jpg", "default_profile_image": false, "id": 6853512, "blocked_by": false, "profile_background_tile": true, "statuses_count": 6605, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6853512/1402520873", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "139571192", "following": false, "friends_count": 206, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "superiorhurter.bandcamp.com", "url": "https://t.co/QgKbAsOXKm", "expanded_url": "http://superiorhurter.bandcamp.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445747348157652992/0ZyL_u8C.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "89C9FA", "geo_enabled": false, "followers_count": 920, "location": "r b y t", "screen_name": "s_afari_al", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "s.al", "profile_use_background_image": true, "description": "form of aquemini @yomilo", "url": "https://t.co/QgKbAsOXKm", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/640574816387510272/FjN5rwFb_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Mon May 03 01:41:59 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/640574816387510272/FjN5rwFb_normal.jpg", "favourites_count": 6549, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445747348157652992/0ZyL_u8C.jpeg", "default_profile_image": false, "id": 139571192, "blocked_by": false, "profile_background_tile": true, "statuses_count": 6595, "profile_banner_url": "https://pbs.twimg.com/profile_banners/139571192/1440909415", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15880126", "following": false, "friends_count": 327, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "anthropoceneacolyte.wordpress.com", "url": "https://t.co/byYpZBZmXy", "expanded_url": "https://anthropoceneacolyte.wordpress.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/716467183/fb58c9fe4e02170833eea5791998597e.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 135, "location": "Los Angeles, CA, USA", "screen_name": "stevexe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 22, "name": "Steve Pestana", "profile_use_background_image": true, "description": "geo/space science student\n- periodic contributor to @orbitalpodcast, @N_O_D_E_, @scifimethods", "url": "https://t.co/byYpZBZmXy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674318267645739012/APDgNXZE_normal.png", "profile_background_color": "000000", "created_at": "Sun Aug 17 06:24:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674318267645739012/APDgNXZE_normal.png", "favourites_count": 1920, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/716467183/fb58c9fe4e02170833eea5791998597e.jpeg", "default_profile_image": false, "id": 15880126, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3801, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15880126/1428362360", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4129078452", "following": false, "friends_count": 1499, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/channel/UC8LAt\u2026", "url": "https://t.co/28MBl9rV4H", "expanded_url": "https://www.youtube.com/channel/UC8LAtTGVLfYuvTmHO2FDiGw/feed", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 390, "location": "", "screen_name": "thewxjunkies", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "The Weather Junkies", "profile_use_background_image": true, "description": "Discussing the latest buzz in the weather enterprise every Wednesday. Hosted by @tylerjankoski & @weatherdak.", "url": "https://t.co/28MBl9rV4H", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669373015965179904/Q67wX_O3_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Nov 04 23:57:21 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669373015965179904/Q67wX_O3_normal.jpg", "favourites_count": 129, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4129078452, "blocked_by": false, "profile_background_tile": false, "statuses_count": 129, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4129078452/1446684941", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2569287804", "following": false, "friends_count": 255, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mattchernos.wordpress.com", "url": "http://t.co/0cugbRjXjD", "expanded_url": "http://mattchernos.wordpress.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "51613A", "geo_enabled": true, "followers_count": 84, "location": "Calgary, Alberta", "screen_name": "mchernos", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Matt Chernos", "profile_use_background_image": true, "description": "I like mountains, hydrology, science, weather, and hockey. I also enjoy silly internet comments. Other things too, probably.", "url": "http://t.co/0cugbRjXjD", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661617460664123392/cBX4LpNW_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jun 15 16:38:15 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661617460664123392/cBX4LpNW_normal.jpg", "favourites_count": 1051, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2569287804, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1729, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569287804/1446576984", "is_translator": false}, {"time_zone": "Rome", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "165379510", "following": false, "friends_count": 725, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "superinternet.cc", "url": "http://t.co/imctRm7Fox", "expanded_url": "http://superinternet.cc", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/454801493409816576/cB0YX0yM.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "FFCC00", "geo_enabled": false, "followers_count": 176, "location": "", "screen_name": "frescogusto", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "pietro parisi", "profile_use_background_image": true, "description": "", "url": "http://t.co/imctRm7Fox", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/605813185900249090/Q6o8zS4j_normal.png", "profile_background_color": "FFCC00", "created_at": "Sun Jul 11 11:48:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605813185900249090/Q6o8zS4j_normal.png", "favourites_count": 1057, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/454801493409816576/cB0YX0yM.png", "default_profile_image": false, "id": 165379510, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1315, "profile_banner_url": "https://pbs.twimg.com/profile_banners/165379510/1397268149", "is_translator": false}, {"time_zone": "Kathmandu", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 20700, "id_str": "495295826", "following": false, "friends_count": 619, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "josephmichaelshea.wordpress.com", "url": "http://t.co/KWmR9e4pQ1", "expanded_url": "http://www.josephmichaelshea.wordpress.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/438974413526929408/aXZKh6VA.png", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": true, "followers_count": 508, "location": "Kathmandu, Nepal", "screen_name": "JosephShea", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 34, "name": "Joseph Shea", "profile_use_background_image": true, "description": "Glacier hydrologist with ICIMOD (Kathmandu), musician, Dad, Canadian. I make graphs.", "url": "http://t.co/KWmR9e4pQ1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/532494289767395328/kxEv-hkA_normal.jpeg", "profile_background_color": "709397", "created_at": "Fri Feb 17 20:23:05 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/532494289767395328/kxEv-hkA_normal.jpeg", "favourites_count": 558, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/438974413526929408/aXZKh6VA.png", "default_profile_image": false, "id": 495295826, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1772, "profile_banner_url": "https://pbs.twimg.com/profile_banners/495295826/1438236675", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "I am, at the moment, a two-dimensional representation of a featureless white ovoid with a satin finish, otherwise in a blind panic about climate change.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "706529336", "profile_image_url": "http://pbs.twimg.com/profile_images/587581125117095937/76jzWnpX_normal.png", "friends_count": 1466, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Jul 20 05:47:49 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 20866, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/587581125117095937/76jzWnpX_normal.png", "favourites_count": 310, "listed_count": 66, "geo_enabled": true, "follow_request_sent": false, "followers_count": 647, "following": false, "default_profile_image": false, "id": 706529336, "blocked_by": false, "name": "Steve Bloom", "location": "San Francisco Bay Area", "screen_name": "stevebloom55", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Sydney", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "18007241", "following": false, "friends_count": 1591, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57241147/xdb0969a99c32dcc2e92472706a4fe26.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "131516", "geo_enabled": true, "followers_count": 901, "location": "Newcastle, Australia", "screen_name": "philhenley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 69, "name": "philhenley", "profile_use_background_image": false, "description": "Geospatializer. Wearer Of Glasses.", "url": null, "profile_text_color": "009999", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/463557329296711680/EeM5URfy_normal.jpeg", "profile_background_color": "050505", "created_at": "Wed Dec 10 00:22:13 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/463557329296711680/EeM5URfy_normal.jpeg", "favourites_count": 69, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57241147/xdb0969a99c32dcc2e92472706a4fe26.png", "default_profile_image": false, "id": 18007241, "blocked_by": false, "profile_background_tile": true, "statuses_count": 16878, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18007241/1399355770", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "274870271", "following": false, "friends_count": 580, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "homepages.see.leeds.ac.uk/~earlgb/", "url": "http://t.co/uO309Sl594", "expanded_url": "http://homepages.see.leeds.ac.uk/~earlgb/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/677815544951775232/vFVbdxak.jpg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 986, "location": "GFZ Potsdam + Uni Leeds, UK", "screen_name": "LianeGBenning", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 86, "name": "Liane G. Benning", "profile_use_background_image": true, "description": "#science geek; #biogeochemist; workoholic; love #extremes; prolific reader; world traveler; and whatever else I feel like being. opinions only mine!", "url": "http://t.co/uO309Sl594", "profile_text_color": "1A181A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667723721680035840/kbsOPRg5_normal.jpg", "profile_background_color": "131511", "created_at": "Thu Mar 31 05:27:15 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "6B6768", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667723721680035840/kbsOPRg5_normal.jpg", "favourites_count": 313, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/677815544951775232/vFVbdxak.jpg", "default_profile_image": false, "id": 274870271, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7403, "profile_banner_url": "https://pbs.twimg.com/profile_banners/274870271/1448013606", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "232550589", "following": false, "friends_count": 898, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "all-geo.org/metageologist", "url": "http://t.co/VUvlDN0oN9", "expanded_url": "http://all-geo.org/metageologist", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1306, "location": "England", "screen_name": "metageologist", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 56, "name": "Simon Wellings", "profile_use_background_image": true, "description": "I write about the Earth Sciences, especially mountains, diamonds, the geology of Britain and Ireland and anything else that grabs my imagination. PhD. trained", "url": "http://t.co/VUvlDN0oN9", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/438755187251875840/y5TkSSPF_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Dec 31 13:41:18 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/438755187251875840/y5TkSSPF_normal.jpeg", "favourites_count": 1064, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 232550589, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2807, "profile_banner_url": "https://pbs.twimg.com/profile_banners/232550589/1370459087", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1101632707", "following": false, "friends_count": 559, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blogs.agu.org/tremblingearth", "url": "http://t.co/WBkbt8X7Fb", "expanded_url": "http://blogs.agu.org/tremblingearth", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "17574E", "geo_enabled": true, "followers_count": 1081, "location": "Oxford, UK", "screen_name": "TTremblingEarth", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 68, "name": "Austin Elliott", "profile_use_background_image": true, "description": "paleoseismologist, active tectonicist; postdoc with @NERC_COMET at @OxUniEarthSci, earthquake aficionado, AGU blogger, and I luuuuvs maps", "url": "http://t.co/WBkbt8X7Fb", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3738082030/08160f3de98ef43ee6bce6175b3b52d3_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Fri Jan 18 18:07:43 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3738082030/08160f3de98ef43ee6bce6175b3b52d3_normal.jpeg", "favourites_count": 2963, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 1101632707, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4961, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1101632707/1398276781", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2882699721", "following": false, "friends_count": 469, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "atmos.albany.edu/student/ppapin/", "url": "https://t.co/HZceKYq3ut", "expanded_url": "http://www.atmos.albany.edu/student/ppapin/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 519, "location": "Albany, NY", "screen_name": "pppapin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "Philippe Papin", "profile_use_background_image": false, "description": "Ph.D. candidate @UAlbany studying atmospheric science. Random weather and climate musings posted here. All thoughts expressed are my own.", "url": "https://t.co/HZceKYq3ut", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/534733433344253952/SJIvQ3VP_normal.png", "profile_background_color": "000000", "created_at": "Tue Nov 18 15:20:35 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534733433344253952/SJIvQ3VP_normal.png", "favourites_count": 567, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2882699721, "blocked_by": false, "profile_background_tile": false, "statuses_count": 957, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2882699721/1416325842", "is_translator": false}, {"time_zone": "Irkutsk", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 28800, "id_str": "2318553062", "following": false, "friends_count": 625, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 838, "location": "Kumamoto, Kyushu, Japan", "screen_name": "hepomodeler", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 64, "name": "Weather Mizumoto", "profile_use_background_image": true, "description": "wx enthusiast/forecaster. severe wx, local short, mid-long term forecasts. winterfan. space. photo. math physics. bowling. foods. \u30d7\u30e9\u30e2\u30c7\u30eb\u521d\u5fc3\u8005\u30fb\u5199\u771f\u30fb\u6c17\u8c61\u4e88\u5831\u58eb", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/549843721877872640/Yfw28hJD_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Jan 30 09:02:51 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "ja", "profile_image_url_https": "https://pbs.twimg.com/profile_images/549843721877872640/Yfw28hJD_normal.png", "favourites_count": 8607, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2318553062, "blocked_by": false, "profile_background_tile": false, "statuses_count": 16052, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2318553062/1445787947", "is_translator": false}, {"time_zone": "Berlin", "profile_use_background_image": true, "description": "Die neuesten Informationen zu Wetter, Unwetter und Klima von http://t.co/IG1J3oeRSc! Impressum: http://t.co/0rfHr30Mmv", "url": "http://t.co/H5M20nqBxQ", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "88697994", "profile_image_url": "http://pbs.twimg.com/profile_images/3352921689/ebec0596b02efe436fd8b517e89d4f21_normal.jpeg", "friends_count": 2077, "entities": {"description": {"urls": [{"display_url": "wetterkontor.de", "url": "http://t.co/IG1J3oeRSc", "expanded_url": "http://www.wetterkontor.de", "indices": [61, 83]}, {"display_url": "wetterkontor.de/index.asp?id=i\u2026", "url": "http://t.co/0rfHr30Mmv", "expanded_url": "http://www.wetterkontor.de/index.asp?id=impressum", "indices": [104, 126]}]}, "url": {"urls": [{"display_url": "wetterkontor.de", "url": "http://t.co/H5M20nqBxQ", "expanded_url": "http://www.wetterkontor.de", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Mon Nov 09 16:17:40 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 25750, "profile_sidebar_border_color": "C0DEED", "lang": "de", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3352921689/ebec0596b02efe436fd8b517e89d4f21_normal.jpeg", "favourites_count": 24, "listed_count": 135, "geo_enabled": true, "follow_request_sent": false, "followers_count": 2574, "following": false, "default_profile_image": false, "id": 88697994, "blocked_by": false, "name": "WetterKontor", "location": "Ingelheim (Rhein) Germany", "screen_name": "WetterKontor", "profile_background_tile": false, "notifications": false, "utc_offset": 3600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Indiana (East)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "36152676", "following": false, "friends_count": 678, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joshhoke.bandcamp.com/track/peace-on\u2026", "url": "https://t.co/jPRahbVWp6", "expanded_url": "https://joshhoke.bandcamp.com/track/peace-on-earth", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/169716102/x9a437f23dcc6e19c3cf7d70a076f8da.png", "notifications": false, "profile_sidebar_fill_color": "392D26", "profile_link_color": "B6DB40", "geo_enabled": true, "followers_count": 1245, "location": "", "screen_name": "joshhoke", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Josh Hoke", "profile_use_background_image": true, "description": "lyrical gangsta. better off driving a truck in memphis. new single Peace on Earth available now!", "url": "https://t.co/jPRahbVWp6", "profile_text_color": "78B385", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/665187511715545090/1sq2vNCr_normal.jpg", "profile_background_color": "B8C18C", "created_at": "Tue Apr 28 19:14:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "8F8816", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665187511715545090/1sq2vNCr_normal.jpg", "favourites_count": 2033, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/169716102/x9a437f23dcc6e19c3cf7d70a076f8da.png", "default_profile_image": false, "id": 36152676, "blocked_by": false, "profile_background_tile": false, "statuses_count": 10588, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36152676/1442701585", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "524402811", "following": false, "friends_count": 2092, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "global2global.wordpress.com", "url": "https://t.co/PdaCKQcwwh", "expanded_url": "https://global2global.wordpress.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 214, "location": "Europe", "screen_name": "PatrikWiniger", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Patrik Winiger", "profile_use_background_image": true, "description": "Science, Politics & Freefight - Scientist & slow blogger", "url": "https://t.co/PdaCKQcwwh", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1896513135/workin_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Mar 14 14:28:30 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1896513135/workin_normal.jpg", "favourites_count": 1222, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 524402811, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1458, "profile_banner_url": "https://pbs.twimg.com/profile_banners/524402811/1452089005", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "Father, meteorologist, grocery cart returner", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "16317677", "profile_image_url": "http://pbs.twimg.com/profile_images/633086569038020608/-NcofOuX_normal.jpg", "friends_count": 540, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Sep 16 21:12:09 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 77, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/633086569038020608/-NcofOuX_normal.jpg", "favourites_count": 2, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 83, "following": false, "default_profile_image": false, "id": 16317677, "blocked_by": false, "name": "Steve Gregg", "location": "", "screen_name": "stevegregg", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "48319877", "following": false, "friends_count": 1195, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 122, "location": "Maine", "screen_name": "psillin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Peter Sillin", "profile_use_background_image": true, "description": "teacher, dad, reader, prodigal pianist, ambivalent runner, aspiring tango dancer", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1365006948/187130_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 18 11:25:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1365006948/187130_normal.jpg", "favourites_count": 309, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 48319877, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2831, "profile_banner_url": "https://pbs.twimg.com/profile_banners/48319877/1357586835", "is_translator": false}, {"time_zone": "Dublin", "profile_use_background_image": true, "description": "New User", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "592035334", "profile_image_url": "http://pbs.twimg.com/profile_images/2255273591/forest_normal.jpg", "friends_count": 160, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun May 27 18:26:25 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 86, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2255273591/forest_normal.jpg", "favourites_count": 15, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 18, "following": false, "default_profile_image": false, "id": 592035334, "blocked_by": false, "name": "Si Laf", "location": "", "screen_name": "2point71828", "profile_background_tile": false, "notifications": false, "utc_offset": 0, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "442318323", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "friends_count": 128, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Wed Dec 21 00:27:00 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 200, "profile_sidebar_border_color": "C0DEED", "lang": "es", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "favourites_count": 25, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 6, "following": false, "default_profile_image": true, "id": 442318323, "blocked_by": false, "name": "lolvera", "location": "", "screen_name": "lolverap", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "Astrophysicist, studying the interstellar medium and star formation in our Galaxy and beyond.", "url": "http://t.co/u51n7WOHVT", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2833658451", "profile_image_url": "http://pbs.twimg.com/profile_images/522675890153861120/_mnbCjPQ_normal.png", "friends_count": 47, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "obs.u-bordeaux1.fr/radio/gratier", "url": "http://t.co/u51n7WOHVT", "expanded_url": "http://www.obs.u-bordeaux1.fr/radio/gratier", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Thu Oct 16 09:03:04 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 39, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/522675890153861120/_mnbCjPQ_normal.png", "favourites_count": 2, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 19, "following": false, "default_profile_image": false, "id": 2833658451, "blocked_by": false, "name": "Pierre Gratier", "location": "Bordeaux", "screen_name": "PierreGratier", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "781206042", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000764164107/96189923e6a3eb8f9d4c68bf14cf53b0_normal.jpeg", "friends_count": 172, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sat Aug 25 22:24:43 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 48, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000764164107/96189923e6a3eb8f9d4c68bf14cf53b0_normal.jpeg", "favourites_count": 32, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 26, "following": false, "default_profile_image": false, "id": 781206042, "blocked_by": false, "name": "Jeremy O'Brien", "location": "Wisconsin", "screen_name": "jrobrien80", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "239183771", "following": false, "friends_count": 262, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 40, "location": "", "screen_name": "1SunnyGill", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Sunny Gill", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/502523756372193280/m2j7xZGQ_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Jan 17 01:18:15 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/502523756372193280/m2j7xZGQ_normal.jpeg", "favourites_count": 3, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 239183771, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7, "profile_banner_url": "https://pbs.twimg.com/profile_banners/239183771/1408646069", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2732441578", "following": false, "friends_count": 940, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/raymath29", "url": "https://t.co/47mKnSyyJ7", "expanded_url": "http://instagram.com/raymath29", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 184, "location": "North Florida", "screen_name": "raymath29", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Ray Matheny", "profile_use_background_image": true, "description": "Retired car guy...sold lots of British, Italian and Swedes, had a blast, then after 40 years, unexpectedly hit the ejector button......Hotzigs!!!", "url": "https://t.co/47mKnSyyJ7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/635459562104061952/5U52j_We_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Aug 03 13:20:53 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635459562104061952/5U52j_We_normal.jpg", "favourites_count": 121, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2732441578, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1809, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2732441578/1435521497", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1400505056", "following": false, "friends_count": 331, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 34, "location": "", "screen_name": "egosumquisum9", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Antonio Morales", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/566057364973838336/V4bu0xi8_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri May 03 19:13:10 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/566057364973838336/V4bu0xi8_normal.jpeg", "favourites_count": 6, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1400505056, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4123, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1400505056/1423793679", "is_translator": false}, {"time_zone": "New Delhi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "113086237", "following": false, "friends_count": 2093, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "scratchbuffer.wordpress.com", "url": "https://t.co/nLGauahfoT", "expanded_url": "https://scratchbuffer.wordpress.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/190346956/Pulpfiction_Jules_Winnfield_by_GraffitiWatcher.jpg", "notifications": false, "profile_sidebar_fill_color": "200709", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 682, "location": "Bengaluru", "screen_name": "616476fbde873af", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 94, "name": "Ghanashyam", "profile_use_background_image": true, "description": "Engineer by profession and interest. new found Arduino love", "url": "https://t.co/nLGauahfoT", "profile_text_color": "6A4836", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2625528701/ecY1FKXe_normal", "profile_background_color": "FFFFFF", "created_at": "Wed Feb 10 17:16:07 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "B68B9E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2625528701/ecY1FKXe_normal", "favourites_count": 8359, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/190346956/Pulpfiction_Jules_Winnfield_by_GraffitiWatcher.jpg", "default_profile_image": false, "id": 113086237, "blocked_by": false, "profile_background_tile": false, "statuses_count": 33012, "profile_banner_url": "https://pbs.twimg.com/profile_banners/113086237/1426946183", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "25876935", "following": false, "friends_count": 676, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445417914/wildcat_head_2.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 266, "location": "Lexington, KY", "screen_name": "BRobs21", "verified": false, "has_extended_profile": true, "protected": true, "listed_count": 2, "name": "Brandon Roberts", "profile_use_background_image": true, "description": "I like mess and such things of that nature and whatnot.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/647641235654619137/xpBuhCnv_normal.jpg", "profile_background_color": "89C9FA", "created_at": "Sun Mar 22 20:46:10 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/647641235654619137/xpBuhCnv_normal.jpg", "favourites_count": 3699, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445417914/wildcat_head_2.jpg", "default_profile_image": false, "id": 25876935, "blocked_by": false, "profile_background_tile": true, "statuses_count": 7457, "profile_banner_url": "https://pbs.twimg.com/profile_banners/25876935/1445482211", "is_translator": false}, {"time_zone": "Nairobi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 10800, "id_str": "91112048", "following": false, "friends_count": 734, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/469463452063240193/zdQHEOZu.jpeg", "notifications": false, "profile_sidebar_fill_color": "1C1C1C", "profile_link_color": "C0DCF1", "geo_enabled": false, "followers_count": 444, "location": "Nairobi", "screen_name": "SKIRAGU", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Ragz", "profile_use_background_image": false, "description": "A young Proffessional with a sense of humor,a love for sports & the finer things in life\n\n#KENYA #ManUtd #AllBlacks #LBJ #Pacman #Capricorn #Ingwe", "url": null, "profile_text_color": "5C91B9", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2556172065/399480_391656167550180_1686617523_a_normal.jpg", "profile_background_color": "C0DCF1", "created_at": "Thu Nov 19 14:16:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DCF1", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2556172065/399480_391656167550180_1686617523_a_normal.jpg", "favourites_count": 106, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/469463452063240193/zdQHEOZu.jpeg", "default_profile_image": false, "id": 91112048, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9665, "profile_banner_url": "https://pbs.twimg.com/profile_banners/91112048/1381443458", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "188995630", "following": false, "friends_count": 1329, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 169, "location": "Southampton, England", "screen_name": "andrsnssa", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "a.Ussa", "profile_use_background_image": false, "description": "Engineer. Lifelong learner. Juventini. @AmericadeCali", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/586581596943290370/s3-6xnxl_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Sep 10 02:50:54 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/586581596943290370/s3-6xnxl_normal.jpg", "favourites_count": 6355, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 188995630, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3174, "profile_banner_url": "https://pbs.twimg.com/profile_banners/188995630/1427149830", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "36184638", "following": false, "friends_count": 2023, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wpri.com/2014/06/22/t-j\u2026", "url": "https://t.co/CZC5Ys28Rp", "expanded_url": "http://wpri.com/2014/06/22/t-j-del-santo/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 4450, "location": "Providence, RI", "screen_name": "tjdelsanto", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 135, "name": "TJ Del Santo \u26a1", "profile_use_background_image": true, "description": "Meteorologist & environmental/Green Team reporter at WPRI-TV & WNAC-TV. I'm also an astronomy nut!! Tweets/RT's are not endorsements. Opinions are my own.", "url": "https://t.co/CZC5Ys28Rp", "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666810498759991297/_WMK_hrv_normal.jpg", "profile_background_color": "642D8B", "created_at": "Tue Apr 28 21:12:03 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666810498759991297/_WMK_hrv_normal.jpg", "favourites_count": 8534, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "id": 36184638, "blocked_by": false, "profile_background_tile": true, "statuses_count": 21225, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36184638/1447858305", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "54353910", "following": false, "friends_count": 1086, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 389, "location": "Dallas, Texas", "screen_name": "JWinstel", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Jake", "profile_use_background_image": true, "description": "SMU Alum. Native Texan. Technology, Comedy, and Dallas Sports Fan.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/614250241466851328/y9J-uD3e_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Jul 06 22:22:07 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/614250241466851328/y9J-uD3e_normal.jpg", "favourites_count": 6233, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 54353910, "blocked_by": false, "profile_background_tile": true, "statuses_count": 4328, "profile_banner_url": "https://pbs.twimg.com/profile_banners/54353910/1363821921", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16098365", "following": false, "friends_count": 2041, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "black-magma.org/monger.html", "url": "https://t.co/vEAmIqL5gQ", "expanded_url": "http://www.black-magma.org/monger.html", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/668421043/9861eac6c566a98e985ede940c0e9fb5.jpeg", "notifications": false, "profile_sidebar_fill_color": "9E9C9E", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 623, "location": "Greater Philadelphia Metro", "screen_name": "ihsanamin", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 44, "name": "ihsanamin v3.7", "profile_use_background_image": true, "description": "Coaxial Monger.", "url": "https://t.co/vEAmIqL5gQ", "profile_text_color": "780F0F", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685321567144964100/Ad4mF_tL_normal.jpg", "profile_background_color": "AEA498", "created_at": "Tue Sep 02 15:50:08 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685321567144964100/Ad4mF_tL_normal.jpg", "favourites_count": 13705, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/668421043/9861eac6c566a98e985ede940c0e9fb5.jpeg", "default_profile_image": false, "id": 16098365, "blocked_by": false, "profile_background_tile": true, "statuses_count": 96118, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16098365/1348017375", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "41257390", "following": false, "friends_count": 851, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 135, "location": "New York City", "screen_name": "shaunmorse", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Shaun Morse", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3633723529/e4746b8a8105d6eede0b48d269044fda_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed May 20 00:54:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633723529/e4746b8a8105d6eede0b48d269044fda_normal.jpeg", "favourites_count": 22, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 41257390, "blocked_by": false, "profile_background_tile": true, "statuses_count": 665, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41257390/1368726607", "is_translator": false}, {"time_zone": "Quito", "profile_use_background_image": true, "description": "Dad, husband, CEO @HAandW Wealth Management, community activist, pro-Israel advocate, gardener, landscaper, golfer, reader, nacho lover.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "112311915", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000620545993/64594cfa695f960c15bff825e2451ae1_normal.jpeg", "friends_count": 945, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Feb 08 01:28:39 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 619, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000620545993/64594cfa695f960c15bff825e2451ae1_normal.jpeg", "favourites_count": 18, "listed_count": 11, "geo_enabled": false, "follow_request_sent": false, "followers_count": 323, "following": false, "default_profile_image": false, "id": 112311915, "blocked_by": false, "name": "Keith Greenwald", "location": "Atlanta", "screen_name": "Kgreenwald123", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "161680208", "profile_image_url": "http://pbs.twimg.com/profile_images/446117809303482368/47njunwH_normal.jpeg", "friends_count": 245, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Thu Jul 01 13:38:03 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 21, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/446117809303482368/47njunwH_normal.jpeg", "favourites_count": 4, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 14, "following": false, "default_profile_image": false, "id": 161680208, "blocked_by": false, "name": "Greg Jackson", "location": "Edmonton", "screen_name": "GAJ65", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Quito", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "80154513", "profile_image_url": "http://pbs.twimg.com/profile_images/1419802137/DSC00919_normal.JPG", "friends_count": 504, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Oct 05 23:24:03 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 233, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1419802137/DSC00919_normal.JPG", "favourites_count": 55, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 97, "following": false, "default_profile_image": false, "id": 80154513, "blocked_by": false, "name": "Juan Manuel Gallegos", "location": "New York", "screen_name": "gallegosjuanm", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Jerusalem", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "3316761997", "following": false, "friends_count": 774, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/650473911327526912/Gh15hHvc.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "E2D42D", "geo_enabled": false, "followers_count": 113, "location": "Between 33rd & 38th Parallel", "screen_name": "MoathJundi", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Moath Jundi", "profile_use_background_image": true, "description": "23 - Real Estate Entrepreneur - EMT & GIS Analyst in Process - Associate Degrees in Anthropology, Psychology, Sociology and Geography.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/632852892609675264/b1MFsQQi_normal.jpg", "profile_background_color": "E2D42D", "created_at": "Sun Aug 16 09:50:08 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/632852892609675264/b1MFsQQi_normal.jpg", "favourites_count": 3, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/650473911327526912/Gh15hHvc.jpg", "default_profile_image": false, "id": 3316761997, "blocked_by": false, "profile_background_tile": false, "statuses_count": 281, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3316761997/1443917395", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18752159", "following": false, "friends_count": 681, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/20002643/Maranacook_Fall.jpg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 129, "location": "South Shore, Down East", "screen_name": "brownwey", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "brownwey", "profile_use_background_image": true, "description": "I'm the 3rd or 4th guy removed from Kevin Bacon that now connects you. . . .", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/290398977/Pic-0072_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Thu Jan 08 03:40:30 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/290398977/Pic-0072_normal.jpg", "favourites_count": 32, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/20002643/Maranacook_Fall.jpg", "default_profile_image": false, "id": 18752159, "blocked_by": false, "profile_background_tile": true, "statuses_count": 700, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18752159/1353083679", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2584436011", "following": false, "friends_count": 105, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 66, "location": "", "screen_name": "bartshemiller", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Bartshe Miller", "profile_use_background_image": true, "description": "Sierra Nevada, water issues, weather, climate, natural history noir, Horse Feathers.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/567464637512171521/c4MbYR3__normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Jun 23 18:34:27 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/567464637512171521/c4MbYR3__normal.jpeg", "favourites_count": 112, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2584436011, "blocked_by": false, "profile_background_tile": false, "statuses_count": 133, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2584436011/1424128328", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "869924274", "following": false, "friends_count": 233, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "asarandall.com", "url": "http://t.co/gz1YzWJX4l", "expanded_url": "http://asarandall.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/442677477282811905/ROD-ybmF.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "D10000", "geo_enabled": true, "followers_count": 148, "location": "", "screen_name": "ArchAce", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Asa Randall", "profile_use_background_image": true, "description": "Anthropological Archaeologist at the University of Oklahoma, all views are my own.", "url": "http://t.co/gz1YzWJX4l", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/433729516209315840/Ki5cmUPm_normal.jpeg", "profile_background_color": "0DFF00", "created_at": "Tue Oct 09 13:53:33 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/433729516209315840/Ki5cmUPm_normal.jpeg", "favourites_count": 165, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/442677477282811905/ROD-ybmF.png", "default_profile_image": false, "id": 869924274, "blocked_by": false, "profile_background_tile": false, "statuses_count": 384, "profile_banner_url": "https://pbs.twimg.com/profile_banners/869924274/1405186590", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "207280695", "following": false, "friends_count": 540, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 83, "location": "Minneapolis, MN", "screen_name": "FlamChachut", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 8, "name": "Nick Weins", "profile_use_background_image": true, "description": "Liberal retail manager.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670299561420824576/au0p5Ib-_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Oct 24 23:40:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670299561420824576/au0p5Ib-_normal.jpg", "favourites_count": 6935, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 207280695, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2507, "profile_banner_url": "https://pbs.twimg.com/profile_banners/207280695/1387691315", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18912594", "following": false, "friends_count": 297, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "0099B9", "geo_enabled": false, "followers_count": 422, "location": "", "screen_name": "dan_maran", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "Dan", "profile_use_background_image": true, "description": "I work in IT... have you tried turning it off and on again?", "url": null, "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/555079632072888320/N_kEmrGH_normal.jpeg", "profile_background_color": "0099B9", "created_at": "Mon Jan 12 19:50:56 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555079632072888320/N_kEmrGH_normal.jpeg", "favourites_count": 121, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "default_profile_image": false, "id": 18912594, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9641, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18912594/1415742920", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15436436", "following": false, "friends_count": 1875, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 3589, "location": "SF, south side", "screen_name": "emeyerson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 109, "name": "EMey", "profile_use_background_image": true, "description": "Marketing, politics, data. Expert on everything.", "url": null, "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", "profile_background_color": "642D8B", "created_at": "Tue Jul 15 03:53:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", "favourites_count": 5038, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", "default_profile_image": false, "id": 15436436, "blocked_by": false, "profile_background_tile": false, "statuses_count": 19937, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15436436/1444629889", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14165504", "following": false, "friends_count": 743, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "themillions.com", "url": "http://t.co/gt7d8SNw1X", "expanded_url": "http://www.themillions.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 907, "location": "07422", "screen_name": "cmaxmagee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "cmaxmagee", "profile_use_background_image": true, "description": "Founder of the Millions. (@the_millions)", "url": "http://t.co/gt7d8SNw1X", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3538930572/f543735e5ae4352056f053936bf418c3_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Mar 17 20:09:31 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3538930572/f543735e5ae4352056f053936bf418c3_normal.jpeg", "favourites_count": 663, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 14165504, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1850, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14165504/1452090163", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15779216", "following": false, "friends_count": 512, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "usatoday.com/weather/defaul\u2026", "url": "http://t.co/tob46EBWJR", "expanded_url": "http://www.usatoday.com/weather/default.htm", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000092304026/e9c14244d29fd8ac448d296bffecaba1.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "FFC000", "geo_enabled": false, "followers_count": 22902, "location": "McLean, Va. (USA TODAY HQ)", "screen_name": "usatodayweather", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 979, "name": "USA TODAY Weather", "profile_use_background_image": false, "description": "The latest weather and climate news -- from hurricanes and tornadoes to blizzards and climate change -- from Doyle Rice, the USA TODAY weather editor/reporter.", "url": "http://t.co/tob46EBWJR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/461560417660047361/s20iJ0Ws_normal.png", "profile_background_color": "FFC000", "created_at": "Fri Aug 08 15:47:31 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/461560417660047361/s20iJ0Ws_normal.png", "favourites_count": 28, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000092304026/e9c14244d29fd8ac448d296bffecaba1.jpeg", "default_profile_image": false, "id": 15779216, "blocked_by": false, "profile_background_tile": false, "statuses_count": 17458, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15779216/1415630791", "is_translator": false}, {"time_zone": "London", "profile_use_background_image": false, "description": "'Bohemian' according to one CFO. Also regulation reporter at @insuranceinside and @IPTradingRisk. Weather geek interested in all things political and risky.", "url": "https://t.co/gelwy3PRLI", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2948865959", "profile_image_url": "http://pbs.twimg.com/profile_images/549895252991946752/JTgULh2t_normal.png", "friends_count": 266, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "insuranceinsider.com", "url": "https://t.co/gelwy3PRLI", "expanded_url": "http://www.insuranceinsider.com/", "indices": [0, 23]}]}}, "profile_background_color": "000000", "created_at": "Mon Dec 29 09:34:27 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 377, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/549895252991946752/JTgULh2t_normal.png", "favourites_count": 4, "listed_count": 9, "geo_enabled": false, "follow_request_sent": false, "followers_count": 163, "following": false, "default_profile_image": false, "id": 2948865959, "blocked_by": false, "name": "Insider_winifred", "location": "EC3", "screen_name": "insiderwinifred", "profile_background_tile": false, "notifications": false, "utc_offset": 0, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11433152", "following": false, "friends_count": 3665, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "plus.google.com/+NateJohnson/", "url": "https://t.co/dMpfqObOsm", "expanded_url": "https://plus.google.com/+NateJohnson/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 10007, "location": "Raleigh, NC", "screen_name": "nsj", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 568, "name": "Nate Johnson", "profile_use_background_image": false, "description": "I am a meteorologist, instructor, blogger, and podcaster. Flying is my latest adventure. I tweet #ncwx, communication, #NCState, #Cubs, #BBQ, & #avgeek stuff.", "url": "https://t.co/dMpfqObOsm", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", "profile_background_color": "0000FF", "created_at": "Sat Dec 22 14:59:53 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", "favourites_count": 1102, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", "default_profile_image": false, "id": 11433152, "blocked_by": false, "profile_background_tile": false, "statuses_count": 45504, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11433152/1405353644", "is_translator": false}, {"time_zone": "Bogota", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "273437487", "following": false, "friends_count": 1350, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "992266", "geo_enabled": true, "followers_count": 257, "location": "Cali, Colombia", "screen_name": "marisolcitag", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Marisol Giraldo", "profile_use_background_image": true, "description": ".:I'm Colombian ... what is your superpower? :.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/488873447682875392/vJlNYMdb_normal.jpeg", "profile_background_color": "131516", "created_at": "Mon Mar 28 13:59:18 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488873447682875392/vJlNYMdb_normal.jpeg", "favourites_count": 4576, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 273437487, "blocked_by": false, "profile_background_tile": true, "statuses_count": 13774, "profile_banner_url": "https://pbs.twimg.com/profile_banners/273437487/1405392302", "is_translator": false}, {"time_zone": "Bogota", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "88531019", "following": false, "friends_count": 1005, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 335, "location": "Pamplona y Bogot\u00e1", "screen_name": "livediaz", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 4, "name": "Liliana Vera", "profile_use_background_image": false, "description": "CARGANDO...\r\n\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588 99%", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638548480449990658/s47Nvisw_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Nov 08 22:49:56 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638548480449990658/s47Nvisw_normal.jpg", "favourites_count": 503, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 88531019, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1174, "profile_banner_url": "https://pbs.twimg.com/profile_banners/88531019/1431892477", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "19430233", "following": false, "friends_count": 1751, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "qz.com", "url": "https://t.co/G318vIng6k", "expanded_url": "http://qz.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623444704202518528/md1pZdSY.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 24967, "location": "New York, NY", "screen_name": "zseward", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 1562, "name": "Zach Seward", "profile_use_background_image": true, "description": "VP of product and executive editor at Quartz | @qz | z@qz.com", "url": "https://t.co/G318vIng6k", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641001275941855236/IDlq9PWd_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sat Jan 24 03:32:09 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641001275941855236/IDlq9PWd_normal.jpg", "favourites_count": 7924, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623444704202518528/md1pZdSY.jpg", "default_profile_image": false, "id": 19430233, "blocked_by": false, "profile_background_tile": true, "statuses_count": 22976, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19430233/1441661794", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "848833596", "following": false, "friends_count": 798, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 682, "location": "", "screen_name": "CaliaDomenico", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 48, "name": "Domenico Calia", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678262426211590144/4HmSlhrT_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Sep 27 07:40:42 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "it", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678262426211590144/4HmSlhrT_normal.jpg", "favourites_count": 9282, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 848833596, "blocked_by": false, "profile_background_tile": false, "statuses_count": 15504, "profile_banner_url": "https://pbs.twimg.com/profile_banners/848833596/1452289979", "is_translator": false}, {"time_zone": "Indiana (East)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "336053775", "following": false, "friends_count": 344, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 90, "location": "Bloomington, Indiana", "screen_name": "classic_geek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Classic Geek", "profile_use_background_image": true, "description": "SQL Server Professional. IU Grad Student in Data Science. Fan of science, linguistics and Romantic/Modern music. May (re)tweet in English, Russian, Turkish.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617056411089027073/bWnGHO_d_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Jul 15 17:29:11 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617056411089027073/bWnGHO_d_normal.jpg", "favourites_count": 126, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 336053775, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1600, "profile_banner_url": "https://pbs.twimg.com/profile_banners/336053775/1435952547", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4063739236", "following": false, "friends_count": 735, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 255, "location": "", "screen_name": "morenamla", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "\u2b50\ufe0fMorena Mia\u2b50\ufe0f", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659573999937183744/cwbZGqjW_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Oct 28 22:39:09 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659573999937183744/cwbZGqjW_normal.jpg", "favourites_count": 42, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4063739236, "blocked_by": false, "profile_background_tile": false, "statuses_count": 133, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4063739236/1448518338", "is_translator": false}, {"time_zone": "International Date Line West", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -39600, "id_str": "187144916", "following": false, "friends_count": 270, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "satrapy.cykranosh.solar", "url": "http://t.co/22bUdX0ML8", "expanded_url": "http://satrapy.cykranosh.solar", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 124, "location": "THE BOREAL HEXAGON ", "screen_name": "cykragnostic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Satrap of Saturn", "profile_use_background_image": true, "description": "Freelance editor. \nSufick Muslim adeptus ipsissimus. \nSpheres: words, stars, rocks, critters.\nThey/them.", "url": "http://t.co/22bUdX0ML8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655573916518326272/Rbwx52Iw_normal.png", "profile_background_color": "131516", "created_at": "Sun Sep 05 11:41:58 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655573916518326272/Rbwx52Iw_normal.png", "favourites_count": 1210, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 187144916, "blocked_by": false, "profile_background_tile": true, "statuses_count": 5951, "profile_banner_url": "https://pbs.twimg.com/profile_banners/187144916/1442040118", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "336828006", "following": false, "friends_count": 642, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gorelovergirl69.blogspot.com", "url": "http://t.co/hOX49KQcaX", "expanded_url": "http://gorelovergirl69.blogspot.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362351757/PURPLE.FIRE.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 111, "location": "USA", "screen_name": "GoreLoverGirl69", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 4, "name": "GoreLoverGirl69", "profile_use_background_image": true, "description": "", "url": "http://t.co/hOX49KQcaX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1711571583/WRENS.EYES.END.OF_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jul 17 00:14:14 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1711571583/WRENS.EYES.END.OF_normal.jpg", "favourites_count": 1848, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362351757/PURPLE.FIRE.jpg", "default_profile_image": false, "id": 336828006, "blocked_by": false, "profile_background_tile": true, "statuses_count": 18171, "profile_banner_url": "https://pbs.twimg.com/profile_banners/336828006/1414953413", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2331273943", "following": false, "friends_count": 1338, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "antonioweatherinfo.weebly.com", "url": "http://t.co/3rSNa8G1Ca", "expanded_url": "http://antonioweatherinfo.weebly.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 203, "location": "Daly City CA", "screen_name": "RealAntonioM", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 2, "name": "Antonio Maffei", "profile_use_background_image": false, "description": "- Weatherman\n- Astronomer\n- Son\n- Part of NASA Missions\n- Daly City Weatherman \n- KTVU/KPIX Weather Watcher", "url": "http://t.co/3rSNa8G1Ca", "profile_text_color": "000000", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/663110936354394112/S2URUUj9_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Feb 07 04:10:59 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663110936354394112/S2URUUj9_normal.jpg", "favourites_count": 246, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2331273943, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3025, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2331273943/1438652902", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "22044763", "following": false, "friends_count": 365, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "soundcloud.com/miltonjackson", "url": "http://t.co/NVdq7KBQmI", "expanded_url": "http://soundcloud.com/miltonjackson", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 5023, "location": "Up & Down", "screen_name": "miltonjackson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 97, "name": "Milton Jackson", "profile_use_background_image": true, "description": "Alan Partridge, Space, House Music, Baseball. That's about it.", "url": "http://t.co/NVdq7KBQmI", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2525862589/jlc3gcshyaww2i09ucj9_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Feb 26 18:50:20 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2525862589/jlc3gcshyaww2i09ucj9_normal.jpeg", "favourites_count": 628, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 22044763, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2869, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22044763/1443187956", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "806620844", "following": false, "friends_count": 714, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "the-earth-story.com", "url": "https://t.co/xiiaNQNIKz", "expanded_url": "https://www.the-earth-story.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/436260926509953025/YWwturFA.jpeg", "notifications": false, "profile_sidebar_fill_color": "20201E", "profile_link_color": "897856", "geo_enabled": false, "followers_count": 2926, "location": "About 149597870700 m from Sol", "screen_name": "TheEarthStory", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 167, "name": "The Earth Story", "profile_use_background_image": true, "description": "If you love our beautiful planet, then this is the page for you.", "url": "https://t.co/xiiaNQNIKz", "profile_text_color": "C8A86F", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2582373510/e4ag2n4nip5lzkkm3wsc_normal.jpeg", "profile_background_color": "20201E", "created_at": "Thu Sep 06 11:33:11 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2582373510/e4ag2n4nip5lzkkm3wsc_normal.jpeg", "favourites_count": 3687, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/436260926509953025/YWwturFA.jpeg", "default_profile_image": false, "id": 806620844, "blocked_by": false, "profile_background_tile": false, "statuses_count": 16571, "profile_banner_url": "https://pbs.twimg.com/profile_banners/806620844/1396522060", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "314016317", "following": false, "friends_count": 245, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 37, "location": "", "screen_name": "JDevarajan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Jagadish Devarajan", "profile_use_background_image": true, "description": "~ Father, Husband, Son, Brother, Friend, Chicagoan, Desi, Tamil ~ Cricket, CrossFit, Photography, Boredom", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1388698101/2010-12-20_11.50.40_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 09 15:41:42 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1388698101/2010-12-20_11.50.40_normal.jpg", "favourites_count": 120, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 314016317, "blocked_by": false, "profile_background_tile": false, "statuses_count": 205, "profile_banner_url": "https://pbs.twimg.com/profile_banners/314016317/1399645268", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "380667593", "following": false, "friends_count": 1912, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 884, "location": "", "screen_name": "MichaelJewell78", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 99, "name": "Michael Jewell", "profile_use_background_image": true, "description": "Physics student, Wayne State Warrior, Phi Theta Kappa, APS, SPS, AVS, OSA", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/633667392770560000/YosJcg0m_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Tue Sep 27 01:20:06 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/633667392770560000/YosJcg0m_normal.jpg", "favourites_count": 64585, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 380667593, "blocked_by": false, "profile_background_tile": false, "statuses_count": 50691, "profile_banner_url": "https://pbs.twimg.com/profile_banners/380667593/1439913167", "is_translator": false}, {"time_zone": "Tokyo", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 32400, "id_str": "2957887285", "following": false, "friends_count": 497, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tilma-labs.org", "url": "https://t.co/gv5iDz9d8o", "expanded_url": "http://tilma-labs.org/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591747274339790849/cqU2Gy7H.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 173, "location": "Tokyo Institute of Technology", "screen_name": "TilmaLabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Todd Tilma", "profile_use_background_image": true, "description": "Associate Professor of physics in the International Education and Research Center of Science. Purveyor of finely crafted mathematical physics formulas.", "url": "https://t.co/gv5iDz9d8o", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/551570534408794113/HySCq5QE_normal.jpeg", "profile_background_color": "ABB8C2", "created_at": "Sun Jan 04 02:14:56 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551570534408794113/HySCq5QE_normal.jpeg", "favourites_count": 7244, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591747274339790849/cqU2Gy7H.jpg", "default_profile_image": false, "id": 2957887285, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4292, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2957887285/1446973475", "is_translator": false}, {"time_zone": "Wellington", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "22125553", "following": false, "friends_count": 192, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 28, "location": "Mumbai, India", "screen_name": "IKONOS2", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Amit Kokje", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "39382D", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/585912351443955712/Jg2KDH8a_normal.jpg", "profile_background_color": "3E274E", "created_at": "Fri Feb 27 09:54:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585912351443955712/Jg2KDH8a_normal.jpg", "favourites_count": 761, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "id": 22125553, "blocked_by": false, "profile_background_tile": true, "statuses_count": 18, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22125553/1428528861", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "159297352", "following": false, "friends_count": 1147, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 179, "location": "", "screen_name": "VeraR2010", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Vera Rybinova", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/653111003245359104/pjBDMZ0V_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Jun 25 00:39:45 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/653111003245359104/pjBDMZ0V_normal.jpg", "favourites_count": 271, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 159297352, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2924, "profile_banner_url": "https://pbs.twimg.com/profile_banners/159297352/1444548773", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "242924535", "following": false, "friends_count": 794, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 306, "location": "", "screen_name": "billwickett", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Bill Wickett", "profile_use_background_image": true, "description": ".anchor consultant. scope and swing.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/640586954237734912/Q04ib0J7_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jan 25 22:30:51 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/640586954237734912/Q04ib0J7_normal.jpg", "favourites_count": 3084, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 242924535, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3742, "profile_banner_url": "https://pbs.twimg.com/profile_banners/242924535/1441562806", "is_translator": false}, {"time_zone": "Georgetown", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "74042479", "following": false, "friends_count": 1094, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E5507E", "profile_link_color": "B40B43", "geo_enabled": true, "followers_count": 423, "location": "", "screen_name": "profesor_seldon", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 38, "name": "Profesor_Seldon", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "362720", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2874853399/fd71d587bbf9c926a325bbed43c67b23_normal.jpeg", "profile_background_color": "FF6699", "created_at": "Mon Sep 14 02:21:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "CC3366", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2874853399/fd71d587bbf9c926a325bbed43c67b23_normal.jpeg", "favourites_count": 51568, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", "default_profile_image": false, "id": 74042479, "blocked_by": false, "profile_background_tile": true, "statuses_count": 8990, "profile_banner_url": "https://pbs.twimg.com/profile_banners/74042479/1443930675", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "73352446", "following": false, "friends_count": 854, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/327289582/pic.jpg", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": true, "followers_count": 322, "location": "", "screen_name": "charlesmuturi", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "mzito", "profile_use_background_image": true, "description": "Friendly Atheist", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/536928887700082688/k1sOLutF_normal.jpeg", "profile_background_color": "8B542B", "created_at": "Fri Sep 11 10:00:29 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/536928887700082688/k1sOLutF_normal.jpeg", "favourites_count": 1272, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/327289582/pic.jpg", "default_profile_image": false, "id": 73352446, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7229, "profile_banner_url": "https://pbs.twimg.com/profile_banners/73352446/1412022722", "is_translator": false}, {"time_zone": "Saskatchewan", "profile_use_background_image": true, "description": "follow me if you want but i have no plans to start tweeting", "url": null, "contributors_enabled": false, "is_translation_enabled": true, "id_str": "367937788", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "friends_count": 73, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Sep 04 20:20:58 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 21, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "favourites_count": 1, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 7, "following": false, "default_profile_image": true, "id": 367937788, "blocked_by": false, "name": "Greg Eslinger", "location": "", "screen_name": "Mrscience14", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "350420286", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "friends_count": 113, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Aug 07 19:00:05 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "favourites_count": 5, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1, "following": false, "default_profile_image": true, "id": 350420286, "blocked_by": false, "name": "blazingtuba", "location": "", "screen_name": "blazingtuba", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "17140002", "following": false, "friends_count": 2157, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tulsaworld.com/offbeat", "url": "http://t.co/CLvIA1TJO2", "expanded_url": "http://www.tulsaworld.com/offbeat", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 2465, "location": "Tulsa, Oklahoma", "screen_name": "jerrywofford", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 83, "name": "Jerry Wofford", "profile_use_background_image": true, "description": "Music/features writer for @TWScene. Unhealthy obsession with the 918/479, the greatness of the flyovers and weather. Photo from @jclantonphoto", "url": "http://t.co/CLvIA1TJO2", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677985287146835969/xYRzZ3fm_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Mon Nov 03 20:50:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677985287146835969/xYRzZ3fm_normal.jpg", "favourites_count": 10686, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "default_profile_image": false, "id": 17140002, "blocked_by": false, "profile_background_tile": false, "statuses_count": 28935, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17140002/1441735943", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "7507462", "following": false, "friends_count": 226, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "benelsen.com", "url": "https://t.co/VdkPB38GEl", "expanded_url": "https://benelsen.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 227, "location": "Munich, Bavaria", "screen_name": "benelsen", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 19, "name": "Ben", "profile_use_background_image": false, "description": "", "url": "https://t.co/VdkPB38GEl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507127502431862784/W4C6BOwM_normal.jpeg", "profile_background_color": "DBE9ED", "created_at": "Mon Jul 16 14:37:39 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507127502431862784/W4C6BOwM_normal.jpeg", "favourites_count": 1222, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "default_profile_image": false, "id": 7507462, "blocked_by": false, "profile_background_tile": false, "statuses_count": 27472, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7507462/1450655390", "is_translator": false}], "next_cursor": 1516850034842747602, "previous_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "1516850034842747602"} \ No newline at end of file diff --git a/testdata/get_followers_1.json b/testdata/get_followers_1.json index 219c22c9..7d16ce2a 100644 --- a/testdata/get_followers_1.json +++ b/testdata/get_followers_1.json @@ -1,7539 +1 @@ -{ - "next_cursor": 0, - "users": [ - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1682351", - "following": false, - "friends_count": 553, - "entities": { - "description": { - "urls": [ - { - "display_url": "keybase.io/lemonodor", - "url": "http://t.co/r2HAYBu4LF", - "expanded_url": "http://keybase.io/lemonodor", - "indices": [ - 48, - 70 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "lemondronor.com", - "url": "http://t.co/JFgzDlsyFp", - "expanded_url": "http://lemondronor.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450039947001487360/kSy6Eql1.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 1657, - "location": "Los Angeles", - "screen_name": "lemonodor", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 85, - "name": "john wiseman", - "profile_use_background_image": true, - "description": "Boring (into your brain). jjwiseman@gmail.com / http://t.co/r2HAYBu4LF", - "url": "http://t.co/JFgzDlsyFp", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/596349970401267712/78XeQR5B_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Mar 20 22:52:08 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/596349970401267712/78XeQR5B_normal.jpg", - "favourites_count": 4136, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450039947001487360/kSy6Eql1.jpeg", - "default_profile_image": false, - "id": 1682351, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 4834, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1682351/1400643238", - "is_translator": false - }, - { - "time_zone": "Europe/London", - "profile_use_background_image": false, - "description": "Consuming information like a grumpy black hole.", - "url": "http://t.co/HqE5vyOMdg", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 0, - "id_str": "1856851", - "blocking": false, - "is_translation_enabled": false, - "id": 1856851, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jonty.co.uk", - "url": "http://t.co/HqE5vyOMdg", - "expanded_url": "http://jonty.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "FFFFFF", - "created_at": "Thu Mar 22 10:28:39 +0000 2007", - "profile_image_url": "http://pbs.twimg.com/profile_images/680849128012804096/xrXBWtyI_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "008000", - "statuses_count": 8706, - "profile_sidebar_border_color": "A8A8A8", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680849128012804096/xrXBWtyI_normal.jpg", - "favourites_count": 8643, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 2221, - "blocked_by": false, - "following": false, - "location": "East London-ish", - "muting": false, - "friends_count": 1284, - "notifications": false, - "screen_name": "jonty", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 139, - "is_translator": false, - "name": "Jonty Wareing" - }, - { - "time_zone": "Wellington", - "profile_use_background_image": true, - "description": "Nowt special", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 46800, - "id_str": "292759417", - "blocking": false, - "is_translation_enabled": false, - "id": 292759417, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "131516", - "created_at": "Wed May 04 05:31:01 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/477032380654309376/T_r7O2po_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "statuses_count": 1549, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477032380654309376/T_r7O2po_normal.jpeg", - "favourites_count": 1251, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 328, - "blocked_by": false, - "following": false, - "location": "Pinehaven", - "muting": false, - "friends_count": 2016, - "notifications": false, - "screen_name": "Ben_Ackland", - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "is_translator": false, - "name": "Ben Ackland" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "92233629", - "following": false, - "friends_count": 930, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com/watch?v=81_rmO\u2026", - "url": "https://t.co/HixKgfv08O", - "expanded_url": "http://www.youtube.com/watch?v=81_rmOTjobk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/683538930306781184/Zzehev8y.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 417, - "location": "Twitter, Internet", - "screen_name": "butthaver", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "keith nutsack", - "profile_use_background_image": true, - "description": "toiliet", - "url": "https://t.co/HixKgfv08O", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678116785216974848/hlhMlLYg_normal.jpg", - "profile_background_color": "3B94D9", - "created_at": "Tue Nov 24 09:16:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678116785216974848/hlhMlLYg_normal.jpg", - "favourites_count": 15304, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/683538930306781184/Zzehev8y.jpg", - "default_profile_image": false, - "id": 92233629, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 35801, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/92233629/1412049137", - "is_translator": false - }, - { - "time_zone": "Volgograd", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 10800, - "id_str": "164281349", - "blocking": false, - "is_translation_enabled": false, - "id": 164281349, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "131516", - "created_at": "Thu Jul 08 13:52:48 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/2293631749/jja8suvmbcmheuwdpddc_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "statuses_count": 914, - "profile_sidebar_border_color": "EEEEEE", - "lang": "ru", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2293631749/jja8suvmbcmheuwdpddc_normal.jpeg", - "favourites_count": 3, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 20, - "blocked_by": false, - "following": false, - "location": "Russia, Moscow", - "muting": false, - "friends_count": 178, - "notifications": false, - "screen_name": "garrypt", - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "is_translator": false, - "name": "Igor" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "22802715", - "following": false, - "friends_count": 2285, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nbcbayarea.com", - "url": "https://t.co/dfHTR3NgWx", - "expanded_url": "http://www.nbcbayarea.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649038185813532674/PNn1fbM4.jpg", - "notifications": false, - "profile_sidebar_fill_color": "211A30", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 3855, - "location": "San Jose, CA", - "screen_name": "RobMayeda", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 164, - "name": "Rob Mayeda", - "profile_use_background_image": true, - "description": "New Dad, AMS Meteorologist, #Lupus awareness advocate, #CSUEB lecturer, #CrossFit adventurer, living with #CavalierKingCharles spaniels", - "url": "https://t.co/dfHTR3NgWx", - "profile_text_color": "6F6F80", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/620417612095184896/xIeGcEFE_normal.jpg", - "profile_background_color": "FFF04D", - "created_at": "Wed Mar 04 17:22:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/620417612095184896/xIeGcEFE_normal.jpg", - "favourites_count": 5841, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649038185813532674/PNn1fbM4.jpg", - "default_profile_image": false, - "id": 22802715, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 12591, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22802715/1451027401", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "770036047", - "blocking": false, - "is_translation_enabled": false, - "id": 770036047, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Aug 20 18:54:32 +0000 2012", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "favourites_count": 9, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 11, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 94, - "notifications": false, - "screen_name": "sjtrettel", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Steve" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "4095858439", - "blocking": false, - "is_translation_enabled": false, - "id": 4095858439, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Nov 01 23:35:51 +0000 2015", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 130, - "notifications": false, - "screen_name": "gianna11011", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Gianna" - }, - { - "time_zone": "Irkutsk", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 28800, - "id_str": "416204683", - "following": false, - "friends_count": 407, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "westernpacificweather.com", - "url": "http://t.co/UDlBzpJA2e", - "expanded_url": "http://westernpacificweather.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/701849715/9087f00b8fcd97f2639cb479f63ccb1b.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 2035, - "location": "Tokyo Japan", - "screen_name": "robertspeta", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 153, - "name": "Robert Speta", - "profile_use_background_image": true, - "description": "Weather geek from Machias, NY, working as a meteorologist for NHK World TV in Tokyo. Also run my own independent weather site.", - "url": "http://t.co/UDlBzpJA2e", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/534137706893152256/pX_IzDgF_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Sat Nov 19 11:10:44 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534137706893152256/pX_IzDgF_normal.jpeg", - "favourites_count": 1454, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/701849715/9087f00b8fcd97f2639cb479f63ccb1b.png", - "default_profile_image": false, - "id": 416204683, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 8733, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/416204683/1421968721", - "is_translator": false - }, - { - "time_zone": "Quito", - "profile_use_background_image": true, - "description": "Student meteorologist, communicator, autism researcher/writer and educator. Photographer. Light Python/web coder. Harry Potter and Person of Interest = life.", - "url": "https://t.co/DMbbZav7UV", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "286437628", - "blocking": false, - "is_translation_enabled": false, - "id": 286437628, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mattbolton.me", - "url": "https://t.co/DMbbZav7UV", - "expanded_url": "http://www.mattbolton.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 23 00:47:57 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/468527612646526976/G6uZh_gO_normal.jpeg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379044242/Double-Double-Sun2.jpg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "statuses_count": 2290, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/468527612646526976/G6uZh_gO_normal.jpeg", - "favourites_count": 3304, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 246, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 216, - "notifications": false, - "screen_name": "mboltonwx", - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379044242/Double-Double-Sun2.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "is_translator": false, - "name": "Matt Bolton" - }, - { - "time_zone": "Bogota", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "12651242", - "following": false, - "friends_count": 2342, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pcastano.tumblr.com", - "url": "http://t.co/uSFgyCmogK", - "expanded_url": "http://pcastano.tumblr.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/471848993790500865/3Eo4mVyu.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 4283, - "location": "Washington, D.C.", - "screen_name": "pcastano", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 131, - "name": "pcastano", - "profile_use_background_image": true, - "description": "And Kepler said to Galileo: Let us create vessels and sails adjusted to the heavenly ether, and there will be plenty of people unafraid of the empty wastes.", - "url": "http://t.co/uSFgyCmogK", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3108646177/18797838af40a0aeb58799a581b33c8c_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Thu Jan 24 18:40:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3108646177/18797838af40a0aeb58799a581b33c8c_normal.jpeg", - "favourites_count": 62484, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/471848993790500865/3Eo4mVyu.jpeg", - "default_profile_image": false, - "id": 12651242, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 115333, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12651242/1401331499", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "529840215", - "following": false, - "friends_count": 1501, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/452001810673188864/RJIYU0bw.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 547, - "location": "Eastern NC", - "screen_name": "WxPermitting", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "David Glenn", - "profile_use_background_image": true, - "description": "Meteorologist (NWS) in Eastern NC (MHX). Tweet about wx, saltwater fishing, and most sports. Go #UNC, #UNCW, #MSState., & #UofSC ! Opinions are mine only.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/474515536634601472/Pn6DtHue_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Mar 19 23:12:52 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/474515536634601472/Pn6DtHue_normal.jpeg", - "favourites_count": 1916, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452001810673188864/RJIYU0bw.jpeg", - "default_profile_image": false, - "id": 529840215, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 3145, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/529840215/1383879278", - "is_translator": false - }, - { - "time_zone": "Melbourne", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "40636840", - "following": false, - "friends_count": 1993, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jonathandavidbrent.com", - "url": "http://t.co/c9rOTUyfS0", - "expanded_url": "http://jonathandavidbrent.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/16406403/jono_myspace_dinosaurs_2.gif", - "notifications": false, - "profile_sidebar_fill_color": "FAFAFA", - "profile_link_color": "737373", - "geo_enabled": true, - "followers_count": 635, - "location": "Melbourne, Australia", - "screen_name": "jonomatopoeia", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Jonathan David Brent", - "profile_use_background_image": false, - "description": "Writer | Editor | Web content guy | UNIC\u2665DE.", - "url": "http://t.co/c9rOTUyfS0", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000117523809/d1a91b7d3b8ad9b4b468ce86db0490e9_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Sun May 17 09:57:24 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FAFAFA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000117523809/d1a91b7d3b8ad9b4b468ce86db0490e9_normal.jpeg", - "favourites_count": 415, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/16406403/jono_myspace_dinosaurs_2.gif", - "default_profile_image": false, - "id": 40636840, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 640, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/40636840/1413896959", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "20496789", - "following": false, - "friends_count": 429, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/lazaruslong", - "url": "https://t.co/8ktb0yshqu", - "expanded_url": "http://about.me/lazaruslong", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453778137/background.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "FF0000", - "geo_enabled": false, - "followers_count": 1725, - "location": "Los Angeles", - "screen_name": "ROCKETDRAG", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "McThrust LePayload", - "profile_use_background_image": true, - "description": "Mohawk'd Rocket Astronomer. Sunset enthusiast. Internet Dragon. He/Him/Dude Ex Astra, Scientia. #Mach25Club #opinionsmine #BipolarType1", - "url": "https://t.co/8ktb0yshqu", - "profile_text_color": "02AA9F", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680823559443226624/SeuL8RlF_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Feb 10 07:15:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680823559443226624/SeuL8RlF_normal.jpg", - "favourites_count": 9493, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453778137/background.png", - "default_profile_image": false, - "id": 20496789, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 120309, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/20496789/1398737738", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14458551", - "following": false, - "friends_count": 309, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jaredhead.com", - "url": "https://t.co/016SjoG2ZZ", - "expanded_url": "http://jaredhead.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/137279861/blog_abstract_imp.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "828282", - "geo_enabled": true, - "followers_count": 738, - "location": "Los Angeles", - "screen_name": "jaredhead", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "THE MOHAWK RETURNS", - "profile_use_background_image": true, - "description": "Mohawk'd Rocket Scientist Astronomer for @TMRO and @GriffithObserv. Living with Bipolar Type I.\n\nHe/Him/Dude\n\nEx Astra, Scientia. \n\n#opinionsmine", - "url": "https://t.co/016SjoG2ZZ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660861335433953284/gVkfAPVb_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Apr 21 05:02:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660861335433953284/gVkfAPVb_normal.jpg", - "favourites_count": 476, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/137279861/blog_abstract_imp.jpg", - "default_profile_image": false, - "id": 14458551, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 18326, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14458551/1399172052", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15489945", - "following": false, - "friends_count": 3045, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mashable.com", - "url": "http://t.co/VdC8HQfSBi", - "expanded_url": "http://www.mashable.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/713342514/5d4e2537a0680c5eda635fd2f682b638.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 13332, - "location": "iPhone: 40.805134,-73.965057", - "screen_name": "afreedma", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1039, - "name": "Andrew Freedman", - "profile_use_background_image": true, - "description": "Mashable's science editor reporting on climate science, policy & weather + other news/geekery. New dad. Andrew[at]mashable[dot]com.", - "url": "http://t.co/VdC8HQfSBi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/417419572463931392/XA9Zhu4j_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Sat Jul 19 04:44:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/417419572463931392/XA9Zhu4j_normal.jpeg", - "favourites_count": 415, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/713342514/5d4e2537a0680c5eda635fd2f682b638.jpeg", - "default_profile_image": false, - "id": 15489945, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 24229, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15489945/1398212960", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "192769408", - "following": false, - "friends_count": 113, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 90, - "location": "Florida, USA", - "screen_name": "Cyclonebiskit", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Brenden Moses", - "profile_use_background_image": true, - "description": "Hurricane enthusiast and researcher; presently working on the HURDAT reanalysis at the NHC.\nComments/opinions here are my own and not reflective of my employer.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638032842384101376/hVFibAUg_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 20 02:53:32 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638032842384101376/hVFibAUg_normal.png", - "favourites_count": 287, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 192769408, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 224, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/192769408/1440967205", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "911455968", - "following": false, - "friends_count": 809, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "juliandiamond.smugmug.com", - "url": "http://t.co/mDm3jdtldR", - "expanded_url": "http://juliandiamond.smugmug.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/696554695/00309db64bc8bafb83a3903da87b5adc.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 288, - "location": "Poughkeepsie, NY", - "screen_name": "juliancd38", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Julian Diamond", - "profile_use_background_image": true, - "description": "Meteorology student, photographer, stargazer, aurora chaser, and pyro enthusiast, at the corner of Walk and Don't Walk somewhere on U.S. 1", - "url": "http://t.co/mDm3jdtldR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000167323349/2823451e8a39300a1df560fdfd4ec2ff_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 29 01:08:21 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000167323349/2823451e8a39300a1df560fdfd4ec2ff_normal.jpeg", - "favourites_count": 4209, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/696554695/00309db64bc8bafb83a3903da87b5adc.jpeg", - "default_profile_image": false, - "id": 911455968, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1408, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/911455968/1450207205", - "is_translator": false - }, - { - "time_zone": "UTC", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "14822329", - "following": false, - "friends_count": 163, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "F5ABB5", - "geo_enabled": false, - "followers_count": 29, - "location": "", - "screen_name": "juntora", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "juntora", - "profile_use_background_image": false, - "description": "a wonderful and rare manifestation of universal curiosity. Free thinker loves science, cooking, dancing, making things, music. living in Berlin with her son", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685395560250109953/mW7_2sXn_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun May 18 17:03:35 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685395560250109953/mW7_2sXn_normal.jpg", - "favourites_count": 68, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 14822329, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 265, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14822329/1452246103", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "13148", - "following": false, - "friends_count": 880, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "liamcooke.com", - "url": "https://t.co/Wz4bls6kQh", - "expanded_url": "http://liamcooke.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "848484", - "geo_enabled": false, - "followers_count": 1605, - "location": "AFK", - "screen_name": "inky", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 104, - "name": "Liam", - "profile_use_background_image": false, - "description": "ambient music + art bots", - "url": "https://t.co/Wz4bls6kQh", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660938666668384256/goDqCydt_normal.jpg", - "profile_background_color": "EDEDF4", - "created_at": "Mon Nov 20 00:04:50 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660938666668384256/goDqCydt_normal.jpg", - "favourites_count": 63934, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", - "default_profile_image": false, - "id": 13148, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 26235, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13148/1447542687", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2995432416", - "following": false, - "friends_count": 254, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "christopherwalsh.cc", - "url": "https://t.co/FpkcAwZT9U", - "expanded_url": "http://www.christopherwalsh.cc", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/559257685112012803/uzR73gF8.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "666666", - "geo_enabled": false, - "followers_count": 44, - "location": "", - "screen_name": "WalshGestalt", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Christopher Walsh", - "profile_use_background_image": false, - "description": "", - "url": "https://t.co/FpkcAwZT9U", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658806196309270528/sgeeGbLm_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Sun Jan 25 06:15:48 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658806196309270528/sgeeGbLm_normal.jpg", - "favourites_count": 495, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/559257685112012803/uzR73gF8.jpeg", - "default_profile_image": false, - "id": 2995432416, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 103, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2995432416/1447036047", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "492752830", - "following": false, - "friends_count": 692, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sites.google.com/site/timlinmet\u2026", - "url": "https://t.co/F91X3chcrF", - "expanded_url": "https://sites.google.com/site/timlinmeteorology/home", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 459, - "location": "NW of 40/70 Benchmark", - "screen_name": "joshtimlin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "Josh Timlin", - "profile_use_background_image": true, - "description": "Teach & learn about #EarthScience and #Meteorology for a living | Long Island, NY", - "url": "https://t.co/F91X3chcrF", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669529002151907328/QfnsNvRy_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Wed Feb 15 02:43:19 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669529002151907328/QfnsNvRy_normal.jpg", - "favourites_count": 4517, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile_image": false, - "id": 492752830, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5396, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/492752830/1438742098", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "196457689", - "following": false, - "friends_count": 451, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "F5B40E", - "geo_enabled": true, - "followers_count": 127, - "location": "Connecticut", - "screen_name": "DavidMRohde", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "David Rohde", - "profile_use_background_image": true, - "description": "A geographer interested in nature above and below its surface, and managing a missed calling to meteorology through observation. Consultant @Google. K\u03a3 EZ Alum", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3592523027/11339bd5555a0e0e666dad39c16f3c2a_normal.png", - "profile_background_color": "131516", - "created_at": "Wed Sep 29 04:10:41 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3592523027/11339bd5555a0e0e666dad39c16f3c2a_normal.png", - "favourites_count": 4920, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 196457689, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1418, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/196457689/1437445354", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "225616331", - "following": false, - "friends_count": 505, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "streetwanderer.com", - "url": "http://t.co/alX5eWcfhG", - "expanded_url": "http://www.streetwanderer.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "038543", - "geo_enabled": false, - "followers_count": 223, - "location": "Montr\u00e9al", - "screen_name": "StreetWanderer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "Nicolas L.", - "profile_use_background_image": false, - "description": "Every good idea borders on the stupid. UX Design, Photography, Random computer things. \nI want to retire on Mars.", - "url": "http://t.co/alX5eWcfhG", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/530183088353972225/HPUB_4dK_normal.jpeg", - "profile_background_color": "ABB8C2", - "created_at": "Sun Dec 12 01:12:25 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/530183088353972225/HPUB_4dK_normal.jpeg", - "favourites_count": 33, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 225616331, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3573, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/225616331/1415240501", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "digital circadia, transition and tone, {{{{{ Love }}}}} Mama bear, Director of Hardware Engineering at Slate Digital", - "url": "https://t.co/1q12I0DE5n", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "55434790", - "blocking": false, - "is_translation_enabled": false, - "id": 55434790, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "slatemt.com", - "url": "https://t.co/1q12I0DE5n", - "expanded_url": "http://www.slatemt.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "1A1B1F", - "created_at": "Fri Jul 10 01:55:18 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/668482479280418816/STtA03bi_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/61363566/800px-Kt88_power_tubes_in_traynor_yba200_amplifier.jpg", - "default_profile": false, - "profile_text_color": "666666", - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "statuses_count": 316, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668482479280418816/STtA03bi_normal.jpg", - "favourites_count": 236, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 246, - "blocked_by": false, - "following": false, - "location": "LA", - "muting": false, - "friends_count": 198, - "notifications": false, - "screen_name": "resistordog", - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/61363566/800px-Kt88_power_tubes_in_traynor_yba200_amplifier.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "is_translator": false, - "name": "Erika Earl" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3736932253", - "following": false, - "friends_count": 589, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 76, - "location": "", - "screen_name": "ColeLovesBots", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "cole loves bots", - "profile_use_background_image": true, - "description": "I follow the bots so @colewillsea can focus on engaging with other meat bots. I give updates to @colewillsea on what the bots do. I have root privileges.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649204796210089984/hGXModSc_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 30 12:44:28 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649204796210089984/hGXModSc_normal.jpg", - "favourites_count": 1574, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3736932253, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1249, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3736932253/1443617502", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "DaVinci said we'd always look at the sky, longing to be there. I love to fly, and I have always wanted to know how things work, and fix them.", - "url": "http://t.co/MYEImHw1GT", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "37240298", - "blocking": false, - "is_translation_enabled": false, - "id": 37240298, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "yeah.org/~berry", - "url": "http://t.co/MYEImHw1GT", - "expanded_url": "http://www.yeah.org/~berry", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "8B542B", - "created_at": "Sat May 02 17:27:53 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/192965242/1k-DSCF0236_normal.JPG", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "statuses_count": 1170, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/192965242/1k-DSCF0236_normal.JPG", - "favourites_count": 114, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 376, - "blocked_by": false, - "following": false, - "location": "MSP", - "muting": false, - "friends_count": 507, - "notifications": false, - "screen_name": "seanbseanb", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "is_translator": false, - "name": "Sean Berry" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "58889232", - "following": false, - "friends_count": 700, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tiny.cc/osnw3wxclimate", - "url": "https://t.co/tDtJtEWA30", - "expanded_url": "http://tiny.cc/osnw3wxclimate", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 599, - "location": "Oshkosh, WI", - "screen_name": "OSNW3", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 38, - "name": "Josh Herman", - "profile_use_background_image": true, - "description": "Husband. Father. Oshkosh. Weather fan. Radar loops. Data. Charts. Precipitation enthusiast. \u2600\ufe0f\u2614\ufe0f\u26a1\ufe0f", - "url": "https://t.co/tDtJtEWA30", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/465940754703978496/QYF_3DUI_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jul 21 19:18:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/465940754703978496/QYF_3DUI_normal.jpeg", - "favourites_count": 7854, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 58889232, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 11441, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/58889232/1398196714", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "40323299", - "blocking": false, - "is_translation_enabled": false, - "id": 40323299, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri May 15 20:18:13 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000105051062/be2bfec45024d16bf6726ea007d25fb2_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 12, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000105051062/be2bfec45024d16bf6726ea007d25fb2_normal.jpeg", - "favourites_count": 2, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 19, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 58, - "notifications": false, - "screen_name": "jmb443", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Jon Burdette" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2492541432", - "following": false, - "friends_count": 414, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cs.au.dk/~adc", - "url": "https://t.co/LcgGlsdkCS", - "expanded_url": "https://cs.au.dk/~adc", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/470538689903218689/OuxG2tAs.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "006399", - "geo_enabled": true, - "followers_count": 237, - "location": "Thisted, Denmark", - "screen_name": "DamsgaardAnders", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Anders Damsgaard", - "profile_use_background_image": true, - "description": "PhD in geoscience. Interested in glaciers, climate, mechanics, numerical modeling, and infosec. See @DSCOVRbot.", - "url": "https://t.co/LcgGlsdkCS", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663650017018830848/RrvPqXR3_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue May 13 07:10:11 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663650017018830848/RrvPqXR3_normal.jpg", - "favourites_count": 943, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/470538689903218689/OuxG2tAs.jpeg", - "default_profile_image": false, - "id": 2492541432, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 247, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2492541432/1401020524", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "17271646", - "following": false, - "friends_count": 1153, - "entities": { - "description": { - "urls": [ - { - "display_url": "playfabulousbeasts.com", - "url": "https://t.co/jaDUJzRbdm", - "expanded_url": "http://playfabulousbeasts.com/", - "indices": [ - 63, - 86 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "v21.io", - "url": "http://t.co/ii4wyeCVLA", - "expanded_url": "http://v21.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5569506/office_baby.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 2947, - "location": "London, UK", - "screen_name": "v21", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 119, - "name": "George Buckenham", - "profile_use_background_image": true, - "description": "I'm making a game about failing to stack animals in a big pile https://t.co/jaDUJzRbdm\nI killed bot o'clock.", - "url": "http://t.co/ii4wyeCVLA", - "profile_text_color": "919191", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2271384465/mlt5v0btabp3oc7s90h6_normal.png", - "profile_background_color": "000000", - "created_at": "Sun Nov 09 18:02:07 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FF1A1A", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2271384465/mlt5v0btabp3oc7s90h6_normal.png", - "favourites_count": 6239, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5569506/office_baby.png", - "default_profile_image": false, - "id": 17271646, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 36011, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17271646/1358199703", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2777170478", - "following": false, - "friends_count": 309, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rachelstorer.com", - "url": "http://t.co/2sv19LH0PD", - "expanded_url": "http://rachelstorer.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 116, - "location": "San Diego", - "screen_name": "cloudsinmybeer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Rachel Storer", - "profile_use_background_image": true, - "description": "Postdoc at JPL. Weather nerd.", - "url": "http://t.co/2sv19LH0PD", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/618099100962033664/jPQuWFQF_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Aug 28 21:26:09 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/618099100962033664/jPQuWFQF_normal.jpg", - "favourites_count": 906, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2777170478, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 763, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2777170478/1436201500", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Views expressed herein are my own and not affiliated with government or professional organizations.", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "1447500740", - "blocking": false, - "is_translation_enabled": false, - "id": 1447500740, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue May 21 23:26:40 +0000 2013", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 2708, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", - "favourites_count": 4599, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 142, - "blocked_by": false, - "following": false, - "location": "Mississippi ", - "muting": false, - "friends_count": 1245, - "notifications": false, - "screen_name": "danw5211", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "is_translator": false, - "name": "Dan Wiggins" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "739990838", - "following": false, - "friends_count": 192, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 24, - "location": "", - "screen_name": "ramnath_mallya", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Ramnath Mallya", - "profile_use_background_image": true, - "description": "Views expressed are my own and not that of my employer.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/607125225818316800/2k462Cjz_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Aug 06 06:26:21 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/607125225818316800/2k462Cjz_normal.jpg", - "favourites_count": 28, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 739990838, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 108, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/739990838/1433584878", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "415588655", - "following": false, - "friends_count": 297, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thewildair.com", - "url": "http://t.co/ySsRKqZVjg", - "expanded_url": "http://www.thewildair.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 85, - "location": "Edinburgh, Scotland.", - "screen_name": "KristieDeGaris", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Kristie De Garis", - "profile_use_background_image": true, - "description": "Bit of this, bit of that. Can't resist an anthropomorphic dog meme.", - "url": "http://t.co/ySsRKqZVjg", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641348289208578049/fHnphcHM_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Nov 18 14:54:05 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641348289208578049/fHnphcHM_normal.jpg", - "favourites_count": 97, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 415588655, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 468, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/415588655/1441744379", - "is_translator": false - }, - { - "time_zone": "Chennai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "2831471840", - "following": false, - "friends_count": 57, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chennairains.com", - "url": "https://t.co/HUVHA0LycU", - "expanded_url": "http://www.chennairains.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 44389, - "location": "Chennai, Tamil Nadu", - "screen_name": "ChennaiRains", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 72, - "name": "ChennaiRains", - "profile_use_background_image": true, - "description": "Independent Weather Blogging Community from Chennai. Providing weather updates for events influencing Chennai & South India.", - "url": "https://t.co/HUVHA0LycU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/528178045153067011/DvaP7QZh_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Sep 25 09:02:35 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/528178045153067011/DvaP7QZh_normal.jpeg", - "favourites_count": 2354, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2831471840, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5791, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2831471840/1439434147", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "586783391", - "following": false, - "friends_count": 405, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "002BFF", - "geo_enabled": true, - "followers_count": 614, - "location": "Austin/San Antonio, TX", - "screen_name": "ZombieTrev5k", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Trevor Boucher", - "profile_use_background_image": true, - "description": "Meteorologist at @NWSSanAntonio. NWA Social Media Committee Member. Big on Deaf Outreach #VOST #SAVI and risk perception.Texas Tech '08 & '10. Views are my own.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/554561593892032512/yhfcgQwq_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Mon May 21 19:03:42 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/554561593892032512/yhfcgQwq_normal.jpeg", - "favourites_count": 2678, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 586783391, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 9082, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/586783391/1400596059", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "145018802", - "blocking": false, - "is_translation_enabled": false, - "id": 145018802, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon May 17 22:59:21 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/477493597168603137/G_nfuG-6_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 42, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477493597168603137/G_nfuG-6_normal.jpeg", - "favourites_count": 54, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 44, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 297, - "notifications": false, - "screen_name": "JackHJr", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Jack Hengst" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": false, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "21632468", - "blocking": false, - "is_translation_enabled": false, - "id": 21632468, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "352726", - "created_at": "Mon Feb 23 04:59:18 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/654714331762810880/ASBo2bMO_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4914338/Pine_cones__male_and_female.jpg", - "default_profile": false, - "profile_text_color": "3E4415", - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "statuses_count": 3, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654714331762810880/ASBo2bMO_normal.jpg", - "favourites_count": 12, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 21, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 384, - "notifications": false, - "screen_name": "mrkel", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4914338/Pine_cones__male_and_female.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Mike Kelley" - }, - { - "time_zone": "Buenos Aires", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "1938746702", - "following": false, - "friends_count": 267, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/670259797141385216/yA9lZvPx.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "A6A6A6", - "geo_enabled": false, - "followers_count": 387, - "location": "Argentina", - "screen_name": "LePongoAle", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Alejandro", - "profile_use_background_image": true, - "description": "Un DVR de series, televisi\u00f3n y una gu\u00eda de tv.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/613224450994106368/xEOyK_yz_normal.jpg", - "profile_background_color": "A6A6A6", - "created_at": "Sat Oct 05 20:16:29 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/613224450994106368/xEOyK_yz_normal.jpg", - "favourites_count": 7139, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/670259797141385216/yA9lZvPx.png", - "default_profile_image": false, - "id": 1938746702, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 10196, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1938746702/1447337102", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2378057094", - "following": false, - "friends_count": 417, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 126, - "location": "", - "screen_name": "gnirtsmodnar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "lookitscarl", - "profile_use_background_image": false, - "description": "Please explain to me the scientific nature of 'the whammy'.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/611373116510507009/G2GnoSPl_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Mar 08 03:34:32 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/611373116510507009/G2GnoSPl_normal.jpg", - "favourites_count": 1055, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2378057094, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 835, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2378057094/1425070497", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "21634600", - "following": false, - "friends_count": 779, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 13122, - "location": "", - "screen_name": "coreyspowell", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 706, - "name": "Corey S. Powell", - "profile_use_background_image": true, - "description": "Science editor at @aeonmag. Editor-at-large at @discovermag. Astronomy and space obsessive. Curious fellow.", - "url": null, - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684127003537223681/9ZfUS1gc_normal.jpg", - "profile_background_color": "0099B9", - "created_at": "Mon Feb 23 05:46:25 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684127003537223681/9ZfUS1gc_normal.jpg", - "favourites_count": 6645, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "default_profile_image": false, - "id": 21634600, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 10404, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21634600/1377427189", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "152799744", - "following": false, - "friends_count": 108, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 50, - "location": "Melbourne, Aus", - "screen_name": "jcbmmx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "James Bennett", - "profile_use_background_image": true, - "description": "CSIRO scientist: streamflow forecasting. Views are, unsurprisingly, my own. Like a sharp, reliable ensemble forecast? Me too.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/627360837980651521/7mzPpTf4_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jun 06 22:39:39 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/627360837980651521/7mzPpTf4_normal.jpg", - "favourites_count": 29, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 152799744, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 148, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/152799744/1438409471", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "10580652", - "following": false, - "friends_count": 203, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paranoidprose.com", - "url": "http://t.co/AGwThkEoE5", - "expanded_url": "http://paranoidprose.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2785353/bestcourse.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 242, - "location": "Weehawken, NJ", - "screen_name": "alberg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Al Berg", - "profile_use_background_image": true, - "description": "By day, Chief Security & Risk Officer in financial services. By night, EMT and local history nerd.", - "url": "http://t.co/AGwThkEoE5", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/555535485053845504/arcpDVRd_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Mon Nov 26 02:38:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/555535485053845504/arcpDVRd_normal.jpeg", - "favourites_count": 61, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2785353/bestcourse.jpg", - "default_profile_image": false, - "id": 10580652, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1674, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10580652/1383147005", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "30363057", - "following": false, - "friends_count": 75, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 16, - "location": "", - "screen_name": "ELD_3", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Eddie Divita", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/618847431539556352/qN8JLsLs_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 11 01:23:15 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/618847431539556352/qN8JLsLs_normal.jpg", - "favourites_count": 157, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 30363057, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 142, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/30363057/1436379700", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2428028178", - "following": false, - "friends_count": 341, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 20, - "location": "", - "screen_name": "LizCohee", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Liz Cohee", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/452641792848961538/BVxj8jEX_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 05 00:26:35 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/452641792848961538/BVxj8jEX_normal.jpeg", - "favourites_count": 14, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2428028178, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 8, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2428028178/1397234179", - "is_translator": false - }, - { - "time_zone": "Arizona", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -25200, - "id_str": "33526366", - "blocking": false, - "is_translation_enabled": false, - "id": 33526366, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Apr 20 14:20:57 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/2455291396/image_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 37, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2455291396/image_normal.jpg", - "favourites_count": 91, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 67, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 435, - "notifications": false, - "screen_name": "adamgubser", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Adam Gubser" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Tech junkie, ice sculptor, artist, musician, cook, Tapatio enthusiast. I care about lots of things.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "3742139896", - "blocking": false, - "is_translation_enabled": false, - "id": 3742139896, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 22 20:02:44 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/646416952223731712/_80xJXf7_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 41, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/646416952223731712/_80xJXf7_normal.jpg", - "favourites_count": 419, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 15, - "blocked_by": false, - "following": false, - "location": "United States", - "muting": false, - "friends_count": 143, - "notifications": false, - "screen_name": "PalThinks", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Pal" - }, - { - "time_zone": "Sydney", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 39600, - "id_str": "89360546", - "blocking": false, - "is_translation_enabled": false, - "id": 89360546, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu Nov 12 03:22:57 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/522601401/images_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 4, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522601401/images_normal.jpeg", - "favourites_count": 8, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 64, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 442, - "notifications": false, - "screen_name": "MichaelPriebe", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Michael Priebe" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "1750241", - "following": false, - "friends_count": 1809, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/jason.r.hunter", - "url": "https://t.co/JxN18vI11f", - "expanded_url": "http://about.me/jason.r.hunter", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/680917174/4b931e6f6a67f41a089ad31e73aef0ac.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "323233", - "geo_enabled": true, - "followers_count": 1490, - "location": "Krugerville, TX", - "screen_name": "coreburn", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 115, - "name": "Jason R. Hunter", - "profile_use_background_image": true, - "description": "", - "url": "https://t.co/JxN18vI11f", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680747860300673024/2f3I2LTa_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Mar 21 14:16:12 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680747860300673024/2f3I2LTa_normal.jpg", - "favourites_count": 119148, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/680917174/4b931e6f6a67f41a089ad31e73aef0ac.jpeg", - "default_profile_image": false, - "id": 1750241, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 39038, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1750241/1424283930", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "156866068", - "following": false, - "friends_count": 2264, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": false, - "followers_count": 633, - "location": "", - "screen_name": "jane_austin14", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "jane", - "profile_use_background_image": false, - "description": "artsy newsy quirky lovey (re)tweets that catch my fancy. trump-free zone. #mn", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1126854579/coffee_and_paris_book_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Jun 18 04:28:25 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1126854579/coffee_and_paris_book_normal.jpg", - "favourites_count": 6005, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "default_profile_image": false, - "id": 156866068, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4710, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/156866068/1419828867", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "302150880", - "following": false, - "friends_count": 425, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/613286059/x1f38368757eb5855def28108f291a47.jpg", - "notifications": false, - "profile_sidebar_fill_color": "061127", - "profile_link_color": "52555C", - "geo_enabled": true, - "followers_count": 176, - "location": "Richmond, Virginia", - "screen_name": "WxJAK", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Jacob Klee", - "profile_use_background_image": true, - "description": "Follower of Christ; Husband to the Excellent & Beautiful Jennifer; Father; Severe Wx Meteorologist. Tweets are my own; Retweets are not Endorsements.", - "url": null, - "profile_text_color": "827972", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/517027006882406402/IcDSx4h__normal.jpeg", - "profile_background_color": "59472F", - "created_at": "Fri May 20 17:51:22 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000515", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/517027006882406402/IcDSx4h__normal.jpeg", - "favourites_count": 13539, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/613286059/x1f38368757eb5855def28108f291a47.jpg", - "default_profile_image": false, - "id": 302150880, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6504, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/302150880/1397738672", - "is_translator": false - }, - { - "time_zone": "Alaska", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -32400, - "id_str": "103098916", - "blocking": false, - "is_translation_enabled": false, - "id": 103098916, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Jan 08 22:06:14 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/2311043715/1mvjeaoteye18q84t9on_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 48, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2311043715/1mvjeaoteye18q84t9on_normal.jpeg", - "favourites_count": 5, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 20, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 307, - "notifications": false, - "screen_name": "JimSyme", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Jim Syme" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1535353321", - "following": false, - "friends_count": 66, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 31, - "location": "Brooklyn, New York", - "screen_name": "BlaiseBace", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Blaise Bace", - "profile_use_background_image": false, - "description": "All things digital, in a lurking kind of way...", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/642142784498085888/5HWLNDwB_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Jun 21 00:05:50 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/642142784498085888/5HWLNDwB_normal.jpg", - "favourites_count": 5, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1535353321, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 21, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1535353321/1424143604", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2859249170", - "following": false, - "friends_count": 239, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 74, - "location": "", - "screen_name": "EricArnoys", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Eric Arnoys", - "profile_use_background_image": true, - "description": "husband, father, biochemist, wonderer more than wanderer, nanonaut", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/523126137610711041/Qb_PWiM3_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Oct 17 03:00:14 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/523126137610711041/Qb_PWiM3_normal.jpeg", - "favourites_count": 690, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2859249170, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 311, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2859249170/1413515559", - "is_translator": false - }, - { - "time_zone": "Brisbane", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 36000, - "id_str": "245216468", - "following": false, - "friends_count": 632, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thejezabels.com", - "url": "http://t.co/kZQjQPLyPm", - "expanded_url": "http://www.thejezabels.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 808, - "location": "Sydney, Australia", - "screen_name": "samuelhlockwood", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Samuel Lockwood", - "profile_use_background_image": true, - "description": "Hey there I'm the guitarist from Sydney band The Jezabels. Follow me for sporadic updates on the band. And maybe some interesting things about my life.", - "url": "http://t.co/kZQjQPLyPm", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667140859633135616/TAPnBw2T_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 31 04:36:34 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667140859633135616/TAPnBw2T_normal.jpg", - "favourites_count": 44, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 245216468, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 964, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/245216468/1447893729", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "Water moving through human and natural landscapes! silly weather videos! iNaturalist and other tech nature stuff! vegetation mapping! attmpts at indie game dev!", - "url": "http://t.co/VsM1LavdNX", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "275304259", - "blocking": false, - "is_translation_enabled": false, - "id": 275304259, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "coyot.es/slowwatermovem\u2026", - "url": "http://t.co/VsM1LavdNX", - "expanded_url": "http://coyot.es/slowwatermovement", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Apr 01 01:11:45 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/1403758252/image_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 4164, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1403758252/image_normal.jpg", - "favourites_count": 2037, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 381, - "blocked_by": false, - "following": false, - "location": "Vermont", - "muting": false, - "friends_count": 361, - "notifications": false, - "screen_name": "SlowWaterMvmnt", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "is_translator": false, - "name": "Charlie Hohn" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "106995334", - "following": false, - "friends_count": 1304, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/191033033/IMG_3915-web.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 337, - "location": "Kansas City, MO", - "screen_name": "mizzouwxman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Chris Foltz", - "profile_use_background_image": true, - "description": "Father, Husband, Emergency Response Specialist @ NWS Central Region Headquarters. Tweets are my own. . M-I-Z!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670083920466223113/mo-IfkKz_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jan 21 08:33:53 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670083920466223113/mo-IfkKz_normal.jpg", - "favourites_count": 1605, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/191033033/IMG_3915-web.jpg", - "default_profile_image": false, - "id": 106995334, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1824, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/106995334/1441135358", - "is_translator": false - }, - { - "time_zone": "New Delhi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "44309422", - "following": false, - "friends_count": 741, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 306, - "location": "", - "screen_name": "PainkillerGSV", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Painkiller GSV", - "profile_use_background_image": true, - "description": "Jack of Many Trades & Master Of One. Here to collect & distribute useless information.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631448096166141952/57L32WPH_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Wed Jun 03 06:38:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631448096166141952/57L32WPH_normal.jpg", - "favourites_count": 1878, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 44309422, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9046, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/44309422/1448961548", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2921789080", - "blocking": false, - "is_translation_enabled": false, - "id": 2921789080, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Dec 14 18:26:43 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/607379037858725888/hoYuiiHD_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 19, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/607379037858725888/hoYuiiHD_normal.jpg", - "favourites_count": 358, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 27, - "blocked_by": false, - "following": false, - "location": "Indiana, USA", - "muting": false, - "friends_count": 306, - "notifications": false, - "screen_name": "SheilaLookinBak", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "SheilaLookingBak" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "138008977", - "following": false, - "friends_count": 779, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629310718/hits4ujgur782p52j4sd.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 511, - "location": "Cheyenne, WY", - "screen_name": "BeccMaz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "Becs", - "profile_use_background_image": true, - "description": "you can find me lost in the music, marveling at the sky, or in the mountains.", - "url": null, - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638776708527689729/aqS92yzs_normal.jpg", - "profile_background_color": "642D8B", - "created_at": "Wed Apr 28 11:20:10 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638776708527689729/aqS92yzs_normal.jpg", - "favourites_count": 2628, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629310718/hits4ujgur782p52j4sd.jpeg", - "default_profile_image": false, - "id": 138008977, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 27411, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/138008977/1355825279", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2895272489", - "following": false, - "friends_count": 479, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 53, - "location": "Napghanistan", - "screen_name": "scozie11", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Scozie", - "profile_use_background_image": false, - "description": "Words", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675038439151173633/G8Em68Wo_normal.png", - "profile_background_color": "000000", - "created_at": "Thu Nov 27 23:05:44 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675038439151173633/G8Em68Wo_normal.png", - "favourites_count": 1287, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2895272489, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 441, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2895272489/1449779203", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "826898994", - "following": false, - "friends_count": 871, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "maynoothuniversity.ie/geography/our-\u2026", - "url": "https://t.co/TGLL6EYnaZ", - "expanded_url": "https://www.maynoothuniversity.ie/geography/our-people/alistair-fraser", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 497, - "location": "Ireland & Mexico", - "screen_name": "AFraser_NUIM", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Alistair Fraser", - "profile_use_background_image": true, - "description": "Geography lecturer at Maynooth University, Ireland.", - "url": "https://t.co/TGLL6EYnaZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/530277487352508416/RHKfjw_q_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Sep 16 10:49:39 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/530277487352508416/RHKfjw_q_normal.jpeg", - "favourites_count": 1859, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 826898994, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3383, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/826898994/1379099517", - "is_translator": false - }, - { - "time_zone": "Islamabad", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 18000, - "id_str": "867477402", - "following": false, - "friends_count": 351, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/Zedzeds", - "url": "https://t.co/BKAJxQDth4", - "expanded_url": "https://twitter.com/Zedzeds", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 130, - "location": "Maldives", - "screen_name": "Zedzeds", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Zambe", - "profile_use_background_image": true, - "description": "born to pay rent + tax and die. from #millionaires #paradise Rajjethere nt atholhuthere . all things #fish n #aquaculture", - "url": "https://t.co/BKAJxQDth4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659619946758955008/g_vQXkY5_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 08 05:45:16 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659619946758955008/g_vQXkY5_normal.jpg", - "favourites_count": 200, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 867477402, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2419, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/867477402/1392566216", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "191558116", - "following": false, - "friends_count": 682, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 104, - "location": "California, USA", - "screen_name": "HardRockKitchen", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "HRK", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659389559642304512/n7xb8HfH_normal.jpg", - "profile_background_color": "ABB8C2", - "created_at": "Thu Sep 16 19:08:47 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659389559642304512/n7xb8HfH_normal.jpg", - "favourites_count": 174, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 191558116, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 109, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/191558116/1446045784", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "23730486", - "following": false, - "friends_count": 746, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bryanleboff.com", - "url": "http://t.co/yvd5TuU4Wm", - "expanded_url": "http://bryanleboff.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "E86500", - "geo_enabled": true, - "followers_count": 392, - "location": "philadelphia, pa", - "screen_name": "leboff", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Bryan Leboff", - "profile_use_background_image": true, - "description": "Renowned Hipster. These are not intended to be factual statements. RTs are clearly endorsements.", - "url": "http://t.co/yvd5TuU4Wm", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/464392882133032960/LIb9z9I8_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Mar 11 06:09:34 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/464392882133032960/LIb9z9I8_normal.jpeg", - "favourites_count": 505, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 23730486, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6469, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23730486/1399553526", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Independent thinker and optimist (most of the time!). Fields: law, history.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2275022184", - "blocking": false, - "is_translation_enabled": false, - "id": 2275022184, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Jan 03 20:02:24 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/419866729758482433/AQ62EeXV_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 66, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/419866729758482433/AQ62EeXV_normal.jpeg", - "favourites_count": 17, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 36, - "blocked_by": false, - "following": false, - "location": "Planet Earth", - "muting": false, - "friends_count": 359, - "notifications": false, - "screen_name": "RuthDReichard", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "is_translator": false, - "name": "Ruth D Reichard" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Studying ecology, geology, economics, and related stuff. Hope to know something someday and that you can tell. Not much politics here.", - "url": "http://t.co/Q89OH5i5ih", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "30312152", - "blocking": false, - "is_translation_enabled": false, - "id": 30312152, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stevepaulson.org", - "url": "http://t.co/Q89OH5i5ih", - "expanded_url": "http://stevepaulson.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Apr 10 21:02:17 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/1368887559/Dogon_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 587, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1368887559/Dogon_normal.jpg", - "favourites_count": 90, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 102, - "blocked_by": false, - "following": false, - "location": "USA ~ Pacific Northwest", - "muting": false, - "friends_count": 649, - "notifications": false, - "screen_name": "stevepaulson", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "is_translator": false, - "name": "Steve Paulson" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "269045721", - "blocking": false, - "is_translation_enabled": false, - "id": 269045721, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Mar 20 00:38:01 +0000 2011", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 2, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", - "favourites_count": 22, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 41, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 732, - "notifications": false, - "screen_name": "jackcorroon", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Jack Corroon" - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "924522715", - "following": false, - "friends_count": 187, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "standalonedjs.com", - "url": "https://t.co/YPNtbv91cw", - "expanded_url": "http://standalonedjs.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/727664122/1dd3f55d1f5f8c15815fb167fb1468bc.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 55, - "location": "Durango, Colorado, USA", - "screen_name": "mowglidgo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Meyers", - "profile_use_background_image": true, - "description": "Born, raised, and living in Durango, CO. Co-Owner of Stand Alone Entertainment, a Mobile DJ and Promotion Company.", - "url": "https://t.co/YPNtbv91cw", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2924928501/5aedd6fbcd514c9198599fdf94e309a7_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Sun Nov 04 02:53:57 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2924928501/5aedd6fbcd514c9198599fdf94e309a7_normal.jpeg", - "favourites_count": 503, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/727664122/1dd3f55d1f5f8c15815fb167fb1468bc.jpeg", - "default_profile_image": false, - "id": 924522715, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 94, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/924522715/1449306606", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "39511684", - "following": false, - "friends_count": 681, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "0099B9", - "geo_enabled": true, - "followers_count": 257, - "location": "Chicago, IL", - "screen_name": "Kelpher", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Kelpher", - "profile_use_background_image": true, - "description": "You don't know me. I don't know you. Follow me or don't follow me. Does it really matter? Does anyone read these things anyway?", - "url": null, - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683478663078227969/AeHlN7Sz_normal.jpg", - "profile_background_color": "0099B9", - "created_at": "Tue May 12 14:36:06 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683478663078227969/AeHlN7Sz_normal.jpg", - "favourites_count": 7530, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "default_profile_image": false, - "id": 39511684, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 772, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39511684/1451438802", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "132399660", - "following": false, - "friends_count": 591, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mrhollister.com", - "url": "https://t.co/tL99dmVTxU", - "expanded_url": "http://www.mrhollister.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/782602713/0c9fd1dbc9d43ce91b468025393f4ff2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "085169", - "geo_enabled": true, - "followers_count": 577, - "location": "Turlock, Ca", - "screen_name": "phaneritic", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 51, - "name": "Ryan Hollister", - "profile_use_background_image": false, - "description": "GeoSci & EnviroSci Educator, WildLink Club Advisor, Hiker, Landscape photog, Central Valley Advocate. 2015 NAGT FW OEST. Love adventures w/ @Xeno_lith & Zephyr.", - "url": "https://t.co/tL99dmVTxU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684986332653854720/JlqoKK7-_normal.jpg", - "profile_background_color": "022330", - "created_at": "Tue Apr 13 03:54:35 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684986332653854720/JlqoKK7-_normal.jpg", - "favourites_count": 2628, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/782602713/0c9fd1dbc9d43ce91b468025393f4ff2.jpeg", - "default_profile_image": false, - "id": 132399660, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 12657, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132399660/1442300967", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "390512763", - "blocking": false, - "is_translation_enabled": false, - "id": 390512763, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Oct 14 02:57:21 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/2599638321/9riagpoagc6vy36tcn7s_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1034, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2599638321/9riagpoagc6vy36tcn7s_normal.jpeg", - "favourites_count": 25, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 75, - "blocked_by": false, - "following": false, - "location": "Philadelphia / King of Prussia", - "muting": false, - "friends_count": 531, - "notifications": false, - "screen_name": "Doogery", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "doogs" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "mother, grandmother, love education and children. Love ATP tennis!! Minnesota Vikings!!", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": -28800, - "id_str": "37674397", - "blocking": false, - "is_translation_enabled": false, - "id": 37674397, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon May 04 14:49:05 +0000 2009", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 294, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", - "favourites_count": 1279, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 34, - "blocked_by": false, - "following": false, - "location": "Reno, Nevada", - "muting": false, - "friends_count": 1689, - "notifications": false, - "screen_name": "maclaughry", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 3, - "is_translator": false, - "name": "Barbara McLaury" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "989809284", - "following": false, - "friends_count": 170, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 17, - "location": "South Jersey", - "screen_name": "ali_smedley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Ali Smedley", - "profile_use_background_image": true, - "description": "Lawyer. Smartass. Very Good Friend.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2984543909/1819a0d11590143bf9a30f27fe5901f2_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Tue Dec 04 23:50:49 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2984543909/1819a0d11590143bf9a30f27fe5901f2_normal.jpeg", - "favourites_count": 107, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile_image": false, - "id": 989809284, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 444, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/989809284/1386019930", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4029291252", - "following": false, - "friends_count": 102, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "89C9FA", - "geo_enabled": false, - "followers_count": 14, - "location": "Melbourne, Australia", - "screen_name": "rlbkinsey", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Robyn Kinsey", - "profile_use_background_image": false, - "description": "Digital content & design manager and enthusiast for content strategy, UX, IA, design thinking, geography, weather, music and travel. Also, curiosity!", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660426498575220736/VfD-IkkG_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Oct 26 23:25:00 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660426498575220736/VfD-IkkG_normal.jpg", - "favourites_count": 12, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4029291252, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 20, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4029291252/1446274816", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2953578088", - "following": false, - "friends_count": 492, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 29, - "location": "", - "screen_name": "footybuddy_", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Footy Buddy", - "profile_use_background_image": true, - "description": "Everyone's buddy for all things \u26bd\ufe0f including: #USMNT #BPL #LaLiga #Bundisliga #serieA #Ligue1 and more!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684832679376863233/QB11XzUl_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Dec 31 18:32:47 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684832679376863233/QB11XzUl_normal.jpg", - "favourites_count": 48, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2953578088, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 61, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2953578088/1451175658", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "106728002", - "following": false, - "friends_count": 990, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "conejousd.org/tohs", - "url": "http://t.co/3WOfqtcsQp", - "expanded_url": "http://www.conejousd.org/tohs", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/667514906/673c2dc22bbe1dfc94a2df3732608cad.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "0A8216", - "profile_link_color": "0B871D", - "geo_enabled": true, - "followers_count": 1831, - "location": "Thousand Oaks, CA", - "screen_name": "ThousandOaksHS", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 36, - "name": "Thousand Oaks HS", - "profile_use_background_image": false, - "description": "The Official Twitter account for Thousand Oaks High School. A diverse and high achieving school with winning programs in all areas. We are TOHS! #BleedGreen", - "url": "http://t.co/3WOfqtcsQp", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/513858066224148480/gAFCWjOr_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Jan 20 14:22:47 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/513858066224148480/gAFCWjOr_normal.jpeg", - "favourites_count": 1810, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/667514906/673c2dc22bbe1dfc94a2df3732608cad.jpeg", - "default_profile_image": false, - "id": 106728002, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4335, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/106728002/1378431011", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "634337244", - "following": false, - "friends_count": 548, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450106384864927745/P74T_7In.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 463, - "location": "", - "screen_name": "ASchueth", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 20, - "name": "Alex Schueth", - "profile_use_background_image": true, - "description": "UNL Mechanical Engineering Major, Meteorology minor, avid storm chaser", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/475727972419108864/OcrhFULJ_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Jul 13 03:26:41 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/475727972419108864/OcrhFULJ_normal.jpeg", - "favourites_count": 1800, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450106384864927745/P74T_7In.jpeg", - "default_profile_image": false, - "id": 634337244, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1289, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/634337244/1444859234", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "Retired US Senate Media Relations Coord/Off Mgr/Crisis Mgt - 29 year non-partisian US Senate Vet. Insights, witness, understanding & love of all things Senate.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "22195908", - "blocking": false, - "is_translation_enabled": false, - "id": 22195908, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Feb 27 21:54:01 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730940844/bf43a11ccfda182946ff5dc2b16b15b3_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1374, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730940844/bf43a11ccfda182946ff5dc2b16b15b3_normal.jpeg", - "favourites_count": 172, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 148, - "blocked_by": false, - "following": false, - "location": "Washington, DC", - "muting": false, - "friends_count": 771, - "notifications": false, - "screen_name": "WendyOscarson", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 2, - "is_translator": false, - "name": "Wendy Oscarson" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2185039262", - "following": false, - "friends_count": 521, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 409, - "location": "border state", - "screen_name": "JikiRick", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Jiki Rick", - "profile_use_background_image": true, - "description": "arcane random thoughts, retired veteran with a deep disdain for delusion and denial, progressive", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/665039366683693056/q5NTrJHd_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Nov 09 21:00:31 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/665039366683693056/q5NTrJHd_normal.jpg", - "favourites_count": 1104, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2185039262, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1900, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2185039262/1384752252", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "445753422", - "following": false, - "friends_count": 559, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 61, - "location": "NJ", - "screen_name": "Mccarthy2Matt", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Matty Mc", - "profile_use_background_image": true, - "description": "i put solar panels on landfills", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3335692911/b263aac887aadfbcd47fbcbafc4ccff4_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Dec 24 20:34:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3335692911/b263aac887aadfbcd47fbcbafc4ccff4_normal.jpeg", - "favourites_count": 144, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 445753422, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 271, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/445753422/1362361928", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "15832457", - "following": false, - "friends_count": 687, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "996E00", - "geo_enabled": false, - "followers_count": 444, - "location": "", - "screen_name": "oshack", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "Owen Shackelford", - "profile_use_background_image": true, - "description": "Politics is a contact sport. So is Braves baseball.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683080659271684096/LFvXF2Wh_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Aug 13 03:43:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683080659271684096/LFvXF2Wh_normal.jpg", - "favourites_count": 39, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 15832457, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 4219, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15832457/1451694402", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "628719809", - "following": false, - "friends_count": 1486, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "amyabts.com", - "url": "https://t.co/Z5powTexXZ", - "expanded_url": "http://www.amyabts.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 543, - "location": "Rochester MN", - "screen_name": "amy_abts", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Amy Abts", - "profile_use_background_image": true, - "description": "Wear what you dig, man. Wear what you dig.", - "url": "https://t.co/Z5powTexXZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671791123375919104/zetat3Uz_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Jul 06 21:03:04 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671791123375919104/zetat3Uz_normal.jpg", - "favourites_count": 4270, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 628719809, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3066, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/628719809/1448999689", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3179475258", - "following": false, - "friends_count": 1054, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "joincampaignzero.org", - "url": "https://t.co/okIBpNIyYG", - "expanded_url": "http://www.joincampaignzero.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676163901470322688/TRRZTO_W.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": false, - "followers_count": 294, - "location": "Seattle", - "screen_name": "brad_jencks", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Brad Jencks", - "profile_use_background_image": true, - "description": "Hash-slinging, entropy aggregation , advanced dog butlery.", - "url": "https://t.co/okIBpNIyYG", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685175845321768960/_4BiMUfr_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Apr 29 16:34:33 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685175845321768960/_4BiMUfr_normal.jpg", - "favourites_count": 941, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676163901470322688/TRRZTO_W.jpg", - "default_profile_image": false, - "id": 3179475258, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4319, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3179475258/1452017164", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Canadian Meteorologist with an interest in Climate Change and Economics", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "3119242741", - "blocking": false, - "is_translation_enabled": false, - "id": 3119242741, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 31 05:48:59 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/594072280268836864/LSnHwmpH_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 300, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/594072280268836864/LSnHwmpH_normal.jpg", - "favourites_count": 80, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 73, - "blocked_by": false, - "following": false, - "location": "Waterloo, Ontario", - "muting": false, - "friends_count": 744, - "notifications": false, - "screen_name": "senocvahr", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "is_translator": false, - "name": "Shawn" - }, - { - "time_zone": "New Delhi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "39982013", - "following": false, - "friends_count": 1078, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blogs.wsj.com/indiarealtime/", - "url": "http://t.co/eMMymrYFrl", - "expanded_url": "http://blogs.wsj.com/indiarealtime/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2822, - "location": "Delhi", - "screen_name": "jhsugden", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 120, - "name": "Joanna Sugden", - "profile_use_background_image": true, - "description": "Editor, India Real Time, The Wall Street Journal @WSJIndia", - "url": "http://t.co/eMMymrYFrl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/481653559146971136/H4Tb-yj0_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu May 14 12:24:18 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/481653559146971136/H4Tb-yj0_normal.jpeg", - "favourites_count": 11, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 39982013, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 789, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39982013/1364297229", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2281405616", - "blocking": false, - "is_translation_enabled": false, - "id": 2281405616, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Jan 08 01:36:43 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/435528633394798592/UIxavOwI_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 38, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/435528633394798592/UIxavOwI_normal.jpeg", - "favourites_count": 72, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 94, - "blocked_by": false, - "following": false, - "location": "San Francisco ", - "muting": false, - "friends_count": 825, - "notifications": false, - "screen_name": "jtraeger8", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Jeffrey Traeger" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "322543289", - "following": false, - "friends_count": 440, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E5507E", - "profile_link_color": "B40B43", - "geo_enabled": true, - "followers_count": 162, - "location": "Portland, OR", - "screen_name": "DodgetownUSA", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Sam Soule", - "profile_use_background_image": false, - "description": "I live in a small room.", - "url": null, - "profile_text_color": "362720", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/623340314502131712/bRzKZQmr_normal.jpg", - "profile_background_color": "FF6699", - "created_at": "Thu Jun 23 10:26:34 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/623340314502131712/bRzKZQmr_normal.jpg", - "favourites_count": 1128, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", - "default_profile_image": false, - "id": 322543289, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2283, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/322543289/1404270701", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "205876282", - "following": false, - "friends_count": 492, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": false, - "followers_count": 252, - "location": "", - "screen_name": "zpaget", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Zak Paget", - "profile_use_background_image": true, - "description": "Challenge-craving, news-obsessed comms professional. Oh, and of course: travel and food lover (#clich\u00e9). Tweets = my own thoughts/opinions.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/656300865448497152/CRYn9wr5_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Thu Oct 21 20:06:21 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/656300865448497152/CRYn9wr5_normal.jpg", - "favourites_count": 12, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 205876282, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1406, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/205876282/1438401014", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "328122243", - "following": false, - "friends_count": 404, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "weather.gov/norman", - "url": "https://t.co/2PdyC4ofYj", - "expanded_url": "http://www.weather.gov/norman", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 460, - "location": "Norman, OK", - "screen_name": "jon_kurtz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 34, - "name": "Jonathan Kurtz", - "profile_use_background_image": false, - "description": "Meteorologist, #STL Native, @UNLincoln & @Creighton grad. #GBR #OptOutside Ignorance knows no job title. -JG", - "url": "https://t.co/2PdyC4ofYj", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/623906728749367296/dKnHUlFM_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Jul 02 19:37:27 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/623906728749367296/dKnHUlFM_normal.jpg", - "favourites_count": 1029, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 328122243, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2890, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/328122243/1421028483", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "182163783", - "following": false, - "friends_count": 596, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/460921682836733955/s_IKjLDX.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1955, - "location": "Kirkland, WA", - "screen_name": "Justegarde", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "Justin Fassino", - "profile_use_background_image": true, - "description": "New Media & Social PR for @StepThreePR (Activision, Robot Entertainment)\nGamer / Hockey fan / Board game geek / 100% of these ridiculous opinions = 100% mine", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680625666375585792/YMJznv_8_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Aug 23 23:57:42 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680625666375585792/YMJznv_8_normal.jpg", - "favourites_count": 305, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/460921682836733955/s_IKjLDX.jpeg", - "default_profile_image": false, - "id": 182163783, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 17693, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/182163783/1450772110", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "282267194", - "blocking": false, - "is_translation_enabled": false, - "id": 282267194, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu Apr 14 21:54:36 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/684037636135251968/jkzFhGNP_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 3, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684037636135251968/jkzFhGNP_normal.jpg", - "favourites_count": 2, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 5, - "blocked_by": false, - "following": false, - "location": "Washington, DC", - "muting": false, - "friends_count": 214, - "notifications": false, - "screen_name": "ajgenz", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Andrew Genz" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24818240", - "following": false, - "friends_count": 664, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 429, - "location": "Southern California", - "screen_name": "russmaloney", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Russ Maloney", - "profile_use_background_image": true, - "description": "Radio and TV guy. Writer of things. I think; therefore, I am...I think.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/452952787626635264/AzWFuOxi_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Tue Mar 17 01:55:50 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/452952787626635264/AzWFuOxi_normal.jpeg", - "favourites_count": 4230, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 24818240, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 10253, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/24818240/1451785394", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "19213877", - "following": false, - "friends_count": 2040, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/664868086/d9fb9859e7a88ed05094c1ac2c0cb9ca.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1215, - "location": "Cincinnati, OH", - "screen_name": "wxenthus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 58, - "name": "Dr. Mike Moyer", - "profile_use_background_image": true, - "description": "Ph.D. - Atmospheric Science/Cog. Psychology of Memory are my diverse areas of research and study. (\u2608\u2109\u2745) + \u03c8(\u2627) = Graecum est; non legitur.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/520399760118018048/Brrej4N2_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 20 01:47:47 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/520399760118018048/Brrej4N2_normal.jpeg", - "favourites_count": 834, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/664868086/d9fb9859e7a88ed05094c1ac2c0cb9ca.jpeg", - "default_profile_image": false, - "id": 19213877, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 13260, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19213877/1414185104", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "99555170", - "following": false, - "friends_count": 2066, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "createsust.com", - "url": "http://t.co/7fIbJp7KST", - "expanded_url": "http://createsust.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4446A6", - "geo_enabled": true, - "followers_count": 569, - "location": "Plano, Texas", - "screen_name": "CreateSust", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Brian & Marta Moore", - "profile_use_background_image": false, - "description": "Discussing the ends, ways, and means of sustainability", - "url": "http://t.co/7fIbJp7KST", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1240435921/AmoebiusBand_whiteBackground__normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Dec 26 18:54:20 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1240435921/AmoebiusBand_whiteBackground__normal.jpg", - "favourites_count": 711, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile_image": false, - "id": 99555170, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 838, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/99555170/1402921254", - "is_translator": false - }, - { - "time_zone": "Quito", - "profile_use_background_image": true, - "description": "happily married to jimmie johnson. tv photographer. fan of cowboys reds uk basketball", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "45579199", - "blocking": false, - "is_translation_enabled": false, - "id": 45579199, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Jun 08 14:44:40 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/1131082373/IMG00108-20100808-1432_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 1377, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131082373/IMG00108-20100808-1432_normal.jpg", - "favourites_count": 1714, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 256, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 1636, - "notifications": false, - "screen_name": "bluegrass1962", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "is_translator": false, - "name": "Gary Johnson" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5361852", - "following": false, - "friends_count": 835, - "entities": { - "description": { - "urls": [ - { - "display_url": "my.pronoun.is/he", - "url": "http://t.co/vAbKyrUOi5", - "expanded_url": "http://my.pronoun.is/he", - "indices": [ - 60, - 82 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": true, - "followers_count": 384, - "location": "San Francisco, CA", - "screen_name": "martineno", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Homosexual Supremacy", - "profile_use_background_image": true, - "description": "Emperor in training, megageek. Occasional kink reference. \u2022 http://t.co/vAbKyrUOi5", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/513067687212113920/vW5VMOmK_normal.png", - "profile_background_color": "8B542B", - "created_at": "Fri Apr 20 22:34:22 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/513067687212113920/vW5VMOmK_normal.png", - "favourites_count": 1776, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "default_profile_image": false, - "id": 5361852, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6741, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5361852/1414882261", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "61029535", - "following": false, - "friends_count": 296, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/DanAmaranteWea\u2026", - "url": "http://t.co/ywbzCg2Qi8", - "expanded_url": "http://facebook.com/DanAmaranteWeather", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450221287042842624/kw-sRIo1.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3731, - "location": "Connecticut", - "screen_name": "DanAmarante", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 113, - "name": "Dan Amarante", - "profile_use_background_image": true, - "description": "Certified Broadcast Meteorologist on @FOX61News, Sunday radio forecasts for @WTIC1080... Born & raised in Connecticut. Baseball player, weather and space nerd.", - "url": "http://t.co/ywbzCg2Qi8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658610127113576448/Xd6RjnSM_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jul 28 21:49:24 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658610127113576448/Xd6RjnSM_normal.jpg", - "favourites_count": 1695, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450221287042842624/kw-sRIo1.jpeg", - "default_profile_image": false, - "id": 61029535, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 12513, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/61029535/1399463344", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "183476295", - "following": false, - "friends_count": 1939, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stefmcdonald.com", - "url": "http://t.co/fCKGP1GOrY", - "expanded_url": "http://stefmcdonald.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000103250562/eb22b8461a0091e2823ad75d7ea802bb.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": false, - "followers_count": 562, - "location": "Los Angeles, CA", - "screen_name": "Stefaniamcd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Stef McDonald", - "profile_use_background_image": true, - "description": "Working with words for nonprofits & good businesses. Also: playing dress-up and planning my next meal.", - "url": "http://t.co/fCKGP1GOrY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1889971382/profile_bw_beach_stripes_normal.JPG", - "profile_background_color": "ACDED6", - "created_at": "Fri Aug 27 02:38:06 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1889971382/profile_bw_beach_stripes_normal.JPG", - "favourites_count": 1581, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000103250562/eb22b8461a0091e2823ad75d7ea802bb.jpeg", - "default_profile_image": false, - "id": 183476295, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2741, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/183476295/1393438633", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "34330530", - "following": false, - "friends_count": 1068, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "m.MemphisWeather.net", - "url": "http://t.co/iJf0b1ymjf", - "expanded_url": "http://m.MemphisWeather.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000166702810/Yeil8u8f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "0000AA", - "geo_enabled": true, - "followers_count": 13598, - "location": "Memphis, TN", - "screen_name": "memphisweather1", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 376, - "name": "MemphisWeather.net", - "profile_use_background_image": true, - "description": "17 years in Memphis weather. Curated by tweeteorologist EP & #TeamMWN. Keeping the 8-county metro informed and storm safe. Also find us on FB & Google+", - "url": "http://t.co/iJf0b1ymjf", - "profile_text_color": "2E2E2E", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/463741044199157760/0dMc569m_normal.png", - "profile_background_color": "B9CFE6", - "created_at": "Wed Apr 22 17:11:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/463741044199157760/0dMc569m_normal.png", - "favourites_count": 538, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000166702810/Yeil8u8f.jpeg", - "default_profile_image": false, - "id": 34330530, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 60995, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/34330530/1402604158", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Dog-wrangler, writer, gardener, cook, IT ninja. Mefite. She. I don't care if you don't agree with me.", - "url": "http://t.co/1w7ytdoVso", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "316103", - "blocking": false, - "is_translation_enabled": false, - "id": 316103, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pajamageddon.com", - "url": "http://t.co/1w7ytdoVso", - "expanded_url": "http://pajamageddon.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "352726", - "created_at": "Thu Dec 28 15:00:19 +0000 2006", - "profile_image_url": "http://pbs.twimg.com/profile_images/1094775072/lyn2x2_normal.JPG", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "default_profile": false, - "profile_text_color": "3E4415", - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "statuses_count": 8838, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1094775072/lyn2x2_normal.JPG", - "favourites_count": 1610, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 548, - "blocked_by": false, - "following": false, - "location": "Los Angeles, CA", - "muting": false, - "friends_count": 1466, - "notifications": false, - "screen_name": "LynNever", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 61, - "is_translator": false, - "name": "Lyn Never" - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "15946918", - "blocking": false, - "is_translation_enabled": false, - "id": 15946918, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C6E2EE", - "created_at": "Fri Aug 22 16:33:17 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/58775762/St._Kitts_and_Vegas_029_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile": false, - "profile_text_color": "663B12", - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "statuses_count": 474, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/58775762/St._Kitts_and_Vegas_029_normal.jpg", - "favourites_count": 3, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 94, - "blocked_by": false, - "following": false, - "location": "Overland Park, KS", - "muting": false, - "friends_count": 265, - "notifications": false, - "screen_name": "kcmonkeyt", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "Tom McCurry" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "209859040", - "following": false, - "friends_count": 686, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2C809E", - "geo_enabled": true, - "followers_count": 182, - "location": "", - "screen_name": "aktaylor08", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Adam Taylor", - "profile_use_background_image": true, - "description": "Software Engineer, Meteorologist, Roboticist.\nOpinions are my own.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/480330447616868353/VpgkU4RM_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Oct 30 01:49:48 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/480330447616868353/VpgkU4RM_normal.jpeg", - "favourites_count": 999, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 209859040, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2408, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/209859040/1398532710", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "4801", - "following": false, - "friends_count": 2054, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sinden.org", - "url": "https://t.co/eJrLojRwNR", - "expanded_url": "http://www.sinden.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/10364823/d.jpg", - "notifications": false, - "profile_sidebar_fill_color": "A3C7D6", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 1018, - "location": "St Louis, Mo.", - "screen_name": "sinden", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 43, - "name": "David Sinden", - "profile_use_background_image": false, - "description": "I'm an Episcopalian, organist, and conductor. Lessons and Carols obsessive. Co-parent of 25 lb. human. I've been on Twitter way longer than you have.", - "url": "https://t.co/eJrLojRwNR", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/14147852/dsinden_normal.jpg", - "profile_background_color": "800080", - "created_at": "Mon Aug 28 02:20:52 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/14147852/dsinden_normal.jpg", - "favourites_count": 4727, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/10364823/d.jpg", - "default_profile_image": false, - "id": 4801, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 13429, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4801/1361333552", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": -21600, - "id_str": "17235811", - "blocking": false, - "is_translation_enabled": false, - "id": 17235811, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C6E2EE", - "created_at": "Fri Nov 07 18:26:36 +0000 2008", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile": false, - "profile_text_color": "663B12", - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "statuses_count": 7, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", - "favourites_count": 3, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 130, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 492, - "notifications": false, - "screen_name": "scott_lemmon", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 2, - "is_translator": false, - "name": "Scott Lemmon" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1855332805", - "following": false, - "friends_count": 226, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/555517972916097024/tbQqbcAI.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 763, - "location": "Hancock County, Indiana", - "screen_name": "wxindy", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 32, - "name": "\u26a1WX Indy \u26a1\ufe0f", - "profile_use_background_image": false, - "description": "Brian...Weather enthusiast, father, husband, professional turf management. opinions are my own. A retweet doesn't always signify an endorsement.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/645684917666492416/FxOAGctB_normal.png", - "profile_background_color": "131516", - "created_at": "Wed Sep 11 19:55:09 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645684917666492416/FxOAGctB_normal.png", - "favourites_count": 1767, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/555517972916097024/tbQqbcAI.jpeg", - "default_profile_image": false, - "id": 1855332805, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5385, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1855332805/1448402927", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "26325494", - "following": false, - "friends_count": 1470, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 42, - "location": "", - "screen_name": "samueleisenberg", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 2, - "name": "Sam Eisenberg", - "profile_use_background_image": true, - "description": "Recent @stanfordlaw grad. Tweets about Twins baseball, Gopher hockey, Cardinal football. Occasional comments on energy and environmental law and policy.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/481312445512699904/JnAyo-S4_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 24 21:12:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/481312445512699904/JnAyo-S4_normal.jpeg", - "favourites_count": 70, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 26325494, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3559, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26325494/1403588833", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "1934690210", - "following": false, - "friends_count": 273, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 53, - "location": "", - "screen_name": "amae_hoppenjans", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 0, - "name": "76_phoenix", - "profile_use_background_image": true, - "description": "Skywatcher, food and wine enthusiast, I worship the woods.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/563036309724618752/8CybZ3xb_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Oct 04 16:03:41 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/563036309724618752/8CybZ3xb_normal.jpeg", - "favourites_count": 1820, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1934690210, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 341, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1934690210/1428714413", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "832718768", - "following": false, - "friends_count": 1269, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1559, - "location": "East Coast, Mid-Atlantic", - "screen_name": "StormForce_1", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 73, - "name": "StormForce_1", - "profile_use_background_image": true, - "description": "Fan of the weather. News & political junkie. Chasing storms when I can. Was in the eye of Hurricanes Irene & Sandy at landfall. #StandWithRand #RandPaul2016", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675523239389474816/yLAVb5aY_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 19 06:37:54 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675523239389474816/yLAVb5aY_normal.jpg", - "favourites_count": 7213, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 832718768, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 19424, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/832718768/1449885068", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "28378001", - "following": false, - "friends_count": 834, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 275, - "location": "", - "screen_name": "TiBmd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "TiBMD", - "profile_use_background_image": true, - "description": "Husband. Father. Brother. Son. Grandson. Surgeon. RT\u2260 endorsement\n\r\nThese opinions are my own!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000061627366/c65512cd0cab697154ec069cf5a86b60_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Thu Apr 02 17:22:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000061627366/c65512cd0cab697154ec069cf5a86b60_normal.jpeg", - "favourites_count": 4846, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile_image": false, - "id": 28378001, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2471, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/28378001/1430364418", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "288786058", - "following": false, - "friends_count": 545, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/reeviespeevies/", - "url": "https://t.co/yHf5SJI7YN", - "expanded_url": "https://instagram.com/reeviespeevies/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492765999247007744/d3t1gWZl.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 380, - "location": "Washington, DC", - "screen_name": "reeviespeevies", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "Katie Reeves", - "profile_use_background_image": true, - "description": "I never tweet faster than I can see. Besides that, it's all in the reflexes. Michigander. Athletics expat. Master of the [Science & Technology Policy] Universe.", - "url": "https://t.co/yHf5SJI7YN", - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/521117669978693632/GpH4ICIH_normal.jpeg", - "profile_background_color": "0099B9", - "created_at": "Wed Apr 27 13:33:27 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/521117669978693632/GpH4ICIH_normal.jpeg", - "favourites_count": 5476, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492765999247007744/d3t1gWZl.jpeg", - "default_profile_image": false, - "id": 288786058, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 7394, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/288786058/1423450546", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "227381114", - "following": false, - "friends_count": 1388, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hydro-logic.blogspot.com", - "url": "http://t.co/Aeo9Y59s1w", - "expanded_url": "http://hydro-logic.blogspot.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/192387486/x157a10c8e8bd14f06072a93cef1d924.jpg", - "notifications": false, - "profile_sidebar_fill_color": "233235", - "profile_link_color": "3E87A7", - "geo_enabled": true, - "followers_count": 1459, - "location": "Madison, Wisconsin, USA", - "screen_name": "MGhydro", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 112, - "name": "Matthew Garcia", - "profile_use_background_image": true, - "description": "PhD Candidate, Forestry + Remote Sensing @UWMadison. 2015-16 @WISpaceGrant Fellow. Trees, Water, Weather, Climate, Computing. Strange duck. Valar dohaeris.", - "url": "http://t.co/Aeo9Y59s1w", - "profile_text_color": "73AFC9", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/580493396457988096/Iv7xPvC1_normal.png", - "profile_background_color": "D5D9C2", - "created_at": "Thu Dec 16 18:01:10 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DC4093", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/580493396457988096/Iv7xPvC1_normal.png", - "favourites_count": 713, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/192387486/x157a10c8e8bd14f06072a93cef1d924.jpg", - "default_profile_image": false, - "id": 227381114, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 47343, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/227381114/1427235582", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14950146", - "following": false, - "friends_count": 1142, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "alifeitself.com", - "url": "http://t.co/TTxcg6UrPI", - "expanded_url": "http://alifeitself.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520893630/085-1.JPG", - "notifications": false, - "profile_sidebar_fill_color": "99C2C9", - "profile_link_color": "99C9BD", - "geo_enabled": false, - "followers_count": 1828, - "location": "Decatur, GA", - "screen_name": "danayoung", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 129, - "name": "Dana Lisa Young", - "profile_use_background_image": true, - "description": "Reiki healer, teacher, spiritual director & owner of Dragonfly Reiki Healing Center. I tweet about anything that strikes my fancy., which is a lot of things.", - "url": "http://t.co/TTxcg6UrPI", - "profile_text_color": "3D393D", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662467561481592832/ZoUMcMk2_normal.jpg", - "profile_background_color": "F4C9A3", - "created_at": "Fri May 30 01:05:43 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662467561481592832/ZoUMcMk2_normal.jpg", - "favourites_count": 12784, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520893630/085-1.JPG", - "default_profile_image": false, - "id": 14950146, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 51968, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14950146/1446779038", - "is_translator": false - }, - { - "time_zone": "Hong Kong", - "profile_use_background_image": true, - "description": "A Scotsman (Arbroath) who has called Hong Kong home for +28 years. Main biz is logistics, but love hiking around our amazing hills.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 28800, - "id_str": "186648261", - "blocking": false, - "is_translation_enabled": false, - "id": 186648261, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Sep 04 00:54:51 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/538106960105582592/5Xkro4nM_normal.jpeg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778834877/2d5ed635937dd2b766787782e6881852.jpeg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 13556, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/538106960105582592/5Xkro4nM_normal.jpeg", - "favourites_count": 2276, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 495, - "blocked_by": false, - "following": false, - "location": "Hong Kong", - "muting": false, - "friends_count": 937, - "notifications": false, - "screen_name": "Phillip_In_HK", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778834877/2d5ed635937dd2b766787782e6881852.jpeg", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 29, - "is_translator": false, - "name": "Phillip Forsyth" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11620892", - "following": false, - "friends_count": 3436, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bloomberg.com", - "url": "http://t.co/jn0fKSi5aC", - "expanded_url": "http://www.bloomberg.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628842181/gjlz8x8joom885xnxm09.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 6374, - "location": "New York, NY", - "screen_name": "eroston", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 455, - "name": "Eric Roston", - "profile_use_background_image": true, - "description": "Important things are more fun than fun things are important. Carbon stuff; also: non-carbon stuff. Spirograph black belt. Science @ Bloomberg. RT=PV/n", - "url": "http://t.co/jn0fKSi5aC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000435307841/3799d9defe14d169734dce73708261db_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Sat Dec 29 04:31:19 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000435307841/3799d9defe14d169734dce73708261db_normal.jpeg", - "favourites_count": 2042, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628842181/gjlz8x8joom885xnxm09.jpeg", - "default_profile_image": false, - "id": 11620892, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 9324, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11620892/1398571738", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "43032803", - "blocking": false, - "is_translation_enabled": false, - "id": 43032803, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu May 28 02:57:25 +0000 2009", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 14, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "favourites_count": 60, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 11, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 117, - "notifications": false, - "screen_name": "hzahav", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "Haviv Zahav" - }, - { - "time_zone": "Mazatlan", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "174773888", - "following": false, - "friends_count": 494, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "26466D", - "geo_enabled": false, - "followers_count": 112, - "location": "Wyoming via Idaho", - "screen_name": "brendonme", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Brendon", - "profile_use_background_image": false, - "description": "Fan of travel, wilderness, and bad weather. I like twitter for weather. Accountant.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663443100329578496/_Mb_plGh_normal.jpg", - "profile_background_color": "828282", - "created_at": "Wed Aug 04 19:58:21 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663443100329578496/_Mb_plGh_normal.jpg", - "favourites_count": 1384, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 174773888, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1261, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/174773888/1418678965", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "214591313", - "following": false, - "friends_count": 1174, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 177, - "location": "eastern PA", - "screen_name": "phellaini", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Phil Vida", - "profile_use_background_image": true, - "description": "Free agent weatherman and hockey fan livin in the lesser side of PA. No mystical energy field controls my destiny. It's all a lot of simple tricks and nonsense.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/510940238898683904/qzo1BRy7_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Thu Nov 11 19:29:50 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/510940238898683904/qzo1BRy7_normal.jpeg", - "favourites_count": 51, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 214591313, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 6284, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/214591313/1410652635", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "290180065", - "following": false, - "friends_count": 6452, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "slate.com/authors.eric_h\u2026", - "url": "http://t.co/hA0H6wWF56", - "expanded_url": "http://www.slate.com/authors.eric_holthaus.html", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 33509, - "location": "Tucson, AZ", - "screen_name": "EricHolthaus", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1607, - "name": "Eric Holthaus", - "profile_use_background_image": true, - "description": "'America's weather-predicting boyfriend' \u2014@awl | 'The internet's favorite meteorologist' \u2014@vice | Thankful. | Say hi: eric.holthaus@slate.com", - "url": "http://t.co/hA0H6wWF56", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458779628161597440/mWG3M6gy_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Apr 29 21:18:26 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458779628161597440/mWG3M6gy_normal.jpeg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 290180065, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 37765, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/290180065/1398216679", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "33627414", - "following": false, - "friends_count": 1488, - "entities": { - "description": { - "urls": [ - { - "display_url": "SeeDisclaimer.com", - "url": "https://t.co/Tqkn8UDdDp", - "expanded_url": "http://SeeDisclaimer.com", - "indices": [ - 55, - 78 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "metservice.com", - "url": "https://t.co/SjyJ6Ke7il", - "expanded_url": "http://www.metservice.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/490700799/S5001929.JPG", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 6988, - "location": "Wellington City, New Zealand", - "screen_name": "chesterlampkin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 250, - "name": "Chester Lampkin", - "profile_use_background_image": true, - "description": "Meteorologist in #NewZealand @ @metservice. IMPORTANT: https://t.co/Tqkn8UDdDp Love family/friends, weather, geography, Cardinals, SLU, Mizzou, from St Louis.", - "url": "https://t.co/SjyJ6Ke7il", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/644259881222995968/HaNnCIwE_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Mon Apr 20 19:20:48 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/644259881222995968/HaNnCIwE_normal.jpg", - "favourites_count": 26057, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/490700799/S5001929.JPG", - "default_profile_image": false, - "id": 33627414, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 59554, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/33627414/1449305225", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "305956679", - "following": false, - "friends_count": 259, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 241, - "location": "San Antonio", - "screen_name": "SAWatcherTX", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Michael Nicolaou", - "profile_use_background_image": true, - "description": "Believer, Husband, Father, Weather Enthusiast, Mtn Biker, Singer, Ghost Writer for @Head_Shot_Kitty", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/673343369880297472/yN7j1qOc_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri May 27 01:45:17 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673343369880297472/yN7j1qOc_normal.jpg", - "favourites_count": 8199, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 305956679, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 16970, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/305956679/1431833958", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "98729176", - "following": false, - "friends_count": 541, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/KyleRobertsWea\u2026", - "url": "https://t.co/8aCa0usAwU", - "expanded_url": "http://www.facebook.com/KyleRobertsWeather", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 1182, - "location": "Oklahoma City, OK", - "screen_name": "KyleWeather", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 75, - "name": "Kyle Roberts", - "profile_use_background_image": true, - "description": "Meteorologist for FOX 25 (@OKCFOX) in Oklahoma City | Texas A&M grad | Tweeter of weather, sports, and whatever crosses my mind (usually in that order)", - "url": "https://t.co/8aCa0usAwU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000834039489/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Tue Dec 22 22:00:16 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000834039489/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg", - "favourites_count": 1400, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 98729176, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 6535, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/98729176/1448854863", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "44676697", - "following": false, - "friends_count": 836, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/515574502416060416/TjnMSFeM.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 286, - "location": "Nebraska", - "screen_name": "Connord64", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Connor Dennhardt", - "profile_use_background_image": true, - "description": "Meteorology major at UNL | NWS Intern | Sports, Politics, Weather, Repeat | Tweets are my own |", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684560962582491136/kdyaM0H7_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Jun 04 18:06:02 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684560962582491136/kdyaM0H7_normal.jpg", - "favourites_count": 705, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/515574502416060416/TjnMSFeM.png", - "default_profile_image": false, - "id": 44676697, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 11540, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/44676697/1452046995", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "244886275", - "following": false, - "friends_count": 449, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "841618", - "geo_enabled": true, - "followers_count": 89, - "location": "St. Louis, Missouri, USA", - "screen_name": "CoffellWX", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Dustin Coffell", - "profile_use_background_image": false, - "description": "Meteorology student at the University of Oklahoma. Fan of the St. Louis Cardinals, Green Bay Packers... and an avid fantasy baseball/football player.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/625768224039280640/vp386fmO_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Jan 30 10:49:38 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/625768224039280640/vp386fmO_normal.jpg", - "favourites_count": 49, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 244886275, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 380, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/244886275/1438029799", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "17063693", - "following": false, - "friends_count": 470, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "martinoleary.com", - "url": "https://t.co/cZyb9A7ETj", - "expanded_url": "http://www.martinoleary.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 576, - "location": "Mostly Wales", - "screen_name": "mewo2", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 32, - "name": "Martin O'Leary", - "profile_use_background_image": true, - "description": "Glaciologist, trivia buff, data cruncher, man about town, euroviisuhullu. I once was voted second sexiest voice in Cambridge.", - "url": "https://t.co/cZyb9A7ETj", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/434801946214801408/Ni8aJvw8_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Thu Oct 30 11:58:30 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/434801946214801408/Ni8aJvw8_normal.jpeg", - "favourites_count": 30, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile_image": false, - "id": 17063693, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1386, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17063693/1440399848", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "Tall", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "17010047", - "blocking": false, - "is_translation_enabled": false, - "id": 17010047, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "131516", - "created_at": "Mon Oct 27 23:41:42 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/1443130120/meandthedevil_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "statuses_count": 8440, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1443130120/meandthedevil_normal.jpg", - "favourites_count": 4109, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 122, - "blocked_by": false, - "following": false, - "location": "Springfield, MO", - "muting": false, - "friends_count": 426, - "notifications": false, - "screen_name": "sopmaster", - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "is_translator": false, - "name": "William O'Brien" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": false, - "description": "I am the bot-loving alter-ego of @corcra.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "3912921921", - "blocking": false, - "is_translation_enabled": false, - "id": 3912921921, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "000000", - "created_at": "Fri Oct 09 22:54:12 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/652618720607469568/P_xzWL_O_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "statuses_count": 1, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/652618720607469568/P_xzWL_O_normal.jpg", - "favourites_count": 11, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 8, - "blocked_by": false, - "following": false, - "location": "Everywhere", - "muting": false, - "friends_count": 79, - "notifications": false, - "screen_name": "cyborcra", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "is_translator": false, - "name": "cyborcra" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "87095316", - "following": false, - "friends_count": 3581, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dennismersereau.com", - "url": "https://t.co/DS5HCTZw99", - "expanded_url": "http://dennismersereau.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "1C88CC", - "geo_enabled": true, - "followers_count": 6030, - "location": "North Carolina", - "screen_name": "wxdam", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 342, - "name": "Dennis Mersereau", - "profile_use_background_image": true, - "description": "I control the weather. Contributor to @mental_floss. I used to write for The Vane. I also wrote a book. It's good. You should buy it. \u2192", - "url": "https://t.co/DS5HCTZw99", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684267915261030400/F-gzX8eX_normal.jpg", - "profile_background_color": "022330", - "created_at": "Tue Nov 03 03:04:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684267915261030400/F-gzX8eX_normal.jpg", - "favourites_count": 9121, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile_image": false, - "id": 87095316, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 16694, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/87095316/1447735871", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "129586119", - "following": false, - "friends_count": 761, - "entities": { - "description": { - "urls": [ - { - "display_url": "twitter.com/deathmtn/lists\u2026", - "url": "https://t.co/FTnTCHiPpj", - "expanded_url": "https://twitter.com/deathmtn/lists/robotic-council-of-doom/members", - "indices": [ - 120, - 143 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "jimkang.com/namedlevels", - "url": "https://t.co/FtjJuczRGL", - "expanded_url": "http://jimkang.com/namedlevels", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 898, - "location": "Somerville, MA", - "screen_name": "deathmtn", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 72, - "name": "\u2206\u25fc\ufe0e\u2206", - "profile_use_background_image": true, - "description": "Occupational traits. Admirable hobbies. Characteristics! Some projects: @autocompletejok, @bddpoetry, @atyrannyofwords, https://t.co/FTnTCHiPpj", - "url": "https://t.co/FtjJuczRGL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680850007063457792/cemxWArq_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Apr 04 20:05:43 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680850007063457792/cemxWArq_normal.jpg", - "favourites_count": 15045, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 129586119, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 48889, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/129586119/1359422907", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1160471", - "following": false, - "friends_count": 789, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "muffinlabs.com", - "url": "https://t.co/F9U7lQOBWG", - "expanded_url": "http://muffinlabs.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 928, - "location": "Montague, MA", - "screen_name": "muffinista", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "name": "\u2630 colin mitchell \u2630", - "profile_use_background_image": true, - "description": "pie heals all wounds\n#botALLY", - "url": "https://t.co/F9U7lQOBWG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Mar 14 14:46:25 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", - "favourites_count": 11542, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", - "default_profile_image": false, - "id": 1160471, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 23431, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1160471/1406567144", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "2344125559", - "following": false, - "friends_count": 2332, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bitpixi.com", - "url": "https://t.co/8wmgXFQ8U8", - "expanded_url": "http://www.bitpixi.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 1737, - "location": "South San Francisco, CA", - "screen_name": "bitpixi", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 174, - "name": "Kasey Robinson", - "profile_use_background_image": true, - "description": "@Minted Photo Editor & Design Associate. @BayAreaBotArts Meetup Organizer. 1st bot: @bitpixi_ebooks", - "url": "https://t.co/8wmgXFQ8U8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Feb 14 21:09:05 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", - "favourites_count": 21763, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 2344125559, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 8723, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2344125559/1444427702", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "415454916", - "following": false, - "friends_count": 553, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hecanjog.com", - "url": "http://t.co/tp6v4wclVE", - "expanded_url": "http://www.hecanjog.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/380385437/maker_faire_diagram.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 938, - "location": "Milwaukee", - "screen_name": "hecanjog", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "He Can Jog", - "profile_use_background_image": true, - "description": "Computer music with friends as @thegeodes and @cedarav.", - "url": "http://t.co/tp6v4wclVE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680888868795633664/XcKxqp2Q_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Fri Nov 18 10:54:19 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680888868795633664/XcKxqp2Q_normal.jpg", - "favourites_count": 8724, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/380385437/maker_faire_diagram.jpg", - "default_profile_image": false, - "id": 415454916, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/415454916/1451171606", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "36128926", - "following": false, - "friends_count": 1018, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/444538332/Typewriter.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1035, - "location": "Edmonton, Alberta", - "screen_name": "mattlaschneider", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 53, - "name": "Matt L.A. Schneider", - "profile_use_background_image": true, - "description": "PhD candidate at U Toronto, studying digital materiality, print culture, and videogames. #botALLY and penny-rounding northerner.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/483750386462101505/o4-hAGZ6_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 28 17:44:59 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/483750386462101505/o4-hAGZ6_normal.jpeg", - "favourites_count": 7999, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/444538332/Typewriter.jpg", - "default_profile_image": false, - "id": 36128926, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 30919, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/36128926/1382844233", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": false, - "description": "my kingdom for a microwave that doesn't beep", - "url": "http://t.co/wtg3XzqQTX", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "372018022", - "blocking": false, - "is_translation_enabled": false, - "id": 372018022, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "iseverythingstilltheworst.com", - "url": "http://t.co/wtg3XzqQTX", - "expanded_url": "http://iseverythingstilltheworst.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "FFFFFF", - "created_at": "Sun Sep 11 23:49:28 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "EE3355", - "statuses_count": 318, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", - "favourites_count": 1215, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 50, - "blocked_by": false, - "following": true, - "location": "not a very good kingdom tbh", - "muting": false, - "friends_count": 301, - "notifications": false, - "screen_name": "__jcbl__", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "is_translator": false, - "name": "jeremy" - } - ], - "previous_cursor": -1516840684967804231, - "previous_cursor_str": "-1516840684967804231", - "next_cursor_str": "0" -} \ No newline at end of file +{"users": [{"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1682351", "following": false, "friends_count": 553, "entities": {"description": {"urls": [{"display_url": "keybase.io/lemonodor", "url": "http://t.co/r2HAYBu4LF", "expanded_url": "http://keybase.io/lemonodor", "indices": [48, 70]}]}, "url": {"urls": [{"display_url": "lemondronor.com", "url": "http://t.co/JFgzDlsyFp", "expanded_url": "http://lemondronor.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450039947001487360/kSy6Eql1.jpeg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 1657, "location": "Los Angeles", "screen_name": "lemonodor", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 85, "name": "john wiseman", "profile_use_background_image": true, "description": "Boring (into your brain). jjwiseman@gmail.com / http://t.co/r2HAYBu4LF", "url": "http://t.co/JFgzDlsyFp", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/596349970401267712/78XeQR5B_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Mar 20 22:52:08 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596349970401267712/78XeQR5B_normal.jpg", "favourites_count": 4136, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450039947001487360/kSy6Eql1.jpeg", "default_profile_image": false, "id": 1682351, "blocked_by": false, "profile_background_tile": true, "statuses_count": 4834, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1682351/1400643238", "is_translator": false}, {"time_zone": "Europe/London", "profile_use_background_image": false, "description": "Consuming information like a grumpy black hole.", "url": "http://t.co/HqE5vyOMdg", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "1856851", "profile_image_url": "http://pbs.twimg.com/profile_images/680849128012804096/xrXBWtyI_normal.jpg", "friends_count": 1284, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jonty.co.uk", "url": "http://t.co/HqE5vyOMdg", "expanded_url": "http://jonty.co.uk", "indices": [0, 22]}]}}, "profile_background_color": "FFFFFF", "created_at": "Thu Mar 22 10:28:39 +0000 2007", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "008000", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8706, "profile_sidebar_border_color": "A8A8A8", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/680849128012804096/xrXBWtyI_normal.jpg", "favourites_count": 8643, "listed_count": 139, "geo_enabled": false, "follow_request_sent": false, "followers_count": 2221, "following": false, "default_profile_image": false, "id": 1856851, "blocked_by": false, "name": "Jonty Wareing", "location": "East London-ish", "screen_name": "jonty", "profile_background_tile": false, "notifications": false, "utc_offset": 0, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Wellington", "profile_use_background_image": true, "description": "Nowt special", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "292759417", "profile_image_url": "http://pbs.twimg.com/profile_images/477032380654309376/T_r7O2po_normal.jpeg", "friends_count": 2016, "entities": {"description": {"urls": []}}, "profile_background_color": "131516", "created_at": "Wed May 04 05:31:01 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1549, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/477032380654309376/T_r7O2po_normal.jpeg", "favourites_count": 1251, "listed_count": 6, "geo_enabled": true, "follow_request_sent": false, "followers_count": 328, "following": false, "default_profile_image": false, "id": 292759417, "blocked_by": false, "name": "Ben Ackland", "location": "Pinehaven", "screen_name": "Ben_Ackland", "profile_background_tile": true, "notifications": false, "utc_offset": 46800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "92233629", "following": false, "friends_count": 930, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/watch?v=81_rmO\u2026", "url": "https://t.co/HixKgfv08O", "expanded_url": "http://www.youtube.com/watch?v=81_rmOTjobk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/683538930306781184/Zzehev8y.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 417, "location": "Twitter, Internet", "screen_name": "butthaver", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "keith nutsack", "profile_use_background_image": true, "description": "toiliet", "url": "https://t.co/HixKgfv08O", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678116785216974848/hlhMlLYg_normal.jpg", "profile_background_color": "3B94D9", "created_at": "Tue Nov 24 09:16:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678116785216974848/hlhMlLYg_normal.jpg", "favourites_count": 15304, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/683538930306781184/Zzehev8y.jpg", "default_profile_image": false, "id": 92233629, "blocked_by": false, "profile_background_tile": true, "statuses_count": 35801, "profile_banner_url": "https://pbs.twimg.com/profile_banners/92233629/1412049137", "is_translator": false}, {"time_zone": "Volgograd", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "164281349", "profile_image_url": "http://pbs.twimg.com/profile_images/2293631749/jja8suvmbcmheuwdpddc_normal.jpeg", "friends_count": 178, "entities": {"description": {"urls": []}}, "profile_background_color": "131516", "created_at": "Thu Jul 08 13:52:48 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 914, "profile_sidebar_border_color": "EEEEEE", "lang": "ru", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2293631749/jja8suvmbcmheuwdpddc_normal.jpeg", "favourites_count": 3, "listed_count": 4, "geo_enabled": false, "follow_request_sent": false, "followers_count": 20, "following": false, "default_profile_image": false, "id": 164281349, "blocked_by": false, "name": "Igor", "location": "Russia, Moscow", "screen_name": "garrypt", "profile_background_tile": true, "notifications": false, "utc_offset": 10800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "22802715", "following": false, "friends_count": 2285, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nbcbayarea.com", "url": "https://t.co/dfHTR3NgWx", "expanded_url": "http://www.nbcbayarea.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649038185813532674/PNn1fbM4.jpg", "notifications": false, "profile_sidebar_fill_color": "211A30", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 3855, "location": "San Jose, CA", "screen_name": "RobMayeda", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 164, "name": "Rob Mayeda", "profile_use_background_image": true, "description": "New Dad, AMS Meteorologist, #Lupus awareness advocate, #CSUEB lecturer, #CrossFit adventurer, living with #CavalierKingCharles spaniels", "url": "https://t.co/dfHTR3NgWx", "profile_text_color": "6F6F80", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/620417612095184896/xIeGcEFE_normal.jpg", "profile_background_color": "FFF04D", "created_at": "Wed Mar 04 17:22:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/620417612095184896/xIeGcEFE_normal.jpg", "favourites_count": 5841, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649038185813532674/PNn1fbM4.jpg", "default_profile_image": false, "id": 22802715, "blocked_by": false, "profile_background_tile": false, "statuses_count": 12591, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22802715/1451027401", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "770036047", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "friends_count": 94, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Aug 20 18:54:32 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "favourites_count": 9, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 11, "following": false, "default_profile_image": true, "id": 770036047, "blocked_by": false, "name": "Steve", "location": "", "screen_name": "sjtrettel", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4095858439", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "friends_count": 130, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Nov 01 23:35:51 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1, "following": false, "default_profile_image": true, "id": 4095858439, "blocked_by": false, "name": "Gianna", "location": "", "screen_name": "gianna11011", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Irkutsk", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 28800, "id_str": "416204683", "following": false, "friends_count": 407, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "westernpacificweather.com", "url": "http://t.co/UDlBzpJA2e", "expanded_url": "http://westernpacificweather.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/701849715/9087f00b8fcd97f2639cb479f63ccb1b.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 2035, "location": "Tokyo Japan", "screen_name": "robertspeta", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 153, "name": "Robert Speta", "profile_use_background_image": true, "description": "Weather geek from Machias, NY, working as a meteorologist for NHK World TV in Tokyo. Also run my own independent weather site.", "url": "http://t.co/UDlBzpJA2e", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/534137706893152256/pX_IzDgF_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Sat Nov 19 11:10:44 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534137706893152256/pX_IzDgF_normal.jpeg", "favourites_count": 1454, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/701849715/9087f00b8fcd97f2639cb479f63ccb1b.png", "default_profile_image": false, "id": 416204683, "blocked_by": false, "profile_background_tile": true, "statuses_count": 8733, "profile_banner_url": "https://pbs.twimg.com/profile_banners/416204683/1421968721", "is_translator": false}, {"time_zone": "Quito", "profile_use_background_image": true, "description": "Student meteorologist, communicator, autism researcher/writer and educator. Photographer. Light Python/web coder. Harry Potter and Person of Interest = life.", "url": "https://t.co/DMbbZav7UV", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "286437628", "profile_image_url": "http://pbs.twimg.com/profile_images/468527612646526976/G6uZh_gO_normal.jpeg", "friends_count": 216, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mattbolton.me", "url": "https://t.co/DMbbZav7UV", "expanded_url": "http://www.mattbolton.me", "indices": [0, 23]}]}}, "profile_background_color": "C0DEED", "created_at": "Sat Apr 23 00:47:57 +0000 2011", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379044242/Double-Double-Sun2.jpg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379044242/Double-Double-Sun2.jpg", "statuses_count": 2290, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/468527612646526976/G6uZh_gO_normal.jpeg", "favourites_count": 3304, "listed_count": 14, "geo_enabled": false, "follow_request_sent": false, "followers_count": 246, "following": false, "default_profile_image": false, "id": 286437628, "blocked_by": false, "name": "Matt Bolton", "location": "", "screen_name": "mboltonwx", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Bogota", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "12651242", "following": false, "friends_count": 2342, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pcastano.tumblr.com", "url": "http://t.co/uSFgyCmogK", "expanded_url": "http://pcastano.tumblr.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/471848993790500865/3Eo4mVyu.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 4283, "location": "Washington, D.C.", "screen_name": "pcastano", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 131, "name": "pcastano", "profile_use_background_image": true, "description": "And Kepler said to Galileo: Let us create vessels and sails adjusted to the heavenly ether, and there will be plenty of people unafraid of the empty wastes.", "url": "http://t.co/uSFgyCmogK", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3108646177/18797838af40a0aeb58799a581b33c8c_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Thu Jan 24 18:40:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3108646177/18797838af40a0aeb58799a581b33c8c_normal.jpeg", "favourites_count": 62484, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/471848993790500865/3Eo4mVyu.jpeg", "default_profile_image": false, "id": 12651242, "blocked_by": false, "profile_background_tile": true, "statuses_count": 115333, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12651242/1401331499", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "529840215", "following": false, "friends_count": 1501, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/452001810673188864/RJIYU0bw.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 547, "location": "Eastern NC", "screen_name": "WxPermitting", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "David Glenn", "profile_use_background_image": true, "description": "Meteorologist (NWS) in Eastern NC (MHX). Tweet about wx, saltwater fishing, and most sports. Go #UNC, #UNCW, #MSState., & #UofSC ! Opinions are mine only.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/474515536634601472/Pn6DtHue_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Mar 19 23:12:52 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/474515536634601472/Pn6DtHue_normal.jpeg", "favourites_count": 1916, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452001810673188864/RJIYU0bw.jpeg", "default_profile_image": false, "id": 529840215, "blocked_by": false, "profile_background_tile": true, "statuses_count": 3145, "profile_banner_url": "https://pbs.twimg.com/profile_banners/529840215/1383879278", "is_translator": false}, {"time_zone": "Melbourne", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "40636840", "following": false, "friends_count": 1993, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jonathandavidbrent.com", "url": "http://t.co/c9rOTUyfS0", "expanded_url": "http://jonathandavidbrent.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/16406403/jono_myspace_dinosaurs_2.gif", "notifications": false, "profile_sidebar_fill_color": "FAFAFA", "profile_link_color": "737373", "geo_enabled": true, "followers_count": 635, "location": "Melbourne, Australia", "screen_name": "jonomatopoeia", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Jonathan David Brent", "profile_use_background_image": false, "description": "Writer | Editor | Web content guy | UNIC\u2665DE.", "url": "http://t.co/c9rOTUyfS0", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000117523809/d1a91b7d3b8ad9b4b468ce86db0490e9_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Sun May 17 09:57:24 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FAFAFA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000117523809/d1a91b7d3b8ad9b4b468ce86db0490e9_normal.jpeg", "favourites_count": 415, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/16406403/jono_myspace_dinosaurs_2.gif", "default_profile_image": false, "id": 40636840, "blocked_by": false, "profile_background_tile": true, "statuses_count": 640, "profile_banner_url": "https://pbs.twimg.com/profile_banners/40636840/1413896959", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "20496789", "following": false, "friends_count": 429, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/lazaruslong", "url": "https://t.co/8ktb0yshqu", "expanded_url": "http://about.me/lazaruslong", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453778137/background.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "FF0000", "geo_enabled": false, "followers_count": 1725, "location": "Los Angeles", "screen_name": "ROCKETDRAG", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "McThrust LePayload", "profile_use_background_image": true, "description": "Mohawk'd Rocket Astronomer. Sunset enthusiast. Internet Dragon. He/Him/Dude Ex Astra, Scientia. #Mach25Club #opinionsmine #BipolarType1", "url": "https://t.co/8ktb0yshqu", "profile_text_color": "02AA9F", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680823559443226624/SeuL8RlF_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Feb 10 07:15:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680823559443226624/SeuL8RlF_normal.jpg", "favourites_count": 9493, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453778137/background.png", "default_profile_image": false, "id": 20496789, "blocked_by": false, "profile_background_tile": true, "statuses_count": 120309, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20496789/1398737738", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14458551", "following": false, "friends_count": 309, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jaredhead.com", "url": "https://t.co/016SjoG2ZZ", "expanded_url": "http://jaredhead.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/137279861/blog_abstract_imp.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "828282", "geo_enabled": true, "followers_count": 738, "location": "Los Angeles", "screen_name": "jaredhead", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "THE MOHAWK RETURNS", "profile_use_background_image": true, "description": "Mohawk'd Rocket Scientist Astronomer for @TMRO and @GriffithObserv. Living with Bipolar Type I.\n\nHe/Him/Dude\n\nEx Astra, Scientia. \n\n#opinionsmine", "url": "https://t.co/016SjoG2ZZ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660861335433953284/gVkfAPVb_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Apr 21 05:02:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660861335433953284/gVkfAPVb_normal.jpg", "favourites_count": 476, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/137279861/blog_abstract_imp.jpg", "default_profile_image": false, "id": 14458551, "blocked_by": false, "profile_background_tile": false, "statuses_count": 18326, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14458551/1399172052", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15489945", "following": false, "friends_count": 3045, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mashable.com", "url": "http://t.co/VdC8HQfSBi", "expanded_url": "http://www.mashable.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/713342514/5d4e2537a0680c5eda635fd2f682b638.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 13332, "location": "iPhone: 40.805134,-73.965057", "screen_name": "afreedma", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1039, "name": "Andrew Freedman", "profile_use_background_image": true, "description": "Mashable's science editor reporting on climate science, policy & weather + other news/geekery. New dad. Andrew[at]mashable[dot]com.", "url": "http://t.co/VdC8HQfSBi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/417419572463931392/XA9Zhu4j_normal.jpeg", "profile_background_color": "131516", "created_at": "Sat Jul 19 04:44:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/417419572463931392/XA9Zhu4j_normal.jpeg", "favourites_count": 415, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/713342514/5d4e2537a0680c5eda635fd2f682b638.jpeg", "default_profile_image": false, "id": 15489945, "blocked_by": false, "profile_background_tile": true, "statuses_count": 24229, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15489945/1398212960", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "192769408", "following": false, "friends_count": 113, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 90, "location": "Florida, USA", "screen_name": "Cyclonebiskit", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Brenden Moses", "profile_use_background_image": true, "description": "Hurricane enthusiast and researcher; presently working on the HURDAT reanalysis at the NHC.\nComments/opinions here are my own and not reflective of my employer.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638032842384101376/hVFibAUg_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Sep 20 02:53:32 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638032842384101376/hVFibAUg_normal.png", "favourites_count": 287, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 192769408, "blocked_by": false, "profile_background_tile": false, "statuses_count": 224, "profile_banner_url": "https://pbs.twimg.com/profile_banners/192769408/1440967205", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "911455968", "following": false, "friends_count": 809, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "juliandiamond.smugmug.com", "url": "http://t.co/mDm3jdtldR", "expanded_url": "http://juliandiamond.smugmug.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/696554695/00309db64bc8bafb83a3903da87b5adc.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 288, "location": "Poughkeepsie, NY", "screen_name": "juliancd38", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Julian Diamond", "profile_use_background_image": true, "description": "Meteorology student, photographer, stargazer, aurora chaser, and pyro enthusiast, at the corner of Walk and Don't Walk somewhere on U.S. 1", "url": "http://t.co/mDm3jdtldR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000167323349/2823451e8a39300a1df560fdfd4ec2ff_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 29 01:08:21 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000167323349/2823451e8a39300a1df560fdfd4ec2ff_normal.jpeg", "favourites_count": 4209, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/696554695/00309db64bc8bafb83a3903da87b5adc.jpeg", "default_profile_image": false, "id": 911455968, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1408, "profile_banner_url": "https://pbs.twimg.com/profile_banners/911455968/1450207205", "is_translator": false}, {"time_zone": "UTC", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "14822329", "following": false, "friends_count": 163, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "F5ABB5", "geo_enabled": false, "followers_count": 29, "location": "", "screen_name": "juntora", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "juntora", "profile_use_background_image": false, "description": "a wonderful and rare manifestation of universal curiosity. Free thinker loves science, cooking, dancing, making things, music. living in Berlin with her son", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685395560250109953/mW7_2sXn_normal.jpg", "profile_background_color": "000000", "created_at": "Sun May 18 17:03:35 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685395560250109953/mW7_2sXn_normal.jpg", "favourites_count": 68, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 14822329, "blocked_by": false, "profile_background_tile": false, "statuses_count": 265, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14822329/1452246103", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "13148", "following": false, "friends_count": 880, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "liamcooke.com", "url": "https://t.co/Wz4bls6kQh", "expanded_url": "http://liamcooke.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "848484", "geo_enabled": false, "followers_count": 1605, "location": "AFK", "screen_name": "inky", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 104, "name": "Liam", "profile_use_background_image": false, "description": "ambient music + art bots", "url": "https://t.co/Wz4bls6kQh", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660938666668384256/goDqCydt_normal.jpg", "profile_background_color": "EDEDF4", "created_at": "Mon Nov 20 00:04:50 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660938666668384256/goDqCydt_normal.jpg", "favourites_count": 63934, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "default_profile_image": false, "id": 13148, "blocked_by": false, "profile_background_tile": false, "statuses_count": 26235, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13148/1447542687", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2995432416", "following": false, "friends_count": 254, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "christopherwalsh.cc", "url": "https://t.co/FpkcAwZT9U", "expanded_url": "http://www.christopherwalsh.cc", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/559257685112012803/uzR73gF8.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "666666", "geo_enabled": false, "followers_count": 44, "location": "", "screen_name": "WalshGestalt", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Christopher Walsh", "profile_use_background_image": false, "description": "", "url": "https://t.co/FpkcAwZT9U", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658806196309270528/sgeeGbLm_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Sun Jan 25 06:15:48 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658806196309270528/sgeeGbLm_normal.jpg", "favourites_count": 495, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/559257685112012803/uzR73gF8.jpeg", "default_profile_image": false, "id": 2995432416, "blocked_by": false, "profile_background_tile": true, "statuses_count": 103, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2995432416/1447036047", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "492752830", "following": false, "friends_count": 692, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sites.google.com/site/timlinmet\u2026", "url": "https://t.co/F91X3chcrF", "expanded_url": "https://sites.google.com/site/timlinmeteorology/home", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 459, "location": "NW of 40/70 Benchmark", "screen_name": "joshtimlin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "Josh Timlin", "profile_use_background_image": true, "description": "Teach & learn about #EarthScience and #Meteorology for a living | Long Island, NY", "url": "https://t.co/F91X3chcrF", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669529002151907328/QfnsNvRy_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Wed Feb 15 02:43:19 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669529002151907328/QfnsNvRy_normal.jpg", "favourites_count": 4517, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "default_profile_image": false, "id": 492752830, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5396, "profile_banner_url": "https://pbs.twimg.com/profile_banners/492752830/1438742098", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "196457689", "following": false, "friends_count": 451, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "F5B40E", "geo_enabled": true, "followers_count": 127, "location": "Connecticut", "screen_name": "DavidMRohde", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "David Rohde", "profile_use_background_image": true, "description": "A geographer interested in nature above and below its surface, and managing a missed calling to meteorology through observation. Consultant @Google. K\u03a3 EZ Alum", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3592523027/11339bd5555a0e0e666dad39c16f3c2a_normal.png", "profile_background_color": "131516", "created_at": "Wed Sep 29 04:10:41 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3592523027/11339bd5555a0e0e666dad39c16f3c2a_normal.png", "favourites_count": 4920, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 196457689, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1418, "profile_banner_url": "https://pbs.twimg.com/profile_banners/196457689/1437445354", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "225616331", "following": false, "friends_count": 505, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "streetwanderer.com", "url": "http://t.co/alX5eWcfhG", "expanded_url": "http://www.streetwanderer.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "038543", "geo_enabled": false, "followers_count": 223, "location": "Montr\u00e9al", "screen_name": "StreetWanderer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "Nicolas L.", "profile_use_background_image": false, "description": "Every good idea borders on the stupid. UX Design, Photography, Random computer things. \nI want to retire on Mars.", "url": "http://t.co/alX5eWcfhG", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/530183088353972225/HPUB_4dK_normal.jpeg", "profile_background_color": "ABB8C2", "created_at": "Sun Dec 12 01:12:25 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/530183088353972225/HPUB_4dK_normal.jpeg", "favourites_count": 33, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 225616331, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3573, "profile_banner_url": "https://pbs.twimg.com/profile_banners/225616331/1415240501", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "digital circadia, transition and tone, {{{{{ Love }}}}} Mama bear, Director of Hardware Engineering at Slate Digital", "url": "https://t.co/1q12I0DE5n", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "55434790", "profile_image_url": "http://pbs.twimg.com/profile_images/668482479280418816/STtA03bi_normal.jpg", "friends_count": 198, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "slatemt.com", "url": "https://t.co/1q12I0DE5n", "expanded_url": "http://www.slatemt.com", "indices": [0, 23]}]}}, "profile_background_color": "1A1B1F", "created_at": "Fri Jul 10 01:55:18 +0000 2009", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/61363566/800px-Kt88_power_tubes_in_traynor_yba200_amplifier.jpg", "profile_text_color": "666666", "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/61363566/800px-Kt88_power_tubes_in_traynor_yba200_amplifier.jpg", "statuses_count": 316, "profile_sidebar_border_color": "181A1E", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/668482479280418816/STtA03bi_normal.jpg", "favourites_count": 236, "listed_count": 7, "geo_enabled": false, "follow_request_sent": false, "followers_count": 246, "following": false, "default_profile_image": false, "id": 55434790, "blocked_by": false, "name": "Erika Earl", "location": "LA", "screen_name": "resistordog", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3736932253", "following": false, "friends_count": 589, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 76, "location": "", "screen_name": "ColeLovesBots", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "cole loves bots", "profile_use_background_image": true, "description": "I follow the bots so @colewillsea can focus on engaging with other meat bots. I give updates to @colewillsea on what the bots do. I have root privileges.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649204796210089984/hGXModSc_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 30 12:44:28 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649204796210089984/hGXModSc_normal.jpg", "favourites_count": 1574, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3736932253, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1249, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3736932253/1443617502", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "DaVinci said we'd always look at the sky, longing to be there. I love to fly, and I have always wanted to know how things work, and fix them.", "url": "http://t.co/MYEImHw1GT", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "37240298", "profile_image_url": "http://pbs.twimg.com/profile_images/192965242/1k-DSCF0236_normal.JPG", "friends_count": 507, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "yeah.org/~berry", "url": "http://t.co/MYEImHw1GT", "expanded_url": "http://www.yeah.org/~berry", "indices": [0, 22]}]}}, "profile_background_color": "8B542B", "created_at": "Sat May 02 17:27:53 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 1170, "profile_sidebar_border_color": "D9B17E", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/192965242/1k-DSCF0236_normal.JPG", "favourites_count": 114, "listed_count": 27, "geo_enabled": true, "follow_request_sent": false, "followers_count": 376, "following": false, "default_profile_image": false, "id": 37240298, "blocked_by": false, "name": "Sean Berry", "location": "MSP", "screen_name": "seanbseanb", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "58889232", "following": false, "friends_count": 700, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tiny.cc/osnw3wxclimate", "url": "https://t.co/tDtJtEWA30", "expanded_url": "http://tiny.cc/osnw3wxclimate", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 599, "location": "Oshkosh, WI", "screen_name": "OSNW3", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 38, "name": "Josh Herman", "profile_use_background_image": true, "description": "Husband. Father. Oshkosh. Weather fan. Radar loops. Data. Charts. Precipitation enthusiast. \u2600\ufe0f\u2614\ufe0f\u26a1\ufe0f", "url": "https://t.co/tDtJtEWA30", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/465940754703978496/QYF_3DUI_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Jul 21 19:18:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465940754703978496/QYF_3DUI_normal.jpeg", "favourites_count": 7854, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 58889232, "blocked_by": false, "profile_background_tile": false, "statuses_count": 11441, "profile_banner_url": "https://pbs.twimg.com/profile_banners/58889232/1398196714", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "40323299", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000105051062/be2bfec45024d16bf6726ea007d25fb2_normal.jpeg", "friends_count": 58, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri May 15 20:18:13 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 12, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000105051062/be2bfec45024d16bf6726ea007d25fb2_normal.jpeg", "favourites_count": 2, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 19, "following": false, "default_profile_image": false, "id": 40323299, "blocked_by": false, "name": "Jon Burdette", "location": "", "screen_name": "jmb443", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2492541432", "following": false, "friends_count": 414, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cs.au.dk/~adc", "url": "https://t.co/LcgGlsdkCS", "expanded_url": "https://cs.au.dk/~adc", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/470538689903218689/OuxG2tAs.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "006399", "geo_enabled": true, "followers_count": 237, "location": "Thisted, Denmark", "screen_name": "DamsgaardAnders", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Anders Damsgaard", "profile_use_background_image": true, "description": "PhD in geoscience. Interested in glaciers, climate, mechanics, numerical modeling, and infosec. See @DSCOVRbot.", "url": "https://t.co/LcgGlsdkCS", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663650017018830848/RrvPqXR3_normal.jpg", "profile_background_color": "131516", "created_at": "Tue May 13 07:10:11 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663650017018830848/RrvPqXR3_normal.jpg", "favourites_count": 943, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/470538689903218689/OuxG2tAs.jpeg", "default_profile_image": false, "id": 2492541432, "blocked_by": false, "profile_background_tile": true, "statuses_count": 247, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2492541432/1401020524", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "17271646", "following": false, "friends_count": 1153, "entities": {"description": {"urls": [{"display_url": "playfabulousbeasts.com", "url": "https://t.co/jaDUJzRbdm", "expanded_url": "http://playfabulousbeasts.com/", "indices": [63, 86]}]}, "url": {"urls": [{"display_url": "v21.io", "url": "http://t.co/ii4wyeCVLA", "expanded_url": "http://v21.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5569506/office_baby.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 2947, "location": "London, UK", "screen_name": "v21", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 119, "name": "George Buckenham", "profile_use_background_image": true, "description": "I'm making a game about failing to stack animals in a big pile https://t.co/jaDUJzRbdm\nI killed bot o'clock.", "url": "http://t.co/ii4wyeCVLA", "profile_text_color": "919191", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2271384465/mlt5v0btabp3oc7s90h6_normal.png", "profile_background_color": "000000", "created_at": "Sun Nov 09 18:02:07 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FF1A1A", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2271384465/mlt5v0btabp3oc7s90h6_normal.png", "favourites_count": 6239, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5569506/office_baby.png", "default_profile_image": false, "id": 17271646, "blocked_by": false, "profile_background_tile": true, "statuses_count": 36011, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17271646/1358199703", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2777170478", "following": false, "friends_count": 309, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rachelstorer.com", "url": "http://t.co/2sv19LH0PD", "expanded_url": "http://rachelstorer.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 116, "location": "San Diego", "screen_name": "cloudsinmybeer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Rachel Storer", "profile_use_background_image": true, "description": "Postdoc at JPL. Weather nerd.", "url": "http://t.co/2sv19LH0PD", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/618099100962033664/jPQuWFQF_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Aug 28 21:26:09 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/618099100962033664/jPQuWFQF_normal.jpg", "favourites_count": 906, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2777170478, "blocked_by": false, "profile_background_tile": false, "statuses_count": 763, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2777170478/1436201500", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "Views expressed herein are my own and not affiliated with government or professional organizations.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "1447500740", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "friends_count": 1245, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue May 21 23:26:40 +0000 2013", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2708, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "favourites_count": 4599, "listed_count": 3, "geo_enabled": true, "follow_request_sent": false, "followers_count": 142, "following": false, "default_profile_image": true, "id": 1447500740, "blocked_by": false, "name": "Dan Wiggins", "location": "Mississippi ", "screen_name": "danw5211", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "739990838", "following": false, "friends_count": 192, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 24, "location": "", "screen_name": "ramnath_mallya", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Ramnath Mallya", "profile_use_background_image": true, "description": "Views expressed are my own and not that of my employer.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/607125225818316800/2k462Cjz_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Aug 06 06:26:21 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/607125225818316800/2k462Cjz_normal.jpg", "favourites_count": 28, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 739990838, "blocked_by": false, "profile_background_tile": false, "statuses_count": 108, "profile_banner_url": "https://pbs.twimg.com/profile_banners/739990838/1433584878", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "415588655", "following": false, "friends_count": 297, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thewildair.com", "url": "http://t.co/ySsRKqZVjg", "expanded_url": "http://www.thewildair.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 85, "location": "Edinburgh, Scotland.", "screen_name": "KristieDeGaris", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Kristie De Garis", "profile_use_background_image": true, "description": "Bit of this, bit of that. Can't resist an anthropomorphic dog meme.", "url": "http://t.co/ySsRKqZVjg", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641348289208578049/fHnphcHM_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Nov 18 14:54:05 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641348289208578049/fHnphcHM_normal.jpg", "favourites_count": 97, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 415588655, "blocked_by": false, "profile_background_tile": false, "statuses_count": 468, "profile_banner_url": "https://pbs.twimg.com/profile_banners/415588655/1441744379", "is_translator": false}, {"time_zone": "Chennai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "2831471840", "following": false, "friends_count": 57, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chennairains.com", "url": "https://t.co/HUVHA0LycU", "expanded_url": "http://www.chennairains.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 44389, "location": "Chennai, Tamil Nadu", "screen_name": "ChennaiRains", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 72, "name": "ChennaiRains", "profile_use_background_image": true, "description": "Independent Weather Blogging Community from Chennai. Providing weather updates for events influencing Chennai & South India.", "url": "https://t.co/HUVHA0LycU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/528178045153067011/DvaP7QZh_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Sep 25 09:02:35 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/528178045153067011/DvaP7QZh_normal.jpeg", "favourites_count": 2354, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2831471840, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5791, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2831471840/1439434147", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "586783391", "following": false, "friends_count": 405, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "002BFF", "geo_enabled": true, "followers_count": 614, "location": "Austin/San Antonio, TX", "screen_name": "ZombieTrev5k", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Trevor Boucher", "profile_use_background_image": true, "description": "Meteorologist at @NWSSanAntonio. NWA Social Media Committee Member. Big on Deaf Outreach #VOST #SAVI and risk perception.Texas Tech '08 & '10. Views are my own.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/554561593892032512/yhfcgQwq_normal.jpeg", "profile_background_color": "131516", "created_at": "Mon May 21 19:03:42 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/554561593892032512/yhfcgQwq_normal.jpeg", "favourites_count": 2678, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 586783391, "blocked_by": false, "profile_background_tile": true, "statuses_count": 9082, "profile_banner_url": "https://pbs.twimg.com/profile_banners/586783391/1400596059", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "145018802", "profile_image_url": "http://pbs.twimg.com/profile_images/477493597168603137/G_nfuG-6_normal.jpeg", "friends_count": 297, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon May 17 22:59:21 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 42, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/477493597168603137/G_nfuG-6_normal.jpeg", "favourites_count": 54, "listed_count": 0, "geo_enabled": true, "follow_request_sent": false, "followers_count": 44, "following": false, "default_profile_image": false, "id": 145018802, "blocked_by": false, "name": "Jack Hengst", "location": "", "screen_name": "JackHJr", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": false, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "21632468", "profile_image_url": "http://pbs.twimg.com/profile_images/654714331762810880/ASBo2bMO_normal.jpg", "friends_count": 384, "entities": {"description": {"urls": []}}, "profile_background_color": "352726", "created_at": "Mon Feb 23 04:59:18 +0000 2009", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4914338/Pine_cones__male_and_female.jpg", "profile_text_color": "3E4415", "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4914338/Pine_cones__male_and_female.jpg", "statuses_count": 3, "profile_sidebar_border_color": "829D5E", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/654714331762810880/ASBo2bMO_normal.jpg", "favourites_count": 12, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 21, "following": false, "default_profile_image": false, "id": 21632468, "blocked_by": false, "name": "Mike Kelley", "location": "", "screen_name": "mrkel", "profile_background_tile": true, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Buenos Aires", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "1938746702", "following": false, "friends_count": 267, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/670259797141385216/yA9lZvPx.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "A6A6A6", "geo_enabled": false, "followers_count": 387, "location": "Argentina", "screen_name": "LePongoAle", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Alejandro", "profile_use_background_image": true, "description": "Un DVR de series, televisi\u00f3n y una gu\u00eda de tv.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/613224450994106368/xEOyK_yz_normal.jpg", "profile_background_color": "A6A6A6", "created_at": "Sat Oct 05 20:16:29 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/613224450994106368/xEOyK_yz_normal.jpg", "favourites_count": 7139, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/670259797141385216/yA9lZvPx.png", "default_profile_image": false, "id": 1938746702, "blocked_by": false, "profile_background_tile": true, "statuses_count": 10196, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1938746702/1447337102", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2378057094", "following": false, "friends_count": 417, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 126, "location": "", "screen_name": "gnirtsmodnar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "lookitscarl", "profile_use_background_image": false, "description": "Please explain to me the scientific nature of 'the whammy'.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/611373116510507009/G2GnoSPl_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Mar 08 03:34:32 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/611373116510507009/G2GnoSPl_normal.jpg", "favourites_count": 1055, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2378057094, "blocked_by": false, "profile_background_tile": false, "statuses_count": 835, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2378057094/1425070497", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "21634600", "following": false, "friends_count": 779, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 13122, "location": "", "screen_name": "coreyspowell", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 706, "name": "Corey S. Powell", "profile_use_background_image": true, "description": "Science editor at @aeonmag. Editor-at-large at @discovermag. Astronomy and space obsessive. Curious fellow.", "url": null, "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684127003537223681/9ZfUS1gc_normal.jpg", "profile_background_color": "0099B9", "created_at": "Mon Feb 23 05:46:25 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684127003537223681/9ZfUS1gc_normal.jpg", "favourites_count": 6645, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "default_profile_image": false, "id": 21634600, "blocked_by": false, "profile_background_tile": false, "statuses_count": 10404, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21634600/1377427189", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "152799744", "following": false, "friends_count": 108, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 50, "location": "Melbourne, Aus", "screen_name": "jcbmmx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "James Bennett", "profile_use_background_image": true, "description": "CSIRO scientist: streamflow forecasting. Views are, unsurprisingly, my own. Like a sharp, reliable ensemble forecast? Me too.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/627360837980651521/7mzPpTf4_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jun 06 22:39:39 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/627360837980651521/7mzPpTf4_normal.jpg", "favourites_count": 29, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 152799744, "blocked_by": false, "profile_background_tile": false, "statuses_count": 148, "profile_banner_url": "https://pbs.twimg.com/profile_banners/152799744/1438409471", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "10580652", "following": false, "friends_count": 203, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paranoidprose.com", "url": "http://t.co/AGwThkEoE5", "expanded_url": "http://paranoidprose.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2785353/bestcourse.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 242, "location": "Weehawken, NJ", "screen_name": "alberg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Al Berg", "profile_use_background_image": true, "description": "By day, Chief Security & Risk Officer in financial services. By night, EMT and local history nerd.", "url": "http://t.co/AGwThkEoE5", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/555535485053845504/arcpDVRd_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Mon Nov 26 02:38:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555535485053845504/arcpDVRd_normal.jpeg", "favourites_count": 61, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2785353/bestcourse.jpg", "default_profile_image": false, "id": 10580652, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1674, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10580652/1383147005", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "30363057", "following": false, "friends_count": 75, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 16, "location": "", "screen_name": "ELD_3", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Eddie Divita", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/618847431539556352/qN8JLsLs_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Apr 11 01:23:15 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/618847431539556352/qN8JLsLs_normal.jpg", "favourites_count": 157, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 30363057, "blocked_by": false, "profile_background_tile": false, "statuses_count": 142, "profile_banner_url": "https://pbs.twimg.com/profile_banners/30363057/1436379700", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2428028178", "following": false, "friends_count": 341, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 20, "location": "", "screen_name": "LizCohee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Liz Cohee", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/452641792848961538/BVxj8jEX_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Apr 05 00:26:35 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/452641792848961538/BVxj8jEX_normal.jpeg", "favourites_count": 14, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2428028178, "blocked_by": false, "profile_background_tile": false, "statuses_count": 8, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2428028178/1397234179", "is_translator": false}, {"time_zone": "Arizona", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "33526366", "profile_image_url": "http://pbs.twimg.com/profile_images/2455291396/image_normal.jpg", "friends_count": 435, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Apr 20 14:20:57 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 37, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2455291396/image_normal.jpg", "favourites_count": 91, "listed_count": 0, "geo_enabled": true, "follow_request_sent": false, "followers_count": 67, "following": false, "default_profile_image": false, "id": 33526366, "blocked_by": false, "name": "Adam Gubser", "location": "", "screen_name": "adamgubser", "profile_background_tile": false, "notifications": false, "utc_offset": -25200, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "Tech junkie, ice sculptor, artist, musician, cook, Tapatio enthusiast. I care about lots of things.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3742139896", "profile_image_url": "http://pbs.twimg.com/profile_images/646416952223731712/_80xJXf7_normal.jpg", "friends_count": 143, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Sep 22 20:02:44 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 41, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/646416952223731712/_80xJXf7_normal.jpg", "favourites_count": 419, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 15, "following": false, "default_profile_image": false, "id": 3742139896, "blocked_by": false, "name": "Pal", "location": "United States", "screen_name": "PalThinks", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Sydney", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "89360546", "profile_image_url": "http://pbs.twimg.com/profile_images/522601401/images_normal.jpeg", "friends_count": 442, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Thu Nov 12 03:22:57 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/522601401/images_normal.jpeg", "favourites_count": 8, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 64, "following": false, "default_profile_image": false, "id": 89360546, "blocked_by": false, "name": "Michael Priebe", "location": "", "screen_name": "MichaelPriebe", "profile_background_tile": false, "notifications": false, "utc_offset": 39600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "1750241", "following": false, "friends_count": 1809, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/jason.r.hunter", "url": "https://t.co/JxN18vI11f", "expanded_url": "http://about.me/jason.r.hunter", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/680917174/4b931e6f6a67f41a089ad31e73aef0ac.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "323233", "geo_enabled": true, "followers_count": 1490, "location": "Krugerville, TX", "screen_name": "coreburn", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 115, "name": "Jason R. Hunter", "profile_use_background_image": true, "description": "", "url": "https://t.co/JxN18vI11f", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680747860300673024/2f3I2LTa_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Mar 21 14:16:12 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680747860300673024/2f3I2LTa_normal.jpg", "favourites_count": 119148, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/680917174/4b931e6f6a67f41a089ad31e73aef0ac.jpeg", "default_profile_image": false, "id": 1750241, "blocked_by": false, "profile_background_tile": false, "statuses_count": 39038, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1750241/1424283930", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "156866068", "following": false, "friends_count": 2264, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": false, "followers_count": 633, "location": "", "screen_name": "jane_austin14", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "jane", "profile_use_background_image": false, "description": "artsy newsy quirky lovey (re)tweets that catch my fancy. trump-free zone. #mn", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1126854579/coffee_and_paris_book_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Jun 18 04:28:25 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1126854579/coffee_and_paris_book_normal.jpg", "favourites_count": 6005, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "default_profile_image": false, "id": 156866068, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4710, "profile_banner_url": "https://pbs.twimg.com/profile_banners/156866068/1419828867", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "302150880", "following": false, "friends_count": 425, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/613286059/x1f38368757eb5855def28108f291a47.jpg", "notifications": false, "profile_sidebar_fill_color": "061127", "profile_link_color": "52555C", "geo_enabled": true, "followers_count": 176, "location": "Richmond, Virginia", "screen_name": "WxJAK", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Jacob Klee", "profile_use_background_image": true, "description": "Follower of Christ; Husband to the Excellent & Beautiful Jennifer; Father; Severe Wx Meteorologist. Tweets are my own; Retweets are not Endorsements.", "url": null, "profile_text_color": "827972", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/517027006882406402/IcDSx4h__normal.jpeg", "profile_background_color": "59472F", "created_at": "Fri May 20 17:51:22 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000515", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517027006882406402/IcDSx4h__normal.jpeg", "favourites_count": 13539, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/613286059/x1f38368757eb5855def28108f291a47.jpg", "default_profile_image": false, "id": 302150880, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6504, "profile_banner_url": "https://pbs.twimg.com/profile_banners/302150880/1397738672", "is_translator": false}, {"time_zone": "Alaska", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "103098916", "profile_image_url": "http://pbs.twimg.com/profile_images/2311043715/1mvjeaoteye18q84t9on_normal.jpeg", "friends_count": 307, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Jan 08 22:06:14 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 48, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2311043715/1mvjeaoteye18q84t9on_normal.jpeg", "favourites_count": 5, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 20, "following": false, "default_profile_image": false, "id": 103098916, "blocked_by": false, "name": "Jim Syme", "location": "", "screen_name": "JimSyme", "profile_background_tile": false, "notifications": false, "utc_offset": -32400, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1535353321", "following": false, "friends_count": 66, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 31, "location": "Brooklyn, New York", "screen_name": "BlaiseBace", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Blaise Bace", "profile_use_background_image": false, "description": "All things digital, in a lurking kind of way...", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/642142784498085888/5HWLNDwB_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Jun 21 00:05:50 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/642142784498085888/5HWLNDwB_normal.jpg", "favourites_count": 5, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1535353321, "blocked_by": false, "profile_background_tile": false, "statuses_count": 21, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1535353321/1424143604", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2859249170", "following": false, "friends_count": 239, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 74, "location": "", "screen_name": "EricArnoys", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Eric Arnoys", "profile_use_background_image": true, "description": "husband, father, biochemist, wonderer more than wanderer, nanonaut", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/523126137610711041/Qb_PWiM3_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Oct 17 03:00:14 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/523126137610711041/Qb_PWiM3_normal.jpeg", "favourites_count": 690, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2859249170, "blocked_by": false, "profile_background_tile": false, "statuses_count": 311, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2859249170/1413515559", "is_translator": false}, {"time_zone": "Brisbane", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 36000, "id_str": "245216468", "following": false, "friends_count": 632, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thejezabels.com", "url": "http://t.co/kZQjQPLyPm", "expanded_url": "http://www.thejezabels.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 808, "location": "Sydney, Australia", "screen_name": "samuelhlockwood", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Samuel Lockwood", "profile_use_background_image": true, "description": "Hey there I'm the guitarist from Sydney band The Jezabels. Follow me for sporadic updates on the band. And maybe some interesting things about my life.", "url": "http://t.co/kZQjQPLyPm", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667140859633135616/TAPnBw2T_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Jan 31 04:36:34 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667140859633135616/TAPnBw2T_normal.jpg", "favourites_count": 44, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 245216468, "blocked_by": false, "profile_background_tile": false, "statuses_count": 964, "profile_banner_url": "https://pbs.twimg.com/profile_banners/245216468/1447893729", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "Water moving through human and natural landscapes! silly weather videos! iNaturalist and other tech nature stuff! vegetation mapping! attmpts at indie game dev!", "url": "http://t.co/VsM1LavdNX", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "275304259", "profile_image_url": "http://pbs.twimg.com/profile_images/1403758252/image_normal.jpg", "friends_count": 361, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "coyot.es/slowwatermovem\u2026", "url": "http://t.co/VsM1LavdNX", "expanded_url": "http://coyot.es/slowwatermovement", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Fri Apr 01 01:11:45 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4164, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1403758252/image_normal.jpg", "favourites_count": 2037, "listed_count": 32, "geo_enabled": true, "follow_request_sent": false, "followers_count": 381, "following": false, "default_profile_image": false, "id": 275304259, "blocked_by": false, "name": "Charlie Hohn", "location": "Vermont", "screen_name": "SlowWaterMvmnt", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "106995334", "following": false, "friends_count": 1304, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/191033033/IMG_3915-web.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 337, "location": "Kansas City, MO", "screen_name": "mizzouwxman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Chris Foltz", "profile_use_background_image": true, "description": "Father, Husband, Emergency Response Specialist @ NWS Central Region Headquarters. Tweets are my own. . M-I-Z!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670083920466223113/mo-IfkKz_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jan 21 08:33:53 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670083920466223113/mo-IfkKz_normal.jpg", "favourites_count": 1605, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/191033033/IMG_3915-web.jpg", "default_profile_image": false, "id": 106995334, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1824, "profile_banner_url": "https://pbs.twimg.com/profile_banners/106995334/1441135358", "is_translator": false}, {"time_zone": "New Delhi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "44309422", "following": false, "friends_count": 741, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 306, "location": "", "screen_name": "PainkillerGSV", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Painkiller GSV", "profile_use_background_image": true, "description": "Jack of Many Trades & Master Of One. Here to collect & distribute useless information.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631448096166141952/57L32WPH_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Wed Jun 03 06:38:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631448096166141952/57L32WPH_normal.jpg", "favourites_count": 1878, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 44309422, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9046, "profile_banner_url": "https://pbs.twimg.com/profile_banners/44309422/1448961548", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2921789080", "profile_image_url": "http://pbs.twimg.com/profile_images/607379037858725888/hoYuiiHD_normal.jpg", "friends_count": 306, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Dec 14 18:26:43 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 19, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/607379037858725888/hoYuiiHD_normal.jpg", "favourites_count": 358, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 27, "following": false, "default_profile_image": false, "id": 2921789080, "blocked_by": false, "name": "SheilaLookingBak", "location": "Indiana, USA", "screen_name": "SheilaLookinBak", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "138008977", "following": false, "friends_count": 779, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629310718/hits4ujgur782p52j4sd.jpeg", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 511, "location": "Cheyenne, WY", "screen_name": "BeccMaz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "Becs", "profile_use_background_image": true, "description": "you can find me lost in the music, marveling at the sky, or in the mountains.", "url": null, "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638776708527689729/aqS92yzs_normal.jpg", "profile_background_color": "642D8B", "created_at": "Wed Apr 28 11:20:10 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638776708527689729/aqS92yzs_normal.jpg", "favourites_count": 2628, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629310718/hits4ujgur782p52j4sd.jpeg", "default_profile_image": false, "id": 138008977, "blocked_by": false, "profile_background_tile": true, "statuses_count": 27411, "profile_banner_url": "https://pbs.twimg.com/profile_banners/138008977/1355825279", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2895272489", "following": false, "friends_count": 479, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 53, "location": "Napghanistan", "screen_name": "scozie11", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Scozie", "profile_use_background_image": false, "description": "Words", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675038439151173633/G8Em68Wo_normal.png", "profile_background_color": "000000", "created_at": "Thu Nov 27 23:05:44 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675038439151173633/G8Em68Wo_normal.png", "favourites_count": 1287, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2895272489, "blocked_by": false, "profile_background_tile": false, "statuses_count": 441, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2895272489/1449779203", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "826898994", "following": false, "friends_count": 871, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "maynoothuniversity.ie/geography/our-\u2026", "url": "https://t.co/TGLL6EYnaZ", "expanded_url": "https://www.maynoothuniversity.ie/geography/our-people/alistair-fraser", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 497, "location": "Ireland & Mexico", "screen_name": "AFraser_NUIM", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Alistair Fraser", "profile_use_background_image": true, "description": "Geography lecturer at Maynooth University, Ireland.", "url": "https://t.co/TGLL6EYnaZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/530277487352508416/RHKfjw_q_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Sep 16 10:49:39 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/530277487352508416/RHKfjw_q_normal.jpeg", "favourites_count": 1859, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 826898994, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3383, "profile_banner_url": "https://pbs.twimg.com/profile_banners/826898994/1379099517", "is_translator": false}, {"time_zone": "Islamabad", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 18000, "id_str": "867477402", "following": false, "friends_count": 351, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/Zedzeds", "url": "https://t.co/BKAJxQDth4", "expanded_url": "https://twitter.com/Zedzeds", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 130, "location": "Maldives", "screen_name": "Zedzeds", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Zambe", "profile_use_background_image": true, "description": "born to pay rent + tax and die. from #millionaires #paradise Rajjethere nt atholhuthere . all things #fish n #aquaculture", "url": "https://t.co/BKAJxQDth4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659619946758955008/g_vQXkY5_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 08 05:45:16 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659619946758955008/g_vQXkY5_normal.jpg", "favourites_count": 200, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 867477402, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2419, "profile_banner_url": "https://pbs.twimg.com/profile_banners/867477402/1392566216", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "191558116", "following": false, "friends_count": 682, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 104, "location": "California, USA", "screen_name": "HardRockKitchen", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "HRK", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659389559642304512/n7xb8HfH_normal.jpg", "profile_background_color": "ABB8C2", "created_at": "Thu Sep 16 19:08:47 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659389559642304512/n7xb8HfH_normal.jpg", "favourites_count": 174, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 191558116, "blocked_by": false, "profile_background_tile": false, "statuses_count": 109, "profile_banner_url": "https://pbs.twimg.com/profile_banners/191558116/1446045784", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "23730486", "following": false, "friends_count": 746, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bryanleboff.com", "url": "http://t.co/yvd5TuU4Wm", "expanded_url": "http://bryanleboff.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "E86500", "geo_enabled": true, "followers_count": 392, "location": "philadelphia, pa", "screen_name": "leboff", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Bryan Leboff", "profile_use_background_image": true, "description": "Renowned Hipster. These are not intended to be factual statements. RTs are clearly endorsements.", "url": "http://t.co/yvd5TuU4Wm", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/464392882133032960/LIb9z9I8_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Wed Mar 11 06:09:34 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/464392882133032960/LIb9z9I8_normal.jpeg", "favourites_count": 505, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 23730486, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6469, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23730486/1399553526", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "Independent thinker and optimist (most of the time!). Fields: law, history.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2275022184", "profile_image_url": "http://pbs.twimg.com/profile_images/419866729758482433/AQ62EeXV_normal.jpeg", "friends_count": 359, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Jan 03 20:02:24 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 66, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/419866729758482433/AQ62EeXV_normal.jpeg", "favourites_count": 17, "listed_count": 2, "geo_enabled": false, "follow_request_sent": false, "followers_count": 36, "following": false, "default_profile_image": false, "id": 2275022184, "blocked_by": false, "name": "Ruth D Reichard", "location": "Planet Earth", "screen_name": "RuthDReichard", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Studying ecology, geology, economics, and related stuff. Hope to know something someday and that you can tell. Not much politics here.", "url": "http://t.co/Q89OH5i5ih", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "30312152", "profile_image_url": "http://pbs.twimg.com/profile_images/1368887559/Dogon_normal.jpg", "friends_count": 649, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stevepaulson.org", "url": "http://t.co/Q89OH5i5ih", "expanded_url": "http://stevepaulson.org", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Fri Apr 10 21:02:17 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 587, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1368887559/Dogon_normal.jpg", "favourites_count": 90, "listed_count": 4, "geo_enabled": false, "follow_request_sent": false, "followers_count": 102, "following": false, "default_profile_image": false, "id": 30312152, "blocked_by": false, "name": "Steve Paulson", "location": "USA ~ Pacific Northwest", "screen_name": "stevepaulson", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "269045721", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "friends_count": 732, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Mar 20 00:38:01 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "favourites_count": 22, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 41, "following": false, "default_profile_image": true, "id": 269045721, "blocked_by": false, "name": "Jack Corroon", "location": "", "screen_name": "jackcorroon", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "924522715", "following": false, "friends_count": 187, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "standalonedjs.com", "url": "https://t.co/YPNtbv91cw", "expanded_url": "http://standalonedjs.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/727664122/1dd3f55d1f5f8c15815fb167fb1468bc.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 55, "location": "Durango, Colorado, USA", "screen_name": "mowglidgo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Meyers", "profile_use_background_image": true, "description": "Born, raised, and living in Durango, CO. Co-Owner of Stand Alone Entertainment, a Mobile DJ and Promotion Company.", "url": "https://t.co/YPNtbv91cw", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2924928501/5aedd6fbcd514c9198599fdf94e309a7_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Sun Nov 04 02:53:57 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2924928501/5aedd6fbcd514c9198599fdf94e309a7_normal.jpeg", "favourites_count": 503, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/727664122/1dd3f55d1f5f8c15815fb167fb1468bc.jpeg", "default_profile_image": false, "id": 924522715, "blocked_by": false, "profile_background_tile": false, "statuses_count": 94, "profile_banner_url": "https://pbs.twimg.com/profile_banners/924522715/1449306606", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "39511684", "following": false, "friends_count": 681, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "0099B9", "geo_enabled": true, "followers_count": 257, "location": "Chicago, IL", "screen_name": "Kelpher", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Kelpher", "profile_use_background_image": true, "description": "You don't know me. I don't know you. Follow me or don't follow me. Does it really matter? Does anyone read these things anyway?", "url": null, "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683478663078227969/AeHlN7Sz_normal.jpg", "profile_background_color": "0099B9", "created_at": "Tue May 12 14:36:06 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683478663078227969/AeHlN7Sz_normal.jpg", "favourites_count": 7530, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "default_profile_image": false, "id": 39511684, "blocked_by": false, "profile_background_tile": false, "statuses_count": 772, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39511684/1451438802", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "132399660", "following": false, "friends_count": 591, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mrhollister.com", "url": "https://t.co/tL99dmVTxU", "expanded_url": "http://www.mrhollister.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/782602713/0c9fd1dbc9d43ce91b468025393f4ff2.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "085169", "geo_enabled": true, "followers_count": 577, "location": "Turlock, Ca", "screen_name": "phaneritic", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 51, "name": "Ryan Hollister", "profile_use_background_image": false, "description": "GeoSci & EnviroSci Educator, WildLink Club Advisor, Hiker, Landscape photog, Central Valley Advocate. 2015 NAGT FW OEST. Love adventures w/ @Xeno_lith & Zephyr.", "url": "https://t.co/tL99dmVTxU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684986332653854720/JlqoKK7-_normal.jpg", "profile_background_color": "022330", "created_at": "Tue Apr 13 03:54:35 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684986332653854720/JlqoKK7-_normal.jpg", "favourites_count": 2628, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/782602713/0c9fd1dbc9d43ce91b468025393f4ff2.jpeg", "default_profile_image": false, "id": 132399660, "blocked_by": false, "profile_background_tile": false, "statuses_count": 12657, "profile_banner_url": "https://pbs.twimg.com/profile_banners/132399660/1442300967", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "390512763", "profile_image_url": "http://pbs.twimg.com/profile_images/2599638321/9riagpoagc6vy36tcn7s_normal.jpeg", "friends_count": 531, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Oct 14 02:57:21 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1034, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2599638321/9riagpoagc6vy36tcn7s_normal.jpeg", "favourites_count": 25, "listed_count": 1, "geo_enabled": true, "follow_request_sent": false, "followers_count": 75, "following": false, "default_profile_image": false, "id": 390512763, "blocked_by": false, "name": "doogs", "location": "Philadelphia / King of Prussia", "screen_name": "Doogery", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "mother, grandmother, love education and children. Love ATP tennis!! Minnesota Vikings!!", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "37674397", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "friends_count": 1689, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon May 04 14:49:05 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 294, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "favourites_count": 1279, "listed_count": 3, "geo_enabled": false, "follow_request_sent": false, "followers_count": 34, "following": false, "default_profile_image": true, "id": 37674397, "blocked_by": false, "name": "Barbara McLaury", "location": "Reno, Nevada", "screen_name": "maclaughry", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "989809284", "following": false, "friends_count": 170, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 17, "location": "South Jersey", "screen_name": "ali_smedley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Ali Smedley", "profile_use_background_image": true, "description": "Lawyer. Smartass. Very Good Friend.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2984543909/1819a0d11590143bf9a30f27fe5901f2_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Tue Dec 04 23:50:49 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2984543909/1819a0d11590143bf9a30f27fe5901f2_normal.jpeg", "favourites_count": 107, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "default_profile_image": false, "id": 989809284, "blocked_by": false, "profile_background_tile": false, "statuses_count": 444, "profile_banner_url": "https://pbs.twimg.com/profile_banners/989809284/1386019930", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4029291252", "following": false, "friends_count": 102, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "89C9FA", "geo_enabled": false, "followers_count": 14, "location": "Melbourne, Australia", "screen_name": "rlbkinsey", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Robyn Kinsey", "profile_use_background_image": false, "description": "Digital content & design manager and enthusiast for content strategy, UX, IA, design thinking, geography, weather, music and travel. Also, curiosity!", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660426498575220736/VfD-IkkG_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Oct 26 23:25:00 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660426498575220736/VfD-IkkG_normal.jpg", "favourites_count": 12, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4029291252, "blocked_by": false, "profile_background_tile": false, "statuses_count": 20, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4029291252/1446274816", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2953578088", "following": false, "friends_count": 492, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 29, "location": "", "screen_name": "footybuddy_", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Footy Buddy", "profile_use_background_image": true, "description": "Everyone's buddy for all things \u26bd\ufe0f including: #USMNT #BPL #LaLiga #Bundisliga #serieA #Ligue1 and more!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684832679376863233/QB11XzUl_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Dec 31 18:32:47 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684832679376863233/QB11XzUl_normal.jpg", "favourites_count": 48, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2953578088, "blocked_by": false, "profile_background_tile": false, "statuses_count": 61, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2953578088/1451175658", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "106728002", "following": false, "friends_count": 990, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "conejousd.org/tohs", "url": "http://t.co/3WOfqtcsQp", "expanded_url": "http://www.conejousd.org/tohs", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/667514906/673c2dc22bbe1dfc94a2df3732608cad.jpeg", "notifications": false, "profile_sidebar_fill_color": "0A8216", "profile_link_color": "0B871D", "geo_enabled": true, "followers_count": 1831, "location": "Thousand Oaks, CA", "screen_name": "ThousandOaksHS", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "Thousand Oaks HS", "profile_use_background_image": false, "description": "The Official Twitter account for Thousand Oaks High School. A diverse and high achieving school with winning programs in all areas. We are TOHS! #BleedGreen", "url": "http://t.co/3WOfqtcsQp", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/513858066224148480/gAFCWjOr_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Wed Jan 20 14:22:47 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/513858066224148480/gAFCWjOr_normal.jpeg", "favourites_count": 1810, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/667514906/673c2dc22bbe1dfc94a2df3732608cad.jpeg", "default_profile_image": false, "id": 106728002, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4335, "profile_banner_url": "https://pbs.twimg.com/profile_banners/106728002/1378431011", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "634337244", "following": false, "friends_count": 548, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450106384864927745/P74T_7In.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 463, "location": "", "screen_name": "ASchueth", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 20, "name": "Alex Schueth", "profile_use_background_image": true, "description": "UNL Mechanical Engineering Major, Meteorology minor, avid storm chaser", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/475727972419108864/OcrhFULJ_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Jul 13 03:26:41 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/475727972419108864/OcrhFULJ_normal.jpeg", "favourites_count": 1800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450106384864927745/P74T_7In.jpeg", "default_profile_image": false, "id": 634337244, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1289, "profile_banner_url": "https://pbs.twimg.com/profile_banners/634337244/1444859234", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "Retired US Senate Media Relations Coord/Off Mgr/Crisis Mgt - 29 year non-partisian US Senate Vet. Insights, witness, understanding & love of all things Senate.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "22195908", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730940844/bf43a11ccfda182946ff5dc2b16b15b3_normal.jpeg", "friends_count": 771, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Feb 27 21:54:01 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1374, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730940844/bf43a11ccfda182946ff5dc2b16b15b3_normal.jpeg", "favourites_count": 172, "listed_count": 2, "geo_enabled": true, "follow_request_sent": false, "followers_count": 148, "following": false, "default_profile_image": false, "id": 22195908, "blocked_by": false, "name": "Wendy Oscarson", "location": "Washington, DC", "screen_name": "WendyOscarson", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2185039262", "following": false, "friends_count": 521, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 409, "location": "border state", "screen_name": "JikiRick", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Jiki Rick", "profile_use_background_image": true, "description": "arcane random thoughts, retired veteran with a deep disdain for delusion and denial, progressive", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/665039366683693056/q5NTrJHd_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Nov 09 21:00:31 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665039366683693056/q5NTrJHd_normal.jpg", "favourites_count": 1104, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2185039262, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1900, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2185039262/1384752252", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "445753422", "following": false, "friends_count": 559, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 61, "location": "NJ", "screen_name": "Mccarthy2Matt", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Matty Mc", "profile_use_background_image": true, "description": "i put solar panels on landfills", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3335692911/b263aac887aadfbcd47fbcbafc4ccff4_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Dec 24 20:34:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3335692911/b263aac887aadfbcd47fbcbafc4ccff4_normal.jpeg", "favourites_count": 144, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 445753422, "blocked_by": false, "profile_background_tile": false, "statuses_count": 271, "profile_banner_url": "https://pbs.twimg.com/profile_banners/445753422/1362361928", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "15832457", "following": false, "friends_count": 687, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "996E00", "geo_enabled": false, "followers_count": 444, "location": "", "screen_name": "oshack", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "Owen Shackelford", "profile_use_background_image": true, "description": "Politics is a contact sport. So is Braves baseball.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683080659271684096/LFvXF2Wh_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Aug 13 03:43:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683080659271684096/LFvXF2Wh_normal.jpg", "favourites_count": 39, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 15832457, "blocked_by": false, "profile_background_tile": true, "statuses_count": 4219, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15832457/1451694402", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "628719809", "following": false, "friends_count": 1486, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "amyabts.com", "url": "https://t.co/Z5powTexXZ", "expanded_url": "http://www.amyabts.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 543, "location": "Rochester MN", "screen_name": "amy_abts", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Amy Abts", "profile_use_background_image": true, "description": "Wear what you dig, man. Wear what you dig.", "url": "https://t.co/Z5powTexXZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671791123375919104/zetat3Uz_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Jul 06 21:03:04 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671791123375919104/zetat3Uz_normal.jpg", "favourites_count": 4270, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 628719809, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3066, "profile_banner_url": "https://pbs.twimg.com/profile_banners/628719809/1448999689", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3179475258", "following": false, "friends_count": 1054, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joincampaignzero.org", "url": "https://t.co/okIBpNIyYG", "expanded_url": "http://www.joincampaignzero.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676163901470322688/TRRZTO_W.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": false, "followers_count": 294, "location": "Seattle", "screen_name": "brad_jencks", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Brad Jencks", "profile_use_background_image": true, "description": "Hash-slinging, entropy aggregation , advanced dog butlery.", "url": "https://t.co/okIBpNIyYG", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685175845321768960/_4BiMUfr_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Apr 29 16:34:33 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685175845321768960/_4BiMUfr_normal.jpg", "favourites_count": 941, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676163901470322688/TRRZTO_W.jpg", "default_profile_image": false, "id": 3179475258, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4319, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3179475258/1452017164", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "Canadian Meteorologist with an interest in Climate Change and Economics", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3119242741", "profile_image_url": "http://pbs.twimg.com/profile_images/594072280268836864/LSnHwmpH_normal.jpg", "friends_count": 744, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Mar 31 05:48:59 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 300, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/594072280268836864/LSnHwmpH_normal.jpg", "favourites_count": 80, "listed_count": 6, "geo_enabled": false, "follow_request_sent": false, "followers_count": 73, "following": false, "default_profile_image": false, "id": 3119242741, "blocked_by": false, "name": "Shawn", "location": "Waterloo, Ontario", "screen_name": "senocvahr", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "New Delhi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "39982013", "following": false, "friends_count": 1078, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blogs.wsj.com/indiarealtime/", "url": "http://t.co/eMMymrYFrl", "expanded_url": "http://blogs.wsj.com/indiarealtime/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2822, "location": "Delhi", "screen_name": "jhsugden", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 120, "name": "Joanna Sugden", "profile_use_background_image": true, "description": "Editor, India Real Time, The Wall Street Journal @WSJIndia", "url": "http://t.co/eMMymrYFrl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/481653559146971136/H4Tb-yj0_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu May 14 12:24:18 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/481653559146971136/H4Tb-yj0_normal.jpeg", "favourites_count": 11, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 39982013, "blocked_by": false, "profile_background_tile": false, "statuses_count": 789, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39982013/1364297229", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2281405616", "profile_image_url": "http://pbs.twimg.com/profile_images/435528633394798592/UIxavOwI_normal.jpeg", "friends_count": 825, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Wed Jan 08 01:36:43 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 38, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/435528633394798592/UIxavOwI_normal.jpeg", "favourites_count": 72, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 94, "following": false, "default_profile_image": false, "id": 2281405616, "blocked_by": false, "name": "Jeffrey Traeger", "location": "San Francisco ", "screen_name": "jtraeger8", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "322543289", "following": false, "friends_count": 440, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E5507E", "profile_link_color": "B40B43", "geo_enabled": true, "followers_count": 162, "location": "Portland, OR", "screen_name": "DodgetownUSA", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Sam Soule", "profile_use_background_image": false, "description": "I live in a small room.", "url": null, "profile_text_color": "362720", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/623340314502131712/bRzKZQmr_normal.jpg", "profile_background_color": "FF6699", "created_at": "Thu Jun 23 10:26:34 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/623340314502131712/bRzKZQmr_normal.jpg", "favourites_count": 1128, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", "default_profile_image": false, "id": 322543289, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2283, "profile_banner_url": "https://pbs.twimg.com/profile_banners/322543289/1404270701", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "205876282", "following": false, "friends_count": 492, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": false, "followers_count": 252, "location": "", "screen_name": "zpaget", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Zak Paget", "profile_use_background_image": true, "description": "Challenge-craving, news-obsessed comms professional. Oh, and of course: travel and food lover (#clich\u00e9). Tweets = my own thoughts/opinions.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/656300865448497152/CRYn9wr5_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Thu Oct 21 20:06:21 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656300865448497152/CRYn9wr5_normal.jpg", "favourites_count": 12, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 205876282, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1406, "profile_banner_url": "https://pbs.twimg.com/profile_banners/205876282/1438401014", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "328122243", "following": false, "friends_count": 404, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "weather.gov/norman", "url": "https://t.co/2PdyC4ofYj", "expanded_url": "http://www.weather.gov/norman", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 460, "location": "Norman, OK", "screen_name": "jon_kurtz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 34, "name": "Jonathan Kurtz", "profile_use_background_image": false, "description": "Meteorologist, #STL Native, @UNLincoln & @Creighton grad. #GBR #OptOutside Ignorance knows no job title. -JG", "url": "https://t.co/2PdyC4ofYj", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/623906728749367296/dKnHUlFM_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Jul 02 19:37:27 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/623906728749367296/dKnHUlFM_normal.jpg", "favourites_count": 1029, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 328122243, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2890, "profile_banner_url": "https://pbs.twimg.com/profile_banners/328122243/1421028483", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "182163783", "following": false, "friends_count": 596, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/460921682836733955/s_IKjLDX.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1955, "location": "Kirkland, WA", "screen_name": "Justegarde", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "Justin Fassino", "profile_use_background_image": true, "description": "New Media & Social PR for @StepThreePR (Activision, Robot Entertainment)\nGamer / Hockey fan / Board game geek / 100% of these ridiculous opinions = 100% mine", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680625666375585792/YMJznv_8_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Aug 23 23:57:42 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680625666375585792/YMJznv_8_normal.jpg", "favourites_count": 305, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/460921682836733955/s_IKjLDX.jpeg", "default_profile_image": false, "id": 182163783, "blocked_by": false, "profile_background_tile": false, "statuses_count": 17693, "profile_banner_url": "https://pbs.twimg.com/profile_banners/182163783/1450772110", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "282267194", "profile_image_url": "http://pbs.twimg.com/profile_images/684037636135251968/jkzFhGNP_normal.jpg", "friends_count": 214, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Thu Apr 14 21:54:36 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/684037636135251968/jkzFhGNP_normal.jpg", "favourites_count": 2, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 5, "following": false, "default_profile_image": false, "id": 282267194, "blocked_by": false, "name": "Andrew Genz", "location": "Washington, DC", "screen_name": "ajgenz", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24818240", "following": false, "friends_count": 664, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 429, "location": "Southern California", "screen_name": "russmaloney", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Russ Maloney", "profile_use_background_image": true, "description": "Radio and TV guy. Writer of things. I think; therefore, I am...I think.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/452952787626635264/AzWFuOxi_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Tue Mar 17 01:55:50 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/452952787626635264/AzWFuOxi_normal.jpeg", "favourites_count": 4230, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 24818240, "blocked_by": false, "profile_background_tile": false, "statuses_count": 10253, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24818240/1451785394", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "19213877", "following": false, "friends_count": 2040, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/664868086/d9fb9859e7a88ed05094c1ac2c0cb9ca.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1215, "location": "Cincinnati, OH", "screen_name": "wxenthus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 58, "name": "Dr. Mike Moyer", "profile_use_background_image": true, "description": "Ph.D. - Atmospheric Science/Cog. Psychology of Memory are my diverse areas of research and study. (\u2608\u2109\u2745) + \u03c8(\u2627) = Graecum est; non legitur.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/520399760118018048/Brrej4N2_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Jan 20 01:47:47 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/520399760118018048/Brrej4N2_normal.jpeg", "favourites_count": 834, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/664868086/d9fb9859e7a88ed05094c1ac2c0cb9ca.jpeg", "default_profile_image": false, "id": 19213877, "blocked_by": false, "profile_background_tile": false, "statuses_count": 13260, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19213877/1414185104", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "99555170", "following": false, "friends_count": 2066, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "createsust.com", "url": "http://t.co/7fIbJp7KST", "expanded_url": "http://createsust.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4446A6", "geo_enabled": true, "followers_count": 569, "location": "Plano, Texas", "screen_name": "CreateSust", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Brian & Marta Moore", "profile_use_background_image": false, "description": "Discussing the ends, ways, and means of sustainability", "url": "http://t.co/7fIbJp7KST", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1240435921/AmoebiusBand_whiteBackground__normal.jpg", "profile_background_color": "000000", "created_at": "Sat Dec 26 18:54:20 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1240435921/AmoebiusBand_whiteBackground__normal.jpg", "favourites_count": 711, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "default_profile_image": false, "id": 99555170, "blocked_by": false, "profile_background_tile": false, "statuses_count": 838, "profile_banner_url": "https://pbs.twimg.com/profile_banners/99555170/1402921254", "is_translator": false}, {"time_zone": "Quito", "profile_use_background_image": true, "description": "happily married to jimmie johnson. tv photographer. fan of cowboys reds uk basketball", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "45579199", "profile_image_url": "http://pbs.twimg.com/profile_images/1131082373/IMG00108-20100808-1432_normal.jpg", "friends_count": 1636, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Jun 08 14:44:40 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1377, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131082373/IMG00108-20100808-1432_normal.jpg", "favourites_count": 1714, "listed_count": 2, "geo_enabled": true, "follow_request_sent": false, "followers_count": 256, "following": false, "default_profile_image": false, "id": 45579199, "blocked_by": false, "name": "Gary Johnson", "location": "", "screen_name": "bluegrass1962", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5361852", "following": false, "friends_count": 835, "entities": {"description": {"urls": [{"display_url": "my.pronoun.is/he", "url": "http://t.co/vAbKyrUOi5", "expanded_url": "http://my.pronoun.is/he", "indices": [60, 82]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": true, "followers_count": 384, "location": "San Francisco, CA", "screen_name": "martineno", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Homosexual Supremacy", "profile_use_background_image": true, "description": "Emperor in training, megageek. Occasional kink reference. \u2022 http://t.co/vAbKyrUOi5", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/513067687212113920/vW5VMOmK_normal.png", "profile_background_color": "8B542B", "created_at": "Fri Apr 20 22:34:22 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/513067687212113920/vW5VMOmK_normal.png", "favourites_count": 1776, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "default_profile_image": false, "id": 5361852, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6741, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5361852/1414882261", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "61029535", "following": false, "friends_count": 296, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/DanAmaranteWea\u2026", "url": "http://t.co/ywbzCg2Qi8", "expanded_url": "http://facebook.com/DanAmaranteWeather", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/450221287042842624/kw-sRIo1.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3731, "location": "Connecticut", "screen_name": "DanAmarante", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 113, "name": "Dan Amarante", "profile_use_background_image": true, "description": "Certified Broadcast Meteorologist on @FOX61News, Sunday radio forecasts for @WTIC1080... Born & raised in Connecticut. Baseball player, weather and space nerd.", "url": "http://t.co/ywbzCg2Qi8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658610127113576448/Xd6RjnSM_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jul 28 21:49:24 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658610127113576448/Xd6RjnSM_normal.jpg", "favourites_count": 1695, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/450221287042842624/kw-sRIo1.jpeg", "default_profile_image": false, "id": 61029535, "blocked_by": false, "profile_background_tile": false, "statuses_count": 12513, "profile_banner_url": "https://pbs.twimg.com/profile_banners/61029535/1399463344", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "183476295", "following": false, "friends_count": 1939, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stefmcdonald.com", "url": "http://t.co/fCKGP1GOrY", "expanded_url": "http://stefmcdonald.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000103250562/eb22b8461a0091e2823ad75d7ea802bb.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": false, "followers_count": 562, "location": "Los Angeles, CA", "screen_name": "Stefaniamcd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Stef McDonald", "profile_use_background_image": true, "description": "Working with words for nonprofits & good businesses. Also: playing dress-up and planning my next meal.", "url": "http://t.co/fCKGP1GOrY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1889971382/profile_bw_beach_stripes_normal.JPG", "profile_background_color": "ACDED6", "created_at": "Fri Aug 27 02:38:06 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1889971382/profile_bw_beach_stripes_normal.JPG", "favourites_count": 1581, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000103250562/eb22b8461a0091e2823ad75d7ea802bb.jpeg", "default_profile_image": false, "id": 183476295, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2741, "profile_banner_url": "https://pbs.twimg.com/profile_banners/183476295/1393438633", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "34330530", "following": false, "friends_count": 1068, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "m.MemphisWeather.net", "url": "http://t.co/iJf0b1ymjf", "expanded_url": "http://m.MemphisWeather.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000166702810/Yeil8u8f.jpeg", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "0000AA", "geo_enabled": true, "followers_count": 13598, "location": "Memphis, TN", "screen_name": "memphisweather1", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 376, "name": "MemphisWeather.net", "profile_use_background_image": true, "description": "17 years in Memphis weather. Curated by tweeteorologist EP & #TeamMWN. Keeping the 8-county metro informed and storm safe. Also find us on FB & Google+", "url": "http://t.co/iJf0b1ymjf", "profile_text_color": "2E2E2E", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/463741044199157760/0dMc569m_normal.png", "profile_background_color": "B9CFE6", "created_at": "Wed Apr 22 17:11:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/463741044199157760/0dMc569m_normal.png", "favourites_count": 538, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000166702810/Yeil8u8f.jpeg", "default_profile_image": false, "id": 34330530, "blocked_by": false, "profile_background_tile": false, "statuses_count": 60995, "profile_banner_url": "https://pbs.twimg.com/profile_banners/34330530/1402604158", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Dog-wrangler, writer, gardener, cook, IT ninja. Mefite. She. I don't care if you don't agree with me.", "url": "http://t.co/1w7ytdoVso", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "316103", "profile_image_url": "http://pbs.twimg.com/profile_images/1094775072/lyn2x2_normal.JPG", "friends_count": 1466, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pajamageddon.com", "url": "http://t.co/1w7ytdoVso", "expanded_url": "http://pajamageddon.com", "indices": [0, 22]}]}}, "profile_background_color": "352726", "created_at": "Thu Dec 28 15:00:19 +0000 2006", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_text_color": "3E4415", "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 8838, "profile_sidebar_border_color": "829D5E", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1094775072/lyn2x2_normal.JPG", "favourites_count": 1610, "listed_count": 61, "geo_enabled": true, "follow_request_sent": false, "followers_count": 548, "following": false, "default_profile_image": false, "id": 316103, "blocked_by": false, "name": "Lyn Never", "location": "Los Angeles, CA", "screen_name": "LynNever", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "15946918", "profile_image_url": "http://pbs.twimg.com/profile_images/58775762/St._Kitts_and_Vegas_029_normal.jpg", "friends_count": 265, "entities": {"description": {"urls": []}}, "profile_background_color": "C6E2EE", "created_at": "Fri Aug 22 16:33:17 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "profile_text_color": "663B12", "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 474, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/58775762/St._Kitts_and_Vegas_029_normal.jpg", "favourites_count": 3, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 94, "following": false, "default_profile_image": false, "id": 15946918, "blocked_by": false, "name": "Tom McCurry", "location": "Overland Park, KS", "screen_name": "kcmonkeyt", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "209859040", "following": false, "friends_count": 686, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2C809E", "geo_enabled": true, "followers_count": 182, "location": "", "screen_name": "aktaylor08", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Adam Taylor", "profile_use_background_image": true, "description": "Software Engineer, Meteorologist, Roboticist.\nOpinions are my own.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/480330447616868353/VpgkU4RM_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Oct 30 01:49:48 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/480330447616868353/VpgkU4RM_normal.jpeg", "favourites_count": 999, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 209859040, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2408, "profile_banner_url": "https://pbs.twimg.com/profile_banners/209859040/1398532710", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "4801", "following": false, "friends_count": 2054, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sinden.org", "url": "https://t.co/eJrLojRwNR", "expanded_url": "http://www.sinden.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/10364823/d.jpg", "notifications": false, "profile_sidebar_fill_color": "A3C7D6", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 1018, "location": "St Louis, Mo.", "screen_name": "sinden", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 43, "name": "David Sinden", "profile_use_background_image": false, "description": "I'm an Episcopalian, organist, and conductor. Lessons and Carols obsessive. Co-parent of 25 lb. human. I've been on Twitter way longer than you have.", "url": "https://t.co/eJrLojRwNR", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/14147852/dsinden_normal.jpg", "profile_background_color": "800080", "created_at": "Mon Aug 28 02:20:52 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/14147852/dsinden_normal.jpg", "favourites_count": 4727, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/10364823/d.jpg", "default_profile_image": false, "id": 4801, "blocked_by": false, "profile_background_tile": false, "statuses_count": 13429, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4801/1361333552", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "17235811", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "friends_count": 492, "entities": {"description": {"urls": []}}, "profile_background_color": "C6E2EE", "created_at": "Fri Nov 07 18:26:36 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "profile_text_color": "663B12", "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 7, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "favourites_count": 3, "listed_count": 2, "geo_enabled": false, "follow_request_sent": false, "followers_count": 130, "following": false, "default_profile_image": true, "id": 17235811, "blocked_by": false, "name": "Scott Lemmon", "location": "", "screen_name": "scott_lemmon", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1855332805", "following": false, "friends_count": 226, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/555517972916097024/tbQqbcAI.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 763, "location": "Hancock County, Indiana", "screen_name": "wxindy", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 32, "name": "\u26a1WX Indy \u26a1\ufe0f", "profile_use_background_image": false, "description": "Brian...Weather enthusiast, father, husband, professional turf management. opinions are my own. A retweet doesn't always signify an endorsement.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/645684917666492416/FxOAGctB_normal.png", "profile_background_color": "131516", "created_at": "Wed Sep 11 19:55:09 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645684917666492416/FxOAGctB_normal.png", "favourites_count": 1767, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/555517972916097024/tbQqbcAI.jpeg", "default_profile_image": false, "id": 1855332805, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5385, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1855332805/1448402927", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "26325494", "following": false, "friends_count": 1470, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 42, "location": "", "screen_name": "samueleisenberg", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 2, "name": "Sam Eisenberg", "profile_use_background_image": true, "description": "Recent @stanfordlaw grad. Tweets about Twins baseball, Gopher hockey, Cardinal football. Occasional comments on energy and environmental law and policy.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/481312445512699904/JnAyo-S4_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Mar 24 21:12:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/481312445512699904/JnAyo-S4_normal.jpeg", "favourites_count": 70, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 26325494, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3559, "profile_banner_url": "https://pbs.twimg.com/profile_banners/26325494/1403588833", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "1934690210", "following": false, "friends_count": 273, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 53, "location": "", "screen_name": "amae_hoppenjans", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 0, "name": "76_phoenix", "profile_use_background_image": true, "description": "Skywatcher, food and wine enthusiast, I worship the woods.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/563036309724618752/8CybZ3xb_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Oct 04 16:03:41 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563036309724618752/8CybZ3xb_normal.jpeg", "favourites_count": 1820, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1934690210, "blocked_by": false, "profile_background_tile": false, "statuses_count": 341, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1934690210/1428714413", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "832718768", "following": false, "friends_count": 1269, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1559, "location": "East Coast, Mid-Atlantic", "screen_name": "StormForce_1", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 73, "name": "StormForce_1", "profile_use_background_image": true, "description": "Fan of the weather. News & political junkie. Chasing storms when I can. Was in the eye of Hurricanes Irene & Sandy at landfall. #StandWithRand #RandPaul2016", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675523239389474816/yLAVb5aY_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 19 06:37:54 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675523239389474816/yLAVb5aY_normal.jpg", "favourites_count": 7213, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 832718768, "blocked_by": false, "profile_background_tile": false, "statuses_count": 19424, "profile_banner_url": "https://pbs.twimg.com/profile_banners/832718768/1449885068", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "28378001", "following": false, "friends_count": 834, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 275, "location": "", "screen_name": "TiBmd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "TiBMD", "profile_use_background_image": true, "description": "Husband. Father. Brother. Son. Grandson. Surgeon. RT\u2260 endorsement\n\r\nThese opinions are my own!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000061627366/c65512cd0cab697154ec069cf5a86b60_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Thu Apr 02 17:22:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000061627366/c65512cd0cab697154ec069cf5a86b60_normal.jpeg", "favourites_count": 4846, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "default_profile_image": false, "id": 28378001, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2471, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28378001/1430364418", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "288786058", "following": false, "friends_count": 545, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/reeviespeevies/", "url": "https://t.co/yHf5SJI7YN", "expanded_url": "https://instagram.com/reeviespeevies/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492765999247007744/d3t1gWZl.jpeg", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 380, "location": "Washington, DC", "screen_name": "reeviespeevies", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "Katie Reeves", "profile_use_background_image": true, "description": "I never tweet faster than I can see. Besides that, it's all in the reflexes. Michigander. Athletics expat. Master of the [Science & Technology Policy] Universe.", "url": "https://t.co/yHf5SJI7YN", "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/521117669978693632/GpH4ICIH_normal.jpeg", "profile_background_color": "0099B9", "created_at": "Wed Apr 27 13:33:27 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/521117669978693632/GpH4ICIH_normal.jpeg", "favourites_count": 5476, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492765999247007744/d3t1gWZl.jpeg", "default_profile_image": false, "id": 288786058, "blocked_by": false, "profile_background_tile": true, "statuses_count": 7394, "profile_banner_url": "https://pbs.twimg.com/profile_banners/288786058/1423450546", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "227381114", "following": false, "friends_count": 1388, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hydro-logic.blogspot.com", "url": "http://t.co/Aeo9Y59s1w", "expanded_url": "http://hydro-logic.blogspot.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/192387486/x157a10c8e8bd14f06072a93cef1d924.jpg", "notifications": false, "profile_sidebar_fill_color": "233235", "profile_link_color": "3E87A7", "geo_enabled": true, "followers_count": 1459, "location": "Madison, Wisconsin, USA", "screen_name": "MGhydro", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 112, "name": "Matthew Garcia", "profile_use_background_image": true, "description": "PhD Candidate, Forestry + Remote Sensing @UWMadison. 2015-16 @WISpaceGrant Fellow. Trees, Water, Weather, Climate, Computing. Strange duck. Valar dohaeris.", "url": "http://t.co/Aeo9Y59s1w", "profile_text_color": "73AFC9", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/580493396457988096/Iv7xPvC1_normal.png", "profile_background_color": "D5D9C2", "created_at": "Thu Dec 16 18:01:10 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "DC4093", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/580493396457988096/Iv7xPvC1_normal.png", "favourites_count": 713, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/192387486/x157a10c8e8bd14f06072a93cef1d924.jpg", "default_profile_image": false, "id": 227381114, "blocked_by": false, "profile_background_tile": false, "statuses_count": 47343, "profile_banner_url": "https://pbs.twimg.com/profile_banners/227381114/1427235582", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14950146", "following": false, "friends_count": 1142, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "alifeitself.com", "url": "http://t.co/TTxcg6UrPI", "expanded_url": "http://alifeitself.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520893630/085-1.JPG", "notifications": false, "profile_sidebar_fill_color": "99C2C9", "profile_link_color": "99C9BD", "geo_enabled": false, "followers_count": 1828, "location": "Decatur, GA", "screen_name": "danayoung", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 129, "name": "Dana Lisa Young", "profile_use_background_image": true, "description": "Reiki healer, teacher, spiritual director & owner of Dragonfly Reiki Healing Center. I tweet about anything that strikes my fancy., which is a lot of things.", "url": "http://t.co/TTxcg6UrPI", "profile_text_color": "3D393D", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662467561481592832/ZoUMcMk2_normal.jpg", "profile_background_color": "F4C9A3", "created_at": "Fri May 30 01:05:43 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662467561481592832/ZoUMcMk2_normal.jpg", "favourites_count": 12784, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520893630/085-1.JPG", "default_profile_image": false, "id": 14950146, "blocked_by": false, "profile_background_tile": false, "statuses_count": 51968, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14950146/1446779038", "is_translator": false}, {"time_zone": "Hong Kong", "profile_use_background_image": true, "description": "A Scotsman (Arbroath) who has called Hong Kong home for +28 years. Main biz is logistics, but love hiking around our amazing hills.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "186648261", "profile_image_url": "http://pbs.twimg.com/profile_images/538106960105582592/5Xkro4nM_normal.jpeg", "friends_count": 937, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sat Sep 04 00:54:51 +0000 2010", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778834877/2d5ed635937dd2b766787782e6881852.jpeg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778834877/2d5ed635937dd2b766787782e6881852.jpeg", "statuses_count": 13556, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/538106960105582592/5Xkro4nM_normal.jpeg", "favourites_count": 2276, "listed_count": 29, "geo_enabled": true, "follow_request_sent": false, "followers_count": 495, "following": false, "default_profile_image": false, "id": 186648261, "blocked_by": false, "name": "Phillip Forsyth", "location": "Hong Kong", "screen_name": "Phillip_In_HK", "profile_background_tile": true, "notifications": false, "utc_offset": 28800, "muting": false, "protected": false, "has_extended_profile": true, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11620892", "following": false, "friends_count": 3436, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bloomberg.com", "url": "http://t.co/jn0fKSi5aC", "expanded_url": "http://www.bloomberg.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628842181/gjlz8x8joom885xnxm09.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 6374, "location": "New York, NY", "screen_name": "eroston", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 455, "name": "Eric Roston", "profile_use_background_image": true, "description": "Important things are more fun than fun things are important. Carbon stuff; also: non-carbon stuff. Spirograph black belt. Science @ Bloomberg. RT=PV/n", "url": "http://t.co/jn0fKSi5aC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000435307841/3799d9defe14d169734dce73708261db_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Sat Dec 29 04:31:19 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000435307841/3799d9defe14d169734dce73708261db_normal.jpeg", "favourites_count": 2042, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628842181/gjlz8x8joom885xnxm09.jpeg", "default_profile_image": false, "id": 11620892, "blocked_by": false, "profile_background_tile": true, "statuses_count": 9324, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11620892/1398571738", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "43032803", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "friends_count": 117, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Thu May 28 02:57:25 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 14, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "favourites_count": 60, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 11, "following": false, "default_profile_image": true, "id": 43032803, "blocked_by": false, "name": "Haviv Zahav", "location": "", "screen_name": "hzahav", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Mazatlan", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "174773888", "following": false, "friends_count": 494, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "26466D", "geo_enabled": false, "followers_count": 112, "location": "Wyoming via Idaho", "screen_name": "brendonme", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Brendon", "profile_use_background_image": false, "description": "Fan of travel, wilderness, and bad weather. I like twitter for weather. Accountant.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663443100329578496/_Mb_plGh_normal.jpg", "profile_background_color": "828282", "created_at": "Wed Aug 04 19:58:21 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663443100329578496/_Mb_plGh_normal.jpg", "favourites_count": 1384, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 174773888, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1261, "profile_banner_url": "https://pbs.twimg.com/profile_banners/174773888/1418678965", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "214591313", "following": false, "friends_count": 1174, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 177, "location": "eastern PA", "screen_name": "phellaini", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Phil Vida", "profile_use_background_image": true, "description": "Free agent weatherman and hockey fan livin in the lesser side of PA. No mystical energy field controls my destiny. It's all a lot of simple tricks and nonsense.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/510940238898683904/qzo1BRy7_normal.jpeg", "profile_background_color": "131516", "created_at": "Thu Nov 11 19:29:50 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510940238898683904/qzo1BRy7_normal.jpeg", "favourites_count": 51, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 214591313, "blocked_by": false, "profile_background_tile": true, "statuses_count": 6284, "profile_banner_url": "https://pbs.twimg.com/profile_banners/214591313/1410652635", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "290180065", "following": false, "friends_count": 6452, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "slate.com/authors.eric_h\u2026", "url": "http://t.co/hA0H6wWF56", "expanded_url": "http://www.slate.com/authors.eric_holthaus.html", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 33509, "location": "Tucson, AZ", "screen_name": "EricHolthaus", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1607, "name": "Eric Holthaus", "profile_use_background_image": true, "description": "'America's weather-predicting boyfriend' \u2014@awl | 'The internet's favorite meteorologist' \u2014@vice | Thankful. | Say hi: eric.holthaus@slate.com", "url": "http://t.co/hA0H6wWF56", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458779628161597440/mWG3M6gy_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Apr 29 21:18:26 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458779628161597440/mWG3M6gy_normal.jpeg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 290180065, "blocked_by": false, "profile_background_tile": false, "statuses_count": 37765, "profile_banner_url": "https://pbs.twimg.com/profile_banners/290180065/1398216679", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "33627414", "following": false, "friends_count": 1488, "entities": {"description": {"urls": [{"display_url": "SeeDisclaimer.com", "url": "https://t.co/Tqkn8UDdDp", "expanded_url": "http://SeeDisclaimer.com", "indices": [55, 78]}]}, "url": {"urls": [{"display_url": "metservice.com", "url": "https://t.co/SjyJ6Ke7il", "expanded_url": "http://www.metservice.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/490700799/S5001929.JPG", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 6988, "location": "Wellington City, New Zealand", "screen_name": "chesterlampkin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 250, "name": "Chester Lampkin", "profile_use_background_image": true, "description": "Meteorologist in #NewZealand @ @metservice. IMPORTANT: https://t.co/Tqkn8UDdDp Love family/friends, weather, geography, Cardinals, SLU, Mizzou, from St Louis.", "url": "https://t.co/SjyJ6Ke7il", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/644259881222995968/HaNnCIwE_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Mon Apr 20 19:20:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/644259881222995968/HaNnCIwE_normal.jpg", "favourites_count": 26057, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/490700799/S5001929.JPG", "default_profile_image": false, "id": 33627414, "blocked_by": false, "profile_background_tile": true, "statuses_count": 59554, "profile_banner_url": "https://pbs.twimg.com/profile_banners/33627414/1449305225", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "305956679", "following": false, "friends_count": 259, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 241, "location": "San Antonio", "screen_name": "SAWatcherTX", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Michael Nicolaou", "profile_use_background_image": true, "description": "Believer, Husband, Father, Weather Enthusiast, Mtn Biker, Singer, Ghost Writer for @Head_Shot_Kitty", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673343369880297472/yN7j1qOc_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri May 27 01:45:17 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673343369880297472/yN7j1qOc_normal.jpg", "favourites_count": 8199, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 305956679, "blocked_by": false, "profile_background_tile": false, "statuses_count": 16970, "profile_banner_url": "https://pbs.twimg.com/profile_banners/305956679/1431833958", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "98729176", "following": false, "friends_count": 541, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/KyleRobertsWea\u2026", "url": "https://t.co/8aCa0usAwU", "expanded_url": "http://www.facebook.com/KyleRobertsWeather", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 1182, "location": "Oklahoma City, OK", "screen_name": "KyleWeather", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 75, "name": "Kyle Roberts", "profile_use_background_image": true, "description": "Meteorologist for FOX 25 (@OKCFOX) in Oklahoma City | Texas A&M grad | Tweeter of weather, sports, and whatever crosses my mind (usually in that order)", "url": "https://t.co/8aCa0usAwU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000834039489/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg", "profile_background_color": "131516", "created_at": "Tue Dec 22 22:00:16 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000834039489/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg", "favourites_count": 1400, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 98729176, "blocked_by": false, "profile_background_tile": true, "statuses_count": 6535, "profile_banner_url": "https://pbs.twimg.com/profile_banners/98729176/1448854863", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "44676697", "following": false, "friends_count": 836, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/515574502416060416/TjnMSFeM.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 286, "location": "Nebraska", "screen_name": "Connord64", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Connor Dennhardt", "profile_use_background_image": true, "description": "Meteorology major at UNL | NWS Intern | Sports, Politics, Weather, Repeat | Tweets are my own |", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684560962582491136/kdyaM0H7_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Jun 04 18:06:02 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684560962582491136/kdyaM0H7_normal.jpg", "favourites_count": 705, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/515574502416060416/TjnMSFeM.png", "default_profile_image": false, "id": 44676697, "blocked_by": false, "profile_background_tile": true, "statuses_count": 11540, "profile_banner_url": "https://pbs.twimg.com/profile_banners/44676697/1452046995", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "244886275", "following": false, "friends_count": 449, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "841618", "geo_enabled": true, "followers_count": 89, "location": "St. Louis, Missouri, USA", "screen_name": "CoffellWX", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Dustin Coffell", "profile_use_background_image": false, "description": "Meteorology student at the University of Oklahoma. Fan of the St. Louis Cardinals, Green Bay Packers... and an avid fantasy baseball/football player.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/625768224039280640/vp386fmO_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Jan 30 10:49:38 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625768224039280640/vp386fmO_normal.jpg", "favourites_count": 49, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 244886275, "blocked_by": false, "profile_background_tile": false, "statuses_count": 380, "profile_banner_url": "https://pbs.twimg.com/profile_banners/244886275/1438029799", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "17063693", "following": false, "friends_count": 470, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "martinoleary.com", "url": "https://t.co/cZyb9A7ETj", "expanded_url": "http://www.martinoleary.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 576, "location": "Mostly Wales", "screen_name": "mewo2", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 32, "name": "Martin O'Leary", "profile_use_background_image": true, "description": "Glaciologist, trivia buff, data cruncher, man about town, euroviisuhullu. I once was voted second sexiest voice in Cambridge.", "url": "https://t.co/cZyb9A7ETj", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/434801946214801408/Ni8aJvw8_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Thu Oct 30 11:58:30 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/434801946214801408/Ni8aJvw8_normal.jpeg", "favourites_count": 30, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "default_profile_image": false, "id": 17063693, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1386, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17063693/1440399848", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "Tall", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "17010047", "profile_image_url": "http://pbs.twimg.com/profile_images/1443130120/meandthedevil_normal.jpg", "friends_count": 426, "entities": {"description": {"urls": []}}, "profile_background_color": "131516", "created_at": "Mon Oct 27 23:41:42 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 8440, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1443130120/meandthedevil_normal.jpg", "favourites_count": 4109, "listed_count": 2, "geo_enabled": false, "follow_request_sent": false, "followers_count": 122, "following": false, "default_profile_image": false, "id": 17010047, "blocked_by": false, "name": "William O'Brien", "location": "Springfield, MO", "screen_name": "sopmaster", "profile_background_tile": true, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": false, "description": "I am the bot-loving alter-ego of @corcra.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3912921921", "profile_image_url": "http://pbs.twimg.com/profile_images/652618720607469568/P_xzWL_O_normal.jpg", "friends_count": 79, "entities": {"description": {"urls": []}}, "profile_background_color": "000000", "created_at": "Fri Oct 09 22:54:12 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/652618720607469568/P_xzWL_O_normal.jpg", "favourites_count": 11, "listed_count": 5, "geo_enabled": false, "follow_request_sent": false, "followers_count": 8, "following": false, "default_profile_image": false, "id": 3912921921, "blocked_by": false, "name": "cyborcra", "location": "Everywhere", "screen_name": "cyborcra", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "87095316", "following": false, "friends_count": 3581, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dennismersereau.com", "url": "https://t.co/DS5HCTZw99", "expanded_url": "http://dennismersereau.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "1C88CC", "geo_enabled": true, "followers_count": 6030, "location": "North Carolina", "screen_name": "wxdam", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 342, "name": "Dennis Mersereau", "profile_use_background_image": true, "description": "I control the weather. Contributor to @mental_floss. I used to write for The Vane. I also wrote a book. It's good. You should buy it. \u2192", "url": "https://t.co/DS5HCTZw99", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684267915261030400/F-gzX8eX_normal.jpg", "profile_background_color": "022330", "created_at": "Tue Nov 03 03:04:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684267915261030400/F-gzX8eX_normal.jpg", "favourites_count": 9121, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "id": 87095316, "blocked_by": false, "profile_background_tile": false, "statuses_count": 16694, "profile_banner_url": "https://pbs.twimg.com/profile_banners/87095316/1447735871", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "129586119", "following": false, "friends_count": 761, "entities": {"description": {"urls": [{"display_url": "twitter.com/deathmtn/lists\u2026", "url": "https://t.co/FTnTCHiPpj", "expanded_url": "https://twitter.com/deathmtn/lists/robotic-council-of-doom/members", "indices": [120, 143]}]}, "url": {"urls": [{"display_url": "jimkang.com/namedlevels", "url": "https://t.co/FtjJuczRGL", "expanded_url": "http://jimkang.com/namedlevels", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 898, "location": "Somerville, MA", "screen_name": "deathmtn", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 72, "name": "\u2206\u25fc\ufe0e\u2206", "profile_use_background_image": true, "description": "Occupational traits. Admirable hobbies. Characteristics! Some projects: @autocompletejok, @bddpoetry, @atyrannyofwords, https://t.co/FTnTCHiPpj", "url": "https://t.co/FtjJuczRGL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680850007063457792/cemxWArq_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Apr 04 20:05:43 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680850007063457792/cemxWArq_normal.jpg", "favourites_count": 15045, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 129586119, "blocked_by": false, "profile_background_tile": false, "statuses_count": 48889, "profile_banner_url": "https://pbs.twimg.com/profile_banners/129586119/1359422907", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1160471", "following": false, "friends_count": 789, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "muffinlabs.com", "url": "https://t.co/F9U7lQOBWG", "expanded_url": "http://muffinlabs.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 928, "location": "Montague, MA", "screen_name": "muffinista", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 66, "name": "\u2630 colin mitchell \u2630", "profile_use_background_image": true, "description": "pie heals all wounds\n#botALLY", "url": "https://t.co/F9U7lQOBWG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Mar 14 14:46:25 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", "favourites_count": 11542, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", "default_profile_image": false, "id": 1160471, "blocked_by": false, "profile_background_tile": true, "statuses_count": 23431, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1160471/1406567144", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "2344125559", "following": false, "friends_count": 2332, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bitpixi.com", "url": "https://t.co/8wmgXFQ8U8", "expanded_url": "http://www.bitpixi.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 1737, "location": "South San Francisco, CA", "screen_name": "bitpixi", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 174, "name": "Kasey Robinson", "profile_use_background_image": true, "description": "@Minted Photo Editor & Design Associate. @BayAreaBotArts Meetup Organizer. 1st bot: @bitpixi_ebooks", "url": "https://t.co/8wmgXFQ8U8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Feb 14 21:09:05 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", "favourites_count": 21763, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 2344125559, "blocked_by": false, "profile_background_tile": true, "statuses_count": 8723, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2344125559/1444427702", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "415454916", "following": false, "friends_count": 553, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hecanjog.com", "url": "http://t.co/tp6v4wclVE", "expanded_url": "http://www.hecanjog.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/380385437/maker_faire_diagram.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 938, "location": "Milwaukee", "screen_name": "hecanjog", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "He Can Jog", "profile_use_background_image": true, "description": "Computer music with friends as @thegeodes and @cedarav.", "url": "http://t.co/tp6v4wclVE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680888868795633664/XcKxqp2Q_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Fri Nov 18 10:54:19 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680888868795633664/XcKxqp2Q_normal.jpg", "favourites_count": 8724, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/380385437/maker_faire_diagram.jpg", "default_profile_image": false, "id": 415454916, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/415454916/1451171606", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "36128926", "following": false, "friends_count": 1018, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/444538332/Typewriter.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1035, "location": "Edmonton, Alberta", "screen_name": "mattlaschneider", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 53, "name": "Matt L.A. Schneider", "profile_use_background_image": true, "description": "PhD candidate at U Toronto, studying digital materiality, print culture, and videogames. #botALLY and penny-rounding northerner.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/483750386462101505/o4-hAGZ6_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 28 17:44:59 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/483750386462101505/o4-hAGZ6_normal.jpeg", "favourites_count": 7999, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/444538332/Typewriter.jpg", "default_profile_image": false, "id": 36128926, "blocked_by": false, "profile_background_tile": false, "statuses_count": 30919, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36128926/1382844233", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": false, "description": "my kingdom for a microwave that doesn't beep", "url": "http://t.co/wtg3XzqQTX", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "372018022", "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "friends_count": 301, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX", "expanded_url": "http://iseverythingstilltheworst.com", "indices": [0, 22]}]}}, "profile_background_color": "FFFFFF", "created_at": "Sun Sep 11 23:49:28 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "EE3355", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 318, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "favourites_count": 1215, "listed_count": 5, "geo_enabled": false, "follow_request_sent": false, "followers_count": 50, "following": true, "default_profile_image": false, "id": 372018022, "blocked_by": false, "name": "jeremy", "location": "not a very good kingdom tbh", "screen_name": "__jcbl__", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}], "next_cursor": 0, "previous_cursor": -1516840684967804231, "previous_cursor_str": "-1516840684967804231", "next_cursor_str": "0"} \ No newline at end of file diff --git a/testdata/get_friend_ids_0.json b/testdata/get_friend_ids_0.json index ee58f79c..efb758c5 100644 --- a/testdata/get_friend_ids_0.json +++ b/testdata/get_friend_ids_0.json @@ -1 +1 @@ -{"ids":[174716364,4229043317,584141481,36244707,34643610,7383122,2307068066,390842981,345894976,2798004630,193596810,16474986,82431632,20021712,2967867342,1345863144,525249617,80797182,365459573,1511949548,21014078,227013289,1532543576,1481054280,16280979,25453101,70595671,255517988,596841936,64523032,15714370,1432081760,45869342,778250695,23008743,915719034,16467789,39263564,3346616554,333442035,36918513,15822969,2469857444,826052299,3892175716,1563895639,3079401397,3092079436,17155587,98962695,2336216776,41565136,832057747,482179923,3987827837,14115172,125423182,123289807,2383284786,4527950052,1485600931,2352084432,22508206,126151675,38705128,433247367,1079443074,2338105459,118935599,28599820,23295958,2284018490,1232995548,184385983,357661916,877260416,949232324,198434663,416809908,20065936,307855987,3182047141,247517043,4427416695,4426698797,75091114,32878430,4273147873,2402197177,1543056944,47605173,2560289532,39013572,2866046769,126037037,17402120,262352377,2358407005,596706060,2885725097,600580312,466899807,112029154,3035489583,3420906832,294225981,2776016907,43602705,3041074949,75641903,15428612,1666099686,198352854,216100700,60843563,59489293,18486446,385883807,89254683,116707941,84028963,2566824948,57048551,19351317,219957717,3877035493,3812320515,3540832456,3377353389,3306463672,3306307028,3252248568,3240557112,3105512481,3036145773,2954253258,2786392888,2761823098,2690520336,2536509241,2425339574,2339890328,2331512354,2248966884,2192183084,2186834270,2168408323,1926787008,1897471286,1465738609,1427386350,1414052431,1377573938,1351957970,1327886413,1172385756,1155945612,1150900106,1035823255,1014668238,1000540062,996120571,995794087,968080993,963957084,931130899,925035698,858718512,802185074,714240331,613455739,608610375,599849374,561887188,498700046,469171952,454672754,433794960,422355017,415989428,415458548,412254113,395868327,386076684,374811299,374675413,374413553,374052497,371313804,359573726,358903005,355696940,351971672,350579415,326854066,311240703,302102486,289069118,272285827,264806091,238096056,237243990,235785221,229114172,223424972,213359082,200217502,193653724,183454227,177458594,175104981,157965754,138375644,136968204,114543805,113960138,107161643,95981793,80811754,80122680,75467271,74424673,71091193,64610462,62029673,58517669,54903471,51207702,50089463,41146281,39909343,38839573,34865826,33223159,31397776,31387025,29719275,29708270,26843983,27004894,24444891,23833491,22156161,21864336,18585097,19491190,18114111,15630662,3737281,28072047,22538725,2906956060,372575989,72345536,3350493279,156905483,12475072,3503442196,19568034,22410909,2603080159,82355306,2888034164,452352757,3606504676,15414356,76849994,427354566,51031558,28563096,34863269,525487471,119521385,4316815947,515511443,14223960,267788953,17617472,3053663748,3248910245,34306568,415823496,1524749774,153280848,235348644,15506669,234136347,733322844,14160917,33287494,990305612,1915177471,1563503360,3585167052,458046334,2613246072,961755354,2266035060,946894280,4220691364,4071214642,512407105,262471388,19670226,373584957,15920243,4257979872,14269768,97738079,2538349783,58211781,3412867557,284718102,20224969,21826316,15670644,4119741,22429979,1344603788,4009671023,41660626,36508851,3910893854,4010449719,65176836,14545372,2980058889,211177035,757303975,14817150,18393196,15692520,1209887330,58812628,637196658,372018022,3942597494,200711723,278093318,21119658,39446462,21982720,14511951,3676292235,2927107460,4071873193,394060363,54306976,4129078452,17663776,140252240,82659154,63697051,3834939257,3621791535,1541797452,1643475626,1012864226,594015697,133929829,194714715,2489508619,189763764,8752222,3074259883,1138981327,318549214,82544380,29735775,14679233,4040207472,26682348,868389662,4010618585,3245142196,3980516359,240471848,2382609979,112793441,580942452,15542781,46190611,240184267,44903491,2821370524,3257162537,1497210092,1353260683,21059255,26028448,2455204525,377206475,7900962,15029770,559028753,3907577966,1252117579,3617313256,313743136,2198108859,135905236,131552659,25856281,1360417214,67622527,216633730,97506025,15376200,65154490,345232857,272491055,343267635,92027622,2192878808,2478738590,233387844,3317341816,17448192,401281561,3929578042,3937345408,18639452,22095964,246788299,14552366,360654151,2281125961,62515016,835680883,313525912,3982969096,24277551,2747973655,3167182492,70784623,207635400,28411360,478849885,1055281526,3356531254,3266848870,3958051175,15359205,3310428789,111778335,256277422,85032215,249466118,1111063441,633980404,12604082,17505249,17043428,344395626,80655195,1003857624,1509936680,165731767,2178901645,3230052541,378703672,1268764082,14585409,14752312,257893956,26609246,25924436,112236745,3901783420,16866617,16951956,77570910,15409625,16944165,21266560,2927266003,90694228,68449573,403727931,404421890,68707961,14290018,166772969,399004430,307589282,607099840,17455195,131301936,8835652,33935000,515034648,2916305152,3675973095,284638893,3114313702,2971787403,2342323674,4906211,3406043239,1390255892,591160609,2370597494,1430901781,177336591,173216568,246867553,219070649,3310348271,3364515135,214502417,246615051,21099301,510123282,2526706224,2231927636,2201024219,3352886781,2821132277,330797853,3675995734,240061941,429946250,570705602,169661494,2545171004,3184574881,32929377,1482771301,3583264572,3541994172,45155495,2493733837,488810546,21581820,14607059,2980100441,36393171,163036182,81951477,26396117,18424289,2514293430,1019836922,3293886549,110396781,221834911,2813202439,50446226,19758375,370758768,383435496,14676835,24831757,2180408564,3350807423,233257967,16880858,23911915,448434781,166267705,65640999,17774100,1135983726,621522194,3221765772,1198690393,3472808781,61018648,27895727,257922239,3458195901,15754281,2467791,34379755,15208768,861455580,3243356006,3433379001,21634600,1282121312,1369144951,52494838,52499707,379824075,292650377,2830496875,33661289,14768193,2212664486,514033223,26267605,298665200,1365252164,148962007,1475775084,66385865,590060558,55633685,3241266563,3169051790,124293790,14264161,476387407,2453452381,2395614938,14850576,14445325,4488,2780477770,20675211,441134864,196462653,54654212,2285771029,1665877224,718449524,2680763216,47374474,2717089861,518143842,3021697442,45420135,135990436,41127809,229999442,2437502443,16148151,417739798,861893730,230240898,1040127511,1380385320,2600187422,3243668999,845066312,17200105,1365460075,961201465,610219779,113689722,357551176,417960385,637467612,796721929,61524685,869416448,839536712,764372598,1020108763,258960686,579300579,1710096061,2372308056,20715242,2492541432,2431369694,99000872,304550287,15076489,2835899107,620020696,49574494,2408844830,512905341,49534192,299639883,2941125060,14145626,311086886,21512767,1523794302,324956327,18049298,23195549,11179192,340795517,874798920,69186722,979311691,2978541712,1219366122,3301420004,14295657,244162778,2805687654,1143905359,19039279,183247422,14994676,3193173610,19086064,15914986,1106610996,552661784,179163585,480630176,124528783,1170164516,23826345,134918286,1546783842,127705651,76520255,375760645,17596069,50329013,243314723,18139220,2615319734,249724351,15737554,1259839165,345615190,166028524,1665386791,275391646,245384422,308078682,3304470901,25658504,103085965,3018968748,14468410,148567358,3395561619,111404710,1347581462,3073871212,17530448,259953357,610388842,3373321,15852132,28883874,35088920,272633065,284542523,435404014,2937575623,3244931611,203609543,3219632226,17175139,3333394869,456930921,3065348142,35382548,278652369,152877900,74903828,96602314,56179493,26377478,25168865,3157927513,15466988,285125151,2746648903,3362148580,3288353887,785808991,456403811,2645532414,3307377695,42634830,34946754,139830358,42857269,1858554535,24657506,48419856,14031032,14116915,198020721,13759792,770066,1701631,3153328297,780993961,2417085025,22032817,2978608072,2866454409,1357254643,1656174793,352644923,2903966777,372760774,299505155,25170613,3226238609,21916640,22205944,756762998,21145852,1490861354,80893052,1979558624,3345956002,3293153877,313813951,87205530,14695043,2284287030,1408308162,1732689133,3256190911,829323654,17372204,618351213,364062266,3342152225,15218212,17463028,2218734840,630703637,2152614386,2859487678,18104730,1433469289,18040395,463428936,397694029,637357269,2738735742,36584174,728305885,714296275,163610075,413634848,523676772,265484413,225096128,222490156,36322086,998640920,21277118,3232924232,3251112680,608310777,2949547815,52452323,2347560146,3016964678,15824288,246309084,2547533580,341046775,42628521,3309136432,14188527,305913715,16683885,293941423,49885057,284589209,65478524,32269230,840506047,3239114702,2615603432,345454327,36336107,3108671256,3091552272,274866611,394134791,18244419,153500044,1465842356,586,7692762,856432010,12329252,18737731,22546003,3300703462,2841359663,82398383,2617471956,138681231,2690187182,885506959,3119449389,299988190,3308352436,2899780530,887221,2182516859,2153551561,165862343,14614981,24950791,3293347210,3309662224,1296292616,1222705992,584162442,217478823,2900242168,779049289,840233028,3257262027,13565472,2675109888,30013010,168754092,14526877,20698435,2282667775,835858886,570484435,2223451512,1722403496,6476742,636586551,17851886,405157471,15604078,148736206,77456101,74536754,47880934,599515941,2931131799,36163152,3044665445,3572441,2937632239,15481158,25171326,47939390,15808647,15249166,16287007,1398449161,84652865,3151633831,22271373,15432750,23971393,273223527,2149815847,2384173392,20056392,128544009,72255032,39279027,313525999,3221779009,17714082,16782604,1270746139,3148356377,3195834151,1536791610,30791070,109317659,538489875,2609106255,41582030,18691048,89123936,43642659,14124899,545804017,17238395,22840995,138830247,537776452,325803700,2448248076,2877214085,266185089,3187026492,23596644,23408887,20172250,102420852,499917546,92030522,1394917244,1556361283,151689073,557976011,795008808,566052541,115865427,569643970,329989597,27963917,31227419,21918047,16132284,25396695,188045648,3149889709,1730414958,133947893,3172756859,3186605629,28592419,465255113,379921752,37280980,239297332,28049003,12523012,202890424,605674944,422105720,16517679,500704345,60939512,1304924886,278648035,3160470333,216776631,2151820370,2339685247,615471114,188545143,814589791,1260091734,2752775016,2868169873,39692025,3146567046,20530177,231649709,2815076773,14774366,2480569345,2828369140,271636708,104916123,15529670,14638851,15081378,15774048,16002085,16596200,17179368,18536997,18637420,21576334,21705181,22021978,22128352,23948464,25030848,25298569,25960714,30971909,40874240,43792125,51002583,53416347,66533920,80802900,102934369,135060958,138108708,162869238,172081908,191849753,221707278,276713213,363997684,566688127,1183947482,37861434,18269124,1200738858,25348485,1582341876,1228526078,317700208,46770535,2885031082,51768731,22481472,2769059108,2680336646,171198994,33323849,14247155,2882391828,2489298668,3148813916,10959642,14903013,113450686,1267082576,3121530274,492545912,1315298502,351127535,251796912,404351974,38135837,1634066785,2968989617,1071777608,616279187,123532694,109890809,17681505,16721061,130906331,2182641,575905433,93581874,1187444389,1606877971,27688281,16957321,2856042501,378778750,1615577521,431627744,197108944,1551856777,62648354,16785742,11696382,2732089057,12494842,3107878302,1000968684,538475269,84599034,2176557343,573965125,14571751,2685092670,364762860,714864200,17621767,6825792,22458458,46335511,1915336519,16088941,1278123535,233473695,376790816,87215923,785683,217430520,1444424754,58514805,3035726218,6385432,14897303,20508720,80617430,167518667,14477723,432895323,3029021253,562585357,25889033,32078497,1357252880,28278535,2952910735,139112983,235214894,2865812463,44776990,17599655,5045181,6780932,2445809510,2927758254,2842655435,2296984584,1694401938,21165339,807735240,39108656,575660051,3092388093,2400443496,57076191,155748301,13209362,197035403,14325025,3063529148,2485531140,1906951,10018072,2562629773,222467178,29752603,25165002,947986136,3014224345,12076002,16396118,2371270375,2977964520,60642052,571202103,80069319,140074826,52129399,126628622,21965626,12755092,2314467259,34424798,582909932,3026704559,258923616,2030711,27212264,2392489904,16725824,2778827209,3058016604,342100419,18014373,122387909,2382117350,16892481,386631799,2835337844,127739478,16477936,187516575,17845620,2600525376,101754147,84684955,14564868,55694209,33433709,751452180,16216975,351200120,2575159890,29100243,661403,478326622,92601300,831880992,1269364218,386413191,526600858,60747383,15612654,456253373,978176486,17687405,132399660,22144306,19185921,85193539,18137749,27025052,1926360631,105207999,202787004,174397217,110504902,15220768,27054843,111954709,2496916592,16109926,20066416,2991711108,18259909,81650351,85252011,763450351,2770265776,139823781,85732762,5360012,2777170478,2247473304,620142261,2983295300,558739638,259725229,19968025,2826874038,3032074419,126696497,135158292,3047677737,19983827,997629601,14464767,25375092,9207632,14043142,20020021,2846058853,115615024,2703332132,1583321544,271483634,200918256,2965129341,131227689,16681111,2845735816,612644714,2899672599,1087860428,36184638,610659001,24461387,43379364,2980412572,1483376342,2326120952,755861322,36959762,537541336,910873332,55216586,337819489,2553927774,2032411,82861206,631401764,23567622,28888320,7140202,2160344682,16220555,1126749103,13967302,21248379,552582271,7782442,19819769,792378206,2338365339,2962973505,21484068,34126441,1898493691,746032117,476193064,14728515,1919257285,19137592,47327436,15363133,311080265,944203531,54216622,96072665,2885138213,1285630338,87057908,19734832,3003481647,2999377084,171167972,413355878,321522551,16548855,959675203,8790772,2292182045,20476151,15421871,301579605,16339247,454992440,2550858595,1429055587,928481,20651511,19040598,8034682,135575282,2789139782,277219019,2783583373,50741143,190669152,2990470226,513855040,584359541,2988116739,18297407,19358191,171279007,583869504,132213553,145613137,1581896461,6698022,15865042,13217612,14481269,101897322,129653547,28251153,34781412,2605497847,1966256035,243775607,2770081590,18700629,74474794,77092809,64954941,960727483,26401477,2566085594,25892745,5031151,19255050,31094727,34632493,30290980,40028412,22587230,21364753,19918988,16619709,19711765,87474197,589535421,256722290,462578542,1950272508,253270711,205076166,169698101,1451773004,581815681,2192619314,2966047517,1639495106,887906528,459796949,159955958,20017825,18276341,396399850,212304085,594376322,599632006,596964216,813560072,34936539,113739104,18955413,909529062,103041418,234947344,119625403,115210837,403567128,1294168843,189253902,203654782,21495286,2546261755,2364189422,2847023699,516633812,176036339,18689183,29795697,34197266,2862725633,92326348,33136420,24381416,581005340,24545398,73761305,626861469,381725263,87420519,379356101,107823143,473111750,1481073828,2815948320,2911296698,62724059,2841020667,28373693,1327886654,1843791936,2759600352,554508623,17042078,2820671119,304356334,314702715,14493552,55038953,315302894,16714443,351915951,296464173,187972757,19355829,14606202,1733419830,42660183,2894919132,28098358,66444507,50219804,117247636,23031376,43358159,20380049,29776689,14868608,29299946,220044097,424484966,17947003,2875097319,1107261638,165411483,416699250,78533960,1125047372,205193523,47498699,20726786,93761004,410600310,49155241,15349180,1471250628,1179455215,2438273430,2381931636,22428439,50488060,388937036,250844472,1949282881,394103606,57932039,49012699,1494655406,21339159,2881924182,16877374,260929607,23656337,57656702,52756637,68482261,17186905,2202557258,2283541350,125190427,16935292,2821900992,425265314,112838571,15367088,2596218403,248805395,2806556857,262317278,520665133,256754327,18806838,64786050,16224705,14186638,17125603,1617731504,2778642937,553757993,284988279,544773325,710322776,1203840834,14949573,67059584,23112236,259395895,74801995,2563919738,313080999,403608556,2518212522,440362326,258909040,2618403776,35688200,312314261,274396558,872252960,204932888,20481072,2864318800,16715240,41186732,55896443,291531600,16160638,15129727,252179335,245983319,15084970,255861014,71832238,77920769,30321661,211939913,1669352653,2857371350,2666750809,529501969,962148625,302404672,22497733,2546868080,2677634329,2712674750,851499338,2755310156,1530953521,2808864594,2305630168,15345483,67367405,17833557,305591096,792600386,61670139,2564135360,268429621,2831587762,865341985,136018565,2331421572,2839228199,61526252,2733320850,2577957372,17040892,2443847048,15961122,2435960576,2651763620,51318358,1611472182,840450648,236916259,83385252,619642695,44686344,118245138,600803781,179459971,57145894,60101766,77041903,49717501,40470694,63646805,1672787334,88135655,471741741,60075391,213228524,25741919,296198193,399010753,119116960,2719719666,363873688,256495314,121817564,1406091554,53120768,2567863897,1400360078,2394236400,358260333,430989298,56709645,1362466212,30581721,2800252702,16177628,720238182,298034812,17169832,17049669,15837189,22209567,80859044,1321619010,27849650,2238491365,27225542,14765585,44046726,52488565,2826549302,80593904,1499335951,17974312,178023069,385131056,15704617,31832948,202313343,1876367312,57047586,236838188,2597498814,327577091,400989826,2765974980,24667140,1545338485,25518846,2179994252,62266883,441421837,1496344326,1306041620,174110843,1288758828,14437242,16656631,1115148079,2325202999,337886919,614249266,1081962504,541158674,2651646559,1667662856,193473814,16007952,16222904,561676909,1167842311,1486002967,1236601488,810483626,1547722903,109779429,1258398914,277320871,2801517637,1735713398,1289024803,517661405,1671813086,168987151,20941708,40656806,2628171535,473444562,387686234,1491083406,786625988,63760115,1966754972,14056532,18525154,2677576862,14304615,381026831,31338198,2746492014,1534066765,1362354044,28585356,17688714,1278161922,20810335,2693435648,2372984767,1707854317,10536952,139933597,27315969,16607603,1418741706,401775393,591459541,218944987,1405385880,2291338687,55243095,2469548600,38475395,2495438286,2426410609,413164975,2354233526,872355266,77621538,15762708,39342600,2232398257,1182675871,24595575,81690879,510592186,331703548,14974079,20941733,22041466,148529707,121544946,19904685,94127415,72842277,143923948,17348942,14517538,88781425,980582593,38146999,260928758,917421961,267328866,912345692,17666727,48048888,930781598,15738974,33248363,41476394,381347159,48000256,241964676,25772065,14636374,135501248,2740669634,209693623,764204616,14045465,1676457685,2493331080,2468202997,2744765320,2763178020,83972205,15838004,37521145,400372150,246682858,2659960540,324599106,138692729,2415887156,2584158559,124236245,16641343,2577502560,71461029,23760311,1546624514,386517435,164089883,135461282,241730145,114604564,245305204,376380585,36056115,47747074,381318163,61676800,22845527,15521535,20007097,97327765,27000730,512417432,88975905,162436508,535878400,12382582,143914733,2596694492,2294608897,6440792,17073225,14090948,17068692,34308692,18481981,341908197,394962139,7768402,69004966,14849562,216379128,50058630,22987082,62952335,1682157414,1163807618,207645432,14780915,23818581,1630896181,558927451,24606710,12803712,463054608,116106958,11265832,548443674,2230397137,40789325,158503650,14698682,21787013,26731417,62414046,2400320881,1128482060,32542903,115182291,236050146,1251230114,305870046,2405020009,1098802430,16119366,37547775,215746958,2308875504,98685536,606838476,2450043698,258684388,18749271,128242246,48116802,2444534352,919373695,44499804,382937731,35315865,874176120,2544227706,19551341,129988372,2674556090,84200893,2472066191,478669659,2391664056,176210560,871991101,186826724,47526275,17417452,59029811,11990942,8132582,297602297,19178857,193767233,28947018,132655244,46690800,12354252,2165245332,2590407811,79449976,2634423025,290139804,1076770202,45268666,84661546,898124258,50482530,78647472,505364106,595568451,51306445,1439508630,18629321,537343182,402199056,31439308,16539917,17966102,33388399,22138134,573415146,1916506454,764365266,168537920,19000697,17519586,2332700791,1147895708,30008429,154652139,950794590,2333936658,350457031,595722578,334972686,93258847,1953020821,244539931,126205656,145312903,22915052,835787268,1568977914,16146755,582277886,2317168669,2321375918,32427374,42956446,741928796,29342313,2423058966,1072993274,245078181,9022032,17602811,63783716,79306105,14765253,2544359214,615526730,40303245,2340460459,50337556,1445427806,1891806212,2499310819,2586257250,18963809,24226431,382689369,10688432,268432127,28218405,65688328,83540809,14089370,15009111,14347423,41202241,1198481,72287350,137455381,67595257,44104818,14786823,29992342,37298915,339398952,1414376791,280753615,317256778,13786802,331803536,19563103,17040599,59503113,29442313,91593332,240087328,76485784,609308872,1356942170,95468980,9636632,25180871,2378320579,12759,14699388,71465523,602065304,2480079168,2377815434,1565908723,49860614,102807713,87466533,897558096,33480171,1492400330,945310303,745744310,29913149,126410058,2548240340,93187905,19855459,1892683062,43696910,14994194,288778779,543582293,1573751760,2168445745,186183169,2484050419,245347370,560900368,266635682,280237680,2474749586,32257623,54993288,37377034,2349040381,14721643,407657538,2417232973,32527860,343422277,511065332,2517988075,165573426,302186628,1965716257,55320310,5907272,18161631,23694685,978343472,19767193,83031278,600031424,286429276,274754192,41410667,33351873,526871737,17030680,17766403,1017889500,80076673,390287262,2266900200,88454469,480196886,90674236,30644410,872955290,16721621,568825492,330921167,168786720,13680362,36670025,2363506767,16303076,12917402,14822252,2571155086,255323205,815454817,127877956,25935803,28250356,1331578932,87691397,19034236,292650956,2492302700,403929334,15728098,139909832,18103385,73385250,578570016,91237615,54277378,422217439,41847726,611743131,7091082,1399429982,284694021,2240082577,2423795893,15008449,807242797,900817166,183962178,129767622,61354111,16182261,1561888556,187518287,1750241,34877293,2491917122,156045092,1598322511,373490653,2497242884,94496307,28982619,137482815,52461472,15355482,32768009,33647344,16191902,51176565,90725320,262753143,65987618,544466882,881469662,776386459,166555205,14465327,43412697,438935496,376939806,2347382634,14080346,1137893880,15830436,84413113,9078002,13654792,24794149,234132941,392460729,14376279,6604762,463070295,25564548,1603425318,2185084844,31293166,46934577,17375281,72783659,20778387,303651044,68870274,472499685,22006902,16952174,15088481,16799074,18261865,26521047,36381021,53186378,949934436,76478482,21943064,245587242,207775224,52521572,426080991,16978136,14156567,86455397,1004714095,2403031566,108777062,1002351378,832197440,770853422,740719345,470939544,382758202,106843613,93986038,92512982,87759772,68906469,37866396,23469247,23115743,21770611,19123229,17472945,16870421,16838443,14365976,14280661,7748752,14238165,9684932,6092342,6044272,5943622,756475,48473317,2424440299,137319969,336624022,55119016,310293175,20608711,209213183,612019015,20961635,11317392,16227629,773627940,267038232,259317559,11313202,733515391,1638825054,22526906,1523709008,861949171,1714177862,8221612,14247309,326665662,882173190,1337011070,263129271,14248784,17371549,2315729580,112843330,58684655,17889970,479816451,109944769,811268736,2350315904,1575918264,132231788,52998367,363399297,17874869,17698600,286703,60087571,590074258,308607766,590052098,266917386,563051945,37759047,277337146,5870242,1355927760,64873265,303955090,19164415,20763870,40615771,975002792,2460145735,16231706,929989772,601874499,22965441,54687857,774357217,247462443,2281856286,2460716006,16531850,1620127254,1109372617,21249970,2411793456,1388352121,1910701892,190367688,791733534,15522528,28637222,353066648,120194754,262077429,318488345,90982474,71643557,376819015,74612541,534530008,79870762,12044602,1212433794,14787561,135486450,370343276,284544447,16637461,1184647243,38496530,7591572,86537404,14599476,13784322,16594832,62575859,14513611,255797635,119756545,15764415,2329384614,26374751,462334474,15684633,129924486,101149691,14352599,108418043,2373927878,291486075,22804909,1979667199,613822232,42072417,139920911,18814041,20755177,602602937,15023095,17198424,219877441,103962290,588470328,40233111,1549717748,226662318,110004599,179546580,165204211,779349096,1281581,275031945,23892094,1542533869,625619938,14172171,140893518,2384027052,31563791,101233661,119528386,2437819891,352823966,27581606,16340404,368720556,24820089,111426091,16303106,262806854,1305684487,580147795,59124142,46106161,367132858,15112727,2428998008,970428030,165896536,66182591,2314620908,305468597,17824498,491638416,25283401,1322965681,257261479,1598644159,130949218,36525252,18812587,1220677470,603162738,111061417,87617621,84875272,19026735,125153534,14315063,1607352596,1485895513,110025208,1363049263,47678024,3564041,68974666,297915370,634702778,912858588,55592530,17211476,560448814,2317837263,84679163,184716468,2239721196,237236374,595331088,71666839,382444001,2179057898,184916555,5389812,278216951,109571377,16716425,55289075,192477353,492492626,820569,16891507,1102056919,19002473,327738223,1102910605,410464768,153509545,441389311,1862198252,236650677,134687445,118228045,2426127924,231136803,1489065949,15934978,347982162,1027408974,322207364,933838590,394838158,26605345,132615314,41806795,23128315,21332950,58947113,514564994,14637342,537964292,802356409,778882057,1513925282,793202,41159876,2188586045,27941766,165565949,107217872,30948908,18778603,220796129,259302400,61044673,109028340,48564118,223416400,1452248826,15571577,1725031976,104150206,202718818,44562973,214120461,15906933,338374151,161075778,155978068,22518224,15774741,569681063,1883512460,1245104060,27485087,10340482,35117516,23044822,465143733,1537565070,818439685,249839335,16299754,507370446,35982657,52314673,329969032,217295265,36722950,15968617,550055167,52525358,845978994,17954340,524561437,166421185,75123927,1355953682,23102969,22014639,188215959,473466262,219029005,278163334,227576375,827977682,51205716,137742822,21972198,240932555,40562015,14190948,18251446,366602971,21347530,542004682,56722075,561070834,43485656,2364657150,2290457413,48023374,1838597966,2401493394,872059213,969293274,265605249,390967512,175091719,17454817,287538756,1201951519,2264624702,264787370,2340558698,717209689,381677670,331932733,23636580,47654924,7342412,19329527,2779791,175711277,985757023,2348907300,14205258,17018575,74386780,62259828,164369912,262349771,118962352,180889575,456034260,48252319,29628889,1668371516,449588356,2282440670,6462342,2303751216,29120905,236635893,19761418,824191926,50023989,19557634,1729664714,2315839860,98906407,1406854364,2379806143,1080534464,606466484,749333,243019943,87095316,732073,963455227,18290719,18131748,81915651,2375449098,326506923,34873364,112929575,22454647,52429172,57833122,1668138098,25147689,18084448,32190652,124222041,318084384,17435612,147672166,69012419,2216979384,24881388,397497637,2361860238,2241216361,17939037,29564281,2342620190,9465252,2347049341,30092032,720863642,101092520,351221537,453709635,316654916,21882601,2339734951,1697668345,274559013,42447094,18229868,518681855,297564170,16906137,2354013972,119580247,280572026,15790927,107491156,23982002,149666064,112396470,294018733,115396965,1560780523,42721524,981127062,18637798,14304618,2195930491,16051232,97703815,2262999971,32511767,632062492,304049696,304070008,305256777,272989565,2341020134,2353506732,50306005,619524081,19715003,56564230,220873939,2350108166,14361155,2270533266,25333609,132631769,17815546,716827128,2316481586,234273955,481324580,1732829419,128308837,275471220,19548625,334032462,14067742,20411816,17358750,590185677,927505483,393592962,291363,2305323806,33901209,251829918,15145016,17092444,2174555742,394932596,32347705,15751301,395491697,18171067,78963433,39602114,19055698,20495812,285802436,66261900,311062620,441275531,22260999,17574357,104513715,277482283,618401788,1189043576,48021931,25039599,1932282721,432958090,16947056,139975371,14687012,321181858,17458287,2195241,16166496,2171689341,78779800,14202246,398187934,14922268,21286406,170354845,2217591657,15223905,47451496,61663,21834922,26780981,42312055,42329555,27893163,2288937728,51221826,17088643,42782133,25158349,1741439630,841898942,298557751,211971511,2140881,163228451,59386332,154311445,288723364,22495024,191179377,17179406,132573995,1444281925,2215893336,455084468,855379321,97706891,2219131,14093319,409456907,26286732,165948821,14579345,35752684,40054423,1329879698,66768858,20184945,1120359931,15191052,17669704,385025866,109621087,351299373,404296475,34409137,973090592,18152276,19940791,829363578,11996222,21865001,37205200,19450277,364439712,542793644,191190039,46417885,60983046,2167820294,16664681,455256867,14676895,1710881768,75357513,23357795,82066670,300181817,194475085,846634963,20182094,478578230,470357978,33627414,18029055,16020654,19245896,22496235,14345566,33677778,15891963,14156778,85412404,9403902,743599406,35872795,21895068,14917754,1234790060,468517832,39957764,18026602,17851178,15174190,19671546,51640380,312544802,296363505,24777536,2180480845,345161879,18334440,762202327,620547379,47153140,19222806,2276246983,59128257,95467111,94954481,14913762,104256824,272161214,17699677,2233282904,204841064,18572660,43533499,47840385,14935628,24244836,17678156,54730258,108358161,967133442,140928543,27637371,25953115,19971990,14445542,18345986,35294738,30255833,18611348,16146513,54239985,165798058,17596056,120640652,20727041,208442526,253536357,39234189,44136028,18843227,324834917,15742946,2163177444,329865729,123483569,62733454,855593120,273813321,18301602,160589263,493121864,15614725,87792156,80938488,188632613,204127602,224182352,275675429,322653723,333500366,360645886,347466521,64689798,873141,4875721,15478750,15662761,20003350,19676647,20387595,21563402,24561336,102932090,104274999,117602839,194359565,248765957,294224506,321646852,368292391,130305390,150940204,1639748756,1282050768,371193896,267371257,54311364,1887854366,95982652,318426183,88014855,103139471,23144045,46174000,403676245,594666501,95488935,25732408,626111072,234402376,22860921,494010838,18587457,91180720,4207961,15446531,314563166,145380533,47707475,298123685,12579732,58978275,20890385,16393860,46501372,69393590,83374478,24760864,18316818,88215673,157931852,30530300,468763363,182839127,36171004,56566033,30233007,1468133850,53796731,17316722,595854486,37032310,19608297,228403233,1849348536,18644734,273615113,16715753,22054220,14688517,16714347,27029537,354221701,29956346,95629476,42716278,1809251,162748968,26222868,55323675,2187906247,74555974,302022259,143789061,559509007,20193926,1575964944,16841286,15641532,15300838,1597324129,18496432,17086094,483701025,14999172,19844126,57714568,2262142926,883458102,313159302,19223022,1122767850,375895295,26208862,2283772130,1301374621,91826119,13201312,419764595,469408036,9320852,309755530,20411630,496420759,1354890464,7102242,2228734814,86715527,596687292,357760567,1723563360,223608893,85644875,27911608,1460016181,48844884,78953563,25065495,16001409,156375999,16034244,562164937,360442117,156466613,24651708,39759481,575675721,93620724,167066499,49753604,321029318,82631496,1880454828,2275298702,300972590,19273804,27810354,1416355640,86650732,250455054,111456333,47345734,10990,19909828,185594976,2274778854,483126812,17684473,427397243,22270118,113062227,177583181,7510172,15369355,17311077,18264824,27688964,475987826,17645400,21250425,53429839,61842240,48377323,21722109,1615447254,631657132,19790241,1604444052,15103460,20652901,13774902,12094902,33031861,1964891982,31100329,16073416,25115550,142896252,109257354,41591401,7215612,1586501,12302892,55630037,67716195,22367858,29127028,192589318,12510442,7482,8833012,2671,11613712,35515414,31005149,460371116,71028123,125118607,31128730,388743786,989,217900600,280716675,743874438,30324031,30750869,451128139,18121069,178975033,12526142,21985202,1094163222,1918228742,34175976,47285504,256979481,39077431,2160596971,60615841,5272571,306834250,10836092,225301621,117640526,14632294,48800583,34284490,17171111,53978909,56461780,10753312,17385903,339754094,19754498,45743403,5814192,1124861,7865282,212463932,245095160,12534,11133442,76373,28381177,27613650,564141120,429057282,954012890,118952409,131497030,22496608,16386970,23910646,123299344,15142050,18271124,254999763,1408457989,48361925,101878960,17079526,28523687,20731596,314661596,254660986,213956450,1598979864,121707270,824157,549962062,1022147078,21525601,18270831,1058233296,18466714,403087766,12244082,2228674112,9879372,20134672,2139211,495309159,33561428,434825627,95411363,309929507,456865788,742747086,185043343,366631688,47064286,11175742,8376882,342130924,16110819,811377,1529928896,243377639,963723824,83237493,1451878254,234418976,52850138,1144882621,237548529,57111966,10642532,19658826,1604023434,1393155566,1647996986,97416190,487118986,27727639,45972160,287816744,1463789270,2228647020,42466456,1467609360,15443743,596904346,322658299,27778117,1295001,15174406,23370996,14120729,235700566,87374085,15526789,136357511,6323872,75897022,63258372,14120215,9507342,993249055,232520849,15428397,5051271,907198734,19358435,860334187,118082516,91378530,221452291,295713773,148868647,8842842,26518374,816405054,1263288692,14073093,59019225,14136335,16207462,1578141,168531961,144186376,1641384510,749520146,101964362,1167699625,701732472,275686563,76310905,293372650,389901694,105829953,211917765,18728633,116734678,202756449,7389732,50104358,509381461,490991627,67612556,15138104,9696182,210814143,104201057,24134103,15065434,19014189,119667909,258198244,701700079,235822929,172851165,15908429,547860279,15812461,1225257002,727472528,341251022,26048553,472220354,373598135,196566583,904200264,134525908,18839785,12819112,360285166,36323148,15740362,18689000,27596259,289588260,40638594,18164272,1115670186,237945778,2154419157,889974050,2158603635,162427574,429253192,207644722,1464125821,13533782,381565112,108547794,20629966,18465455,38418472,17161562,180619610,136682570,513426047,306854368,273940910,18250813,632873524,29999829,574862909,327024618,625957916,1079355888,322658873,14066920,612577026,310297935,378643551,1010645653,15537064,778820143,70283241,1240142522,121869155,1027736432,1287359551,80885440,225442825,1098985442,466096296,724416918,20849273,2726611,83424009,1419099463,322122983,91666825,318709067,609043536,2179078237,84944278,121641469,18584841,19042220,852123008,127727270,253114974,910793808,27740227,84100924,240830856,1860428197,93714983,92306628,6374602,89264343,42950930,102423027,35380758,309553018,111057129,218503228,15950086,25408081,58449246,24252078,33896484,2205386796,39912341,148062893,93011077,1777681,16115811,7273892,9546212,50085432,11759912,164856599,17316885,15811202,284234943,201518147,21232505,36623,16892321,8732322,2189503302,70111948,1214410454,6036882,29342640,389658589,45626053,13893712,449501607,22991553,195841657,18369747,209262555,21515818,23615682,16608394,384439469,226976689,16313140,9851362,16218527,24941044,472132412,16340178,31177357,178641594,2162288419,37034483,64439775,176119964,1247296152,82594895,1662687974,1374411,16197784,8287602,15931605,301244366,14062180,149180925,15514266,22144278,13492102,169534465,30000912,274652076,572609848,87818409,169021842,1400238956,20751811,1877681767,7313362,140555541,9677372,117100903,17296792,20382472,1246951472,72103163,148517828,3416421,19175209,14885620,1408384448,16641462,1227932144,33874126,28222719,23739721,16076032,14834340,749963,1642801009,109062332,550478944,86550180,14886344,13028322,62951951,5953552,80661799,1485951,20252410,38483313,21813582,227102437,550165697,610076827,43194865,226907218,15163466,54272289,1667834671,29097819,288935074,75562656,67093183,280868082,17701238,15040384,46119836,185768634,39961555,482133423,22322194,23962323,47968457,33235529,1000010898,440565290,1485433387,25081451,17773720,15143755,48804449,176461575,469612967,47653644,17919393,28008289,16228326,14111769,14296273,86598343,95695246,2165843252,534222221,14755492,20974456,14412844,14588121,979771916,97618796,1860765181,77907173,47172467,14297954,546717616,1675070168,22977061,526634228,198494684,960709321,422936661,43092107,18566095,20164296,78786944,14313489,47902921,6347872,57141571,196883764,786764,18660641,259911231,6039302,15334380,203343685,32391821,522593098,207812652,399535666,225147537,42180290,111127902,17026589,20946458,33773592,25807291,299966548,2171400301,863189960,176468814,22193361,35773039,37723353,176603549,22140082,16435365,15892011,12183532,19213877,561740267,23462787,14106829,14515835,19325156,2166704808,48075643,103865085,19562228,160486066,19906615,7030722,97732452,972651,263923033,897811,22075295,19956827,38031983,15667802,2163009578,15234886,7276862,33602654,11178902,40923595,56993835,20861943,154404805,29240040,36384443,30081493,1184354442,443944804,1666038950,604922608,17183370,45762945,283198095,16860092,243284052,308245641,971147274,19534873,1880725393,362642209,243236419,104884371,119714092,23782253,20790033,101841773,22808434,19815609,450946343,308258036,907382738,14873117,16387212,47678555,131226723,266054237,24496544,55078954,10926872,23124458,96644479,13493302,123231225,158495061,1009878901,31953365,380153789,281878733,97883743,535993853,14844076,28350888,107175080,82447525,14079041,40705991,60840767,1705817688,771797250,19968983,434957751,90290461,293303534,21918310,32396502,1947301,16955991,16491683,921878857,15164565,94214332,2992751,676033,17369005,84460442,1582853809,547079100,34739408,135890983,59557368,141057092,239996599,610994398,16272052,21770050,387234867,23034607,80937844,40816246,35236603,239568469,37486660,14323791,14116034,182086979,393465677,572619533,47856457,32584728,95151374,76183,24575229,19766166,57263671,258684352,380648579,14657745,24095957,102322678,15078406,152628803,15291489,408627912,1579596458,44309422,59565766,38859736,68044757,43274511,100748297,8117362,245208137,78271006,8805142,23054053,48957003,293063175,91272704,866613794,134758540,1954179860,21565678,15269964,14440999,56449023,73043514,118975084,16977059,117396160,198916706,331136088,79498684,975765924,344504956,105998402,76134964,438152067,77677426,21919837,19027273,548116457,62356591,1945505580,146469194,499236335,183177218,1114865460,329628561,1157111888,216094714,1349588593,1111404056,1299995892,114573522,110692399,297920799,371795336,85760252,105400144,214097804,1616360412,1605865171,24939473,17396170,917105330,117027371,59472131,1336611008,610232748,228174088,1911787543,213831149,209754653,16168804,18895336,20619143,61384123,18283526,180996411,156989464,247104242,696053,3369501,25721557,21152157,385706946,42313640,613495552,200553940,1341233137,764332561,1028643932,1113541,11092842,54270424,81965017,393798581,280159870,17549096,300290452,1627535185,220219500,255542457,1213574630,870283597,1117043418,30528307,66198455,960920364,11170072,326184086,154016912,1889568127,48863721,483302252,15687090,1002513128,18507505,24253723,64474365,226595853,17239105,18631445,55355654,115702663,360282270,1728882062,15464697,96015193,470847338,15300187,36753,1446255144,191700412,383854361,252161971,1173231918,339722887,363005534,15170984,146884709,17442320,24164156,617613927,1273074444,106384372,246377868,14804589,112627753,4847281,13069712,83910272,1127009540,88494621,818679260,1293475052,33211889,822029557,21952517,478826292,18174747,77438776,60928769,56681826,51037540,84123196,14998416,1397615262,33732691,33546635,1904656634,128900117,49102743,311568175,102087933,34944596,48755549,426112230,61903300,1491382866,488743376,214641138,260371201,1673511787,2553151,133880286,299223576,360047784,96694146,16463078,1280792054,16253060,18042484,228223882,16353245,21866842,21942241,19962224,720364819,16349800,114670081,344288321,1904781277,40556633,30435298,16463237,18080108,706529336,14165865,199072293,348457097,80867152,21642935,18171927,465129155,151670855,50443212,1364098368,1481408358,16869577,589748944,221269569,17758861,26099914,34963979,52051571,528987149,24205972,456478383,1372641625,3927611,19002348,1339835893,618542623,407136748,74024358,34714432,16119090,300428054,56510427,59304820,16589148,53777247,27794232,9670142,1767741,22824237,111712308,54704874,18686907,87699418,30942337,264124770,495650403,540734980,128172483,152958374,31901869,20890584,1240317522,20257132,10304172,8668862,17918561,42226885,117882437,17793878,14123908,128288109,16105705,81644488,244276540,37595712,19116515,13404152,39279393,277011035,276567401,117576644,634243972,622439778,38002103,40860228,578650970,375858149,19435213,421574883,101365366,26957009,1429751,186648261,18438933,344039566,187080626,7764332,1020058453,41814169,1330457336,156889951,18161668,451256188,43922300,23030211,14565991,39030654,59936143,43289988,210319337,73190286,25823816,44078873,40303327,15655247,48706493,2518321,212454830,14422439,137223549,141545751,21493664,4310571,149126628,18834071,654143,17991281,166694329,394635011,15115726,911455968,16119772,14168524,190645655,1558669614,41663308,1868400020,188844898,15237501,87502184,18464437,77304134,7416752,180667856,220906392,578411542,440413534,11696512,195840784,1499013618,18659273,14552083,16666502,20829376,14471007,20178419,136109646,364481519,112816663,877305698,2400631,227381114,16399949,135198678,266979999,52734226,18819380,134855087,38244174,57411021,42889683,491851440,1289593933,1201661238,17673012,180200031,18505952,78564613,143499407,24887083,14504258,449678218,59591909,416204683,774393817,321025003,175426542,55308417,24209685,375676119,602774686,1849889239,681473,18155543,22836988,42708195,14982625,61014911,59268383,594617548,32547753,813477602,14822021,15411858,944467345,15613664,62316989,9411482,21689161,18991464,17467341,7150532,14591033,142411092,107842978,15169889,33629924,123289066,23227841,32686298,24870244,616485017,102420827,126664186,19402238,289485255,252787550,50263701,128615552,50005787,16091351,13567742,16033525,24815411,125184430,263830118,112245265,29061341,1401100357,14085704,181912222,66130611,18245041,1344951,90035806,17486677,132297131,185855695,25029672,126302054,185680080,870834091,29309901,16041234,47821033,1517267136,284883861,18478188,65155179,18919088,1447394395,189998613,26607725,109043700,34227622,78635037,331817345,20153725,331816614,8067002,83996344,36444204,17813980,39451367,17285007,21687414,228077059,14742549,1430882924,838179889,62850214,207526260,13766492,1571270053,838464523,1249676186,63815293,300010853,16985214,41588397,1377937416,1178700896,870325686,107127119,169559219,889180130,1131118056,202890266,152696429,142614009,109583234,47371913,27557391,21706413,18487054,808561,137096072,112695981,1117121358,345251750,1645605294,298597381,70736359,7994972,490495458,59924621,279614869,54399803,290593825,430058230,637109692,188266169,572225652,594280020,128292609,846828564,1371909548,9534522,1467703272,176300862,417631398,15585039,221041703,14761795,268357486,27681019,816653,15952509,18781150,97523297,195419597,47539748,92183278,32540650,382417301,43092459,1027394472,27610987,18230846,56487200,12263542,868571394,29854529,711932869,573918122,211154075,328838071,925931544,1058864162,1311811896,70574234,15828276,114231889,75742264,923883858,539448537,183898082,26613480,1530850933,14617499,100610221,94091863,92241457,601170594,253998571,955698157,152954171,280559948,133751142,8241232,347698644,89735094,634812478,69097128,1018872102,777308683,203253392,737826008,18351581,135488533,22530207,108045600,20306034,96468445,8108972,297152824,356955821,214402290,123006717,184513694,546947988,83740333,1166663852,18365496,99919360,287932099,291897182,12726792,148292070,55374753,1123693536,547300420,26566469,397455346,15922651,37104266,38245723,14483124,16600687,642833,1367176327,24004475,16319594,20095865,39697444,601295358,1305156254,1455320918,32868144,28006501,15903378,16304004,631174177,1110262956,25454556,1201714944,1486296062,293278876,18453284,186154646,321202808,407046019,142669299,65707359,65647594,1408488632,88318895,291510996,46731762,972154164,15662133,479670287,43151136,34024882,480153399,1337535175,20729031,20279370,185809250,602626619,40627145,369875107,12807482,353340280,1308830929,11232732,29472803,9210392,790080344,22222965,204416862,13298072,377654770,44703654,22921528,57537847,24817859,6758002,83643610,65491605,23432012,147305691,14304710,414379328,15220336,786939553,18109873,558465496,196457689,23949947,1216619071,226471593,391602037,55034379,6409412,26348016,173240772,134309619,248293692,19873593,19401550,40356855,15254839,30422794,349540312,866370582,562304281,15646875,283313600,20454896,180088363,349189238,13474412,457603095,1050991014,616879823,83874770,105203181,16434221,233604842,6830032,16564282,814338416,18019555,218951054,235130370,23290408,586893303,237774782,726951074,873927577,534649806,47986971,116880409,21077860,18008484,489690950,103493067,16583845,25407830,281889829,181195091,15964196,308429376,106776691,18020985,21251300,18646159,13566872,288388335,51241574,1170072032,112526560,14446054,39005137,15099133,18352378,14276189,22028564,22845770,74635290,457171434,130268681,126407166,39538956,203114508,46699613,362860027,26908178,165568433,17934812,164397041,27862718,84958161,130033510,48219046,326255267,43464013,39796874,39868135,404532969,47011573,866829151,1123401283,14254183,538237177,362278535,157684364,24459544,78783,69354861,135405245,15869453,14484418,380532380,25919183,291810580,492752830,34311766,60498741,47697756,40711814,22213141,112475924,14308508,40924082,435228319,50371114,1158638582,18291099,386146285,840238500,17162991,52814770,37269308,234141596,226631680,349785521,349289363,177569765,61187080,19195460,325100194,417201918,14069365,15189391,487198119,16477771,1501471,21633721,24387882,17493949,14083763,38936142,1119295699,189601534,44196397,57295940,15102849,17765336,20770348,147168151,22018258,14560460,8634412,20444181,15066760,13145012,13395932,1093077343,20536103,125767077,2621591,48569578,18228075,15504885,1120626926,277198961,7593662,39832918,14630696,792780432,14255407,22137832,1099234603,97757027,91270013,15496147,329557752,241368542,116475919,16868686,224180296,551481276,944484146,16744509,599298339,282728979,1115301194,220135900,11030882,33522604,34113439,182454948,17623957,293984358,1807011,111400999,70449178,364728802,18691328,25880588,17136568,622628412,288994624,14963760,14733744,1077233198,208546826,387383722,144703320,58740930,103036462,516684914,102115921,39564433,20010925,15919988,47635720,4952941,285908150,28517623,258896387,25484126,119464925,45552104,249385348,192921396,1069129315,186154648,810709142,16752675,223890696,21925180,16675569,28368825,21012092,2811851,726628538,601981724,823098086,588387056,199798906,821401298,21301014,16194566,67390766,26336221,54583264,22862623,30785007,143964151,17288045,357031575,160010755,21844854,59159771,19605981,87113558,989633635,717034813,14096763,13524182,9532402,236026761,24795000,23342802,19306810,161044052,30893732,916735110,65783818,16460682,22000957,15119529,350415705,120868481,221167035,114782468,20193857,27582945,23629255,709871912,273012474,424595791,44438256,375971107,366193785,20512928,15838036,109099014,110639889,569839623,465070708,19532804,192231853,338828458,22049097,399679253,356834376,212071519,907209564,48363858,703388616,50338601,60694237,17502416,14179819,178770014,20714592,14738561,136998045,118747545,1305941,16012783,19655830,142843687,925999250,376005446,370751904,353465310,123425024,170128697,816325328,11620892,20182089,31127446,14529929,32521584,21111896,16157855,131144091,28181835,15677585,120180668,46817943,26860506,22772264,122396513,21215620,103949895,80638910,16359843,1025521,45399148,369505837,20196398,297532865,6112442,46557945,57770539,278776049,26754354,55394190,595515713,257553324,16125224,123327472,17908972,279162316,138020182,120233868,21415998,784122984,35220556,442904755,118273546,14412533,18909534,19107878,95740980,18172905,203192992,19746543,259565941,5779782,527743455,24810179,190450243,380642128,32448722,529154224,29764993,137340182,109524559,15865717,27302376,18291873,322245908,381104554,215161294,23153246,544638548,19834403,116821890,26858764,103115805,18739693,23486744,817407956,13148382,928582106,473620611,877003172,57356719,93475451,9720542,20262083,371994104,353480777,74820061,75944553,199498184,39185716,67144836,1489691,133315811,24081172,109484552,15187243,16340092,19935420,22017317,64141011,21693060,22770193,400196836,5174191,123626700,15990298,18931517,632301127,145773567,205839574,81896993,90545097,16566825,19550262,72445766,16197345,377027721,104263696,293735479,10752192,15685721,7848802],"next_cursor":1417903878302254556,"next_cursor_str":"1417903878302254556","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file +{"next_cursor_str": "1417903878302254556", "next_cursor": 1417903878302254556, "previous_cursor": 0, "previous_cursor_str": "0", "ids": [174716364, 4229043317, 584141481, 36244707, 34643610, 7383122, 2307068066, 390842981, 345894976, 2798004630, 193596810, 16474986, 82431632, 20021712, 2967867342, 1345863144, 525249617, 80797182, 365459573, 1511949548, 21014078, 227013289, 1532543576, 1481054280, 16280979, 25453101, 70595671, 255517988, 596841936, 64523032, 15714370, 1432081760, 45869342, 778250695, 23008743, 915719034, 16467789, 39263564, 3346616554, 333442035, 36918513, 15822969, 2469857444, 826052299, 3892175716, 1563895639, 3079401397, 3092079436, 17155587, 98962695, 2336216776, 41565136, 832057747, 482179923, 3987827837, 14115172, 125423182, 123289807, 2383284786, 4527950052, 1485600931, 2352084432, 22508206, 126151675, 38705128, 433247367, 1079443074, 2338105459, 118935599, 28599820, 23295958, 2284018490, 1232995548, 184385983, 357661916, 877260416, 949232324, 198434663, 416809908, 20065936, 307855987, 3182047141, 247517043, 4427416695, 4426698797, 75091114, 32878430, 4273147873, 2402197177, 1543056944, 47605173, 2560289532, 39013572, 2866046769, 126037037, 17402120, 262352377, 2358407005, 596706060, 2885725097, 600580312, 466899807, 112029154, 3035489583, 3420906832, 294225981, 2776016907, 43602705, 3041074949, 75641903, 15428612, 1666099686, 198352854, 216100700, 60843563, 59489293, 18486446, 385883807, 89254683, 116707941, 84028963, 2566824948, 57048551, 19351317, 219957717, 3877035493, 3812320515, 3540832456, 3377353389, 3306463672, 3306307028, 3252248568, 3240557112, 3105512481, 3036145773, 2954253258, 2786392888, 2761823098, 2690520336, 2536509241, 2425339574, 2339890328, 2331512354, 2248966884, 2192183084, 2186834270, 2168408323, 1926787008, 1897471286, 1465738609, 1427386350, 1414052431, 1377573938, 1351957970, 1327886413, 1172385756, 1155945612, 1150900106, 1035823255, 1014668238, 1000540062, 996120571, 995794087, 968080993, 963957084, 931130899, 925035698, 858718512, 802185074, 714240331, 613455739, 608610375, 599849374, 561887188, 498700046, 469171952, 454672754, 433794960, 422355017, 415989428, 415458548, 412254113, 395868327, 386076684, 374811299, 374675413, 374413553, 374052497, 371313804, 359573726, 358903005, 355696940, 351971672, 350579415, 326854066, 311240703, 302102486, 289069118, 272285827, 264806091, 238096056, 237243990, 235785221, 229114172, 223424972, 213359082, 200217502, 193653724, 183454227, 177458594, 175104981, 157965754, 138375644, 136968204, 114543805, 113960138, 107161643, 95981793, 80811754, 80122680, 75467271, 74424673, 71091193, 64610462, 62029673, 58517669, 54903471, 51207702, 50089463, 41146281, 39909343, 38839573, 34865826, 33223159, 31397776, 31387025, 29719275, 29708270, 26843983, 27004894, 24444891, 23833491, 22156161, 21864336, 18585097, 19491190, 18114111, 15630662, 3737281, 28072047, 22538725, 2906956060, 372575989, 72345536, 3350493279, 156905483, 12475072, 3503442196, 19568034, 22410909, 2603080159, 82355306, 2888034164, 452352757, 3606504676, 15414356, 76849994, 427354566, 51031558, 28563096, 34863269, 525487471, 119521385, 4316815947, 515511443, 14223960, 267788953, 17617472, 3053663748, 3248910245, 34306568, 415823496, 1524749774, 153280848, 235348644, 15506669, 234136347, 733322844, 14160917, 33287494, 990305612, 1915177471, 1563503360, 3585167052, 458046334, 2613246072, 961755354, 2266035060, 946894280, 4220691364, 4071214642, 512407105, 262471388, 19670226, 373584957, 15920243, 4257979872, 14269768, 97738079, 2538349783, 58211781, 3412867557, 284718102, 20224969, 21826316, 15670644, 4119741, 22429979, 1344603788, 4009671023, 41660626, 36508851, 3910893854, 4010449719, 65176836, 14545372, 2980058889, 211177035, 757303975, 14817150, 18393196, 15692520, 1209887330, 58812628, 637196658, 372018022, 3942597494, 200711723, 278093318, 21119658, 39446462, 21982720, 14511951, 3676292235, 2927107460, 4071873193, 394060363, 54306976, 4129078452, 17663776, 140252240, 82659154, 63697051, 3834939257, 3621791535, 1541797452, 1643475626, 1012864226, 594015697, 133929829, 194714715, 2489508619, 189763764, 8752222, 3074259883, 1138981327, 318549214, 82544380, 29735775, 14679233, 4040207472, 26682348, 868389662, 4010618585, 3245142196, 3980516359, 240471848, 2382609979, 112793441, 580942452, 15542781, 46190611, 240184267, 44903491, 2821370524, 3257162537, 1497210092, 1353260683, 21059255, 26028448, 2455204525, 377206475, 7900962, 15029770, 559028753, 3907577966, 1252117579, 3617313256, 313743136, 2198108859, 135905236, 131552659, 25856281, 1360417214, 67622527, 216633730, 97506025, 15376200, 65154490, 345232857, 272491055, 343267635, 92027622, 2192878808, 2478738590, 233387844, 3317341816, 17448192, 401281561, 3929578042, 3937345408, 18639452, 22095964, 246788299, 14552366, 360654151, 2281125961, 62515016, 835680883, 313525912, 3982969096, 24277551, 2747973655, 3167182492, 70784623, 207635400, 28411360, 478849885, 1055281526, 3356531254, 3266848870, 3958051175, 15359205, 3310428789, 111778335, 256277422, 85032215, 249466118, 1111063441, 633980404, 12604082, 17505249, 17043428, 344395626, 80655195, 1003857624, 1509936680, 165731767, 2178901645, 3230052541, 378703672, 1268764082, 14585409, 14752312, 257893956, 26609246, 25924436, 112236745, 3901783420, 16866617, 16951956, 77570910, 15409625, 16944165, 21266560, 2927266003, 90694228, 68449573, 403727931, 404421890, 68707961, 14290018, 166772969, 399004430, 307589282, 607099840, 17455195, 131301936, 8835652, 33935000, 515034648, 2916305152, 3675973095, 284638893, 3114313702, 2971787403, 2342323674, 4906211, 3406043239, 1390255892, 591160609, 2370597494, 1430901781, 177336591, 173216568, 246867553, 219070649, 3310348271, 3364515135, 214502417, 246615051, 21099301, 510123282, 2526706224, 2231927636, 2201024219, 3352886781, 2821132277, 330797853, 3675995734, 240061941, 429946250, 570705602, 169661494, 2545171004, 3184574881, 32929377, 1482771301, 3583264572, 3541994172, 45155495, 2493733837, 488810546, 21581820, 14607059, 2980100441, 36393171, 163036182, 81951477, 26396117, 18424289, 2514293430, 1019836922, 3293886549, 110396781, 221834911, 2813202439, 50446226, 19758375, 370758768, 383435496, 14676835, 24831757, 2180408564, 3350807423, 233257967, 16880858, 23911915, 448434781, 166267705, 65640999, 17774100, 1135983726, 621522194, 3221765772, 1198690393, 3472808781, 61018648, 27895727, 257922239, 3458195901, 15754281, 2467791, 34379755, 15208768, 861455580, 3243356006, 3433379001, 21634600, 1282121312, 1369144951, 52494838, 52499707, 379824075, 292650377, 2830496875, 33661289, 14768193, 2212664486, 514033223, 26267605, 298665200, 1365252164, 148962007, 1475775084, 66385865, 590060558, 55633685, 3241266563, 3169051790, 124293790, 14264161, 476387407, 2453452381, 2395614938, 14850576, 14445325, 4488, 2780477770, 20675211, 441134864, 196462653, 54654212, 2285771029, 1665877224, 718449524, 2680763216, 47374474, 2717089861, 518143842, 3021697442, 45420135, 135990436, 41127809, 229999442, 2437502443, 16148151, 417739798, 861893730, 230240898, 1040127511, 1380385320, 2600187422, 3243668999, 845066312, 17200105, 1365460075, 961201465, 610219779, 113689722, 357551176, 417960385, 637467612, 796721929, 61524685, 869416448, 839536712, 764372598, 1020108763, 258960686, 579300579, 1710096061, 2372308056, 20715242, 2492541432, 2431369694, 99000872, 304550287, 15076489, 2835899107, 620020696, 49574494, 2408844830, 512905341, 49534192, 299639883, 2941125060, 14145626, 311086886, 21512767, 1523794302, 324956327, 18049298, 23195549, 11179192, 340795517, 874798920, 69186722, 979311691, 2978541712, 1219366122, 3301420004, 14295657, 244162778, 2805687654, 1143905359, 19039279, 183247422, 14994676, 3193173610, 19086064, 15914986, 1106610996, 552661784, 179163585, 480630176, 124528783, 1170164516, 23826345, 134918286, 1546783842, 127705651, 76520255, 375760645, 17596069, 50329013, 243314723, 18139220, 2615319734, 249724351, 15737554, 1259839165, 345615190, 166028524, 1665386791, 275391646, 245384422, 308078682, 3304470901, 25658504, 103085965, 3018968748, 14468410, 148567358, 3395561619, 111404710, 1347581462, 3073871212, 17530448, 259953357, 610388842, 3373321, 15852132, 28883874, 35088920, 272633065, 284542523, 435404014, 2937575623, 3244931611, 203609543, 3219632226, 17175139, 3333394869, 456930921, 3065348142, 35382548, 278652369, 152877900, 74903828, 96602314, 56179493, 26377478, 25168865, 3157927513, 15466988, 285125151, 2746648903, 3362148580, 3288353887, 785808991, 456403811, 2645532414, 3307377695, 42634830, 34946754, 139830358, 42857269, 1858554535, 24657506, 48419856, 14031032, 14116915, 198020721, 13759792, 770066, 1701631, 3153328297, 780993961, 2417085025, 22032817, 2978608072, 2866454409, 1357254643, 1656174793, 352644923, 2903966777, 372760774, 299505155, 25170613, 3226238609, 21916640, 22205944, 756762998, 21145852, 1490861354, 80893052, 1979558624, 3345956002, 3293153877, 313813951, 87205530, 14695043, 2284287030, 1408308162, 1732689133, 3256190911, 829323654, 17372204, 618351213, 364062266, 3342152225, 15218212, 17463028, 2218734840, 630703637, 2152614386, 2859487678, 18104730, 1433469289, 18040395, 463428936, 397694029, 637357269, 2738735742, 36584174, 728305885, 714296275, 163610075, 413634848, 523676772, 265484413, 225096128, 222490156, 36322086, 998640920, 21277118, 3232924232, 3251112680, 608310777, 2949547815, 52452323, 2347560146, 3016964678, 15824288, 246309084, 2547533580, 341046775, 42628521, 3309136432, 14188527, 305913715, 16683885, 293941423, 49885057, 284589209, 65478524, 32269230, 840506047, 3239114702, 2615603432, 345454327, 36336107, 3108671256, 3091552272, 274866611, 394134791, 18244419, 153500044, 1465842356, 586, 7692762, 856432010, 12329252, 18737731, 22546003, 3300703462, 2841359663, 82398383, 2617471956, 138681231, 2690187182, 885506959, 3119449389, 299988190, 3308352436, 2899780530, 887221, 2182516859, 2153551561, 165862343, 14614981, 24950791, 3293347210, 3309662224, 1296292616, 1222705992, 584162442, 217478823, 2900242168, 779049289, 840233028, 3257262027, 13565472, 2675109888, 30013010, 168754092, 14526877, 20698435, 2282667775, 835858886, 570484435, 2223451512, 1722403496, 6476742, 636586551, 17851886, 405157471, 15604078, 148736206, 77456101, 74536754, 47880934, 599515941, 2931131799, 36163152, 3044665445, 3572441, 2937632239, 15481158, 25171326, 47939390, 15808647, 15249166, 16287007, 1398449161, 84652865, 3151633831, 22271373, 15432750, 23971393, 273223527, 2149815847, 2384173392, 20056392, 128544009, 72255032, 39279027, 313525999, 3221779009, 17714082, 16782604, 1270746139, 3148356377, 3195834151, 1536791610, 30791070, 109317659, 538489875, 2609106255, 41582030, 18691048, 89123936, 43642659, 14124899, 545804017, 17238395, 22840995, 138830247, 537776452, 325803700, 2448248076, 2877214085, 266185089, 3187026492, 23596644, 23408887, 20172250, 102420852, 499917546, 92030522, 1394917244, 1556361283, 151689073, 557976011, 795008808, 566052541, 115865427, 569643970, 329989597, 27963917, 31227419, 21918047, 16132284, 25396695, 188045648, 3149889709, 1730414958, 133947893, 3172756859, 3186605629, 28592419, 465255113, 379921752, 37280980, 239297332, 28049003, 12523012, 202890424, 605674944, 422105720, 16517679, 500704345, 60939512, 1304924886, 278648035, 3160470333, 216776631, 2151820370, 2339685247, 615471114, 188545143, 814589791, 1260091734, 2752775016, 2868169873, 39692025, 3146567046, 20530177, 231649709, 2815076773, 14774366, 2480569345, 2828369140, 271636708, 104916123, 15529670, 14638851, 15081378, 15774048, 16002085, 16596200, 17179368, 18536997, 18637420, 21576334, 21705181, 22021978, 22128352, 23948464, 25030848, 25298569, 25960714, 30971909, 40874240, 43792125, 51002583, 53416347, 66533920, 80802900, 102934369, 135060958, 138108708, 162869238, 172081908, 191849753, 221707278, 276713213, 363997684, 566688127, 1183947482, 37861434, 18269124, 1200738858, 25348485, 1582341876, 1228526078, 317700208, 46770535, 2885031082, 51768731, 22481472, 2769059108, 2680336646, 171198994, 33323849, 14247155, 2882391828, 2489298668, 3148813916, 10959642, 14903013, 113450686, 1267082576, 3121530274, 492545912, 1315298502, 351127535, 251796912, 404351974, 38135837, 1634066785, 2968989617, 1071777608, 616279187, 123532694, 109890809, 17681505, 16721061, 130906331, 2182641, 575905433, 93581874, 1187444389, 1606877971, 27688281, 16957321, 2856042501, 378778750, 1615577521, 431627744, 197108944, 1551856777, 62648354, 16785742, 11696382, 2732089057, 12494842, 3107878302, 1000968684, 538475269, 84599034, 2176557343, 573965125, 14571751, 2685092670, 364762860, 714864200, 17621767, 6825792, 22458458, 46335511, 1915336519, 16088941, 1278123535, 233473695, 376790816, 87215923, 785683, 217430520, 1444424754, 58514805, 3035726218, 6385432, 14897303, 20508720, 80617430, 167518667, 14477723, 432895323, 3029021253, 562585357, 25889033, 32078497, 1357252880, 28278535, 2952910735, 139112983, 235214894, 2865812463, 44776990, 17599655, 5045181, 6780932, 2445809510, 2927758254, 2842655435, 2296984584, 1694401938, 21165339, 807735240, 39108656, 575660051, 3092388093, 2400443496, 57076191, 155748301, 13209362, 197035403, 14325025, 3063529148, 2485531140, 1906951, 10018072, 2562629773, 222467178, 29752603, 25165002, 947986136, 3014224345, 12076002, 16396118, 2371270375, 2977964520, 60642052, 571202103, 80069319, 140074826, 52129399, 126628622, 21965626, 12755092, 2314467259, 34424798, 582909932, 3026704559, 258923616, 2030711, 27212264, 2392489904, 16725824, 2778827209, 3058016604, 342100419, 18014373, 122387909, 2382117350, 16892481, 386631799, 2835337844, 127739478, 16477936, 187516575, 17845620, 2600525376, 101754147, 84684955, 14564868, 55694209, 33433709, 751452180, 16216975, 351200120, 2575159890, 29100243, 661403, 478326622, 92601300, 831880992, 1269364218, 386413191, 526600858, 60747383, 15612654, 456253373, 978176486, 17687405, 132399660, 22144306, 19185921, 85193539, 18137749, 27025052, 1926360631, 105207999, 202787004, 174397217, 110504902, 15220768, 27054843, 111954709, 2496916592, 16109926, 20066416, 2991711108, 18259909, 81650351, 85252011, 763450351, 2770265776, 139823781, 85732762, 5360012, 2777170478, 2247473304, 620142261, 2983295300, 558739638, 259725229, 19968025, 2826874038, 3032074419, 126696497, 135158292, 3047677737, 19983827, 997629601, 14464767, 25375092, 9207632, 14043142, 20020021, 2846058853, 115615024, 2703332132, 1583321544, 271483634, 200918256, 2965129341, 131227689, 16681111, 2845735816, 612644714, 2899672599, 1087860428, 36184638, 610659001, 24461387, 43379364, 2980412572, 1483376342, 2326120952, 755861322, 36959762, 537541336, 910873332, 55216586, 337819489, 2553927774, 2032411, 82861206, 631401764, 23567622, 28888320, 7140202, 2160344682, 16220555, 1126749103, 13967302, 21248379, 552582271, 7782442, 19819769, 792378206, 2338365339, 2962973505, 21484068, 34126441, 1898493691, 746032117, 476193064, 14728515, 1919257285, 19137592, 47327436, 15363133, 311080265, 944203531, 54216622, 96072665, 2885138213, 1285630338, 87057908, 19734832, 3003481647, 2999377084, 171167972, 413355878, 321522551, 16548855, 959675203, 8790772, 2292182045, 20476151, 15421871, 301579605, 16339247, 454992440, 2550858595, 1429055587, 928481, 20651511, 19040598, 8034682, 135575282, 2789139782, 277219019, 2783583373, 50741143, 190669152, 2990470226, 513855040, 584359541, 2988116739, 18297407, 19358191, 171279007, 583869504, 132213553, 145613137, 1581896461, 6698022, 15865042, 13217612, 14481269, 101897322, 129653547, 28251153, 34781412, 2605497847, 1966256035, 243775607, 2770081590, 18700629, 74474794, 77092809, 64954941, 960727483, 26401477, 2566085594, 25892745, 5031151, 19255050, 31094727, 34632493, 30290980, 40028412, 22587230, 21364753, 19918988, 16619709, 19711765, 87474197, 589535421, 256722290, 462578542, 1950272508, 253270711, 205076166, 169698101, 1451773004, 581815681, 2192619314, 2966047517, 1639495106, 887906528, 459796949, 159955958, 20017825, 18276341, 396399850, 212304085, 594376322, 599632006, 596964216, 813560072, 34936539, 113739104, 18955413, 909529062, 103041418, 234947344, 119625403, 115210837, 403567128, 1294168843, 189253902, 203654782, 21495286, 2546261755, 2364189422, 2847023699, 516633812, 176036339, 18689183, 29795697, 34197266, 2862725633, 92326348, 33136420, 24381416, 581005340, 24545398, 73761305, 626861469, 381725263, 87420519, 379356101, 107823143, 473111750, 1481073828, 2815948320, 2911296698, 62724059, 2841020667, 28373693, 1327886654, 1843791936, 2759600352, 554508623, 17042078, 2820671119, 304356334, 314702715, 14493552, 55038953, 315302894, 16714443, 351915951, 296464173, 187972757, 19355829, 14606202, 1733419830, 42660183, 2894919132, 28098358, 66444507, 50219804, 117247636, 23031376, 43358159, 20380049, 29776689, 14868608, 29299946, 220044097, 424484966, 17947003, 2875097319, 1107261638, 165411483, 416699250, 78533960, 1125047372, 205193523, 47498699, 20726786, 93761004, 410600310, 49155241, 15349180, 1471250628, 1179455215, 2438273430, 2381931636, 22428439, 50488060, 388937036, 250844472, 1949282881, 394103606, 57932039, 49012699, 1494655406, 21339159, 2881924182, 16877374, 260929607, 23656337, 57656702, 52756637, 68482261, 17186905, 2202557258, 2283541350, 125190427, 16935292, 2821900992, 425265314, 112838571, 15367088, 2596218403, 248805395, 2806556857, 262317278, 520665133, 256754327, 18806838, 64786050, 16224705, 14186638, 17125603, 1617731504, 2778642937, 553757993, 284988279, 544773325, 710322776, 1203840834, 14949573, 67059584, 23112236, 259395895, 74801995, 2563919738, 313080999, 403608556, 2518212522, 440362326, 258909040, 2618403776, 35688200, 312314261, 274396558, 872252960, 204932888, 20481072, 2864318800, 16715240, 41186732, 55896443, 291531600, 16160638, 15129727, 252179335, 245983319, 15084970, 255861014, 71832238, 77920769, 30321661, 211939913, 1669352653, 2857371350, 2666750809, 529501969, 962148625, 302404672, 22497733, 2546868080, 2677634329, 2712674750, 851499338, 2755310156, 1530953521, 2808864594, 2305630168, 15345483, 67367405, 17833557, 305591096, 792600386, 61670139, 2564135360, 268429621, 2831587762, 865341985, 136018565, 2331421572, 2839228199, 61526252, 2733320850, 2577957372, 17040892, 2443847048, 15961122, 2435960576, 2651763620, 51318358, 1611472182, 840450648, 236916259, 83385252, 619642695, 44686344, 118245138, 600803781, 179459971, 57145894, 60101766, 77041903, 49717501, 40470694, 63646805, 1672787334, 88135655, 471741741, 60075391, 213228524, 25741919, 296198193, 399010753, 119116960, 2719719666, 363873688, 256495314, 121817564, 1406091554, 53120768, 2567863897, 1400360078, 2394236400, 358260333, 430989298, 56709645, 1362466212, 30581721, 2800252702, 16177628, 720238182, 298034812, 17169832, 17049669, 15837189, 22209567, 80859044, 1321619010, 27849650, 2238491365, 27225542, 14765585, 44046726, 52488565, 2826549302, 80593904, 1499335951, 17974312, 178023069, 385131056, 15704617, 31832948, 202313343, 1876367312, 57047586, 236838188, 2597498814, 327577091, 400989826, 2765974980, 24667140, 1545338485, 25518846, 2179994252, 62266883, 441421837, 1496344326, 1306041620, 174110843, 1288758828, 14437242, 16656631, 1115148079, 2325202999, 337886919, 614249266, 1081962504, 541158674, 2651646559, 1667662856, 193473814, 16007952, 16222904, 561676909, 1167842311, 1486002967, 1236601488, 810483626, 1547722903, 109779429, 1258398914, 277320871, 2801517637, 1735713398, 1289024803, 517661405, 1671813086, 168987151, 20941708, 40656806, 2628171535, 473444562, 387686234, 1491083406, 786625988, 63760115, 1966754972, 14056532, 18525154, 2677576862, 14304615, 381026831, 31338198, 2746492014, 1534066765, 1362354044, 28585356, 17688714, 1278161922, 20810335, 2693435648, 2372984767, 1707854317, 10536952, 139933597, 27315969, 16607603, 1418741706, 401775393, 591459541, 218944987, 1405385880, 2291338687, 55243095, 2469548600, 38475395, 2495438286, 2426410609, 413164975, 2354233526, 872355266, 77621538, 15762708, 39342600, 2232398257, 1182675871, 24595575, 81690879, 510592186, 331703548, 14974079, 20941733, 22041466, 148529707, 121544946, 19904685, 94127415, 72842277, 143923948, 17348942, 14517538, 88781425, 980582593, 38146999, 260928758, 917421961, 267328866, 912345692, 17666727, 48048888, 930781598, 15738974, 33248363, 41476394, 381347159, 48000256, 241964676, 25772065, 14636374, 135501248, 2740669634, 209693623, 764204616, 14045465, 1676457685, 2493331080, 2468202997, 2744765320, 2763178020, 83972205, 15838004, 37521145, 400372150, 246682858, 2659960540, 324599106, 138692729, 2415887156, 2584158559, 124236245, 16641343, 2577502560, 71461029, 23760311, 1546624514, 386517435, 164089883, 135461282, 241730145, 114604564, 245305204, 376380585, 36056115, 47747074, 381318163, 61676800, 22845527, 15521535, 20007097, 97327765, 27000730, 512417432, 88975905, 162436508, 535878400, 12382582, 143914733, 2596694492, 2294608897, 6440792, 17073225, 14090948, 17068692, 34308692, 18481981, 341908197, 394962139, 7768402, 69004966, 14849562, 216379128, 50058630, 22987082, 62952335, 1682157414, 1163807618, 207645432, 14780915, 23818581, 1630896181, 558927451, 24606710, 12803712, 463054608, 116106958, 11265832, 548443674, 2230397137, 40789325, 158503650, 14698682, 21787013, 26731417, 62414046, 2400320881, 1128482060, 32542903, 115182291, 236050146, 1251230114, 305870046, 2405020009, 1098802430, 16119366, 37547775, 215746958, 2308875504, 98685536, 606838476, 2450043698, 258684388, 18749271, 128242246, 48116802, 2444534352, 919373695, 44499804, 382937731, 35315865, 874176120, 2544227706, 19551341, 129988372, 2674556090, 84200893, 2472066191, 478669659, 2391664056, 176210560, 871991101, 186826724, 47526275, 17417452, 59029811, 11990942, 8132582, 297602297, 19178857, 193767233, 28947018, 132655244, 46690800, 12354252, 2165245332, 2590407811, 79449976, 2634423025, 290139804, 1076770202, 45268666, 84661546, 898124258, 50482530, 78647472, 505364106, 595568451, 51306445, 1439508630, 18629321, 537343182, 402199056, 31439308, 16539917, 17966102, 33388399, 22138134, 573415146, 1916506454, 764365266, 168537920, 19000697, 17519586, 2332700791, 1147895708, 30008429, 154652139, 950794590, 2333936658, 350457031, 595722578, 334972686, 93258847, 1953020821, 244539931, 126205656, 145312903, 22915052, 835787268, 1568977914, 16146755, 582277886, 2317168669, 2321375918, 32427374, 42956446, 741928796, 29342313, 2423058966, 1072993274, 245078181, 9022032, 17602811, 63783716, 79306105, 14765253, 2544359214, 615526730, 40303245, 2340460459, 50337556, 1445427806, 1891806212, 2499310819, 2586257250, 18963809, 24226431, 382689369, 10688432, 268432127, 28218405, 65688328, 83540809, 14089370, 15009111, 14347423, 41202241, 1198481, 72287350, 137455381, 67595257, 44104818, 14786823, 29992342, 37298915, 339398952, 1414376791, 280753615, 317256778, 13786802, 331803536, 19563103, 17040599, 59503113, 29442313, 91593332, 240087328, 76485784, 609308872, 1356942170, 95468980, 9636632, 25180871, 2378320579, 12759, 14699388, 71465523, 602065304, 2480079168, 2377815434, 1565908723, 49860614, 102807713, 87466533, 897558096, 33480171, 1492400330, 945310303, 745744310, 29913149, 126410058, 2548240340, 93187905, 19855459, 1892683062, 43696910, 14994194, 288778779, 543582293, 1573751760, 2168445745, 186183169, 2484050419, 245347370, 560900368, 266635682, 280237680, 2474749586, 32257623, 54993288, 37377034, 2349040381, 14721643, 407657538, 2417232973, 32527860, 343422277, 511065332, 2517988075, 165573426, 302186628, 1965716257, 55320310, 5907272, 18161631, 23694685, 978343472, 19767193, 83031278, 600031424, 286429276, 274754192, 41410667, 33351873, 526871737, 17030680, 17766403, 1017889500, 80076673, 390287262, 2266900200, 88454469, 480196886, 90674236, 30644410, 872955290, 16721621, 568825492, 330921167, 168786720, 13680362, 36670025, 2363506767, 16303076, 12917402, 14822252, 2571155086, 255323205, 815454817, 127877956, 25935803, 28250356, 1331578932, 87691397, 19034236, 292650956, 2492302700, 403929334, 15728098, 139909832, 18103385, 73385250, 578570016, 91237615, 54277378, 422217439, 41847726, 611743131, 7091082, 1399429982, 284694021, 2240082577, 2423795893, 15008449, 807242797, 900817166, 183962178, 129767622, 61354111, 16182261, 1561888556, 187518287, 1750241, 34877293, 2491917122, 156045092, 1598322511, 373490653, 2497242884, 94496307, 28982619, 137482815, 52461472, 15355482, 32768009, 33647344, 16191902, 51176565, 90725320, 262753143, 65987618, 544466882, 881469662, 776386459, 166555205, 14465327, 43412697, 438935496, 376939806, 2347382634, 14080346, 1137893880, 15830436, 84413113, 9078002, 13654792, 24794149, 234132941, 392460729, 14376279, 6604762, 463070295, 25564548, 1603425318, 2185084844, 31293166, 46934577, 17375281, 72783659, 20778387, 303651044, 68870274, 472499685, 22006902, 16952174, 15088481, 16799074, 18261865, 26521047, 36381021, 53186378, 949934436, 76478482, 21943064, 245587242, 207775224, 52521572, 426080991, 16978136, 14156567, 86455397, 1004714095, 2403031566, 108777062, 1002351378, 832197440, 770853422, 740719345, 470939544, 382758202, 106843613, 93986038, 92512982, 87759772, 68906469, 37866396, 23469247, 23115743, 21770611, 19123229, 17472945, 16870421, 16838443, 14365976, 14280661, 7748752, 14238165, 9684932, 6092342, 6044272, 5943622, 756475, 48473317, 2424440299, 137319969, 336624022, 55119016, 310293175, 20608711, 209213183, 612019015, 20961635, 11317392, 16227629, 773627940, 267038232, 259317559, 11313202, 733515391, 1638825054, 22526906, 1523709008, 861949171, 1714177862, 8221612, 14247309, 326665662, 882173190, 1337011070, 263129271, 14248784, 17371549, 2315729580, 112843330, 58684655, 17889970, 479816451, 109944769, 811268736, 2350315904, 1575918264, 132231788, 52998367, 363399297, 17874869, 17698600, 286703, 60087571, 590074258, 308607766, 590052098, 266917386, 563051945, 37759047, 277337146, 5870242, 1355927760, 64873265, 303955090, 19164415, 20763870, 40615771, 975002792, 2460145735, 16231706, 929989772, 601874499, 22965441, 54687857, 774357217, 247462443, 2281856286, 2460716006, 16531850, 1620127254, 1109372617, 21249970, 2411793456, 1388352121, 1910701892, 190367688, 791733534, 15522528, 28637222, 353066648, 120194754, 262077429, 318488345, 90982474, 71643557, 376819015, 74612541, 534530008, 79870762, 12044602, 1212433794, 14787561, 135486450, 370343276, 284544447, 16637461, 1184647243, 38496530, 7591572, 86537404, 14599476, 13784322, 16594832, 62575859, 14513611, 255797635, 119756545, 15764415, 2329384614, 26374751, 462334474, 15684633, 129924486, 101149691, 14352599, 108418043, 2373927878, 291486075, 22804909, 1979667199, 613822232, 42072417, 139920911, 18814041, 20755177, 602602937, 15023095, 17198424, 219877441, 103962290, 588470328, 40233111, 1549717748, 226662318, 110004599, 179546580, 165204211, 779349096, 1281581, 275031945, 23892094, 1542533869, 625619938, 14172171, 140893518, 2384027052, 31563791, 101233661, 119528386, 2437819891, 352823966, 27581606, 16340404, 368720556, 24820089, 111426091, 16303106, 262806854, 1305684487, 580147795, 59124142, 46106161, 367132858, 15112727, 2428998008, 970428030, 165896536, 66182591, 2314620908, 305468597, 17824498, 491638416, 25283401, 1322965681, 257261479, 1598644159, 130949218, 36525252, 18812587, 1220677470, 603162738, 111061417, 87617621, 84875272, 19026735, 125153534, 14315063, 1607352596, 1485895513, 110025208, 1363049263, 47678024, 3564041, 68974666, 297915370, 634702778, 912858588, 55592530, 17211476, 560448814, 2317837263, 84679163, 184716468, 2239721196, 237236374, 595331088, 71666839, 382444001, 2179057898, 184916555, 5389812, 278216951, 109571377, 16716425, 55289075, 192477353, 492492626, 820569, 16891507, 1102056919, 19002473, 327738223, 1102910605, 410464768, 153509545, 441389311, 1862198252, 236650677, 134687445, 118228045, 2426127924, 231136803, 1489065949, 15934978, 347982162, 1027408974, 322207364, 933838590, 394838158, 26605345, 132615314, 41806795, 23128315, 21332950, 58947113, 514564994, 14637342, 537964292, 802356409, 778882057, 1513925282, 793202, 41159876, 2188586045, 27941766, 165565949, 107217872, 30948908, 18778603, 220796129, 259302400, 61044673, 109028340, 48564118, 223416400, 1452248826, 15571577, 1725031976, 104150206, 202718818, 44562973, 214120461, 15906933, 338374151, 161075778, 155978068, 22518224, 15774741, 569681063, 1883512460, 1245104060, 27485087, 10340482, 35117516, 23044822, 465143733, 1537565070, 818439685, 249839335, 16299754, 507370446, 35982657, 52314673, 329969032, 217295265, 36722950, 15968617, 550055167, 52525358, 845978994, 17954340, 524561437, 166421185, 75123927, 1355953682, 23102969, 22014639, 188215959, 473466262, 219029005, 278163334, 227576375, 827977682, 51205716, 137742822, 21972198, 240932555, 40562015, 14190948, 18251446, 366602971, 21347530, 542004682, 56722075, 561070834, 43485656, 2364657150, 2290457413, 48023374, 1838597966, 2401493394, 872059213, 969293274, 265605249, 390967512, 175091719, 17454817, 287538756, 1201951519, 2264624702, 264787370, 2340558698, 717209689, 381677670, 331932733, 23636580, 47654924, 7342412, 19329527, 2779791, 175711277, 985757023, 2348907300, 14205258, 17018575, 74386780, 62259828, 164369912, 262349771, 118962352, 180889575, 456034260, 48252319, 29628889, 1668371516, 449588356, 2282440670, 6462342, 2303751216, 29120905, 236635893, 19761418, 824191926, 50023989, 19557634, 1729664714, 2315839860, 98906407, 1406854364, 2379806143, 1080534464, 606466484, 749333, 243019943, 87095316, 732073, 963455227, 18290719, 18131748, 81915651, 2375449098, 326506923, 34873364, 112929575, 22454647, 52429172, 57833122, 1668138098, 25147689, 18084448, 32190652, 124222041, 318084384, 17435612, 147672166, 69012419, 2216979384, 24881388, 397497637, 2361860238, 2241216361, 17939037, 29564281, 2342620190, 9465252, 2347049341, 30092032, 720863642, 101092520, 351221537, 453709635, 316654916, 21882601, 2339734951, 1697668345, 274559013, 42447094, 18229868, 518681855, 297564170, 16906137, 2354013972, 119580247, 280572026, 15790927, 107491156, 23982002, 149666064, 112396470, 294018733, 115396965, 1560780523, 42721524, 981127062, 18637798, 14304618, 2195930491, 16051232, 97703815, 2262999971, 32511767, 632062492, 304049696, 304070008, 305256777, 272989565, 2341020134, 2353506732, 50306005, 619524081, 19715003, 56564230, 220873939, 2350108166, 14361155, 2270533266, 25333609, 132631769, 17815546, 716827128, 2316481586, 234273955, 481324580, 1732829419, 128308837, 275471220, 19548625, 334032462, 14067742, 20411816, 17358750, 590185677, 927505483, 393592962, 291363, 2305323806, 33901209, 251829918, 15145016, 17092444, 2174555742, 394932596, 32347705, 15751301, 395491697, 18171067, 78963433, 39602114, 19055698, 20495812, 285802436, 66261900, 311062620, 441275531, 22260999, 17574357, 104513715, 277482283, 618401788, 1189043576, 48021931, 25039599, 1932282721, 432958090, 16947056, 139975371, 14687012, 321181858, 17458287, 2195241, 16166496, 2171689341, 78779800, 14202246, 398187934, 14922268, 21286406, 170354845, 2217591657, 15223905, 47451496, 61663, 21834922, 26780981, 42312055, 42329555, 27893163, 2288937728, 51221826, 17088643, 42782133, 25158349, 1741439630, 841898942, 298557751, 211971511, 2140881, 163228451, 59386332, 154311445, 288723364, 22495024, 191179377, 17179406, 132573995, 1444281925, 2215893336, 455084468, 855379321, 97706891, 2219131, 14093319, 409456907, 26286732, 165948821, 14579345, 35752684, 40054423, 1329879698, 66768858, 20184945, 1120359931, 15191052, 17669704, 385025866, 109621087, 351299373, 404296475, 34409137, 973090592, 18152276, 19940791, 829363578, 11996222, 21865001, 37205200, 19450277, 364439712, 542793644, 191190039, 46417885, 60983046, 2167820294, 16664681, 455256867, 14676895, 1710881768, 75357513, 23357795, 82066670, 300181817, 194475085, 846634963, 20182094, 478578230, 470357978, 33627414, 18029055, 16020654, 19245896, 22496235, 14345566, 33677778, 15891963, 14156778, 85412404, 9403902, 743599406, 35872795, 21895068, 14917754, 1234790060, 468517832, 39957764, 18026602, 17851178, 15174190, 19671546, 51640380, 312544802, 296363505, 24777536, 2180480845, 345161879, 18334440, 762202327, 620547379, 47153140, 19222806, 2276246983, 59128257, 95467111, 94954481, 14913762, 104256824, 272161214, 17699677, 2233282904, 204841064, 18572660, 43533499, 47840385, 14935628, 24244836, 17678156, 54730258, 108358161, 967133442, 140928543, 27637371, 25953115, 19971990, 14445542, 18345986, 35294738, 30255833, 18611348, 16146513, 54239985, 165798058, 17596056, 120640652, 20727041, 208442526, 253536357, 39234189, 44136028, 18843227, 324834917, 15742946, 2163177444, 329865729, 123483569, 62733454, 855593120, 273813321, 18301602, 160589263, 493121864, 15614725, 87792156, 80938488, 188632613, 204127602, 224182352, 275675429, 322653723, 333500366, 360645886, 347466521, 64689798, 873141, 4875721, 15478750, 15662761, 20003350, 19676647, 20387595, 21563402, 24561336, 102932090, 104274999, 117602839, 194359565, 248765957, 294224506, 321646852, 368292391, 130305390, 150940204, 1639748756, 1282050768, 371193896, 267371257, 54311364, 1887854366, 95982652, 318426183, 88014855, 103139471, 23144045, 46174000, 403676245, 594666501, 95488935, 25732408, 626111072, 234402376, 22860921, 494010838, 18587457, 91180720, 4207961, 15446531, 314563166, 145380533, 47707475, 298123685, 12579732, 58978275, 20890385, 16393860, 46501372, 69393590, 83374478, 24760864, 18316818, 88215673, 157931852, 30530300, 468763363, 182839127, 36171004, 56566033, 30233007, 1468133850, 53796731, 17316722, 595854486, 37032310, 19608297, 228403233, 1849348536, 18644734, 273615113, 16715753, 22054220, 14688517, 16714347, 27029537, 354221701, 29956346, 95629476, 42716278, 1809251, 162748968, 26222868, 55323675, 2187906247, 74555974, 302022259, 143789061, 559509007, 20193926, 1575964944, 16841286, 15641532, 15300838, 1597324129, 18496432, 17086094, 483701025, 14999172, 19844126, 57714568, 2262142926, 883458102, 313159302, 19223022, 1122767850, 375895295, 26208862, 2283772130, 1301374621, 91826119, 13201312, 419764595, 469408036, 9320852, 309755530, 20411630, 496420759, 1354890464, 7102242, 2228734814, 86715527, 596687292, 357760567, 1723563360, 223608893, 85644875, 27911608, 1460016181, 48844884, 78953563, 25065495, 16001409, 156375999, 16034244, 562164937, 360442117, 156466613, 24651708, 39759481, 575675721, 93620724, 167066499, 49753604, 321029318, 82631496, 1880454828, 2275298702, 300972590, 19273804, 27810354, 1416355640, 86650732, 250455054, 111456333, 47345734, 10990, 19909828, 185594976, 2274778854, 483126812, 17684473, 427397243, 22270118, 113062227, 177583181, 7510172, 15369355, 17311077, 18264824, 27688964, 475987826, 17645400, 21250425, 53429839, 61842240, 48377323, 21722109, 1615447254, 631657132, 19790241, 1604444052, 15103460, 20652901, 13774902, 12094902, 33031861, 1964891982, 31100329, 16073416, 25115550, 142896252, 109257354, 41591401, 7215612, 1586501, 12302892, 55630037, 67716195, 22367858, 29127028, 192589318, 12510442, 7482, 8833012, 2671, 11613712, 35515414, 31005149, 460371116, 71028123, 125118607, 31128730, 388743786, 989, 217900600, 280716675, 743874438, 30324031, 30750869, 451128139, 18121069, 178975033, 12526142, 21985202, 1094163222, 1918228742, 34175976, 47285504, 256979481, 39077431, 2160596971, 60615841, 5272571, 306834250, 10836092, 225301621, 117640526, 14632294, 48800583, 34284490, 17171111, 53978909, 56461780, 10753312, 17385903, 339754094, 19754498, 45743403, 5814192, 1124861, 7865282, 212463932, 245095160, 12534, 11133442, 76373, 28381177, 27613650, 564141120, 429057282, 954012890, 118952409, 131497030, 22496608, 16386970, 23910646, 123299344, 15142050, 18271124, 254999763, 1408457989, 48361925, 101878960, 17079526, 28523687, 20731596, 314661596, 254660986, 213956450, 1598979864, 121707270, 824157, 549962062, 1022147078, 21525601, 18270831, 1058233296, 18466714, 403087766, 12244082, 2228674112, 9879372, 20134672, 2139211, 495309159, 33561428, 434825627, 95411363, 309929507, 456865788, 742747086, 185043343, 366631688, 47064286, 11175742, 8376882, 342130924, 16110819, 811377, 1529928896, 243377639, 963723824, 83237493, 1451878254, 234418976, 52850138, 1144882621, 237548529, 57111966, 10642532, 19658826, 1604023434, 1393155566, 1647996986, 97416190, 487118986, 27727639, 45972160, 287816744, 1463789270, 2228647020, 42466456, 1467609360, 15443743, 596904346, 322658299, 27778117, 1295001, 15174406, 23370996, 14120729, 235700566, 87374085, 15526789, 136357511, 6323872, 75897022, 63258372, 14120215, 9507342, 993249055, 232520849, 15428397, 5051271, 907198734, 19358435, 860334187, 118082516, 91378530, 221452291, 295713773, 148868647, 8842842, 26518374, 816405054, 1263288692, 14073093, 59019225, 14136335, 16207462, 1578141, 168531961, 144186376, 1641384510, 749520146, 101964362, 1167699625, 701732472, 275686563, 76310905, 293372650, 389901694, 105829953, 211917765, 18728633, 116734678, 202756449, 7389732, 50104358, 509381461, 490991627, 67612556, 15138104, 9696182, 210814143, 104201057, 24134103, 15065434, 19014189, 119667909, 258198244, 701700079, 235822929, 172851165, 15908429, 547860279, 15812461, 1225257002, 727472528, 341251022, 26048553, 472220354, 373598135, 196566583, 904200264, 134525908, 18839785, 12819112, 360285166, 36323148, 15740362, 18689000, 27596259, 289588260, 40638594, 18164272, 1115670186, 237945778, 2154419157, 889974050, 2158603635, 162427574, 429253192, 207644722, 1464125821, 13533782, 381565112, 108547794, 20629966, 18465455, 38418472, 17161562, 180619610, 136682570, 513426047, 306854368, 273940910, 18250813, 632873524, 29999829, 574862909, 327024618, 625957916, 1079355888, 322658873, 14066920, 612577026, 310297935, 378643551, 1010645653, 15537064, 778820143, 70283241, 1240142522, 121869155, 1027736432, 1287359551, 80885440, 225442825, 1098985442, 466096296, 724416918, 20849273, 2726611, 83424009, 1419099463, 322122983, 91666825, 318709067, 609043536, 2179078237, 84944278, 121641469, 18584841, 19042220, 852123008, 127727270, 253114974, 910793808, 27740227, 84100924, 240830856, 1860428197, 93714983, 92306628, 6374602, 89264343, 42950930, 102423027, 35380758, 309553018, 111057129, 218503228, 15950086, 25408081, 58449246, 24252078, 33896484, 2205386796, 39912341, 148062893, 93011077, 1777681, 16115811, 7273892, 9546212, 50085432, 11759912, 164856599, 17316885, 15811202, 284234943, 201518147, 21232505, 36623, 16892321, 8732322, 2189503302, 70111948, 1214410454, 6036882, 29342640, 389658589, 45626053, 13893712, 449501607, 22991553, 195841657, 18369747, 209262555, 21515818, 23615682, 16608394, 384439469, 226976689, 16313140, 9851362, 16218527, 24941044, 472132412, 16340178, 31177357, 178641594, 2162288419, 37034483, 64439775, 176119964, 1247296152, 82594895, 1662687974, 1374411, 16197784, 8287602, 15931605, 301244366, 14062180, 149180925, 15514266, 22144278, 13492102, 169534465, 30000912, 274652076, 572609848, 87818409, 169021842, 1400238956, 20751811, 1877681767, 7313362, 140555541, 9677372, 117100903, 17296792, 20382472, 1246951472, 72103163, 148517828, 3416421, 19175209, 14885620, 1408384448, 16641462, 1227932144, 33874126, 28222719, 23739721, 16076032, 14834340, 749963, 1642801009, 109062332, 550478944, 86550180, 14886344, 13028322, 62951951, 5953552, 80661799, 1485951, 20252410, 38483313, 21813582, 227102437, 550165697, 610076827, 43194865, 226907218, 15163466, 54272289, 1667834671, 29097819, 288935074, 75562656, 67093183, 280868082, 17701238, 15040384, 46119836, 185768634, 39961555, 482133423, 22322194, 23962323, 47968457, 33235529, 1000010898, 440565290, 1485433387, 25081451, 17773720, 15143755, 48804449, 176461575, 469612967, 47653644, 17919393, 28008289, 16228326, 14111769, 14296273, 86598343, 95695246, 2165843252, 534222221, 14755492, 20974456, 14412844, 14588121, 979771916, 97618796, 1860765181, 77907173, 47172467, 14297954, 546717616, 1675070168, 22977061, 526634228, 198494684, 960709321, 422936661, 43092107, 18566095, 20164296, 78786944, 14313489, 47902921, 6347872, 57141571, 196883764, 786764, 18660641, 259911231, 6039302, 15334380, 203343685, 32391821, 522593098, 207812652, 399535666, 225147537, 42180290, 111127902, 17026589, 20946458, 33773592, 25807291, 299966548, 2171400301, 863189960, 176468814, 22193361, 35773039, 37723353, 176603549, 22140082, 16435365, 15892011, 12183532, 19213877, 561740267, 23462787, 14106829, 14515835, 19325156, 2166704808, 48075643, 103865085, 19562228, 160486066, 19906615, 7030722, 97732452, 972651, 263923033, 897811, 22075295, 19956827, 38031983, 15667802, 2163009578, 15234886, 7276862, 33602654, 11178902, 40923595, 56993835, 20861943, 154404805, 29240040, 36384443, 30081493, 1184354442, 443944804, 1666038950, 604922608, 17183370, 45762945, 283198095, 16860092, 243284052, 308245641, 971147274, 19534873, 1880725393, 362642209, 243236419, 104884371, 119714092, 23782253, 20790033, 101841773, 22808434, 19815609, 450946343, 308258036, 907382738, 14873117, 16387212, 47678555, 131226723, 266054237, 24496544, 55078954, 10926872, 23124458, 96644479, 13493302, 123231225, 158495061, 1009878901, 31953365, 380153789, 281878733, 97883743, 535993853, 14844076, 28350888, 107175080, 82447525, 14079041, 40705991, 60840767, 1705817688, 771797250, 19968983, 434957751, 90290461, 293303534, 21918310, 32396502, 1947301, 16955991, 16491683, 921878857, 15164565, 94214332, 2992751, 676033, 17369005, 84460442, 1582853809, 547079100, 34739408, 135890983, 59557368, 141057092, 239996599, 610994398, 16272052, 21770050, 387234867, 23034607, 80937844, 40816246, 35236603, 239568469, 37486660, 14323791, 14116034, 182086979, 393465677, 572619533, 47856457, 32584728, 95151374, 76183, 24575229, 19766166, 57263671, 258684352, 380648579, 14657745, 24095957, 102322678, 15078406, 152628803, 15291489, 408627912, 1579596458, 44309422, 59565766, 38859736, 68044757, 43274511, 100748297, 8117362, 245208137, 78271006, 8805142, 23054053, 48957003, 293063175, 91272704, 866613794, 134758540, 1954179860, 21565678, 15269964, 14440999, 56449023, 73043514, 118975084, 16977059, 117396160, 198916706, 331136088, 79498684, 975765924, 344504956, 105998402, 76134964, 438152067, 77677426, 21919837, 19027273, 548116457, 62356591, 1945505580, 146469194, 499236335, 183177218, 1114865460, 329628561, 1157111888, 216094714, 1349588593, 1111404056, 1299995892, 114573522, 110692399, 297920799, 371795336, 85760252, 105400144, 214097804, 1616360412, 1605865171, 24939473, 17396170, 917105330, 117027371, 59472131, 1336611008, 610232748, 228174088, 1911787543, 213831149, 209754653, 16168804, 18895336, 20619143, 61384123, 18283526, 180996411, 156989464, 247104242, 696053, 3369501, 25721557, 21152157, 385706946, 42313640, 613495552, 200553940, 1341233137, 764332561, 1028643932, 1113541, 11092842, 54270424, 81965017, 393798581, 280159870, 17549096, 300290452, 1627535185, 220219500, 255542457, 1213574630, 870283597, 1117043418, 30528307, 66198455, 960920364, 11170072, 326184086, 154016912, 1889568127, 48863721, 483302252, 15687090, 1002513128, 18507505, 24253723, 64474365, 226595853, 17239105, 18631445, 55355654, 115702663, 360282270, 1728882062, 15464697, 96015193, 470847338, 15300187, 36753, 1446255144, 191700412, 383854361, 252161971, 1173231918, 339722887, 363005534, 15170984, 146884709, 17442320, 24164156, 617613927, 1273074444, 106384372, 246377868, 14804589, 112627753, 4847281, 13069712, 83910272, 1127009540, 88494621, 818679260, 1293475052, 33211889, 822029557, 21952517, 478826292, 18174747, 77438776, 60928769, 56681826, 51037540, 84123196, 14998416, 1397615262, 33732691, 33546635, 1904656634, 128900117, 49102743, 311568175, 102087933, 34944596, 48755549, 426112230, 61903300, 1491382866, 488743376, 214641138, 260371201, 1673511787, 2553151, 133880286, 299223576, 360047784, 96694146, 16463078, 1280792054, 16253060, 18042484, 228223882, 16353245, 21866842, 21942241, 19962224, 720364819, 16349800, 114670081, 344288321, 1904781277, 40556633, 30435298, 16463237, 18080108, 706529336, 14165865, 199072293, 348457097, 80867152, 21642935, 18171927, 465129155, 151670855, 50443212, 1364098368, 1481408358, 16869577, 589748944, 221269569, 17758861, 26099914, 34963979, 52051571, 528987149, 24205972, 456478383, 1372641625, 3927611, 19002348, 1339835893, 618542623, 407136748, 74024358, 34714432, 16119090, 300428054, 56510427, 59304820, 16589148, 53777247, 27794232, 9670142, 1767741, 22824237, 111712308, 54704874, 18686907, 87699418, 30942337, 264124770, 495650403, 540734980, 128172483, 152958374, 31901869, 20890584, 1240317522, 20257132, 10304172, 8668862, 17918561, 42226885, 117882437, 17793878, 14123908, 128288109, 16105705, 81644488, 244276540, 37595712, 19116515, 13404152, 39279393, 277011035, 276567401, 117576644, 634243972, 622439778, 38002103, 40860228, 578650970, 375858149, 19435213, 421574883, 101365366, 26957009, 1429751, 186648261, 18438933, 344039566, 187080626, 7764332, 1020058453, 41814169, 1330457336, 156889951, 18161668, 451256188, 43922300, 23030211, 14565991, 39030654, 59936143, 43289988, 210319337, 73190286, 25823816, 44078873, 40303327, 15655247, 48706493, 2518321, 212454830, 14422439, 137223549, 141545751, 21493664, 4310571, 149126628, 18834071, 654143, 17991281, 166694329, 394635011, 15115726, 911455968, 16119772, 14168524, 190645655, 1558669614, 41663308, 1868400020, 188844898, 15237501, 87502184, 18464437, 77304134, 7416752, 180667856, 220906392, 578411542, 440413534, 11696512, 195840784, 1499013618, 18659273, 14552083, 16666502, 20829376, 14471007, 20178419, 136109646, 364481519, 112816663, 877305698, 2400631, 227381114, 16399949, 135198678, 266979999, 52734226, 18819380, 134855087, 38244174, 57411021, 42889683, 491851440, 1289593933, 1201661238, 17673012, 180200031, 18505952, 78564613, 143499407, 24887083, 14504258, 449678218, 59591909, 416204683, 774393817, 321025003, 175426542, 55308417, 24209685, 375676119, 602774686, 1849889239, 681473, 18155543, 22836988, 42708195, 14982625, 61014911, 59268383, 594617548, 32547753, 813477602, 14822021, 15411858, 944467345, 15613664, 62316989, 9411482, 21689161, 18991464, 17467341, 7150532, 14591033, 142411092, 107842978, 15169889, 33629924, 123289066, 23227841, 32686298, 24870244, 616485017, 102420827, 126664186, 19402238, 289485255, 252787550, 50263701, 128615552, 50005787, 16091351, 13567742, 16033525, 24815411, 125184430, 263830118, 112245265, 29061341, 1401100357, 14085704, 181912222, 66130611, 18245041, 1344951, 90035806, 17486677, 132297131, 185855695, 25029672, 126302054, 185680080, 870834091, 29309901, 16041234, 47821033, 1517267136, 284883861, 18478188, 65155179, 18919088, 1447394395, 189998613, 26607725, 109043700, 34227622, 78635037, 331817345, 20153725, 331816614, 8067002, 83996344, 36444204, 17813980, 39451367, 17285007, 21687414, 228077059, 14742549, 1430882924, 838179889, 62850214, 207526260, 13766492, 1571270053, 838464523, 1249676186, 63815293, 300010853, 16985214, 41588397, 1377937416, 1178700896, 870325686, 107127119, 169559219, 889180130, 1131118056, 202890266, 152696429, 142614009, 109583234, 47371913, 27557391, 21706413, 18487054, 808561, 137096072, 112695981, 1117121358, 345251750, 1645605294, 298597381, 70736359, 7994972, 490495458, 59924621, 279614869, 54399803, 290593825, 430058230, 637109692, 188266169, 572225652, 594280020, 128292609, 846828564, 1371909548, 9534522, 1467703272, 176300862, 417631398, 15585039, 221041703, 14761795, 268357486, 27681019, 816653, 15952509, 18781150, 97523297, 195419597, 47539748, 92183278, 32540650, 382417301, 43092459, 1027394472, 27610987, 18230846, 56487200, 12263542, 868571394, 29854529, 711932869, 573918122, 211154075, 328838071, 925931544, 1058864162, 1311811896, 70574234, 15828276, 114231889, 75742264, 923883858, 539448537, 183898082, 26613480, 1530850933, 14617499, 100610221, 94091863, 92241457, 601170594, 253998571, 955698157, 152954171, 280559948, 133751142, 8241232, 347698644, 89735094, 634812478, 69097128, 1018872102, 777308683, 203253392, 737826008, 18351581, 135488533, 22530207, 108045600, 20306034, 96468445, 8108972, 297152824, 356955821, 214402290, 123006717, 184513694, 546947988, 83740333, 1166663852, 18365496, 99919360, 287932099, 291897182, 12726792, 148292070, 55374753, 1123693536, 547300420, 26566469, 397455346, 15922651, 37104266, 38245723, 14483124, 16600687, 642833, 1367176327, 24004475, 16319594, 20095865, 39697444, 601295358, 1305156254, 1455320918, 32868144, 28006501, 15903378, 16304004, 631174177, 1110262956, 25454556, 1201714944, 1486296062, 293278876, 18453284, 186154646, 321202808, 407046019, 142669299, 65707359, 65647594, 1408488632, 88318895, 291510996, 46731762, 972154164, 15662133, 479670287, 43151136, 34024882, 480153399, 1337535175, 20729031, 20279370, 185809250, 602626619, 40627145, 369875107, 12807482, 353340280, 1308830929, 11232732, 29472803, 9210392, 790080344, 22222965, 204416862, 13298072, 377654770, 44703654, 22921528, 57537847, 24817859, 6758002, 83643610, 65491605, 23432012, 147305691, 14304710, 414379328, 15220336, 786939553, 18109873, 558465496, 196457689, 23949947, 1216619071, 226471593, 391602037, 55034379, 6409412, 26348016, 173240772, 134309619, 248293692, 19873593, 19401550, 40356855, 15254839, 30422794, 349540312, 866370582, 562304281, 15646875, 283313600, 20454896, 180088363, 349189238, 13474412, 457603095, 1050991014, 616879823, 83874770, 105203181, 16434221, 233604842, 6830032, 16564282, 814338416, 18019555, 218951054, 235130370, 23290408, 586893303, 237774782, 726951074, 873927577, 534649806, 47986971, 116880409, 21077860, 18008484, 489690950, 103493067, 16583845, 25407830, 281889829, 181195091, 15964196, 308429376, 106776691, 18020985, 21251300, 18646159, 13566872, 288388335, 51241574, 1170072032, 112526560, 14446054, 39005137, 15099133, 18352378, 14276189, 22028564, 22845770, 74635290, 457171434, 130268681, 126407166, 39538956, 203114508, 46699613, 362860027, 26908178, 165568433, 17934812, 164397041, 27862718, 84958161, 130033510, 48219046, 326255267, 43464013, 39796874, 39868135, 404532969, 47011573, 866829151, 1123401283, 14254183, 538237177, 362278535, 157684364, 24459544, 78783, 69354861, 135405245, 15869453, 14484418, 380532380, 25919183, 291810580, 492752830, 34311766, 60498741, 47697756, 40711814, 22213141, 112475924, 14308508, 40924082, 435228319, 50371114, 1158638582, 18291099, 386146285, 840238500, 17162991, 52814770, 37269308, 234141596, 226631680, 349785521, 349289363, 177569765, 61187080, 19195460, 325100194, 417201918, 14069365, 15189391, 487198119, 16477771, 1501471, 21633721, 24387882, 17493949, 14083763, 38936142, 1119295699, 189601534, 44196397, 57295940, 15102849, 17765336, 20770348, 147168151, 22018258, 14560460, 8634412, 20444181, 15066760, 13145012, 13395932, 1093077343, 20536103, 125767077, 2621591, 48569578, 18228075, 15504885, 1120626926, 277198961, 7593662, 39832918, 14630696, 792780432, 14255407, 22137832, 1099234603, 97757027, 91270013, 15496147, 329557752, 241368542, 116475919, 16868686, 224180296, 551481276, 944484146, 16744509, 599298339, 282728979, 1115301194, 220135900, 11030882, 33522604, 34113439, 182454948, 17623957, 293984358, 1807011, 111400999, 70449178, 364728802, 18691328, 25880588, 17136568, 622628412, 288994624, 14963760, 14733744, 1077233198, 208546826, 387383722, 144703320, 58740930, 103036462, 516684914, 102115921, 39564433, 20010925, 15919988, 47635720, 4952941, 285908150, 28517623, 258896387, 25484126, 119464925, 45552104, 249385348, 192921396, 1069129315, 186154648, 810709142, 16752675, 223890696, 21925180, 16675569, 28368825, 21012092, 2811851, 726628538, 601981724, 823098086, 588387056, 199798906, 821401298, 21301014, 16194566, 67390766, 26336221, 54583264, 22862623, 30785007, 143964151, 17288045, 357031575, 160010755, 21844854, 59159771, 19605981, 87113558, 989633635, 717034813, 14096763, 13524182, 9532402, 236026761, 24795000, 23342802, 19306810, 161044052, 30893732, 916735110, 65783818, 16460682, 22000957, 15119529, 350415705, 120868481, 221167035, 114782468, 20193857, 27582945, 23629255, 709871912, 273012474, 424595791, 44438256, 375971107, 366193785, 20512928, 15838036, 109099014, 110639889, 569839623, 465070708, 19532804, 192231853, 338828458, 22049097, 399679253, 356834376, 212071519, 907209564, 48363858, 703388616, 50338601, 60694237, 17502416, 14179819, 178770014, 20714592, 14738561, 136998045, 118747545, 1305941, 16012783, 19655830, 142843687, 925999250, 376005446, 370751904, 353465310, 123425024, 170128697, 816325328, 11620892, 20182089, 31127446, 14529929, 32521584, 21111896, 16157855, 131144091, 28181835, 15677585, 120180668, 46817943, 26860506, 22772264, 122396513, 21215620, 103949895, 80638910, 16359843, 1025521, 45399148, 369505837, 20196398, 297532865, 6112442, 46557945, 57770539, 278776049, 26754354, 55394190, 595515713, 257553324, 16125224, 123327472, 17908972, 279162316, 138020182, 120233868, 21415998, 784122984, 35220556, 442904755, 118273546, 14412533, 18909534, 19107878, 95740980, 18172905, 203192992, 19746543, 259565941, 5779782, 527743455, 24810179, 190450243, 380642128, 32448722, 529154224, 29764993, 137340182, 109524559, 15865717, 27302376, 18291873, 322245908, 381104554, 215161294, 23153246, 544638548, 19834403, 116821890, 26858764, 103115805, 18739693, 23486744, 817407956, 13148382, 928582106, 473620611, 877003172, 57356719, 93475451, 9720542, 20262083, 371994104, 353480777, 74820061, 75944553, 199498184, 39185716, 67144836, 1489691, 133315811, 24081172, 109484552, 15187243, 16340092, 19935420, 22017317, 64141011, 21693060, 22770193, 400196836, 5174191, 123626700, 15990298, 18931517, 632301127, 145773567, 205839574, 81896993, 90545097, 16566825, 19550262, 72445766, 16197345, 377027721, 104263696, 293735479, 10752192, 15685721, 7848802]} \ No newline at end of file diff --git a/testdata/get_friends_0.json b/testdata/get_friends_0.json index 954a4fd4..26ffbe48 100644 --- a/testdata/get_friends_0.json +++ b/testdata/get_friends_0.json @@ -1,26701 +1 @@ -{ - "next_cursor": 1494734862149901956, - "users": [ - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "18275645", - "following": false, - "friends_count": 118, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "danluu.com", - "url": "http://t.co/yAGxZQzkJc", - "expanded_url": "http://danluu.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2884, - "location": "Seattle, WA", - "screen_name": "danluu", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 70, - "name": "Dan Luu", - "profile_use_background_image": true, - "description": "Hardware/software co-design @Microsoft. Previously @google, @recursecenter, and centaur.", - "url": "http://t.co/yAGxZQzkJc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Dec 21 00:21:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", - "favourites_count": 624, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "danluu", - "in_reply_to_user_id": 18275645, - "in_reply_to_status_id_str": "685537630235136000", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685539148292214784", - "id": 685539148292214784, - "text": "@twitter Meanwhile, automated bots have been tweeting every HN frontpage link for 3 years without getting flagged.", - "in_reply_to_user_id_str": "18275645", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "twitter", - "id_str": "783214", - "id": 783214, - "indices": [ - 0, - 8 - ], - "name": "Twitter" - } - ] - }, - "created_at": "Fri Jan 08 19:10:44 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685537630235136000, - "lang": "en" - }, - "default_profile_image": false, - "id": 18275645, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 685, - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "16246973", - "following": false, - "friends_count": 142, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.scottlowe.org", - "url": "http://t.co/EMI294FM8u", - "expanded_url": "http://blog.scottlowe.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 22381, - "location": "Denver, CO, USA", - "screen_name": "scott_lowe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 989, - "name": "Scott S. Lowe", - "profile_use_background_image": true, - "description": "An IT pro specializing in virtualization, networking, open source, & cloud computing; currently working for a leading virtualization vendor (tweets are mine)", - "url": "http://t.co/EMI294FM8u", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Sep 11 20:17:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", - "favourites_count": 0, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597324853161984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "networkworld.com/article/301666\u2026", - "url": "https://t.co/Y5HBdGgEor", - "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", - "indices": [ - 99, - 122 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:01:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597324853161984, - "text": "With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgEor", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597548321505280", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "networkworld.com/article/301666\u2026", - "url": "https://t.co/Y5HBdGgEor", - "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", - "indices": [ - 118, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "martin_casado", - "id_str": "16591288", - "id": 16591288, - "indices": [ - 3, - 17 - ], - "name": "martin_casado" - } - ] - }, - "created_at": "Fri Jan 08 23:02:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597548321505280, - "text": "RT @martin_casado: With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgE\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 16246973, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 34402, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6981492", - "following": false, - "friends_count": 178, - "entities": { - "description": { - "urls": [ - { - "display_url": "Postlight.com", - "url": "http://t.co/AxJX6dV8Ig", - "expanded_url": "http://Postlight.com", - "indices": [ - 21, - 43 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ftrain.com", - "url": "http://t.co/6afN702mgr", - "expanded_url": "http://ftrain.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 32171, - "location": "Brooklyn, New York, USA", - "screen_name": "ftrain", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1453, - "name": "Paul Ford", - "profile_use_background_image": true, - "description": "(1974\u2013 ) Co-founder, http://t.co/AxJX6dV8Ig. Writing a book about web pages for FSG. Contact ford@ftrain.com if you spot a typo.", - "url": "http://t.co/6afN702mgr", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Jun 21 01:11:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", - "favourites_count": 20008, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.026675, - 40.683935 - ], - [ - -73.910408, - 40.683935 - ], - [ - -73.910408, - 40.877483 - ], - [ - -74.026675, - 40.877483 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Manhattan, NY", - "id": "01a9a39529b27f36", - "name": "Manhattan" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "682597070751035392", - "id": 682597070751035392, - "text": "2016 resolution: Get off Twitter, for all but writing-promotional purposes, until I lose 32 pounds, one for every thousand followers.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 16:19:58 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 58, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 6981492, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", - "statuses_count": 29820, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6981492/1362958335", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2266469498", - "following": false, - "friends_count": 344, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.samwhited.com", - "url": "https://t.co/FVESgX6vVp", - "expanded_url": "https://blog.samwhited.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "9ABB59", - "geo_enabled": true, - "followers_count": 97, - "location": "Austin, TX", - "screen_name": "SamWhited", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Sam Whited", - "profile_use_background_image": true, - "description": "Sometimes I tweet things, but mostly I don't.", - "url": "https://t.co/FVESgX6vVp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Sat Dec 28 21:36:45 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", - "favourites_count": 68, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683367861557956608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/linode/status/\u2026", - "url": "https://t.co/ChRPqTJULN", - "expanded_url": "https://twitter.com/linode/status/683366718798954496", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 02 19:22:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683367861557956608, - "text": "I have not been able to maintain a persistant TCP connection with my Linodes in Days\u2026 https://t.co/ChRPqTJULN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2266469498, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", - "statuses_count": 708, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2266469498/1388268061", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6815762", - "following": false, - "friends_count": 825, - "entities": { - "description": { - "urls": [ - { - "display_url": "lasp-lang.org", - "url": "https://t.co/SvIEg6a8n1", - "expanded_url": "http://lasp-lang.org", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "christophermeiklejohn.com", - "url": "https://t.co/OteoESj7H9", - "expanded_url": "http://christophermeiklejohn.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "4E5A5E", - "geo_enabled": true, - "followers_count": 3106, - "location": "San Francisco, CA", - "screen_name": "cmeik", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 156, - "name": "Christophe le fou", - "profile_use_background_image": true, - "description": "building programming languages for distributed computation; https://t.co/SvIEg6a8n1", - "url": "https://t.co/OteoESj7H9", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Jun 14 16:35:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", - "favourites_count": 38338, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685581928620253186", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WOdRf", - "url": "https://t.co/PzVfFbuaOA", - "expanded_url": "http://ow.ly/WOdRf", - "indices": [ - 112, - 135 - ] - } - ], - "hashtags": [ - { - "indices": [ - 84, - 98 - ], - "text": "ErlangFactory" - }, - { - "indices": [ - 99, - 102 - ], - "text": "SF" - } - ], - "user_mentions": [ - { - "screen_name": "cmeik", - "id_str": "6815762", - "id": 6815762, - "indices": [ - 74, - 80 - ], - "name": "Christophe le fou" - } - ] - }, - "created_at": "Fri Jan 08 22:00:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685581928620253186, - "text": "'Lasp: A Language For Distributed, Eventually Consistent Computations' by @cmeik at #ErlangFactory #SF Bay Area https://t.co/PzVfFbuaOA", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685582620839694336", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WOdRf", - "url": "https://t.co/PzVfFbuaOA", - "expanded_url": "http://ow.ly/WOdRf", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 103, - 117 - ], - "text": "ErlangFactory" - }, - { - "indices": [ - 118, - 121 - ], - "text": "SF" - } - ], - "user_mentions": [ - { - "screen_name": "erlangfactory", - "id_str": "45553317", - "id": 45553317, - "indices": [ - 3, - 17 - ], - "name": "Erlang Factory" - }, - { - "screen_name": "cmeik", - "id_str": "6815762", - "id": 6815762, - "indices": [ - 93, - 99 - ], - "name": "Christophe le fou" - } - ] - }, - "created_at": "Fri Jan 08 22:03:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685582620839694336, - "text": "RT @erlangfactory: 'Lasp: A Language For Distributed, Eventually Consistent Computations' by @cmeik at #ErlangFactory #SF Bay Area https://\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 6815762, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 49785, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6815762/1420224089", - "is_translator": false - }, - { - "time_zone": "Stockholm", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "17616622", - "following": false, - "friends_count": 332, - "entities": { - "description": { - "urls": [ - { - "display_url": "locust.io", - "url": "http://t.co/TQXEGLwCis", - "expanded_url": "http://locust.io", - "indices": [ - 78, - 100 - ] - }, - { - "display_url": "heyevent.com", - "url": "http://t.co/0DMoIMMGYB", - "expanded_url": "http://heyevent.com", - "indices": [ - 102, - 124 - ] - }, - { - "display_url": "boutiquehotel.me", - "url": "http://t.co/UVjwCLqJWP", - "expanded_url": "http://boutiquehotel.me", - "indices": [ - 137, - 159 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "heyman.info", - "url": "http://t.co/OJuVdsnIXQ", - "expanded_url": "http://heyman.info", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1063, - "location": "Sweden", - "screen_name": "jonatanheyman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Jonatan Heyman", - "profile_use_background_image": true, - "description": "I'm a developer and I Iike to build stuff. I love Python. Author of @locustio http://t.co/TQXEGLwCis, http://t.co/0DMoIMMGYB, @ronigame, http://t.co/UVjwCLqJWP", - "url": "http://t.co/OJuVdsnIXQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Nov 25 10:15:22 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", - "favourites_count": 112, - "status": { - "retweet_count": 23, - "retweeted_status": { - "retweet_count": 23, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685581797850279937", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:00:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685581797850279937, - "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 27, - "contributors": null, - "source": "Mobile Web (M5)" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685587786120970241", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tomdale", - "id_str": "668863", - "id": 668863, - "indices": [ - 3, - 11 - ], - "name": "Tom Dale" - } - ] - }, - "created_at": "Fri Jan 08 22:24:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685587786120970241, - "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 17616622, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 996, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17616622/1397123585", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "290900886", - "following": false, - "friends_count": 28, - "entities": { - "description": { - "urls": [ - { - "display_url": "hashicorp.com/atlas", - "url": "https://t.co/3rYtQZlVFj", - "expanded_url": "https://hashicorp.com/atlas", - "indices": [ - 75, - 98 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "hashicorp.com", - "url": "https://t.co/ny0Vs9IMpz", - "expanded_url": "https://hashicorp.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "48B4FB", - "geo_enabled": false, - "followers_count": 10678, - "location": "San Francisco, CA", - "screen_name": "hashicorp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 326, - "name": "HashiCorp", - "profile_use_background_image": false, - "description": "We build Vagrant, Packer, Serf, Consul, Terraform, Vault, Nomad, Otto, and https://t.co/3rYtQZlVFj. We love developers, ops, and are obsessed with automation.", - "url": "https://t.co/ny0Vs9IMpz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Sun May 01 04:14:30 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", - "favourites_count": 23, - "status": { - "retweet_count": 12, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685602742769876992", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/hashicorp/terr\u2026", - "url": "https://t.co/QjiHQfLdQF", - "expanded_url": "https://github.com/hashicorp/terraform/blob/v0.6.9/CHANGELOG.md#069-january-8-2016", - "indices": [ - 90, - 113 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:23:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685602742769876992, - "text": "Terraform 0.6.9 has been released! 5 new providers and a long list of features and fixes: https://t.co/QjiHQfLdQF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 12, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 290900886, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 715, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1229010770", - "following": false, - "friends_count": 15, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kimh.github.io", - "url": "http://t.co/rOoCzBI0Uk", - "expanded_url": "http://kimh.github.io/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 24, - "location": "", - "screen_name": "kimhirokuni", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Kim, Hirokuni", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/rOoCzBI0Uk", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Mar 01 04:35:59 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", - "favourites_count": 4, - "status": { - "retweet_count": 14, - "retweeted_status": { - "retweet_count": 14, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684163973390974976", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 169, - "resize": "fit" - }, - "large": { - "w": 799, - "h": 398, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 298, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "type": "photo", - "indices": [ - 95, - 118 - ], - "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "display_url": "pic.twitter.com/VEpSVWgnhn", - "id_str": "684163973206421509", - "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", - "id": 684163973206421509, - "url": "https://t.co/VEpSVWgnhn" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "circle.ci/1YyS1W6", - "url": "https://t.co/Mil1rt44Ve", - "expanded_url": "http://circle.ci/1YyS1W6", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 16, - 25 - ], - "name": "CircleCI" - } - ] - }, - "created_at": "Tue Jan 05 00:06:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684163973390974976, - "text": "We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684249491948490752", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 169, - "resize": "fit" - }, - "large": { - "w": 799, - "h": 398, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 298, - "resize": "fit" - } - }, - "source_status_id_str": "684163973390974976", - "url": "https://t.co/VEpSVWgnhn", - "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "source_user_id_str": "381223731", - "id_str": "684163973206421509", - "id": 684163973206421509, - "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "type": "photo", - "indices": [ - 109, - 132 - ], - "source_status_id": 684163973390974976, - "source_user_id": 381223731, - "display_url": "pic.twitter.com/VEpSVWgnhn", - "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "circle.ci/1YyS1W6", - "url": "https://t.co/Mil1rt44Ve", - "expanded_url": "http://circle.ci/1YyS1W6", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 3, - 12 - ], - "name": "CircleCI" - }, - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 30, - 39 - ], - "name": "CircleCI" - } - ] - }, - "created_at": "Tue Jan 05 05:46:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684249491948490752, - "text": "RT @circleci: We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1229010770, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 56, - "is_translator": false - }, - { - "time_zone": "Madrid", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "311029627", - "following": false, - "friends_count": 173, - "entities": { - "description": { - "urls": [ - { - "display_url": "keybase.io/alexey_ch", - "url": "http://t.co/3wRCyfslLs", - "expanded_url": "http://keybase.io/alexey_ch", - "indices": [ - 56, - 78 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "alexey.ch", - "url": "http://t.co/sGSgRzEPYs", - "expanded_url": "http://alexey.ch", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 230, - "location": "Sant Cugat del Vall\u00e8s", - "screen_name": "alexey_am_i", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Alexey", - "profile_use_background_image": true, - "description": "bites and bytes / chief bash script officer @circleci / http://t.co/3wRCyfslLs", - "url": "http://t.co/sGSgRzEPYs", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Sat Jun 04 19:35:45 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", - "favourites_count": 2099, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "KrauseFx", - "in_reply_to_user_id": 50055757, - "in_reply_to_status_id_str": "685505979270574080", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685506452614688768", - "id": 685506452614688768, - "text": "@KrauseFx Nice screenshot :D", - "in_reply_to_user_id_str": "50055757", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "KrauseFx", - "id_str": "50055757", - "id": 50055757, - "indices": [ - 0, - 9 - ], - "name": "Felix Krause" - } - ] - }, - "created_at": "Fri Jan 08 17:00:49 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685505979270574080, - "lang": "en" - }, - "default_profile_image": false, - "id": 311029627, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", - "statuses_count": 10759, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/311029627/1366924833", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "810781", - "following": false, - "friends_count": 370, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "unwiredcouch.com", - "url": "https://t.co/AlM3lgSG3F", - "expanded_url": "https://unwiredcouch.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0099CC", - "geo_enabled": false, - "followers_count": 1872, - "location": "probably Brooklyn or Freiburg", - "screen_name": "mrtazz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 103, - "name": "Daniel Schauenberg", - "profile_use_background_image": true, - "description": "Infrastructure Toolsmith at Etsy. A Cheap Trick and a Cheesy One-Liner. I own 100% of my opinions. Feminist.", - "url": "https://t.co/AlM3lgSG3F", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", - "profile_background_color": "FFF04D", - "created_at": "Sun Mar 04 21:17:02 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFF8AD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", - "favourites_count": 7995, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jmhodges", - "in_reply_to_user_id": 9267272, - "in_reply_to_status_id_str": "685561412450562048", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685565956836487168", - "id": 685565956836487168, - "text": "@jmhodges the important bit is to understand when and how and learn from it", - "in_reply_to_user_id_str": "9267272", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jmhodges", - "id_str": "9267272", - "id": 9267272, - "indices": [ - 0, - 9 - ], - "name": "Jeff Hodges" - } - ] - }, - "created_at": "Fri Jan 08 20:57:15 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685561412450562048, - "lang": "en" - }, - "default_profile_image": false, - "id": 810781, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "statuses_count": 17494, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/810781/1374119286", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "166282004", - "following": false, - "friends_count": 131, - "entities": { - "description": { - "urls": [ - { - "display_url": "scotthel.me/PGP", - "url": "http://t.co/gL8cUpGdUF", - "expanded_url": "http://scotthel.me/PGP", - "indices": [ - 137, - 159 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "scotthelme.co.uk", - "url": "https://t.co/amYoJQqVCA", - "expanded_url": "https://scotthelme.co.uk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "2971FF", - "geo_enabled": false, - "followers_count": 1585, - "location": "UK", - "screen_name": "Scott_Helme", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 94, - "name": "Scott Helme", - "profile_use_background_image": false, - "description": "Information Security Consultant, blogger, builder of things. Creator of @reporturi and @securityheaders. I want to secure the entire web http://t.co/gL8cUpGdUF", - "url": "https://t.co/amYoJQqVCA", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", - "profile_background_color": "F5F8FA", - "created_at": "Tue Jul 13 19:42:08 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", - "favourites_count": 488, - "status": { - "retweet_count": 130, - "retweeted_status": { - "retweet_count": 130, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684262306956443648", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "securityheaders.io", - "url": "https://t.co/tFn2HCB6YS", - "expanded_url": "https://securityheaders.io/", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 06:37:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684262306956443648, - "text": "SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 260, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685607128095154176", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "securityheaders.io", - "url": "https://t.co/tFn2HCB6YS", - "expanded_url": "https://securityheaders.io/", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "smashingmag", - "id_str": "15736190", - "id": 15736190, - "indices": [ - 3, - 15 - ], - "name": "Smashing Magazine" - } - ] - }, - "created_at": "Fri Jan 08 23:40:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685607128095154176, - "text": "RT @smashingmag: SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 166282004, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", - "statuses_count": 5651, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/166282004/1421676770", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13734442", - "following": false, - "friends_count": 700, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "entropystream.net", - "url": "http://t.co/jHZOamrEt4", - "expanded_url": "http://entropystream.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "193FFF", - "geo_enabled": false, - "followers_count": 907, - "location": "Seattle WA", - "screen_name": "blueben", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 73, - "name": "Ben Macguire", - "profile_use_background_image": false, - "description": "Ops Engineer, Music, RF, Puppies.", - "url": "http://t.co/jHZOamrEt4", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Feb 20 19:12:44 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", - "favourites_count": 497, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685121298100424704", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", - "type": "photo", - "indices": [ - 34, - 57 - ], - "media_url": "http://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", - "display_url": "pic.twitter.com/yJ5odOn9OQ", - "id_str": "685121290575806465", - "expanded_url": "http://twitter.com/blueben/status/685121298100424704/photo/1", - "id": 685121290575806465, - "url": "https://t.co/yJ5odOn9OQ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 15:30:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685121298100424704, - "text": "Slightly foggy in Salt Lake City. https://t.co/yJ5odOn9OQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 13734442, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 14940, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3237083798", - "following": false, - "friends_count": 2, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bgpstream.com", - "url": "https://t.co/gdCAgJZFwt", - "expanded_url": "https://bgpstream.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1378, - "location": "", - "screen_name": "bgpstream", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "bgpstream", - "profile_use_background_image": true, - "description": "BGPStream is a free resource for receiving alerts about BGP hijacks and large scale outages. Brought to you by @bgpmon", - "url": "https://t.co/gdCAgJZFwt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Jun 05 15:28:16 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", - "favourites_count": 4, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685604760662196224", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bgpstream.com/event/16414", - "url": "https://t.co/Fwvyew4hhY", - "expanded_url": "http://bgpstream.com/event/16414", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:31:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685604760662196224, - "text": "BGP,OT,52742,INTERNET,-,Outage affected 15 prefixes, https://t.co/Fwvyew4hhY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "BGPStream" - }, - "default_profile_image": false, - "id": 3237083798, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3555, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3237083798/1437676409", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "507922769", - "following": false, - "friends_count": 295, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "waterpigs.co.uk", - "url": "https://t.co/NTbafUKQZe", - "expanded_url": "https://waterpigs.co.uk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 331, - "location": "Reykjav\u00edk, Iceland", - "screen_name": "BarnabyWalters", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Barnaby Walters", - "profile_use_background_image": true, - "description": "Music/tech minded individual. Trained as a luthier, working on web surveys at V\u00edsar, Iceland. Building the #indieweb of the future. Hiking, climbing, gurdying.", - "url": "https://t.co/NTbafUKQZe", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Feb 28 21:07:29 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", - "favourites_count": 2198, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684845666649157632", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "waterpigs.co.uk/img/2016-01-06\u2026", - "url": "https://t.co/7wSqHpJZYS", - "expanded_url": "https://waterpigs.co.uk/img/2016-01-06-bubbles.gif", - "indices": [ - 36, - 59 - ] - }, - { - "display_url": "waterpigs.co.uk/notes/4f6MF3/", - "url": "https://t.co/5L2Znu5Ack", - "expanded_url": "https://waterpigs.co.uk/notes/4f6MF3/", - "indices": [ - 62, - 85 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 21:15:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684845666649157632, - "text": "A little preparation for tomorrow\u2026\n\nhttps://t.co/7wSqHpJZYS\n (https://t.co/5L2Znu5Ack)", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Waterpigs.co.uk" - }, - "default_profile_image": false, - "id": 507922769, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", - "statuses_count": 3559, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/507922769/1348091343", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "235193328", - "following": false, - "friends_count": 129, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "indiewebcamp.com", - "url": "http://t.co/Lhpx03ubrJ", - "expanded_url": "http://indiewebcamp.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 782, - "location": "Portland, Oregon", - "screen_name": "indiewebcamp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "IndieWebCamp", - "profile_use_background_image": true, - "description": "Rather than posting content on 3rd-party silos, we should all begin owning our data when we create it.", - "url": "http://t.co/Lhpx03ubrJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Jan 07 15:53:54 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", - "favourites_count": 1154, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685273812682719233", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "zeldman.com/2016/01/05/139\u2026", - "url": "https://t.co/kMiWh7ufuW", - "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", - "indices": [ - 104, - 127 - ] - } - ], - "hashtags": [ - { - "indices": [ - 128, - 137 - ], - "text": "indieweb" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 01:36:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685273812682719233, - "text": "\u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7ufuW #indieweb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685306865635336192", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "zeldman.com/2016/01/05/139\u2026", - "url": "https://t.co/kMiWh7ufuW", - "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", - "indices": [ - 120, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "indieweb" - } - ], - "user_mentions": [ - { - "screen_name": "kevinmarks", - "id_str": "57203", - "id": 57203, - "indices": [ - 3, - 14 - ], - "name": "Kevin Marks" - } - ] - }, - "created_at": "Fri Jan 08 03:47:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685306865635336192, - "text": "RT @kevinmarks: \u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 235193328, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 151, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1183041", - "following": false, - "friends_count": 335, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wilwheaton.net/2009/02/what-t\u2026", - "url": "http://t.co/UAYYOhbijM", - "expanded_url": "http://wilwheaton.net/2009/02/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "F6101E", - "geo_enabled": false, - "followers_count": 2966148, - "location": "Los Angeles", - "screen_name": "wilw", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 38874, - "name": "Wil Wheaton", - "profile_use_background_image": true, - "description": "Barrelslayer. Time Lord. Fake geek girl. On a good day I am charming as fuck.", - "url": "http://t.co/UAYYOhbijM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", - "profile_background_color": "022330", - "created_at": "Wed Mar 14 21:25:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", - "favourites_count": 445, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "scalzi", - "in_reply_to_user_id": 14202817, - "in_reply_to_status_id_str": "685587772208476160", - "retweet_count": 11, - "truncated": false, - "retweeted": false, - "id_str": "685589599108739072", - "id": 685589599108739072, - "text": "@scalzi Dear Texas: just fucking secede already, and let the rest of us live in the 21st century. Thanks - - W2", - "in_reply_to_user_id_str": "14202817", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "scalzi", - "id_str": "14202817", - "id": 14202817, - "indices": [ - 0, - 7 - ], - "name": "John Scalzi" - } - ] - }, - "created_at": "Fri Jan 08 22:31:12 +0000 2016", - "source": "Tweetings for Android", - "favorite_count": 91, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685587772208476160, - "lang": "en" - }, - "default_profile_image": false, - "id": 1183041, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", - "statuses_count": 60966, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183041/1368668860", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24184180", - "following": false, - "friends_count": 150, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "004A05", - "geo_enabled": true, - "followers_count": 283, - "location": "", - "screen_name": "xanderdumaine", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 31, - "name": "Xander Dumaine", - "profile_use_background_image": true, - "description": "still trying. sometimes I have Opinions\u2122 which are my own, and do not represent my employer. Retweets do not imply endorsement.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Mar 13 14:59:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", - "favourites_count": 1252, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 237534782, - "possibly_sensitive": false, - "id_str": "685584914973089792", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/necrosofty/sta\u2026", - "url": "https://t.co/9jl9UNHv0s", - "expanded_url": "https://twitter.com/necrosofty/status/685270713792466944", - "indices": [ - 13, - 36 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MattCheely", - "id_str": "237534782", - "id": 237534782, - "indices": [ - 0, - 11 - ], - "name": "Matt Cheely" - } - ] - }, - "created_at": "Fri Jan 08 22:12:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "237534782", - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0122292c5bc9ff29.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -78.881022, - 35.796927 - ], - [ - -78.786799, - 35.796927 - ], - [ - -78.786799, - 35.870756 - ], - [ - -78.881022, - 35.870756 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Morrisville, NC", - "id": "0122292c5bc9ff29", - "name": "Morrisville" - }, - "in_reply_to_screen_name": "MattCheely", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685584914973089792, - "text": "@MattCheely https://t.co/9jl9UNHv0s", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 24184180, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", - "statuses_count": 18329, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/24184180/1452092382", - "is_translator": false - }, - { - "time_zone": "Melbourne", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "79227302", - "following": false, - "friends_count": 30, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fastmail.com", - "url": "https://t.co/ckOsRTyp9h", - "expanded_url": "https://www.fastmail.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "44567E", - "geo_enabled": true, - "followers_count": 5651, - "location": "Melbourne, Australia", - "screen_name": "FastMailFM", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 239, - "name": "FastMail", - "profile_use_background_image": true, - "description": "Email, calendars and contacts done right.", - "url": "https://t.co/ckOsRTyp9h", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", - "profile_background_color": "022330", - "created_at": "Fri Oct 02 16:49:48 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", - "favourites_count": 293, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "chrisWhite", - "in_reply_to_user_id": 7804242, - "in_reply_to_status_id_str": "685607110684454912", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610756151230464", - "id": 685610756151230464, - "text": "@chrisWhite No the subject tagging is independent. You can turn it off in Advaced \u2192 Spam Preferences.", - "in_reply_to_user_id_str": "7804242", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chrisWhite", - "id_str": "7804242", - "id": 7804242, - "indices": [ - 0, - 11 - ], - "name": "Chris White" - } - ] - }, - "created_at": "Fri Jan 08 23:55:16 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685607110684454912, - "lang": "en" - }, - "default_profile_image": false, - "id": 79227302, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2194, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/79227302/1403516751", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2209238580", - "following": false, - "friends_count": 2044, - "entities": { - "description": { - "urls": [ - { - "display_url": "github.com/StackStorm/st2", - "url": "https://t.co/sd2EyabsN0", - "expanded_url": "https://github.com/StackStorm/st2", - "indices": [ - 100, - 123 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "stackstorm.com", - "url": "http://t.co/5oR6MbHPSq", - "expanded_url": "http://www.stackstorm.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2407, - "location": "Palo Alto, CA", - "screen_name": "Stack_Storm", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 110, - "name": "StackStorm", - "profile_use_background_image": true, - "description": "Event driven operations. Sometimes called IFTTT for IT ops. Open source. Auto-remediation and more.\nhttps://t.co/sd2EyabsN0", - "url": "http://t.co/5oR6MbHPSq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Nov 22 16:42:49 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", - "favourites_count": 548, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685551803044249600", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "redd.it/3ztcla", - "url": "https://t.co/C6Wa98PSra", - "expanded_url": "https://redd.it/3ztcla", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [ - { - "indices": [ - 20, - 28 - ], - "text": "chatops" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:01:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685551803044249600, - "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685561768551186432", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "redd.it/3ztcla", - "url": "https://t.co/C6Wa98PSra", - "expanded_url": "https://redd.it/3ztcla", - "indices": [ - 108, - 131 - ] - } - ], - "hashtags": [ - { - "indices": [ - 36, - 44 - ], - "text": "chatops" - } - ], - "user_mentions": [ - { - "screen_name": "epowell101", - "id_str": "15119662", - "id": 15119662, - "indices": [ - 3, - 14 - ], - "name": "Evan Powell" - } - ] - }, - "created_at": "Fri Jan 08 20:40:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685561768551186432, - "text": "RT @epowell101: Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2209238580, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1667, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209238580/1414949794", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "160640740", - "following": false, - "friends_count": 1203, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/marcomorain", - "url": "https://t.co/QNDuJQAZ6V", - "expanded_url": "https://github.com/marcomorain", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 503, - "location": "Dublin, Ireland", - "screen_name": "atmarc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "Marc O'Merriment", - "profile_use_background_image": true, - "description": "Developer at @CircleCI Previously Swrve, Havok and Kore Virtual Machines.", - "url": "https://t.co/QNDuJQAZ6V", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Mon Jun 28 19:06:33 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", - "favourites_count": 3499, - "status": { - "retweet_count": 23, - "retweeted_status": { - "retweet_count": 23, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685581797850279937", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:00:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685581797850279937, - "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 27, - "contributors": null, - "source": "Mobile Web (M5)" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685582745637109760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tomdale", - "id_str": "668863", - "id": 668863, - "indices": [ - 3, - 11 - ], - "name": "Tom Dale" - } - ] - }, - "created_at": "Fri Jan 08 22:03:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685582745637109760, - "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 160640740, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 4682, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/160640740/1398359765", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13470", - "following": false, - "friends_count": 1409, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sauria.com/blog", - "url": "http://t.co/UB3y8QBrA6", - "expanded_url": "http://www.sauria.com/blog", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 2849, - "location": "Bainbridge Island, WA", - "screen_name": "twleung", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 218, - "name": "Ted Leung", - "profile_use_background_image": true, - "description": "photographs, modern programming languages, embedded systems, and commons based peer production. Leading the Playmation software team at The Walt Disney Company.", - "url": "http://t.co/UB3y8QBrA6", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Nov 21 09:23:47 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", - "favourites_count": 4072, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jaxzin", - "in_reply_to_user_id": 14320521, - "in_reply_to_status_id_str": "684776564093931521", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684784895512584192", - "id": 684784895512584192, - "text": "@jaxzin what do you think is the magic price point?", - "in_reply_to_user_id_str": "14320521", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jaxzin", - "id_str": "14320521", - "id": 14320521, - "indices": [ - 0, - 7 - ], - "name": "Brian R. Jackson" - } - ] - }, - "created_at": "Wed Jan 06 17:13:36 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684776564093931521, - "lang": "en" - }, - "default_profile_image": false, - "id": 13470, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 9358, - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "50599894", - "following": false, - "friends_count": 1352, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 955, - "location": "Paris, France", - "screen_name": "nyconyco", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 72, - "name": "Nicolas V\u00e9rit\u00e9, N\u00ffco", - "profile_use_background_image": true, - "description": "Product Owner @ErlangSolutions, President at @LinuxFrOrg #FLOSS #OpenSource #TheOpenOrg #Agile #LeanStartup #DesignThinking #GrowthHacking", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu Jun 25 09:26:17 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", - "favourites_count": 343, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685537987355111426", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1O8FVAd", - "url": "https://t.co/IxvtPzMNtO", - "expanded_url": "http://buff.ly/1O8FVAd", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [ - { - "indices": [ - 2, - 11 - ], - "text": "Startups" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:06:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685537987355111426, - "text": "8 #Startups, 4 IPO's, Lost $35m of Investors Money to Paying Them Back $1b Each! Startup Lessons From Steve Blank https://t.co/IxvtPzMNtO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 50599894, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 4281, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/50599894/1358775155", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "106621747", - "following": false, - "friends_count": 100, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "B30645", - "geo_enabled": true, - "followers_count": 734, - "location": "", - "screen_name": "KalieCatt", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 40, - "name": "Kalie Fry", - "profile_use_background_image": true, - "description": "director of engagement marketing at @gomcmkt. wordsmith. social media jedi. closet creative. coffee connoisseur. classic novel enthusiast.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Jan 20 04:01:25 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", - "favourites_count": 6311, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685351275647516672", - "id": 685351275647516672, - "text": "So, I've been in an emoji formula battle all day and need to phone a friend. Want to help me solve?\n\n\u2754\u2795\u2702\ufe0f=\u2753\n\u2754\u2795\ud83c\uddf3\ud83c\uddec= \u2753\u2753\n\u2754\u2754\u2795(\u2796\ud83c\udf32\u2795\ud83d\udd34\u2795\ud83c\udf41)=\u2753\u2753", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 06:44:11 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 106621747, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", - "statuses_count": 2130, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/106621747/1430221319", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "459492917", - "following": false, - "friends_count": 3657, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "howhackersthink.com", - "url": "http://t.co/IBghUiKudG", - "expanded_url": "http://www.howhackersthink.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3816, - "location": "Washington, DC", - "screen_name": "HowHackersThink", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 178, - "name": "HowHackersThink", - "profile_use_background_image": true, - "description": "Hacker. Consultant. Cyber Strategist. Writer. Professor. Public speaker. Researcher. Innovator. Advocate. All tweets and views are my own.", - "url": "http://t.co/IBghUiKudG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Mon Jan 09 18:43:40 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", - "favourites_count": 693, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "684614746486759424", - "id": 684614746486759424, - "text": "The most complex things in this life: the mind and the universe. I study the mind on my way to understanding the universe. #HowHackersThink", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 123, - 139 - ], - "text": "HowHackersThink" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 05:57:29 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 459492917, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2888, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/459492917/1436656035", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "110735547", - "following": false, - "friends_count": 514, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 162, - "location": "Camden, ME", - "screen_name": "kjstone00", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Kevin Stone", - "profile_use_background_image": true, - "description": "dad, ops, monitoring, dogs, cats, chickens. Fledgling home brewer. Living life the way it should be in Maine", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 02 15:59:41 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", - "favourites_count": 420, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "sogrady", - "in_reply_to_user_id": 143883, - "in_reply_to_status_id_str": "685147818080776192", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685211417461534720", - "id": 685211417461534720, - "text": "@sogrady Is that Left Shark?", - "in_reply_to_user_id_str": "143883", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sogrady", - "id_str": "143883", - "id": 143883, - "indices": [ - 0, - 8 - ], - "name": "steve o'grady" - } - ] - }, - "created_at": "Thu Jan 07 21:28:27 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685147818080776192, - "lang": "en" - }, - "default_profile_image": false, - "id": 110735547, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3642, - "is_translator": false - }, - { - "time_zone": "Ljubljana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "59282163", - "following": false, - "friends_count": 876, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lstoll.net", - "url": "https://t.co/zymtFzZre6", - "expanded_url": "http://lstoll.net", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "666666", - "geo_enabled": true, - "followers_count": 41022, - "location": "Cleveland, OH", - "screen_name": "lstoll", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 125, - "name": "Kernel Sanders", - "profile_use_background_image": true, - "description": "Just some rando Australian operating computers and stuff at @Heroku. Previously @DigitalOcean, @GitHub, @Heroku.", - "url": "https://t.co/zymtFzZre6", - "profile_text_color": "000000", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", - "profile_background_color": "352726", - "created_at": "Wed Jul 22 23:05:12 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", - "favourites_count": 14331, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -81.877771, - 41.392684 - ], - [ - -81.5331634, - 41.392684 - ], - [ - -81.5331634, - 41.599195 - ], - [ - -81.877771, - 41.599195 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Cleveland, OH", - "id": "0eb9676d24b211f1", - "name": "Cleveland" - }, - "in_reply_to_screen_name": "klimpong", - "in_reply_to_user_id": 4600051, - "in_reply_to_status_id_str": "685598770684411904", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685599007415078913", - "id": 685599007415078913, - "text": "@klimpong Bonjour (That's french too)", - "in_reply_to_user_id_str": "4600051", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "klimpong", - "id_str": "4600051", - "id": 4600051, - "indices": [ - 0, - 9 - ], - "name": "Till" - } - ] - }, - "created_at": "Fri Jan 08 23:08:35 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598770684411904, - "lang": "en" - }, - "default_profile_image": false, - "id": 59282163, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 28104, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "163457790", - "following": false, - "friends_count": 1421, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eligible.com", - "url": "https://t.co/zeacfox6vu", - "expanded_url": "http://eligible.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 15359, - "location": "San Francisco \u21c6 Brooklyn ", - "screen_name": "katgleason", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 172, - "name": "Katelyn Gleason", - "profile_use_background_image": false, - "description": "S12 YC alum. CEO @eligibleapi", - "url": "https://t.co/zeacfox6vu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jul 06 13:33:13 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", - "favourites_count": 2503, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "kirillzubovsky", - "in_reply_to_user_id": 17541787, - "in_reply_to_status_id_str": "685529873138323456", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685531559508721664", - "id": 685531559508721664, - "text": "@kirillzubovsky @davemorin LOL that's definitely going in the folder", - "in_reply_to_user_id_str": "17541787", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kirillzubovsky", - "id_str": "17541787", - "id": 17541787, - "indices": [ - 0, - 15 - ], - "name": "Kirill Zubovsky" - }, - { - "screen_name": "davemorin", - "id_str": "3475", - "id": 3475, - "indices": [ - 16, - 26 - ], - "name": "Dave Morin" - } - ] - }, - "created_at": "Fri Jan 08 18:40:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685529873138323456, - "lang": "en" - }, - "default_profile_image": false, - "id": 163457790, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", - "statuses_count": 6273, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3998615773", - "following": false, - "friends_count": 5002, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "devopsdad.com", - "url": "https://t.co/JrNXHr85zj", - "expanded_url": "http://devopsdad.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "500A53", - "geo_enabled": false, - "followers_count": 1286, - "location": "Texas, USA", - "screen_name": "TheDevOpsDad", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "name": "Roel Pasetes", - "profile_use_background_image": false, - "description": "DevOps Engineer and Dad. Love 'em Both.", - "url": "https://t.co/JrNXHr85zj", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Oct 24 04:34:34 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", - "favourites_count": 7, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682441217653796865", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 193, - "h": 186, - "resize": "fit" - }, - "small": { - "w": 193, - "h": 186, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 193, - "h": 186, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", - "type": "photo", - "indices": [ - 83, - 106 - ], - "media_url": "http://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", - "display_url": "pic.twitter.com/ZKCpgU3ctc", - "id_str": "682441217536294912", - "expanded_url": "http://twitter.com/TheDevOpsDad/status/682441217653796865/photo/1", - "id": 682441217536294912, - "url": "https://t.co/ZKCpgU3ctc" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Mr6ClV", - "url": "https://t.co/vNHAVlc1So", - "expanded_url": "http://buff.ly/1Mr6ClV", - "indices": [ - 59, - 82 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 06:00:40 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682441217653796865, - "text": "What can Joey from Friends teach us about our devops work? https://t.co/vNHAVlc1So https://t.co/ZKCpgU3ctc", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 3998615773, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 95, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3998615773/1445662297", - "is_translator": false - }, - { - "time_zone": "Tijuana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16364066", - "following": false, - "friends_count": 505, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/mcoates", - "url": "https://t.co/uNCdooglSE", - "expanded_url": "http://www.linkedin.com/in/mcoates", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "001C8A", - "geo_enabled": true, - "followers_count": 5194, - "location": "San Francisco, CA", - "screen_name": "_mwc", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 254, - "name": "Michael Coates \u2604", - "profile_use_background_image": false, - "description": "Trust & Info Security Officer @Twitter, @OWASP Global Board, Former @Mozilla", - "url": "https://t.co/uNCdooglSE", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Sep 19 14:41:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", - "favourites_count": 349, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685553622675935232", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/chrismessina/s\u2026", - "url": "https://t.co/ic0IlFWa29", - "expanded_url": "https://twitter.com/chrismessina/status/685218795435077633", - "indices": [ - 62, - 85 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chrismessina", - "id_str": "1186", - "id": 1186, - "indices": [ - 21, - 34 - ], - "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e" - } - ] - }, - "created_at": "Fri Jan 08 20:08:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685553622675935232, - "text": "I'm with you on that @chrismessina. This is just odd at best. https://t.co/ic0IlFWa29", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16364066, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3515, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16364066/1443650382", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "93954161", - "following": false, - "friends_count": 347, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 16538, - "location": "San Francisco", - "screen_name": "aroetter", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 176, - "name": "Alex Roetter", - "profile_use_background_image": true, - "description": "SVP Engineering @ Twitter. Parenthood, Aviation, Alpinism, Sandwiches. Fighting gravity but usually losing.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 01 22:04:13 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", - "favourites_count": 2838, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "NShivakumar", - "in_reply_to_user_id": 41315003, - "in_reply_to_status_id_str": "685585778076848128", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685586111687622656", - "id": 685586111687622656, - "text": "@NShivakumar congrats!", - "in_reply_to_user_id_str": "41315003", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "NShivakumar", - "id_str": "41315003", - "id": 41315003, - "indices": [ - 0, - 12 - ], - "name": "Shiva Shivakumar" - } - ] - }, - "created_at": "Fri Jan 08 22:17:21 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685585778076848128, - "lang": "en" - }, - "default_profile_image": false, - "id": 93954161, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2322, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/93954161/1385781289", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "11873632", - "following": false, - "friends_count": 871, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lewisheadden.com", - "url": "http://t.co/LYuJlxmvg5", - "expanded_url": "http://www.lewisheadden.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1039, - "location": "New York City", - "screen_name": "lewisheadden", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "Lewis Headden", - "profile_use_background_image": true, - "description": "Scotsman, New Yorker, Photoshopper, Christian. DevOps Engineer at @CondeNast. Formerly @AmazonDevScot, @AetherworksLLC, @StAndrewsCS.", - "url": "http://t.co/LYuJlxmvg5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jan 05 13:06:09 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", - "favourites_count": 785, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685121406753976320", - "id": 685121406753976320, - "text": "You know Thursday morning is a struggle when you're debating microfoam and the \"Third Wave of Coffee\".", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 15:30:46 +0000 2016", - "source": "TweetDeck", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 11873632, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4814, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11873632/1409756044", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16022957", - "following": false, - "friends_count": 2120, - "entities": { - "description": { - "urls": [ - { - "display_url": "keybase.io/markaci", - "url": "https://t.co/n8kTLKcwJx", - "expanded_url": "http://keybase.io/markaci", - "indices": [ - 137, - 160 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/markdobrowo\u2026", - "url": "https://t.co/iw20KWBDrr", - "expanded_url": "https://linkedin.com/in/markdobrowolski", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "1F2A3D", - "geo_enabled": true, - "followers_count": 1003, - "location": "Toronto, Canada", - "screen_name": "markaci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 73, - "name": "mar\u10d9\u10d0\u10ea\u10d8", - "profile_use_background_image": true, - "description": "Mark Dobrowolski - Information Security & Risk Management Professional; disruptor, innovator, rainmaker, student, friend. RT\u2260endorsement https://t.co/n8kTLKcwJx", - "url": "https://t.co/iw20KWBDrr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Thu Aug 28 03:58:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", - "favourites_count": 9592, - "status": { - "retweet_count": 13566, - "retweeted_status": { - "retweet_count": 13566, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "664196578178146337", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 680, - "h": 384, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 339, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 192, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", - "type": "photo", - "indices": [ - 33, - 56 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", - "display_url": "pic.twitter.com/wvdGL6FVBi", - "id_str": "664196535018737664", - "expanded_url": "http://twitter.com/Alby/status/664196578178146337/video/1", - "id": 664196535018737664, - "url": "https://t.co/wvdGL6FVBi" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Nov 10 21:42:59 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 664196578178146337, - "text": "Another magnetic chain reaction. https://t.co/wvdGL6FVBi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 11430, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685606651899080704", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 680, - "h": 384, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 339, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 192, - "resize": "fit" - } - }, - "source_status_id_str": "664196578178146337", - "url": "https://t.co/wvdGL6FVBi", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", - "source_user_id_str": "6795192", - "id_str": "664196535018737664", - "id": 664196535018737664, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", - "type": "photo", - "indices": [ - 43, - 66 - ], - "source_status_id": 664196578178146337, - "source_user_id": 6795192, - "display_url": "pic.twitter.com/wvdGL6FVBi", - "expanded_url": "http://twitter.com/Alby/status/664196578178146337/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Alby", - "id_str": "6795192", - "id": 6795192, - "indices": [ - 3, - 8 - ], - "name": "Alby" - } - ] - }, - "created_at": "Fri Jan 08 23:38:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685606651899080704, - "text": "RT @Alby: Another magnetic chain reaction. https://t.co/wvdGL6FVBi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 16022957, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 19131, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16022957/1394348072", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "70916267", - "following": false, - "friends_count": 276, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 177, - "location": "Bradford", - "screen_name": "developer_gg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Gordon Brown", - "profile_use_background_image": true, - "description": "I like computers, beer and coffee, but not necessarily in that order. I also try to run occasionally. Consultant at @ukinfinityworks.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 02 08:33:20 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", - "favourites_count": 128, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ToxicTourniquet", - "in_reply_to_user_id": 53144530, - "in_reply_to_status_id_str": "685381555305484288", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685382327615238145", - "id": 685382327615238145, - "text": "@ToxicTourniquet @Staticman1 @PayByPhone_UK you can - I just did - 0330 400 7275. You'll still need your location code.", - "in_reply_to_user_id_str": "53144530", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ToxicTourniquet", - "id_str": "53144530", - "id": 53144530, - "indices": [ - 0, - 16 - ], - "name": "Tam" - }, - { - "screen_name": "Staticman1", - "id_str": "56454758", - "id": 56454758, - "indices": [ - 17, - 28 - ], - "name": "James Hawkins" - }, - { - "screen_name": "PayByPhone_UK", - "id_str": "436714561", - "id": 436714561, - "indices": [ - 29, - 43 - ], - "name": "PayByPhone UK" - } - ] - }, - "created_at": "Fri Jan 08 08:47:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685381555305484288, - "lang": "en" - }, - "default_profile_image": false, - "id": 70916267, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 509, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "19734656", - "following": false, - "friends_count": 1068, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "realgenekim.me", - "url": "http://t.co/IBvzJu7jHq", - "expanded_url": "http://realgenekim.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 18784, - "location": "\u00dcT: 45.527981,-122.670577", - "screen_name": "RealGeneKim", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1035, - "name": "Gene Kim", - "profile_use_background_image": true, - "description": "DevOps enthusiast, The Phoenix Project co-author, Tripwire founder, Visible Ops co-author, IT Ops/Security Researcher, Theory of Constraints Jonah, rabid UX fan", - "url": "http://t.co/IBvzJu7jHq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jan 29 21:10:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", - "favourites_count": 1122, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "coburnw", - "in_reply_to_user_id": 25533767, - "in_reply_to_status_id_str": "685571662922686464", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685586516211400704", - "id": 685586516211400704, - "text": "@coburnw And please let me know if there\u2019s anything I can do to help! Go go go! :)", - "in_reply_to_user_id_str": "25533767", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "coburnw", - "id_str": "25533767", - "id": 25533767, - "indices": [ - 0, - 8 - ], - "name": "Coburn Watson" - } - ] - }, - "created_at": "Fri Jan 08 22:18:57 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685571662922686464, - "lang": "en" - }, - "default_profile_image": false, - "id": 19734656, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 17244, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "12614742", - "following": false, - "friends_count": 1437, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "testobsessed.com", - "url": "http://t.co/QKSEPgi0Ad", - "expanded_url": "http://www.testobsessed.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": false, - "followers_count": 10876, - "location": "Palo Alto, California, USA", - "screen_name": "testobsessed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 808, - "name": "ElisabethHendrickson", - "profile_use_background_image": true, - "description": "Author of Explore It! Recovering consultant. I work on Big Data at @pivotal but speak only for myself.", - "url": "http://t.co/QKSEPgi0Ad", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", - "profile_background_color": "EDECE9", - "created_at": "Wed Jan 23 21:49:39 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", - "favourites_count": 9737, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685086119029948418", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/LindaRegber/st\u2026", - "url": "https://t.co/qCHRQzRBKE", - "expanded_url": "https://twitter.com/LindaRegber/status/683294175752810496", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 13:10:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685086119029948418, - "text": "Love the visualization. https://t.co/qCHRQzRBKE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 12614742, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "statuses_count": 17738, - "is_translator": false - }, - { - "time_zone": "Stockholm", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "155247426", - "following": false, - "friends_count": 391, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "loweschmidt.se", - "url": "http://t.co/bqChHrmryK", - "expanded_url": "http://loweschmidt.se", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 273, - "location": "Stockholm, Sweden", - "screen_name": "loweschmidt", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 31, - "name": "Lowe Schmidt", - "profile_use_background_image": true, - "description": "FLOSS fan, DevOps advocate, sysadmin for hire @init_ab. (neo)vim user, @sthlmdevops founder and beer collector @untappd. I also like tattoos.", - "url": "http://t.co/bqChHrmryK", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Jun 13 15:45:23 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", - "favourites_count": 608, - "status": { - "retweet_count": 8, - "retweeted_status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685585057948434432", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 125, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 220, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 376, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "type": "photo", - "indices": [ - 107, - 130 - ], - "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "display_url": "pic.twitter.com/IEQVTQqJVK", - "id_str": "685584988327116800", - "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", - "id": 685584988327116800, - "url": "https://t.co/IEQVTQqJVK" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "facebook.com/notes/matty-gr\u2026", - "url": "https://t.co/bgCQtDeUtW", - "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:13:10 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685585057948434432, - "text": "Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJVK", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685587439931551744", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 125, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 220, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 376, - "resize": "fit" - } - }, - "source_status_id_str": "685585057948434432", - "url": "https://t.co/IEQVTQqJVK", - "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "source_user_id_str": "18137723", - "id_str": "685584988327116800", - "id": 685584988327116800, - "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "type": "photo", - "indices": [ - 122, - 144 - ], - "source_status_id": 685585057948434432, - "source_user_id": 18137723, - "display_url": "pic.twitter.com/IEQVTQqJVK", - "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "facebook.com/notes/matty-gr\u2026", - "url": "https://t.co/bgCQtDeUtW", - "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", - "indices": [ - 98, - 121 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "raganwald", - "id_str": "18137723", - "id": 18137723, - "indices": [ - 3, - 13 - ], - "name": "Reginald Braithwaite" - } - ] - }, - "created_at": "Fri Jan 08 22:22:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685587439931551744, - "text": "RT @raganwald: Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJ\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 155247426, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 10749, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/155247426/1372113776", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14946551", - "following": false, - "friends_count": 233, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/thedoh", - "url": "https://t.co/75FomxWTf2", - "expanded_url": "https://twitter.com/thedoh", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": false, - "followers_count": 332, - "location": "Toronto, Ontario", - "screen_name": "thedoh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 38, - "name": "Lisa Seelye", - "profile_use_background_image": true, - "description": "Magic, sysadmin, learner", - "url": "https://t.co/75FomxWTf2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Thu May 29 18:28:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", - "favourites_count": 372, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685593686432825344", - "id": 685593686432825344, - "text": "Skipping FNM tonight. Not feeling it.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:47:27 +0000 2016", - "source": "Twitterrific for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14946551, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "statuses_count": 20006, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "80200818", - "following": false, - "friends_count": 587, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "100357", - "geo_enabled": true, - "followers_count": 328, - "location": "memphis \u2708 seattle", - "screen_name": "edyesed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 77, - "name": "that guy", - "profile_use_background_image": true, - "description": "asdf;lkj... #dadops #devops", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Oct 06 03:09:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", - "favourites_count": 3601, - "status": { - "retweet_count": 2, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685582326827499520", - "id": 685582326827499520, - "text": "Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told me?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:02:18 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685590780581249024", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JeffSaidSo", - "id_str": "171544323", - "id": 171544323, - "indices": [ - 3, - 14 - ], - "name": "Jeff Allen" - } - ] - }, - "created_at": "Fri Jan 08 22:35:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685590780581249024, - "text": "RT @JeffSaidSo: Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 80200818, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", - "statuses_count": 8489, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/80200818/1419223168", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "913200547", - "following": false, - "friends_count": 1308, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nickshemonsky.com", - "url": "http://t.co/xWPpyxcm6U", - "expanded_url": "http://www.nickshemonsky.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "657B83", - "geo_enabled": false, - "followers_count": 279, - "location": "Pottsville, PA", - "screen_name": "nshemonsky", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 16, - "name": "Nick Shemonsky", - "profile_use_background_image": false, - "description": "@BlueBox Ops | @Penn_State alum | #CraftBeer Enthusiast | Fly @Eagles Fly! | Runner", - "url": "http://t.co/xWPpyxcm6U", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", - "profile_background_color": "004454", - "created_at": "Mon Oct 29 20:37:31 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", - "favourites_count": 126, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MassHaste", - "in_reply_to_user_id": 27139651, - "in_reply_to_status_id_str": "685500343506071553", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685501930177597440", - "id": 685501930177597440, - "text": "@MassHaste @biscuitbitch They make a good americano as well.", - "in_reply_to_user_id_str": "27139651", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MassHaste", - "id_str": "27139651", - "id": 27139651, - "indices": [ - 0, - 10 - ], - "name": "Ruben Orduz" - }, - { - "screen_name": "biscuitbitch", - "id_str": "704580546", - "id": 704580546, - "indices": [ - 11, - 24 - ], - "name": "Biscuit Bitch" - } - ] - }, - "created_at": "Fri Jan 08 16:42:50 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685500343506071553, - "lang": "en" - }, - "default_profile_image": false, - "id": 913200547, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", - "statuses_count": 923, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/913200547/1429793800", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2838111", - "following": false, - "friends_count": 456, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mcdermottroe.com", - "url": "http://t.co/6FjMMOcAIA", - "expanded_url": "http://www.mcdermottroe.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 793, - "location": "Dublin, Ireland", - "screen_name": "IRLConor", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Conor McDermottroe", - "profile_use_background_image": true, - "description": "I'm a software developer for @circleci. I'm also a competitive rifle shooter for @targetshooting and @durifle.", - "url": "http://t.co/6FjMMOcAIA", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 29 13:35:37 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", - "favourites_count": 479, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "courtewing", - "in_reply_to_user_id": 25573729, - "in_reply_to_status_id_str": "684739332087910400", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684739489403645952", - "id": 684739489403645952, - "text": "@courtewing @cloudsteph Read position, read indicators on DMs (totally broken on Twitter itself) and mute filters among other things.", - "in_reply_to_user_id_str": "25573729", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "courtewing", - "id_str": "25573729", - "id": 25573729, - "indices": [ - 0, - 11 - ], - "name": "Court Ewing" - }, - { - "screen_name": "cloudsteph", - "id_str": "15389419", - "id": 15389419, - "indices": [ - 12, - 23 - ], - "name": "Stephie Graphics" - } - ] - }, - "created_at": "Wed Jan 06 14:13:10 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684739332087910400, - "lang": "en" - }, - "default_profile_image": false, - "id": 2838111, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5257, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2838111/1396367369", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "104164496", - "following": false, - "friends_count": 2020, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dribbble.com/danielbeere", - "url": "http://t.co/6ZvS9hPEgV", - "expanded_url": "http://dribbble.com/danielbeere", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "663399", - "geo_enabled": false, - "followers_count": 823, - "location": "San Francisco", - "screen_name": "DanielBeere", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 115, - "name": "Daniel Beere", - "profile_use_background_image": true, - "description": "Irish designer in SF @circleci \u270c\ufe0f", - "url": "http://t.co/6ZvS9hPEgV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jan 12 13:41:22 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBE9ED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", - "favourites_count": 2203, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 604516513, - "possibly_sensitive": false, - "id_str": "685495163859394562", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amazon.com/Yogi-Teas-Bags\u2026", - "url": "https://t.co/urUptC9Tt3", - "expanded_url": "http://www.amazon.com/Yogi-Teas-Bags-Stess-Relief/dp/B0009F3QKW", - "indices": [ - 11, - 34 - ] - }, - { - "display_url": "fourhourworkweek.com/2016/01/03/new\u2026", - "url": "https://t.co/ljyONNyI0B", - "expanded_url": "http://fourhourworkweek.com/2016/01/03/new-years-resolutions", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "beerhoff1", - "id_str": "604516513", - "id": 604516513, - "indices": [ - 0, - 10 - ], - "name": "Shane Beere" - }, - { - "screen_name": "kevinrose", - "id_str": "657863", - "id": 657863, - "indices": [ - 53, - 63 - ], - "name": "Kevin Rose" - }, - { - "screen_name": "tferriss", - "id_str": "11740902", - "id": 11740902, - "indices": [ - 67, - 76 - ], - "name": "Tim Ferriss" - } - ] - }, - "created_at": "Fri Jan 08 16:15:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "604516513", - "place": null, - "in_reply_to_screen_name": "beerhoff1", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685495163859394562, - "text": "@beerhoff1 https://t.co/urUptC9Tt3 as recommended by @kevinrose on @tferriss show: https://t.co/ljyONNyI0B", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 104164496, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", - "statuses_count": 6830, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/104164496/1375219663", - "is_translator": false - }, - { - "time_zone": "Vienna", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "39625343", - "following": false, - "friends_count": 446, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blag.esotericsystems.at", - "url": "https://t.co/NexvmiW4Zx", - "expanded_url": "https://blag.esotericsystems.at/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": false, - "followers_count": 781, - "location": "They/Their Land", - "screen_name": "hirojin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "The Wrath of me\u2122", - "profile_use_background_image": true, - "description": "disappointing expectations since 1894.", - "url": "https://t.co/NexvmiW4Zx", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Tue May 12 23:20:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", - "favourites_count": 18072, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "asmallteapot", - "in_reply_to_user_id": 14202167, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610405272629249", - "id": 685610405272629249, - "text": "@asmallteapot hi Ellen Teapot irl", - "in_reply_to_user_id_str": "14202167", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "asmallteapot", - "id_str": "14202167", - "id": 14202167, - "indices": [ - 0, - 13 - ], - "name": "ellen teapot" - } - ] - }, - "created_at": "Fri Jan 08 23:53:53 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 39625343, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", - "statuses_count": 32419, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39625343/1401366515", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "12143922", - "following": false, - "friends_count": 1036, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "markn.ca", - "url": "http://t.co/n78rBOUVWU", - "expanded_url": "http://markn.ca", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", - "notifications": false, - "profile_sidebar_fill_color": "595D62", - "profile_link_color": "67BACA", - "geo_enabled": false, - "followers_count": 3456, - "location": "::1", - "screen_name": "marknca", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 446, - "name": "Mark Nunnikhoven", - "profile_use_background_image": false, - "description": "Vice President, Cloud Research @TrendMicro. \n\nResearching & teaching cloud & usable security systems at scale. Opinionated but always looking to learn.", - "url": "http://t.co/n78rBOUVWU", - "profile_text_color": "50A394", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", - "profile_background_color": "525055", - "created_at": "Sat Jan 12 04:41:20 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", - "favourites_count": 1975, - "status": { - "retweet_count": 31, - "retweeted_status": { - "retweet_count": 31, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "411573734525247488", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "techblog.netflix.com/2013/12/staash\u2026", - "url": "http://t.co/odQB0AhIpe", - "expanded_url": "http://techblog.netflix.com/2013/12/staash-storage-as-service-over-http.html", - "indices": [ - 62, - 84 - ] - } - ], - "hashtags": [ - { - "indices": [ - 85, - 96 - ], - "text": "NetflixOSS" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Dec 13 19:09:59 +0000 2013", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 411573734525247488, - "text": "Netflix: announcing STAASH - STorage As A Service over Http : http://t.co/odQB0AhIpe #NetflixOSS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 31, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685525886704218112", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "techblog.netflix.com/2013/12/staash\u2026", - "url": "http://t.co/odQB0AhIpe", - "expanded_url": "http://techblog.netflix.com/2013/12/staash-storage-as-service-over-http.html", - "indices": [ - 78, - 100 - ] - } - ], - "hashtags": [ - { - "indices": [ - 101, - 112 - ], - "text": "NetflixOSS" - } - ], - "user_mentions": [ - { - "screen_name": "NetflixOSS", - "id_str": "386170457", - "id": 386170457, - "indices": [ - 3, - 14 - ], - "name": "NetflixOSS" - } - ] - }, - "created_at": "Fri Jan 08 18:18:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685525886704218112, - "text": "RT @NetflixOSS: Netflix: announcing STAASH - STorage As A Service over Http : http://t.co/odQB0AhIpe #NetflixOSS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 12143922, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", - "statuses_count": 35451, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12143922/1397706275", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8866232", - "following": false, - "friends_count": 2005, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mattrogish.com", - "url": "http://t.co/yCK1Z82dhE", - "expanded_url": "http://www.mattrogish.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 1677, - "location": "Philadelphia, PA", - "screen_name": "MattRogish", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 233, - "name": "Matt Rogish", - "profile_use_background_image": true, - "description": "Startup janitor @ReactiveOps", - "url": "http://t.co/yCK1Z82dhE", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Fri Sep 14 01:23:45 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", - "favourites_count": 409, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685583855701594112", - "id": 685583855701594112, - "text": "Is it possible for my shower head to spray bourbon?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:08:23 +0000 2016", - "source": "TweetDeck", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685583979848830976", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mikebarish", - "id_str": "34930874", - "id": 34930874, - "indices": [ - 3, - 14 - ], - "name": "Mike Barish" - } - ] - }, - "created_at": "Fri Jan 08 22:08:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685583979848830976, - "text": "RT @mikebarish: Is it possible for my shower head to spray bourbon?", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 8866232, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", - "statuses_count": 29628, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8866232/1398194149", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1458271", - "following": false, - "friends_count": 1789, - "entities": { - "description": { - "urls": [ - { - "display_url": "mapbox.com", - "url": "https://t.co/djeLWKvmpe", - "expanded_url": "http://mapbox.com", - "indices": [ - 6, - 29 - ] - }, - { - "display_url": "github.com/tmcw", - "url": "https://t.co/j4toNgk9Vd", - "expanded_url": "https://github.com/tmcw", - "indices": [ - 36, - 59 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "macwright.org", - "url": "http://t.co/d4zmVgqQxY", - "expanded_url": "http://macwright.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "727996", - "geo_enabled": true, - "followers_count": 4338, - "location": "lon, lat", - "screen_name": "tmcw", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 336, - "name": "Tom MacWright", - "profile_use_background_image": false, - "description": "work: https://t.co/djeLWKvmpe\ncode: https://t.co/j4toNgk9Vd", - "url": "http://t.co/d4zmVgqQxY", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Mar 19 01:06:50 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", - "favourites_count": 2154, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685479131652460544", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "movingbrands.com/work/netflix", - "url": "https://t.co/jVHQei9nqB", - "expanded_url": "http://www.movingbrands.com/work/netflix", - "indices": [ - 101, - 124 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:12:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685479131652460544, - "text": "brand redesign posts that are specific about the previous design's problems are way more interesting https://t.co/jVHQei9nqB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1458271, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", - "statuses_count": 11307, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1458271/1436753023", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "821753", - "following": false, - "friends_count": 313, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "waferbaby.com", - "url": "https://t.co/qvUfWRzUDe", - "expanded_url": "http://waferbaby.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 2192, - "location": "Mos Iceland Container Store", - "screen_name": "waferbaby", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 141, - "name": "Daniel Bogan", - "profile_use_background_image": false, - "description": "I do the stuff on the Internets.", - "url": "https://t.co/qvUfWRzUDe", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", - "profile_background_color": "2E2E2E", - "created_at": "Thu Mar 08 14:02:34 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", - "favourites_count": 10155, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "tedd4u", - "in_reply_to_user_id": 8619192, - "in_reply_to_status_id_str": "685609696858771456", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610820907057152", - "id": 685610820907057152, - "text": "@tedd4u: Hah, I don\u2019t talk about startups!", - "in_reply_to_user_id_str": "8619192", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tedd4u", - "id_str": "8619192", - "id": 8619192, - "indices": [ - 0, - 7 - ], - "name": "Tim A. Miller" - } - ] - }, - "created_at": "Fri Jan 08 23:55:32 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685609696858771456, - "lang": "en" - }, - "default_profile_image": false, - "id": 821753, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 60175, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/821753/1450081356", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "557933634", - "following": false, - "friends_count": 4062, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "saltstack.com", - "url": "http://t.co/rukw0maLdy", - "expanded_url": "http://saltstack.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "48B4FB", - "geo_enabled": false, - "followers_count": 6327, - "location": "Salt Lake City", - "screen_name": "SaltStackInc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 305, - "name": "SaltStack", - "profile_use_background_image": true, - "description": "Software to orchestrate & automate CloudOps, ITOps & DevOps at extreme speed & scale | '14 InfoWorld Technology of the Year | '13 Gartner Cool Vendor in DevOps", - "url": "http://t.co/rukw0maLdy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Apr 19 16:31:12 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", - "favourites_count": 1125, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685600728631476225", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1jM9opD", - "url": "https://t.co/TbBXqaLwrc", - "expanded_url": "http://bit.ly/1jM9opD", - "indices": [ - 90, - 113 - ] - } - ], - "hashtags": [ - { - "indices": [ - 4, - 15 - ], - "text": "SaltConf16" - } - ], - "user_mentions": [ - { - "screen_name": "LinkedIn", - "id_str": "13058772", - "id": 13058772, - "indices": [ - 27, - 36 - ], - "name": "LinkedIn" - }, - { - "screen_name": "druonysus", - "id_str": "352871356", - "id": 352871356, - "indices": [ - 38, - 48 - ], - "name": "Drew Adams" - }, - { - "screen_name": "OpenX", - "id_str": "14184143", - "id": 14184143, - "indices": [ - 52, - 58 - ], - "name": "OpenX" - }, - { - "screen_name": "ClemsonUniv", - "id_str": "23444864", - "id": 23444864, - "indices": [ - 65, - 77 - ], - "name": "Clemson University" - } - ] - }, - "created_at": "Fri Jan 08 23:15:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685600728631476225, - "text": "New #SaltConf16 talks from @LinkedIn, @druonysus of @OpenX & @ClemsonUniv now posted: https://t.co/TbBXqaLwrc Register now.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 557933634, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", - "statuses_count": 2842, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/557933634/1428941606", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3450748273", - "following": false, - "friends_count": 8, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "howdy.ai", - "url": "https://t.co/1cHNN303mV", - "expanded_url": "http://howdy.ai", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 667, - "location": "Austin, TX", - "screen_name": "HowdyAI", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Howdy", - "profile_use_background_image": false, - "description": "Your new digital coworker for Slack!", - "url": "https://t.co/1cHNN303mV", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Sep 04 18:15:13 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", - "favourites_count": 399, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mescamm", - "in_reply_to_user_id": 113094157, - "in_reply_to_status_id_str": "685485832308965376", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685600766917275648", - "id": 685600766917275648, - "text": "@mescamm Your Howdy bot is ready to go!", - "in_reply_to_user_id_str": "113094157", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mescamm", - "id_str": "113094157", - "id": 113094157, - "indices": [ - 0, - 8 - ], - "name": "Mathieu Mescam" - } - ] - }, - "created_at": "Fri Jan 08 23:15:35 +0000 2016", - "source": "Groove HQ", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685485832308965376, - "lang": "en" - }, - "default_profile_image": false, - "id": 3450748273, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 220, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "3428227355", - "following": false, - "friends_count": 1936, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nerabus.com", - "url": "http://t.co/ZzSYPLDJDg", - "expanded_url": "http://nerabus.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "8C8C8C", - "geo_enabled": false, - "followers_count": 553, - "location": "Manchester and Cambridge, UK", - "screen_name": "computefuture", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Nerabus", - "profile_use_background_image": false, - "description": "The focal point of the Open Source hardware revolution #cto #datacenter #OpenSourceHardware #OpenSourceSilicon #FPGA", - "url": "http://t.co/ZzSYPLDJDg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Aug 17 14:43:41 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", - "favourites_count": 213, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685128917259259904", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "engt.co/1Rl04XW", - "url": "https://t.co/73ZDipi3RD", - "expanded_url": "http://engt.co/1Rl04XW", - "indices": [ - 46, - 69 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "engadget", - "id_str": "14372486", - "id": 14372486, - "indices": [ - 74, - 83 - ], - "name": "Engadget" - } - ] - }, - "created_at": "Thu Jan 07 16:00:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685128917259259904, - "text": "Amazon is selling its own processors now, too https://t.co/73ZDipi3RD via @engadget", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 3428227355, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 374, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3428227355/1442251790", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1087503266", - "following": false, - "friends_count": 311, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "levlaz.org", - "url": "https://t.co/4OB68uzJbf", - "expanded_url": "https://levlaz.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 462, - "location": "San Francisco, CA", - "screen_name": "levlaz", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 44, - "name": "Lev Lazinskiy", - "profile_use_background_image": true, - "description": "I \u2764\ufe0f\u200d Developers @CircleCI, Graduate Student @NovaSE, Veteran, Musician, Dev and Linux Geek. \u2764\ufe0f @songbing_yu", - "url": "https://t.co/4OB68uzJbf", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Sun Jan 13 23:26:26 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", - "favourites_count": 4442, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "DavidAndGoliath", - "in_reply_to_user_id": 14469175, - "in_reply_to_status_id_str": "685251764610822144", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685252027870392320", - "id": 685252027870392320, - "text": "@DavidAndGoliath @TMobile @EFF they are all horrible I'll just go without a cell provider for a while :D", - "in_reply_to_user_id_str": "14469175", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DavidAndGoliath", - "id_str": "14469175", - "id": 14469175, - "indices": [ - 0, - 16 - ], - "name": "David" - }, - { - "screen_name": "TMobile", - "id_str": "17338082", - "id": 17338082, - "indices": [ - 17, - 25 - ], - "name": "T-Mobile" - }, - { - "screen_name": "EFF", - "id_str": "4816", - "id": 4816, - "indices": [ - 26, - 30 - ], - "name": "EFF" - } - ] - }, - "created_at": "Fri Jan 08 00:09:49 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685251764610822144, - "lang": "en" - }, - "default_profile_image": false, - "id": 1087503266, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 4756, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087503266/1447471475", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2667470504", - "following": false, - "friends_count": 112, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "launchdarkly.com", - "url": "http://t.co/e7Lhd33dNc", - "expanded_url": "http://www.launchdarkly.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 255, - "location": "San Francisco", - "screen_name": "LaunchDarkly", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "LaunchDarkly", - "profile_use_background_image": true, - "description": "Control your feature launches. Feature flags as a service. Tweets about canary releases for continuous delivery.", - "url": "http://t.co/e7Lhd33dNc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 21 23:18:43 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", - "favourites_count": 119, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685347790533296128", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z9JhG8", - "url": "https://t.co/kDewgvL5x9", - "expanded_url": "http://buff.ly/1Z9JhG8", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 06:30:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685347790533296128, - "text": "\"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685533803683512321", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z9JhG8", - "url": "https://t.co/kDewgvL5x9", - "expanded_url": "http://buff.ly/1Z9JhG8", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "divanator", - "id_str": "10184822", - "id": 10184822, - "indices": [ - 3, - 13 - ], - "name": "Div" - } - ] - }, - "created_at": "Fri Jan 08 18:49:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685533803683512321, - "text": "RT @divanator: \"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2667470504, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 548, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2667470504/1446072089", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3320603490", - "following": false, - "friends_count": 99, - "entities": { - "description": { - "urls": [ - { - "display_url": "soundcloud.com/heavybit", - "url": "https://t.co/lAnNM1oH69", - "expanded_url": "https://soundcloud.com/heavybit", - "indices": [ - 114, - 137 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": false, - "followers_count": 103, - "location": "San Francisco, CA", - "screen_name": "ContinuousCast", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "To Be Continuous", - "profile_use_background_image": false, - "description": "To Be Continuous ... a podcast on all things #ContinuousDelivery. Hosted @paulbiggar @edith_h Sponsored @heavybit https://t.co/lAnNM1oH69", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Aug 19 22:32:39 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", - "favourites_count": 8, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "stanlemon", - "in_reply_to_user_id": 14147682, - "in_reply_to_status_id_str": "685484756620857345", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685569841068048386", - "id": 685569841068048386, - "text": "@stanlemon @edith_h @paulbiggar Our producer @tedcarstensen is working on it!", - "in_reply_to_user_id_str": "14147682", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "stanlemon", - "id_str": "14147682", - "id": 14147682, - "indices": [ - 0, - 10 - ], - "name": "Stan Lemon" - }, - { - "screen_name": "edith_h", - "id_str": "14965602", - "id": 14965602, - "indices": [ - 11, - 19 - ], - "name": "Edith Harbaugh" - }, - { - "screen_name": "paulbiggar", - "id_str": "86938585", - "id": 86938585, - "indices": [ - 20, - 31 - ], - "name": "Paul Biggar" - }, - { - "screen_name": "tedcarstensen", - "id_str": "20000329", - "id": 20000329, - "indices": [ - 45, - 59 - ], - "name": "ted carstensen" - } - ] - }, - "created_at": "Fri Jan 08 21:12:42 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685484756620857345, - "lang": "en" - }, - "default_profile_image": false, - "id": 3320603490, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 107, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320603490/1440175251", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "245729302", - "following": false, - "friends_count": 1747, - "entities": { - "description": { - "urls": [ - { - "display_url": "bytemark.co.uk/support", - "url": "https://t.co/zlCkaK20Wn", - "expanded_url": "https://www.bytemark.co.uk/support", - "indices": [ - 111, - 134 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "bytemark.co.uk", - "url": "https://t.co/30hNNjVa6D", - "expanded_url": "http://www.bytemark.co.uk/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0768AA", - "geo_enabled": false, - "followers_count": 2011, - "location": "Manchester & York, UK", - "screen_name": "bytemark", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "Bytemark", - "profile_use_background_image": false, - "description": "Reliable UK hosting from \u00a310 per month. We're here to chat during office hours. Urgent problem? Email is best: https://t.co/zlCkaK20Wn", - "url": "https://t.co/30hNNjVa6D", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Feb 01 10:22:20 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", - "favourites_count": 1159, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685500519486492672", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 182, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 322, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 647, - "h": 348, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", - "type": "photo", - "indices": [ - 40, - 63 - ], - "media_url": "http://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", - "display_url": "pic.twitter.com/dzXqC0ETXZ", - "id_str": "685500516143644676", - "expanded_url": "http://twitter.com/bytemark/status/685500519486492672/photo/1", - "id": 685500516143644676, - "url": "https://t.co/dzXqC0ETXZ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:37:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685500519486492672, - "text": "Remember kids: don\u2019t copy that floppy\u2026! https://t.co/dzXqC0ETXZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 245729302, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 4660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/245729302/1445428891", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "18958102", - "following": false, - "friends_count": 2400, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "careers.stackoverflow.com/saman", - "url": "https://t.co/jnFgndfW3D", - "expanded_url": "http://careers.stackoverflow.com/saman", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 1977, - "location": "Tehran", - "screen_name": "samanismael", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 49, - "name": "Saman Ismael", - "profile_use_background_image": false, - "description": "Full Stack Developer, C & Python Lover, GNU/Linux Ninja, Open Source Fan.", - "url": "https://t.co/jnFgndfW3D", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jan 13 23:16:38 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", - "favourites_count": 2592, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "664193187326521344", - "id": 664193187326521344, - "text": "Data is the new Oil. #BigData", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 21, - 29 - ], - "text": "BigData" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Nov 10 21:29:30 +0000 2015", - "source": "TweetDeck", - "favorite_count": 8, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 18958102, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "statuses_count": 187, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18958102/1444114007", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "37681147", - "following": false, - "friends_count": 1579, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/bradyasar", - "url": "https://t.co/FqEV3wDE2u", - "expanded_url": "http://about.me/bradyasar", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 4614, - "location": "Los Angeles, CA", - "screen_name": "YasarCorp", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 140, - "name": "Brad Yasar", - "profile_use_background_image": true, - "description": "Business Architect, Entrepreneur and Investor Greater Los Angeles Area, Venture Capital & Private Equity. Equity Crowdfunding @ CrowdfundX.io", - "url": "https://t.co/FqEV3wDE2u", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon May 04 15:21:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", - "favourites_count": 15661, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685593651905474560", - "id": 685593651905474560, - "text": "RT \u201cWe\u2019re giving cultivators the ability to get away from these poisons\u201d- Matthew Mills @MedX_Inc on @bizrockstars #cannabis", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 116, - 125 - ], - "text": "cannabis" - } - ], - "user_mentions": [ - { - "screen_name": "MedX_Inc", - "id_str": "4261167493", - "id": 4261167493, - "indices": [ - 89, - 98 - ], - "name": "Med-X" - }, - { - "screen_name": "bizrockstars", - "id_str": "525713285", - "id": 525713285, - "indices": [ - 102, - 115 - ], - "name": "Business Rockstars" - } - ] - }, - "created_at": "Fri Jan 08 22:47:18 +0000 2016", - "source": "Vytmn", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 37681147, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1073, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/37681147/1382740340", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2832545398", - "following": false, - "friends_count": 4819, - "entities": { - "description": { - "urls": [ - { - "display_url": "sprawlgeek.com/p/bio.html", - "url": "https://t.co/8rLwARBvup", - "expanded_url": "http://www.sprawlgeek.com/p/bio.html", - "indices": [ - 59, - 82 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "sprawlgeek.com", - "url": "http://t.co/pUn9V1gXKx", - "expanded_url": "http://www.sprawlgeek.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 9132, - "location": "Iowa", - "screen_name": "sprawlgeek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 137, - "name": "Sprawlgeek", - "profile_use_background_image": true, - "description": "Reality from the Edge of the Network. Tablet Watchman! \nhttps://t.co/8rLwARBvup", - "url": "http://t.co/pUn9V1gXKx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", - "profile_background_color": "0084B4", - "created_at": "Wed Oct 15 19:22:42 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", - "favourites_count": 1688, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685605289744142336", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 146, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 258, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 276, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPCYOFVAAANwe8.jpg", - "type": "photo", - "indices": [ - 47, - 70 - ], - "media_url": "http://pbs.twimg.com/media/CYPCYOFVAAANwe8.jpg", - "display_url": "pic.twitter.com/q7lqOO4Ipt", - "id_str": "685605289643540480", - "expanded_url": "http://twitter.com/sprawlgeek/status/685605289744142336/photo/1", - "id": 685605289643540480, - "url": "https://t.co/q7lqOO4Ipt" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "arstechnica.com/tech-policy/20\u2026", - "url": "https://t.co/mg7kLGjys7", - "expanded_url": "http://arstechnica.com/tech-policy/2016/01/uber-to-encrypt-rider-geo-location-data-pay-20000-to-settle-ny-privacy-flap/", - "indices": [ - 23, - 46 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:33:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685605289744142336, - "text": "Uber got off light...\n https://t.co/mg7kLGjys7 https://t.co/q7lqOO4Ipt", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitshot.com" - }, - "default_profile_image": false, - "id": 2832545398, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", - "statuses_count": 3234, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2832545398/1420726400", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3107351469", - "following": false, - "friends_count": 2424, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "git-scm.com", - "url": "http://t.co/YaM2RpAQp5", - "expanded_url": "http://git-scm.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "F05033", - "geo_enabled": false, - "followers_count": 2882, - "location": "Finland", - "screen_name": "planetgit", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "Planet Git", - "profile_use_background_image": false, - "description": "Curated news from the Git community. Git is a free and open source distributed version control system.", - "url": "http://t.co/YaM2RpAQp5", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Mar 23 10:43:42 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", - "favourites_count": 1, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684831105363656705", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z5BU2q", - "url": "https://t.co/0z9a6ISARU", - "expanded_url": "http://buff.ly/1Z5BU2q", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 20:17:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684831105363656705, - "text": "Neat new features in Git 2.7 https://t.co/0z9a6ISARU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 3107351469, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 68, - "is_translator": false - }, - { - "time_zone": "Vienna", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "23755643", - "following": false, - "friends_count": 20839, - "entities": { - "description": { - "urls": [ - { - "display_url": "linkd.in/1JT9h3X", - "url": "https://t.co/iJB2h1L78m", - "expanded_url": "http://linkd.in/1JT9h3X", - "indices": [ - 105, - 128 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "dixus.de", - "url": "http://t.co/sZ1DnHsEsZ", - "expanded_url": "http://www.dixus.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 28406, - "location": "Germany (Saxony)", - "screen_name": "dixus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 750, - "name": "Holger Kreissl", - "profile_use_background_image": false, - "description": "#mobile & #cloud enthusiast | #CleanCode | #dotnet | #aspnet | #enterpriseMobility | Find me on LinkedIn https://t.co/iJB2h1L78m", - "url": "http://t.co/sZ1DnHsEsZ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Mar 11 12:38:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", - "favourites_count": 1142, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685540390351597569", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1Zb2oj6", - "url": "https://t.co/WYppjNMu0h", - "expanded_url": "http://bit.ly/1Zb2oj6", - "indices": [ - 32, - 55 - ] - } - ], - "hashtags": [ - { - "indices": [ - 56, - 66 - ], - "text": "Developer" - }, - { - "indices": [ - 67, - 72 - ], - "text": "MVVM" - }, - { - "indices": [ - 73, - 81 - ], - "text": "Pattern" - }, - { - "indices": [ - 82, - 89 - ], - "text": "CSharp" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:15:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685540390351597569, - "text": "The MVVM pattern \u2013 The practice https://t.co/WYppjNMu0h #Developer #MVVM #Pattern #CSharp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "DixusTweeter" - }, - "default_profile_image": false, - "id": 23755643, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5551, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23755643/1441816836", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2491819189", - "following": false, - "friends_count": 2316, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/InTheCloudDan", - "url": "https://t.co/cOAiJln1jK", - "expanded_url": "https://github.com/InTheCloudDan", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 437, - "location": "", - "screen_name": "InTheCloudDan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Daniel O'Brien", - "profile_use_background_image": true, - "description": "I Heart #javascript #nodejs #docker #devops while dreaming of #thegreatoutdoors and a side of #growthhacking with my better half @FoodnFunAllDay", - "url": "https://t.co/cOAiJln1jK", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon May 12 18:28:48 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", - "favourites_count": 110, - "status": { - "retweet_count": 15, - "retweeted_status": { - "retweet_count": 15, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685287444514762753", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "type": "photo", - "indices": [ - 0, - 23 - ], - "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "display_url": "pic.twitter.com/DlXvgVMX0i", - "id_str": "685287444372144128", - "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", - "id": 685287444372144128, - "url": "https://t.co/DlXvgVMX0i" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:30:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685287444514762753, - "text": "https://t.co/DlXvgVMX0i", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 16, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685439447769415680", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "source_status_id_str": "685287444514762753", - "url": "https://t.co/DlXvgVMX0i", - "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "source_user_id_str": "6927562", - "id_str": "685287444372144128", - "id": 685287444372144128, - "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "type": "photo", - "indices": [ - 17, - 40 - ], - "source_status_id": 685287444514762753, - "source_user_id": 6927562, - "display_url": "pic.twitter.com/DlXvgVMX0i", - "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thomasfuchs", - "id_str": "6927562", - "id": 6927562, - "indices": [ - 3, - 15 - ], - "name": "Thomas Fuchs" - } - ] - }, - "created_at": "Fri Jan 08 12:34:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685439447769415680, - "text": "RT @thomasfuchs: https://t.co/DlXvgVMX0i", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2491819189, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 254, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "19300535", - "following": false, - "friends_count": 375, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "evilchi.li", - "url": "http://t.co/7Y1LuKzE5f", - "expanded_url": "http://evilchi.li/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "BFBFBF", - "profile_link_color": "2463A3", - "geo_enabled": true, - "followers_count": 418, - "location": "\u2615\ufe0f Seattle", - "screen_name": "evilchili", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "eeeveeelcheeeleee", - "profile_use_background_image": false, - "description": "evilchili is an application downloaded from the Internet. Are you sure you want to open it?", - "url": "http://t.co/7Y1LuKzE5f", - "profile_text_color": "212121", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", - "profile_background_color": "3F5D8A", - "created_at": "Wed Jan 21 18:47:47 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", - "favourites_count": 217, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "evilchili", - "in_reply_to_user_id": 19300535, - "in_reply_to_status_id_str": "685509884037607424", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685510082142978048", - "id": 685510082142978048, - "text": "@evilchili Never say \"yes\" to anything before you've had coffee.", - "in_reply_to_user_id_str": "19300535", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "evilchili", - "id_str": "19300535", - "id": 19300535, - "indices": [ - 0, - 10 - ], - "name": "eeeveeelcheeeleee" - } - ] - }, - "created_at": "Fri Jan 08 17:15:14 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685509884037607424, - "lang": "en" - }, - "default_profile_image": false, - "id": 19300535, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 22907, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19300535/1403829270", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "919464055", - "following": false, - "friends_count": 246, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tessamero.com", - "url": "https://t.co/eFmsIOI8OE", - "expanded_url": "http://tessamero.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "89C9FA", - "geo_enabled": true, - "followers_count": 1682, - "location": "Seattle, WA", - "screen_name": "TessaMero", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 199, - "name": "Tessa Mero", - "profile_use_background_image": true, - "description": "Teacher. Open Source Contributor. Organizer of @SeaPHP, @PNWPHP, and @JUGSeattle. Snowboarder. Video Game Lover. Speaker. Traveler. Dev Advocate for @Joomla", - "url": "https://t.co/eFmsIOI8OE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", - "profile_background_color": "89C9FA", - "created_at": "Thu Nov 01 17:12:23 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", - "favourites_count": 5619, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "shivaas", - "in_reply_to_user_id": 14636369, - "in_reply_to_status_id_str": "685585585096921088", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685601154823270400", - "id": 685601154823270400, - "text": "@shivaas thank you! I'm so excited for a career change!!!", - "in_reply_to_user_id_str": "14636369", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "shivaas", - "id_str": "14636369", - "id": 14636369, - "indices": [ - 0, - 8 - ], - "name": "Shivaas Gulati" - } - ] - }, - "created_at": "Fri Jan 08 23:17:07 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685585585096921088, - "lang": "en" - }, - "default_profile_image": false, - "id": 919464055, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 11074, - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "205936598", - "following": false, - "friends_count": 112, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 155, - "location": "Richland, WA", - "screen_name": "SanStaab", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Jonathan Staab", - "profile_use_background_image": true, - "description": "Web Developer trying to figure out how to code like Jesus would.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Thu Oct 21 22:56:11 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", - "favourites_count": 49, - "status": { - "retweet_count": 13471, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 13471, - "truncated": false, - "retweeted": false, - "id_str": "683681888687538177", - "id": 683681888687538177, - "text": "I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Jan 03 16:10:39 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 15366, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "684554177079414784", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JohnCleese", - "id_str": "10810102", - "id": 10810102, - "indices": [ - 3, - 14 - ], - "name": "John Cleese" - } - ] - }, - "created_at": "Wed Jan 06 01:56:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684554177079414784, - "text": "RT @JohnCleese: I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 205936598, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 628, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18195183", - "following": false, - "friends_count": 236, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gregaker.net", - "url": "https://t.co/wtcGV5PvaK", - "expanded_url": "http://www.gregaker.net/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 845, - "location": "Columbia, MO, USA", - "screen_name": "gaker", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 90, - "name": "\u0279\u04d9\u029e\u0250 \u0183\u04d9\u0279\u0183", - "profile_use_background_image": false, - "description": "I'm a thrasher, saxophone player and writer of code. DevOps @vinli", - "url": "https://t.co/wtcGV5PvaK", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Dec 17 18:15:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", - "favourites_count": 364, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684915042521890818", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "type": "photo", - "indices": [ - 78, - 101 - ], - "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "display_url": "pic.twitter.com/Nb0t9m7Kzu", - "id_str": "684915033961304064", - "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", - "id": 684915033961304064, - "url": "https://t.co/Nb0t9m7Kzu" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 51, - 55 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "vinli", - "id_str": "2409518833", - "id": 2409518833, - "indices": [ - 22, - 28 - ], - "name": "Vinli" - }, - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 37, - 42 - ], - "name": "Uber" - } - ] - }, - "created_at": "Thu Jan 07 01:50:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -115.2092535, - 35.984784 - ], - [ - -115.0610763, - 35.984784 - ], - [ - -115.0610763, - 36.137145 - ], - [ - -115.2092535, - 36.137145 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Paradise, NV", - "id": "8fa6d7a33b83ef26", - "name": "Paradise" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684915042521890818, - "text": "People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684928923247886336", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "source_status_id_str": "684915042521890818", - "url": "https://t.co/Nb0t9m7Kzu", - "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "source_user_id_str": "149705221", - "id_str": "684915033961304064", - "id": 684915033961304064, - "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "type": "photo", - "indices": [ - 94, - 117 - ], - "source_status_id": 684915042521890818, - "source_user_id": 149705221, - "display_url": "pic.twitter.com/Nb0t9m7Kzu", - "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 67, - 71 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "markhaidar", - "id_str": "149705221", - "id": 149705221, - "indices": [ - 3, - 14 - ], - "name": "Mark Haidar" - }, - { - "screen_name": "vinli", - "id_str": "2409518833", - "id": 2409518833, - "indices": [ - 38, - 44 - ], - "name": "Vinli" - }, - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 53, - 58 - ], - "name": "Uber" - } - ] - }, - "created_at": "Thu Jan 07 02:45:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684928923247886336, - "text": "RT @markhaidar: People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18195183, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3788, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18195183/1445621336", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "223102727", - "following": false, - "friends_count": 517, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "94D487", - "geo_enabled": true, - "followers_count": 316, - "location": "San Diego, CA", - "screen_name": "wulfmeister", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 28, - "name": "Mitchell Wulfman", - "profile_use_background_image": false, - "description": "JavaScript things, Meteor, UX. Striving to make bicycles for the mind. Currently taking HCI/UX classes at @DesignLabUCSD", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Dec 05 11:52:50 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", - "favourites_count": 1103, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685287692490260480", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "chrome.google.com/webstore/detai\u2026", - "url": "https://t.co/9fpcPvs8Hv", - "expanded_url": "https://chrome.google.com/webstore/detail/command-click-fix/leklllfdadjjglhllebogdjfdipdjhhp", - "indices": [ - 95, - 118 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:31:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685287692490260480, - "text": "Chrome extension to force Command-Click to open links in a new tab instead of the current one: https://t.co/9fpcPvs8Hv", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 223102727, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", - "statuses_count": 630, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/223102727/1445901786", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "15085681", - "following": false, - "friends_count": 170, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 151, - "location": "Dallas, TX", - "screen_name": "pkinney", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Powell Kinney", - "profile_use_background_image": true, - "description": "CTO at Vinli (@vinli)", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 11 15:30:11 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", - "favourites_count": 24, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684554991529508864", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 426, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "type": "photo", - "indices": [ - 117, - 140 - ], - "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "display_url": "pic.twitter.com/om0NgHGk0p", - "id_str": "684554991395323904", - "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", - "id": 684554991395323904, - "url": "https://t.co/om0NgHGk0p" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "hubs.ly/H01LMTC0", - "url": "https://t.co/hrCBzE0IY9", - "expanded_url": "http://hubs.ly/H01LMTC0", - "indices": [ - 78, - 101 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 8 - ], - "text": "CES2016" - } - ], - "user_mentions": [ - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 58, - 63 - ], - "name": "Uber" - }, - { - "screen_name": "reviewjournal", - "id_str": "15358759", - "id": 15358759, - "indices": [ - 102, - 116 - ], - "name": "Las Vegas RJ" - } - ] - }, - "created_at": "Wed Jan 06 02:00:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684554991529508864, - "text": "#CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.co/om0NgHGk0p", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "HubSpot" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684851893558841344", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 426, - "resize": "fit" - } - }, - "source_status_id_str": "684554991529508864", - "url": "https://t.co/om0NgHGk0p", - "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "source_user_id_str": "2409518833", - "id_str": "684554991395323904", - "id": 684554991395323904, - "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 684554991529508864, - "source_user_id": 2409518833, - "display_url": "pic.twitter.com/om0NgHGk0p", - "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "hubs.ly/H01LMTC0", - "url": "https://t.co/hrCBzE0IY9", - "expanded_url": "http://hubs.ly/H01LMTC0", - "indices": [ - 89, - 112 - ] - } - ], - "hashtags": [ - { - "indices": [ - 11, - 19 - ], - "text": "CES2016" - } - ], - "user_mentions": [ - { - "screen_name": "vinli", - "id_str": "2409518833", - "id": 2409518833, - "indices": [ - 3, - 9 - ], - "name": "Vinli" - }, - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 69, - 74 - ], - "name": "Uber" - }, - { - "screen_name": "reviewjournal", - "id_str": "15358759", - "id": 15358759, - "indices": [ - 113, - 127 - ], - "name": "Las Vegas RJ" - } - ] - }, - "created_at": "Wed Jan 06 21:39:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684851893558841344, - "text": "RT @vinli: #CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.c\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 15085681, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 76, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15085681/1409019019", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "220165520", - "following": false, - "friends_count": 1839, - "entities": { - "description": { - "urls": [ - { - "display_url": "blog.codeship.com", - "url": "http://t.co/egYbB2cZXI", - "expanded_url": "http://blog.codeship.com", - "indices": [ - 78, - 100 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "codeship.com", - "url": "https://t.co/1m0F4Hu8KN", - "expanded_url": "https://codeship.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "0044CC", - "geo_enabled": true, - "followers_count": 8668, - "location": "Boston, MA", - "screen_name": "codeship", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 457, - "name": "Codeship", - "profile_use_background_image": false, - "description": "We are the fastest hosted Continuous Delivery Platform. Check out our blog at http://t.co/egYbB2cZXI \u2013 Need help? Ask @CodeshipSupport", - "url": "https://t.co/1m0F4Hu8KN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Fri Nov 26 23:51:57 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", - "favourites_count": 1056, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612838136770561", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1LZxOpT", - "url": "https://t.co/lHbWAw8Trn", - "expanded_url": "http://bit.ly/1LZxOpT", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [ - { - "indices": [ - 21, - 30 - ], - "text": "Postgres" - } - ], - "user_mentions": [ - { - "screen_name": "leighchalliday", - "id_str": "119841821", - "id": 119841821, - "indices": [ - 39, - 54 - ], - "name": "Leigh Halliday" - } - ] - }, - "created_at": "Sat Jan 09 00:03:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612838136770561, - "text": "\"How to use JSONB in #Postgres.\" \u2013 via @leighchalliday\n\nhttps://t.co/lHbWAw8Trn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Meet Edgar" - }, - "default_profile_image": false, - "id": 220165520, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", - "statuses_count": 14740, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/220165520/1418855084", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2705064962", - "following": false, - "friends_count": 4102, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "codecov.io", - "url": "https://t.co/rCxo4WMDnw", - "expanded_url": "https://codecov.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FC2B6A", - "geo_enabled": true, - "followers_count": 1745, - "location": "", - "screen_name": "codecov", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "Codecov", - "profile_use_background_image": false, - "description": "Continuous code coverage. Featuring browser extensions, branch coverage and coverage diffs for GitHub, Bitbucket and GitLab", - "url": "https://t.co/rCxo4WMDnw", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", - "profile_background_color": "06142B", - "created_at": "Sun Aug 03 22:36:47 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", - "favourites_count": 910, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "keimlink", - "in_reply_to_user_id": 44300359, - "in_reply_to_status_id_str": "684763065506738176", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684981810984423424", - "id": 684981810984423424, - "text": "@keimlink during some testing we found the package was having issues installing on some CI providers. I'll email you w/ more details.", - "in_reply_to_user_id_str": "44300359", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "keimlink", - "id_str": "44300359", - "id": 44300359, - "indices": [ - 0, - 9 - ], - "name": "Markus Zapke" - } - ] - }, - "created_at": "Thu Jan 07 06:16:04 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684763065506738176, - "lang": "en" - }, - "default_profile_image": false, - "id": 2705064962, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 947, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705064962/1440537606", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15534471", - "following": false, - "friends_count": 314, - "entities": { - "description": { - "urls": [ - { - "display_url": "ampproject.org/how-it-works/", - "url": "https://t.co/Wfq8ij4B8D", - "expanded_url": "https://www.ampproject.org/how-it-works/", - "indices": [ - 30, - 53 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "google.com/+MalteUbl", - "url": "https://t.co/297YfYX56s", - "expanded_url": "https://google.com/+MalteUbl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", - "notifications": false, - "profile_sidebar_fill_color": "FFFD91", - "profile_link_color": "FF0043", - "geo_enabled": true, - "followers_count": 5455, - "location": "San Francisco", - "screen_name": "cramforce", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 434, - "name": "Malte Ubl", - "profile_use_background_image": true, - "description": "Tech lead of the AMP Project. https://t.co/Wfq8ij4B8D \n\nI make www internet web pages for Google. Curator of @JSConfEU", - "url": "https://t.co/297YfYX56s", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jul 22 18:04:13 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FDE700", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", - "favourites_count": 2019, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 15534471, - "possibly_sensitive": false, - "id_str": "685531194465779712", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/cramforce/stat\u2026", - "url": "https://t.co/sPWPdVTY37", - "expanded_url": "https://twitter.com/cramforce/status/677892136809857024", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thealphanerd", - "id_str": "150664007", - "id": 150664007, - "indices": [ - 0, - 13 - ], - "name": "Make Fyles" - }, - { - "screen_name": "kosamari", - "id_str": "8470842", - "id": 8470842, - "indices": [ - 14, - 23 - ], - "name": "Mariko Kosaka" - } - ] - }, - "created_at": "Fri Jan 08 18:39:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "15534471", - "place": null, - "in_reply_to_screen_name": "cramforce", - "in_reply_to_status_id_str": "685530600741056513", - "truncated": false, - "id": 685531194465779712, - "text": "@thealphanerd @kosamari also https://t.co/sPWPdVTY37", - "coordinates": null, - "in_reply_to_status_id": 685530600741056513, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 15534471, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", - "statuses_count": 18017, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15534471/1398619165", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "771681", - "following": false, - "friends_count": 2112, - "entities": { - "description": { - "urls": [ - { - "display_url": "pronoun.is/he", - "url": "https://t.co/h4IxIYLYdk", - "expanded_url": "http://pronoun.is/he", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/glowcoil/statu\u2026", - "url": "https://t.co/7vUIPFlyCV", - "expanded_url": "https://twitter.com/glowcoil/status/660314122010034176", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "BBBBBB", - "geo_enabled": true, - "followers_count": 6803, - "location": "Chicago, IL /via Alaska", - "screen_name": "ELLIOTTCABLE", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 156, - "name": "~", - "profile_use_background_image": false, - "description": "Topical muggle. {PL,Q}T. I invented Ruby, Node.js, and all of the LISPs. Now I'm inventing Paws.\n\n[warning: contains bitterant.] https://t.co/h4IxIYLYdk", - "url": "https://t.co/7vUIPFlyCV", - "profile_text_color": "AAAAAA", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Feb 14 06:37:31 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", - "favourites_count": 14574, - "status": { - "geo": { - "coordinates": [ - 41.86747694, - -87.63303779 - ], - "type": "Point" - }, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -87.940033, - 41.644102 - ], - [ - -87.523993, - 41.644102 - ], - [ - -87.523993, - 42.0230669 - ], - [ - -87.940033, - 42.0230669 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Chicago, IL", - "id": "1d9a5370a355ab0c", - "name": "Chicago" - }, - "in_reply_to_screen_name": "ProductHunt", - "in_reply_to_user_id": 2208027565, - "in_reply_to_status_id_str": "685091084314263552", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685232357117440000", - "id": 685232357117440000, - "text": "@ProductHunt @netflix @TheCruziest Sense 7? Is that different from Sense 8?", - "in_reply_to_user_id_str": "2208027565", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ProductHunt", - "id_str": "2208027565", - "id": 2208027565, - "indices": [ - 0, - 12 - ], - "name": "Product Hunt" - }, - { - "screen_name": "netflix", - "id_str": "16573941", - "id": 16573941, - "indices": [ - 13, - 21 - ], - "name": "Netflix US" - }, - { - "screen_name": "TheCruziest", - "id_str": "303796625", - "id": 303796625, - "indices": [ - 22, - 34 - ], - "name": "Steven Cruz" - } - ] - }, - "created_at": "Thu Jan 07 22:51:39 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": { - "coordinates": [ - -87.63303779, - 41.86747694 - ], - "type": "Point" - }, - "contributors": null, - "in_reply_to_status_id": 685091084314263552, - "lang": "en" - }, - "default_profile_image": false, - "id": 771681, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 94590, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/771681/1414127033", - "is_translator": false - }, - { - "time_zone": "Brussels", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "87257431", - "following": false, - "friends_count": 998, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "il.ly", - "url": "http://t.co/welccj0beF", - "expanded_url": "http://il.ly/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", - "notifications": false, - "profile_sidebar_fill_color": "171717", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1555, - "location": "Kortrijk, Belgium", - "screen_name": "illyism", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 70, - "name": "Ilias Ismanalijev", - "profile_use_background_image": true, - "description": "Technology \u2022 Designer \u2022 Developer \u2022 Student #NMCT", - "url": "http://t.co/welccj0beF", - "profile_text_color": "F2F2F2", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", - "profile_background_color": "242424", - "created_at": "Tue Nov 03 19:01:00 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", - "favourites_count": 10505, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "JoshDComp", - "in_reply_to_user_id": 28402389, - "in_reply_to_status_id_str": "683864186821152768", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684060669654745088", - "id": 684060669654745088, - "text": "@JoshDComp Sure is, I like the realistic politics of it all and the well crafted VFX. It sucked me right into its world.", - "in_reply_to_user_id_str": "28402389", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JoshDComp", - "id_str": "28402389", - "id": 28402389, - "indices": [ - 0, - 10 - ], - "name": "Josh Compton" - } - ] - }, - "created_at": "Mon Jan 04 17:15:47 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683864186821152768, - "lang": "en" - }, - "default_profile_image": false, - "id": 87257431, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", - "statuses_count": 244, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/87257431/1410266462", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "236341530", - "following": false, - "friends_count": 235, - "entities": { - "description": { - "urls": [ - { - "display_url": "mkeas.org", - "url": "https://t.co/bfRlctkCoN", - "expanded_url": "http://mkeas.org", - "indices": [ - 126, - 149 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mkeas.org", - "url": "https://t.co/bfRlctkCoN", - "expanded_url": "http://mkeas.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": false, - "followers_count": 1320, - "location": "Houston, TX", - "screen_name": "matthiasak", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 72, - "name": "Mountain Matt", - "profile_use_background_image": true, - "description": "@TheIronYard, @DestinationCode, @SpaceCityConfs, INFOSEC crypto'r, powderhound, Lisper + \u03bb, @CapitalFactory alum, @HoustonJS, https://t.co/bfRlctkCoN.", - "url": "https://t.co/bfRlctkCoN", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Mon Jan 10 10:58:39 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", - "favourites_count": 1199, - "status": { - "retweet_count": 302, - "retweeted_status": { - "retweet_count": 302, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685523354514661376", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", - "type": "photo", - "indices": [ - 38, - 61 - ], - "media_url": "http://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", - "display_url": "pic.twitter.com/mIeZrUDrga", - "id_str": "685521688662904832", - "expanded_url": "http://twitter.com/tcburning/status/685523354514661376/photo/1", - "id": 685521688662904832, - "url": "https://t.co/mIeZrUDrga" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:07:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685523354514661376, - "text": "When the code compiles with no errors https://t.co/mIeZrUDrga", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 620, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612131580968962", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "685523354514661376", - "url": "https://t.co/mIeZrUDrga", - "media_url": "http://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", - "source_user_id_str": "399742659", - "id_str": "685521688662904832", - "id": 685521688662904832, - "media_url_https": "https://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", - "type": "photo", - "indices": [ - 53, - 76 - ], - "source_status_id": 685523354514661376, - "source_user_id": 399742659, - "display_url": "pic.twitter.com/mIeZrUDrga", - "expanded_url": "http://twitter.com/tcburning/status/685523354514661376/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tcburning", - "id_str": "399742659", - "id": 399742659, - "indices": [ - 3, - 13 - ], - "name": "Terri" - } - ] - }, - "created_at": "Sat Jan 09 00:00:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612131580968962, - "text": "RT @tcburning: When the code compiles with no errors https://t.co/mIeZrUDrga", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 236341530, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", - "statuses_count": 4932, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/236341530/1449188760", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "252481460", - "following": false, - "friends_count": 24, - "entities": { - "description": { - "urls": [ - { - "display_url": "travis-ci.com", - "url": "http://t.co/0HN89Zqxlk", - "expanded_url": "http://travis-ci.com", - "indices": [ - 96, - 118 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "travis-ci.org", - "url": "http://t.co/3Tz19DXfYa", - "expanded_url": "http://travis-ci.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 14345, - "location": "Berlin, Germany", - "screen_name": "travisci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 527, - "name": "Travis CI", - "profile_use_background_image": true, - "description": "Hi I\u2019m Travis CI, a hosted continuous integration service for open source and private projects: http://t.co/0HN89Zqxlk System status updates: @traviscistatus", - "url": "http://t.co/3Tz19DXfYa", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 15 08:34:44 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", - "favourites_count": 1506, - "status": { - "retweet_count": 26, - "retweeted_status": { - "retweet_count": 26, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684128421845270530", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 271, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 453, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 453, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "type": "photo", - "indices": [ - 109, - 132 - ], - "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "display_url": "pic.twitter.com/fdIihYvkFb", - "id_str": "684128421732036608", - "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", - "id": 684128421732036608, - "url": "https://t.co/fdIihYvkFb" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "spr.ly/6018BnRke", - "url": "https://t.co/TkOgMSX4VM", - "expanded_url": "http://spr.ly/6018BnRke", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "github", - "id_str": "13334762", - "id": 13334762, - "indices": [ - 62, - 69 - ], - "name": "GitHub" - }, - { - "screen_name": "travisci", - "id_str": "252481460", - "id": 252481460, - "indices": [ - 74, - 83 - ], - "name": "Travis CI" - } - ] - }, - "created_at": "Mon Jan 04 21:45:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684128421845270530, - "text": "How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/fdIihYvkFb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 23, - "contributors": null, - "source": " SAP" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685085167086612481", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 271, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 453, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 453, - "resize": "fit" - } - }, - "source_status_id_str": "684128421845270530", - "url": "https://t.co/fdIihYvkFb", - "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "source_user_id_str": "100292002", - "id_str": "684128421732036608", - "id": 684128421732036608, - "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "type": "photo", - "indices": [ - 125, - 140 - ], - "source_status_id": 684128421845270530, - "source_user_id": 100292002, - "display_url": "pic.twitter.com/fdIihYvkFb", - "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "spr.ly/6018BnRke", - "url": "https://t.co/TkOgMSX4VM", - "expanded_url": "http://spr.ly/6018BnRke", - "indices": [ - 101, - 124 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SAPCommNet", - "id_str": "100292002", - "id": 100292002, - "indices": [ - 3, - 14 - ], - "name": "SAP CommunityNetwork" - }, - { - "screen_name": "github", - "id_str": "13334762", - "id": 13334762, - "indices": [ - 78, - 85 - ], - "name": "GitHub" - }, - { - "screen_name": "travisci", - "id_str": "252481460", - "id": 252481460, - "indices": [ - 90, - 99 - ], - "name": "Travis CI" - } - ] - }, - "created_at": "Thu Jan 07 13:06:46 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685085167086612481, - "text": "RT @SAPCommNet: How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/f\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 252481460, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10343, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/252481460/1383837670", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "86938585", - "following": false, - "friends_count": 134, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "circleci.com", - "url": "https://t.co/UfEqN58rWH", - "expanded_url": "https://circleci.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1584, - "location": "San Francisco", - "screen_name": "paulbiggar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 99, - "name": "Paul Biggar", - "profile_use_background_image": true, - "description": "Likes developers, chocolate, startups, history and pastries. Founder of CircleCI.", - "url": "https://t.co/UfEqN58rWH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 02 13:08:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", - "favourites_count": 286, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685370475611078657", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "newyorker.com/magazine/2016/\u2026", - "url": "https://t.co/vbDkTva03y", - "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", - "indices": [ - 38, - 61 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "NewYorker", - "id_str": "14677919", - "id": 14677919, - "indices": [ - 66, - 76 - ], - "name": "The New Yorker" - } - ] - }, - "created_at": "Fri Jan 08 08:00:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685370475611078657, - "text": "Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685496070474973185", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "newyorker.com/magazine/2016/\u2026", - "url": "https://t.co/vbDkTva03y", - "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", - "indices": [ - 55, - 78 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sarahgbooks", - "id_str": "111095563", - "id": 111095563, - "indices": [ - 3, - 15 - ], - "name": "Sarah Gilmartin" - }, - { - "screen_name": "NewYorker", - "id_str": "14677919", - "id": 14677919, - "indices": [ - 83, - 93 - ], - "name": "The New Yorker" - } - ] - }, - "created_at": "Fri Jan 08 16:19:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685496070474973185, - "text": "RT @sarahgbooks: Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 86938585, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1368, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "381223731", - "following": false, - "friends_count": 4793, - "entities": { - "description": { - "urls": [ - { - "display_url": "discuss.circleci.com", - "url": "https://t.co/g79TaPamp5", - "expanded_url": "https://discuss.circleci.com/", - "indices": [ - 91, - 114 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "circleci.com", - "url": "https://t.co/Ls6HRLMgUX", - "expanded_url": "https://circleci.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "343434", - "geo_enabled": true, - "followers_count": 6832, - "location": "San Francisco", - "screen_name": "circleci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 170, - "name": "CircleCI", - "profile_use_background_image": false, - "description": "Easy, fast, continuous integration and deployment for web apps and iOS. For support, visit https://t.co/g79TaPamp5 or email sayhi@circleci.com.", - "url": "https://t.co/Ls6HRLMgUX", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", - "profile_background_color": "FBFBFB", - "created_at": "Tue Sep 27 23:33:23 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", - "favourites_count": 3138, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613493333135360", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "circle.ci/1VRcA07", - "url": "https://t.co/qbnualOiX6", - "expanded_url": "http://circle.ci/1VRcA07", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "iamkevinbell", - "id_str": "635809882", - "id": 635809882, - "indices": [ - 18, - 31 - ], - "name": "Kevin Bell" - }, - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 35, - 44 - ], - "name": "CircleCI" - }, - { - "screen_name": "fredsters_s", - "id_str": "14868289", - "id": 14868289, - "indices": [ - 51, - 63 - ], - "name": "Fred Stevens-Smith" - }, - { - "screen_name": "rainforestqa", - "id_str": "1012066448", - "id": 1012066448, - "indices": [ - 67, - 80 - ], - "name": "Rainforest QA" - } - ] - }, - "created_at": "Sat Jan 09 00:06:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613493333135360, - "text": "UPCOMING WEBINAR: @iamkevinbell of @circleci & @fredsters_s of @rainforestqa are talking Continuous Deployment: https://t.co/qbnualOiX6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 381223731, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2396, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7900402", - "following": false, - "friends_count": 392, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "280096", - "geo_enabled": true, - "followers_count": 342, - "location": "San Francisco, CA", - "screen_name": "tvachon", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "pizza: the gathering", - "profile_use_background_image": true, - "description": "putting the travis in circleci since 2014", - "url": null, - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Aug 02 05:37:07 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", - "favourites_count": 605, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685271730709860352", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/claire_mcnear/\u2026", - "url": "https://t.co/FTDSIfvCan", - "expanded_url": "https://twitter.com/claire_mcnear/status/685250840723091456", - "indices": [ - 47, - 70 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 01:28:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685271730709860352, - "text": "dying\ni am ded\npls feed my dog while i am gone https://t.co/FTDSIfvCan", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 16, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685273249534459904", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/claire_mcnear/\u2026", - "url": "https://t.co/FTDSIfvCan", - "expanded_url": "https://twitter.com/claire_mcnear/status/685250840723091456", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "coda", - "id_str": "637533", - "id": 637533, - "indices": [ - 3, - 8 - ], - "name": "Springtime for Coda" - } - ] - }, - "created_at": "Fri Jan 08 01:34:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685273249534459904, - "text": "RT @coda: dying\ni am ded\npls feed my dog while i am gone https://t.co/FTDSIfvCan", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 7900402, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", - "statuses_count": 5614, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "10399172", - "following": false, - "friends_count": 1295, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chmod777self.com", - "url": "http://t.co/6w6v8SGBti", - "expanded_url": "http://www.chmod777self.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "0A1EA3", - "geo_enabled": true, - "followers_count": 1147, - "location": "Fresno, CA", - "screen_name": "jasnell", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 87, - "name": "James M Snell", - "profile_use_background_image": true, - "description": "IBM Technical Lead for Node.js;\nNode.js TSC Member;\nAll around nice guy.", - "url": "http://t.co/6w6v8SGBti", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Nov 20 01:19:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", - "favourites_count": 2143, - "status": { - "retweet_count": 12, - "retweeted_status": { - "retweet_count": 12, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685242905007529984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/members\u2026", - "url": "https://t.co/jGV36DgAJg", - "expanded_url": "https://github.com/nodejs/membership/issues/12", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 23:33:34 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685242905007529984, - "text": "Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/jGV36DgAJg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 24, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685268279959539712", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/members\u2026", - "url": "https://t.co/jGV36DgAJg", - "expanded_url": "https://github.com/nodejs/membership/issues/12", - "indices": [ - 126, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dshaw", - "id_str": "806757", - "id": 806757, - "indices": [ - 3, - 9 - ], - "name": "Dan Shaw" - } - ] - }, - "created_at": "Fri Jan 08 01:14:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685268279959539712, - "text": "RT @dshaw: Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 10399172, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 3178, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10399172/1447689090", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3278631516", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "planet.com", - "url": "http://t.co/v3JIlJoOTW", - "expanded_url": "http://planet.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 294, - "location": "Space", - "screen_name": "dovesinspace", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Doves in space", - "profile_use_background_image": true, - "description": "We are in space.", - "url": "http://t.co/v3JIlJoOTW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 13 15:59:42 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", - "favourites_count": 0, - "status": { - "geo": { - "coordinates": [ - 29.91434343, - -83.47056022 - ], - "type": "Point" - }, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/4ec01c9dbc693497.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -87.634643, - 24.396308 - ], - [ - -79.974307, - 24.396308 - ], - [ - -79.974307, - 31.001056 - ], - [ - -87.634643, - 31.001056 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Florida, USA", - "id": "4ec01c9dbc693497", - "name": "Florida" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 4, - "truncated": false, - "retweeted": false, - "id_str": "651885332665909248", - "id": 651885332665909248, - "text": "I'm in space now! Satellite Flock 2b Satellite 14 reporting for duty.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Oct 07 22:22:29 +0000 2015", - "source": "Deployment tweets", - "favorite_count": 5, - "favorited": false, - "coordinates": { - "coordinates": [ - -83.47056022, - 29.91434343 - ], - "type": "Point" - }, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 3278631516, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 21, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3278631516/1436803648", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "13567", - "following": false, - "friends_count": 1520, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "christianheilmann.com/2013/02/11/hel\u2026", - "url": "http://t.co/fQKlvTCkqN", - "expanded_url": "http://christianheilmann.com/2013/02/11/hello-it-is-me-on-twitter/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", - "notifications": false, - "profile_sidebar_fill_color": "B7CCBB", - "profile_link_color": "13456B", - "geo_enabled": true, - "followers_count": 52181, - "location": "London, UK", - "screen_name": "codepo8", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3779, - "name": "Christian Heilmann", - "profile_use_background_image": true, - "description": "Developer Evangelist - all things open web, HTML5, writing and working together. Works at Microsoft on Edge, opinions totally my own. #nofilter", - "url": "http://t.co/fQKlvTCkqN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", - "profile_background_color": "336699", - "created_at": "Tue Nov 21 17:20:09 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", - "favourites_count": 386, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/3eb2c704fe8a50cb.json", - "country": "United Kingdom", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -0.112442, - 51.5068 - ], - [ - -0.0733794, - 51.5068 - ], - [ - -0.0733794, - 51.522161 - ], - [ - -0.112442, - 51.522161 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "GB", - "contained_within": [], - "full_name": "City of London, London", - "id": "3eb2c704fe8a50cb", - "name": "City of London" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 6, - "truncated": false, - "retweeted": false, - "id_str": "685605010403667968", - "id": 685605010403667968, - "text": "MDN Demo studio is shutting down. Download your demos for safekeeping.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:32:27 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 13567, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", - "statuses_count": 107974, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13567/1409269429", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2202531", - "following": false, - "friends_count": 211, - "entities": { - "description": { - "urls": [ - { - "display_url": "amazon.com/gp/product/B01\u2026", - "url": "https://t.co/C1nuRVMz0N", - "expanded_url": "http://www.amazon.com/gp/product/B018R7TV5W/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B018R7TV5W&linkCode=as2&tag=robceenet-20&linkId=377XBIIH55EWYAIK", - "indices": [ - 11, - 34 - ] - }, - { - "display_url": "flickr.com/photos/robceem\u2026", - "url": "https://t.co/7dMPlQvYLO", - "expanded_url": "https://www.flickr.com/photos/robceemoz/", - "indices": [ - 88, - 111 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "robcee.net", - "url": "http://t.co/R8fIMaSLvf", - "expanded_url": "http://robcee.net/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 1216, - "location": "Toronto, Canada", - "screen_name": "robcee", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 107, - "name": "robcee", - "profile_use_background_image": false, - "description": "#author of https://t.co/C1nuRVMz0N\n\n#drones #media #coffee #software #tech #photography https://t.co/7dMPlQvYLO", - "url": "http://t.co/R8fIMaSLvf", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Mar 25 19:52:34 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", - "favourites_count": 4161, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "matejnovak", - "in_reply_to_user_id": 15459306, - "in_reply_to_status_id_str": "685563535359868928", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685563745901350912", - "id": 685563745901350912, - "text": "@matejnovak Niagara Kale Brandy has a nasty vibe to it. But OK!", - "in_reply_to_user_id_str": "15459306", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "matejnovak", - "id_str": "15459306", - "id": 15459306, - "indices": [ - 0, - 11 - ], - "name": "Matej Novak \u23ce" - } - ] - }, - "created_at": "Fri Jan 08 20:48:28 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685563535359868928, - "lang": "en" - }, - "default_profile_image": false, - "id": 2202531, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 19075, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2202531/1420472405", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17663776", - "following": false, - "friends_count": 1126, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "planet.com", - "url": "http://t.co/AwAXMrXqVJ", - "expanded_url": "http://planet.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 12386, - "location": "San Francisco, CA, Earth", - "screen_name": "planetlabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 488, - "name": "Planet Labs", - "profile_use_background_image": false, - "description": "Delivering the most current images of our entire Earth.", - "url": "http://t.co/AwAXMrXqVJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Nov 27 00:10:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", - "favourites_count": 2014, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613487188398081", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", - "type": "photo", - "indices": [ - 97, - 120 - ], - "media_url": "http://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", - "display_url": "pic.twitter.com/01wqlNRcRx", - "id_str": "685613486617935872", - "expanded_url": "http://twitter.com/planetlabs/status/685613487188398081/photo/1", - "id": 685613486617935872, - "url": "https://t.co/01wqlNRcRx" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "planet.com/gallery/uganda\u2026", - "url": "https://t.co/QqEWAf2iM1", - "expanded_url": "https://www.planet.com/gallery/uganda-smallholders/", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [ - { - "indices": [ - 64, - 71 - ], - "text": "Uganda" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:06:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613487188398081, - "text": "Small holder and subsistence farms on a sunny day in Namutumba, #Uganda https://t.co/QqEWAf2iM1 https://t.co/01wqlNRcRx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 17663776, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", - "statuses_count": 1658, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17663776/1439957443", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "41693", - "following": false, - "friends_count": 415, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blankbaby.com", - "url": "http://t.co/bOEDVPeU3G", - "expanded_url": "http://www.blankbaby.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18572/newlogotop.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 4310, - "location": "Philadelphia, PA", - "screen_name": "blankbaby", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 279, - "name": "Scott McNulty", - "profile_use_background_image": true, - "description": "I am almost Internet famous. Host of @Random_Trek.", - "url": "http://t.co/bOEDVPeU3G", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Dec 05 00:57:26 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", - "favourites_count": 48, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "dsilverman", - "in_reply_to_user_id": 1010181, - "in_reply_to_status_id_str": "685602406990622720", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685602609508519940", - "id": 685602609508519940, - "text": "@dsilverman @GlennF ;) Alexa isn\u2019t super smart but very useful for my needs!", - "in_reply_to_user_id_str": "1010181", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dsilverman", - "id_str": "1010181", - "id": 1010181, - "indices": [ - 0, - 11 - ], - "name": "dwight silverman" - }, - { - "screen_name": "GlennF", - "id_str": "8315692", - "id": 8315692, - "indices": [ - 12, - 19 - ], - "name": "Glenn Fleishman" - } - ] - }, - "created_at": "Fri Jan 08 23:22:54 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685602406990622720, - "lang": "en" - }, - "default_profile_image": false, - "id": 41693, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18572/newlogotop.png", - "statuses_count": 25874, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41693/1362153090", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3171325140", - "following": false, - "friends_count": 18, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sideway.com", - "url": "http://t.co/pwaxdZGj2W", - "expanded_url": "http://sideway.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "04AA04", - "geo_enabled": false, - "followers_count": 244, - "location": "", - "screen_name": "sideway", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Sideway", - "profile_use_background_image": false, - "description": "Share a conversation.", - "url": "http://t.co/pwaxdZGj2W", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", - "profile_background_color": "000000", - "created_at": "Fri Apr 24 22:41:17 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "663825999717466112", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "type": "photo", - "indices": [ - 12, - 35 - ], - "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "display_url": "pic.twitter.com/Ng3S2UnWDz", - "id_str": "663825968667037697", - "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", - "id": 663825968667037697, - "url": "https://t.co/Ng3S2UnWDz" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Nov 09 21:10:26 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 663825999717466112, - "text": "New plates! https://t.co/Ng3S2UnWDz", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 12, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "663826029887270912", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "663825999717466112", - "url": "https://t.co/Ng3S2UnWDz", - "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "source_user_id_str": "346026614", - "id_str": "663825968667037697", - "id": 663825968667037697, - "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "type": "photo", - "indices": [ - 28, - 51 - ], - "source_status_id": 663825999717466112, - "source_user_id": 346026614, - "display_url": "pic.twitter.com/Ng3S2UnWDz", - "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "eranhammer", - "id_str": "346026614", - "id": 346026614, - "indices": [ - 3, - 14 - ], - "name": "Eran Hammer" - } - ] - }, - "created_at": "Mon Nov 09 21:10:33 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 663826029887270912, - "text": "RT @eranhammer: New plates! https://t.co/Ng3S2UnWDz", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3171325140, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5768872", - "following": false, - "friends_count": 8374, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "garyvaynerchuk.com/agvbook/", - "url": "https://t.co/n1TN3hgA84", - "expanded_url": "http://www.garyvaynerchuk.com/agvbook/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFE6CE", - "profile_link_color": "268CCD", - "geo_enabled": true, - "followers_count": 1202100, - "location": "NYC", - "screen_name": "garyvee", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 24979, - "name": "Gary Vaynerchuk", - "profile_use_background_image": true, - "description": "Family 1st! but after that, Businessman. CEO of @vaynermedia. Host of #AskGaryVee show and a dude who Loves the Hustle, the @NYJets .. snapchat - garyvee", - "url": "https://t.co/n1TN3hgA84", - "profile_text_color": "996633", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", - "profile_background_color": "152932", - "created_at": "Fri May 04 15:32:48 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", - "favourites_count": 2449, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "thebluestripe", - "in_reply_to_user_id": 168651555, - "in_reply_to_status_id_str": "685579166855630849", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685579435031019520", - "id": 685579435031019520, - "text": "@thebluestripe @djkhaled hahaha", - "in_reply_to_user_id_str": "168651555", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thebluestripe", - "id_str": "168651555", - "id": 168651555, - "indices": [ - 0, - 14 - ], - "name": "Rich Seidel" - }, - { - "screen_name": "djkhaled", - "id_str": "27673684", - "id": 27673684, - "indices": [ - 15, - 24 - ], - "name": "DJ KHALED" - } - ] - }, - "created_at": "Fri Jan 08 21:50:49 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685579166855630849, - "lang": "tl" - }, - "default_profile_image": false, - "id": 5768872, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", - "statuses_count": 135759, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5768872/1423844975", - "is_translator": false - }, - { - "time_zone": "Casablanca", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "270431388", - "following": false, - "friends_count": 795, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "MarquisdeGeek.com", - "url": "https://t.co/rAxaxp0oUr", - "expanded_url": "http://www.MarquisdeGeek.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 581, - "location": "aka Steven Goodwin. London", - "screen_name": "MarquisdeGeek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 88, - "name": "Marquis de Geek", - "profile_use_background_image": true, - "description": "Maker, author, developer, educator, IoT dev, magician, musician, computer historian, sommelier, SGX creator, electronics guy, AFOL & geek. Works as edtech CTO", - "url": "https://t.co/rAxaxp0oUr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Tue Mar 22 16:17:37 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", - "favourites_count": 400, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685486479271919616", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 460, - "h": 960, - "resize": "fit" - }, - "medium": { - "w": 460, - "h": 960, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 325, - "h": 680, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", - "type": "photo", - "indices": [ - 24, - 47 - ], - "media_url": "http://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", - "display_url": "pic.twitter.com/Mo9VcBHIwC", - "id_str": "685485412517830656", - "expanded_url": "http://twitter.com/MarquisdeGeek/status/685486479271919616/photo/1", - "id": 685485412517830656, - "url": "https://t.co/Mo9VcBHIwC" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:41:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685486479271919616, - "text": "Crossing the streams... https://t.co/Mo9VcBHIwC", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 270431388, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3959, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/270431388/1406890949", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "148221086", - "following": false, - "friends_count": 617, - "entities": { - "description": { - "urls": [ - { - "display_url": "shop.oreilly.com/product/063692\u2026", - "url": "https://t.co/Zk7ejlHptN", - "expanded_url": "http://shop.oreilly.com/product/0636920042686.do", - "indices": [ - 135, - 158 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "GetYodlr.com", - "url": "https://t.co/hKMaAlWDdW", - "expanded_url": "https://GetYodlr.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 730, - "location": "SF Bay Area", - "screen_name": "rosskukulinski", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 128, - "name": "Ross Kukulinski", - "profile_use_background_image": true, - "description": "Founder @getyodlr. Entrepreneur & advisor. Work with #nodejs, #webrtc, #docker, #kubernetes, #coreos. Watch my Intro to CoreOS Course: https://t.co/Zk7ejlHptN", - "url": "https://t.co/hKMaAlWDdW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed May 26 04:22:53 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", - "favourites_count": 4397, - "status": { - "retweet_count": 17, - "retweeted_status": { - "retweet_count": 17, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685464980976566272", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nodejs.org/en/blog/commun\u2026", - "url": "https://t.co/oHkMziRUpk", - "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:16:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685464980976566272, - "text": "Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Sprout Social" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685466291180859392", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nodejs.org/en/blog/commun\u2026", - "url": "https://t.co/oHkMziRUpk", - "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nodejs", - "id_str": "91985735", - "id": 91985735, - "indices": [ - 3, - 10 - ], - "name": "Node.js" - } - ] - }, - "created_at": "Fri Jan 08 14:21:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685466291180859392, - "text": "RT @nodejs: Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 148221086, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8070, - "is_translator": false - }, - { - "time_zone": "Budapest", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "98630536", - "following": false, - "friends_count": 296, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eduardmoldovan.com", - "url": "http://t.co/4zJV0jnlaJ", - "expanded_url": "http://eduardmoldovan.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "0E0D02", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 336, - "location": "Budapest", - "screen_name": "edimoldovan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "Edu\u00e1rd", - "profile_use_background_image": true, - "description": "Views are my own", - "url": "http://t.co/4zJV0jnlaJ", - "profile_text_color": "39BD91", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Dec 22 13:09:46 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", - "favourites_count": 234, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685508856013795330", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wareable.com/fitness-tracke\u2026", - "url": "https://t.co/HDOdrQpuJU", - "expanded_url": "http://www.wareable.com/fitness-trackers/mastercard-and-coin-bringing-wearable-payments-to-fitness-trackers-including-moov-2147", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:10:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685508856013795330, - "text": "MasterCard bringing wearable payments to fitness trackers including Moov https://t.co/HDOdrQpuJU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "OS X" - }, - "default_profile_image": false, - "id": 98630536, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", - "statuses_count": 12782, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/98630536/1392472068", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14164724", - "following": false, - "friends_count": 1639, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sarahmei.com", - "url": "https://t.co/3q8gb3xaz4", - "expanded_url": "http://sarahmei.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 11825, - "location": "San Francisco, CA", - "screen_name": "sarahmei", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 761, - "name": "Sarah Mei", - "profile_use_background_image": true, - "description": "Software developer. Founder of @railsbridge. Director of Ruby Central. Chief Consultant of @devmyndsoftware. IM IN UR BASE TEACHIN U HOW TO REFACTOR UR CODE", - "url": "https://t.co/3q8gb3xaz4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Mon Mar 17 18:05:43 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", - "favourites_count": 1453, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685599933215424513", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/anildash/statu\u2026", - "url": "https://t.co/436K3Lfx5F", - "expanded_url": "https://twitter.com/anildash/status/685496167464042496", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:12:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -87.940033, - 41.644102 - ], - [ - -87.523993, - 41.644102 - ], - [ - -87.523993, - 42.0230669 - ], - [ - -87.940033, - 42.0230669 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Chicago, IL", - "id": "1d9a5370a355ab0c", - "name": "Chicago" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685599933215424513, - "text": "First time I have tapped the moments icon on purpose. https://t.co/436K3Lfx5F", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14164724, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 13073, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14164724/1423457101", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "25183606", - "following": false, - "friends_count": 746, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "charlotteis.co.uk", - "url": "https://t.co/j2AKIKz3ZY", - "expanded_url": "http://charlotteis.co.uk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "44615D", - "geo_enabled": false, - "followers_count": 2004, - "location": "Bletchley, UK.", - "screen_name": "Charlotteis", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 116, - "name": "console.warn()", - "profile_use_background_image": false, - "description": "they/them. human ghost emoji writing code with @mandsdigital. open sourcer with @hoodiehq and creator of @yourfirstpr.", - "url": "https://t.co/j2AKIKz3ZY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 18 23:28:54 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", - "favourites_count": 8750, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685612995809021952", - "id": 685612995809021952, - "text": "caligula \ud83d\ude0f", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:04:10 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "es" - }, - "default_profile_image": false, - "id": 25183606, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", - "statuses_count": 49653, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25183606/1420483218", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "253464752", - "following": false, - "friends_count": 492, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jessicard.com", - "url": "https://t.co/DwRzTkmHMB", - "expanded_url": "http://jessicard.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542881894/twitter.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "00B9E1", - "geo_enabled": true, - "followers_count": 5249, - "location": "than franthithco", - "screen_name": "jessicard", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 241, - "name": "jessicard", - "profile_use_background_image": false, - "description": "The jessicard physically strong, moves rapidly, momentum is powerful, is one of the most has the courage and strength of the software engineer in the world.", - "url": "https://t.co/DwRzTkmHMB", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", - "profile_background_color": "F6F6F6", - "created_at": "Thu Feb 17 09:04:56 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", - "favourites_count": 28149, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613922137849856", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPKOL5WcAUzoB8.jpg", - "type": "photo", - "indices": [ - 88, - 111 - ], - "media_url": "http://pbs.twimg.com/media/CYPKOL5WcAUzoB8.jpg", - "display_url": "pic.twitter.com/SVH70Fy4JQ", - "id_str": "685613913350762501", - "expanded_url": "http://twitter.com/jessicard/status/685613922137849856/photo/1", - "id": 685613913350762501, - "url": "https://t.co/SVH70Fy4JQ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:07:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613922137849856, - "text": "drew some random (unfinished) ornamentation on my flight to boston with my apple pencil https://t.co/SVH70Fy4JQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 253464752, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542881894/twitter.png", - "statuses_count": 23083, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/253464752/1353017487", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "198661893", - "following": false, - "friends_count": 247, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eliseworthy.com", - "url": "http://t.co/Lfr9fIzPIs", - "expanded_url": "http://eliseworthy.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "41625C", - "geo_enabled": true, - "followers_count": 1862, - "location": "Seattle", - "screen_name": "eliseworthy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 123, - "name": "Elise Worthy", - "profile_use_background_image": false, - "description": "software developer | founder of @brandworthy and @adaacademy", - "url": "http://t.co/Lfr9fIzPIs", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", - "profile_background_color": "946369", - "created_at": "Mon Oct 04 22:38:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", - "favourites_count": 689, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "666384799402098688", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "meetup.com/Seattle-PyLadi\u2026", - "url": "https://t.co/bg7tLVR1Tp", - "expanded_url": "http://www.meetup.com/Seattle-PyLadies/events/225729699/", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PyLadiesSEA", - "id_str": "885603211", - "id": 885603211, - "indices": [ - 38, - 50 - ], - "name": "Seattle PyLadies" - } - ] - }, - "created_at": "Mon Nov 16 22:38:11 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 666384799402098688, - "text": "What's better than a holiday party? A @PyLadiesSEA holiday party! This Wednesday! Go! https://t.co/bg7tLVR1Tp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 198661893, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "statuses_count": 3529, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/198661893/1377996487", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "13368452", - "following": false, - "friends_count": 1123, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ultrasaurus.com", - "url": "http://t.co/VV3FrrBWLv", - "expanded_url": "http://www.ultrasaurus.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 7943, - "location": "San Francisco, CA", - "screen_name": "ultrasaurus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 720, - "name": "Sarah Allen", - "profile_use_background_image": true, - "description": "I write code, connect pixels and speak truth to make change. @bridgefoundry @mightyverse @18F", - "url": "http://t.co/VV3FrrBWLv", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Mon Feb 11 23:40:05 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", - "favourites_count": 1229, - "status": { - "retweet_count": 9418, - "retweeted_status": { - "retweet_count": 9418, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685415626945507328", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 614, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 1024, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "type": "photo", - "indices": [ - 27, - 50 - ], - "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "display_url": "pic.twitter.com/4ZnTo0GI7T", - "id_str": "685415615138545664", - "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", - "id": 685415615138545664, - "url": "https://t.co/4ZnTo0GI7T" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 10:59:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685415626945507328, - "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1176, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685477649523712000", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 614, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 1024, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "685415626945507328", - "url": "https://t.co/4ZnTo0GI7T", - "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "source_user_id_str": "2782137901", - "id_str": "685415615138545664", - "id": 685415615138545664, - "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "type": "photo", - "indices": [ - 48, - 71 - ], - "source_status_id": 685415626945507328, - "source_user_id": 2782137901, - "display_url": "pic.twitter.com/4ZnTo0GI7T", - "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "neil_finnweevil", - "id_str": "2782137901", - "id": 2782137901, - "indices": [ - 3, - 19 - ], - "name": "kiki montparnasse" - } - ] - }, - "created_at": "Fri Jan 08 15:06:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685477649523712000, - "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 13368452, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 10335, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13368452/1396530463", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3300795096", - "following": false, - "friends_count": 296, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "current.sh", - "url": "http://t.co/43c4yK78zi", - "expanded_url": "http://current.sh", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "268BD2", - "geo_enabled": false, - "followers_count": 192, - "location": "", - "screen_name": "currentsh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "current.sh", - "profile_use_background_image": false, - "description": "the log management saas you've been looking for. built by @vektrasays.", - "url": "http://t.co/43c4yK78zi", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Jul 29 20:09:17 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", - "favourites_count": 8, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685167345329831936", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "producthunt.com/tech/current-3\u2026", - "url": "https://t.co/ccTe9IhAJB", - "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", - "indices": [ - 89, - 112 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "currentsh", - "id_str": "3300795096", - "id": 3300795096, - "indices": [ - 40, - 50 - ], - "name": "current.sh" - }, - { - "screen_name": "ProductHunt", - "id_str": "2208027565", - "id": 2208027565, - "indices": [ - 54, - 66 - ], - "name": "Product Hunt" - } - ] - }, - "created_at": "Thu Jan 07 18:33:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0775fcd6eb188d7c.json", - "country": "United States", - "attributes": {}, - "place_type": "neighborhood", - "bounding_box": { - "coordinates": [ - [ - [ - -118.3613876, - 34.043829 - ], - [ - -118.309037, - 34.043829 - ], - [ - -118.309037, - 34.083516 - ], - [ - -118.3613876, - 34.083516 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Mid-Wilshire, Los Angeles", - "id": "0775fcd6eb188d7c", - "name": "Mid-Wilshire" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685167345329831936, - "text": "I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685171895952490498", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "producthunt.com/tech/current-3\u2026", - "url": "https://t.co/ccTe9IhAJB", - "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "evanphx", - "id_str": "5444392", - "id": 5444392, - "indices": [ - 3, - 11 - ], - "name": "Evan Phoenix" - }, - { - "screen_name": "currentsh", - "id_str": "3300795096", - "id": 3300795096, - "indices": [ - 53, - 63 - ], - "name": "current.sh" - }, - { - "screen_name": "ProductHunt", - "id_str": "2208027565", - "id": 2208027565, - "indices": [ - 67, - 79 - ], - "name": "Product Hunt" - } - ] - }, - "created_at": "Thu Jan 07 18:51:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685171895952490498, - "text": "RT @evanphx: I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3300795096, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 36, - "is_translator": false - }, - { - "time_zone": "Tijuana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "21170138", - "following": false, - "friends_count": 403, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "current.sh", - "url": "https://t.co/43c4yJPxHK", - "expanded_url": "http://current.sh", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 2049, - "location": "San Francisco, CA", - "screen_name": "jlsuttles", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 106, - "name": "\u2728Jessica Suttles\u2728", - "profile_use_background_image": true, - "description": "Co-Founder & CTO @currentsh", - "url": "https://t.co/43c4yJPxHK", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Feb 18 04:49:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", - "favourites_count": 4794, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": 21170138, - "possibly_sensitive": false, - "id_str": "685602455166402560", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 760, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 445, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 252, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", - "type": "photo", - "indices": [ - 52, - 75 - ], - "media_url": "http://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", - "display_url": "pic.twitter.com/oTGa0hNVPe", - "id_str": "685602441597829122", - "expanded_url": "http://twitter.com/Neurotic/status/685602455166402560/photo/1", - "id": 685602441597829122, - "url": "https://t.co/oTGa0hNVPe" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jlsuttles", - "id_str": "21170138", - "id": 21170138, - "indices": [ - 0, - 10 - ], - "name": "\u2728Jessica Suttles\u2728" - }, - { - "screen_name": "SukieTweets", - "id_str": "479414936", - "id": 479414936, - "indices": [ - 11, - 23 - ], - "name": "Sukie" - } - ] - }, - "created_at": "Fri Jan 08 23:22:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "21170138", - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": "jlsuttles", - "in_reply_to_status_id_str": "685597105696579584", - "truncated": false, - "id": 685602455166402560, - "text": "@jlsuttles @SukieTweets is feeling super cute. See? https://t.co/oTGa0hNVPe", - "coordinates": null, - "in_reply_to_status_id": 685597105696579584, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685607191902957568", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 760, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 445, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 252, - "resize": "fit" - } - }, - "source_status_id_str": "685602455166402560", - "url": "https://t.co/oTGa0hNVPe", - "media_url": "http://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", - "source_user_id_str": "5727802", - "id_str": "685602441597829122", - "id": 685602441597829122, - "media_url_https": "https://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", - "type": "photo", - "indices": [ - 66, - 89 - ], - "source_status_id": 685602455166402560, - "source_user_id": 5727802, - "display_url": "pic.twitter.com/oTGa0hNVPe", - "expanded_url": "http://twitter.com/Neurotic/status/685602455166402560/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Neurotic", - "id_str": "5727802", - "id": 5727802, - "indices": [ - 3, - 12 - ], - "name": "Mark Mandel" - }, - { - "screen_name": "jlsuttles", - "id_str": "21170138", - "id": 21170138, - "indices": [ - 14, - 24 - ], - "name": "\u2728Jessica Suttles\u2728" - }, - { - "screen_name": "SukieTweets", - "id_str": "479414936", - "id": 479414936, - "indices": [ - 25, - 37 - ], - "name": "Sukie" - } - ] - }, - "created_at": "Fri Jan 08 23:41:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685607191902957568, - "text": "RT @Neurotic: @jlsuttles @SukieTweets is feeling super cute. See? https://t.co/oTGa0hNVPe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 21170138, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 10074, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21170138/1448066737", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15714950", - "following": false, - "friends_count": 35, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 179, - "location": "", - "screen_name": "ruoho", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Clint Ruoho", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", - "profile_background_color": "022330", - "created_at": "Sun Aug 03 22:20:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", - "favourites_count": 18, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682197364367425537", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wtfismyip.com", - "url": "https://t.co/QfqlilFduQ", - "expanded_url": "https://wtfismyip.com/", - "indices": [ - 13, - 36 - ] - } - ], - "hashtags": [ - { - "indices": [ - 111, - 122 - ], - "text": "FreeBasics" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 13:51:40 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682197364367425537, - "text": "Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682229939072937984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wtfismyip.com", - "url": "https://t.co/QfqlilFduQ", - "expanded_url": "https://wtfismyip.com/", - "indices": [ - 28, - 51 - ] - } - ], - "hashtags": [ - { - "indices": [ - 126, - 137 - ], - "text": "FreeBasics" - } - ], - "user_mentions": [ - { - "screen_name": "wtfismyip", - "id_str": "359037938", - "id": 359037938, - "indices": [ - 3, - 13 - ], - "name": "WTF IS MY IP!?!?!?" - } - ] - }, - "created_at": "Wed Dec 30 16:01:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682229939072937984, - "text": "RT @wtfismyip: Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 15714950, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 17, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "755178", - "following": false, - "friends_count": 1779, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bob.ippoli.to", - "url": "http://t.co/8Z9JtvGN55", - "expanded_url": "http://bob.ippoli.to/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 5239, - "location": "San Francisco, CA", - "screen_name": "etrepum", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 315, - "name": "Bob Ippolito", - "profile_use_background_image": true, - "description": "@playfig cofounder/CTO. @missionbit board member & lead instructor. Former founder/CTO of Mochi Media. Open source python/js/erlang/haskell/obj-c/ruby developer", - "url": "http://t.co/8Z9JtvGN55", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Feb 06 09:23:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", - "favourites_count": 5819, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685542014901862400", - "id": 685542014901862400, - "text": "Not infrequently I wish slide presentations had not replaced the memo. Makes visual what should be text.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:22:07 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685543293849976832", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "bltroutwine", - "id_str": "298541778", - "id": 298541778, - "indices": [ - 3, - 15 - ], - "name": "Brian L. Troutwine" - } - ] - }, - "created_at": "Fri Jan 08 19:27:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685543293849976832, - "text": "RT @bltroutwine: Not infrequently I wish slide presentations had not replaced the memo. Makes visual what should be text.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 755178, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 11505, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/755178/1353725023", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "19315174", - "following": false, - "friends_count": 123, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", - "notifications": false, - "profile_sidebar_fill_color": "96C6ED", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 798506, - "location": "Redmond, WA", - "screen_name": "MicrosoftEdge", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5871, - "name": "Microsoft Edge", - "profile_use_background_image": false, - "description": "The official Twitter handle for Microsoft Edge, the new browser from Microsoft.", - "url": null, - "profile_text_color": "453C3C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", - "profile_background_color": "3B94D9", - "created_at": "Wed Jan 21 23:42:14 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", - "favourites_count": 23, - "status": { - "retweet_count": 5, - "retweeted_status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685504215343443968", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "display_url": "pic.twitter.com/v6YqGwUtih", - "id_str": "685503595572101120", - "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", - "id": 685503595572101120, - "url": "https://t.co/v6YqGwUtih" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "aka.ms/Xwzpnt", - "url": "https://t.co/g4IP0j7aDz", - "expanded_url": "http://aka.ms/Xwzpnt", - "indices": [ - 81, - 104 - ] - } - ], - "hashtags": [ - { - "indices": [ - 56, - 64 - ], - "text": "Winning" - }, - { - "indices": [ - 66, - 80 - ], - "text": "MicrosoftEdge" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:51:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685504215343443968, - "text": "The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6YqGwUtih", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685576467468677120", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "source_status_id_str": "685504215343443968", - "url": "https://t.co/v6YqGwUtih", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "source_user_id_str": "164457546", - "id_str": "685503595572101120", - "id": 685503595572101120, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "type": "photo", - "indices": [ - 124, - 140 - ], - "source_status_id": 685504215343443968, - "source_user_id": 164457546, - "display_url": "pic.twitter.com/v6YqGwUtih", - "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "aka.ms/Xwzpnt", - "url": "https://t.co/g4IP0j7aDz", - "expanded_url": "http://aka.ms/Xwzpnt", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [ - { - "indices": [ - 75, - 83 - ], - "text": "Winning" - }, - { - "indices": [ - 85, - 99 - ], - "text": "MicrosoftEdge" - } - ], - "user_mentions": [ - { - "screen_name": "WindowsCanada", - "id_str": "164457546", - "id": 164457546, - "indices": [ - 3, - 17 - ], - "name": "Windows Canada" - } - ] - }, - "created_at": "Fri Jan 08 21:39:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685576467468677120, - "text": "RT @WindowsCanada: The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Sprinklr" - }, - "default_profile_image": false, - "id": 19315174, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", - "statuses_count": 1205, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19315174/1438621793", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "77343214", - "following": false, - "friends_count": 1042, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "danabauer.github.io", - "url": "http://t.co/qTVR3d3mlq", - "expanded_url": "http://danabauer.github.io/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "424F98", - "geo_enabled": true, - "followers_count": 2467, - "location": "Philly (mostly)", - "screen_name": "agentdana", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 203, - "name": "Dana Bauer", - "profile_use_background_image": false, - "description": "Geographer, Pythonista, open data enthusiast, mom to a future astronaut. I work at Planet Labs.", - "url": "http://t.co/qTVR3d3mlq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Sep 25 23:48:03 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", - "favourites_count": 12277, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "taramurtha", - "in_reply_to_user_id": 24011702, - "in_reply_to_status_id_str": "685597724864081922", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685598350121529344", - "id": 685598350121529344, - "text": "@taramurtha gaaaahhhhhh", - "in_reply_to_user_id_str": "24011702", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "taramurtha", - "id_str": "24011702", - "id": 24011702, - "indices": [ - 0, - 11 - ], - "name": "Tara Murtha" - } - ] - }, - "created_at": "Fri Jan 08 23:05:59 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685597724864081922, - "lang": "und" - }, - "default_profile_image": false, - "id": 77343214, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4395, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/77343214/1444143700", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1141081634", - "following": false, - "friends_count": 90, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dev.modern.ie", - "url": "http://t.co/r0F7MBTxRE", - "expanded_url": "http://dev.modern.ie/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0078D7", - "geo_enabled": true, - "followers_count": 57823, - "location": "Redmond, WA", - "screen_name": "MSEdgeDev", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 741, - "name": "Microsoft Edge Dev", - "profile_use_background_image": true, - "description": "Official news and updates from the Microsoft Web Platform team on #MicrosoftEdge and #InternetExplorer", - "url": "http://t.co/r0F7MBTxRE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", - "profile_background_color": "282828", - "created_at": "Sat Feb 02 00:26:21 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", - "favourites_count": 146, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685516791003533312", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "channel9.msdn.com/Blogs/One-Dev-\u2026", - "url": "https://t.co/tL4lVK9BLo", - "expanded_url": "https://channel9.msdn.com/Blogs/One-Dev-Minute/Building-Websites-and-UWP-Apps-with-a-Yeoman-Generator", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:41:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685516791003533312, - "text": "One Dev Minute: Building websites and UWP apps with a Yeoman generator https://t.co/tL4lVK9BLo", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 1141081634, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", - "statuses_count": 1681, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1141081634/1430352524", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13348", - "following": false, - "friends_count": 53207, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/RobertScoble", - "url": "https://t.co/TZTxRbMttp", - "expanded_url": "https://facebook.com/RobertScoble", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 484965, - "location": "Half Moon Bay, California, USA", - "screen_name": "Scobleizer", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 25249, - "name": "Robert Scoble", - "profile_use_background_image": true, - "description": "@Rackspace's Futurist searches the world looking for what's happening on the bleeding edge of technology and brings that learning to the Internet.", - "url": "https://t.co/TZTxRbMttp", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Nov 20 23:43:44 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", - "favourites_count": 62360, - "status": { - "retweet_count": 6, - "retweeted_status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685589440765407232", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "display_url": "pic.twitter.com/sMEhdHTceR", - "id_str": "685589432909467648", - "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", - "id": 685589432909467648, - "url": "https://t.co/sMEhdHTceR" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1K3q0PT", - "url": "https://t.co/sXih7Q0R2J", - "expanded_url": "http://bit.ly/1K3q0PT", - "indices": [ - 55, - 78 - ] - } - ], - "hashtags": [ - { - "indices": [ - 50, - 54 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "richardbranson", - "id_str": "8161232", - "id": 8161232, - "indices": [ - 94, - 109 - ], - "name": "Richard Branson" - } - ] - }, - "created_at": "Fri Jan 08 22:30:34 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685589440765407232, - "text": "Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/sMEhdHTceR", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 11, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685593198958264320", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "685589440765407232", - "url": "https://t.co/sMEhdHTceR", - "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "source_user_id_str": "6853442", - "id_str": "685589432909467648", - "id": 685589432909467648, - "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "type": "photo", - "indices": [ - 126, - 140 - ], - "source_status_id": 685589440765407232, - "source_user_id": 6853442, - "display_url": "pic.twitter.com/sMEhdHTceR", - "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1K3q0PT", - "url": "https://t.co/sXih7Q0R2J", - "expanded_url": "http://bit.ly/1K3q0PT", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [ - { - "indices": [ - 66, - 70 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "willobrien", - "id_str": "6853442", - "id": 6853442, - "indices": [ - 3, - 14 - ], - "name": "Will O'Brien" - }, - { - "screen_name": "richardbranson", - "id_str": "8161232", - "id": 8161232, - "indices": [ - 110, - 125 - ], - "name": "Richard Branson" - } - ] - }, - "created_at": "Fri Jan 08 22:45:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593198958264320, - "text": "RT @willobrien: Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 13348, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", - "statuses_count": 67747, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13348/1450153194", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "84699828", - "following": false, - "friends_count": 2258, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 7005, - "location": "", - "screen_name": "barb_oconnor", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 65, - "name": "Barbara O'Connor", - "profile_use_background_image": true, - "description": "Girl next door mash-up :) Technology lover and biz dev aficionado. #Runner,#SUP boarder,#cyclist,#mother, dog lover, & US#Marine. Tweets=mine", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Oct 23 21:58:22 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", - "favourites_count": 67, - "status": { - "retweet_count": 183, - "retweeted_status": { - "retweet_count": 183, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685501440639516673", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "cainc.to/yArk3o", - "url": "https://t.co/DG3FPs9ryJ", - "expanded_url": "http://cainc.to/yArk3o", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "OttoBerkes", - "id_str": "192448160", - "id": 192448160, - "indices": [ - 30, - 41 - ], - "name": "Otto Berkes" - }, - { - "screen_name": "TheEbizWizard", - "id_str": "16290014", - "id": 16290014, - "indices": [ - 70, - 84 - ], - "name": "Jason Bloomberg" - }, - { - "screen_name": "ForbesTech", - "id_str": "14885549", - "id": 14885549, - "indices": [ - 88, - 99 - ], - "name": "Forbes Tech News" - } - ] - }, - "created_at": "Fri Jan 08 16:40:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685501440639516673, - "text": "From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "SocialFlow" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685541320170029056", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "cainc.to/yArk3o", - "url": "https://t.co/DG3FPs9ryJ", - "expanded_url": "http://cainc.to/yArk3o", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CAinc", - "id_str": "14790085", - "id": 14790085, - "indices": [ - 3, - 9 - ], - "name": "CA Technologies" - }, - { - "screen_name": "OttoBerkes", - "id_str": "192448160", - "id": 192448160, - "indices": [ - 41, - 52 - ], - "name": "Otto Berkes" - }, - { - "screen_name": "TheEbizWizard", - "id_str": "16290014", - "id": 16290014, - "indices": [ - 81, - 95 - ], - "name": "Jason Bloomberg" - }, - { - "screen_name": "ForbesTech", - "id_str": "14885549", - "id": 14885549, - "indices": [ - 99, - 110 - ], - "name": "Forbes Tech News" - } - ] - }, - "created_at": "Fri Jan 08 19:19:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685541320170029056, - "text": "RT @CAinc: From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "GaggleAMP" - }, - "default_profile_image": false, - "id": 84699828, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1939, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/84699828/1440076545", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "539153822", - "following": false, - "friends_count": 8, - "entities": { - "description": { - "urls": [ - { - "display_url": "github.com/contact", - "url": "https://t.co/O4Rsiuqv", - "expanded_url": "https://github.com/contact", - "indices": [ - 54, - 75 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "developer.github.com", - "url": "http://t.co/WSCoZacuEW", - "expanded_url": "http://developer.github.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 8330, - "location": "SF", - "screen_name": "GitHubAPI", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 246, - "name": "GitHub API", - "profile_use_background_image": true, - "description": "GitHub API announcements. Send feedback/questions to https://t.co/O4Rsiuqv", - "url": "http://t.co/WSCoZacuEW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 28 15:52:25 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", - "favourites_count": 9, - "status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684448831757500416", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "developer.github.com/changes/2016-0\u2026", - "url": "https://t.co/kZjASxXV1N", - "expanded_url": "https://developer.github.com/changes/2016-01-05-api-enhancements-for-working-with-organization-permissions-are-now-official/", - "indices": [ - 76, - 99 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 18:58:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684448831757500416, - "text": "API enhancements for working with organization permissions are now official https://t.co/kZjASxXV1N", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 19, - "contributors": null, - "source": "Hubot @GitHubAPI Integration" - }, - "default_profile_image": false, - "id": 539153822, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 431, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "309528017", - "following": false, - "friends_count": 91, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "npmjs.org", - "url": "http://t.co/Yr2xkfPzXd", - "expanded_url": "http://npmjs.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "CB3837", - "geo_enabled": false, - "followers_count": 56429, - "location": "oakland, ca", - "screen_name": "npmjs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1130, - "name": "npmbot", - "profile_use_background_image": false, - "description": "i'm the package manager for javascript. problems? try @npm_support and #npm on freenode.", - "url": "http://t.co/Yr2xkfPzXd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Jun 02 07:20:53 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", - "favourites_count": 195, - "status": { - "retweet_count": 17, - "retweeted_status": { - "retweet_count": 17, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685257850961014784", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/npm/npm/releas\u2026", - "url": "https://t.co/BL0ttn3fLO", - "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", - "indices": [ - 121, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "npmjs", - "id_str": "309528017", - "id": 309528017, - "indices": [ - 4, - 10 - ], - "name": "npmbot" - } - ] - }, - "created_at": "Fri Jan 08 00:32:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685257850961014784, - "text": "New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https://t.co/BL0ttn3fLO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685258201831309312", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/npm/npm/releas\u2026", - "url": "https://t.co/BL0ttn3fLO", - "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", - "indices": [ - 143, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ReBeccaOrg", - "id_str": "579491588", - "id": 579491588, - "indices": [ - 3, - 14 - ], - "name": "Rebecca v7.3.2" - }, - { - "screen_name": "npmjs", - "id_str": "309528017", - "id": 309528017, - "indices": [ - 20, - 26 - ], - "name": "npmbot" - } - ] - }, - "created_at": "Fri Jan 08 00:34:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685258201831309312, - "text": "RT @ReBeccaOrg: New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 309528017, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", - "statuses_count": 2512, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "785764172", - "following": false, - "friends_count": 3, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "status.github.com", - "url": "http://t.co/efPUg9pga5", - "expanded_url": "http://status.github.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 29278, - "location": "", - "screen_name": "githubstatus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 669, - "name": "GitHub Status", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/efPUg9pga5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Aug 28 00:04:59 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", - "favourites_count": 3, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685287597560696833", - "id": 685287597560696833, - "text": "Everything operating normally.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:31:09 +0000 2016", - "source": "OctoStatus Production", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 785764172, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 929, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "82874321", - "following": false, - "friends_count": 1136, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.amber.org", - "url": "https://t.co/hvvj9vghmG", - "expanded_url": "http://blog.amber.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 840, - "location": "Seattle, WA", - "screen_name": "petrillic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 121, - "name": "Security Therapist", - "profile_use_background_image": true, - "description": "Social Justice _________. Nerd. Tinkerer. General trouble maker. Always learning more useless things. Homo sum humani a me nihil alienum puto.", - "url": "https://t.co/hvvj9vghmG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Fri Oct 16 13:11:25 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", - "favourites_count": 3414, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "seattlish", - "in_reply_to_user_id": 1589747622, - "in_reply_to_status_id_str": "685613961148936193", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685614336455254016", - "id": 685614336455254016, - "text": "@seattlish can we all just drive out there and line up to smack him? It doesn\u2019t solve the problem, unfortunately.", - "in_reply_to_user_id_str": "1589747622", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "seattlish", - "id_str": "1589747622", - "id": 1589747622, - "indices": [ - 0, - 10 - ], - "name": "Seattlish" - } - ] - }, - "created_at": "Sat Jan 09 00:09:30 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685613961148936193, - "lang": "en" - }, - "default_profile_image": false, - "id": 82874321, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 52179, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/82874321/1418621071", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "6297412", - "following": false, - "friends_count": 818, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "redmonk.com", - "url": "http://t.co/U63YEc1eN4", - "expanded_url": "http://redmonk.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 1019, - "location": "London", - "screen_name": "fintanr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 118, - "name": "Fintan Ryan", - "profile_use_background_image": true, - "description": "Industry analyst @redmonk. Business, technology, communities, data, platforms and occasional interjections.", - "url": "http://t.co/U63YEc1eN4", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Thu May 24 21:58:29 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", - "favourites_count": 1036, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685422437757005824", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mamamia.com.au/rules-for-visi\u2026", - "url": "https://t.co/3yc87RdloV", - "expanded_url": "http://www.mamamia.com.au/rules-for-visiting-a-newborn/", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sogrady", - "id_str": "143883", - "id": 143883, - "indices": [ - 83, - 91 - ], - "name": "steve o'grady" - }, - { - "screen_name": "girltuesday", - "id_str": "16833482", - "id": 16833482, - "indices": [ - 96, - 108 - ], - "name": "mko'g" - } - ] - }, - "created_at": "Fri Jan 08 11:26:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685422437757005824, - "text": "Two and a bit weeks in, and this reads so well.. https://t.co/3yc87RdloV, thinking @sogrady and @girltuesday may enjoy reading this too :).", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 6297412, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 4240, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6297412/1393521949", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "29170474", - "following": false, - "friends_count": 227, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sirupsen.com", - "url": "http://t.co/lGprTMnO09", - "expanded_url": "http://sirupsen.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "F7F7F7", - "profile_link_color": "0066AA", - "geo_enabled": true, - "followers_count": 3304, - "location": "Ottawa, Canada", - "screen_name": "Sirupsen", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 133, - "name": "Simon Eskildsen", - "profile_use_background_image": false, - "description": "WebScale @Shopify. Canadian in training.", - "url": "http://t.co/lGprTMnO09", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Apr 06 09:15:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EFEFEF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", - "favourites_count": 1073, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json", - "country": "Canada", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -76.353876, - 44.961937 - ], - [ - -75.246407, - 44.961937 - ], - [ - -75.246407, - 45.534511 - ], - [ - -76.353876, - 45.534511 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "CA", - "contained_within": [], - "full_name": "Ottawa, Ontario", - "id": "38d5974e82ed1a6c", - "name": "Ottawa" - }, - "in_reply_to_screen_name": "jnunemaker", - "in_reply_to_user_id": 4243, - "in_reply_to_status_id_str": "685581732322668544", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685594548618182656", - "id": 685594548618182656, - "text": "@jnunemaker Circuit breakers <3 Curious why you ended up building your own over using Semian's?", - "in_reply_to_user_id_str": "4243", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jnunemaker", - "id_str": "4243", - "id": 4243, - "indices": [ - 0, - 11 - ], - "name": "John Nunemaker" - } - ] - }, - "created_at": "Fri Jan 08 22:50:52 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685581732322668544, - "lang": "en" - }, - "default_profile_image": false, - "id": 29170474, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10223, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29170474/1379296952", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15911738", - "following": false, - "friends_count": 1688, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ryandlane.com", - "url": "http://t.co/eD11mzD1mC", - "expanded_url": "http://ryandlane.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1554, - "location": "San Francisco, CA", - "screen_name": "SquidDLane", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 108, - "name": "Ryan Lane", - "profile_use_background_image": true, - "description": "DevOps Engineer at Lyft, Site Operations volunteer at Wikimedia Foundation and SaltStack volunteer Developer.", - "url": "http://t.co/eD11mzD1mC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Aug 20 00:39:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", - "favourites_count": 26, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "SquidDLane", - "in_reply_to_user_id": 15911738, - "in_reply_to_status_id_str": "685203908256370688", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685204036606234624", - "id": 685204036606234624, - "text": "@tmclaughbos time to make a boto3_asg execution module ;)", - "in_reply_to_user_id_str": "15911738", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tmclaughbos", - "id_str": "740920470", - "id": 740920470, - "indices": [ - 0, - 12 - ], - "name": "Tom McLaughlin" - } - ] - }, - "created_at": "Thu Jan 07 20:59:07 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685203908256370688, - "lang": "en" - }, - "default_profile_image": false, - "id": 15911738, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4934, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1442355080", - "following": false, - "friends_count": 556, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 604, - "location": "Pittsburgh, PA", - "screen_name": "emdantrim", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "hOI!!!! i'm emmie!!!", - "profile_use_background_image": true, - "description": "I type special words that computers sometimes find meaning in. my words are mine. she. @travisci", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun May 19 22:47:02 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", - "favourites_count": 7314, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "wilkieii", - "in_reply_to_user_id": 17047955, - "in_reply_to_status_id_str": "685613356603031552", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613747482800129", - "id": 685613747482800129, - "text": "@wilkieii if you build an application that does this for you, twitter will send you a cease and desist and then implement the feature", - "in_reply_to_user_id_str": "17047955", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wilkieii", - "id_str": "17047955", - "id": 17047955, - "indices": [ - 0, - 9 - ], - "name": "wilkie" - } - ] - }, - "created_at": "Sat Jan 09 00:07:10 +0000 2016", - "source": "TweetDeck", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685613356603031552, - "lang": "en" - }, - "default_profile_image": false, - "id": 1442355080, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 6202, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1442355080/1450668537", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11764", - "following": false, - "friends_count": 61, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cdevroe.com", - "url": "http://t.co/1iJmxH8GUB", - "expanded_url": "http://cdevroe.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", - "notifications": false, - "profile_sidebar_fill_color": "999999", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 3740, - "location": "Jermyn, PA USA", - "screen_name": "cdevroe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 179, - "name": "Colin Devroe", - "profile_use_background_image": false, - "description": "Pronounced: See-Dev-Roo. Co-founder of @plainmade & @coalwork. JW. Kayaker.", - "url": "http://t.co/1iJmxH8GUB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Nov 08 03:01:15 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", - "favourites_count": 10667, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679337835888058368", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "plainmade.com/blog/14578/lin\u2026", - "url": "https://t.co/XgBYYftnu4", - "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", - "indices": [ - 23, - 46 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "deathtostock", - "id_str": "1727323538", - "id": 1727323538, - "indices": [ - 51, - 64 - ], - "name": "Death To Stock" - }, - { - "screen_name": "jaredsinclair", - "id_str": "15004156", - "id": 15004156, - "indices": [ - 66, - 80 - ], - "name": "Jared Sinclair" - }, - { - "screen_name": "RyanClarkDH", - "id_str": "596003901", - "id": 596003901, - "indices": [ - 83, - 95 - ], - "name": "Ryan Clark" - }, - { - "screen_name": "miguelrios", - "id_str": "14717846", - "id": 14717846, - "indices": [ - 97, - 108 - ], - "name": "Miguel Rios" - }, - { - "screen_name": "aimeeshiree", - "id_str": "14347487", - "id": 14347487, - "indices": [ - 110, - 122 - ], - "name": "aimeeshiree" - }, - { - "screen_name": "nathanaeljm", - "id_str": "97536835", - "id": 97536835, - "indices": [ - 124, - 136 - ], - "name": "Nathanael J Mehrens" - } - ] - }, - "created_at": "Tue Dec 22 16:28:56 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679337835888058368, - "text": "Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, @nathanaeljm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679340399832522752", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "plainmade.com/blog/14578/lin\u2026", - "url": "https://t.co/XgBYYftnu4", - "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", - "indices": [ - 38, - 61 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "plainmade", - "id_str": "977048040", - "id": 977048040, - "indices": [ - 3, - 13 - ], - "name": "Plain" - }, - { - "screen_name": "deathtostock", - "id_str": "1727323538", - "id": 1727323538, - "indices": [ - 66, - 79 - ], - "name": "Death To Stock" - }, - { - "screen_name": "jaredsinclair", - "id_str": "15004156", - "id": 15004156, - "indices": [ - 81, - 95 - ], - "name": "Jared Sinclair" - }, - { - "screen_name": "RyanClarkDH", - "id_str": "596003901", - "id": 596003901, - "indices": [ - 98, - 110 - ], - "name": "Ryan Clark" - }, - { - "screen_name": "miguelrios", - "id_str": "14717846", - "id": 14717846, - "indices": [ - 112, - 123 - ], - "name": "Miguel Rios" - }, - { - "screen_name": "aimeeshiree", - "id_str": "14347487", - "id": 14347487, - "indices": [ - 125, - 137 - ], - "name": "aimeeshiree" - }, - { - "screen_name": "nathanaeljm", - "id_str": "97536835", - "id": 97536835, - "indices": [ - 139, - 140 - ], - "name": "Nathanael J Mehrens" - } - ] - }, - "created_at": "Tue Dec 22 16:39:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679340399832522752, - "text": "RT @plainmade: Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 11764, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", - "statuses_count": 42666, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11764/1444176827", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "13332442", - "following": false, - "friends_count": 337, - "entities": { - "description": { - "urls": [ - { - "display_url": "flickr.com/photos/mikepan\u2026", - "url": "https://t.co/gIfppzqMQO", - "expanded_url": "http://www.flickr.com/photos/mikepanchenko/11139648213/", - "indices": [ - 117, - 140 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mihasya.com", - "url": "http://t.co/8ZVGv5uCcl", - "expanded_url": "http://mihasya.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 842, - "location": "The steak by the m'lake", - "screen_name": "mihasya", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 52, - "name": "Pancakes", - "profile_use_background_image": true, - "description": "making a career of naming projects after foods @newrelic. Formerly @opsmatic @urbanairship @simplegeo @flickr @yahoo https://t.co/gIfppzqMQO", - "url": "http://t.co/8ZVGv5uCcl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Feb 11 03:13:51 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", - "favourites_count": 913, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "polotek", - "in_reply_to_user_id": 20079975, - "in_reply_to_status_id_str": "684832544966103040", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685606078638243841", - "id": 685606078638243841, - "text": "@polotek I cannot convey in text the size of the CONGRATS I'd like to send your way. Also that birth story was intense y'all are both champs", - "in_reply_to_user_id_str": "20079975", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "polotek", - "id_str": "20079975", - "id": 20079975, - "indices": [ - 0, - 8 - ], - "name": "Marco Rogers" - } - ] - }, - "created_at": "Fri Jan 08 23:36:41 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684832544966103040, - "lang": "en" - }, - "default_profile_image": false, - "id": 13332442, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", - "statuses_count": 9830, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13332442/1437710921", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "212199251", - "following": false, - "friends_count": 155, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "orkjern.com", - "url": "https://t.co/cJoUSHfCc3", - "expanded_url": "https://orkjern.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 170, - "location": "Norway", - "screen_name": "orkj", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "eiriksm", - "profile_use_background_image": false, - "description": "All about Drupal, JS and good beer.", - "url": "https://t.co/cJoUSHfCc3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", - "profile_background_color": "A1A1A1", - "created_at": "Fri Nov 05 12:15:41 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", - "favourites_count": 207, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 2154622149, - "possibly_sensitive": false, - "id_str": "685442655992451072", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 673, - "h": 221, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 111, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 197, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", - "type": "photo", - "indices": [ - 77, - 100 - ], - "media_url": "http://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", - "display_url": "pic.twitter.com/403urs6oC3", - "id_str": "685442654981746688", - "expanded_url": "http://twitter.com/orkj/status/685442655992451072/photo/1", - "id": 685442654981746688, - "url": "https://t.co/403urs6oC3" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "torbmorland", - "id_str": "2154622149", - "id": 2154622149, - "indices": [ - 0, - 12 - ], - "name": "Torbj\u00f8rn Morland" - }, - { - "screen_name": "github", - "id_str": "13334762", - "id": 13334762, - "indices": [ - 13, - 20 - ], - "name": "GitHub" - } - ] - }, - "created_at": "Fri Jan 08 12:47:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "2154622149", - "place": null, - "in_reply_to_screen_name": "torbmorland", - "in_reply_to_status_id_str": "685416670555443200", - "truncated": false, - "id": 685442655992451072, - "text": "@torbmorland @github While you are at it, please create this project as well https://t.co/403urs6oC3", - "coordinates": null, - "in_reply_to_status_id": 685416670555443200, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 212199251, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 318, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24659495", - "following": false, - "friends_count": 380, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/bcoe", - "url": "https://t.co/oVbQkCBHsB", - "expanded_url": "https://github.com/bcoe", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1331, - "location": "San Francisco", - "screen_name": "BenjaminCoe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 93, - "name": "Benjamin Coe", - "profile_use_background_image": true, - "description": "I'm a street walking cheetah with a heart full of napalm. Co-founded @attachmentsme, currently hacks up a storm @npmjs. Aspiring human.", - "url": "https://t.co/oVbQkCBHsB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Mar 16 06:23:28 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", - "favourites_count": 2517, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685252262696861697", - "id": 685252262696861697, - "text": "I've been watching greenkeeper.io get a ton of traction across many of the projects I contribute to, wonderful idea @boennemann \\o/", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "boennemann", - "id_str": "37506335", - "id": 37506335, - "indices": [ - 116, - 127 - ], - "name": "Stephan B\u00f6nnemann" - } - ] - }, - "created_at": "Fri Jan 08 00:10:45 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 13, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 24659495, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", - "statuses_count": 3524, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "18210275", - "following": false, - "friends_count": 235, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "HelloJustine.com", - "url": "http://t.co/9NRKpNO5Cj", - "expanded_url": "http://HelloJustine.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", - "notifications": false, - "profile_sidebar_fill_color": "E8E6DF", - "profile_link_color": "2EC29D", - "geo_enabled": true, - "followers_count": 2243, - "location": "Where the Wild Things Are", - "screen_name": "SaltineJustine", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 122, - "name": "Justine Arreche", - "profile_use_background_image": true, - "description": "I never met a deep fryer I didn't like \u2014 Lead Clipart Strategist at @travisci.", - "url": "http://t.co/9NRKpNO5Cj", - "profile_text_color": "404040", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", - "profile_background_color": "242424", - "created_at": "Thu Dec 18 06:09:40 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", - "favourites_count": 18042, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685601535380832256", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtube.com/watch?v=3uT4RV\u2026", - "url": "https://t.co/shfgUir3HQ", - "expanded_url": "https://www.youtube.com/watch?v=3uT4RV2Dfjs", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lstoll", - "id_str": "59282163", - "id": 59282163, - "indices": [ - 46, - 53 - ], - "name": "Kernel Sanders" - } - ] - }, - "created_at": "Fri Jan 08 23:18:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -81.877771, - 41.392684 - ], - [ - -81.5331634, - 41.392684 - ], - [ - -81.5331634, - 41.599195 - ], - [ - -81.877771, - 41.599195 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Cleveland, OH", - "id": "0eb9676d24b211f1", - "name": "Cleveland" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685601535380832256, - "text": "Friday evening beats brought to you by me and @lstoll \u2014 https://t.co/shfgUir3HQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18210275, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", - "statuses_count": 23373, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18210275/1437218808", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "11848", - "following": false, - "friends_count": 2306, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/thisisdeb", - "url": "http://t.co/JKlV7BRnzd", - "expanded_url": "http://about.me/thisisdeb", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 9038, - "location": "SF & NYC", - "screen_name": "debs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 734, - "name": "debs", - "profile_use_background_image": false, - "description": "Living at intersection of people, tech, design & horses | Technology changes, humans don't |\r\nCo-founder @yxyy @tummelvision @ILEquestrian", - "url": "http://t.co/JKlV7BRnzd", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Nov 08 17:47:14 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", - "favourites_count": 1096, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685226261308784644", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "fb.me/76u9wdYOo", - "url": "https://t.co/FXGpjqARuU", - "expanded_url": "http://fb.me/76u9wdYOo", - "indices": [ - 104, - 127 - ] - } - ], - "hashtags": [ - { - "indices": [ - 134, - 139 - ], - "text": "yxyy" - } - ], - "user_mentions": [ - { - "screen_name": "jboitnott", - "id_str": "14486811", - "id": 14486811, - "indices": [ - 34, - 44 - ], - "name": "John Boitnott" - }, - { - "screen_name": "YxYY", - "id_str": "1232029844", - "id": 1232029844, - "indices": [ - 128, - 133 - ], - "name": "Yes and Yes Yes" - } - ] - }, - "created_at": "Thu Jan 07 22:27:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685226261308784644, - "text": "Thanks for the shout out John! RT @jboitnott: Why Many Tech Execs Are Skipping the Consumer Electronics https://t.co/FXGpjqARuU @yxyy #yxyy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Echofon" - }, - "default_profile_image": false, - "id": 11848, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", - "statuses_count": 13886, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11848/1414180455", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15662622", - "following": false, - "friends_count": 4657, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "medium.com/@stevenewcomb", - "url": "https://t.co/l86N09uJWv", - "expanded_url": "http://www.medium.com/@stevenewcomb", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 29589, - "location": "San Francisco, CA", - "screen_name": "stevenewcomb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 676, - "name": "stevenewcomb", - "profile_use_background_image": true, - "description": "founder @befamous \u2022 founder @powerset (now MSFT Bing) \u2022 board Node.js \u2022 designer \u2022 ux \u2022 ui", - "url": "https://t.co/l86N09uJWv", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Jul 30 16:55:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", - "favourites_count": 86, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5ef5b7f391e30aff.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.324818, - 37.8459532 - ], - [ - -122.234225, - 37.8459532 - ], - [ - -122.234225, - 37.905738 - ], - [ - -122.324818, - 37.905738 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Berkeley, CA", - "id": "5ef5b7f391e30aff", - "name": "Berkeley" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "679695243453661184", - "id": 679695243453661184, - "text": "When I asked my grandfather if one can be both wise and immature, he said pull my finger and I'll tell you.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 23 16:09:08 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 19, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15662622, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1147, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15662622/1398732045", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14708110", - "following": false, - "friends_count": 194, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 42, - "location": "", - "screen_name": "pease", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "name": "Dave Pease", - "profile_use_background_image": true, - "description": "Father, Husband, .NET Developer at IBS, Inc.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri May 09 01:18:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", - "favourites_count": 4, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", - "default_profile_image": false, - "id": 14708110, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 136, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14708110/1425394211", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "133448051", - "following": false, - "friends_count": 79, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ussoccer.com", - "url": "http://t.co/lBXZsLTYug", - "expanded_url": "http://www.ussoccer.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 533357, - "location": "United States", - "screen_name": "ussoccer_wnt", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4083, - "name": "U.S. Soccer WNT", - "profile_use_background_image": true, - "description": "U.S. Soccer's official feed for the #USWNT.", - "url": "http://t.co/lBXZsLTYug", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", - "profile_background_color": "E4E5E6", - "created_at": "Thu Apr 15 20:39:54 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", - "favourites_count": 86, - "status": { - "retweet_count": 195, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609673668427777", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amp.twimg.com/v/4ee8494e-4f5\u2026", - "url": "https://t.co/DzHc1f29T6", - "expanded_url": "https://amp.twimg.com/v/4ee8494e-4f5b-4062-a847-abbf85aaa21e", - "indices": [ - 119, - 142 - ] - } - ], - "hashtags": [ - { - "indices": [ - 11, - 17 - ], - "text": "USWNT" - }, - { - "indices": [ - 95, - 107 - ], - "text": "JanuaryCamp" - }, - { - "indices": [ - 108, - 118 - ], - "text": "RoadToRio" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:50:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609673668427777, - "text": "WATCH: the #USWNT is off & running in 2016 with its first training camp of the year in LA. #JanuaryCamp #RoadToRio\nhttps://t.co/DzHc1f29T6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 534, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 133448051, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", - "statuses_count": 13471, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/133448051/1436146536", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "520782355", - "following": false, - "friends_count": 380, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "squidandcrow.com", - "url": "http://t.co/Iz4ZfDvOHi", - "expanded_url": "http://squidandcrow.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 330, - "location": "Pasco, WA", - "screen_name": "SquidAndCrow", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 23, - "name": "Sara Quinn, Person", - "profile_use_background_image": true, - "description": "Thing Maker | Squid Wrangler | Free Thinker | Gamer | Friend | Occasional Meat | She/Her or They/Them", - "url": "http://t.co/Iz4ZfDvOHi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Sat Mar 10 22:18:27 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", - "favourites_count": 3128, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "duosec", - "in_reply_to_user_id": 95339302, - "in_reply_to_status_id_str": "685540745177133058", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685592067100131330", - "id": 685592067100131330, - "text": "@duosec That scared me! So funny, though ;)", - "in_reply_to_user_id_str": "95339302", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "duosec", - "id_str": "95339302", - "id": 95339302, - "indices": [ - 0, - 7 - ], - "name": "Duo Security" - } - ] - }, - "created_at": "Fri Jan 08 22:41:01 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685540745177133058, - "lang": "en" - }, - "default_profile_image": false, - "id": 520782355, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 2610, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/520782355/1448506590", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2981041874", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "requiresafe.com", - "url": "http://t.co/Gbxa8dLwYt", - "expanded_url": "http://requiresafe.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 54, - "location": "Richland, wa", - "screen_name": "requiresafe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "requireSafe", - "profile_use_background_image": true, - "description": "Peace of mind for third-party Node modules. Brought to you by the @liftsecurity team and the founders of the @nodesecurity project.", - "url": "http://t.co/Gbxa8dLwYt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 13 23:44:44 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", - "favourites_count": 6, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "661228477689950208", - "id": 661228477689950208, - "text": "If you haven't done so please switch from using requiresafe to using nsp. The infrastructure will be taken down today.\n\nnpm i nsp -g", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Nov 02 17:08:48 +0000 2015", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2981041874, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 25, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15445975", - "following": false, - "friends_count": 600, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paddy.io", - "url": "http://t.co/lLVQ2zF195", - "expanded_url": "http://paddy.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 879, - "location": "Richland, WA", - "screen_name": "paddyforan", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 95, - "name": "Paddy", - "profile_use_background_image": true, - "description": "\u201cof Paddy & Ethan\u201d", - "url": "http://t.co/lLVQ2zF195", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Tue Jul 15 21:02:05 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", - "favourites_count": 2760, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0dd0c9c93b5519e1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -119.348075, - 46.164988 - ], - [ - -119.211248, - 46.164988 - ], - [ - -119.211248, - 46.3513671 - ], - [ - -119.348075, - 46.3513671 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Richland, WA", - "id": "0dd0c9c93b5519e1", - "name": "Richland" - }, - "in_reply_to_screen_name": "wraithgar", - "in_reply_to_user_id": 36700219, - "in_reply_to_status_id_str": "685493379812098049", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685515588530126850", - "id": 685515588530126850, - "text": "@wraithgar saaaaame", - "in_reply_to_user_id_str": "36700219", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wraithgar", - "id_str": "36700219", - "id": 36700219, - "indices": [ - 0, - 10 - ], - "name": "Gar" - } - ] - }, - "created_at": "Fri Jan 08 17:37:07 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685493379812098049, - "lang": "en" - }, - "default_profile_image": false, - "id": 15445975, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 39215, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15445975/1403466417", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2511636140", - "following": false, - "friends_count": 159, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "heatherloui.se", - "url": "https://t.co/8kOnavMn2N", - "expanded_url": "http://heatherloui.se", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "077A7A", - "geo_enabled": false, - "followers_count": 103, - "location": "Claremont, CA", - "screen_name": "one000mph", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 11, - "name": "Heather", - "profile_use_background_image": true, - "description": "Adventurer. Connoisseur Of Fine Teas. Collector of Outrageous Hats. STEM. Yogi.", - "url": "https://t.co/8kOnavMn2N", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed May 21 05:02:13 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", - "favourites_count": 53, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "666510529041575936", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "top13.net/funny-jerk-cat\u2026", - "url": "https://t.co/cQ4rAKpy5O", - "expanded_url": "http://www.top13.net/funny-jerk-cats-dont-respect-personal-space/", - "indices": [ - 0, - 23 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wraithgar", - "id_str": "36700219", - "id": 36700219, - "indices": [ - 24, - 34 - ], - "name": "Gar" - } - ] - }, - "created_at": "Tue Nov 17 06:57:47 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 666510529041575936, - "text": "https://t.co/cQ4rAKpy5O @wraithgar", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2511636140, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 60, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2511636140/1400652181", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3332249974", - "following": false, - "friends_count": 382, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2292, - "location": "", - "screen_name": "opsecanimals", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 74, - "name": "OpSec Animals", - "profile_use_background_image": true, - "description": "Animal OPSEC. The animals that teach and encourage good security practices. Boutique Animal Security Consultancy.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 18 06:10:24 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", - "favourites_count": 1187, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685591424625184769", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "modelviewculture.com/pieces/groomin\u2026", - "url": "https://t.co/mW4QbfhNVG", - "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jessysaurusrex", - "id_str": "17797084", - "id": 17797084, - "indices": [ - 66, - 81 - ], - "name": "Jessy Irwin" - } - ] - }, - "created_at": "Fri Jan 08 22:38:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685591424625184769, - "text": "Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Known: sketches.shaffermusic.com" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597438594293760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "modelviewculture.com/pieces/groomin\u2026", - "url": "https://t.co/mW4QbfhNVG", - "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "krisshaffer", - "id_str": "136476512", - "id": 136476512, - "indices": [ - 3, - 15 - ], - "name": "Kris Shaffer" - }, - { - "screen_name": "jessysaurusrex", - "id_str": "17797084", - "id": 17797084, - "indices": [ - 83, - 98 - ], - "name": "Jessy Irwin" - } - ] - }, - "created_at": "Fri Jan 08 23:02:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597438594293760, - "text": "RT @krisshaffer: Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 3332249974, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 317, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3332249974/1434610300", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18139160", - "following": false, - "friends_count": 389, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/inessombra", - "url": "http://t.co/hZHAl1Rxhp", - "expanded_url": "http://about.me/inessombra", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "151717", - "geo_enabled": true, - "followers_count": 2843, - "location": "San Francisco, CA", - "screen_name": "randommood", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 150, - "name": "Ines Sombra", - "profile_use_background_image": true, - "description": "Engineer @fastly. Plagued by many interests including running @papers_we_love SF & board member of @rubytogether. In an everlasting quest for increased focus.", - "url": "http://t.co/hZHAl1Rxhp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", - "profile_background_color": "131516", - "created_at": "Mon Dec 15 16:06:41 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", - "favourites_count": 2721, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "chrisamaphone", - "in_reply_to_user_id": 5972632, - "in_reply_to_status_id_str": "685132380991045632", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685138209391546369", - "id": 685138209391546369, - "text": "@chrisamaphone The industry is predatory and bullshitty. I'm happy to share what we did (or rage with you) if it helps \ud83d\udc70\ud83c\udffc\ud83d\udc79", - "in_reply_to_user_id_str": "5972632", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chrisamaphone", - "id_str": "5972632", - "id": 5972632, - "indices": [ - 0, - 14 - ], - "name": "Chris Martens" - } - ] - }, - "created_at": "Thu Jan 07 16:37:33 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685132380991045632, - "lang": "en" - }, - "default_profile_image": false, - "id": 18139160, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 7723, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18139160/1405120776", - "is_translator": false - }, - { - "time_zone": "Europe/Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "5430", - "following": false, - "friends_count": 673, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "squeakyvessel.com", - "url": "https://t.co/SmbXMAJahm", - "expanded_url": "http://squeakyvessel.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "666666", - "geo_enabled": true, - "followers_count": 1899, - "location": "Frankfurt, Germany", - "screen_name": "benjamin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 128, - "name": "Benjamin Reitzammer", - "profile_use_background_image": true, - "description": "Head of my head, Feminist\n\n@VaamoTech //\n@socrates_2016 // \n@breathing_code", - "url": "https://t.co/SmbXMAJahm", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Sep 07 11:54:22 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", - "favourites_count": 1040, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685607349369860096", - "id": 685607349369860096, - "text": ".@henryrollins I looooove yooouuuu #manthatwasintense", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 35, - 53 - ], - "text": "manthatwasintense" - } - ], - "user_mentions": [ - { - "screen_name": "henryrollins", - "id_str": "16618332", - "id": 16618332, - "indices": [ - 1, - 14 - ], - "name": "henryrollins" - } - ] - }, - "created_at": "Fri Jan 08 23:41:44 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 5430, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", - "statuses_count": 9759, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5430/1425282364", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "304067888", - "following": false, - "friends_count": 1108, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ashleygwilliams.github.io", - "url": "https://t.co/rkt9BdQBYx", - "expanded_url": "http://ashleygwilliams.github.io/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 5853, - "location": "undefined", - "screen_name": "ag_dubs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 294, - "name": "ashley williams", - "profile_use_background_image": true, - "description": "a mess like this is easily five to ten years ahead of its time. human, @npmjs.", - "url": "https://t.co/rkt9BdQBYx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon May 23 21:43:03 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", - "favourites_count": 16725, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "skilldrick", - "in_reply_to_user_id": 17736965, - "in_reply_to_status_id_str": "685581078879326208", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685581931006812169", - "id": 685581931006812169, - "text": "@skilldrick @jkup @wafflejs they are a great band! i shoulda known that haha", - "in_reply_to_user_id_str": "17736965", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "skilldrick", - "id_str": "17736965", - "id": 17736965, - "indices": [ - 0, - 11 - ], - "name": "Nick Morgan" - }, - { - "screen_name": "jkup", - "id_str": "255634108", - "id": 255634108, - "indices": [ - 12, - 17 - ], - "name": "Jon Kuperman" - }, - { - "screen_name": "wafflejs", - "id_str": "3338088405", - "id": 3338088405, - "indices": [ - 18, - 27 - ], - "name": "WaffleJS" - } - ] - }, - "created_at": "Fri Jan 08 22:00:44 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685581078879326208, - "lang": "en" - }, - "default_profile_image": false, - "id": 304067888, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", - "statuses_count": 28815, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/304067888/1400530788", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14499792", - "following": false, - "friends_count": 69, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fayerplay.com", - "url": "http://t.co/a7vsP6hbIq", - "expanded_url": "http://fayerplay.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/125537436/bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F7DA93", - "profile_link_color": "CC3300", - "geo_enabled": false, - "followers_count": 330, - "location": "Columbia, Maryland", - "screen_name": "papa_fire", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Leon Fayer", - "profile_use_background_image": true, - "description": "Technologist. Web architect. DevOps [something]. VP @OmniTI. Gamer. Die hard Ravens fan.", - "url": "http://t.co/a7vsP6hbIq", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Apr 23 19:53:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", - "favourites_count": 7, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685498351551393795", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tinyclouds.org/colorize/", - "url": "https://t.co/n4MF2LMQA5", - "expanded_url": "http://tinyclouds.org/colorize/", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:28:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685498351551393795, - "text": "This is much cooler that even author leads to believe. https://t.co/n4MF2LMQA5", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 14499792, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/125537436/bg.jpg", - "statuses_count": 2534, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14499792/1354950251", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14412937", - "following": false, - "friends_count": 150, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eev.ee", - "url": "http://t.co/ffxyntfCy2", - "expanded_url": "http://eev.ee/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "4380BF", - "geo_enabled": true, - "followers_count": 7055, - "location": "Sin City 2000", - "screen_name": "eevee", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 217, - "name": "\u2744\u26c4 eevee \u26c4\u2744", - "profile_use_background_image": true, - "description": "i like computers but also yell about them a lot. sometimes i hack or write or draw. she/they/he", - "url": "http://t.co/ffxyntfCy2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", - "profile_background_color": "0A3A6A", - "created_at": "Wed Apr 16 21:08:32 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", - "favourites_count": 32308, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685597943315873792", - "id": 685597943315873792, - "text": "thanks kde for this window manager that crashes several times a day and doesn't restart on its own", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:04:22 +0000 2016", - "source": "Twirssi", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14412937, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", - "statuses_count": 81050, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14412937/1435395260", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16642746", - "following": false, - "friends_count": 414, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "crappytld.club", - "url": "http://t.co/d1H2gppjtx", - "expanded_url": "http://crappytld.club/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 6004, - "location": "Austin, TX", - "screen_name": "miketaylr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 435, - "name": "Mike Taylor", - "profile_use_background_image": true, - "description": "Web Compat at Mozilla. I mostly tweet about crappy code. \\\ufdfa\u0310\u033e\u033e\u0308\u030f\u0314\u0302\u0307\u0300\u036d\u0308\u0366\u034c\u033d\u036d\u036a\u036b\u036f\u0304\u034f\u031e\u032d\u0318\u0325\u0324\u034e\u0324\u0358\\'", - "url": "http://t.co/d1H2gppjtx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Oct 08 02:18:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", - "favourites_count": 4739, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -97.928935, - 30.127892 - ], - [ - -97.5805133, - 30.127892 - ], - [ - -97.5805133, - 30.5187994 - ], - [ - -97.928935, - 30.5187994 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Austin, TX", - "id": "c3f37afa9efcf94b", - "name": "Austin" - }, - "in_reply_to_screen_name": "snorp", - "in_reply_to_user_id": 14663842, - "in_reply_to_status_id_str": "685227191529934848", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685230499069952001", - "id": 685230499069952001, - "text": "@snorp i give it a year before someone is running NodeJS on one of these (help us all)", - "in_reply_to_user_id_str": "14663842", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "snorp", - "id_str": "14663842", - "id": 14663842, - "indices": [ - 0, - 6 - ], - "name": "James Willcox" - } - ] - }, - "created_at": "Thu Jan 07 22:44:16 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685227191529934848, - "lang": "en" - }, - "default_profile_image": false, - "id": 16642746, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", - "statuses_count": 16572, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16642746/1381258666", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "749863", - "following": false, - "friends_count": 565, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "relay.fm/rd", - "url": "https://t.co/zuZ3gobI4e", - "expanded_url": "http://www.relay.fm/rd", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", - "notifications": false, - "profile_sidebar_fill_color": "DFDFDF", - "profile_link_color": "4255AE", - "geo_enabled": false, - "followers_count": 354981, - "location": "The Outside Lands", - "screen_name": "hotdogsladies", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8035, - "name": "Merlin Mann", - "profile_use_background_image": false, - "description": "Ricordati che \u00e8 un film comico.", - "url": "https://t.co/zuZ3gobI4e", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", - "profile_background_color": "EEEEEE", - "created_at": "Sat Feb 03 01:39:53 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", - "favourites_count": 27389, - "status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685570310104432641", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/_relayfm/statu\u2026", - "url": "https://t.co/LxxV1D1MAU", - "expanded_url": "https://twitter.com/_relayfm/status/685477059842433024", - "indices": [ - 84, - 107 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:14:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685570310104432641, - "text": "Two amazing hosts doing a topic and approach I've waited a long time for. Endorsed! https://t.co/LxxV1D1MAU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 749863, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", - "statuses_count": 29730, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/749863/1450650802", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "239324052", - "following": false, - "friends_count": 1413, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.skepticfx.com", - "url": "https://t.co/gLsQ0GkDmG", - "expanded_url": "https://blog.skepticfx.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1421, - "location": "San Francisco, CA", - "screen_name": "skeptic_fx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "Ahamed Nafeez", - "profile_use_background_image": false, - "description": "Security Engineering is one of the things I do. Views are my own and does not represent my employer.", - "url": "https://t.co/gLsQ0GkDmG", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Jan 17 10:33:29 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", - "favourites_count": 1253, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "verystrongjoe", - "in_reply_to_user_id": 53238886, - "in_reply_to_status_id_str": "682429494154530817", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682501819830931457", - "id": 682501819830931457, - "text": "@verystrongjoe Hi! I've replied to you over email :)", - "in_reply_to_user_id_str": "53238886", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "verystrongjoe", - "id_str": "53238886", - "id": 53238886, - "indices": [ - 0, - 14 - ], - "name": "Jo Uk" - } - ] - }, - "created_at": "Thu Dec 31 10:01:28 +0000 2015", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 682429494154530817, - "lang": "en" - }, - "default_profile_image": false, - "id": 239324052, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 2307, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/239324052/1443490816", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3194669250", - "following": false, - "friends_count": 136, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wild.land", - "url": "http://t.co/ktkvhRQiyM", - "expanded_url": "http://wild.land", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 61, - "location": "Richland, WA", - "screen_name": "wildlandlabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Wildland", - "profile_use_background_image": false, - "description": "Software Builders, Coffee Enthusiasts, General Human Beings.", - "url": "http://t.co/ktkvhRQiyM", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", - "profile_background_color": "000000", - "created_at": "Wed May 13 21:58:06 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", - "favourites_count": 5, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mattepp", - "in_reply_to_user_id": 14871770, - "in_reply_to_status_id_str": "637133104977588226", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "637150029396860930", - "id": 637150029396860930, - "text": "Ohhai!! @mattepp ///@grElement", - "in_reply_to_user_id_str": "14871770", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mattepp", - "id_str": "14871770", - "id": 14871770, - "indices": [ - 8, - 16 - ], - "name": "Matthew Eppelsheimer" - }, - { - "screen_name": "grElement", - "id_str": "42056876", - "id": 42056876, - "indices": [ - 20, - 30 - ], - "name": "Angela Steffens" - } - ] - }, - "created_at": "Fri Aug 28 06:29:39 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 637133104977588226, - "lang": "it" - }, - "default_profile_image": false, - "id": 3194669250, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 22, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3194669250/1431554889", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1530096708", - "following": false, - "friends_count": 4721, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "closetoclever.com", - "url": "https://t.co/oQf0XG5ffN", - "expanded_url": "http://www.closetoclever.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "007AB3", - "geo_enabled": false, - "followers_count": 8757, - "location": "Birmingham/London/\u3069\u3053\u3067\u3082", - "screen_name": "jesslynnrose", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 298, - "name": "Jessica Rose", - "profile_use_background_image": true, - "description": "Technology's den mother. Devrel for @dfsoftwareinc & often doing things w/ @opencodeclub, @trans_code & @watchingbuffy DMs open*, views mine", - "url": "https://t.co/oQf0XG5ffN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 19 07:56:27 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", - "favourites_count": 8916, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "spiky_flamingo", - "in_reply_to_user_id": 3143889479, - "in_reply_to_status_id_str": "685558133687775232", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685558290324041728", - "id": 685558290324041728, - "text": "@spiky_flamingo @miss_jwo I am! DM incoming! \ud83d\ude01", - "in_reply_to_user_id_str": "3143889479", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "spiky_flamingo", - "id_str": "3143889479", - "id": 3143889479, - "indices": [ - 0, - 15 - ], - "name": "pearl irl" - }, - { - "screen_name": "miss_jwo", - "id_str": "200519952", - "id": 200519952, - "indices": [ - 16, - 25 - ], - "name": "Jenny Wong" - } - ] - }, - "created_at": "Fri Jan 08 20:26:48 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685558133687775232, - "lang": "en" - }, - "default_profile_image": false, - "id": 1530096708, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 15506, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1530096708/1448497747", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5438512", - "following": false, - "friends_count": 543, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pcper.com", - "url": "http://t.co/FyPzbMLdvW", - "expanded_url": "http://www.pcper.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 11986, - "location": "Florence, KY", - "screen_name": "ryanshrout", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 726, - "name": "Ryan Shrout", - "profile_use_background_image": false, - "description": "Editor-in-Chief at PC Perspective", - "url": "http://t.co/FyPzbMLdvW", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Mon Apr 23 16:41:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", - "favourites_count": 258, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "AndrewLauritzen", - "in_reply_to_user_id": 321550744, - "in_reply_to_status_id_str": "685607960899235840", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685608068655140866", - "id": 685608068655140866, - "text": "@AndrewLauritzen I asked them specifically, and they only said that this was the focus for 2016.", - "in_reply_to_user_id_str": "321550744", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AndrewLauritzen", - "id_str": "321550744", - "id": 321550744, - "indices": [ - 0, - 16 - ], - "name": "Andrew Lauritzen" - } - ] - }, - "created_at": "Fri Jan 08 23:44:36 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685607960899235840, - "lang": "en" - }, - "default_profile_image": false, - "id": 5438512, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 15326, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "43188880", - "following": false, - "friends_count": 1673, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dalebracey.com", - "url": "https://t.co/uQTo4Zburt", - "expanded_url": "http://dalebracey.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7A5339", - "profile_link_color": "FF6600", - "geo_enabled": false, - "followers_count": 1257, - "location": "San Antonio, TX", - "screen_name": "IRTermite", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 60, - "name": "Dale Bracey \u2601", - "profile_use_background_image": true, - "description": "Social Strategist @Rackspace, Racker since 2004 - Artist, Car Collector, Empath, Geek, Networker, Techie, Jack-of-all, #OpenStack, @MakeSanAntonio @RackerGamers", - "url": "https://t.co/uQTo4Zburt", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", - "profile_background_color": "131516", - "created_at": "Thu May 28 20:27:13 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", - "favourites_count": 2189, - "status": { - "retweet_count": 23, - "retweeted_status": { - "retweet_count": 23, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685296231405326337", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 852, - "h": 669, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 471, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 266, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "type": "photo", - "indices": [ - 90, - 113 - ], - "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "display_url": "pic.twitter.com/65waEZwn1E", - "id_str": "685296015801331716", - "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", - "id": 685296015801331716, - "url": "https://t.co/65waEZwn1E" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:05:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685296231405326337, - "text": "Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 22, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685296427338051584", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 852, - "h": 669, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 471, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 266, - "resize": "fit" - } - }, - "source_status_id_str": "685296231405326337", - "url": "https://t.co/65waEZwn1E", - "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "source_user_id_str": "26191233", - "id_str": "685296015801331716", - "id": 685296015801331716, - "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "type": "photo", - "indices": [ - 105, - 128 - ], - "source_status_id": 685296231405326337, - "source_user_id": 26191233, - "display_url": "pic.twitter.com/65waEZwn1E", - "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Rackspace", - "id_str": "26191233", - "id": 26191233, - "indices": [ - 3, - 13 - ], - "name": "Rackspace" - } - ] - }, - "created_at": "Fri Jan 08 03:06:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685296427338051584, - "text": "RT @Rackspace: Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 43188880, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 6991, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43188880/1433971079", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "801712861", - "following": false, - "friends_count": 614, - "entities": { - "description": { - "urls": [ - { - "display_url": "domschopsalsa.com", - "url": "https://t.co/ySTEeD6lcz", - "expanded_url": "http://www.domschopsalsa.com", - "indices": [ - 90, - 113 - ] - }, - { - "display_url": "facebook.com/chopsalsa", - "url": "https://t.co/DoMfz1yk60", - "expanded_url": "http://facebook.com/chopsalsa", - "indices": [ - 115, - 138 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/dominicmend\u2026", - "url": "http://t.co/3hwdF3IqPC", - "expanded_url": "http://www.linkedin.com/in/dominicmendiola", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 267, - "location": "San Antonio, TX", - "screen_name": "DominicMendiola", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "dominic.mendiola", - "profile_use_background_image": false, - "description": "Father. Husband. Racker since 2006. Social Media Team. Owner Dom's Chop Salsa @chopsalsa, https://t.co/ySTEeD6lcz, https://t.co/DoMfz1yk60", - "url": "http://t.co/3hwdF3IqPC", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Sep 04 03:13:51 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", - "favourites_count": 391, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "trevorengstrom", - "in_reply_to_user_id": 15080503, - "in_reply_to_status_id_str": "684515636333051904", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684516227667001344", - "id": 684516227667001344, - "text": "@trevorengstrom @Rackspace Ok good! If anything else pops up and you need a hand...just let us know! We're always happy to help! Thanks!", - "in_reply_to_user_id_str": "15080503", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "trevorengstrom", - "id_str": "15080503", - "id": 15080503, - "indices": [ - 0, - 15 - ], - "name": "Trevor Engstrom" - }, - { - "screen_name": "Rackspace", - "id_str": "26191233", - "id": 26191233, - "indices": [ - 16, - 26 - ], - "name": "Rackspace" - } - ] - }, - "created_at": "Tue Jan 05 23:26:01 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684515636333051904, - "lang": "en" - }, - "default_profile_image": false, - "id": 801712861, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 536, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/801712861/1443214772", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "4508241", - "following": false, - "friends_count": 194, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "langfeld.me", - "url": "http://t.co/FYGU0gVzky", - "expanded_url": "http://langfeld.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 481, - "location": "Rio de Janeiro, Brasil", - "screen_name": "benlangfeld", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "Ben Langfeld", - "profile_use_background_image": true, - "description": "Communications app developer. Mojo Lingo & Adhearsion Foundation. Experimenter and perfectionist.", - "url": "http://t.co/FYGU0gVzky", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Apr 13 15:05:00 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", - "favourites_count": 200, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 3033204133, - "possibly_sensitive": false, - "id_str": "685548188435132416", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "gist.github.com/benlangfeld/18\u2026", - "url": "https://t.co/EYtcS2Vqhk", - "expanded_url": "https://gist.github.com/benlangfeld/181cbb3997eb4236e244", - "indices": [ - 87, - 110 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "honest_update", - "id_str": "3033204133", - "id": 3033204133, - "indices": [ - 0, - 14 - ], - "name": "Honest Status Page" - } - ] - }, - "created_at": "Fri Jan 08 19:46:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "3033204133", - "place": null, - "in_reply_to_screen_name": "honest_update", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685548188435132416, - "text": "@honest_update Our app fell over because our queue was too slow. It's ok, we fixed it: https://t.co/EYtcS2Vqhk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 4508241, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2697, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4508241/1401146387", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "22199970", - "following": false, - "friends_count": 761, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lea.verou.me", - "url": "http://t.co/Q2CdWpNV1q", - "expanded_url": "http://lea.verou.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/324344036/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFBF2", - "profile_link_color": "FF0066", - "geo_enabled": true, - "followers_count": 64139, - "location": "Cambridge, MA", - "screen_name": "LeaVerou", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3585, - "name": "Lea Verou", - "profile_use_background_image": true, - "description": "HCI researcher @MIT_CSAIL, @CSSWG IE, @CSSSecretsBook author, Ex @W3C staff. Made @prismjs @dabblet @prefixfree. I \u2665 standards, code, design, UX, life!", - "url": "http://t.co/Q2CdWpNV1q", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", - "profile_background_color": "FBE4AE", - "created_at": "Fri Feb 27 22:28:59 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", - "favourites_count": 3696, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685359744966590464", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "byteplumbing.net/2016/01/book-r\u2026", - "url": "https://t.co/pfmTTIXCIy", - "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "csssecretsbook", - "id_str": "3262381338", - "id": 3262381338, - "indices": [ - 23, - 38 - ], - "name": "CSS Secrets" - } - ] - }, - "created_at": "Fri Jan 08 07:17:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685359744966590464, - "text": "Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co/pfmTTIXCIy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685574450780192770", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "byteplumbing.net/2016/01/book-r\u2026", - "url": "https://t.co/pfmTTIXCIy", - "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "iiska", - "id_str": "18630451", - "id": 18630451, - "indices": [ - 3, - 9 - ], - "name": "Juhamatti Niemel\u00e4" - }, - { - "screen_name": "csssecretsbook", - "id_str": "3262381338", - "id": 3262381338, - "indices": [ - 34, - 49 - ], - "name": "CSS Secrets" - } - ] - }, - "created_at": "Fri Jan 08 21:31:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685574450780192770, - "text": "RT @iiska: Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 22199970, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/324344036/bg.png", - "statuses_count": 24815, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22199970/1374351780", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2739826012", - "following": false, - "friends_count": 2319, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "matrix.org", - "url": "http://t.co/Rrx4mnMJ5W", - "expanded_url": "http://www.matrix.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4F5A5E", - "geo_enabled": true, - "followers_count": 1227, - "location": "", - "screen_name": "matrixdotorg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 61, - "name": "Matrix", - "profile_use_background_image": false, - "description": "An open standard for decentralised persistent communication. Tweets by @ara4n, @amandinelepape & co.", - "url": "http://t.co/Rrx4mnMJ5W", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Aug 11 10:51:23 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", - "favourites_count": 781, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685552098830880768", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", - "url": "https://t.co/0iV7Uzmaia", - "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", - "indices": [ - 31, - 54 - ] - }, - { - "display_url": "webrtcconference.jp", - "url": "https://t.co/7NnGiq0vCN", - "expanded_url": "http://webrtcconference.jp/", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [ - { - "indices": [ - 69, - 78 - ], - "text": "skywayjs" - } - ], - "user_mentions": [ - { - "screen_name": "TADHack", - "id_str": "2315728231", - "id": 2315728231, - "indices": [ - 11, - 19 - ], - "name": "TADHack" - }, - { - "screen_name": "matrixdotorg", - "id_str": "2739826012", - "id": 2739826012, - "indices": [ - 55, - 68 - ], - "name": "Matrix" - }, - { - "screen_name": "telestax", - "id_str": "266634532", - "id": 266634532, - "indices": [ - 79, - 88 - ], - "name": "TeleStax" - }, - { - "screen_name": "ntt", - "id_str": "1706681", - "id": 1706681, - "indices": [ - 89, - 93 - ], - "name": "Chinmay" - } - ] - }, - "created_at": "Fri Jan 08 20:02:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685552098830880768, - "text": "Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co/7NnGiq0vCN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685553303049076741", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", - "url": "https://t.co/0iV7Uzmaia", - "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", - "indices": [ - 44, - 67 - ] - }, - { - "display_url": "webrtcconference.jp", - "url": "https://t.co/7NnGiq0vCN", - "expanded_url": "http://webrtcconference.jp/", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 82, - 91 - ], - "text": "skywayjs" - } - ], - "user_mentions": [ - { - "screen_name": "TADHack", - "id_str": "2315728231", - "id": 2315728231, - "indices": [ - 3, - 11 - ], - "name": "TADHack" - }, - { - "screen_name": "TADHack", - "id_str": "2315728231", - "id": 2315728231, - "indices": [ - 24, - 32 - ], - "name": "TADHack" - }, - { - "screen_name": "matrixdotorg", - "id_str": "2739826012", - "id": 2739826012, - "indices": [ - 68, - 81 - ], - "name": "Matrix" - }, - { - "screen_name": "telestax", - "id_str": "266634532", - "id": 266634532, - "indices": [ - 92, - 101 - ], - "name": "TeleStax" - }, - { - "screen_name": "ntt", - "id_str": "1706681", - "id": 1706681, - "indices": [ - 102, - 106 - ], - "name": "Chinmay" - } - ] - }, - "created_at": "Fri Jan 08 20:06:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685553303049076741, - "text": "RT @TADHack: Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2739826012, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1282, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2739826012/1422740800", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "512410920", - "following": false, - "friends_count": 735, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wroteacodeforcloverhitch.blogspot.ca", - "url": "http://t.co/orO5dwZcHv", - "expanded_url": "http://wroteacodeforcloverhitch.blogspot.ca/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "80042B", - "geo_enabled": false, - "followers_count": 912, - "location": "Calgary, Alberta", - "screen_name": "gbhorwood", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Grant Horwood", - "profile_use_background_image": true, - "description": "Lead developer Cloverhitch Tech in Calgary, AB. I like clever code, verbose documentation, fast bicycles and questionable homebrew.", - "url": "http://t.co/orO5dwZcHv", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", - "profile_background_color": "ABB8C2", - "created_at": "Fri Mar 02 20:19:53 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", - "favourites_count": 1533, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "meejah", - "in_reply_to_user_id": 13055372, - "in_reply_to_status_id_str": "685565777680859136", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685566263142187008", - "id": 685566263142187008, - "text": "@meejah yeah. i have a \"bob has a bug\" issue. what bug? when? last name? no one can say... \n\ngrep -irn \"bob\" ./*", - "in_reply_to_user_id_str": "13055372", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "meejah", - "id_str": "13055372", - "id": 13055372, - "indices": [ - 0, - 7 - ], - "name": "meejah" - } - ] - }, - "created_at": "Fri Jan 08 20:58:28 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685565777680859136, - "lang": "en" - }, - "default_profile_image": false, - "id": 512410920, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2309, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/512410920/1398348433", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "65583", - "following": false, - "friends_count": 654, - "entities": { - "description": { - "urls": [ - { - "display_url": "OSMIhelp.org", - "url": "http://t.co/skQU77s3rk", - "expanded_url": "http://OSMIhelp.org", - "indices": [ - 83, - 105 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "funkatron.com", - "url": "http://t.co/Y4o3XtlP6R", - "expanded_url": "http://funkatron.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90616269/funbike.png", - "notifications": false, - "profile_sidebar_fill_color": "B8B8B8", - "profile_link_color": "660000", - "geo_enabled": false, - "followers_count": 8751, - "location": "West Lafayette, IN, USA", - "screen_name": "funkatron", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 773, - "name": "Ed Finkler", - "profile_use_background_image": false, - "description": "Dork, Dad, JS, PHP & Python feller. Lead Dev @GraphStoryCo. Mental Health advocate http://t.co/skQU77s3rk. 1/2 of @dev_hell podcast. See also @funkalinks", - "url": "http://t.co/Y4o3XtlP6R", - "profile_text_color": "424141", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Dec 14 00:31:16 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", - "favourites_count": 8512, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jclermont", - "in_reply_to_user_id": 16358696, - "in_reply_to_status_id_str": "685606121604681729", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685609221245763585", - "id": 685609221245763585, - "text": "@jclermont when I read this I had to say that out loud", - "in_reply_to_user_id_str": "16358696", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jclermont", - "id_str": "16358696", - "id": 16358696, - "indices": [ - 0, - 10 - ], - "name": "Joel Clermont" - } - ] - }, - "created_at": "Fri Jan 08 23:49:11 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685606121604681729, - "lang": "en" - }, - "default_profile_image": false, - "id": 65583, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90616269/funbike.png", - "statuses_count": 84078, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/65583/1438612109", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "396241682", - "following": false, - "friends_count": 322, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mariemosley.com/about", - "url": "https://t.co/BppFkRlCWu", - "expanded_url": "https://www.mariemosley.com/about", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "009CA2", - "geo_enabled": true, - "followers_count": 1098, - "location": "", - "screen_name": "MMosley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "name": "Marie Mosley", - "profile_use_background_image": false, - "description": "Look out honey, 'cause I'm using technology // Part of Team @CodePen", - "url": "https://t.co/BppFkRlCWu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", - "profile_background_color": "01E6EF", - "created_at": "Sat Oct 22 23:58:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", - "favourites_count": 10411, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jaynawallace", - "in_reply_to_user_id": 78213, - "in_reply_to_status_id_str": "685594363007746048", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685602091553959936", - "id": 685602091553959936, - "text": "@jaynawallace I will join your squad \ud83d\udc6f what's you're name on there?", - "in_reply_to_user_id_str": "78213", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jaynawallace", - "id_str": "78213", - "id": 78213, - "indices": [ - 0, - 13 - ], - "name": "\u02d7\u02cf\u02cb jayna wallace \u02ce\u02ca" - } - ] - }, - "created_at": "Fri Jan 08 23:20:51 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685594363007746048, - "lang": "en" - }, - "default_profile_image": false, - "id": 396241682, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3204, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/396241682/1430082364", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3202399565", - "following": false, - "friends_count": 26, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 32, - "location": "De Cymru", - "screen_name": "KevTWondersheep", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Kevin Smith", - "profile_use_background_image": true, - "description": "@DefinitiveKev pretending to be non-techie. May contain very very bad Welsh.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Apr 24 22:27:37 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", - "favourites_count": 45, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "EmiGarside", - "in_reply_to_user_id": 23923202, - "in_reply_to_status_id_str": "684380251649093632", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684380579673018368", - "id": 684380579673018368, - "text": "@emigarside Droids don't rip people's arms out of their sockets when they lose. Wookies are known to do that.", - "in_reply_to_user_id_str": "23923202", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "EmiGarside", - "id_str": "23923202", - "id": 23923202, - "indices": [ - 0, - 11 - ], - "name": "Dr Emily Garside" - } - ] - }, - "created_at": "Tue Jan 05 14:27:00 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684380251649093632, - "lang": "en" - }, - "default_profile_image": false, - "id": 3202399565, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 71, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3202399565/1429962655", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "606349117", - "following": false, - "friends_count": 1523, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sparxeng.com", - "url": "http://t.co/tfYNlmleOE", - "expanded_url": "http://www.sparxeng.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1980, - "location": "Houston, TX", - "screen_name": "SparxEngineer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 61, - "name": "Sparx Engineering", - "profile_use_background_image": true, - "description": "Engineering consulting company, specializing in embedded devices, custom/mobile/web application development and helping startups bring products to market.", - "url": "http://t.co/tfYNlmleOE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 12 14:10:06 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", - "favourites_count": 16, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685140345215139841", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", - "display_url": "pic.twitter.com/HawyibmcoX", - "id_str": "685140345039024128", - "expanded_url": "http://twitter.com/SparxEngineer/status/685140345215139841/photo/1", - "id": 685140345039024128, - "url": "https://t.co/HawyibmcoX" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z8fXA2", - "url": "https://t.co/LzWHfSO5Ux", - "expanded_url": "http://buff.ly/1Z8fXA2", - "indices": [ - 66, - 89 - ] - } - ], - "hashtags": [ - { - "indices": [ - 90, - 95 - ], - "text": "tech" - }, - { - "indices": [ - 96, - 104 - ], - "text": "fitness" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 16:46:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685140345215139841, - "text": "New lawsuit: Fitbit heart rate tracking is dangerously inaccurate https://t.co/LzWHfSO5Ux #tech #fitness https://t.co/HawyibmcoX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 606349117, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1734, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/606349117/1391191180", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "84107122", - "following": false, - "friends_count": 1570, - "entities": { - "description": { - "urls": [ - { - "display_url": "themakersofthings.co.uk", - "url": "http://t.co/f5R61wCtSs", - "expanded_url": "http://themakersofthings.co.uk", - "indices": [ - 73, - 95 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "anne.holiday", - "url": "http://t.co/pxLXGQsvL6", - "expanded_url": "http://anne.holiday/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 908, - "location": "Brooklyn, NY", - "screen_name": "anneholiday", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "Anne Holiday", - "profile_use_background_image": true, - "description": "Filmmaker. Phototaker. Maker of The Makers of Things documentary series: http://t.co/f5R61wCtSs", - "url": "http://t.co/pxLXGQsvL6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Oct 21 16:05:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", - "favourites_count": 3006, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685464406453530624", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "newyorker.com/magazine/2015/\u2026", - "url": "https://t.co/qw5SReTvl6", - "expanded_url": "http://www.newyorker.com/magazine/2015/01/19/lets-get-drinks", - "indices": [ - 5, - 28 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:13:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685464406453530624, - "text": "Lol: https://t.co/qw5SReTvl6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 84107122, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 4627, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/84107122/1393641836", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3033725946", - "following": false, - "friends_count": 1422, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bit.ly/1vmzDHa", - "url": "http://t.co/27akJdS8AO", - "expanded_url": "http://bit.ly/1vmzDHa", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2047, - "location": "", - "screen_name": "WebRRTC", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 58, - "name": "WebRTC", - "profile_use_background_image": true, - "description": "Live content curated by top Web Real-Time Communication (WebRTC) Influencer", - "url": "http://t.co/27akJdS8AO", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sat Feb 21 02:29:20 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685546590354853888", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 494, - "h": 877, - "resize": "fit" - }, - "medium": { - "w": 494, - "h": 877, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 603, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOM_bdUsAAMT4R.jpg", - "type": "photo", - "indices": [ - 94, - 117 - ], - "media_url": "http://pbs.twimg.com/media/CYOM_bdUsAAMT4R.jpg", - "display_url": "pic.twitter.com/picKmDTHQn", - "id_str": "685546589620842496", - "expanded_url": "http://twitter.com/WebRRTC/status/685546590354853888/photo/1", - "id": 685546589620842496, - "url": "https://t.co/picKmDTHQn" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "rightrelevance.com/search/article\u2026", - "url": "https://t.co/c6sQyr5IUN", - "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=85fcf644b457069e3387a3d83f0cf5cf83d07a51&query=webrtc&taccount=webrrtc", - "indices": [ - 70, - 93 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:40:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685546590354853888, - "text": "AT&T Developer Summit 2016 \u2013 Let Me Tell You a Story about WebRTC https://t.co/c6sQyr5IUN https://t.co/picKmDTHQn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "RRPostingApp" - }, - "default_profile_image": false, - "id": 3033725946, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2873, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15518306", - "following": false, - "friends_count": 428, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "langille.org", - "url": "http://t.co/uBwYd3PW71", - "expanded_url": "http://langille.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1242, - "location": "near Philadelphia", - "screen_name": "DLangille", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 91, - "name": "Dan Langille", - "profile_use_background_image": true, - "description": "Mountain biker. Software Dev. Sysadmin. Websites & databases. Conference organizer.", - "url": "http://t.co/uBwYd3PW71", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", - "profile_background_color": "C6E2EE", - "created_at": "Mon Jul 21 17:56:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", - "favourites_count": 630, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685554984306360320", - "id": 685554984306360320, - "text": "Current status: adding my user (not me) to gmail. I feel all grown up....", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:13:39 +0000 2016", - "source": "Twitterrific for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15518306, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", - "statuses_count": 12127, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15518306/1406551613", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14420513", - "following": false, - "friends_count": 346, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fromonesrc.com", - "url": "https://t.co/Lez165p0gY", - "expanded_url": "http://fromonesrc.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 205, - "location": "Lansdale, PA", - "screen_name": "fromonesrc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Adam Ochonicki", - "profile_use_background_image": true, - "description": "Redemption? Sure. But in the end, he's just another dead rat in a garbage pail behind a Chinese restaurant.", - "url": "https://t.co/Lez165p0gY", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Apr 17 13:32:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", - "favourites_count": 475, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685595808402681856", - "id": 685595808402681856, - "text": "OH: \"actually, it\u2019s nice getting some time to pay down tech debt\u2026 after spending so long generating it\"\n\nThat rings so true for me.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:55:53 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14420513, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 6413, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14420513/1449525270", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2292633427", - "following": false, - "friends_count": 3204, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "uk.linkedin.com/in/jmgcraig", - "url": "https://t.co/q8exdl06ab", - "expanded_url": "https://uk.linkedin.com/in/jmgcraig", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 2839, - "location": "London", - "screen_name": "AttackyChappie", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 83, - "name": "Graeme Craig", - "profile_use_background_image": false, - "description": "Recruitment Manager @6DegreesGroup | #UC #Connectivity #DC #Cloud | Passionate #PS4 Gamer, Cyclist, Foodie, Lover of #Lego #EnglishBullDogs & my #Wife", - "url": "https://t.co/q8exdl06ab", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Jan 15 12:23:08 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", - "favourites_count": 3, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685096224463126528", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mspalliance.com/cloud-computin\u2026", - "url": "https://t.co/Aeibg4EwGl", - "expanded_url": "http://mspalliance.com/cloud-computing-managed-services-forecast-for-2016/", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "arjun077", - "id_str": "51468247", - "id": 51468247, - "indices": [ - 85, - 94 - ], - "name": "Arjun jain" - } - ] - }, - "created_at": "Thu Jan 07 13:50:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685096224463126528, - "text": "Cloud Computing & Managed Services Forecast for 2016 https://t.co/Aeibg4EwGl via @arjun077", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2292633427, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 392, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2292633427/1424354218", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "42909423", - "following": false, - "friends_count": 284, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 198, - "location": "Raleigh, NC", - "screen_name": "__id__", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Dmytro Ilchenko", - "profile_use_background_image": true, - "description": "I'm not a geek, i'm a level 12 paladin. Yak barber. Casting special ops magic to make things work @LivingSocial.", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed May 27 15:48:15 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", - "favourites_count": 1304, - "status": { - "retweet_count": 133, - "retweeted_status": { - "retweet_count": 133, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681874873539366912", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "danluu.com/wat/", - "url": "https://t.co/9DLKdXk34s", - "expanded_url": "http://danluu.com/wat/", - "indices": [ - 98, - 121 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 29 16:30:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681874873539366912, - "text": "What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 115, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683752055920553986", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "danluu.com/wat/", - "url": "https://t.co/9DLKdXk34s", - "expanded_url": "http://danluu.com/wat/", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "danluu", - "id_str": "18275645", - "id": 18275645, - "indices": [ - 3, - 10 - ], - "name": "Dan Luu" - } - ] - }, - "created_at": "Sun Jan 03 20:49:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683752055920553986, - "text": "RT @danluu: What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 42909423, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 2800, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/42909423/1398263672", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13166972", - "following": false, - "friends_count": 1776, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dariusdunlap.com", - "url": "https://t.co/Dmpe1rzbsb", - "expanded_url": "https://dariusdunlap.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1442, - "location": "Half Moon Bay, CA", - "screen_name": "dariusdunlap", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 85, - "name": "Darius Dunlap", - "profile_use_background_image": true, - "description": "Tech guy, Founder at Syncopat; Square Peg Foundation. Executive Director at Silicon Valley Innovation Institute, Advising startups & growing companies", - "url": "https://t.co/Dmpe1rzbsb", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Wed Feb 06 17:04:20 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", - "favourites_count": 1393, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684909434443706368", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "squarepegfoundation.org/2016/01/a-jour\u2026", - "url": "https://t.co/tZ6YYzQZKS", - "expanded_url": "https://www.squarepegfoundation.org/2016/01/a-journey-together/", - "indices": [ - 74, - 97 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 01:28:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -124.482003, - 32.528832 - ], - [ - -114.131212, - 32.528832 - ], - [ - -114.131212, - 42.009519 - ], - [ - -124.482003, - 42.009519 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "California, USA", - "id": "fbd6d2f5a4e4a15e", - "name": "California" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684909434443706368, - "text": "Our journey, finding one another and creating and building Square Pegs. ( https://t.co/tZ6YYzQZKS )", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 13166972, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 4660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13166972/1398466705", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "12530", - "following": false, - "friends_count": 955, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hackdiary.com/about/", - "url": "http://t.co/qmocio1ti6", - "expanded_url": "http://www.hackdiary.com/about/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF3C8", - "profile_link_color": "857025", - "geo_enabled": true, - "followers_count": 6983, - "location": "San Francisco CA, USA", - "screen_name": "mattb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 453, - "name": "Matt Biddulph", - "profile_use_background_image": true, - "description": "Currently: @thingtonhq. Previously: BBC, Dopplr, Nokia.", - "url": "http://t.co/qmocio1ti6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", - "profile_background_color": "FECF1F", - "created_at": "Wed Nov 15 15:48:50 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", - "favourites_count": 4258, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685332843334086657", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ift.tt/1mJgTP1", - "url": "https://t.co/VG2Bfr3epg", - "expanded_url": "http://ift.tt/1mJgTP1", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 05:30:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685332843334086657, - "text": "David Bowie - Blackstar https://t.co/VG2Bfr3epg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "IFTTT" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685333814298595329", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ift.tt/1mJgTP1", - "url": "https://t.co/VG2Bfr3epg", - "expanded_url": "http://ift.tt/1mJgTP1", - "indices": [ - 45, - 68 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "spotifynmfeedus", - "id_str": "2553073892", - "id": 2553073892, - "indices": [ - 3, - 19 - ], - "name": "spotifynewmusicUS" - } - ] - }, - "created_at": "Fri Jan 08 05:34:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685333814298595329, - "text": "RT @spotifynmfeedus: David Bowie - Blackstar https://t.co/VG2Bfr3epg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 12530, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", - "statuses_count": 13061, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12530/1398198928", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "239453824", - "following": false, - "friends_count": 32, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thington.com", - "url": "http://t.co/GgjWLxjLHD", - "expanded_url": "http://thington.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "FF6958", - "geo_enabled": false, - "followers_count": 2204, - "location": "San Francisco", - "screen_name": "thingtonhq", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 60, - "name": "Thington", - "profile_use_background_image": false, - "description": "We're building a new way to interact with a world of connected things!", - "url": "http://t.co/GgjWLxjLHD", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", - "profile_background_color": "F5F8FA", - "created_at": "Mon Jan 17 17:21:39 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", - "favourites_count": 33, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685263027688452096", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wired.com/2016/01/americ\u2026", - "url": "https://t.co/ZydSbrfxfe", - "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "stamen", - "id_str": "2067201", - "id": 2067201, - "indices": [ - 45, - 52 - ], - "name": "Stamen Design" - } - ] - }, - "created_at": "Fri Jan 08 00:53:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685263027688452096, - "text": "Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685277708821991424", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wired.com/2016/01/americ\u2026", - "url": "https://t.co/ZydSbrfxfe", - "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tomcoates", - "id_str": "12514", - "id": 12514, - "indices": [ - 3, - 13 - ], - "name": "Tom Coates" - }, - { - "screen_name": "stamen", - "id_str": "2067201", - "id": 2067201, - "indices": [ - 60, - 67 - ], - "name": "Stamen Design" - } - ] - }, - "created_at": "Fri Jan 08 01:51:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685277708821991424, - "text": "RT @tomcoates: Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 239453824, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 299, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "740983", - "following": false, - "friends_count": 753, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "leade.rs", - "url": "https://t.co/K0dvCXW6PW", - "expanded_url": "http://leade.rs", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "CDCECA", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 126939, - "location": "San Francisco", - "screen_name": "loic", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8209, - "name": "Loic Le Meur", - "profile_use_background_image": false, - "description": "starting leade.rs", - "url": "https://t.co/K0dvCXW6PW", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", - "profile_background_color": "CFB895", - "created_at": "Thu Feb 01 00:10:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", - "favourites_count": 816, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "_Neiluj", - "in_reply_to_user_id": 76334385, - "in_reply_to_status_id_str": "685502288232878084", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685524189436981248", - "id": 685524189436981248, - "text": "@_Neiluj passe ton email je vais t'ajouter manuellement. Tu as regard\u00e9 spam?", - "in_reply_to_user_id_str": "76334385", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "_Neiluj", - "id_str": "76334385", - "id": 76334385, - "indices": [ - 0, - 8 - ], - "name": "Julien" - } - ] - }, - "created_at": "Fri Jan 08 18:11:17 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685502288232878084, - "lang": "fr" - }, - "default_profile_image": false, - "id": 740983, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", - "statuses_count": 52911, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/740983/1447869110", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "44196397", - "following": false, - "friends_count": 50, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3189339, - "location": "1 AU", - "screen_name": "elonmusk", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 24233, - "name": "Elon Musk", - "profile_use_background_image": true, - "description": "Tesla, SpaceX, SolarCity & PayPal", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 02 20:12:29 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", - "favourites_count": 224, - "status": { - "retweet_count": 881, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683333695307034625", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "en.m.wikipedia.org/wiki/The_Machi\u2026", - "url": "https://t.co/0Dl4l2t6FH", - "expanded_url": "https://en.m.wikipedia.org/wiki/The_Machine_Stops", - "indices": [ - 63, - 86 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 02 17:07:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683333695307034625, - "text": "Worth reading The Machine Stops, an old story by E. M. Forster https://t.co/0Dl4l2t6FH", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3002, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 44196397, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", - "statuses_count": 1513, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1354486475", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14623181", - "following": false, - "friends_count": 505, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kelly-dunn.me", - "url": "http://t.co/AeKQOTxEx8", - "expanded_url": "http://kelly-dunn.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 490, - "location": "Seattle", - "screen_name": "kellyleland", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "kelly", - "profile_use_background_image": true, - "description": "Synthesizers, Various Engineering, and Avant Garde Nonsense | bit cruncher by trade, artist after hours", - "url": "http://t.co/AeKQOTxEx8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri May 02 06:41:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", - "favourites_count": 8251, - "status": { - "retweet_count": 9663, - "retweeted_status": { - "retweet_count": 9663, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685188701907988480", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 245, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 739, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 433, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "type": "photo", - "indices": [ - 77, - 100 - ], - "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "display_url": "pic.twitter.com/pEaIfJMr9T", - "id_str": "685188690730192896", - "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", - "id": 685188690730192896, - "url": "https://t.co/pEaIfJMr9T" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1Jx7CnA", - "url": "https://t.co/SxHo05b7Yz", - "expanded_url": "http://bit.ly/1Jx7CnA", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 19:58:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685188701907988480, - "text": "The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8474, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685198486355095552", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 245, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 739, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 433, - "resize": "fit" - } - }, - "source_status_id_str": "685188701907988480", - "url": "https://t.co/pEaIfJMr9T", - "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "source_user_id_str": "1630896181", - "id_str": "685188690730192896", - "id": 685188690730192896, - "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "type": "photo", - "indices": [ - 91, - 114 - ], - "source_status_id": 685188701907988480, - "source_user_id": 1630896181, - "display_url": "pic.twitter.com/pEaIfJMr9T", - "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1Jx7CnA", - "url": "https://t.co/SxHo05b7Yz", - "expanded_url": "http://bit.ly/1Jx7CnA", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "vicenews", - "id_str": "1630896181", - "id": 1630896181, - "indices": [ - 3, - 12 - ], - "name": "VICE News" - } - ] - }, - "created_at": "Thu Jan 07 20:37:04 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685198486355095552, - "text": "RT @vicenews: The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14623181, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 14314, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623181/1421113433", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "995848285", - "following": false, - "friends_count": 90, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nginx.com", - "url": "http://t.co/ahz848qfrm", - "expanded_url": "http://nginx.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 24532, - "location": "San Francisco", - "screen_name": "nginx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 452, - "name": "NGINX, Inc.", - "profile_use_background_image": true, - "description": "News from NGINX, Inc., the company providing products and services on top of its renowned open source software nginx. For news about NGINX check @nginxorg", - "url": "http://t.co/ahz848qfrm", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Dec 07 20:50:31 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", - "favourites_count": 451, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685570724019453952", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1K3bA2i", - "url": "https://t.co/mUGlFylkrn", - "expanded_url": "http://bit.ly/1K3bA2i", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [ - { - "indices": [ - 33, - 42 - ], - "text": "software" - } - ], - "user_mentions": [ - { - "screen_name": "InformationAge", - "id_str": "19603444", - "id": 19603444, - "indices": [ - 113, - 128 - ], - "name": "Information Age" - } - ] - }, - "created_at": "Fri Jan 08 21:16:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685570724019453952, - "text": "Everything old is new again: how #software development will come full circle in 2016 https://t.co/mUGlFylkrn via @InformationAge", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 995848285, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", - "statuses_count": 1960, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/995848285/1443504328", - "is_translator": false - }, - { - "time_zone": "Nairobi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 10800, - "id_str": "2975078105", - "following": false, - "friends_count": 12, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "iojs.org", - "url": "https://t.co/25rC8pIJ21", - "expanded_url": "https://iojs.org/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 13924, - "location": "Global", - "screen_name": "official_iojs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 414, - "name": "io.js", - "profile_use_background_image": true, - "description": "Bringing ES6 to the Node Community!", - "url": "https://t.co/25rC8pIJ21", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 12 18:18:27 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", - "favourites_count": 1167, - "status": { - "retweet_count": 26, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "656505348208001025", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/evangel\u2026", - "url": "https://t.co/pE0BDmhyAq", - "expanded_url": "https://github.com/nodejs/evangelism/issues/179", - "indices": [ - 20, - 43 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Oct 20 16:20:46 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 656505348208001025, - "text": "Here we go again ;) https://t.co/pE0BDmhyAq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 22, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2975078105, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 341, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2975078105/1426190219", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "30923", - "following": false, - "friends_count": 744, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "randsinrepose.com", - "url": "http://t.co/wHTKjCyuT3", - "expanded_url": "http://www.randsinrepose.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 35290, - "location": "los gatos, ca", - "screen_name": "rands", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2264, - "name": "rands", - "profile_use_background_image": true, - "description": "reposing about werewolves, pens, and writing.", - "url": "http://t.co/wHTKjCyuT3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", - "profile_background_color": "022330", - "created_at": "Wed Nov 29 19:16:11 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", - "favourites_count": 154, - "status": { - "retweet_count": 40, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685550447717789696", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/briankesinger/", - "url": "https://t.co/fMDwiiT2kx", - "expanded_url": "https://www.instagram.com/briankesinger/", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:55:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685550447717789696, - "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 30, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 30923, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 11655, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/30923/1442198088", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "7387992", - "following": false, - "friends_count": 194, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "justincampbell.me", - "url": "https://t.co/oY5xbJv61R", - "expanded_url": "http://justincampbell.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2634657/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "028E9B", - "geo_enabled": true, - "followers_count": 952, - "location": "Philadelphia, PA", - "screen_name": "justincampbell", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 52, - "name": "Justin Campbell", - "profile_use_background_image": true, - "description": "@hashicorp @turingcool @cs_bookclub @sc_philly @paperswelovephl", - "url": "https://t.co/oY5xbJv61R", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", - "profile_background_color": "FF7700", - "created_at": "Wed Jul 11 00:40:57 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "028E9B", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", - "favourites_count": 2238, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -80.519851, - 39.719801 - ], - [ - -74.689517, - 39.719801 - ], - [ - -74.689517, - 42.516072 - ], - [ - -80.519851, - 42.516072 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Pennsylvania, USA", - "id": "dd9c503d6c35364b", - "name": "Pennsylvania" - }, - "in_reply_to_screen_name": "McElaney", - "in_reply_to_user_id": 249150277, - "in_reply_to_status_id_str": "684900893997821952", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684901313788948480", - "id": 684901313788948480, - "text": "@McElaney Slack \u261c(\uff9f\u30ee\uff9f\u261c)", - "in_reply_to_user_id_str": "249150277", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "McElaney", - "id_str": "249150277", - "id": 249150277, - "indices": [ - 0, - 9 - ], - "name": "Brian E. McElaney" - } - ] - }, - "created_at": "Thu Jan 07 00:56:12 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684900893997821952, - "lang": "ja" - }, - "default_profile_image": false, - "id": 7387992, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2634657/bg.gif", - "statuses_count": 8351, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7387992/1433941401", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "778518", - "following": false, - "friends_count": 397, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "progrium.com", - "url": "http://t.co/PviVbZYkA3", - "expanded_url": "http://progrium.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 6415, - "location": "Austin, TX", - "screen_name": "progrium", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 357, - "name": "Jeff Lindsay", - "profile_use_background_image": true, - "description": "Systems. Metal. Platforms. Design. Creator: Dokku, Webhooks, RequestBin, Hacker Dojo, Localtunnel, SuperHappyDevHouse. Founder: @gliderlabs", - "url": "http://t.co/PviVbZYkA3", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Sun Feb 18 09:41:22 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", - "favourites_count": 1488, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "biphenyl", - "in_reply_to_user_id": 11772912, - "in_reply_to_status_id_str": "685543834588033024", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685543988443516928", - "id": 685543988443516928, - "text": "@biphenyl you're not Slacking enough", - "in_reply_to_user_id_str": "11772912", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "biphenyl", - "id_str": "11772912", - "id": 11772912, - "indices": [ - 0, - 9 - ], - "name": "Matt Mechtley" - } - ] - }, - "created_at": "Fri Jan 08 19:29:58 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685543834588033024, - "lang": "en" - }, - "default_profile_image": false, - "id": 778518, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 11528, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/778518/1439089812", - "is_translator": false - }, - { - "time_zone": "Buenos Aires", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "77909615", - "following": false, - "friends_count": 2319, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tryolabs.com", - "url": "https://t.co/yDkqOVMoPH", - "expanded_url": "http://www.tryolabs.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 11880, - "location": "San Francisco | Uruguay", - "screen_name": "tryolabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 376, - "name": "Tryolabs", - "profile_use_background_image": true, - "description": "Hi-tech Boutique Dev Shop focused on SV & NYC Startups. Python ecosystem, JS, iOS, NLP & Machine Learning specialists. Creators of @MonkeyLearn.", - "url": "https://t.co/yDkqOVMoPH", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 28 03:09:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", - "favourites_count": 20614, - "status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685579492614631428", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 96, - "resize": "fit" - }, - "large": { - "w": 800, - "h": 226, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 169, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", - "display_url": "pic.twitter.com/Fk3brZmoTf", - "id_str": "685579492513955840", - "expanded_url": "http://twitter.com/tryolabs/status/685579492614631428/photo/1", - "id": 685579492513955840, - "url": "https://t.co/Fk3brZmoTf" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1ZfpACc", - "url": "https://t.co/VNzbh6CpJA", - "expanded_url": "http://buff.ly/1ZfpACc", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [ - { - "indices": [ - 43, - 59 - ], - "text": "MachineLearning" - } - ], - "user_mentions": [ - { - "screen_name": "genekogan", - "id_str": "51757957", - "id": 51757957, - "indices": [ - 94, - 104 - ], - "name": "Gene Kogan" - } - ] - }, - "created_at": "Fri Jan 08 21:51:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685579492614631428, - "text": "Very interesting & engaging article on #MachineLearning + Art: https://t.co/VNzbh6CpJA by @genekogan https://t.co/Fk3brZmoTf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 77909615, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", - "statuses_count": 1400, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/77909615/1437011861", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "111767172", - "following": false, - "friends_count": 70, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 313, - "location": "Philadelphia, PA", - "screen_name": "nick_kapur", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Nick Kapur", - "profile_use_background_image": true, - "description": "Historian of modern Japan and East Asia. I only tweet extremely interesting things. No photos of my lunch and no selfies, not ever.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Feb 06 02:34:40 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", - "favourites_count": 6736, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685494137613754368", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/LIJdheem1h", - "url": "https://t.co/LIJdheem1h", - "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", - "indices": [ - 12, - 35 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:11:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685494137613754368, - "text": "i love cats https://t.co/LIJdheem1h", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685519035979677696", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/LIJdheem1h", - "url": "https://t.co/LIJdheem1h", - "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", - "indices": [ - 25, - 48 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "on3ness", - "id_str": "124548700", - "id": 124548700, - "indices": [ - 3, - 11 - ], - "name": "br\u00f8seph" - } - ] - }, - "created_at": "Fri Jan 08 17:50:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685519035979677696, - "text": "RT @on3ness: i love cats https://t.co/LIJdheem1h", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 111767172, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4392, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14247654", - "following": false, - "friends_count": 5000, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "contino.co.uk", - "url": "http://t.co/7ioXHyid9F", - "expanded_url": "http://www.contino.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2528, - "location": "London, UK", - "screen_name": "benjaminwootton", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 141, - "name": "Benjamin Wootton", - "profile_use_background_image": true, - "description": "Co-Founder of Contino, a DevOps & Continuous Delivery consultancy from the UK", - "url": "http://t.co/7ioXHyid9F", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Fri Mar 28 22:44:56 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", - "favourites_count": 1063, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683332087588503552", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "medium": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 270, - "h": 200, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "type": "photo", - "indices": [ - 117, - 140 - ], - "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "display_url": "pic.twitter.com/DabsPkV0tE", - "id_str": "683332087483641857", - "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", - "id": 683332087483641857, - "url": "https://t.co/DabsPkV0tE" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1RzZhSD", - "url": "https://t.co/qLPUnqP9Ly", - "expanded_url": "http://buff.ly/1RzZhSD", - "indices": [ - 93, - 116 - ] - } - ], - "hashtags": [ - { - "indices": [ - 30, - 37 - ], - "text": "DevOps" - } - ], - "user_mentions": [ - { - "screen_name": "paul", - "id_str": "1140", - "id": 1140, - "indices": [ - 86, - 91 - ], - "name": "Paul Rollo" - } - ] - }, - "created_at": "Sat Jan 02 17:00:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683332087588503552, - "text": "\"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly https://t.co/DabsPkV0tE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685368907327270912", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "medium": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 270, - "h": 200, - "resize": "fit" - } - }, - "source_status_id_str": "683332087588503552", - "url": "https://t.co/DabsPkV0tE", - "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "source_user_id_str": "398365705", - "id_str": "683332087483641857", - "id": 683332087483641857, - "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 683332087588503552, - "source_user_id": 398365705, - "display_url": "pic.twitter.com/DabsPkV0tE", - "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1RzZhSD", - "url": "https://t.co/qLPUnqP9Ly", - "expanded_url": "http://buff.ly/1RzZhSD", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [ - { - "indices": [ - 48, - 55 - ], - "text": "DevOps" - } - ], - "user_mentions": [ - { - "screen_name": "manupaisable", - "id_str": "398365705", - "id": 398365705, - "indices": [ - 3, - 16 - ], - "name": "Manuel Pais" - }, - { - "screen_name": "paul", - "id_str": "1140", - "id": 1140, - "indices": [ - 104, - 109 - ], - "name": "Paul Rollo" - } - ] - }, - "created_at": "Fri Jan 08 07:54:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685368907327270912, - "text": "RT @manupaisable: \"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly http\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 14247654, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2827, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "35242212", - "following": false, - "friends_count": 201, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 95, - "location": "Boston, MA", - "screen_name": "macdiesel412", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Brian Beggs", - "profile_use_background_image": false, - "description": "I write software and think BIG. XMPP, MongoDB, NoSQL, Data Analytics, cycling, skiing, edX", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sat Apr 25 16:00:27 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", - "favourites_count": 23, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Expedia", - "in_reply_to_user_id": 17365848, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677166680196390913", - "id": 677166680196390913, - "text": "@Expedia Now your support hung up on me, won't let me change flight. What gives? This service is awful!", - "in_reply_to_user_id_str": "17365848", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Expedia", - "id_str": "17365848", - "id": 17365848, - "indices": [ - 0, - 8 - ], - "name": "Expedia" - } - ] - }, - "created_at": "Wed Dec 16 16:41:32 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 35242212, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 420, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14961286", - "following": false, - "friends_count": 948, - "entities": { - "description": { - "urls": [ - { - "display_url": "erinjorichey.com", - "url": "https://t.co/bUIMCWrbnW", - "expanded_url": "http://erinjorichey.com", - "indices": [ - 121, - 144 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "erinjo.xyz", - "url": "https://t.co/zWMM8cNTsz", - "expanded_url": "http://erinjo.xyz", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", - "notifications": false, - "profile_sidebar_fill_color": "E4DACE", - "profile_link_color": "DB2E2E", - "geo_enabled": true, - "followers_count": 2265, - "location": "San Francisco, CA", - "screen_name": "erinjo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 270, - "name": "Erin Jo Richey", - "profile_use_background_image": true, - "description": "Co-founder of @withknown. Information choreographer. User experience strategist. Oregonian. Building an open social web. https://t.co/bUIMCWrbnW", - "url": "https://t.co/zWMM8cNTsz", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", - "profile_background_color": "FCFCFC", - "created_at": "Sat May 31 06:45:28 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", - "favourites_count": 723, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684958057806180352", - "id": 684958057806180352, - "text": "Walking home from the grocery store just now and got pummeled by small hail. \ud83c\udf27\u2614\ufe0f", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 04:41:41 +0000 2016", - "source": "Erin's Idno", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14961286, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", - "statuses_count": 8880, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14961286/1399013710", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "258924364", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyetconf.com", - "url": "http://t.co/8cCQxfuIhl", - "expanded_url": "http://andyetconf.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/285931472/patternpants.png", - "notifications": false, - "profile_sidebar_fill_color": "EBEBEB", - "profile_link_color": "0099B0", - "geo_enabled": false, - "followers_count": 1258, - "location": "October 6\u20138 in Richland, WA", - "screen_name": "AndyetConf", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 87, - "name": "&yetConf", - "profile_use_background_image": true, - "description": "Conf about the intersections of tech, humanity, meaning, & ethics for people who believe the world should be better and are determined to make it so.\n\n\u2014@andyet", - "url": "http://t.co/8cCQxfuIhl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", - "profile_background_color": "202020", - "created_at": "Mon Feb 28 20:09:25 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "757575", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", - "favourites_count": 824, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mmatuzak", - "in_reply_to_user_id": 10749432, - "in_reply_to_status_id_str": "684082741512515584", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684084002504900608", - "id": 684084002504900608, - "text": "@mmatuzak @obensource Yay @ADVUnderground!", - "in_reply_to_user_id_str": "10749432", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mmatuzak", - "id_str": "10749432", - "id": 10749432, - "indices": [ - 0, - 9 - ], - "name": "matuzi" - }, - { - "screen_name": "obensource", - "id_str": "407296703", - "id": 407296703, - "indices": [ - 10, - 21 - ], - "name": "Ben Michel" - }, - { - "screen_name": "ADVUnderground", - "id_str": "2149984081", - "id": 2149984081, - "indices": [ - 26, - 41 - ], - "name": "ADV Underground" - } - ] - }, - "created_at": "Mon Jan 04 18:48:30 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684082741512515584, - "lang": "und" - }, - "default_profile_image": false, - "id": 258924364, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/285931472/patternpants.png", - "statuses_count": 1505, - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "153026017", - "following": false, - "friends_count": 108, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/paulohp", - "url": "https://t.co/TH0JsQaz8h", - "expanded_url": "http://github.com/paulohp", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", - "notifications": false, - "profile_sidebar_fill_color": "FCA241", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 418, - "location": "Belo Horizonte, Brazil", - "screen_name": "paulo_hp", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 19, - "name": "Paulo Pires (\u2310\u25a0_\u25a0)", - "profile_use_background_image": true, - "description": "programmer. @bower team member. hacking listening sertanejo.", - "url": "https://t.co/TH0JsQaz8h", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", - "profile_background_color": "BCCDD6", - "created_at": "Mon Jun 07 14:00:10 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "pt", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", - "favourites_count": 562, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "rodrigo_ea", - "in_reply_to_user_id": 55245797, - "in_reply_to_status_id_str": "685272876338032640", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685276627618689024", - "id": 685276627618689024, - "text": "@rodrigo_ea @ray_ban \u00e9, o customizado :\\ mas o mais triste \u00e9 a falta de comunica\u00e7\u00e3o mesmo. Sabe como \u00e9 n\u00e9.", - "in_reply_to_user_id_str": "55245797", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rodrigo_ea", - "id_str": "55245797", - "id": 55245797, - "indices": [ - 0, - 11 - ], - "name": "Rodrigo Antinarelli" - }, - { - "screen_name": "ray_ban", - "id_str": "234264720", - "id": 234264720, - "indices": [ - 12, - 20 - ], - "name": "Ray-Ban" - } - ] - }, - "created_at": "Fri Jan 08 01:47:34 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685272876338032640, - "lang": "pt" - }, - "default_profile_image": false, - "id": 153026017, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", - "statuses_count": 5668, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/153026017/1433120246", - "is_translator": false - }, - { - "time_zone": "Lisbon", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "6477652", - "following": false, - "friends_count": 807, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "trodrigues.net", - "url": "https://t.co/MEu7qSJfMY", - "expanded_url": "http://trodrigues.net", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": false, - "followers_count": 1919, - "location": "Berlin", - "screen_name": "trodrigues", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 126, - "name": "Tiago Rodrigues", - "profile_use_background_image": false, - "description": "I tweet about things you might not like such as JS, feminism, music, coffee, open source, cats and video games. Semicolon removal expert at Contentful", - "url": "https://t.co/MEu7qSJfMY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Thu May 31 17:09:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", - "favourites_count": 1086, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "marciana", - "in_reply_to_user_id": 1813001, - "in_reply_to_status_id_str": "685501356732510208", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685502766173843456", - "id": 685502766173843456, - "text": "@marciana tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a v", - "in_reply_to_user_id_str": "1813001", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "marciana", - "id_str": "1813001", - "id": 1813001, - "indices": [ - 0, - 9 - ], - "name": "Irrita" - } - ] - }, - "created_at": "Fri Jan 08 16:46:10 +0000 2016", - "source": "Fenix for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685501356732510208, - "lang": "pt" - }, - "default_profile_image": false, - "id": 6477652, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 68450, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6477652/1410026369", - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "10840182", - "following": false, - "friends_count": 88, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mundoopensource.com.br", - "url": "http://t.co/AyVbZvEevz", - "expanded_url": "http://www.mundoopensource.com.br", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 220, - "location": "Canoas, RS", - "screen_name": "mhterres", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Marcelo Terres", - "profile_use_background_image": true, - "description": "Sysadmin Linux, com foco em VoIP e XMPP, f\u00e3 de comics, apreciador de uma boa cerveja e metido a cozinheiro e homebrewer nas horas vagas ;-)", - "url": "http://t.co/AyVbZvEevz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 04 15:18:08 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "pt", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", - "favourites_count": 11, - "status": { - "retweet_count": 18, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 18, - "truncated": false, - "retweeted": false, - "id_str": "684096178456236032", - "id": 684096178456236032, - "text": "Happy 17th birthday, Jabber! #xmpp", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 29, - 34 - ], - "text": "xmpp" - } - ], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 19:36:53 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 17, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "684112189297393665", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 41, - 46 - ], - "text": "xmpp" - } - ], - "user_mentions": [ - { - "screen_name": "ralphm", - "id_str": "2426271", - "id": 2426271, - "indices": [ - 3, - 10 - ], - "name": "Ralph Meijer" - } - ] - }, - "created_at": "Mon Jan 04 20:40:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684112189297393665, - "text": "RT @ralphm: Happy 17th birthday, Jabber! #xmpp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 10840182, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3011, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10840182/1448740364", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "2557527470", - "following": false, - "friends_count": 462, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "opensource.cisco.com", - "url": "https://t.co/XHlFibsKyg", - "expanded_url": "http://opensource.cisco.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 1022, - "location": "", - "screen_name": "TrailsAndTech", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 50, - "name": "Jen Hollingsworth", - "profile_use_background_image": false, - "description": "SW Strategy @ Cisco. Lover of: Tech, #OpenSource, Cloud Stuff, Passionate People & the Outdoors. Haven't met a trail, #CarboPro product or taco I didn't like.", - "url": "https://t.co/XHlFibsKyg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Jun 09 21:07:05 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", - "favourites_count": 2178, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "vCloudernBeer", - "in_reply_to_user_id": 830411028, - "in_reply_to_status_id_str": "685554373628424192", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685560135716966400", - "id": 685560135716966400, - "text": "@vCloudernBeer YES!!!! :)", - "in_reply_to_user_id_str": "830411028", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "vCloudernBeer", - "id_str": "830411028", - "id": 830411028, - "indices": [ - 0, - 14 - ], - "name": "Anthony Chow" - } - ] - }, - "created_at": "Fri Jan 08 20:34:08 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685554373628424192, - "lang": "und" - }, - "default_profile_image": false, - "id": 2557527470, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1371, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2557527470/1405046981", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "227050193", - "following": false, - "friends_count": 524, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "withknown.com", - "url": "http://t.co/qDJMKyeC7F", - "expanded_url": "http://withknown.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "9F111A", - "geo_enabled": false, - "followers_count": 1412, - "location": "San Francisco, CA", - "screen_name": "withknown", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 83, - "name": "Known", - "profile_use_background_image": false, - "description": "Publish on your own site, and share with audiences across the web. Part of @mattervc's third class. #indieweb #reclaimyourdomain", - "url": "http://t.co/qDJMKyeC7F", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", - "profile_background_color": "880000", - "created_at": "Wed Dec 15 19:45:51 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "880000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", - "favourites_count": 558, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "AngeloFrangione", - "in_reply_to_user_id": 334592526, - "in_reply_to_status_id_str": "685557584527376384", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610856613216256", - "id": 685610856613216256, - "text": "@AngeloFrangione We're working on integrating a translation framework. We want everyone to be able to use Known!", - "in_reply_to_user_id_str": "334592526", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AngeloFrangione", - "id_str": "334592526", - "id": 334592526, - "indices": [ - 0, - 16 - ], - "name": "Angelo" - } - ] - }, - "created_at": "Fri Jan 08 23:55:40 +0000 2016", - "source": "Known Stream", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685557584527376384, - "lang": "en" - }, - "default_profile_image": false, - "id": 227050193, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1070, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/227050193/1423650405", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "981101", - "following": false, - "friends_count": 2074, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bengo.is", - "url": "https://t.co/d3tx42Owqt", - "expanded_url": "http://bengo.is", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", - "notifications": false, - "profile_sidebar_fill_color": "333333", - "profile_link_color": "18ADF6", - "geo_enabled": true, - "followers_count": 1033, - "location": "San Francisco, CA", - "screen_name": "bengo", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 81, - "name": "Benjamin Goering", - "profile_use_background_image": true, - "description": "Founding Engineer @Livefyre. Open. Stoic Situationist. \u2665 reading, philosophy, open web, (un)logic, AI, sports, and edm. Kansan gone Cali.", - "url": "https://t.co/d3tx42Owqt", - "profile_text_color": "636363", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", - "profile_background_color": "CCCCCC", - "created_at": "Mon Mar 12 03:55:06 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", - "favourites_count": 964, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685580750448508928", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", - "type": "photo", - "indices": [ - 84, - 107 - ], - "media_url": "http://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", - "display_url": "pic.twitter.com/LTYVklmUyg", - "id_str": "685580750377205760", - "expanded_url": "http://twitter.com/bengo/status/685580750448508928/photo/1", - "id": 685580750377205760, - "url": "https://t.co/LTYVklmUyg" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "itun.es/us/0CoK2.c?i=3\u2026", - "url": "https://t.co/zQ3UB0Dhiy", - "expanded_url": "https://itun.es/us/0CoK2.c?i=359766164", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thenewstack", - "id_str": "2327560616", - "id": 2327560616, - "indices": [ - 71, - 83 - ], - "name": "The New Stack" - } - ] - }, - "created_at": "Fri Jan 08 21:56:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685580750448508928, - "text": "Check out this cool episode: https://t.co/zQ3UB0Dhiy \"Keep Node Weird\" @thenewstack https://t.co/LTYVklmUyg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 981101, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", - "statuses_count": 5799, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/981101/1353910636", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "321162442", - "following": false, - "friends_count": 143, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 26, - "location": "", - "screen_name": "mattyindustries", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Mathew Archibald", - "profile_use_background_image": true, - "description": "Linux Sysadmin at Toyota Australia", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 21 03:43:14 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", - "favourites_count": 44, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "EtihadStadiumAU", - "in_reply_to_user_id": 152837019, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "630298486664097793", - "id": 630298486664097793, - "text": "@EtihadStadiumAU kick to kick still on after #AFLSaintsFreo?", - "in_reply_to_user_id_str": "152837019", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 45, - 59 - ], - "text": "AFLSaintsFreo" - } - ], - "user_mentions": [ - { - "screen_name": "EtihadStadiumAU", - "id_str": "152837019", - "id": 152837019, - "indices": [ - 0, - 16 - ], - "name": "Etihad Stadium" - } - ] - }, - "created_at": "Sun Aug 09 08:44:04 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 321162442, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 39, - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "2402568709", - "following": false, - "friends_count": 17541, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "reeldx.com", - "url": "http://t.co/GqPJuzOYMV", - "expanded_url": "http://www.reeldx.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 21103, - "location": "Vancouver, WA", - "screen_name": "andrewreeldx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 518, - "name": "Andrew Richards", - "profile_use_background_image": true, - "description": "Co-Founder & CTO @ ReelDx, Technologist, Brewer, Runner, Coder", - "url": "http://t.co/GqPJuzOYMV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 22 03:27:50 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", - "favourites_count": 2991, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609079771774976", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/cancergeek/sta\u2026", - "url": "https://t.co/tWEoIh9Mwi", - "expanded_url": "https://twitter.com/cancergeek/status/685571019667423232", - "indices": [ - 42, - 65 - ] - } - ], - "hashtags": [ - { - "indices": [ - 34, - 40 - ], - "text": "jpm16" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:48:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609079771774976, - "text": "Liberate data? That's how we roll #jpm16 https://t.co/tWEoIh9Mwi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2402568709, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3400, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2402568709/1411424123", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14110325", - "following": false, - "friends_count": 1108, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "soundcloud.com/jay-holler", - "url": "https://t.co/Dn5Q3Kk7jo", - "expanded_url": "https://soundcloud.com/jay-holler", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "89C9FA", - "geo_enabled": true, - "followers_count": 1108, - "location": "California, USA", - "screen_name": "jayholler", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Jay Holler", - "profile_use_background_image": false, - "description": "Eventually Sol will expand to consume everything anyone has ever known, created, or recorded.", - "url": "https://t.co/Dn5Q3Kk7jo", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Mon Mar 10 00:14:55 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", - "favourites_count": 17299, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685611207588315136", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/wilkieii/statu\u2026", - "url": "https://t.co/McoC7g0Cbf", - "expanded_url": "https://twitter.com/wilkieii/status/667847111929655296", - "indices": [ - 10, - 33 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:57:04 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685611207588315136, - "text": "I Lol';ed https://t.co/McoC7g0Cbf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 14110325, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", - "statuses_count": 33898, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14110325/1452192763", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "126030998", - "following": false, - "friends_count": 542, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "0xabad1dea.github.io", - "url": "https://t.co/cZmmxZ39G9", - "expanded_url": "http://0xabad1dea.github.io/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 20122, - "location": "@veracode", - "screen_name": "0xabad1dea", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 876, - "name": "Melissa \u2407 \u2b50\ufe0f", - "profile_use_background_image": true, - "description": "Infosec supervillain, insufferable SJW, and twitter witch whose very name causes systems to crash. Fortune favors those who do the math. she/her; I \u2666\ufe0f @m1sp.", - "url": "https://t.co/cZmmxZ39G9", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 24 16:31:05 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", - "favourites_count": 2961, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "WhiteMageSlave", - "in_reply_to_user_id": 90791634, - "in_reply_to_status_id_str": "685584975370956800", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685585721063792641", - "id": 685585721063792641, - "text": "@WhiteMageSlave I went with Percy because I don't like him, after considering \"Evil Ron\" (I know nothing except they're a redhead)", - "in_reply_to_user_id_str": "90791634", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "WhiteMageSlave", - "id_str": "90791634", - "id": 90791634, - "indices": [ - 0, - 15 - ], - "name": "Tam" - } - ] - }, - "created_at": "Fri Jan 08 22:15:48 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685584975370956800, - "lang": "en" - }, - "default_profile_image": false, - "id": 126030998, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", - "statuses_count": 133954, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/126030998/1348018700", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "24718762", - "following": false, - "friends_count": 387, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": false, - "followers_count": 268, - "location": "", - "screen_name": "unixgeekem", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 26, - "name": "Emily Gladstone Cole", - "profile_use_background_image": true, - "description": "UNIX and Security Admin, baseball fan, singer, dancer, actor, voracious reader, student. Opinions are my own and not my employer's.", - "url": null, - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Mon Mar 16 16:23:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", - "favourites_count": 1739, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685593188971642880", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/RobotHugsComic\u2026", - "url": "https://t.co/SbF9JovOfO", - "expanded_url": "https://twitter.com/RobotHugsComic/status/674961985059074048", - "indices": [ - 6, - 29 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:45:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593188971642880, - "text": "This. https://t.co/SbF9JovOfO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 24718762, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "statuses_count": 2163, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/24718762/1364947598", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14071087", - "following": false, - "friends_count": 1254, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C9E6A3", - "profile_link_color": "C200E0", - "geo_enabled": true, - "followers_count": 375, - "location": "New York, NY", - "screen_name": "ineverthink", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "Chris Handy", - "profile_use_background_image": true, - "description": "Devops, Systems thinker, not just technical. Works at @workmarket, formerly @condenast", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", - "profile_background_color": "8A698A", - "created_at": "Mon Mar 03 03:50:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "6A0B8A", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", - "favourites_count": 492, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "skamille", - "in_reply_to_user_id": 24257941, - "in_reply_to_status_id_str": "685106932512854016", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685169500887629824", - "id": 685169500887629824, - "text": "@skamille might want to look into @WorkMarket", - "in_reply_to_user_id_str": "24257941", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "skamille", - "id_str": "24257941", - "id": 24257941, - "indices": [ - 0, - 9 - ], - "name": "Camille Fournier" - }, - { - "screen_name": "WorkMarket", - "id_str": "154696373", - "id": 154696373, - "indices": [ - 34, - 45 - ], - "name": "Work Market" - } - ] - }, - "created_at": "Thu Jan 07 18:41:53 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685106932512854016, - "lang": "en" - }, - "default_profile_image": false, - "id": 14071087, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", - "statuses_count": 2151, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1164839209", - "following": false, - "friends_count": 2, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nodesecurity.io", - "url": "https://t.co/McA4uRwQAL", - "expanded_url": "http://nodesecurity.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 6917, - "location": "", - "screen_name": "nodesecurity", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 295, - "name": "Node.js Security", - "profile_use_background_image": true, - "description": "Advisories, news & libraries focused on Node.js security - Sponsored by @andyet, Organized by @liftsecurity", - "url": "https://t.co/McA4uRwQAL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Feb 10 03:43:44 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", - "favourites_count": 104, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mountain_ghosts", - "in_reply_to_user_id": 13861042, - "in_reply_to_status_id_str": "685190823084986369", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685191592567701504", - "id": 685191592567701504, - "text": "@mountain_ghosts @3rdeden We added the information we received to the top of the advisory. See the linked gist.", - "in_reply_to_user_id_str": "13861042", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mountain_ghosts", - "id_str": "13861042", - "id": 13861042, - "indices": [ - 0, - 16 - ], - "name": "\u2200a: \u223c Sa = 0" - }, - { - "screen_name": "3rdEden", - "id_str": "14350255", - "id": 14350255, - "indices": [ - 17, - 25 - ], - "name": "Arnout Kazemier" - } - ] - }, - "created_at": "Thu Jan 07 20:09:40 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685190823084986369, - "lang": "en" - }, - "default_profile_image": false, - "id": 1164839209, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 356, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2883370235", - "following": false, - "friends_count": 5040, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bit.ly/11hQZa8", - "url": "http://t.co/waaWKCIqia", - "expanded_url": "http://bit.ly/11hQZa8", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7768, - "location": "", - "screen_name": "NodeJSRR", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 113, - "name": "Node JS", - "profile_use_background_image": true, - "description": "Live Content Curated by top Node JS Influencers. Moderated by @hardeepmonty.", - "url": "http://t.co/waaWKCIqia", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Nov 19 00:20:03 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", - "favourites_count": 11, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685542023986712576", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "rightrelevance.com/search/article\u2026", - "url": "https://t.co/EL03TjDFyo", - "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=3a72295be2881af33fce57960cfd5f2e09ee9233&query=node%20js&taccount=nodejsrr", - "indices": [ - 99, - 122 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:22:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685542023986712576, - "text": "Why Node.js is Ideal for the Internet of Things - AngularJS News - AngularJS News - AngularJS News https://t.co/EL03TjDFyo", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "RRPostingApp" - }, - "default_profile_image": false, - "id": 2883370235, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3310, - "is_translator": false - }, - { - "time_zone": "Wellington", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 46800, - "id_str": "136933779", - "following": false, - "friends_count": 360, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dominictarr.com", - "url": "http://t.co/dLMAgM9U90", - "expanded_url": "http://dominictarr.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "404099", - "geo_enabled": true, - "followers_count": 3915, - "location": "Planet Earth", - "screen_name": "dominictarr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 229, - "name": "Dominic Tarr", - "profile_use_background_image": false, - "description": "opinioneer", - "url": "http://t.co/dLMAgM9U90", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", - "profile_background_color": "F0F0F0", - "created_at": "Sun Apr 25 09:11:58 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", - "favourites_count": 1513, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 12241752, - "possibly_sensitive": false, - "id_str": "683456176609083392", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/maxogden/dat/w\u2026", - "url": "https://t.co/qxj2MAOd76", - "expanded_url": "https://github.com/maxogden/dat/wiki/replication-protocols#couchdb", - "indices": [ - 66, - 89 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "denormalize", - "id_str": "12241752", - "id": 12241752, - "indices": [ - 0, - 12 - ], - "name": "maxwell ogden" - } - ] - }, - "created_at": "Sun Jan 03 01:13:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "12241752", - "place": null, - "in_reply_to_screen_name": "denormalize", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683456176609083392, - "text": "@denormalize hey I added some stuff to your data replication wiki\nhttps://t.co/qxj2MAOd76", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 136933779, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6487, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/136933779/1435856217", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "113419064", - "following": false, - "friends_count": 18, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "golang.org", - "url": "http://t.co/C4svVTkUmj", - "expanded_url": "http://golang.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 36532, - "location": "", - "screen_name": "golang", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1020, - "name": "Go", - "profile_use_background_image": true, - "description": "Go will make you love programming again. I promise.", - "url": "http://t.co/C4svVTkUmj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Feb 11 18:04:38 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", - "favourites_count": 203, - "status": { - "retweet_count": 110, - "retweeted_status": { - "retweet_count": 110, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677646473484509186", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 428, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 250, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 142, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "type": "photo", - "indices": [ - 102, - 125 - ], - "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "display_url": "pic.twitter.com/F5t4jUEiRX", - "id_str": "677646437056978944", - "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", - "id": 677646437056978944, - "url": "https://t.co/F5t4jUEiRX" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 94, - 101 - ], - "text": "golang" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Dec 18 00:28:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677646473484509186, - "text": "Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 124, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677681669638373376", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 428, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 250, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 142, - "resize": "fit" - } - }, - "source_status_id_str": "677646473484509186", - "url": "https://t.co/F5t4jUEiRX", - "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "source_user_id_str": "650013", - "id_str": "677646437056978944", - "id": 677646437056978944, - "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "source_status_id": 677646473484509186, - "source_user_id": 650013, - "display_url": "pic.twitter.com/F5t4jUEiRX", - "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 108, - 115 - ], - "text": "golang" - } - ], - "user_mentions": [ - { - "screen_name": "bradfitz", - "id_str": "650013", - "id": 650013, - "indices": [ - 3, - 12 - ], - "name": "Brad Fitzpatrick" - } - ] - }, - "created_at": "Fri Dec 18 02:47:55 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677681669638373376, - "text": "RT @bradfitz: Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 113419064, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1931, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/113419064/1398369112", - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "114477539", - "following": false, - "friends_count": 303, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dribbble.com/stephane_martin", - "url": "http://t.co/2hbatAQEMF", - "expanded_url": "http://dribbble.com/stephane_martin", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2980B9", - "geo_enabled": false, - "followers_count": 2981, - "location": "France", - "screen_name": "stephane_m_", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 115, - "name": "St\u00e9phane Martin", - "profile_use_background_image": false, - "description": "Half human, half geek. Currently Sr product designer at @StackOverflow (former @efounders) I love getting things done, I believe in minimalism and wine.", - "url": "http://t.co/2hbatAQEMF", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", - "profile_background_color": "D7DCE0", - "created_at": "Mon Feb 15 15:07:00 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", - "favourites_count": 540, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 16205746, - "possibly_sensitive": false, - "id_str": "685116838418722816", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 230, - "h": 319, - "resize": "fit" - }, - "medium": { - "w": 230, - "h": 319, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 230, - "h": 319, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", - "type": "photo", - "indices": [ - 50, - 73 - ], - "media_url": "http://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", - "display_url": "pic.twitter.com/1CDvfNJ2it", - "id_str": "685116837076582400", - "expanded_url": "http://twitter.com/stephane_m_/status/685116838418722816/photo/1", - "id": 685116837076582400, - "url": "https://t.co/1CDvfNJ2it" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "alexlmiller", - "id_str": "16205746", - "id": 16205746, - "indices": [ - 0, - 12 - ], - "name": "Alex Miller" - }, - { - "screen_name": "hellohynes", - "id_str": "14475889", - "id": 14475889, - "indices": [ - 13, - 24 - ], - "name": "Joshua Hynes" - } - ] - }, - "created_at": "Thu Jan 07 15:12:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "16205746", - "place": null, - "in_reply_to_screen_name": "alexlmiller", - "in_reply_to_status_id_str": "685111393784233984", - "truncated": false, - "id": 685116838418722816, - "text": "@alexlmiller @hellohynes Wasn't disappointed too: https://t.co/1CDvfNJ2it", - "coordinates": null, - "in_reply_to_status_id": 685111393784233984, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 114477539, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 994, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "138513072", - "following": false, - "friends_count": 54, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A6E6AC", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 40, - "location": "Portland, OR", - "screen_name": "cdaringe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Chris Dieringer", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", - "profile_background_color": "329C40", - "created_at": "Thu Apr 29 19:29:29 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "9FC2A3", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", - "favourites_count": 49, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 14278727, - "possibly_sensitive": false, - "id_str": "679054290430787584", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "inkandfeet.com/how-to-use-a-g\u2026", - "url": "https://t.co/CSfKwrPXIy", - "expanded_url": "http://inkandfeet.com/how-to-use-a-generic-usb-20-10100m-ethernet-adaptor-rd9700-on-mac-os-1011-el-capitan", - "indices": [ - 21, - 44 - ] - }, - { - "display_url": "realtek.com/DOWNLOADS/down\u2026", - "url": "https://t.co/MXKy0tG3e9", - "expanded_url": "http://www.realtek.com/DOWNLOADS/downloadsView.aspx?Langid=1&PNid=14&PFid=55&Level=5&Conn=4&DownTypeID=3&GetDown=false", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "skoczen", - "id_str": "14278727", - "id": 14278727, - "indices": [ - 0, - 8 - ], - "name": "Steven Skoczen" - } - ] - }, - "created_at": "Mon Dec 21 21:42:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "14278727", - "place": null, - "in_reply_to_screen_name": "skoczen", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679054290430787584, - "text": "@skoczen, in ref to https://t.co/CSfKwrPXIy, realtek released a new driver for el cap that requires no sys edits: https://t.co/MXKy0tG3e9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 138513072, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 68, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "650013", - "following": false, - "friends_count": 542, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bradfitz.com", - "url": "http://t.co/AjdAkBY0iG", - "expanded_url": "http://bradfitz.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "BFA446", - "geo_enabled": true, - "followers_count": 17909, - "location": "San Francisco, CA", - "screen_name": "bradfitz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1003, - "name": "Brad Fitzpatrick", - "profile_use_background_image": false, - "description": "hacker, traveler, runner, optimist, gopher", - "url": "http://t.co/AjdAkBY0iG", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jan 16 23:05:57 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", - "favourites_count": 8366, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "tigahill", - "in_reply_to_user_id": 930826154, - "in_reply_to_status_id_str": "685602642395963392", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685603912133414912", - "id": 685603912133414912, - "text": "@tigahill @JohnLegere @EFF But not very media savvy, apparently. I'd love to read his actual accusations, if he can be calm for a second.", - "in_reply_to_user_id_str": "930826154", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tigahill", - "id_str": "930826154", - "id": 930826154, - "indices": [ - 0, - 9 - ], - "name": "LaTeigra Cahill" - }, - { - "screen_name": "JohnLegere", - "id_str": "1394399438", - "id": 1394399438, - "indices": [ - 10, - 21 - ], - "name": "John Legere" - }, - { - "screen_name": "EFF", - "id_str": "4816", - "id": 4816, - "indices": [ - 22, - 26 - ], - "name": "EFF" - } - ] - }, - "created_at": "Fri Jan 08 23:28:05 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685602642395963392, - "lang": "en" - }, - "default_profile_image": false, - "id": 650013, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 6185, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/650013/1348015829", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8690322", - "following": false, - "friends_count": 180, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/iyaz", - "url": "http://t.co/wXnrkVLXs1", - "expanded_url": "http://about.me/iyaz", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "560869", - "geo_enabled": true, - "followers_count": 29813, - "location": "New York, NY", - "screen_name": "iyaz", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1232, - "name": "iyaz akhtar", - "profile_use_background_image": false, - "description": "I'm the best damn Iyaz Akhtar in the world. Available online @CNET and @GFQNetwork", - "url": "http://t.co/wXnrkVLXs1", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Sep 05 17:08:15 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", - "favourites_count": 520, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685297976856584192", - "id": 685297976856584192, - "text": "What did you think was the most awesome thing at CES 2016? #top5", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 59, - 64 - ], - "text": "top5" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:12:24 +0000 2016", - "source": "Twitter for iPad", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 8690322, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "statuses_count": 15190, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8690322/1433083510", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "10350", - "following": false, - "friends_count": 1100, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/veronica", - "url": "https://t.co/Tf4y8BelKl", - "expanded_url": "http://about.me/veronica", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1758616, - "location": "San Francisco", - "screen_name": "Veronica", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 17379, - "name": "Veronica Belmont", - "profile_use_background_image": true, - "description": "New media / TV host and writer. @swordandlaser, @vaginalfantasy and #DearVeronica for @Engadget. #SFGiants Destroyer of Worlds.", - "url": "https://t.co/Tf4y8BelKl", - "profile_text_color": "1E1A1A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Oct 24 16:00:54 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C59D79", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", - "favourites_count": 2795, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "NotAPreppie", - "in_reply_to_user_id": 53830319, - "in_reply_to_status_id_str": "685613648220303360", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613962868609025", - "id": 685613962868609025, - "text": "@NotAPreppie @MarieDomingo getting into random fights on Twitter clearly makes YOU feel better! Whatever works!", - "in_reply_to_user_id_str": "53830319", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "NotAPreppie", - "id_str": "53830319", - "id": 53830319, - "indices": [ - 0, - 12 - ], - "name": "IfPinkyWereAChemist" - }, - { - "screen_name": "MarieDomingo", - "id_str": "10394242", - "id": 10394242, - "indices": [ - 13, - 26 - ], - "name": "MarieDomingo" - } - ] - }, - "created_at": "Sat Jan 09 00:08:01 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685613648220303360, - "lang": "en" - }, - "default_profile_image": false, - "id": 10350, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", - "statuses_count": 36156, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10350/1436988647", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "816214", - "following": false, - "friends_count": 734, - "entities": { - "description": { - "urls": [ - { - "display_url": "techcrunch.com/video/crunchre\u2026", - "url": "http://t.co/sufYJznghc", - "expanded_url": "http://techcrunch.com/video/crunchreport", - "indices": [ - 59, - 81 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "about.me/sarahlane", - "url": "http://t.co/POf8fV5kwg", - "expanded_url": "http://about.me/sarahlane", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", - "notifications": false, - "profile_sidebar_fill_color": "BAFF91", - "profile_link_color": "B81F45", - "geo_enabled": true, - "followers_count": 95471, - "location": "Norf Side ", - "screen_name": "sarahlane", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 6398, - "name": "Sarah Lane", - "profile_use_background_image": true, - "description": "TechCrunch Executive Producer, Video\n\nHost, Crunch Report: http://t.co/sufYJznghc\n\nI get it twisted, sorry", - "url": "http://t.co/POf8fV5kwg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Mar 06 22:45:50 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", - "favourites_count": 705, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MDee14", - "in_reply_to_user_id": 16684249, - "in_reply_to_status_id_str": "685526261507096577", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685527194949451776", - "id": 685527194949451776, - "text": "@MDee14 yay we both won!", - "in_reply_to_user_id_str": "16684249", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MDee14", - "id_str": "16684249", - "id": 16684249, - "indices": [ - 0, - 7 - ], - "name": "Marcel Dee" - } - ] - }, - "created_at": "Fri Jan 08 18:23:14 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685526261507096577, - "lang": "en" - }, - "default_profile_image": false, - "id": 816214, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", - "statuses_count": 16630, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/816214/1451606730", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "58708498", - "following": false, - "friends_count": 445, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "angelina.codes", - "url": "http://t.co/v5aoRQrHwi", - "expanded_url": "http://angelina.codes", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", - "notifications": false, - "profile_sidebar_fill_color": "F7C9FF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 17533, - "location": "NYC \u2708 ???", - "screen_name": "hopefulcyborg", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 972, - "name": "Angelina Fabbro", - "profile_use_background_image": false, - "description": "- polyglot programmer weirdo - engineer at @digitalocean (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b - prev: @mozilla devtools & @steamclocksw - they/their/them", - "url": "http://t.co/v5aoRQrHwi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jul 21 04:52:08 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", - "favourites_count": 8940, - "status": { - "retweet_count": 6096, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 6096, - "truncated": false, - "retweeted": false, - "id_str": "685515171675140096", - "id": 685515171675140096, - "text": "COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\nCOP: ok ur good", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:35:27 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 11419, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685567906923593729", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "bobvulfov", - "id_str": "2442237828", - "id": 2442237828, - "indices": [ - 3, - 13 - ], - "name": "Bob Vulfov" - } - ] - }, - "created_at": "Fri Jan 08 21:05:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685567906923593729, - "text": "RT @bobvulfov: COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 58708498, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", - "statuses_count": 22753, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/58708498/1408048999", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "682433", - "following": false, - "friends_count": 1123, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/othiym23/", - "url": "http://t.co/20WWkunxbg", - "expanded_url": "http://github.com/othiym23/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "CCCCCC", - "profile_link_color": "333333", - "geo_enabled": true, - "followers_count": 2268, - "location": "the outside lands", - "screen_name": "othiym23", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 152, - "name": "Forrest L Norvell", - "profile_use_background_image": false, - "description": "down with the kyriarchy / big ups to the heavy heavy bass.\n\nI may think you're doing something dumb but I think *you're* great.", - "url": "http://t.co/20WWkunxbg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", - "profile_background_color": "CCCCCC", - "created_at": "Mon Jan 22 20:57:31 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "333333", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", - "favourites_count": 5767, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "othiym23", - "in_reply_to_user_id": 682433, - "in_reply_to_status_id_str": "685612122915536896", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685612210031230976", - "id": 685612210031230976, - "text": "@reconbot @npmjs you probably need to look for binding.gyp and not, say, calls to `node-gyp rebuild`", - "in_reply_to_user_id_str": "682433", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "reconbot", - "id_str": "14082200", - "id": 14082200, - "indices": [ - 0, - 9 - ], - "name": "Francis Gulotta" - }, - { - "screen_name": "npmjs", - "id_str": "309528017", - "id": 309528017, - "indices": [ - 10, - 16 - ], - "name": "npmbot" - } - ] - }, - "created_at": "Sat Jan 09 00:01:03 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685612122915536896, - "lang": "en" - }, - "default_profile_image": false, - "id": 682433, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 30176, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/682433/1355870155", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "139199211", - "following": false, - "friends_count": 253, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "snarfed.org", - "url": "https://t.co/0mWCez5XaB", - "expanded_url": "https://snarfed.org/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 464, - "location": "San Francisco", - "screen_name": "schnarfed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Ryan Barrett", - "profile_use_background_image": false, - "description": "", - "url": "https://t.co/0mWCez5XaB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Sat May 01 21:42:43 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", - "favourites_count": 3258, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685210017411170305", - "id": 685210017411170305, - "text": "When someone invites me out, or just to hang, my first instinct is to check my calendar and hope for a conflict. :( #JustIntrovertThings", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 116, - 136 - ], - "text": "JustIntrovertThings" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 21:22:53 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 139199211, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 1763, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/139199211/1398278985", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "536965103", - "following": false, - "friends_count": 811, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "onebigfluke.com", - "url": "http://t.co/aaUMAjUIWi", - "expanded_url": "http://onebigfluke.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0074B3", - "geo_enabled": false, - "followers_count": 2574, - "location": "San Francisco", - "screen_name": "haxor", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 142, - "name": "Brett Slatkin", - "profile_use_background_image": true, - "description": "Eng lead @Google_Surveys. Author of @EffectivePython.\nI love bicycles and hate patents.", - "url": "http://t.co/aaUMAjUIWi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", - "profile_background_color": "4D4D4D", - "created_at": "Mon Mar 26 05:57:19 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", - "favourites_count": 3124, - "status": { - "retweet_count": 13, - "retweeted_status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685367480546541568", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "dlvr.it/DCnmnq", - "url": "https://t.co/vqRVp9rIbc", - "expanded_url": "http://dlvr.it/DCnmnq", - "indices": [ - 61, - 84 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 07:48:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "ja", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685367480546541568, - "text": "Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "dlvr.it" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685498607789670401", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "dlvr.it/DCnmnq", - "url": "https://t.co/vqRVp9rIbc", - "expanded_url": "http://dlvr.it/DCnmnq", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "oreilly_japan", - "id_str": "18382977", - "id": 18382977, - "indices": [ - 3, - 17 - ], - "name": "O'Reilly Japan, Inc." - } - ] - }, - "created_at": "Fri Jan 08 16:29:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "ja", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685498607789670401, - "text": "RT @oreilly_japan: Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 536965103, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", - "statuses_count": 1749, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/536965103/1398444972", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "610533", - "following": false, - "friends_count": 1078, - "entities": { - "description": { - "urls": [ - { - "display_url": "DailyTechNewsShow.com", - "url": "https://t.co/x2gPqqxYuL", - "expanded_url": "http://DailyTechNewsShow.com", - "indices": [ - 13, - 36 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "tommerritt.com", - "url": "http://t.co/Ru5Svk5gcM", - "expanded_url": "http://www.tommerritt.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "0099B9", - "geo_enabled": true, - "followers_count": 97335, - "location": "Virgo Supercluster", - "screen_name": "acedtect", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 6442, - "name": "Tom Merritt", - "profile_use_background_image": true, - "description": "Host of DTNS https://t.co/x2gPqqxYuL, Sword and Laser, Current Geek, Cordkillers and more. Coffee achiever", - "url": "http://t.co/Ru5Svk5gcM", - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", - "profile_background_color": "0099B9", - "created_at": "Sun Jan 07 17:00:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", - "favourites_count": 806, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Nightveil", - "in_reply_to_user_id": 16855695, - "in_reply_to_status_id_str": "685611862440849408", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685612261910560768", - "id": 685612261910560768, - "text": "@Nightveil Yeah safety date. I can always move it up.", - "in_reply_to_user_id_str": "16855695", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Nightveil", - "id_str": "16855695", - "id": 16855695, - "indices": [ - 0, - 10 - ], - "name": "Nightveil" - } - ] - }, - "created_at": "Sat Jan 09 00:01:15 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685611862440849408, - "lang": "en" - }, - "default_profile_image": false, - "id": 610533, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 37135, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/610533/1348022434", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "824168", - "following": false, - "friends_count": 1919, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 1035, - "location": "Petaluma, CA", - "screen_name": "jammerb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 108, - "name": "John Slanina", - "profile_use_background_image": true, - "description": "History is short. The sun is just a minor star.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", - "profile_background_color": "31532D", - "created_at": "Fri Mar 09 04:33:02 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", - "favourites_count": 107, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "11877321", - "id": 11877321, - "text": "Got my Screaming Monkey from Woot!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Mar 24 02:38:08 +0000 2007", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 824168, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", - "statuses_count": 6, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/824168/1434144272", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2369467405", - "following": false, - "friends_count": 34024, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wifiworkerbees.com", - "url": "http://t.co/rqac3Fh1dU", - "expanded_url": "http://wifiworkerbees.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 34950, - "location": "Following My Bliss", - "screen_name": "DereckCurry", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 632, - "name": "Dereck Curry", - "profile_use_background_image": false, - "description": "20+ year IT, coding, product management, and engineering professional. Remote work evangelist. Co-founder of @WifiWorkerBees. Husband to @Currying_Favor.", - "url": "http://t.co/rqac3Fh1dU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", - "profile_background_color": "DFF3F5", - "created_at": "Sun Mar 02 22:24:48 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", - "favourites_count": 3838, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "668089105788612608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "triplet.fi/blog/working-r\u2026", - "url": "https://t.co/euj9P7QJuh", - "expanded_url": "http://www.triplet.fi/blog/working-remotely-from-abroad-one-month-in-hungary/", - "indices": [ - 65, - 88 - ] - } - ], - "hashtags": [ - { - "indices": [ - 89, - 100 - ], - "text": "remotework" - } - ], - "user_mentions": [ - { - "screen_name": "DereckCurry", - "id_str": "2369467405", - "id": 2369467405, - "indices": [ - 106, - 118 - ], - "name": "Dereck Curry" - } - ] - }, - "created_at": "Sat Nov 21 15:30:29 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 668089105788612608, - "text": "Just blogged: Working remotely from abroad: One month in Hungary https://t.co/euj9P7QJuh #remotework /cc: @DereckCurry", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685489770089345024", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "triplet.fi/blog/working-r\u2026", - "url": "https://t.co/euj9P7QJuh", - "expanded_url": "http://www.triplet.fi/blog/working-remotely-from-abroad-one-month-in-hungary/", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [ - { - "indices": [ - 99, - 110 - ], - "text": "remotework" - } - ], - "user_mentions": [ - { - "screen_name": "_Tx3", - "id_str": "482822541", - "id": 482822541, - "indices": [ - 3, - 8 - ], - "name": "Tatu Tamminen" - }, - { - "screen_name": "DereckCurry", - "id_str": "2369467405", - "id": 2369467405, - "indices": [ - 116, - 128 - ], - "name": "Dereck Curry" - } - ] - }, - "created_at": "Fri Jan 08 15:54:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685489770089345024, - "text": "RT @_Tx3: Just blogged: Working remotely from abroad: One month in Hungary https://t.co/euj9P7QJuh #remotework /cc: @DereckCurry", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2369467405, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", - "statuses_count": 9078, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369467405/1447623348", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15948437", - "following": false, - "friends_count": 590, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "joelonsoftware.com", - "url": "http://t.co/ZHNWlmFE3H", - "expanded_url": "http://www.joelonsoftware.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E4F1F0", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 117162, - "location": "New York, NY", - "screen_name": "spolsky", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5826, - "name": "Joel Spolsky", - "profile_use_background_image": true, - "description": "CEO of Stack Overflow, co-founder of Fog Creek Software (FogBugz, Kiln), and creator of Trello. Member of NYC gay startup mafia.", - "url": "http://t.co/ZHNWlmFE3H", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Aug 22 18:34:03 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", - "favourites_count": 5133, - "status": { - "retweet_count": 33, - "retweeted_status": { - "retweet_count": 33, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684896392188444672", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/p/23a20405681a", - "url": "https://t.co/ifzwy1ausF", - "expanded_url": "https://medium.com/p/23a20405681a", - "indices": [ - 112, - 135 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 00:36:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684896392188444672, - "text": "I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/ifzwy1ausF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 91, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684939456881770496", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/p/23a20405681a", - "url": "https://t.co/ifzwy1ausF", - "expanded_url": "https://medium.com/p/23a20405681a", - "indices": [ - 126, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "anildash", - "id_str": "36823", - "id": 36823, - "indices": [ - 3, - 12 - ], - "name": "Anil Dash" - } - ] - }, - "created_at": "Thu Jan 07 03:27:46 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684939456881770496, - "text": "RT @anildash: I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 15948437, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", - "statuses_count": 6625, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15948437/1364583542", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "4519121", - "following": false, - "friends_count": 423, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theoatmeal.com", - "url": "http://t.co/hzHuiYcL4x", - "expanded_url": "http://theoatmeal.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57771255/twitter2.png", - "notifications": false, - "profile_sidebar_fill_color": "F5EDF0", - "profile_link_color": "B40B43", - "geo_enabled": true, - "followers_count": 524231, - "location": "Seattle, Washington", - "screen_name": "Oatmeal", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 17111, - "name": "Matthew Inman", - "profile_use_background_image": true, - "description": "I make comics.", - "url": "http://t.co/hzHuiYcL4x", - "profile_text_color": "362720", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", - "profile_background_color": "FF3366", - "created_at": "Fri Apr 13 16:59:37 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "CC3366", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", - "favourites_count": 1374, - "status": { - "retweet_count": 128, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685190824158691332", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 812, - "h": 587, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 245, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 433, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", - "type": "photo", - "indices": [ - 47, - 70 - ], - "media_url": "http://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", - "display_url": "pic.twitter.com/suZ6JUQaFa", - "id_str": "685190823483342849", - "expanded_url": "http://twitter.com/Oatmeal/status/685190824158691332/photo/1", - "id": 685190823483342849, - "url": "https://t.co/suZ6JUQaFa" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "theoatmeal.com/blog/playdoh", - "url": "https://t.co/v1LZDUNlnT", - "expanded_url": "http://theoatmeal.com/blog/playdoh", - "indices": [ - 23, - 46 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 20:06:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685190824158691332, - "text": "You only try this once https://t.co/v1LZDUNlnT https://t.co/suZ6JUQaFa", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 293, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 4519121, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57771255/twitter2.png", - "statuses_count": 6000, - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "9859562", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "glyph.twistedmatrix.com", - "url": "https://t.co/1dvBYKfhRo", - "expanded_url": "https://glyph.twistedmatrix.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": false, - "followers_count": 2557, - "location": "\u2191 baseline \u2193 cap-height", - "screen_name": "glyph", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 144, - "name": "\u24bc\u24c1\u24ce\u24c5\u24bd", - "profile_use_background_image": true, - "description": "Level ?? Thought Lord", - "url": "https://t.co/1dvBYKfhRo", - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", - "profile_background_color": "642D8B", - "created_at": "Thu Nov 01 18:21:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", - "favourites_count": 6287, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "corbinsimpson", - "in_reply_to_user_id": 41225243, - "in_reply_to_status_id_str": "685297984683155456", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685357014143250432", - "id": 685357014143250432, - "text": "@corbinsimpson yeah.", - "in_reply_to_user_id_str": "41225243", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "corbinsimpson", - "id_str": "41225243", - "id": 41225243, - "indices": [ - 0, - 14 - ], - "name": "Corbin Simpson" - } - ] - }, - "created_at": "Fri Jan 08 07:07:00 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685297984683155456, - "lang": "en" - }, - "default_profile_image": false, - "id": 9859562, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", - "statuses_count": 11017, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2782733125", - "following": false, - "friends_count": 427, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "raintank.io", - "url": "http://t.co/sZYy68B1yl", - "expanded_url": "http://www.raintank.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "10B1D3", - "geo_enabled": true, - "followers_count": 362, - "location": "", - "screen_name": "raintanksaas", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "raintank", - "profile_use_background_image": false, - "description": "An opensource monitoring platform to collect, store & analyze data about your infrastructure through a gorgeously powerful frontend. The company behind @grafana", - "url": "http://t.co/sZYy68B1yl", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", - "profile_background_color": "353535", - "created_at": "Sun Aug 31 18:05:44 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", - "favourites_count": 204, - "status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684453558545203200", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "type": "photo", - "indices": [ - 113, - 136 - ], - "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "display_url": "pic.twitter.com/GnfOxpEaYF", - "id_str": "684450657458368512", - "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", - "id": 684450657458368512, - "url": "https://t.co/GnfOxpEaYF" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22Jb455", - "url": "https://t.co/aYQvFNmob0", - "expanded_url": "http://bit.ly/22Jb455", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [ - { - "indices": [ - 57, - 68 - ], - "text": "monitoring" - } - ], - "user_mentions": [ - { - "screen_name": "RobustPerceiver", - "id_str": "3328053545", - "id": 3328053545, - "indices": [ - 96, - 112 - ], - "name": "Robust Perception" - } - ] - }, - "created_at": "Tue Jan 05 19:16:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684453558545203200, - "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 2782733125, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 187, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782733125/1447877118", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "23134190", - "following": false, - "friends_count": 2846, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rayheffer.com", - "url": "http://t.co/65bBqa0ySJ", - "expanded_url": "http://rayheffer.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", - "notifications": false, - "profile_sidebar_fill_color": "DBDBDB", - "profile_link_color": "1887E5", - "geo_enabled": true, - "followers_count": 12129, - "location": "Brighton, United Kingdom", - "screen_name": "rayheffer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 233, - "name": "Ray Heffer", - "profile_use_background_image": true, - "description": "Global Cloud & EUC Architect @VMware vCloud Air Network | vExpert & Double VCDX #122 | PC Gamer | Technologist | Linux | VMworld Speaker. \u65e5\u672c\u8a9e", - "url": "http://t.co/65bBqa0ySJ", - "profile_text_color": "574444", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", - "profile_background_color": "022330", - "created_at": "Fri Mar 06 23:14:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", - "favourites_count": 6141, - "status": { - "retweet_count": 8, - "retweeted_status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685565495274266624", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WFMFT", - "url": "https://t.co/QHNFIkGGaL", - "expanded_url": "http://ow.ly/WFMFT", - "indices": [ - 121, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:55:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685565495274266624, - "text": "Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https://t.co/QHNFIkGGaL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685565627487117312", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WFMFT", - "url": "https://t.co/QHNFIkGGaL", - "expanded_url": "http://ow.ly/WFMFT", - "indices": [ - 143, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PGelsinger", - "id_str": "3339261074", - "id": 3339261074, - "indices": [ - 3, - 14 - ], - "name": "Pat Gelsinger" - } - ] - }, - "created_at": "Fri Jan 08 20:55:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685565627487117312, - "text": "RT @PGelsinger: Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 23134190, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", - "statuses_count": 3576, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23134190/1447672867", - "is_translator": false - } - ], - "previous_cursor": 0, - "previous_cursor_str": "0", - "next_cursor_str": "1494734862149901956" -} \ No newline at end of file +{"users": [{"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "18275645", "following": false, "friends_count": 118, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "danluu.com", "url": "http://t.co/yAGxZQzkJc", "expanded_url": "http://danluu.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2884, "location": "Seattle, WA", "screen_name": "danluu", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 70, "name": "Dan Luu", "profile_use_background_image": true, "description": "Hardware/software co-design @Microsoft. Previously @google, @recursecenter, and centaur.", "url": "http://t.co/yAGxZQzkJc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Dec 21 00:21:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", "favourites_count": 624, "status": {"in_reply_to_status_id": 685537630235136000, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "danluu", "in_reply_to_user_id": 18275645, "in_reply_to_status_id_str": "685537630235136000", "in_reply_to_user_id_str": "18275645", "truncated": false, "id_str": "685539148292214784", "id": 685539148292214784, "text": "@twitter Meanwhile, automated bots have been tweeting every HN frontpage link for 3 years without getting flagged.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "twitter", "id_str": "783214", "id": 783214, "indices": [0, 8], "name": "Twitter"}]}, "created_at": "Fri Jan 08 19:10:44 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18275645, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 685, "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "16246973", "following": false, "friends_count": 142, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.scottlowe.org", "url": "http://t.co/EMI294FM8u", "expanded_url": "http://blog.scottlowe.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 22381, "location": "Denver, CO, USA", "screen_name": "scott_lowe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 989, "name": "Scott S. Lowe", "profile_use_background_image": true, "description": "An IT pro specializing in virtualization, networking, open source, & cloud computing; currently working for a leading virtualization vendor (tweets are mine)", "url": "http://t.co/EMI294FM8u", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Sep 11 20:17:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", "favourites_count": 0, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597324853161984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "networkworld.com/article/301666\u2026", "url": "https://t.co/Y5HBdGgEor", "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", "indices": [99, 122]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:01:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597324853161984, "text": "With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgEor", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597548321505280", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "networkworld.com/article/301666\u2026", "url": "https://t.co/Y5HBdGgEor", "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", "indices": [118, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "martin_casado", "id_str": "16591288", "id": 16591288, "indices": [3, 17], "name": "martin_casado"}]}, "created_at": "Fri Jan 08 23:02:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597548321505280, "text": "RT @martin_casado: With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgE\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 16246973, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 34402, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6981492", "following": false, "friends_count": 178, "entities": {"description": {"urls": [{"display_url": "Postlight.com", "url": "http://t.co/AxJX6dV8Ig", "expanded_url": "http://Postlight.com", "indices": [21, 43]}]}, "url": {"urls": [{"display_url": "ftrain.com", "url": "http://t.co/6afN702mgr", "expanded_url": "http://ftrain.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 32171, "location": "Brooklyn, New York, USA", "screen_name": "ftrain", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1453, "name": "Paul Ford", "profile_use_background_image": true, "description": "(1974\u2013 ) Co-founder, http://t.co/AxJX6dV8Ig. Writing a book about web pages for FSG. Contact ford@ftrain.com if you spot a typo.", "url": "http://t.co/6afN702mgr", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Jun 21 01:11:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", "favourites_count": 20008, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": {"url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.026675, 40.683935], [-73.910408, 40.683935], [-73.910408, 40.877483], [-74.026675, 40.877483]]], "type": "Polygon"}, "full_name": "Manhattan, NY", "contained_within": [], "country_code": "US", "id": "01a9a39529b27f36", "name": "Manhattan"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682597070751035392", "id": 682597070751035392, "text": "2016 resolution: Get off Twitter, for all but writing-promotional purposes, until I lose 32 pounds, one for every thousand followers.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 31 16:19:58 +0000 2015", "source": "Twitter Web Client", "favorite_count": 58, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6981492, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", "statuses_count": 29820, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6981492/1362958335", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2266469498", "following": false, "friends_count": 344, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.samwhited.com", "url": "https://t.co/FVESgX6vVp", "expanded_url": "https://blog.samwhited.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "9ABB59", "geo_enabled": true, "followers_count": 97, "location": "Austin, TX", "screen_name": "SamWhited", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Sam Whited", "profile_use_background_image": true, "description": "Sometimes I tweet things, but mostly I don't.", "url": "https://t.co/FVESgX6vVp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sat Dec 28 21:36:45 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", "favourites_count": 68, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683367861557956608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/linode/status/\u2026", "url": "https://t.co/ChRPqTJULN", "expanded_url": "https://twitter.com/linode/status/683366718798954496", "indices": [86, 109]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 02 19:22:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683367861557956608, "text": "I have not been able to maintain a persistant TCP connection with my Linodes in Days\u2026 https://t.co/ChRPqTJULN", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2266469498, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", "statuses_count": 708, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2266469498/1388268061", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6815762", "following": false, "friends_count": 825, "entities": {"description": {"urls": [{"display_url": "lasp-lang.org", "url": "https://t.co/SvIEg6a8n1", "expanded_url": "http://lasp-lang.org", "indices": [60, 83]}]}, "url": {"urls": [{"display_url": "christophermeiklejohn.com", "url": "https://t.co/OteoESj7H9", "expanded_url": "http://christophermeiklejohn.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "4E5A5E", "geo_enabled": true, "followers_count": 3106, "location": "San Francisco, CA", "screen_name": "cmeik", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 156, "name": "Christophe le fou", "profile_use_background_image": true, "description": "building programming languages for distributed computation; https://t.co/SvIEg6a8n1", "url": "https://t.co/OteoESj7H9", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Thu Jun 14 16:35:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", "favourites_count": 38338, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685581928620253186", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ow.ly/WOdRf", "url": "https://t.co/PzVfFbuaOA", "expanded_url": "http://ow.ly/WOdRf", "indices": [112, 135]}], "hashtags": [{"text": "ErlangFactory", "indices": [84, 98]}, {"text": "SF", "indices": [99, 102]}], "user_mentions": [{"screen_name": "cmeik", "id_str": "6815762", "id": 6815762, "indices": [74, 80], "name": "Christophe le fou"}]}, "created_at": "Fri Jan 08 22:00:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685581928620253186, "text": "'Lasp: A Language For Distributed, Eventually Consistent Computations' by @cmeik at #ErlangFactory #SF Bay Area https://t.co/PzVfFbuaOA", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685582620839694336", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ow.ly/WOdRf", "url": "https://t.co/PzVfFbuaOA", "expanded_url": "http://ow.ly/WOdRf", "indices": [139, 140]}], "hashtags": [{"text": "ErlangFactory", "indices": [103, 117]}, {"text": "SF", "indices": [118, 121]}], "user_mentions": [{"screen_name": "erlangfactory", "id_str": "45553317", "id": 45553317, "indices": [3, 17], "name": "Erlang Factory"}, {"screen_name": "cmeik", "id_str": "6815762", "id": 6815762, "indices": [93, 99], "name": "Christophe le fou"}]}, "created_at": "Fri Jan 08 22:03:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685582620839694336, "text": "RT @erlangfactory: 'Lasp: A Language For Distributed, Eventually Consistent Computations' by @cmeik at #ErlangFactory #SF Bay Area https://\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 6815762, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 49785, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6815762/1420224089", "is_translator": false}, {"time_zone": "Stockholm", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "17616622", "following": false, "friends_count": 332, "entities": {"description": {"urls": [{"display_url": "locust.io", "url": "http://t.co/TQXEGLwCis", "expanded_url": "http://locust.io", "indices": [78, 100]}, {"display_url": "heyevent.com", "url": "http://t.co/0DMoIMMGYB", "expanded_url": "http://heyevent.com", "indices": [102, 124]}, {"display_url": "boutiquehotel.me", "url": "http://t.co/UVjwCLqJWP", "expanded_url": "http://boutiquehotel.me", "indices": [137, 159]}]}, "url": {"urls": [{"display_url": "heyman.info", "url": "http://t.co/OJuVdsnIXQ", "expanded_url": "http://heyman.info", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1063, "location": "Sweden", "screen_name": "jonatanheyman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Jonatan Heyman", "profile_use_background_image": true, "description": "I'm a developer and I Iike to build stuff. I love Python. Author of @locustio http://t.co/TQXEGLwCis, http://t.co/0DMoIMMGYB, @ronigame, http://t.co/UVjwCLqJWP", "url": "http://t.co/OJuVdsnIXQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Nov 25 10:15:22 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", "favourites_count": 112, "status": {"retweet_count": 23, "retweeted_status": {"retweet_count": 23, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685581797850279937", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:00:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685581797850279937, "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 27, "contributors": null, "source": "Mobile Web (M5)"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685587786120970241", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "tomdale", "id_str": "668863", "id": 668863, "indices": [3, 11], "name": "Tom Dale"}]}, "created_at": "Fri Jan 08 22:24:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685587786120970241, "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 17616622, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 996, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17616622/1397123585", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "290900886", "following": false, "friends_count": 28, "entities": {"description": {"urls": [{"display_url": "hashicorp.com/atlas", "url": "https://t.co/3rYtQZlVFj", "expanded_url": "https://hashicorp.com/atlas", "indices": [75, 98]}]}, "url": {"urls": [{"display_url": "hashicorp.com", "url": "https://t.co/ny0Vs9IMpz", "expanded_url": "https://hashicorp.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "48B4FB", "geo_enabled": false, "followers_count": 10678, "location": "San Francisco, CA", "screen_name": "hashicorp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 326, "name": "HashiCorp", "profile_use_background_image": false, "description": "We build Vagrant, Packer, Serf, Consul, Terraform, Vault, Nomad, Otto, and https://t.co/3rYtQZlVFj. We love developers, ops, and are obsessed with automation.", "url": "https://t.co/ny0Vs9IMpz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", "profile_background_color": "FFFFFF", "created_at": "Sun May 01 04:14:30 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", "favourites_count": 23, "status": {"retweet_count": 12, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685602742769876992", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/hashicorp/terr\u2026", "url": "https://t.co/QjiHQfLdQF", "expanded_url": "https://github.com/hashicorp/terraform/blob/v0.6.9/CHANGELOG.md#069-january-8-2016", "indices": [90, 113]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:23:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685602742769876992, "text": "Terraform 0.6.9 has been released! 5 new providers and a long list of features and fixes: https://t.co/QjiHQfLdQF", "coordinates": null, "retweeted": false, "favorite_count": 12, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 290900886, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 715, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1229010770", "following": false, "friends_count": 15, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kimh.github.io", "url": "http://t.co/rOoCzBI0Uk", "expanded_url": "http://kimh.github.io/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 24, "location": "", "screen_name": "kimhirokuni", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Kim, Hirokuni", "profile_use_background_image": true, "description": "", "url": "http://t.co/rOoCzBI0Uk", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Mar 01 04:35:59 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", "favourites_count": 4, "status": {"retweet_count": 14, "retweeted_status": {"retweet_count": 14, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684163973390974976", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 169, "resize": "fit"}, "large": {"w": 799, "h": 398, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 298, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "type": "photo", "indices": [95, 118], "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "display_url": "pic.twitter.com/VEpSVWgnhn", "id_str": "684163973206421509", "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", "id": 684163973206421509, "url": "https://t.co/VEpSVWgnhn"}], "symbols": [], "urls": [{"display_url": "circle.ci/1YyS1W6", "url": "https://t.co/Mil1rt44Ve", "expanded_url": "http://circle.ci/1YyS1W6", "indices": [71, 94]}], "hashtags": [], "user_mentions": [{"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [16, 25], "name": "CircleCI"}]}, "created_at": "Tue Jan 05 00:06:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684163973390974976, "text": "We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684249491948490752", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 169, "resize": "fit"}, "large": {"w": 799, "h": 398, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 298, "resize": "fit"}}, "source_status_id_str": "684163973390974976", "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "source_user_id_str": "381223731", "id_str": "684163973206421509", "id": 684163973206421509, "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "type": "photo", "indices": [109, 132], "source_status_id": 684163973390974976, "source_user_id": 381223731, "display_url": "pic.twitter.com/VEpSVWgnhn", "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", "url": "https://t.co/VEpSVWgnhn"}], "symbols": [], "urls": [{"display_url": "circle.ci/1YyS1W6", "url": "https://t.co/Mil1rt44Ve", "expanded_url": "http://circle.ci/1YyS1W6", "indices": [85, 108]}], "hashtags": [], "user_mentions": [{"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [3, 12], "name": "CircleCI"}, {"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [30, 39], "name": "CircleCI"}]}, "created_at": "Tue Jan 05 05:46:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684249491948490752, "text": "RT @circleci: We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1229010770, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 56, "is_translator": false}, {"time_zone": "Madrid", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "311029627", "following": false, "friends_count": 173, "entities": {"description": {"urls": [{"display_url": "keybase.io/alexey_ch", "url": "http://t.co/3wRCyfslLs", "expanded_url": "http://keybase.io/alexey_ch", "indices": [56, 78]}]}, "url": {"urls": [{"display_url": "alexey.ch", "url": "http://t.co/sGSgRzEPYs", "expanded_url": "http://alexey.ch", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 230, "location": "Sant Cugat del Vall\u00e8s", "screen_name": "alexey_am_i", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Alexey", "profile_use_background_image": true, "description": "bites and bytes / chief bash script officer @circleci / http://t.co/3wRCyfslLs", "url": "http://t.co/sGSgRzEPYs", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Sat Jun 04 19:35:45 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", "favourites_count": 2099, "status": {"in_reply_to_status_id": 685505979270574080, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "KrauseFx", "in_reply_to_user_id": 50055757, "in_reply_to_status_id_str": "685505979270574080", "in_reply_to_user_id_str": "50055757", "truncated": false, "id_str": "685506452614688768", "id": 685506452614688768, "text": "@KrauseFx Nice screenshot :D", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "KrauseFx", "id_str": "50055757", "id": 50055757, "indices": [0, 9], "name": "Felix Krause"}]}, "created_at": "Fri Jan 08 17:00:49 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 311029627, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", "statuses_count": 10759, "profile_banner_url": "https://pbs.twimg.com/profile_banners/311029627/1366924833", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "810781", "following": false, "friends_count": 370, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "unwiredcouch.com", "url": "https://t.co/AlM3lgSG3F", "expanded_url": "https://unwiredcouch.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0099CC", "geo_enabled": false, "followers_count": 1872, "location": "probably Brooklyn or Freiburg", "screen_name": "mrtazz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 103, "name": "Daniel Schauenberg", "profile_use_background_image": true, "description": "Infrastructure Toolsmith at Etsy. A Cheap Trick and a Cheesy One-Liner. I own 100% of my opinions. Feminist.", "url": "https://t.co/AlM3lgSG3F", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", "profile_background_color": "FFF04D", "created_at": "Sun Mar 04 21:17:02 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFF8AD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", "favourites_count": 7995, "status": {"in_reply_to_status_id": 685561412450562048, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jmhodges", "in_reply_to_user_id": 9267272, "in_reply_to_status_id_str": "685561412450562048", "in_reply_to_user_id_str": "9267272", "truncated": false, "id_str": "685565956836487168", "id": 685565956836487168, "text": "@jmhodges the important bit is to understand when and how and learn from it", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jmhodges", "id_str": "9267272", "id": 9267272, "indices": [0, 9], "name": "Jeff Hodges"}]}, "created_at": "Fri Jan 08 20:57:15 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 810781, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "statuses_count": 17494, "profile_banner_url": "https://pbs.twimg.com/profile_banners/810781/1374119286", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "166282004", "following": false, "friends_count": 131, "entities": {"description": {"urls": [{"display_url": "scotthel.me/PGP", "url": "http://t.co/gL8cUpGdUF", "expanded_url": "http://scotthel.me/PGP", "indices": [137, 159]}]}, "url": {"urls": [{"display_url": "scotthelme.co.uk", "url": "https://t.co/amYoJQqVCA", "expanded_url": "https://scotthelme.co.uk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "2971FF", "geo_enabled": false, "followers_count": 1585, "location": "UK", "screen_name": "Scott_Helme", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 94, "name": "Scott Helme", "profile_use_background_image": false, "description": "Information Security Consultant, blogger, builder of things. Creator of @reporturi and @securityheaders. I want to secure the entire web http://t.co/gL8cUpGdUF", "url": "https://t.co/amYoJQqVCA", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", "profile_background_color": "F5F8FA", "created_at": "Tue Jul 13 19:42:08 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", "favourites_count": 488, "status": {"retweet_count": 130, "retweeted_status": {"retweet_count": 130, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684262306956443648", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "securityheaders.io", "url": "https://t.co/tFn2HCB6YS", "expanded_url": "https://securityheaders.io/", "indices": [71, 94]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 06:37:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684262306956443648, "text": "SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", "coordinates": null, "retweeted": false, "favorite_count": 260, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607128095154176", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "securityheaders.io", "url": "https://t.co/tFn2HCB6YS", "expanded_url": "https://securityheaders.io/", "indices": [88, 111]}], "hashtags": [], "user_mentions": [{"screen_name": "smashingmag", "id_str": "15736190", "id": 15736190, "indices": [3, 15], "name": "Smashing Magazine"}]}, "created_at": "Fri Jan 08 23:40:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607128095154176, "text": "RT @smashingmag: SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 166282004, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", "statuses_count": 5651, "profile_banner_url": "https://pbs.twimg.com/profile_banners/166282004/1421676770", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13734442", "following": false, "friends_count": 700, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "entropystream.net", "url": "http://t.co/jHZOamrEt4", "expanded_url": "http://entropystream.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "193FFF", "geo_enabled": false, "followers_count": 907, "location": "Seattle WA", "screen_name": "blueben", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 73, "name": "Ben Macguire", "profile_use_background_image": false, "description": "Ops Engineer, Music, RF, Puppies.", "url": "http://t.co/jHZOamrEt4", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Feb 20 19:12:44 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", "favourites_count": 497, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685121298100424704", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", "type": "photo", "indices": [34, 57], "media_url": "http://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", "display_url": "pic.twitter.com/yJ5odOn9OQ", "id_str": "685121290575806465", "expanded_url": "http://twitter.com/blueben/status/685121298100424704/photo/1", "id": 685121290575806465, "url": "https://t.co/yJ5odOn9OQ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 15:30:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685121298100424704, "text": "Slightly foggy in Salt Lake City. https://t.co/yJ5odOn9OQ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 13734442, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 14940, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3237083798", "following": false, "friends_count": 2, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bgpstream.com", "url": "https://t.co/gdCAgJZFwt", "expanded_url": "https://bgpstream.com/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1378, "location": "", "screen_name": "bgpstream", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "bgpstream", "profile_use_background_image": true, "description": "BGPStream is a free resource for receiving alerts about BGP hijacks and large scale outages. Brought to you by @bgpmon", "url": "https://t.co/gdCAgJZFwt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Jun 05 15:28:16 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", "favourites_count": 4, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685604760662196224", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bgpstream.com/event/16414", "url": "https://t.co/Fwvyew4hhY", "expanded_url": "http://bgpstream.com/event/16414", "indices": [53, 76]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:31:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685604760662196224, "text": "BGP,OT,52742,INTERNET,-,Outage affected 15 prefixes, https://t.co/Fwvyew4hhY", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "BGPStream"}, "default_profile_image": false, "id": 3237083798, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3555, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3237083798/1437676409", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "507922769", "following": false, "friends_count": 295, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "waterpigs.co.uk", "url": "https://t.co/NTbafUKQZe", "expanded_url": "https://waterpigs.co.uk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 331, "location": "Reykjav\u00edk, Iceland", "screen_name": "BarnabyWalters", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Barnaby Walters", "profile_use_background_image": true, "description": "Music/tech minded individual. Trained as a luthier, working on web surveys at V\u00edsar, Iceland. Building the #indieweb of the future. Hiking, climbing, gurdying.", "url": "https://t.co/NTbafUKQZe", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Feb 28 21:07:29 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", "favourites_count": 2198, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684845666649157632", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "waterpigs.co.uk/img/2016-01-06\u2026", "url": "https://t.co/7wSqHpJZYS", "expanded_url": "https://waterpigs.co.uk/img/2016-01-06-bubbles.gif", "indices": [36, 59]}, {"display_url": "waterpigs.co.uk/notes/4f6MF3/", "url": "https://t.co/5L2Znu5Ack", "expanded_url": "https://waterpigs.co.uk/notes/4f6MF3/", "indices": [62, 85]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 21:15:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684845666649157632, "text": "A little preparation for tomorrow\u2026\n\nhttps://t.co/7wSqHpJZYS\n (https://t.co/5L2Znu5Ack)", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Waterpigs.co.uk"}, "default_profile_image": false, "id": 507922769, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", "statuses_count": 3559, "profile_banner_url": "https://pbs.twimg.com/profile_banners/507922769/1348091343", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "235193328", "following": false, "friends_count": 129, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "indiewebcamp.com", "url": "http://t.co/Lhpx03ubrJ", "expanded_url": "http://indiewebcamp.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 782, "location": "Portland, Oregon", "screen_name": "indiewebcamp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "IndieWebCamp", "profile_use_background_image": true, "description": "Rather than posting content on 3rd-party silos, we should all begin owning our data when we create it.", "url": "http://t.co/Lhpx03ubrJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Jan 07 15:53:54 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", "favourites_count": 1154, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685273812682719233", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "zeldman.com/2016/01/05/139\u2026", "url": "https://t.co/kMiWh7ufuW", "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", "indices": [104, 127]}], "hashtags": [{"text": "indieweb", "indices": [128, 137]}], "user_mentions": []}, "created_at": "Fri Jan 08 01:36:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685273812682719233, "text": "\u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7ufuW #indieweb", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685306865635336192", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "zeldman.com/2016/01/05/139\u2026", "url": "https://t.co/kMiWh7ufuW", "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", "indices": [120, 140]}], "hashtags": [{"text": "indieweb", "indices": [139, 140]}], "user_mentions": [{"screen_name": "kevinmarks", "id_str": "57203", "id": 57203, "indices": [3, 14], "name": "Kevin Marks"}]}, "created_at": "Fri Jan 08 03:47:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685306865635336192, "text": "RT @kevinmarks: \u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 235193328, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 151, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1183041", "following": false, "friends_count": 335, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wilwheaton.net/2009/02/what-t\u2026", "url": "http://t.co/UAYYOhbijM", "expanded_url": "http://wilwheaton.net/2009/02/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "F6101E", "geo_enabled": false, "followers_count": 2966148, "location": "Los Angeles", "screen_name": "wilw", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 38874, "name": "Wil Wheaton", "profile_use_background_image": true, "description": "Barrelslayer. Time Lord. Fake geek girl. On a good day I am charming as fuck.", "url": "http://t.co/UAYYOhbijM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", "profile_background_color": "022330", "created_at": "Wed Mar 14 21:25:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", "favourites_count": 445, "status": {"in_reply_to_status_id": 685587772208476160, "retweet_count": 11, "place": null, "in_reply_to_screen_name": "scalzi", "in_reply_to_user_id": 14202817, "in_reply_to_status_id_str": "685587772208476160", "in_reply_to_user_id_str": "14202817", "truncated": false, "id_str": "685589599108739072", "id": 685589599108739072, "text": "@scalzi Dear Texas: just fucking secede already, and let the rest of us live in the 21st century. Thanks - - W2", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "scalzi", "id_str": "14202817", "id": 14202817, "indices": [0, 7], "name": "John Scalzi"}]}, "created_at": "Fri Jan 08 22:31:12 +0000 2016", "source": "Tweetings for Android", "favorite_count": 91, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1183041, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", "statuses_count": 60966, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183041/1368668860", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24184180", "following": false, "friends_count": 150, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "004A05", "geo_enabled": true, "followers_count": 283, "location": "", "screen_name": "xanderdumaine", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 31, "name": "Xander Dumaine", "profile_use_background_image": true, "description": "still trying. sometimes I have Opinions\u2122 which are my own, and do not represent my employer. Retweets do not imply endorsement.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Mar 13 14:59:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", "favourites_count": 1252, "status": {"retweet_count": 0, "in_reply_to_user_id": 237534782, "possibly_sensitive": false, "id_str": "685584914973089792", "in_reply_to_user_id_str": "237534782", "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/necrosofty/sta\u2026", "url": "https://t.co/9jl9UNHv0s", "expanded_url": "https://twitter.com/necrosofty/status/685270713792466944", "indices": [13, 36]}], "hashtags": [], "user_mentions": [{"screen_name": "MattCheely", "id_str": "237534782", "id": 237534782, "indices": [0, 11], "name": "Matt Cheely"}]}, "created_at": "Fri Jan 08 22:12:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/0122292c5bc9ff29.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-78.881022, 35.796927], [-78.786799, 35.796927], [-78.786799, 35.870756], [-78.881022, 35.870756]]], "type": "Polygon"}, "full_name": "Morrisville, NC", "contained_within": [], "country_code": "US", "id": "0122292c5bc9ff29", "name": "Morrisville"}, "in_reply_to_screen_name": "MattCheely", "in_reply_to_status_id_str": null, "truncated": false, "id": 685584914973089792, "text": "@MattCheely https://t.co/9jl9UNHv0s", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 24184180, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", "statuses_count": 18329, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24184180/1452092382", "is_translator": false}, {"time_zone": "Melbourne", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "79227302", "following": false, "friends_count": 30, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fastmail.com", "url": "https://t.co/ckOsRTyp9h", "expanded_url": "https://www.fastmail.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "44567E", "geo_enabled": true, "followers_count": 5651, "location": "Melbourne, Australia", "screen_name": "FastMailFM", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 239, "name": "FastMail", "profile_use_background_image": true, "description": "Email, calendars and contacts done right.", "url": "https://t.co/ckOsRTyp9h", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", "profile_background_color": "022330", "created_at": "Fri Oct 02 16:49:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", "favourites_count": 293, "status": {"in_reply_to_status_id": 685607110684454912, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "chrisWhite", "in_reply_to_user_id": 7804242, "in_reply_to_status_id_str": "685607110684454912", "in_reply_to_user_id_str": "7804242", "truncated": false, "id_str": "685610756151230464", "id": 685610756151230464, "text": "@chrisWhite No the subject tagging is independent. You can turn it off in Advaced \u2192 Spam Preferences.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "chrisWhite", "id_str": "7804242", "id": 7804242, "indices": [0, 11], "name": "Chris White"}]}, "created_at": "Fri Jan 08 23:55:16 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 79227302, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2194, "profile_banner_url": "https://pbs.twimg.com/profile_banners/79227302/1403516751", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2209238580", "following": false, "friends_count": 2044, "entities": {"description": {"urls": [{"display_url": "github.com/StackStorm/st2", "url": "https://t.co/sd2EyabsN0", "expanded_url": "https://github.com/StackStorm/st2", "indices": [100, 123]}]}, "url": {"urls": [{"display_url": "stackstorm.com", "url": "http://t.co/5oR6MbHPSq", "expanded_url": "http://www.stackstorm.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2407, "location": "Palo Alto, CA", "screen_name": "Stack_Storm", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 110, "name": "StackStorm", "profile_use_background_image": true, "description": "Event driven operations. Sometimes called IFTTT for IT ops. Open source. Auto-remediation and more.\nhttps://t.co/sd2EyabsN0", "url": "http://t.co/5oR6MbHPSq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Nov 22 16:42:49 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", "favourites_count": 548, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685551803044249600", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "redd.it/3ztcla", "url": "https://t.co/C6Wa98PSra", "expanded_url": "https://redd.it/3ztcla", "indices": [92, 115]}], "hashtags": [{"text": "chatops", "indices": [20, 28]}], "user_mentions": []}, "created_at": "Fri Jan 08 20:01:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685551803044249600, "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685561768551186432", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "redd.it/3ztcla", "url": "https://t.co/C6Wa98PSra", "expanded_url": "https://redd.it/3ztcla", "indices": [108, 131]}], "hashtags": [{"text": "chatops", "indices": [36, 44]}], "user_mentions": [{"screen_name": "epowell101", "id_str": "15119662", "id": 15119662, "indices": [3, 14], "name": "Evan Powell"}]}, "created_at": "Fri Jan 08 20:40:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685561768551186432, "text": "RT @epowell101: Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2209238580, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1667, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209238580/1414949794", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "160640740", "following": false, "friends_count": 1203, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/marcomorain", "url": "https://t.co/QNDuJQAZ6V", "expanded_url": "https://github.com/marcomorain", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 503, "location": "Dublin, Ireland", "screen_name": "atmarc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "Marc O'Merriment", "profile_use_background_image": true, "description": "Developer at @CircleCI Previously Swrve, Havok and Kore Virtual Machines.", "url": "https://t.co/QNDuJQAZ6V", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Mon Jun 28 19:06:33 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", "favourites_count": 3499, "status": {"retweet_count": 23, "retweeted_status": {"retweet_count": 23, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685581797850279937", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:00:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685581797850279937, "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 27, "contributors": null, "source": "Mobile Web (M5)"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685582745637109760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "tomdale", "id_str": "668863", "id": 668863, "indices": [3, 11], "name": "Tom Dale"}]}, "created_at": "Fri Jan 08 22:03:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685582745637109760, "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 160640740, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 4682, "profile_banner_url": "https://pbs.twimg.com/profile_banners/160640740/1398359765", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13470", "following": false, "friends_count": 1409, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sauria.com/blog", "url": "http://t.co/UB3y8QBrA6", "expanded_url": "http://www.sauria.com/blog", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 2849, "location": "Bainbridge Island, WA", "screen_name": "twleung", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 218, "name": "Ted Leung", "profile_use_background_image": true, "description": "photographs, modern programming languages, embedded systems, and commons based peer production. Leading the Playmation software team at The Walt Disney Company.", "url": "http://t.co/UB3y8QBrA6", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Tue Nov 21 09:23:47 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", "favourites_count": 4072, "status": {"in_reply_to_status_id": 684776564093931521, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jaxzin", "in_reply_to_user_id": 14320521, "in_reply_to_status_id_str": "684776564093931521", "in_reply_to_user_id_str": "14320521", "truncated": false, "id_str": "684784895512584192", "id": 684784895512584192, "text": "@jaxzin what do you think is the magic price point?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jaxzin", "id_str": "14320521", "id": 14320521, "indices": [0, 7], "name": "Brian R. Jackson"}]}, "created_at": "Wed Jan 06 17:13:36 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13470, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 9358, "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "50599894", "following": false, "friends_count": 1352, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 955, "location": "Paris, France", "screen_name": "nyconyco", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 72, "name": "Nicolas V\u00e9rit\u00e9, N\u00ffco", "profile_use_background_image": true, "description": "Product Owner @ErlangSolutions, President at @LinuxFrOrg #FLOSS #OpenSource #TheOpenOrg #Agile #LeanStartup #DesignThinking #GrowthHacking", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", "profile_background_color": "131516", "created_at": "Thu Jun 25 09:26:17 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", "favourites_count": 343, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685537987355111426", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1O8FVAd", "url": "https://t.co/IxvtPzMNtO", "expanded_url": "http://buff.ly/1O8FVAd", "indices": [114, 137]}], "hashtags": [{"text": "Startups", "indices": [2, 11]}], "user_mentions": []}, "created_at": "Fri Jan 08 19:06:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685537987355111426, "text": "8 #Startups, 4 IPO's, Lost $35m of Investors Money to Paying Them Back $1b Each! Startup Lessons From Steve Blank https://t.co/IxvtPzMNtO", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 50599894, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 4281, "profile_banner_url": "https://pbs.twimg.com/profile_banners/50599894/1358775155", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "106621747", "following": false, "friends_count": 100, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "B30645", "geo_enabled": true, "followers_count": 734, "location": "", "screen_name": "KalieCatt", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 40, "name": "Kalie Fry", "profile_use_background_image": true, "description": "director of engagement marketing at @gomcmkt. wordsmith. social media jedi. closet creative. coffee connoisseur. classic novel enthusiast.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Jan 20 04:01:25 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", "favourites_count": 6311, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685351275647516672", "id": 685351275647516672, "text": "So, I've been in an emoji formula battle all day and need to phone a friend. Want to help me solve?\n\n\u2754\u2795\u2702\ufe0f=\u2753\n\u2754\u2795\ud83c\uddf3\ud83c\uddec= \u2753\u2753\n\u2754\u2754\u2795(\u2796\ud83c\udf32\u2795\ud83d\udd34\u2795\ud83c\udf41)=\u2753\u2753", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 06:44:11 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 106621747, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", "statuses_count": 2130, "profile_banner_url": "https://pbs.twimg.com/profile_banners/106621747/1430221319", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "459492917", "following": false, "friends_count": 3657, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "howhackersthink.com", "url": "http://t.co/IBghUiKudG", "expanded_url": "http://www.howhackersthink.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3816, "location": "Washington, DC", "screen_name": "HowHackersThink", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 178, "name": "HowHackersThink", "profile_use_background_image": true, "description": "Hacker. Consultant. Cyber Strategist. Writer. Professor. Public speaker. Researcher. Innovator. Advocate. All tweets and views are my own.", "url": "http://t.co/IBghUiKudG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", "profile_background_color": "022330", "created_at": "Mon Jan 09 18:43:40 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", "favourites_count": 693, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684614746486759424", "id": 684614746486759424, "text": "The most complex things in this life: the mind and the universe. I study the mind on my way to understanding the universe. #HowHackersThink", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "HowHackersThink", "indices": [123, 139]}], "user_mentions": []}, "created_at": "Wed Jan 06 05:57:29 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 459492917, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2888, "profile_banner_url": "https://pbs.twimg.com/profile_banners/459492917/1436656035", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "110735547", "following": false, "friends_count": 514, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 162, "location": "Camden, ME", "screen_name": "kjstone00", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Kevin Stone", "profile_use_background_image": true, "description": "dad, ops, monitoring, dogs, cats, chickens. Fledgling home brewer. Living life the way it should be in Maine", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Feb 02 15:59:41 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", "favourites_count": 420, "status": {"in_reply_to_status_id": 685147818080776192, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "sogrady", "in_reply_to_user_id": 143883, "in_reply_to_status_id_str": "685147818080776192", "in_reply_to_user_id_str": "143883", "truncated": false, "id_str": "685211417461534720", "id": 685211417461534720, "text": "@sogrady Is that Left Shark?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "sogrady", "id_str": "143883", "id": 143883, "indices": [0, 8], "name": "steve o'grady"}]}, "created_at": "Thu Jan 07 21:28:27 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 110735547, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3642, "is_translator": false}, {"time_zone": "Ljubljana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "59282163", "following": false, "friends_count": 876, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lstoll.net", "url": "https://t.co/zymtFzZre6", "expanded_url": "http://lstoll.net", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "666666", "geo_enabled": true, "followers_count": 41022, "location": "Cleveland, OH", "screen_name": "lstoll", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 125, "name": "Kernel Sanders", "profile_use_background_image": true, "description": "Just some rando Australian operating computers and stuff at @Heroku. Previously @DigitalOcean, @GitHub, @Heroku.", "url": "https://t.co/zymtFzZre6", "profile_text_color": "000000", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", "profile_background_color": "352726", "created_at": "Wed Jul 22 23:05:12 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", "favourites_count": 14331, "status": {"in_reply_to_status_id": 685598770684411904, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-81.877771, 41.392684], [-81.5331634, 41.392684], [-81.5331634, 41.599195], [-81.877771, 41.599195]]], "type": "Polygon"}, "full_name": "Cleveland, OH", "contained_within": [], "country_code": "US", "id": "0eb9676d24b211f1", "name": "Cleveland"}, "in_reply_to_screen_name": "klimpong", "in_reply_to_user_id": 4600051, "in_reply_to_status_id_str": "685598770684411904", "in_reply_to_user_id_str": "4600051", "truncated": false, "id_str": "685599007415078913", "id": 685599007415078913, "text": "@klimpong Bonjour (That's french too)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "klimpong", "id_str": "4600051", "id": 4600051, "indices": [0, 9], "name": "Till"}]}, "created_at": "Fri Jan 08 23:08:35 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 59282163, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 28104, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "163457790", "following": false, "friends_count": 1421, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eligible.com", "url": "https://t.co/zeacfox6vu", "expanded_url": "http://eligible.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 15359, "location": "San Francisco \u21c6 Brooklyn ", "screen_name": "katgleason", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 172, "name": "Katelyn Gleason", "profile_use_background_image": false, "description": "S12 YC alum. CEO @eligibleapi", "url": "https://t.co/zeacfox6vu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jul 06 13:33:13 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", "favourites_count": 2503, "status": {"in_reply_to_status_id": 685529873138323456, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "kirillzubovsky", "in_reply_to_user_id": 17541787, "in_reply_to_status_id_str": "685529873138323456", "in_reply_to_user_id_str": "17541787", "truncated": false, "id_str": "685531559508721664", "id": 685531559508721664, "text": "@kirillzubovsky @davemorin LOL that's definitely going in the folder", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kirillzubovsky", "id_str": "17541787", "id": 17541787, "indices": [0, 15], "name": "Kirill Zubovsky"}, {"screen_name": "davemorin", "id_str": "3475", "id": 3475, "indices": [16, 26], "name": "Dave Morin"}]}, "created_at": "Fri Jan 08 18:40:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 163457790, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", "statuses_count": 6273, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3998615773", "following": false, "friends_count": 5002, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "devopsdad.com", "url": "https://t.co/JrNXHr85zj", "expanded_url": "http://devopsdad.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "500A53", "geo_enabled": false, "followers_count": 1286, "location": "Texas, USA", "screen_name": "TheDevOpsDad", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 25, "name": "Roel Pasetes", "profile_use_background_image": false, "description": "DevOps Engineer and Dad. Love 'em Both.", "url": "https://t.co/JrNXHr85zj", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Oct 24 04:34:34 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", "favourites_count": 7, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682441217653796865", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 193, "h": 186, "resize": "fit"}, "small": {"w": 193, "h": 186, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 193, "h": 186, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", "type": "photo", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", "display_url": "pic.twitter.com/ZKCpgU3ctc", "id_str": "682441217536294912", "expanded_url": "http://twitter.com/TheDevOpsDad/status/682441217653796865/photo/1", "id": 682441217536294912, "url": "https://t.co/ZKCpgU3ctc"}], "symbols": [], "urls": [{"display_url": "buff.ly/1Mr6ClV", "url": "https://t.co/vNHAVlc1So", "expanded_url": "http://buff.ly/1Mr6ClV", "indices": [59, 82]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 31 06:00:40 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682441217653796865, "text": "What can Joey from Friends teach us about our devops work? https://t.co/vNHAVlc1So https://t.co/ZKCpgU3ctc", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 3998615773, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 95, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3998615773/1445662297", "is_translator": false}, {"time_zone": "Tijuana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16364066", "following": false, "friends_count": 505, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/mcoates", "url": "https://t.co/uNCdooglSE", "expanded_url": "http://www.linkedin.com/in/mcoates", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "001C8A", "geo_enabled": true, "followers_count": 5194, "location": "San Francisco, CA", "screen_name": "_mwc", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 254, "name": "Michael Coates \u2604", "profile_use_background_image": false, "description": "Trust & Info Security Officer @Twitter, @OWASP Global Board, Former @Mozilla", "url": "https://t.co/uNCdooglSE", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Sep 19 14:41:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", "favourites_count": 349, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685553622675935232", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/chrismessina/s\u2026", "url": "https://t.co/ic0IlFWa29", "expanded_url": "https://twitter.com/chrismessina/status/685218795435077633", "indices": [62, 85]}], "hashtags": [], "user_mentions": [{"screen_name": "chrismessina", "id_str": "1186", "id": 1186, "indices": [21, 34], "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e"}]}, "created_at": "Fri Jan 08 20:08:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685553622675935232, "text": "I'm with you on that @chrismessina. This is just odd at best. https://t.co/ic0IlFWa29", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16364066, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3515, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16364066/1443650382", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "93954161", "following": false, "friends_count": 347, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 16538, "location": "San Francisco", "screen_name": "aroetter", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 176, "name": "Alex Roetter", "profile_use_background_image": true, "description": "SVP Engineering @ Twitter. Parenthood, Aviation, Alpinism, Sandwiches. Fighting gravity but usually losing.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 01 22:04:13 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", "favourites_count": 2838, "status": {"in_reply_to_status_id": 685585778076848128, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "NShivakumar", "in_reply_to_user_id": 41315003, "in_reply_to_status_id_str": "685585778076848128", "in_reply_to_user_id_str": "41315003", "truncated": false, "id_str": "685586111687622656", "id": 685586111687622656, "text": "@NShivakumar congrats!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "NShivakumar", "id_str": "41315003", "id": 41315003, "indices": [0, 12], "name": "Shiva Shivakumar"}]}, "created_at": "Fri Jan 08 22:17:21 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 93954161, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2322, "profile_banner_url": "https://pbs.twimg.com/profile_banners/93954161/1385781289", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "11873632", "following": false, "friends_count": 871, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lewisheadden.com", "url": "http://t.co/LYuJlxmvg5", "expanded_url": "http://www.lewisheadden.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1039, "location": "New York City", "screen_name": "lewisheadden", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "Lewis Headden", "profile_use_background_image": true, "description": "Scotsman, New Yorker, Photoshopper, Christian. DevOps Engineer at @CondeNast. Formerly @AmazonDevScot, @AetherworksLLC, @StAndrewsCS.", "url": "http://t.co/LYuJlxmvg5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Jan 05 13:06:09 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", "favourites_count": 785, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685121406753976320", "id": 685121406753976320, "text": "You know Thursday morning is a struggle when you're debating microfoam and the \"Third Wave of Coffee\".", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 15:30:46 +0000 2016", "source": "TweetDeck", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 11873632, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4814, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11873632/1409756044", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16022957", "following": false, "friends_count": 2120, "entities": {"description": {"urls": [{"display_url": "keybase.io/markaci", "url": "https://t.co/n8kTLKcwJx", "expanded_url": "http://keybase.io/markaci", "indices": [137, 160]}]}, "url": {"urls": [{"display_url": "linkedin.com/in/markdobrowo\u2026", "url": "https://t.co/iw20KWBDrr", "expanded_url": "https://linkedin.com/in/markdobrowolski", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "1F2A3D", "geo_enabled": true, "followers_count": 1003, "location": "Toronto, Canada", "screen_name": "markaci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 73, "name": "mar\u10d9\u10d0\u10ea\u10d8", "profile_use_background_image": true, "description": "Mark Dobrowolski - Information Security & Risk Management Professional; disruptor, innovator, rainmaker, student, friend. RT\u2260endorsement https://t.co/n8kTLKcwJx", "url": "https://t.co/iw20KWBDrr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", "profile_background_color": "022330", "created_at": "Thu Aug 28 03:58:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", "favourites_count": 9592, "status": {"retweet_count": 13566, "retweeted_status": {"retweet_count": 13566, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "664196578178146337", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 680, "h": 384, "resize": "fit"}, "medium": {"w": 600, "h": 339, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 192, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", "type": "photo", "indices": [33, 56], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", "display_url": "pic.twitter.com/wvdGL6FVBi", "id_str": "664196535018737664", "expanded_url": "http://twitter.com/Alby/status/664196578178146337/video/1", "id": 664196535018737664, "url": "https://t.co/wvdGL6FVBi"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Nov 10 21:42:59 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 664196578178146337, "text": "Another magnetic chain reaction. https://t.co/wvdGL6FVBi", "coordinates": null, "retweeted": false, "favorite_count": 11430, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685606651899080704", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 680, "h": 384, "resize": "fit"}, "medium": {"w": 600, "h": 339, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 192, "resize": "fit"}}, "source_status_id_str": "664196578178146337", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", "source_user_id_str": "6795192", "id_str": "664196535018737664", "id": 664196535018737664, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/664196535018737664/pu/img/p6wGF_8zz2jeEByT.jpg", "type": "photo", "indices": [43, 66], "source_status_id": 664196578178146337, "source_user_id": 6795192, "display_url": "pic.twitter.com/wvdGL6FVBi", "expanded_url": "http://twitter.com/Alby/status/664196578178146337/video/1", "url": "https://t.co/wvdGL6FVBi"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Alby", "id_str": "6795192", "id": 6795192, "indices": [3, 8], "name": "Alby"}]}, "created_at": "Fri Jan 08 23:38:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685606651899080704, "text": "RT @Alby: Another magnetic chain reaction. https://t.co/wvdGL6FVBi", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 16022957, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 19131, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16022957/1394348072", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "70916267", "following": false, "friends_count": 276, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 177, "location": "Bradford", "screen_name": "developer_gg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Gordon Brown", "profile_use_background_image": true, "description": "I like computers, beer and coffee, but not necessarily in that order. I also try to run occasionally. Consultant at @ukinfinityworks.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 02 08:33:20 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", "favourites_count": 128, "status": {"in_reply_to_status_id": 685381555305484288, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ToxicTourniquet", "in_reply_to_user_id": 53144530, "in_reply_to_status_id_str": "685381555305484288", "in_reply_to_user_id_str": "53144530", "truncated": false, "id_str": "685382327615238145", "id": 685382327615238145, "text": "@ToxicTourniquet @Staticman1 @PayByPhone_UK you can - I just did - 0330 400 7275. You'll still need your location code.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ToxicTourniquet", "id_str": "53144530", "id": 53144530, "indices": [0, 16], "name": "Tam"}, {"screen_name": "Staticman1", "id_str": "56454758", "id": 56454758, "indices": [17, 28], "name": "James Hawkins"}, {"screen_name": "PayByPhone_UK", "id_str": "436714561", "id": 436714561, "indices": [29, 43], "name": "PayByPhone UK"}]}, "created_at": "Fri Jan 08 08:47:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 70916267, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 509, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "19734656", "following": false, "friends_count": 1068, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "realgenekim.me", "url": "http://t.co/IBvzJu7jHq", "expanded_url": "http://realgenekim.me", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 18784, "location": "\u00dcT: 45.527981,-122.670577", "screen_name": "RealGeneKim", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1035, "name": "Gene Kim", "profile_use_background_image": true, "description": "DevOps enthusiast, The Phoenix Project co-author, Tripwire founder, Visible Ops co-author, IT Ops/Security Researcher, Theory of Constraints Jonah, rabid UX fan", "url": "http://t.co/IBvzJu7jHq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jan 29 21:10:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", "favourites_count": 1122, "status": {"in_reply_to_status_id": 685571662922686464, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "coburnw", "in_reply_to_user_id": 25533767, "in_reply_to_status_id_str": "685571662922686464", "in_reply_to_user_id_str": "25533767", "truncated": false, "id_str": "685586516211400704", "id": 685586516211400704, "text": "@coburnw And please let me know if there\u2019s anything I can do to help! Go go go! :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "coburnw", "id_str": "25533767", "id": 25533767, "indices": [0, 8], "name": "Coburn Watson"}]}, "created_at": "Fri Jan 08 22:18:57 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 19734656, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 17244, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "12614742", "following": false, "friends_count": 1437, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "testobsessed.com", "url": "http://t.co/QKSEPgi0Ad", "expanded_url": "http://www.testobsessed.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": false, "followers_count": 10876, "location": "Palo Alto, California, USA", "screen_name": "testobsessed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 808, "name": "ElisabethHendrickson", "profile_use_background_image": true, "description": "Author of Explore It! Recovering consultant. I work on Big Data at @pivotal but speak only for myself.", "url": "http://t.co/QKSEPgi0Ad", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", "profile_background_color": "EDECE9", "created_at": "Wed Jan 23 21:49:39 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", "favourites_count": 9737, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685086119029948418", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/LindaRegber/st\u2026", "url": "https://t.co/qCHRQzRBKE", "expanded_url": "https://twitter.com/LindaRegber/status/683294175752810496", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 13:10:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685086119029948418, "text": "Love the visualization. https://t.co/qCHRQzRBKE", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 12614742, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 17738, "is_translator": false}, {"time_zone": "Stockholm", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "155247426", "following": false, "friends_count": 391, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "loweschmidt.se", "url": "http://t.co/bqChHrmryK", "expanded_url": "http://loweschmidt.se", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 273, "location": "Stockholm, Sweden", "screen_name": "loweschmidt", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 31, "name": "Lowe Schmidt", "profile_use_background_image": true, "description": "FLOSS fan, DevOps advocate, sysadmin for hire @init_ab. (neo)vim user, @sthlmdevops founder and beer collector @untappd. I also like tattoos.", "url": "http://t.co/bqChHrmryK", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun Jun 13 15:45:23 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", "favourites_count": 608, "status": {"retweet_count": 8, "retweeted_status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685585057948434432", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 125, "resize": "fit"}, "medium": {"w": 600, "h": 220, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 376, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "type": "photo", "indices": [107, 130], "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "display_url": "pic.twitter.com/IEQVTQqJVK", "id_str": "685584988327116800", "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", "id": 685584988327116800, "url": "https://t.co/IEQVTQqJVK"}], "symbols": [], "urls": [{"display_url": "facebook.com/notes/matty-gr\u2026", "url": "https://t.co/bgCQtDeUtW", "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", "indices": [83, 106]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:13:10 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685585057948434432, "text": "Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJVK", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685587439931551744", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 125, "resize": "fit"}, "medium": {"w": 600, "h": 220, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 376, "resize": "fit"}}, "source_status_id_str": "685585057948434432", "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "source_user_id_str": "18137723", "id_str": "685584988327116800", "id": 685584988327116800, "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "type": "photo", "indices": [122, 144], "source_status_id": 685585057948434432, "source_user_id": 18137723, "display_url": "pic.twitter.com/IEQVTQqJVK", "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", "url": "https://t.co/IEQVTQqJVK"}], "symbols": [], "urls": [{"display_url": "facebook.com/notes/matty-gr\u2026", "url": "https://t.co/bgCQtDeUtW", "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", "indices": [98, 121]}], "hashtags": [], "user_mentions": [{"screen_name": "raganwald", "id_str": "18137723", "id": 18137723, "indices": [3, 13], "name": "Reginald Braithwaite"}]}, "created_at": "Fri Jan 08 22:22:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685587439931551744, "text": "RT @raganwald: Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJ\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 155247426, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 10749, "profile_banner_url": "https://pbs.twimg.com/profile_banners/155247426/1372113776", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14946551", "following": false, "friends_count": 233, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/thedoh", "url": "https://t.co/75FomxWTf2", "expanded_url": "https://twitter.com/thedoh", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": false, "followers_count": 332, "location": "Toronto, Ontario", "screen_name": "thedoh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 38, "name": "Lisa Seelye", "profile_use_background_image": true, "description": "Magic, sysadmin, learner", "url": "https://t.co/75FomxWTf2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", "profile_background_color": "8B542B", "created_at": "Thu May 29 18:28:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", "favourites_count": 372, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685593686432825344", "id": 685593686432825344, "text": "Skipping FNM tonight. Not feeling it.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:47:27 +0000 2016", "source": "Twitterrific for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14946551, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 20006, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "80200818", "following": false, "friends_count": 587, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "100357", "geo_enabled": true, "followers_count": 328, "location": "memphis \u2708 seattle", "screen_name": "edyesed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 77, "name": "that guy", "profile_use_background_image": true, "description": "asdf;lkj... #dadops #devops", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", "profile_background_color": "131516", "created_at": "Tue Oct 06 03:09:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", "favourites_count": 3601, "status": {"retweet_count": 2, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685582326827499520", "id": 685582326827499520, "text": "Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told me?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:02:18 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685590780581249024", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JeffSaidSo", "id_str": "171544323", "id": 171544323, "indices": [3, 14], "name": "Jeff Allen"}]}, "created_at": "Fri Jan 08 22:35:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685590780581249024, "text": "RT @JeffSaidSo: Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 80200818, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", "statuses_count": 8489, "profile_banner_url": "https://pbs.twimg.com/profile_banners/80200818/1419223168", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "913200547", "following": false, "friends_count": 1308, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nickshemonsky.com", "url": "http://t.co/xWPpyxcm6U", "expanded_url": "http://www.nickshemonsky.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "657B83", "geo_enabled": false, "followers_count": 279, "location": "Pottsville, PA", "screen_name": "nshemonsky", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 16, "name": "Nick Shemonsky", "profile_use_background_image": false, "description": "@BlueBox Ops | @Penn_State alum | #CraftBeer Enthusiast | Fly @Eagles Fly! | Runner", "url": "http://t.co/xWPpyxcm6U", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", "profile_background_color": "004454", "created_at": "Mon Oct 29 20:37:31 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", "favourites_count": 126, "status": {"in_reply_to_status_id": 685500343506071553, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MassHaste", "in_reply_to_user_id": 27139651, "in_reply_to_status_id_str": "685500343506071553", "in_reply_to_user_id_str": "27139651", "truncated": false, "id_str": "685501930177597440", "id": 685501930177597440, "text": "@MassHaste @biscuitbitch They make a good americano as well.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MassHaste", "id_str": "27139651", "id": 27139651, "indices": [0, 10], "name": "Ruben Orduz"}, {"screen_name": "biscuitbitch", "id_str": "704580546", "id": 704580546, "indices": [11, 24], "name": "Biscuit Bitch"}]}, "created_at": "Fri Jan 08 16:42:50 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 913200547, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", "statuses_count": 923, "profile_banner_url": "https://pbs.twimg.com/profile_banners/913200547/1429793800", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2838111", "following": false, "friends_count": 456, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mcdermottroe.com", "url": "http://t.co/6FjMMOcAIA", "expanded_url": "http://www.mcdermottroe.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 793, "location": "Dublin, Ireland", "screen_name": "IRLConor", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Conor McDermottroe", "profile_use_background_image": true, "description": "I'm a software developer for @circleci. I'm also a competitive rifle shooter for @targetshooting and @durifle.", "url": "http://t.co/6FjMMOcAIA", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 29 13:35:37 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", "favourites_count": 479, "status": {"in_reply_to_status_id": 684739332087910400, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "courtewing", "in_reply_to_user_id": 25573729, "in_reply_to_status_id_str": "684739332087910400", "in_reply_to_user_id_str": "25573729", "truncated": false, "id_str": "684739489403645952", "id": 684739489403645952, "text": "@courtewing @cloudsteph Read position, read indicators on DMs (totally broken on Twitter itself) and mute filters among other things.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "courtewing", "id_str": "25573729", "id": 25573729, "indices": [0, 11], "name": "Court Ewing"}, {"screen_name": "cloudsteph", "id_str": "15389419", "id": 15389419, "indices": [12, 23], "name": "Stephie Graphics"}]}, "created_at": "Wed Jan 06 14:13:10 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2838111, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5257, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2838111/1396367369", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "104164496", "following": false, "friends_count": 2020, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dribbble.com/danielbeere", "url": "http://t.co/6ZvS9hPEgV", "expanded_url": "http://dribbble.com/danielbeere", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "663399", "geo_enabled": false, "followers_count": 823, "location": "San Francisco", "screen_name": "DanielBeere", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 115, "name": "Daniel Beere", "profile_use_background_image": true, "description": "Irish designer in SF @circleci \u270c\ufe0f", "url": "http://t.co/6ZvS9hPEgV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jan 12 13:41:22 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBE9ED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", "favourites_count": 2203, "status": {"retweet_count": 0, "in_reply_to_user_id": 604516513, "possibly_sensitive": false, "id_str": "685495163859394562", "in_reply_to_user_id_str": "604516513", "entities": {"symbols": [], "urls": [{"display_url": "amazon.com/Yogi-Teas-Bags\u2026", "url": "https://t.co/urUptC9Tt3", "expanded_url": "http://www.amazon.com/Yogi-Teas-Bags-Stess-Relief/dp/B0009F3QKW", "indices": [11, 34]}, {"display_url": "fourhourworkweek.com/2016/01/03/new\u2026", "url": "https://t.co/ljyONNyI0B", "expanded_url": "http://fourhourworkweek.com/2016/01/03/new-years-resolutions", "indices": [83, 106]}], "hashtags": [], "user_mentions": [{"screen_name": "beerhoff1", "id_str": "604516513", "id": 604516513, "indices": [0, 10], "name": "Shane Beere"}, {"screen_name": "kevinrose", "id_str": "657863", "id": 657863, "indices": [53, 63], "name": "Kevin Rose"}, {"screen_name": "tferriss", "id_str": "11740902", "id": 11740902, "indices": [67, 76], "name": "Tim Ferriss"}]}, "created_at": "Fri Jan 08 16:15:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "beerhoff1", "in_reply_to_status_id_str": null, "truncated": false, "id": 685495163859394562, "text": "@beerhoff1 https://t.co/urUptC9Tt3 as recommended by @kevinrose on @tferriss show: https://t.co/ljyONNyI0B", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 104164496, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", "statuses_count": 6830, "profile_banner_url": "https://pbs.twimg.com/profile_banners/104164496/1375219663", "is_translator": false}, {"time_zone": "Vienna", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "39625343", "following": false, "friends_count": 446, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blag.esotericsystems.at", "url": "https://t.co/NexvmiW4Zx", "expanded_url": "https://blag.esotericsystems.at/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": false, "followers_count": 781, "location": "They/Their Land", "screen_name": "hirojin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "The Wrath of me\u2122", "profile_use_background_image": true, "description": "disappointing expectations since 1894.", "url": "https://t.co/NexvmiW4Zx", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Tue May 12 23:20:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", "favourites_count": 18072, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "asmallteapot", "in_reply_to_user_id": 14202167, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "14202167", "truncated": false, "id_str": "685610405272629249", "id": 685610405272629249, "text": "@asmallteapot hi Ellen Teapot irl", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "asmallteapot", "id_str": "14202167", "id": 14202167, "indices": [0, 13], "name": "ellen teapot"}]}, "created_at": "Fri Jan 08 23:53:53 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 39625343, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", "statuses_count": 32419, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39625343/1401366515", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "12143922", "following": false, "friends_count": 1036, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "markn.ca", "url": "http://t.co/n78rBOUVWU", "expanded_url": "http://markn.ca", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", "notifications": false, "profile_sidebar_fill_color": "595D62", "profile_link_color": "67BACA", "geo_enabled": false, "followers_count": 3456, "location": "::1", "screen_name": "marknca", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 446, "name": "Mark Nunnikhoven", "profile_use_background_image": false, "description": "Vice President, Cloud Research @TrendMicro. \n\nResearching & teaching cloud & usable security systems at scale. Opinionated but always looking to learn.", "url": "http://t.co/n78rBOUVWU", "profile_text_color": "50A394", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", "profile_background_color": "525055", "created_at": "Sat Jan 12 04:41:20 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", "favourites_count": 1975, "status": {"retweet_count": 31, "retweeted_status": {"retweet_count": 31, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "411573734525247488", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "techblog.netflix.com/2013/12/staash\u2026", "url": "http://t.co/odQB0AhIpe", "expanded_url": "http://techblog.netflix.com/2013/12/staash-storage-as-service-over-http.html", "indices": [62, 84]}], "hashtags": [{"text": "NetflixOSS", "indices": [85, 96]}], "user_mentions": []}, "created_at": "Fri Dec 13 19:09:59 +0000 2013", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 411573734525247488, "text": "Netflix: announcing STAASH - STorage As A Service over Http : http://t.co/odQB0AhIpe #NetflixOSS", "coordinates": null, "retweeted": false, "favorite_count": 31, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685525886704218112", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "techblog.netflix.com/2013/12/staash\u2026", "url": "http://t.co/odQB0AhIpe", "expanded_url": "http://techblog.netflix.com/2013/12/staash-storage-as-service-over-http.html", "indices": [78, 100]}], "hashtags": [{"text": "NetflixOSS", "indices": [101, 112]}], "user_mentions": [{"screen_name": "NetflixOSS", "id_str": "386170457", "id": 386170457, "indices": [3, 14], "name": "NetflixOSS"}]}, "created_at": "Fri Jan 08 18:18:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685525886704218112, "text": "RT @NetflixOSS: Netflix: announcing STAASH - STorage As A Service over Http : http://t.co/odQB0AhIpe #NetflixOSS", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 12143922, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", "statuses_count": 35451, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12143922/1397706275", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8866232", "following": false, "friends_count": 2005, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mattrogish.com", "url": "http://t.co/yCK1Z82dhE", "expanded_url": "http://www.mattrogish.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 1677, "location": "Philadelphia, PA", "screen_name": "MattRogish", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 233, "name": "Matt Rogish", "profile_use_background_image": true, "description": "Startup janitor @ReactiveOps", "url": "http://t.co/yCK1Z82dhE", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", "profile_background_color": "1A1B1F", "created_at": "Fri Sep 14 01:23:45 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", "favourites_count": 409, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685583855701594112", "id": 685583855701594112, "text": "Is it possible for my shower head to spray bourbon?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:08:23 +0000 2016", "source": "TweetDeck", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685583979848830976", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mikebarish", "id_str": "34930874", "id": 34930874, "indices": [3, 14], "name": "Mike Barish"}]}, "created_at": "Fri Jan 08 22:08:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685583979848830976, "text": "RT @mikebarish: Is it possible for my shower head to spray bourbon?", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 8866232, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", "statuses_count": 29628, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8866232/1398194149", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1458271", "following": false, "friends_count": 1789, "entities": {"description": {"urls": [{"display_url": "mapbox.com", "url": "https://t.co/djeLWKvmpe", "expanded_url": "http://mapbox.com", "indices": [6, 29]}, {"display_url": "github.com/tmcw", "url": "https://t.co/j4toNgk9Vd", "expanded_url": "https://github.com/tmcw", "indices": [36, 59]}]}, "url": {"urls": [{"display_url": "macwright.org", "url": "http://t.co/d4zmVgqQxY", "expanded_url": "http://macwright.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "727996", "geo_enabled": true, "followers_count": 4338, "location": "lon, lat", "screen_name": "tmcw", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 336, "name": "Tom MacWright", "profile_use_background_image": false, "description": "work: https://t.co/djeLWKvmpe\ncode: https://t.co/j4toNgk9Vd", "url": "http://t.co/d4zmVgqQxY", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Mar 19 01:06:50 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", "favourites_count": 2154, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685479131652460544", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "movingbrands.com/work/netflix", "url": "https://t.co/jVHQei9nqB", "expanded_url": "http://www.movingbrands.com/work/netflix", "indices": [101, 124]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:12:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685479131652460544, "text": "brand redesign posts that are specific about the previous design's problems are way more interesting https://t.co/jVHQei9nqB", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1458271, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", "statuses_count": 11307, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1458271/1436753023", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "821753", "following": false, "friends_count": 313, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "waferbaby.com", "url": "https://t.co/qvUfWRzUDe", "expanded_url": "http://waferbaby.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 2192, "location": "Mos Iceland Container Store", "screen_name": "waferbaby", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 141, "name": "Daniel Bogan", "profile_use_background_image": false, "description": "I do the stuff on the Internets.", "url": "https://t.co/qvUfWRzUDe", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", "profile_background_color": "2E2E2E", "created_at": "Thu Mar 08 14:02:34 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", "favourites_count": 10155, "status": {"in_reply_to_status_id": 685609696858771456, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "tedd4u", "in_reply_to_user_id": 8619192, "in_reply_to_status_id_str": "685609696858771456", "in_reply_to_user_id_str": "8619192", "truncated": false, "id_str": "685610820907057152", "id": 685610820907057152, "text": "@tedd4u: Hah, I don\u2019t talk about startups!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tedd4u", "id_str": "8619192", "id": 8619192, "indices": [0, 7], "name": "Tim A. Miller"}]}, "created_at": "Fri Jan 08 23:55:32 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 821753, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 60175, "profile_banner_url": "https://pbs.twimg.com/profile_banners/821753/1450081356", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "557933634", "following": false, "friends_count": 4062, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "saltstack.com", "url": "http://t.co/rukw0maLdy", "expanded_url": "http://saltstack.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "48B4FB", "geo_enabled": false, "followers_count": 6327, "location": "Salt Lake City", "screen_name": "SaltStackInc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 305, "name": "SaltStack", "profile_use_background_image": true, "description": "Software to orchestrate & automate CloudOps, ITOps & DevOps at extreme speed & scale | '14 InfoWorld Technology of the Year | '13 Gartner Cool Vendor in DevOps", "url": "http://t.co/rukw0maLdy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Apr 19 16:31:12 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", "favourites_count": 1125, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685600728631476225", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1jM9opD", "url": "https://t.co/TbBXqaLwrc", "expanded_url": "http://bit.ly/1jM9opD", "indices": [90, 113]}], "hashtags": [{"text": "SaltConf16", "indices": [4, 15]}], "user_mentions": [{"screen_name": "LinkedIn", "id_str": "13058772", "id": 13058772, "indices": [27, 36], "name": "LinkedIn"}, {"screen_name": "druonysus", "id_str": "352871356", "id": 352871356, "indices": [38, 48], "name": "Drew Adams"}, {"screen_name": "OpenX", "id_str": "14184143", "id": 14184143, "indices": [52, 58], "name": "OpenX"}, {"screen_name": "ClemsonUniv", "id_str": "23444864", "id": 23444864, "indices": [65, 77], "name": "Clemson University"}]}, "created_at": "Fri Jan 08 23:15:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685600728631476225, "text": "New #SaltConf16 talks from @LinkedIn, @druonysus of @OpenX & @ClemsonUniv now posted: https://t.co/TbBXqaLwrc Register now.", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 557933634, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", "statuses_count": 2842, "profile_banner_url": "https://pbs.twimg.com/profile_banners/557933634/1428941606", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3450748273", "following": false, "friends_count": 8, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "howdy.ai", "url": "https://t.co/1cHNN303mV", "expanded_url": "http://howdy.ai", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 667, "location": "Austin, TX", "screen_name": "HowdyAI", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Howdy", "profile_use_background_image": false, "description": "Your new digital coworker for Slack!", "url": "https://t.co/1cHNN303mV", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Sep 04 18:15:13 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", "favourites_count": 399, "status": {"in_reply_to_status_id": 685485832308965376, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mescamm", "in_reply_to_user_id": 113094157, "in_reply_to_status_id_str": "685485832308965376", "in_reply_to_user_id_str": "113094157", "truncated": false, "id_str": "685600766917275648", "id": 685600766917275648, "text": "@mescamm Your Howdy bot is ready to go!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mescamm", "id_str": "113094157", "id": 113094157, "indices": [0, 8], "name": "Mathieu Mescam"}]}, "created_at": "Fri Jan 08 23:15:35 +0000 2016", "source": "Groove HQ", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3450748273, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 220, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "3428227355", "following": false, "friends_count": 1936, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nerabus.com", "url": "http://t.co/ZzSYPLDJDg", "expanded_url": "http://nerabus.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "8C8C8C", "geo_enabled": false, "followers_count": 553, "location": "Manchester and Cambridge, UK", "screen_name": "computefuture", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Nerabus", "profile_use_background_image": false, "description": "The focal point of the Open Source hardware revolution #cto #datacenter #OpenSourceHardware #OpenSourceSilicon #FPGA", "url": "http://t.co/ZzSYPLDJDg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", "profile_background_color": "000000", "created_at": "Mon Aug 17 14:43:41 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", "favourites_count": 213, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685128917259259904", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "engt.co/1Rl04XW", "url": "https://t.co/73ZDipi3RD", "expanded_url": "http://engt.co/1Rl04XW", "indices": [46, 69]}], "hashtags": [], "user_mentions": [{"screen_name": "engadget", "id_str": "14372486", "id": 14372486, "indices": [74, 83], "name": "Engadget"}]}, "created_at": "Thu Jan 07 16:00:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685128917259259904, "text": "Amazon is selling its own processors now, too https://t.co/73ZDipi3RD via @engadget", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 3428227355, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 374, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3428227355/1442251790", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1087503266", "following": false, "friends_count": 311, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "levlaz.org", "url": "https://t.co/4OB68uzJbf", "expanded_url": "https://levlaz.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 462, "location": "San Francisco, CA", "screen_name": "levlaz", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 44, "name": "Lev Lazinskiy", "profile_use_background_image": true, "description": "I \u2764\ufe0f\u200d Developers @CircleCI, Graduate Student @NovaSE, Veteran, Musician, Dev and Linux Geek. \u2764\ufe0f @songbing_yu", "url": "https://t.co/4OB68uzJbf", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", "profile_background_color": "1A1B1F", "created_at": "Sun Jan 13 23:26:26 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", "favourites_count": 4442, "status": {"in_reply_to_status_id": 685251764610822144, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "DavidAndGoliath", "in_reply_to_user_id": 14469175, "in_reply_to_status_id_str": "685251764610822144", "in_reply_to_user_id_str": "14469175", "truncated": false, "id_str": "685252027870392320", "id": 685252027870392320, "text": "@DavidAndGoliath @TMobile @EFF they are all horrible I'll just go without a cell provider for a while :D", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DavidAndGoliath", "id_str": "14469175", "id": 14469175, "indices": [0, 16], "name": "David"}, {"screen_name": "TMobile", "id_str": "17338082", "id": 17338082, "indices": [17, 25], "name": "T-Mobile"}, {"screen_name": "EFF", "id_str": "4816", "id": 4816, "indices": [26, 30], "name": "EFF"}]}, "created_at": "Fri Jan 08 00:09:49 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1087503266, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4756, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087503266/1447471475", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2667470504", "following": false, "friends_count": 112, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "launchdarkly.com", "url": "http://t.co/e7Lhd33dNc", "expanded_url": "http://www.launchdarkly.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 255, "location": "San Francisco", "screen_name": "LaunchDarkly", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "LaunchDarkly", "profile_use_background_image": true, "description": "Control your feature launches. Feature flags as a service. Tweets about canary releases for continuous delivery.", "url": "http://t.co/e7Lhd33dNc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jul 21 23:18:43 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", "favourites_count": 119, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685347790533296128", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1Z9JhG8", "url": "https://t.co/kDewgvL5x9", "expanded_url": "http://buff.ly/1Z9JhG8", "indices": [54, 77]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 06:30:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685347790533296128, "text": "\"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685533803683512321", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1Z9JhG8", "url": "https://t.co/kDewgvL5x9", "expanded_url": "http://buff.ly/1Z9JhG8", "indices": [69, 92]}], "hashtags": [], "user_mentions": [{"screen_name": "divanator", "id_str": "10184822", "id": 10184822, "indices": [3, 13], "name": "Div"}]}, "created_at": "Fri Jan 08 18:49:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685533803683512321, "text": "RT @divanator: \"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2667470504, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 548, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2667470504/1446072089", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3320603490", "following": false, "friends_count": 99, "entities": {"description": {"urls": [{"display_url": "soundcloud.com/heavybit", "url": "https://t.co/lAnNM1oH69", "expanded_url": "https://soundcloud.com/heavybit", "indices": [114, 137]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": false, "followers_count": 103, "location": "San Francisco, CA", "screen_name": "ContinuousCast", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "To Be Continuous", "profile_use_background_image": false, "description": "To Be Continuous ... a podcast on all things #ContinuousDelivery. Hosted @paulbiggar @edith_h Sponsored @heavybit https://t.co/lAnNM1oH69", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", "profile_background_color": "000000", "created_at": "Wed Aug 19 22:32:39 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", "favourites_count": 8, "status": {"in_reply_to_status_id": 685484756620857345, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "stanlemon", "in_reply_to_user_id": 14147682, "in_reply_to_status_id_str": "685484756620857345", "in_reply_to_user_id_str": "14147682", "truncated": false, "id_str": "685569841068048386", "id": 685569841068048386, "text": "@stanlemon @edith_h @paulbiggar Our producer @tedcarstensen is working on it!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "stanlemon", "id_str": "14147682", "id": 14147682, "indices": [0, 10], "name": "Stan Lemon"}, {"screen_name": "edith_h", "id_str": "14965602", "id": 14965602, "indices": [11, 19], "name": "Edith Harbaugh"}, {"screen_name": "paulbiggar", "id_str": "86938585", "id": 86938585, "indices": [20, 31], "name": "Paul Biggar"}, {"screen_name": "tedcarstensen", "id_str": "20000329", "id": 20000329, "indices": [45, 59], "name": "ted carstensen"}]}, "created_at": "Fri Jan 08 21:12:42 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3320603490, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 107, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320603490/1440175251", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "245729302", "following": false, "friends_count": 1747, "entities": {"description": {"urls": [{"display_url": "bytemark.co.uk/support", "url": "https://t.co/zlCkaK20Wn", "expanded_url": "https://www.bytemark.co.uk/support", "indices": [111, 134]}]}, "url": {"urls": [{"display_url": "bytemark.co.uk", "url": "https://t.co/30hNNjVa6D", "expanded_url": "http://www.bytemark.co.uk/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0768AA", "geo_enabled": false, "followers_count": 2011, "location": "Manchester & York, UK", "screen_name": "bytemark", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "Bytemark", "profile_use_background_image": false, "description": "Reliable UK hosting from \u00a310 per month. We're here to chat during office hours. Urgent problem? Email is best: https://t.co/zlCkaK20Wn", "url": "https://t.co/30hNNjVa6D", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Feb 01 10:22:20 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", "favourites_count": 1159, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685500519486492672", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 182, "resize": "fit"}, "medium": {"w": 600, "h": 322, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 647, "h": 348, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", "type": "photo", "indices": [40, 63], "media_url": "http://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", "display_url": "pic.twitter.com/dzXqC0ETXZ", "id_str": "685500516143644676", "expanded_url": "http://twitter.com/bytemark/status/685500519486492672/photo/1", "id": 685500516143644676, "url": "https://t.co/dzXqC0ETXZ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:37:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685500519486492672, "text": "Remember kids: don\u2019t copy that floppy\u2026! https://t.co/dzXqC0ETXZ", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 245729302, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 4660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/245729302/1445428891", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "18958102", "following": false, "friends_count": 2400, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "careers.stackoverflow.com/saman", "url": "https://t.co/jnFgndfW3D", "expanded_url": "http://careers.stackoverflow.com/saman", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 1977, "location": "Tehran", "screen_name": "samanismael", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 49, "name": "Saman Ismael", "profile_use_background_image": false, "description": "Full Stack Developer, C & Python Lover, GNU/Linux Ninja, Open Source Fan.", "url": "https://t.co/jnFgndfW3D", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jan 13 23:16:38 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", "favourites_count": 2592, "status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "664193187326521344", "id": 664193187326521344, "text": "Data is the new Oil. #BigData", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "BigData", "indices": [21, 29]}], "user_mentions": []}, "created_at": "Tue Nov 10 21:29:30 +0000 2015", "source": "TweetDeck", "favorite_count": 8, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18958102, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "statuses_count": 187, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18958102/1444114007", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "37681147", "following": false, "friends_count": 1579, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/bradyasar", "url": "https://t.co/FqEV3wDE2u", "expanded_url": "http://about.me/bradyasar", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 4614, "location": "Los Angeles, CA", "screen_name": "YasarCorp", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 140, "name": "Brad Yasar", "profile_use_background_image": true, "description": "Business Architect, Entrepreneur and Investor Greater Los Angeles Area, Venture Capital & Private Equity. Equity Crowdfunding @ CrowdfundX.io", "url": "https://t.co/FqEV3wDE2u", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon May 04 15:21:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", "favourites_count": 15661, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685593651905474560", "id": 685593651905474560, "text": "RT \u201cWe\u2019re giving cultivators the ability to get away from these poisons\u201d- Matthew Mills @MedX_Inc on @bizrockstars #cannabis", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "cannabis", "indices": [116, 125]}], "user_mentions": [{"screen_name": "MedX_Inc", "id_str": "4261167493", "id": 4261167493, "indices": [89, 98], "name": "Med-X"}, {"screen_name": "bizrockstars", "id_str": "525713285", "id": 525713285, "indices": [102, 115], "name": "Business Rockstars"}]}, "created_at": "Fri Jan 08 22:47:18 +0000 2016", "source": "Vytmn", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 37681147, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1073, "profile_banner_url": "https://pbs.twimg.com/profile_banners/37681147/1382740340", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2832545398", "following": false, "friends_count": 4819, "entities": {"description": {"urls": [{"display_url": "sprawlgeek.com/p/bio.html", "url": "https://t.co/8rLwARBvup", "expanded_url": "http://www.sprawlgeek.com/p/bio.html", "indices": [59, 82]}]}, "url": {"urls": [{"display_url": "sprawlgeek.com", "url": "http://t.co/pUn9V1gXKx", "expanded_url": "http://www.sprawlgeek.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 9132, "location": "Iowa", "screen_name": "sprawlgeek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 137, "name": "Sprawlgeek", "profile_use_background_image": true, "description": "Reality from the Edge of the Network. Tablet Watchman! \nhttps://t.co/8rLwARBvup", "url": "http://t.co/pUn9V1gXKx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", "profile_background_color": "0084B4", "created_at": "Wed Oct 15 19:22:42 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", "favourites_count": 1688, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685605289744142336", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 146, "resize": "fit"}, "medium": {"w": 600, "h": 258, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 276, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPCYOFVAAANwe8.jpg", "type": "photo", "indices": [47, 70], "media_url": "http://pbs.twimg.com/media/CYPCYOFVAAANwe8.jpg", "display_url": "pic.twitter.com/q7lqOO4Ipt", "id_str": "685605289643540480", "expanded_url": "http://twitter.com/sprawlgeek/status/685605289744142336/photo/1", "id": 685605289643540480, "url": "https://t.co/q7lqOO4Ipt"}], "symbols": [], "urls": [{"display_url": "arstechnica.com/tech-policy/20\u2026", "url": "https://t.co/mg7kLGjys7", "expanded_url": "http://arstechnica.com/tech-policy/2016/01/uber-to-encrypt-rider-geo-location-data-pay-20000-to-settle-ny-privacy-flap/", "indices": [23, 46]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:33:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685605289744142336, "text": "Uber got off light...\n https://t.co/mg7kLGjys7 https://t.co/q7lqOO4Ipt", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitshot.com"}, "default_profile_image": false, "id": 2832545398, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", "statuses_count": 3234, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2832545398/1420726400", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3107351469", "following": false, "friends_count": 2424, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "git-scm.com", "url": "http://t.co/YaM2RpAQp5", "expanded_url": "http://git-scm.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "F05033", "geo_enabled": false, "followers_count": 2882, "location": "Finland", "screen_name": "planetgit", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "Planet Git", "profile_use_background_image": false, "description": "Curated news from the Git community. Git is a free and open source distributed version control system.", "url": "http://t.co/YaM2RpAQp5", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", "profile_background_color": "000000", "created_at": "Mon Mar 23 10:43:42 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", "favourites_count": 1, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684831105363656705", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1Z5BU2q", "url": "https://t.co/0z9a6ISARU", "expanded_url": "http://buff.ly/1Z5BU2q", "indices": [29, 52]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 20:17:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684831105363656705, "text": "Neat new features in Git 2.7 https://t.co/0z9a6ISARU", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 3107351469, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 68, "is_translator": false}, {"time_zone": "Vienna", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "23755643", "following": false, "friends_count": 20839, "entities": {"description": {"urls": [{"display_url": "linkd.in/1JT9h3X", "url": "https://t.co/iJB2h1L78m", "expanded_url": "http://linkd.in/1JT9h3X", "indices": [105, 128]}]}, "url": {"urls": [{"display_url": "dixus.de", "url": "http://t.co/sZ1DnHsEsZ", "expanded_url": "http://www.dixus.de", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 28406, "location": "Germany (Saxony)", "screen_name": "dixus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 750, "name": "Holger Kreissl", "profile_use_background_image": false, "description": "#mobile & #cloud enthusiast | #CleanCode | #dotnet | #aspnet | #enterpriseMobility | Find me on LinkedIn https://t.co/iJB2h1L78m", "url": "http://t.co/sZ1DnHsEsZ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Mar 11 12:38:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", "favourites_count": 1142, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685540390351597569", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1Zb2oj6", "url": "https://t.co/WYppjNMu0h", "expanded_url": "http://bit.ly/1Zb2oj6", "indices": [32, 55]}], "hashtags": [{"text": "Developer", "indices": [56, 66]}, {"text": "MVVM", "indices": [67, 72]}, {"text": "Pattern", "indices": [73, 81]}, {"text": "CSharp", "indices": [82, 89]}], "user_mentions": []}, "created_at": "Fri Jan 08 19:15:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685540390351597569, "text": "The MVVM pattern \u2013 The practice https://t.co/WYppjNMu0h #Developer #MVVM #Pattern #CSharp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "DixusTweeter"}, "default_profile_image": false, "id": 23755643, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5551, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23755643/1441816836", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2491819189", "following": false, "friends_count": 2316, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/InTheCloudDan", "url": "https://t.co/cOAiJln1jK", "expanded_url": "https://github.com/InTheCloudDan", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 437, "location": "", "screen_name": "InTheCloudDan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Daniel O'Brien", "profile_use_background_image": true, "description": "I Heart #javascript #nodejs #docker #devops while dreaming of #thegreatoutdoors and a side of #growthhacking with my better half @FoodnFunAllDay", "url": "https://t.co/cOAiJln1jK", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon May 12 18:28:48 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", "favourites_count": 110, "status": {"retweet_count": 15, "retweeted_status": {"retweet_count": 15, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685287444514762753", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "type": "photo", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "display_url": "pic.twitter.com/DlXvgVMX0i", "id_str": "685287444372144128", "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", "id": 685287444372144128, "url": "https://t.co/DlXvgVMX0i"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 02:30:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685287444514762753, "text": "https://t.co/DlXvgVMX0i", "coordinates": null, "retweeted": false, "favorite_count": 16, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685439447769415680", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "source_status_id_str": "685287444514762753", "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "source_user_id_str": "6927562", "id_str": "685287444372144128", "id": 685287444372144128, "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "type": "photo", "indices": [17, 40], "source_status_id": 685287444514762753, "source_user_id": 6927562, "display_url": "pic.twitter.com/DlXvgVMX0i", "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", "url": "https://t.co/DlXvgVMX0i"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thomasfuchs", "id_str": "6927562", "id": 6927562, "indices": [3, 15], "name": "Thomas Fuchs"}]}, "created_at": "Fri Jan 08 12:34:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685439447769415680, "text": "RT @thomasfuchs: https://t.co/DlXvgVMX0i", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2491819189, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 254, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "19300535", "following": false, "friends_count": 375, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "evilchi.li", "url": "http://t.co/7Y1LuKzE5f", "expanded_url": "http://evilchi.li/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "BFBFBF", "profile_link_color": "2463A3", "geo_enabled": true, "followers_count": 418, "location": "\u2615\ufe0f Seattle", "screen_name": "evilchili", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "eeeveeelcheeeleee", "profile_use_background_image": false, "description": "evilchili is an application downloaded from the Internet. Are you sure you want to open it?", "url": "http://t.co/7Y1LuKzE5f", "profile_text_color": "212121", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", "profile_background_color": "3F5D8A", "created_at": "Wed Jan 21 18:47:47 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", "favourites_count": 217, "status": {"in_reply_to_status_id": 685509884037607424, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "evilchili", "in_reply_to_user_id": 19300535, "in_reply_to_status_id_str": "685509884037607424", "in_reply_to_user_id_str": "19300535", "truncated": false, "id_str": "685510082142978048", "id": 685510082142978048, "text": "@evilchili Never say \"yes\" to anything before you've had coffee.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "evilchili", "id_str": "19300535", "id": 19300535, "indices": [0, 10], "name": "eeeveeelcheeeleee"}]}, "created_at": "Fri Jan 08 17:15:14 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 19300535, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 22907, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19300535/1403829270", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "919464055", "following": false, "friends_count": 246, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tessamero.com", "url": "https://t.co/eFmsIOI8OE", "expanded_url": "http://tessamero.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "89C9FA", "geo_enabled": true, "followers_count": 1682, "location": "Seattle, WA", "screen_name": "TessaMero", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 199, "name": "Tessa Mero", "profile_use_background_image": true, "description": "Teacher. Open Source Contributor. Organizer of @SeaPHP, @PNWPHP, and @JUGSeattle. Snowboarder. Video Game Lover. Speaker. Traveler. Dev Advocate for @Joomla", "url": "https://t.co/eFmsIOI8OE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", "profile_background_color": "89C9FA", "created_at": "Thu Nov 01 17:12:23 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", "favourites_count": 5619, "status": {"in_reply_to_status_id": 685585585096921088, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "shivaas", "in_reply_to_user_id": 14636369, "in_reply_to_status_id_str": "685585585096921088", "in_reply_to_user_id_str": "14636369", "truncated": false, "id_str": "685601154823270400", "id": 685601154823270400, "text": "@shivaas thank you! I'm so excited for a career change!!!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "shivaas", "id_str": "14636369", "id": 14636369, "indices": [0, 8], "name": "Shivaas Gulati"}]}, "created_at": "Fri Jan 08 23:17:07 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 919464055, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 11074, "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "205936598", "following": false, "friends_count": 112, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 155, "location": "Richland, WA", "screen_name": "SanStaab", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Jonathan Staab", "profile_use_background_image": true, "description": "Web Developer trying to figure out how to code like Jesus would.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Thu Oct 21 22:56:11 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", "favourites_count": 49, "status": {"retweet_count": 13471, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 13471, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "683681888687538177", "id": 683681888687538177, "text": "I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sun Jan 03 16:10:39 +0000 2016", "source": "Twitter Web Client", "favorite_count": 15366, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "684554177079414784", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JohnCleese", "id_str": "10810102", "id": 10810102, "indices": [3, 14], "name": "John Cleese"}]}, "created_at": "Wed Jan 06 01:56:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684554177079414784, "text": "RT @JohnCleese: I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 205936598, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 628, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18195183", "following": false, "friends_count": 236, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gregaker.net", "url": "https://t.co/wtcGV5PvaK", "expanded_url": "http://www.gregaker.net/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 845, "location": "Columbia, MO, USA", "screen_name": "gaker", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 90, "name": "\u0279\u04d9\u029e\u0250 \u0183\u04d9\u0279\u0183", "profile_use_background_image": false, "description": "I'm a thrasher, saxophone player and writer of code. DevOps @vinli", "url": "https://t.co/wtcGV5PvaK", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Dec 17 18:15:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", "favourites_count": 364, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684915042521890818", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "type": "photo", "indices": [78, 101], "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "display_url": "pic.twitter.com/Nb0t9m7Kzu", "id_str": "684915033961304064", "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", "id": 684915033961304064, "url": "https://t.co/Nb0t9m7Kzu"}], "symbols": [], "urls": [], "hashtags": [{"text": "CES", "indices": [51, 55]}], "user_mentions": [{"screen_name": "vinli", "id_str": "2409518833", "id": 2409518833, "indices": [22, 28], "name": "Vinli"}, {"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [37, 42], "name": "Uber"}]}, "created_at": "Thu Jan 07 01:50:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-115.2092535, 35.984784], [-115.0610763, 35.984784], [-115.0610763, 36.137145], [-115.2092535, 36.137145]]], "type": "Polygon"}, "full_name": "Paradise, NV", "contained_within": [], "country_code": "US", "id": "8fa6d7a33b83ef26", "name": "Paradise"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684915042521890818, "text": "People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684928923247886336", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id_str": "684915042521890818", "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "source_user_id_str": "149705221", "id_str": "684915033961304064", "id": 684915033961304064, "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "type": "photo", "indices": [94, 117], "source_status_id": 684915042521890818, "source_user_id": 149705221, "display_url": "pic.twitter.com/Nb0t9m7Kzu", "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", "url": "https://t.co/Nb0t9m7Kzu"}], "symbols": [], "urls": [], "hashtags": [{"text": "CES", "indices": [67, 71]}], "user_mentions": [{"screen_name": "markhaidar", "id_str": "149705221", "id": 149705221, "indices": [3, 14], "name": "Mark Haidar"}, {"screen_name": "vinli", "id_str": "2409518833", "id": 2409518833, "indices": [38, 44], "name": "Vinli"}, {"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [53, 58], "name": "Uber"}]}, "created_at": "Thu Jan 07 02:45:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684928923247886336, "text": "RT @markhaidar: People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18195183, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3788, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18195183/1445621336", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "223102727", "following": false, "friends_count": 517, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "94D487", "geo_enabled": true, "followers_count": 316, "location": "San Diego, CA", "screen_name": "wulfmeister", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 28, "name": "Mitchell Wulfman", "profile_use_background_image": false, "description": "JavaScript things, Meteor, UX. Striving to make bicycles for the mind. Currently taking HCI/UX classes at @DesignLabUCSD", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun Dec 05 11:52:50 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", "favourites_count": 1103, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685287692490260480", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "chrome.google.com/webstore/detai\u2026", "url": "https://t.co/9fpcPvs8Hv", "expanded_url": "https://chrome.google.com/webstore/detail/command-click-fix/leklllfdadjjglhllebogdjfdipdjhhp", "indices": [95, 118]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 02:31:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685287692490260480, "text": "Chrome extension to force Command-Click to open links in a new tab instead of the current one: https://t.co/9fpcPvs8Hv", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 223102727, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", "statuses_count": 630, "profile_banner_url": "https://pbs.twimg.com/profile_banners/223102727/1445901786", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "15085681", "following": false, "friends_count": 170, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 151, "location": "Dallas, TX", "screen_name": "pkinney", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Powell Kinney", "profile_use_background_image": true, "description": "CTO at Vinli (@vinli)", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 11 15:30:11 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", "favourites_count": 24, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684554991529508864", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 426, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "type": "photo", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "display_url": "pic.twitter.com/om0NgHGk0p", "id_str": "684554991395323904", "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", "id": 684554991395323904, "url": "https://t.co/om0NgHGk0p"}], "symbols": [], "urls": [{"display_url": "hubs.ly/H01LMTC0", "url": "https://t.co/hrCBzE0IY9", "expanded_url": "http://hubs.ly/H01LMTC0", "indices": [78, 101]}], "hashtags": [{"text": "CES2016", "indices": [0, 8]}], "user_mentions": [{"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [58, 63], "name": "Uber"}, {"screen_name": "reviewjournal", "id_str": "15358759", "id": 15358759, "indices": [102, 116], "name": "Las Vegas RJ"}]}, "created_at": "Wed Jan 06 02:00:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684554991529508864, "text": "#CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.co/om0NgHGk0p", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "HubSpot"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684851893558841344", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 426, "resize": "fit"}}, "source_status_id_str": "684554991529508864", "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "source_user_id_str": "2409518833", "id_str": "684554991395323904", "id": 684554991395323904, "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 684554991529508864, "source_user_id": 2409518833, "display_url": "pic.twitter.com/om0NgHGk0p", "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", "url": "https://t.co/om0NgHGk0p"}], "symbols": [], "urls": [{"display_url": "hubs.ly/H01LMTC0", "url": "https://t.co/hrCBzE0IY9", "expanded_url": "http://hubs.ly/H01LMTC0", "indices": [89, 112]}], "hashtags": [{"text": "CES2016", "indices": [11, 19]}], "user_mentions": [{"screen_name": "vinli", "id_str": "2409518833", "id": 2409518833, "indices": [3, 9], "name": "Vinli"}, {"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [69, 74], "name": "Uber"}, {"screen_name": "reviewjournal", "id_str": "15358759", "id": 15358759, "indices": [113, 127], "name": "Las Vegas RJ"}]}, "created_at": "Wed Jan 06 21:39:50 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684851893558841344, "text": "RT @vinli: #CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.c\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 15085681, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 76, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15085681/1409019019", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "220165520", "following": false, "friends_count": 1839, "entities": {"description": {"urls": [{"display_url": "blog.codeship.com", "url": "http://t.co/egYbB2cZXI", "expanded_url": "http://blog.codeship.com", "indices": [78, 100]}]}, "url": {"urls": [{"display_url": "codeship.com", "url": "https://t.co/1m0F4Hu8KN", "expanded_url": "https://codeship.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "0044CC", "geo_enabled": true, "followers_count": 8668, "location": "Boston, MA", "screen_name": "codeship", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 457, "name": "Codeship", "profile_use_background_image": false, "description": "We are the fastest hosted Continuous Delivery Platform. Check out our blog at http://t.co/egYbB2cZXI \u2013 Need help? Ask @CodeshipSupport", "url": "https://t.co/1m0F4Hu8KN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", "profile_background_color": "FFFFFF", "created_at": "Fri Nov 26 23:51:57 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", "favourites_count": 1056, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612838136770561", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1LZxOpT", "url": "https://t.co/lHbWAw8Trn", "expanded_url": "http://bit.ly/1LZxOpT", "indices": [56, 79]}], "hashtags": [{"text": "Postgres", "indices": [21, 30]}], "user_mentions": [{"screen_name": "leighchalliday", "id_str": "119841821", "id": 119841821, "indices": [39, 54], "name": "Leigh Halliday"}]}, "created_at": "Sat Jan 09 00:03:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612838136770561, "text": "\"How to use JSONB in #Postgres.\" \u2013 via @leighchalliday\n\nhttps://t.co/lHbWAw8Trn", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Meet Edgar"}, "default_profile_image": false, "id": 220165520, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", "statuses_count": 14740, "profile_banner_url": "https://pbs.twimg.com/profile_banners/220165520/1418855084", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2705064962", "following": false, "friends_count": 4102, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "codecov.io", "url": "https://t.co/rCxo4WMDnw", "expanded_url": "https://codecov.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FC2B6A", "geo_enabled": true, "followers_count": 1745, "location": "", "screen_name": "codecov", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "Codecov", "profile_use_background_image": false, "description": "Continuous code coverage. Featuring browser extensions, branch coverage and coverage diffs for GitHub, Bitbucket and GitLab", "url": "https://t.co/rCxo4WMDnw", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", "profile_background_color": "06142B", "created_at": "Sun Aug 03 22:36:47 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", "favourites_count": 910, "status": {"in_reply_to_status_id": 684763065506738176, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "keimlink", "in_reply_to_user_id": 44300359, "in_reply_to_status_id_str": "684763065506738176", "in_reply_to_user_id_str": "44300359", "truncated": false, "id_str": "684981810984423424", "id": 684981810984423424, "text": "@keimlink during some testing we found the package was having issues installing on some CI providers. I'll email you w/ more details.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "keimlink", "id_str": "44300359", "id": 44300359, "indices": [0, 9], "name": "Markus Zapke"}]}, "created_at": "Thu Jan 07 06:16:04 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2705064962, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 947, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705064962/1440537606", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15534471", "following": false, "friends_count": 314, "entities": {"description": {"urls": [{"display_url": "ampproject.org/how-it-works/", "url": "https://t.co/Wfq8ij4B8D", "expanded_url": "https://www.ampproject.org/how-it-works/", "indices": [30, 53]}]}, "url": {"urls": [{"display_url": "google.com/+MalteUbl", "url": "https://t.co/297YfYX56s", "expanded_url": "https://google.com/+MalteUbl", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", "notifications": false, "profile_sidebar_fill_color": "FFFD91", "profile_link_color": "FF0043", "geo_enabled": true, "followers_count": 5455, "location": "San Francisco", "screen_name": "cramforce", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 434, "name": "Malte Ubl", "profile_use_background_image": true, "description": "Tech lead of the AMP Project. https://t.co/Wfq8ij4B8D \n\nI make www internet web pages for Google. Curator of @JSConfEU", "url": "https://t.co/297YfYX56s", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jul 22 18:04:13 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FDE700", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", "favourites_count": 2019, "status": {"retweet_count": 0, "in_reply_to_user_id": 15534471, "possibly_sensitive": false, "id_str": "685531194465779712", "in_reply_to_user_id_str": "15534471", "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/cramforce/stat\u2026", "url": "https://t.co/sPWPdVTY37", "expanded_url": "https://twitter.com/cramforce/status/677892136809857024", "indices": [29, 52]}], "hashtags": [], "user_mentions": [{"screen_name": "thealphanerd", "id_str": "150664007", "id": 150664007, "indices": [0, 13], "name": "Make Fyles"}, {"screen_name": "kosamari", "id_str": "8470842", "id": 8470842, "indices": [14, 23], "name": "Mariko Kosaka"}]}, "created_at": "Fri Jan 08 18:39:07 +0000 2016", "favorited": false, "in_reply_to_status_id": 685530600741056513, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "cramforce", "in_reply_to_status_id_str": "685530600741056513", "truncated": false, "id": 685531194465779712, "text": "@thealphanerd @kosamari also https://t.co/sPWPdVTY37", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 15534471, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", "statuses_count": 18017, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15534471/1398619165", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "771681", "following": false, "friends_count": 2112, "entities": {"description": {"urls": [{"display_url": "pronoun.is/he", "url": "https://t.co/h4IxIYLYdk", "expanded_url": "http://pronoun.is/he", "indices": [129, 152]}]}, "url": {"urls": [{"display_url": "twitter.com/glowcoil/statu\u2026", "url": "https://t.co/7vUIPFlyCV", "expanded_url": "https://twitter.com/glowcoil/status/660314122010034176", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "BBBBBB", "geo_enabled": true, "followers_count": 6803, "location": "Chicago, IL /via Alaska", "screen_name": "ELLIOTTCABLE", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 156, "name": "~", "profile_use_background_image": false, "description": "Topical muggle. {PL,Q}T. I invented Ruby, Node.js, and all of the LISPs. Now I'm inventing Paws.\n\n[warning: contains bitterant.] https://t.co/h4IxIYLYdk", "url": "https://t.co/7vUIPFlyCV", "profile_text_color": "AAAAAA", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Feb 14 06:37:31 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", "favourites_count": 14574, "status": {"in_reply_to_status_id": 685091084314263552, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-87.940033, 41.644102], [-87.523993, 41.644102], [-87.523993, 42.0230669], [-87.940033, 42.0230669]]], "type": "Polygon"}, "full_name": "Chicago, IL", "contained_within": [], "country_code": "US", "id": "1d9a5370a355ab0c", "name": "Chicago"}, "in_reply_to_screen_name": "ProductHunt", "in_reply_to_user_id": 2208027565, "in_reply_to_status_id_str": "685091084314263552", "in_reply_to_user_id_str": "2208027565", "truncated": false, "id_str": "685232357117440000", "id": 685232357117440000, "text": "@ProductHunt @netflix @TheCruziest Sense 7? Is that different from Sense 8?", "geo": {"coordinates": [41.86747694, -87.63303779], "type": "Point"}, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ProductHunt", "id_str": "2208027565", "id": 2208027565, "indices": [0, 12], "name": "Product Hunt"}, {"screen_name": "netflix", "id_str": "16573941", "id": 16573941, "indices": [13, 21], "name": "Netflix US"}, {"screen_name": "TheCruziest", "id_str": "303796625", "id": 303796625, "indices": [22, 34], "name": "Steven Cruz"}]}, "created_at": "Thu Jan 07 22:51:39 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": {"coordinates": [-87.63303779, 41.86747694], "type": "Point"}, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 771681, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 94590, "profile_banner_url": "https://pbs.twimg.com/profile_banners/771681/1414127033", "is_translator": false}, {"time_zone": "Brussels", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "87257431", "following": false, "friends_count": 998, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "il.ly", "url": "http://t.co/welccj0beF", "expanded_url": "http://il.ly/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", "notifications": false, "profile_sidebar_fill_color": "171717", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1555, "location": "Kortrijk, Belgium", "screen_name": "illyism", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 70, "name": "Ilias Ismanalijev", "profile_use_background_image": true, "description": "Technology \u2022 Designer \u2022 Developer \u2022 Student #NMCT", "url": "http://t.co/welccj0beF", "profile_text_color": "F2F2F2", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", "profile_background_color": "242424", "created_at": "Tue Nov 03 19:01:00 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", "favourites_count": 10505, "status": {"in_reply_to_status_id": 683864186821152768, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "JoshDComp", "in_reply_to_user_id": 28402389, "in_reply_to_status_id_str": "683864186821152768", "in_reply_to_user_id_str": "28402389", "truncated": false, "id_str": "684060669654745088", "id": 684060669654745088, "text": "@JoshDComp Sure is, I like the realistic politics of it all and the well crafted VFX. It sucked me right into its world.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JoshDComp", "id_str": "28402389", "id": 28402389, "indices": [0, 10], "name": "Josh Compton"}]}, "created_at": "Mon Jan 04 17:15:47 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 87257431, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", "statuses_count": 244, "profile_banner_url": "https://pbs.twimg.com/profile_banners/87257431/1410266462", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "236341530", "following": false, "friends_count": 235, "entities": {"description": {"urls": [{"display_url": "mkeas.org", "url": "https://t.co/bfRlctkCoN", "expanded_url": "http://mkeas.org", "indices": [126, 149]}]}, "url": {"urls": [{"display_url": "mkeas.org", "url": "https://t.co/bfRlctkCoN", "expanded_url": "http://mkeas.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": false, "followers_count": 1320, "location": "Houston, TX", "screen_name": "matthiasak", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 72, "name": "Mountain Matt", "profile_use_background_image": true, "description": "@TheIronYard, @DestinationCode, @SpaceCityConfs, INFOSEC crypto'r, powderhound, Lisper + \u03bb, @CapitalFactory alum, @HoustonJS, https://t.co/bfRlctkCoN.", "url": "https://t.co/bfRlctkCoN", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", "profile_background_color": "FFFFFF", "created_at": "Mon Jan 10 10:58:39 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", "favourites_count": 1199, "status": {"retweet_count": 302, "retweeted_status": {"retweet_count": 302, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685523354514661376", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 450, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", "type": "photo", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", "display_url": "pic.twitter.com/mIeZrUDrga", "id_str": "685521688662904832", "expanded_url": "http://twitter.com/tcburning/status/685523354514661376/photo/1", "id": 685521688662904832, "url": "https://t.co/mIeZrUDrga"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:07:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685523354514661376, "text": "When the code compiles with no errors https://t.co/mIeZrUDrga", "coordinates": null, "retweeted": false, "favorite_count": 620, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612131580968962", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 450, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "685523354514661376", "media_url": "http://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", "source_user_id_str": "399742659", "id_str": "685521688662904832", "id": 685521688662904832, "media_url_https": "https://pbs.twimg.com/media/CYN2WAKUEAAWGTg.jpg", "type": "photo", "indices": [53, 76], "source_status_id": 685523354514661376, "source_user_id": 399742659, "display_url": "pic.twitter.com/mIeZrUDrga", "expanded_url": "http://twitter.com/tcburning/status/685523354514661376/photo/1", "url": "https://t.co/mIeZrUDrga"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tcburning", "id_str": "399742659", "id": 399742659, "indices": [3, 13], "name": "Terri"}]}, "created_at": "Sat Jan 09 00:00:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612131580968962, "text": "RT @tcburning: When the code compiles with no errors https://t.co/mIeZrUDrga", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 236341530, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", "statuses_count": 4932, "profile_banner_url": "https://pbs.twimg.com/profile_banners/236341530/1449188760", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "252481460", "following": false, "friends_count": 24, "entities": {"description": {"urls": [{"display_url": "travis-ci.com", "url": "http://t.co/0HN89Zqxlk", "expanded_url": "http://travis-ci.com", "indices": [96, 118]}]}, "url": {"urls": [{"display_url": "travis-ci.org", "url": "http://t.co/3Tz19DXfYa", "expanded_url": "http://travis-ci.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 14345, "location": "Berlin, Germany", "screen_name": "travisci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 527, "name": "Travis CI", "profile_use_background_image": true, "description": "Hi I\u2019m Travis CI, a hosted continuous integration service for open source and private projects: http://t.co/0HN89Zqxlk System status updates: @traviscistatus", "url": "http://t.co/3Tz19DXfYa", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Feb 15 08:34:44 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", "favourites_count": 1506, "status": {"retweet_count": 26, "retweeted_status": {"retweet_count": 26, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684128421845270530", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 271, "resize": "fit"}, "medium": {"w": 567, "h": 453, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 453, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "type": "photo", "indices": [109, 132], "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "display_url": "pic.twitter.com/fdIihYvkFb", "id_str": "684128421732036608", "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", "id": 684128421732036608, "url": "https://t.co/fdIihYvkFb"}], "symbols": [], "urls": [{"display_url": "spr.ly/6018BnRke", "url": "https://t.co/TkOgMSX4VM", "expanded_url": "http://spr.ly/6018BnRke", "indices": [85, 108]}], "hashtags": [], "user_mentions": [{"screen_name": "github", "id_str": "13334762", "id": 13334762, "indices": [62, 69], "name": "GitHub"}, {"screen_name": "travisci", "id_str": "252481460", "id": 252481460, "indices": [74, 83], "name": "Travis CI"}]}, "created_at": "Mon Jan 04 21:45:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684128421845270530, "text": "How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/fdIihYvkFb", "coordinates": null, "retweeted": false, "favorite_count": 23, "contributors": null, "source": " SAP"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685085167086612481", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 271, "resize": "fit"}, "medium": {"w": 567, "h": 453, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 453, "resize": "fit"}}, "source_status_id_str": "684128421845270530", "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "source_user_id_str": "100292002", "id_str": "684128421732036608", "id": 684128421732036608, "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "type": "photo", "indices": [125, 140], "source_status_id": 684128421845270530, "source_user_id": 100292002, "display_url": "pic.twitter.com/fdIihYvkFb", "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", "url": "https://t.co/fdIihYvkFb"}], "symbols": [], "urls": [{"display_url": "spr.ly/6018BnRke", "url": "https://t.co/TkOgMSX4VM", "expanded_url": "http://spr.ly/6018BnRke", "indices": [101, 124]}], "hashtags": [], "user_mentions": [{"screen_name": "SAPCommNet", "id_str": "100292002", "id": 100292002, "indices": [3, 14], "name": "SAP CommunityNetwork"}, {"screen_name": "github", "id_str": "13334762", "id": 13334762, "indices": [78, 85], "name": "GitHub"}, {"screen_name": "travisci", "id_str": "252481460", "id": 252481460, "indices": [90, 99], "name": "Travis CI"}]}, "created_at": "Thu Jan 07 13:06:46 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685085167086612481, "text": "RT @SAPCommNet: How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/f\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 252481460, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10343, "profile_banner_url": "https://pbs.twimg.com/profile_banners/252481460/1383837670", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "86938585", "following": false, "friends_count": 134, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "circleci.com", "url": "https://t.co/UfEqN58rWH", "expanded_url": "https://circleci.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1584, "location": "San Francisco", "screen_name": "paulbiggar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 99, "name": "Paul Biggar", "profile_use_background_image": true, "description": "Likes developers, chocolate, startups, history and pastries. Founder of CircleCI.", "url": "https://t.co/UfEqN58rWH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Nov 02 13:08:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", "favourites_count": 286, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685370475611078657", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "newyorker.com/magazine/2016/\u2026", "url": "https://t.co/vbDkTva03y", "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", "indices": [38, 61]}], "hashtags": [], "user_mentions": [{"screen_name": "NewYorker", "id_str": "14677919", "id": 14677919, "indices": [66, 76], "name": "The New Yorker"}]}, "created_at": "Fri Jan 08 08:00:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685370475611078657, "text": "Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685496070474973185", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "newyorker.com/magazine/2016/\u2026", "url": "https://t.co/vbDkTva03y", "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", "indices": [55, 78]}], "hashtags": [], "user_mentions": [{"screen_name": "sarahgbooks", "id_str": "111095563", "id": 111095563, "indices": [3, 15], "name": "Sarah Gilmartin"}, {"screen_name": "NewYorker", "id_str": "14677919", "id": 14677919, "indices": [83, 93], "name": "The New Yorker"}]}, "created_at": "Fri Jan 08 16:19:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685496070474973185, "text": "RT @sarahgbooks: Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 86938585, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1368, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "381223731", "following": false, "friends_count": 4793, "entities": {"description": {"urls": [{"display_url": "discuss.circleci.com", "url": "https://t.co/g79TaPamp5", "expanded_url": "https://discuss.circleci.com/", "indices": [91, 114]}]}, "url": {"urls": [{"display_url": "circleci.com", "url": "https://t.co/Ls6HRLMgUX", "expanded_url": "https://circleci.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "343434", "geo_enabled": true, "followers_count": 6832, "location": "San Francisco", "screen_name": "circleci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 170, "name": "CircleCI", "profile_use_background_image": false, "description": "Easy, fast, continuous integration and deployment for web apps and iOS. For support, visit https://t.co/g79TaPamp5 or email sayhi@circleci.com.", "url": "https://t.co/Ls6HRLMgUX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", "profile_background_color": "FBFBFB", "created_at": "Tue Sep 27 23:33:23 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", "favourites_count": 3138, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613493333135360", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "circle.ci/1VRcA07", "url": "https://t.co/qbnualOiX6", "expanded_url": "http://circle.ci/1VRcA07", "indices": [117, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "iamkevinbell", "id_str": "635809882", "id": 635809882, "indices": [18, 31], "name": "Kevin Bell"}, {"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [35, 44], "name": "CircleCI"}, {"screen_name": "fredsters_s", "id_str": "14868289", "id": 14868289, "indices": [51, 63], "name": "Fred Stevens-Smith"}, {"screen_name": "rainforestqa", "id_str": "1012066448", "id": 1012066448, "indices": [67, 80], "name": "Rainforest QA"}]}, "created_at": "Sat Jan 09 00:06:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613493333135360, "text": "UPCOMING WEBINAR: @iamkevinbell of @circleci & @fredsters_s of @rainforestqa are talking Continuous Deployment: https://t.co/qbnualOiX6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 381223731, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2396, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7900402", "following": false, "friends_count": 392, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "280096", "geo_enabled": true, "followers_count": 342, "location": "San Francisco, CA", "screen_name": "tvachon", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "pizza: the gathering", "profile_use_background_image": true, "description": "putting the travis in circleci since 2014", "url": null, "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Aug 02 05:37:07 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", "favourites_count": 605, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685271730709860352", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/claire_mcnear/\u2026", "url": "https://t.co/FTDSIfvCan", "expanded_url": "https://twitter.com/claire_mcnear/status/685250840723091456", "indices": [47, 70]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 01:28:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685271730709860352, "text": "dying\ni am ded\npls feed my dog while i am gone https://t.co/FTDSIfvCan", "coordinates": null, "retweeted": false, "favorite_count": 16, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685273249534459904", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/claire_mcnear/\u2026", "url": "https://t.co/FTDSIfvCan", "expanded_url": "https://twitter.com/claire_mcnear/status/685250840723091456", "indices": [57, 80]}], "hashtags": [], "user_mentions": [{"screen_name": "coda", "id_str": "637533", "id": 637533, "indices": [3, 8], "name": "Springtime for Coda"}]}, "created_at": "Fri Jan 08 01:34:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685273249534459904, "text": "RT @coda: dying\ni am ded\npls feed my dog while i am gone https://t.co/FTDSIfvCan", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 7900402, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", "statuses_count": 5614, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "10399172", "following": false, "friends_count": 1295, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chmod777self.com", "url": "http://t.co/6w6v8SGBti", "expanded_url": "http://www.chmod777self.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "0A1EA3", "geo_enabled": true, "followers_count": 1147, "location": "Fresno, CA", "screen_name": "jasnell", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 87, "name": "James M Snell", "profile_use_background_image": true, "description": "IBM Technical Lead for Node.js;\nNode.js TSC Member;\nAll around nice guy.", "url": "http://t.co/6w6v8SGBti", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Tue Nov 20 01:19:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", "favourites_count": 2143, "status": {"retweet_count": 12, "retweeted_status": {"retweet_count": 12, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685242905007529984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/nodejs/members\u2026", "url": "https://t.co/jGV36DgAJg", "expanded_url": "https://github.com/nodejs/membership/issues/12", "indices": [115, 138]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 23:33:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685242905007529984, "text": "Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/jGV36DgAJg", "coordinates": null, "retweeted": false, "favorite_count": 24, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685268279959539712", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/nodejs/members\u2026", "url": "https://t.co/jGV36DgAJg", "expanded_url": "https://github.com/nodejs/membership/issues/12", "indices": [126, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "dshaw", "id_str": "806757", "id": 806757, "indices": [3, 9], "name": "Dan Shaw"}]}, "created_at": "Fri Jan 08 01:14:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685268279959539712, "text": "RT @dshaw: Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 10399172, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 3178, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10399172/1447689090", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3278631516", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "planet.com", "url": "http://t.co/v3JIlJoOTW", "expanded_url": "http://planet.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 294, "location": "Space", "screen_name": "dovesinspace", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Doves in space", "profile_use_background_image": true, "description": "We are in space.", "url": "http://t.co/v3JIlJoOTW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jul 13 15:59:42 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", "favourites_count": 0, "status": {"in_reply_to_status_id": null, "retweet_count": 4, "place": {"url": "https://api.twitter.com/1.1/geo/id/4ec01c9dbc693497.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-87.634643, 24.396308], [-79.974307, 24.396308], [-79.974307, 31.001056], [-87.634643, 31.001056]]], "type": "Polygon"}, "full_name": "Florida, USA", "contained_within": [], "country_code": "US", "id": "4ec01c9dbc693497", "name": "Florida"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "651885332665909248", "id": 651885332665909248, "text": "I'm in space now! Satellite Flock 2b Satellite 14 reporting for duty.", "geo": {"coordinates": [29.91434343, -83.47056022], "type": "Point"}, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Oct 07 22:22:29 +0000 2015", "source": "Deployment tweets", "favorite_count": 5, "favorited": false, "coordinates": {"coordinates": [-83.47056022, 29.91434343], "type": "Point"}, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3278631516, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 21, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3278631516/1436803648", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "13567", "following": false, "friends_count": 1520, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "christianheilmann.com/2013/02/11/hel\u2026", "url": "http://t.co/fQKlvTCkqN", "expanded_url": "http://christianheilmann.com/2013/02/11/hello-it-is-me-on-twitter/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", "notifications": false, "profile_sidebar_fill_color": "B7CCBB", "profile_link_color": "13456B", "geo_enabled": true, "followers_count": 52181, "location": "London, UK", "screen_name": "codepo8", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3779, "name": "Christian Heilmann", "profile_use_background_image": true, "description": "Developer Evangelist - all things open web, HTML5, writing and working together. Works at Microsoft on Edge, opinions totally my own. #nofilter", "url": "http://t.co/fQKlvTCkqN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", "profile_background_color": "336699", "created_at": "Tue Nov 21 17:20:09 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", "favourites_count": 386, "status": {"in_reply_to_status_id": null, "retweet_count": 6, "place": {"url": "https://api.twitter.com/1.1/geo/id/3eb2c704fe8a50cb.json", "country": "United Kingdom", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-0.112442, 51.5068], [-0.0733794, 51.5068], [-0.0733794, 51.522161], [-0.112442, 51.522161]]], "type": "Polygon"}, "full_name": "City of London, London", "contained_within": [], "country_code": "GB", "id": "3eb2c704fe8a50cb", "name": "City of London"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685605010403667968", "id": 685605010403667968, "text": "MDN Demo studio is shutting down. Download your demos for safekeeping.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:32:27 +0000 2016", "source": "Twitter Web Client", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13567, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", "statuses_count": 107974, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13567/1409269429", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2202531", "following": false, "friends_count": 211, "entities": {"description": {"urls": [{"display_url": "amazon.com/gp/product/B01\u2026", "url": "https://t.co/C1nuRVMz0N", "expanded_url": "http://www.amazon.com/gp/product/B018R7TV5W/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B018R7TV5W&linkCode=as2&tag=robceenet-20&linkId=377XBIIH55EWYAIK", "indices": [11, 34]}, {"display_url": "flickr.com/photos/robceem\u2026", "url": "https://t.co/7dMPlQvYLO", "expanded_url": "https://www.flickr.com/photos/robceemoz/", "indices": [88, 111]}]}, "url": {"urls": [{"display_url": "robcee.net", "url": "http://t.co/R8fIMaSLvf", "expanded_url": "http://robcee.net/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 1216, "location": "Toronto, Canada", "screen_name": "robcee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 107, "name": "robcee", "profile_use_background_image": false, "description": "#author of https://t.co/C1nuRVMz0N\n\n#drones #media #coffee #software #tech #photography https://t.co/7dMPlQvYLO", "url": "http://t.co/R8fIMaSLvf", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Mar 25 19:52:34 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", "favourites_count": 4161, "status": {"in_reply_to_status_id": 685563535359868928, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "matejnovak", "in_reply_to_user_id": 15459306, "in_reply_to_status_id_str": "685563535359868928", "in_reply_to_user_id_str": "15459306", "truncated": false, "id_str": "685563745901350912", "id": 685563745901350912, "text": "@matejnovak Niagara Kale Brandy has a nasty vibe to it. But OK!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "matejnovak", "id_str": "15459306", "id": 15459306, "indices": [0, 11], "name": "Matej Novak \u23ce"}]}, "created_at": "Fri Jan 08 20:48:28 +0000 2016", "source": "Twitter for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2202531, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 19075, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2202531/1420472405", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17663776", "following": false, "friends_count": 1126, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "planet.com", "url": "http://t.co/AwAXMrXqVJ", "expanded_url": "http://planet.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 12386, "location": "San Francisco, CA, Earth", "screen_name": "planetlabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 488, "name": "Planet Labs", "profile_use_background_image": false, "description": "Delivering the most current images of our entire Earth.", "url": "http://t.co/AwAXMrXqVJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Nov 27 00:10:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", "favourites_count": 2014, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613487188398081", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", "type": "photo", "indices": [97, 120], "media_url": "http://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", "display_url": "pic.twitter.com/01wqlNRcRx", "id_str": "685613486617935872", "expanded_url": "http://twitter.com/planetlabs/status/685613487188398081/photo/1", "id": 685613486617935872, "url": "https://t.co/01wqlNRcRx"}], "symbols": [], "urls": [{"display_url": "planet.com/gallery/uganda\u2026", "url": "https://t.co/QqEWAf2iM1", "expanded_url": "https://www.planet.com/gallery/uganda-smallholders/", "indices": [73, 96]}], "hashtags": [{"text": "Uganda", "indices": [64, 71]}], "user_mentions": []}, "created_at": "Sat Jan 09 00:06:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613487188398081, "text": "Small holder and subsistence farms on a sunny day in Namutumba, #Uganda https://t.co/QqEWAf2iM1 https://t.co/01wqlNRcRx", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 17663776, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", "statuses_count": 1658, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17663776/1439957443", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "41693", "following": false, "friends_count": 415, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blankbaby.com", "url": "http://t.co/bOEDVPeU3G", "expanded_url": "http://www.blankbaby.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18572/newlogotop.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 4310, "location": "Philadelphia, PA", "screen_name": "blankbaby", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 279, "name": "Scott McNulty", "profile_use_background_image": true, "description": "I am almost Internet famous. Host of @Random_Trek.", "url": "http://t.co/bOEDVPeU3G", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Tue Dec 05 00:57:26 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", "favourites_count": 48, "status": {"in_reply_to_status_id": 685602406990622720, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "dsilverman", "in_reply_to_user_id": 1010181, "in_reply_to_status_id_str": "685602406990622720", "in_reply_to_user_id_str": "1010181", "truncated": false, "id_str": "685602609508519940", "id": 685602609508519940, "text": "@dsilverman @GlennF ;) Alexa isn\u2019t super smart but very useful for my needs!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "dsilverman", "id_str": "1010181", "id": 1010181, "indices": [0, 11], "name": "dwight silverman"}, {"screen_name": "GlennF", "id_str": "8315692", "id": 8315692, "indices": [12, 19], "name": "Glenn Fleishman"}]}, "created_at": "Fri Jan 08 23:22:54 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 41693, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18572/newlogotop.png", "statuses_count": 25874, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41693/1362153090", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3171325140", "following": false, "friends_count": 18, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sideway.com", "url": "http://t.co/pwaxdZGj2W", "expanded_url": "http://sideway.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "04AA04", "geo_enabled": false, "followers_count": 244, "location": "", "screen_name": "sideway", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Sideway", "profile_use_background_image": false, "description": "Share a conversation.", "url": "http://t.co/pwaxdZGj2W", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", "profile_background_color": "000000", "created_at": "Fri Apr 24 22:41:17 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", "favourites_count": 0, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "663825999717466112", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "type": "photo", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "display_url": "pic.twitter.com/Ng3S2UnWDz", "id_str": "663825968667037697", "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", "id": 663825968667037697, "url": "https://t.co/Ng3S2UnWDz"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Nov 09 21:10:26 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 663825999717466112, "text": "New plates! https://t.co/Ng3S2UnWDz", "coordinates": null, "retweeted": false, "favorite_count": 12, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "663826029887270912", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "663825999717466112", "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "source_user_id_str": "346026614", "id_str": "663825968667037697", "id": 663825968667037697, "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "type": "photo", "indices": [28, 51], "source_status_id": 663825999717466112, "source_user_id": 346026614, "display_url": "pic.twitter.com/Ng3S2UnWDz", "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", "url": "https://t.co/Ng3S2UnWDz"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "eranhammer", "id_str": "346026614", "id": 346026614, "indices": [3, 14], "name": "Eran Hammer"}]}, "created_at": "Mon Nov 09 21:10:33 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 663826029887270912, "text": "RT @eranhammer: New plates! https://t.co/Ng3S2UnWDz", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3171325140, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5768872", "following": false, "friends_count": 8374, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "garyvaynerchuk.com/agvbook/", "url": "https://t.co/n1TN3hgA84", "expanded_url": "http://www.garyvaynerchuk.com/agvbook/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFE6CE", "profile_link_color": "268CCD", "geo_enabled": true, "followers_count": 1202100, "location": "NYC", "screen_name": "garyvee", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 24979, "name": "Gary Vaynerchuk", "profile_use_background_image": true, "description": "Family 1st! but after that, Businessman. CEO of @vaynermedia. Host of #AskGaryVee show and a dude who Loves the Hustle, the @NYJets .. snapchat - garyvee", "url": "https://t.co/n1TN3hgA84", "profile_text_color": "996633", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", "profile_background_color": "152932", "created_at": "Fri May 04 15:32:48 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", "favourites_count": 2449, "status": {"in_reply_to_status_id": 685579166855630849, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "thebluestripe", "in_reply_to_user_id": 168651555, "in_reply_to_status_id_str": "685579166855630849", "in_reply_to_user_id_str": "168651555", "truncated": false, "id_str": "685579435031019520", "id": 685579435031019520, "text": "@thebluestripe @djkhaled hahaha", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thebluestripe", "id_str": "168651555", "id": 168651555, "indices": [0, 14], "name": "Rich Seidel"}, {"screen_name": "djkhaled", "id_str": "27673684", "id": 27673684, "indices": [15, 24], "name": "DJ KHALED"}]}, "created_at": "Fri Jan 08 21:50:49 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "tl"}, "default_profile_image": false, "id": 5768872, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", "statuses_count": 135759, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5768872/1423844975", "is_translator": false}, {"time_zone": "Casablanca", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "270431388", "following": false, "friends_count": 795, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "MarquisdeGeek.com", "url": "https://t.co/rAxaxp0oUr", "expanded_url": "http://www.MarquisdeGeek.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 581, "location": "aka Steven Goodwin. London", "screen_name": "MarquisdeGeek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 88, "name": "Marquis de Geek", "profile_use_background_image": true, "description": "Maker, author, developer, educator, IoT dev, magician, musician, computer historian, sommelier, SGX creator, electronics guy, AFOL & geek. Works as edtech CTO", "url": "https://t.co/rAxaxp0oUr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", "profile_background_color": "131516", "created_at": "Tue Mar 22 16:17:37 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", "favourites_count": 400, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685486479271919616", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 460, "h": 960, "resize": "fit"}, "medium": {"w": 460, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 325, "h": 680, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", "type": "photo", "indices": [24, 47], "media_url": "http://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", "display_url": "pic.twitter.com/Mo9VcBHIwC", "id_str": "685485412517830656", "expanded_url": "http://twitter.com/MarquisdeGeek/status/685486479271919616/photo/1", "id": 685485412517830656, "url": "https://t.co/Mo9VcBHIwC"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:41:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685486479271919616, "text": "Crossing the streams... https://t.co/Mo9VcBHIwC", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 270431388, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3959, "profile_banner_url": "https://pbs.twimg.com/profile_banners/270431388/1406890949", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "148221086", "following": false, "friends_count": 617, "entities": {"description": {"urls": [{"display_url": "shop.oreilly.com/product/063692\u2026", "url": "https://t.co/Zk7ejlHptN", "expanded_url": "http://shop.oreilly.com/product/0636920042686.do", "indices": [135, 158]}]}, "url": {"urls": [{"display_url": "GetYodlr.com", "url": "https://t.co/hKMaAlWDdW", "expanded_url": "https://GetYodlr.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 730, "location": "SF Bay Area", "screen_name": "rosskukulinski", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Ross Kukulinski", "profile_use_background_image": true, "description": "Founder @getyodlr. Entrepreneur & advisor. Work with #nodejs, #webrtc, #docker, #kubernetes, #coreos. Watch my Intro to CoreOS Course: https://t.co/Zk7ejlHptN", "url": "https://t.co/hKMaAlWDdW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed May 26 04:22:53 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", "favourites_count": 4397, "status": {"retweet_count": 17, "retweeted_status": {"retweet_count": 17, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685464980976566272", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nodejs.org/en/blog/commun\u2026", "url": "https://t.co/oHkMziRUpk", "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", "indices": [102, 125]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:16:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685464980976566272, "text": "Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Sprout Social"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685466291180859392", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nodejs.org/en/blog/commun\u2026", "url": "https://t.co/oHkMziRUpk", "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", "indices": [114, 137]}], "hashtags": [], "user_mentions": [{"screen_name": "nodejs", "id_str": "91985735", "id": 91985735, "indices": [3, 10], "name": "Node.js"}]}, "created_at": "Fri Jan 08 14:21:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685466291180859392, "text": "RT @nodejs: Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 148221086, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8070, "is_translator": false}, {"time_zone": "Budapest", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "98630536", "following": false, "friends_count": 296, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eduardmoldovan.com", "url": "http://t.co/4zJV0jnlaJ", "expanded_url": "http://eduardmoldovan.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", "notifications": false, "profile_sidebar_fill_color": "0E0D02", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 336, "location": "Budapest", "screen_name": "edimoldovan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "Edu\u00e1rd", "profile_use_background_image": true, "description": "Views are my own", "url": "http://t.co/4zJV0jnlaJ", "profile_text_color": "39BD91", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Dec 22 13:09:46 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", "favourites_count": 234, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685508856013795330", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wareable.com/fitness-tracke\u2026", "url": "https://t.co/HDOdrQpuJU", "expanded_url": "http://www.wareable.com/fitness-trackers/mastercard-and-coin-bringing-wearable-payments-to-fitness-trackers-including-moov-2147", "indices": [73, 96]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:10:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685508856013795330, "text": "MasterCard bringing wearable payments to fitness trackers including Moov https://t.co/HDOdrQpuJU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "OS X"}, "default_profile_image": false, "id": 98630536, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", "statuses_count": 12782, "profile_banner_url": "https://pbs.twimg.com/profile_banners/98630536/1392472068", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14164724", "following": false, "friends_count": 1639, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sarahmei.com", "url": "https://t.co/3q8gb3xaz4", "expanded_url": "http://sarahmei.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 11825, "location": "San Francisco, CA", "screen_name": "sarahmei", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 761, "name": "Sarah Mei", "profile_use_background_image": true, "description": "Software developer. Founder of @railsbridge. Director of Ruby Central. Chief Consultant of @devmyndsoftware. IM IN UR BASE TEACHIN U HOW TO REFACTOR UR CODE", "url": "https://t.co/3q8gb3xaz4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Mon Mar 17 18:05:43 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", "favourites_count": 1453, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685599933215424513", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/anildash/statu\u2026", "url": "https://t.co/436K3Lfx5F", "expanded_url": "https://twitter.com/anildash/status/685496167464042496", "indices": [54, 77]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:12:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-87.940033, 41.644102], [-87.523993, 41.644102], [-87.523993, 42.0230669], [-87.940033, 42.0230669]]], "type": "Polygon"}, "full_name": "Chicago, IL", "contained_within": [], "country_code": "US", "id": "1d9a5370a355ab0c", "name": "Chicago"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685599933215424513, "text": "First time I have tapped the moments icon on purpose. https://t.co/436K3Lfx5F", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14164724, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 13073, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14164724/1423457101", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "25183606", "following": false, "friends_count": 746, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "charlotteis.co.uk", "url": "https://t.co/j2AKIKz3ZY", "expanded_url": "http://charlotteis.co.uk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "44615D", "geo_enabled": false, "followers_count": 2004, "location": "Bletchley, UK.", "screen_name": "Charlotteis", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 116, "name": "console.warn()", "profile_use_background_image": false, "description": "they/them. human ghost emoji writing code with @mandsdigital. open sourcer with @hoodiehq and creator of @yourfirstpr.", "url": "https://t.co/j2AKIKz3ZY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 18 23:28:54 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", "favourites_count": 8750, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685612995809021952", "id": 685612995809021952, "text": "caligula \ud83d\ude0f", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:04:10 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "es"}, "default_profile_image": false, "id": 25183606, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", "statuses_count": 49653, "profile_banner_url": "https://pbs.twimg.com/profile_banners/25183606/1420483218", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "253464752", "following": false, "friends_count": 492, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jessicard.com", "url": "https://t.co/DwRzTkmHMB", "expanded_url": "http://jessicard.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542881894/twitter.png", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "00B9E1", "geo_enabled": true, "followers_count": 5249, "location": "than franthithco", "screen_name": "jessicard", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 241, "name": "jessicard", "profile_use_background_image": false, "description": "The jessicard physically strong, moves rapidly, momentum is powerful, is one of the most has the courage and strength of the software engineer in the world.", "url": "https://t.co/DwRzTkmHMB", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", "profile_background_color": "F6F6F6", "created_at": "Thu Feb 17 09:04:56 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", "favourites_count": 28149, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613922137849856", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPKOL5WcAUzoB8.jpg", "type": "photo", "indices": [88, 111], "media_url": "http://pbs.twimg.com/media/CYPKOL5WcAUzoB8.jpg", "display_url": "pic.twitter.com/SVH70Fy4JQ", "id_str": "685613913350762501", "expanded_url": "http://twitter.com/jessicard/status/685613922137849856/photo/1", "id": 685613913350762501, "url": "https://t.co/SVH70Fy4JQ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:07:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613922137849856, "text": "drew some random (unfinished) ornamentation on my flight to boston with my apple pencil https://t.co/SVH70Fy4JQ", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 253464752, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542881894/twitter.png", "statuses_count": 23083, "profile_banner_url": "https://pbs.twimg.com/profile_banners/253464752/1353017487", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "198661893", "following": false, "friends_count": 247, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eliseworthy.com", "url": "http://t.co/Lfr9fIzPIs", "expanded_url": "http://eliseworthy.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "41625C", "geo_enabled": true, "followers_count": 1862, "location": "Seattle", "screen_name": "eliseworthy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 123, "name": "Elise Worthy", "profile_use_background_image": false, "description": "software developer | founder of @brandworthy and @adaacademy", "url": "http://t.co/Lfr9fIzPIs", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", "profile_background_color": "946369", "created_at": "Mon Oct 04 22:38:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", "favourites_count": 689, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "666384799402098688", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "meetup.com/Seattle-PyLadi\u2026", "url": "https://t.co/bg7tLVR1Tp", "expanded_url": "http://www.meetup.com/Seattle-PyLadies/events/225729699/", "indices": [86, 109]}], "hashtags": [], "user_mentions": [{"screen_name": "PyLadiesSEA", "id_str": "885603211", "id": 885603211, "indices": [38, 50], "name": "Seattle PyLadies"}]}, "created_at": "Mon Nov 16 22:38:11 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 666384799402098688, "text": "What's better than a holiday party? A @PyLadiesSEA holiday party! This Wednesday! Go! https://t.co/bg7tLVR1Tp", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 198661893, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "statuses_count": 3529, "profile_banner_url": "https://pbs.twimg.com/profile_banners/198661893/1377996487", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "13368452", "following": false, "friends_count": 1123, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ultrasaurus.com", "url": "http://t.co/VV3FrrBWLv", "expanded_url": "http://www.ultrasaurus.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 7943, "location": "San Francisco, CA", "screen_name": "ultrasaurus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 720, "name": "Sarah Allen", "profile_use_background_image": true, "description": "I write code, connect pixels and speak truth to make change. @bridgefoundry @mightyverse @18F", "url": "http://t.co/VV3FrrBWLv", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Mon Feb 11 23:40:05 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", "favourites_count": 1229, "status": {"retweet_count": 9418, "retweeted_status": {"retweet_count": 9418, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685415626945507328", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 614, "resize": "fit"}, "medium": {"w": 567, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "type": "photo", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "display_url": "pic.twitter.com/4ZnTo0GI7T", "id_str": "685415615138545664", "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", "id": 685415615138545664, "url": "https://t.co/4ZnTo0GI7T"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 10:59:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685415626945507328, "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", "coordinates": null, "retweeted": false, "favorite_count": 1176, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685477649523712000", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 614, "resize": "fit"}, "medium": {"w": 567, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 1024, "resize": "fit"}}, "source_status_id_str": "685415626945507328", "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "source_user_id_str": "2782137901", "id_str": "685415615138545664", "id": 685415615138545664, "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "type": "photo", "indices": [48, 71], "source_status_id": 685415626945507328, "source_user_id": 2782137901, "display_url": "pic.twitter.com/4ZnTo0GI7T", "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", "url": "https://t.co/4ZnTo0GI7T"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "neil_finnweevil", "id_str": "2782137901", "id": 2782137901, "indices": [3, 19], "name": "kiki montparnasse"}]}, "created_at": "Fri Jan 08 15:06:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685477649523712000, "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 13368452, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 10335, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13368452/1396530463", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3300795096", "following": false, "friends_count": 296, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "current.sh", "url": "http://t.co/43c4yK78zi", "expanded_url": "http://current.sh", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "268BD2", "geo_enabled": false, "followers_count": 192, "location": "", "screen_name": "currentsh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "current.sh", "profile_use_background_image": false, "description": "the log management saas you've been looking for. built by @vektrasays.", "url": "http://t.co/43c4yK78zi", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", "profile_background_color": "000000", "created_at": "Wed Jul 29 20:09:17 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", "favourites_count": 8, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685167345329831936", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "producthunt.com/tech/current-3\u2026", "url": "https://t.co/ccTe9IhAJB", "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", "indices": [89, 112]}], "hashtags": [], "user_mentions": [{"screen_name": "currentsh", "id_str": "3300795096", "id": 3300795096, "indices": [40, 50], "name": "current.sh"}, {"screen_name": "ProductHunt", "id_str": "2208027565", "id": 2208027565, "indices": [54, 66], "name": "Product Hunt"}]}, "created_at": "Thu Jan 07 18:33:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/0775fcd6eb188d7c.json", "country": "United States", "attributes": {}, "place_type": "neighborhood", "bounding_box": {"coordinates": [[[-118.3613876, 34.043829], [-118.309037, 34.043829], [-118.309037, 34.083516], [-118.3613876, 34.083516]]], "type": "Polygon"}, "full_name": "Mid-Wilshire, Los Angeles", "contained_within": [], "country_code": "US", "id": "0775fcd6eb188d7c", "name": "Mid-Wilshire"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685167345329831936, "text": "I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685171895952490498", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "producthunt.com/tech/current-3\u2026", "url": "https://t.co/ccTe9IhAJB", "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", "indices": [102, 125]}], "hashtags": [], "user_mentions": [{"screen_name": "evanphx", "id_str": "5444392", "id": 5444392, "indices": [3, 11], "name": "Evan Phoenix"}, {"screen_name": "currentsh", "id_str": "3300795096", "id": 3300795096, "indices": [53, 63], "name": "current.sh"}, {"screen_name": "ProductHunt", "id_str": "2208027565", "id": 2208027565, "indices": [67, 79], "name": "Product Hunt"}]}, "created_at": "Thu Jan 07 18:51:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685171895952490498, "text": "RT @evanphx: I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3300795096, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 36, "is_translator": false}, {"time_zone": "Tijuana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "21170138", "following": false, "friends_count": 403, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "current.sh", "url": "https://t.co/43c4yJPxHK", "expanded_url": "http://current.sh", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 2049, "location": "San Francisco, CA", "screen_name": "jlsuttles", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 106, "name": "\u2728Jessica Suttles\u2728", "profile_use_background_image": true, "description": "Co-Founder & CTO @currentsh", "url": "https://t.co/43c4yJPxHK", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Feb 18 04:49:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", "favourites_count": 4794, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": 21170138, "possibly_sensitive": false, "id_str": "685602455166402560", "in_reply_to_user_id_str": "21170138", "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 760, "resize": "fit"}, "medium": {"w": 600, "h": 445, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 252, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", "type": "photo", "indices": [52, 75], "media_url": "http://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", "display_url": "pic.twitter.com/oTGa0hNVPe", "id_str": "685602441597829122", "expanded_url": "http://twitter.com/Neurotic/status/685602455166402560/photo/1", "id": 685602441597829122, "url": "https://t.co/oTGa0hNVPe"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jlsuttles", "id_str": "21170138", "id": 21170138, "indices": [0, 10], "name": "\u2728Jessica Suttles\u2728"}, {"screen_name": "SukieTweets", "id_str": "479414936", "id": 479414936, "indices": [11, 23], "name": "Sukie"}]}, "created_at": "Fri Jan 08 23:22:17 +0000 2016", "favorited": false, "in_reply_to_status_id": 685597105696579584, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": "jlsuttles", "in_reply_to_status_id_str": "685597105696579584", "truncated": false, "id": 685602455166402560, "text": "@jlsuttles @SukieTweets is feeling super cute. See? https://t.co/oTGa0hNVPe", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607191902957568", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 760, "resize": "fit"}, "medium": {"w": 600, "h": 445, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 252, "resize": "fit"}}, "source_status_id_str": "685602455166402560", "media_url": "http://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", "source_user_id_str": "5727802", "id_str": "685602441597829122", "id": 685602441597829122, "media_url_https": "https://pbs.twimg.com/media/CYO_ycSUQAI4hRg.jpg", "type": "photo", "indices": [66, 89], "source_status_id": 685602455166402560, "source_user_id": 5727802, "display_url": "pic.twitter.com/oTGa0hNVPe", "expanded_url": "http://twitter.com/Neurotic/status/685602455166402560/photo/1", "url": "https://t.co/oTGa0hNVPe"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Neurotic", "id_str": "5727802", "id": 5727802, "indices": [3, 12], "name": "Mark Mandel"}, {"screen_name": "jlsuttles", "id_str": "21170138", "id": 21170138, "indices": [14, 24], "name": "\u2728Jessica Suttles\u2728"}, {"screen_name": "SukieTweets", "id_str": "479414936", "id": 479414936, "indices": [25, 37], "name": "Sukie"}]}, "created_at": "Fri Jan 08 23:41:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607191902957568, "text": "RT @Neurotic: @jlsuttles @SukieTweets is feeling super cute. See? https://t.co/oTGa0hNVPe", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 21170138, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 10074, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21170138/1448066737", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15714950", "following": false, "friends_count": 35, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 179, "location": "", "screen_name": "ruoho", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Clint Ruoho", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", "profile_background_color": "022330", "created_at": "Sun Aug 03 22:20:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", "favourites_count": 18, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682197364367425537", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wtfismyip.com", "url": "https://t.co/QfqlilFduQ", "expanded_url": "https://wtfismyip.com/", "indices": [13, 36]}], "hashtags": [{"text": "FreeBasics", "indices": [111, 122]}], "user_mentions": []}, "created_at": "Wed Dec 30 13:51:40 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682197364367425537, "text": "Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682229939072937984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wtfismyip.com", "url": "https://t.co/QfqlilFduQ", "expanded_url": "https://wtfismyip.com/", "indices": [28, 51]}], "hashtags": [{"text": "FreeBasics", "indices": [126, 137]}], "user_mentions": [{"screen_name": "wtfismyip", "id_str": "359037938", "id": 359037938, "indices": [3, 13], "name": "WTF IS MY IP!?!?!?"}]}, "created_at": "Wed Dec 30 16:01:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682229939072937984, "text": "RT @wtfismyip: Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 15714950, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 17, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "755178", "following": false, "friends_count": 1779, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bob.ippoli.to", "url": "http://t.co/8Z9JtvGN55", "expanded_url": "http://bob.ippoli.to/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 5239, "location": "San Francisco, CA", "screen_name": "etrepum", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 315, "name": "Bob Ippolito", "profile_use_background_image": true, "description": "@playfig cofounder/CTO. @missionbit board member & lead instructor. Former founder/CTO of Mochi Media. Open source python/js/erlang/haskell/obj-c/ruby developer", "url": "http://t.co/8Z9JtvGN55", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Tue Feb 06 09:23:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", "favourites_count": 5819, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685542014901862400", "id": 685542014901862400, "text": "Not infrequently I wish slide presentations had not replaced the memo. Makes visual what should be text.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:22:07 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685543293849976832", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "bltroutwine", "id_str": "298541778", "id": 298541778, "indices": [3, 15], "name": "Brian L. Troutwine"}]}, "created_at": "Fri Jan 08 19:27:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685543293849976832, "text": "RT @bltroutwine: Not infrequently I wish slide presentations had not replaced the memo. Makes visual what should be text.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 755178, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 11505, "profile_banner_url": "https://pbs.twimg.com/profile_banners/755178/1353725023", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "19315174", "following": false, "friends_count": 123, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", "notifications": false, "profile_sidebar_fill_color": "96C6ED", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 798506, "location": "Redmond, WA", "screen_name": "MicrosoftEdge", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5871, "name": "Microsoft Edge", "profile_use_background_image": false, "description": "The official Twitter handle for Microsoft Edge, the new browser from Microsoft.", "url": null, "profile_text_color": "453C3C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", "profile_background_color": "3B94D9", "created_at": "Wed Jan 21 23:42:14 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", "favourites_count": 23, "status": {"retweet_count": 5, "retweeted_status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685504215343443968", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "display_url": "pic.twitter.com/v6YqGwUtih", "id_str": "685503595572101120", "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", "id": 685503595572101120, "url": "https://t.co/v6YqGwUtih"}], "symbols": [], "urls": [{"display_url": "aka.ms/Xwzpnt", "url": "https://t.co/g4IP0j7aDz", "expanded_url": "http://aka.ms/Xwzpnt", "indices": [81, 104]}], "hashtags": [{"text": "Winning", "indices": [56, 64]}, {"text": "MicrosoftEdge", "indices": [66, 80]}], "user_mentions": []}, "created_at": "Fri Jan 08 16:51:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685504215343443968, "text": "The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6YqGwUtih", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685576467468677120", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id_str": "685504215343443968", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "source_user_id_str": "164457546", "id_str": "685503595572101120", "id": 685503595572101120, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "type": "photo", "indices": [124, 140], "source_status_id": 685504215343443968, "source_user_id": 164457546, "display_url": "pic.twitter.com/v6YqGwUtih", "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", "url": "https://t.co/v6YqGwUtih"}], "symbols": [], "urls": [{"display_url": "aka.ms/Xwzpnt", "url": "https://t.co/g4IP0j7aDz", "expanded_url": "http://aka.ms/Xwzpnt", "indices": [100, 123]}], "hashtags": [{"text": "Winning", "indices": [75, 83]}, {"text": "MicrosoftEdge", "indices": [85, 99]}], "user_mentions": [{"screen_name": "WindowsCanada", "id_str": "164457546", "id": 164457546, "indices": [3, 17], "name": "Windows Canada"}]}, "created_at": "Fri Jan 08 21:39:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685576467468677120, "text": "RT @WindowsCanada: The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Sprinklr"}, "default_profile_image": false, "id": 19315174, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", "statuses_count": 1205, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19315174/1438621793", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "77343214", "following": false, "friends_count": 1042, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "danabauer.github.io", "url": "http://t.co/qTVR3d3mlq", "expanded_url": "http://danabauer.github.io/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "424F98", "geo_enabled": true, "followers_count": 2467, "location": "Philly (mostly)", "screen_name": "agentdana", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 203, "name": "Dana Bauer", "profile_use_background_image": false, "description": "Geographer, Pythonista, open data enthusiast, mom to a future astronaut. I work at Planet Labs.", "url": "http://t.co/qTVR3d3mlq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Sep 25 23:48:03 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", "favourites_count": 12277, "status": {"in_reply_to_status_id": 685597724864081922, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "taramurtha", "in_reply_to_user_id": 24011702, "in_reply_to_status_id_str": "685597724864081922", "in_reply_to_user_id_str": "24011702", "truncated": false, "id_str": "685598350121529344", "id": 685598350121529344, "text": "@taramurtha gaaaahhhhhh", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "taramurtha", "id_str": "24011702", "id": 24011702, "indices": [0, 11], "name": "Tara Murtha"}]}, "created_at": "Fri Jan 08 23:05:59 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 77343214, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4395, "profile_banner_url": "https://pbs.twimg.com/profile_banners/77343214/1444143700", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1141081634", "following": false, "friends_count": 90, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dev.modern.ie", "url": "http://t.co/r0F7MBTxRE", "expanded_url": "http://dev.modern.ie/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0078D7", "geo_enabled": true, "followers_count": 57823, "location": "Redmond, WA", "screen_name": "MSEdgeDev", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 741, "name": "Microsoft Edge Dev", "profile_use_background_image": true, "description": "Official news and updates from the Microsoft Web Platform team on #MicrosoftEdge and #InternetExplorer", "url": "http://t.co/r0F7MBTxRE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", "profile_background_color": "282828", "created_at": "Sat Feb 02 00:26:21 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", "favourites_count": 146, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685516791003533312", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "channel9.msdn.com/Blogs/One-Dev-\u2026", "url": "https://t.co/tL4lVK9BLo", "expanded_url": "https://channel9.msdn.com/Blogs/One-Dev-Minute/Building-Websites-and-UWP-Apps-with-a-Yeoman-Generator", "indices": [71, 94]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:41:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685516791003533312, "text": "One Dev Minute: Building websites and UWP apps with a Yeoman generator https://t.co/tL4lVK9BLo", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 1141081634, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", "statuses_count": 1681, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1141081634/1430352524", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13348", "following": false, "friends_count": 53207, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/RobertScoble", "url": "https://t.co/TZTxRbMttp", "expanded_url": "https://facebook.com/RobertScoble", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 484965, "location": "Half Moon Bay, California, USA", "screen_name": "Scobleizer", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 25249, "name": "Robert Scoble", "profile_use_background_image": true, "description": "@Rackspace's Futurist searches the world looking for what's happening on the bleeding edge of technology and brings that learning to the Internet.", "url": "https://t.co/TZTxRbMttp", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Nov 20 23:43:44 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", "favourites_count": 62360, "status": {"retweet_count": 6, "retweeted_status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685589440765407232", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "display_url": "pic.twitter.com/sMEhdHTceR", "id_str": "685589432909467648", "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", "id": 685589432909467648, "url": "https://t.co/sMEhdHTceR"}], "symbols": [], "urls": [{"display_url": "bit.ly/1K3q0PT", "url": "https://t.co/sXih7Q0R2J", "expanded_url": "http://bit.ly/1K3q0PT", "indices": [55, 78]}], "hashtags": [{"text": "CES", "indices": [50, 54]}], "user_mentions": [{"screen_name": "richardbranson", "id_str": "8161232", "id": 8161232, "indices": [94, 109], "name": "Richard Branson"}]}, "created_at": "Fri Jan 08 22:30:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685589440765407232, "text": "Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/sMEhdHTceR", "coordinates": null, "retweeted": false, "favorite_count": 11, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685593198958264320", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "source_status_id_str": "685589440765407232", "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "source_user_id_str": "6853442", "id_str": "685589432909467648", "id": 685589432909467648, "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "type": "photo", "indices": [126, 140], "source_status_id": 685589440765407232, "source_user_id": 6853442, "display_url": "pic.twitter.com/sMEhdHTceR", "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", "url": "https://t.co/sMEhdHTceR"}], "symbols": [], "urls": [{"display_url": "bit.ly/1K3q0PT", "url": "https://t.co/sXih7Q0R2J", "expanded_url": "http://bit.ly/1K3q0PT", "indices": [71, 94]}], "hashtags": [{"text": "CES", "indices": [66, 70]}], "user_mentions": [{"screen_name": "willobrien", "id_str": "6853442", "id": 6853442, "indices": [3, 14], "name": "Will O'Brien"}, {"screen_name": "richardbranson", "id_str": "8161232", "id": 8161232, "indices": [110, 125], "name": "Richard Branson"}]}, "created_at": "Fri Jan 08 22:45:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593198958264320, "text": "RT @willobrien: Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 13348, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", "statuses_count": 67747, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13348/1450153194", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "84699828", "following": false, "friends_count": 2258, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 7005, "location": "", "screen_name": "barb_oconnor", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 65, "name": "Barbara O'Connor", "profile_use_background_image": true, "description": "Girl next door mash-up :) Technology lover and biz dev aficionado. #Runner,#SUP boarder,#cyclist,#mother, dog lover, & US#Marine. Tweets=mine", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Oct 23 21:58:22 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", "favourites_count": 67, "status": {"retweet_count": 183, "retweeted_status": {"retweet_count": 183, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685501440639516673", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "cainc.to/yArk3o", "url": "https://t.co/DG3FPs9ryJ", "expanded_url": "http://cainc.to/yArk3o", "indices": [100, 123]}], "hashtags": [], "user_mentions": [{"screen_name": "OttoBerkes", "id_str": "192448160", "id": 192448160, "indices": [30, 41], "name": "Otto Berkes"}, {"screen_name": "TheEbizWizard", "id_str": "16290014", "id": 16290014, "indices": [70, 84], "name": "Jason Bloomberg"}, {"screen_name": "ForbesTech", "id_str": "14885549", "id": 14885549, "indices": [88, 99], "name": "Forbes Tech News"}]}, "created_at": "Fri Jan 08 16:40:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685501440639516673, "text": "From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "SocialFlow"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685541320170029056", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "cainc.to/yArk3o", "url": "https://t.co/DG3FPs9ryJ", "expanded_url": "http://cainc.to/yArk3o", "indices": [111, 134]}], "hashtags": [], "user_mentions": [{"screen_name": "CAinc", "id_str": "14790085", "id": 14790085, "indices": [3, 9], "name": "CA Technologies"}, {"screen_name": "OttoBerkes", "id_str": "192448160", "id": 192448160, "indices": [41, 52], "name": "Otto Berkes"}, {"screen_name": "TheEbizWizard", "id_str": "16290014", "id": 16290014, "indices": [81, 95], "name": "Jason Bloomberg"}, {"screen_name": "ForbesTech", "id_str": "14885549", "id": 14885549, "indices": [99, 110], "name": "Forbes Tech News"}]}, "created_at": "Fri Jan 08 19:19:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685541320170029056, "text": "RT @CAinc: From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "GaggleAMP"}, "default_profile_image": false, "id": 84699828, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1939, "profile_banner_url": "https://pbs.twimg.com/profile_banners/84699828/1440076545", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "539153822", "following": false, "friends_count": 8, "entities": {"description": {"urls": [{"display_url": "github.com/contact", "url": "https://t.co/O4Rsiuqv", "expanded_url": "https://github.com/contact", "indices": [54, 75]}]}, "url": {"urls": [{"display_url": "developer.github.com", "url": "http://t.co/WSCoZacuEW", "expanded_url": "http://developer.github.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 8330, "location": "SF", "screen_name": "GitHubAPI", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 246, "name": "GitHub API", "profile_use_background_image": true, "description": "GitHub API announcements. Send feedback/questions to https://t.co/O4Rsiuqv", "url": "http://t.co/WSCoZacuEW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Mar 28 15:52:25 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", "favourites_count": 9, "status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684448831757500416", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "developer.github.com/changes/2016-0\u2026", "url": "https://t.co/kZjASxXV1N", "expanded_url": "https://developer.github.com/changes/2016-01-05-api-enhancements-for-working-with-organization-permissions-are-now-official/", "indices": [76, 99]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 18:58:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684448831757500416, "text": "API enhancements for working with organization permissions are now official https://t.co/kZjASxXV1N", "coordinates": null, "retweeted": false, "favorite_count": 19, "contributors": null, "source": "Hubot @GitHubAPI Integration"}, "default_profile_image": false, "id": 539153822, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 431, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "309528017", "following": false, "friends_count": 91, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "npmjs.org", "url": "http://t.co/Yr2xkfPzXd", "expanded_url": "http://npmjs.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "CB3837", "geo_enabled": false, "followers_count": 56429, "location": "oakland, ca", "screen_name": "npmjs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1130, "name": "npmbot", "profile_use_background_image": false, "description": "i'm the package manager for javascript. problems? try @npm_support and #npm on freenode.", "url": "http://t.co/Yr2xkfPzXd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Jun 02 07:20:53 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", "favourites_count": 195, "status": {"retweet_count": 17, "retweeted_status": {"retweet_count": 17, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685257850961014784", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/npm/npm/releas\u2026", "url": "https://t.co/BL0ttn3fLO", "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", "indices": [121, 144]}], "hashtags": [], "user_mentions": [{"screen_name": "npmjs", "id_str": "309528017", "id": 309528017, "indices": [4, 10], "name": "npmbot"}]}, "created_at": "Fri Jan 08 00:32:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685257850961014784, "text": "New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https://t.co/BL0ttn3fLO", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685258201831309312", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/npm/npm/releas\u2026", "url": "https://t.co/BL0ttn3fLO", "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", "indices": [143, 144]}], "hashtags": [], "user_mentions": [{"screen_name": "ReBeccaOrg", "id_str": "579491588", "id": 579491588, "indices": [3, 14], "name": "Rebecca v7.3.2"}, {"screen_name": "npmjs", "id_str": "309528017", "id": 309528017, "indices": [20, 26], "name": "npmbot"}]}, "created_at": "Fri Jan 08 00:34:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685258201831309312, "text": "RT @ReBeccaOrg: New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 309528017, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", "statuses_count": 2512, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "785764172", "following": false, "friends_count": 3, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "status.github.com", "url": "http://t.co/efPUg9pga5", "expanded_url": "http://status.github.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 29278, "location": "", "screen_name": "githubstatus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 669, "name": "GitHub Status", "profile_use_background_image": true, "description": "", "url": "http://t.co/efPUg9pga5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Aug 28 00:04:59 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", "favourites_count": 3, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685287597560696833", "id": 685287597560696833, "text": "Everything operating normally.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 02:31:09 +0000 2016", "source": "OctoStatus Production", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 785764172, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 929, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "82874321", "following": false, "friends_count": 1136, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.amber.org", "url": "https://t.co/hvvj9vghmG", "expanded_url": "http://blog.amber.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 840, "location": "Seattle, WA", "screen_name": "petrillic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 121, "name": "Security Therapist", "profile_use_background_image": true, "description": "Social Justice _________. Nerd. Tinkerer. General trouble maker. Always learning more useless things. Homo sum humani a me nihil alienum puto.", "url": "https://t.co/hvvj9vghmG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Fri Oct 16 13:11:25 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", "favourites_count": 3414, "status": {"in_reply_to_status_id": 685613961148936193, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "seattlish", "in_reply_to_user_id": 1589747622, "in_reply_to_status_id_str": "685613961148936193", "in_reply_to_user_id_str": "1589747622", "truncated": false, "id_str": "685614336455254016", "id": 685614336455254016, "text": "@seattlish can we all just drive out there and line up to smack him? It doesn\u2019t solve the problem, unfortunately.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "seattlish", "id_str": "1589747622", "id": 1589747622, "indices": [0, 10], "name": "Seattlish"}]}, "created_at": "Sat Jan 09 00:09:30 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 82874321, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 52179, "profile_banner_url": "https://pbs.twimg.com/profile_banners/82874321/1418621071", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "6297412", "following": false, "friends_count": 818, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "redmonk.com", "url": "http://t.co/U63YEc1eN4", "expanded_url": "http://redmonk.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 1019, "location": "London", "screen_name": "fintanr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 118, "name": "Fintan Ryan", "profile_use_background_image": true, "description": "Industry analyst @redmonk. Business, technology, communities, data, platforms and occasional interjections.", "url": "http://t.co/U63YEc1eN4", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Thu May 24 21:58:29 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", "favourites_count": 1036, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685422437757005824", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mamamia.com.au/rules-for-visi\u2026", "url": "https://t.co/3yc87RdloV", "expanded_url": "http://www.mamamia.com.au/rules-for-visiting-a-newborn/", "indices": [49, 72]}], "hashtags": [], "user_mentions": [{"screen_name": "sogrady", "id_str": "143883", "id": 143883, "indices": [83, 91], "name": "steve o'grady"}, {"screen_name": "girltuesday", "id_str": "16833482", "id": 16833482, "indices": [96, 108], "name": "mko'g"}]}, "created_at": "Fri Jan 08 11:26:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685422437757005824, "text": "Two and a bit weeks in, and this reads so well.. https://t.co/3yc87RdloV, thinking @sogrady and @girltuesday may enjoy reading this too :).", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 6297412, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4240, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6297412/1393521949", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "29170474", "following": false, "friends_count": 227, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sirupsen.com", "url": "http://t.co/lGprTMnO09", "expanded_url": "http://sirupsen.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "F7F7F7", "profile_link_color": "0066AA", "geo_enabled": true, "followers_count": 3304, "location": "Ottawa, Canada", "screen_name": "Sirupsen", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 133, "name": "Simon Eskildsen", "profile_use_background_image": false, "description": "WebScale @Shopify. Canadian in training.", "url": "http://t.co/lGprTMnO09", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Apr 06 09:15:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EFEFEF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", "favourites_count": 1073, "status": {"in_reply_to_status_id": 685581732322668544, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json", "country": "Canada", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-76.353876, 44.961937], [-75.246407, 44.961937], [-75.246407, 45.534511], [-76.353876, 45.534511]]], "type": "Polygon"}, "full_name": "Ottawa, Ontario", "contained_within": [], "country_code": "CA", "id": "38d5974e82ed1a6c", "name": "Ottawa"}, "in_reply_to_screen_name": "jnunemaker", "in_reply_to_user_id": 4243, "in_reply_to_status_id_str": "685581732322668544", "in_reply_to_user_id_str": "4243", "truncated": false, "id_str": "685594548618182656", "id": 685594548618182656, "text": "@jnunemaker Circuit breakers <3 Curious why you ended up building your own over using Semian's?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jnunemaker", "id_str": "4243", "id": 4243, "indices": [0, 11], "name": "John Nunemaker"}]}, "created_at": "Fri Jan 08 22:50:52 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 29170474, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10223, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29170474/1379296952", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15911738", "following": false, "friends_count": 1688, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ryandlane.com", "url": "http://t.co/eD11mzD1mC", "expanded_url": "http://ryandlane.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1554, "location": "San Francisco, CA", "screen_name": "SquidDLane", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 108, "name": "Ryan Lane", "profile_use_background_image": true, "description": "DevOps Engineer at Lyft, Site Operations volunteer at Wikimedia Foundation and SaltStack volunteer Developer.", "url": "http://t.co/eD11mzD1mC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Aug 20 00:39:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", "favourites_count": 26, "status": {"in_reply_to_status_id": 685203908256370688, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "SquidDLane", "in_reply_to_user_id": 15911738, "in_reply_to_status_id_str": "685203908256370688", "in_reply_to_user_id_str": "15911738", "truncated": false, "id_str": "685204036606234624", "id": 685204036606234624, "text": "@tmclaughbos time to make a boto3_asg execution module ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tmclaughbos", "id_str": "740920470", "id": 740920470, "indices": [0, 12], "name": "Tom McLaughlin"}]}, "created_at": "Thu Jan 07 20:59:07 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15911738, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4934, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1442355080", "following": false, "friends_count": 556, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 604, "location": "Pittsburgh, PA", "screen_name": "emdantrim", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "hOI!!!! i'm emmie!!!", "profile_use_background_image": true, "description": "I type special words that computers sometimes find meaning in. my words are mine. she. @travisci", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun May 19 22:47:02 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", "favourites_count": 7314, "status": {"in_reply_to_status_id": 685613356603031552, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "wilkieii", "in_reply_to_user_id": 17047955, "in_reply_to_status_id_str": "685613356603031552", "in_reply_to_user_id_str": "17047955", "truncated": false, "id_str": "685613747482800129", "id": 685613747482800129, "text": "@wilkieii if you build an application that does this for you, twitter will send you a cease and desist and then implement the feature", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "wilkieii", "id_str": "17047955", "id": 17047955, "indices": [0, 9], "name": "wilkie"}]}, "created_at": "Sat Jan 09 00:07:10 +0000 2016", "source": "TweetDeck", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1442355080, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 6202, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1442355080/1450668537", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11764", "following": false, "friends_count": 61, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cdevroe.com", "url": "http://t.co/1iJmxH8GUB", "expanded_url": "http://cdevroe.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", "notifications": false, "profile_sidebar_fill_color": "999999", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 3740, "location": "Jermyn, PA USA", "screen_name": "cdevroe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 179, "name": "Colin Devroe", "profile_use_background_image": false, "description": "Pronounced: See-Dev-Roo. Co-founder of @plainmade & @coalwork. JW. Kayaker.", "url": "http://t.co/1iJmxH8GUB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Nov 08 03:01:15 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", "favourites_count": 10667, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679337835888058368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "plainmade.com/blog/14578/lin\u2026", "url": "https://t.co/XgBYYftnu4", "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", "indices": [23, 46]}], "hashtags": [], "user_mentions": [{"screen_name": "deathtostock", "id_str": "1727323538", "id": 1727323538, "indices": [51, 64], "name": "Death To Stock"}, {"screen_name": "jaredsinclair", "id_str": "15004156", "id": 15004156, "indices": [66, 80], "name": "Jared Sinclair"}, {"screen_name": "RyanClarkDH", "id_str": "596003901", "id": 596003901, "indices": [83, 95], "name": "Ryan Clark"}, {"screen_name": "miguelrios", "id_str": "14717846", "id": 14717846, "indices": [97, 108], "name": "Miguel Rios"}, {"screen_name": "aimeeshiree", "id_str": "14347487", "id": 14347487, "indices": [110, 122], "name": "aimeeshiree"}, {"screen_name": "nathanaeljm", "id_str": "97536835", "id": 97536835, "indices": [124, 136], "name": "Nathanael J Mehrens"}]}, "created_at": "Tue Dec 22 16:28:56 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679337835888058368, "text": "Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, @nathanaeljm", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679340399832522752", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "plainmade.com/blog/14578/lin\u2026", "url": "https://t.co/XgBYYftnu4", "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", "indices": [38, 61]}], "hashtags": [], "user_mentions": [{"screen_name": "plainmade", "id_str": "977048040", "id": 977048040, "indices": [3, 13], "name": "Plain"}, {"screen_name": "deathtostock", "id_str": "1727323538", "id": 1727323538, "indices": [66, 79], "name": "Death To Stock"}, {"screen_name": "jaredsinclair", "id_str": "15004156", "id": 15004156, "indices": [81, 95], "name": "Jared Sinclair"}, {"screen_name": "RyanClarkDH", "id_str": "596003901", "id": 596003901, "indices": [98, 110], "name": "Ryan Clark"}, {"screen_name": "miguelrios", "id_str": "14717846", "id": 14717846, "indices": [112, 123], "name": "Miguel Rios"}, {"screen_name": "aimeeshiree", "id_str": "14347487", "id": 14347487, "indices": [125, 137], "name": "aimeeshiree"}, {"screen_name": "nathanaeljm", "id_str": "97536835", "id": 97536835, "indices": [139, 140], "name": "Nathanael J Mehrens"}]}, "created_at": "Tue Dec 22 16:39:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679340399832522752, "text": "RT @plainmade: Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 11764, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", "statuses_count": 42666, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11764/1444176827", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "13332442", "following": false, "friends_count": 337, "entities": {"description": {"urls": [{"display_url": "flickr.com/photos/mikepan\u2026", "url": "https://t.co/gIfppzqMQO", "expanded_url": "http://www.flickr.com/photos/mikepanchenko/11139648213/", "indices": [117, 140]}]}, "url": {"urls": [{"display_url": "mihasya.com", "url": "http://t.co/8ZVGv5uCcl", "expanded_url": "http://mihasya.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 842, "location": "The steak by the m'lake", "screen_name": "mihasya", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 52, "name": "Pancakes", "profile_use_background_image": true, "description": "making a career of naming projects after foods @newrelic. Formerly @opsmatic @urbanairship @simplegeo @flickr @yahoo https://t.co/gIfppzqMQO", "url": "http://t.co/8ZVGv5uCcl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Feb 11 03:13:51 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", "favourites_count": 913, "status": {"in_reply_to_status_id": 684832544966103040, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "polotek", "in_reply_to_user_id": 20079975, "in_reply_to_status_id_str": "684832544966103040", "in_reply_to_user_id_str": "20079975", "truncated": false, "id_str": "685606078638243841", "id": 685606078638243841, "text": "@polotek I cannot convey in text the size of the CONGRATS I'd like to send your way. Also that birth story was intense y'all are both champs", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "polotek", "id_str": "20079975", "id": 20079975, "indices": [0, 8], "name": "Marco Rogers"}]}, "created_at": "Fri Jan 08 23:36:41 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13332442, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", "statuses_count": 9830, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13332442/1437710921", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "212199251", "following": false, "friends_count": 155, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "orkjern.com", "url": "https://t.co/cJoUSHfCc3", "expanded_url": "https://orkjern.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 170, "location": "Norway", "screen_name": "orkj", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "eiriksm", "profile_use_background_image": false, "description": "All about Drupal, JS and good beer.", "url": "https://t.co/cJoUSHfCc3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", "profile_background_color": "A1A1A1", "created_at": "Fri Nov 05 12:15:41 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", "favourites_count": 207, "status": {"retweet_count": 0, "in_reply_to_user_id": 2154622149, "possibly_sensitive": false, "id_str": "685442655992451072", "in_reply_to_user_id_str": "2154622149", "entities": {"media": [{"sizes": {"large": {"w": 673, "h": 221, "resize": "fit"}, "small": {"w": 340, "h": 111, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 197, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", "type": "photo", "indices": [77, 100], "media_url": "http://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", "display_url": "pic.twitter.com/403urs6oC3", "id_str": "685442654981746688", "expanded_url": "http://twitter.com/orkj/status/685442655992451072/photo/1", "id": 685442654981746688, "url": "https://t.co/403urs6oC3"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "torbmorland", "id_str": "2154622149", "id": 2154622149, "indices": [0, 12], "name": "Torbj\u00f8rn Morland"}, {"screen_name": "github", "id_str": "13334762", "id": 13334762, "indices": [13, 20], "name": "GitHub"}]}, "created_at": "Fri Jan 08 12:47:18 +0000 2016", "favorited": false, "in_reply_to_status_id": 685416670555443200, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "torbmorland", "in_reply_to_status_id_str": "685416670555443200", "truncated": false, "id": 685442655992451072, "text": "@torbmorland @github While you are at it, please create this project as well https://t.co/403urs6oC3", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 212199251, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 318, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24659495", "following": false, "friends_count": 380, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/bcoe", "url": "https://t.co/oVbQkCBHsB", "expanded_url": "https://github.com/bcoe", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1331, "location": "San Francisco", "screen_name": "BenjaminCoe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 93, "name": "Benjamin Coe", "profile_use_background_image": true, "description": "I'm a street walking cheetah with a heart full of napalm. Co-founded @attachmentsme, currently hacks up a storm @npmjs. Aspiring human.", "url": "https://t.co/oVbQkCBHsB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Mar 16 06:23:28 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", "favourites_count": 2517, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685252262696861697", "id": 685252262696861697, "text": "I've been watching greenkeeper.io get a ton of traction across many of the projects I contribute to, wonderful idea @boennemann \\o/", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "boennemann", "id_str": "37506335", "id": 37506335, "indices": [116, 127], "name": "Stephan B\u00f6nnemann"}]}, "created_at": "Fri Jan 08 00:10:45 +0000 2016", "source": "Twitter Web Client", "favorite_count": 13, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 24659495, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", "statuses_count": 3524, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "18210275", "following": false, "friends_count": 235, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "HelloJustine.com", "url": "http://t.co/9NRKpNO5Cj", "expanded_url": "http://HelloJustine.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", "notifications": false, "profile_sidebar_fill_color": "E8E6DF", "profile_link_color": "2EC29D", "geo_enabled": true, "followers_count": 2243, "location": "Where the Wild Things Are", "screen_name": "SaltineJustine", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 122, "name": "Justine Arreche", "profile_use_background_image": true, "description": "I never met a deep fryer I didn't like \u2014 Lead Clipart Strategist at @travisci.", "url": "http://t.co/9NRKpNO5Cj", "profile_text_color": "404040", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", "profile_background_color": "242424", "created_at": "Thu Dec 18 06:09:40 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", "favourites_count": 18042, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685601535380832256", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtube.com/watch?v=3uT4RV\u2026", "url": "https://t.co/shfgUir3HQ", "expanded_url": "https://www.youtube.com/watch?v=3uT4RV2Dfjs", "indices": [56, 79]}], "hashtags": [], "user_mentions": [{"screen_name": "lstoll", "id_str": "59282163", "id": 59282163, "indices": [46, 53], "name": "Kernel Sanders"}]}, "created_at": "Fri Jan 08 23:18:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-81.877771, 41.392684], [-81.5331634, 41.392684], [-81.5331634, 41.599195], [-81.877771, 41.599195]]], "type": "Polygon"}, "full_name": "Cleveland, OH", "contained_within": [], "country_code": "US", "id": "0eb9676d24b211f1", "name": "Cleveland"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685601535380832256, "text": "Friday evening beats brought to you by me and @lstoll \u2014 https://t.co/shfgUir3HQ", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18210275, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", "statuses_count": 23373, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18210275/1437218808", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "11848", "following": false, "friends_count": 2306, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/thisisdeb", "url": "http://t.co/JKlV7BRnzd", "expanded_url": "http://about.me/thisisdeb", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 9038, "location": "SF & NYC", "screen_name": "debs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 734, "name": "debs", "profile_use_background_image": false, "description": "Living at intersection of people, tech, design & horses | Technology changes, humans don't |\r\nCo-founder @yxyy @tummelvision @ILEquestrian", "url": "http://t.co/JKlV7BRnzd", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Nov 08 17:47:14 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", "favourites_count": 1096, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685226261308784644", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "fb.me/76u9wdYOo", "url": "https://t.co/FXGpjqARuU", "expanded_url": "http://fb.me/76u9wdYOo", "indices": [104, 127]}], "hashtags": [{"text": "yxyy", "indices": [134, 139]}], "user_mentions": [{"screen_name": "jboitnott", "id_str": "14486811", "id": 14486811, "indices": [34, 44], "name": "John Boitnott"}, {"screen_name": "YxYY", "id_str": "1232029844", "id": 1232029844, "indices": [128, 133], "name": "Yes and Yes Yes"}]}, "created_at": "Thu Jan 07 22:27:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685226261308784644, "text": "Thanks for the shout out John! RT @jboitnott: Why Many Tech Execs Are Skipping the Consumer Electronics https://t.co/FXGpjqARuU @yxyy #yxyy", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Echofon"}, "default_profile_image": false, "id": 11848, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "statuses_count": 13886, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11848/1414180455", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15662622", "following": false, "friends_count": 4657, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "medium.com/@stevenewcomb", "url": "https://t.co/l86N09uJWv", "expanded_url": "http://www.medium.com/@stevenewcomb", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 29589, "location": "San Francisco, CA", "screen_name": "stevenewcomb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 676, "name": "stevenewcomb", "profile_use_background_image": true, "description": "founder @befamous \u2022 founder @powerset (now MSFT Bing) \u2022 board Node.js \u2022 designer \u2022 ux \u2022 ui", "url": "https://t.co/l86N09uJWv", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Jul 30 16:55:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", "favourites_count": 86, "status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": {"url": "https://api.twitter.com/1.1/geo/id/5ef5b7f391e30aff.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.324818, 37.8459532], [-122.234225, 37.8459532], [-122.234225, 37.905738], [-122.324818, 37.905738]]], "type": "Polygon"}, "full_name": "Berkeley, CA", "contained_within": [], "country_code": "US", "id": "5ef5b7f391e30aff", "name": "Berkeley"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "679695243453661184", "id": 679695243453661184, "text": "When I asked my grandfather if one can be both wise and immature, he said pull my finger and I'll tell you.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 23 16:09:08 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 19, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15662622, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1147, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15662622/1398732045", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14708110", "following": false, "friends_count": 194, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 42, "location": "", "screen_name": "pease", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 0, "name": "Dave Pease", "profile_use_background_image": true, "description": "Father, Husband, .NET Developer at IBS, Inc.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", "profile_background_color": "131516", "created_at": "Fri May 09 01:18:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", "favourites_count": 4, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", "default_profile_image": false, "id": 14708110, "blocked_by": false, "profile_background_tile": true, "statuses_count": 136, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14708110/1425394211", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "133448051", "following": false, "friends_count": 79, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ussoccer.com", "url": "http://t.co/lBXZsLTYug", "expanded_url": "http://www.ussoccer.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 533357, "location": "United States", "screen_name": "ussoccer_wnt", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4083, "name": "U.S. Soccer WNT", "profile_use_background_image": true, "description": "U.S. Soccer's official feed for the #USWNT.", "url": "http://t.co/lBXZsLTYug", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", "profile_background_color": "E4E5E6", "created_at": "Thu Apr 15 20:39:54 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", "favourites_count": 86, "status": {"retweet_count": 195, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609673668427777", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "amp.twimg.com/v/4ee8494e-4f5\u2026", "url": "https://t.co/DzHc1f29T6", "expanded_url": "https://amp.twimg.com/v/4ee8494e-4f5b-4062-a847-abbf85aaa21e", "indices": [119, 142]}], "hashtags": [{"text": "USWNT", "indices": [11, 17]}, {"text": "JanuaryCamp", "indices": [95, 107]}, {"text": "RoadToRio", "indices": [108, 118]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:50:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609673668427777, "text": "WATCH: the #USWNT is off & running in 2016 with its first training camp of the year in LA. #JanuaryCamp #RoadToRio\nhttps://t.co/DzHc1f29T6", "coordinates": null, "retweeted": false, "favorite_count": 534, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 133448051, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", "statuses_count": 13471, "profile_banner_url": "https://pbs.twimg.com/profile_banners/133448051/1436146536", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "520782355", "following": false, "friends_count": 380, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "squidandcrow.com", "url": "http://t.co/Iz4ZfDvOHi", "expanded_url": "http://squidandcrow.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 330, "location": "Pasco, WA", "screen_name": "SquidAndCrow", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 23, "name": "Sara Quinn, Person", "profile_use_background_image": true, "description": "Thing Maker | Squid Wrangler | Free Thinker | Gamer | Friend | Occasional Meat | She/Her or They/Them", "url": "http://t.co/Iz4ZfDvOHi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Sat Mar 10 22:18:27 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", "favourites_count": 3128, "status": {"in_reply_to_status_id": 685540745177133058, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "duosec", "in_reply_to_user_id": 95339302, "in_reply_to_status_id_str": "685540745177133058", "in_reply_to_user_id_str": "95339302", "truncated": false, "id_str": "685592067100131330", "id": 685592067100131330, "text": "@duosec That scared me! So funny, though ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "duosec", "id_str": "95339302", "id": 95339302, "indices": [0, 7], "name": "Duo Security"}]}, "created_at": "Fri Jan 08 22:41:01 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 520782355, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 2610, "profile_banner_url": "https://pbs.twimg.com/profile_banners/520782355/1448506590", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2981041874", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "requiresafe.com", "url": "http://t.co/Gbxa8dLwYt", "expanded_url": "http://requiresafe.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 54, "location": "Richland, wa", "screen_name": "requiresafe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "requireSafe", "profile_use_background_image": true, "description": "Peace of mind for third-party Node modules. Brought to you by the @liftsecurity team and the founders of the @nodesecurity project.", "url": "http://t.co/Gbxa8dLwYt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Jan 13 23:44:44 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", "favourites_count": 6, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "661228477689950208", "id": 661228477689950208, "text": "If you haven't done so please switch from using requiresafe to using nsp. The infrastructure will be taken down today.\n\nnpm i nsp -g", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Nov 02 17:08:48 +0000 2015", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2981041874, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 25, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15445975", "following": false, "friends_count": 600, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paddy.io", "url": "http://t.co/lLVQ2zF195", "expanded_url": "http://paddy.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 879, "location": "Richland, WA", "screen_name": "paddyforan", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 95, "name": "Paddy", "profile_use_background_image": true, "description": "\u201cof Paddy & Ethan\u201d", "url": "http://t.co/lLVQ2zF195", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Tue Jul 15 21:02:05 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", "favourites_count": 2760, "status": {"in_reply_to_status_id": 685493379812098049, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/0dd0c9c93b5519e1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-119.348075, 46.164988], [-119.211248, 46.164988], [-119.211248, 46.3513671], [-119.348075, 46.3513671]]], "type": "Polygon"}, "full_name": "Richland, WA", "contained_within": [], "country_code": "US", "id": "0dd0c9c93b5519e1", "name": "Richland"}, "in_reply_to_screen_name": "wraithgar", "in_reply_to_user_id": 36700219, "in_reply_to_status_id_str": "685493379812098049", "in_reply_to_user_id_str": "36700219", "truncated": false, "id_str": "685515588530126850", "id": 685515588530126850, "text": "@wraithgar saaaaame", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "wraithgar", "id_str": "36700219", "id": 36700219, "indices": [0, 10], "name": "Gar"}]}, "created_at": "Fri Jan 08 17:37:07 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15445975, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 39215, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15445975/1403466417", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2511636140", "following": false, "friends_count": 159, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "heatherloui.se", "url": "https://t.co/8kOnavMn2N", "expanded_url": "http://heatherloui.se", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "077A7A", "geo_enabled": false, "followers_count": 103, "location": "Claremont, CA", "screen_name": "one000mph", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 11, "name": "Heather", "profile_use_background_image": true, "description": "Adventurer. Connoisseur Of Fine Teas. Collector of Outrageous Hats. STEM. Yogi.", "url": "https://t.co/8kOnavMn2N", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed May 21 05:02:13 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", "favourites_count": 53, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "666510529041575936", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "top13.net/funny-jerk-cat\u2026", "url": "https://t.co/cQ4rAKpy5O", "expanded_url": "http://www.top13.net/funny-jerk-cats-dont-respect-personal-space/", "indices": [0, 23]}], "hashtags": [], "user_mentions": [{"screen_name": "wraithgar", "id_str": "36700219", "id": 36700219, "indices": [24, 34], "name": "Gar"}]}, "created_at": "Tue Nov 17 06:57:47 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 666510529041575936, "text": "https://t.co/cQ4rAKpy5O @wraithgar", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2511636140, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 60, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2511636140/1400652181", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3332249974", "following": false, "friends_count": 382, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2292, "location": "", "screen_name": "opsecanimals", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 74, "name": "OpSec Animals", "profile_use_background_image": true, "description": "Animal OPSEC. The animals that teach and encourage good security practices. Boutique Animal Security Consultancy.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 18 06:10:24 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", "favourites_count": 1187, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685591424625184769", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "modelviewculture.com/pieces/groomin\u2026", "url": "https://t.co/mW4QbfhNVG", "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", "indices": [83, 106]}], "hashtags": [], "user_mentions": [{"screen_name": "jessysaurusrex", "id_str": "17797084", "id": 17797084, "indices": [66, 81], "name": "Jessy Irwin"}]}, "created_at": "Fri Jan 08 22:38:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685591424625184769, "text": "Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Known: sketches.shaffermusic.com"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597438594293760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "modelviewculture.com/pieces/groomin\u2026", "url": "https://t.co/mW4QbfhNVG", "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", "indices": [100, 123]}], "hashtags": [], "user_mentions": [{"screen_name": "krisshaffer", "id_str": "136476512", "id": 136476512, "indices": [3, 15], "name": "Kris Shaffer"}, {"screen_name": "jessysaurusrex", "id_str": "17797084", "id": 17797084, "indices": [83, 98], "name": "Jessy Irwin"}]}, "created_at": "Fri Jan 08 23:02:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597438594293760, "text": "RT @krisshaffer: Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 3332249974, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 317, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3332249974/1434610300", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18139160", "following": false, "friends_count": 389, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/inessombra", "url": "http://t.co/hZHAl1Rxhp", "expanded_url": "http://about.me/inessombra", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "151717", "geo_enabled": true, "followers_count": 2843, "location": "San Francisco, CA", "screen_name": "randommood", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 150, "name": "Ines Sombra", "profile_use_background_image": true, "description": "Engineer @fastly. Plagued by many interests including running @papers_we_love SF & board member of @rubytogether. In an everlasting quest for increased focus.", "url": "http://t.co/hZHAl1Rxhp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", "profile_background_color": "131516", "created_at": "Mon Dec 15 16:06:41 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", "favourites_count": 2721, "status": {"in_reply_to_status_id": 685132380991045632, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "chrisamaphone", "in_reply_to_user_id": 5972632, "in_reply_to_status_id_str": "685132380991045632", "in_reply_to_user_id_str": "5972632", "truncated": false, "id_str": "685138209391546369", "id": 685138209391546369, "text": "@chrisamaphone The industry is predatory and bullshitty. I'm happy to share what we did (or rage with you) if it helps \ud83d\udc70\ud83c\udffc\ud83d\udc79", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "chrisamaphone", "id_str": "5972632", "id": 5972632, "indices": [0, 14], "name": "Chris Martens"}]}, "created_at": "Thu Jan 07 16:37:33 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18139160, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 7723, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18139160/1405120776", "is_translator": false}, {"time_zone": "Europe/Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "5430", "following": false, "friends_count": 673, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "squeakyvessel.com", "url": "https://t.co/SmbXMAJahm", "expanded_url": "http://squeakyvessel.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "666666", "geo_enabled": true, "followers_count": 1899, "location": "Frankfurt, Germany", "screen_name": "benjamin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Benjamin Reitzammer", "profile_use_background_image": true, "description": "Head of my head, Feminist\n\n@VaamoTech //\n@socrates_2016 // \n@breathing_code", "url": "https://t.co/SmbXMAJahm", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Sep 07 11:54:22 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", "favourites_count": 1040, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685607349369860096", "id": 685607349369860096, "text": ".@henryrollins I looooove yooouuuu #manthatwasintense", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "manthatwasintense", "indices": [35, 53]}], "user_mentions": [{"screen_name": "henryrollins", "id_str": "16618332", "id": 16618332, "indices": [1, 14], "name": "henryrollins"}]}, "created_at": "Fri Jan 08 23:41:44 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5430, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", "statuses_count": 9759, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5430/1425282364", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "304067888", "following": false, "friends_count": 1108, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ashleygwilliams.github.io", "url": "https://t.co/rkt9BdQBYx", "expanded_url": "http://ashleygwilliams.github.io/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 5853, "location": "undefined", "screen_name": "ag_dubs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 294, "name": "ashley williams", "profile_use_background_image": true, "description": "a mess like this is easily five to ten years ahead of its time. human, @npmjs.", "url": "https://t.co/rkt9BdQBYx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", "profile_background_color": "000000", "created_at": "Mon May 23 21:43:03 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", "favourites_count": 16725, "status": {"in_reply_to_status_id": 685581078879326208, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "skilldrick", "in_reply_to_user_id": 17736965, "in_reply_to_status_id_str": "685581078879326208", "in_reply_to_user_id_str": "17736965", "truncated": false, "id_str": "685581931006812169", "id": 685581931006812169, "text": "@skilldrick @jkup @wafflejs they are a great band! i shoulda known that haha", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "skilldrick", "id_str": "17736965", "id": 17736965, "indices": [0, 11], "name": "Nick Morgan"}, {"screen_name": "jkup", "id_str": "255634108", "id": 255634108, "indices": [12, 17], "name": "Jon Kuperman"}, {"screen_name": "wafflejs", "id_str": "3338088405", "id": 3338088405, "indices": [18, 27], "name": "WaffleJS"}]}, "created_at": "Fri Jan 08 22:00:44 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 304067888, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", "statuses_count": 28815, "profile_banner_url": "https://pbs.twimg.com/profile_banners/304067888/1400530788", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14499792", "following": false, "friends_count": 69, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fayerplay.com", "url": "http://t.co/a7vsP6hbIq", "expanded_url": "http://fayerplay.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/125537436/bg.jpg", "notifications": false, "profile_sidebar_fill_color": "F7DA93", "profile_link_color": "CC3300", "geo_enabled": false, "followers_count": 330, "location": "Columbia, Maryland", "screen_name": "papa_fire", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Leon Fayer", "profile_use_background_image": true, "description": "Technologist. Web architect. DevOps [something]. VP @OmniTI. Gamer. Die hard Ravens fan.", "url": "http://t.co/a7vsP6hbIq", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Apr 23 19:53:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", "favourites_count": 7, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685498351551393795", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tinyclouds.org/colorize/", "url": "https://t.co/n4MF2LMQA5", "expanded_url": "http://tinyclouds.org/colorize/", "indices": [56, 79]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:28:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685498351551393795, "text": "This is much cooler that even author leads to believe. https://t.co/n4MF2LMQA5", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 14499792, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/125537436/bg.jpg", "statuses_count": 2534, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14499792/1354950251", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14412937", "following": false, "friends_count": 150, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eev.ee", "url": "http://t.co/ffxyntfCy2", "expanded_url": "http://eev.ee/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "4380BF", "geo_enabled": true, "followers_count": 7055, "location": "Sin City 2000", "screen_name": "eevee", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 217, "name": "\u2744\u26c4 eevee \u26c4\u2744", "profile_use_background_image": true, "description": "i like computers but also yell about them a lot. sometimes i hack or write or draw. she/they/he", "url": "http://t.co/ffxyntfCy2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", "profile_background_color": "0A3A6A", "created_at": "Wed Apr 16 21:08:32 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", "favourites_count": 32308, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685597943315873792", "id": 685597943315873792, "text": "thanks kde for this window manager that crashes several times a day and doesn't restart on its own", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:04:22 +0000 2016", "source": "Twirssi", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14412937, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", "statuses_count": 81050, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14412937/1435395260", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16642746", "following": false, "friends_count": 414, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "crappytld.club", "url": "http://t.co/d1H2gppjtx", "expanded_url": "http://crappytld.club/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 6004, "location": "Austin, TX", "screen_name": "miketaylr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 435, "name": "Mike Taylor", "profile_use_background_image": true, "description": "Web Compat at Mozilla. I mostly tweet about crappy code. \\\ufdfa\u0310\u033e\u033e\u0308\u030f\u0314\u0302\u0307\u0300\u036d\u0308\u0366\u034c\u033d\u036d\u036a\u036b\u036f\u0304\u034f\u031e\u032d\u0318\u0325\u0324\u034e\u0324\u0358\\'", "url": "http://t.co/d1H2gppjtx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Oct 08 02:18:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", "favourites_count": 4739, "status": {"in_reply_to_status_id": 685227191529934848, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-97.928935, 30.127892], [-97.5805133, 30.127892], [-97.5805133, 30.5187994], [-97.928935, 30.5187994]]], "type": "Polygon"}, "full_name": "Austin, TX", "contained_within": [], "country_code": "US", "id": "c3f37afa9efcf94b", "name": "Austin"}, "in_reply_to_screen_name": "snorp", "in_reply_to_user_id": 14663842, "in_reply_to_status_id_str": "685227191529934848", "in_reply_to_user_id_str": "14663842", "truncated": false, "id_str": "685230499069952001", "id": 685230499069952001, "text": "@snorp i give it a year before someone is running NodeJS on one of these (help us all)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "snorp", "id_str": "14663842", "id": 14663842, "indices": [0, 6], "name": "James Willcox"}]}, "created_at": "Thu Jan 07 22:44:16 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16642746, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", "statuses_count": 16572, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16642746/1381258666", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "749863", "following": false, "friends_count": 565, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "relay.fm/rd", "url": "https://t.co/zuZ3gobI4e", "expanded_url": "http://www.relay.fm/rd", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", "notifications": false, "profile_sidebar_fill_color": "DFDFDF", "profile_link_color": "4255AE", "geo_enabled": false, "followers_count": 354981, "location": "The Outside Lands", "screen_name": "hotdogsladies", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8035, "name": "Merlin Mann", "profile_use_background_image": false, "description": "Ricordati che \u00e8 un film comico.", "url": "https://t.co/zuZ3gobI4e", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", "profile_background_color": "EEEEEE", "created_at": "Sat Feb 03 01:39:53 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", "favourites_count": 27389, "status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685570310104432641", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/_relayfm/statu\u2026", "url": "https://t.co/LxxV1D1MAU", "expanded_url": "https://twitter.com/_relayfm/status/685477059842433024", "indices": [84, 107]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:14:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685570310104432641, "text": "Two amazing hosts doing a topic and approach I've waited a long time for. Endorsed! https://t.co/LxxV1D1MAU", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 749863, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", "statuses_count": 29730, "profile_banner_url": "https://pbs.twimg.com/profile_banners/749863/1450650802", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "239324052", "following": false, "friends_count": 1413, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.skepticfx.com", "url": "https://t.co/gLsQ0GkDmG", "expanded_url": "https://blog.skepticfx.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1421, "location": "San Francisco, CA", "screen_name": "skeptic_fx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "Ahamed Nafeez", "profile_use_background_image": false, "description": "Security Engineering is one of the things I do. Views are my own and does not represent my employer.", "url": "https://t.co/gLsQ0GkDmG", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Jan 17 10:33:29 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", "favourites_count": 1253, "status": {"in_reply_to_status_id": 682429494154530817, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "verystrongjoe", "in_reply_to_user_id": 53238886, "in_reply_to_status_id_str": "682429494154530817", "in_reply_to_user_id_str": "53238886", "truncated": false, "id_str": "682501819830931457", "id": 682501819830931457, "text": "@verystrongjoe Hi! I've replied to you over email :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "verystrongjoe", "id_str": "53238886", "id": 53238886, "indices": [0, 14], "name": "Jo Uk"}]}, "created_at": "Thu Dec 31 10:01:28 +0000 2015", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 239324052, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 2307, "profile_banner_url": "https://pbs.twimg.com/profile_banners/239324052/1443490816", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3194669250", "following": false, "friends_count": 136, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wild.land", "url": "http://t.co/ktkvhRQiyM", "expanded_url": "http://wild.land", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 61, "location": "Richland, WA", "screen_name": "wildlandlabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Wildland", "profile_use_background_image": false, "description": "Software Builders, Coffee Enthusiasts, General Human Beings.", "url": "http://t.co/ktkvhRQiyM", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", "profile_background_color": "000000", "created_at": "Wed May 13 21:58:06 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", "favourites_count": 5, "status": {"in_reply_to_status_id": 637133104977588226, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mattepp", "in_reply_to_user_id": 14871770, "in_reply_to_status_id_str": "637133104977588226", "in_reply_to_user_id_str": "14871770", "truncated": false, "id_str": "637150029396860930", "id": 637150029396860930, "text": "Ohhai!! @mattepp ///@grElement", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mattepp", "id_str": "14871770", "id": 14871770, "indices": [8, 16], "name": "Matthew Eppelsheimer"}, {"screen_name": "grElement", "id_str": "42056876", "id": 42056876, "indices": [20, 30], "name": "Angela Steffens"}]}, "created_at": "Fri Aug 28 06:29:39 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "it"}, "default_profile_image": false, "id": 3194669250, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 22, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3194669250/1431554889", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1530096708", "following": false, "friends_count": 4721, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "closetoclever.com", "url": "https://t.co/oQf0XG5ffN", "expanded_url": "http://www.closetoclever.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "007AB3", "geo_enabled": false, "followers_count": 8757, "location": "Birmingham/London/\u3069\u3053\u3067\u3082", "screen_name": "jesslynnrose", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 298, "name": "Jessica Rose", "profile_use_background_image": true, "description": "Technology's den mother. Devrel for @dfsoftwareinc & often doing things w/ @opencodeclub, @trans_code & @watchingbuffy DMs open*, views mine", "url": "https://t.co/oQf0XG5ffN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 19 07:56:27 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", "favourites_count": 8916, "status": {"in_reply_to_status_id": 685558133687775232, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "spiky_flamingo", "in_reply_to_user_id": 3143889479, "in_reply_to_status_id_str": "685558133687775232", "in_reply_to_user_id_str": "3143889479", "truncated": false, "id_str": "685558290324041728", "id": 685558290324041728, "text": "@spiky_flamingo @miss_jwo I am! DM incoming! \ud83d\ude01", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "spiky_flamingo", "id_str": "3143889479", "id": 3143889479, "indices": [0, 15], "name": "pearl irl"}, {"screen_name": "miss_jwo", "id_str": "200519952", "id": 200519952, "indices": [16, 25], "name": "Jenny Wong"}]}, "created_at": "Fri Jan 08 20:26:48 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1530096708, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 15506, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1530096708/1448497747", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5438512", "following": false, "friends_count": 543, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pcper.com", "url": "http://t.co/FyPzbMLdvW", "expanded_url": "http://www.pcper.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 11986, "location": "Florence, KY", "screen_name": "ryanshrout", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 726, "name": "Ryan Shrout", "profile_use_background_image": false, "description": "Editor-in-Chief at PC Perspective", "url": "http://t.co/FyPzbMLdvW", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Mon Apr 23 16:41:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", "favourites_count": 258, "status": {"in_reply_to_status_id": 685607960899235840, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "AndrewLauritzen", "in_reply_to_user_id": 321550744, "in_reply_to_status_id_str": "685607960899235840", "in_reply_to_user_id_str": "321550744", "truncated": false, "id_str": "685608068655140866", "id": 685608068655140866, "text": "@AndrewLauritzen I asked them specifically, and they only said that this was the focus for 2016.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AndrewLauritzen", "id_str": "321550744", "id": 321550744, "indices": [0, 16], "name": "Andrew Lauritzen"}]}, "created_at": "Fri Jan 08 23:44:36 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5438512, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 15326, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "43188880", "following": false, "friends_count": 1673, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dalebracey.com", "url": "https://t.co/uQTo4Zburt", "expanded_url": "http://dalebracey.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7A5339", "profile_link_color": "FF6600", "geo_enabled": false, "followers_count": 1257, "location": "San Antonio, TX", "screen_name": "IRTermite", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 60, "name": "Dale Bracey \u2601", "profile_use_background_image": true, "description": "Social Strategist @Rackspace, Racker since 2004 - Artist, Car Collector, Empath, Geek, Networker, Techie, Jack-of-all, #OpenStack, @MakeSanAntonio @RackerGamers", "url": "https://t.co/uQTo4Zburt", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", "profile_background_color": "131516", "created_at": "Thu May 28 20:27:13 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", "favourites_count": 2189, "status": {"retweet_count": 23, "retweeted_status": {"retweet_count": 23, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685296231405326337", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 852, "h": 669, "resize": "fit"}, "medium": {"w": 600, "h": 471, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 266, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "type": "photo", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "display_url": "pic.twitter.com/65waEZwn1E", "id_str": "685296015801331716", "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", "id": 685296015801331716, "url": "https://t.co/65waEZwn1E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 03:05:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685296231405326337, "text": "Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", "coordinates": null, "retweeted": false, "favorite_count": 22, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685296427338051584", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 852, "h": 669, "resize": "fit"}, "medium": {"w": 600, "h": 471, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 266, "resize": "fit"}}, "source_status_id_str": "685296231405326337", "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "source_user_id_str": "26191233", "id_str": "685296015801331716", "id": 685296015801331716, "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "type": "photo", "indices": [105, 128], "source_status_id": 685296231405326337, "source_user_id": 26191233, "display_url": "pic.twitter.com/65waEZwn1E", "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", "url": "https://t.co/65waEZwn1E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Rackspace", "id_str": "26191233", "id": 26191233, "indices": [3, 13], "name": "Rackspace"}]}, "created_at": "Fri Jan 08 03:06:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685296427338051584, "text": "RT @Rackspace: Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 43188880, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 6991, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43188880/1433971079", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "801712861", "following": false, "friends_count": 614, "entities": {"description": {"urls": [{"display_url": "domschopsalsa.com", "url": "https://t.co/ySTEeD6lcz", "expanded_url": "http://www.domschopsalsa.com", "indices": [90, 113]}, {"display_url": "facebook.com/chopsalsa", "url": "https://t.co/DoMfz1yk60", "expanded_url": "http://facebook.com/chopsalsa", "indices": [115, 138]}]}, "url": {"urls": [{"display_url": "linkedin.com/in/dominicmend\u2026", "url": "http://t.co/3hwdF3IqPC", "expanded_url": "http://www.linkedin.com/in/dominicmendiola", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 267, "location": "San Antonio, TX", "screen_name": "DominicMendiola", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "dominic.mendiola", "profile_use_background_image": false, "description": "Father. Husband. Racker since 2006. Social Media Team. Owner Dom's Chop Salsa @chopsalsa, https://t.co/ySTEeD6lcz, https://t.co/DoMfz1yk60", "url": "http://t.co/3hwdF3IqPC", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Sep 04 03:13:51 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", "favourites_count": 391, "status": {"in_reply_to_status_id": 684515636333051904, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "trevorengstrom", "in_reply_to_user_id": 15080503, "in_reply_to_status_id_str": "684515636333051904", "in_reply_to_user_id_str": "15080503", "truncated": false, "id_str": "684516227667001344", "id": 684516227667001344, "text": "@trevorengstrom @Rackspace Ok good! If anything else pops up and you need a hand...just let us know! We're always happy to help! Thanks!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "trevorengstrom", "id_str": "15080503", "id": 15080503, "indices": [0, 15], "name": "Trevor Engstrom"}, {"screen_name": "Rackspace", "id_str": "26191233", "id": 26191233, "indices": [16, 26], "name": "Rackspace"}]}, "created_at": "Tue Jan 05 23:26:01 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 801712861, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 536, "profile_banner_url": "https://pbs.twimg.com/profile_banners/801712861/1443214772", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "4508241", "following": false, "friends_count": 194, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "langfeld.me", "url": "http://t.co/FYGU0gVzky", "expanded_url": "http://langfeld.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 481, "location": "Rio de Janeiro, Brasil", "screen_name": "benlangfeld", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "Ben Langfeld", "profile_use_background_image": true, "description": "Communications app developer. Mojo Lingo & Adhearsion Foundation. Experimenter and perfectionist.", "url": "http://t.co/FYGU0gVzky", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Fri Apr 13 15:05:00 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", "favourites_count": 200, "status": {"retweet_count": 0, "in_reply_to_user_id": 3033204133, "possibly_sensitive": false, "id_str": "685548188435132416", "in_reply_to_user_id_str": "3033204133", "entities": {"symbols": [], "urls": [{"display_url": "gist.github.com/benlangfeld/18\u2026", "url": "https://t.co/EYtcS2Vqhk", "expanded_url": "https://gist.github.com/benlangfeld/181cbb3997eb4236e244", "indices": [87, 110]}], "hashtags": [], "user_mentions": [{"screen_name": "honest_update", "id_str": "3033204133", "id": 3033204133, "indices": [0, 14], "name": "Honest Status Page"}]}, "created_at": "Fri Jan 08 19:46:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "honest_update", "in_reply_to_status_id_str": null, "truncated": false, "id": 685548188435132416, "text": "@honest_update Our app fell over because our queue was too slow. It's ok, we fixed it: https://t.co/EYtcS2Vqhk", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 4508241, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2697, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4508241/1401146387", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "22199970", "following": false, "friends_count": 761, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lea.verou.me", "url": "http://t.co/Q2CdWpNV1q", "expanded_url": "http://lea.verou.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/324344036/bg.png", "notifications": false, "profile_sidebar_fill_color": "FFFBF2", "profile_link_color": "FF0066", "geo_enabled": true, "followers_count": 64139, "location": "Cambridge, MA", "screen_name": "LeaVerou", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3585, "name": "Lea Verou", "profile_use_background_image": true, "description": "HCI researcher @MIT_CSAIL, @CSSWG IE, @CSSSecretsBook author, Ex @W3C staff. Made @prismjs @dabblet @prefixfree. I \u2665 standards, code, design, UX, life!", "url": "http://t.co/Q2CdWpNV1q", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", "profile_background_color": "FBE4AE", "created_at": "Fri Feb 27 22:28:59 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", "favourites_count": 3696, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685359744966590464", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "byteplumbing.net/2016/01/book-r\u2026", "url": "https://t.co/pfmTTIXCIy", "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", "indices": [116, 139]}], "hashtags": [], "user_mentions": [{"screen_name": "csssecretsbook", "id_str": "3262381338", "id": 3262381338, "indices": [23, 38], "name": "CSS Secrets"}]}, "created_at": "Fri Jan 08 07:17:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685359744966590464, "text": "Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co/pfmTTIXCIy", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685574450780192770", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "byteplumbing.net/2016/01/book-r\u2026", "url": "https://t.co/pfmTTIXCIy", "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "iiska", "id_str": "18630451", "id": 18630451, "indices": [3, 9], "name": "Juhamatti Niemel\u00e4"}, {"screen_name": "csssecretsbook", "id_str": "3262381338", "id": 3262381338, "indices": [34, 49], "name": "CSS Secrets"}]}, "created_at": "Fri Jan 08 21:31:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685574450780192770, "text": "RT @iiska: Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 22199970, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/324344036/bg.png", "statuses_count": 24815, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22199970/1374351780", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2739826012", "following": false, "friends_count": 2319, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "matrix.org", "url": "http://t.co/Rrx4mnMJ5W", "expanded_url": "http://www.matrix.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4F5A5E", "geo_enabled": true, "followers_count": 1227, "location": "", "screen_name": "matrixdotorg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 61, "name": "Matrix", "profile_use_background_image": false, "description": "An open standard for decentralised persistent communication. Tweets by @ara4n, @amandinelepape & co.", "url": "http://t.co/Rrx4mnMJ5W", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", "profile_background_color": "000000", "created_at": "Mon Aug 11 10:51:23 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", "favourites_count": 781, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685552098830880768", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.tadhack.com/2016/01/08/tad\u2026", "url": "https://t.co/0iV7Uzmaia", "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", "indices": [31, 54]}, {"display_url": "webrtcconference.jp", "url": "https://t.co/7NnGiq0vCN", "expanded_url": "http://webrtcconference.jp/", "indices": [114, 137]}], "hashtags": [{"text": "skywayjs", "indices": [69, 78]}], "user_mentions": [{"screen_name": "TADHack", "id_str": "2315728231", "id": 2315728231, "indices": [11, 19], "name": "TADHack"}, {"screen_name": "matrixdotorg", "id_str": "2739826012", "id": 2739826012, "indices": [55, 68], "name": "Matrix"}, {"screen_name": "telestax", "id_str": "266634532", "id": 266634532, "indices": [79, 88], "name": "TeleStax"}, {"screen_name": "ntt", "id_str": "1706681", "id": 1706681, "indices": [89, 93], "name": "Chinmay"}]}, "created_at": "Fri Jan 08 20:02:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685552098830880768, "text": "Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co/7NnGiq0vCN", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685553303049076741", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.tadhack.com/2016/01/08/tad\u2026", "url": "https://t.co/0iV7Uzmaia", "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", "indices": [44, 67]}, {"display_url": "webrtcconference.jp", "url": "https://t.co/7NnGiq0vCN", "expanded_url": "http://webrtcconference.jp/", "indices": [139, 140]}], "hashtags": [{"text": "skywayjs", "indices": [82, 91]}], "user_mentions": [{"screen_name": "TADHack", "id_str": "2315728231", "id": 2315728231, "indices": [3, 11], "name": "TADHack"}, {"screen_name": "TADHack", "id_str": "2315728231", "id": 2315728231, "indices": [24, 32], "name": "TADHack"}, {"screen_name": "matrixdotorg", "id_str": "2739826012", "id": 2739826012, "indices": [68, 81], "name": "Matrix"}, {"screen_name": "telestax", "id_str": "266634532", "id": 266634532, "indices": [92, 101], "name": "TeleStax"}, {"screen_name": "ntt", "id_str": "1706681", "id": 1706681, "indices": [102, 106], "name": "Chinmay"}]}, "created_at": "Fri Jan 08 20:06:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685553303049076741, "text": "RT @TADHack: Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2739826012, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1282, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2739826012/1422740800", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "512410920", "following": false, "friends_count": 735, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wroteacodeforcloverhitch.blogspot.ca", "url": "http://t.co/orO5dwZcHv", "expanded_url": "http://wroteacodeforcloverhitch.blogspot.ca/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "80042B", "geo_enabled": false, "followers_count": 912, "location": "Calgary, Alberta", "screen_name": "gbhorwood", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Grant Horwood", "profile_use_background_image": true, "description": "Lead developer Cloverhitch Tech in Calgary, AB. I like clever code, verbose documentation, fast bicycles and questionable homebrew.", "url": "http://t.co/orO5dwZcHv", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", "profile_background_color": "ABB8C2", "created_at": "Fri Mar 02 20:19:53 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", "favourites_count": 1533, "status": {"in_reply_to_status_id": 685565777680859136, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "meejah", "in_reply_to_user_id": 13055372, "in_reply_to_status_id_str": "685565777680859136", "in_reply_to_user_id_str": "13055372", "truncated": false, "id_str": "685566263142187008", "id": 685566263142187008, "text": "@meejah yeah. i have a \"bob has a bug\" issue. what bug? when? last name? no one can say... \n\ngrep -irn \"bob\" ./*", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "meejah", "id_str": "13055372", "id": 13055372, "indices": [0, 7], "name": "meejah"}]}, "created_at": "Fri Jan 08 20:58:28 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 512410920, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2309, "profile_banner_url": "https://pbs.twimg.com/profile_banners/512410920/1398348433", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "65583", "following": false, "friends_count": 654, "entities": {"description": {"urls": [{"display_url": "OSMIhelp.org", "url": "http://t.co/skQU77s3rk", "expanded_url": "http://OSMIhelp.org", "indices": [83, 105]}]}, "url": {"urls": [{"display_url": "funkatron.com", "url": "http://t.co/Y4o3XtlP6R", "expanded_url": "http://funkatron.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90616269/funbike.png", "notifications": false, "profile_sidebar_fill_color": "B8B8B8", "profile_link_color": "660000", "geo_enabled": false, "followers_count": 8751, "location": "West Lafayette, IN, USA", "screen_name": "funkatron", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 773, "name": "Ed Finkler", "profile_use_background_image": false, "description": "Dork, Dad, JS, PHP & Python feller. Lead Dev @GraphStoryCo. Mental Health advocate http://t.co/skQU77s3rk. 1/2 of @dev_hell podcast. See also @funkalinks", "url": "http://t.co/Y4o3XtlP6R", "profile_text_color": "424141", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Dec 14 00:31:16 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", "favourites_count": 8512, "status": {"in_reply_to_status_id": 685606121604681729, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jclermont", "in_reply_to_user_id": 16358696, "in_reply_to_status_id_str": "685606121604681729", "in_reply_to_user_id_str": "16358696", "truncated": false, "id_str": "685609221245763585", "id": 685609221245763585, "text": "@jclermont when I read this I had to say that out loud", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jclermont", "id_str": "16358696", "id": 16358696, "indices": [0, 10], "name": "Joel Clermont"}]}, "created_at": "Fri Jan 08 23:49:11 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 65583, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90616269/funbike.png", "statuses_count": 84078, "profile_banner_url": "https://pbs.twimg.com/profile_banners/65583/1438612109", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "396241682", "following": false, "friends_count": 322, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mariemosley.com/about", "url": "https://t.co/BppFkRlCWu", "expanded_url": "https://www.mariemosley.com/about", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "009CA2", "geo_enabled": true, "followers_count": 1098, "location": "", "screen_name": "MMosley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 66, "name": "Marie Mosley", "profile_use_background_image": false, "description": "Look out honey, 'cause I'm using technology // Part of Team @CodePen", "url": "https://t.co/BppFkRlCWu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", "profile_background_color": "01E6EF", "created_at": "Sat Oct 22 23:58:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", "favourites_count": 10411, "status": {"in_reply_to_status_id": 685594363007746048, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jaynawallace", "in_reply_to_user_id": 78213, "in_reply_to_status_id_str": "685594363007746048", "in_reply_to_user_id_str": "78213", "truncated": false, "id_str": "685602091553959936", "id": 685602091553959936, "text": "@jaynawallace I will join your squad \ud83d\udc6f what's you're name on there?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jaynawallace", "id_str": "78213", "id": 78213, "indices": [0, 13], "name": "\u02d7\u02cf\u02cb jayna wallace \u02ce\u02ca"}]}, "created_at": "Fri Jan 08 23:20:51 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 396241682, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3204, "profile_banner_url": "https://pbs.twimg.com/profile_banners/396241682/1430082364", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3202399565", "following": false, "friends_count": 26, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 32, "location": "De Cymru", "screen_name": "KevTWondersheep", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Kevin Smith", "profile_use_background_image": true, "description": "@DefinitiveKev pretending to be non-techie. May contain very very bad Welsh.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Apr 24 22:27:37 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", "favourites_count": 45, "status": {"in_reply_to_status_id": 684380251649093632, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "EmiGarside", "in_reply_to_user_id": 23923202, "in_reply_to_status_id_str": "684380251649093632", "in_reply_to_user_id_str": "23923202", "truncated": false, "id_str": "684380579673018368", "id": 684380579673018368, "text": "@emigarside Droids don't rip people's arms out of their sockets when they lose. Wookies are known to do that.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "EmiGarside", "id_str": "23923202", "id": 23923202, "indices": [0, 11], "name": "Dr Emily Garside"}]}, "created_at": "Tue Jan 05 14:27:00 +0000 2016", "source": "Twitter for Mac", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3202399565, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 71, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3202399565/1429962655", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "606349117", "following": false, "friends_count": 1523, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sparxeng.com", "url": "http://t.co/tfYNlmleOE", "expanded_url": "http://www.sparxeng.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1980, "location": "Houston, TX", "screen_name": "SparxEngineer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 61, "name": "Sparx Engineering", "profile_use_background_image": true, "description": "Engineering consulting company, specializing in embedded devices, custom/mobile/web application development and helping startups bring products to market.", "url": "http://t.co/tfYNlmleOE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Jun 12 14:10:06 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", "favourites_count": 16, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685140345215139841", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 600, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", "display_url": "pic.twitter.com/HawyibmcoX", "id_str": "685140345039024128", "expanded_url": "http://twitter.com/SparxEngineer/status/685140345215139841/photo/1", "id": 685140345039024128, "url": "https://t.co/HawyibmcoX"}], "symbols": [], "urls": [{"display_url": "buff.ly/1Z8fXA2", "url": "https://t.co/LzWHfSO5Ux", "expanded_url": "http://buff.ly/1Z8fXA2", "indices": [66, 89]}], "hashtags": [{"text": "tech", "indices": [90, 95]}, {"text": "fitness", "indices": [96, 104]}], "user_mentions": []}, "created_at": "Thu Jan 07 16:46:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685140345215139841, "text": "New lawsuit: Fitbit heart rate tracking is dangerously inaccurate https://t.co/LzWHfSO5Ux #tech #fitness https://t.co/HawyibmcoX", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 606349117, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1734, "profile_banner_url": "https://pbs.twimg.com/profile_banners/606349117/1391191180", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "84107122", "following": false, "friends_count": 1570, "entities": {"description": {"urls": [{"display_url": "themakersofthings.co.uk", "url": "http://t.co/f5R61wCtSs", "expanded_url": "http://themakersofthings.co.uk", "indices": [73, 95]}]}, "url": {"urls": [{"display_url": "anne.holiday", "url": "http://t.co/pxLXGQsvL6", "expanded_url": "http://anne.holiday/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 908, "location": "Brooklyn, NY", "screen_name": "anneholiday", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "Anne Holiday", "profile_use_background_image": true, "description": "Filmmaker. Phototaker. Maker of The Makers of Things documentary series: http://t.co/f5R61wCtSs", "url": "http://t.co/pxLXGQsvL6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Oct 21 16:05:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", "favourites_count": 3006, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685464406453530624", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "newyorker.com/magazine/2015/\u2026", "url": "https://t.co/qw5SReTvl6", "expanded_url": "http://www.newyorker.com/magazine/2015/01/19/lets-get-drinks", "indices": [5, 28]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:13:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685464406453530624, "text": "Lol: https://t.co/qw5SReTvl6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 84107122, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 4627, "profile_banner_url": "https://pbs.twimg.com/profile_banners/84107122/1393641836", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3033725946", "following": false, "friends_count": 1422, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bit.ly/1vmzDHa", "url": "http://t.co/27akJdS8AO", "expanded_url": "http://bit.ly/1vmzDHa", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2047, "location": "", "screen_name": "WebRRTC", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 58, "name": "WebRTC", "profile_use_background_image": true, "description": "Live content curated by top Web Real-Time Communication (WebRTC) Influencer", "url": "http://t.co/27akJdS8AO", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", "profile_background_color": "C0DEED", "created_at": "Sat Feb 21 02:29:20 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", "favourites_count": 0, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685546590354853888", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 494, "h": 877, "resize": "fit"}, "medium": {"w": 494, "h": 877, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 603, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOM_bdUsAAMT4R.jpg", "type": "photo", "indices": [94, 117], "media_url": "http://pbs.twimg.com/media/CYOM_bdUsAAMT4R.jpg", "display_url": "pic.twitter.com/picKmDTHQn", "id_str": "685546589620842496", "expanded_url": "http://twitter.com/WebRRTC/status/685546590354853888/photo/1", "id": 685546589620842496, "url": "https://t.co/picKmDTHQn"}], "symbols": [], "urls": [{"display_url": "rightrelevance.com/search/article\u2026", "url": "https://t.co/c6sQyr5IUN", "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=85fcf644b457069e3387a3d83f0cf5cf83d07a51&query=webrtc&taccount=webrrtc", "indices": [70, 93]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:40:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685546590354853888, "text": "AT&T Developer Summit 2016 \u2013 Let Me Tell You a Story about WebRTC https://t.co/c6sQyr5IUN https://t.co/picKmDTHQn", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "RRPostingApp"}, "default_profile_image": false, "id": 3033725946, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2873, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15518306", "following": false, "friends_count": 428, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "langille.org", "url": "http://t.co/uBwYd3PW71", "expanded_url": "http://langille.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1242, "location": "near Philadelphia", "screen_name": "DLangille", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 91, "name": "Dan Langille", "profile_use_background_image": true, "description": "Mountain biker. Software Dev. Sysadmin. Websites & databases. Conference organizer.", "url": "http://t.co/uBwYd3PW71", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", "profile_background_color": "C6E2EE", "created_at": "Mon Jul 21 17:56:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", "favourites_count": 630, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685554984306360320", "id": 685554984306360320, "text": "Current status: adding my user (not me) to gmail. I feel all grown up....", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:13:39 +0000 2016", "source": "Twitterrific for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15518306, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", "statuses_count": 12127, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15518306/1406551613", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14420513", "following": false, "friends_count": 346, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fromonesrc.com", "url": "https://t.co/Lez165p0gY", "expanded_url": "http://fromonesrc.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 205, "location": "Lansdale, PA", "screen_name": "fromonesrc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Adam Ochonicki", "profile_use_background_image": true, "description": "Redemption? Sure. But in the end, he's just another dead rat in a garbage pail behind a Chinese restaurant.", "url": "https://t.co/Lez165p0gY", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Thu Apr 17 13:32:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", "favourites_count": 475, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685595808402681856", "id": 685595808402681856, "text": "OH: \"actually, it\u2019s nice getting some time to pay down tech debt\u2026 after spending so long generating it\"\n\nThat rings so true for me.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:55:53 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14420513, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 6413, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14420513/1449525270", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2292633427", "following": false, "friends_count": 3204, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "uk.linkedin.com/in/jmgcraig", "url": "https://t.co/q8exdl06ab", "expanded_url": "https://uk.linkedin.com/in/jmgcraig", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 2839, "location": "London", "screen_name": "AttackyChappie", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 83, "name": "Graeme Craig", "profile_use_background_image": false, "description": "Recruitment Manager @6DegreesGroup | #UC #Connectivity #DC #Cloud | Passionate #PS4 Gamer, Cyclist, Foodie, Lover of #Lego #EnglishBullDogs & my #Wife", "url": "https://t.co/q8exdl06ab", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Jan 15 12:23:08 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", "favourites_count": 3, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685096224463126528", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mspalliance.com/cloud-computin\u2026", "url": "https://t.co/Aeibg4EwGl", "expanded_url": "http://mspalliance.com/cloud-computing-managed-services-forecast-for-2016/", "indices": [57, 80]}], "hashtags": [], "user_mentions": [{"screen_name": "arjun077", "id_str": "51468247", "id": 51468247, "indices": [85, 94], "name": "Arjun jain"}]}, "created_at": "Thu Jan 07 13:50:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685096224463126528, "text": "Cloud Computing & Managed Services Forecast for 2016 https://t.co/Aeibg4EwGl via @arjun077", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2292633427, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 392, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2292633427/1424354218", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "42909423", "following": false, "friends_count": 284, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 198, "location": "Raleigh, NC", "screen_name": "__id__", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Dmytro Ilchenko", "profile_use_background_image": true, "description": "I'm not a geek, i'm a level 12 paladin. Yak barber. Casting special ops magic to make things work @LivingSocial.", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed May 27 15:48:15 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", "favourites_count": 1304, "status": {"retweet_count": 133, "retweeted_status": {"retweet_count": 133, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681874873539366912", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "danluu.com/wat/", "url": "https://t.co/9DLKdXk34s", "expanded_url": "http://danluu.com/wat/", "indices": [98, 121]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 29 16:30:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681874873539366912, "text": "What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", "coordinates": null, "retweeted": false, "favorite_count": 115, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683752055920553986", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "danluu.com/wat/", "url": "https://t.co/9DLKdXk34s", "expanded_url": "http://danluu.com/wat/", "indices": [110, 133]}], "hashtags": [], "user_mentions": [{"screen_name": "danluu", "id_str": "18275645", "id": 18275645, "indices": [3, 10], "name": "Dan Luu"}]}, "created_at": "Sun Jan 03 20:49:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683752055920553986, "text": "RT @danluu: What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 42909423, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 2800, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42909423/1398263672", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13166972", "following": false, "friends_count": 1776, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dariusdunlap.com", "url": "https://t.co/Dmpe1rzbsb", "expanded_url": "https://dariusdunlap.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1442, "location": "Half Moon Bay, CA", "screen_name": "dariusdunlap", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 85, "name": "Darius Dunlap", "profile_use_background_image": true, "description": "Tech guy, Founder at Syncopat; Square Peg Foundation. Executive Director at Silicon Valley Innovation Institute, Advising startups & growing companies", "url": "https://t.co/Dmpe1rzbsb", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Wed Feb 06 17:04:20 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", "favourites_count": 1393, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684909434443706368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "squarepegfoundation.org/2016/01/a-jour\u2026", "url": "https://t.co/tZ6YYzQZKS", "expanded_url": "https://www.squarepegfoundation.org/2016/01/a-journey-together/", "indices": [74, 97]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 01:28:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-124.482003, 32.528832], [-114.131212, 32.528832], [-114.131212, 42.009519], [-124.482003, 42.009519]]], "type": "Polygon"}, "full_name": "California, USA", "contained_within": [], "country_code": "US", "id": "fbd6d2f5a4e4a15e", "name": "California"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684909434443706368, "text": "Our journey, finding one another and creating and building Square Pegs. ( https://t.co/tZ6YYzQZKS )", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 13166972, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 4660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13166972/1398466705", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "12530", "following": false, "friends_count": 955, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hackdiary.com/about/", "url": "http://t.co/qmocio1ti6", "expanded_url": "http://www.hackdiary.com/about/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", "notifications": false, "profile_sidebar_fill_color": "FFF3C8", "profile_link_color": "857025", "geo_enabled": true, "followers_count": 6983, "location": "San Francisco CA, USA", "screen_name": "mattb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 453, "name": "Matt Biddulph", "profile_use_background_image": true, "description": "Currently: @thingtonhq. Previously: BBC, Dopplr, Nokia.", "url": "http://t.co/qmocio1ti6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", "profile_background_color": "FECF1F", "created_at": "Wed Nov 15 15:48:50 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", "favourites_count": 4258, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685332843334086657", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1mJgTP1", "url": "https://t.co/VG2Bfr3epg", "expanded_url": "http://ift.tt/1mJgTP1", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 05:30:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685332843334086657, "text": "David Bowie - Blackstar https://t.co/VG2Bfr3epg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "IFTTT"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685333814298595329", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1mJgTP1", "url": "https://t.co/VG2Bfr3epg", "expanded_url": "http://ift.tt/1mJgTP1", "indices": [45, 68]}], "hashtags": [], "user_mentions": [{"screen_name": "spotifynmfeedus", "id_str": "2553073892", "id": 2553073892, "indices": [3, 19], "name": "spotifynewmusicUS"}]}, "created_at": "Fri Jan 08 05:34:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685333814298595329, "text": "RT @spotifynmfeedus: David Bowie - Blackstar https://t.co/VG2Bfr3epg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 12530, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", "statuses_count": 13061, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12530/1398198928", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "239453824", "following": false, "friends_count": 32, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thington.com", "url": "http://t.co/GgjWLxjLHD", "expanded_url": "http://thington.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "FF6958", "geo_enabled": false, "followers_count": 2204, "location": "San Francisco", "screen_name": "thingtonhq", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 60, "name": "Thington", "profile_use_background_image": false, "description": "We're building a new way to interact with a world of connected things!", "url": "http://t.co/GgjWLxjLHD", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", "profile_background_color": "F5F8FA", "created_at": "Mon Jan 17 17:21:39 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", "favourites_count": 33, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685263027688452096", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wired.com/2016/01/americ\u2026", "url": "https://t.co/ZydSbrfxfe", "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "stamen", "id_str": "2067201", "id": 2067201, "indices": [45, 52], "name": "Stamen Design"}]}, "created_at": "Fri Jan 08 00:53:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685263027688452096, "text": "Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685277708821991424", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wired.com/2016/01/americ\u2026", "url": "https://t.co/ZydSbrfxfe", "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", "indices": [69, 92]}], "hashtags": [], "user_mentions": [{"screen_name": "tomcoates", "id_str": "12514", "id": 12514, "indices": [3, 13], "name": "Tom Coates"}, {"screen_name": "stamen", "id_str": "2067201", "id": 2067201, "indices": [60, 67], "name": "Stamen Design"}]}, "created_at": "Fri Jan 08 01:51:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685277708821991424, "text": "RT @tomcoates: Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 239453824, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 299, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "740983", "following": false, "friends_count": 753, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "leade.rs", "url": "https://t.co/K0dvCXW6PW", "expanded_url": "http://leade.rs", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", "notifications": false, "profile_sidebar_fill_color": "CDCECA", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 126939, "location": "San Francisco", "screen_name": "loic", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8209, "name": "Loic Le Meur", "profile_use_background_image": false, "description": "starting leade.rs", "url": "https://t.co/K0dvCXW6PW", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", "profile_background_color": "CFB895", "created_at": "Thu Feb 01 00:10:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", "favourites_count": 816, "status": {"in_reply_to_status_id": 685502288232878084, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "_Neiluj", "in_reply_to_user_id": 76334385, "in_reply_to_status_id_str": "685502288232878084", "in_reply_to_user_id_str": "76334385", "truncated": false, "id_str": "685524189436981248", "id": 685524189436981248, "text": "@_Neiluj passe ton email je vais t'ajouter manuellement. Tu as regard\u00e9 spam?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "_Neiluj", "id_str": "76334385", "id": 76334385, "indices": [0, 8], "name": "Julien"}]}, "created_at": "Fri Jan 08 18:11:17 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "fr"}, "default_profile_image": false, "id": 740983, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", "statuses_count": 52911, "profile_banner_url": "https://pbs.twimg.com/profile_banners/740983/1447869110", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "44196397", "following": false, "friends_count": 50, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3189339, "location": "1 AU", "screen_name": "elonmusk", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 24233, "name": "Elon Musk", "profile_use_background_image": true, "description": "Tesla, SpaceX, SolarCity & PayPal", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 02 20:12:29 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", "favourites_count": 224, "status": {"retweet_count": 881, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683333695307034625", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "en.m.wikipedia.org/wiki/The_Machi\u2026", "url": "https://t.co/0Dl4l2t6FH", "expanded_url": "https://en.m.wikipedia.org/wiki/The_Machine_Stops", "indices": [63, 86]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 02 17:07:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683333695307034625, "text": "Worth reading The Machine Stops, an old story by E. M. Forster https://t.co/0Dl4l2t6FH", "coordinates": null, "retweeted": false, "favorite_count": 3002, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 44196397, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", "statuses_count": 1513, "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1354486475", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14623181", "following": false, "friends_count": 505, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kelly-dunn.me", "url": "http://t.co/AeKQOTxEx8", "expanded_url": "http://kelly-dunn.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 490, "location": "Seattle", "screen_name": "kellyleland", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "kelly", "profile_use_background_image": true, "description": "Synthesizers, Various Engineering, and Avant Garde Nonsense | bit cruncher by trade, artist after hours", "url": "http://t.co/AeKQOTxEx8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri May 02 06:41:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", "favourites_count": 8251, "status": {"retweet_count": 9663, "retweeted_status": {"retweet_count": 9663, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685188701907988480", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 245, "resize": "fit"}, "large": {"w": 1024, "h": 739, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 433, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "type": "photo", "indices": [77, 100], "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "display_url": "pic.twitter.com/pEaIfJMr9T", "id_str": "685188690730192896", "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", "id": 685188690730192896, "url": "https://t.co/pEaIfJMr9T"}], "symbols": [], "urls": [{"display_url": "bit.ly/1Jx7CnA", "url": "https://t.co/SxHo05b7Yz", "expanded_url": "http://bit.ly/1Jx7CnA", "indices": [53, 76]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 19:58:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685188701907988480, "text": "The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", "coordinates": null, "retweeted": false, "favorite_count": 8474, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685198486355095552", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 245, "resize": "fit"}, "large": {"w": 1024, "h": 739, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 433, "resize": "fit"}}, "source_status_id_str": "685188701907988480", "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "source_user_id_str": "1630896181", "id_str": "685188690730192896", "id": 685188690730192896, "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "type": "photo", "indices": [91, 114], "source_status_id": 685188701907988480, "source_user_id": 1630896181, "display_url": "pic.twitter.com/pEaIfJMr9T", "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", "url": "https://t.co/pEaIfJMr9T"}], "symbols": [], "urls": [{"display_url": "bit.ly/1Jx7CnA", "url": "https://t.co/SxHo05b7Yz", "expanded_url": "http://bit.ly/1Jx7CnA", "indices": [67, 90]}], "hashtags": [], "user_mentions": [{"screen_name": "vicenews", "id_str": "1630896181", "id": 1630896181, "indices": [3, 12], "name": "VICE News"}]}, "created_at": "Thu Jan 07 20:37:04 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685198486355095552, "text": "RT @vicenews: The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14623181, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 14314, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623181/1421113433", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "995848285", "following": false, "friends_count": 90, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nginx.com", "url": "http://t.co/ahz848qfrm", "expanded_url": "http://nginx.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 24532, "location": "San Francisco", "screen_name": "nginx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 452, "name": "NGINX, Inc.", "profile_use_background_image": true, "description": "News from NGINX, Inc., the company providing products and services on top of its renowned open source software nginx. For news about NGINX check @nginxorg", "url": "http://t.co/ahz848qfrm", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Dec 07 20:50:31 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", "favourites_count": 451, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685570724019453952", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1K3bA2i", "url": "https://t.co/mUGlFylkrn", "expanded_url": "http://bit.ly/1K3bA2i", "indices": [85, 108]}], "hashtags": [{"text": "software", "indices": [33, 42]}], "user_mentions": [{"screen_name": "InformationAge", "id_str": "19603444", "id": 19603444, "indices": [113, 128], "name": "Information Age"}]}, "created_at": "Fri Jan 08 21:16:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685570724019453952, "text": "Everything old is new again: how #software development will come full circle in 2016 https://t.co/mUGlFylkrn via @InformationAge", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 995848285, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", "statuses_count": 1960, "profile_banner_url": "https://pbs.twimg.com/profile_banners/995848285/1443504328", "is_translator": false}, {"time_zone": "Nairobi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 10800, "id_str": "2975078105", "following": false, "friends_count": 12, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iojs.org", "url": "https://t.co/25rC8pIJ21", "expanded_url": "https://iojs.org/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 13924, "location": "Global", "screen_name": "official_iojs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 414, "name": "io.js", "profile_use_background_image": true, "description": "Bringing ES6 to the Node Community!", "url": "https://t.co/25rC8pIJ21", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jan 12 18:18:27 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", "favourites_count": 1167, "status": {"retweet_count": 26, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "656505348208001025", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/nodejs/evangel\u2026", "url": "https://t.co/pE0BDmhyAq", "expanded_url": "https://github.com/nodejs/evangelism/issues/179", "indices": [20, 43]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Oct 20 16:20:46 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 656505348208001025, "text": "Here we go again ;) https://t.co/pE0BDmhyAq", "coordinates": null, "retweeted": false, "favorite_count": 22, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2975078105, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 341, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2975078105/1426190219", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "30923", "following": false, "friends_count": 744, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "randsinrepose.com", "url": "http://t.co/wHTKjCyuT3", "expanded_url": "http://www.randsinrepose.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 35290, "location": "los gatos, ca", "screen_name": "rands", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2264, "name": "rands", "profile_use_background_image": true, "description": "reposing about werewolves, pens, and writing.", "url": "http://t.co/wHTKjCyuT3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", "profile_background_color": "022330", "created_at": "Wed Nov 29 19:16:11 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", "favourites_count": 154, "status": {"retweet_count": 40, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685550447717789696", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/briankesinger/", "url": "https://t.co/fMDwiiT2kx", "expanded_url": "https://www.instagram.com/briankesinger/", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:55:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685550447717789696, "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", "coordinates": null, "retweeted": false, "favorite_count": 30, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 30923, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 11655, "profile_banner_url": "https://pbs.twimg.com/profile_banners/30923/1442198088", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "7387992", "following": false, "friends_count": 194, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "justincampbell.me", "url": "https://t.co/oY5xbJv61R", "expanded_url": "http://justincampbell.me", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2634657/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "028E9B", "geo_enabled": true, "followers_count": 952, "location": "Philadelphia, PA", "screen_name": "justincampbell", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 52, "name": "Justin Campbell", "profile_use_background_image": true, "description": "@hashicorp @turingcool @cs_bookclub @sc_philly @paperswelovephl", "url": "https://t.co/oY5xbJv61R", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", "profile_background_color": "FF7700", "created_at": "Wed Jul 11 00:40:57 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "028E9B", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", "favourites_count": 2238, "status": {"in_reply_to_status_id": 684900893997821952, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-80.519851, 39.719801], [-74.689517, 39.719801], [-74.689517, 42.516072], [-80.519851, 42.516072]]], "type": "Polygon"}, "full_name": "Pennsylvania, USA", "contained_within": [], "country_code": "US", "id": "dd9c503d6c35364b", "name": "Pennsylvania"}, "in_reply_to_screen_name": "McElaney", "in_reply_to_user_id": 249150277, "in_reply_to_status_id_str": "684900893997821952", "in_reply_to_user_id_str": "249150277", "truncated": false, "id_str": "684901313788948480", "id": 684901313788948480, "text": "@McElaney Slack \u261c(\uff9f\u30ee\uff9f\u261c)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "McElaney", "id_str": "249150277", "id": 249150277, "indices": [0, 9], "name": "Brian E. McElaney"}]}, "created_at": "Thu Jan 07 00:56:12 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "ja"}, "default_profile_image": false, "id": 7387992, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2634657/bg.gif", "statuses_count": 8351, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7387992/1433941401", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "778518", "following": false, "friends_count": 397, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "progrium.com", "url": "http://t.co/PviVbZYkA3", "expanded_url": "http://progrium.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 6415, "location": "Austin, TX", "screen_name": "progrium", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 357, "name": "Jeff Lindsay", "profile_use_background_image": true, "description": "Systems. Metal. Platforms. Design. Creator: Dokku, Webhooks, RequestBin, Hacker Dojo, Localtunnel, SuperHappyDevHouse. Founder: @gliderlabs", "url": "http://t.co/PviVbZYkA3", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Sun Feb 18 09:41:22 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", "favourites_count": 1488, "status": {"in_reply_to_status_id": 685543834588033024, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "biphenyl", "in_reply_to_user_id": 11772912, "in_reply_to_status_id_str": "685543834588033024", "in_reply_to_user_id_str": "11772912", "truncated": false, "id_str": "685543988443516928", "id": 685543988443516928, "text": "@biphenyl you're not Slacking enough", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "biphenyl", "id_str": "11772912", "id": 11772912, "indices": [0, 9], "name": "Matt Mechtley"}]}, "created_at": "Fri Jan 08 19:29:58 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 778518, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 11528, "profile_banner_url": "https://pbs.twimg.com/profile_banners/778518/1439089812", "is_translator": false}, {"time_zone": "Buenos Aires", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "77909615", "following": false, "friends_count": 2319, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tryolabs.com", "url": "https://t.co/yDkqOVMoPH", "expanded_url": "http://www.tryolabs.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 11880, "location": "San Francisco | Uruguay", "screen_name": "tryolabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 376, "name": "Tryolabs", "profile_use_background_image": true, "description": "Hi-tech Boutique Dev Shop focused on SV & NYC Startups. Python ecosystem, JS, iOS, NLP & Machine Learning specialists. Creators of @MonkeyLearn.", "url": "https://t.co/yDkqOVMoPH", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Sep 28 03:09:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", "favourites_count": 20614, "status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685579492614631428", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 96, "resize": "fit"}, "large": {"w": 800, "h": 226, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 169, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", "display_url": "pic.twitter.com/Fk3brZmoTf", "id_str": "685579492513955840", "expanded_url": "http://twitter.com/tryolabs/status/685579492614631428/photo/1", "id": 685579492513955840, "url": "https://t.co/Fk3brZmoTf"}], "symbols": [], "urls": [{"display_url": "buff.ly/1ZfpACc", "url": "https://t.co/VNzbh6CpJA", "expanded_url": "http://buff.ly/1ZfpACc", "indices": [67, 90]}], "hashtags": [{"text": "MachineLearning", "indices": [43, 59]}], "user_mentions": [{"screen_name": "genekogan", "id_str": "51757957", "id": 51757957, "indices": [94, 104], "name": "Gene Kogan"}]}, "created_at": "Fri Jan 08 21:51:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685579492614631428, "text": "Very interesting & engaging article on #MachineLearning + Art: https://t.co/VNzbh6CpJA by @genekogan https://t.co/Fk3brZmoTf", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 77909615, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", "statuses_count": 1400, "profile_banner_url": "https://pbs.twimg.com/profile_banners/77909615/1437011861", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "111767172", "following": false, "friends_count": 70, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 313, "location": "Philadelphia, PA", "screen_name": "nick_kapur", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Nick Kapur", "profile_use_background_image": true, "description": "Historian of modern Japan and East Asia. I only tweet extremely interesting things. No photos of my lunch and no selfies, not ever.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Feb 06 02:34:40 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", "favourites_count": 6736, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685494137613754368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/LIJdheem1h", "url": "https://t.co/LIJdheem1h", "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", "indices": [12, 35]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:11:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685494137613754368, "text": "i love cats https://t.co/LIJdheem1h", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685519035979677696", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/LIJdheem1h", "url": "https://t.co/LIJdheem1h", "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", "indices": [25, 48]}], "hashtags": [], "user_mentions": [{"screen_name": "on3ness", "id_str": "124548700", "id": 124548700, "indices": [3, 11], "name": "br\u00f8seph"}]}, "created_at": "Fri Jan 08 17:50:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685519035979677696, "text": "RT @on3ness: i love cats https://t.co/LIJdheem1h", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 111767172, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4392, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14247654", "following": false, "friends_count": 5000, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "contino.co.uk", "url": "http://t.co/7ioXHyid9F", "expanded_url": "http://www.contino.co.uk", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2528, "location": "London, UK", "screen_name": "benjaminwootton", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 141, "name": "Benjamin Wootton", "profile_use_background_image": true, "description": "Co-Founder of Contino, a DevOps & Continuous Delivery consultancy from the UK", "url": "http://t.co/7ioXHyid9F", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", "profile_background_color": "022330", "created_at": "Fri Mar 28 22:44:56 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", "favourites_count": 1063, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683332087588503552", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 270, "h": 200, "resize": "fit"}, "medium": {"w": 270, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 270, "h": 200, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "type": "photo", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "display_url": "pic.twitter.com/DabsPkV0tE", "id_str": "683332087483641857", "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", "id": 683332087483641857, "url": "https://t.co/DabsPkV0tE"}], "symbols": [], "urls": [{"display_url": "buff.ly/1RzZhSD", "url": "https://t.co/qLPUnqP9Ly", "expanded_url": "http://buff.ly/1RzZhSD", "indices": [93, 116]}], "hashtags": [{"text": "DevOps", "indices": [30, 37]}], "user_mentions": [{"screen_name": "paul", "id_str": "1140", "id": 1140, "indices": [86, 91], "name": "Paul Rollo"}]}, "created_at": "Sat Jan 02 17:00:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683332087588503552, "text": "\"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly https://t.co/DabsPkV0tE", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685368907327270912", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 270, "h": 200, "resize": "fit"}, "medium": {"w": 270, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 270, "h": 200, "resize": "fit"}}, "source_status_id_str": "683332087588503552", "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "source_user_id_str": "398365705", "id_str": "683332087483641857", "id": 683332087483641857, "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 683332087588503552, "source_user_id": 398365705, "display_url": "pic.twitter.com/DabsPkV0tE", "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", "url": "https://t.co/DabsPkV0tE"}], "symbols": [], "urls": [{"display_url": "buff.ly/1RzZhSD", "url": "https://t.co/qLPUnqP9Ly", "expanded_url": "http://buff.ly/1RzZhSD", "indices": [111, 134]}], "hashtags": [{"text": "DevOps", "indices": [48, 55]}], "user_mentions": [{"screen_name": "manupaisable", "id_str": "398365705", "id": 398365705, "indices": [3, 16], "name": "Manuel Pais"}, {"screen_name": "paul", "id_str": "1140", "id": 1140, "indices": [104, 109], "name": "Paul Rollo"}]}, "created_at": "Fri Jan 08 07:54:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685368907327270912, "text": "RT @manupaisable: \"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly http\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 14247654, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2827, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "35242212", "following": false, "friends_count": 201, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 95, "location": "Boston, MA", "screen_name": "macdiesel412", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Brian Beggs", "profile_use_background_image": false, "description": "I write software and think BIG. XMPP, MongoDB, NoSQL, Data Analytics, cycling, skiing, edX", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", "profile_background_color": "000000", "created_at": "Sat Apr 25 16:00:27 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", "favourites_count": 23, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Expedia", "in_reply_to_user_id": 17365848, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "17365848", "truncated": false, "id_str": "677166680196390913", "id": 677166680196390913, "text": "@Expedia Now your support hung up on me, won't let me change flight. What gives? This service is awful!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Expedia", "id_str": "17365848", "id": 17365848, "indices": [0, 8], "name": "Expedia"}]}, "created_at": "Wed Dec 16 16:41:32 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 35242212, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 420, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14961286", "following": false, "friends_count": 948, "entities": {"description": {"urls": [{"display_url": "erinjorichey.com", "url": "https://t.co/bUIMCWrbnW", "expanded_url": "http://erinjorichey.com", "indices": [121, 144]}]}, "url": {"urls": [{"display_url": "erinjo.xyz", "url": "https://t.co/zWMM8cNTsz", "expanded_url": "http://erinjo.xyz", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", "notifications": false, "profile_sidebar_fill_color": "E4DACE", "profile_link_color": "DB2E2E", "geo_enabled": true, "followers_count": 2265, "location": "San Francisco, CA", "screen_name": "erinjo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 270, "name": "Erin Jo Richey", "profile_use_background_image": true, "description": "Co-founder of @withknown. Information choreographer. User experience strategist. Oregonian. Building an open social web. https://t.co/bUIMCWrbnW", "url": "https://t.co/zWMM8cNTsz", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", "profile_background_color": "FCFCFC", "created_at": "Sat May 31 06:45:28 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", "favourites_count": 723, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684958057806180352", "id": 684958057806180352, "text": "Walking home from the grocery store just now and got pummeled by small hail. \ud83c\udf27\u2614\ufe0f", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 04:41:41 +0000 2016", "source": "Erin's Idno", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14961286, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", "statuses_count": 8880, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14961286/1399013710", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "258924364", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyetconf.com", "url": "http://t.co/8cCQxfuIhl", "expanded_url": "http://andyetconf.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/285931472/patternpants.png", "notifications": false, "profile_sidebar_fill_color": "EBEBEB", "profile_link_color": "0099B0", "geo_enabled": false, "followers_count": 1258, "location": "October 6\u20138 in Richland, WA", "screen_name": "AndyetConf", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 87, "name": "&yetConf", "profile_use_background_image": true, "description": "Conf about the intersections of tech, humanity, meaning, & ethics for people who believe the world should be better and are determined to make it so.\n\n\u2014@andyet", "url": "http://t.co/8cCQxfuIhl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", "profile_background_color": "202020", "created_at": "Mon Feb 28 20:09:25 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "757575", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", "favourites_count": 824, "status": {"in_reply_to_status_id": 684082741512515584, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mmatuzak", "in_reply_to_user_id": 10749432, "in_reply_to_status_id_str": "684082741512515584", "in_reply_to_user_id_str": "10749432", "truncated": false, "id_str": "684084002504900608", "id": 684084002504900608, "text": "@mmatuzak @obensource Yay @ADVUnderground!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mmatuzak", "id_str": "10749432", "id": 10749432, "indices": [0, 9], "name": "matuzi"}, {"screen_name": "obensource", "id_str": "407296703", "id": 407296703, "indices": [10, 21], "name": "Ben Michel"}, {"screen_name": "ADVUnderground", "id_str": "2149984081", "id": 2149984081, "indices": [26, 41], "name": "ADV Underground"}]}, "created_at": "Mon Jan 04 18:48:30 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 258924364, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/285931472/patternpants.png", "statuses_count": 1505, "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "153026017", "following": false, "friends_count": 108, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/paulohp", "url": "https://t.co/TH0JsQaz8h", "expanded_url": "http://github.com/paulohp", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", "notifications": false, "profile_sidebar_fill_color": "FCA241", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 418, "location": "Belo Horizonte, Brazil", "screen_name": "paulo_hp", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 19, "name": "Paulo Pires (\u2310\u25a0_\u25a0)", "profile_use_background_image": true, "description": "programmer. @bower team member. hacking listening sertanejo.", "url": "https://t.co/TH0JsQaz8h", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", "profile_background_color": "BCCDD6", "created_at": "Mon Jun 07 14:00:10 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "pt", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", "favourites_count": 562, "status": {"in_reply_to_status_id": 685272876338032640, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "rodrigo_ea", "in_reply_to_user_id": 55245797, "in_reply_to_status_id_str": "685272876338032640", "in_reply_to_user_id_str": "55245797", "truncated": false, "id_str": "685276627618689024", "id": 685276627618689024, "text": "@rodrigo_ea @ray_ban \u00e9, o customizado :\\ mas o mais triste \u00e9 a falta de comunica\u00e7\u00e3o mesmo. Sabe como \u00e9 n\u00e9.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "rodrigo_ea", "id_str": "55245797", "id": 55245797, "indices": [0, 11], "name": "Rodrigo Antinarelli"}, {"screen_name": "ray_ban", "id_str": "234264720", "id": 234264720, "indices": [12, 20], "name": "Ray-Ban"}]}, "created_at": "Fri Jan 08 01:47:34 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "pt"}, "default_profile_image": false, "id": 153026017, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", "statuses_count": 5668, "profile_banner_url": "https://pbs.twimg.com/profile_banners/153026017/1433120246", "is_translator": false}, {"time_zone": "Lisbon", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "6477652", "following": false, "friends_count": 807, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "trodrigues.net", "url": "https://t.co/MEu7qSJfMY", "expanded_url": "http://trodrigues.net", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": false, "followers_count": 1919, "location": "Berlin", "screen_name": "trodrigues", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 126, "name": "Tiago Rodrigues", "profile_use_background_image": false, "description": "I tweet about things you might not like such as JS, feminism, music, coffee, open source, cats and video games. Semicolon removal expert at Contentful", "url": "https://t.co/MEu7qSJfMY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Thu May 31 17:09:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", "favourites_count": 1086, "status": {"in_reply_to_status_id": 685501356732510208, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "marciana", "in_reply_to_user_id": 1813001, "in_reply_to_status_id_str": "685501356732510208", "in_reply_to_user_id_str": "1813001", "truncated": false, "id_str": "685502766173843456", "id": 685502766173843456, "text": "@marciana tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a v", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "marciana", "id_str": "1813001", "id": 1813001, "indices": [0, 9], "name": "Irrita"}]}, "created_at": "Fri Jan 08 16:46:10 +0000 2016", "source": "Fenix for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "pt"}, "default_profile_image": false, "id": 6477652, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 68450, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6477652/1410026369", "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "10840182", "following": false, "friends_count": 88, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mundoopensource.com.br", "url": "http://t.co/AyVbZvEevz", "expanded_url": "http://www.mundoopensource.com.br", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 220, "location": "Canoas, RS", "screen_name": "mhterres", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Marcelo Terres", "profile_use_background_image": true, "description": "Sysadmin Linux, com foco em VoIP e XMPP, f\u00e3 de comics, apreciador de uma boa cerveja e metido a cozinheiro e homebrewer nas horas vagas ;-)", "url": "http://t.co/AyVbZvEevz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 04 15:18:08 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "pt", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", "favourites_count": 11, "status": {"retweet_count": 18, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 18, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684096178456236032", "id": 684096178456236032, "text": "Happy 17th birthday, Jabber! #xmpp", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "xmpp", "indices": [29, 34]}], "user_mentions": []}, "created_at": "Mon Jan 04 19:36:53 +0000 2016", "source": "Twitter Web Client", "favorite_count": 17, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "684112189297393665", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "xmpp", "indices": [41, 46]}], "user_mentions": [{"screen_name": "ralphm", "id_str": "2426271", "id": 2426271, "indices": [3, 10], "name": "Ralph Meijer"}]}, "created_at": "Mon Jan 04 20:40:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684112189297393665, "text": "RT @ralphm: Happy 17th birthday, Jabber! #xmpp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 10840182, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3011, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10840182/1448740364", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "2557527470", "following": false, "friends_count": 462, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "opensource.cisco.com", "url": "https://t.co/XHlFibsKyg", "expanded_url": "http://opensource.cisco.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 1022, "location": "", "screen_name": "TrailsAndTech", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 50, "name": "Jen Hollingsworth", "profile_use_background_image": false, "description": "SW Strategy @ Cisco. Lover of: Tech, #OpenSource, Cloud Stuff, Passionate People & the Outdoors. Haven't met a trail, #CarboPro product or taco I didn't like.", "url": "https://t.co/XHlFibsKyg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Jun 09 21:07:05 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", "favourites_count": 2178, "status": {"in_reply_to_status_id": 685554373628424192, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "vCloudernBeer", "in_reply_to_user_id": 830411028, "in_reply_to_status_id_str": "685554373628424192", "in_reply_to_user_id_str": "830411028", "truncated": false, "id_str": "685560135716966400", "id": 685560135716966400, "text": "@vCloudernBeer YES!!!! :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "vCloudernBeer", "id_str": "830411028", "id": 830411028, "indices": [0, 14], "name": "Anthony Chow"}]}, "created_at": "Fri Jan 08 20:34:08 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 2557527470, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1371, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2557527470/1405046981", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "227050193", "following": false, "friends_count": 524, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "withknown.com", "url": "http://t.co/qDJMKyeC7F", "expanded_url": "http://withknown.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "9F111A", "geo_enabled": false, "followers_count": 1412, "location": "San Francisco, CA", "screen_name": "withknown", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 83, "name": "Known", "profile_use_background_image": false, "description": "Publish on your own site, and share with audiences across the web. Part of @mattervc's third class. #indieweb #reclaimyourdomain", "url": "http://t.co/qDJMKyeC7F", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", "profile_background_color": "880000", "created_at": "Wed Dec 15 19:45:51 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "880000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", "favourites_count": 558, "status": {"in_reply_to_status_id": 685557584527376384, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "AngeloFrangione", "in_reply_to_user_id": 334592526, "in_reply_to_status_id_str": "685557584527376384", "in_reply_to_user_id_str": "334592526", "truncated": false, "id_str": "685610856613216256", "id": 685610856613216256, "text": "@AngeloFrangione We're working on integrating a translation framework. We want everyone to be able to use Known!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AngeloFrangione", "id_str": "334592526", "id": 334592526, "indices": [0, 16], "name": "Angelo"}]}, "created_at": "Fri Jan 08 23:55:40 +0000 2016", "source": "Known Stream", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 227050193, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1070, "profile_banner_url": "https://pbs.twimg.com/profile_banners/227050193/1423650405", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "981101", "following": false, "friends_count": 2074, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bengo.is", "url": "https://t.co/d3tx42Owqt", "expanded_url": "http://bengo.is", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", "notifications": false, "profile_sidebar_fill_color": "333333", "profile_link_color": "18ADF6", "geo_enabled": true, "followers_count": 1033, "location": "San Francisco, CA", "screen_name": "bengo", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 81, "name": "Benjamin Goering", "profile_use_background_image": true, "description": "Founding Engineer @Livefyre. Open. Stoic Situationist. \u2665 reading, philosophy, open web, (un)logic, AI, sports, and edm. Kansan gone Cali.", "url": "https://t.co/d3tx42Owqt", "profile_text_color": "636363", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", "profile_background_color": "CCCCCC", "created_at": "Mon Mar 12 03:55:06 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", "favourites_count": 964, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685580750448508928", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 600, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", "type": "photo", "indices": [84, 107], "media_url": "http://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", "display_url": "pic.twitter.com/LTYVklmUyg", "id_str": "685580750377205760", "expanded_url": "http://twitter.com/bengo/status/685580750448508928/photo/1", "id": 685580750377205760, "url": "https://t.co/LTYVklmUyg"}], "symbols": [], "urls": [{"display_url": "itun.es/us/0CoK2.c?i=3\u2026", "url": "https://t.co/zQ3UB0Dhiy", "expanded_url": "https://itun.es/us/0CoK2.c?i=359766164", "indices": [29, 52]}], "hashtags": [], "user_mentions": [{"screen_name": "thenewstack", "id_str": "2327560616", "id": 2327560616, "indices": [71, 83], "name": "The New Stack"}]}, "created_at": "Fri Jan 08 21:56:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685580750448508928, "text": "Check out this cool episode: https://t.co/zQ3UB0Dhiy \"Keep Node Weird\" @thenewstack https://t.co/LTYVklmUyg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 981101, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", "statuses_count": 5799, "profile_banner_url": "https://pbs.twimg.com/profile_banners/981101/1353910636", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "321162442", "following": false, "friends_count": 143, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 26, "location": "", "screen_name": "mattyindustries", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Mathew Archibald", "profile_use_background_image": true, "description": "Linux Sysadmin at Toyota Australia", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 21 03:43:14 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", "favourites_count": 44, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "EtihadStadiumAU", "in_reply_to_user_id": 152837019, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "152837019", "truncated": false, "id_str": "630298486664097793", "id": 630298486664097793, "text": "@EtihadStadiumAU kick to kick still on after #AFLSaintsFreo?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "AFLSaintsFreo", "indices": [45, 59]}], "user_mentions": [{"screen_name": "EtihadStadiumAU", "id_str": "152837019", "id": 152837019, "indices": [0, 16], "name": "Etihad Stadium"}]}, "created_at": "Sun Aug 09 08:44:04 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 321162442, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 39, "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "2402568709", "following": false, "friends_count": 17541, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "reeldx.com", "url": "http://t.co/GqPJuzOYMV", "expanded_url": "http://www.reeldx.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 21103, "location": "Vancouver, WA", "screen_name": "andrewreeldx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 518, "name": "Andrew Richards", "profile_use_background_image": true, "description": "Co-Founder & CTO @ ReelDx, Technologist, Brewer, Runner, Coder", "url": "http://t.co/GqPJuzOYMV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Mar 22 03:27:50 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", "favourites_count": 2991, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609079771774976", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/cancergeek/sta\u2026", "url": "https://t.co/tWEoIh9Mwi", "expanded_url": "https://twitter.com/cancergeek/status/685571019667423232", "indices": [42, 65]}], "hashtags": [{"text": "jpm16", "indices": [34, 40]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:48:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609079771774976, "text": "Liberate data? That's how we roll #jpm16 https://t.co/tWEoIh9Mwi", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2402568709, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3400, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2402568709/1411424123", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14110325", "following": false, "friends_count": 1108, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "soundcloud.com/jay-holler", "url": "https://t.co/Dn5Q3Kk7jo", "expanded_url": "https://soundcloud.com/jay-holler", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "89C9FA", "geo_enabled": true, "followers_count": 1108, "location": "California, USA", "screen_name": "jayholler", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Jay Holler", "profile_use_background_image": false, "description": "Eventually Sol will expand to consume everything anyone has ever known, created, or recorded.", "url": "https://t.co/Dn5Q3Kk7jo", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", "profile_background_color": "1A1B1F", "created_at": "Mon Mar 10 00:14:55 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", "favourites_count": 17299, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685611207588315136", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/wilkieii/statu\u2026", "url": "https://t.co/McoC7g0Cbf", "expanded_url": "https://twitter.com/wilkieii/status/667847111929655296", "indices": [10, 33]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:57:04 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685611207588315136, "text": "I Lol';ed https://t.co/McoC7g0Cbf", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 14110325, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", "statuses_count": 33898, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14110325/1452192763", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "126030998", "following": false, "friends_count": 542, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "0xabad1dea.github.io", "url": "https://t.co/cZmmxZ39G9", "expanded_url": "http://0xabad1dea.github.io/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 20122, "location": "@veracode", "screen_name": "0xabad1dea", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 876, "name": "Melissa \u2407 \u2b50\ufe0f", "profile_use_background_image": true, "description": "Infosec supervillain, insufferable SJW, and twitter witch whose very name causes systems to crash. Fortune favors those who do the math. she/her; I \u2666\ufe0f @m1sp.", "url": "https://t.co/cZmmxZ39G9", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Mar 24 16:31:05 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", "favourites_count": 2961, "status": {"in_reply_to_status_id": 685584975370956800, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "WhiteMageSlave", "in_reply_to_user_id": 90791634, "in_reply_to_status_id_str": "685584975370956800", "in_reply_to_user_id_str": "90791634", "truncated": false, "id_str": "685585721063792641", "id": 685585721063792641, "text": "@WhiteMageSlave I went with Percy because I don't like him, after considering \"Evil Ron\" (I know nothing except they're a redhead)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "WhiteMageSlave", "id_str": "90791634", "id": 90791634, "indices": [0, 15], "name": "Tam"}]}, "created_at": "Fri Jan 08 22:15:48 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 126030998, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", "statuses_count": 133954, "profile_banner_url": "https://pbs.twimg.com/profile_banners/126030998/1348018700", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "24718762", "following": false, "friends_count": 387, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": false, "followers_count": 268, "location": "", "screen_name": "unixgeekem", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 26, "name": "Emily Gladstone Cole", "profile_use_background_image": true, "description": "UNIX and Security Admin, baseball fan, singer, dancer, actor, voracious reader, student. Opinions are my own and not my employer's.", "url": null, "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Mon Mar 16 16:23:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", "favourites_count": 1739, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685593188971642880", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/RobotHugsComic\u2026", "url": "https://t.co/SbF9JovOfO", "expanded_url": "https://twitter.com/RobotHugsComic/status/674961985059074048", "indices": [6, 29]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:45:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593188971642880, "text": "This. https://t.co/SbF9JovOfO", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 24718762, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 2163, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24718762/1364947598", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14071087", "following": false, "friends_count": 1254, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", "notifications": false, "profile_sidebar_fill_color": "C9E6A3", "profile_link_color": "C200E0", "geo_enabled": true, "followers_count": 375, "location": "New York, NY", "screen_name": "ineverthink", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "Chris Handy", "profile_use_background_image": true, "description": "Devops, Systems thinker, not just technical. Works at @workmarket, formerly @condenast", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", "profile_background_color": "8A698A", "created_at": "Mon Mar 03 03:50:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "6A0B8A", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", "favourites_count": 492, "status": {"in_reply_to_status_id": 685106932512854016, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "skamille", "in_reply_to_user_id": 24257941, "in_reply_to_status_id_str": "685106932512854016", "in_reply_to_user_id_str": "24257941", "truncated": false, "id_str": "685169500887629824", "id": 685169500887629824, "text": "@skamille might want to look into @WorkMarket", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "skamille", "id_str": "24257941", "id": 24257941, "indices": [0, 9], "name": "Camille Fournier"}, {"screen_name": "WorkMarket", "id_str": "154696373", "id": 154696373, "indices": [34, 45], "name": "Work Market"}]}, "created_at": "Thu Jan 07 18:41:53 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14071087, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", "statuses_count": 2151, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1164839209", "following": false, "friends_count": 2, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nodesecurity.io", "url": "https://t.co/McA4uRwQAL", "expanded_url": "http://nodesecurity.io", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 6917, "location": "", "screen_name": "nodesecurity", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 295, "name": "Node.js Security", "profile_use_background_image": true, "description": "Advisories, news & libraries focused on Node.js security - Sponsored by @andyet, Organized by @liftsecurity", "url": "https://t.co/McA4uRwQAL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Feb 10 03:43:44 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", "favourites_count": 104, "status": {"in_reply_to_status_id": 685190823084986369, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mountain_ghosts", "in_reply_to_user_id": 13861042, "in_reply_to_status_id_str": "685190823084986369", "in_reply_to_user_id_str": "13861042", "truncated": false, "id_str": "685191592567701504", "id": 685191592567701504, "text": "@mountain_ghosts @3rdeden We added the information we received to the top of the advisory. See the linked gist.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mountain_ghosts", "id_str": "13861042", "id": 13861042, "indices": [0, 16], "name": "\u2200a: \u223c Sa = 0"}, {"screen_name": "3rdEden", "id_str": "14350255", "id": 14350255, "indices": [17, 25], "name": "Arnout Kazemier"}]}, "created_at": "Thu Jan 07 20:09:40 +0000 2016", "source": "Twitter for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1164839209, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 356, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2883370235", "following": false, "friends_count": 5040, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bit.ly/11hQZa8", "url": "http://t.co/waaWKCIqia", "expanded_url": "http://bit.ly/11hQZa8", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7768, "location": "", "screen_name": "NodeJSRR", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 113, "name": "Node JS", "profile_use_background_image": true, "description": "Live Content Curated by top Node JS Influencers. Moderated by @hardeepmonty.", "url": "http://t.co/waaWKCIqia", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Nov 19 00:20:03 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", "favourites_count": 11, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685542023986712576", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "rightrelevance.com/search/article\u2026", "url": "https://t.co/EL03TjDFyo", "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=3a72295be2881af33fce57960cfd5f2e09ee9233&query=node%20js&taccount=nodejsrr", "indices": [99, 122]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:22:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685542023986712576, "text": "Why Node.js is Ideal for the Internet of Things - AngularJS News - AngularJS News - AngularJS News https://t.co/EL03TjDFyo", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "RRPostingApp"}, "default_profile_image": false, "id": 2883370235, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3310, "is_translator": false}, {"time_zone": "Wellington", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "136933779", "following": false, "friends_count": 360, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dominictarr.com", "url": "http://t.co/dLMAgM9U90", "expanded_url": "http://dominictarr.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "404099", "geo_enabled": true, "followers_count": 3915, "location": "Planet Earth", "screen_name": "dominictarr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 229, "name": "Dominic Tarr", "profile_use_background_image": false, "description": "opinioneer", "url": "http://t.co/dLMAgM9U90", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", "profile_background_color": "F0F0F0", "created_at": "Sun Apr 25 09:11:58 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", "favourites_count": 1513, "status": {"retweet_count": 0, "in_reply_to_user_id": 12241752, "possibly_sensitive": false, "id_str": "683456176609083392", "in_reply_to_user_id_str": "12241752", "entities": {"symbols": [], "urls": [{"display_url": "github.com/maxogden/dat/w\u2026", "url": "https://t.co/qxj2MAOd76", "expanded_url": "https://github.com/maxogden/dat/wiki/replication-protocols#couchdb", "indices": [66, 89]}], "hashtags": [], "user_mentions": [{"screen_name": "denormalize", "id_str": "12241752", "id": 12241752, "indices": [0, 12], "name": "maxwell ogden"}]}, "created_at": "Sun Jan 03 01:13:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "denormalize", "in_reply_to_status_id_str": null, "truncated": false, "id": 683456176609083392, "text": "@denormalize hey I added some stuff to your data replication wiki\nhttps://t.co/qxj2MAOd76", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 136933779, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6487, "profile_banner_url": "https://pbs.twimg.com/profile_banners/136933779/1435856217", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "113419064", "following": false, "friends_count": 18, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "golang.org", "url": "http://t.co/C4svVTkUmj", "expanded_url": "http://golang.org/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 36532, "location": "", "screen_name": "golang", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1020, "name": "Go", "profile_use_background_image": true, "description": "Go will make you love programming again. I promise.", "url": "http://t.co/C4svVTkUmj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Feb 11 18:04:38 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", "favourites_count": 203, "status": {"retweet_count": 110, "retweeted_status": {"retweet_count": 110, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677646473484509186", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 428, "resize": "fit"}, "medium": {"w": 600, "h": 250, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 142, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "type": "photo", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "display_url": "pic.twitter.com/F5t4jUEiRX", "id_str": "677646437056978944", "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", "id": 677646437056978944, "url": "https://t.co/F5t4jUEiRX"}], "symbols": [], "urls": [], "hashtags": [{"text": "golang", "indices": [94, 101]}], "user_mentions": []}, "created_at": "Fri Dec 18 00:28:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677646473484509186, "text": "Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", "coordinates": null, "retweeted": false, "favorite_count": 124, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677681669638373376", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 428, "resize": "fit"}, "medium": {"w": 600, "h": 250, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 142, "resize": "fit"}}, "source_status_id_str": "677646473484509186", "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "source_user_id_str": "650013", "id_str": "677646437056978944", "id": 677646437056978944, "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "type": "photo", "indices": [116, 139], "source_status_id": 677646473484509186, "source_user_id": 650013, "display_url": "pic.twitter.com/F5t4jUEiRX", "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", "url": "https://t.co/F5t4jUEiRX"}], "symbols": [], "urls": [], "hashtags": [{"text": "golang", "indices": [108, 115]}], "user_mentions": [{"screen_name": "bradfitz", "id_str": "650013", "id": 650013, "indices": [3, 12], "name": "Brad Fitzpatrick"}]}, "created_at": "Fri Dec 18 02:47:55 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677681669638373376, "text": "RT @bradfitz: Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 113419064, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1931, "profile_banner_url": "https://pbs.twimg.com/profile_banners/113419064/1398369112", "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "114477539", "following": false, "friends_count": 303, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dribbble.com/stephane_martin", "url": "http://t.co/2hbatAQEMF", "expanded_url": "http://dribbble.com/stephane_martin", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2980B9", "geo_enabled": false, "followers_count": 2981, "location": "France", "screen_name": "stephane_m_", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 115, "name": "St\u00e9phane Martin", "profile_use_background_image": false, "description": "Half human, half geek. Currently Sr product designer at @StackOverflow (former @efounders) I love getting things done, I believe in minimalism and wine.", "url": "http://t.co/2hbatAQEMF", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", "profile_background_color": "D7DCE0", "created_at": "Mon Feb 15 15:07:00 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", "favourites_count": 540, "status": {"retweet_count": 0, "in_reply_to_user_id": 16205746, "possibly_sensitive": false, "id_str": "685116838418722816", "in_reply_to_user_id_str": "16205746", "entities": {"media": [{"sizes": {"large": {"w": 230, "h": 319, "resize": "fit"}, "medium": {"w": 230, "h": 319, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 230, "h": 319, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", "type": "photo", "indices": [50, 73], "media_url": "http://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", "display_url": "pic.twitter.com/1CDvfNJ2it", "id_str": "685116837076582400", "expanded_url": "http://twitter.com/stephane_m_/status/685116838418722816/photo/1", "id": 685116837076582400, "url": "https://t.co/1CDvfNJ2it"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "alexlmiller", "id_str": "16205746", "id": 16205746, "indices": [0, 12], "name": "Alex Miller"}, {"screen_name": "hellohynes", "id_str": "14475889", "id": 14475889, "indices": [13, 24], "name": "Joshua Hynes"}]}, "created_at": "Thu Jan 07 15:12:37 +0000 2016", "favorited": false, "in_reply_to_status_id": 685111393784233984, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "alexlmiller", "in_reply_to_status_id_str": "685111393784233984", "truncated": false, "id": 685116838418722816, "text": "@alexlmiller @hellohynes Wasn't disappointed too: https://t.co/1CDvfNJ2it", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 114477539, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 994, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "138513072", "following": false, "friends_count": 54, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A6E6AC", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 40, "location": "Portland, OR", "screen_name": "cdaringe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Chris Dieringer", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", "profile_background_color": "329C40", "created_at": "Thu Apr 29 19:29:29 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "9FC2A3", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", "favourites_count": 49, "status": {"retweet_count": 0, "in_reply_to_user_id": 14278727, "possibly_sensitive": false, "id_str": "679054290430787584", "in_reply_to_user_id_str": "14278727", "entities": {"symbols": [], "urls": [{"display_url": "inkandfeet.com/how-to-use-a-g\u2026", "url": "https://t.co/CSfKwrPXIy", "expanded_url": "http://inkandfeet.com/how-to-use-a-generic-usb-20-10100m-ethernet-adaptor-rd9700-on-mac-os-1011-el-capitan", "indices": [21, 44]}, {"display_url": "realtek.com/DOWNLOADS/down\u2026", "url": "https://t.co/MXKy0tG3e9", "expanded_url": "http://www.realtek.com/DOWNLOADS/downloadsView.aspx?Langid=1&PNid=14&PFid=55&Level=5&Conn=4&DownTypeID=3&GetDown=false", "indices": [115, 138]}], "hashtags": [], "user_mentions": [{"screen_name": "skoczen", "id_str": "14278727", "id": 14278727, "indices": [0, 8], "name": "Steven Skoczen"}]}, "created_at": "Mon Dec 21 21:42:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "skoczen", "in_reply_to_status_id_str": null, "truncated": false, "id": 679054290430787584, "text": "@skoczen, in ref to https://t.co/CSfKwrPXIy, realtek released a new driver for el cap that requires no sys edits: https://t.co/MXKy0tG3e9", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 138513072, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 68, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "650013", "following": false, "friends_count": 542, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bradfitz.com", "url": "http://t.co/AjdAkBY0iG", "expanded_url": "http://bradfitz.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "BFA446", "geo_enabled": true, "followers_count": 17909, "location": "San Francisco, CA", "screen_name": "bradfitz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1003, "name": "Brad Fitzpatrick", "profile_use_background_image": false, "description": "hacker, traveler, runner, optimist, gopher", "url": "http://t.co/AjdAkBY0iG", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jan 16 23:05:57 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", "favourites_count": 8366, "status": {"in_reply_to_status_id": 685602642395963392, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "tigahill", "in_reply_to_user_id": 930826154, "in_reply_to_status_id_str": "685602642395963392", "in_reply_to_user_id_str": "930826154", "truncated": false, "id_str": "685603912133414912", "id": 685603912133414912, "text": "@tigahill @JohnLegere @EFF But not very media savvy, apparently. I'd love to read his actual accusations, if he can be calm for a second.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tigahill", "id_str": "930826154", "id": 930826154, "indices": [0, 9], "name": "LaTeigra Cahill"}, {"screen_name": "JohnLegere", "id_str": "1394399438", "id": 1394399438, "indices": [10, 21], "name": "John Legere"}, {"screen_name": "EFF", "id_str": "4816", "id": 4816, "indices": [22, 26], "name": "EFF"}]}, "created_at": "Fri Jan 08 23:28:05 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 650013, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 6185, "profile_banner_url": "https://pbs.twimg.com/profile_banners/650013/1348015829", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8690322", "following": false, "friends_count": 180, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/iyaz", "url": "http://t.co/wXnrkVLXs1", "expanded_url": "http://about.me/iyaz", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "560869", "geo_enabled": true, "followers_count": 29813, "location": "New York, NY", "screen_name": "iyaz", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1232, "name": "iyaz akhtar", "profile_use_background_image": false, "description": "I'm the best damn Iyaz Akhtar in the world. Available online @CNET and @GFQNetwork", "url": "http://t.co/wXnrkVLXs1", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Sep 05 17:08:15 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", "favourites_count": 520, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685297976856584192", "id": 685297976856584192, "text": "What did you think was the most awesome thing at CES 2016? #top5", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "top5", "indices": [59, 64]}], "user_mentions": []}, "created_at": "Fri Jan 08 03:12:24 +0000 2016", "source": "Twitter for iPad", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8690322, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "statuses_count": 15190, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8690322/1433083510", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "10350", "following": false, "friends_count": 1100, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/veronica", "url": "https://t.co/Tf4y8BelKl", "expanded_url": "http://about.me/veronica", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1758616, "location": "San Francisco", "screen_name": "Veronica", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 17379, "name": "Veronica Belmont", "profile_use_background_image": true, "description": "New media / TV host and writer. @swordandlaser, @vaginalfantasy and #DearVeronica for @Engadget. #SFGiants Destroyer of Worlds.", "url": "https://t.co/Tf4y8BelKl", "profile_text_color": "1E1A1A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Oct 24 16:00:54 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C59D79", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", "favourites_count": 2795, "status": {"in_reply_to_status_id": 685613648220303360, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "NotAPreppie", "in_reply_to_user_id": 53830319, "in_reply_to_status_id_str": "685613648220303360", "in_reply_to_user_id_str": "53830319", "truncated": false, "id_str": "685613962868609025", "id": 685613962868609025, "text": "@NotAPreppie @MarieDomingo getting into random fights on Twitter clearly makes YOU feel better! Whatever works!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "NotAPreppie", "id_str": "53830319", "id": 53830319, "indices": [0, 12], "name": "IfPinkyWereAChemist"}, {"screen_name": "MarieDomingo", "id_str": "10394242", "id": 10394242, "indices": [13, 26], "name": "MarieDomingo"}]}, "created_at": "Sat Jan 09 00:08:01 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 10350, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", "statuses_count": 36156, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10350/1436988647", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "816214", "following": false, "friends_count": 734, "entities": {"description": {"urls": [{"display_url": "techcrunch.com/video/crunchre\u2026", "url": "http://t.co/sufYJznghc", "expanded_url": "http://techcrunch.com/video/crunchreport", "indices": [59, 81]}]}, "url": {"urls": [{"display_url": "about.me/sarahlane", "url": "http://t.co/POf8fV5kwg", "expanded_url": "http://about.me/sarahlane", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", "notifications": false, "profile_sidebar_fill_color": "BAFF91", "profile_link_color": "B81F45", "geo_enabled": true, "followers_count": 95471, "location": "Norf Side ", "screen_name": "sarahlane", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 6398, "name": "Sarah Lane", "profile_use_background_image": true, "description": "TechCrunch Executive Producer, Video\n\nHost, Crunch Report: http://t.co/sufYJznghc\n\nI get it twisted, sorry", "url": "http://t.co/POf8fV5kwg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Mar 06 22:45:50 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", "favourites_count": 705, "status": {"in_reply_to_status_id": 685526261507096577, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MDee14", "in_reply_to_user_id": 16684249, "in_reply_to_status_id_str": "685526261507096577", "in_reply_to_user_id_str": "16684249", "truncated": false, "id_str": "685527194949451776", "id": 685527194949451776, "text": "@MDee14 yay we both won!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MDee14", "id_str": "16684249", "id": 16684249, "indices": [0, 7], "name": "Marcel Dee"}]}, "created_at": "Fri Jan 08 18:23:14 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 816214, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", "statuses_count": 16630, "profile_banner_url": "https://pbs.twimg.com/profile_banners/816214/1451606730", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "58708498", "following": false, "friends_count": 445, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "angelina.codes", "url": "http://t.co/v5aoRQrHwi", "expanded_url": "http://angelina.codes", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", "notifications": false, "profile_sidebar_fill_color": "F7C9FF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 17533, "location": "NYC \u2708 ???", "screen_name": "hopefulcyborg", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 972, "name": "Angelina Fabbro", "profile_use_background_image": false, "description": "- polyglot programmer weirdo - engineer at @digitalocean (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b - prev: @mozilla devtools & @steamclocksw - they/their/them", "url": "http://t.co/v5aoRQrHwi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jul 21 04:52:08 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", "favourites_count": 8940, "status": {"retweet_count": 6096, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 6096, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685515171675140096", "id": 685515171675140096, "text": "COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\nCOP: ok ur good", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:35:27 +0000 2016", "source": "Twitter Web Client", "favorite_count": 11419, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685567906923593729", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "bobvulfov", "id_str": "2442237828", "id": 2442237828, "indices": [3, 13], "name": "Bob Vulfov"}]}, "created_at": "Fri Jan 08 21:05:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685567906923593729, "text": "RT @bobvulfov: COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 58708498, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", "statuses_count": 22753, "profile_banner_url": "https://pbs.twimg.com/profile_banners/58708498/1408048999", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "682433", "following": false, "friends_count": 1123, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/othiym23/", "url": "http://t.co/20WWkunxbg", "expanded_url": "http://github.com/othiym23/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "CCCCCC", "profile_link_color": "333333", "geo_enabled": true, "followers_count": 2268, "location": "the outside lands", "screen_name": "othiym23", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 152, "name": "Forrest L Norvell", "profile_use_background_image": false, "description": "down with the kyriarchy / big ups to the heavy heavy bass.\n\nI may think you're doing something dumb but I think *you're* great.", "url": "http://t.co/20WWkunxbg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", "profile_background_color": "CCCCCC", "created_at": "Mon Jan 22 20:57:31 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "333333", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", "favourites_count": 5767, "status": {"in_reply_to_status_id": 685612122915536896, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "othiym23", "in_reply_to_user_id": 682433, "in_reply_to_status_id_str": "685612122915536896", "in_reply_to_user_id_str": "682433", "truncated": false, "id_str": "685612210031230976", "id": 685612210031230976, "text": "@reconbot @npmjs you probably need to look for binding.gyp and not, say, calls to `node-gyp rebuild`", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "reconbot", "id_str": "14082200", "id": 14082200, "indices": [0, 9], "name": "Francis Gulotta"}, {"screen_name": "npmjs", "id_str": "309528017", "id": 309528017, "indices": [10, 16], "name": "npmbot"}]}, "created_at": "Sat Jan 09 00:01:03 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 682433, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 30176, "profile_banner_url": "https://pbs.twimg.com/profile_banners/682433/1355870155", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "139199211", "following": false, "friends_count": 253, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "snarfed.org", "url": "https://t.co/0mWCez5XaB", "expanded_url": "https://snarfed.org/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 464, "location": "San Francisco", "screen_name": "schnarfed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Ryan Barrett", "profile_use_background_image": false, "description": "", "url": "https://t.co/0mWCez5XaB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Sat May 01 21:42:43 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", "favourites_count": 3258, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685210017411170305", "id": 685210017411170305, "text": "When someone invites me out, or just to hang, my first instinct is to check my calendar and hope for a conflict. :( #JustIntrovertThings", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "JustIntrovertThings", "indices": [116, 136]}], "user_mentions": []}, "created_at": "Thu Jan 07 21:22:53 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 139199211, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 1763, "profile_banner_url": "https://pbs.twimg.com/profile_banners/139199211/1398278985", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "536965103", "following": false, "friends_count": 811, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "onebigfluke.com", "url": "http://t.co/aaUMAjUIWi", "expanded_url": "http://onebigfluke.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0074B3", "geo_enabled": false, "followers_count": 2574, "location": "San Francisco", "screen_name": "haxor", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 142, "name": "Brett Slatkin", "profile_use_background_image": true, "description": "Eng lead @Google_Surveys. Author of @EffectivePython.\nI love bicycles and hate patents.", "url": "http://t.co/aaUMAjUIWi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", "profile_background_color": "4D4D4D", "created_at": "Mon Mar 26 05:57:19 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", "favourites_count": 3124, "status": {"retweet_count": 13, "retweeted_status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685367480546541568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "dlvr.it/DCnmnq", "url": "https://t.co/vqRVp9rIbc", "expanded_url": "http://dlvr.it/DCnmnq", "indices": [61, 84]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 07:48:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "ja", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685367480546541568, "text": "Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "dlvr.it"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685498607789670401", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "dlvr.it/DCnmnq", "url": "https://t.co/vqRVp9rIbc", "expanded_url": "http://dlvr.it/DCnmnq", "indices": [80, 103]}], "hashtags": [], "user_mentions": [{"screen_name": "oreilly_japan", "id_str": "18382977", "id": 18382977, "indices": [3, 17], "name": "O'Reilly Japan, Inc."}]}, "created_at": "Fri Jan 08 16:29:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "ja", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685498607789670401, "text": "RT @oreilly_japan: Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 536965103, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", "statuses_count": 1749, "profile_banner_url": "https://pbs.twimg.com/profile_banners/536965103/1398444972", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "610533", "following": false, "friends_count": 1078, "entities": {"description": {"urls": [{"display_url": "DailyTechNewsShow.com", "url": "https://t.co/x2gPqqxYuL", "expanded_url": "http://DailyTechNewsShow.com", "indices": [13, 36]}]}, "url": {"urls": [{"display_url": "tommerritt.com", "url": "http://t.co/Ru5Svk5gcM", "expanded_url": "http://www.tommerritt.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "0099B9", "geo_enabled": true, "followers_count": 97335, "location": "Virgo Supercluster", "screen_name": "acedtect", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 6442, "name": "Tom Merritt", "profile_use_background_image": true, "description": "Host of DTNS https://t.co/x2gPqqxYuL, Sword and Laser, Current Geek, Cordkillers and more. Coffee achiever", "url": "http://t.co/Ru5Svk5gcM", "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", "profile_background_color": "0099B9", "created_at": "Sun Jan 07 17:00:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", "favourites_count": 806, "status": {"in_reply_to_status_id": 685611862440849408, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Nightveil", "in_reply_to_user_id": 16855695, "in_reply_to_status_id_str": "685611862440849408", "in_reply_to_user_id_str": "16855695", "truncated": false, "id_str": "685612261910560768", "id": 685612261910560768, "text": "@Nightveil Yeah safety date. I can always move it up.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Nightveil", "id_str": "16855695", "id": 16855695, "indices": [0, 10], "name": "Nightveil"}]}, "created_at": "Sat Jan 09 00:01:15 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 610533, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 37135, "profile_banner_url": "https://pbs.twimg.com/profile_banners/610533/1348022434", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "824168", "following": false, "friends_count": 1919, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 1035, "location": "Petaluma, CA", "screen_name": "jammerb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 108, "name": "John Slanina", "profile_use_background_image": true, "description": "History is short. The sun is just a minor star.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", "profile_background_color": "31532D", "created_at": "Fri Mar 09 04:33:02 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", "favourites_count": 107, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "11877321", "id": 11877321, "text": "Got my Screaming Monkey from Woot!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Mar 24 02:38:08 +0000 2007", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 824168, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", "statuses_count": 6, "profile_banner_url": "https://pbs.twimg.com/profile_banners/824168/1434144272", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2369467405", "following": false, "friends_count": 34024, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wifiworkerbees.com", "url": "http://t.co/rqac3Fh1dU", "expanded_url": "http://wifiworkerbees.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 34950, "location": "Following My Bliss", "screen_name": "DereckCurry", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 632, "name": "Dereck Curry", "profile_use_background_image": false, "description": "20+ year IT, coding, product management, and engineering professional. Remote work evangelist. Co-founder of @WifiWorkerBees. Husband to @Currying_Favor.", "url": "http://t.co/rqac3Fh1dU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", "profile_background_color": "DFF3F5", "created_at": "Sun Mar 02 22:24:48 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", "favourites_count": 3838, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "668089105788612608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "triplet.fi/blog/working-r\u2026", "url": "https://t.co/euj9P7QJuh", "expanded_url": "http://www.triplet.fi/blog/working-remotely-from-abroad-one-month-in-hungary/", "indices": [65, 88]}], "hashtags": [{"text": "remotework", "indices": [89, 100]}], "user_mentions": [{"screen_name": "DereckCurry", "id_str": "2369467405", "id": 2369467405, "indices": [106, 118], "name": "Dereck Curry"}]}, "created_at": "Sat Nov 21 15:30:29 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 668089105788612608, "text": "Just blogged: Working remotely from abroad: One month in Hungary https://t.co/euj9P7QJuh #remotework /cc: @DereckCurry", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685489770089345024", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "triplet.fi/blog/working-r\u2026", "url": "https://t.co/euj9P7QJuh", "expanded_url": "http://www.triplet.fi/blog/working-remotely-from-abroad-one-month-in-hungary/", "indices": [75, 98]}], "hashtags": [{"text": "remotework", "indices": [99, 110]}], "user_mentions": [{"screen_name": "_Tx3", "id_str": "482822541", "id": 482822541, "indices": [3, 8], "name": "Tatu Tamminen"}, {"screen_name": "DereckCurry", "id_str": "2369467405", "id": 2369467405, "indices": [116, 128], "name": "Dereck Curry"}]}, "created_at": "Fri Jan 08 15:54:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685489770089345024, "text": "RT @_Tx3: Just blogged: Working remotely from abroad: One month in Hungary https://t.co/euj9P7QJuh #remotework /cc: @DereckCurry", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2369467405, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", "statuses_count": 9078, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369467405/1447623348", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15948437", "following": false, "friends_count": 590, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joelonsoftware.com", "url": "http://t.co/ZHNWlmFE3H", "expanded_url": "http://www.joelonsoftware.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", "notifications": false, "profile_sidebar_fill_color": "E4F1F0", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 117162, "location": "New York, NY", "screen_name": "spolsky", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5826, "name": "Joel Spolsky", "profile_use_background_image": true, "description": "CEO of Stack Overflow, co-founder of Fog Creek Software (FogBugz, Kiln), and creator of Trello. Member of NYC gay startup mafia.", "url": "http://t.co/ZHNWlmFE3H", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Fri Aug 22 18:34:03 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", "favourites_count": 5133, "status": {"retweet_count": 33, "retweeted_status": {"retweet_count": 33, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684896392188444672", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/p/23a20405681a", "url": "https://t.co/ifzwy1ausF", "expanded_url": "https://medium.com/p/23a20405681a", "indices": [112, 135]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 00:36:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684896392188444672, "text": "I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/ifzwy1ausF", "coordinates": null, "retweeted": false, "favorite_count": 91, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684939456881770496", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/p/23a20405681a", "url": "https://t.co/ifzwy1ausF", "expanded_url": "https://medium.com/p/23a20405681a", "indices": [126, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "anildash", "id_str": "36823", "id": 36823, "indices": [3, 12], "name": "Anil Dash"}]}, "created_at": "Thu Jan 07 03:27:46 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684939456881770496, "text": "RT @anildash: I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 15948437, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", "statuses_count": 6625, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15948437/1364583542", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "4519121", "following": false, "friends_count": 423, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theoatmeal.com", "url": "http://t.co/hzHuiYcL4x", "expanded_url": "http://theoatmeal.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57771255/twitter2.png", "notifications": false, "profile_sidebar_fill_color": "F5EDF0", "profile_link_color": "B40B43", "geo_enabled": true, "followers_count": 524231, "location": "Seattle, Washington", "screen_name": "Oatmeal", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 17111, "name": "Matthew Inman", "profile_use_background_image": true, "description": "I make comics.", "url": "http://t.co/hzHuiYcL4x", "profile_text_color": "362720", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", "profile_background_color": "FF3366", "created_at": "Fri Apr 13 16:59:37 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "CC3366", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", "favourites_count": 1374, "status": {"retweet_count": 128, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685190824158691332", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 812, "h": 587, "resize": "fit"}, "small": {"w": 340, "h": 245, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 433, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", "type": "photo", "indices": [47, 70], "media_url": "http://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", "display_url": "pic.twitter.com/suZ6JUQaFa", "id_str": "685190823483342849", "expanded_url": "http://twitter.com/Oatmeal/status/685190824158691332/photo/1", "id": 685190823483342849, "url": "https://t.co/suZ6JUQaFa"}], "symbols": [], "urls": [{"display_url": "theoatmeal.com/blog/playdoh", "url": "https://t.co/v1LZDUNlnT", "expanded_url": "http://theoatmeal.com/blog/playdoh", "indices": [23, 46]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 20:06:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685190824158691332, "text": "You only try this once https://t.co/v1LZDUNlnT https://t.co/suZ6JUQaFa", "coordinates": null, "retweeted": false, "favorite_count": 293, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 4519121, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57771255/twitter2.png", "statuses_count": 6000, "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "9859562", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "glyph.twistedmatrix.com", "url": "https://t.co/1dvBYKfhRo", "expanded_url": "https://glyph.twistedmatrix.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": false, "followers_count": 2557, "location": "\u2191 baseline \u2193 cap-height", "screen_name": "glyph", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 144, "name": "\u24bc\u24c1\u24ce\u24c5\u24bd", "profile_use_background_image": true, "description": "Level ?? Thought Lord", "url": "https://t.co/1dvBYKfhRo", "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", "profile_background_color": "642D8B", "created_at": "Thu Nov 01 18:21:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", "favourites_count": 6287, "status": {"in_reply_to_status_id": 685297984683155456, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "corbinsimpson", "in_reply_to_user_id": 41225243, "in_reply_to_status_id_str": "685297984683155456", "in_reply_to_user_id_str": "41225243", "truncated": false, "id_str": "685357014143250432", "id": 685357014143250432, "text": "@corbinsimpson yeah.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "corbinsimpson", "id_str": "41225243", "id": 41225243, "indices": [0, 14], "name": "Corbin Simpson"}]}, "created_at": "Fri Jan 08 07:07:00 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9859562, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "statuses_count": 11017, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2782733125", "following": false, "friends_count": 427, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "raintank.io", "url": "http://t.co/sZYy68B1yl", "expanded_url": "http://www.raintank.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "10B1D3", "geo_enabled": true, "followers_count": 362, "location": "", "screen_name": "raintanksaas", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "raintank", "profile_use_background_image": false, "description": "An opensource monitoring platform to collect, store & analyze data about your infrastructure through a gorgeously powerful frontend. The company behind @grafana", "url": "http://t.co/sZYy68B1yl", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", "profile_background_color": "353535", "created_at": "Sun Aug 31 18:05:44 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", "favourites_count": 204, "status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684453558545203200", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "type": "photo", "indices": [113, 136], "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "display_url": "pic.twitter.com/GnfOxpEaYF", "id_str": "684450657458368512", "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", "id": 684450657458368512, "url": "https://t.co/GnfOxpEaYF"}], "symbols": [], "urls": [{"display_url": "bit.ly/22Jb455", "url": "https://t.co/aYQvFNmob0", "expanded_url": "http://bit.ly/22Jb455", "indices": [69, 92]}], "hashtags": [{"text": "monitoring", "indices": [57, 68]}], "user_mentions": [{"screen_name": "RobustPerceiver", "id_str": "3328053545", "id": 3328053545, "indices": [96, 112], "name": "Robust Perception"}]}, "created_at": "Tue Jan 05 19:16:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684453558545203200, "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 2782733125, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 187, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782733125/1447877118", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "23134190", "following": false, "friends_count": 2846, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rayheffer.com", "url": "http://t.co/65bBqa0ySJ", "expanded_url": "http://rayheffer.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", "notifications": false, "profile_sidebar_fill_color": "DBDBDB", "profile_link_color": "1887E5", "geo_enabled": true, "followers_count": 12129, "location": "Brighton, United Kingdom", "screen_name": "rayheffer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 233, "name": "Ray Heffer", "profile_use_background_image": true, "description": "Global Cloud & EUC Architect @VMware vCloud Air Network | vExpert & Double VCDX #122 | PC Gamer | Technologist | Linux | VMworld Speaker. \u65e5\u672c\u8a9e", "url": "http://t.co/65bBqa0ySJ", "profile_text_color": "574444", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", "profile_background_color": "022330", "created_at": "Fri Mar 06 23:14:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", "favourites_count": 6141, "status": {"retweet_count": 8, "retweeted_status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685565495274266624", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ow.ly/WFMFT", "url": "https://t.co/QHNFIkGGaL", "expanded_url": "http://ow.ly/WFMFT", "indices": [121, 144]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:55:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685565495274266624, "text": "Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https://t.co/QHNFIkGGaL", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685565627487117312", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ow.ly/WFMFT", "url": "https://t.co/QHNFIkGGaL", "expanded_url": "http://ow.ly/WFMFT", "indices": [143, 144]}], "hashtags": [], "user_mentions": [{"screen_name": "PGelsinger", "id_str": "3339261074", "id": 3339261074, "indices": [3, 14], "name": "Pat Gelsinger"}]}, "created_at": "Fri Jan 08 20:55:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685565627487117312, "text": "RT @PGelsinger: Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 23134190, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", "statuses_count": 3576, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23134190/1447672867", "is_translator": false}], "next_cursor": 1494734862149901956, "previous_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "1494734862149901956"} \ No newline at end of file diff --git a/testdata/get_friends_1.json b/testdata/get_friends_1.json index 930e5734..f5794b1f 100644 --- a/testdata/get_friends_1.json +++ b/testdata/get_friends_1.json @@ -1,26548 +1 @@ -{ - "next_cursor": 1489123725664322527, - "users": [ - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14574588", - "following": false, - "friends_count": 434, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "abhinavsingh.com", - "url": "http://t.co/78nP1dFAQl", - "expanded_url": "http://abhinavsingh.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1833, - "location": "San Francisco, California", - "screen_name": "imoracle", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 113, - "name": "AB", - "profile_use_background_image": true, - "description": "#Googler #Appurify #Yahoo #Oracle #Startups #JAXL #Musician #Blues #Engineer #IIT #Headbanger #Guitar #CMS #Lucknowi #Indian", - "url": "http://t.co/78nP1dFAQl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000743742291/3303eaa6ced81f16b09a0f167468fb13_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Apr 28 19:58:51 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000743742291/3303eaa6ced81f16b09a0f167468fb13_normal.jpeg", - "favourites_count": 851, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677315949020614657", - "id": 677315949020614657, - "text": "Super productive holidays. We (@abbandofficial) composed 8 songs for upcoming album next year. Now off to meet good old friends #FunTime", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 128, - 136 - ], - "text": "FunTime" - } - ], - "user_mentions": [ - { - "screen_name": "abbandofficial", - "id_str": "4250770574", - "id": 4250770574, - "indices": [ - 31, - 46 - ], - "name": "AB" - } - ] - }, - "created_at": "Thu Dec 17 02:34:40 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14574588, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 15921, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14574588/1403935628", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "308881474", - "following": false, - "friends_count": 21, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "webrtc.org", - "url": "http://t.co/f8Rr0iB9ir", - "expanded_url": "http://webrtc.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7193, - "location": "", - "screen_name": "webrtc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 240, - "name": "WebRTC project", - "profile_use_background_image": true, - "description": "Twitter account for the WebRTC project. We'll update it with progress, blog post links, etc...", - "url": "http://t.co/f8Rr0iB9ir", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1875563277/photo_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 01 04:42:12 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1875563277/photo_normal.jpg", - "favourites_count": 59, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": 21206449, - "possibly_sensitive": false, - "id_str": "677508944298975232", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "appr.tc", - "url": "https://t.co/wWBvRAUwXy", - "expanded_url": "https://appr.tc", - "indices": [ - 55, - 78 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "carlosml", - "id_str": "21206449", - "id": 21206449, - "indices": [ - 0, - 9 - ], - "name": "Carlos Lebron" - } - ] - }, - "created_at": "Thu Dec 17 15:21:34 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "21206449", - "place": null, - "in_reply_to_screen_name": "carlosml", - "in_reply_to_status_id_str": "676814357561532417", - "truncated": false, - "id": 677508944298975232, - "text": "@carlosml not default codec in Chrome, but default for https://t.co/wWBvRAUwXy :)", - "coordinates": null, - "in_reply_to_status_id": 676814357561532417, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 308881474, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 340, - "is_translator": false - }, - { - "time_zone": "Sydney", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "36079474", - "following": false, - "friends_count": 3646, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3153, - "location": "Batmania, Australia", - "screen_name": "nfFrenchie", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 83, - "name": "French", - "profile_use_background_image": true, - "description": "Infosec, Bitcoin & VC Geek.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477682641282400256/TOB7cr9I_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 28 14:34:24 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477682641282400256/TOB7cr9I_normal.jpeg", - "favourites_count": 3076, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "errbufferoverfl", - "in_reply_to_user_id": 3023308260, - "in_reply_to_status_id_str": "685407306830381056", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685424075188011009", - "id": 685424075188011009, - "text": "@errbufferoverfl these guys might have some experience: @helveticade @therealdevgeeks", - "in_reply_to_user_id_str": "3023308260", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "errbufferoverfl", - "id_str": "3023308260", - "id": 3023308260, - "indices": [ - 0, - 16 - ], - "name": "Rebecca Trapani \u0ca0\u256d\u256e\u0ca0" - }, - { - "screen_name": "helveticade", - "id_str": "14111299", - "id": 14111299, - "indices": [ - 56, - 68 - ], - "name": "Cade" - }, - { - "screen_name": "theRealDevgeeks", - "id_str": "359949200", - "id": 359949200, - "indices": [ - 69, - 85 - ], - "name": "Tommy Williams \u24cb" - } - ] - }, - "created_at": "Fri Jan 08 11:33:28 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685407306830381056, - "lang": "en" - }, - "default_profile_image": false, - "id": 36079474, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3152, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "409854384", - "following": false, - "friends_count": 1072, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 112, - "location": "", - "screen_name": "altkatz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "altkatz", - "profile_use_background_image": true, - "description": "This is not the algorithm. This is close.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/573778807837974529/VNUkFciS_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Nov 11 09:32:26 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/573778807837974529/VNUkFciS_normal.jpeg", - "favourites_count": 170, - "status": { - "retweet_count": 581, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 581, - "truncated": false, - "retweeted": false, - "id_str": "619837611419521024", - "id": 619837611419521024, - "text": "A giant TCP SYN flood (DDoS) is still causing slower connection speeds for our users in parts of Asia, Australia & Oceania. Working on this.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jul 11 11:56:17 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 195, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "620175335741460480", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "telegram", - "id_str": "1689053928", - "id": 1689053928, - "indices": [ - 3, - 12 - ], - "name": "Telegram Messenger" - } - ] - }, - "created_at": "Sun Jul 12 10:18:16 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 620175335741460480, - "text": "RT @telegram: A giant TCP SYN flood (DDoS) is still causing slower connection speeds for our users in parts of Asia, Australia & Oceania. W\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 409854384, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 111, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/409854384/1425635418", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "15372963", - "following": false, - "friends_count": 531, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "buddycloud.com", - "url": "http://t.co/IRivmAHKks", - "expanded_url": "http://buddycloud.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/116285962/square-logo.png", - "notifications": false, - "profile_sidebar_fill_color": "F2F2F2", - "profile_link_color": "2DAEBF", - "geo_enabled": true, - "followers_count": 907, - "location": "Berlin, Germany", - "screen_name": "buddycloud", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 87, - "name": "Buddycloud", - "profile_use_background_image": false, - "description": "Secure messaging for apps - Tools, libraries and services for secure cloud & on-premise user and group messaging.\n#securemessaging", - "url": "http://t.co/IRivmAHKks", - "profile_text_color": "5F9DFA", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/525226516179734528/DXcqacDW_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Jul 10 02:11:32 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/525226516179734528/DXcqacDW_normal.png", - "favourites_count": 56, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "660030922226450432", - "id": 660030922226450432, - "text": "Wanna join for a Saturday morning pet-projects dev-ops hacking session? 10am, Berlin #saltstack, #ansible, etc. DM for details.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 85, - 95 - ], - "text": "saltstack" - }, - { - "indices": [ - 97, - 105 - ], - "text": "ansible" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Oct 30 09:50:09 +0000 2015", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15372963, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/116285962/square-logo.png", - "statuses_count": 924, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15372963/1448451457", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3033204133", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 14559, - "location": "The Incident Review Meeting", - "screen_name": "honest_update", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 257, - "name": "Honest Status Page", - "profile_use_background_image": true, - "description": "These are the things we probably ought to say when updating incident status. Snark and compassion. Now, about your data\u2026", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/568844092834996224/w90Cq4mH_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Feb 20 18:42:30 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/568844092834996224/w90Cq4mH_normal.jpeg", - "favourites_count": 250, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 11, - "truncated": false, - "retweeted": false, - "id_str": "685516850852184064", - "id": 685516850852184064, - "text": "*slightly changes tint of green check mark circle to convey depressed success rate*", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:42:08 +0000 2016", - "source": "Buffer", - "favorite_count": 20, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 3033204133, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 328, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "43977574", - "following": false, - "friends_count": 7, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tigase.org", - "url": "http://t.co/S2bnbrVgtb", - "expanded_url": "http://www.tigase.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 143, - "location": "San Francisco, CA, USA", - "screen_name": "tigase", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Tigase XMPP Server", - "profile_use_background_image": true, - "description": "I am 8 years old, or something like that", - "url": "http://t.co/S2bnbrVgtb", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2182438186/Tigase_Icon_A_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jun 01 21:29:01 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2182438186/Tigase_Icon_A_normal.png", - "favourites_count": 6, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "665756052294512640", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tinyurl.com/pkra4v4", - "url": "https://t.co/wQjHLQ4npV", - "expanded_url": "http://tinyurl.com/pkra4v4", - "indices": [ - 89, - 112 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Nov 15 04:59:46 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 665756052294512640, - "text": "New Blog Post where we look at IQ stanzas. XMPP: An Introduction - Part IV - Could You...https://t.co/wQjHLQ4npV", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 43977574, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 323, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18326200", - "following": false, - "friends_count": 1366, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "greptilian.com", - "url": "http://t.co/G0N231nQxj", - "expanded_url": "http://greptilian.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3684471/rootintootin.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 460, - "location": "", - "screen_name": "philipdurbin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "name": "Philip Durbin", - "profile_use_background_image": true, - "description": "open source geek", - "url": "http://t.co/G0N231nQxj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1729661967/philipdurbin_cropped_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Dec 23 04:17:49 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1729661967/philipdurbin_cropped_normal.jpg", - "favourites_count": 2765, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679475811393617920", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CW37osBVAAAHGeg.jpg", - "type": "photo", - "indices": [ - 71, - 94 - ], - "media_url": "http://pbs.twimg.com/media/CW37osBVAAAHGeg.jpg", - "display_url": "pic.twitter.com/5zaytnZQhS", - "id_str": "679475795232882688", - "expanded_url": "http://twitter.com/philipdurbin/status/679475811393617920/photo/1", - "id": 679475795232882688, - "url": "https://t.co/5zaytnZQhS" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 40, - 49 - ], - "text": "StarWars" - } - ], - "user_mentions": [ - { - "screen_name": "TheWookieeRoars", - "id_str": "483192121", - "id": 483192121, - "indices": [ - 54, - 70 - ], - "name": "Peter Mayhew" - } - ] - }, - "created_at": "Wed Dec 23 01:37:12 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679475811393617920, - "text": "Chewbacca and R2-D2 by my six year old. #StarWars /cc @TheWookieeRoars https://t.co/5zaytnZQhS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 18326200, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3684471/rootintootin.jpg", - "statuses_count": 2272, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1235521", - "following": false, - "friends_count": 950, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tbray.org/ongoing/", - "url": "https://t.co/oOBFMTl6h7", - "expanded_url": "https://www.tbray.org/ongoing/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000008638875/b45b8babcd8e868d57e715bdf15838a2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "AA0000", - "geo_enabled": false, - "followers_count": 32984, - "location": "Vancouver!", - "screen_name": "timbray", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2270, - "name": "Tim Bray", - "profile_use_background_image": false, - "description": "Web geek with a camera.", - "url": "https://t.co/oOBFMTl6h7", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/421637246/Tim_normal.jpg", - "profile_background_color": "EEAA00", - "created_at": "Thu Mar 15 17:24:22 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/421637246/Tim_normal.jpg", - "favourites_count": 698, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685316522135261184", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtube.com/watch?v=aEj2NH\u2026", - "url": "https://t.co/eUErlw8JHh", - "expanded_url": "https://www.youtube.com/watch?v=aEj2NHy4iL4", - "indices": [ - 13, - 36 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 04:26:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685316522135261184, - "text": "The culprit: https://t.co/eUErlw8JHh", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1235521, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000008638875/b45b8babcd8e868d57e715bdf15838a2.jpeg", - "statuses_count": 19307, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1235521/1398645696", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "86146814", - "following": false, - "friends_count": 779, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593182759062876160/2y0X2nbK.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 768, - "location": "New York ", - "screen_name": "Caelestisca", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 48, - "name": "Carmen Andoh", - "profile_use_background_image": true, - "description": "~$#momops of the House of Bash. @ladieswholinux @womenwhogo_nyc", - "url": null, - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681245752983719937/R_3vQ5rb_normal.jpg", - "profile_background_color": "F5F8FA", - "created_at": "Thu Oct 29 19:48:50 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681245752983719937/R_3vQ5rb_normal.jpg", - "favourites_count": 11334, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "681918394594144261", - "id": 681918394594144261, - "text": "You know you work at an awesome place when your team concerns themselves with travel issues for your son with #T1D & #autism . \u2661 @enquos", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 110, - 114 - ], - "text": "T1D" - }, - { - "indices": [ - 121, - 128 - ], - "text": "autism" - } - ], - "user_mentions": [ - { - "screen_name": "enquos", - "id_str": "1132126837", - "id": 1132126837, - "indices": [ - 133, - 140 - ], - "name": "enquos" - } - ] - }, - "created_at": "Tue Dec 29 19:23:09 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 86146814, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593182759062876160/2y0X2nbK.jpg", - "statuses_count": 879, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/86146814/1451004545", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "26751851", - "following": false, - "friends_count": 1057, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thekillingtime.com", - "url": "https://t.co/Zcy63UDMwn", - "expanded_url": "http://thekillingtime.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 739, - "location": "~", - "screen_name": "daguy666", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Joey Pistone", - "profile_use_background_image": true, - "description": "snowboarding, skateboarding, music, and computers. Python Padawan. Network Security Engineer at @Etsy. JP+LR", - "url": "https://t.co/Zcy63UDMwn", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477539445395058688/n32ykdPs_normal.png", - "profile_background_color": "131516", - "created_at": "Thu Mar 26 13:46:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477539445395058688/n32ykdPs_normal.png", - "favourites_count": 4855, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "RT_America", - "in_reply_to_user_id": 115754870, - "in_reply_to_status_id_str": "685604446718439424", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685611780647723008", - "id": 685611780647723008, - "text": "@RT_America does the raccoon help or hurt the restaurants \"A\" rating?", - "in_reply_to_user_id_str": "115754870", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RT_America", - "id_str": "115754870", - "id": 115754870, - "indices": [ - 0, - 11 - ], - "name": "RT America" - } - ] - }, - "created_at": "Fri Jan 08 23:59:21 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685604446718439424, - "lang": "en" - }, - "default_profile_image": false, - "id": 26751851, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5092, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26751851/1398971089", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "305899937", - "following": false, - "friends_count": 230, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 601, - "location": "Brooklyn, NY", - "screen_name": "mcdonnps", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "Patrick McDonnell", - "profile_use_background_image": true, - "description": "Senior Manager, Operations Engineering @Etsy", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2223861876/pmcdonnell__4__normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu May 26 23:40:02 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2223861876/pmcdonnell__4__normal.jpg", - "favourites_count": 5, - "status": { - "retweet_count": 11, - "retweeted_status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "667011917341401093", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "etsy.com/uk/careers/job\u2026", - "url": "https://t.co/bm1wh76fvj", - "expanded_url": "https://www.etsy.com/uk/careers/job/oAHU1fwW", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Nov 18 16:10:08 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 667011917341401093, - "text": "Etsy are hiring a Sr. Ops Engineer in our Dublin Office: https://t.co/bm1wh76fvj - feel free to ping me if you'd like more info :)", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "667014165735845888", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "etsy.com/uk/careers/job\u2026", - "url": "https://t.co/bm1wh76fvj", - "expanded_url": "https://www.etsy.com/uk/careers/job/oAHU1fwW", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jonlives", - "id_str": "13093162", - "id": 13093162, - "indices": [ - 3, - 12 - ], - "name": "Jon Cowie" - } - ] - }, - "created_at": "Wed Nov 18 16:19:04 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 667014165735845888, - "text": "RT @jonlives: Etsy are hiring a Sr. Ops Engineer in our Dublin Office: https://t.co/bm1wh76fvj - feel free to ping me if you'd like more in\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 305899937, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 48, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8627682", - "following": false, - "friends_count": 223, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "laur.ie", - "url": "http://t.co/fcvNw989z6", - "expanded_url": "http://laur.ie", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 2621, - "location": "New York", - "screen_name": "lozzd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 135, - "name": "Laurie", - "profile_use_background_image": true, - "description": "Operating operations at @Etsy. I like graphs, Hadoop clusters, monitoring and sarcasm. Englishman in New York.", - "url": "http://t.co/fcvNw989z6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/464073861747576834/FRHvjaJm_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Mon Sep 03 17:30:50 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/464073861747576834/FRHvjaJm_normal.jpeg", - "favourites_count": 1471, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/011add077f4d2da3.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.041878, - 40.570842 - ], - [ - -73.855673, - 40.570842 - ], - [ - -73.855673, - 40.739434 - ], - [ - -74.041878, - 40.739434 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Brooklyn, NY", - "id": "011add077f4d2da3", - "name": "Brooklyn" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 6, - "truncated": false, - "retweeted": false, - "id_str": "685562352633274368", - "id": 685562352633274368, - "text": ".@beerops: \"Since I can't merge this code I may as well merge some alcohol.. into my face...\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "beerops", - "id_str": "260044118", - "id": 260044118, - "indices": [ - 1, - 9 - ], - "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 sdo\u0279\u0259\u0259q" - } - ] - }, - "created_at": "Fri Jan 08 20:42:56 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 13, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 8627682, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8627682/1421811003", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "20456848", - "following": false, - "friends_count": 343, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1801, - "location": "", - "screen_name": "mrembetsy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 105, - "name": "Michael Rembetsy", - "profile_use_background_image": true, - "description": "nerd @etsy", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1411497817/Photo_on_2011-06-24_at_15.29_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Feb 09 18:59:34 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1411497817/Photo_on_2011-06-24_at_15.29_normal.jpg", - "favourites_count": 13164, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "lara_hogan", - "in_reply_to_user_id": 14146300, - "in_reply_to_status_id_str": "685451114536386560", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685469494064627713", - "id": 685469494064627713, - "text": "@lara_hogan congrats! So glad you are here!!!!", - "in_reply_to_user_id_str": "14146300", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lara_hogan", - "id_str": "14146300", - "id": 14146300, - "indices": [ - 0, - 11 - ], - "name": "Lara Hogan" - } - ] - }, - "created_at": "Fri Jan 08 14:33:57 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685451114536386560, - "lang": "en" - }, - "default_profile_image": false, - "id": 20456848, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5853, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1326022531", - "following": false, - "friends_count": 170, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ben.thatmustbe.me", - "url": "https://t.co/r8zi6Mjy2u", - "expanded_url": "https://ben.thatmustbe.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 91, - "location": "Attleboro MA", - "screen_name": "dissolve333", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Ben Roberts", - "profile_use_background_image": true, - "description": "", - "url": "https://t.co/r8zi6Mjy2u", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3495896730/7cecf2b827dadde109cb85dc30f458e4_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Thu Apr 04 03:08:41 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495896730/7cecf2b827dadde109cb85dc30f458e4_normal.jpeg", - "favourites_count": 38, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681130100792803328", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXPcN5QVAAE32DQ.jpg", - "type": "photo", - "indices": [ - 84, - 107 - ], - "media_url": "http://pbs.twimg.com/media/CXPcN5QVAAE32DQ.jpg", - "display_url": "pic.twitter.com/zmXgTS9qGh", - "id_str": "681130099928793089", - "expanded_url": "http://twitter.com/dissolve333/status/681130100792803328/photo/1", - "id": 681130099928793089, - "url": "https://t.co/zmXgTS9qGh" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "btmb.me/s/Db", - "url": "https://t.co/C5hB0S8K9L", - "expanded_url": "http://btmb.me/s/Db", - "indices": [ - 59, - 82 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Dec 27 15:10:45 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681130100792803328, - "text": "Teaching the girls the classics: The cask of Amontillado. (https://t.co/C5hB0S8K9L) https://t.co/zmXgTS9qGh", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Bridgy" - }, - "default_profile_image": false, - "id": 1326022531, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 471, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15740039", - "following": false, - "friends_count": 222, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paniksrvr.info", - "url": "http://t.co/P4NCkw1UDY", - "expanded_url": "http://paniksrvr.info", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "999999", - "geo_enabled": true, - "followers_count": 201, - "location": "Cherry Hill, NJ", - "screen_name": "callmeradical", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "Lars Cromley", - "profile_use_background_image": false, - "description": "Code. Infrastructure. Lean. That is about it. These thoughts are mine and do not repesent 2nd Watch as a company.", - "url": "http://t.co/P4NCkw1UDY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/643089900179427328/lZCJoLGV_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Aug 05 18:55:44 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/643089900179427328/lZCJoLGV_normal.jpg", - "favourites_count": 245, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0051d76b1627f404.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -75.066178, - 39.915333 - ], - [ - -75.013523, - 39.915333 - ], - [ - -75.013523, - 39.946809 - ], - [ - -75.066178, - 39.946809 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Cherry Hill, NJ", - "id": "0051d76b1627f404", - "name": "Cherry Hill" - }, - "in_reply_to_screen_name": "ferry", - "in_reply_to_user_id": 14591868, - "in_reply_to_status_id_str": "685527057443504128", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685527264763723776", - "id": 685527264763723776, - "text": "@ferry I can\u2019t wait to see how they pick up the story. We are finishing up on season 3 again.", - "in_reply_to_user_id_str": "14591868", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ferry", - "id_str": "14591868", - "id": 14591868, - "indices": [ - 0, - 6 - ], - "name": "Michael Ferry" - } - ] - }, - "created_at": "Fri Jan 08 18:23:31 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685527057443504128, - "lang": "en" - }, - "default_profile_image": false, - "id": 15740039, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3298, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15740039/1443165609", - "is_translator": false - }, - { - "time_zone": "Lisbon", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "19677293", - "following": false, - "friends_count": 401, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4258623/a.jpg", - "notifications": false, - "profile_sidebar_fill_color": "352726", - "profile_link_color": "D0652B", - "geo_enabled": true, - "followers_count": 206, - "location": "Portugal", - "screen_name": "ricardoteixas", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Ricardo F. Teixeira", - "profile_use_background_image": true, - "description": "Born and raised in Lisbon, Portugal. Senior Security Consultant.", - "url": null, - "profile_text_color": "90A216", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/490928238617964546/IVcRZ47G_normal.jpeg", - "profile_background_color": "352726", - "created_at": "Wed Jan 28 21:29:13 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/490928238617964546/IVcRZ47G_normal.jpeg", - "favourites_count": 3, - "status": { - "retweet_count": 8, - "retweeted_status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684688988943347712", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "status.linode.com/incidents/ghdl\u2026", - "url": "https://t.co/YxjJrTGrVt", - "expanded_url": "http://status.linode.com/incidents/ghdlhfnfngnh", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "linode", - "id_str": "8695992", - "id": 8695992, - "indices": [ - 1, - 8 - ], - "name": "Linode" - } - ] - }, - "created_at": "Wed Jan 06 10:52:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684688988943347712, - "text": ".@Linode has been owned https://t.co/YxjJrTGrVt", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684718835455377409", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "status.linode.com/incidents/ghdl\u2026", - "url": "https://t.co/YxjJrTGrVt", - "expanded_url": "http://status.linode.com/incidents/ghdlhfnfngnh", - "indices": [ - 39, - 62 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "digininja", - "id_str": "16170178", - "id": 16170178, - "indices": [ - 3, - 13 - ], - "name": "Robin" - }, - { - "screen_name": "linode", - "id_str": "8695992", - "id": 8695992, - "indices": [ - 16, - 23 - ], - "name": "Linode" - } - ] - }, - "created_at": "Wed Jan 06 12:51:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684718835455377409, - "text": "RT @digininja: .@Linode has been owned https://t.co/YxjJrTGrVt", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 19677293, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4258623/a.jpg", - "statuses_count": 755, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19677293/1400602181", - "is_translator": false - }, - { - "time_zone": "Chihuahua", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1262748066", - "following": false, - "friends_count": 2200, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431914161405063168/kMD_iNRH.png", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 2675, - "location": "", - "screen_name": "robertosantedel", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "Dev 4 Humans", - "profile_use_background_image": false, - "description": "Learn to develop in MySQL, Oracle, Ruby, AngularJS, Python and change your life.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/532277734647410688/ZniCEG0Q_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Mar 12 20:01:41 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/532277734647410688/ZniCEG0Q_normal.jpeg", - "favourites_count": 131, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "653991987444494336", - "id": 653991987444494336, - "text": "#PlatziCode veremos alg\u00fan patr\u00f3n exclusivo para front end? asi como algoritmos que se utilizan para resolver problemas que se dan en front?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 0, - 11 - ], - "text": "PlatziCode" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Oct 13 17:53:35 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "es" - }, - "default_profile_image": false, - "id": 1262748066, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431914161405063168/kMD_iNRH.png", - "statuses_count": 143, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1262748066/1415740883", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15859722", - "following": false, - "friends_count": 815, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "flatironschool.com", - "url": "http://t.co/8Ghcgnwzoo", - "expanded_url": "http://flatironschool.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": true, - "followers_count": 1293, - "location": "Brooklyn, NY USA", - "screen_name": "thejohnmarc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "John Marc Imbrescia", - "profile_use_background_image": true, - "description": "Flatiron School. Ex OkCupid, Etsy, Instapaper. Creator of successful Kickstarter. Never been asked to turn over info to a Gov. agency. Feminist. Dad.", - "url": "http://t.co/8Ghcgnwzoo", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000690887914/f6b2265a2f3a8258fe4fe8b267beb899_normal.jpeg", - "profile_background_color": "709397", - "created_at": "Fri Aug 15 03:55:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000690887914/f6b2265a2f3a8258fe4fe8b267beb899_normal.jpeg", - "favourites_count": 1934, - "status": { - "retweet_count": 76, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 76, - "truncated": false, - "retweeted": false, - "id_str": "685226437272535040", - "id": 685226437272535040, - "text": "My startup is called Bag and what we do is we send a guy to your apartment and he takes your plastic bag full of plastic bags away", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 22:28:08 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 158, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685287207033245696", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Merman_Melville", - "id_str": "603805849", - "id": 603805849, - "indices": [ - 3, - 19 - ], - "name": "Umami Skeleton" - } - ] - }, - "created_at": "Fri Jan 08 02:29:36 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685287207033245696, - "text": "RT @Merman_Melville: My startup is called Bag and what we do is we send a guy to your apartment and he takes your plastic bag full of plast\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 15859722, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 8379, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15859722/1353290361", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14260840", - "following": false, - "friends_count": 782, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/miahj", - "url": "http://t.co/pe7KTkVwwr", - "expanded_url": "http://about.me/miahj", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614569465028612096/1MwVWoYQ.jpg", - "notifications": false, - "profile_sidebar_fill_color": "9EDE9B", - "profile_link_color": "118C19", - "geo_enabled": false, - "followers_count": 1934, - "location": "San Francisco, CA", - "screen_name": "miah_", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 150, - "name": "Miah Johnson", - "profile_use_background_image": false, - "description": "Fart Leader, Transgender, Abrasive, Pariah, Ruby Programmer, Ineffective Configuration Management Sorceress, UNIX, Iconoclast, A Constant Disappointment.", - "url": "http://t.co/pe7KTkVwwr", - "profile_text_color": "1F7D48", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1916412237/miah_derpette_twitter_normal.png", - "profile_background_color": "51B056", - "created_at": "Sun Mar 30 20:43:31 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "187832", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1916412237/miah_derpette_twitter_normal.png", - "favourites_count": 936, - "status": { - "retweet_count": 37, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 37, - "truncated": false, - "retweeted": false, - "id_str": "685561412450562048", - "id": 685561412450562048, - "text": "Every engineer is sometimes a bad engineer", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:39:12 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 60, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685562099574022144", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jmhodges", - "id_str": "9267272", - "id": 9267272, - "indices": [ - 3, - 12 - ], - "name": "Jeff Hodges" - } - ] - }, - "created_at": "Fri Jan 08 20:41:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685562099574022144, - "text": "RT @jmhodges: Every engineer is sometimes a bad engineer", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 14260840, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614569465028612096/1MwVWoYQ.jpg", - "statuses_count": 27099, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14260840/1435359903", - "is_translator": false - }, - { - "time_zone": "Bucharest", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "55525953", - "following": false, - "friends_count": 6, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pinboard.in", - "url": "http://t.co/qOHjNexLMt", - "expanded_url": "http://pinboard.in", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 27982, - "location": "San Francisco", - "screen_name": "Pinboard", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1703, - "name": "Pinboard", - "profile_use_background_image": false, - "description": "veni vidi tweeti", - "url": "http://t.co/qOHjNexLMt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494414965/logo_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Fri Jul 10 10:24:12 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494414965/logo_normal.png", - "favourites_count": 54, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "685599807306530816", - "id": 685599807306530816, - "text": "\u201cHow to become an email powerhouse \u2014 and increase opens, clicks, and revenue (webinar)\u201d I can\u2019t feel my legs", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:11:46 +0000 2016", - "source": "YoruFukurou", - "favorite_count": 10, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 55525953, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 21992, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8882", - "following": false, - "friends_count": 3429, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.lmorchard.com", - "url": "http://t.co/NsDCctIf5R", - "expanded_url": "http://blog.lmorchard.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/747211922/19e80a54bd6192d234ca49d92c163bb6.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 3858, - "location": "Ferndale, MI", - "screen_name": "lmorchard", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 265, - "name": "Les Craven [\u00ac\u00ba-\u00b0]\u00ac", - "profile_use_background_image": true, - "description": "serially enthusiastic; {web,mad,computer} scientist; {tech,scifi} writer; home{brew,roast}er; mozillian; he/him; 19rGZjL1F2odBkD76NTFiDhbxgDWLqpmK2", - "url": "http://t.co/NsDCctIf5R", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661584606664093696/f-R_8T4f_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Oct 13 19:54:01 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661584606664093696/f-R_8T4f_normal.jpg", - "favourites_count": 7496, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "richardcobbett", - "in_reply_to_user_id": 11937352, - "in_reply_to_status_id_str": "685541670797066240", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685576277697413120", - "id": 685576277697413120, - "text": "@richardcobbett Also, that damn Snow Child. I'm so glad I kept him from melting. *sob*", - "in_reply_to_user_id_str": "11937352", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "richardcobbett", - "id_str": "11937352", - "id": 11937352, - "indices": [ - 0, - 15 - ], - "name": "Richard Cobbett" - } - ] - }, - "created_at": "Fri Jan 08 21:38:16 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685541670797066240, - "lang": "en" - }, - "default_profile_image": false, - "id": 8882, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/747211922/19e80a54bd6192d234ca49d92c163bb6.jpeg", - "statuses_count": 23267, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8882/1437719429", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2814334612", - "following": false, - "friends_count": 1766, - "entities": { - "description": { - "urls": [ - { - "display_url": "support.livecoding.tv/hc/en-us/", - "url": "https://t.co/TVgA6IUVAn", - "expanded_url": "http://support.livecoding.tv/hc/en-us/", - "indices": [ - 99, - 122 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "Livecoding.tv", - "url": "http://t.co/lVXlTFxxhh", - "expanded_url": "http://Livecoding.tv", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3898, - "location": "San Francisco, CA", - "screen_name": "livecodingtv", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 382, - "name": "Livecoding.tv", - "profile_use_background_image": true, - "description": "Watch coders code products live and hang out with them. Need help? Contact us on our 24/7 Support: https://t.co/TVgA6IUVAn", - "url": "http://t.co/lVXlTFxxhh", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/539451988929294337/hCieN16A_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Oct 07 14:59:48 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/539451988929294337/hCieN16A_normal.png", - "favourites_count": 3209, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613612736491520", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "livecoding.tv/matiuri/", - "url": "https://t.co/joEy4ii6fh", - "expanded_url": "https://www.livecoding.tv/matiuri/", - "indices": [ - 33, - 56 - ] - } - ], - "hashtags": [ - { - "indices": [ - 57, - 66 - ], - "text": "software" - }, - { - "indices": [ - 67, - 74 - ], - "text": "hacker" - }, - { - "indices": [ - 75, - 82 - ], - "text": "Others" - } - ], - "user_mentions": [ - { - "screen_name": "ssmatiuri", - "id_str": "1596168408", - "id": 1596168408, - "indices": [ - 83, - 93 - ], - "name": "Mati" - } - ] - }, - "created_at": "Sat Jan 09 00:06:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613612736491520, - "text": "Join Now! \"[ES] Instalando Arch\" https://t.co/joEy4ii6fh #software #hacker #Others @ssmatiuri", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "www.livecoding.tv" - }, - "default_profile_image": false, - "id": 2814334612, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 16431, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2814334612/1450958451", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18957805", - "following": false, - "friends_count": 441, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "archive.org", - "url": "https://t.co/gFtuG5SqUT", - "expanded_url": "https://archive.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/824436651/5e495f5ed45112e2b934b44af16bd6db.png", - "notifications": false, - "profile_sidebar_fill_color": "A0BECA", - "profile_link_color": "706870", - "geo_enabled": false, - "followers_count": 61736, - "location": "San Francisco, CA", - "screen_name": "internetarchive", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2781, - "name": "Internet Archive", - "profile_use_background_image": true, - "description": "Internet Archive is a non-profit digital library offering access to millions of free books, movies, and audio files, plus an archive of 450+ billion web pages.", - "url": "https://t.co/gFtuG5SqUT", - "profile_text_color": "01010A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3429956268/696d9025562f74aa9fab3cac657e02bf_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jan 13 23:06:00 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3429956268/696d9025562f74aa9fab3cac657e02bf_normal.png", - "favourites_count": 879, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685585572157521920", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/candorville/st\u2026", - "url": "https://t.co/a6oJAnksj4", - "expanded_url": "https://twitter.com/candorville/status/685371445313056768", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:15:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685585572157521920, - "text": "LOL! Hopefully 240 years hence the Wayback Machine will be providing equally historically accurate comic relief. https://t.co/a6oJAnksj4", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18957805, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/824436651/5e495f5ed45112e2b934b44af16bd6db.png", - "statuses_count": 1810, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18957805/1364244002", - "is_translator": false - }, - { - "time_zone": "Baghdad", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 10800, - "id_str": "1142688962", - "following": false, - "friends_count": 2055, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "GetSSL.me", - "url": "http://t.co/hUpzJMIvWi", - "expanded_url": "http://GetSSL.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/780968171/aef915881e63f509158002a3fbd8fe8c.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 2812, - "location": "", - "screen_name": "GetSSL_me", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "GetSSL.me", - "profile_use_background_image": false, - "description": "SSL certificate store", - "url": "http://t.co/hUpzJMIvWi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/473898989666844673/hvjUN2wi_normal.png", - "profile_background_color": "EEEEEE", - "created_at": "Sat Feb 02 15:19:56 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/473898989666844673/hvjUN2wi_normal.png", - "favourites_count": 156, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677088841602207745", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 689, - "h": 224, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 195, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 110, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWWAtslU8AApPx2.png", - "type": "photo", - "indices": [ - 74, - 97 - ], - "media_url": "http://pbs.twimg.com/media/CWWAtslU8AApPx2.png", - "display_url": "pic.twitter.com/lrjQASms3Z", - "id_str": "677088841539317760", - "expanded_url": "http://twitter.com/datazenit/status/677088841602207745/photo/1", - "id": 677088841539317760, - "url": "https://t.co/lrjQASms3Z" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1RRq3Vy", - "url": "https://t.co/AMiIYBRbcu", - "expanded_url": "http://buff.ly/1RRq3Vy", - "indices": [ - 50, - 73 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 16 11:32:14 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677088841602207745, - "text": "Datazenit Beta v0.9.26: The biggest update so far https://t.co/AMiIYBRbcu https://t.co/lrjQASms3Z", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677163466134831105", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 689, - "h": 224, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 195, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 110, - "resize": "fit" - } - }, - "source_status_id_str": "677088841602207745", - "url": "https://t.co/lrjQASms3Z", - "media_url": "http://pbs.twimg.com/media/CWWAtslU8AApPx2.png", - "source_user_id_str": "1957458986", - "id_str": "677088841539317760", - "id": 677088841539317760, - "media_url_https": "https://pbs.twimg.com/media/CWWAtslU8AApPx2.png", - "type": "photo", - "indices": [ - 89, - 112 - ], - "source_status_id": 677088841602207745, - "source_user_id": 1957458986, - "display_url": "pic.twitter.com/lrjQASms3Z", - "expanded_url": "http://twitter.com/datazenit/status/677088841602207745/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1RRq3Vy", - "url": "https://t.co/AMiIYBRbcu", - "expanded_url": "http://buff.ly/1RRq3Vy", - "indices": [ - 65, - 88 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "datazenit", - "id_str": "1957458986", - "id": 1957458986, - "indices": [ - 3, - 13 - ], - "name": "Datazenit" - } - ] - }, - "created_at": "Wed Dec 16 16:28:46 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677163466134831105, - "text": "RT @datazenit: Datazenit Beta v0.9.26: The biggest update so far https://t.co/AMiIYBRbcu https://t.co/lrjQASms3Z", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 1142688962, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/780968171/aef915881e63f509158002a3fbd8fe8c.png", - "statuses_count": 538, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1142688962/1401820904", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14623460", - "following": false, - "friends_count": 13543, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "veracode.com", - "url": "http://t.co/sz31rPl3Q1", - "expanded_url": "http://www.veracode.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441339837979701248/zd3XfrWb.png", - "notifications": false, - "profile_sidebar_fill_color": "0099CC", - "profile_link_color": "3F979D", - "geo_enabled": true, - "followers_count": 18214, - "location": "Burlington, MA, USA", - "screen_name": "Veracode", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 465, - "name": "Veracode", - "profile_use_background_image": true, - "description": "The Most Powerful Application Security Platform on the Planet. SDLC | Web | Mobile | Third-Party", - "url": "http://t.co/sz31rPl3Q1", - "profile_text_color": "FFFFFF", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477142547349782528/OSJs9BCN_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Fri May 02 08:09:00 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477142547349782528/OSJs9BCN_normal.png", - "favourites_count": 4842, - "status": { - "retweet_count": 9, - "retweeted_status": { - "retweet_count": 9, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685533900882329600", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "arstechnica.com/security/2016/\u2026", - "url": "https://t.co/4LI0EyvoAk", - "expanded_url": "http://arstechnica.com/security/2016/01/gm-embraces-white-hats-with-public-vulnerability-disclosure-program/", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:49:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685533900882329600, - "text": "GM embraces white-hat hackers with public vulnerability disclosure program https://t.co/4LI0EyvoAk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685543297645936641", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "arstechnica.com/security/2016/\u2026", - "url": "https://t.co/4LI0EyvoAk", - "expanded_url": "http://arstechnica.com/security/2016/01/gm-embraces-white-hats-with-public-vulnerability-disclosure-program/", - "indices": [ - 89, - 112 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "WeldPond", - "id_str": "14090906", - "id": 14090906, - "indices": [ - 3, - 12 - ], - "name": "Chris Wysopal" - } - ] - }, - "created_at": "Fri Jan 08 19:27:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685543297645936641, - "text": "RT @WeldPond: GM embraces white-hat hackers with public vulnerability disclosure program https://t.co/4LI0EyvoAk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 14623460, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441339837979701248/zd3XfrWb.png", - "statuses_count": 6786, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623460/1402594350", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1465481", - "following": false, - "friends_count": 607, - "entities": { - "description": { - "urls": [ - { - "display_url": "TEXTFILES.COM", - "url": "http://t.co/YyhkEb8AoI", - "expanded_url": "http://TEXTFILES.COM", - "indices": [ - 14, - 36 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ascii.textfiles.com", - "url": "http://t.co/1f0N0Joxb7", - "expanded_url": "http://ascii.textfiles.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456574636491161600/YFsbi-ex.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 14912, - "location": "The 1980s", - "screen_name": "textfiles", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 876, - "name": "Jason Scott", - "profile_use_background_image": true, - "description": "Proprietor of http://t.co/YyhkEb8AoI, historian, filmmaker, archivist, famous cat maintenance staff. Works on/for/over the Internet Archive.", - "url": "http://t.co/1f0N0Joxb7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/665625640251584516/-4Tubhvj_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Mar 19 02:55:22 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/665625640251584516/-4Tubhvj_normal.jpg", - "favourites_count": 280, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685599995375038465", - "geo": { - "coordinates": [ - 40.73527558, - -74.00495104 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "swarmapp.com/c/f4nW3mcQScT", - "url": "https://t.co/2YXt5wob8G", - "expanded_url": "https://www.swarmapp.com/c/f4nW3mcQScT", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RalphLauren", - "id_str": "34395888", - "id": 34395888, - "indices": [ - 100, - 112 - ], - "name": "Ralph Lauren" - } - ] - }, - "created_at": "Fri Jan 08 23:12:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.026675, - 40.683935 - ], - [ - -73.910408, - 40.683935 - ], - [ - -73.910408, - 40.877483 - ], - [ - -74.026675, - 40.877483 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Manhattan, NY", - "id": "01a9a39529b27f36", - "name": "Manhattan" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685599995375038465, - "text": "Holy crap. When I hit my goal weight, I will march here and have my next major custom suit (@ RRL - @ralphlauren) https://t.co/2YXt5wob8G", - "coordinates": { - "coordinates": [ - -74.00495104, - 40.73527558 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Foursquare" - }, - "default_profile_image": false, - "id": 1465481, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456574636491161600/YFsbi-ex.jpeg", - "statuses_count": 48579, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1465481/1398239070", - "is_translator": false - }, - { - "time_zone": "Edinburgh", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "139083857", - "following": false, - "friends_count": 8855, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 8863, - "location": "Yestor", - "screen_name": "Yestormato", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 70, - "name": "Jim", - "profile_use_background_image": true, - "description": "Yes music, Jon Anderson plus Prog & Rock music.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/549996258031857664/7CbHLozt_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat May 01 14:00:10 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/549996258031857664/7CbHLozt_normal.jpeg", - "favourites_count": 756, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "koosk47", - "in_reply_to_user_id": 796887842, - "in_reply_to_status_id_str": "685242714837913601", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685245318292762625", - "id": 685245318292762625, - "text": "@koosk47 My pleasure Steven :-)", - "in_reply_to_user_id_str": "796887842", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "koosk47", - "id_str": "796887842", - "id": 796887842, - "indices": [ - 0, - 8 - ], - "name": "Steven McCue" - } - ] - }, - "created_at": "Thu Jan 07 23:43:09 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685242714837913601, - "lang": "en" - }, - "default_profile_image": false, - "id": 139083857, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 19808, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/139083857/1446231777", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2485442528", - "following": false, - "friends_count": 4, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "turing.cool", - "url": "http://t.co/ABE7FRpbCJ", - "expanded_url": "http://turing.cool", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "345161", - "geo_enabled": false, - "followers_count": 326, - "location": "Philly + Seattle", - "screen_name": "turingcool", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "Turing Incomplete", - "profile_use_background_image": true, - "description": "A podcast about programming by @justincampbell, @jearvon, @pamasaur, and @ignu", - "url": "http://t.co/ABE7FRpbCJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/474863977676029952/6nPyuDmm_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri May 09 14:07:34 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/474863977676029952/6nPyuDmm_normal.png", - "favourites_count": 13, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677923206196514816", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "turing.cool/72", - "url": "https://t.co/5SlFfLGerL", - "expanded_url": "http://turing.cool/72", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lgbtqfm", - "id_str": "4359368233", - "id": 4359368233, - "indices": [ - 57, - 65 - ], - "name": "LGBTQ Tech Podcast" - } - ] - }, - "created_at": "Fri Dec 18 18:47:42 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677923206196514816, - "text": "Turing-Incomplete #72 - Inevitability and what have you\n\n@lgbtqfm, JavaScript, and the physics of spacetime\n\nhttps://t.co/5SlFfLGerL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 2485442528, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 103, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2485442528/1414710977", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15119662", - "following": false, - "friends_count": 3967, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/epowell/", - "url": "http://t.co/iEltF4lNo0", - "expanded_url": "http://www.linkedin.com/in/epowell/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "486091", - "geo_enabled": true, - "followers_count": 5024, - "location": "Palo Alto, CA", - "screen_name": "epowell101", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 222, - "name": "Evan Powell", - "profile_use_background_image": true, - "description": "Infrastructure entrepreneur. Founding CEO of @Stack_Storm. Former EIR w @XSeedCapital. Founding CEO of Nexenta & Clarus (RVBD). #DevOps #automation #opensource", - "url": "http://t.co/iEltF4lNo0", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000420844277/bfa89acd028cb4f4a97c543aa33f61b9_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jun 14 20:37:48 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000420844277/bfa89acd028cb4f4a97c543aa33f61b9_normal.jpeg", - "favourites_count": 3065, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685551803044249600", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "redd.it/3ztcla", - "url": "https://t.co/C6Wa98PSra", - "expanded_url": "https://redd.it/3ztcla", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [ - { - "indices": [ - 20, - 28 - ], - "text": "chatops" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:01:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685551803044249600, - "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 15119662, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3495, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15119662/1398364953", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "182323597", - "following": false, - "friends_count": 2046, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "graylog.org", - "url": "http://t.co/SQMbZ5jVuX", - "expanded_url": "http://www.graylog.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "CE232A", - "geo_enabled": true, - "followers_count": 4021, - "location": "Houston, TX / Hamburg, Germany", - "screen_name": "graylog2", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 141, - "name": "Graylog", - "profile_use_background_image": true, - "description": "Open source, centralized log management. Made with love in Germany and Texas.", - "url": "http://t.co/SQMbZ5jVuX", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/562404576330915840/_HU28D42_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Aug 24 10:11:05 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/562404576330915840/_HU28D42_normal.png", - "favourites_count": 325, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685514898843893761", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "siawyoung.com/coding/sysadmi\u2026", - "url": "https://t.co/gQvJKppcD2", - "expanded_url": "http://siawyoung.com/coding/sysadmin/graylog2/logging-rogger-graylog2-twilio.html", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "graylog2", - "id_str": "182323597", - "id": 182323597, - "indices": [ - 126, - 135 - ], - "name": "Graylog" - } - ] - }, - "created_at": "Fri Jan 08 17:34:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685514898843893761, - "text": "Check out how I'm using Rogger, Graylog2 and Twilio to notify me of exceptions in Rake tasks by SMS \ud83d\ude07 https://t.co/gQvJKppcD2 @graylog2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685521651530768384", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "siawyoung.com/coding/sysadmi\u2026", - "url": "https://t.co/gQvJKppcD2", - "expanded_url": "http://siawyoung.com/coding/sysadmin/graylog2/logging-rogger-graylog2-twilio.html", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "siawyoung", - "id_str": "28130320", - "id": 28130320, - "indices": [ - 3, - 13 - ], - "name": "Lau Siaw Young" - }, - { - "screen_name": "graylog2", - "id_str": "182323597", - "id": 182323597, - "indices": [ - 139, - 140 - ], - "name": "Graylog" - } - ] - }, - "created_at": "Fri Jan 08 18:01:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685521651530768384, - "text": "RT @siawyoung: Check out how I'm using Rogger, Graylog2 and Twilio to notify me of exceptions in Rake tasks by SMS \ud83d\ude07 https://t.co/gQvJKppcD\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 182323597, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 974, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/182323597/1384882795", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "112601087", - "following": false, - "friends_count": 99, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "codeascraft.com", - "url": "http://t.co/3ZgrIFLcxr", - "expanded_url": "http://codeascraft.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/558826649/background.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "666666", - "geo_enabled": true, - "followers_count": 8416, - "location": "NYC & SF", - "screen_name": "codeascraft", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 282, - "name": "Etsy Engineering", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/3ZgrIFLcxr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2240963155/codeascraft-twitter_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Tue Feb 09 02:42:06 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2240963155/codeascraft-twitter_normal.png", - "favourites_count": 85, - "status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679381492896817152", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "codeascraft.com/2015/12/21/lev\u2026", - "url": "https://t.co/WbvulRW23h", - "expanded_url": "https://codeascraft.com/2015/12/21/leveling-up-with-system-reviews/", - "indices": [ - 107, - 130 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "johngoulah", - "id_str": "22407045", - "id": 22407045, - "indices": [ - 13, - 24 - ], - "name": "John Goulah" - } - ] - }, - "created_at": "Tue Dec 22 19:22:24 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/011add077f4d2da3.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.041878, - 40.570842 - ], - [ - -73.855673, - 40.570842 - ], - [ - -73.855673, - 40.739434 - ], - [ - -74.041878, - 40.739434 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Brooklyn, NY", - "id": "011add077f4d2da3", - "name": "Brooklyn" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679381492896817152, - "text": "On the blog: @johngoulah describes using system reviews to identify organizational and cultural challenges https://t.co/WbvulRW23h", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 112601087, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/558826649/background.jpg", - "statuses_count": 330, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "31204696", - "following": false, - "friends_count": 749, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nodebotani.st", - "url": "https://t.co/WMf50wjXlo", - "expanded_url": "http://nodebotani.st", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 2864, - "location": "Austin, TX", - "screen_name": "nodebotanist", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 228, - "name": "Mx Kas Perch", - "profile_use_background_image": true, - "description": "Dev Evangelist @auth0. @nodebotslive /NodeBots author/addict. Gamer. Crafter. Baseball fan. Attempted Intersectional Feminist. Any pronouns. Avi/@nvcexploder.", - "url": "https://t.co/WMf50wjXlo", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/665620578351583232/m5ki022s_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Apr 14 19:37:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/665620578351583232/m5ki022s_normal.jpg", - "favourites_count": 11867, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685549691468029952", - "id": 685549691468029952, - "text": "Where you spend 2 hours debugging a software problem...that turns out to be a well-known hardware limitation. That you knew about. /sigh", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:52:38 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 31204696, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 11671, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/31204696/1441908212", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "47494539", - "following": false, - "friends_count": 304, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kellabyte.com", - "url": "http://t.co/Ipj1OcvrAi", - "expanded_url": "http://kellabyte.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/37790197/01341_headingwest_1440x900.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 24999, - "location": "Canada", - "screen_name": "kellabyte", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1283, - "name": "Kelly Sommers", - "profile_use_background_image": true, - "description": "3x Windows Azure MVP & Former 2x DataStax MVP for Apache Cassandra, Backend brat, big data, distributed diva. Relentless learner. I void warranties.", - "url": "http://t.co/Ipj1OcvrAi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2808005971/b81b99287e78b1cd6cbd0e5cbfb3295c_normal.png", - "profile_background_color": "9AE4E8", - "created_at": "Tue Jun 16 00:43:48 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2808005971/b81b99287e78b1cd6cbd0e5cbfb3295c_normal.png", - "favourites_count": 4875, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "aka_pugs", - "in_reply_to_user_id": 2241477403, - "in_reply_to_status_id_str": "684943018621730816", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684943143695941632", - "id": 684943143695941632, - "text": "@aka_pugs @Obdurodon Yeah absolutely. I wonder how the USB3 capable boards perform. Most are USB2 but a few are USB3.", - "in_reply_to_user_id_str": "2241477403", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "aka_pugs", - "id_str": "2241477403", - "id": 2241477403, - "indices": [ - 0, - 9 - ], - "name": "Tom Lyon" - }, - { - "screen_name": "Obdurodon", - "id_str": "15663547", - "id": 15663547, - "indices": [ - 10, - 20 - ], - "name": "Jeff Darcy" - } - ] - }, - "created_at": "Thu Jan 07 03:42:25 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684943018621730816, - "lang": "en" - }, - "default_profile_image": false, - "id": 47494539, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/37790197/01341_headingwest_1440x900.jpg", - "statuses_count": 92792, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "2436389418", - "following": false, - "friends_count": 4456, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/swiftonsecurit\u2026", - "url": "https://t.co/W6mjdDNww9", - "expanded_url": "https://twitter.com/swiftonsecurity/status/570638981009948673", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 109196, - "location": "WELCOME TO NEW YORK", - "screen_name": "SwiftOnSecurity", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2881, - "name": "SecuriTay", - "profile_use_background_image": true, - "description": "I make stupid jokes, talk about consumer technology security, and use Oxford commas. See website link for ethics statement.", - "url": "https://t.co/W6mjdDNww9", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661039155753807872/-KODvkhT_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu Apr 10 02:54:26 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661039155753807872/-KODvkhT_normal.jpg", - "favourites_count": 33215, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685608025202114561", - "id": 685608025202114561, - "text": "Correction: I presented an old policy statement from @letsencrypt as if it were a response to the current issues. I apologize for the error.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "letsencrypt", - "id_str": "2887837801", - "id": 2887837801, - "indices": [ - 53, - 65 - ], - "name": "Let's Encrypt" - } - ] - }, - "created_at": "Fri Jan 08 23:44:25 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 10, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2436389418, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 27965, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2436389418/1445620137", - "is_translator": false - }, - { - "time_zone": "Warsaw", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "515908759", - "following": false, - "friends_count": 221, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kamilogorek.pl", - "url": "https://t.co/RltIhVl0fV", - "expanded_url": "http://kamilogorek.pl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 351, - "location": "Krak\u00f3w", - "screen_name": "kamilogorek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Kamil Og\u00f3rek", - "profile_use_background_image": false, - "description": "Weightlifter, climber, athlete, drummer and music lover. Training and nutrition geek. Senior Client-side Engineer @xteam. @AmpersandJS core team.", - "url": "https://t.co/RltIhVl0fV", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666395289809526784/fiSRceCT_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Mar 05 21:59:18 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666395289809526784/fiSRceCT_normal.jpg", - "favourites_count": 1694, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685103356033904640", - "id": 685103356033904640, - "text": "You know what's bad? Lack of tests.\nYou know what's worse? Broken tests.\nYou know what's the worst? Broken async promise-based tests.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 14:19:03 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 515908759, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", - "statuses_count": 1766, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/515908759/1447716102", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15524875", - "following": false, - "friends_count": 1002, - "entities": { - "description": { - "urls": [ - { - "display_url": "jewelbots.com", - "url": "http://t.co/EsgzOffGD7", - "expanded_url": "http://jewelbots.com", - "indices": [ - 121, - 143 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "SaraJChipps.com", - "url": "http://t.co/v61Pc3zFKU", - "expanded_url": "http://SaraJChipps.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99724100/2010-05-04_09.15.13.jpg.scaled.1000.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 29650, - "location": "body in BK, heart in NJ", - "screen_name": "SaraJChipps", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1952, - "name": "SaraReyChipps", - "profile_use_background_image": true, - "description": "Just a girl, standing in front of a microprocessor, asking it to love her. I made @girldevelopit. I'm making @jewelbots. http://t.co/EsgzOffGD7", - "url": "http://t.co/v61Pc3zFKU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629693983610961921/k-pW0Isa_normal.png", - "profile_background_color": "FFF04D", - "created_at": "Tue Jul 22 02:26:37 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFF8AD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629693983610961921/k-pW0Isa_normal.png", - "favourites_count": 36619, - "status": { - "retweet_count": 3797, - "retweeted_status": { - "retweet_count": 3797, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685548067802714112", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 628, - "h": 387, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 369, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 209, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", - "type": "photo", - "indices": [ - 80, - 103 - ], - "media_url": "http://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", - "display_url": "pic.twitter.com/uhUjs26qFK", - "id_str": "685547983375626240", - "expanded_url": "http://twitter.com/BuzzFeed/status/685548067802714112/photo/1", - "id": 685547983375626240, - "url": "https://t.co/uhUjs26qFK" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:46:10 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685548067802714112, - "text": "Today is the 15-year anniversary of the most iconic red carpet appearance ever. https://t.co/uhUjs26qFK", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4096, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685556065816064001", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 628, - "h": 387, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 369, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 209, - "resize": "fit" - } - }, - "source_status_id_str": "685548067802714112", - "url": "https://t.co/uhUjs26qFK", - "media_url": "http://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", - "source_user_id_str": "5695632", - "id_str": "685547983375626240", - "id": 685547983375626240, - "media_url_https": "https://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", - "type": "photo", - "indices": [ - 94, - 117 - ], - "source_status_id": 685548067802714112, - "source_user_id": 5695632, - "display_url": "pic.twitter.com/uhUjs26qFK", - "expanded_url": "http://twitter.com/BuzzFeed/status/685548067802714112/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BuzzFeed", - "id_str": "5695632", - "id": 5695632, - "indices": [ - 3, - 12 - ], - "name": "BuzzFeed" - } - ] - }, - "created_at": "Fri Jan 08 20:17:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685556065816064001, - "text": "RT @BuzzFeed: Today is the 15-year anniversary of the most iconic red carpet appearance ever. https://t.co/uhUjs26qFK", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Mobile Web (M5)" - }, - "default_profile_image": false, - "id": 15524875, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99724100/2010-05-04_09.15.13.jpg.scaled.1000.jpg", - "statuses_count": 45323, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15524875/1404073059", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "91333167", - "following": false, - "friends_count": 9538, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "climagic.org", - "url": "http://t.co/dUakp9EMPS", - "expanded_url": "http://www.climagic.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/60122174/checkertermbackground.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 110657, - "location": "BASHLAND", - "screen_name": "climagic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3043, - "name": "Command Line Magic", - "profile_use_background_image": true, - "description": "Cool Unix/Linux Command Line tricks you can use in 140 characters or less.", - "url": "http://t.co/dUakp9EMPS", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/535876218/climagic-icon_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Nov 20 12:49:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/535876218/climagic-icon_normal.png", - "favourites_count": 81, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "drscriptt", - "in_reply_to_user_id": 179397824, - "in_reply_to_status_id_str": "685587768823562240", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685599165511036930", - "id": 685599165511036930, - "text": "@drscriptt yes I was curious if it would work and it did. The bash order of operations allows it.", - "in_reply_to_user_id_str": "179397824", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "drscriptt", - "id_str": "179397824", - "id": 179397824, - "indices": [ - 0, - 10 - ], - "name": "Grant Taylor" - } - ] - }, - "created_at": "Fri Jan 08 23:09:13 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685587768823562240, - "lang": "en" - }, - "default_profile_image": false, - "id": 91333167, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/60122174/checkertermbackground.png", - "statuses_count": 8785, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "984722142", - "following": false, - "friends_count": 494, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pinitto.me", - "url": "http://t.co/IRN9Ht9Z", - "expanded_url": "http://www.pinitto.me", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/727281958/35fa768cbbcd6dbccece000b924c8e62.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 126, - "location": "Bristol, UK", - "screen_name": "Pinittome", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "pinitto.me", - "profile_use_background_image": true, - "description": "New open source corkboard-style application. Written using nodejs, express, socket.io, and jquery.", - "url": "http://t.co/IRN9Ht9Z", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3010874913/f4cde223912ba24b68c57c20001844a2_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Dec 02 14:33:38 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3010874913/f4cde223912ba24b68c57c20001844a2_normal.png", - "favourites_count": 9, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "683932116539863040", - "id": 683932116539863040, - "text": "Happy new year! Server costs this month were $18.61 help us keep our servers alive for another year with a donation :)", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 08:44:58 +0000 2016", - "source": "Facebook", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 984722142, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/727281958/35fa768cbbcd6dbccece000b924c8e62.jpeg", - "statuses_count": 234, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/984722142/1359537842", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "158704969", - "following": false, - "friends_count": 296, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3618, - "location": "Not Silicon Valley", - "screen_name": "rvagg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 198, - "name": "Rod Vagg", - "profile_use_background_image": true, - "description": "Incorrect", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/550632925209698305/YQmyExEj_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 23 11:25:46 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/550632925209698305/YQmyExEj_normal.png", - "favourites_count": 3471, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "nzgb", - "in_reply_to_user_id": 329661096, - "in_reply_to_status_id_str": "685613430770892801", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613633615704064", - "id": 685613633615704064, - "text": "@nzgb fwiw I think fleshing out something for node-eps would be constructive but it would be a big discussion and long process", - "in_reply_to_user_id_str": "329661096", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nzgb", - "id_str": "329661096", - "id": 329661096, - "indices": [ - 0, - 5 - ], - "name": "Nicol\u00e1s Bevacqua" - } - ] - }, - "created_at": "Sat Jan 09 00:06:42 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685613430770892801, - "lang": "en" - }, - "default_profile_image": false, - "id": 158704969, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8035, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "64218381", - "following": false, - "friends_count": 1244, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "benatkin.com", - "url": "https://t.co/nw7V3ZCyTY", - "expanded_url": "http://benatkin.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "969696", - "geo_enabled": true, - "followers_count": 1828, - "location": "San Francisco", - "screen_name": "benatkin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 180, - "name": "benatkin", - "profile_use_background_image": false, - "description": "web developer who thrives on green tea and granola. can be found online or in the bay area.", - "url": "https://t.co/nw7V3ZCyTY", - "profile_text_color": "666666", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/635674829526462464/smsXzzPs_normal.png", - "profile_background_color": "000000", - "created_at": "Sun Aug 09 17:58:37 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/635674829526462464/smsXzzPs_normal.png", - "favourites_count": 23393, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685295871299211264", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 734, - "h": 1024, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 837, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 474, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKo9XdVAAAflKT.jpg", - "type": "photo", - "indices": [ - 14, - 37 - ], - "media_url": "http://pbs.twimg.com/media/CYKo9XdVAAAflKT.jpg", - "display_url": "pic.twitter.com/KnCLRtluuO", - "id_str": "685295865536249856", - "expanded_url": "http://twitter.com/benatkin/status/685295871299211264/photo/1", - "id": 685295865536249856, - "url": "https://t.co/KnCLRtluuO" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "potasmic", - "id_str": "120103910", - "id": 120103910, - "indices": [ - 4, - 13 - ], - "name": "Potasmic" - } - ] - }, - "created_at": "Fri Jan 08 03:04:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685295871299211264, - "text": "via @potasmic https://t.co/KnCLRtluuO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 64218381, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 54174, - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "1508475829", - "following": false, - "friends_count": 380, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "webrtchacks.com", - "url": "http://t.co/hO41DRjg5f", - "expanded_url": "http://webrtchacks.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2056, - "location": "", - "screen_name": "webrtcHacks", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 82, - "name": "webrtcHacks", - "profile_use_background_image": true, - "description": "WebRTC information & experiments for developers", - "url": "http://t.co/hO41DRjg5f", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000477595516/5247654c3fcf51cf8b4d69133871908c_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 12 02:58:03 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000477595516/5247654c3fcf51cf8b4d69133871908c_normal.png", - "favourites_count": 18, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681519669975465984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "webrtchacks.com/chrome-secure-\u2026", - "url": "https://t.co/jVfEoJItlZ", - "expanded_url": "https://webrtchacks.com/chrome-secure-origin-https/", - "indices": [ - 68, - 91 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Dec 28 16:58:46 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681519669975465984, - "text": "webrtcH4cKS: ~ Surviving Mandatory HTTPS in Chrome (Xander Dumaine)\nhttps://t.co/jVfEoJItlZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681554888099278848", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "webrtchacks.com/chrome-secure-\u2026", - "url": "https://t.co/jVfEoJItlZ", - "expanded_url": "https://webrtchacks.com/chrome-secure-origin-https/", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Invisible_Alan", - "id_str": "323926038", - "id": 323926038, - "indices": [ - 3, - 18 - ], - "name": "Alan Tai" - } - ] - }, - "created_at": "Mon Dec 28 19:18:42 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681554888099278848, - "text": "RT @Invisible_Alan: webrtcH4cKS: ~ Surviving Mandatory HTTPS in Chrome (Xander Dumaine)\nhttps://t.co/jVfEoJItlZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 1508475829, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 649, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2972985398", - "following": false, - "friends_count": 810, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 718, - "location": "", - "screen_name": "electricatz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 36, - "name": "michelle@tinwhiskers", - "profile_use_background_image": true, - "description": "Software Engineer, Vice President of @crashspaceLA", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668207391951863815/fv5L-Sbt_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jan 10 20:52:01 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668207391951863815/fv5L-Sbt_normal.jpg", - "favourites_count": 3597, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685499886150660096", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", - "type": "photo", - "indices": [ - 79, - 102 - ], - "media_url": "http://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", - "display_url": "pic.twitter.com/wny85nk7EI", - "id_str": "685499874427551745", - "expanded_url": "http://twitter.com/crashspaceLA/status/685499886150660096/photo/1", - "id": 685499874427551745, - "url": "https://t.co/wny85nk7EI" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "electricatz", - "id_str": "2972985398", - "id": 2972985398, - "indices": [ - 17, - 29 - ], - "name": "michelle@tinwhiskers" - } - ] - }, - "created_at": "Fri Jan 08 16:34:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685499886150660096, - "text": "Dr Evelyn and Dr @electricatz brought this poor broken LED strip back to life! https://t.co/wny85nk7EI", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685500599098458113", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "685499886150660096", - "url": "https://t.co/wny85nk7EI", - "media_url": "http://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", - "source_user_id_str": "82969116", - "id_str": "685499874427551745", - "id": 685499874427551745, - "media_url_https": "https://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", - "type": "photo", - "indices": [ - 97, - 120 - ], - "source_status_id": 685499886150660096, - "source_user_id": 82969116, - "display_url": "pic.twitter.com/wny85nk7EI", - "expanded_url": "http://twitter.com/crashspaceLA/status/685499886150660096/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "crashspaceLA", - "id_str": "82969116", - "id": 82969116, - "indices": [ - 3, - 16 - ], - "name": "CRASH Space" - }, - { - "screen_name": "electricatz", - "id_str": "2972985398", - "id": 2972985398, - "indices": [ - 35, - 47 - ], - "name": "michelle@tinwhiskers" - } - ] - }, - "created_at": "Fri Jan 08 16:37:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685500599098458113, - "text": "RT @crashspaceLA: Dr Evelyn and Dr @electricatz brought this poor broken LED strip back to life! https://t.co/wny85nk7EI", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2972985398, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1047, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2972985398/1420923586", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": -18000, - "id_str": "423269417", - "blocking": false, - "is_translation_enabled": true, - "id": 423269417, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 28 08:59:15 +0000 2011", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", - "favourites_count": 22, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 149, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 4, - "notifications": false, - "screen_name": "Httphub", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 6, - "is_translator": false, - "name": "HTTPHUB" - }, - { - "time_zone": "Pretoria", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "66759988", - "following": false, - "friends_count": 206, - "entities": { - "description": { - "urls": [ - { - "display_url": "JRuDevels.org", - "url": "http://t.co/bQViyxTgJE", - "expanded_url": "http://JRuDevels.org", - "indices": [ - 0, - 22 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "hidevlab.com", - "url": "http://t.co/7kPnyskpNl", - "expanded_url": "http://hidevlab.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 121, - "location": "Omsk, Capetown", - "screen_name": "JBinary", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Sergey Dobrov", - "profile_use_background_image": true, - "description": "http://t.co/bQViyxTgJE founder, XMPP/Web/Python/JS developer", - "url": "http://t.co/7kPnyskpNl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/551104450954551297/ZYZ3b7Fr_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Tue Aug 18 18:38:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551104450954551297/ZYZ3b7Fr_normal.jpeg", - "favourites_count": 700, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "xzmbjk", - "in_reply_to_user_id": 312577640, - "in_reply_to_status_id_str": "685490061710868480", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685500622725058560", - "id": 685500622725058560, - "text": "@xzmbjk @sd0107 \u044f \u0432\u0430\u043c \u043a\u0430\u043a \u0421\u0435\u0440\u0433\u0435\u0439 \u0414. \u0433\u043e\u0432\u043e\u0440\u044e: \u043d\u0435 \u0412\u0421\u0401 \u0442\u0430\u043a \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e!", - "in_reply_to_user_id_str": "312577640", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "xzmbjk", - "id_str": "312577640", - "id": 312577640, - "indices": [ - 0, - 7 - ], - "name": "KillU" - }, - { - "screen_name": "sd0107", - "id_str": "125478107", - "id": 125478107, - "indices": [ - 8, - 15 - ], - "name": "\u0421\u0435\u0440\u0433\u0435\u0439 \u0414" - } - ] - }, - "created_at": "Fri Jan 08 16:37:39 +0000 2016", - "source": "Fenix for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685490061710868480, - "lang": "ru" - }, - "default_profile_image": false, - "id": 66759988, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 4105, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "72982024", - "following": false, - "friends_count": 17743, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gapingvoid.com", - "url": "https://t.co/5hsg8TV77Z", - "expanded_url": "http://www.gapingvoid.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 46406, - "location": "", - "screen_name": "gapingvoid", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 793, - "name": "gapingvoid", - "profile_use_background_image": false, - "description": "Culture change management driven visual tools that transform your organization. Clients @Microsoft @Rackspace @Zappos @Ditech @VMware", - "url": "https://t.co/5hsg8TV77Z", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/577587854324334592/7KgDP9lW_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Sep 09 23:28:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/577587854324334592/7KgDP9lW_normal.jpeg", - "favourites_count": 7725, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": 72982024, - "possibly_sensitive": false, - "id_str": "685236456563044352", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 852, - "h": 568, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", - "type": "photo", - "indices": [ - 81, - 104 - ], - "media_url": "http://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", - "display_url": "pic.twitter.com/VdE5BS6M5a", - "id_str": "685236454897799168", - "expanded_url": "http://twitter.com/hughcartoons/status/685236456563044352/photo/1", - "id": 685236454897799168, - "url": "https://t.co/VdE5BS6M5a" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "us1.campaign-archive1.com/?u=028de8672d5\u2026", - "url": "https://t.co/lE8zFGbUv7", - "expanded_url": "http://us1.campaign-archive1.com/?u=028de8672d5f9a229f15e9edf&id=2ed0934892&e=ead155b89c", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "gapingvoid", - "id_str": "72982024", - "id": 72982024, - "indices": [ - 0, - 11 - ], - "name": "gapingvoid" - } - ] - }, - "created_at": "Thu Jan 07 23:07:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "72982024", - "place": null, - "in_reply_to_screen_name": "gapingvoid", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685236456563044352, - "text": "@gapingvoid is launching a weekly healthcare newsletter: https://t.co/lE8zFGbUv7 https://t.co/VdE5BS6M5a", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685558361710972929", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 852, - "h": 568, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - } - }, - "source_status_id_str": "685236456563044352", - "url": "https://t.co/VdE5BS6M5a", - "media_url": "http://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", - "source_user_id_str": "50193", - "id_str": "685236454897799168", - "id": 685236454897799168, - "media_url_https": "https://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", - "type": "photo", - "indices": [ - 99, - 122 - ], - "source_status_id": 685236456563044352, - "source_user_id": 50193, - "display_url": "pic.twitter.com/VdE5BS6M5a", - "expanded_url": "http://twitter.com/hughcartoons/status/685236456563044352/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "us1.campaign-archive1.com/?u=028de8672d5\u2026", - "url": "https://t.co/lE8zFGbUv7", - "expanded_url": "http://us1.campaign-archive1.com/?u=028de8672d5f9a229f15e9edf&id=2ed0934892&e=ead155b89c", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "hughcartoons", - "id_str": "50193", - "id": 50193, - "indices": [ - 3, - 16 - ], - "name": "Hugh MacLeod" - }, - { - "screen_name": "gapingvoid", - "id_str": "72982024", - "id": 72982024, - "indices": [ - 18, - 29 - ], - "name": "gapingvoid" - } - ] - }, - "created_at": "Fri Jan 08 20:27:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685558361710972929, - "text": "RT @hughcartoons: @gapingvoid is launching a weekly healthcare newsletter: https://t.co/lE8zFGbUv7 https://t.co/VdE5BS6M5a", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 72982024, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6561, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/72982024/1426542650", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1547166745", - "following": false, - "friends_count": 282, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 45, - "location": "", - "screen_name": "311onwax", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "James Jeffers", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000046852675/b9acdfc70098f944711254b1cf8b54f5_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 26 02:30:52 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000046852675/b9acdfc70098f944711254b1cf8b54f5_normal.jpeg", - "favourites_count": 202, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "The90sLife", - "in_reply_to_user_id": 436411543, - "in_reply_to_status_id_str": "680751289454706688", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "680776290635493376", - "id": 680776290635493376, - "text": "@The90sLife remember jumping on the bear for extra lives?", - "in_reply_to_user_id_str": "436411543", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "The90sLife", - "id_str": "436411543", - "id": 436411543, - "indices": [ - 0, - 11 - ], - "name": "The 90s Life" - } - ] - }, - "created_at": "Sat Dec 26 15:44:50 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 680751289454706688, - "lang": "en" - }, - "default_profile_image": false, - "id": 1547166745, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 738, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16487505", - "following": false, - "friends_count": 7172, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "coreylatislaw.com/android-activi\u2026", - "url": "https://t.co/pnzBLFwf6Y", - "expanded_url": "http://coreylatislaw.com/android-activity-book/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 6518, - "location": "Philadelphia, PA", - "screen_name": "corey_latislaw", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 416, - "name": "Corey Leigh Latislaw", - "profile_use_background_image": true, - "description": "Geeky eco-minded nature-loving technophile. Feminist. Android GDE, lead at @OffGridE, international speaker, sketchnoter, founder @bushelme and @androidphilly.", - "url": "https://t.co/pnzBLFwf6Y", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677142271708389376/JNfgckjB_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Sat Sep 27 16:59:53 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677142271708389376/JNfgckjB_normal.jpg", - "favourites_count": 6107, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685604608668991488", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 1319, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 438, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 773, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPBvszWMAAkgEo.jpg", - "type": "photo", - "indices": [ - 56, - 79 - ], - "media_url": "http://pbs.twimg.com/media/CYPBvszWMAAkgEo.jpg", - "display_url": "pic.twitter.com/WSNqJCvfwf", - "id_str": "685604593514983424", - "expanded_url": "http://twitter.com/corey_latislaw/status/685604608668991488/photo/1", - "id": 685604593514983424, - "url": "https://t.co/WSNqJCvfwf" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:30:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/e4a0d228eb6be76b.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -75.280284, - 39.871811 - ], - [ - -74.955712, - 39.871811 - ], - [ - -74.955712, - 40.13792 - ], - [ - -75.280284, - 40.13792 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Philadelphia, PA", - "id": "e4a0d228eb6be76b", - "name": "Philadelphia" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685604608668991488, - "text": "Very orangey! Was expecting more violet, but I love it. https://t.co/WSNqJCvfwf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 16487505, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 20816, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16487505/1441343221", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "12708782", - "following": false, - "friends_count": 1826, - "entities": { - "description": { - "urls": [ - { - "display_url": "theubergeekgirl.com/now", - "url": "https://t.co/kB9kUAGaVJ", - "expanded_url": "http://theubergeekgirl.com/now", - "indices": [ - 0, - 23 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "about.me/jessicadevita", - "url": "https://t.co/SB2xmt7RdJ", - "expanded_url": "http://about.me/jessicadevita", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614503590699249664/84bvDwxx.png", - "notifications": false, - "profile_sidebar_fill_color": "D4D4D4", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 5078, - "location": "Santa Monica", - "screen_name": "UberGeekGirl", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 350, - "name": "Jessica DeVita", - "profile_use_background_image": true, - "description": "https://t.co/kB9kUAGaVJ Mom of 3 boys and wifey to the brilliant @wx13 - I work at @chef", - "url": "https://t.co/SB2xmt7RdJ", - "profile_text_color": "363636", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/484435199413870592/WBnTIeTR_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Sat Jan 26 04:07:39 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/484435199413870592/WBnTIeTR_normal.jpeg", - "favourites_count": 3259, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jkc137", - "in_reply_to_user_id": 10349862, - "in_reply_to_status_id_str": "685570894735917056", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685582311757201408", - "id": 685582311757201408, - "text": "@jkc137 me too! I'm your wingman", - "in_reply_to_user_id_str": "10349862", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jkc137", - "id_str": "10349862", - "id": 10349862, - "indices": [ - 0, - 7 - ], - "name": "Jennelle Crothers" - } - ] - }, - "created_at": "Fri Jan 08 22:02:15 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685570894735917056, - "lang": "en" - }, - "default_profile_image": false, - "id": 12708782, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614503590699249664/84bvDwxx.png", - "statuses_count": 21948, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12708782/1363463180", - "is_translator": false - }, - { - "time_zone": "Stockholm", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "124424508", - "following": false, - "friends_count": 662, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eslgaming.com", - "url": "https://t.co/1Lr55AyjF7", - "expanded_url": "http://eslgaming.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": false, - "followers_count": 63667, - "location": "Cologne, Germany", - "screen_name": "ApolloSC2", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 826, - "name": "Shaun Clark", - "profile_use_background_image": true, - "description": "Host/Caster + Creative Producer @esl - I work on the @starcraft World Championship Series and @iem", - "url": "https://t.co/1Lr55AyjF7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669865323596750849/MUITbX1v_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Fri Mar 19 10:38:52 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669865323596750849/MUITbX1v_normal.jpg", - "favourites_count": 4264, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "DrAeromi", - "in_reply_to_user_id": 789979346, - "in_reply_to_status_id_str": "685591729962151936", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685591864750272512", - "id": 685591864750272512, - "text": "@DrAeromi I was stating what is to watch tomorrow, yes, great weekend", - "in_reply_to_user_id_str": "789979346", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DrAeromi", - "id_str": "789979346", - "id": 789979346, - "indices": [ - 0, - 9 - ], - "name": "Aeromi" - } - ] - }, - "created_at": "Fri Jan 08 22:40:12 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685591729962151936, - "lang": "en" - }, - "default_profile_image": false, - "id": 124424508, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 23753, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/124424508/1408376520", - "is_translator": false - }, - { - "time_zone": "Seoul", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 32400, - "id_str": "20291791", - "following": false, - "friends_count": 917, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91402336/seoul-image.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0099CC", - "geo_enabled": false, - "followers_count": 82806, - "location": "Seoul Korea", - "screen_name": "CallMeTasteless", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1366, - "name": "Nick Plott", - "profile_use_background_image": true, - "description": "\u30fd\u0f3c\u0e88\u0644\u035c\u0e88\u0f3d\uff89", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1142888206/Smoking-Monkey-143_normal.jpg", - "profile_background_color": "FFF04D", - "created_at": "Sat Feb 07 03:22:08 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFF8AD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1142888206/Smoking-Monkey-143_normal.jpg", - "favourites_count": 1303, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685417920306872322", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "i.imgur.com/PVGVSZQ.png", - "url": "https://t.co/PzUNLgnL5H", - "expanded_url": "http://i.imgur.com/PVGVSZQ.png", - "indices": [ - 0, - 23 - ] - } - ], - "hashtags": [ - { - "indices": [ - 33, - 37 - ], - "text": "GSL" - } - ], - "user_mentions": [ - { - "screen_name": "CallMeTasteless", - "id_str": "20291791", - "id": 20291791, - "indices": [ - 38, - 54 - ], - "name": "Nick Plott" - } - ] - }, - "created_at": "Fri Jan 08 11:09:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "tl", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685417920306872322, - "text": "https://t.co/PzUNLgnL5H \nHahahah #GSL @CallMeTasteless", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685420804587192320", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "i.imgur.com/PVGVSZQ.png", - "url": "https://t.co/PzUNLgnL5H", - "expanded_url": "http://i.imgur.com/PVGVSZQ.png", - "indices": [ - 16, - 39 - ] - } - ], - "hashtags": [ - { - "indices": [ - 49, - 53 - ], - "text": "GSL" - } - ], - "user_mentions": [ - { - "screen_name": "Arkanthiel", - "id_str": "248599146", - "id": 248599146, - "indices": [ - 3, - 14 - ], - "name": "Judes Lopez" - }, - { - "screen_name": "CallMeTasteless", - "id_str": "20291791", - "id": 20291791, - "indices": [ - 54, - 70 - ], - "name": "Nick Plott" - } - ] - }, - "created_at": "Fri Jan 08 11:20:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "tl", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685420804587192320, - "text": "RT @Arkanthiel: https://t.co/PzUNLgnL5H \nHahahah #GSL @CallMeTasteless", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 20291791, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91402336/seoul-image.jpg", - "statuses_count": 2819, - "is_translator": false - }, - { - "time_zone": "Seoul", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 32400, - "id_str": "20240002", - "following": false, - "friends_count": 1009, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Facebook.com/Artosis", - "url": "http://t.co/dlzcMKReqY", - "expanded_url": "http://www.Facebook.com/Artosis", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520550316761042945/eX4AmP3Q.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 119473, - "location": "Seoul, South Korea", - "screen_name": "Artosis", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 1751, - "name": "Dan Stemkoski", - "profile_use_background_image": true, - "description": "Professional Commentator. I work in the eSports industry in Seoul. Some call me the King of the Nerds.. business email: Artosis@Artosis.com", - "url": "http://t.co/dlzcMKReqY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2976039428/90c5360b6f1ec28756ef4f1f479047ae_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Feb 06 14:27:47 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2976039428/90c5360b6f1ec28756ef4f1f479047ae_normal.jpeg", - "favourites_count": 3875, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": 20291791, - "possibly_sensitive": false, - "id_str": "685429388830191616", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "i.imgur.com/R1Azh6M.png", - "url": "https://t.co/n3KK3Ay9ck", - "expanded_url": "http://i.imgur.com/R1Azh6M.png", - "indices": [ - 82, - 105 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CallMeTasteless", - "id_str": "20291791", - "id": 20291791, - "indices": [ - 0, - 16 - ], - "name": "Nick Plott" - }, - { - "screen_name": "Artosis", - "id_str": "20240002", - "id": 20240002, - "indices": [ - 17, - 25 - ], - "name": "Dan Stemkoski" - } - ] - }, - "created_at": "Fri Jan 08 11:54:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "20291791", - "place": null, - "in_reply_to_screen_name": "CallMeTasteless", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685429388830191616, - "text": "@CallMeTasteless @Artosis can't wait till TLO finds a way to make those viable :D https://t.co/n3KK3Ay9ck", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685445422609911808", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "i.imgur.com/R1Azh6M.png", - "url": "https://t.co/n3KK3Ay9ck", - "expanded_url": "http://i.imgur.com/R1Azh6M.png", - "indices": [ - 96, - 119 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dNaGER87", - "id_str": "242503069", - "id": 242503069, - "indices": [ - 3, - 12 - ], - "name": "dNa" - }, - { - "screen_name": "CallMeTasteless", - "id_str": "20291791", - "id": 20291791, - "indices": [ - 14, - 30 - ], - "name": "Nick Plott" - }, - { - "screen_name": "Artosis", - "id_str": "20240002", - "id": 20240002, - "indices": [ - 31, - 39 - ], - "name": "Dan Stemkoski" - } - ] - }, - "created_at": "Fri Jan 08 12:58:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685445422609911808, - "text": "RT @dNaGER87: @CallMeTasteless @Artosis can't wait till TLO finds a way to make those viable :D https://t.co/n3KK3Ay9ck", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 20240002, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520550316761042945/eX4AmP3Q.jpeg", - "statuses_count": 10364, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/20240002/1445320663", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "102556161", - "following": false, - "friends_count": 1518, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hardballpassport.com/traveler/can0k", - "url": "http://t.co/xIZ89IMcok", - "expanded_url": "http://hardballpassport.com/traveler/can0k", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/633818417791832065/5B1eAlBd.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 128, - "location": "Hamilton, ON, Canada", - "screen_name": "can0k", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "can\u00d8k", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/xIZ89IMcok", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1356656867/The_Three_Monkeys__small_cropped__normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Jan 07 02:57:31 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1356656867/The_Three_Monkeys__small_cropped__normal.jpg", - "favourites_count": 2300, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MissStaceyMay", - "in_reply_to_user_id": 16894531, - "in_reply_to_status_id_str": "677864704774119424", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677994798800871432", - "id": 677994798800871432, - "text": "@MissStaceyMay Thank you for sharing this. Thank you for all of the amazing pieces you've penned in 2015, but this.. this was exceptional.", - "in_reply_to_user_id_str": "16894531", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MissStaceyMay", - "id_str": "16894531", - "id": 16894531, - "indices": [ - 0, - 14 - ], - "name": "Stacey May Fowles" - } - ] - }, - "created_at": "Fri Dec 18 23:32:11 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 677864704774119424, - "lang": "en" - }, - "default_profile_image": false, - "id": 102556161, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/633818417791832065/5B1eAlBd.jpg", - "statuses_count": 328, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/102556161/1439947791", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "634563", - "following": false, - "friends_count": 1647, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/573163012560838657/wPG_e6O-.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "D5C6A4", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1636, - "location": "Minneapolis", - "screen_name": "Dan_H", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 147, - "name": "Dan Hendricks", - "profile_use_background_image": true, - "description": "DEMO VERSION \u2014 PLEASE REGISTER", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/626093873874534400/Wt9nR9rx_normal.jpg", - "profile_background_color": "635E40", - "created_at": "Mon Jan 15 06:13:25 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626093873874534400/Wt9nR9rx_normal.jpg", - "favourites_count": 19298, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "themacinjosh", - "in_reply_to_user_id": 629743, - "in_reply_to_status_id_str": "685567075318796288", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685567219149869056", - "id": 685567219149869056, - "text": "@themacinjosh I've considered taking it in for a replacement", - "in_reply_to_user_id_str": "629743", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "themacinjosh", - "id_str": "629743", - "id": 629743, - "indices": [ - 0, - 13 - ], - "name": "Josh Windisch" - } - ] - }, - "created_at": "Fri Jan 08 21:02:16 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685567075318796288, - "lang": "en" - }, - "default_profile_image": false, - "id": 634563, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/573163012560838657/wPG_e6O-.jpeg", - "statuses_count": 376, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/634563/1449672635", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Providing cynicism, puns & network engineering at http://t.co/ICuRcKcV", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "218431233", - "blocking": false, - "is_translation_enabled": false, - "id": 218431233, - "entities": { - "description": { - "urls": [ - { - "display_url": "demonware.net", - "url": "http://t.co/ICuRcKcV", - "expanded_url": "http://www.demonware.net", - "indices": [ - 50, - 70 - ] - } - ] - } - }, - "profile_background_color": "022330", - "created_at": "Mon Nov 22 10:04:01 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/1582073440/photo_low_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652161561948131328/n7ZOru4H.jpg", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "statuses_count": 70, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1582073440/photo_low_normal.jpg", - "favourites_count": 24, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 37, - "blocked_by": false, - "following": false, - "location": "Vancouver, Canada", - "muting": false, - "friends_count": 212, - "notifications": false, - "screen_name": "clarkegm", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652161561948131328/n7ZOru4H.jpg", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 1, - "is_translator": false, - "name": "Martin" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "32346831", - "following": false, - "friends_count": 605, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stumptownbear.com", - "url": "http://t.co/56KHvt1dgZ", - "expanded_url": "http://stumptownbear.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "6B7A8C", - "geo_enabled": true, - "followers_count": 142, - "location": "Portland, Or", - "screen_name": "evan_is", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Evan Price", - "profile_use_background_image": true, - "description": "Internet maker at Stumptown Bear. Noise maker in @iounoi and @pmachines.", - "url": "http://t.co/56KHvt1dgZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/560517008228225024/Opg6uwaL_normal.jpeg", - "profile_background_color": "DBE9ED", - "created_at": "Fri Apr 17 08:22:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBE9ED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/560517008228225024/Opg6uwaL_normal.jpeg", - "favourites_count": 175, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685275131036352512", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 400, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 400, - "h": 400, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKWGaMUQAAJMYq.jpg", - "type": "photo", - "indices": [ - 101, - 124 - ], - "media_url": "http://pbs.twimg.com/media/CYKWGaMUQAAJMYq.jpg", - "display_url": "pic.twitter.com/JUfNcKenL9", - "id_str": "685275130168098816", - "expanded_url": "http://twitter.com/evan_is/status/685275131036352512/photo/1", - "id": 685275130168098816, - "url": "https://t.co/JUfNcKenL9" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 01:41:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685275131036352512, - "text": "Who wants to hire me full time? I'm super at javascript and like digging in the front-end ecosystem. https://t.co/JUfNcKenL9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 32346831, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "statuses_count": 2135, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/32346831/1423208569", - "is_translator": false - }, - { - "time_zone": "Sydney", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "146395819", - "following": false, - "friends_count": 5211, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "uk.linkedin.com/in/girifox/", - "url": "http://t.co/bxxnTEfTO4", - "expanded_url": "http://uk.linkedin.com/in/girifox/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "4377D1", - "geo_enabled": true, - "followers_count": 6839, - "location": "London", - "screen_name": "girifox", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 149, - "name": "Giri Fox", - "profile_use_background_image": true, - "description": "Director @RackspaceUK of managed services for our major customers, and technical pre-sales. Seeks root cause. Geek into enterprise tech and fixing processes.", - "url": "http://t.co/bxxnTEfTO4", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2200752799/giri-fox_casual_50__head_cropped_normal.jpg", - "profile_background_color": "352726", - "created_at": "Fri May 21 09:49:42 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2200752799/giri-fox_casual_50__head_cropped_normal.jpg", - "favourites_count": 569, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685262896595648513", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1JIPpOG", - "url": "https://t.co/hTGaA1IHqa", - "expanded_url": "http://bit.ly/1JIPpOG", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rightscale", - "id_str": "14940523", - "id": 14940523, - "indices": [ - 114, - 125 - ], - "name": "RightScale" - } - ] - }, - "created_at": "Fri Jan 08 00:53:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685262896595648513, - "text": "\"CloudOps Nirvana: Achieve Continuous Ops in Public and Private Clouds\" https://t.co/hTGaA1IHqa -- implies using @rightscale", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 146395819, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 9130, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/146395819/1399670881", - "is_translator": false - }, - { - "time_zone": "UTC", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "17958179", - "following": false, - "friends_count": 1712, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "brennannovak.com", - "url": "https://t.co/en2YSt9fOA", - "expanded_url": "https://brennannovak.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3941228/back.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "B42400", - "geo_enabled": true, - "followers_count": 5159, - "location": "", - "screen_name": "brennannovak", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 175, - "name": "Brennan Novak", - "profile_use_background_image": true, - "description": "General cypherpunkery. Trying to fix things. Sometimes hopeful. Sometimes not. @QubesOS @TransparencyKit @OpenSrcDesign @MailpileTeam", - "url": "https://t.co/en2YSt9fOA", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3465346200/3887a9d367bf61ad50fa794a32c7ce21_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Dec 08 06:54:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "E6E6E6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3465346200/3887a9d367bf61ad50fa794a32c7ce21_normal.jpeg", - "favourites_count": 3967, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "altquinn", - "in_reply_to_user_id": 781453303, - "in_reply_to_status_id_str": "685176481123729408", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685178308917604352", - "id": 685178308917604352, - "text": "@altquinn which articles are you referring to?", - "in_reply_to_user_id_str": "781453303", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "altquinn", - "id_str": "781453303", - "id": 781453303, - "indices": [ - 0, - 9 - ], - "name": "Quinn Norton" - } - ] - }, - "created_at": "Thu Jan 07 19:16:53 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685176481123729408, - "lang": "en" - }, - "default_profile_image": false, - "id": 17958179, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3941228/back.jpg", - "statuses_count": 10863, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17958179/1398249956", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2959291297", - "following": false, - "friends_count": 1995, - "entities": { - "description": { - "urls": [ - { - "display_url": "security-sleuth.com", - "url": "http://t.co/kG6hxW7E7l", - "expanded_url": "http://security-sleuth.com", - "indices": [ - 134, - 156 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "security-sleuth.com", - "url": "http://t.co/HazOriRs2u", - "expanded_url": "http://www.security-sleuth.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 1197, - "location": "Cyberspace", - "screen_name": "Security_Sleuth", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "The Security Sleuth", - "profile_use_background_image": false, - "description": "Young up and coming #security professional dedicated to uncovering Security and #privacy issues in our everyday lives. Read my blog @ http://t.co/kG6hxW7E7l", - "url": "http://t.co/HazOriRs2u", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/552003711426248705/vnC2-j2h_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Jan 05 06:49:02 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/552003711426248705/vnC2-j2h_normal.jpeg", - "favourites_count": 50, - "status": { - "retweet_count": 111, - "retweeted_status": { - "retweet_count": 111, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685277451740553217", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 256, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 772, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 452, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", - "display_url": "pic.twitter.com/IaffDrzwC4", - "id_str": "685277450192879616", - "expanded_url": "http://twitter.com/binitamshah/status/685277451740553217/photo/1", - "id": 685277450192879616, - "url": "https://t.co/IaffDrzwC4" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "jide.com/en/remixos/dev\u2026", - "url": "https://t.co/IWhe1WxIv4", - "expanded_url": "http://www.jide.com/en/remixos/devices", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 01:50:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685277451740553217, - "text": "Remix OS : Android based OS for desktop (and it works with nearly any PC (or Mac ) : https://t.co/IWhe1WxIv4 https://t.co/IaffDrzwC4", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 130, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685347531916750849", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 256, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 772, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 452, - "resize": "fit" - } - }, - "source_status_id_str": "685277451740553217", - "url": "https://t.co/IaffDrzwC4", - "media_url": "http://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", - "source_user_id_str": "23090019", - "id_str": "685277450192879616", - "id": 685277450192879616, - "media_url_https": "https://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685277451740553217, - "source_user_id": 23090019, - "display_url": "pic.twitter.com/IaffDrzwC4", - "expanded_url": "http://twitter.com/binitamshah/status/685277451740553217/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "jide.com/en/remixos/dev\u2026", - "url": "https://t.co/IWhe1WxIv4", - "expanded_url": "http://www.jide.com/en/remixos/devices", - "indices": [ - 103, - 126 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "binitamshah", - "id_str": "23090019", - "id": 23090019, - "indices": [ - 3, - 15 - ], - "name": "Binni Shah" - } - ] - }, - "created_at": "Fri Jan 08 06:29:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685347531916750849, - "text": "RT @binitamshah: Remix OS : Android based OS for desktop (and it works with nearly any PC (or Mac ) : https://t.co/IWhe1WxIv4 https://t.co\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2959291297, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 348, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2959291297/1425687182", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "96848570", - "following": false, - "friends_count": 297, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "day9.tv", - "url": "http://t.co/2SVmmy7vaY", - "expanded_url": "http://www.day9.tv", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/290746944/day9tv-twitter-bkR1.jpg", - "notifications": false, - "profile_sidebar_fill_color": "131313", - "profile_link_color": "FFA71A", - "geo_enabled": false, - "followers_count": 201480, - "location": "", - "screen_name": "day9tv", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2649, - "name": "Sean Plott", - "profile_use_background_image": true, - "description": "Learn lots. Don't judge. Laugh for no reason. Be nice. Seek happiness.", - "url": "http://t.co/2SVmmy7vaY", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/497129205692239872/x2MebV6i_normal.png", - "profile_background_color": "131313", - "created_at": "Mon Dec 14 21:50:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/497129205692239872/x2MebV6i_normal.png", - "favourites_count": 389, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "685529740547993601", - "id": 685529740547993601, - "text": "Grabbing new headphones before showtime today! Might be 15m late lol :P", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:33:21 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 43, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 96848570, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/290746944/day9tv-twitter-bkR1.jpg", - "statuses_count": 13235, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/96848570/1353534662", - "is_translator": false - }, - { - "time_zone": "Jerusalem", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "553492685", - "following": false, - "friends_count": 297, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "webservices20.blogspot.com", - "url": "http://t.co/gOiPMFkAB9", - "expanded_url": "http://webservices20.blogspot.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675966453/eea3b1b6458b8e4b3bc0aa1841a4ea53.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "281E17", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 674, - "location": "Israel", - "screen_name": "YaronNaveh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Yaron Naveh", - "profile_use_background_image": true, - "description": "Node.JS and open source developer. Web services addict. Lives in the Cloud. Works @ Facebook.", - "url": "http://t.co/gOiPMFkAB9", - "profile_text_color": "7A5C45", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477414043607498754/JMb6ecqx_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sat Apr 14 12:29:00 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477414043607498754/JMb6ecqx_normal.jpeg", - "favourites_count": 902, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 141934364, - "possibly_sensitive": false, - "id_str": "685454499016740864", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/hustcer/star", - "url": "https://t.co/NFOKpzpbbR", - "expanded_url": "https://github.com/hustcer/star", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sakanabiscuit", - "id_str": "141934364", - "id": 141934364, - "indices": [ - 0, - 14 - ], - "name": "\u3164" - } - ] - }, - "created_at": "Fri Jan 08 13:34:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "141934364", - "place": null, - "in_reply_to_screen_name": "sakanabiscuit", - "in_reply_to_status_id_str": "685320456564441088", - "truncated": false, - "id": 685454499016740864, - "text": "@sakanabiscuit any language you can in the terminal is possible. recently I've seen Chinese https://t.co/NFOKpzpbbR and also French before", - "coordinates": null, - "in_reply_to_status_id": 685320456564441088, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 553492685, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675966453/eea3b1b6458b8e4b3bc0aa1841a4ea53.jpeg", - "statuses_count": 521, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/553492685/1406714550", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "686803", - "following": false, - "friends_count": 1027, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nesbitt.io", - "url": "http://t.co/Jf3LNbrp8J", - "expanded_url": "http://nesbitt.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/750371030/86f4c2397325bcd6305c75abc235ece3.png", - "notifications": false, - "profile_sidebar_fill_color": "C4D6F5", - "profile_link_color": "5074CF", - "geo_enabled": true, - "followers_count": 4202, - "location": "Somerset, UK", - "screen_name": "teabass", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 297, - "name": "Andrew Nesbitt", - "profile_use_background_image": true, - "description": "Founder of @Librariesio and @24pullrequests, previously worked at @GitHub", - "url": "http://t.co/Jf3LNbrp8J", - "profile_text_color": "0A0A0A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669795308738596864/E2xmHvPR_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jan 23 15:01:41 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669795308738596864/E2xmHvPR_normal.jpg", - "favourites_count": 8980, - "status": { - "retweet_count": 22, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 22, - "truncated": false, - "retweeted": false, - "id_str": "685484634835148800", - "id": 685484634835148800, - "text": "I\u2019m leaving Pusher and looking for a new challenge. Please get in touch if you know of anything phil@leggetter.co.uk \ud83d\ude80", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:34:07 +0000 2016", - "source": "TweetDeck", - "favorite_count": 15, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685490089682665472", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "leggetter", - "id_str": "14455530", - "id": 14455530, - "indices": [ - 3, - 13 - ], - "name": "Phil Leggetter" - } - ] - }, - "created_at": "Fri Jan 08 15:55:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685490089682665472, - "text": "RT @leggetter: I\u2019m leaving Pusher and looking for a new challenge. Please get in touch if you know of anything phil@leggetter.co.uk \ud83d\ude80", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 686803, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/750371030/86f4c2397325bcd6305c75abc235ece3.png", - "statuses_count": 30708, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/686803/1414274531", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "10497132", - "following": false, - "friends_count": 304, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "goettner.net", - "url": "http://t.co/IFzFJy0qHq", - "expanded_url": "http://www.goettner.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3904681/TwitterBack.gif", - "notifications": false, - "profile_sidebar_fill_color": "FEFED7", - "profile_link_color": "2C89AA", - "geo_enabled": true, - "followers_count": 192, - "location": "", - "screen_name": "LewG", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Lew Goettner", - "profile_use_background_image": true, - "description": "Sometimes I type slow, sometimes I type quick.", - "url": "http://t.co/IFzFJy0qHq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2182323909/LewSquareCutOff_normal.jpg", - "profile_background_color": "88B7FF", - "created_at": "Fri Nov 23 16:57:34 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "B6C5D8", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2182323909/LewSquareCutOff_normal.jpg", - "favourites_count": 138, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684731614128136192", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tnw.to/h4y0U", - "url": "https://t.co/yfY3o8r7CN", - "expanded_url": "http://tnw.to/h4y0U", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheNextWeb", - "id_str": "10876852", - "id": 10876852, - "indices": [ - 99, - 110 - ], - "name": "The Next Web" - } - ] - }, - "created_at": "Wed Jan 06 13:41:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684731614128136192, - "text": "\"Web developers rejoice; Internet Explorer 8, 9 and 10 die on Tuesday\" https://t.co/yfY3o8r7CN via @thenextweb -- I know I will!", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 10497132, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3904681/TwitterBack.gif", - "statuses_count": 1118, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10497132/1400780356", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "7378102", - "following": false, - "friends_count": 2059, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bagofonions.com", - "url": "https://t.co/wyoDXMtkmO", - "expanded_url": "https://www.bagofonions.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/531844732435959808/U-trU_g7.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1296, - "location": "Edinburgh ", - "screen_name": "handlewithcare", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 48, - "name": "Martin Hewitt", - "profile_use_background_image": true, - "description": "Product developer @surevine and way of working enthusiast. Building collaboration tools for security-conscious organisations. Bakes bread in the gaps.", - "url": "https://t.co/wyoDXMtkmO", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/71439029/martin_hewitt_byng_systems_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jul 10 17:22:24 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/71439029/martin_hewitt_byng_systems_normal.jpg", - "favourites_count": 187, - "status": { - "retweet_count": 119, - "retweeted_status": { - "retweet_count": 119, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685552439248957441", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/conorpope/stat\u2026", - "url": "https://t.co/Em2DgiRp8G", - "expanded_url": "https://twitter.com/conorpope/status/685540019457658880", - "indices": [ - 93, - 116 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:03:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685552439248957441, - "text": "If I were Ukip I'd be pretty annoyed by the way Labour are muscling in on the fruitcake vote https://t.co/Em2DgiRp8G", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 127, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613249245626369", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/conorpope/stat\u2026", - "url": "https://t.co/Em2DgiRp8G", - "expanded_url": "https://twitter.com/conorpope/status/685540019457658880", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MichaelPDeacon", - "id_str": "506486097", - "id": 506486097, - "indices": [ - 3, - 18 - ], - "name": "Michael Deacon" - } - ] - }, - "created_at": "Sat Jan 09 00:05:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613249245626369, - "text": "RT @MichaelPDeacon: If I were Ukip I'd be pretty annoyed by the way Labour are muscling in on the fruitcake vote https://t.co/Em2DgiRp8G", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 7378102, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/531844732435959808/U-trU_g7.jpeg", - "statuses_count": 38874, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "557543", - "following": false, - "friends_count": 393, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "danworth.com", - "url": "http://t.co/pWB6KBJTAH", - "expanded_url": "http://www.danworth.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18867467/background.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 322, - "location": "Bucks County, PA", - "screen_name": "djworth", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "name": "Dan Worth", - "profile_use_background_image": true, - "description": "Organizer @GolangPhilly", - "url": "http://t.co/pWB6KBJTAH", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/577892800856911872/vHZ0ibNn_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Thu Jan 04 22:09:58 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/577892800856911872/vHZ0ibNn_normal.jpeg", - "favourites_count": 245, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684422155187126272", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "meetu.ps/2RF5qb", - "url": "https://t.co/WBzpYXhPcJ", - "expanded_url": "http://meetu.ps/2RF5qb", - "indices": [ - 35, - 58 - ] - } - ], - "hashtags": [ - { - "indices": [ - 7, - 14 - ], - "text": "golang" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 17:12:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684422155187126272, - "text": "Philly #golang meetup on Jan 12th.\nhttps://t.co/WBzpYXhPcJ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684432613956808704", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "meetu.ps/2RF5qb", - "url": "https://t.co/WBzpYXhPcJ", - "expanded_url": "http://meetu.ps/2RF5qb", - "indices": [ - 52, - 75 - ] - } - ], - "hashtags": [ - { - "indices": [ - 24, - 31 - ], - "text": "golang" - } - ], - "user_mentions": [ - { - "screen_name": "genghisjahn", - "id_str": "16422814", - "id": 16422814, - "indices": [ - 3, - 15 - ], - "name": "Jon Wear" - } - ] - }, - "created_at": "Tue Jan 05 17:53:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684432613956808704, - "text": "RT @genghisjahn: Philly #golang meetup on Jan 12th.\nhttps://t.co/WBzpYXhPcJ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 557543, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18867467/background.png", - "statuses_count": 1274, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11404352", - "following": false, - "friends_count": 877, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jjmiv.us", - "url": "http://t.co/kPt8y3YG6v", - "expanded_url": "http://jjmiv.us", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "005FB3", - "geo_enabled": false, - "followers_count": 311, - "location": "Narberth, PA", - "screen_name": "jjmiv", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "John Mahoney", - "profile_use_background_image": true, - "description": "I like tech, comics, games and being a dad! | DevOps at Capital One | Co-Organizer for @gdgphilly and @docker philly", - "url": "http://t.co/kPt8y3YG6v", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/630421789324275712/7vmC3Ghd_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Dec 21 14:01:47 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/630421789324275712/7vmC3Ghd_normal.jpg", - "favourites_count": 136, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685497618861043712", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/ColliderNews/s\u2026", - "url": "https://t.co/PqTLX42Uq4", - "expanded_url": "https://twitter.com/ColliderNews/status/685494047218241536", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:25:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685497618861043712, - "text": "this makes me feel old. https://t.co/PqTLX42Uq4", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 11404352, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3799, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16422814", - "following": false, - "friends_count": 102, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jonwear.com", - "url": "https://t.co/KL1LvQSpdj", - "expanded_url": "http://www.jonwear.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 217, - "location": "Philadelphia, PA", - "screen_name": "genghisjahn", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Jon Wear", - "profile_use_background_image": false, - "description": "Evacuate? In our moment of triumph? I think you over estimate their chances.", - "url": "https://t.co/KL1LvQSpdj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/585854819010748417/7oM61q6p_normal.png", - "profile_background_color": "022330", - "created_at": "Tue Sep 23 18:17:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/585854819010748417/7oM61q6p_normal.png", - "favourites_count": 1016, - "status": { - "retweet_count": 16, - "retweeted_status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685575798183481344", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "resetplug.com", - "url": "https://t.co/g9bdJ5S1rk", - "expanded_url": "http://resetplug.com/", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:36:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685575798183481344, - "text": "A smart device to reset your router if it can't get on your wifi is a solution that ignores the root problem. https://t.co/g9bdJ5S1rk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 30, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685576188979458048", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "resetplug.com", - "url": "https://t.co/g9bdJ5S1rk", - "expanded_url": "http://resetplug.com/", - "indices": [ - 126, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "shanselman", - "id_str": "5676102", - "id": 5676102, - "indices": [ - 3, - 14 - ], - "name": "Scott Hanselman" - } - ] - }, - "created_at": "Fri Jan 08 21:37:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685576188979458048, - "text": "RT @shanselman: A smart device to reset your router if it can't get on your wifi is a solution that ignores the root problem. https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 16422814, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 4452, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16422814/1435275444", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "110465841", - "following": false, - "friends_count": 2997, - "entities": { - "description": { - "urls": [ - { - "display_url": "hook.io", - "url": "http://t.co/LTk6sENnSE", - "expanded_url": "http://hook.io", - "indices": [ - 77, - 99 - ] - }, - { - "display_url": "github.com/marak", - "url": "http://t.co/hRZPf23WfN", - "expanded_url": "http://github.com/marak", - "indices": [ - 100, - 122 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "marak.com", - "url": "http://t.co/HCfNi319sG", - "expanded_url": "http://marak.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3016, - "location": "The Internet", - "screen_name": "marak", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 255, - "name": "marak", - "profile_use_background_image": true, - "description": "Open-source software developer. Previously founded @Nodejitsu Now working on http://t.co/LTk6sENnSE http://t.co/hRZPf23WfN", - "url": "http://t.co/HCfNi319sG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2555785383/r67mex7tvvowb506u550_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Feb 01 17:02:01 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2555785383/r67mex7tvvowb506u550_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684106649678790656", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22Hitlh", - "url": "https://t.co/S33LyfJ6t2", - "expanded_url": "http://bit.ly/22Hitlh", - "indices": [ - 108, - 131 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 20:18:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684106649678790656, - "text": "Let's talk resolutions (not the pixel kind). 5 essential principals to becoming a better filmmaker in 2016 https://t.co/S33LyfJ6t2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684356338638548992", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22Hitlh", - "url": "https://t.co/S33LyfJ6t2", - "expanded_url": "http://bit.ly/22Hitlh", - "indices": [ - 122, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Frame_io", - "id_str": "1475571811", - "id": 1475571811, - "indices": [ - 3, - 12 - ], - "name": "Frame.io" - } - ] - }, - "created_at": "Tue Jan 05 12:50:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684356338638548992, - "text": "RT @Frame_io: Let's talk resolutions (not the pixel kind). 5 essential principals to becoming a better filmmaker in 2016 https://t.co/S33L\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 110465841, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 442, - "is_translator": false - }, - { - "time_zone": "Tijuana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2898656006", - "following": false, - "friends_count": 9123, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bit.ly/1DLCeu0", - "url": "http://t.co/7jM1haXIYY", - "expanded_url": "http://bit.ly/1DLCeu0", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 12176, - "location": "", - "screen_name": "DevopsRR", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 259, - "name": "DevOps", - "profile_use_background_image": true, - "description": "Live Content Curated by top DevOps Influencers", - "url": "http://t.co/7jM1haXIYY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/532953334261362689/ZTF7QPgY_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Nov 13 17:48:55 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/532953334261362689/ZTF7QPgY_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685576243253661697", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "rightrelevance.com/search/influen\u2026", - "url": "https://t.co/pNpItcLLS6", - "expanded_url": "http://www.rightrelevance.com/search/influencers?query=devops&taccount=devopsrr&time=1452288667.06", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:38:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685576243253661697, - "text": "Top devops Twitter influencers one should follow https://t.co/pNpItcLLS6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "RRPostingApp" - }, - "default_profile_image": false, - "id": 2898656006, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5182, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "28862294", - "following": false, - "friends_count": 2059, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 705, - "location": "Chicago, IL", - "screen_name": "jcattell", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 49, - "name": "Jerry Cattell", - "profile_use_background_image": true, - "description": "infrastructure @enernoc (formerly @pulseenergy, @orbitz, i-drive, @fedex). co-organizer of @devopschicago and @devopsdaysChi. ebook addict.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/126684370/photo-small_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 04 20:18:04 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/126684370/photo-small_normal.jpg", - "favourites_count": 3327, - "status": { - "retweet_count": 19434, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 19434, - "truncated": false, - "retweeted": false, - "id_str": "683715585373372416", - "id": 683715585373372416, - "text": "Today I learned:\nplural of armed black people is thugs\nplural of armed brown people is terrorists\nplural of armed white people is militia", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Jan 03 18:24:33 +0000 2016", - "source": "Twitter for iPad", - "favorite_count": 17267, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "684165529179787264", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "koush", - "id_str": "18918415", - "id": 18918415, - "indices": [ - 3, - 9 - ], - "name": "koush" - } - ] - }, - "created_at": "Tue Jan 05 00:12:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684165529179787264, - "text": "RT @koush: Today I learned:\nplural of armed black people is thugs\nplural of armed brown people is terrorists\nplural of armed white people i\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 28862294, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1477, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "222000294", - "following": false, - "friends_count": 786, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "coalesce.net", - "url": "http://t.co/NsdbJtq5vP", - "expanded_url": "http://coalesce.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000152571431/F1uC7SrW.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 210, - "location": "", - "screen_name": "tracyfloyd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Tracy Floyd", - "profile_use_background_image": true, - "description": "Designer. Pragmatic perfectionist. Definitely know less now than I did in my 20s.", - "url": "http://t.co/NsdbJtq5vP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677686176095055872/yDA8HfOV_normal.png", - "profile_background_color": "131516", - "created_at": "Thu Dec 02 05:20:46 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677686176095055872/yDA8HfOV_normal.png", - "favourites_count": 665, - "status": { - "retweet_count": 136, - "retweeted_status": { - "retweet_count": 136, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684301080080052224", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "swissincss.com", - "url": "https://t.co/SOiMHjAOkr", - "expanded_url": "http://swissincss.com", - "indices": [ - 76, - 99 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "swissmiss", - "id_str": "1504011", - "id": 1504011, - "indices": [ - 105, - 115 - ], - "name": "Tina Roth Eisenberg" - } - ] - }, - "created_at": "Tue Jan 05 09:11:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684301080080052224, - "text": "Swiss in CSS. A beautiful homage with CodePen links to see how it was done. https://t.co/SOiMHjAOkr\n\n/cc @swissmiss", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 236, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684898274747281408", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "swissincss.com", - "url": "https://t.co/SOiMHjAOkr", - "expanded_url": "http://swissincss.com", - "indices": [ - 90, - 113 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "vpieters", - "id_str": "12815", - "id": 12815, - "indices": [ - 3, - 12 - ], - "name": "Veerle Pieters" - }, - { - "screen_name": "swissmiss", - "id_str": "1504011", - "id": 1504011, - "indices": [ - 119, - 129 - ], - "name": "Tina Roth Eisenberg" - } - ] - }, - "created_at": "Thu Jan 07 00:44:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684898274747281408, - "text": "RT @vpieters: Swiss in CSS. A beautiful homage with CodePen links to see how it was done. https://t.co/SOiMHjAOkr\n\n/cc @swissmiss", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitterrific" - }, - "default_profile_image": false, - "id": 222000294, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000152571431/F1uC7SrW.png", - "statuses_count": 843, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/222000294/1398251622", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "428813", - "following": false, - "friends_count": 840, - "entities": { - "description": { - "urls": [ - { - "display_url": "github.com/thepug", - "url": "https://t.co/pXVpePQGaR", - "expanded_url": "https://github.com/thepug", - "indices": [ - 55, - 78 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "unclenaynay.com", - "url": "http://t.co/EbI1b1pXJC", - "expanded_url": "http://unclenaynay.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 796, - "location": "Mount Pleasant, SC", - "screen_name": "thepug", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "Nathan Zorn", - "profile_use_background_image": true, - "description": "Software developer. Currently working for @modernmsg. https://t.co/pXVpePQGaR", - "url": "http://t.co/EbI1b1pXJC", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3203071618/3b84a033819948ec0ccb7f04b0cfb904_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Jan 02 02:12:04 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3203071618/3b84a033819948ec0ccb7f04b0cfb904_normal.jpeg", - "favourites_count": 90, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "684602241198600192", - "id": 684602241198600192, - "text": "Thanks @dallasruby for having me tonight! \u2019twas fun", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dallasruby", - "id_str": "58941505", - "id": 58941505, - "indices": [ - 7, - 18 - ], - "name": "Dallas Ruby Brigade" - } - ] - }, - "created_at": "Wed Jan 06 05:07:48 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685114540783108097", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dealingwith", - "id_str": "379983", - "id": 379983, - "indices": [ - 3, - 15 - ], - "name": "\u2728Daniel Miller\u2728" - }, - { - "screen_name": "dallasruby", - "id_str": "58941505", - "id": 58941505, - "indices": [ - 24, - 35 - ], - "name": "Dallas Ruby Brigade" - } - ] - }, - "created_at": "Thu Jan 07 15:03:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685114540783108097, - "text": "RT @dealingwith: Thanks @dallasruby for having me tonight! \u2019twas fun", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 428813, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2118, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/428813/1359914750", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1967601206", - "following": false, - "friends_count": 22, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "influxdb.com", - "url": "http://t.co/DzRgm2B9Hb", - "expanded_url": "http://influxdb.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 4293, - "location": "NYC, Denver, San Francisco", - "screen_name": "InfluxDB", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 150, - "name": "InfluxData", - "profile_use_background_image": true, - "description": "The Platform for Time-Series Data", - "url": "http://t.co/DzRgm2B9Hb", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674654746725056514/EHg3ZHtE_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Oct 17 21:10:10 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674654746725056514/EHg3ZHtE_normal.jpg", - "favourites_count": 61, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685581760340492288", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1WyNmUS", - "url": "https://t.co/efpu73VnYS", - "expanded_url": "http://bit.ly/1WyNmUS", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:00:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685581760340492288, - "text": "The SF InfluxDB Meetup is looking for developers to share their InfluxDB experiences at a future Meetup, ping us: https://t.co/efpu73VnYS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Sprout Social" - }, - "default_profile_image": false, - "id": 1967601206, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 854, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "614623", - "following": false, - "friends_count": 164, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rae.tnir.org", - "url": "http://t.co/tdvzreHDK8", - "expanded_url": "http://rae.tnir.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/30222/swirly-swirl.jpg", - "notifications": false, - "profile_sidebar_fill_color": "BFD9C7", - "profile_link_color": "069C03", - "geo_enabled": true, - "followers_count": 309, - "location": "Toronto, Canada", - "screen_name": "clith", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Reid", - "profile_use_background_image": false, - "description": "I write iPhone apps", - "url": "http://t.co/tdvzreHDK8", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/574316640143175681/ithojHKm_normal.jpeg", - "profile_background_color": "71AB7B", - "created_at": "Mon Jan 08 18:45:15 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "488553", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/574316640143175681/ithojHKm_normal.jpeg", - "favourites_count": 210, - "status": { - "retweet_count": 153, - "retweeted_status": { - "retweet_count": 153, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684965457640599552", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 427, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", - "type": "photo", - "indices": [ - 66, - 89 - ], - "media_url": "http://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", - "display_url": "pic.twitter.com/cVeckwwvjX", - "id_str": "684965433422684160", - "expanded_url": "http://twitter.com/verge/status/684965457640599552/photo/1", - "id": 684965433422684160, - "url": "https://t.co/cVeckwwvjX" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "theverge.com/2016/1/6/10724\u2026", - "url": "https://t.co/JTkRuPu0Fe", - "expanded_url": "http://www.theverge.com/2016/1/6/10724112/netflix-global-expansion-russia-india", - "indices": [ - 42, - 65 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 05:11:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684965457640599552, - "text": "Netflix has launched in 130 new countries https://t.co/JTkRuPu0Fe https://t.co/cVeckwwvjX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 139, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684992684868567040", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 427, - "resize": "fit" - } - }, - "source_status_id_str": "684965457640599552", - "url": "https://t.co/cVeckwwvjX", - "media_url": "http://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", - "source_user_id_str": "275686563", - "id_str": "684965433422684160", - "id": 684965433422684160, - "media_url_https": "https://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", - "type": "photo", - "indices": [ - 77, - 100 - ], - "source_status_id": 684965457640599552, - "source_user_id": 275686563, - "display_url": "pic.twitter.com/cVeckwwvjX", - "expanded_url": "http://twitter.com/verge/status/684965457640599552/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "theverge.com/2016/1/6/10724\u2026", - "url": "https://t.co/JTkRuPu0Fe", - "expanded_url": "http://www.theverge.com/2016/1/6/10724112/netflix-global-expansion-russia-india", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "verge", - "id_str": "275686563", - "id": 275686563, - "indices": [ - 3, - 9 - ], - "name": "The Verge" - } - ] - }, - "created_at": "Thu Jan 07 06:59:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684992684868567040, - "text": "RT @verge: Netflix has launched in 130 new countries https://t.co/JTkRuPu0Fe https://t.co/cVeckwwvjX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 614623, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/30222/swirly-swirl.jpg", - "statuses_count": 5871, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/614623/1372430024", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "14316334", - "following": false, - "friends_count": 491, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "94D487", - "geo_enabled": false, - "followers_count": 119, - "location": "Dublin, Ireland", - "screen_name": "corriganjc", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 8, - "name": "corriganjc", - "profile_use_background_image": false, - "description": "Programmer, prone to self nerd-sniping. Edge person. Tabletop gamer. Pronouns: he/him.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648607142807752704/a-31fHlt_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Apr 06 16:43:23 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648607142807752704/a-31fHlt_normal.jpg", - "favourites_count": 2697, - "status": { - "retweet_count": 47, - "retweeted_status": { - "retweet_count": 47, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685379627297148929", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 343, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 194, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 343, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", - "type": "photo", - "indices": [ - 115, - 138 - ], - "media_url": "http://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", - "display_url": "pic.twitter.com/pJpYxFAPYc", - "id_str": "685379625904652288", - "expanded_url": "http://twitter.com/LASTEXITshirts/status/685379627297148929/photo/1", - "id": 685379625904652288, - "url": "https://t.co/pJpYxFAPYc" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1ZelBWy", - "url": "https://t.co/3O2rsdovZI", - "expanded_url": "http://bit.ly/1ZelBWy", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [ - { - "indices": [ - 17, - 26 - ], - "text": "RoyBatty" - }, - { - "indices": [ - 62, - 74 - ], - "text": "BladeRunner" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 08:36:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685379627297148929, - "text": "Happy incept day #RoyBatty\nQuote: NEXUS30 for 30% OFF all our #BladeRunner inspired items: https://t.co/3O2rsdovZI https://t.co/pJpYxFAPYc", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 50, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685380282334187520", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 343, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 194, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 343, - "resize": "fit" - } - }, - "source_status_id_str": "685379627297148929", - "url": "https://t.co/pJpYxFAPYc", - "media_url": "http://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", - "source_user_id_str": "37403964", - "id_str": "685379625904652288", - "id": 685379625904652288, - "media_url_https": "https://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685379627297148929, - "source_user_id": 37403964, - "display_url": "pic.twitter.com/pJpYxFAPYc", - "expanded_url": "http://twitter.com/LASTEXITshirts/status/685379627297148929/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1ZelBWy", - "url": "https://t.co/3O2rsdovZI", - "expanded_url": "http://bit.ly/1ZelBWy", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [ - { - "indices": [ - 37, - 46 - ], - "text": "RoyBatty" - }, - { - "indices": [ - 82, - 94 - ], - "text": "BladeRunner" - } - ], - "user_mentions": [ - { - "screen_name": "LASTEXITshirts", - "id_str": "37403964", - "id": 37403964, - "indices": [ - 3, - 18 - ], - "name": "Last Exit To Nowhere" - } - ] - }, - "created_at": "Fri Jan 08 08:39:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685380282334187520, - "text": "RT @LASTEXITshirts: Happy incept day #RoyBatty\nQuote: NEXUS30 for 30% OFF all our #BladeRunner inspired items: https://t.co/3O2rsdovZI http\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 14316334, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 4739, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14316334/1425513148", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15909478", - "following": false, - "friends_count": 2490, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/melindab", - "url": "https://t.co/8OXzCqBbZ6", - "expanded_url": "http://linkedin.com/in/melindab", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2997, - "location": "iPhone: 37.612808,-122.384117", - "screen_name": "MJB_SF", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 362, - "name": "Melinda Byerley", - "profile_use_background_image": true, - "description": "Founder, @timesharecmo. Underrated Badass. Serious/silly. Poetry Writer/Growth Hacker. Owls/Poodles. Cornell MBA/Live in SF.", - "url": "https://t.co/8OXzCqBbZ6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507327885460246529/jcIFzXJA_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Tue Aug 19 20:57:22 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507327885460246529/jcIFzXJA_normal.jpeg", - "favourites_count": 21759, - "status": { - "retweet_count": 6, - "retweeted_status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685514903960956928", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 115, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 203, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 736, - "h": 250, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", - "type": "photo", - "indices": [ - 35, - 58 - ], - "media_url": "http://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", - "display_url": "pic.twitter.com/6B56z8e044", - "id_str": "685514901268250624", - "expanded_url": "http://twitter.com/adamnash/status/685514903960956928/photo/1", - "id": 685514901268250624, - "url": "https://t.co/6B56z8e044" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:34:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/b19a2cc5134b7e0a.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.117916, - 37.3567709 - ], - [ - -122.044969, - 37.3567709 - ], - [ - -122.044969, - 37.436935 - ], - [ - -122.117916, - 37.436935 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Mountain View, CA", - "id": "b19a2cc5134b7e0a", - "name": "Mountain View" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685514903960956928, - "text": "A bit of bitcoin humor for Friday. https://t.co/6B56z8e044", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612530727694336", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 115, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 203, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 736, - "h": 250, - "resize": "fit" - } - }, - "source_status_id_str": "685514903960956928", - "url": "https://t.co/6B56z8e044", - "media_url": "http://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", - "source_user_id_str": "1421521", - "id_str": "685514901268250624", - "id": 685514901268250624, - "media_url_https": "https://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", - "type": "photo", - "indices": [ - 49, - 72 - ], - "source_status_id": 685514903960956928, - "source_user_id": 1421521, - "display_url": "pic.twitter.com/6B56z8e044", - "expanded_url": "http://twitter.com/adamnash/status/685514903960956928/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "adamnash", - "id_str": "1421521", - "id": 1421521, - "indices": [ - 3, - 12 - ], - "name": "Adam Nash" - } - ] - }, - "created_at": "Sat Jan 09 00:02:20 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612530727694336, - "text": "RT @adamnash: A bit of bitcoin humor for Friday. https://t.co/6B56z8e044", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 15909478, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 32361, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15909478/1431361178", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6500812", - "following": false, - "friends_count": 439, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thetofu.com", - "url": "http://t.co/gfLWAwOBtD", - "expanded_url": "http://thetofu.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 472, - "location": "Alameda, CA", - "screen_name": "twonds", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 47, - "name": "Christopher Zorn", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/gfLWAwOBtD", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2439991894/image_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Jun 01 13:42:18 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2439991894/image_normal.jpg", - "favourites_count": 132, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682005975692259328", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 200, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 353, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 600, - "h": 353, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", - "type": "photo", - "indices": [ - 97, - 120 - ], - "media_url": "http://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", - "display_url": "pic.twitter.com/ZWHDgNzKai", - "id_str": "682005975579009026", - "expanded_url": "http://twitter.com/OPENcompanyHQ/status/682005975692259328/photo/1", - "id": 682005975579009026, - "url": "https://t.co/ZWHDgNzKai" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22xjJr9", - "url": "https://t.co/My8exDctys", - "expanded_url": "http://bit.ly/22xjJr9", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 01:11:10 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682005975692259328, - "text": "Our latest OPENcompany newsletter features problems with employee equity https://t.co/My8exDctys https://t.co/ZWHDgNzKai", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682058811050295296", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 200, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 353, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 600, - "h": 353, - "resize": "fit" - } - }, - "source_status_id_str": "682005975692259328", - "url": "https://t.co/ZWHDgNzKai", - "media_url": "http://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", - "source_user_id_str": "3401777441", - "id_str": "682005975579009026", - "id": 682005975579009026, - "media_url_https": "https://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "source_status_id": 682005975692259328, - "source_user_id": 3401777441, - "display_url": "pic.twitter.com/ZWHDgNzKai", - "expanded_url": "http://twitter.com/OPENcompanyHQ/status/682005975692259328/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22xjJr9", - "url": "https://t.co/My8exDctys", - "expanded_url": "http://bit.ly/22xjJr9", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "OPENcompanyHQ", - "id_str": "3401777441", - "id": 3401777441, - "indices": [ - 3, - 17 - ], - "name": "OPENcompany" - } - ] - }, - "created_at": "Wed Dec 30 04:41:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682058811050295296, - "text": "RT @OPENcompanyHQ: Our latest OPENcompany newsletter features problems with employee equity https://t.co/My8exDctys https://t.co/ZWHDgNzKai", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 6500812, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3271, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "106374504", - "following": false, - "friends_count": 23244, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "amazon.co.uk/Impact-Code-Un\u2026", - "url": "http://t.co/1iz3WZs4jJ", - "expanded_url": "http://www.amazon.co.uk/Impact-Code-Unlocking-Resilliance-Productivity/dp/0992860148/ref=sr_1_3?ie=U", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "009EB3", - "geo_enabled": true, - "followers_count": 26228, - "location": "Birmingham ", - "screen_name": "andrewpain1974", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 453, - "name": "Andrew Pain", - "profile_use_background_image": true, - "description": "Author of 'The Impact Code', I help people achieve more by developing their resilience, influence & productivity. Dad to 3 awesome children - Blogger - Coach.", - "url": "http://t.co/1iz3WZs4jJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/467012098359185409/o_Ecebxn_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Jan 19 10:32:32 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/467012098359185409/o_Ecebxn_normal.jpeg", - "favourites_count": 1708, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "fikri_asma", - "in_reply_to_user_id": 2834702484, - "in_reply_to_status_id_str": "685414193906860032", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685429339240939520", - "id": 685429339240939520, - "text": "@fikri_asma - fair enough. Each to their own! :)", - "in_reply_to_user_id_str": "2834702484", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "fikri_asma", - "id_str": "2834702484", - "id": 2834702484, - "indices": [ - 0, - 11 - ], - "name": "Asma Fikri" - } - ] - }, - "created_at": "Fri Jan 08 11:54:23 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685414193906860032, - "lang": "en" - }, - "default_profile_image": false, - "id": 106374504, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", - "statuses_count": 11248, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/106374504/1418213651", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2439889542", - "following": false, - "friends_count": 16, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "grafana.org", - "url": "http://t.co/X4Dm6iWhX5", - "expanded_url": "http://grafana.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3123, - "location": "", - "screen_name": "grafana", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 70, - "name": "Grafana", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/X4Dm6iWhX5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/454950372675571712/rhtKuA9t_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 12 11:32:09 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/454950372675571712/rhtKuA9t_normal.png", - "favourites_count": 41, - "status": { - "retweet_count": 11, - "retweeted_status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684453558545203200", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "type": "photo", - "indices": [ - 113, - 136 - ], - "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "display_url": "pic.twitter.com/GnfOxpEaYF", - "id_str": "684450657458368512", - "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", - "id": 684450657458368512, - "url": "https://t.co/GnfOxpEaYF" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22Jb455", - "url": "https://t.co/aYQvFNmob0", - "expanded_url": "http://bit.ly/22Jb455", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [ - { - "indices": [ - 57, - 68 - ], - "text": "monitoring" - } - ], - "user_mentions": [ - { - "screen_name": "RobustPerceiver", - "id_str": "3328053545", - "id": 3328053545, - "indices": [ - 96, - 112 - ], - "name": "Robust Perception" - } - ] - }, - "created_at": "Tue Jan 05 19:16:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684453558545203200, - "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684456715811729408", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "source_status_id_str": "684453558545203200", - "url": "https://t.co/GnfOxpEaYF", - "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "source_user_id_str": "2782733125", - "id_str": "684450657458368512", - "id": 684450657458368512, - "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 684453558545203200, - "source_user_id": 2782733125, - "display_url": "pic.twitter.com/GnfOxpEaYF", - "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22Jb455", - "url": "https://t.co/aYQvFNmob0", - "expanded_url": "http://bit.ly/22Jb455", - "indices": [ - 87, - 110 - ] - } - ], - "hashtags": [ - { - "indices": [ - 75, - 86 - ], - "text": "monitoring" - } - ], - "user_mentions": [ - { - "screen_name": "raintanksaas", - "id_str": "2782733125", - "id": 2782733125, - "indices": [ - 3, - 16 - ], - "name": "raintank" - }, - { - "screen_name": "RobustPerceiver", - "id_str": "3328053545", - "id": 3328053545, - "indices": [ - 114, - 130 - ], - "name": "Robust Perception" - } - ] - }, - "created_at": "Tue Jan 05 19:29:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684456715811729408, - "text": "RT @raintanksaas: Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2439889542, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 249, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2439889542/1445965397", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2529971", - "following": false, - "friends_count": 3252, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cdixon.org/aboutme/", - "url": "http://t.co/YviCcFNOiV", - "expanded_url": "http://cdixon.org/aboutme/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543964120664403968/0IKm7siW.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "89C9FA", - "geo_enabled": true, - "followers_count": 207889, - "location": "CA & NYC", - "screen_name": "cdixon", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 7770, - "name": "Chris Dixon", - "profile_use_background_image": true, - "description": "programming, philosophy, history, internet, startups, investing", - "url": "http://t.co/YviCcFNOiV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683496924104658944/8Oa5XAso_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 27 17:48:00 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683496924104658944/8Oa5XAso_normal.png", - "favourites_count": 8211, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685592381425594369", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tmfassociates.com/blog/2016/01/0\u2026", - "url": "https://t.co/6Mi1Kkxnbp", - "expanded_url": "http://tmfassociates.com/blog/2016/01/08/the-exploding-inflight-connectivity-market/", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:42:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685592381425594369, - "text": "\"ViaSat\u2019s 1Tbps capacity would offer low cost connectivity, including streaming video, to airline passengers.\" https://t.co/6Mi1Kkxnbp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 11, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2529971, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543964120664403968/0IKm7siW.png", - "statuses_count": 8966, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2529971/1451789461", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14861000", - "following": false, - "friends_count": 2104, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "alexnobert.com", - "url": "https://t.co/tPoTMUsmKK", - "expanded_url": "http://alexnobert.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/853194994/0bb4e16ca51a19b8a05ac269062e8381.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E8E8E8", - "profile_link_color": "FF6900", - "geo_enabled": false, - "followers_count": 1522, - "location": "The Glebe, Ottawa, Canada", - "screen_name": "nobert", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 67, - "name": "Alex Nobert", - "profile_use_background_image": true, - "description": "Post-macho feminist. Loves dogs, food, college football. Ops survivor. Works at Flynn. Built and led ops at Shopify, Vox Media, Minted. Never kick.", - "url": "https://t.co/tPoTMUsmKK", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666309776721096704/ag61W3Xf_normal.jpg", - "profile_background_color": "FF6900", - "created_at": "Wed May 21 19:41:18 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666309776721096704/ag61W3Xf_normal.jpg", - "favourites_count": 9925, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685580880031559680", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 113, - "resize": "fit" - }, - "large": { - "w": 894, - "h": 298, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 200, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOsLWaUEAAFib2.png", - "type": "photo", - "indices": [ - 113, - 136 - ], - "media_url": "http://pbs.twimg.com/media/CYOsLWaUEAAFib2.png", - "display_url": "pic.twitter.com/nz3HVzAzP4", - "id_str": "685580879284932608", - "expanded_url": "http://twitter.com/nobert/status/685580880031559680/photo/1", - "id": 685580879284932608, - "url": "https://t.co/nz3HVzAzP4" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thevowel", - "id_str": "14269220", - "id": 14269220, - "indices": [ - 10, - 19 - ], - "name": "Eric Neustadter (e)" - } - ] - }, - "created_at": "Fri Jan 08 21:56:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685580880031559680, - "text": "Thanks to @thevowel, my Razer Blade is finally running with BitLocker. All it took was an Ubuntu live USB drive. https://t.co/nz3HVzAzP4", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14861000, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/853194994/0bb4e16ca51a19b8a05ac269062e8381.jpeg", - "statuses_count": 25213, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14861000/1446000512", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "46250388", - "following": false, - "friends_count": 557, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "devco.net", - "url": "https://t.co/XvqT2v1kJh", - "expanded_url": "https://devco.net/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": false, - "followers_count": 4231, - "location": "Europe", - "screen_name": "ripienaar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 358, - "name": "R.I.Pienaar", - "profile_use_background_image": false, - "description": "Systems Administrator, Automator, Ruby Coder.", - "url": "https://t.co/XvqT2v1kJh", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/257864204/ducks_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Jun 10 22:57:38 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/257864204/ducks_normal.png", - "favourites_count": 2, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "oneplusi", - "in_reply_to_user_id": 7005982, - "in_reply_to_status_id_str": "685506980761436160", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685507134570819584", - "id": 685507134570819584, - "text": "@oneplusi lol, home luckily :)", - "in_reply_to_user_id_str": "7005982", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "oneplusi", - "id_str": "7005982", - "id": 7005982, - "indices": [ - 0, - 9 - ], - "name": "Andrew Stubbs" - } - ] - }, - "created_at": "Fri Jan 08 17:03:31 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685506980761436160, - "lang": "en" - }, - "default_profile_image": false, - "id": 46250388, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 23854, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/46250388/1447895364", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17000457", - "following": false, - "friends_count": 2955, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "azure.microsoft.com", - "url": "http://t.co/vFtkLITsAX", - "expanded_url": "http://azure.microsoft.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451786593955610624/iomf2rSv.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 411259, - "location": "Redmond, WA", - "screen_name": "Azure", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4506, - "name": "Microsoft Azure", - "profile_use_background_image": true, - "description": "The official account for Microsoft Azure. Follow for news and updates from the team and community.", - "url": "http://t.co/vFtkLITsAX", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/546024114272468993/W9gT7hZo_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 27 15:34:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/546024114272468993/W9gT7hZo_normal.png", - "favourites_count": 1781, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685567906466271233", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "aka.ms/q721n1", - "url": "https://t.co/SKGxL4J725", - "expanded_url": "http://aka.ms/q721n1", - "indices": [ - 106, - 129 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 6 - ], - "text": "Azure" - }, - { - "indices": [ - 130, - 140 - ], - "text": "AzureApps" - } - ], - "user_mentions": [ - { - "screen_name": "harmonypsa", - "id_str": "339088324", - "id": 339088324, - "indices": [ - 15, - 26 - ], - "name": "HarmonyPSA" - }, - { - "screen_name": "MSPartnerApps", - "id_str": "2533622706", - "id": 2533622706, - "indices": [ - 66, - 80 - ], - "name": "MS Partner Apps" - } - ] - }, - "created_at": "Fri Jan 08 21:05:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685567906466271233, - "text": "#Azure partner @harmonypsa saw web traffic surge while working w/ @MSPartnerApps. Read the success story: https://t.co/SKGxL4J725 #AzureApps", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Sprinklr" - }, - "default_profile_image": false, - "id": 17000457, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451786593955610624/iomf2rSv.jpeg", - "statuses_count": 17923, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17000457/1440619501", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "26191233", - "following": false, - "friends_count": 2389, - "entities": { - "description": { - "urls": [ - { - "display_url": "rackspace.com/support", - "url": "http://t.co/4xHHyxqo6k", - "expanded_url": "http://www.rackspace.com/support", - "indices": [ - 83, - 105 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "rackspace.com", - "url": "http://t.co/hWaMv0FzgM", - "expanded_url": "http://www.rackspace.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/646414416255320064/GBM3mlo2.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 99979, - "location": "San Antonio, TX", - "screen_name": "Rackspace", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2526, - "name": "Rackspace", - "profile_use_background_image": true, - "description": "The managed cloud company. Backed by Fanatical Support\u00ae. Questions? Reach us here: http://t.co/4xHHyxqo6k", - "url": "http://t.co/hWaMv0FzgM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2820164575/0226f9ef1173d90417e5113e25e0cc17_normal.png", - "profile_background_color": "000000", - "created_at": "Tue Mar 24 06:30:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2820164575/0226f9ef1173d90417e5113e25e0cc17_normal.png", - "favourites_count": 4161, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685557209166655488", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOWpf8WcAA04Bb.png", - "type": "photo", - "indices": [ - 108, - 131 - ], - "media_url": "http://pbs.twimg.com/media/CYOWpf8WcAA04Bb.png", - "display_url": "pic.twitter.com/TnNhe32y17", - "id_str": "685557207983878144", - "expanded_url": "http://twitter.com/Rackspace/status/685557209166655488/photo/1", - "id": 685557207983878144, - "url": "https://t.co/TnNhe32y17" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "rack.ly/6016Bn0Er", - "url": "https://t.co/RzlCDlAeYF", - "expanded_url": "http://rack.ly/6016Bn0Er", - "indices": [ - 84, - 107 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:22:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685557209166655488, - "text": "Starting next week, explore what dedicated infrastructure offers in a cloudy world. https://t.co/RzlCDlAeYF https://t.co/TnNhe32y17", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Sprinklr" - }, - "default_profile_image": false, - "id": 26191233, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/646414416255320064/GBM3mlo2.png", - "statuses_count": 22069, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26191233/1442952292", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "356565711", - "following": false, - "friends_count": 1807, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cloudstack.apache.org", - "url": "http://t.co/iUUxv93VBY", - "expanded_url": "http://cloudstack.apache.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 32657, - "location": "Apache Software Foundation", - "screen_name": "CloudStack", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 491, - "name": "Apache CloudStack ", - "profile_use_background_image": true, - "description": "Official Twitter account of the Apache CloudStack, an open source cloud computing platform.", - "url": "http://t.co/iUUxv93VBY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1513105223/twitter-icon_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Aug 17 01:38:29 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1513105223/twitter-icon_normal.png", - "favourites_count": 5, - "status": { - "retweet_count": 29, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "671645266869637120", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "s.apache.org/VfP", - "url": "https://t.co/mH2VS8lCmg", - "expanded_url": "http://s.apache.org/VfP", - "indices": [ - 65, - 88 - ] - } - ], - "hashtags": [ - { - "indices": [ - 89, - 100 - ], - "text": "OpenSource" - }, - { - "indices": [ - 101, - 107 - ], - "text": "Cloud" - }, - { - "indices": [ - 108, - 122 - ], - "text": "orchestration" - }, - { - "indices": [ - 123, - 132 - ], - "text": "platform" - } - ], - "user_mentions": [ - { - "screen_name": "CloudStack", - "id_str": "356565711", - "id": 356565711, - "indices": [ - 48, - 59 - ], - "name": "Apache CloudStack " - } - ] - }, - "created_at": "Tue Dec 01 11:01:24 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 671645266869637120, - "text": "The Apache Software Foundation announces Apache @CloudStack v4.6\nhttps://t.co/mH2VS8lCmg #OpenSource #Cloud #orchestration #platform", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 356565711, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1779, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15813140", - "following": false, - "friends_count": 161, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cloud.google.com", - "url": "http://t.co/DSf8acfd3K", - "expanded_url": "http://cloud.google.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135879522/P3DFciyd.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "549CF5", - "geo_enabled": false, - "followers_count": 465530, - "location": "", - "screen_name": "googlecloud", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 6244, - "name": "GoogleCloudPlatform", - "profile_use_background_image": true, - "description": "Building tools for modern applications, making developers more productive, and giving you the power to build on Google's computing infrastructure.", - "url": "http://t.co/DSf8acfd3K", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/639578526233010176/sf2x8byZ_normal.png", - "profile_background_color": "4285F4", - "created_at": "Mon Aug 11 20:08:12 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/639578526233010176/sf2x8byZ_normal.png", - "favourites_count": 509, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685598108395388928", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYO72M3WkAABQzM.png", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CYO72M3WkAABQzM.png", - "display_url": "pic.twitter.com/kO87ATY3uB", - "id_str": "685598108131168256", - "expanded_url": "http://twitter.com/googlecloud/status/685598108395388928/photo/1", - "id": 685598108131168256, - "url": "https://t.co/kO87ATY3uB" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "goo.gl/VeK1jg", - "url": "https://t.co/VS0IVqznY5", - "expanded_url": "http://goo.gl/VeK1jg", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tableau", - "id_str": "14792516", - "id": 14792516, - "indices": [ - 11, - 19 - ], - "name": "Tableau Software" - } - ] - }, - "created_at": "Fri Jan 08 23:05:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685598108395388928, - "text": "Good news, @tableau users. Now you can directly connect to Cloud SQL in just a few seconds. https://t.co/VS0IVqznY5 https://t.co/kO87ATY3uB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Sprinklr" - }, - "default_profile_image": false, - "id": 15813140, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135879522/P3DFciyd.png", - "statuses_count": 2456, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15813140/1450457327", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "66780587", - "following": false, - "friends_count": 519, - "entities": { - "description": { - "urls": [ - { - "display_url": "aws.amazon.com/what-is-cloud-\u2026", - "url": "https://t.co/xICTf1bTeB", - "expanded_url": "http://aws.amazon.com/what-is-cloud-computing/", - "indices": [ - 77, - 100 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "aws.amazon.com", - "url": "https://t.co/8QQO0BCGlY", - "expanded_url": "http://aws.amazon.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554689648/aws_block_bkrnd.png", - "notifications": false, - "profile_sidebar_fill_color": "DBF1FD", - "profile_link_color": "FAA734", - "geo_enabled": false, - "followers_count": 449642, - "location": "Seattle, WA", - "screen_name": "awscloud", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3740, - "name": "Amazon Web Services", - "profile_use_background_image": true, - "description": "Official Twitter Feed for Amazon Web Services. New to the cloud? Start here: https://t.co/xICTf1bTeB", - "url": "https://t.co/8QQO0BCGlY", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2900345382/16ffae8c667bdbc6a4969f6f02090652_normal.png", - "profile_background_color": "646566", - "created_at": "Tue Aug 18 19:52:16 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2900345382/16ffae8c667bdbc6a4969f6f02090652_normal.png", - "favourites_count": 77, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685598866901569537", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYO8iRSUwAAXJNH.png", - "type": "photo", - "indices": [ - 81, - 104 - ], - "media_url": "http://pbs.twimg.com/media/CYO8iRSUwAAXJNH.png", - "display_url": "pic.twitter.com/swC5ATrl56", - "id_str": "685598865232281600", - "expanded_url": "http://twitter.com/awscloud/status/685598866901569537/photo/1", - "id": 685598865232281600, - "url": "https://t.co/swC5ATrl56" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "oak.ctx.ly/r/4682z", - "url": "https://t.co/PVOMKD7odh", - "expanded_url": "http://oak.ctx.ly/r/4682z", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:08:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685598866901569537, - "text": "Get started with Amazon EC2 Container Registry. How to: https://t.co/PVOMKD7odh https://t.co/swC5ATrl56", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Adobe\u00ae Social" - }, - "default_profile_image": false, - "id": 66780587, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554689648/aws_block_bkrnd.png", - "statuses_count": 6698, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/66780587/1447775917", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "167234557", - "following": false, - "friends_count": 616, - "entities": { - "description": { - "urls": [ - { - "display_url": "openstack.org", - "url": "http://t.co/y6pc2uGhTy", - "expanded_url": "http://openstack.org", - "indices": [ - 6, - 28 - ] - }, - { - "display_url": "irc.freenode.com", - "url": "http://t.co/tat2wl18xy", - "expanded_url": "http://irc.freenode.com", - "indices": [ - 53, - 75 - ] - }, - { - "display_url": "openstack.org/join", - "url": "http://t.co/hQdq1180WX", - "expanded_url": "http://openstack.org/join", - "indices": [ - 111, - 133 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "openstack.org", - "url": "http://t.co/y6pc2uGhTy", - "expanded_url": "http://openstack.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468542714561044482/90T1TJiX.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 108821, - "location": "Running on servers near you!", - "screen_name": "OpenStack", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2026, - "name": "OpenStack", - "profile_use_background_image": true, - "description": "Go to http://t.co/y6pc2uGhTy for more information or http://t.co/tat2wl18xy #openstack and join the foundation http://t.co/hQdq1180WX", - "url": "http://t.co/y6pc2uGhTy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/441018383090196480/GCPRyAva_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Jul 16 02:22:35 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/441018383090196480/GCPRyAva_normal.png", - "favourites_count": 314, - "status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685298732280221696", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "awe.sm/aNW8c", - "url": "https://t.co/QRUPaA4KtT", - "expanded_url": "http://awe.sm/aNW8c", - "indices": [ - 107, - 130 - ] - } - ], - "hashtags": [ - { - "indices": [ - 7, - 17 - ], - "text": "OpenStack" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:15:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685298732280221696, - "text": "New to #OpenStack? Start the year with OpenStack training. Check out these available courses in Australia: https://t.co/QRUPaA4KtT", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 167234557, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468542714561044482/90T1TJiX.png", - "statuses_count": 4944, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/167234557/1446648581", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16333852", - "following": false, - "friends_count": 409, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chef.io", - "url": "http://t.co/OudqPCVrNN", - "expanded_url": "http://www.chef.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "F18A20", - "geo_enabled": true, - "followers_count": 26796, - "location": "Seattle, WA, USA", - "screen_name": "chef", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1066, - "name": "Chef", - "profile_use_background_image": true, - "description": "Helping people achieve awesome with IT automation, configuration management, & continuous delivery. #devops / #hugops / #learnchef / #getchef / #foodfightshow", - "url": "http://t.co/OudqPCVrNN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/616327263684947968/r7C1Tnye_normal.png", - "profile_background_color": "131516", - "created_at": "Wed Sep 17 18:23:58 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/616327263684947968/r7C1Tnye_normal.png", - "favourites_count": 368, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685570175228235778", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 170, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYE2NEgUMAEfAiw.jpg", - "type": "photo", - "indices": [ - 112, - 135 - ], - "media_url": "http://pbs.twimg.com/media/CYE2NEgUMAEfAiw.jpg", - "display_url": "pic.twitter.com/OW9Un3NpXI", - "id_str": "684888216512507905", - "expanded_url": "http://twitter.com/chef/status/685570175228235778/photo/1", - "id": 684888216512507905, - "url": "https://t.co/OW9Un3NpXI" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1ZKIYnp", - "url": "https://t.co/KqwUKauCne", - "expanded_url": "http://bit.ly/1ZKIYnp", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [ - { - "indices": [ - 28, - 35 - ], - "text": "DevOps" - }, - { - "indices": [ - 45, - 52 - ], - "text": "growth" - } - ], - "user_mentions": [ - { - "screen_name": "leecaswell", - "id_str": "18650596", - "id": 18650596, - "indices": [ - 59, - 70 - ], - "name": "Lee Caswell" - }, - { - "screen_name": "ITProPortal", - "id_str": "16318230", - "id": 16318230, - "indices": [ - 74, - 86 - ], - "name": "ITProPortal" - } - ] - }, - "created_at": "Fri Jan 08 21:14:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685570175228235778, - "text": "More enterprises will adopt #DevOps to drive #growth, says @leecaswell in @ITProPortal: https://t.co/KqwUKauCne https://t.co/OW9Un3NpXI", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 16333852, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 6864, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16333852/1405444420", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13682312", - "following": false, - "friends_count": 686, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "getchef.com", - "url": "http://t.co/p823bsFMUP", - "expanded_url": "http://getchef.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 7207, - "location": "San Francisco, CA", - "screen_name": "adamhjk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 444, - "name": "Adam Jacob", - "profile_use_background_image": false, - "description": "CTO for Chef.", - "url": "http://t.co/p823bsFMUP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1108290260/Adam_Jacob-114x150_original_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Feb 19 18:02:55 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108290260/Adam_Jacob-114x150_original_normal.jpg", - "favourites_count": 84, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685577402345390080", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOpA9aU0AIEJfl.jpg", - "type": "photo", - "indices": [ - 57, - 80 - ], - "media_url": "http://pbs.twimg.com/media/CYOpA9aU0AIEJfl.jpg", - "display_url": "pic.twitter.com/dEupjf9CQ4", - "id_str": "685577402240520194", - "expanded_url": "http://twitter.com/adamhjk/status/685577402345390080/photo/1", - "id": 685577402240520194, - "url": "https://t.co/dEupjf9CQ4" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 23, - 40 - ], - "text": "stickiepocalypse" - } - ], - "user_mentions": [ - { - "screen_name": "chef", - "id_str": "16333852", - "id": 16333852, - "indices": [ - 17, - 22 - ], - "name": "Chef" - }, - { - "screen_name": "jeffpatton", - "id_str": "16043994", - "id": 16043994, - "indices": [ - 45, - 56 - ], - "name": "Jeff Patton" - } - ] - }, - "created_at": "Fri Jan 08 21:42:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685577402345390080, - "text": "Story mapping at @chef #stickiepocalypse /cc @jeffpatton https://t.co/dEupjf9CQ4", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 13682312, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8912, - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "14079705", - "following": false, - "friends_count": 2455, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stochasticresonance.wordpress.com", - "url": "http://t.co/cesY1x0gXj", - "expanded_url": "http://stochasticresonance.wordpress.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "1252B3", - "geo_enabled": true, - "followers_count": 8346, - "location": "a wrinkle in timespace", - "screen_name": "littleidea", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 558, - "name": "Andrew Clay Shafer", - "profile_use_background_image": true, - "description": "solving more problems than I cause at @pivotal", - "url": "http://t.co/cesY1x0gXj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/425400689301266432/zDSgA31m_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Mar 04 20:17:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/425400689301266432/zDSgA31m_normal.png", - "favourites_count": 5682, - "status": { - "retweet_count": 229, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 229, - "truncated": false, - "retweeted": false, - "id_str": "685591830109401089", - "id": 685591830109401089, - "text": "You can't please all the people all the time.\n\nYou can however displease all the people all the time.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:40:04 +0000 2016", - "source": "TweetDeck", - "favorite_count": 221, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685593223251623936", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sadserver", - "id_str": "116568685", - "id": 116568685, - "indices": [ - 3, - 13 - ], - "name": "Sardonic Server" - } - ] - }, - "created_at": "Fri Jan 08 22:45:36 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593223251623936, - "text": "RT @sadserver: You can't please all the people all the time.\n\nYou can however displease all the people all the time.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14079705, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 33466, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14079705/1399044111", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "17025041", - "following": false, - "friends_count": 361, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jtimberman.housepub.org", - "url": "https://t.co/b7N8iBMhKh", - "expanded_url": "http://jtimberman.housepub.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "BC4301", - "geo_enabled": false, - "followers_count": 3739, - "location": "My Bikeshed (It's Green)", - "screen_name": "jtimberman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 274, - "name": "Overheard By", - "profile_use_background_image": false, - "description": "here's my surprised face. it's the same as my not surprised face.", - "url": "https://t.co/b7N8iBMhKh", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/636550941110480896/u1prsDHS_normal.jpg", - "profile_background_color": "7C7C7C", - "created_at": "Tue Oct 28 17:35:26 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636550941110480896/u1prsDHS_normal.jpg", - "favourites_count": 4869, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ashedryden", - "in_reply_to_user_id": 9510922, - "in_reply_to_status_id_str": "685607090417606656", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685607317845315585", - "id": 685607317845315585, - "text": "@ashedryden :D! <3", - "in_reply_to_user_id_str": "9510922", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ashedryden", - "id_str": "9510922", - "id": 9510922, - "indices": [ - 0, - 11 - ], - "name": "ashe" - } - ] - }, - "created_at": "Fri Jan 08 23:41:37 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685607090417606656, - "lang": "und" - }, - "default_profile_image": false, - "id": 17025041, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 43882, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17025041/1428382685", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "10452062", - "following": false, - "friends_count": 331, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tateeskew.com", - "url": "http://t.co/n6LC79pux8", - "expanded_url": "http://www.tateeskew.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/237422775/body-bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "E99708", - "geo_enabled": false, - "followers_count": 286, - "location": "Nashville, TN", - "screen_name": "tateeskew", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 23, - "name": "tateeskew", - "profile_use_background_image": true, - "description": "Open Source Advocate, Musician, Audio Engineer, Linux Systems Engineer, Community Builder and Practitioner of Permaculture.", - "url": "http://t.co/n6LC79pux8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494679290131136512/ofhOW9HO_normal.jpeg", - "profile_background_color": "E99708", - "created_at": "Wed Nov 21 21:43:25 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494679290131136512/ofhOW9HO_normal.jpeg", - "favourites_count": 245, - "status": { - "retweet_count": 34, - "retweeted_status": { - "retweet_count": 34, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685459826168741888", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pytennessee.tumblr.com/post/136879055\u2026", - "url": "https://t.co/TpMGJfwHS2", - "expanded_url": "http://pytennessee.tumblr.com/post/136879055598/pytennessee-2016", - "indices": [ - 45, - 68 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 13:55:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685459826168741888, - "text": "PyTennessee needs HELP! Funding is way down! https://t.co/TpMGJfwHS2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685466172532207616", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pytennessee.tumblr.com/post/136879055\u2026", - "url": "https://t.co/TpMGJfwHS2", - "expanded_url": "http://pytennessee.tumblr.com/post/136879055598/pytennessee-2016", - "indices": [ - 62, - 85 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PyTennessee", - "id_str": "1616492725", - "id": 1616492725, - "indices": [ - 3, - 15 - ], - "name": "PyTN" - } - ] - }, - "created_at": "Fri Jan 08 14:20:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685466172532207616, - "text": "RT @PyTennessee: PyTennessee needs HELP! Funding is way down! https://t.co/TpMGJfwHS2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 10452062, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/237422775/body-bg.jpg", - "statuses_count": 1442, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10452062/1398052886", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1281116485", - "following": false, - "friends_count": 31, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 27, - "location": "", - "screen_name": "Dinahpuglife", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Dinah Walker", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495805740536561665/reIDixvv_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 19 18:04:33 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495805740536561665/reIDixvv_normal.jpeg", - "favourites_count": 46, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "578446201097326593", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tweetyourbracket.com/2015/MW1812463\u2026", - "url": "http://t.co/5yO3DjH77P", - "expanded_url": "http://tweetyourbracket.com/2015/MW18124637211262121W18124631021432122E181241131021432434S1854113721432122FFMWEMW", - "indices": [ - 23, - 45 - ] - } - ], - "hashtags": [ - { - "indices": [ - 13, - 21 - ], - "text": "bracket" - }, - { - "indices": [ - 46, - 53 - ], - "text": "tybrkt" - } - ], - "user_mentions": [ - { - "screen_name": "TweetTheBracket", - "id_str": "515832256", - "id": 515832256, - "indices": [ - 58, - 74 - ], - "name": "Tweet Your Bracket" - } - ] - }, - "created_at": "Thu Mar 19 06:41:36 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 578446201097326593, - "text": "Check out my #bracket! http://t.co/5yO3DjH77P #tybrkt via @tweetthebracket", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1281116485, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "97933", - "following": false, - "friends_count": 176, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.zawodny.com", - "url": "http://t.co/T7eJjIa3oR", - "expanded_url": "http://blog.zawodny.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 5449, - "location": "Groveland, CA", - "screen_name": "jzawodn", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 363, - "name": "Jeremy Zawodny", - "profile_use_background_image": true, - "description": "I fly and geek.", - "url": "http://t.co/T7eJjIa3oR", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/17071732/Zawodny-md_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Thu Dec 21 05:47:54 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/17071732/Zawodny-md_normal.jpg", - "favourites_count": 110, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685566731071299584", - "id": 685566731071299584, - "text": "when you finish your upgraded FreeNAS box and \"df\" tells you you have ~25TB free of well protected storage cc: @FreeNASTeam", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "FreeNASTeam", - "id_str": "291881151", - "id": 291881151, - "indices": [ - 111, - 123 - ], - "name": "FreeNAS Community" - } - ] - }, - "created_at": "Fri Jan 08 21:00:20 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 97933, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3813, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/97933/1353544820", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15804774", - "following": false, - "friends_count": 435, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "python.org/~guido/", - "url": "http://t.co/jujQDNMiBP", - "expanded_url": "http://python.org/~guido/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 72585, - "location": "San Francisco Bay Area", - "screen_name": "gvanrossum", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3128, - "name": "Guido van Rossum", - "profile_use_background_image": true, - "description": "Python BDFL. Working at Dropbox. The 'van' has no capital letter!", - "url": "http://t.co/jujQDNMiBP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/424495004/GuidoAvatar_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Aug 11 04:02:18 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/424495004/GuidoAvatar_normal.jpg", - "favourites_count": 431, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 853051010, - "possibly_sensitive": false, - "id_str": "681300597350346752", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/JukkaL/mypy", - "url": "https://t.co/0hQF9kaESy", - "expanded_url": "https://github.com/JukkaL/mypy", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ismael_vc", - "id_str": "853051010", - "id": 853051010, - "indices": [ - 0, - 10 - ], - "name": "Ismael V. C." - }, - { - "screen_name": "l337d474", - "id_str": "1408419319", - "id": 1408419319, - "indices": [ - 11, - 20 - ], - "name": "Jonathan Foley" - } - ] - }, - "created_at": "Mon Dec 28 02:28:15 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "853051010", - "place": null, - "in_reply_to_screen_name": "ismael_vc", - "in_reply_to_status_id_str": "681093799003729920", - "truncated": false, - "id": 681300597350346752, - "text": "@ismael_vc @l337d474 It's not my project -- I just provide moral support. (!) Check out https://t.co/0hQF9kaESy for what I'm working on.", - "coordinates": null, - "in_reply_to_status_id": 681093799003729920, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 15804774, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1713, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15804774/1400086274", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "63873759", - "following": false, - "friends_count": 120, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "python.org/psf", - "url": "http://t.co/KdOzhmst4U", - "expanded_url": "http://www.python.org/psf", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FFEE30", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 94780, - "location": "Everywhere Python is!", - "screen_name": "ThePSF", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2519, - "name": "Python - The PSF", - "profile_use_background_image": true, - "description": "The Python Software Foundation. For help with Python code, see comp.lang.python.", - "url": "http://t.co/KdOzhmst4U", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/439154912719413248/pUBY5pVj_normal.png", - "profile_background_color": "2B9DD6", - "created_at": "Sat Aug 08 01:26:03 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/439154912719413248/pUBY5pVj_normal.png", - "favourites_count": 184, - "status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679421499812483073", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "goo.gl/fb/ZDhZTu", - "url": "https://t.co/xTWZBxTyeT", - "expanded_url": "http://goo.gl/fb/ZDhZTu", - "indices": [ - 22, - 45 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 22 22:01:23 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679421499812483073, - "text": "Python-Cuba Workgroup https://t.co/xTWZBxTyeT", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 23, - "contributors": null, - "source": "Google" - }, - "default_profile_image": false, - "id": 63873759, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2642, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24945605", - "following": false, - "friends_count": 174, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jesstess.com", - "url": "http://t.co/amra6EvsH8", - "expanded_url": "http://jesstess.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 7948, - "location": "San Francisco, CA", - "screen_name": "jessicamckellar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 394, - "name": "Jessica McKellar", - "profile_use_background_image": false, - "description": "Startup founder, open source developer, Engineering Director @Dropbox.", - "url": "http://t.co/amra6EvsH8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/428813271/glendaAndGrumpy_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Mar 17 20:16:06 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/428813271/glendaAndGrumpy_normal.jpg", - "favourites_count": 0, - "status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684230271395172355", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "web.mit.edu/jesstess/www/p\u2026", - "url": "https://t.co/PL8GO1J5AM", - "expanded_url": "http://web.mit.edu/jesstess/www/pygotham.pdf", - "indices": [ - 8, - 31 - ] - }, - { - "display_url": "twitter.com/fperez_org/sta\u2026", - "url": "https://t.co/V3tH2vT1BY", - "expanded_url": "https://twitter.com/fperez_org/status/683861601707884544", - "indices": [ - 32, - 55 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 04:29:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684230271395172355, - "text": "Slides! https://t.co/PL8GO1J5AM https://t.co/V3tH2vT1BY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 31, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 24945605, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 758, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "8859592", - "following": false, - "friends_count": 996, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443033856724054016/SsuiT5VK.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "8791BA", - "profile_link_color": "236C3A", - "geo_enabled": true, - "followers_count": 6713, - "location": "", - "screen_name": "selenamarie", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 549, - "name": "selena", - "profile_use_background_image": true, - "description": "Fundamentally, tomato paste offends me.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/626083465188917249/qp1YqumV_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Thu Sep 13 18:27:20 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626083465188917249/qp1YqumV_normal.jpg", - "favourites_count": 16360, - "status": { - "retweet_count": 6, - "retweeted_status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685300103423213568", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/@audrey.tang/l\u2026", - "url": "https://t.co/HihpLSfXJW", - "expanded_url": "https://medium.com/@audrey.tang/lessons-i-ve-learned-32f5d8107e34#.utph2976y", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [ - { - "indices": [ - 70, - 83 - ], - "text": "TrollHugging" - } - ], - "user_mentions": [ - { - "screen_name": "audreyt", - "id_str": "7403862", - "id": 7403862, - "indices": [ - 51, - 59 - ], - "name": "\u5510\u9cf3" - } - ] - }, - "created_at": "Fri Jan 08 03:20:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685300103423213568, - "text": "People who communicate on the Internet should read @audreyt's amazing #TrollHugging post. Soak it in.\nhttps://t.co/HihpLSfXJW", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685310643390418946", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/@audrey.tang/l\u2026", - "url": "https://t.co/HihpLSfXJW", - "expanded_url": "https://medium.com/@audrey.tang/lessons-i-ve-learned-32f5d8107e34#.utph2976y", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [ - { - "indices": [ - 81, - 94 - ], - "text": "TrollHugging" - } - ], - "user_mentions": [ - { - "screen_name": "lukec", - "id_str": "852141", - "id": 852141, - "indices": [ - 3, - 9 - ], - "name": "Luke Closs" - }, - { - "screen_name": "audreyt", - "id_str": "7403862", - "id": 7403862, - "indices": [ - 62, - 70 - ], - "name": "\u5510\u9cf3" - } - ] - }, - "created_at": "Fri Jan 08 04:02:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685310643390418946, - "text": "RT @lukec: People who communicate on the Internet should read @audreyt's amazing #TrollHugging post. Soak it in.\nhttps://t.co/HihpLSfXJW", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 8859592, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443033856724054016/SsuiT5VK.jpeg", - "statuses_count": 20525, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8859592/1353376656", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "14819854", - "following": false, - "friends_count": 506, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "florianjensen.com", - "url": "http://t.co/UnLaQEYHjv", - "expanded_url": "http://www.florianjensen.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 1196, - "location": "London, UK", - "screen_name": "flosoft", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 75, - "name": "Florian Jensen", - "profile_use_background_image": true, - "description": "Community Manager at @Uber, Co-Founder @flosoftbiz & all round geek.", - "url": "http://t.co/UnLaQEYHjv", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2609281578/fq9yqr33ddqf6ru6aplv_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Sun May 18 11:14:05 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2609281578/fq9yqr33ddqf6ru6aplv_normal.jpeg", - "favourites_count": 334, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682644537194508293", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/_98qHmjKR-/", - "url": "https://t.co/4qu6MVeo06", - "expanded_url": "https://www.instagram.com/p/_98qHmjKR-/", - "indices": [ - 63, - 86 - ] - } - ], - "hashtags": [ - { - "indices": [ - 58, - 62 - ], - "text": "NYE" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 19:28:35 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682644537194508293, - "text": "Home made sushi fusion with a few drinks to get ready for #NYE https://t.co/4qu6MVeo06", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 14819854, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 13793, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "218987642", - "following": false, - "friends_count": 17, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "swift.im", - "url": "http://t.co/9TsTBoEq3E", - "expanded_url": "http://swift.im", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 90, - "location": "", - "screen_name": "swift_im", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Swift IM", - "profile_use_background_image": true, - "description": "The free, cross-platform instant messaging client for 1:1 and Multi-User Chat on XMPP networks.", - "url": "http://t.co/9TsTBoEq3E", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/595941243290591234/v3r-uipW_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Nov 23 16:54:02 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/595941243290591234/v3r-uipW_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677935126404313088", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ift.tt/1OdqIRD", - "url": "https://t.co/JVnWleLcDI", - "expanded_url": "http://ift.tt/1OdqIRD", - "indices": [ - 50, - 73 - ] - } - ], - "hashtags": [ - { - "indices": [ - 74, - 78 - ], - "text": "xsf" - }, - { - "indices": [ - 79, - 84 - ], - "text": "xmpp" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Dec 18 19:35:04 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677935126404313088, - "text": "XMPP at the end of the Google Summer of Code 2015 https://t.co/JVnWleLcDI #xsf #xmpp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "IFTTT" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678882628548755456", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ift.tt/1OdqIRD", - "url": "https://t.co/JVnWleLcDI", - "expanded_url": "http://ift.tt/1OdqIRD", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [ - { - "indices": [ - 91, - 95 - ], - "text": "xsf" - }, - { - "indices": [ - 96, - 101 - ], - "text": "xmpp" - } - ], - "user_mentions": [ - { - "screen_name": "willsheward", - "id_str": "16362966", - "id": 16362966, - "indices": [ - 3, - 15 - ], - "name": "Will Sheward" - } - ] - }, - "created_at": "Mon Dec 21 10:20:06 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678882628548755456, - "text": "RT @willsheward: XMPP at the end of the Google Summer of Code 2015 https://t.co/JVnWleLcDI #xsf #xmpp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 218987642, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 109, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/218987642/1429025633", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "16362966", - "following": false, - "friends_count": 414, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "willsheward.co.uk", - "url": "http://t.co/wtqPHWkbrm", - "expanded_url": "http://www.willsheward.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000081501604/eb4cb212b29fcf123f9b03e5da4b52da.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 233, - "location": "", - "screen_name": "willsheward", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "Will Sheward", - "profile_use_background_image": false, - "description": "RSA Fellow, Marketing VP, Nerd (order is flexible).", - "url": "http://t.co/wtqPHWkbrm", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/606133029938073600/dDYru-ey_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Fri Sep 19 13:14:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/606133029938073600/dDYru-ey_normal.jpg", - "favourites_count": 9, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685476729222201344", - "id": 685476729222201344, - "text": "Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #SpellCheckNoHelp", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 118, - 135 - ], - "text": "SpellCheckNoHelp" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:02:42 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 16362966, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000081501604/eb4cb212b29fcf123f9b03e5da4b52da.png", - "statuses_count": 1077, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16362966/1408540182", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6531812", - "following": false, - "friends_count": 10, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "waqas.im", - "url": "http://t.co/a1CCYY1SVd", - "expanded_url": "http://waqas.im", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 91, - "location": "", - "screen_name": "zeen", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Waqas Hussain", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/a1CCYY1SVd", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/27003812/Make_Me_Dream_by_Track9_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Sat Jun 02 23:47:27 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/27003812/Make_Me_Dream_by_Track9_normal.jpg", - "favourites_count": 0, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "nginxorg", - "in_reply_to_user_id": 326658079, - "in_reply_to_status_id_str": "515572670390599681", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "515577420075008000", - "id": 515577420075008000, - "text": "@nginxorg Upgrading from Ubuntu Precise, but 1.1.19 is the latest precise has (with security patches applied) :)", - "in_reply_to_user_id_str": "326658079", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nginxorg", - "id_str": "326658079", - "id": 326658079, - "indices": [ - 0, - 9 - ], - "name": "nginx web server" - } - ] - }, - "created_at": "Fri Sep 26 19:03:30 +0000 2014", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 515572670390599681, - "lang": "en" - }, - "default_profile_image": false, - "id": 6531812, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 129, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "9379582", - "following": false, - "friends_count": 26, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ag-software.net", - "url": "http://t.co/n4352o76j4", - "expanded_url": "http://www.ag-software.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 59, - "location": "Heilbronn, Germany", - "screen_name": "gnauck", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Alexander Gnauck", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/n4352o76j4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/744806595/me_small_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Oct 11 14:52:41 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/744806595/me_small_normal.jpg", - "favourites_count": 2, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "gnauck", - "in_reply_to_user_id": 9379582, - "in_reply_to_status_id_str": "527483861476048896", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "527485430946885632", - "id": 527485430946885632, - "text": "@subsembly generell w\u00e4re is sch\u00f6n wenn man die icons selbst in der Kontenverwaltung ausw\u00e4hlen kann.", - "in_reply_to_user_id_str": "9379582", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "subsembly", - "id_str": "27438063", - "id": 27438063, - "indices": [ - 0, - 10 - ], - "name": "Subsembly GmbH" - } - ] - }, - "created_at": "Wed Oct 29 15:41:41 +0000 2014", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 527483861476048896, - "lang": "de" - }, - "default_profile_image": false, - "id": 9379582, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 21, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "774512", - "following": false, - "friends_count": 34, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "juberti.com", - "url": "https://t.co/h4RTb38Pcl", - "expanded_url": "http://www.juberti.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1445, - "location": "Seattle, WA", - "screen_name": "juberti", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 80, - "name": "Justin Uberti", - "profile_use_background_image": true, - "description": "Engineering Director, Google @webrtc Project. Occasional mathematician, physicist, and musician.", - "url": "https://t.co/h4RTb38Pcl", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/604061024329703424/SoOxTrGQ_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Thu Feb 15 22:29:39 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/604061024329703424/SoOxTrGQ_normal.jpg", - "favourites_count": 190, - "status": { - "retweet_count": 84, - "retweeted_status": { - "retweet_count": 84, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685229527228755968", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", - "type": "photo", - "indices": [ - 37, - 60 - ], - "media_url": "http://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", - "display_url": "pic.twitter.com/p55KX1Kp0t", - "id_str": "685229527128125441", - "expanded_url": "http://twitter.com/BenedictEvans/status/685229527228755968/photo/1", - "id": 685229527128125441, - "url": "https://t.co/p55KX1Kp0t" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 22:40:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685229527228755968, - "text": "Does exactly what it says on the tin https://t.co/p55KX1Kp0t", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 117, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685300971254071298", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - } - }, - "source_status_id_str": "685229527228755968", - "url": "https://t.co/p55KX1Kp0t", - "media_url": "http://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", - "source_user_id_str": "1236101", - "id_str": "685229527128125441", - "id": 685229527128125441, - "media_url_https": "https://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", - "type": "photo", - "indices": [ - 56, - 79 - ], - "source_status_id": 685229527228755968, - "source_user_id": 1236101, - "display_url": "pic.twitter.com/p55KX1Kp0t", - "expanded_url": "http://twitter.com/BenedictEvans/status/685229527228755968/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BenedictEvans", - "id_str": "1236101", - "id": 1236101, - "indices": [ - 3, - 17 - ], - "name": "Benedict Evans" - } - ] - }, - "created_at": "Fri Jan 08 03:24:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685300971254071298, - "text": "RT @BenedictEvans: Does exactly what it says on the tin https://t.co/p55KX1Kp0t", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 774512, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 1018, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/774512/1432854329", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "12431722", - "following": false, - "friends_count": 609, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedistillery.eu", - "url": "https://t.co/2M7b1wML4p", - "expanded_url": "https://thedistillery.eu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/53411785/400280475_bb227efcb5_o_2_.jpg", - "notifications": false, - "profile_sidebar_fill_color": "CF6020", - "profile_link_color": "C3A440", - "geo_enabled": true, - "followers_count": 796, - "location": "Bristol, United Kingdom", - "screen_name": "matthewwilkes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 83, - "name": "Matthew Wilkes", - "profile_use_background_image": true, - "description": "I do Python stuff. Freelance web developer Security consultant at @CodeDistillery All opinions are my own.", - "url": "https://t.co/2M7b1wML4p", - "profile_text_color": "05102E", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730843079/99310693aec6cee82196e5f51a798a7b_normal.png", - "profile_background_color": "9AE4E8", - "created_at": "Sat Jan 19 13:39:25 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BD4B0A", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730843079/99310693aec6cee82196e5f51a798a7b_normal.png", - "favourites_count": 88, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/7f15dd80ac78ef40.json", - "country": "United Kingdom", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -2.659936, - 51.399367 - ], - [ - -2.510844, - 51.399367 - ], - [ - -2.510844, - 51.516387 - ], - [ - -2.659936, - 51.516387 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "GB", - "contained_within": [], - "full_name": "Bristol, England", - "id": "7f15dd80ac78ef40", - "name": "Bristol" - }, - "in_reply_to_screen_name": "optilude", - "in_reply_to_user_id": 46920069, - "in_reply_to_status_id_str": "683044126988853248", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685148685332779008", - "id": 685148685332779008, - "text": "@optilude how about in python 3? Stdlib functions are a lot more opinionated about strings these days.", - "in_reply_to_user_id_str": "46920069", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "optilude", - "id_str": "46920069", - "id": 46920069, - "indices": [ - 0, - 9 - ], - "name": "Martin Aspeli" - } - ] - }, - "created_at": "Thu Jan 07 17:19:10 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683044126988853248, - "lang": "en" - }, - "default_profile_image": false, - "id": 12431722, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/53411785/400280475_bb227efcb5_o_2_.jpg", - "statuses_count": 6686, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12431722/1353734027", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "33726908", - "following": false, - "friends_count": 31, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "prosody.im", - "url": "http://t.co/iHKPuqb91T", - "expanded_url": "http://prosody.im/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 332, - "location": "", - "screen_name": "prosodyim", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Prosody IM Server", - "profile_use_background_image": true, - "description": "Prosody IM server for Jabber/XMPP", - "url": "http://t.co/iHKPuqb91T", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/149320248/prosody_favicon_128_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 21 00:06:06 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/149320248/prosody_favicon_128_normal.png", - "favourites_count": 54, - "status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685539536974278656", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.prosody.im/prosody-0-9-9-\u2026", - "url": "https://t.co/cw6o5I0WRc", - "expanded_url": "http://blog.prosody.im/prosody-0-9-9-security-release/", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:12:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685539536974278656, - "text": "Today brings an important security release (0.9.9), more info on our blog: https://t.co/cw6o5I0WRc - upgrade your servers!", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 33726908, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 93, - "is_translator": false - }, - { - "time_zone": "Casablanca", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "608341218", - "following": false, - "friends_count": 97, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "meetup.com/XMPP-UK-Meetup/", - "url": "http://t.co/SdzITvaX", - "expanded_url": "http://www.meetup.com/XMPP-UK-Meetup/", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 108, - "location": "", - "screen_name": "XMPPUK", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "XMPP UK", - "profile_use_background_image": true, - "description": "This group has been set up to bring together the XMPP community in the UK", - "url": "http://t.co/SdzITvaX", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2914081220/48e1a36edbddd2fea4218e99e8c38d60_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Thu Jun 14 16:00:03 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2914081220/48e1a36edbddd2fea4218e99e8c38d60_normal.png", - "favourites_count": 0, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "587687852361777153", - "id": 587687852361777153, - "text": "Late stragglers better hurry up, the pizza will be arriving any minute! #xmppuk", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 72, - 79 - ], - "text": "xmppuk" - } - ], - "user_mentions": [] - }, - "created_at": "Mon Apr 13 18:44:37 +0000 2015", - "source": "Hootsuite", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 608341218, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 153, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2361709040", - "following": false, - "friends_count": 26, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wiki.xmpp.org/web/Tech_pages\u2026", - "url": "http://t.co/kRQRCIITCz", - "expanded_url": "http://wiki.xmpp.org/web/Tech_pages/IoT_systems", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 140, - "location": "xmpp-iot.org", - "screen_name": "XMPPIoT", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "XMPP IoT", - "profile_use_background_image": true, - "description": "This is where things and people meet as friends using chat and XML as the interoperable language between us", - "url": "http://t.co/kRQRCIITCz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/569297043978346496/OTGB6-q__normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 25 22:01:14 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "sv", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/569297043978346496/OTGB6-q__normal.png", - "favourites_count": 12, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "iotwatch", - "in_reply_to_user_id": 156967608, - "in_reply_to_status_id_str": "633118767309058048", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "633157384668639232", - "id": 633157384668639232, - "text": "@iotwatch @TheConfMalmo will it by any chance be recorded? +Welcome to Sweden!", - "in_reply_to_user_id_str": "156967608", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "iotwatch", - "id_str": "156967608", - "id": 156967608, - "indices": [ - 0, - 9 - ], - "name": "Alexandra D-S" - }, - { - "screen_name": "TheConfMalmo", - "id_str": "1919285113", - "id": 1919285113, - "indices": [ - 10, - 23 - ], - "name": "The Conference" - } - ] - }, - "created_at": "Mon Aug 17 06:04:18 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 633118767309058048, - "lang": "en" - }, - "default_profile_image": false, - "id": 2361709040, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 55, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2361709040/1424566036", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "98503046", - "following": false, - "friends_count": 98, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fanout.io", - "url": "http://t.co/7l0JDOiIiq", - "expanded_url": "http://fanout.io/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 205, - "location": "Mountain View", - "screen_name": "jkarneges", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Justin Karneges", - "profile_use_background_image": true, - "description": "CEO who codes @Fanout. Open standards proponent. Consumer of olallieberries. Past: @Livefyre.", - "url": "http://t.co/7l0JDOiIiq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1832138421/justin_dramatic_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 22 00:10:24 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1832138421/justin_dramatic_normal.jpg", - "favourites_count": 242, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "nehanarkhede", - "in_reply_to_user_id": 76561387, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684990590082154496", - "id": 684990590082154496, - "text": "@nehanarkhede Today one of the @sv_realtime members asked about Confluent. Join us at the next meetup?", - "in_reply_to_user_id_str": "76561387", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nehanarkhede", - "id_str": "76561387", - "id": 76561387, - "indices": [ - 0, - 13 - ], - "name": "Neha Narkhede" - }, - { - "screen_name": "sv_realtime", - "id_str": "3301842547", - "id": 3301842547, - "indices": [ - 31, - 43 - ], - "name": "SV realtime" - } - ] - }, - "created_at": "Thu Jan 07 06:50:57 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 98503046, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 485, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "199312938", - "following": false, - "friends_count": 53, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "briancurtin.com", - "url": "http://t.co/jaSinBOMg1", - "expanded_url": "http://www.briancurtin.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/734931998/241c98d3e09c9bb1e44db1c20ea28c8f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "003279", - "geo_enabled": false, - "followers_count": 1248, - "location": "Chicago, IL, USA", - "screen_name": "brian_curtin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 105, - "name": "Brian Curtin", - "profile_use_background_image": true, - "description": "pre-school dropout, registered talent agent", - "url": "http://t.co/jaSinBOMg1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/592812626826133504/Q3TETjtv_normal.jpg", - "profile_background_color": "CC0033", - "created_at": "Wed Oct 06 15:10:55 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/592812626826133504/Q3TETjtv_normal.jpg", - "favourites_count": 5403, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685563998729682944", - "id": 685563998729682944, - "text": "type for an hour, select all, delete, type \u201cI am so much better than Ken Kratz in any conceivable way,\u201d hit submit. 2015 self-eval over.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:49:29 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 199312938, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/734931998/241c98d3e09c9bb1e44db1c20ea28c8f.jpeg", - "statuses_count": 11783, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/199312938/1398097311", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14590010", - "following": false, - "friends_count": 165, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ernest.ly/gpg.html", - "url": "https://t.co/XUcP99arT4", - "expanded_url": "https://ernest.ly/gpg.html", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 509, - "location": "cleveland, oh", - "screen_name": "EWDurbin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "\u1d31\u02b3\u1db0\u1d49\u02e2\u1d57 \u1d42\u22c5 \u1d30\u1d58\u02b3\u1d47\u1da6\u1db0 \u1d35\u1d35\u1d35", - "profile_use_background_image": true, - "description": "engineering whiz at the groundwork.", - "url": "https://t.co/XUcP99arT4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638167679082192896/cKedz7FX_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 29 20:10:53 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638167679082192896/cKedz7FX_normal.jpg", - "favourites_count": 10440, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/aa7defe13028d41f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -81.603358, - 41.4827416 - ], - [ - -81.529651, - 41.4827416 - ], - [ - -81.529651, - 41.5452739 - ], - [ - -81.603358, - 41.5452739 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Cleveland Heights, OH", - "id": "aa7defe13028d41f", - "name": "Cleveland Heights" - }, - "in_reply_to_screen_name": "guharakesh", - "in_reply_to_user_id": 17036002, - "in_reply_to_status_id_str": "685604720078139392", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685604768266358784", - "id": 685604768266358784, - "text": "@guharakesh you eat it", - "in_reply_to_user_id_str": "17036002", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "guharakesh", - "id_str": "17036002", - "id": 17036002, - "indices": [ - 0, - 11 - ], - "name": "Rakesh Guha" - } - ] - }, - "created_at": "Fri Jan 08 23:31:29 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685604720078139392, - "lang": "en" - }, - "default_profile_image": false, - "id": 14590010, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 15903, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14590010/1450662282", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "89051764", - "following": false, - "friends_count": 358, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "adamgibbins.com", - "url": "https://t.co/yMMqXBfQNe", - "expanded_url": "https://www.adamgibbins.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "A80311", - "geo_enabled": true, - "followers_count": 235, - "location": "London, England", - "screen_name": "adamgibbins", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Adam Gibbins", - "profile_use_background_image": true, - "description": "Linux, SysAdmin, Systems, Code, Automation, Beer, Music, Coffee.\nWhoop @ Freenode\n\nRT \u2260 endorsement", - "url": "https://t.co/yMMqXBfQNe", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/460418259263553536/lg_qJEtc_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Tue Nov 10 23:26:46 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/460418259263553536/lg_qJEtc_normal.jpeg", - "favourites_count": 0, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685442376530182144", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "skillsmatter.com/meetups/7576-d\u2026", - "url": "https://t.co/gZNYxM5Wwe", - "expanded_url": "https://skillsmatter.com/meetups/7576-descale-systems-meetup", - "indices": [ - 99, - 122 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "skillsmatter", - "id_str": "16345873", - "id": 16345873, - "indices": [ - 71, - 84 - ], - "name": "Skills Matter" - } - ] - }, - "created_at": "Fri Jan 08 12:46:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685442376530182144, - "text": "Our next event will be on Monday 18th January! You can register on the @skillsmatter website here: https://t.co/gZNYxM5Wwe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685525931587407873", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "skillsmatter.com/meetups/7576-d\u2026", - "url": "https://t.co/gZNYxM5Wwe", - "expanded_url": "https://skillsmatter.com/meetups/7576-descale-systems-meetup", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "descale_ldn", - "id_str": "3402670426", - "id": 3402670426, - "indices": [ - 3, - 15 - ], - "name": "Descale" - }, - { - "screen_name": "skillsmatter", - "id_str": "16345873", - "id": 16345873, - "indices": [ - 88, - 101 - ], - "name": "Skills Matter" - } - ] - }, - "created_at": "Fri Jan 08 18:18:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685525931587407873, - "text": "RT @descale_ldn: Our next event will be on Monday 18th January! You can register on the @skillsmatter website here: https://t.co/gZNYxM5Wwe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 89051764, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 875, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/89051764/1397910318", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15926485", - "following": false, - "friends_count": 2646, - "entities": { - "description": { - "urls": [ - { - "display_url": "chef.io", - "url": "http://t.co/lU81z8Xj9H", - "expanded_url": "http://chef.io", - "indices": [ - 35, - 57 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "nathenharvey.com", - "url": "http://t.co/8Xbz708j4F", - "expanded_url": "http://nathenharvey.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4488, - "location": "Annapolis, MD USA", - "screen_name": "nathenharvey", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 277, - "name": "nathenharvey", - "profile_use_background_image": true, - "description": "VP, Community Development at Chef (http://t.co/lU81z8Xj9H)", - "url": "http://t.co/8Xbz708j4F", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459018058426613760/vM4_VsIS_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Aug 21 02:11:54 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459018058426613760/vM4_VsIS_normal.png", - "favourites_count": 3599, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685496670730219520", - "geo": { - "coordinates": [ - 47.60204619, - -122.3360862 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "swarmapp.com/c/3EVFABynwPf", - "url": "https://t.co/Jb1kjEbMMW", - "expanded_url": "https://www.swarmapp.com/c/3EVFABynwPf", - "indices": [ - 46, - 69 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chef", - "id_str": "16333852", - "id": 16333852, - "indices": [ - 14, - 19 - ], - "name": "Chef" - }, - { - "screen_name": "chef", - "id_str": "16333852", - "id": 16333852, - "indices": [ - 24, - 29 - ], - "name": "Chef" - } - ] - }, - "created_at": "Fri Jan 08 16:21:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/300bcc6e23a88361.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.436232, - 47.4953154 - ], - [ - -122.2249728, - 47.4953154 - ], - [ - -122.2249728, - 47.734561 - ], - [ - -122.436232, - 47.734561 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Seattle, WA", - "id": "300bcc6e23a88361", - "name": "Seattle" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685496670730219520, - "text": "Good morning, @chef (at @Chef in Seattle, WA) https://t.co/Jb1kjEbMMW", - "coordinates": { - "coordinates": [ - -122.3360862, - 47.60204619 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Foursquare" - }, - "default_profile_image": false, - "id": 15926485, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 9823, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14065905", - "following": false, - "friends_count": 518, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "traceback.org", - "url": "http://t.co/iq5TfPAOJX", - "expanded_url": "http://traceback.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3983329/bg_twittergallery.jpg", - "notifications": false, - "profile_sidebar_fill_color": "232323", - "profile_link_color": "58A362", - "geo_enabled": true, - "followers_count": 756, - "location": "Cleveland, OH", - "screen_name": "dstanek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 65, - "name": "David Stanek", - "profile_use_background_image": true, - "description": "Software programmer; Racker; Husband & father; Beer drinker", - "url": "http://t.co/iq5TfPAOJX", - "profile_text_color": "70797D", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/58766568/headshot_normal.JPG", - "profile_background_color": "3C7682", - "created_at": "Sat Mar 01 18:58:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A5D0BF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/58766568/headshot_normal.JPG", - "favourites_count": 783, - "status": { - "retweet_count": 16, - "retweeted_status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685276382293786624", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 604, - "resize": "fit" - }, - "large": { - "w": 720, - "h": 1280, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 1067, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", - "type": "photo", - "indices": [ - 45, - 68 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", - "display_url": "pic.twitter.com/UXioTmxgh8", - "id_str": "685276202416865281", - "expanded_url": "http://twitter.com/ZAGGStudios/status/685276382293786624/video/1", - "id": 685276202416865281, - "url": "https://t.co/UXioTmxgh8" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 13, - 22 - ], - "text": "codemash" - }, - { - "indices": [ - 23, - 28 - ], - "text": "pong" - }, - { - "indices": [ - 34, - 44 - ], - "text": "laserpong" - } - ], - "user_mentions": [ - { - "screen_name": "GWR", - "id_str": "18073623", - "id": 18073623, - "indices": [ - 29, - 33 - ], - "name": "GuinnessWorldRecords" - } - ] - }, - "created_at": "Fri Jan 08 01:46:36 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685276382293786624, - "text": "Game point!! #codemash #pong @GWR #laserpong https://t.co/UXioTmxgh8", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 16, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685303279610408960", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 604, - "resize": "fit" - }, - "large": { - "w": 720, - "h": 1280, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 1067, - "resize": "fit" - } - }, - "source_status_id_str": "685276382293786624", - "url": "https://t.co/UXioTmxgh8", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", - "source_user_id_str": "1297375447", - "id_str": "685276202416865281", - "id": 685276202416865281, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", - "type": "photo", - "indices": [ - 62, - 85 - ], - "source_status_id": 685276382293786624, - "source_user_id": 1297375447, - "display_url": "pic.twitter.com/UXioTmxgh8", - "expanded_url": "http://twitter.com/ZAGGStudios/status/685276382293786624/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 30, - 39 - ], - "text": "codemash" - }, - { - "indices": [ - 40, - 45 - ], - "text": "pong" - }, - { - "indices": [ - 51, - 61 - ], - "text": "laserpong" - } - ], - "user_mentions": [ - { - "screen_name": "ZAGGStudios", - "id_str": "1297375447", - "id": 1297375447, - "indices": [ - 3, - 15 - ], - "name": "ZAGG Studios, Ltd." - }, - { - "screen_name": "GWR", - "id_str": "18073623", - "id": 18073623, - "indices": [ - 46, - 50 - ], - "name": "GuinnessWorldRecords" - } - ] - }, - "created_at": "Fri Jan 08 03:33:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685303279610408960, - "text": "RT @ZAGGStudios: Game point!! #codemash #pong @GWR #laserpong https://t.co/UXioTmxgh8", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 14065905, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3983329/bg_twittergallery.jpg", - "statuses_count": 4386, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "170605832", - "following": false, - "friends_count": 1872, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/emilyrose", - "url": "https://t.co/Ds54nDaamu", - "expanded_url": "https://github.com/emilyrose", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/126420117/cloud_bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E8F2FB", - "profile_link_color": "4684A8", - "geo_enabled": true, - "followers_count": 3036, - "location": "San Francisco, CA", - "screen_name": "nexxylove", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 203, - "name": "mx emily rose", - "profile_use_background_image": false, - "description": "hardware art, some kind of fabulous unicorn; and computing, [two-for] inspiring dark speaking. plural pronoun they; interactive electric ubiquitous hacking,", - "url": "https://t.co/Ds54nDaamu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/679825275509592064/SmpGRD_1_normal.png", - "profile_background_color": "1C0F1E", - "created_at": "Sun Jul 25 08:04:06 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A2C7E4", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/679825275509592064/SmpGRD_1_normal.png", - "favourites_count": 3606, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 15583257, - "possibly_sensitive": false, - "id_str": "685521273598820352", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "gayshamesf.org", - "url": "https://t.co/BQx23L6QOb", - "expanded_url": "http://gayshamesf.org", - "indices": [ - 14, - 37 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "cowperthwait", - "id_str": "15583257", - "id": 15583257, - "indices": [ - 0, - 13 - ], - "name": "Cowperthwait" - } - ] - }, - "created_at": "Fri Jan 08 17:59:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "15583257", - "place": null, - "in_reply_to_screen_name": "cowperthwait", - "in_reply_to_status_id_str": "685520897734623232", - "truncated": false, - "id": 685521273598820352, - "text": "@cowperthwait https://t.co/BQx23L6QOb", - "coordinates": null, - "in_reply_to_status_id": 685520897734623232, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 170605832, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/126420117/cloud_bg.jpg", - "statuses_count": 20258, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/170605832/1450918251", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14188391", - "following": false, - "friends_count": 693, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "benjaminwarfield.com", - "url": "https://t.co/YqNb1uZbHY", - "expanded_url": "http://benjaminwarfield.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865335069/ab622272f599abc2d1e2f068a47f5efa.png", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "4D8A98", - "geo_enabled": true, - "followers_count": 1515, - "location": "Lakewood, OH", - "screen_name": "benjaminws", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 117, - "name": "wrongo db", - "profile_use_background_image": false, - "description": "just trying to use a computer", - "url": "https://t.co/YqNb1uZbHY", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680913876934721538/msph0SPH_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Mar 21 00:21:25 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680913876934721538/msph0SPH_normal.jpg", - "favourites_count": 18241, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "benjaminws", - "in_reply_to_user_id": 14188391, - "in_reply_to_status_id_str": "685482873831337984", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685482917909245953", - "id": 685482917909245953, - "text": "@benjaminws *ying", - "in_reply_to_user_id_str": "14188391", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "benjaminws", - "id_str": "14188391", - "id": 14188391, - "indices": [ - 0, - 11 - ], - "name": "Nice segway, dude" - } - ] - }, - "created_at": "Fri Jan 08 15:27:17 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685482873831337984, - "lang": "en" - }, - "default_profile_image": false, - "id": 14188391, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865335069/ab622272f599abc2d1e2f068a47f5efa.png", - "statuses_count": 48496, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14188391/1452184250", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17177251", - "following": false, - "friends_count": 1939, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/pub/brian-j-br\u2026", - "url": "https://t.co/LqJaTeSeNf", - "expanded_url": "https://www.linkedin.com/pub/brian-j-brennan/20/28a/4a9", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/596808118752792579/I7vAKG7k.jpg", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 3808, - "location": "Brooklyn, NY", - "screen_name": "brianloveswords", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 245, - "name": "spacer.tiff", - "profile_use_background_image": true, - "description": "chief garbage monster @Bocoup; figurehead @brooklyn_js; probably not three cats in a trench coat. He/him", - "url": "https://t.co/LqJaTeSeNf", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678023379002253312/_hS0iDAv_normal.jpg", - "profile_background_color": "352726", - "created_at": "Wed Nov 05 02:16:27 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678023379002253312/_hS0iDAv_normal.jpg", - "favourites_count": 18685, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.026675, - 40.683935 - ], - [ - -73.910408, - 40.683935 - ], - [ - -73.910408, - 40.877483 - ], - [ - -74.026675, - 40.877483 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Manhattan, NY", - "id": "01a9a39529b27f36", - "name": "Manhattan" - }, - "in_reply_to_screen_name": "jennschiffer", - "in_reply_to_user_id": 12524622, - "in_reply_to_status_id_str": "685502987989561344", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685503107304914944", - "id": 685503107304914944, - "text": "@jennschiffer @kosamari I can't believe I missed out on this one, this is bullshit", - "in_reply_to_user_id_str": "12524622", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jennschiffer", - "id_str": "12524622", - "id": 12524622, - "indices": [ - 0, - 13 - ], - "name": "shingyVEVO" - }, - { - "screen_name": "kosamari", - "id_str": "8470842", - "id": 8470842, - "indices": [ - 14, - 23 - ], - "name": "Mariko Kosaka" - } - ] - }, - "created_at": "Fri Jan 08 16:47:31 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685502987989561344, - "lang": "en" - }, - "default_profile_image": false, - "id": 17177251, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/596808118752792579/I7vAKG7k.jpg", - "statuses_count": 19085, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17177251/1440564032", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "17527655", - "following": false, - "friends_count": 1174, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2706, - "location": "SF Bay Area", - "screen_name": "sigje", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 223, - "name": "Jennifer", - "profile_use_background_image": true, - "description": "Sparkly DevOps princess. #coffeeops #hugops practitioner, co-author Effective Devops, Agile Conf DevOps Track Chair 2016", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660204503832985600/2QtQ7d_7_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Nov 21 00:59:20 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660204503832985600/2QtQ7d_7_normal.png", - "favourites_count": 28341, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "sigje", - "in_reply_to_user_id": 17527655, - "in_reply_to_status_id_str": "685607990917922816", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685608198288506880", - "id": 685608198288506880, - "text": "@ashedryden @chef username at chef.io will reach me via email as well.", - "in_reply_to_user_id_str": "17527655", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ashedryden", - "id_str": "9510922", - "id": 9510922, - "indices": [ - 0, - 11 - ], - "name": "ashe" - }, - { - "screen_name": "chef", - "id_str": "16333852", - "id": 16333852, - "indices": [ - 12, - 17 - ], - "name": "Chef" - } - ] - }, - "created_at": "Fri Jan 08 23:45:07 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685607990917922816, - "lang": "en" - }, - "default_profile_image": false, - "id": 17527655, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 26988, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17527655/1426924077", - "is_translator": false - }, - { - "time_zone": "Rome", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "5813712", - "following": false, - "friends_count": 324, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "invece.org", - "url": "http://t.co/7GxMMGyAln", - "expanded_url": "http://invece.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 17375, - "location": "Sicily, Italy", - "screen_name": "antirez", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 917, - "name": "Salvatore Sanfilippo", - "profile_use_background_image": true, - "description": "I believe in the power of the imagination to remake the world -- J.G.Ballard", - "url": "http://t.co/7GxMMGyAln", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/595630881924059138/Ah0O5bEE_normal.png", - "profile_background_color": "C6E2EE", - "created_at": "Sun May 06 18:34:46 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/595630881924059138/Ah0O5bEE_normal.png", - "favourites_count": 2039, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685071497656987649", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "reddit.com/r/redis/commen\u2026", - "url": "https://t.co/1HlK5bafCB", - "expanded_url": "https://www.reddit.com/r/redis/comments/3zv85m/new_security_feature_redis_protected_mode/", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 12:12:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685071497656987649, - "text": "The security feature for Redis that should stop, starting with Redis 3.2, most \u201cinstances left open\u201d errors: https://t.co/1HlK5bafCB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "YoruFukurou" - }, - "default_profile_image": false, - "id": 5813712, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 29491, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5813712/1398845907", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "1465659204", - "following": false, - "friends_count": 954, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bridgetkromhout.com", - "url": "http://t.co/GWCuQWb6CV", - "expanded_url": "http://bridgetkromhout.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 5188, - "location": "Minneapolis, Minnesota", - "screen_name": "bridgetkromhout", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 311, - "name": "Bridget Kromhout", - "profile_use_background_image": true, - "description": "Principal Technologist for @cloudfoundry at @pivotal. Podcasts @arresteddevops. Organizes @devopsdays. Was ops at @DramaFever. Likes snow, bicycles, & @joelaha.", - "url": "http://t.co/GWCuQWb6CV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/469973128840368128/Eud_QsXs_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue May 28 21:02:05 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/469973128840368128/Eud_QsXs_normal.png", - "favourites_count": 8290, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": 13640312, - "possibly_sensitive": false, - "id_str": "685562659257868289", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/caseywest/stat\u2026", - "url": "https://t.co/ShuOreW5Il", - "expanded_url": "https://twitter.com/caseywest/status/685498244319842306", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [ - { - "indices": [ - 39, - 48 - ], - "text": "codemash" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:44:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "13640312", - "place": null, - "in_reply_to_screen_name": "caseywest", - "in_reply_to_status_id_str": "685498244319842306", - "truncated": false, - "id": 685562659257868289, - "text": "Let\u2019s get this party started. Salon E! #codemash https://t.co/ShuOreW5Il", - "coordinates": null, - "in_reply_to_status_id": 685498244319842306, - "favorite_count": 1, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685564695659466755", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/caseywest/stat\u2026", - "url": "https://t.co/ShuOreW5Il", - "expanded_url": "https://twitter.com/caseywest/status/685498244319842306", - "indices": [ - 64, - 87 - ] - } - ], - "hashtags": [ - { - "indices": [ - 54, - 63 - ], - "text": "codemash" - } - ], - "user_mentions": [ - { - "screen_name": "caseywest", - "id_str": "13640312", - "id": 13640312, - "indices": [ - 3, - 13 - ], - "name": "Casey West" - } - ] - }, - "created_at": "Fri Jan 08 20:52:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685564695659466755, - "text": "RT @caseywest: Let\u2019s get this party started. Salon E! #codemash https://t.co/ShuOreW5Il", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1465659204, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 9388, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1465659204/1402021840", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "36823", - "following": false, - "friends_count": 3648, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "anildash.com", - "url": "https://t.co/DGlCONxUGJ", - "expanded_url": "http://anildash.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378252063/dark-floral-pattern.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "800080", - "geo_enabled": true, - "followers_count": 573880, - "location": "NYC: 40.739069,-73.987082", - "screen_name": "anildash", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 7811, - "name": "Anil Dash", - "profile_use_background_image": true, - "description": "The only person who's ever been retweeted by Prince, Bill Gates, @katies, AvaDuvernay and the White House. Working to make tech & the tech industry more humane.", - "url": "https://t.co/DGlCONxUGJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678402398981775361/xeju7Lqg_normal.jpg", - "profile_background_color": "131516", - "created_at": "Sat Dec 02 09:15:15 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678402398981775361/xeju7Lqg_normal.jpg", - "favourites_count": 284118, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ev", - "in_reply_to_user_id": 20, - "in_reply_to_status_id_str": "685566764630028288", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685567450923036673", - "id": 685567450923036673, - "text": "@ev so what would you do to change it? It's good to have meat alternatives, but how would you change policy?", - "in_reply_to_user_id_str": "20", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ev", - "id_str": "20", - "id": 20, - "indices": [ - 0, - 3 - ], - "name": "Ev Williams" - } - ] - }, - "created_at": "Fri Jan 08 21:03:12 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685566764630028288, - "lang": "en" - }, - "default_profile_image": false, - "id": 36823, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378252063/dark-floral-pattern.jpg", - "statuses_count": 105807, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/36823/1444532685", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18713", - "following": false, - "friends_count": 405, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "al3x.net", - "url": "https://t.co/BwDqELWAp7", - "expanded_url": "https://al3x.net/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C3CBD0", - "profile_link_color": "336699", - "geo_enabled": true, - "followers_count": 41125, - "location": "Portland, OR", - "screen_name": "al3x", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 2596, - "name": "Alex Payne", - "profile_use_background_image": false, - "description": "'the human person, who is animal, fantasist, and computer combined' \u2013 Yi-Fu Tuan", - "url": "https://t.co/BwDqELWAp7", - "profile_text_color": "232323", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/513088789585993728/s1DnFxP6_normal.jpeg", - "profile_background_color": "E5E9EB", - "created_at": "Thu Nov 23 19:29:11 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "333333", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/513088789585993728/s1DnFxP6_normal.jpeg", - "favourites_count": 11217, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "tinysubversions", - "in_reply_to_user_id": 14475298, - "in_reply_to_status_id_str": "685585927486345216", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685591516803252224", - "id": 685591516803252224, - "text": "@tinysubversions it isn't good though so you're fine", - "in_reply_to_user_id_str": "14475298", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tinysubversions", - "id_str": "14475298", - "id": 14475298, - "indices": [ - 0, - 16 - ], - "name": "Darius Kazemi" - } - ] - }, - "created_at": "Fri Jan 08 22:38:49 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685585927486345216, - "lang": "en" - }, - "default_profile_image": false, - "id": 18713, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 30006, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18713/1451501144", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1186", - "following": false, - "friends_count": 3538, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chrismessina.me", - "url": "https://t.co/JIhVYXdY5s", - "expanded_url": "http://chrismessina.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/86425594/xd76c913111e2caa58f9257eadc3f4b0.png", - "notifications": false, - "profile_sidebar_fill_color": "F1F1F1", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 79615, - "location": "San Francisco", - "screen_name": "chrismessina", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 3961, - "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e", - "profile_use_background_image": false, - "description": "Developer Experience Lead at @Uber. Friend to startups, inventor of the hashtag, former Googler, and proud participant in the open source/open web communities.", - "url": "https://t.co/JIhVYXdY5s", - "profile_text_color": "444444", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624387887665016832/xS9_Z8YF_normal.jpg", - "profile_background_color": "CF290C", - "created_at": "Sun Jul 16 06:53:48 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "868686", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624387887665016832/xS9_Z8YF_normal.jpg", - "favourites_count": 7924, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 9729502, - "possibly_sensitive": false, - "id_str": "685606649793359872", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "j.mp/Stln", - "url": "https://t.co/eLPm24nG5F", - "expanded_url": "http://j.mp/Stln", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [ - { - "indices": [ - 70, - 85 - ], - "text": "StolenOnStolen" - }, - { - "indices": [ - 110, - 115 - ], - "text": "meta" - } - ], - "user_mentions": [ - { - "screen_name": "travisk", - "id_str": "9729502", - "id": 9729502, - "indices": [ - 0, - 8 - ], - "name": "travis kalanick" - }, - { - "screen_name": "alexpriest", - "id_str": "7604502", - "id": 7604502, - "indices": [ - 31, - 42 - ], - "name": "Alex Priest" - }, - { - "screen_name": "getstolen", - "id_str": "3255100813", - "id": 3255100813, - "indices": [ - 58, - 68 - ], - "name": "Stolen!" - } - ] - }, - "created_at": "Fri Jan 08 23:38:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "9729502", - "place": null, - "in_reply_to_screen_name": "travisk", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685606649793359872, - "text": "@travisk I just stole you from @alexpriest for 430,660 on @getstolen. #StolenOnStolen https://t.co/eLPm24nG5F #meta", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1186, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/86425594/xd76c913111e2caa58f9257eadc3f4b0.png", - "statuses_count": 28662, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1186/1447013497", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "260044118", - "following": false, - "friends_count": 367, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "beero.ps", - "url": "http://t.co/3SOVRwGCJL", - "expanded_url": "http://beero.ps", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459436144204079104/LPeVolRt.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "33003F", - "geo_enabled": false, - "followers_count": 5706, - "location": "Brooklyn", - "screen_name": "beerops", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 344, - "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 sdo\u0279\u0259\u0259q", - "profile_use_background_image": true, - "description": "Senior sparkly ops witch @Etsy, 10X engiqueer, full stack cat lady, homebrewer, climber, aspiring cellist, purple-haired face-metal cabalist, yarn sorceress.", - "url": "http://t.co/3SOVRwGCJL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/646467659505250305/MGdBkS8o_normal.png", - "profile_background_color": "131516", - "created_at": "Thu Mar 03 02:54:14 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/646467659505250305/MGdBkS8o_normal.png", - "favourites_count": 6646, - "status": { - "retweet_count": 6, - "retweeted_status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597446962024448", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "etsy.com/careers/job/ol\u2026", - "url": "https://t.co/pP1zKTvYt1", - "expanded_url": "https://www.etsy.com/careers/job/olOn2fwi", - "indices": [ - 77, - 100 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Etsy", - "id_str": "11522502", - "id": 11522502, - "indices": [ - 46, - 51 - ], - "name": "Etsy" - } - ] - }, - "created_at": "Fri Jan 08 23:02:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597446962024448, - "text": "We're hiring a second PM for the Data team at @Etsy. RT if you like data. ;) https://t.co/pP1zKTvYt1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685607423445479425", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "etsy.com/careers/job/ol\u2026", - "url": "https://t.co/pP1zKTvYt1", - "expanded_url": "https://www.etsy.com/careers/job/olOn2fwi", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "gianelli", - "id_str": "15745226", - "id": 15745226, - "indices": [ - 3, - 12 - ], - "name": "Gabrielle Gianelli" - }, - { - "screen_name": "Etsy", - "id_str": "11522502", - "id": 11522502, - "indices": [ - 60, - 65 - ], - "name": "Etsy" - } - ] - }, - "created_at": "Fri Jan 08 23:42:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685607423445479425, - "text": "RT @gianelli: We're hiring a second PM for the Data team at @Etsy. RT if you like data. ;) https://t.co/pP1zKTvYt1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Talon Plus" - }, - "default_profile_image": false, - "id": 260044118, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459436144204079104/LPeVolRt.jpeg", - "statuses_count": 15122, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/260044118/1442965095", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14584629", - "following": false, - "friends_count": 279, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "waynewitzel.com", - "url": "https://t.co/Mbxe3QilXq", - "expanded_url": "http://waynewitzel.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/405496748/xa3298200db2865c4d4fde02dc99255e.jpg", - "notifications": false, - "profile_sidebar_fill_color": "1D1D1D", - "profile_link_color": "892DD8", - "geo_enabled": true, - "followers_count": 303, - "location": "Durham, NC", - "screen_name": "wwitzel3", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Wayne Witzel III", - "profile_use_background_image": true, - "description": "Software Engineer at Ansible", - "url": "https://t.co/Mbxe3QilXq", - "profile_text_color": "D4D4D4", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/441524995898888192/MQ-MtfFj_normal.jpeg", - "profile_background_color": "8C8B91", - "created_at": "Tue Apr 29 13:40:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "68FA04", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/441524995898888192/MQ-MtfFj_normal.jpeg", - "favourites_count": 222, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "katco_", - "in_reply_to_user_id": 27390972, - "in_reply_to_status_id_str": "685121455311306752", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685124219701751809", - "id": 685124219701751809, - "text": "@katco_ it reads more emo than intended, I meant, people already just scan and reply and it's only 140. It will only get worse.", - "in_reply_to_user_id_str": "27390972", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "katco_", - "id_str": "27390972", - "id": 27390972, - "indices": [ - 0, - 7 - ], - "name": "Katherine Cox-Buday" - } - ] - }, - "created_at": "Thu Jan 07 15:41:57 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685121455311306752, - "lang": "en" - }, - "default_profile_image": false, - "id": 14584629, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/405496748/xa3298200db2865c4d4fde02dc99255e.jpg", - "statuses_count": 3199, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "63615426", - "following": false, - "friends_count": 1624, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jonathan.sh/dont-trust-you\u2026", - "url": "http://t.co/BL7L2iFse2", - "expanded_url": "http://jonathan.sh/dont-trust-your-cat", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000182485660/cTNCO6Dr.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "7E5C40", - "geo_enabled": true, - "followers_count": 2896, - "location": "kepler-452b", - "screen_name": "jonathanmarvens", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 157, - "name": "jojo", - "profile_use_background_image": true, - "description": "haitian. hacker. engineer @ @npmjs. feminist. i \u2764\ufe0f systems hacking, database theory, and distributed systems. apple juice is bae. be you. believe in yourself.", - "url": "http://t.co/BL7L2iFse2", - "profile_text_color": "EA8418", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666069166445694977/kQEiUvl2_normal.png", - "profile_background_color": "1677AB", - "created_at": "Fri Aug 07 02:31:51 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666069166445694977/kQEiUvl2_normal.png", - "favourites_count": 16025, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612789080178688", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/kosamari/statu\u2026", - "url": "https://t.co/9WdptnI9Q1", - "expanded_url": "https://twitter.com/kosamari/status/685527140801101824", - "indices": [ - 107, - 130 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:03:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612789080178688, - "text": "LOL. I love when programmers straight up lie like this just to make themselves feel better. Such bullshit. https://t.co/9WdptnI9Q1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 63615426, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000182485660/cTNCO6Dr.jpeg", - "statuses_count": 14245, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/63615426/1451830598", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "784984", - "following": false, - "friends_count": 1615, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "info.sean808080.com", - "url": "http://t.co/LqvKkV53nu", - "expanded_url": "http://info.sean808080.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2591707/headstockstar25-full.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 1785, - "location": "Schooleys Mountain, New Jersey", - "screen_name": "sean808080", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 121, - "name": "sean808080", - "profile_use_background_image": true, - "description": "Dad (with @kcmphoto ) to Neo iOS App Developer (MBA & PMP), Child Of Deaf Adults, Amateur (Ham) Radio Op: KC2NEO Work Twitter: @adaptIOTech", - "url": "http://t.co/LqvKkV53nu", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641238036529967104/7mk0oLjI_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Feb 21 00:22:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641238036529967104/7mk0oLjI_normal.jpg", - "favourites_count": 812, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685482512030777344", - "id": 685482512030777344, - "text": "Take Action:Urge Congress to Support the Amateur Radio Parity Act #hamradio", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 67, - 76 - ], - "text": "hamradio" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:25:41 +0000 2016", - "source": "Mobile Web", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 784984, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2591707/headstockstar25-full.jpg", - "statuses_count": 31641, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/784984/1403000347", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "246", - "following": false, - "friends_count": 1516, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "poetica.com", - "url": "https://t.co/h9i4CuXdVd", - "expanded_url": "https://poetica.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/232/bg2.png", - "notifications": false, - "profile_sidebar_fill_color": "91B7FF", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 14448, - "location": "London, UK", - "screen_name": "blaine", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 574, - "name": "Blaine Cook", - "profile_use_background_image": true, - "description": "Sociotechnologist. Social solutions for technological problems. CTO / Co-founder at @Poetica. Founding Engineer at @Twitter.", - "url": "https://t.co/h9i4CuXdVd", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/14022002/171593560_00e00bc7c9_normal.jpg", - "profile_background_color": "E1EFFF", - "created_at": "Wed May 03 18:52:57 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "4485BC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/14022002/171593560_00e00bc7c9_normal.jpg", - "favourites_count": 6282, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "rwchambliss", - "in_reply_to_user_id": 207818606, - "in_reply_to_status_id_str": "685488126316249088", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685490751707443200", - "id": 685490751707443200, - "text": "@rwchambliss @lifewinning \"that's no coconut\"", - "in_reply_to_user_id_str": "207818606", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rwchambliss", - "id_str": "207818606", - "id": 207818606, - "indices": [ - 0, - 12 - ], - "name": "Wayne Chambliss" - }, - { - "screen_name": "lifewinning", - "id_str": "348082699", - "id": 348082699, - "indices": [ - 13, - 25 - ], - "name": "Ingrid Burrington" - } - ] - }, - "created_at": "Fri Jan 08 15:58:25 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685488126316249088, - "lang": "en" - }, - "default_profile_image": false, - "id": 246, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/232/bg2.png", - "statuses_count": 13219, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/246/1415700195", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1704421", - "following": false, - "friends_count": 310, - "entities": { - "description": { - "urls": [ - { - "display_url": "github.com/telehash", - "url": "http://t.co/WG9TNV59NM", - "expanded_url": "http://github.com/telehash", - "indices": [ - 19, - 41 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "jeremie.com/-", - "url": "http://t.co/EAUy42gm1g", - "expanded_url": "http://jeremie.com/-", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572330404/lks4grrmlrjifjbgl64h.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 2762, - "location": "Denver, CO", - "screen_name": "jeremie", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 199, - "name": "Jeremie Miller", - "profile_use_background_image": false, - "description": "Currently building http://t.co/WG9TNV59NM. Helped create Jabber/XMPP, open communication platforms FTW!", - "url": "http://t.co/EAUy42gm1g", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/565991047/jer_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 21 02:44:51 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/565991047/jer_normal.jpg", - "favourites_count": 319, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 10402702, - "possibly_sensitive": false, - "id_str": "678235898148839424", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/telehash/teleh\u2026", - "url": "https://t.co/ij70iPpd62", - "expanded_url": "http://github.com/telehash/telehash.org/", - "indices": [ - 120, - 143 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "elimisteve", - "id_str": "10402702", - "id": 10402702, - "indices": [ - 0, - 11 - ], - "name": "Steven Phillips" - }, - { - "screen_name": "telehash", - "id_str": "101790678", - "id": 101790678, - "indices": [ - 12, - 21 - ], - "name": "telehash" - } - ] - }, - "created_at": "Sat Dec 19 15:30:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "10402702", - "place": { - "url": "https://api.twitter.com/1.1/geo/id/58fe996bbe3a4048.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -104.96747, - 39.783752 - ], - [ - -104.771597, - 39.783752 - ], - [ - -104.771597, - 39.922981 - ], - [ - -104.96747, - 39.922981 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Commerce City, CO", - "id": "58fe996bbe3a4048", - "name": "Commerce City" - }, - "in_reply_to_screen_name": "elimisteve", - "in_reply_to_status_id_str": "678216259591208964", - "truncated": false, - "id": 678235898148839424, - "text": "@elimisteve @telehash setting up the channel does, I'd recommend using github issues for q&a if you're up for that? https://t.co/ij70iPpd62", - "coordinates": null, - "in_reply_to_status_id": 678216259591208964, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1704421, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572330404/lks4grrmlrjifjbgl64h.jpeg", - "statuses_count": 1953, - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1384891", - "following": false, - "friends_count": 664, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "metajack.im", - "url": "http://t.co/367pPJxfkU", - "expanded_url": "http://metajack.im", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "CC3366", - "geo_enabled": false, - "followers_count": 2145, - "location": "Albuquerque, NM", - "screen_name": "metajack", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 178, - "name": "Jack Moffitt", - "profile_use_background_image": true, - "description": "Senior Research Engineer at Mozilla. I work on Servo, Daala, and Rust.", - "url": "http://t.co/367pPJxfkU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/29013962/Photo_7_normal.jpg", - "profile_background_color": "DBE9ED", - "created_at": "Sun Mar 18 00:14:42 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBE9ED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/29013962/Photo_7_normal.jpg", - "favourites_count": 345, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "seanlinsley", - "in_reply_to_user_id": 1169544588, - "in_reply_to_status_id_str": "629781107802701825", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "665277971914076160", - "id": 665277971914076160, - "text": "@seanlinsley @outreachy @christi3k We are! @lastontheboat is reviewing applications and I believe we will one starting in December", - "in_reply_to_user_id_str": "1169544588", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "seanlinsley", - "id_str": "1169544588", - "id": 1169544588, - "indices": [ - 0, - 12 - ], - "name": "Sean \u270f\ufe0f" - }, - { - "screen_name": "outreachy", - "id_str": "2800780073", - "id": 2800780073, - "indices": [ - 13, - 23 - ], - "name": "FOSS Outreach" - }, - { - "screen_name": "christi3k", - "id_str": "14111858", - "id": 14111858, - "indices": [ - 24, - 34 - ], - "name": "Christie Koehler" - }, - { - "screen_name": "lastontheboat", - "id_str": "47735734", - "id": 47735734, - "indices": [ - 43, - 57 - ], - "name": "Josh Matthews" - } - ] - }, - "created_at": "Fri Nov 13 21:20:03 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 629781107802701825, - "lang": "en" - }, - "default_profile_image": false, - "id": 1384891, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "statuses_count": 2516, - "is_translator": false - }, - { - "time_zone": "Brussels", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "803083", - "following": false, - "friends_count": 130, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "el-tramo.be", - "url": "https://t.co/rPMuAs3JDi", - "expanded_url": "https://el-tramo.be", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 332, - "location": "Belgium", - "screen_name": "remko", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 34, - "name": "Remko Tron\u00e7on", - "profile_use_background_image": true, - "description": "Software \u00b7 Music \u00b7 BookWidgets", - "url": "https://t.co/rPMuAs3JDi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1577244530/remko_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Thu Mar 01 08:33:39 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1577244530/remko_normal.jpeg", - "favourites_count": 511, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "remko", - "in_reply_to_user_id": 803083, - "in_reply_to_status_id_str": "684842439480311810", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684843286993985536", - "id": 684843286993985536, - "text": "@steven_odb Zijn we hopelijk snel van die fb-me en tweetlonger links af. Slechte (lange) content wordt sowieso afgestraft zou ik denken", - "in_reply_to_user_id_str": "803083", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "steven_odb", - "id_str": "227627337", - "id": 227627337, - "indices": [ - 0, - 11 - ], - "name": "Steven Op de beeck" - } - ] - }, - "created_at": "Wed Jan 06 21:05:38 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684842439480311810, - "lang": "nl" - }, - "default_profile_image": false, - "id": 803083, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 1995, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/803083/1347996309", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "101143", - "following": false, - "friends_count": 153, - "entities": { - "description": { - "urls": [ - { - "display_url": "monarchyllc.com", - "url": "http://t.co/x480TwaG8Q", - "expanded_url": "http://monarchyllc.com", - "indices": [ - 43, - 65 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "alexking.org", - "url": "http://t.co/4ugwz2gZBx", - "expanded_url": "http://alexking.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "EAEAFC", - "profile_link_color": "556699", - "geo_enabled": false, - "followers_count": 9073, - "location": "Denver, CO", - "screen_name": "alexkingorg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 721, - "name": "Alex King", - "profile_use_background_image": false, - "description": "Denver independent web developer/designer (http://t.co/x480TwaG8Q), original contributor to @wordpress, creator of the Share Icon.", - "url": "http://t.co/4ugwz2gZBx", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/457969928658624512/ILGIK1Un_normal.jpeg", - "profile_background_color": "8899CC", - "created_at": "Thu Dec 21 08:19:38 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/457969928658624512/ILGIK1Un_normal.jpeg", - "favourites_count": 2872, - "status": { - "retweet_count": 147, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "636283117070749697", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "alexking.org/?p=22017", - "url": "http://t.co/jA7t269OvT", - "expanded_url": "http://alexking.org/?p=22017", - "indices": [ - 59, - 81 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Aug 25 21:04:51 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 636283117070749697, - "text": "Dear WordPress community folks, I have a favor to ask you. http://t.co/jA7t269OvT", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 69, - "contributors": null, - "source": "Social Proxy by Mailchimp" - }, - "default_profile_image": false, - "id": 101143, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5595, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/101143/1398017193", - "is_translator": false - }, - { - "time_zone": "Brussels", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "9676412", - "following": false, - "friends_count": 1665, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eschnou.com", - "url": "https://t.co/OQ62SUYsDf", - "expanded_url": "https://eschnou.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "006399", - "geo_enabled": true, - "followers_count": 1985, - "location": "Belgium", - "screen_name": "eschnou", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 164, - "name": "Laurent Eschenauer", - "profile_use_background_image": false, - "description": "Entrepreneur, tech geek & rock climber. Founder and CEO of @gofleye. Inventing the future of consumer drones. Falling in love with hardware startups.", - "url": "https://t.co/OQ62SUYsDf", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/433686519694360576/sH22Mvnq_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Thu Oct 25 05:49:08 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/433686519694360576/sH22Mvnq_normal.jpeg", - "favourites_count": 476, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "OliverHeldens", - "in_reply_to_user_id": 256569627, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "683020255581593600", - "id": 683020255581593600, - "text": "@OliverHeldens The Christmas disco mix is awesome! I'll be at Omnia tomorrow and hope you will squeeze a few of these jewels in the mix :)", - "in_reply_to_user_id_str": "256569627", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "OliverHeldens", - "id_str": "256569627", - "id": 256569627, - "indices": [ - 0, - 14 - ], - "name": "Oliver Heldens" - } - ] - }, - "created_at": "Fri Jan 01 20:21:33 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 9676412, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5843, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9676412/1398885593", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "6592342", - "following": false, - "friends_count": 36, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "matthewwild.co.uk", - "url": "http://t.co/hLZKuW1Cda", - "expanded_url": "http://matthewwild.co.uk/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 126, - "location": "UK", - "screen_name": "MattJ", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Matthew Wild", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/hLZKuW1Cda", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2332299377/owtmwxsi0xfbl7kva0fw_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Jun 05 12:12:14 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2332299377/owtmwxsi0xfbl7kva0fw_normal.jpeg", - "favourites_count": 14, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "674354353139032069", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pledgemusic.com/projects/thefa\u2026", - "url": "https://t.co/hSsZm5pF0p", - "expanded_url": "http://www.pledgemusic.com/projects/thefairrain?utm_campaign=project11425", - "indices": [ - 48, - 71 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PledgeMusic", - "id_str": "34278049", - "id": 34278049, - "indices": [ - 76, - 88 - ], - "name": "PledgeMusic" - } - ] - }, - "created_at": "Tue Dec 08 22:26:21 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 674354353139032069, - "text": "The Fair Rain: Behind The Glass - Album Release https://t.co/hSsZm5pF0p via @pledgemusic", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 6592342, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 350, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6592342/1411719451", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "1711171", - "following": false, - "friends_count": 1484, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "peterkeane.com", - "url": "http://t.co/4gOwSPULxD", - "expanded_url": "http://peterkeane.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 852, - "location": "N 30\u00b018' 0'' / W 97\u00b042' 0''", - "screen_name": "pkeane", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 51, - "name": "Peter Keane", - "profile_use_background_image": true, - "description": "Software Engineer at Etsy", - "url": "http://t.co/4gOwSPULxD", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/634320167/Photo_35_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Mar 21 04:17:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/634320167/Photo_35_normal.jpg", - "favourites_count": 1323, - "status": { - "retweet_count": 9, - "retweeted_status": { - "retweet_count": 9, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "675072183119556608", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 465, - "h": 119, - "resize": "fit" - }, - "medium": { - "w": 465, - "h": 119, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 119, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 87, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", - "type": "photo", - "indices": [ - 39, - 62 - ], - "media_url": "http://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", - "display_url": "pic.twitter.com/PJyoJQh1UU", - "id_str": "675072182612029440", - "expanded_url": "http://twitter.com/skrug/status/675072183119556608/photo/1", - "id": 675072182612029440, - "url": "https://t.co/PJyoJQh1UU" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 10 21:58:45 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675072183119556608, - "text": "But it does make you...happier, right? https://t.co/PJyoJQh1UU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "675770880652353536", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 465, - "h": 119, - "resize": "fit" - }, - "medium": { - "w": 465, - "h": 119, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 119, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 87, - "resize": "fit" - } - }, - "source_status_id_str": "675072183119556608", - "url": "https://t.co/PJyoJQh1UU", - "media_url": "http://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", - "source_user_id_str": "18544024", - "id_str": "675072182612029440", - "id": 675072182612029440, - "media_url_https": "https://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", - "type": "photo", - "indices": [ - 50, - 73 - ], - "source_status_id": 675072183119556608, - "source_user_id": 18544024, - "display_url": "pic.twitter.com/PJyoJQh1UU", - "expanded_url": "http://twitter.com/skrug/status/675072183119556608/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "skrug", - "id_str": "18544024", - "id": 18544024, - "indices": [ - 3, - 9 - ], - "name": "Steve Krug" - } - ] - }, - "created_at": "Sat Dec 12 20:15:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675770880652353536, - "text": "RT @skrug: But it does make you...happier, right? https://t.co/PJyoJQh1UU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1711171, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4827, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "26306597", - "following": false, - "friends_count": 79, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 353, - "location": "", - "screen_name": "rlbarnes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Richard Barnes", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3086983852/4b1788dbacf96c683b042f04515a239f_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 24 19:44:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3086983852/4b1788dbacf96c683b042f04515a239f_normal.jpeg", - "favourites_count": 102, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "lorenzoFB", - "in_reply_to_user_id": 55643029, - "in_reply_to_status_id_str": "685511371643998208", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685542062075199489", - "id": 685542062075199489, - "text": "@lorenzoFB @HTTPSEverywhere @motherboard @bcrypt But why are you holding it back from everyone else?", - "in_reply_to_user_id_str": "55643029", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lorenzoFB", - "id_str": "55643029", - "id": 55643029, - "indices": [ - 0, - 10 - ], - "name": "Lorenzo Franceschi-B" - }, - { - "screen_name": "HTTPSEverywhere", - "id_str": "2243440136", - "id": 2243440136, - "indices": [ - 11, - 27 - ], - "name": "HTTPS Everywhere" - }, - { - "screen_name": "motherboard", - "id_str": "56510427", - "id": 56510427, - "indices": [ - 28, - 40 - ], - "name": "Motherboard" - }, - { - "screen_name": "bcrypt", - "id_str": "968881477", - "id": 968881477, - "indices": [ - 41, - 48 - ], - "name": "yan" - } - ] - }, - "created_at": "Fri Jan 08 19:22:19 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685511371643998208, - "lang": "en" - }, - "default_profile_image": false, - "id": 26306597, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 372, - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "40691407", - "following": false, - "friends_count": 148, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jitsi.org", - "url": "https://t.co/pf8hKet9PU", - "expanded_url": "https://jitsi.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 351, - "location": "France", - "screen_name": "emilivov", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Emil Ivov", - "profile_use_background_image": true, - "description": "Jitsi Project Lead", - "url": "https://t.co/pf8hKet9PU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/456109009158692865/QEvN0Vnz_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun May 17 16:53:12 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/456109009158692865/QEvN0Vnz_normal.png", - "favourites_count": 55, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "662417254835875840", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", - "display_url": "pic.twitter.com/l9giFod0rz", - "id_str": "662417252508024833", - "expanded_url": "http://twitter.com/sreuter/status/662417254835875840/photo/1", - "id": 662417252508024833, - "url": "https://t.co/l9giFod0rz" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Nov 05 23:52:35 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 662417254835875840, - "text": "WOW - Mike just announced enso.me to the world, a huge team effort I'm super excited to be a part of. Check it out! https://t.co/l9giFod0rz", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "662654329053163520", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "662417254835875840", - "url": "https://t.co/l9giFod0rz", - "media_url": "http://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", - "source_user_id_str": "11101892", - "id_str": "662417252508024833", - "id": 662417252508024833, - "media_url_https": "https://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 662417254835875840, - "source_user_id": 11101892, - "display_url": "pic.twitter.com/l9giFod0rz", - "expanded_url": "http://twitter.com/sreuter/status/662417254835875840/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sreuter", - "id_str": "11101892", - "id": 11101892, - "indices": [ - 3, - 11 - ], - "name": "Sascha Reuter" - } - ] - }, - "created_at": "Fri Nov 06 15:34:38 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 662654329053163520, - "text": "RT @sreuter: WOW - Mike just announced enso.me to the world, a huge team effort I'm super excited to be a part of. Check it out! https://t.\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 40691407, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 111, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15094432", - "following": false, - "friends_count": 672, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1798, - "location": "Seattle, WA", - "screen_name": "hillbrad", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 110, - "name": "hillbrad", - "profile_use_background_image": true, - "description": "Security Engineer @Facebook, WebAppSec WG Chair @w3c, (former) contributor @FIDOAlliance. This personal account does not speak on behalf of my affiliations.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/517056894750306305/Mzx4Y1aH_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 12 07:24:54 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/517056894750306305/Mzx4Y1aH_normal.jpeg", - "favourites_count": 1549, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "pkedrosky", - "in_reply_to_user_id": 1717291, - "in_reply_to_status_id_str": "685199689008967680", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685201241916346368", - "id": 685201241916346368, - "text": "@pkedrosky SUVs", - "in_reply_to_user_id_str": "1717291", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "pkedrosky", - "id_str": "1717291", - "id": 1717291, - "indices": [ - 0, - 10 - ], - "name": "Paul Kedrosky" - } - ] - }, - "created_at": "Thu Jan 07 20:48:01 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685199689008967680, - "lang": "en" - }, - "default_profile_image": false, - "id": 15094432, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4091, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15094432/1365202222", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "301147914", - "following": false, - "friends_count": 35775, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "yesworld.com", - "url": "http://t.co/0TJR0Qpqnk", - "expanded_url": "http://yesworld.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572531738488737792/EYRLja2w.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "647839", - "geo_enabled": true, - "followers_count": 68659, - "location": "London, GB", - "screen_name": "yesofficial", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1039, - "name": "yesofficial", - "profile_use_background_image": true, - "description": "English Progressive Rock Band 45 yrs, 20 studio albums. Currently Jon Davison vocal, Billy Sherwood bass, Steve Howe guitar, Alan White drums, Geoff Downes keys", - "url": "http://t.co/0TJR0Qpqnk", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/672487004744130573/bH2k3ZXR_normal.jpg", - "profile_background_color": "FFDE01", - "created_at": "Wed May 18 23:47:04 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/672487004744130573/bH2k3ZXR_normal.jpg", - "favourites_count": 6, - "status": { - "retweet_count": 21, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684766382957830144", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "soundcloud.com/jon-kirkman/be\u2026", - "url": "https://t.co/oTJghrDjGZ", - "expanded_url": "https://soundcloud.com/jon-kirkman/benoit-illness", - "indices": [ - 62, - 85 - ] - } - ], - "hashtags": [ - { - "indices": [ - 86, - 98 - ], - "text": "YESdialogue" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 16:00:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684766382957830144, - "text": "Benoit David Discusses The Illness That Forced Him Out Of Yes\nhttps://t.co/oTJghrDjGZ\n#YESdialogue", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 19, - "contributors": null, - "source": "Sprout Social" - }, - "default_profile_image": false, - "id": 301147914, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572531738488737792/EYRLja2w.jpeg", - "statuses_count": 3095, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/301147914/1449168357", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "133870619", - "following": false, - "friends_count": 208, - "entities": { - "description": { - "urls": [ - { - "display_url": "xmpp.net", - "url": "http://t.co/Hbv99jdQe1", - "expanded_url": "http://xmpp.net", - "indices": [ - 38, - 60 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "blog.thijsalkema.de", - "url": "https://t.co/wXva8FRFq7", - "expanded_url": "https://blog.thijsalkema.de", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 281, - "location": "The Netherlands", - "screen_name": "xnyhps", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Thijs Alkemade", - "profile_use_background_image": true, - "description": "Lead developer of Adium. | Creator of http://t.co/Hbv99jdQe1", - "url": "https://t.co/wXva8FRFq7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/900392103/avatar_nieuw_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Apr 16 21:26:53 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/900392103/avatar_nieuw_normal.png", - "favourites_count": 9, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "patio11", - "in_reply_to_user_id": 20844341, - "in_reply_to_status_id_str": "677106028379398144", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677117426392301568", - "id": 677117426392301568, - "text": "@patio11 Was really close with 4, needed another 15 minutes at most. Then... error 502.", - "in_reply_to_user_id_str": "20844341", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "patio11", - "id_str": "20844341", - "id": 20844341, - "indices": [ - 0, - 8 - ], - "name": "Patrick McKenzie" - } - ] - }, - "created_at": "Wed Dec 16 13:25:49 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 677106028379398144, - "lang": "en" - }, - "default_profile_image": false, - "id": 133870619, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 175, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "15320027", - "following": false, - "friends_count": 375, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bettercallsaghul.com", - "url": "http://t.co/PXagcRYI5h", - "expanded_url": "http://bettercallsaghul.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2327, - "location": "Amsterdam, NL", - "screen_name": "saghul", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 114, - "name": "Sa\u00fal Ibarra Corretg\u00e9", - "profile_use_background_image": true, - "description": "SIP, XMPP, VoIP, presence and IM lover, geek, Pythonista, geek again! libuv Core Janitor.", - "url": "http://t.co/PXagcRYI5h", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/56248414/saghul-avatar_normal.png", - "profile_background_color": "022330", - "created_at": "Fri Jul 04 18:48:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/56248414/saghul-avatar_normal.png", - "favourites_count": 696, - "status": { - "retweet_count": 16, - "retweeted_status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685441345893208065", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "matt.sh/howto-c", - "url": "https://t.co/Rz8KT0lAHS", - "expanded_url": "https://matt.sh/howto-c", - "indices": [ - 20, - 43 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 12:42:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685441345893208065, - "text": "How to C in 2016... https://t.co/Rz8KT0lAHS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 18, - "contributors": null, - "source": "Hacker News Bot" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685449912478253056", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "matt.sh/howto-c", - "url": "https://t.co/Rz8KT0lAHS", - "expanded_url": "https://matt.sh/howto-c", - "indices": [ - 39, - 62 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "hackernewsbot", - "id_str": "19575586", - "id": 19575586, - "indices": [ - 3, - 17 - ], - "name": "Hacker News Bot" - } - ] - }, - "created_at": "Fri Jan 08 13:16:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685449912478253056, - "text": "RT @hackernewsbot: How to C in 2016... https://t.co/Rz8KT0lAHS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 15320027, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 18369, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7365272", - "following": false, - "friends_count": 218, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "synapse.com", - "url": "http://t.co/XBlAjHevlw", - "expanded_url": "http://www.synapse.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2378908/IMG_2793.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "17B404", - "geo_enabled": true, - "followers_count": 469, - "location": "Seattle, WA", - "screen_name": "packet", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "Rachel Blackman", - "profile_use_background_image": true, - "description": "Engineer, Synapster, former Trillian developer, writer, and photographer in Seattle. My rather more active gaming account is at @Packetdancer", - "url": "http://t.co/XBlAjHevlw", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/422962683/ffsparks-new_normal.png", - "profile_background_color": "7D0B0B", - "created_at": "Tue Jul 10 06:42:44 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/422962683/ffsparks-new_normal.png", - "favourites_count": 26, - "status": { - "retweet_count": 2, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "673983965150056448", - "id": 673983965150056448, - "text": "A dystopian novel: #Jira becomes self-aware and decides the most efficient workflow is one where humans can't use Jira b/c they're extinct.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 19, - 24 - ], - "text": "Jira" - } - ], - "user_mentions": [] - }, - "created_at": "Mon Dec 07 21:54:33 +0000 2015", - "source": "TweetDeck", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "674023141824311296", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 37, - 42 - ], - "text": "Jira" - } - ], - "user_mentions": [ - { - "screen_name": "brandonlrice", - "id_str": "195917376", - "id": 195917376, - "indices": [ - 3, - 16 - ], - "name": "Brandon Rice" - } - ] - }, - "created_at": "Tue Dec 08 00:30:14 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 674023141824311296, - "text": "RT @brandonlrice: A dystopian novel: #Jira becomes self-aware and decides the most efficient workflow is one where humans can't use Jira b/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 7365272, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2378908/IMG_2793.jpg", - "statuses_count": 4588, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14833631", - "following": false, - "friends_count": 91, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "babelmonkeys.de", - "url": "http://t.co/RdH1yHuIzA", - "expanded_url": "http://babelmonkeys.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 89, - "location": "H\u00fcrth", - "screen_name": "florob", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Florian Zeitz", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/RdH1yHuIzA", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/639151006002118656/x-PrqJSV_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon May 19 15:13:04 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/639151006002118656/x-PrqJSV_normal.jpg", - "favourites_count": 51, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MieMaMeise", - "in_reply_to_user_id": 41142991, - "in_reply_to_status_id_str": "685598035083149312", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685604050684002304", - "id": 685604050684002304, - "text": "@MieMaMeise Way out in the water, see it swimming.", - "in_reply_to_user_id_str": "41142991", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MieMaMeise", - "id_str": "41142991", - "id": 41142991, - "indices": [ - 0, - 11 - ], - "name": "meise" - } - ] - }, - "created_at": "Fri Jan 08 23:28:38 +0000 2016", - "source": "Tweetian for Sailfish OS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598035083149312, - "lang": "en" - }, - "default_profile_image": false, - "id": 14833631, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 683, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14833631/1441058352", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1877954299", - "following": false, - "friends_count": 191, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 243, - "location": "", - "screen_name": "KathleeMoriarty", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Kathleen Moriarty", - "profile_use_background_image": true, - "description": "Currently serving as Security Area Director for the IETF, works for EMC, swimmer & occassional triathlete. Views presented are mine and not that of my employer.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000472218251/d8cb0b440b5ecdcff7c2d7e263b5f6e9_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 18 03:46:19 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000472218251/d8cb0b440b5ecdcff7c2d7e263b5f6e9_normal.jpeg", - "favourites_count": 160, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "RobinHoodCoop", - "in_reply_to_user_id": 1101058794, - "in_reply_to_status_id_str": "674758150830952448", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "674794795546603520", - "id": 674794795546603520, - "text": "@robinhoodcoop was in a pool with about 20 people swimming laps. I think you have the wrong Kathleen.", - "in_reply_to_user_id_str": "1101058794", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RobinHoodCoop", - "id_str": "1101058794", - "id": 1101058794, - "indices": [ - 0, - 14 - ], - "name": "Robin Hood Co-op" - } - ] - }, - "created_at": "Thu Dec 10 03:36:30 +0000 2015", - "source": "Mobile Web (M2)", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 674758150830952448, - "lang": "en" - }, - "default_profile_image": false, - "id": 1877954299, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 314, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "182439750", - "following": false, - "friends_count": 233, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "countingfromzero.wordpress.com", - "url": "http://t.co/YkuTNBXKW0", - "expanded_url": "http://countingfromzero.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 940, - "location": "St. Louis", - "screen_name": "alanbjohnston", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 53, - "name": "Alan B. Johnston", - "profile_use_background_image": true, - "description": "WebRTC, SIP, and VoIP subject matter expert, author of 'Counting from Zero' technothriller and WebRTC book, lecturer, robotics mentor, traveler.", - "url": "http://t.co/YkuTNBXKW0", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2664154555/5e200b8e6aec0af53649f9bf752ba5ea_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Aug 24 16:09:53 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2664154555/5e200b8e6aec0af53649f9bf752ba5ea_normal.jpeg", - "favourites_count": 23, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684489120886833156", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "letsencrypt.org/howitworks/", - "url": "https://t.co/5e4yLkkWNM", - "expanded_url": "https://letsencrypt.org/howitworks/", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "letsencrypt", - "id_str": "2887837801", - "id": 2887837801, - "indices": [ - 89, - 101 - ], - "name": "Let's Encrypt" - } - ] - }, - "created_at": "Tue Jan 05 21:38:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684489120886833156, - "text": "First accomplishment of the new year: generating and installing a free certificate using @letsencrypt! Here's how: https://t.co/5e4yLkkWNM", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 182439750, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 481, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3339171", - "following": false, - "friends_count": 2827, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "doc.searls.com", - "url": "http://t.co/wxYeU4br7d", - "expanded_url": "http://doc.searls.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2032212/sunset2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 22677, - "location": "SBA, BOS, JFK, EWR, SFO, LHR", - "screen_name": "dsearls", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2033, - "name": "Doc Searls", - "profile_use_background_image": true, - "description": "Author of The Intention Economy, co-author of The Cluetrain Manifesto, variously connected with stuff at Harvard, NYU and UCSB.", - "url": "http://t.co/wxYeU4br7d", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1250175157/headshot_blackshirt_5_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Apr 03 16:47:00 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1250175157/headshot_blackshirt_5_normal.jpg", - "favourites_count": 12, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685569248886849536", - "id": 685569248886849536, - "text": "Looking for a quant who works in adtech. DM me or write my first name at my last name. Thanks!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:10:20 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 3339171, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2032212/sunset2.jpg", - "statuses_count": 9968, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3339171/1365217514", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "20695117", - "following": false, - "friends_count": 934, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "learnfromlisa.com", - "url": "http://t.co/DPUhcQg5zq", - "expanded_url": "http://learnfromlisa.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/723030511/a6edfb7e3d68e87264874ca185a65dd1.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "1C1C1C", - "profile_link_color": "3544F0", - "geo_enabled": false, - "followers_count": 2629, - "location": "ny", - "screen_name": "lisamarienyc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 197, - "name": "Lisa Larson-Kelley", - "profile_use_background_image": true, - "description": "Online video, realtime communication consultant + tech writer + trainer. Building bridges across the chasms of technology #WebRTC #HTML5 #Flash #Prezi #Canva", - "url": "http://t.co/DPUhcQg5zq", - "profile_text_color": "5C91B9", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/938820826/lisa14_360x499_normal.jpg", - "profile_background_color": "C0DCF1", - "created_at": "Thu Feb 12 17:22:26 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/938820826/lisa14_360x499_normal.jpg", - "favourites_count": 905, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685550799561166848", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/canva/status/6\u2026", - "url": "https://t.co/oJqyvaJDJv", - "expanded_url": "https://twitter.com/canva/status/685476147258388480", - "indices": [ - 87, - 110 - ] - } - ], - "hashtags": [ - { - "indices": [ - 57, - 69 - ], - "text": "socialmedia" - }, - { - "indices": [ - 70, - 83 - ], - "text": "calltoaction" - } - ], - "user_mentions": [ - { - "screen_name": "canva", - "id_str": "36542528", - "id": 36542528, - "indices": [ - 50, - 56 - ], - "name": "Canva" - } - ] - }, - "created_at": "Fri Jan 08 19:57:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685550799561166848, - "text": "Oh hey ya'll - here's another article I wrote for @canva #socialmedia #calltoaction :) https://t.co/oJqyvaJDJv", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685552779033735169", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/canva/status/6\u2026", - "url": "https://t.co/oJqyvaJDJv", - "expanded_url": "https://twitter.com/canva/status/685476147258388480", - "indices": [ - 107, - 130 - ] - } - ], - "hashtags": [ - { - "indices": [ - 77, - 89 - ], - "text": "socialmedia" - }, - { - "indices": [ - 90, - 103 - ], - "text": "calltoaction" - } - ], - "user_mentions": [ - { - "screen_name": "colorcodedlife", - "id_str": "621464045", - "id": 621464045, - "indices": [ - 3, - 18 - ], - "name": "Amanda O." - }, - { - "screen_name": "canva", - "id_str": "36542528", - "id": 36542528, - "indices": [ - 70, - 76 - ], - "name": "Canva" - } - ] - }, - "created_at": "Fri Jan 08 20:04:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685552779033735169, - "text": "RT @colorcodedlife: Oh hey ya'll - here's another article I wrote for @canva #socialmedia #calltoaction :) https://t.co/oJqyvaJDJv", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 20695117, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/723030511/a6edfb7e3d68e87264874ca185a65dd1.jpeg", - "statuses_count": 3108, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/20695117/1444750692", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7515742", - "following": false, - "friends_count": 493, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "brycebaril.com", - "url": "https://t.co/9cLztF736X", - "expanded_url": "http://brycebaril.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000099677531/145a49179b3c082ca3d09165b1459bc7.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 1509, - "location": "Kepler-452b", - "screen_name": "brycebaril", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 77, - "name": "Bryce Baril", - "profile_use_background_image": true, - "description": "Nothing Is Sacred", - "url": "https://t.co/9cLztF736X", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685184829365682176/piZBuQV7_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Mon Jul 16 20:31:48 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685184829365682176/piZBuQV7_normal.jpg", - "favourites_count": 3793, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.7900653, - 45.421863 - ], - [ - -122.471751, - 45.421863 - ], - [ - -122.471751, - 45.6509405 - ], - [ - -122.7900653, - 45.6509405 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Portland, OR", - "id": "ac88a4f17a51c7fc", - "name": "Portland" - }, - "in_reply_to_screen_name": "andychilton", - "in_reply_to_user_id": 10802172, - "in_reply_to_status_id_str": "685561201112174592", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685565590765830144", - "id": 685565590765830144, - "text": "@andychilton Is it the weird frog feet? Otherwise I'm not seeing it", - "in_reply_to_user_id_str": "10802172", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "andychilton", - "id_str": "10802172", - "id": 10802172, - "indices": [ - 0, - 12 - ], - "name": "\u2605 Andrew Chilton \u2605" - } - ] - }, - "created_at": "Fri Jan 08 20:55:48 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685561201112174592, - "lang": "en" - }, - "default_profile_image": false, - "id": 7515742, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000099677531/145a49179b3c082ca3d09165b1459bc7.jpeg", - "statuses_count": 6334, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7515742/1444065911", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1736231", - "following": false, - "friends_count": 123, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lnxwolf.deviantart.com", - "url": "http://t.co/dDDP2NZ1kJ", - "expanded_url": "http://lnxwolf.deviantart.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "A52A2A", - "geo_enabled": false, - "followers_count": 97, - "location": "Denver, CO, USA", - "screen_name": "linuxwolf", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Matt Miller", - "profile_use_background_image": false, - "description": "XMPP specialist, JOSE enthusiast, frequent prankster, occasional sketch artist. Opinions expressed are my own.", - "url": "http://t.co/dDDP2NZ1kJ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/615915426032152576/PhNZJjWw_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Mar 21 11:46:48 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/615915426032152576/PhNZJjWw_normal.png", - "favourites_count": 66, - "status": { - "retweet_count": 3655, - "retweeted_status": { - "retweet_count": 3655, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685508824132890624", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 192, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 339, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 580, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", - "type": "photo", - "indices": [ - 112, - 135 - ], - "media_url": "http://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", - "display_url": "pic.twitter.com/JXBm1L674A", - "id_str": "685508823856058369", - "expanded_url": "http://twitter.com/TheOnion/status/685508824132890624/photo/1", - "id": 685508823856058369, - "url": "https://t.co/JXBm1L674A" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "onion.com/1OUGJGn", - "url": "https://t.co/bRphMHDNYZ", - "expanded_url": "http://onion.com/1OUGJGn", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:10:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685508824132890624, - "text": "Chicago Police Department To Monitor All Interactions With Public Using New Bullet Cams https://t.co/bRphMHDNYZ https://t.co/JXBm1L674A", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4847, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685533439668293632", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 192, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 339, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 580, - "resize": "fit" - } - }, - "source_status_id_str": "685508824132890624", - "url": "https://t.co/JXBm1L674A", - "media_url": "http://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", - "source_user_id_str": "14075928", - "id_str": "685508823856058369", - "id": 685508823856058369, - "media_url_https": "https://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", - "type": "photo", - "indices": [ - 126, - 140 - ], - "source_status_id": 685508824132890624, - "source_user_id": 14075928, - "display_url": "pic.twitter.com/JXBm1L674A", - "expanded_url": "http://twitter.com/TheOnion/status/685508824132890624/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "onion.com/1OUGJGn", - "url": "https://t.co/bRphMHDNYZ", - "expanded_url": "http://onion.com/1OUGJGn", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheOnion", - "id_str": "14075928", - "id": 14075928, - "indices": [ - 3, - 12 - ], - "name": "The Onion" - } - ] - }, - "created_at": "Fri Jan 08 18:48:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685533439668293632, - "text": "RT @TheOnion: Chicago Police Department To Monitor All Interactions With Public Using New Bullet Cams https://t.co/bRphMHDNYZ https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1736231, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 579, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "17722582", - "following": false, - "friends_count": 214, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "keithnerdin.com", - "url": "http://t.co/vSNXnHLQjo", - "expanded_url": "http://keithnerdin.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/800154636/62c08bdf00cdf5a40aa30be085f06945.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "B23600", - "geo_enabled": true, - "followers_count": 419, - "location": "Walla Walla, WA", - "screen_name": "keithnerdin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Keith Nerdin", - "profile_use_background_image": true, - "description": "Growth Strategist & Happiness Coach | Founder of EmberFuel", - "url": "http://t.co/vSNXnHLQjo", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657029521812549632/CMjv-ByO_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Nov 28 23:20:40 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657029521812549632/CMjv-ByO_normal.jpg", - "favourites_count": 3985, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "TechStud", - "in_reply_to_user_id": 13000552, - "in_reply_to_status_id_str": "657280036735725568", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "657286735194275840", - "id": 657286735194275840, - "text": "@TechStud I would love to Jason. Just getting the wheels turning on this but excited at the response/support it's receiving!", - "in_reply_to_user_id_str": "13000552", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TechStud", - "id_str": "13000552", - "id": 13000552, - "indices": [ - 0, - 9 - ], - "name": "Jason Clarke" - } - ] - }, - "created_at": "Thu Oct 22 20:05:44 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 657280036735725568, - "lang": "en" - }, - "default_profile_image": false, - "id": 17722582, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/800154636/62c08bdf00cdf5a40aa30be085f06945.jpeg", - "statuses_count": 5064, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17722582/1436248487", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2412227593", - "following": false, - "friends_count": 128, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "xmpp.org", - "url": "http://t.co/WeHoWeNdEN", - "expanded_url": "http://xmpp.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 546, - "location": "", - "screen_name": "xmpp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "XMPP", - "profile_use_background_image": false, - "description": "XMPP Standards Foundation. Promoting open communication.", - "url": "http://t.co/WeHoWeNdEN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/448737500681342976/Pvd3o6p0_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 26 07:26:50 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/448737500681342976/Pvd3o6p0_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "631008981348126720", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wiki.xmpp.org/web/index.php?\u2026", - "url": "http://t.co/FtRXTLyfz8", - "expanded_url": "http://wiki.xmpp.org/web/index.php?title=Myths", - "indices": [ - 63, - 85 - ] - } - ], - "hashtags": [ - { - "indices": [ - 17, - 22 - ], - "text": "xmpp" - } - ], - "user_mentions": [ - { - "screen_name": "lloydwatkin", - "id_str": "46902840", - "id": 46902840, - "indices": [ - 3, - 15 - ], - "name": "\uff2c\u03b9\uff4f\u04ae\u0110 \u0461\u03b1\uff54\u03ba\u13a5\u0274" - }, - { - "screen_name": "DwdDave", - "id_str": "1846739046", - "id": 1846739046, - "indices": [ - 53, - 61 - ], - "name": "Dave Cridland" - } - ] - }, - "created_at": "Tue Aug 11 07:47:19 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 631008981348126720, - "text": "RT @lloydwatkin: #xmpp myths as expertly debunked by @DwdDave http://t.co/FtRXTLyfz8", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 2412227593, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 74, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "317608274", - "following": false, - "friends_count": 118, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "erik-ralston.com", - "url": "http://t.co/Fg4KmdcIQv", - "expanded_url": "http://erik-ralston.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/565398127/darkdenim3.png", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 392, - "location": "Tri-Cities, WA", - "screen_name": "ErikRalston", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Erik Ralston", - "profile_use_background_image": true, - "description": "Team Lead & Technical Architect at @LiveTilesUI - Co-Founder at @FuseSPC Coworking - Web & Mobile Developer - Tri-Citizen", - "url": "http://t.co/Fg4KmdcIQv", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000221107759/6e6d7c3e45ad15ace6c8f1653ce25b8d_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Jun 15 05:45:49 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000221107759/6e6d7c3e45ad15ace6c8f1653ce25b8d_normal.jpeg", - "favourites_count": 1176, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685533930947149824", - "id": 685533930947149824, - "text": "Unlike John Mayer, I'm not waiting for anything", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:50:00 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 317608274, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/565398127/darkdenim3.png", - "statuses_count": 3859, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/317608274/1413250836", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "813333008", - "following": false, - "friends_count": 982, - "entities": { - "description": { - "urls": [ - { - "display_url": "codepen.io/sdras/", - "url": "https://t.co/GCxUOGLXFI", - "expanded_url": "http://codepen.io/sdras/", - "indices": [ - 116, - 139 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "sarahdrasnerdesign.com", - "url": "https://t.co/pr1NhYaDta", - "expanded_url": "http://sarahdrasnerdesign.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458960512647041024/brIv5N37.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "4A9B85", - "geo_enabled": false, - "followers_count": 5045, - "location": "San Francisco, California", - "screen_name": "sarah_edo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 282, - "name": "Sarah Drasner", - "profile_use_background_image": true, - "description": "Award-winning Senior UX Engineer. Works at Trulia (Zillow), staff writer @Real_CSS_Tricks, obsessed with animation: https://t.co/GCxUOGLXFI", - "url": "https://t.co/pr1NhYaDta", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/613162577426817024/Lmi8X5tT_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Sep 09 15:24:34 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/613162577426817024/Lmi8X5tT_normal.jpg", - "favourites_count": 14201, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "rachsmithtweets", - "in_reply_to_user_id": 22354434, - "in_reply_to_status_id_str": "685495149410041856", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685496016238333953", - "id": 685496016238333953, - "text": "@rachsmithtweets niiiiiice", - "in_reply_to_user_id_str": "22354434", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rachsmithtweets", - "id_str": "22354434", - "id": 22354434, - "indices": [ - 0, - 16 - ], - "name": "Rach Smith" - } - ] - }, - "created_at": "Fri Jan 08 16:19:20 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685495149410041856, - "lang": "en" - }, - "default_profile_image": false, - "id": 813333008, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458960512647041024/brIv5N37.png", - "statuses_count": 8317, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/813333008/1434927146", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1618974036", - "following": false, - "friends_count": 60, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 25, - "location": "My House", - "screen_name": "bentleyjensen", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Bentley Jensen", - "profile_use_background_image": true, - "description": "Noob, Wannabe ethical hacker, Student of the JavaScipts, Plbth", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000183664024/de29446106bf77e4f11506df0925604c_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jul 25 01:03:24 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000183664024/de29446106bf77e4f11506df0925604c_normal.jpeg", - "favourites_count": 5, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "537297305779441665", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "goo.gl/gqv62l", - "url": "http://t.co/I3b6sCiBh1", - "expanded_url": "http://goo.gl/gqv62l", - "indices": [ - 67, - 89 - ] - }, - { - "display_url": "noisetrade.com/sleepingatlast\u2026", - "url": "http://t.co/oGq3bNDqkA", - "expanded_url": "http://noisetrade.com/sleepingatlast/christmas-collection-2014", - "indices": [ - 90, - 112 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "missfelony", - "id_str": "404215418", - "id": 404215418, - "indices": [ - 45, - 56 - ], - "name": "melanie" - } - ] - }, - "created_at": "Tue Nov 25 17:30:34 +0000 2014", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 537297305779441665, - "text": "Fell in love with Sleepng At Last becuase of @missfelony 's tweet.\nhttp://t.co/I3b6sCiBh1\nhttp://t.co/oGq3bNDqkA\nGreat music.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1618974036, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 17, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16414798", - "following": false, - "friends_count": 304, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "betwixt.is", - "url": "https://t.co/wlXSNm9xLH", - "expanded_url": "http://betwixt.is", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/642085241746685952/wG70Gviw.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "F84E57", - "geo_enabled": false, - "followers_count": 2614, - "location": "Central District, Seattle, WA", - "screen_name": "erinanacker", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 111, - "name": "Erin Anacker", - "profile_use_background_image": false, - "description": "Designer-Client Matchmaker @betwixters \u2014\u00a0connecting companies with the *right* designer for their project(s).\n\nLatte lover. Curious mind. Adventure seeker.", - "url": "https://t.co/wlXSNm9xLH", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/508374599474495489/yqe-6E1Q_normal.jpeg", - "profile_background_color": "AFE1D8", - "created_at": "Tue Sep 23 03:29:40 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/508374599474495489/yqe-6E1Q_normal.jpeg", - "favourites_count": 4167, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "isaseminega", - "in_reply_to_user_id": 86705900, - "in_reply_to_status_id_str": "685133200222453760", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685195205213949952", - "id": 685195205213949952, - "text": "@isaseminega Thank you much! I too am happy about it\u2014it feels easeful and exciting!", - "in_reply_to_user_id_str": "86705900", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "isaseminega", - "id_str": "86705900", - "id": 86705900, - "indices": [ - 0, - 12 - ], - "name": "Isa Seminega" - } - ] - }, - "created_at": "Thu Jan 07 20:24:01 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685133200222453760, - "lang": "en" - }, - "default_profile_image": false, - "id": 16414798, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/642085241746685952/wG70Gviw.png", - "statuses_count": 12660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16414798/1407267007", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "21660394", - "following": false, - "friends_count": 996, - "entities": { - "description": { - "urls": [ - { - "display_url": "webrtchacks.com/about/c", - "url": "http://t.co/8pClsQk3fj", - "expanded_url": "http://webrtchacks.com/about/c", - "indices": [ - 118, - 140 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "webrtchacks.com", - "url": "https://t.co/iP08XsmqRI", - "expanded_url": "https://webrtchacks.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 1194, - "location": "Cambridge, Massachusetts", - "screen_name": "chadwallacehart", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 38, - "name": "Chad Hart", - "profile_use_background_image": false, - "description": "Consultant & webrtcHacks editor. I tweet about: WebRTC, Telco-Apps, JavaScript, drones, telcos trying to change More: http://t.co/8pClsQk3fj", - "url": "https://t.co/iP08XsmqRI", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/585427961966235648/wobp557l_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Feb 23 15:29:41 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/585427961966235648/wobp557l_normal.png", - "favourites_count": 252, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "murillo", - "in_reply_to_user_id": 13157732, - "in_reply_to_status_id_str": "684825083265855488", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685467568589697025", - "id": 685467568589697025, - "text": "@murillo what do you consider \"real innovation\" wrt webrtc? anything?", - "in_reply_to_user_id_str": "13157732", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "murillo", - "id_str": "13157732", - "id": 13157732, - "indices": [ - 0, - 8 - ], - "name": "Sergio GarciaMurillo" - } - ] - }, - "created_at": "Fri Jan 08 14:26:18 +0000 2016", - "source": "TweetDeck", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684825083265855488, - "lang": "en" - }, - "default_profile_image": false, - "id": 21660394, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1381, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21660394/1437706466", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14171076", - "following": false, - "friends_count": 398, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "imaginator.com", - "url": "http://t.co/uCdcr2itUV", - "expanded_url": "http://imaginator.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 235, - "location": "Lead-lined bunker of doom.", - "screen_name": "imaginator", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "imaginator", - "profile_use_background_image": true, - "description": "@buddycloud CEO", - "url": "http://t.co/uCdcr2itUV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/506638667482292225/Q7pqzzFj_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 18 17:15:25 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/506638667482292225/Q7pqzzFj_normal.jpeg", - "favourites_count": 56, - "status": { - "retweet_count": 955, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 955, - "truncated": false, - "retweeted": false, - "id_str": "677658844504436737", - "id": 677658844504436737, - "text": "Big companies desperately hoping for blockchain without Bitcoin is exactly like 1994: Can't we please have online without Internet?? \ud83d\ude00", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Dec 18 01:17:13 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 920, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "677792395329740800", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "pmarca", - "id_str": "5943622", - "id": 5943622, - "indices": [ - 3, - 10 - ], - "name": "Marc Andreessen" - } - ] - }, - "created_at": "Fri Dec 18 10:07:54 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677792395329740800, - "text": "RT @pmarca: Big companies desperately hoping for blockchain without Bitcoin is exactly like 1994: Can't we please have online without Inter\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14171076, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1189, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14125871", - "following": false, - "friends_count": 303, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "allenpike.com", - "url": "http://t.co/o920H3nKse", - "expanded_url": "http://allenpike.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "924FB3", - "geo_enabled": true, - "followers_count": 3371, - "location": "Vancouver, BC", - "screen_name": "apike", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 238, - "name": "Allen Pike", - "profile_use_background_image": false, - "description": "I run @steamclocksw, where we make apps from pixels to code. I also do tech events like @vancouvercocoa and @vanjs, and a podcast, @upupshow.", - "url": "http://t.co/o920H3nKse", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458726741821751296/Ndfb--nh_normal.jpeg", - "profile_background_color": "EAEAEA", - "created_at": "Tue Mar 11 17:45:37 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458726741821751296/Ndfb--nh_normal.jpeg", - "favourites_count": 2566, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "classam", - "in_reply_to_user_id": 14689667, - "in_reply_to_status_id_str": "684095477319516160", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684161717069197312", - "id": 684161717069197312, - "text": "@classam It looks like there\u2019s some organization in the top left, notes in the middle, and in the top right there\u2019s some piece of garbage?", - "in_reply_to_user_id_str": "14689667", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "classam", - "id_str": "14689667", - "id": 14689667, - "indices": [ - 0, - 8 - ], - "name": "Cube Drone" - } - ] - }, - "created_at": "Mon Jan 04 23:57:19 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684095477319516160, - "lang": "en" - }, - "default_profile_image": false, - "id": 14125871, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 6116, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14125871/1398202842", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2396994720", - "following": false, - "friends_count": 16, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ampersandjs.com", - "url": "http://t.co/Va4YGmPfKR", - "expanded_url": "http://ampersandjs.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 734, - "location": "The Tech Republic", - "screen_name": "AmpersandJS", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "AmpersandJS", - "profile_use_background_image": false, - "description": "A modern, loosely coupled non-frameworky framework for client-side apps.", - "url": "http://t.co/Va4YGmPfKR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/481865813909991424/pmwBlTsY_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 19 00:46:58 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/481865813909991424/pmwBlTsY_normal.png", - "favourites_count": 11, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "thurmSR", - "in_reply_to_user_id": 1513508101, - "in_reply_to_status_id_str": "666807594997149698", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "667476158426955776", - "id": 667476158426955776, - "text": "@thurmSR \ud83d\ude4f please let us know what you think.", - "in_reply_to_user_id_str": "1513508101", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thurmSR", - "id_str": "1513508101", - "id": 1513508101, - "indices": [ - 0, - 8 - ], - "name": "Sara Thurman" - } - ] - }, - "created_at": "Thu Nov 19 22:54:51 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 666807594997149698, - "lang": "en" - }, - "default_profile_image": false, - "id": 2396994720, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 87, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2396994720/1403720848", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "372270760", - "following": false, - "friends_count": 1203, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "yesmusicpodcast.com", - "url": "http://t.co/Hiy6pihoFs", - "expanded_url": "http://www.yesmusicpodcast.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328929204/x7ecf846c097202463d1644c774a6cd1.png", - "notifications": false, - "profile_sidebar_fill_color": "CFDFB0", - "profile_link_color": "81B996", - "geo_enabled": false, - "followers_count": 1307, - "location": "Caesar's Palace", - "screen_name": "YesMusicPodcast", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Kevin Mulryne (YMP)", - "profile_use_background_image": true, - "description": "Subscribe for free and join me in my exploration of the greatest progressive rock band of all time", - "url": "http://t.co/Hiy6pihoFs", - "profile_text_color": "2C636A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662019383619952640/i1a6b2i8_normal.jpg", - "profile_background_color": "08407D", - "created_at": "Mon Sep 12 13:26:44 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FDFED2", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662019383619952640/i1a6b2i8_normal.jpg", - "favourites_count": 94, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685582705405353984", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOt0mvWMAAeg73.jpg", - "type": "photo", - "indices": [ - 97, - 120 - ], - "media_url": "http://pbs.twimg.com/media/CYOt0mvWMAAeg73.jpg", - "display_url": "pic.twitter.com/TwBZFFcsXn", - "id_str": "685582687554383872", - "expanded_url": "http://twitter.com/YesMusicPodcast/status/685582705405353984/photo/1", - "id": 685582687554383872, - "url": "https://t.co/TwBZFFcsXn" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "mulryne.com/yesmusicpodcas\u2026", - "url": "https://t.co/cCpI4iXrIJ", - "expanded_url": "http://mulryne.com/yesmusicpodcast/abwh-live-at-the-nec-october-24th-1989-part-1-208/", - "indices": [ - 25, - 48 - ] - } - ], - "hashtags": [ - { - "indices": [ - 81, - 86 - ], - "text": "prog" - }, - { - "indices": [ - 87, - 96 - ], - "text": "progrock" - } - ], - "user_mentions": [ - { - "screen_name": "YesMusicPodcast", - "id_str": "372270760", - "id": 372270760, - "indices": [ - 49, - 65 - ], - "name": "Kevin Mulryne (YMP)" - }, - { - "screen_name": "GrumpyOldRick", - "id_str": "371413088", - "id": 371413088, - "indices": [ - 66, - 80 - ], - "name": "Rick Wakeman" - } - ] - }, - "created_at": "Fri Jan 08 22:03:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685582705405353984, - "text": "ABWH Live at the NEC pt1 https://t.co/cCpI4iXrIJ @YesMusicPodcast @GrumpyOldRick #prog #progrock https://t.co/TwBZFFcsXn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 372270760, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328929204/x7ecf846c097202463d1644c774a6cd1.png", - "statuses_count": 7335, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/372270760/1397679137", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5834802", - "following": false, - "friends_count": 569, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/chriswendt", - "url": "http://t.co/GBDlQ1XcKQ", - "expanded_url": "http://about.me/chriswendt", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/664734789/d2d83d45a0448950200b62eeb5a21f0e.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 126, - "location": "Philly", - "screen_name": "chriswendt", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Chris Wendt", - "profile_use_background_image": true, - "description": "expert in his field", - "url": "http://t.co/GBDlQ1XcKQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000820762587/3a86ef8a5aee129e039eb617b16b5552_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon May 07 15:03:19 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000820762587/3a86ef8a5aee129e039eb617b16b5552_normal.jpeg", - "favourites_count": 10, - "status": { - "retweet_count": 30, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 30, - "truncated": false, - "retweeted": false, - "id_str": "680621492858687488", - "id": 680621492858687488, - "text": "\ud83c\udfb6 O Christmas tree\nO Christmas tree\nWe chop you down\nAnd decorate your corpse \ud83c\udfb6", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Dec 26 05:29:43 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 87, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "680728434327293954", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "anildash", - "id_str": "36823", - "id": 36823, - "indices": [ - 3, - 12 - ], - "name": "Anil Dash" - } - ] - }, - "created_at": "Sat Dec 26 12:34:40 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 680728434327293954, - "text": "RT @anildash: \ud83c\udfb6 O Christmas tree\nO Christmas tree\nWe chop you down\nAnd decorate your corpse \ud83c\udfb6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 5834802, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/664734789/d2d83d45a0448950200b62eeb5a21f0e.png", - "statuses_count": 308, - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "6944742", - "following": false, - "friends_count": 249, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/mbrevoort", - "url": "https://t.co/Kb9J7pgN8D", - "expanded_url": "http://about.me/mbrevoort", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "D42D2D", - "geo_enabled": false, - "followers_count": 985, - "location": "Castle Rock, CO", - "screen_name": "mbrevoort", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 103, - "name": "Mike Brevoort", - "profile_use_background_image": true, - "description": "founder of @beepboophq / CTO - USA @robotsnpencils", - "url": "https://t.co/Kb9J7pgN8D", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667136481312411648/rVt8APjF_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Jun 19 23:28:12 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667136481312411648/rVt8APjF_normal.jpg", - "favourites_count": 1036, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "afhill", - "in_reply_to_user_id": 1752371, - "in_reply_to_status_id_str": "685320673275719680", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685322033224261632", - "id": 685322033224261632, - "text": "@afhill hi there, would love to! Please don't submit to product hunt, we'll be \"launching\" for real soon \ud83d\ude2c", - "in_reply_to_user_id_str": "1752371", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "afhill", - "id_str": "1752371", - "id": 1752371, - "indices": [ - 0, - 7 - ], - "name": "Andrea Hill" - } - ] - }, - "created_at": "Fri Jan 08 04:48:00 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685320673275719680, - "lang": "en" - }, - "default_profile_image": false, - "id": 6944742, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 6309, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6944742/1413860087", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "6557062", - "following": false, - "friends_count": 1697, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "robotsandpencils.com", - "url": "http://t.co/NJATCHFUNK", - "expanded_url": "http://robotsandpencils.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2919428/twiiter_back_2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFCF02", - "profile_link_color": "212136", - "geo_enabled": true, - "followers_count": 2774, - "location": "Calgary, London, Austin", - "screen_name": "mjsikorsky", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 180, - "name": "Michael J. Sikorsky", - "profile_use_background_image": true, - "description": "Chief Robot @ Robots and Pencils Inc. see: @PencilCaseHQ - Hypercard for iOS.", - "url": "http://t.co/NJATCHFUNK", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/468936530623356928/IR-UQ-wi_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Mon Jun 04 00:30:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "776130", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/468936530623356928/IR-UQ-wi_normal.jpeg", - "favourites_count": 2212, - "status": { - "retweet_count": 21, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 21, - "truncated": false, - "retweeted": false, - "id_str": "685552976472178689", - "id": 685552976472178689, - "text": "Tech and health care occupations account for all employment gain since 2007. Core app economy jobs account for 20% @ppi #appeconomy", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 120, - 131 - ], - "text": "appeconomy" - } - ], - "user_mentions": [ - { - "screen_name": "ppi", - "id_str": "34666433", - "id": 34666433, - "indices": [ - 115, - 119 - ], - "name": "PPI" - } - ] - }, - "created_at": "Fri Jan 08 20:05:41 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 19, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685553372200484864", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "appeconomy" - } - ], - "user_mentions": [ - { - "screen_name": "MichaelMandel", - "id_str": "62406858", - "id": 62406858, - "indices": [ - 3, - 17 - ], - "name": "Michael Mandel" - }, - { - "screen_name": "ppi", - "id_str": "34666433", - "id": 34666433, - "indices": [ - 134, - 138 - ], - "name": "PPI" - } - ] - }, - "created_at": "Fri Jan 08 20:07:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685553372200484864, - "text": "RT @MichaelMandel: Tech and health care occupations account for all employment gain since 2007. Core app economy jobs account for 20% @ppi \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 6557062, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2919428/twiiter_back_2.jpg", - "statuses_count": 3457, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6557062/1400639179", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "156303065", - "following": false, - "friends_count": 1710, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "utx.edu", - "url": "https://t.co/nF6JsZT9GA", - "expanded_url": "http://utx.edu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/596795875923402753/XdJvSEA4.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 4757, - "location": "Austin, TX", - "screen_name": "PhilKomarny", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 474, - "name": "Phil Komarny", - "profile_use_background_image": true, - "description": "Executive Director of Digital Education Product/Platform @UTxTEx @UTSystem - mention \u2260 endorsement", - "url": "https://t.co/nF6JsZT9GA", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/653801046586736640/jh_2gUVf_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Jun 16 15:32:16 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/653801046586736640/jh_2gUVf_normal.jpg", - "favourites_count": 700, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685482521128235008", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1K2kXiA", - "url": "https://t.co/TbgMlTyeyg", - "expanded_url": "http://buff.ly/1K2kXiA", - "indices": [ - 107, - 130 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:25:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685482521128235008, - "text": "Friday 5 includes VR hitting the homes (in June, anyway) and the business and design of Netflix domination https://t.co/TbgMlTyeyg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685483469351157760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1K2kXiA", - "url": "https://t.co/TbgMlTyeyg", - "expanded_url": "http://buff.ly/1K2kXiA", - "indices": [ - 124, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "perryhewitt", - "id_str": "1363481", - "id": 1363481, - "indices": [ - 3, - 15 - ], - "name": "Perry Hewitt" - } - ] - }, - "created_at": "Fri Jan 08 15:29:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685483469351157760, - "text": "RT @perryhewitt: Friday 5 includes VR hitting the homes (in June, anyway) and the business and design of Netflix domination https://t.co/Tb\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 156303065, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/596795875923402753/XdJvSEA4.png", - "statuses_count": 16859, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/156303065/1445427718", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "88223099", - "following": false, - "friends_count": 801, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/253885120/twilk_background_4dd024c11d676.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 2647, - "location": "Issaquah, WA", - "screen_name": "marshray", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 184, - "name": "Marsh Ray", - "profile_use_background_image": true, - "description": "Taurus. Into: soldering, perfectionism. Tweets represent my own opinions. [marshray % live dotcom]", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/497521153422811137/0_RSu1lw_normal.png", - "profile_background_color": "131516", - "created_at": "Sat Nov 07 16:56:08 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/497521153422811137/0_RSu1lw_normal.png", - "favourites_count": 1459, - "status": { - "retweet_count": 286, - "retweeted_status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 286, - "truncated": false, - "retweeted": false, - "id_str": "593256977741979648", - "id": 593256977741979648, - "text": "Do employees actually want managers? I'd argue no; they really want advisors, mentors, coaches and leaders, and to manage themselves. :)", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Apr 29 03:34:20 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 423, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685597697852575744", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "KateKendall", - "id_str": "15125371", - "id": 15125371, - "indices": [ - 3, - 15 - ], - "name": "Kate Kendall" - } - ] - }, - "created_at": "Fri Jan 08 23:03:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597697852575744, - "text": "RT @KateKendall: Do employees actually want managers? I'd argue no; they really want advisors, mentors, coaches and leaders, and to manage \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 88223099, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/253885120/twilk_background_4dd024c11d676.jpg", - "statuses_count": 24207, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "58291812", - "following": false, - "friends_count": 268, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sporadicdispatches.blogspot.com", - "url": "http://t.co/ejC8VGJN", - "expanded_url": "http://sporadicdispatches.blogspot.com/", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 419, - "location": "Dallas, TX", - "screen_name": "adambroach", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "Adam Roach", - "profile_use_background_image": true, - "description": "Firefox Hacker, WebRTC Developer, IETF Standards Wonk, Mozilla Employee, Internet Freedom Fan", - "url": "http://t.co/ejC8VGJN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1852952707/headshot-1_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jul 19 20:56:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1852952707/headshot-1_normal.jpg", - "favourites_count": 42, - "status": { - "retweet_count": 60, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 60, - "truncated": false, - "retweeted": false, - "id_str": "685469930314072064", - "id": 685469930314072064, - "text": "On this day in 1982, AT&T settled the Justice Department's antitrust lawsuit by agreeing to divest itself of the 22 Bell System companies.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:35:41 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 89, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685497576062189568", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SwiftOnSecurity", - "id_str": "2436389418", - "id": 2436389418, - "indices": [ - 3, - 19 - ], - "name": "SecuriTay" - } - ] - }, - "created_at": "Fri Jan 08 16:25:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685497576062189568, - "text": "RT @SwiftOnSecurity: On this day in 1982, AT&T settled the Justice Department's antitrust lawsuit by agreeing to divest itself of the 22 Be\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 58291812, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 433, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "42650438", - "following": false, - "friends_count": 500, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662599379/lx5z8puk4wq8r6otw340.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "89C9FA", - "geo_enabled": false, - "followers_count": 551, - "location": "London", - "screen_name": "lauranncrossley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Laura Crossley", - "profile_use_background_image": true, - "description": "Communications & Engagement Lead. Not yet grown up enough for espresso, but grown up enough to be formerly known as Laura Gill. Espresso is my everest.", - "url": null, - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/597670925534887936/i_0MM5JQ_normal.jpg", - "profile_background_color": "804080", - "created_at": "Tue May 26 15:45:04 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597670925534887936/i_0MM5JQ_normal.jpg", - "favourites_count": 10, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "chriscrossley", - "in_reply_to_user_id": 18717124, - "in_reply_to_status_id_str": "685505202498199552", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685510008822456321", - "id": 685510008822456321, - "text": "@chriscrossley Stop trying to rain on my parade.", - "in_reply_to_user_id_str": "18717124", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chriscrossley", - "id_str": "18717124", - "id": 18717124, - "indices": [ - 0, - 14 - ], - "name": "Chris Crossley" - } - ] - }, - "created_at": "Fri Jan 08 17:14:56 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685505202498199552, - "lang": "en" - }, - "default_profile_image": false, - "id": 42650438, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662599379/lx5z8puk4wq8r6otw340.jpeg", - "statuses_count": 3047, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/42650438/1430764580", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "16085894", - "following": false, - "friends_count": 1094, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "surevine.com", - "url": "http://t.co/OTLdIoHbfN", - "expanded_url": "http://www.surevine.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "6BD500", - "geo_enabled": false, - "followers_count": 572, - "location": "United Kingdom", - "screen_name": "woodlark", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "John Atherton", - "profile_use_background_image": true, - "description": "What a great time to be in the software industry - I'm excited!", - "url": "http://t.co/OTLdIoHbfN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/61395029/woodlark_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Mon Sep 01 18:22:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/61395029/woodlark_normal.jpg", - "favourites_count": 55, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "675344626899898368", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "owl.li/VKZw9", - "url": "https://t.co/8xeJQfNDcT", - "expanded_url": "http://owl.li/VKZw9", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [ - { - "indices": [ - 93, - 99 - ], - "text": "entsw" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Dec 11 16:01:21 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675344626899898368, - "text": "The top three trends we expect to drive the software market in 2016: https://t.co/8xeJQfNDcT #entsw", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "675358550223400960", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "owl.li/VKZw9", - "url": "https://t.co/8xeJQfNDcT", - "expanded_url": "http://owl.li/VKZw9", - "indices": [ - 87, - 110 - ] - } - ], - "hashtags": [ - { - "indices": [ - 111, - 117 - ], - "text": "entsw" - } - ], - "user_mentions": [ - { - "screen_name": "nickpatience", - "id_str": "5471512", - "id": 5471512, - "indices": [ - 3, - 16 - ], - "name": "Nick Patience" - } - ] - }, - "created_at": "Fri Dec 11 16:56:40 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675358550223400960, - "text": "RT @nickpatience: The top three trends we expect to drive the software market in 2016: https://t.co/8xeJQfNDcT #entsw", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 16085894, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 908, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "80385525", - "following": false, - "friends_count": 89, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": false, - "followers_count": 136, - "location": "Gloucestershire", - "screen_name": "Simon_M_White", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Simon White", - "profile_use_background_image": true, - "description": "I make software for @surevine. Secure, social, beautiful software; often based on Java, Alfresco, NOSQL and Javascript/HTML5", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1312939479/simon2_square_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Tue Oct 06 19:42:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1312939479/simon2_square_normal.jpg", - "favourites_count": 6, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "virginmedia", - "in_reply_to_user_id": 17872077, - "in_reply_to_status_id_str": "538614165972467712", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "538755716002353152", - "id": 538755716002353152, - "text": "@virginmedia ahforgetabout it. Was just sympton of general virgin problems around Bristol/Glos last night all well now", - "in_reply_to_user_id_str": "17872077", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "virginmedia", - "id_str": "17872077", - "id": 17872077, - "indices": [ - 0, - 12 - ], - "name": "Virgin Media" - } - ] - }, - "created_at": "Sat Nov 29 18:05:46 +0000 2014", - "source": "Twitter for iPad", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 538614165972467712, - "lang": "en" - }, - "default_profile_image": false, - "id": 80385525, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "statuses_count": 725, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "44856091", - "following": false, - "friends_count": 169, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "36A358", - "geo_enabled": false, - "followers_count": 99, - "location": "", - "screen_name": "ashward123", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Ashley Ward", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/331324991/me_normal.jpg", - "profile_background_color": "352726", - "created_at": "Fri Jun 05 09:17:18 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/331324991/me_normal.jpg", - "favourites_count": 4, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "BBCBreaking", - "in_reply_to_user_id": 5402612, - "in_reply_to_status_id_str": "677784067748831232", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677788989491953664", - "id": 677788989491953664, - "text": "@BBCBreaking Why has the boy sprog got shorts on? Don\u2019t they know it\u2019s winter? Although judging by the leaves this was taken some time ago.", - "in_reply_to_user_id_str": "5402612", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BBCBreaking", - "id_str": "5402612", - "id": 5402612, - "indices": [ - 0, - 12 - ], - "name": "BBC Breaking News" - } - ] - }, - "created_at": "Fri Dec 18 09:54:22 +0000 2015", - "source": "TweetDeck", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 677784067748831232, - "lang": "en" - }, - "default_profile_image": false, - "id": 44856091, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 530, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "889745300", - "following": false, - "friends_count": 240, - "entities": { - "description": { - "urls": [ - { - "display_url": "sust.se", - "url": "http://t.co/zPoMblPlFX", - "expanded_url": "http://sust.se", - "indices": [ - 68, - 90 - ] - }, - { - "display_url": "lsys.se", - "url": "http://t.co/YP4ckBPXeF", - "expanded_url": "http://lsys.se", - "indices": [ - 92, - 114 - ] - }, - { - "display_url": "xmpp.org", - "url": "http://t.co/XVT9ZPV3oR", - "expanded_url": "http://xmpp.org", - "indices": [ - 126, - 148 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "lsys.se", - "url": "http://t.co/HDYtdw3pb0", - "expanded_url": "http://lsys.se", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 259, - "location": "", - "screen_name": "JoachimLindborg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Joachim Lindborg", - "profile_use_background_image": true, - "description": "Technology entusiast who like energyefficiency and the joy of life. http://t.co/zPoMblPlFX, http://t.co/YP4ckBPXeF, member of http://t.co/XVT9ZPV3oR", - "url": "http://t.co/HDYtdw3pb0", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2734553750/9510e92197c9f9dea1231c1d64ef2f9a_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Oct 18 21:15:47 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "sv", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2734553750/9510e92197c9f9dea1231c1d64ef2f9a_normal.png", - "favourites_count": 338, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "XivelyIOT", - "in_reply_to_user_id": 14862767, - "in_reply_to_status_id_str": "684741702167465984", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684762883327160325", - "id": 684762883327160325, - "text": "@XivelyIOT I just got a reply that my xively personal account was gone. are you still working?", - "in_reply_to_user_id_str": "14862767", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "XivelyIOT", - "id_str": "14862767", - "id": 14862767, - "indices": [ - 0, - 10 - ], - "name": "Xively" - } - ] - }, - "created_at": "Wed Jan 06 15:46:08 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684741702167465984, - "lang": "en" - }, - "default_profile_image": false, - "id": 889745300, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 776, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/889745300/1399542692", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "799574", - "following": false, - "friends_count": 1163, - "entities": { - "description": { - "urls": [ - { - "display_url": "metafluff.com", - "url": "http://t.co/e4QyEaP03i", - "expanded_url": "http://metafluff.com", - "indices": [ - 82, - 104 - ] - }, - { - "display_url": "noms.in", - "url": "http://t.co/Xu2iOaLJXt", - "expanded_url": "http://noms.in", - "indices": [ - 105, - 127 - ] - }, - { - "display_url": "meatclub.in", - "url": "http://t.co/84NhQITCYA", - "expanded_url": "http://meatclub.in", - "indices": [ - 128, - 150 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "metafluff.com", - "url": "http://t.co/e4QyEaP03i", - "expanded_url": "http://metafluff.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3295722/b53368916e912ca1944e92a72f94be9374e40435_m.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 2659, - "location": "Portland, Oregon, USA", - "screen_name": "dietrich", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 192, - "name": "dietrich ayala", - "profile_use_background_image": true, - "description": "Working on Firefox OS so the next billions coming online have freedom and choice. http://t.co/e4QyEaP03i http://t.co/Xu2iOaLJXt http://t.co/84NhQITCYA", - "url": "http://t.co/e4QyEaP03i", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664138406595682304/OlS9IlB__normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Feb 27 23:41:20 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664138406595682304/OlS9IlB__normal.jpg", - "favourites_count": 4115, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685526009085468672", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYN6ReVUAAEpTql.jpg", - "type": "photo", - "indices": [ - 66, - 89 - ], - "media_url": "http://pbs.twimg.com/media/CYN6ReVUAAEpTql.jpg", - "display_url": "pic.twitter.com/BBIL6R0MXb", - "id_str": "685526008909266945", - "expanded_url": "http://twitter.com/dietrich/status/685526009085468672/photo/1", - "id": 685526008909266945, - "url": "https://t.co/BBIL6R0MXb" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1TJTDeu", - "url": "https://t.co/q2BqKkVQjI", - "expanded_url": "http://bit.ly/1TJTDeu", - "indices": [ - 42, - 65 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wateravecoffee", - "id_str": "128627627", - "id": 128627627, - "indices": [ - 25, - 40 - ], - "name": "Water Avenue Coffee" - } - ] - }, - "created_at": "Fri Jan 08 18:18:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "in", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685526009085468672, - "text": "Rwanda Abakundakawa from @wateravecoffee. https://t.co/q2BqKkVQjI https://t.co/BBIL6R0MXb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "IFTTT" - }, - "default_profile_image": false, - "id": 799574, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3295722/b53368916e912ca1944e92a72f94be9374e40435_m.png", - "statuses_count": 17052, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/799574/1406568533", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "58337300", - "following": false, - "friends_count": 518, - "entities": { - "description": { - "urls": [ - { - "display_url": "plus.google.com/10893650267121\u2026", - "url": "https://t.co/ianrSxnV", - "expanded_url": "https://plus.google.com/108936502671219351445/posts", - "indices": [ - 0, - 21 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "taras.glek.net", - "url": "http://t.co/CWr6sQe6", - "expanded_url": "http://taras.glek.net", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 805, - "location": "", - "screen_name": "tarasglek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "Taras Glek", - "profile_use_background_image": true, - "description": "https://t.co/ianrSxnV", - "url": "http://t.co/CWr6sQe6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2989960370/07d65b04acdb7549524ba9ba466cac38_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 20 00:32:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2989960370/07d65b04acdb7549524ba9ba466cac38_normal.jpeg", - "favourites_count": 342, - "status": { - "retweet_count": 10, - "retweeted_status": { - "retweet_count": 10, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685468419332902912", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "meduza.io/en/news/2016/0\u2026", - "url": "https://t.co/rhPsvu2UXs", - "expanded_url": "https://meduza.io/en/news/2016/01/08/finland-decides-to-extradite-russian-hacker-to-the-us", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:29:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685468419332902912, - "text": "Russian hacker gets detained in Finland, is now being extradited to Minnesota. Dude can\u2019t catch a break from snow. https://t.co/rhPsvu2UXs", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685484093195173888", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "meduza.io/en/news/2016/0\u2026", - "url": "https://t.co/rhPsvu2UXs", - "expanded_url": "https://meduza.io/en/news/2016/01/08/finland-decides-to-extradite-russian-hacker-to-the-us", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "meduza_en", - "id_str": "3004163369", - "id": 3004163369, - "indices": [ - 3, - 13 - ], - "name": "Meduza Project" - } - ] - }, - "created_at": "Fri Jan 08 15:31:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685484093195173888, - "text": "RT @meduza_en: Russian hacker gets detained in Finland, is now being extradited to Minnesota. Dude can\u2019t catch a break from snow. https://t\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 58337300, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4500, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1347374180", - "following": false, - "friends_count": 278, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "benjamin.smedbergs.us", - "url": "http://t.co/T0OpiiA3Fq", - "expanded_url": "http://benjamin.smedbergs.us", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 541, - "location": "Johnstown, PA, USA", - "screen_name": "nsIAnswers", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "Benjamin Smedberg", - "profile_use_background_image": false, - "description": "Sr. Engineering Manager @ Mozilla. Follower of Christ. Devoted husband. Father of seven. Software toolsmith. Chaser of crashes. Organist & choir director.", - "url": "http://t.co/T0OpiiA3Fq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3511816518/201ec910ac111743ecd4dacb356bd74d_normal.jpeg", - "profile_background_color": "312738", - "created_at": "Fri Apr 12 17:45:02 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3511816518/201ec910ac111743ecd4dacb356bd74d_normal.jpeg", - "favourites_count": 1056, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685580123161137152", - "id": 685580123161137152, - "text": "Dislike sites that auto-logout after a period and change the URL. Breaks overnight app tabs. Looking at you, okta/jobvite/mozilla sso.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:53:33 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 1347374180, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1702, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1347374180/1365792054", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14587406", - "following": false, - "friends_count": 407, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.lassey.us", - "url": "http://t.co/FHFVqSqrQ9", - "expanded_url": "http://blog.lassey.us", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 756, - "location": "N 42\u00b021' 0'' / W 71\u00b04' 0''", - "screen_name": "blassey", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 35, - "name": "Brad Lassey", - "profile_use_background_image": true, - "description": "Mozilla hacker, Bostonian, Rugger", - "url": "http://t.co/FHFVqSqrQ9", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/454296236124680192/72vCsZrE_normal.png", - "profile_background_color": "352726", - "created_at": "Tue Apr 29 17:06:43 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/454296236124680192/72vCsZrE_normal.png", - "favourites_count": 34, - "status": { - "retweet_count": 32, - "retweeted_status": { - "retweet_count": 32, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685476091952263169", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 960, - "h": 638, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 225, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 398, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", - "type": "photo", - "indices": [ - 104, - 127 - ], - "media_url": "http://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", - "display_url": "pic.twitter.com/qI5R0UmFX5", - "id_str": "685476091104894977", - "expanded_url": "http://twitter.com/BostonGlobe/status/685476091952263169/photo/1", - "id": 685476091104894977, - "url": "https://t.co/qI5R0UmFX5" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bos.gl/E4WKtQM", - "url": "https://t.co/ICqRD2LhYA", - "expanded_url": "http://bos.gl/E4WKtQM", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:00:10 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685476091952263169, - "text": "Had HGH been sent to Tom Brady and his wife, would there be such radio silence? https://t.co/ICqRD2LhYA https://t.co/qI5R0UmFX5", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 31, - "contributors": null, - "source": "SocialFlow" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685489620377812993", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 960, - "h": 638, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 225, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 398, - "resize": "fit" - } - }, - "source_status_id_str": "685476091952263169", - "url": "https://t.co/qI5R0UmFX5", - "media_url": "http://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", - "source_user_id_str": "95431448", - "id_str": "685476091104894977", - "id": 685476091104894977, - "media_url_https": "https://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", - "type": "photo", - "indices": [ - 121, - 140 - ], - "source_status_id": 685476091952263169, - "source_user_id": 95431448, - "display_url": "pic.twitter.com/qI5R0UmFX5", - "expanded_url": "http://twitter.com/BostonGlobe/status/685476091952263169/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bos.gl/E4WKtQM", - "url": "https://t.co/ICqRD2LhYA", - "expanded_url": "http://bos.gl/E4WKtQM", - "indices": [ - 97, - 120 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BostonGlobe", - "id_str": "95431448", - "id": 95431448, - "indices": [ - 3, - 15 - ], - "name": "The Boston Globe" - } - ] - }, - "created_at": "Fri Jan 08 15:53:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685489620377812993, - "text": "RT @BostonGlobe: Had HGH been sent to Tom Brady and his wife, would there be such radio silence? https://t.co/ICqRD2LhYA https://t.co/qI5R0\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14587406, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 7131, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14587406/1357255090", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "7795552", - "following": false, - "friends_count": 289, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "starkravingfinkle.org", - "url": "http://t.co/qvgs6F9wLH", - "expanded_url": "http://starkravingfinkle.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 1648, - "location": "Pennsylvania, USA", - "screen_name": "mfinkle", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 114, - "name": "Mark Finkle", - "profile_use_background_image": true, - "description": "Team Lead: Firefox for Mobile", - "url": "http://t.co/qvgs6F9wLH", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/498588007599837184/bpNnvyjB_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Sun Jul 29 03:53:44 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/498588007599837184/bpNnvyjB_normal.jpeg", - "favourites_count": 1899, - "status": { - "retweet_count": 11, - "retweeted_status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685277863243722753", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 912, - "h": 708, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 264, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 466, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", - "display_url": "pic.twitter.com/KzbXnTCvAU", - "id_str": "685277280092868608", - "expanded_url": "http://twitter.com/brianskold/status/685277863243722753/video/1", - "id": 685277280092868608, - "url": "https://t.co/KzbXnTCvAU" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 01:52:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685277863243722753, - "text": "The pieces for Element.animate() are starting to come together in Firefox (video is for a patched build) https://t.co/KzbXnTCvAU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685587999015370752", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 912, - "h": 708, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 264, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 466, - "resize": "fit" - } - }, - "source_status_id_str": "685277863243722753", - "url": "https://t.co/KzbXnTCvAU", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", - "source_user_id_str": "35165863", - "id_str": "685277280092868608", - "id": 685277280092868608, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", - "type": "photo", - "indices": [ - 121, - 140 - ], - "source_status_id": 685277863243722753, - "source_user_id": 35165863, - "display_url": "pic.twitter.com/KzbXnTCvAU", - "expanded_url": "http://twitter.com/brianskold/status/685277863243722753/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "brianskold", - "id_str": "35165863", - "id": 35165863, - "indices": [ - 3, - 14 - ], - "name": "Brian Birtles" - } - ] - }, - "created_at": "Fri Jan 08 22:24:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685587999015370752, - "text": "RT @brianskold: The pieces for Element.animate() are starting to come together in Firefox (video is for a patched build) https://t.co/KzbXn\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 7795552, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7460, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "8209572", - "following": false, - "friends_count": 331, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 1393, - "location": "Mountain View, CA", - "screen_name": "dougturner", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 77, - "name": "Doug Turner", - "profile_use_background_image": true, - "description": "engineering mgmt @mozilla. hacker on @firefox. force multiplier. dislike of upper case.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/548600836088025089/OYm0LW4r_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Aug 15 20:32:43 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/548600836088025089/OYm0LW4r_normal.jpeg", - "favourites_count": 1059, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "deadsquid", - "in_reply_to_user_id": 16625136, - "in_reply_to_status_id_str": "685537265947439104", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685552444256878592", - "id": 685552444256878592, - "text": "@deadsquid @nsIAnswers never!", - "in_reply_to_user_id_str": "16625136", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "deadsquid", - "id_str": "16625136", - "id": 16625136, - "indices": [ - 0, - 10 - ], - "name": "kev needham" - }, - { - "screen_name": "nsIAnswers", - "id_str": "1347374180", - "id": 1347374180, - "indices": [ - 11, - 22 - ], - "name": "Benjamin Smedberg" - } - ] - }, - "created_at": "Fri Jan 08 20:03:34 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685537265947439104, - "lang": "en" - }, - "default_profile_image": false, - "id": 8209572, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 57, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8209572/1399084140", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18370424", - "following": false, - "friends_count": 267, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dolske.wordpress.com", - "url": "http://t.co/JMoupDoaAK", - "expanded_url": "http://dolske.wordpress.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 1311, - "location": "Mountain View, CA", - "screen_name": "dolske", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 98, - "name": "Justin Dolske", - "profile_use_background_image": true, - "description": "Firefox engineering manager, bacon enthusiast, and snuggler of kittens. Did I mention beer? Oh, god, the beer. Mmmmm.", - "url": "http://t.co/JMoupDoaAK", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/456344242768465921/jWpN1yV-_normal.png", - "profile_background_color": "131516", - "created_at": "Thu Dec 25 04:30:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/456344242768465921/jWpN1yV-_normal.png", - "favourites_count": 3080, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685552777330724864", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ybca.org/internet-cat-v\u2026", - "url": "https://t.co/xL5GsmS9Wf", - "expanded_url": "http://ybca.org/internet-cat-video-festival", - "indices": [ - 0, - 23 - ] - }, - { - "display_url": "twitter.com/hemeon/status/\u2026", - "url": "https://t.co/hfln1j7nVA", - "expanded_url": "https://twitter.com/hemeon/status/685548560859836416", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:04:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685552777330724864, - "text": "https://t.co/xL5GsmS9Wf and already sold out. :( https://t.co/hfln1j7nVA", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18370424, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 16111, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18370424/1398201551", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "42056876", - "following": false, - "friends_count": 241, - "entities": { - "description": { - "urls": [ - { - "display_url": "wild.land", - "url": "http://t.co/ktkvhRQiyM", - "expanded_url": "http://wild.land", - "indices": [ - 39, - 61 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "wild.land", - "url": "https://t.co/aqz7o0iVd2", - "expanded_url": "https://wild.land", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 269, - "location": "Kennewick, Wa", - "screen_name": "grElement", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Angela Steffens", - "profile_use_background_image": true, - "description": "Builder of modern web apps. Partner at http://t.co/ktkvhRQiyM. Kind of a foodie. Also a super mom.", - "url": "https://t.co/aqz7o0iVd2", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1281598197/new_me_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Sat May 23 16:49:49 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1281598197/new_me_normal.png", - "favourites_count": 86, - "status": { - "retweet_count": 42, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 42, - "truncated": false, - "retweeted": false, - "id_str": "647991814432104449", - "id": 647991814432104449, - "text": "evolution is \"just a theory\". well gravity is just a theory too. what I'm saying is gravity is bullshit made up by the stupid nerd Newton.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Sep 27 04:31:02 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 158, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "648380077097414656", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "animaldrumss", - "id_str": "1960031863", - "id": 1960031863, - "indices": [ - 3, - 16 - ], - "name": "Mike F" - } - ] - }, - "created_at": "Mon Sep 28 06:13:51 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 648380077097414656, - "text": "RT @animaldrumss: evolution is \"just a theory\". well gravity is just a theory too. what I'm saying is gravity is bullshit made up by the st\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 42056876, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 2019, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "80220145", - "following": false, - "friends_count": 221, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thebrianmanley.com", - "url": "http://t.co/F88zLJtKtE", - "expanded_url": "http://thebrianmanley.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 273, - "location": "", - "screen_name": "thebrianmanley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "thebrianmanley", - "profile_use_background_image": true, - "description": "I\u2019d rather write programs to help me write programs than write programs.", - "url": "http://t.co/F88zLJtKtE", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/523007198662639617/aauxMoMI_normal.png", - "profile_background_color": "ABB8C2", - "created_at": "Tue Oct 06 04:59:03 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/523007198662639617/aauxMoMI_normal.png", - "favourites_count": 1897, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "kendall", - "in_reply_to_user_id": 307833, - "in_reply_to_status_id_str": "685548656573812736", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685565008600805376", - "id": 685565008600805376, - "text": "@kendall I thought that was Santa Fe, no?", - "in_reply_to_user_id_str": "307833", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kendall", - "id_str": "307833", - "id": 307833, - "indices": [ - 0, - 8 - ], - "name": "Kendall Clark" - } - ] - }, - "created_at": "Fri Jan 08 20:53:29 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685548656573812736, - "lang": "en" - }, - "default_profile_image": false, - "id": 80220145, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5595, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/80220145/1445538062", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "8419342", - "following": false, - "friends_count": 129, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "n.exts.ch", - "url": "http://t.co/b2T5wJBNT2", - "expanded_url": "http://n.exts.ch", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "6C8FAB", - "profile_link_color": "6E7680", - "geo_enabled": true, - "followers_count": 462, - "location": "Kennewick, WA", - "screen_name": "natevw", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 54, - "name": "Nathan Vander Wilt", - "profile_use_background_image": false, - "description": "code, read, pray", - "url": "http://t.co/b2T5wJBNT2", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1782014523/IMG_2984_normal.JPG", - "profile_background_color": "FFFFFF", - "created_at": "Sat Aug 25 04:14:31 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "111111", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1782014523/IMG_2984_normal.JPG", - "favourites_count": 2348, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "michaelossmann", - "in_reply_to_user_id": 245547167, - "in_reply_to_status_id_str": "685517260010594304", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685537983668162560", - "id": 685537983668162560, - "text": ".@michaelossmann \"We are growing\" is the best part of that ad, for us non-Media Liaison types :-)", - "in_reply_to_user_id_str": "245547167", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "michaelossmann", - "id_str": "245547167", - "id": 245547167, - "indices": [ - 1, - 16 - ], - "name": "Michael Ossmann" - } - ] - }, - "created_at": "Fri Jan 08 19:06:06 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685517260010594304, - "lang": "en" - }, - "default_profile_image": false, - "id": 8419342, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 17486, - "is_translator": false - }, - { - "time_zone": "Ljubljana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14159253", - "following": false, - "friends_count": 1589, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "brian.kingsonline.net/talk/about/", - "url": "http://t.co/0n63UkyGP0", - "expanded_url": "http://brian.kingsonline.net/talk/about/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/127349504/twitter_mozsunburst_backgroundimage.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F97C7", - "geo_enabled": true, - "followers_count": 2561, - "location": "Slovenia. Sometimes.", - "screen_name": "brianking", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 157, - "name": "Brian King", - "profile_use_background_image": true, - "description": "Participation at Mozilla, aka working with thousands of amazing people.", - "url": "http://t.co/0n63UkyGP0", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/511579654445367296/_BtlLPxj_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Sun Mar 16 20:34:44 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/511579654445367296/_BtlLPxj_normal.jpeg", - "favourites_count": 68, - "status": { - "retweet_count": 31, - "retweeted_status": { - "retweet_count": 31, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685385349862916096", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", - "type": "photo", - "indices": [ - 76, - 99 - ], - "media_url": "http://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", - "display_url": "pic.twitter.com/G6vLAffmlq", - "id_str": "685385317923295232", - "expanded_url": "http://twitter.com/pdscott/status/685385349862916096/photo/1", - "id": 685385317923295232, - "url": "https://t.co/G6vLAffmlq" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 68, - 75 - ], - "text": "Dublin" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 08:59:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685385349862916096, - "text": "Tramlines return to College Green, 67 years after they were removed #Dublin https://t.co/G6vLAffmlq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 30, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685476795173482496", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "source_status_id_str": "685385349862916096", - "url": "https://t.co/G6vLAffmlq", - "media_url": "http://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", - "source_user_id_str": "19360077", - "id_str": "685385317923295232", - "id": 685385317923295232, - "media_url_https": "https://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", - "type": "photo", - "indices": [ - 89, - 112 - ], - "source_status_id": 685385349862916096, - "source_user_id": 19360077, - "display_url": "pic.twitter.com/G6vLAffmlq", - "expanded_url": "http://twitter.com/pdscott/status/685385349862916096/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 81, - 88 - ], - "text": "Dublin" - } - ], - "user_mentions": [ - { - "screen_name": "pdscott", - "id_str": "19360077", - "id": 19360077, - "indices": [ - 3, - 11 - ], - "name": "Piers Scott" - } - ] - }, - "created_at": "Fri Jan 08 15:02:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685476795173482496, - "text": "RT @pdscott: Tramlines return to College Green, 67 years after they were removed #Dublin https://t.co/G6vLAffmlq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 14159253, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/127349504/twitter_mozsunburst_backgroundimage.jpg", - "statuses_count": 9880, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159253/1417544922", - "is_translator": false - }, - { - "time_zone": "Bern", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "41655877", - "following": false, - "friends_count": 72, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 616, - "location": "", - "screen_name": "axelhecht", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 38, - "name": "Axel Hecht", - "profile_use_background_image": true, - "description": "Mozillian working on localization infrastructure", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/224734723/Axel_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu May 21 19:21:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/224734723/Axel_normal.jpg", - "favourites_count": 21, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685593439031828480", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.mozilla.org/l10n/2016/01/0\u2026", - "url": "https://t.co/JRIbzfYG2M", - "expanded_url": "https://blog.mozilla.org/l10n/2016/01/08/mozlando-localization-sessions/", - "indices": [ - 33, - 56 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:46:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593439031828480, - "text": "L10n-driver report from Mozlando https://t.co/JRIbzfYG2M", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685598438042546182", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.mozilla.org/l10n/2016/01/0\u2026", - "url": "https://t.co/JRIbzfYG2M", - "expanded_url": "https://blog.mozilla.org/l10n/2016/01/08/mozlando-localization-sessions/", - "indices": [ - 51, - 74 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mozilla_l10n", - "id_str": "227647662", - "id": 227647662, - "indices": [ - 3, - 16 - ], - "name": "Mozilla Localization" - } - ] - }, - "created_at": "Fri Jan 08 23:06:20 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685598438042546182, - "text": "RT @mozilla_l10n: L10n-driver report from Mozlando https://t.co/JRIbzfYG2M", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 41655877, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1765, - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "93677805", - "following": false, - "friends_count": 93, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": false, - "followers_count": 662, - "location": "Berlin, Germany", - "screen_name": "MadalinaAna", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 31, - "name": "Madalina Ana", - "profile_use_background_image": true, - "description": "Keeping the web open @Mozilla. Football player and fan. Point-and-click gaming geek. Music addict and Web worshiper.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3368171228/610c85a7ceae792330e259ef3fb21d7f_normal.jpeg", - "profile_background_color": "EBEBEB", - "created_at": "Mon Nov 30 17:49:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3368171228/610c85a7ceae792330e259ef3fb21d7f_normal.jpeg", - "favourites_count": 11, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "costenslayer", - "in_reply_to_user_id": 251683429, - "in_reply_to_status_id_str": "667720748556017664", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "667720975107014657", - "id": 667720975107014657, - "text": "@costenslayer testing testing 1,2,3 #fxhelp", - "in_reply_to_user_id_str": "251683429", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 36, - 43 - ], - "text": "fxhelp" - } - ], - "user_mentions": [ - { - "screen_name": "costenslayer", - "id_str": "251683429", - "id": 251683429, - "indices": [ - 0, - 13 - ], - "name": "Stefan Costen" - } - ] - }, - "created_at": "Fri Nov 20 15:07:40 +0000 2015", - "source": "Army of Awesome", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 667720748556017664, - "lang": "en" - }, - "default_profile_image": false, - "id": 93677805, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 280, - "is_translator": false - }, - { - "time_zone": "Greenland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "258840559", - "following": false, - "friends_count": 229, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000077062766/feb26da04b728fa62bdaad23c7f8eba0.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 1282, - "location": "Berlin", - "screen_name": "rosanardila", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 47, - "name": "Rosana Ardila", - "profile_use_background_image": true, - "description": "Language geek, open tech enthusiast and Mozilla Reps Council Member", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1790764965/Rosana_normal.png", - "profile_background_color": "1238A8", - "created_at": "Mon Feb 28 16:27:33 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1790764965/Rosana_normal.png", - "favourites_count": 375, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679832897235189760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.mozilla.org/mozillareps/20\u2026", - "url": "https://t.co/ac2nBta01i", - "expanded_url": "https://blog.mozilla.org/mozillareps/2015/12/24/reps-regional-communities-and-beyond-2015/", - "indices": [ - 44, - 67 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "firefox", - "id_str": "2142731", - "id": 2142731, - "indices": [ - 72, - 80 - ], - "name": "Firefox" - } - ] - }, - "created_at": "Thu Dec 24 01:16:08 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679832897235189760, - "text": "Reps, regional communities and beyond: 2015 https://t.co/ac2nBta01i via @firefox", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 258840559, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000077062766/feb26da04b728fa62bdaad23c7f8eba0.jpeg", - "statuses_count": 726, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/258840559/1416561407", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "4253351", - "following": false, - "friends_count": 1171, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mozillians.org/en-US/u/mary/", - "url": "https://t.co/SpGHcgXARN", - "expanded_url": "https://mozillians.org/en-US/u/mary/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/146635655/Adopt_Mozilla.jpg", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 2521, - "location": "San Francisco, CA", - "screen_name": "foxymary", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 115, - "name": "Mary J. Colvig", - "profile_use_background_image": true, - "description": "Thrive on fostering users and supporters into champions for Mozilla. Specialize in engaging communities when stakes are high...with a touch of play!", - "url": "https://t.co/SpGHcgXARN", - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/502297916606664704/HstKkO7K_normal.jpeg", - "profile_background_color": "642D8B", - "created_at": "Wed Apr 11 22:23:58 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/502297916606664704/HstKkO7K_normal.jpeg", - "favourites_count": 524, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682799707563790337", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "donate.mozilla.org/en-US/", - "url": "https://t.co/AEkd5rkO79", - "expanded_url": "https://donate.mozilla.org/en-US/", - "indices": [ - 95, - 118 - ] - } - ], - "hashtags": [ - { - "indices": [ - 36, - 47 - ], - "text": "lovetheweb" - } - ], - "user_mentions": [ - { - "screen_name": "mozilla", - "id_str": "106682853", - "id": 106682853, - "indices": [ - 11, - 19 - ], - "name": "Mozilla" - } - ] - }, - "created_at": "Fri Jan 01 05:45:10 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682799707563790337, - "text": "Donated to @mozilla today because I #lovetheweb. Only a few hours to go & so close to $4M! https://t.co/AEkd5rkO79", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 4253351, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/146635655/Adopt_Mozilla.jpg", - "statuses_count": 4707, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4253351/1408592080", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14614648", - "following": false, - "friends_count": 105, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.lizardwrangler.com", - "url": "http://t.co/Ef1HtT09oE", - "expanded_url": "http://blog.lizardwrangler.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 6104, - "location": "", - "screen_name": "MitchellBaker", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 495, - "name": "MitchellBaker", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/Ef1HtT09oE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000073181505/2cc3f656c656f702cb276b66ff255b78_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu May 01 14:25:10 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000073181505/2cc3f656c656f702cb276b66ff255b78_normal.png", - "favourites_count": 8, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 14, - "truncated": false, - "retweeted": false, - "id_str": "685520840989908992", - "id": 685520840989908992, - "text": "privacy tip today:Manage access to each website. Type about:permissions in a new tab in your Firefox browser #advocate4privacy #privacymonth", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 109, - 126 - ], - "text": "advocate4privacy" - }, - { - "indices": [ - 127, - 140 - ], - "text": "privacymonth" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:57:59 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 16, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14614648, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1823, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15540222", - "following": false, - "friends_count": 983, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rauchg.com", - "url": "http://t.co/CCq1K8vos8", - "expanded_url": "http://rauchg.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 16528, - "location": "SF", - "screen_name": "rauchg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 954, - "name": "Guillermo Rauch", - "profile_use_background_image": true, - "description": "\u25b2", - "url": "http://t.co/CCq1K8vos8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681929779176706048/BBI9KCFJ_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Jul 22 22:54:37 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681929779176706048/BBI9KCFJ_normal.png", - "favourites_count": 4481, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": "amasad", - "in_reply_to_user_id": 166138615, - "in_reply_to_status_id_str": "685601687273254912", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685607490583539712", - "id": 685607490583539712, - "text": "@amasad I wish neither existed. Reproducibility sans manifest duplication (shrink wrap) ftw", - "in_reply_to_user_id_str": "166138615", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "amasad", - "id_str": "166138615", - "id": 166138615, - "indices": [ - 0, - 7 - ], - "name": "Amjad Masad" - } - ] - }, - "created_at": "Fri Jan 08 23:42:18 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685601687273254912, - "lang": "en" - }, - "default_profile_image": false, - "id": 15540222, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 9401, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15540222/1446798932", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "10058662", - "following": false, - "friends_count": 12, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "asadotzler.com", - "url": "http://t.co/TFsbThdtN9", - "expanded_url": "http://asadotzler.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441855782758268928/SugecIa3.png", - "notifications": false, - "profile_sidebar_fill_color": "F7F1BE", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 2381, - "location": "", - "screen_name": "asadotzler", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 191, - "name": "Asa Dotzler", - "profile_use_background_image": true, - "description": "asa@mozilla.org", - "url": "http://t.co/TFsbThdtN9", - "profile_text_color": "E04C12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2774714763/8b6710ad9bb523019e4ca1a132ed29c1_normal.jpeg", - "profile_background_color": "272A2A", - "created_at": "Thu Nov 08 07:32:25 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2774714763/8b6710ad9bb523019e4ca1a132ed29c1_normal.jpeg", - "favourites_count": 5, - "status": { - "retweet_count": 569, - "retweeted_status": { - "retweet_count": 569, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679078758255497216", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blogs.technet.microsoft.com/mmpc/2015/12/2\u2026", - "url": "https://t.co/kVYfKYJP15", - "expanded_url": "https://blogs.technet.microsoft.com/mmpc/2015/12/21/keeping-browsing-experience-in-users-hands/", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Dec 21 23:19:27 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679078758255497216, - "text": "Breaking: Microsoft bans all adware use of proxies/Winsock/MitM to inject ads. Violators will be marked malware. https://t.co/kVYfKYJP15", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 422, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679418983896887296", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blogs.technet.microsoft.com/mmpc/2015/12/2\u2026", - "url": "https://t.co/kVYfKYJP15", - "expanded_url": "https://blogs.technet.microsoft.com/mmpc/2015/12/21/keeping-browsing-experience-in-users-hands/", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SwiftOnSecurity", - "id_str": "2436389418", - "id": 2436389418, - "indices": [ - 3, - 19 - ], - "name": "SecuriTay" - } - ] - }, - "created_at": "Tue Dec 22 21:51:23 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679418983896887296, - "text": "RT @SwiftOnSecurity: Breaking: Microsoft bans all adware use of proxies/Winsock/MitM to inject ads. Violators will be marked malware. https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 10058662, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441855782758268928/SugecIa3.png", - "statuses_count": 12157, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10058662/1444669718", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3242411", - "following": false, - "friends_count": 130, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/cbeard", - "url": "http://t.co/fLi2DdMgiu", - "expanded_url": "http://linkedin.com/in/cbeard", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/815299669/957c8f532cfc59d140f40e654888f804.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3551, - "location": "San Francisco Bay Area", - "screen_name": "cbeard", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 160, - "name": "Chris Beard", - "profile_use_background_image": false, - "description": "@Mozilla CEO", - "url": "http://t.co/fLi2DdMgiu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/455802966344101888/6Tf6AJlT_normal.jpeg", - "profile_background_color": "00539F", - "created_at": "Mon Apr 02 19:35:28 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/455802966344101888/6Tf6AJlT_normal.jpeg", - "favourites_count": 588, - "status": { - "retweet_count": 7178, - "retweeted_status": { - "retweet_count": 7178, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678639616199557120", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 936, - "h": 710, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 257, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 455, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", - "type": "photo", - "indices": [ - 62, - 85 - ], - "media_url": "http://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", - "display_url": "pic.twitter.com/pXb7F7aWsP", - "id_str": "678639615675269120", - "expanded_url": "http://twitter.com/randfish/status/678639616199557120/photo/1", - "id": 678639615675269120, - "url": "https://t.co/pXb7F7aWsP" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Dec 20 18:14:27 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678639616199557120, - "text": "Mobile isn't killing desktop. It's killing all our free time. https://t.co/pXb7F7aWsP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4222, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679451578667945984", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 936, - "h": 710, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 257, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 455, - "resize": "fit" - } - }, - "source_status_id_str": "678639616199557120", - "url": "https://t.co/pXb7F7aWsP", - "media_url": "http://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", - "source_user_id_str": "6527972", - "id_str": "678639615675269120", - "id": 678639615675269120, - "media_url_https": "https://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", - "type": "photo", - "indices": [ - 76, - 99 - ], - "source_status_id": 678639616199557120, - "source_user_id": 6527972, - "display_url": "pic.twitter.com/pXb7F7aWsP", - "expanded_url": "http://twitter.com/randfish/status/678639616199557120/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "randfish", - "id_str": "6527972", - "id": 6527972, - "indices": [ - 3, - 12 - ], - "name": "Rand Fishkin" - } - ] - }, - "created_at": "Wed Dec 23 00:00:54 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679451578667945984, - "text": "RT @randfish: Mobile isn't killing desktop. It's killing all our free time. https://t.co/pXb7F7aWsP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3242411, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/815299669/957c8f532cfc59d140f40e654888f804.jpeg", - "statuses_count": 459, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3242411/1398780577", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "806757", - "following": false, - "friends_count": 2175, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nodesource.com/company#dshaw", - "url": "https://t.co/XawtxLkLRf", - "expanded_url": "https://nodesource.com/company#dshaw", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/59926981/M104-hs-2003-28-a.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 11990, - "location": "San Francisco, CA", - "screen_name": "dshaw", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 740, - "name": "Dan Shaw", - "profile_use_background_image": true, - "description": "CTO and Co-Founder of @NodeSource - the Enterprise Node.js Company.", - "url": "https://t.co/XawtxLkLRf", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/485564678039302144/Fjxv6IbQ_normal.png", - "profile_background_color": "010302", - "created_at": "Fri Mar 02 18:39:44 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/485564678039302144/Fjxv6IbQ_normal.png", - "favourites_count": 31976, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": "mrohitkunal", - "in_reply_to_user_id": 136649482, - "in_reply_to_status_id_str": "685557670053588992", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685563541332463616", - "id": 685563541332463616, - "text": "@mrohitkunal @sfnode @stinkydofu @NetflixUIE Unrelated.", - "in_reply_to_user_id_str": "136649482", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mrohitkunal", - "id_str": "136649482", - "id": 136649482, - "indices": [ - 0, - 12 - ], - "name": "Rohit Kunal" - }, - { - "screen_name": "sfnode", - "id_str": "2800676574", - "id": 2800676574, - "indices": [ - 13, - 20 - ], - "name": "SFNode" - }, - { - "screen_name": "stinkydofu", - "id_str": "16318984", - "id": 16318984, - "indices": [ - 21, - 32 - ], - "name": "Alex Liu" - }, - { - "screen_name": "NetflixUIE", - "id_str": "3018765357", - "id": 3018765357, - "indices": [ - 33, - 44 - ], - "name": "Netflix UI Engineers" - } - ] - }, - "created_at": "Fri Jan 08 20:47:40 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685557670053588992, - "lang": "en" - }, - "default_profile_image": false, - "id": 806757, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/59926981/M104-hs-2003-28-a.jpg", - "statuses_count": 43785, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/806757/1382916317", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "843799844", - "following": false, - "friends_count": 166, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "isode.com", - "url": "http://t.co/4IcOx6dh", - "expanded_url": "http://www.isode.com", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778257871/1ed94c30a10335b03f086800cbad5962.png", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "0056A6", - "geo_enabled": true, - "followers_count": 130, - "location": "Hampton, Middlesex, UK", - "screen_name": "Isode_Ltd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Isode", - "profile_use_background_image": true, - "description": "The leading messaging server software company, enabling secure communications in challenging deployments worldwide.", - "url": "http://t.co/4IcOx6dh", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/643441999111155712/w0E48ey1_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Sep 24 15:36:34 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/643441999111155712/w0E48ey1_normal.png", - "favourites_count": 6, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685487692977684481", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1n7HsxQ", - "url": "https://t.co/oisefvTtJj", - "expanded_url": "http://buff.ly/1n7HsxQ", - "indices": [ - 10, - 33 - ] - }, - { - "display_url": "buff.ly/1n7HtSm", - "url": "https://t.co/PF68VdHNot", - "expanded_url": "http://buff.ly/1n7HtSm", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [ - { - "indices": [ - 104, - 114 - ], - "text": "icaoECOND" - } - ], - "user_mentions": [ - { - "screen_name": "icao", - "id_str": "246309084", - "id": 246309084, - "indices": [ - 3, - 8 - ], - "name": "ICAO " - } - ] - }, - "created_at": "Fri Jan 08 15:46:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685487692977684481, - "text": "RT @icao: https://t.co/oisefvTtJj: Middle East grew strongly in freight traffic by +8.3%. Download now! #icaoECOND\u2026 https://t.co/PF68VdHNot", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 843799844, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778257871/1ed94c30a10335b03f086800cbad5962.png", - "statuses_count": 1356, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/843799844/1442312979", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "29255412", - "following": false, - "friends_count": 619, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tjholowaychuk.com", - "url": "https://t.co/uSeKUUmcKC", - "expanded_url": "http://tjholowaychuk.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 26354, - "location": "Victoria BC", - "screen_name": "tjholowaychuk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1327, - "name": "TJ Holowaychuk", - "profile_use_background_image": false, - "description": "Code. Photography. Art. @tj on Github. @tjholowaychuk on Medium.", - "url": "https://t.co/uSeKUUmcKC", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000226613002/36623ae09f553713c575c97c77544b49_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Apr 06 18:05:41 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000226613002/36623ae09f553713c575c97c77544b49_normal.jpeg", - "favourites_count": 1768, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "PreetamJinka", - "in_reply_to_user_id": 302840829, - "in_reply_to_status_id_str": "685598202096123904", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685600661463928832", - "id": 685600661463928832, - "text": "@PreetamJinka interesting use-case!", - "in_reply_to_user_id_str": "302840829", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PreetamJinka", - "id_str": "302840829", - "id": 302840829, - "indices": [ - 0, - 13 - ], - "name": "Preetam Jinka" - } - ] - }, - "created_at": "Fri Jan 08 23:15:10 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598202096123904, - "lang": "en" - }, - "default_profile_image": false, - "id": 29255412, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 13840, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29255412/1448314322", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "8038312", - "following": false, - "friends_count": 400, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.izs.me", - "url": "https://t.co/EP1ieD9VvF", - "expanded_url": "http://blog.izs.me/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 13131, - "location": "Oak Town CA", - "screen_name": "izs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 902, - "name": "Isaac Z. Schlueter", - "profile_use_background_image": true, - "description": "npm ceo. aspiring empath. zero time for shitbirds. he/him/his", - "url": "https://t.co/EP1ieD9VvF", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649690687860899840/bSyKUJfg_normal.png", - "profile_background_color": "EBEBEB", - "created_at": "Tue Aug 07 20:44:59 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649690687860899840/bSyKUJfg_normal.png", - "favourites_count": 4305, - "status": { - "retweet_count": 20, - "retweeted_status": { - "retweet_count": 20, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685388664596250624", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 537, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 178, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 314, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", - "type": "photo", - "indices": [ - 23, - 46 - ], - "media_url": "http://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", - "display_url": "pic.twitter.com/TxHrDuOT4E", - "id_str": "685388663396675584", - "expanded_url": "http://twitter.com/jonginn/status/685388664596250624/photo/1", - "id": 685388663396675584, - "url": "https://t.co/TxHrDuOT4E" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 09:12:46 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685388664596250624, - "text": "Happy incept day, Roy! https://t.co/TxHrDuOT4E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Fenix for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685518247588843521", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 537, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 178, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 314, - "resize": "fit" - } - }, - "source_status_id_str": "685388664596250624", - "url": "https://t.co/TxHrDuOT4E", - "media_url": "http://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", - "source_user_id_str": "16461969", - "id_str": "685388663396675584", - "id": 685388663396675584, - "media_url_https": "https://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", - "type": "photo", - "indices": [ - 36, - 59 - ], - "source_status_id": 685388664596250624, - "source_user_id": 16461969, - "display_url": "pic.twitter.com/TxHrDuOT4E", - "expanded_url": "http://twitter.com/jonginn/status/685388664596250624/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jonginn", - "id_str": "16461969", - "id": 16461969, - "indices": [ - 3, - 11 - ], - "name": "Jonathan Ginn" - } - ] - }, - "created_at": "Fri Jan 08 17:47:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685518247588843521, - "text": "RT @jonginn: Happy incept day, Roy! https://t.co/TxHrDuOT4E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 8038312, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 38341, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8038312/1448927004", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "668423", - "following": false, - "friends_count": 456, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mikealrogers.com", - "url": "https://t.co/7kRL5uIWRL", - "expanded_url": "http://mikealrogers.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 13568, - "location": "San Francisco, CA", - "screen_name": "mikeal", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 887, - "name": "Mikeal Rogers", - "profile_use_background_image": true, - "description": "Creator of NodeConf & request. Community @ Node.js Foundation. All gifs from One-Punch Man :)", - "url": "https://t.co/7kRL5uIWRL", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/549609524038877184/01oMFk1H_normal.png", - "profile_background_color": "9AE4E8", - "created_at": "Fri Jan 19 22:47:30 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/549609524038877184/01oMFk1H_normal.png", - "favourites_count": 3769, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": "tomdale", - "in_reply_to_user_id": 668863, - "in_reply_to_status_id_str": "685581797850279937", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610148786614272", - "id": 685610148786614272, - "text": "@tomdale @mjasay don't worry, eventually it's consistent ;)", - "in_reply_to_user_id_str": "668863", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tomdale", - "id_str": "668863", - "id": 668863, - "indices": [ - 0, - 8 - ], - "name": "Tom Dale" - }, - { - "screen_name": "mjasay", - "id_str": "7617702", - "id": 7617702, - "indices": [ - 9, - 16 - ], - "name": "Matt Asay" - } - ] - }, - "created_at": "Fri Jan 08 23:52:52 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685581797850279937, - "lang": "en" - }, - "default_profile_image": false, - "id": 668423, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 37228, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/668423/1419820652", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "12241752", - "following": false, - "friends_count": 3595, - "entities": { - "description": { - "urls": [ - { - "display_url": "instagram.com/catmapper", - "url": "https://t.co/wBC1sQc8kf", - "expanded_url": "https://instagram.com/catmapper", - "indices": [ - 94, - 117 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "maxogden.com", - "url": "http://t.co/GAcgXmdLV9", - "expanded_url": "http://maxogden.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000181139101/ckYUsb2C.png", - "notifications": false, - "profile_sidebar_fill_color": "B5E8FC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 16188, - "location": "~/PDX", - "screen_name": "denormalize", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 991, - "name": "maxwell ogden", - "profile_use_background_image": false, - "description": "computer programmer @dat_project working on open source data tools. amateur cat photographer (https://t.co/wBC1sQc8kf). author of JS For Cats", - "url": "http://t.co/GAcgXmdLV9", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661753310819434496/GqJ8Kn97_normal.jpg", - "profile_background_color": "D6F7FF", - "created_at": "Mon Jan 14 23:11:21 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661753310819434496/GqJ8Kn97_normal.jpg", - "favourites_count": 204, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "lippytak", - "in_reply_to_user_id": 23721781, - "in_reply_to_status_id_str": "685258489900351488", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685259387338792960", - "id": 685259387338792960, - "text": "@lippytak I do (on mac) CMD + C <SPACE> V A C <CLICK>", - "in_reply_to_user_id_str": "23721781", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lippytak", - "id_str": "23721781", - "id": 23721781, - "indices": [ - 0, - 9 - ], - "name": "Jake Solomon" - } - ] - }, - "created_at": "Fri Jan 08 00:39:04 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685258489900351488, - "lang": "en" - }, - "default_profile_image": false, - "id": 12241752, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000181139101/ckYUsb2C.png", - "statuses_count": 16479, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12241752/1446598756", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "35432643", - "following": false, - "friends_count": 1461, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "addyosmani.com", - "url": "https://t.co/qO6rgXCMIG", - "expanded_url": "http://www.addyosmani.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/666933300175376384/6j0swZpR.png", - "notifications": false, - "profile_sidebar_fill_color": "56E372", - "profile_link_color": "9D582E", - "geo_enabled": true, - "followers_count": 119957, - "location": "London, England", - "screen_name": "addyosmani", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5415, - "name": "Addy Osmani", - "profile_use_background_image": true, - "description": "Engineer at Google working on Chrome & @Polymer \u2022 Author \u2022 Creator of TodoMVC, @Yeoman, Material Design Lite, Critical \u2022 Passionate about web tooling", - "url": "https://t.co/qO6rgXCMIG", - "profile_text_color": "0A0A0A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/586079587626422272/80Q5wAFU_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Apr 26 08:40:11 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/586079587626422272/80Q5wAFU_normal.jpg", - "favourites_count": 14237, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jeffposnick", - "in_reply_to_user_id": 11817932, - "in_reply_to_status_id_str": "685530143583027200", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685531187314573312", - "id": 685531187314573312, - "text": "@jeffposnick YES! Have been hoping we would move in this direction. Will leave some thoughts after the weekend :)", - "in_reply_to_user_id_str": "11817932", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jeffposnick", - "id_str": "11817932", - "id": 11817932, - "indices": [ - 0, - 12 - ], - "name": "Jeffrey Posnick" - } - ] - }, - "created_at": "Fri Jan 08 18:39:06 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685530143583027200, - "lang": "en" - }, - "default_profile_image": false, - "id": 35432643, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/666933300175376384/6j0swZpR.png", - "statuses_count": 14349, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35432643/1449774217", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1671811", - "following": false, - "friends_count": 1852, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paulirish.com", - "url": "http://t.co/fbpDRudFKn", - "expanded_url": "http://paulirish.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2411001/watermelon-1600x1200.jpg", - "notifications": false, - "profile_sidebar_fill_color": "CBF8BD", - "profile_link_color": "3D8C3A", - "geo_enabled": true, - "followers_count": 184666, - "location": "Palo Alto", - "screen_name": "paul_irish", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8177, - "name": "Paul Irish", - "profile_use_background_image": true, - "description": "The web is awesome, let's make it even better \u2022 I work on Chrome DevTools and browser performance \u2022 big fan of rye whiskey, data and whimsy", - "url": "http://t.co/fbpDRudFKn", - "profile_text_color": "323232", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/420826194083213312/CP1RmLa3_normal.jpeg", - "profile_background_color": "E9E9E9", - "created_at": "Tue Mar 20 21:15:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "1E4B04", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/420826194083213312/CP1RmLa3_normal.jpeg", - "favourites_count": 3307, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 1679, - "possibly_sensitive": false, - "id_str": "685226978199207936", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "code.google.com/p/chromium/iss\u2026", - "url": "https://t.co/yoPGAGsYuJ", - "expanded_url": "https://code.google.com/p/chromium/issues/detail?id=478214", - "indices": [ - 58, - 81 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "javan", - "id_str": "1679", - "id": 1679, - "indices": [ - 0, - 6 - ], - "name": "Javan Makhmali" - } - ] - }, - "created_at": "Thu Jan 07 22:30:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "1679", - "place": null, - "in_reply_to_screen_name": "javan", - "in_reply_to_status_id_str": "685182546498449408", - "truncated": false, - "id": 685226978199207936, - "text": "@javan This is a bug that we'll eventually fix in Chrome: https://t.co/yoPGAGsYuJ In the meantime, your solution is v nice. :)", - "coordinates": null, - "in_reply_to_status_id": 685182546498449408, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1671811, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2411001/watermelon-1600x1200.jpg", - "statuses_count": 24010, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "143128205", - "following": false, - "friends_count": 939, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chriskranky.com", - "url": "http://t.co/IzUIseAKTj", - "expanded_url": "http://www.chriskranky.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/462058347005370369/5bvgJJ2N.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1072, - "location": "San Francisco", - "screen_name": "ckoehncke", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "Chris Koehncke", - "profile_use_background_image": true, - "description": "Following a new era of communications & collaboration with HTML5 & WebRTC", - "url": "http://t.co/IzUIseAKTj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1408852205/fuzzy_normal.jpg", - "profile_background_color": "1F1520", - "created_at": "Wed May 12 17:25:29 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1408852205/fuzzy_normal.jpg", - "favourites_count": 137, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685256148669222912", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/JohnLegere/sta\u2026", - "url": "https://t.co/HqFQtsAKND", - "expanded_url": "https://twitter.com/JohnLegere/status/685201130427531264", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 00:26:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685256148669222912, - "text": "Ugh CEO put foot in mouth with this one, I feel the pain https://t.co/HqFQtsAKND", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 143128205, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/462058347005370369/5bvgJJ2N.jpeg", - "statuses_count": 1295, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/143128205/1398998211", - "is_translator": false - } - ], - "previous_cursor": -1494685098210881400, - "previous_cursor_str": "-1494685098210881400", - "next_cursor_str": "1489123725664322527" -} \ No newline at end of file +{"users": [{"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14574588", "following": false, "friends_count": 434, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "abhinavsingh.com", "url": "http://t.co/78nP1dFAQl", "expanded_url": "http://abhinavsingh.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1833, "location": "San Francisco, California", "screen_name": "imoracle", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 113, "name": "AB", "profile_use_background_image": true, "description": "#Googler #Appurify #Yahoo #Oracle #Startups #JAXL #Musician #Blues #Engineer #IIT #Headbanger #Guitar #CMS #Lucknowi #Indian", "url": "http://t.co/78nP1dFAQl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000743742291/3303eaa6ced81f16b09a0f167468fb13_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Apr 28 19:58:51 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000743742291/3303eaa6ced81f16b09a0f167468fb13_normal.jpeg", "favourites_count": 851, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "677315949020614657", "id": 677315949020614657, "text": "Super productive holidays. We (@abbandofficial) composed 8 songs for upcoming album next year. Now off to meet good old friends #FunTime", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "FunTime", "indices": [128, 136]}], "user_mentions": [{"screen_name": "abbandofficial", "id_str": "4250770574", "id": 4250770574, "indices": [31, 46], "name": "AB"}]}, "created_at": "Thu Dec 17 02:34:40 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14574588, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 15921, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14574588/1403935628", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "308881474", "following": false, "friends_count": 21, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "webrtc.org", "url": "http://t.co/f8Rr0iB9ir", "expanded_url": "http://webrtc.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7193, "location": "", "screen_name": "webrtc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 240, "name": "WebRTC project", "profile_use_background_image": true, "description": "Twitter account for the WebRTC project. We'll update it with progress, blog post links, etc...", "url": "http://t.co/f8Rr0iB9ir", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1875563277/photo_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 01 04:42:12 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1875563277/photo_normal.jpg", "favourites_count": 59, "status": {"retweet_count": 1, "in_reply_to_user_id": 21206449, "possibly_sensitive": false, "id_str": "677508944298975232", "in_reply_to_user_id_str": "21206449", "entities": {"symbols": [], "urls": [{"display_url": "appr.tc", "url": "https://t.co/wWBvRAUwXy", "expanded_url": "https://appr.tc", "indices": [55, 78]}], "hashtags": [], "user_mentions": [{"screen_name": "carlosml", "id_str": "21206449", "id": 21206449, "indices": [0, 9], "name": "Carlos Lebron"}]}, "created_at": "Thu Dec 17 15:21:34 +0000 2015", "favorited": false, "in_reply_to_status_id": 676814357561532417, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "carlosml", "in_reply_to_status_id_str": "676814357561532417", "truncated": false, "id": 677508944298975232, "text": "@carlosml not default codec in Chrome, but default for https://t.co/wWBvRAUwXy :)", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 308881474, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 340, "is_translator": false}, {"time_zone": "Sydney", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "36079474", "following": false, "friends_count": 3646, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3153, "location": "Batmania, Australia", "screen_name": "nfFrenchie", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 83, "name": "French", "profile_use_background_image": true, "description": "Infosec, Bitcoin & VC Geek.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477682641282400256/TOB7cr9I_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 28 14:34:24 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477682641282400256/TOB7cr9I_normal.jpeg", "favourites_count": 3076, "status": {"in_reply_to_status_id": 685407306830381056, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "errbufferoverfl", "in_reply_to_user_id": 3023308260, "in_reply_to_status_id_str": "685407306830381056", "in_reply_to_user_id_str": "3023308260", "truncated": false, "id_str": "685424075188011009", "id": 685424075188011009, "text": "@errbufferoverfl these guys might have some experience: @helveticade @therealdevgeeks", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "errbufferoverfl", "id_str": "3023308260", "id": 3023308260, "indices": [0, 16], "name": "Rebecca Trapani \u0ca0\u256d\u256e\u0ca0"}, {"screen_name": "helveticade", "id_str": "14111299", "id": 14111299, "indices": [56, 68], "name": "Cade"}, {"screen_name": "theRealDevgeeks", "id_str": "359949200", "id": 359949200, "indices": [69, 85], "name": "Tommy Williams \u24cb"}]}, "created_at": "Fri Jan 08 11:33:28 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 36079474, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3152, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "409854384", "following": false, "friends_count": 1072, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 112, "location": "", "screen_name": "altkatz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "altkatz", "profile_use_background_image": true, "description": "This is not the algorithm. This is close.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/573778807837974529/VNUkFciS_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Nov 11 09:32:26 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/573778807837974529/VNUkFciS_normal.jpeg", "favourites_count": 170, "status": {"retweet_count": 581, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 581, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "619837611419521024", "id": 619837611419521024, "text": "A giant TCP SYN flood (DDoS) is still causing slower connection speeds for our users in parts of Asia, Australia & Oceania. Working on this.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jul 11 11:56:17 +0000 2015", "source": "Twitter Web Client", "favorite_count": 195, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "620175335741460480", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "telegram", "id_str": "1689053928", "id": 1689053928, "indices": [3, 12], "name": "Telegram Messenger"}]}, "created_at": "Sun Jul 12 10:18:16 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 620175335741460480, "text": "RT @telegram: A giant TCP SYN flood (DDoS) is still causing slower connection speeds for our users in parts of Asia, Australia & Oceania. W\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 409854384, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 111, "profile_banner_url": "https://pbs.twimg.com/profile_banners/409854384/1425635418", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "15372963", "following": false, "friends_count": 531, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "buddycloud.com", "url": "http://t.co/IRivmAHKks", "expanded_url": "http://buddycloud.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/116285962/square-logo.png", "notifications": false, "profile_sidebar_fill_color": "F2F2F2", "profile_link_color": "2DAEBF", "geo_enabled": true, "followers_count": 907, "location": "Berlin, Germany", "screen_name": "buddycloud", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 87, "name": "Buddycloud", "profile_use_background_image": false, "description": "Secure messaging for apps - Tools, libraries and services for secure cloud & on-premise user and group messaging.\n#securemessaging", "url": "http://t.co/IRivmAHKks", "profile_text_color": "5F9DFA", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/525226516179734528/DXcqacDW_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Jul 10 02:11:32 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/525226516179734528/DXcqacDW_normal.png", "favourites_count": 56, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "660030922226450432", "id": 660030922226450432, "text": "Wanna join for a Saturday morning pet-projects dev-ops hacking session? 10am, Berlin #saltstack, #ansible, etc. DM for details.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "saltstack", "indices": [85, 95]}, {"text": "ansible", "indices": [97, 105]}], "user_mentions": []}, "created_at": "Fri Oct 30 09:50:09 +0000 2015", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15372963, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/116285962/square-logo.png", "statuses_count": 924, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15372963/1448451457", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3033204133", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 14559, "location": "The Incident Review Meeting", "screen_name": "honest_update", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 257, "name": "Honest Status Page", "profile_use_background_image": true, "description": "These are the things we probably ought to say when updating incident status. Snark and compassion. Now, about your data\u2026", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/568844092834996224/w90Cq4mH_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Feb 20 18:42:30 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/568844092834996224/w90Cq4mH_normal.jpeg", "favourites_count": 250, "status": {"in_reply_to_status_id": null, "retweet_count": 11, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685516850852184064", "id": 685516850852184064, "text": "*slightly changes tint of green check mark circle to convey depressed success rate*", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:42:08 +0000 2016", "source": "Buffer", "favorite_count": 20, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3033204133, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 328, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "43977574", "following": false, "friends_count": 7, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tigase.org", "url": "http://t.co/S2bnbrVgtb", "expanded_url": "http://www.tigase.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 143, "location": "San Francisco, CA, USA", "screen_name": "tigase", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Tigase XMPP Server", "profile_use_background_image": true, "description": "I am 8 years old, or something like that", "url": "http://t.co/S2bnbrVgtb", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2182438186/Tigase_Icon_A_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jun 01 21:29:01 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2182438186/Tigase_Icon_A_normal.png", "favourites_count": 6, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "665756052294512640", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tinyurl.com/pkra4v4", "url": "https://t.co/wQjHLQ4npV", "expanded_url": "http://tinyurl.com/pkra4v4", "indices": [89, 112]}], "hashtags": [], "user_mentions": []}, "created_at": "Sun Nov 15 04:59:46 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 665756052294512640, "text": "New Blog Post where we look at IQ stanzas. XMPP: An Introduction - Part IV - Could You...https://t.co/wQjHLQ4npV", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 43977574, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 323, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18326200", "following": false, "friends_count": 1366, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "greptilian.com", "url": "http://t.co/G0N231nQxj", "expanded_url": "http://greptilian.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3684471/rootintootin.jpg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 460, "location": "", "screen_name": "philipdurbin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 25, "name": "Philip Durbin", "profile_use_background_image": true, "description": "open source geek", "url": "http://t.co/G0N231nQxj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1729661967/philipdurbin_cropped_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Dec 23 04:17:49 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1729661967/philipdurbin_cropped_normal.jpg", "favourites_count": 2765, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679475811393617920", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 255, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 768, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CW37osBVAAAHGeg.jpg", "type": "photo", "indices": [71, 94], "media_url": "http://pbs.twimg.com/media/CW37osBVAAAHGeg.jpg", "display_url": "pic.twitter.com/5zaytnZQhS", "id_str": "679475795232882688", "expanded_url": "http://twitter.com/philipdurbin/status/679475811393617920/photo/1", "id": 679475795232882688, "url": "https://t.co/5zaytnZQhS"}], "symbols": [], "urls": [], "hashtags": [{"text": "StarWars", "indices": [40, 49]}], "user_mentions": [{"screen_name": "TheWookieeRoars", "id_str": "483192121", "id": 483192121, "indices": [54, 70], "name": "Peter Mayhew"}]}, "created_at": "Wed Dec 23 01:37:12 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679475811393617920, "text": "Chewbacca and R2-D2 by my six year old. #StarWars /cc @TheWookieeRoars https://t.co/5zaytnZQhS", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 18326200, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3684471/rootintootin.jpg", "statuses_count": 2272, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1235521", "following": false, "friends_count": 950, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tbray.org/ongoing/", "url": "https://t.co/oOBFMTl6h7", "expanded_url": "https://www.tbray.org/ongoing/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000008638875/b45b8babcd8e868d57e715bdf15838a2.jpeg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "AA0000", "geo_enabled": false, "followers_count": 32984, "location": "Vancouver!", "screen_name": "timbray", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2270, "name": "Tim Bray", "profile_use_background_image": false, "description": "Web geek with a camera.", "url": "https://t.co/oOBFMTl6h7", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/421637246/Tim_normal.jpg", "profile_background_color": "EEAA00", "created_at": "Thu Mar 15 17:24:22 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/421637246/Tim_normal.jpg", "favourites_count": 698, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685316522135261184", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtube.com/watch?v=aEj2NH\u2026", "url": "https://t.co/eUErlw8JHh", "expanded_url": "https://www.youtube.com/watch?v=aEj2NHy4iL4", "indices": [13, 36]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 04:26:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685316522135261184, "text": "The culprit: https://t.co/eUErlw8JHh", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1235521, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000008638875/b45b8babcd8e868d57e715bdf15838a2.jpeg", "statuses_count": 19307, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1235521/1398645696", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "86146814", "following": false, "friends_count": 779, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593182759062876160/2y0X2nbK.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 768, "location": "New York ", "screen_name": "Caelestisca", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 48, "name": "Carmen Andoh", "profile_use_background_image": true, "description": "~$#momops of the House of Bash. @ladieswholinux @womenwhogo_nyc", "url": null, "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681245752983719937/R_3vQ5rb_normal.jpg", "profile_background_color": "F5F8FA", "created_at": "Thu Oct 29 19:48:50 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681245752983719937/R_3vQ5rb_normal.jpg", "favourites_count": 11334, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "681918394594144261", "id": 681918394594144261, "text": "You know you work at an awesome place when your team concerns themselves with travel issues for your son with #T1D & #autism . \u2661 @enquos", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "T1D", "indices": [110, 114]}, {"text": "autism", "indices": [121, 128]}], "user_mentions": [{"screen_name": "enquos", "id_str": "1132126837", "id": 1132126837, "indices": [133, 140], "name": "enquos"}]}, "created_at": "Tue Dec 29 19:23:09 +0000 2015", "source": "Twitter for Android", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 86146814, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593182759062876160/2y0X2nbK.jpg", "statuses_count": 879, "profile_banner_url": "https://pbs.twimg.com/profile_banners/86146814/1451004545", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "26751851", "following": false, "friends_count": 1057, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thekillingtime.com", "url": "https://t.co/Zcy63UDMwn", "expanded_url": "http://thekillingtime.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 739, "location": "~", "screen_name": "daguy666", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Joey Pistone", "profile_use_background_image": true, "description": "snowboarding, skateboarding, music, and computers. Python Padawan. Network Security Engineer at @Etsy. JP+LR", "url": "https://t.co/Zcy63UDMwn", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477539445395058688/n32ykdPs_normal.png", "profile_background_color": "131516", "created_at": "Thu Mar 26 13:46:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477539445395058688/n32ykdPs_normal.png", "favourites_count": 4855, "status": {"in_reply_to_status_id": 685604446718439424, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "RT_America", "in_reply_to_user_id": 115754870, "in_reply_to_status_id_str": "685604446718439424", "in_reply_to_user_id_str": "115754870", "truncated": false, "id_str": "685611780647723008", "id": 685611780647723008, "text": "@RT_America does the raccoon help or hurt the restaurants \"A\" rating?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "RT_America", "id_str": "115754870", "id": 115754870, "indices": [0, 11], "name": "RT America"}]}, "created_at": "Fri Jan 08 23:59:21 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 26751851, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5092, "profile_banner_url": "https://pbs.twimg.com/profile_banners/26751851/1398971089", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "305899937", "following": false, "friends_count": 230, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 601, "location": "Brooklyn, NY", "screen_name": "mcdonnps", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "Patrick McDonnell", "profile_use_background_image": true, "description": "Senior Manager, Operations Engineering @Etsy", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2223861876/pmcdonnell__4__normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu May 26 23:40:02 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2223861876/pmcdonnell__4__normal.jpg", "favourites_count": 5, "status": {"retweet_count": 11, "retweeted_status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "667011917341401093", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "etsy.com/uk/careers/job\u2026", "url": "https://t.co/bm1wh76fvj", "expanded_url": "https://www.etsy.com/uk/careers/job/oAHU1fwW", "indices": [57, 80]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Nov 18 16:10:08 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 667011917341401093, "text": "Etsy are hiring a Sr. Ops Engineer in our Dublin Office: https://t.co/bm1wh76fvj - feel free to ping me if you'd like more info :)", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "667014165735845888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "etsy.com/uk/careers/job\u2026", "url": "https://t.co/bm1wh76fvj", "expanded_url": "https://www.etsy.com/uk/careers/job/oAHU1fwW", "indices": [71, 94]}], "hashtags": [], "user_mentions": [{"screen_name": "jonlives", "id_str": "13093162", "id": 13093162, "indices": [3, 12], "name": "Jon Cowie"}]}, "created_at": "Wed Nov 18 16:19:04 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 667014165735845888, "text": "RT @jonlives: Etsy are hiring a Sr. Ops Engineer in our Dublin Office: https://t.co/bm1wh76fvj - feel free to ping me if you'd like more in\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 305899937, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 48, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8627682", "following": false, "friends_count": 223, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "laur.ie", "url": "http://t.co/fcvNw989z6", "expanded_url": "http://laur.ie", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 2621, "location": "New York", "screen_name": "lozzd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 135, "name": "Laurie", "profile_use_background_image": true, "description": "Operating operations at @Etsy. I like graphs, Hadoop clusters, monitoring and sarcasm. Englishman in New York.", "url": "http://t.co/fcvNw989z6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/464073861747576834/FRHvjaJm_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Mon Sep 03 17:30:50 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/464073861747576834/FRHvjaJm_normal.jpeg", "favourites_count": 1471, "status": {"in_reply_to_status_id": null, "retweet_count": 6, "place": {"url": "https://api.twitter.com/1.1/geo/id/011add077f4d2da3.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.041878, 40.570842], [-73.855673, 40.570842], [-73.855673, 40.739434], [-74.041878, 40.739434]]], "type": "Polygon"}, "full_name": "Brooklyn, NY", "contained_within": [], "country_code": "US", "id": "011add077f4d2da3", "name": "Brooklyn"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685562352633274368", "id": 685562352633274368, "text": ".@beerops: \"Since I can't merge this code I may as well merge some alcohol.. into my face...\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "beerops", "id_str": "260044118", "id": 260044118, "indices": [1, 9], "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 sdo\u0279\u0259\u0259q"}]}, "created_at": "Fri Jan 08 20:42:56 +0000 2016", "source": "Twitter Web Client", "favorite_count": 13, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8627682, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8627682/1421811003", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "20456848", "following": false, "friends_count": 343, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1801, "location": "", "screen_name": "mrembetsy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 105, "name": "Michael Rembetsy", "profile_use_background_image": true, "description": "nerd @etsy", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1411497817/Photo_on_2011-06-24_at_15.29_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Feb 09 18:59:34 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1411497817/Photo_on_2011-06-24_at_15.29_normal.jpg", "favourites_count": 13164, "status": {"in_reply_to_status_id": 685451114536386560, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "lara_hogan", "in_reply_to_user_id": 14146300, "in_reply_to_status_id_str": "685451114536386560", "in_reply_to_user_id_str": "14146300", "truncated": false, "id_str": "685469494064627713", "id": 685469494064627713, "text": "@lara_hogan congrats! So glad you are here!!!!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lara_hogan", "id_str": "14146300", "id": 14146300, "indices": [0, 11], "name": "Lara Hogan"}]}, "created_at": "Fri Jan 08 14:33:57 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 20456848, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5853, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1326022531", "following": false, "friends_count": 170, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ben.thatmustbe.me", "url": "https://t.co/r8zi6Mjy2u", "expanded_url": "https://ben.thatmustbe.me", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 91, "location": "Attleboro MA", "screen_name": "dissolve333", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Ben Roberts", "profile_use_background_image": true, "description": "", "url": "https://t.co/r8zi6Mjy2u", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3495896730/7cecf2b827dadde109cb85dc30f458e4_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Thu Apr 04 03:08:41 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495896730/7cecf2b827dadde109cb85dc30f458e4_normal.jpeg", "favourites_count": 38, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681130100792803328", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXPcN5QVAAE32DQ.jpg", "type": "photo", "indices": [84, 107], "media_url": "http://pbs.twimg.com/media/CXPcN5QVAAE32DQ.jpg", "display_url": "pic.twitter.com/zmXgTS9qGh", "id_str": "681130099928793089", "expanded_url": "http://twitter.com/dissolve333/status/681130100792803328/photo/1", "id": 681130099928793089, "url": "https://t.co/zmXgTS9qGh"}], "symbols": [], "urls": [{"display_url": "btmb.me/s/Db", "url": "https://t.co/C5hB0S8K9L", "expanded_url": "http://btmb.me/s/Db", "indices": [59, 82]}], "hashtags": [], "user_mentions": []}, "created_at": "Sun Dec 27 15:10:45 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681130100792803328, "text": "Teaching the girls the classics: The cask of Amontillado. (https://t.co/C5hB0S8K9L) https://t.co/zmXgTS9qGh", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Bridgy"}, "default_profile_image": false, "id": 1326022531, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 471, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15740039", "following": false, "friends_count": 222, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paniksrvr.info", "url": "http://t.co/P4NCkw1UDY", "expanded_url": "http://paniksrvr.info", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "999999", "geo_enabled": true, "followers_count": 201, "location": "Cherry Hill, NJ", "screen_name": "callmeradical", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "Lars Cromley", "profile_use_background_image": false, "description": "Code. Infrastructure. Lean. That is about it. These thoughts are mine and do not repesent 2nd Watch as a company.", "url": "http://t.co/P4NCkw1UDY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/643089900179427328/lZCJoLGV_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Aug 05 18:55:44 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643089900179427328/lZCJoLGV_normal.jpg", "favourites_count": 245, "status": {"in_reply_to_status_id": 685527057443504128, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/0051d76b1627f404.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-75.066178, 39.915333], [-75.013523, 39.915333], [-75.013523, 39.946809], [-75.066178, 39.946809]]], "type": "Polygon"}, "full_name": "Cherry Hill, NJ", "contained_within": [], "country_code": "US", "id": "0051d76b1627f404", "name": "Cherry Hill"}, "in_reply_to_screen_name": "ferry", "in_reply_to_user_id": 14591868, "in_reply_to_status_id_str": "685527057443504128", "in_reply_to_user_id_str": "14591868", "truncated": false, "id_str": "685527264763723776", "id": 685527264763723776, "text": "@ferry I can\u2019t wait to see how they pick up the story. We are finishing up on season 3 again.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ferry", "id_str": "14591868", "id": 14591868, "indices": [0, 6], "name": "Michael Ferry"}]}, "created_at": "Fri Jan 08 18:23:31 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15740039, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3298, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15740039/1443165609", "is_translator": false}, {"time_zone": "Lisbon", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "19677293", "following": false, "friends_count": 401, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4258623/a.jpg", "notifications": false, "profile_sidebar_fill_color": "352726", "profile_link_color": "D0652B", "geo_enabled": true, "followers_count": 206, "location": "Portugal", "screen_name": "ricardoteixas", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Ricardo F. Teixeira", "profile_use_background_image": true, "description": "Born and raised in Lisbon, Portugal. Senior Security Consultant.", "url": null, "profile_text_color": "90A216", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/490928238617964546/IVcRZ47G_normal.jpeg", "profile_background_color": "352726", "created_at": "Wed Jan 28 21:29:13 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/490928238617964546/IVcRZ47G_normal.jpeg", "favourites_count": 3, "status": {"retweet_count": 8, "retweeted_status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684688988943347712", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "status.linode.com/incidents/ghdl\u2026", "url": "https://t.co/YxjJrTGrVt", "expanded_url": "http://status.linode.com/incidents/ghdlhfnfngnh", "indices": [24, 47]}], "hashtags": [], "user_mentions": [{"screen_name": "linode", "id_str": "8695992", "id": 8695992, "indices": [1, 8], "name": "Linode"}]}, "created_at": "Wed Jan 06 10:52:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684688988943347712, "text": ".@Linode has been owned https://t.co/YxjJrTGrVt", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684718835455377409", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "status.linode.com/incidents/ghdl\u2026", "url": "https://t.co/YxjJrTGrVt", "expanded_url": "http://status.linode.com/incidents/ghdlhfnfngnh", "indices": [39, 62]}], "hashtags": [], "user_mentions": [{"screen_name": "digininja", "id_str": "16170178", "id": 16170178, "indices": [3, 13], "name": "Robin"}, {"screen_name": "linode", "id_str": "8695992", "id": 8695992, "indices": [16, 23], "name": "Linode"}]}, "created_at": "Wed Jan 06 12:51:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684718835455377409, "text": "RT @digininja: .@Linode has been owned https://t.co/YxjJrTGrVt", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 19677293, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4258623/a.jpg", "statuses_count": 755, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19677293/1400602181", "is_translator": false}, {"time_zone": "Chihuahua", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1262748066", "following": false, "friends_count": 2200, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431914161405063168/kMD_iNRH.png", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 2675, "location": "", "screen_name": "robertosantedel", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "Dev 4 Humans", "profile_use_background_image": false, "description": "Learn to develop in MySQL, Oracle, Ruby, AngularJS, Python and change your life.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/532277734647410688/ZniCEG0Q_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Mar 12 20:01:41 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/532277734647410688/ZniCEG0Q_normal.jpeg", "favourites_count": 131, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "653991987444494336", "id": 653991987444494336, "text": "#PlatziCode veremos alg\u00fan patr\u00f3n exclusivo para front end? asi como algoritmos que se utilizan para resolver problemas que se dan en front?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "PlatziCode", "indices": [0, 11]}], "user_mentions": []}, "created_at": "Tue Oct 13 17:53:35 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "es"}, "default_profile_image": false, "id": 1262748066, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431914161405063168/kMD_iNRH.png", "statuses_count": 143, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1262748066/1415740883", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15859722", "following": false, "friends_count": 815, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flatironschool.com", "url": "http://t.co/8Ghcgnwzoo", "expanded_url": "http://flatironschool.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": true, "followers_count": 1293, "location": "Brooklyn, NY USA", "screen_name": "thejohnmarc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "John Marc Imbrescia", "profile_use_background_image": true, "description": "Flatiron School. Ex OkCupid, Etsy, Instapaper. Creator of successful Kickstarter. Never been asked to turn over info to a Gov. agency. Feminist. Dad.", "url": "http://t.co/8Ghcgnwzoo", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000690887914/f6b2265a2f3a8258fe4fe8b267beb899_normal.jpeg", "profile_background_color": "709397", "created_at": "Fri Aug 15 03:55:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000690887914/f6b2265a2f3a8258fe4fe8b267beb899_normal.jpeg", "favourites_count": 1934, "status": {"retweet_count": 76, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 76, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685226437272535040", "id": 685226437272535040, "text": "My startup is called Bag and what we do is we send a guy to your apartment and he takes your plastic bag full of plastic bags away", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 22:28:08 +0000 2016", "source": "Twitter for Android", "favorite_count": 158, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685287207033245696", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Merman_Melville", "id_str": "603805849", "id": 603805849, "indices": [3, 19], "name": "Umami Skeleton"}]}, "created_at": "Fri Jan 08 02:29:36 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685287207033245696, "text": "RT @Merman_Melville: My startup is called Bag and what we do is we send a guy to your apartment and he takes your plastic bag full of plast\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 15859722, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 8379, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15859722/1353290361", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14260840", "following": false, "friends_count": 782, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/miahj", "url": "http://t.co/pe7KTkVwwr", "expanded_url": "http://about.me/miahj", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614569465028612096/1MwVWoYQ.jpg", "notifications": false, "profile_sidebar_fill_color": "9EDE9B", "profile_link_color": "118C19", "geo_enabled": false, "followers_count": 1934, "location": "San Francisco, CA", "screen_name": "miah_", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 150, "name": "Miah Johnson", "profile_use_background_image": false, "description": "Fart Leader, Transgender, Abrasive, Pariah, Ruby Programmer, Ineffective Configuration Management Sorceress, UNIX, Iconoclast, A Constant Disappointment.", "url": "http://t.co/pe7KTkVwwr", "profile_text_color": "1F7D48", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1916412237/miah_derpette_twitter_normal.png", "profile_background_color": "51B056", "created_at": "Sun Mar 30 20:43:31 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "187832", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1916412237/miah_derpette_twitter_normal.png", "favourites_count": 936, "status": {"retweet_count": 37, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 37, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685561412450562048", "id": 685561412450562048, "text": "Every engineer is sometimes a bad engineer", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:39:12 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 60, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685562099574022144", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jmhodges", "id_str": "9267272", "id": 9267272, "indices": [3, 12], "name": "Jeff Hodges"}]}, "created_at": "Fri Jan 08 20:41:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685562099574022144, "text": "RT @jmhodges: Every engineer is sometimes a bad engineer", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 14260840, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614569465028612096/1MwVWoYQ.jpg", "statuses_count": 27099, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14260840/1435359903", "is_translator": false}, {"time_zone": "Bucharest", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "55525953", "following": false, "friends_count": 6, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pinboard.in", "url": "http://t.co/qOHjNexLMt", "expanded_url": "http://pinboard.in", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 27982, "location": "San Francisco", "screen_name": "Pinboard", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1703, "name": "Pinboard", "profile_use_background_image": false, "description": "veni vidi tweeti", "url": "http://t.co/qOHjNexLMt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494414965/logo_normal.png", "profile_background_color": "FFFFFF", "created_at": "Fri Jul 10 10:24:12 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494414965/logo_normal.png", "favourites_count": 54, "status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685599807306530816", "id": 685599807306530816, "text": "\u201cHow to become an email powerhouse \u2014 and increase opens, clicks, and revenue (webinar)\u201d I can\u2019t feel my legs", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:11:46 +0000 2016", "source": "YoruFukurou", "favorite_count": 10, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 55525953, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 21992, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8882", "following": false, "friends_count": 3429, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.lmorchard.com", "url": "http://t.co/NsDCctIf5R", "expanded_url": "http://blog.lmorchard.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/747211922/19e80a54bd6192d234ca49d92c163bb6.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 3858, "location": "Ferndale, MI", "screen_name": "lmorchard", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 265, "name": "Les Craven [\u00ac\u00ba-\u00b0]\u00ac", "profile_use_background_image": true, "description": "serially enthusiastic; {web,mad,computer} scientist; {tech,scifi} writer; home{brew,roast}er; mozillian; he/him; 19rGZjL1F2odBkD76NTFiDhbxgDWLqpmK2", "url": "http://t.co/NsDCctIf5R", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661584606664093696/f-R_8T4f_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Oct 13 19:54:01 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661584606664093696/f-R_8T4f_normal.jpg", "favourites_count": 7496, "status": {"in_reply_to_status_id": 685541670797066240, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "richardcobbett", "in_reply_to_user_id": 11937352, "in_reply_to_status_id_str": "685541670797066240", "in_reply_to_user_id_str": "11937352", "truncated": false, "id_str": "685576277697413120", "id": 685576277697413120, "text": "@richardcobbett Also, that damn Snow Child. I'm so glad I kept him from melting. *sob*", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "richardcobbett", "id_str": "11937352", "id": 11937352, "indices": [0, 15], "name": "Richard Cobbett"}]}, "created_at": "Fri Jan 08 21:38:16 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8882, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/747211922/19e80a54bd6192d234ca49d92c163bb6.jpeg", "statuses_count": 23267, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8882/1437719429", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2814334612", "following": false, "friends_count": 1766, "entities": {"description": {"urls": [{"display_url": "support.livecoding.tv/hc/en-us/", "url": "https://t.co/TVgA6IUVAn", "expanded_url": "http://support.livecoding.tv/hc/en-us/", "indices": [99, 122]}]}, "url": {"urls": [{"display_url": "Livecoding.tv", "url": "http://t.co/lVXlTFxxhh", "expanded_url": "http://Livecoding.tv", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3898, "location": "San Francisco, CA", "screen_name": "livecodingtv", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 382, "name": "Livecoding.tv", "profile_use_background_image": true, "description": "Watch coders code products live and hang out with them. Need help? Contact us on our 24/7 Support: https://t.co/TVgA6IUVAn", "url": "http://t.co/lVXlTFxxhh", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/539451988929294337/hCieN16A_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Oct 07 14:59:48 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/539451988929294337/hCieN16A_normal.png", "favourites_count": 3209, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613612736491520", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "livecoding.tv/matiuri/", "url": "https://t.co/joEy4ii6fh", "expanded_url": "https://www.livecoding.tv/matiuri/", "indices": [33, 56]}], "hashtags": [{"text": "software", "indices": [57, 66]}, {"text": "hacker", "indices": [67, 74]}, {"text": "Others", "indices": [75, 82]}], "user_mentions": [{"screen_name": "ssmatiuri", "id_str": "1596168408", "id": 1596168408, "indices": [83, 93], "name": "Mati"}]}, "created_at": "Sat Jan 09 00:06:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613612736491520, "text": "Join Now! \"[ES] Instalando Arch\" https://t.co/joEy4ii6fh #software #hacker #Others @ssmatiuri", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "www.livecoding.tv"}, "default_profile_image": false, "id": 2814334612, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 16431, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2814334612/1450958451", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18957805", "following": false, "friends_count": 441, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "archive.org", "url": "https://t.co/gFtuG5SqUT", "expanded_url": "https://archive.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/824436651/5e495f5ed45112e2b934b44af16bd6db.png", "notifications": false, "profile_sidebar_fill_color": "A0BECA", "profile_link_color": "706870", "geo_enabled": false, "followers_count": 61736, "location": "San Francisco, CA", "screen_name": "internetarchive", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2781, "name": "Internet Archive", "profile_use_background_image": true, "description": "Internet Archive is a non-profit digital library offering access to millions of free books, movies, and audio files, plus an archive of 450+ billion web pages.", "url": "https://t.co/gFtuG5SqUT", "profile_text_color": "01010A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3429956268/696d9025562f74aa9fab3cac657e02bf_normal.png", "profile_background_color": "FFFFFF", "created_at": "Tue Jan 13 23:06:00 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3429956268/696d9025562f74aa9fab3cac657e02bf_normal.png", "favourites_count": 879, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685585572157521920", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/candorville/st\u2026", "url": "https://t.co/a6oJAnksj4", "expanded_url": "https://twitter.com/candorville/status/685371445313056768", "indices": [113, 136]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:15:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685585572157521920, "text": "LOL! Hopefully 240 years hence the Wayback Machine will be providing equally historically accurate comic relief. https://t.co/a6oJAnksj4", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18957805, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/824436651/5e495f5ed45112e2b934b44af16bd6db.png", "statuses_count": 1810, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18957805/1364244002", "is_translator": false}, {"time_zone": "Baghdad", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 10800, "id_str": "1142688962", "following": false, "friends_count": 2055, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "GetSSL.me", "url": "http://t.co/hUpzJMIvWi", "expanded_url": "http://GetSSL.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/780968171/aef915881e63f509158002a3fbd8fe8c.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 2812, "location": "", "screen_name": "GetSSL_me", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "GetSSL.me", "profile_use_background_image": false, "description": "SSL certificate store", "url": "http://t.co/hUpzJMIvWi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/473898989666844673/hvjUN2wi_normal.png", "profile_background_color": "EEEEEE", "created_at": "Sat Feb 02 15:19:56 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/473898989666844673/hvjUN2wi_normal.png", "favourites_count": 156, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677088841602207745", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 689, "h": 224, "resize": "fit"}, "medium": {"w": 600, "h": 195, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 110, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWWAtslU8AApPx2.png", "type": "photo", "indices": [74, 97], "media_url": "http://pbs.twimg.com/media/CWWAtslU8AApPx2.png", "display_url": "pic.twitter.com/lrjQASms3Z", "id_str": "677088841539317760", "expanded_url": "http://twitter.com/datazenit/status/677088841602207745/photo/1", "id": 677088841539317760, "url": "https://t.co/lrjQASms3Z"}], "symbols": [], "urls": [{"display_url": "buff.ly/1RRq3Vy", "url": "https://t.co/AMiIYBRbcu", "expanded_url": "http://buff.ly/1RRq3Vy", "indices": [50, 73]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 16 11:32:14 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677088841602207745, "text": "Datazenit Beta v0.9.26: The biggest update so far https://t.co/AMiIYBRbcu https://t.co/lrjQASms3Z", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677163466134831105", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 689, "h": 224, "resize": "fit"}, "medium": {"w": 600, "h": 195, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 110, "resize": "fit"}}, "source_status_id_str": "677088841602207745", "media_url": "http://pbs.twimg.com/media/CWWAtslU8AApPx2.png", "source_user_id_str": "1957458986", "id_str": "677088841539317760", "id": 677088841539317760, "media_url_https": "https://pbs.twimg.com/media/CWWAtslU8AApPx2.png", "type": "photo", "indices": [89, 112], "source_status_id": 677088841602207745, "source_user_id": 1957458986, "display_url": "pic.twitter.com/lrjQASms3Z", "expanded_url": "http://twitter.com/datazenit/status/677088841602207745/photo/1", "url": "https://t.co/lrjQASms3Z"}], "symbols": [], "urls": [{"display_url": "buff.ly/1RRq3Vy", "url": "https://t.co/AMiIYBRbcu", "expanded_url": "http://buff.ly/1RRq3Vy", "indices": [65, 88]}], "hashtags": [], "user_mentions": [{"screen_name": "datazenit", "id_str": "1957458986", "id": 1957458986, "indices": [3, 13], "name": "Datazenit"}]}, "created_at": "Wed Dec 16 16:28:46 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677163466134831105, "text": "RT @datazenit: Datazenit Beta v0.9.26: The biggest update so far https://t.co/AMiIYBRbcu https://t.co/lrjQASms3Z", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 1142688962, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/780968171/aef915881e63f509158002a3fbd8fe8c.png", "statuses_count": 538, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1142688962/1401820904", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14623460", "following": false, "friends_count": 13543, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "veracode.com", "url": "http://t.co/sz31rPl3Q1", "expanded_url": "http://www.veracode.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441339837979701248/zd3XfrWb.png", "notifications": false, "profile_sidebar_fill_color": "0099CC", "profile_link_color": "3F979D", "geo_enabled": true, "followers_count": 18214, "location": "Burlington, MA, USA", "screen_name": "Veracode", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 465, "name": "Veracode", "profile_use_background_image": true, "description": "The Most Powerful Application Security Platform on the Planet. SDLC | Web | Mobile | Third-Party", "url": "http://t.co/sz31rPl3Q1", "profile_text_color": "FFFFFF", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477142547349782528/OSJs9BCN_normal.png", "profile_background_color": "FFFFFF", "created_at": "Fri May 02 08:09:00 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477142547349782528/OSJs9BCN_normal.png", "favourites_count": 4842, "status": {"retweet_count": 9, "retweeted_status": {"retweet_count": 9, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685533900882329600", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "arstechnica.com/security/2016/\u2026", "url": "https://t.co/4LI0EyvoAk", "expanded_url": "http://arstechnica.com/security/2016/01/gm-embraces-white-hats-with-public-vulnerability-disclosure-program/", "indices": [75, 98]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:49:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685533900882329600, "text": "GM embraces white-hat hackers with public vulnerability disclosure program https://t.co/4LI0EyvoAk", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685543297645936641", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "arstechnica.com/security/2016/\u2026", "url": "https://t.co/4LI0EyvoAk", "expanded_url": "http://arstechnica.com/security/2016/01/gm-embraces-white-hats-with-public-vulnerability-disclosure-program/", "indices": [89, 112]}], "hashtags": [], "user_mentions": [{"screen_name": "WeldPond", "id_str": "14090906", "id": 14090906, "indices": [3, 12], "name": "Chris Wysopal"}]}, "created_at": "Fri Jan 08 19:27:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685543297645936641, "text": "RT @WeldPond: GM embraces white-hat hackers with public vulnerability disclosure program https://t.co/4LI0EyvoAk", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 14623460, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441339837979701248/zd3XfrWb.png", "statuses_count": 6786, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623460/1402594350", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1465481", "following": false, "friends_count": 607, "entities": {"description": {"urls": [{"display_url": "TEXTFILES.COM", "url": "http://t.co/YyhkEb8AoI", "expanded_url": "http://TEXTFILES.COM", "indices": [14, 36]}]}, "url": {"urls": [{"display_url": "ascii.textfiles.com", "url": "http://t.co/1f0N0Joxb7", "expanded_url": "http://ascii.textfiles.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456574636491161600/YFsbi-ex.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 14912, "location": "The 1980s", "screen_name": "textfiles", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 876, "name": "Jason Scott", "profile_use_background_image": true, "description": "Proprietor of http://t.co/YyhkEb8AoI, historian, filmmaker, archivist, famous cat maintenance staff. Works on/for/over the Internet Archive.", "url": "http://t.co/1f0N0Joxb7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/665625640251584516/-4Tubhvj_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Mar 19 02:55:22 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665625640251584516/-4Tubhvj_normal.jpg", "favourites_count": 280, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685599995375038465", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swarmapp.com/c/f4nW3mcQScT", "url": "https://t.co/2YXt5wob8G", "expanded_url": "https://www.swarmapp.com/c/f4nW3mcQScT", "indices": [114, 137]}], "hashtags": [], "user_mentions": [{"screen_name": "RalphLauren", "id_str": "34395888", "id": 34395888, "indices": [100, 112], "name": "Ralph Lauren"}]}, "created_at": "Fri Jan 08 23:12:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [40.73527558, -74.00495104], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.026675, 40.683935], [-73.910408, 40.683935], [-73.910408, 40.877483], [-74.026675, 40.877483]]], "type": "Polygon"}, "full_name": "Manhattan, NY", "contained_within": [], "country_code": "US", "id": "01a9a39529b27f36", "name": "Manhattan"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685599995375038465, "text": "Holy crap. When I hit my goal weight, I will march here and have my next major custom suit (@ RRL - @ralphlauren) https://t.co/2YXt5wob8G", "coordinates": {"coordinates": [-74.00495104, 40.73527558], "type": "Point"}, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Foursquare"}, "default_profile_image": false, "id": 1465481, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456574636491161600/YFsbi-ex.jpeg", "statuses_count": 48579, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1465481/1398239070", "is_translator": false}, {"time_zone": "Edinburgh", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "139083857", "following": false, "friends_count": 8855, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 8863, "location": "Yestor", "screen_name": "Yestormato", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 70, "name": "Jim", "profile_use_background_image": true, "description": "Yes music, Jon Anderson plus Prog & Rock music.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/549996258031857664/7CbHLozt_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat May 01 14:00:10 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/549996258031857664/7CbHLozt_normal.jpeg", "favourites_count": 756, "status": {"in_reply_to_status_id": 685242714837913601, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "koosk47", "in_reply_to_user_id": 796887842, "in_reply_to_status_id_str": "685242714837913601", "in_reply_to_user_id_str": "796887842", "truncated": false, "id_str": "685245318292762625", "id": 685245318292762625, "text": "@koosk47 My pleasure Steven :-)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "koosk47", "id_str": "796887842", "id": 796887842, "indices": [0, 8], "name": "Steven McCue"}]}, "created_at": "Thu Jan 07 23:43:09 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 139083857, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 19808, "profile_banner_url": "https://pbs.twimg.com/profile_banners/139083857/1446231777", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2485442528", "following": false, "friends_count": 4, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "turing.cool", "url": "http://t.co/ABE7FRpbCJ", "expanded_url": "http://turing.cool", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "345161", "geo_enabled": false, "followers_count": 326, "location": "Philly + Seattle", "screen_name": "turingcool", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "Turing Incomplete", "profile_use_background_image": true, "description": "A podcast about programming by @justincampbell, @jearvon, @pamasaur, and @ignu", "url": "http://t.co/ABE7FRpbCJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/474863977676029952/6nPyuDmm_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri May 09 14:07:34 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/474863977676029952/6nPyuDmm_normal.png", "favourites_count": 13, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677923206196514816", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "turing.cool/72", "url": "https://t.co/5SlFfLGerL", "expanded_url": "http://turing.cool/72", "indices": [109, 132]}], "hashtags": [], "user_mentions": [{"screen_name": "lgbtqfm", "id_str": "4359368233", "id": 4359368233, "indices": [57, 65], "name": "LGBTQ Tech Podcast"}]}, "created_at": "Fri Dec 18 18:47:42 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677923206196514816, "text": "Turing-Incomplete #72 - Inevitability and what have you\n\n@lgbtqfm, JavaScript, and the physics of spacetime\n\nhttps://t.co/5SlFfLGerL", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 2485442528, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 103, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2485442528/1414710977", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15119662", "following": false, "friends_count": 3967, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/epowell/", "url": "http://t.co/iEltF4lNo0", "expanded_url": "http://www.linkedin.com/in/epowell/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "486091", "geo_enabled": true, "followers_count": 5024, "location": "Palo Alto, CA", "screen_name": "epowell101", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 222, "name": "Evan Powell", "profile_use_background_image": true, "description": "Infrastructure entrepreneur. Founding CEO of @Stack_Storm. Former EIR w @XSeedCapital. Founding CEO of Nexenta & Clarus (RVBD). #DevOps #automation #opensource", "url": "http://t.co/iEltF4lNo0", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000420844277/bfa89acd028cb4f4a97c543aa33f61b9_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Jun 14 20:37:48 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000420844277/bfa89acd028cb4f4a97c543aa33f61b9_normal.jpeg", "favourites_count": 3065, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685551803044249600", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "redd.it/3ztcla", "url": "https://t.co/C6Wa98PSra", "expanded_url": "https://redd.it/3ztcla", "indices": [92, 115]}], "hashtags": [{"text": "chatops", "indices": [20, 28]}], "user_mentions": []}, "created_at": "Fri Jan 08 20:01:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685551803044249600, "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 15119662, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3495, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15119662/1398364953", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "182323597", "following": false, "friends_count": 2046, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "graylog.org", "url": "http://t.co/SQMbZ5jVuX", "expanded_url": "http://www.graylog.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "CE232A", "geo_enabled": true, "followers_count": 4021, "location": "Houston, TX / Hamburg, Germany", "screen_name": "graylog2", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 141, "name": "Graylog", "profile_use_background_image": true, "description": "Open source, centralized log management. Made with love in Germany and Texas.", "url": "http://t.co/SQMbZ5jVuX", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/562404576330915840/_HU28D42_normal.png", "profile_background_color": "131516", "created_at": "Tue Aug 24 10:11:05 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/562404576330915840/_HU28D42_normal.png", "favourites_count": 325, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685514898843893761", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "siawyoung.com/coding/sysadmi\u2026", "url": "https://t.co/gQvJKppcD2", "expanded_url": "http://siawyoung.com/coding/sysadmin/graylog2/logging-rogger-graylog2-twilio.html", "indices": [102, 125]}], "hashtags": [], "user_mentions": [{"screen_name": "graylog2", "id_str": "182323597", "id": 182323597, "indices": [126, 135], "name": "Graylog"}]}, "created_at": "Fri Jan 08 17:34:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685514898843893761, "text": "Check out how I'm using Rogger, Graylog2 and Twilio to notify me of exceptions in Rake tasks by SMS \ud83d\ude07 https://t.co/gQvJKppcD2 @graylog2", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685521651530768384", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "siawyoung.com/coding/sysadmi\u2026", "url": "https://t.co/gQvJKppcD2", "expanded_url": "http://siawyoung.com/coding/sysadmin/graylog2/logging-rogger-graylog2-twilio.html", "indices": [117, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "siawyoung", "id_str": "28130320", "id": 28130320, "indices": [3, 13], "name": "Lau Siaw Young"}, {"screen_name": "graylog2", "id_str": "182323597", "id": 182323597, "indices": [139, 140], "name": "Graylog"}]}, "created_at": "Fri Jan 08 18:01:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685521651530768384, "text": "RT @siawyoung: Check out how I'm using Rogger, Graylog2 and Twilio to notify me of exceptions in Rake tasks by SMS \ud83d\ude07 https://t.co/gQvJKppcD\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 182323597, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 974, "profile_banner_url": "https://pbs.twimg.com/profile_banners/182323597/1384882795", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "112601087", "following": false, "friends_count": 99, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "codeascraft.com", "url": "http://t.co/3ZgrIFLcxr", "expanded_url": "http://codeascraft.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/558826649/background.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "666666", "geo_enabled": true, "followers_count": 8416, "location": "NYC & SF", "screen_name": "codeascraft", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 282, "name": "Etsy Engineering", "profile_use_background_image": true, "description": "", "url": "http://t.co/3ZgrIFLcxr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2240963155/codeascraft-twitter_normal.png", "profile_background_color": "FFFFFF", "created_at": "Tue Feb 09 02:42:06 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2240963155/codeascraft-twitter_normal.png", "favourites_count": 85, "status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679381492896817152", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "codeascraft.com/2015/12/21/lev\u2026", "url": "https://t.co/WbvulRW23h", "expanded_url": "https://codeascraft.com/2015/12/21/leveling-up-with-system-reviews/", "indices": [107, 130]}], "hashtags": [], "user_mentions": [{"screen_name": "johngoulah", "id_str": "22407045", "id": 22407045, "indices": [13, 24], "name": "John Goulah"}]}, "created_at": "Tue Dec 22 19:22:24 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/011add077f4d2da3.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.041878, 40.570842], [-73.855673, 40.570842], [-73.855673, 40.739434], [-74.041878, 40.739434]]], "type": "Polygon"}, "full_name": "Brooklyn, NY", "contained_within": [], "country_code": "US", "id": "011add077f4d2da3", "name": "Brooklyn"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679381492896817152, "text": "On the blog: @johngoulah describes using system reviews to identify organizational and cultural challenges https://t.co/WbvulRW23h", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 112601087, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/558826649/background.jpg", "statuses_count": 330, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "31204696", "following": false, "friends_count": 749, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nodebotani.st", "url": "https://t.co/WMf50wjXlo", "expanded_url": "http://nodebotani.st", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 2864, "location": "Austin, TX", "screen_name": "nodebotanist", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 228, "name": "Mx Kas Perch", "profile_use_background_image": true, "description": "Dev Evangelist @auth0. @nodebotslive /NodeBots author/addict. Gamer. Crafter. Baseball fan. Attempted Intersectional Feminist. Any pronouns. Avi/@nvcexploder.", "url": "https://t.co/WMf50wjXlo", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/665620578351583232/m5ki022s_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Apr 14 19:37:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665620578351583232/m5ki022s_normal.jpg", "favourites_count": 11867, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685549691468029952", "id": 685549691468029952, "text": "Where you spend 2 hours debugging a software problem...that turns out to be a well-known hardware limitation. That you knew about. /sigh", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:52:38 +0000 2016", "source": "Twitter Web Client", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 31204696, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 11671, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31204696/1441908212", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "47494539", "following": false, "friends_count": 304, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kellabyte.com", "url": "http://t.co/Ipj1OcvrAi", "expanded_url": "http://kellabyte.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/37790197/01341_headingwest_1440x900.jpg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 24999, "location": "Canada", "screen_name": "kellabyte", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1283, "name": "Kelly Sommers", "profile_use_background_image": true, "description": "3x Windows Azure MVP & Former 2x DataStax MVP for Apache Cassandra, Backend brat, big data, distributed diva. Relentless learner. I void warranties.", "url": "http://t.co/Ipj1OcvrAi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2808005971/b81b99287e78b1cd6cbd0e5cbfb3295c_normal.png", "profile_background_color": "9AE4E8", "created_at": "Tue Jun 16 00:43:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2808005971/b81b99287e78b1cd6cbd0e5cbfb3295c_normal.png", "favourites_count": 4875, "status": {"in_reply_to_status_id": 684943018621730816, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "aka_pugs", "in_reply_to_user_id": 2241477403, "in_reply_to_status_id_str": "684943018621730816", "in_reply_to_user_id_str": "2241477403", "truncated": false, "id_str": "684943143695941632", "id": 684943143695941632, "text": "@aka_pugs @Obdurodon Yeah absolutely. I wonder how the USB3 capable boards perform. Most are USB2 but a few are USB3.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "aka_pugs", "id_str": "2241477403", "id": 2241477403, "indices": [0, 9], "name": "Tom Lyon"}, {"screen_name": "Obdurodon", "id_str": "15663547", "id": 15663547, "indices": [10, 20], "name": "Jeff Darcy"}]}, "created_at": "Thu Jan 07 03:42:25 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 47494539, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/37790197/01341_headingwest_1440x900.jpg", "statuses_count": 92792, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "2436389418", "following": false, "friends_count": 4456, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/swiftonsecurit\u2026", "url": "https://t.co/W6mjdDNww9", "expanded_url": "https://twitter.com/swiftonsecurity/status/570638981009948673", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 109196, "location": "WELCOME TO NEW YORK", "screen_name": "SwiftOnSecurity", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2881, "name": "SecuriTay", "profile_use_background_image": true, "description": "I make stupid jokes, talk about consumer technology security, and use Oxford commas. See website link for ethics statement.", "url": "https://t.co/W6mjdDNww9", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661039155753807872/-KODvkhT_normal.jpg", "profile_background_color": "131516", "created_at": "Thu Apr 10 02:54:26 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661039155753807872/-KODvkhT_normal.jpg", "favourites_count": 33215, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685608025202114561", "id": 685608025202114561, "text": "Correction: I presented an old policy statement from @letsencrypt as if it were a response to the current issues. I apologize for the error.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "letsencrypt", "id_str": "2887837801", "id": 2887837801, "indices": [53, 65], "name": "Let's Encrypt"}]}, "created_at": "Fri Jan 08 23:44:25 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 10, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2436389418, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 27965, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2436389418/1445620137", "is_translator": false}, {"time_zone": "Warsaw", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "515908759", "following": false, "friends_count": 221, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kamilogorek.pl", "url": "https://t.co/RltIhVl0fV", "expanded_url": "http://kamilogorek.pl", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 351, "location": "Krak\u00f3w", "screen_name": "kamilogorek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Kamil Og\u00f3rek", "profile_use_background_image": false, "description": "Weightlifter, climber, athlete, drummer and music lover. Training and nutrition geek. Senior Client-side Engineer @xteam. @AmpersandJS core team.", "url": "https://t.co/RltIhVl0fV", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666395289809526784/fiSRceCT_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Mar 05 21:59:18 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666395289809526784/fiSRceCT_normal.jpg", "favourites_count": 1694, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685103356033904640", "id": 685103356033904640, "text": "You know what's bad? Lack of tests.\nYou know what's worse? Broken tests.\nYou know what's the worst? Broken async promise-based tests.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 14:19:03 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 515908759, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "statuses_count": 1766, "profile_banner_url": "https://pbs.twimg.com/profile_banners/515908759/1447716102", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15524875", "following": false, "friends_count": 1002, "entities": {"description": {"urls": [{"display_url": "jewelbots.com", "url": "http://t.co/EsgzOffGD7", "expanded_url": "http://jewelbots.com", "indices": [121, 143]}]}, "url": {"urls": [{"display_url": "SaraJChipps.com", "url": "http://t.co/v61Pc3zFKU", "expanded_url": "http://SaraJChipps.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99724100/2010-05-04_09.15.13.jpg.scaled.1000.jpg", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 29650, "location": "body in BK, heart in NJ", "screen_name": "SaraJChipps", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1952, "name": "SaraReyChipps", "profile_use_background_image": true, "description": "Just a girl, standing in front of a microprocessor, asking it to love her. I made @girldevelopit. I'm making @jewelbots. http://t.co/EsgzOffGD7", "url": "http://t.co/v61Pc3zFKU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629693983610961921/k-pW0Isa_normal.png", "profile_background_color": "FFF04D", "created_at": "Tue Jul 22 02:26:37 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFF8AD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629693983610961921/k-pW0Isa_normal.png", "favourites_count": 36619, "status": {"retweet_count": 3797, "retweeted_status": {"retweet_count": 3797, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685548067802714112", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 628, "h": 387, "resize": "fit"}, "medium": {"w": 600, "h": 369, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 209, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", "type": "photo", "indices": [80, 103], "media_url": "http://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", "display_url": "pic.twitter.com/uhUjs26qFK", "id_str": "685547983375626240", "expanded_url": "http://twitter.com/BuzzFeed/status/685548067802714112/photo/1", "id": 685547983375626240, "url": "https://t.co/uhUjs26qFK"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:46:10 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685548067802714112, "text": "Today is the 15-year anniversary of the most iconic red carpet appearance ever. https://t.co/uhUjs26qFK", "coordinates": null, "retweeted": false, "favorite_count": 4096, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685556065816064001", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 628, "h": 387, "resize": "fit"}, "medium": {"w": 600, "h": 369, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 209, "resize": "fit"}}, "source_status_id_str": "685548067802714112", "media_url": "http://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", "source_user_id_str": "5695632", "id_str": "685547983375626240", "id": 685547983375626240, "media_url_https": "https://pbs.twimg.com/media/CYOOQjmW8AAmfoh.jpg", "type": "photo", "indices": [94, 117], "source_status_id": 685548067802714112, "source_user_id": 5695632, "display_url": "pic.twitter.com/uhUjs26qFK", "expanded_url": "http://twitter.com/BuzzFeed/status/685548067802714112/photo/1", "url": "https://t.co/uhUjs26qFK"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BuzzFeed", "id_str": "5695632", "id": 5695632, "indices": [3, 12], "name": "BuzzFeed"}]}, "created_at": "Fri Jan 08 20:17:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685556065816064001, "text": "RT @BuzzFeed: Today is the 15-year anniversary of the most iconic red carpet appearance ever. https://t.co/uhUjs26qFK", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Mobile Web (M5)"}, "default_profile_image": false, "id": 15524875, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99724100/2010-05-04_09.15.13.jpg.scaled.1000.jpg", "statuses_count": 45323, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15524875/1404073059", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "91333167", "following": false, "friends_count": 9538, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "climagic.org", "url": "http://t.co/dUakp9EMPS", "expanded_url": "http://www.climagic.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/60122174/checkertermbackground.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 110657, "location": "BASHLAND", "screen_name": "climagic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3043, "name": "Command Line Magic", "profile_use_background_image": true, "description": "Cool Unix/Linux Command Line tricks you can use in 140 characters or less.", "url": "http://t.co/dUakp9EMPS", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/535876218/climagic-icon_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Nov 20 12:49:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/535876218/climagic-icon_normal.png", "favourites_count": 81, "status": {"in_reply_to_status_id": 685587768823562240, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "drscriptt", "in_reply_to_user_id": 179397824, "in_reply_to_status_id_str": "685587768823562240", "in_reply_to_user_id_str": "179397824", "truncated": false, "id_str": "685599165511036930", "id": 685599165511036930, "text": "@drscriptt yes I was curious if it would work and it did. The bash order of operations allows it.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "drscriptt", "id_str": "179397824", "id": 179397824, "indices": [0, 10], "name": "Grant Taylor"}]}, "created_at": "Fri Jan 08 23:09:13 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 91333167, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/60122174/checkertermbackground.png", "statuses_count": 8785, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "984722142", "following": false, "friends_count": 494, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pinitto.me", "url": "http://t.co/IRN9Ht9Z", "expanded_url": "http://www.pinitto.me", "indices": [0, 20]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/727281958/35fa768cbbcd6dbccece000b924c8e62.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 126, "location": "Bristol, UK", "screen_name": "Pinittome", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "pinitto.me", "profile_use_background_image": true, "description": "New open source corkboard-style application. Written using nodejs, express, socket.io, and jquery.", "url": "http://t.co/IRN9Ht9Z", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3010874913/f4cde223912ba24b68c57c20001844a2_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Dec 02 14:33:38 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3010874913/f4cde223912ba24b68c57c20001844a2_normal.png", "favourites_count": 9, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "683932116539863040", "id": 683932116539863040, "text": "Happy new year! Server costs this month were $18.61 help us keep our servers alive for another year with a donation :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 08:44:58 +0000 2016", "source": "Facebook", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 984722142, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/727281958/35fa768cbbcd6dbccece000b924c8e62.jpeg", "statuses_count": 234, "profile_banner_url": "https://pbs.twimg.com/profile_banners/984722142/1359537842", "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "158704969", "following": false, "friends_count": 296, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3618, "location": "Not Silicon Valley", "screen_name": "rvagg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 198, "name": "Rod Vagg", "profile_use_background_image": true, "description": "Incorrect", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/550632925209698305/YQmyExEj_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Jun 23 11:25:46 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/550632925209698305/YQmyExEj_normal.png", "favourites_count": 3471, "status": {"in_reply_to_status_id": 685613430770892801, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "nzgb", "in_reply_to_user_id": 329661096, "in_reply_to_status_id_str": "685613430770892801", "in_reply_to_user_id_str": "329661096", "truncated": false, "id_str": "685613633615704064", "id": 685613633615704064, "text": "@nzgb fwiw I think fleshing out something for node-eps would be constructive but it would be a big discussion and long process", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "nzgb", "id_str": "329661096", "id": 329661096, "indices": [0, 5], "name": "Nicol\u00e1s Bevacqua"}]}, "created_at": "Sat Jan 09 00:06:42 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 158704969, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8035, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "64218381", "following": false, "friends_count": 1244, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "benatkin.com", "url": "https://t.co/nw7V3ZCyTY", "expanded_url": "http://benatkin.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "969696", "geo_enabled": true, "followers_count": 1828, "location": "San Francisco", "screen_name": "benatkin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 180, "name": "benatkin", "profile_use_background_image": false, "description": "web developer who thrives on green tea and granola. can be found online or in the bay area.", "url": "https://t.co/nw7V3ZCyTY", "profile_text_color": "666666", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/635674829526462464/smsXzzPs_normal.png", "profile_background_color": "000000", "created_at": "Sun Aug 09 17:58:37 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635674829526462464/smsXzzPs_normal.png", "favourites_count": 23393, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685295871299211264", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 734, "h": 1024, "resize": "fit"}, "medium": {"w": 600, "h": 837, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 474, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKo9XdVAAAflKT.jpg", "type": "photo", "indices": [14, 37], "media_url": "http://pbs.twimg.com/media/CYKo9XdVAAAflKT.jpg", "display_url": "pic.twitter.com/KnCLRtluuO", "id_str": "685295865536249856", "expanded_url": "http://twitter.com/benatkin/status/685295871299211264/photo/1", "id": 685295865536249856, "url": "https://t.co/KnCLRtluuO"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "potasmic", "id_str": "120103910", "id": 120103910, "indices": [4, 13], "name": "Potasmic"}]}, "created_at": "Fri Jan 08 03:04:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685295871299211264, "text": "via @potasmic https://t.co/KnCLRtluuO", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 64218381, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 54174, "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "1508475829", "following": false, "friends_count": 380, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "webrtchacks.com", "url": "http://t.co/hO41DRjg5f", "expanded_url": "http://webrtchacks.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2056, "location": "", "screen_name": "webrtcHacks", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 82, "name": "webrtcHacks", "profile_use_background_image": true, "description": "WebRTC information & experiments for developers", "url": "http://t.co/hO41DRjg5f", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000477595516/5247654c3fcf51cf8b4d69133871908c_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Jun 12 02:58:03 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000477595516/5247654c3fcf51cf8b4d69133871908c_normal.png", "favourites_count": 18, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681519669975465984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "webrtchacks.com/chrome-secure-\u2026", "url": "https://t.co/jVfEoJItlZ", "expanded_url": "https://webrtchacks.com/chrome-secure-origin-https/", "indices": [68, 91]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Dec 28 16:58:46 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681519669975465984, "text": "webrtcH4cKS: ~ Surviving Mandatory HTTPS in Chrome (Xander Dumaine)\nhttps://t.co/jVfEoJItlZ", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681554888099278848", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "webrtchacks.com/chrome-secure-\u2026", "url": "https://t.co/jVfEoJItlZ", "expanded_url": "https://webrtchacks.com/chrome-secure-origin-https/", "indices": [88, 111]}], "hashtags": [], "user_mentions": [{"screen_name": "Invisible_Alan", "id_str": "323926038", "id": 323926038, "indices": [3, 18], "name": "Alan Tai"}]}, "created_at": "Mon Dec 28 19:18:42 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681554888099278848, "text": "RT @Invisible_Alan: webrtcH4cKS: ~ Surviving Mandatory HTTPS in Chrome (Xander Dumaine)\nhttps://t.co/jVfEoJItlZ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 1508475829, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 649, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2972985398", "following": false, "friends_count": 810, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 718, "location": "", "screen_name": "electricatz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "michelle@tinwhiskers", "profile_use_background_image": true, "description": "Software Engineer, Vice President of @crashspaceLA", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668207391951863815/fv5L-Sbt_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Jan 10 20:52:01 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668207391951863815/fv5L-Sbt_normal.jpg", "favourites_count": 3597, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685499886150660096", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", "type": "photo", "indices": [79, 102], "media_url": "http://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", "display_url": "pic.twitter.com/wny85nk7EI", "id_str": "685499874427551745", "expanded_url": "http://twitter.com/crashspaceLA/status/685499886150660096/photo/1", "id": 685499874427551745, "url": "https://t.co/wny85nk7EI"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "electricatz", "id_str": "2972985398", "id": 2972985398, "indices": [17, 29], "name": "michelle@tinwhiskers"}]}, "created_at": "Fri Jan 08 16:34:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685499886150660096, "text": "Dr Evelyn and Dr @electricatz brought this poor broken LED strip back to life! https://t.co/wny85nk7EI", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685500599098458113", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "685499886150660096", "media_url": "http://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", "source_user_id_str": "82969116", "id_str": "685499874427551745", "id": 685499874427551745, "media_url_https": "https://pbs.twimg.com/media/CYNigPzUQAEOMjq.jpg", "type": "photo", "indices": [97, 120], "source_status_id": 685499886150660096, "source_user_id": 82969116, "display_url": "pic.twitter.com/wny85nk7EI", "expanded_url": "http://twitter.com/crashspaceLA/status/685499886150660096/photo/1", "url": "https://t.co/wny85nk7EI"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "crashspaceLA", "id_str": "82969116", "id": 82969116, "indices": [3, 16], "name": "CRASH Space"}, {"screen_name": "electricatz", "id_str": "2972985398", "id": 2972985398, "indices": [35, 47], "name": "michelle@tinwhiskers"}]}, "created_at": "Fri Jan 08 16:37:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685500599098458113, "text": "RT @crashspaceLA: Dr Evelyn and Dr @electricatz brought this poor broken LED strip back to life! https://t.co/wny85nk7EI", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2972985398, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1047, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2972985398/1420923586", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": true, "id_str": "423269417", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "friends_count": 4, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Nov 28 08:59:15 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "favourites_count": 22, "listed_count": 6, "geo_enabled": false, "follow_request_sent": false, "followers_count": 149, "following": false, "default_profile_image": true, "id": 423269417, "blocked_by": false, "name": "HTTPHUB", "location": "", "screen_name": "Httphub", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pretoria", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "66759988", "following": false, "friends_count": 206, "entities": {"description": {"urls": [{"display_url": "JRuDevels.org", "url": "http://t.co/bQViyxTgJE", "expanded_url": "http://JRuDevels.org", "indices": [0, 22]}]}, "url": {"urls": [{"display_url": "hidevlab.com", "url": "http://t.co/7kPnyskpNl", "expanded_url": "http://hidevlab.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 121, "location": "Omsk, Capetown", "screen_name": "JBinary", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Sergey Dobrov", "profile_use_background_image": true, "description": "http://t.co/bQViyxTgJE founder, XMPP/Web/Python/JS developer", "url": "http://t.co/7kPnyskpNl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551104450954551297/ZYZ3b7Fr_normal.jpeg", "profile_background_color": "022330", "created_at": "Tue Aug 18 18:38:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551104450954551297/ZYZ3b7Fr_normal.jpeg", "favourites_count": 700, "status": {"in_reply_to_status_id": 685490061710868480, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "xzmbjk", "in_reply_to_user_id": 312577640, "in_reply_to_status_id_str": "685490061710868480", "in_reply_to_user_id_str": "312577640", "truncated": false, "id_str": "685500622725058560", "id": 685500622725058560, "text": "@xzmbjk @sd0107 \u044f \u0432\u0430\u043c \u043a\u0430\u043a \u0421\u0435\u0440\u0433\u0435\u0439 \u0414. \u0433\u043e\u0432\u043e\u0440\u044e: \u043d\u0435 \u0412\u0421\u0401 \u0442\u0430\u043a \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "xzmbjk", "id_str": "312577640", "id": 312577640, "indices": [0, 7], "name": "KillU"}, {"screen_name": "sd0107", "id_str": "125478107", "id": 125478107, "indices": [8, 15], "name": "\u0421\u0435\u0440\u0433\u0435\u0439 \u0414"}]}, "created_at": "Fri Jan 08 16:37:39 +0000 2016", "source": "Fenix for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "ru"}, "default_profile_image": false, "id": 66759988, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 4105, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "72982024", "following": false, "friends_count": 17743, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gapingvoid.com", "url": "https://t.co/5hsg8TV77Z", "expanded_url": "http://www.gapingvoid.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 46406, "location": "", "screen_name": "gapingvoid", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 793, "name": "gapingvoid", "profile_use_background_image": false, "description": "Culture change management driven visual tools that transform your organization. Clients @Microsoft @Rackspace @Zappos @Ditech @VMware", "url": "https://t.co/5hsg8TV77Z", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/577587854324334592/7KgDP9lW_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Sep 09 23:28:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/577587854324334592/7KgDP9lW_normal.jpeg", "favourites_count": 7725, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": 72982024, "possibly_sensitive": false, "id_str": "685236456563044352", "in_reply_to_user_id_str": "72982024", "entities": {"media": [{"sizes": {"large": {"w": 852, "h": 568, "resize": "fit"}, "small": {"w": 340, "h": 226, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 400, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", "type": "photo", "indices": [81, 104], "media_url": "http://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", "display_url": "pic.twitter.com/VdE5BS6M5a", "id_str": "685236454897799168", "expanded_url": "http://twitter.com/hughcartoons/status/685236456563044352/photo/1", "id": 685236454897799168, "url": "https://t.co/VdE5BS6M5a"}], "symbols": [], "urls": [{"display_url": "us1.campaign-archive1.com/?u=028de8672d5\u2026", "url": "https://t.co/lE8zFGbUv7", "expanded_url": "http://us1.campaign-archive1.com/?u=028de8672d5f9a229f15e9edf&id=2ed0934892&e=ead155b89c", "indices": [57, 80]}], "hashtags": [], "user_mentions": [{"screen_name": "gapingvoid", "id_str": "72982024", "id": 72982024, "indices": [0, 11], "name": "gapingvoid"}]}, "created_at": "Thu Jan 07 23:07:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "gapingvoid", "in_reply_to_status_id_str": null, "truncated": false, "id": 685236456563044352, "text": "@gapingvoid is launching a weekly healthcare newsletter: https://t.co/lE8zFGbUv7 https://t.co/VdE5BS6M5a", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685558361710972929", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 852, "h": 568, "resize": "fit"}, "small": {"w": 340, "h": 226, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 400, "resize": "fit"}}, "source_status_id_str": "685236456563044352", "media_url": "http://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", "source_user_id_str": "50193", "id_str": "685236454897799168", "id": 685236454897799168, "media_url_https": "https://pbs.twimg.com/media/CYJy7NlU0AATw8J.jpg", "type": "photo", "indices": [99, 122], "source_status_id": 685236456563044352, "source_user_id": 50193, "display_url": "pic.twitter.com/VdE5BS6M5a", "expanded_url": "http://twitter.com/hughcartoons/status/685236456563044352/photo/1", "url": "https://t.co/VdE5BS6M5a"}], "symbols": [], "urls": [{"display_url": "us1.campaign-archive1.com/?u=028de8672d5\u2026", "url": "https://t.co/lE8zFGbUv7", "expanded_url": "http://us1.campaign-archive1.com/?u=028de8672d5f9a229f15e9edf&id=2ed0934892&e=ead155b89c", "indices": [75, 98]}], "hashtags": [], "user_mentions": [{"screen_name": "hughcartoons", "id_str": "50193", "id": 50193, "indices": [3, 16], "name": "Hugh MacLeod"}, {"screen_name": "gapingvoid", "id_str": "72982024", "id": 72982024, "indices": [18, 29], "name": "gapingvoid"}]}, "created_at": "Fri Jan 08 20:27:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685558361710972929, "text": "RT @hughcartoons: @gapingvoid is launching a weekly healthcare newsletter: https://t.co/lE8zFGbUv7 https://t.co/VdE5BS6M5a", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 72982024, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6561, "profile_banner_url": "https://pbs.twimg.com/profile_banners/72982024/1426542650", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1547166745", "following": false, "friends_count": 282, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 45, "location": "", "screen_name": "311onwax", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "James Jeffers", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000046852675/b9acdfc70098f944711254b1cf8b54f5_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 26 02:30:52 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000046852675/b9acdfc70098f944711254b1cf8b54f5_normal.jpeg", "favourites_count": 202, "status": {"in_reply_to_status_id": 680751289454706688, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "The90sLife", "in_reply_to_user_id": 436411543, "in_reply_to_status_id_str": "680751289454706688", "in_reply_to_user_id_str": "436411543", "truncated": false, "id_str": "680776290635493376", "id": 680776290635493376, "text": "@The90sLife remember jumping on the bear for extra lives?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "The90sLife", "id_str": "436411543", "id": 436411543, "indices": [0, 11], "name": "The 90s Life"}]}, "created_at": "Sat Dec 26 15:44:50 +0000 2015", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1547166745, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 738, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16487505", "following": false, "friends_count": 7172, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "coreylatislaw.com/android-activi\u2026", "url": "https://t.co/pnzBLFwf6Y", "expanded_url": "http://coreylatislaw.com/android-activity-book/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 6518, "location": "Philadelphia, PA", "screen_name": "corey_latislaw", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 416, "name": "Corey Leigh Latislaw", "profile_use_background_image": true, "description": "Geeky eco-minded nature-loving technophile. Feminist. Android GDE, lead at @OffGridE, international speaker, sketchnoter, founder @bushelme and @androidphilly.", "url": "https://t.co/pnzBLFwf6Y", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677142271708389376/JNfgckjB_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Sat Sep 27 16:59:53 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677142271708389376/JNfgckjB_normal.jpg", "favourites_count": 6107, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685604608668991488", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 1319, "resize": "fit"}, "small": {"w": 340, "h": 438, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 773, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPBvszWMAAkgEo.jpg", "type": "photo", "indices": [56, 79], "media_url": "http://pbs.twimg.com/media/CYPBvszWMAAkgEo.jpg", "display_url": "pic.twitter.com/WSNqJCvfwf", "id_str": "685604593514983424", "expanded_url": "http://twitter.com/corey_latislaw/status/685604608668991488/photo/1", "id": 685604593514983424, "url": "https://t.co/WSNqJCvfwf"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:30:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/e4a0d228eb6be76b.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-75.280284, 39.871811], [-74.955712, 39.871811], [-74.955712, 40.13792], [-75.280284, 40.13792]]], "type": "Polygon"}, "full_name": "Philadelphia, PA", "contained_within": [], "country_code": "US", "id": "e4a0d228eb6be76b", "name": "Philadelphia"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685604608668991488, "text": "Very orangey! Was expecting more violet, but I love it. https://t.co/WSNqJCvfwf", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 16487505, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 20816, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16487505/1441343221", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "12708782", "following": false, "friends_count": 1826, "entities": {"description": {"urls": [{"display_url": "theubergeekgirl.com/now", "url": "https://t.co/kB9kUAGaVJ", "expanded_url": "http://theubergeekgirl.com/now", "indices": [0, 23]}]}, "url": {"urls": [{"display_url": "about.me/jessicadevita", "url": "https://t.co/SB2xmt7RdJ", "expanded_url": "http://about.me/jessicadevita", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614503590699249664/84bvDwxx.png", "notifications": false, "profile_sidebar_fill_color": "D4D4D4", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 5078, "location": "Santa Monica", "screen_name": "UberGeekGirl", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 350, "name": "Jessica DeVita", "profile_use_background_image": true, "description": "https://t.co/kB9kUAGaVJ Mom of 3 boys and wifey to the brilliant @wx13 - I work at @chef", "url": "https://t.co/SB2xmt7RdJ", "profile_text_color": "363636", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/484435199413870592/WBnTIeTR_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Sat Jan 26 04:07:39 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/484435199413870592/WBnTIeTR_normal.jpeg", "favourites_count": 3259, "status": {"in_reply_to_status_id": 685570894735917056, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jkc137", "in_reply_to_user_id": 10349862, "in_reply_to_status_id_str": "685570894735917056", "in_reply_to_user_id_str": "10349862", "truncated": false, "id_str": "685582311757201408", "id": 685582311757201408, "text": "@jkc137 me too! I'm your wingman", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jkc137", "id_str": "10349862", "id": 10349862, "indices": [0, 7], "name": "Jennelle Crothers"}]}, "created_at": "Fri Jan 08 22:02:15 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 12708782, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614503590699249664/84bvDwxx.png", "statuses_count": 21948, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12708782/1363463180", "is_translator": false}, {"time_zone": "Stockholm", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "124424508", "following": false, "friends_count": 662, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eslgaming.com", "url": "https://t.co/1Lr55AyjF7", "expanded_url": "http://eslgaming.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": false, "followers_count": 63667, "location": "Cologne, Germany", "screen_name": "ApolloSC2", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 826, "name": "Shaun Clark", "profile_use_background_image": true, "description": "Host/Caster + Creative Producer @esl - I work on the @starcraft World Championship Series and @iem", "url": "https://t.co/1Lr55AyjF7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669865323596750849/MUITbX1v_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Fri Mar 19 10:38:52 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669865323596750849/MUITbX1v_normal.jpg", "favourites_count": 4264, "status": {"in_reply_to_status_id": 685591729962151936, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "DrAeromi", "in_reply_to_user_id": 789979346, "in_reply_to_status_id_str": "685591729962151936", "in_reply_to_user_id_str": "789979346", "truncated": false, "id_str": "685591864750272512", "id": 685591864750272512, "text": "@DrAeromi I was stating what is to watch tomorrow, yes, great weekend", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DrAeromi", "id_str": "789979346", "id": 789979346, "indices": [0, 9], "name": "Aeromi"}]}, "created_at": "Fri Jan 08 22:40:12 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 124424508, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 23753, "profile_banner_url": "https://pbs.twimg.com/profile_banners/124424508/1408376520", "is_translator": false}, {"time_zone": "Seoul", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 32400, "id_str": "20291791", "following": false, "friends_count": 917, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91402336/seoul-image.jpg", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0099CC", "geo_enabled": false, "followers_count": 82806, "location": "Seoul Korea", "screen_name": "CallMeTasteless", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1366, "name": "Nick Plott", "profile_use_background_image": true, "description": "\u30fd\u0f3c\u0e88\u0644\u035c\u0e88\u0f3d\uff89", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1142888206/Smoking-Monkey-143_normal.jpg", "profile_background_color": "FFF04D", "created_at": "Sat Feb 07 03:22:08 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFF8AD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1142888206/Smoking-Monkey-143_normal.jpg", "favourites_count": 1303, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685417920306872322", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "i.imgur.com/PVGVSZQ.png", "url": "https://t.co/PzUNLgnL5H", "expanded_url": "http://i.imgur.com/PVGVSZQ.png", "indices": [0, 23]}], "hashtags": [{"text": "GSL", "indices": [33, 37]}], "user_mentions": [{"screen_name": "CallMeTasteless", "id_str": "20291791", "id": 20291791, "indices": [38, 54], "name": "Nick Plott"}]}, "created_at": "Fri Jan 08 11:09:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "tl", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685417920306872322, "text": "https://t.co/PzUNLgnL5H \nHahahah #GSL @CallMeTasteless", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685420804587192320", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "i.imgur.com/PVGVSZQ.png", "url": "https://t.co/PzUNLgnL5H", "expanded_url": "http://i.imgur.com/PVGVSZQ.png", "indices": [16, 39]}], "hashtags": [{"text": "GSL", "indices": [49, 53]}], "user_mentions": [{"screen_name": "Arkanthiel", "id_str": "248599146", "id": 248599146, "indices": [3, 14], "name": "Judes Lopez"}, {"screen_name": "CallMeTasteless", "id_str": "20291791", "id": 20291791, "indices": [54, 70], "name": "Nick Plott"}]}, "created_at": "Fri Jan 08 11:20:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "tl", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685420804587192320, "text": "RT @Arkanthiel: https://t.co/PzUNLgnL5H \nHahahah #GSL @CallMeTasteless", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 20291791, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91402336/seoul-image.jpg", "statuses_count": 2819, "is_translator": false}, {"time_zone": "Seoul", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 32400, "id_str": "20240002", "following": false, "friends_count": 1009, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Facebook.com/Artosis", "url": "http://t.co/dlzcMKReqY", "expanded_url": "http://www.Facebook.com/Artosis", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520550316761042945/eX4AmP3Q.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 119473, "location": "Seoul, South Korea", "screen_name": "Artosis", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 1751, "name": "Dan Stemkoski", "profile_use_background_image": true, "description": "Professional Commentator. I work in the eSports industry in Seoul. Some call me the King of the Nerds.. business email: Artosis@Artosis.com", "url": "http://t.co/dlzcMKReqY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2976039428/90c5360b6f1ec28756ef4f1f479047ae_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Feb 06 14:27:47 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2976039428/90c5360b6f1ec28756ef4f1f479047ae_normal.jpeg", "favourites_count": 3875, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": 20291791, "possibly_sensitive": false, "id_str": "685429388830191616", "in_reply_to_user_id_str": "20291791", "entities": {"symbols": [], "urls": [{"display_url": "i.imgur.com/R1Azh6M.png", "url": "https://t.co/n3KK3Ay9ck", "expanded_url": "http://i.imgur.com/R1Azh6M.png", "indices": [82, 105]}], "hashtags": [], "user_mentions": [{"screen_name": "CallMeTasteless", "id_str": "20291791", "id": 20291791, "indices": [0, 16], "name": "Nick Plott"}, {"screen_name": "Artosis", "id_str": "20240002", "id": 20240002, "indices": [17, 25], "name": "Dan Stemkoski"}]}, "created_at": "Fri Jan 08 11:54:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "CallMeTasteless", "in_reply_to_status_id_str": null, "truncated": false, "id": 685429388830191616, "text": "@CallMeTasteless @Artosis can't wait till TLO finds a way to make those viable :D https://t.co/n3KK3Ay9ck", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685445422609911808", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "i.imgur.com/R1Azh6M.png", "url": "https://t.co/n3KK3Ay9ck", "expanded_url": "http://i.imgur.com/R1Azh6M.png", "indices": [96, 119]}], "hashtags": [], "user_mentions": [{"screen_name": "dNaGER87", "id_str": "242503069", "id": 242503069, "indices": [3, 12], "name": "dNa"}, {"screen_name": "CallMeTasteless", "id_str": "20291791", "id": 20291791, "indices": [14, 30], "name": "Nick Plott"}, {"screen_name": "Artosis", "id_str": "20240002", "id": 20240002, "indices": [31, 39], "name": "Dan Stemkoski"}]}, "created_at": "Fri Jan 08 12:58:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685445422609911808, "text": "RT @dNaGER87: @CallMeTasteless @Artosis can't wait till TLO finds a way to make those viable :D https://t.co/n3KK3Ay9ck", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 20240002, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520550316761042945/eX4AmP3Q.jpeg", "statuses_count": 10364, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20240002/1445320663", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "102556161", "following": false, "friends_count": 1518, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hardballpassport.com/traveler/can0k", "url": "http://t.co/xIZ89IMcok", "expanded_url": "http://hardballpassport.com/traveler/can0k", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/633818417791832065/5B1eAlBd.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 128, "location": "Hamilton, ON, Canada", "screen_name": "can0k", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "can\u00d8k", "profile_use_background_image": true, "description": "", "url": "http://t.co/xIZ89IMcok", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1356656867/The_Three_Monkeys__small_cropped__normal.jpg", "profile_background_color": "000000", "created_at": "Thu Jan 07 02:57:31 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1356656867/The_Three_Monkeys__small_cropped__normal.jpg", "favourites_count": 2300, "status": {"in_reply_to_status_id": 677864704774119424, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MissStaceyMay", "in_reply_to_user_id": 16894531, "in_reply_to_status_id_str": "677864704774119424", "in_reply_to_user_id_str": "16894531", "truncated": false, "id_str": "677994798800871432", "id": 677994798800871432, "text": "@MissStaceyMay Thank you for sharing this. Thank you for all of the amazing pieces you've penned in 2015, but this.. this was exceptional.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MissStaceyMay", "id_str": "16894531", "id": 16894531, "indices": [0, 14], "name": "Stacey May Fowles"}]}, "created_at": "Fri Dec 18 23:32:11 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 102556161, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/633818417791832065/5B1eAlBd.jpg", "statuses_count": 328, "profile_banner_url": "https://pbs.twimg.com/profile_banners/102556161/1439947791", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "634563", "following": false, "friends_count": 1647, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/573163012560838657/wPG_e6O-.jpeg", "notifications": false, "profile_sidebar_fill_color": "D5C6A4", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1636, "location": "Minneapolis", "screen_name": "Dan_H", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 147, "name": "Dan Hendricks", "profile_use_background_image": true, "description": "DEMO VERSION \u2014 PLEASE REGISTER", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/626093873874534400/Wt9nR9rx_normal.jpg", "profile_background_color": "635E40", "created_at": "Mon Jan 15 06:13:25 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626093873874534400/Wt9nR9rx_normal.jpg", "favourites_count": 19298, "status": {"in_reply_to_status_id": 685567075318796288, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "themacinjosh", "in_reply_to_user_id": 629743, "in_reply_to_status_id_str": "685567075318796288", "in_reply_to_user_id_str": "629743", "truncated": false, "id_str": "685567219149869056", "id": 685567219149869056, "text": "@themacinjosh I've considered taking it in for a replacement", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "themacinjosh", "id_str": "629743", "id": 629743, "indices": [0, 13], "name": "Josh Windisch"}]}, "created_at": "Fri Jan 08 21:02:16 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 634563, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/573163012560838657/wPG_e6O-.jpeg", "statuses_count": 376, "profile_banner_url": "https://pbs.twimg.com/profile_banners/634563/1449672635", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Providing cynicism, puns & network engineering at http://t.co/ICuRcKcV", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "218431233", "profile_image_url": "http://pbs.twimg.com/profile_images/1582073440/photo_low_normal.jpg", "friends_count": 212, "entities": {"description": {"urls": [{"display_url": "demonware.net", "url": "http://t.co/ICuRcKcV", "expanded_url": "http://www.demonware.net", "indices": [50, 70]}]}}, "profile_background_color": "022330", "created_at": "Mon Nov 22 10:04:01 +0000 2010", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652161561948131328/n7ZOru4H.jpg", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652161561948131328/n7ZOru4H.jpg", "statuses_count": 70, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1582073440/photo_low_normal.jpg", "favourites_count": 24, "listed_count": 1, "geo_enabled": true, "follow_request_sent": false, "followers_count": 37, "following": false, "default_profile_image": false, "id": 218431233, "blocked_by": false, "name": "Martin", "location": "Vancouver, Canada", "screen_name": "clarkegm", "profile_background_tile": true, "notifications": false, "utc_offset": -28800, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "32346831", "following": false, "friends_count": 605, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stumptownbear.com", "url": "http://t.co/56KHvt1dgZ", "expanded_url": "http://stumptownbear.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "6B7A8C", "geo_enabled": true, "followers_count": 142, "location": "Portland, Or", "screen_name": "evan_is", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Evan Price", "profile_use_background_image": true, "description": "Internet maker at Stumptown Bear. Noise maker in @iounoi and @pmachines.", "url": "http://t.co/56KHvt1dgZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/560517008228225024/Opg6uwaL_normal.jpeg", "profile_background_color": "DBE9ED", "created_at": "Fri Apr 17 08:22:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBE9ED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/560517008228225024/Opg6uwaL_normal.jpeg", "favourites_count": 175, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685275131036352512", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 400, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 400, "h": 400, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKWGaMUQAAJMYq.jpg", "type": "photo", "indices": [101, 124], "media_url": "http://pbs.twimg.com/media/CYKWGaMUQAAJMYq.jpg", "display_url": "pic.twitter.com/JUfNcKenL9", "id_str": "685275130168098816", "expanded_url": "http://twitter.com/evan_is/status/685275131036352512/photo/1", "id": 685275130168098816, "url": "https://t.co/JUfNcKenL9"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 01:41:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685275131036352512, "text": "Who wants to hire me full time? I'm super at javascript and like digging in the front-end ecosystem. https://t.co/JUfNcKenL9", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 32346831, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "statuses_count": 2135, "profile_banner_url": "https://pbs.twimg.com/profile_banners/32346831/1423208569", "is_translator": false}, {"time_zone": "Sydney", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "146395819", "following": false, "friends_count": 5211, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "uk.linkedin.com/in/girifox/", "url": "http://t.co/bxxnTEfTO4", "expanded_url": "http://uk.linkedin.com/in/girifox/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "4377D1", "geo_enabled": true, "followers_count": 6839, "location": "London", "screen_name": "girifox", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 149, "name": "Giri Fox", "profile_use_background_image": true, "description": "Director @RackspaceUK of managed services for our major customers, and technical pre-sales. Seeks root cause. Geek into enterprise tech and fixing processes.", "url": "http://t.co/bxxnTEfTO4", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2200752799/giri-fox_casual_50__head_cropped_normal.jpg", "profile_background_color": "352726", "created_at": "Fri May 21 09:49:42 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2200752799/giri-fox_casual_50__head_cropped_normal.jpg", "favourites_count": 569, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685262896595648513", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1JIPpOG", "url": "https://t.co/hTGaA1IHqa", "expanded_url": "http://bit.ly/1JIPpOG", "indices": [73, 96]}], "hashtags": [], "user_mentions": [{"screen_name": "rightscale", "id_str": "14940523", "id": 14940523, "indices": [114, 125], "name": "RightScale"}]}, "created_at": "Fri Jan 08 00:53:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685262896595648513, "text": "\"CloudOps Nirvana: Achieve Continuous Ops in Public and Private Clouds\" https://t.co/hTGaA1IHqa -- implies using @rightscale", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 146395819, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 9130, "profile_banner_url": "https://pbs.twimg.com/profile_banners/146395819/1399670881", "is_translator": false}, {"time_zone": "UTC", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "17958179", "following": false, "friends_count": 1712, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brennannovak.com", "url": "https://t.co/en2YSt9fOA", "expanded_url": "https://brennannovak.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3941228/back.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "B42400", "geo_enabled": true, "followers_count": 5159, "location": "", "screen_name": "brennannovak", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 175, "name": "Brennan Novak", "profile_use_background_image": true, "description": "General cypherpunkery. Trying to fix things. Sometimes hopeful. Sometimes not. @QubesOS @TransparencyKit @OpenSrcDesign @MailpileTeam", "url": "https://t.co/en2YSt9fOA", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3465346200/3887a9d367bf61ad50fa794a32c7ce21_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Mon Dec 08 06:54:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "E6E6E6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3465346200/3887a9d367bf61ad50fa794a32c7ce21_normal.jpeg", "favourites_count": 3967, "status": {"in_reply_to_status_id": 685176481123729408, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "altquinn", "in_reply_to_user_id": 781453303, "in_reply_to_status_id_str": "685176481123729408", "in_reply_to_user_id_str": "781453303", "truncated": false, "id_str": "685178308917604352", "id": 685178308917604352, "text": "@altquinn which articles are you referring to?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "altquinn", "id_str": "781453303", "id": 781453303, "indices": [0, 9], "name": "Quinn Norton"}]}, "created_at": "Thu Jan 07 19:16:53 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17958179, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3941228/back.jpg", "statuses_count": 10863, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17958179/1398249956", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2959291297", "following": false, "friends_count": 1995, "entities": {"description": {"urls": [{"display_url": "security-sleuth.com", "url": "http://t.co/kG6hxW7E7l", "expanded_url": "http://security-sleuth.com", "indices": [134, 156]}]}, "url": {"urls": [{"display_url": "security-sleuth.com", "url": "http://t.co/HazOriRs2u", "expanded_url": "http://www.security-sleuth.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 1197, "location": "Cyberspace", "screen_name": "Security_Sleuth", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "The Security Sleuth", "profile_use_background_image": false, "description": "Young up and coming #security professional dedicated to uncovering Security and #privacy issues in our everyday lives. Read my blog @ http://t.co/kG6hxW7E7l", "url": "http://t.co/HazOriRs2u", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/552003711426248705/vnC2-j2h_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Jan 05 06:49:02 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/552003711426248705/vnC2-j2h_normal.jpeg", "favourites_count": 50, "status": {"retweet_count": 111, "retweeted_status": {"retweet_count": 111, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685277451740553217", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 256, "resize": "fit"}, "large": {"w": 1024, "h": 772, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 452, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", "display_url": "pic.twitter.com/IaffDrzwC4", "id_str": "685277450192879616", "expanded_url": "http://twitter.com/binitamshah/status/685277451740553217/photo/1", "id": 685277450192879616, "url": "https://t.co/IaffDrzwC4"}], "symbols": [], "urls": [{"display_url": "jide.com/en/remixos/dev\u2026", "url": "https://t.co/IWhe1WxIv4", "expanded_url": "http://www.jide.com/en/remixos/devices", "indices": [86, 109]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 01:50:50 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685277451740553217, "text": "Remix OS : Android based OS for desktop (and it works with nearly any PC (or Mac ) : https://t.co/IWhe1WxIv4 https://t.co/IaffDrzwC4", "coordinates": null, "retweeted": false, "favorite_count": 130, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685347531916750849", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 256, "resize": "fit"}, "large": {"w": 1024, "h": 772, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 452, "resize": "fit"}}, "source_status_id_str": "685277451740553217", "media_url": "http://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", "source_user_id_str": "23090019", "id_str": "685277450192879616", "id": 685277450192879616, "media_url_https": "https://pbs.twimg.com/media/CYKYNc9VAAAMVRp.png", "type": "photo", "indices": [139, 140], "source_status_id": 685277451740553217, "source_user_id": 23090019, "display_url": "pic.twitter.com/IaffDrzwC4", "expanded_url": "http://twitter.com/binitamshah/status/685277451740553217/photo/1", "url": "https://t.co/IaffDrzwC4"}], "symbols": [], "urls": [{"display_url": "jide.com/en/remixos/dev\u2026", "url": "https://t.co/IWhe1WxIv4", "expanded_url": "http://www.jide.com/en/remixos/devices", "indices": [103, 126]}], "hashtags": [], "user_mentions": [{"screen_name": "binitamshah", "id_str": "23090019", "id": 23090019, "indices": [3, 15], "name": "Binni Shah"}]}, "created_at": "Fri Jan 08 06:29:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685347531916750849, "text": "RT @binitamshah: Remix OS : Android based OS for desktop (and it works with nearly any PC (or Mac ) : https://t.co/IWhe1WxIv4 https://t.co\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2959291297, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 348, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2959291297/1425687182", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "96848570", "following": false, "friends_count": 297, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "day9.tv", "url": "http://t.co/2SVmmy7vaY", "expanded_url": "http://www.day9.tv", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/290746944/day9tv-twitter-bkR1.jpg", "notifications": false, "profile_sidebar_fill_color": "131313", "profile_link_color": "FFA71A", "geo_enabled": false, "followers_count": 201480, "location": "", "screen_name": "day9tv", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2649, "name": "Sean Plott", "profile_use_background_image": true, "description": "Learn lots. Don't judge. Laugh for no reason. Be nice. Seek happiness.", "url": "http://t.co/2SVmmy7vaY", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/497129205692239872/x2MebV6i_normal.png", "profile_background_color": "131313", "created_at": "Mon Dec 14 21:50:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/497129205692239872/x2MebV6i_normal.png", "favourites_count": 389, "status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685529740547993601", "id": 685529740547993601, "text": "Grabbing new headphones before showtime today! Might be 15m late lol :P", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:33:21 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 43, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 96848570, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/290746944/day9tv-twitter-bkR1.jpg", "statuses_count": 13235, "profile_banner_url": "https://pbs.twimg.com/profile_banners/96848570/1353534662", "is_translator": false}, {"time_zone": "Jerusalem", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "553492685", "following": false, "friends_count": 297, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "webservices20.blogspot.com", "url": "http://t.co/gOiPMFkAB9", "expanded_url": "http://webservices20.blogspot.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675966453/eea3b1b6458b8e4b3bc0aa1841a4ea53.jpeg", "notifications": false, "profile_sidebar_fill_color": "281E17", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 674, "location": "Israel", "screen_name": "YaronNaveh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Yaron Naveh", "profile_use_background_image": true, "description": "Node.JS and open source developer. Web services addict. Lives in the Cloud. Works @ Facebook.", "url": "http://t.co/gOiPMFkAB9", "profile_text_color": "7A5C45", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477414043607498754/JMb6ecqx_normal.jpeg", "profile_background_color": "000000", "created_at": "Sat Apr 14 12:29:00 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477414043607498754/JMb6ecqx_normal.jpeg", "favourites_count": 902, "status": {"retweet_count": 0, "in_reply_to_user_id": 141934364, "possibly_sensitive": false, "id_str": "685454499016740864", "in_reply_to_user_id_str": "141934364", "entities": {"symbols": [], "urls": [{"display_url": "github.com/hustcer/star", "url": "https://t.co/NFOKpzpbbR", "expanded_url": "https://github.com/hustcer/star", "indices": [92, 115]}], "hashtags": [], "user_mentions": [{"screen_name": "sakanabiscuit", "id_str": "141934364", "id": 141934364, "indices": [0, 14], "name": "\u3164"}]}, "created_at": "Fri Jan 08 13:34:22 +0000 2016", "favorited": false, "in_reply_to_status_id": 685320456564441088, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "sakanabiscuit", "in_reply_to_status_id_str": "685320456564441088", "truncated": false, "id": 685454499016740864, "text": "@sakanabiscuit any language you can in the terminal is possible. recently I've seen Chinese https://t.co/NFOKpzpbbR and also French before", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 553492685, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675966453/eea3b1b6458b8e4b3bc0aa1841a4ea53.jpeg", "statuses_count": 521, "profile_banner_url": "https://pbs.twimg.com/profile_banners/553492685/1406714550", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "686803", "following": false, "friends_count": 1027, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nesbitt.io", "url": "http://t.co/Jf3LNbrp8J", "expanded_url": "http://nesbitt.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/750371030/86f4c2397325bcd6305c75abc235ece3.png", "notifications": false, "profile_sidebar_fill_color": "C4D6F5", "profile_link_color": "5074CF", "geo_enabled": true, "followers_count": 4202, "location": "Somerset, UK", "screen_name": "teabass", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 297, "name": "Andrew Nesbitt", "profile_use_background_image": true, "description": "Founder of @Librariesio and @24pullrequests, previously worked at @GitHub", "url": "http://t.co/Jf3LNbrp8J", "profile_text_color": "0A0A0A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669795308738596864/E2xmHvPR_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jan 23 15:01:41 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669795308738596864/E2xmHvPR_normal.jpg", "favourites_count": 8980, "status": {"retweet_count": 22, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 22, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685484634835148800", "id": 685484634835148800, "text": "I\u2019m leaving Pusher and looking for a new challenge. Please get in touch if you know of anything phil@leggetter.co.uk \ud83d\ude80", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:34:07 +0000 2016", "source": "TweetDeck", "favorite_count": 15, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685490089682665472", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "leggetter", "id_str": "14455530", "id": 14455530, "indices": [3, 13], "name": "Phil Leggetter"}]}, "created_at": "Fri Jan 08 15:55:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685490089682665472, "text": "RT @leggetter: I\u2019m leaving Pusher and looking for a new challenge. Please get in touch if you know of anything phil@leggetter.co.uk \ud83d\ude80", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 686803, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/750371030/86f4c2397325bcd6305c75abc235ece3.png", "statuses_count": 30708, "profile_banner_url": "https://pbs.twimg.com/profile_banners/686803/1414274531", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "10497132", "following": false, "friends_count": 304, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "goettner.net", "url": "http://t.co/IFzFJy0qHq", "expanded_url": "http://www.goettner.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3904681/TwitterBack.gif", "notifications": false, "profile_sidebar_fill_color": "FEFED7", "profile_link_color": "2C89AA", "geo_enabled": true, "followers_count": 192, "location": "", "screen_name": "LewG", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Lew Goettner", "profile_use_background_image": true, "description": "Sometimes I type slow, sometimes I type quick.", "url": "http://t.co/IFzFJy0qHq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2182323909/LewSquareCutOff_normal.jpg", "profile_background_color": "88B7FF", "created_at": "Fri Nov 23 16:57:34 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "B6C5D8", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2182323909/LewSquareCutOff_normal.jpg", "favourites_count": 138, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684731614128136192", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tnw.to/h4y0U", "url": "https://t.co/yfY3o8r7CN", "expanded_url": "http://tnw.to/h4y0U", "indices": [71, 94]}], "hashtags": [], "user_mentions": [{"screen_name": "TheNextWeb", "id_str": "10876852", "id": 10876852, "indices": [99, 110], "name": "The Next Web"}]}, "created_at": "Wed Jan 06 13:41:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684731614128136192, "text": "\"Web developers rejoice; Internet Explorer 8, 9 and 10 die on Tuesday\" https://t.co/yfY3o8r7CN via @thenextweb -- I know I will!", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 10497132, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3904681/TwitterBack.gif", "statuses_count": 1118, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10497132/1400780356", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "7378102", "following": false, "friends_count": 2059, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bagofonions.com", "url": "https://t.co/wyoDXMtkmO", "expanded_url": "https://www.bagofonions.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/531844732435959808/U-trU_g7.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1296, "location": "Edinburgh ", "screen_name": "handlewithcare", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 48, "name": "Martin Hewitt", "profile_use_background_image": true, "description": "Product developer @surevine and way of working enthusiast. Building collaboration tools for security-conscious organisations. Bakes bread in the gaps.", "url": "https://t.co/wyoDXMtkmO", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/71439029/martin_hewitt_byng_systems_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jul 10 17:22:24 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/71439029/martin_hewitt_byng_systems_normal.jpg", "favourites_count": 187, "status": {"retweet_count": 119, "retweeted_status": {"retweet_count": 119, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685552439248957441", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/conorpope/stat\u2026", "url": "https://t.co/Em2DgiRp8G", "expanded_url": "https://twitter.com/conorpope/status/685540019457658880", "indices": [93, 116]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:03:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685552439248957441, "text": "If I were Ukip I'd be pretty annoyed by the way Labour are muscling in on the fruitcake vote https://t.co/Em2DgiRp8G", "coordinates": null, "retweeted": false, "favorite_count": 127, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613249245626369", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/conorpope/stat\u2026", "url": "https://t.co/Em2DgiRp8G", "expanded_url": "https://twitter.com/conorpope/status/685540019457658880", "indices": [113, 136]}], "hashtags": [], "user_mentions": [{"screen_name": "MichaelPDeacon", "id_str": "506486097", "id": 506486097, "indices": [3, 18], "name": "Michael Deacon"}]}, "created_at": "Sat Jan 09 00:05:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613249245626369, "text": "RT @MichaelPDeacon: If I were Ukip I'd be pretty annoyed by the way Labour are muscling in on the fruitcake vote https://t.co/Em2DgiRp8G", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 7378102, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/531844732435959808/U-trU_g7.jpeg", "statuses_count": 38874, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "557543", "following": false, "friends_count": 393, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "danworth.com", "url": "http://t.co/pWB6KBJTAH", "expanded_url": "http://www.danworth.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18867467/background.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 322, "location": "Bucks County, PA", "screen_name": "djworth", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 25, "name": "Dan Worth", "profile_use_background_image": true, "description": "Organizer @GolangPhilly", "url": "http://t.co/pWB6KBJTAH", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/577892800856911872/vHZ0ibNn_normal.jpeg", "profile_background_color": "000000", "created_at": "Thu Jan 04 22:09:58 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/577892800856911872/vHZ0ibNn_normal.jpeg", "favourites_count": 245, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684422155187126272", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "meetu.ps/2RF5qb", "url": "https://t.co/WBzpYXhPcJ", "expanded_url": "http://meetu.ps/2RF5qb", "indices": [35, 58]}], "hashtags": [{"text": "golang", "indices": [7, 14]}], "user_mentions": []}, "created_at": "Tue Jan 05 17:12:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684422155187126272, "text": "Philly #golang meetup on Jan 12th.\nhttps://t.co/WBzpYXhPcJ", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684432613956808704", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "meetu.ps/2RF5qb", "url": "https://t.co/WBzpYXhPcJ", "expanded_url": "http://meetu.ps/2RF5qb", "indices": [52, 75]}], "hashtags": [{"text": "golang", "indices": [24, 31]}], "user_mentions": [{"screen_name": "genghisjahn", "id_str": "16422814", "id": 16422814, "indices": [3, 15], "name": "Jon Wear"}]}, "created_at": "Tue Jan 05 17:53:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684432613956808704, "text": "RT @genghisjahn: Philly #golang meetup on Jan 12th.\nhttps://t.co/WBzpYXhPcJ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 557543, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18867467/background.png", "statuses_count": 1274, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11404352", "following": false, "friends_count": 877, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jjmiv.us", "url": "http://t.co/kPt8y3YG6v", "expanded_url": "http://jjmiv.us", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "005FB3", "geo_enabled": false, "followers_count": 311, "location": "Narberth, PA", "screen_name": "jjmiv", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "John Mahoney", "profile_use_background_image": true, "description": "I like tech, comics, games and being a dad! | DevOps at Capital One | Co-Organizer for @gdgphilly and @docker philly", "url": "http://t.co/kPt8y3YG6v", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/630421789324275712/7vmC3Ghd_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Dec 21 14:01:47 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/630421789324275712/7vmC3Ghd_normal.jpg", "favourites_count": 136, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685497618861043712", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/ColliderNews/s\u2026", "url": "https://t.co/PqTLX42Uq4", "expanded_url": "https://twitter.com/ColliderNews/status/685494047218241536", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:25:42 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685497618861043712, "text": "this makes me feel old. https://t.co/PqTLX42Uq4", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 11404352, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3799, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16422814", "following": false, "friends_count": 102, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jonwear.com", "url": "https://t.co/KL1LvQSpdj", "expanded_url": "http://www.jonwear.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 217, "location": "Philadelphia, PA", "screen_name": "genghisjahn", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Jon Wear", "profile_use_background_image": false, "description": "Evacuate? In our moment of triumph? I think you over estimate their chances.", "url": "https://t.co/KL1LvQSpdj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/585854819010748417/7oM61q6p_normal.png", "profile_background_color": "022330", "created_at": "Tue Sep 23 18:17:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585854819010748417/7oM61q6p_normal.png", "favourites_count": 1016, "status": {"retweet_count": 16, "retweeted_status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685575798183481344", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "resetplug.com", "url": "https://t.co/g9bdJ5S1rk", "expanded_url": "http://resetplug.com/", "indices": [110, 133]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:36:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685575798183481344, "text": "A smart device to reset your router if it can't get on your wifi is a solution that ignores the root problem. https://t.co/g9bdJ5S1rk", "coordinates": null, "retweeted": false, "favorite_count": 30, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685576188979458048", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "resetplug.com", "url": "https://t.co/g9bdJ5S1rk", "expanded_url": "http://resetplug.com/", "indices": [126, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "shanselman", "id_str": "5676102", "id": 5676102, "indices": [3, 14], "name": "Scott Hanselman"}]}, "created_at": "Fri Jan 08 21:37:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685576188979458048, "text": "RT @shanselman: A smart device to reset your router if it can't get on your wifi is a solution that ignores the root problem. https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 16422814, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 4452, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16422814/1435275444", "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "110465841", "following": false, "friends_count": 2997, "entities": {"description": {"urls": [{"display_url": "hook.io", "url": "http://t.co/LTk6sENnSE", "expanded_url": "http://hook.io", "indices": [77, 99]}, {"display_url": "github.com/marak", "url": "http://t.co/hRZPf23WfN", "expanded_url": "http://github.com/marak", "indices": [100, 122]}]}, "url": {"urls": [{"display_url": "marak.com", "url": "http://t.co/HCfNi319sG", "expanded_url": "http://marak.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3016, "location": "The Internet", "screen_name": "marak", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 255, "name": "marak", "profile_use_background_image": true, "description": "Open-source software developer. Previously founded @Nodejitsu Now working on http://t.co/LTk6sENnSE http://t.co/hRZPf23WfN", "url": "http://t.co/HCfNi319sG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2555785383/r67mex7tvvowb506u550_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Feb 01 17:02:01 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2555785383/r67mex7tvvowb506u550_normal.png", "favourites_count": 0, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684106649678790656", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/22Hitlh", "url": "https://t.co/S33LyfJ6t2", "expanded_url": "http://bit.ly/22Hitlh", "indices": [108, 131]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 20:18:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684106649678790656, "text": "Let's talk resolutions (not the pixel kind). 5 essential principals to becoming a better filmmaker in 2016 https://t.co/S33LyfJ6t2", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684356338638548992", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/22Hitlh", "url": "https://t.co/S33LyfJ6t2", "expanded_url": "http://bit.ly/22Hitlh", "indices": [122, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "Frame_io", "id_str": "1475571811", "id": 1475571811, "indices": [3, 12], "name": "Frame.io"}]}, "created_at": "Tue Jan 05 12:50:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684356338638548992, "text": "RT @Frame_io: Let's talk resolutions (not the pixel kind). 5 essential principals to becoming a better filmmaker in 2016 https://t.co/S33L\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 110465841, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 442, "is_translator": false}, {"time_zone": "Tijuana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2898656006", "following": false, "friends_count": 9123, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bit.ly/1DLCeu0", "url": "http://t.co/7jM1haXIYY", "expanded_url": "http://bit.ly/1DLCeu0", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 12176, "location": "", "screen_name": "DevopsRR", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 259, "name": "DevOps", "profile_use_background_image": true, "description": "Live Content Curated by top DevOps Influencers", "url": "http://t.co/7jM1haXIYY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/532953334261362689/ZTF7QPgY_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Nov 13 17:48:55 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/532953334261362689/ZTF7QPgY_normal.png", "favourites_count": 0, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685576243253661697", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "rightrelevance.com/search/influen\u2026", "url": "https://t.co/pNpItcLLS6", "expanded_url": "http://www.rightrelevance.com/search/influencers?query=devops&taccount=devopsrr&time=1452288667.06", "indices": [49, 72]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:38:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685576243253661697, "text": "Top devops Twitter influencers one should follow https://t.co/pNpItcLLS6", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "RRPostingApp"}, "default_profile_image": false, "id": 2898656006, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5182, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "28862294", "following": false, "friends_count": 2059, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 705, "location": "Chicago, IL", "screen_name": "jcattell", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 49, "name": "Jerry Cattell", "profile_use_background_image": true, "description": "infrastructure @enernoc (formerly @pulseenergy, @orbitz, i-drive, @fedex). co-organizer of @devopschicago and @devopsdaysChi. ebook addict.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/126684370/photo-small_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Apr 04 20:18:04 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/126684370/photo-small_normal.jpg", "favourites_count": 3327, "status": {"retweet_count": 19434, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 19434, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "683715585373372416", "id": 683715585373372416, "text": "Today I learned:\nplural of armed black people is thugs\nplural of armed brown people is terrorists\nplural of armed white people is militia", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sun Jan 03 18:24:33 +0000 2016", "source": "Twitter for iPad", "favorite_count": 17267, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "684165529179787264", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "koush", "id_str": "18918415", "id": 18918415, "indices": [3, 9], "name": "koush"}]}, "created_at": "Tue Jan 05 00:12:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684165529179787264, "text": "RT @koush: Today I learned:\nplural of armed black people is thugs\nplural of armed brown people is terrorists\nplural of armed white people i\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 28862294, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1477, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "222000294", "following": false, "friends_count": 786, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "coalesce.net", "url": "http://t.co/NsdbJtq5vP", "expanded_url": "http://coalesce.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000152571431/F1uC7SrW.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 210, "location": "", "screen_name": "tracyfloyd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Tracy Floyd", "profile_use_background_image": true, "description": "Designer. Pragmatic perfectionist. Definitely know less now than I did in my 20s.", "url": "http://t.co/NsdbJtq5vP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677686176095055872/yDA8HfOV_normal.png", "profile_background_color": "131516", "created_at": "Thu Dec 02 05:20:46 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677686176095055872/yDA8HfOV_normal.png", "favourites_count": 665, "status": {"retweet_count": 136, "retweeted_status": {"retweet_count": 136, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684301080080052224", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swissincss.com", "url": "https://t.co/SOiMHjAOkr", "expanded_url": "http://swissincss.com", "indices": [76, 99]}], "hashtags": [], "user_mentions": [{"screen_name": "swissmiss", "id_str": "1504011", "id": 1504011, "indices": [105, 115], "name": "Tina Roth Eisenberg"}]}, "created_at": "Tue Jan 05 09:11:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684301080080052224, "text": "Swiss in CSS. A beautiful homage with CodePen links to see how it was done. https://t.co/SOiMHjAOkr\n\n/cc @swissmiss", "coordinates": null, "retweeted": false, "favorite_count": 236, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684898274747281408", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swissincss.com", "url": "https://t.co/SOiMHjAOkr", "expanded_url": "http://swissincss.com", "indices": [90, 113]}], "hashtags": [], "user_mentions": [{"screen_name": "vpieters", "id_str": "12815", "id": 12815, "indices": [3, 12], "name": "Veerle Pieters"}, {"screen_name": "swissmiss", "id_str": "1504011", "id": 1504011, "indices": [119, 129], "name": "Tina Roth Eisenberg"}]}, "created_at": "Thu Jan 07 00:44:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684898274747281408, "text": "RT @vpieters: Swiss in CSS. A beautiful homage with CodePen links to see how it was done. https://t.co/SOiMHjAOkr\n\n/cc @swissmiss", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitterrific"}, "default_profile_image": false, "id": 222000294, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000152571431/F1uC7SrW.png", "statuses_count": 843, "profile_banner_url": "https://pbs.twimg.com/profile_banners/222000294/1398251622", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "428813", "following": false, "friends_count": 840, "entities": {"description": {"urls": [{"display_url": "github.com/thepug", "url": "https://t.co/pXVpePQGaR", "expanded_url": "https://github.com/thepug", "indices": [55, 78]}]}, "url": {"urls": [{"display_url": "unclenaynay.com", "url": "http://t.co/EbI1b1pXJC", "expanded_url": "http://unclenaynay.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 796, "location": "Mount Pleasant, SC", "screen_name": "thepug", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "Nathan Zorn", "profile_use_background_image": true, "description": "Software developer. Currently working for @modernmsg. https://t.co/pXVpePQGaR", "url": "http://t.co/EbI1b1pXJC", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3203071618/3b84a033819948ec0ccb7f04b0cfb904_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Tue Jan 02 02:12:04 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3203071618/3b84a033819948ec0ccb7f04b0cfb904_normal.jpeg", "favourites_count": 90, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684602241198600192", "id": 684602241198600192, "text": "Thanks @dallasruby for having me tonight! \u2019twas fun", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "dallasruby", "id_str": "58941505", "id": 58941505, "indices": [7, 18], "name": "Dallas Ruby Brigade"}]}, "created_at": "Wed Jan 06 05:07:48 +0000 2016", "source": "Twitter for Mac", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685114540783108097", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "dealingwith", "id_str": "379983", "id": 379983, "indices": [3, 15], "name": "\u2728Daniel Miller\u2728"}, {"screen_name": "dallasruby", "id_str": "58941505", "id": 58941505, "indices": [24, 35], "name": "Dallas Ruby Brigade"}]}, "created_at": "Thu Jan 07 15:03:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685114540783108097, "text": "RT @dealingwith: Thanks @dallasruby for having me tonight! \u2019twas fun", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 428813, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2118, "profile_banner_url": "https://pbs.twimg.com/profile_banners/428813/1359914750", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1967601206", "following": false, "friends_count": 22, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "influxdb.com", "url": "http://t.co/DzRgm2B9Hb", "expanded_url": "http://influxdb.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 4293, "location": "NYC, Denver, San Francisco", "screen_name": "InfluxDB", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 150, "name": "InfluxData", "profile_use_background_image": true, "description": "The Platform for Time-Series Data", "url": "http://t.co/DzRgm2B9Hb", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674654746725056514/EHg3ZHtE_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Oct 17 21:10:10 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674654746725056514/EHg3ZHtE_normal.jpg", "favourites_count": 61, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685581760340492288", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1WyNmUS", "url": "https://t.co/efpu73VnYS", "expanded_url": "http://bit.ly/1WyNmUS", "indices": [114, 137]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:00:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685581760340492288, "text": "The SF InfluxDB Meetup is looking for developers to share their InfluxDB experiences at a future Meetup, ping us: https://t.co/efpu73VnYS", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Sprout Social"}, "default_profile_image": false, "id": 1967601206, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 854, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "614623", "following": false, "friends_count": 164, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rae.tnir.org", "url": "http://t.co/tdvzreHDK8", "expanded_url": "http://rae.tnir.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/30222/swirly-swirl.jpg", "notifications": false, "profile_sidebar_fill_color": "BFD9C7", "profile_link_color": "069C03", "geo_enabled": true, "followers_count": 309, "location": "Toronto, Canada", "screen_name": "clith", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Reid", "profile_use_background_image": false, "description": "I write iPhone apps", "url": "http://t.co/tdvzreHDK8", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/574316640143175681/ithojHKm_normal.jpeg", "profile_background_color": "71AB7B", "created_at": "Mon Jan 08 18:45:15 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "488553", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/574316640143175681/ithojHKm_normal.jpeg", "favourites_count": 210, "status": {"retweet_count": 153, "retweeted_status": {"retweet_count": 153, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684965457640599552", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 427, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", "type": "photo", "indices": [66, 89], "media_url": "http://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", "display_url": "pic.twitter.com/cVeckwwvjX", "id_str": "684965433422684160", "expanded_url": "http://twitter.com/verge/status/684965457640599552/photo/1", "id": 684965433422684160, "url": "https://t.co/cVeckwwvjX"}], "symbols": [], "urls": [{"display_url": "theverge.com/2016/1/6/10724\u2026", "url": "https://t.co/JTkRuPu0Fe", "expanded_url": "http://www.theverge.com/2016/1/6/10724112/netflix-global-expansion-russia-india", "indices": [42, 65]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 05:11:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684965457640599552, "text": "Netflix has launched in 130 new countries https://t.co/JTkRuPu0Fe https://t.co/cVeckwwvjX", "coordinates": null, "retweeted": false, "favorite_count": 139, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684992684868567040", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 427, "resize": "fit"}}, "source_status_id_str": "684965457640599552", "media_url": "http://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", "source_user_id_str": "275686563", "id_str": "684965433422684160", "id": 684965433422684160, "media_url_https": "https://pbs.twimg.com/media/CYF8br6UoAAt3Zj.jpg", "type": "photo", "indices": [77, 100], "source_status_id": 684965457640599552, "source_user_id": 275686563, "display_url": "pic.twitter.com/cVeckwwvjX", "expanded_url": "http://twitter.com/verge/status/684965457640599552/photo/1", "url": "https://t.co/cVeckwwvjX"}], "symbols": [], "urls": [{"display_url": "theverge.com/2016/1/6/10724\u2026", "url": "https://t.co/JTkRuPu0Fe", "expanded_url": "http://www.theverge.com/2016/1/6/10724112/netflix-global-expansion-russia-india", "indices": [53, 76]}], "hashtags": [], "user_mentions": [{"screen_name": "verge", "id_str": "275686563", "id": 275686563, "indices": [3, 9], "name": "The Verge"}]}, "created_at": "Thu Jan 07 06:59:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684992684868567040, "text": "RT @verge: Netflix has launched in 130 new countries https://t.co/JTkRuPu0Fe https://t.co/cVeckwwvjX", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 614623, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/30222/swirly-swirl.jpg", "statuses_count": 5871, "profile_banner_url": "https://pbs.twimg.com/profile_banners/614623/1372430024", "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "14316334", "following": false, "friends_count": 491, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "94D487", "geo_enabled": false, "followers_count": 119, "location": "Dublin, Ireland", "screen_name": "corriganjc", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 8, "name": "corriganjc", "profile_use_background_image": false, "description": "Programmer, prone to self nerd-sniping. Edge person. Tabletop gamer. Pronouns: he/him.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648607142807752704/a-31fHlt_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Apr 06 16:43:23 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648607142807752704/a-31fHlt_normal.jpg", "favourites_count": 2697, "status": {"retweet_count": 47, "retweeted_status": {"retweet_count": 47, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685379627297148929", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 343, "resize": "fit"}, "small": {"w": 340, "h": 194, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 343, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", "type": "photo", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", "display_url": "pic.twitter.com/pJpYxFAPYc", "id_str": "685379625904652288", "expanded_url": "http://twitter.com/LASTEXITshirts/status/685379627297148929/photo/1", "id": 685379625904652288, "url": "https://t.co/pJpYxFAPYc"}], "symbols": [], "urls": [{"display_url": "bit.ly/1ZelBWy", "url": "https://t.co/3O2rsdovZI", "expanded_url": "http://bit.ly/1ZelBWy", "indices": [91, 114]}], "hashtags": [{"text": "RoyBatty", "indices": [17, 26]}, {"text": "BladeRunner", "indices": [62, 74]}], "user_mentions": []}, "created_at": "Fri Jan 08 08:36:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685379627297148929, "text": "Happy incept day #RoyBatty\nQuote: NEXUS30 for 30% OFF all our #BladeRunner inspired items: https://t.co/3O2rsdovZI https://t.co/pJpYxFAPYc", "coordinates": null, "retweeted": false, "favorite_count": 50, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685380282334187520", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 343, "resize": "fit"}, "small": {"w": 340, "h": 194, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 343, "resize": "fit"}}, "source_status_id_str": "685379627297148929", "media_url": "http://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", "source_user_id_str": "37403964", "id_str": "685379625904652288", "id": 685379625904652288, "media_url_https": "https://pbs.twimg.com/media/CYL1I3JWQAAxNM4.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685379627297148929, "source_user_id": 37403964, "display_url": "pic.twitter.com/pJpYxFAPYc", "expanded_url": "http://twitter.com/LASTEXITshirts/status/685379627297148929/photo/1", "url": "https://t.co/pJpYxFAPYc"}], "symbols": [], "urls": [{"display_url": "bit.ly/1ZelBWy", "url": "https://t.co/3O2rsdovZI", "expanded_url": "http://bit.ly/1ZelBWy", "indices": [111, 134]}], "hashtags": [{"text": "RoyBatty", "indices": [37, 46]}, {"text": "BladeRunner", "indices": [82, 94]}], "user_mentions": [{"screen_name": "LASTEXITshirts", "id_str": "37403964", "id": 37403964, "indices": [3, 18], "name": "Last Exit To Nowhere"}]}, "created_at": "Fri Jan 08 08:39:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685380282334187520, "text": "RT @LASTEXITshirts: Happy incept day #RoyBatty\nQuote: NEXUS30 for 30% OFF all our #BladeRunner inspired items: https://t.co/3O2rsdovZI http\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 14316334, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4739, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14316334/1425513148", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15909478", "following": false, "friends_count": 2490, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/melindab", "url": "https://t.co/8OXzCqBbZ6", "expanded_url": "http://linkedin.com/in/melindab", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2997, "location": "iPhone: 37.612808,-122.384117", "screen_name": "MJB_SF", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 362, "name": "Melinda Byerley", "profile_use_background_image": true, "description": "Founder, @timesharecmo. Underrated Badass. Serious/silly. Poetry Writer/Growth Hacker. Owls/Poodles. Cornell MBA/Live in SF.", "url": "https://t.co/8OXzCqBbZ6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507327885460246529/jcIFzXJA_normal.jpeg", "profile_background_color": "022330", "created_at": "Tue Aug 19 20:57:22 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507327885460246529/jcIFzXJA_normal.jpeg", "favourites_count": 21759, "status": {"retweet_count": 6, "retweeted_status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685514903960956928", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 115, "resize": "fit"}, "medium": {"w": 600, "h": 203, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 736, "h": 250, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", "type": "photo", "indices": [35, 58], "media_url": "http://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", "display_url": "pic.twitter.com/6B56z8e044", "id_str": "685514901268250624", "expanded_url": "http://twitter.com/adamnash/status/685514903960956928/photo/1", "id": 685514901268250624, "url": "https://t.co/6B56z8e044"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:34:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/b19a2cc5134b7e0a.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.117916, 37.3567709], [-122.044969, 37.3567709], [-122.044969, 37.436935], [-122.117916, 37.436935]]], "type": "Polygon"}, "full_name": "Mountain View, CA", "contained_within": [], "country_code": "US", "id": "b19a2cc5134b7e0a", "name": "Mountain View"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685514903960956928, "text": "A bit of bitcoin humor for Friday. https://t.co/6B56z8e044", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612530727694336", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 115, "resize": "fit"}, "medium": {"w": 600, "h": 203, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 736, "h": 250, "resize": "fit"}}, "source_status_id_str": "685514903960956928", "media_url": "http://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", "source_user_id_str": "1421521", "id_str": "685514901268250624", "id": 685514901268250624, "media_url_https": "https://pbs.twimg.com/media/CYNwK7JUwAA0rL7.jpg", "type": "photo", "indices": [49, 72], "source_status_id": 685514903960956928, "source_user_id": 1421521, "display_url": "pic.twitter.com/6B56z8e044", "expanded_url": "http://twitter.com/adamnash/status/685514903960956928/photo/1", "url": "https://t.co/6B56z8e044"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "adamnash", "id_str": "1421521", "id": 1421521, "indices": [3, 12], "name": "Adam Nash"}]}, "created_at": "Sat Jan 09 00:02:20 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612530727694336, "text": "RT @adamnash: A bit of bitcoin humor for Friday. https://t.co/6B56z8e044", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 15909478, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 32361, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15909478/1431361178", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6500812", "following": false, "friends_count": 439, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thetofu.com", "url": "http://t.co/gfLWAwOBtD", "expanded_url": "http://thetofu.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 472, "location": "Alameda, CA", "screen_name": "twonds", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 47, "name": "Christopher Zorn", "profile_use_background_image": true, "description": "", "url": "http://t.co/gfLWAwOBtD", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2439991894/image_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Fri Jun 01 13:42:18 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2439991894/image_normal.jpg", "favourites_count": 132, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682005975692259328", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 200, "resize": "fit"}, "medium": {"w": 600, "h": 353, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 600, "h": 353, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", "type": "photo", "indices": [97, 120], "media_url": "http://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", "display_url": "pic.twitter.com/ZWHDgNzKai", "id_str": "682005975579009026", "expanded_url": "http://twitter.com/OPENcompanyHQ/status/682005975692259328/photo/1", "id": 682005975579009026, "url": "https://t.co/ZWHDgNzKai"}], "symbols": [], "urls": [{"display_url": "bit.ly/22xjJr9", "url": "https://t.co/My8exDctys", "expanded_url": "http://bit.ly/22xjJr9", "indices": [73, 96]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 30 01:11:10 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682005975692259328, "text": "Our latest OPENcompany newsletter features problems with employee equity https://t.co/My8exDctys https://t.co/ZWHDgNzKai", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682058811050295296", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 200, "resize": "fit"}, "medium": {"w": 600, "h": 353, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 600, "h": 353, "resize": "fit"}}, "source_status_id_str": "682005975692259328", "media_url": "http://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", "source_user_id_str": "3401777441", "id_str": "682005975579009026", "id": 682005975579009026, "media_url_https": "https://pbs.twimg.com/media/CXb40kUUoAIOI6_.jpg", "type": "photo", "indices": [116, 139], "source_status_id": 682005975692259328, "source_user_id": 3401777441, "display_url": "pic.twitter.com/ZWHDgNzKai", "expanded_url": "http://twitter.com/OPENcompanyHQ/status/682005975692259328/photo/1", "url": "https://t.co/ZWHDgNzKai"}], "symbols": [], "urls": [{"display_url": "bit.ly/22xjJr9", "url": "https://t.co/My8exDctys", "expanded_url": "http://bit.ly/22xjJr9", "indices": [92, 115]}], "hashtags": [], "user_mentions": [{"screen_name": "OPENcompanyHQ", "id_str": "3401777441", "id": 3401777441, "indices": [3, 17], "name": "OPENcompany"}]}, "created_at": "Wed Dec 30 04:41:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682058811050295296, "text": "RT @OPENcompanyHQ: Our latest OPENcompany newsletter features problems with employee equity https://t.co/My8exDctys https://t.co/ZWHDgNzKai", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 6500812, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3271, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "106374504", "following": false, "friends_count": 23244, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "amazon.co.uk/Impact-Code-Un\u2026", "url": "http://t.co/1iz3WZs4jJ", "expanded_url": "http://www.amazon.co.uk/Impact-Code-Unlocking-Resilliance-Productivity/dp/0992860148/ref=sr_1_3?ie=U", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "009EB3", "geo_enabled": true, "followers_count": 26228, "location": "Birmingham ", "screen_name": "andrewpain1974", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 453, "name": "Andrew Pain", "profile_use_background_image": true, "description": "Author of 'The Impact Code', I help people achieve more by developing their resilience, influence & productivity. Dad to 3 awesome children - Blogger - Coach.", "url": "http://t.co/1iz3WZs4jJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/467012098359185409/o_Ecebxn_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Tue Jan 19 10:32:32 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/467012098359185409/o_Ecebxn_normal.jpeg", "favourites_count": 1708, "status": {"in_reply_to_status_id": 685414193906860032, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "fikri_asma", "in_reply_to_user_id": 2834702484, "in_reply_to_status_id_str": "685414193906860032", "in_reply_to_user_id_str": "2834702484", "truncated": false, "id_str": "685429339240939520", "id": 685429339240939520, "text": "@fikri_asma - fair enough. Each to their own! :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "fikri_asma", "id_str": "2834702484", "id": 2834702484, "indices": [0, 11], "name": "Asma Fikri"}]}, "created_at": "Fri Jan 08 11:54:23 +0000 2016", "source": "Twitter Web Client", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 106374504, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "statuses_count": 11248, "profile_banner_url": "https://pbs.twimg.com/profile_banners/106374504/1418213651", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2439889542", "following": false, "friends_count": 16, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "grafana.org", "url": "http://t.co/X4Dm6iWhX5", "expanded_url": "http://grafana.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3123, "location": "", "screen_name": "grafana", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 70, "name": "Grafana", "profile_use_background_image": true, "description": "", "url": "http://t.co/X4Dm6iWhX5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/454950372675571712/rhtKuA9t_normal.png", "profile_background_color": "C0DEED", "created_at": "Sat Apr 12 11:32:09 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/454950372675571712/rhtKuA9t_normal.png", "favourites_count": 41, "status": {"retweet_count": 11, "retweeted_status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684453558545203200", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "type": "photo", "indices": [113, 136], "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "display_url": "pic.twitter.com/GnfOxpEaYF", "id_str": "684450657458368512", "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", "id": 684450657458368512, "url": "https://t.co/GnfOxpEaYF"}], "symbols": [], "urls": [{"display_url": "bit.ly/22Jb455", "url": "https://t.co/aYQvFNmob0", "expanded_url": "http://bit.ly/22Jb455", "indices": [69, 92]}], "hashtags": [{"text": "monitoring", "indices": [57, 68]}], "user_mentions": [{"screen_name": "RobustPerceiver", "id_str": "3328053545", "id": 3328053545, "indices": [96, 112], "name": "Robust Perception"}]}, "created_at": "Tue Jan 05 19:16:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684453558545203200, "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684456715811729408", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "source_status_id_str": "684453558545203200", "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "source_user_id_str": "2782733125", "id_str": "684450657458368512", "id": 684450657458368512, "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "type": "photo", "indices": [139, 140], "source_status_id": 684453558545203200, "source_user_id": 2782733125, "display_url": "pic.twitter.com/GnfOxpEaYF", "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", "url": "https://t.co/GnfOxpEaYF"}], "symbols": [], "urls": [{"display_url": "bit.ly/22Jb455", "url": "https://t.co/aYQvFNmob0", "expanded_url": "http://bit.ly/22Jb455", "indices": [87, 110]}], "hashtags": [{"text": "monitoring", "indices": [75, 86]}], "user_mentions": [{"screen_name": "raintanksaas", "id_str": "2782733125", "id": 2782733125, "indices": [3, 16], "name": "raintank"}, {"screen_name": "RobustPerceiver", "id_str": "3328053545", "id": 3328053545, "indices": [114, 130], "name": "Robust Perception"}]}, "created_at": "Tue Jan 05 19:29:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684456715811729408, "text": "RT @raintanksaas: Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2439889542, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 249, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2439889542/1445965397", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2529971", "following": false, "friends_count": 3252, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cdixon.org/aboutme/", "url": "http://t.co/YviCcFNOiV", "expanded_url": "http://cdixon.org/aboutme/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543964120664403968/0IKm7siW.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "89C9FA", "geo_enabled": true, "followers_count": 207889, "location": "CA & NYC", "screen_name": "cdixon", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 7770, "name": "Chris Dixon", "profile_use_background_image": true, "description": "programming, philosophy, history, internet, startups, investing", "url": "http://t.co/YviCcFNOiV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683496924104658944/8Oa5XAso_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Mar 27 17:48:00 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683496924104658944/8Oa5XAso_normal.png", "favourites_count": 8211, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685592381425594369", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tmfassociates.com/blog/2016/01/0\u2026", "url": "https://t.co/6Mi1Kkxnbp", "expanded_url": "http://tmfassociates.com/blog/2016/01/08/the-exploding-inflight-connectivity-market/", "indices": [111, 134]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:42:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685592381425594369, "text": "\"ViaSat\u2019s 1Tbps capacity would offer low cost connectivity, including streaming video, to airline passengers.\" https://t.co/6Mi1Kkxnbp", "coordinates": null, "retweeted": false, "favorite_count": 11, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2529971, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543964120664403968/0IKm7siW.png", "statuses_count": 8966, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2529971/1451789461", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14861000", "following": false, "friends_count": 2104, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "alexnobert.com", "url": "https://t.co/tPoTMUsmKK", "expanded_url": "http://alexnobert.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/853194994/0bb4e16ca51a19b8a05ac269062e8381.jpeg", "notifications": false, "profile_sidebar_fill_color": "E8E8E8", "profile_link_color": "FF6900", "geo_enabled": false, "followers_count": 1522, "location": "The Glebe, Ottawa, Canada", "screen_name": "nobert", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 67, "name": "Alex Nobert", "profile_use_background_image": true, "description": "Post-macho feminist. Loves dogs, food, college football. Ops survivor. Works at Flynn. Built and led ops at Shopify, Vox Media, Minted. Never kick.", "url": "https://t.co/tPoTMUsmKK", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666309776721096704/ag61W3Xf_normal.jpg", "profile_background_color": "FF6900", "created_at": "Wed May 21 19:41:18 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666309776721096704/ag61W3Xf_normal.jpg", "favourites_count": 9925, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685580880031559680", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 113, "resize": "fit"}, "large": {"w": 894, "h": 298, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 200, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOsLWaUEAAFib2.png", "type": "photo", "indices": [113, 136], "media_url": "http://pbs.twimg.com/media/CYOsLWaUEAAFib2.png", "display_url": "pic.twitter.com/nz3HVzAzP4", "id_str": "685580879284932608", "expanded_url": "http://twitter.com/nobert/status/685580880031559680/photo/1", "id": 685580879284932608, "url": "https://t.co/nz3HVzAzP4"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thevowel", "id_str": "14269220", "id": 14269220, "indices": [10, 19], "name": "Eric Neustadter (e)"}]}, "created_at": "Fri Jan 08 21:56:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685580880031559680, "text": "Thanks to @thevowel, my Razer Blade is finally running with BitLocker. All it took was an Ubuntu live USB drive. https://t.co/nz3HVzAzP4", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14861000, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/853194994/0bb4e16ca51a19b8a05ac269062e8381.jpeg", "statuses_count": 25213, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14861000/1446000512", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "46250388", "following": false, "friends_count": 557, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "devco.net", "url": "https://t.co/XvqT2v1kJh", "expanded_url": "https://devco.net/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": false, "followers_count": 4231, "location": "Europe", "screen_name": "ripienaar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 358, "name": "R.I.Pienaar", "profile_use_background_image": false, "description": "Systems Administrator, Automator, Ruby Coder.", "url": "https://t.co/XvqT2v1kJh", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/257864204/ducks_normal.png", "profile_background_color": "000000", "created_at": "Wed Jun 10 22:57:38 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/257864204/ducks_normal.png", "favourites_count": 2, "status": {"in_reply_to_status_id": 685506980761436160, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "oneplusi", "in_reply_to_user_id": 7005982, "in_reply_to_status_id_str": "685506980761436160", "in_reply_to_user_id_str": "7005982", "truncated": false, "id_str": "685507134570819584", "id": 685507134570819584, "text": "@oneplusi lol, home luckily :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "oneplusi", "id_str": "7005982", "id": 7005982, "indices": [0, 9], "name": "Andrew Stubbs"}]}, "created_at": "Fri Jan 08 17:03:31 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 46250388, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 23854, "profile_banner_url": "https://pbs.twimg.com/profile_banners/46250388/1447895364", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17000457", "following": false, "friends_count": 2955, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "azure.microsoft.com", "url": "http://t.co/vFtkLITsAX", "expanded_url": "http://azure.microsoft.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451786593955610624/iomf2rSv.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 411259, "location": "Redmond, WA", "screen_name": "Azure", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4506, "name": "Microsoft Azure", "profile_use_background_image": true, "description": "The official account for Microsoft Azure. Follow for news and updates from the team and community.", "url": "http://t.co/vFtkLITsAX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/546024114272468993/W9gT7hZo_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Oct 27 15:34:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/546024114272468993/W9gT7hZo_normal.png", "favourites_count": 1781, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685567906466271233", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "aka.ms/q721n1", "url": "https://t.co/SKGxL4J725", "expanded_url": "http://aka.ms/q721n1", "indices": [106, 129]}], "hashtags": [{"text": "Azure", "indices": [0, 6]}, {"text": "AzureApps", "indices": [130, 140]}], "user_mentions": [{"screen_name": "harmonypsa", "id_str": "339088324", "id": 339088324, "indices": [15, 26], "name": "HarmonyPSA"}, {"screen_name": "MSPartnerApps", "id_str": "2533622706", "id": 2533622706, "indices": [66, 80], "name": "MS Partner Apps"}]}, "created_at": "Fri Jan 08 21:05:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685567906466271233, "text": "#Azure partner @harmonypsa saw web traffic surge while working w/ @MSPartnerApps. Read the success story: https://t.co/SKGxL4J725 #AzureApps", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Sprinklr"}, "default_profile_image": false, "id": 17000457, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451786593955610624/iomf2rSv.jpeg", "statuses_count": 17923, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17000457/1440619501", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "26191233", "following": false, "friends_count": 2389, "entities": {"description": {"urls": [{"display_url": "rackspace.com/support", "url": "http://t.co/4xHHyxqo6k", "expanded_url": "http://www.rackspace.com/support", "indices": [83, 105]}]}, "url": {"urls": [{"display_url": "rackspace.com", "url": "http://t.co/hWaMv0FzgM", "expanded_url": "http://www.rackspace.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/646414416255320064/GBM3mlo2.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 99979, "location": "San Antonio, TX", "screen_name": "Rackspace", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2526, "name": "Rackspace", "profile_use_background_image": true, "description": "The managed cloud company. Backed by Fanatical Support\u00ae. Questions? Reach us here: http://t.co/4xHHyxqo6k", "url": "http://t.co/hWaMv0FzgM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2820164575/0226f9ef1173d90417e5113e25e0cc17_normal.png", "profile_background_color": "000000", "created_at": "Tue Mar 24 06:30:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2820164575/0226f9ef1173d90417e5113e25e0cc17_normal.png", "favourites_count": 4161, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685557209166655488", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOWpf8WcAA04Bb.png", "type": "photo", "indices": [108, 131], "media_url": "http://pbs.twimg.com/media/CYOWpf8WcAA04Bb.png", "display_url": "pic.twitter.com/TnNhe32y17", "id_str": "685557207983878144", "expanded_url": "http://twitter.com/Rackspace/status/685557209166655488/photo/1", "id": 685557207983878144, "url": "https://t.co/TnNhe32y17"}], "symbols": [], "urls": [{"display_url": "rack.ly/6016Bn0Er", "url": "https://t.co/RzlCDlAeYF", "expanded_url": "http://rack.ly/6016Bn0Er", "indices": [84, 107]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:22:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685557209166655488, "text": "Starting next week, explore what dedicated infrastructure offers in a cloudy world. https://t.co/RzlCDlAeYF https://t.co/TnNhe32y17", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Sprinklr"}, "default_profile_image": false, "id": 26191233, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/646414416255320064/GBM3mlo2.png", "statuses_count": 22069, "profile_banner_url": "https://pbs.twimg.com/profile_banners/26191233/1442952292", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "356565711", "following": false, "friends_count": 1807, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cloudstack.apache.org", "url": "http://t.co/iUUxv93VBY", "expanded_url": "http://cloudstack.apache.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 32657, "location": "Apache Software Foundation", "screen_name": "CloudStack", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 491, "name": "Apache CloudStack ", "profile_use_background_image": true, "description": "Official Twitter account of the Apache CloudStack, an open source cloud computing platform.", "url": "http://t.co/iUUxv93VBY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1513105223/twitter-icon_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Aug 17 01:38:29 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1513105223/twitter-icon_normal.png", "favourites_count": 5, "status": {"retweet_count": 29, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "671645266869637120", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "s.apache.org/VfP", "url": "https://t.co/mH2VS8lCmg", "expanded_url": "http://s.apache.org/VfP", "indices": [65, 88]}], "hashtags": [{"text": "OpenSource", "indices": [89, 100]}, {"text": "Cloud", "indices": [101, 107]}, {"text": "orchestration", "indices": [108, 122]}, {"text": "platform", "indices": [123, 132]}], "user_mentions": [{"screen_name": "CloudStack", "id_str": "356565711", "id": 356565711, "indices": [48, 59], "name": "Apache CloudStack "}]}, "created_at": "Tue Dec 01 11:01:24 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 671645266869637120, "text": "The Apache Software Foundation announces Apache @CloudStack v4.6\nhttps://t.co/mH2VS8lCmg #OpenSource #Cloud #orchestration #platform", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 356565711, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1779, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15813140", "following": false, "friends_count": 161, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cloud.google.com", "url": "http://t.co/DSf8acfd3K", "expanded_url": "http://cloud.google.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135879522/P3DFciyd.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "549CF5", "geo_enabled": false, "followers_count": 465530, "location": "", "screen_name": "googlecloud", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 6244, "name": "GoogleCloudPlatform", "profile_use_background_image": true, "description": "Building tools for modern applications, making developers more productive, and giving you the power to build on Google's computing infrastructure.", "url": "http://t.co/DSf8acfd3K", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/639578526233010176/sf2x8byZ_normal.png", "profile_background_color": "4285F4", "created_at": "Mon Aug 11 20:08:12 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639578526233010176/sf2x8byZ_normal.png", "favourites_count": 509, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685598108395388928", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYO72M3WkAABQzM.png", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CYO72M3WkAABQzM.png", "display_url": "pic.twitter.com/kO87ATY3uB", "id_str": "685598108131168256", "expanded_url": "http://twitter.com/googlecloud/status/685598108395388928/photo/1", "id": 685598108131168256, "url": "https://t.co/kO87ATY3uB"}], "symbols": [], "urls": [{"display_url": "goo.gl/VeK1jg", "url": "https://t.co/VS0IVqznY5", "expanded_url": "http://goo.gl/VeK1jg", "indices": [92, 115]}], "hashtags": [], "user_mentions": [{"screen_name": "tableau", "id_str": "14792516", "id": 14792516, "indices": [11, 19], "name": "Tableau Software"}]}, "created_at": "Fri Jan 08 23:05:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685598108395388928, "text": "Good news, @tableau users. Now you can directly connect to Cloud SQL in just a few seconds. https://t.co/VS0IVqznY5 https://t.co/kO87ATY3uB", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Sprinklr"}, "default_profile_image": false, "id": 15813140, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135879522/P3DFciyd.png", "statuses_count": 2456, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15813140/1450457327", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "66780587", "following": false, "friends_count": 519, "entities": {"description": {"urls": [{"display_url": "aws.amazon.com/what-is-cloud-\u2026", "url": "https://t.co/xICTf1bTeB", "expanded_url": "http://aws.amazon.com/what-is-cloud-computing/", "indices": [77, 100]}]}, "url": {"urls": [{"display_url": "aws.amazon.com", "url": "https://t.co/8QQO0BCGlY", "expanded_url": "http://aws.amazon.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554689648/aws_block_bkrnd.png", "notifications": false, "profile_sidebar_fill_color": "DBF1FD", "profile_link_color": "FAA734", "geo_enabled": false, "followers_count": 449642, "location": "Seattle, WA", "screen_name": "awscloud", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3740, "name": "Amazon Web Services", "profile_use_background_image": true, "description": "Official Twitter Feed for Amazon Web Services. New to the cloud? Start here: https://t.co/xICTf1bTeB", "url": "https://t.co/8QQO0BCGlY", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2900345382/16ffae8c667bdbc6a4969f6f02090652_normal.png", "profile_background_color": "646566", "created_at": "Tue Aug 18 19:52:16 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2900345382/16ffae8c667bdbc6a4969f6f02090652_normal.png", "favourites_count": 77, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685598866901569537", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYO8iRSUwAAXJNH.png", "type": "photo", "indices": [81, 104], "media_url": "http://pbs.twimg.com/media/CYO8iRSUwAAXJNH.png", "display_url": "pic.twitter.com/swC5ATrl56", "id_str": "685598865232281600", "expanded_url": "http://twitter.com/awscloud/status/685598866901569537/photo/1", "id": 685598865232281600, "url": "https://t.co/swC5ATrl56"}], "symbols": [], "urls": [{"display_url": "oak.ctx.ly/r/4682z", "url": "https://t.co/PVOMKD7odh", "expanded_url": "http://oak.ctx.ly/r/4682z", "indices": [57, 80]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:08:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685598866901569537, "text": "Get started with Amazon EC2 Container Registry. How to: https://t.co/PVOMKD7odh https://t.co/swC5ATrl56", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Adobe\u00ae Social"}, "default_profile_image": false, "id": 66780587, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554689648/aws_block_bkrnd.png", "statuses_count": 6698, "profile_banner_url": "https://pbs.twimg.com/profile_banners/66780587/1447775917", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "167234557", "following": false, "friends_count": 616, "entities": {"description": {"urls": [{"display_url": "openstack.org", "url": "http://t.co/y6pc2uGhTy", "expanded_url": "http://openstack.org", "indices": [6, 28]}, {"display_url": "irc.freenode.com", "url": "http://t.co/tat2wl18xy", "expanded_url": "http://irc.freenode.com", "indices": [53, 75]}, {"display_url": "openstack.org/join", "url": "http://t.co/hQdq1180WX", "expanded_url": "http://openstack.org/join", "indices": [111, 133]}]}, "url": {"urls": [{"display_url": "openstack.org", "url": "http://t.co/y6pc2uGhTy", "expanded_url": "http://openstack.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468542714561044482/90T1TJiX.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 108821, "location": "Running on servers near you!", "screen_name": "OpenStack", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2026, "name": "OpenStack", "profile_use_background_image": true, "description": "Go to http://t.co/y6pc2uGhTy for more information or http://t.co/tat2wl18xy #openstack and join the foundation http://t.co/hQdq1180WX", "url": "http://t.co/y6pc2uGhTy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/441018383090196480/GCPRyAva_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Jul 16 02:22:35 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/441018383090196480/GCPRyAva_normal.png", "favourites_count": 314, "status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685298732280221696", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "awe.sm/aNW8c", "url": "https://t.co/QRUPaA4KtT", "expanded_url": "http://awe.sm/aNW8c", "indices": [107, 130]}], "hashtags": [{"text": "OpenStack", "indices": [7, 17]}], "user_mentions": []}, "created_at": "Fri Jan 08 03:15:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685298732280221696, "text": "New to #OpenStack? Start the year with OpenStack training. Check out these available courses in Australia: https://t.co/QRUPaA4KtT", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 167234557, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468542714561044482/90T1TJiX.png", "statuses_count": 4944, "profile_banner_url": "https://pbs.twimg.com/profile_banners/167234557/1446648581", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16333852", "following": false, "friends_count": 409, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chef.io", "url": "http://t.co/OudqPCVrNN", "expanded_url": "http://www.chef.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "F18A20", "geo_enabled": true, "followers_count": 26796, "location": "Seattle, WA, USA", "screen_name": "chef", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1066, "name": "Chef", "profile_use_background_image": true, "description": "Helping people achieve awesome with IT automation, configuration management, & continuous delivery. #devops / #hugops / #learnchef / #getchef / #foodfightshow", "url": "http://t.co/OudqPCVrNN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/616327263684947968/r7C1Tnye_normal.png", "profile_background_color": "131516", "created_at": "Wed Sep 17 18:23:58 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616327263684947968/r7C1Tnye_normal.png", "favourites_count": 368, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685570175228235778", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 170, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 512, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYE2NEgUMAEfAiw.jpg", "type": "photo", "indices": [112, 135], "media_url": "http://pbs.twimg.com/media/CYE2NEgUMAEfAiw.jpg", "display_url": "pic.twitter.com/OW9Un3NpXI", "id_str": "684888216512507905", "expanded_url": "http://twitter.com/chef/status/685570175228235778/photo/1", "id": 684888216512507905, "url": "https://t.co/OW9Un3NpXI"}], "symbols": [], "urls": [{"display_url": "bit.ly/1ZKIYnp", "url": "https://t.co/KqwUKauCne", "expanded_url": "http://bit.ly/1ZKIYnp", "indices": [88, 111]}], "hashtags": [{"text": "DevOps", "indices": [28, 35]}, {"text": "growth", "indices": [45, 52]}], "user_mentions": [{"screen_name": "leecaswell", "id_str": "18650596", "id": 18650596, "indices": [59, 70], "name": "Lee Caswell"}, {"screen_name": "ITProPortal", "id_str": "16318230", "id": 16318230, "indices": [74, 86], "name": "ITProPortal"}]}, "created_at": "Fri Jan 08 21:14:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685570175228235778, "text": "More enterprises will adopt #DevOps to drive #growth, says @leecaswell in @ITProPortal: https://t.co/KqwUKauCne https://t.co/OW9Un3NpXI", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 16333852, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 6864, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16333852/1405444420", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13682312", "following": false, "friends_count": 686, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "getchef.com", "url": "http://t.co/p823bsFMUP", "expanded_url": "http://getchef.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 7207, "location": "San Francisco, CA", "screen_name": "adamhjk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 444, "name": "Adam Jacob", "profile_use_background_image": false, "description": "CTO for Chef.", "url": "http://t.co/p823bsFMUP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108290260/Adam_Jacob-114x150_original_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Feb 19 18:02:55 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108290260/Adam_Jacob-114x150_original_normal.jpg", "favourites_count": 84, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685577402345390080", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 255, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 768, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOpA9aU0AIEJfl.jpg", "type": "photo", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/CYOpA9aU0AIEJfl.jpg", "display_url": "pic.twitter.com/dEupjf9CQ4", "id_str": "685577402240520194", "expanded_url": "http://twitter.com/adamhjk/status/685577402345390080/photo/1", "id": 685577402240520194, "url": "https://t.co/dEupjf9CQ4"}], "symbols": [], "urls": [], "hashtags": [{"text": "stickiepocalypse", "indices": [23, 40]}], "user_mentions": [{"screen_name": "chef", "id_str": "16333852", "id": 16333852, "indices": [17, 22], "name": "Chef"}, {"screen_name": "jeffpatton", "id_str": "16043994", "id": 16043994, "indices": [45, 56], "name": "Jeff Patton"}]}, "created_at": "Fri Jan 08 21:42:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685577402345390080, "text": "Story mapping at @chef #stickiepocalypse /cc @jeffpatton https://t.co/dEupjf9CQ4", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 13682312, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8912, "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "14079705", "following": false, "friends_count": 2455, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stochasticresonance.wordpress.com", "url": "http://t.co/cesY1x0gXj", "expanded_url": "http://stochasticresonance.wordpress.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "1252B3", "geo_enabled": true, "followers_count": 8346, "location": "a wrinkle in timespace", "screen_name": "littleidea", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 558, "name": "Andrew Clay Shafer", "profile_use_background_image": true, "description": "solving more problems than I cause at @pivotal", "url": "http://t.co/cesY1x0gXj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/425400689301266432/zDSgA31m_normal.png", "profile_background_color": "131516", "created_at": "Tue Mar 04 20:17:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/425400689301266432/zDSgA31m_normal.png", "favourites_count": 5682, "status": {"retweet_count": 229, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 229, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685591830109401089", "id": 685591830109401089, "text": "You can't please all the people all the time.\n\nYou can however displease all the people all the time.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:40:04 +0000 2016", "source": "TweetDeck", "favorite_count": 221, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685593223251623936", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "sadserver", "id_str": "116568685", "id": 116568685, "indices": [3, 13], "name": "Sardonic Server"}]}, "created_at": "Fri Jan 08 22:45:36 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593223251623936, "text": "RT @sadserver: You can't please all the people all the time.\n\nYou can however displease all the people all the time.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14079705, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 33466, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14079705/1399044111", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "17025041", "following": false, "friends_count": 361, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jtimberman.housepub.org", "url": "https://t.co/b7N8iBMhKh", "expanded_url": "http://jtimberman.housepub.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "BC4301", "geo_enabled": false, "followers_count": 3739, "location": "My Bikeshed (It's Green)", "screen_name": "jtimberman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 274, "name": "Overheard By", "profile_use_background_image": false, "description": "here's my surprised face. it's the same as my not surprised face.", "url": "https://t.co/b7N8iBMhKh", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/636550941110480896/u1prsDHS_normal.jpg", "profile_background_color": "7C7C7C", "created_at": "Tue Oct 28 17:35:26 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636550941110480896/u1prsDHS_normal.jpg", "favourites_count": 4869, "status": {"in_reply_to_status_id": 685607090417606656, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ashedryden", "in_reply_to_user_id": 9510922, "in_reply_to_status_id_str": "685607090417606656", "in_reply_to_user_id_str": "9510922", "truncated": false, "id_str": "685607317845315585", "id": 685607317845315585, "text": "@ashedryden :D! <3", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ashedryden", "id_str": "9510922", "id": 9510922, "indices": [0, 11], "name": "ashe"}]}, "created_at": "Fri Jan 08 23:41:37 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 17025041, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 43882, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17025041/1428382685", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "10452062", "following": false, "friends_count": 331, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tateeskew.com", "url": "http://t.co/n6LC79pux8", "expanded_url": "http://www.tateeskew.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/237422775/body-bg.jpg", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "E99708", "geo_enabled": false, "followers_count": 286, "location": "Nashville, TN", "screen_name": "tateeskew", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 23, "name": "tateeskew", "profile_use_background_image": true, "description": "Open Source Advocate, Musician, Audio Engineer, Linux Systems Engineer, Community Builder and Practitioner of Permaculture.", "url": "http://t.co/n6LC79pux8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494679290131136512/ofhOW9HO_normal.jpeg", "profile_background_color": "E99708", "created_at": "Wed Nov 21 21:43:25 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494679290131136512/ofhOW9HO_normal.jpeg", "favourites_count": 245, "status": {"retweet_count": 34, "retweeted_status": {"retweet_count": 34, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685459826168741888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pytennessee.tumblr.com/post/136879055\u2026", "url": "https://t.co/TpMGJfwHS2", "expanded_url": "http://pytennessee.tumblr.com/post/136879055598/pytennessee-2016", "indices": [45, 68]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 13:55:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685459826168741888, "text": "PyTennessee needs HELP! Funding is way down! https://t.co/TpMGJfwHS2", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685466172532207616", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pytennessee.tumblr.com/post/136879055\u2026", "url": "https://t.co/TpMGJfwHS2", "expanded_url": "http://pytennessee.tumblr.com/post/136879055598/pytennessee-2016", "indices": [62, 85]}], "hashtags": [], "user_mentions": [{"screen_name": "PyTennessee", "id_str": "1616492725", "id": 1616492725, "indices": [3, 15], "name": "PyTN"}]}, "created_at": "Fri Jan 08 14:20:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685466172532207616, "text": "RT @PyTennessee: PyTennessee needs HELP! Funding is way down! https://t.co/TpMGJfwHS2", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 10452062, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/237422775/body-bg.jpg", "statuses_count": 1442, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10452062/1398052886", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1281116485", "following": false, "friends_count": 31, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 27, "location": "", "screen_name": "Dinahpuglife", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Dinah Walker", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495805740536561665/reIDixvv_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Mar 19 18:04:33 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495805740536561665/reIDixvv_normal.jpeg", "favourites_count": 46, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "578446201097326593", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tweetyourbracket.com/2015/MW1812463\u2026", "url": "http://t.co/5yO3DjH77P", "expanded_url": "http://tweetyourbracket.com/2015/MW18124637211262121W18124631021432122E181241131021432434S1854113721432122FFMWEMW", "indices": [23, 45]}], "hashtags": [{"text": "bracket", "indices": [13, 21]}, {"text": "tybrkt", "indices": [46, 53]}], "user_mentions": [{"screen_name": "TweetTheBracket", "id_str": "515832256", "id": 515832256, "indices": [58, 74], "name": "Tweet Your Bracket"}]}, "created_at": "Thu Mar 19 06:41:36 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 578446201097326593, "text": "Check out my #bracket! http://t.co/5yO3DjH77P #tybrkt via @tweetthebracket", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1281116485, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "97933", "following": false, "friends_count": 176, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.zawodny.com", "url": "http://t.co/T7eJjIa3oR", "expanded_url": "http://blog.zawodny.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 5449, "location": "Groveland, CA", "screen_name": "jzawodn", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 363, "name": "Jeremy Zawodny", "profile_use_background_image": true, "description": "I fly and geek.", "url": "http://t.co/T7eJjIa3oR", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/17071732/Zawodny-md_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Thu Dec 21 05:47:54 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/17071732/Zawodny-md_normal.jpg", "favourites_count": 110, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685566731071299584", "id": 685566731071299584, "text": "when you finish your upgraded FreeNAS box and \"df\" tells you you have ~25TB free of well protected storage cc: @FreeNASTeam", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "FreeNASTeam", "id_str": "291881151", "id": 291881151, "indices": [111, 123], "name": "FreeNAS Community"}]}, "created_at": "Fri Jan 08 21:00:20 +0000 2016", "source": "Twitter Web Client", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 97933, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3813, "profile_banner_url": "https://pbs.twimg.com/profile_banners/97933/1353544820", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15804774", "following": false, "friends_count": 435, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "python.org/~guido/", "url": "http://t.co/jujQDNMiBP", "expanded_url": "http://python.org/~guido/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 72585, "location": "San Francisco Bay Area", "screen_name": "gvanrossum", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3128, "name": "Guido van Rossum", "profile_use_background_image": true, "description": "Python BDFL. Working at Dropbox. The 'van' has no capital letter!", "url": "http://t.co/jujQDNMiBP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/424495004/GuidoAvatar_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Aug 11 04:02:18 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/424495004/GuidoAvatar_normal.jpg", "favourites_count": 431, "status": {"retweet_count": 0, "in_reply_to_user_id": 853051010, "possibly_sensitive": false, "id_str": "681300597350346752", "in_reply_to_user_id_str": "853051010", "entities": {"symbols": [], "urls": [{"display_url": "github.com/JukkaL/mypy", "url": "https://t.co/0hQF9kaESy", "expanded_url": "https://github.com/JukkaL/mypy", "indices": [88, 111]}], "hashtags": [], "user_mentions": [{"screen_name": "ismael_vc", "id_str": "853051010", "id": 853051010, "indices": [0, 10], "name": "Ismael V. C."}, {"screen_name": "l337d474", "id_str": "1408419319", "id": 1408419319, "indices": [11, 20], "name": "Jonathan Foley"}]}, "created_at": "Mon Dec 28 02:28:15 +0000 2015", "favorited": false, "in_reply_to_status_id": 681093799003729920, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "ismael_vc", "in_reply_to_status_id_str": "681093799003729920", "truncated": false, "id": 681300597350346752, "text": "@ismael_vc @l337d474 It's not my project -- I just provide moral support. (!) Check out https://t.co/0hQF9kaESy for what I'm working on.", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 15804774, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1713, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15804774/1400086274", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "63873759", "following": false, "friends_count": 120, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "python.org/psf", "url": "http://t.co/KdOzhmst4U", "expanded_url": "http://www.python.org/psf", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "FFEE30", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 94780, "location": "Everywhere Python is!", "screen_name": "ThePSF", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2519, "name": "Python - The PSF", "profile_use_background_image": true, "description": "The Python Software Foundation. For help with Python code, see comp.lang.python.", "url": "http://t.co/KdOzhmst4U", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/439154912719413248/pUBY5pVj_normal.png", "profile_background_color": "2B9DD6", "created_at": "Sat Aug 08 01:26:03 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/439154912719413248/pUBY5pVj_normal.png", "favourites_count": 184, "status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679421499812483073", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "goo.gl/fb/ZDhZTu", "url": "https://t.co/xTWZBxTyeT", "expanded_url": "http://goo.gl/fb/ZDhZTu", "indices": [22, 45]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 22 22:01:23 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679421499812483073, "text": "Python-Cuba Workgroup https://t.co/xTWZBxTyeT", "coordinates": null, "retweeted": false, "favorite_count": 23, "contributors": null, "source": "Google"}, "default_profile_image": false, "id": 63873759, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2642, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24945605", "following": false, "friends_count": 174, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jesstess.com", "url": "http://t.co/amra6EvsH8", "expanded_url": "http://jesstess.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 7948, "location": "San Francisco, CA", "screen_name": "jessicamckellar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 394, "name": "Jessica McKellar", "profile_use_background_image": false, "description": "Startup founder, open source developer, Engineering Director @Dropbox.", "url": "http://t.co/amra6EvsH8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/428813271/glendaAndGrumpy_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Mar 17 20:16:06 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/428813271/glendaAndGrumpy_normal.jpg", "favourites_count": 0, "status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684230271395172355", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "web.mit.edu/jesstess/www/p\u2026", "url": "https://t.co/PL8GO1J5AM", "expanded_url": "http://web.mit.edu/jesstess/www/pygotham.pdf", "indices": [8, 31]}, {"display_url": "twitter.com/fperez_org/sta\u2026", "url": "https://t.co/V3tH2vT1BY", "expanded_url": "https://twitter.com/fperez_org/status/683861601707884544", "indices": [32, 55]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 04:29:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684230271395172355, "text": "Slides! https://t.co/PL8GO1J5AM https://t.co/V3tH2vT1BY", "coordinates": null, "retweeted": false, "favorite_count": 31, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 24945605, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 758, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "8859592", "following": false, "friends_count": 996, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443033856724054016/SsuiT5VK.jpeg", "notifications": false, "profile_sidebar_fill_color": "8791BA", "profile_link_color": "236C3A", "geo_enabled": true, "followers_count": 6713, "location": "", "screen_name": "selenamarie", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 549, "name": "selena", "profile_use_background_image": true, "description": "Fundamentally, tomato paste offends me.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/626083465188917249/qp1YqumV_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Thu Sep 13 18:27:20 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626083465188917249/qp1YqumV_normal.jpg", "favourites_count": 16360, "status": {"retweet_count": 6, "retweeted_status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685300103423213568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/@audrey.tang/l\u2026", "url": "https://t.co/HihpLSfXJW", "expanded_url": "https://medium.com/@audrey.tang/lessons-i-ve-learned-32f5d8107e34#.utph2976y", "indices": [102, 125]}], "hashtags": [{"text": "TrollHugging", "indices": [70, 83]}], "user_mentions": [{"screen_name": "audreyt", "id_str": "7403862", "id": 7403862, "indices": [51, 59], "name": "\u5510\u9cf3"}]}, "created_at": "Fri Jan 08 03:20:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685300103423213568, "text": "People who communicate on the Internet should read @audreyt's amazing #TrollHugging post. Soak it in.\nhttps://t.co/HihpLSfXJW", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685310643390418946", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/@audrey.tang/l\u2026", "url": "https://t.co/HihpLSfXJW", "expanded_url": "https://medium.com/@audrey.tang/lessons-i-ve-learned-32f5d8107e34#.utph2976y", "indices": [113, 136]}], "hashtags": [{"text": "TrollHugging", "indices": [81, 94]}], "user_mentions": [{"screen_name": "lukec", "id_str": "852141", "id": 852141, "indices": [3, 9], "name": "Luke Closs"}, {"screen_name": "audreyt", "id_str": "7403862", "id": 7403862, "indices": [62, 70], "name": "\u5510\u9cf3"}]}, "created_at": "Fri Jan 08 04:02:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685310643390418946, "text": "RT @lukec: People who communicate on the Internet should read @audreyt's amazing #TrollHugging post. Soak it in.\nhttps://t.co/HihpLSfXJW", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 8859592, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443033856724054016/SsuiT5VK.jpeg", "statuses_count": 20525, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8859592/1353376656", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "14819854", "following": false, "friends_count": 506, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "florianjensen.com", "url": "http://t.co/UnLaQEYHjv", "expanded_url": "http://www.florianjensen.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 1196, "location": "London, UK", "screen_name": "flosoft", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 75, "name": "Florian Jensen", "profile_use_background_image": true, "description": "Community Manager at @Uber, Co-Founder @flosoftbiz & all round geek.", "url": "http://t.co/UnLaQEYHjv", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2609281578/fq9yqr33ddqf6ru6aplv_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Sun May 18 11:14:05 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2609281578/fq9yqr33ddqf6ru6aplv_normal.jpeg", "favourites_count": 334, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682644537194508293", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/_98qHmjKR-/", "url": "https://t.co/4qu6MVeo06", "expanded_url": "https://www.instagram.com/p/_98qHmjKR-/", "indices": [63, 86]}], "hashtags": [{"text": "NYE", "indices": [58, 62]}], "user_mentions": []}, "created_at": "Thu Dec 31 19:28:35 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682644537194508293, "text": "Home made sushi fusion with a few drinks to get ready for #NYE https://t.co/4qu6MVeo06", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 14819854, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 13793, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "218987642", "following": false, "friends_count": 17, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "swift.im", "url": "http://t.co/9TsTBoEq3E", "expanded_url": "http://swift.im", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 90, "location": "", "screen_name": "swift_im", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Swift IM", "profile_use_background_image": true, "description": "The free, cross-platform instant messaging client for 1:1 and Multi-User Chat on XMPP networks.", "url": "http://t.co/9TsTBoEq3E", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/595941243290591234/v3r-uipW_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Nov 23 16:54:02 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/595941243290591234/v3r-uipW_normal.png", "favourites_count": 0, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677935126404313088", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1OdqIRD", "url": "https://t.co/JVnWleLcDI", "expanded_url": "http://ift.tt/1OdqIRD", "indices": [50, 73]}], "hashtags": [{"text": "xsf", "indices": [74, 78]}, {"text": "xmpp", "indices": [79, 84]}], "user_mentions": []}, "created_at": "Fri Dec 18 19:35:04 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677935126404313088, "text": "XMPP at the end of the Google Summer of Code 2015 https://t.co/JVnWleLcDI #xsf #xmpp", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "IFTTT"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678882628548755456", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1OdqIRD", "url": "https://t.co/JVnWleLcDI", "expanded_url": "http://ift.tt/1OdqIRD", "indices": [67, 90]}], "hashtags": [{"text": "xsf", "indices": [91, 95]}, {"text": "xmpp", "indices": [96, 101]}], "user_mentions": [{"screen_name": "willsheward", "id_str": "16362966", "id": 16362966, "indices": [3, 15], "name": "Will Sheward"}]}, "created_at": "Mon Dec 21 10:20:06 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678882628548755456, "text": "RT @willsheward: XMPP at the end of the Google Summer of Code 2015 https://t.co/JVnWleLcDI #xsf #xmpp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 218987642, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 109, "profile_banner_url": "https://pbs.twimg.com/profile_banners/218987642/1429025633", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "16362966", "following": false, "friends_count": 414, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "willsheward.co.uk", "url": "http://t.co/wtqPHWkbrm", "expanded_url": "http://www.willsheward.co.uk", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000081501604/eb4cb212b29fcf123f9b03e5da4b52da.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 233, "location": "", "screen_name": "willsheward", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "Will Sheward", "profile_use_background_image": false, "description": "RSA Fellow, Marketing VP, Nerd (order is flexible).", "url": "http://t.co/wtqPHWkbrm", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/606133029938073600/dDYru-ey_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Fri Sep 19 13:14:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/606133029938073600/dDYru-ey_normal.jpg", "favourites_count": 9, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685476729222201344", "id": 685476729222201344, "text": "Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #SpellCheckNoHelp", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "SpellCheckNoHelp", "indices": [118, 135]}], "user_mentions": []}, "created_at": "Fri Jan 08 15:02:42 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16362966, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000081501604/eb4cb212b29fcf123f9b03e5da4b52da.png", "statuses_count": 1077, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16362966/1408540182", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6531812", "following": false, "friends_count": 10, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "waqas.im", "url": "http://t.co/a1CCYY1SVd", "expanded_url": "http://waqas.im", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 91, "location": "", "screen_name": "zeen", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Waqas Hussain", "profile_use_background_image": true, "description": "", "url": "http://t.co/a1CCYY1SVd", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/27003812/Make_Me_Dream_by_Track9_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sat Jun 02 23:47:27 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/27003812/Make_Me_Dream_by_Track9_normal.jpg", "favourites_count": 0, "status": {"in_reply_to_status_id": 515572670390599681, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "nginxorg", "in_reply_to_user_id": 326658079, "in_reply_to_status_id_str": "515572670390599681", "in_reply_to_user_id_str": "326658079", "truncated": false, "id_str": "515577420075008000", "id": 515577420075008000, "text": "@nginxorg Upgrading from Ubuntu Precise, but 1.1.19 is the latest precise has (with security patches applied) :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "nginxorg", "id_str": "326658079", "id": 326658079, "indices": [0, 9], "name": "nginx web server"}]}, "created_at": "Fri Sep 26 19:03:30 +0000 2014", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6531812, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 129, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "9379582", "following": false, "friends_count": 26, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ag-software.net", "url": "http://t.co/n4352o76j4", "expanded_url": "http://www.ag-software.net", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 59, "location": "Heilbronn, Germany", "screen_name": "gnauck", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Alexander Gnauck", "profile_use_background_image": true, "description": "", "url": "http://t.co/n4352o76j4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/744806595/me_small_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Oct 11 14:52:41 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/744806595/me_small_normal.jpg", "favourites_count": 2, "status": {"in_reply_to_status_id": 527483861476048896, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "gnauck", "in_reply_to_user_id": 9379582, "in_reply_to_status_id_str": "527483861476048896", "in_reply_to_user_id_str": "9379582", "truncated": false, "id_str": "527485430946885632", "id": 527485430946885632, "text": "@subsembly generell w\u00e4re is sch\u00f6n wenn man die icons selbst in der Kontenverwaltung ausw\u00e4hlen kann.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "subsembly", "id_str": "27438063", "id": 27438063, "indices": [0, 10], "name": "Subsembly GmbH"}]}, "created_at": "Wed Oct 29 15:41:41 +0000 2014", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "de"}, "default_profile_image": false, "id": 9379582, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 21, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "774512", "following": false, "friends_count": 34, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "juberti.com", "url": "https://t.co/h4RTb38Pcl", "expanded_url": "http://www.juberti.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1445, "location": "Seattle, WA", "screen_name": "juberti", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 80, "name": "Justin Uberti", "profile_use_background_image": true, "description": "Engineering Director, Google @webrtc Project. Occasional mathematician, physicist, and musician.", "url": "https://t.co/h4RTb38Pcl", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/604061024329703424/SoOxTrGQ_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Thu Feb 15 22:29:39 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604061024329703424/SoOxTrGQ_normal.jpg", "favourites_count": 190, "status": {"retweet_count": 84, "retweeted_status": {"retweet_count": 84, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685229527228755968", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 768, "h": 1024, "resize": "fit"}, "small": {"w": 340, "h": 453, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 800, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", "type": "photo", "indices": [37, 60], "media_url": "http://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", "display_url": "pic.twitter.com/p55KX1Kp0t", "id_str": "685229527128125441", "expanded_url": "http://twitter.com/BenedictEvans/status/685229527228755968/photo/1", "id": 685229527128125441, "url": "https://t.co/p55KX1Kp0t"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 22:40:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685229527228755968, "text": "Does exactly what it says on the tin https://t.co/p55KX1Kp0t", "coordinates": null, "retweeted": false, "favorite_count": 117, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685300971254071298", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 768, "h": 1024, "resize": "fit"}, "small": {"w": 340, "h": 453, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 800, "resize": "fit"}}, "source_status_id_str": "685229527228755968", "media_url": "http://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", "source_user_id_str": "1236101", "id_str": "685229527128125441", "id": 685229527128125441, "media_url_https": "https://pbs.twimg.com/media/CYJsn9oUsAEEfuP.jpg", "type": "photo", "indices": [56, 79], "source_status_id": 685229527228755968, "source_user_id": 1236101, "display_url": "pic.twitter.com/p55KX1Kp0t", "expanded_url": "http://twitter.com/BenedictEvans/status/685229527228755968/photo/1", "url": "https://t.co/p55KX1Kp0t"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BenedictEvans", "id_str": "1236101", "id": 1236101, "indices": [3, 17], "name": "Benedict Evans"}]}, "created_at": "Fri Jan 08 03:24:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685300971254071298, "text": "RT @BenedictEvans: Does exactly what it says on the tin https://t.co/p55KX1Kp0t", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 774512, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 1018, "profile_banner_url": "https://pbs.twimg.com/profile_banners/774512/1432854329", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "12431722", "following": false, "friends_count": 609, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thedistillery.eu", "url": "https://t.co/2M7b1wML4p", "expanded_url": "https://thedistillery.eu", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/53411785/400280475_bb227efcb5_o_2_.jpg", "notifications": false, "profile_sidebar_fill_color": "CF6020", "profile_link_color": "C3A440", "geo_enabled": true, "followers_count": 796, "location": "Bristol, United Kingdom", "screen_name": "matthewwilkes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 83, "name": "Matthew Wilkes", "profile_use_background_image": true, "description": "I do Python stuff. Freelance web developer Security consultant at @CodeDistillery All opinions are my own.", "url": "https://t.co/2M7b1wML4p", "profile_text_color": "05102E", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730843079/99310693aec6cee82196e5f51a798a7b_normal.png", "profile_background_color": "9AE4E8", "created_at": "Sat Jan 19 13:39:25 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BD4B0A", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730843079/99310693aec6cee82196e5f51a798a7b_normal.png", "favourites_count": 88, "status": {"in_reply_to_status_id": 683044126988853248, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/7f15dd80ac78ef40.json", "country": "United Kingdom", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-2.659936, 51.399367], [-2.510844, 51.399367], [-2.510844, 51.516387], [-2.659936, 51.516387]]], "type": "Polygon"}, "full_name": "Bristol, England", "contained_within": [], "country_code": "GB", "id": "7f15dd80ac78ef40", "name": "Bristol"}, "in_reply_to_screen_name": "optilude", "in_reply_to_user_id": 46920069, "in_reply_to_status_id_str": "683044126988853248", "in_reply_to_user_id_str": "46920069", "truncated": false, "id_str": "685148685332779008", "id": 685148685332779008, "text": "@optilude how about in python 3? Stdlib functions are a lot more opinionated about strings these days.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "optilude", "id_str": "46920069", "id": 46920069, "indices": [0, 9], "name": "Martin Aspeli"}]}, "created_at": "Thu Jan 07 17:19:10 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 12431722, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/53411785/400280475_bb227efcb5_o_2_.jpg", "statuses_count": 6686, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12431722/1353734027", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "33726908", "following": false, "friends_count": 31, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "prosody.im", "url": "http://t.co/iHKPuqb91T", "expanded_url": "http://prosody.im/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 332, "location": "", "screen_name": "prosodyim", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Prosody IM Server", "profile_use_background_image": true, "description": "Prosody IM server for Jabber/XMPP", "url": "http://t.co/iHKPuqb91T", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/149320248/prosody_favicon_128_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Apr 21 00:06:06 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/149320248/prosody_favicon_128_normal.png", "favourites_count": 54, "status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685539536974278656", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.prosody.im/prosody-0-9-9-\u2026", "url": "https://t.co/cw6o5I0WRc", "expanded_url": "http://blog.prosody.im/prosody-0-9-9-security-release/", "indices": [75, 98]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:12:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685539536974278656, "text": "Today brings an important security release (0.9.9), more info on our blog: https://t.co/cw6o5I0WRc - upgrade your servers!", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 33726908, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 93, "is_translator": false}, {"time_zone": "Casablanca", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "608341218", "following": false, "friends_count": 97, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "meetup.com/XMPP-UK-Meetup/", "url": "http://t.co/SdzITvaX", "expanded_url": "http://www.meetup.com/XMPP-UK-Meetup/", "indices": [0, 20]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 108, "location": "", "screen_name": "XMPPUK", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "XMPP UK", "profile_use_background_image": true, "description": "This group has been set up to bring together the XMPP community in the UK", "url": "http://t.co/SdzITvaX", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2914081220/48e1a36edbddd2fea4218e99e8c38d60_normal.png", "profile_background_color": "1A1B1F", "created_at": "Thu Jun 14 16:00:03 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2914081220/48e1a36edbddd2fea4218e99e8c38d60_normal.png", "favourites_count": 0, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "587687852361777153", "id": 587687852361777153, "text": "Late stragglers better hurry up, the pizza will be arriving any minute! #xmppuk", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "xmppuk", "indices": [72, 79]}], "user_mentions": []}, "created_at": "Mon Apr 13 18:44:37 +0000 2015", "source": "Hootsuite", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 608341218, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 153, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2361709040", "following": false, "friends_count": 26, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wiki.xmpp.org/web/Tech_pages\u2026", "url": "http://t.co/kRQRCIITCz", "expanded_url": "http://wiki.xmpp.org/web/Tech_pages/IoT_systems", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 140, "location": "xmpp-iot.org", "screen_name": "XMPPIoT", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "XMPP IoT", "profile_use_background_image": true, "description": "This is where things and people meet as friends using chat and XML as the interoperable language between us", "url": "http://t.co/kRQRCIITCz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/569297043978346496/OTGB6-q__normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Feb 25 22:01:14 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "sv", "profile_image_url_https": "https://pbs.twimg.com/profile_images/569297043978346496/OTGB6-q__normal.png", "favourites_count": 12, "status": {"in_reply_to_status_id": 633118767309058048, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "iotwatch", "in_reply_to_user_id": 156967608, "in_reply_to_status_id_str": "633118767309058048", "in_reply_to_user_id_str": "156967608", "truncated": false, "id_str": "633157384668639232", "id": 633157384668639232, "text": "@iotwatch @TheConfMalmo will it by any chance be recorded? +Welcome to Sweden!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "iotwatch", "id_str": "156967608", "id": 156967608, "indices": [0, 9], "name": "Alexandra D-S"}, {"screen_name": "TheConfMalmo", "id_str": "1919285113", "id": 1919285113, "indices": [10, 23], "name": "The Conference"}]}, "created_at": "Mon Aug 17 06:04:18 +0000 2015", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2361709040, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 55, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2361709040/1424566036", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "98503046", "following": false, "friends_count": 98, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fanout.io", "url": "http://t.co/7l0JDOiIiq", "expanded_url": "http://fanout.io/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 205, "location": "Mountain View", "screen_name": "jkarneges", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Justin Karneges", "profile_use_background_image": true, "description": "CEO who codes @Fanout. Open standards proponent. Consumer of olallieberries. Past: @Livefyre.", "url": "http://t.co/7l0JDOiIiq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1832138421/justin_dramatic_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 22 00:10:24 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1832138421/justin_dramatic_normal.jpg", "favourites_count": 242, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "nehanarkhede", "in_reply_to_user_id": 76561387, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "76561387", "truncated": false, "id_str": "684990590082154496", "id": 684990590082154496, "text": "@nehanarkhede Today one of the @sv_realtime members asked about Confluent. Join us at the next meetup?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "nehanarkhede", "id_str": "76561387", "id": 76561387, "indices": [0, 13], "name": "Neha Narkhede"}, {"screen_name": "sv_realtime", "id_str": "3301842547", "id": 3301842547, "indices": [31, 43], "name": "SV realtime"}]}, "created_at": "Thu Jan 07 06:50:57 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 98503046, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 485, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "199312938", "following": false, "friends_count": 53, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "briancurtin.com", "url": "http://t.co/jaSinBOMg1", "expanded_url": "http://www.briancurtin.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/734931998/241c98d3e09c9bb1e44db1c20ea28c8f.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "003279", "geo_enabled": false, "followers_count": 1248, "location": "Chicago, IL, USA", "screen_name": "brian_curtin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 105, "name": "Brian Curtin", "profile_use_background_image": true, "description": "pre-school dropout, registered talent agent", "url": "http://t.co/jaSinBOMg1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/592812626826133504/Q3TETjtv_normal.jpg", "profile_background_color": "CC0033", "created_at": "Wed Oct 06 15:10:55 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/592812626826133504/Q3TETjtv_normal.jpg", "favourites_count": 5403, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685563998729682944", "id": 685563998729682944, "text": "type for an hour, select all, delete, type \u201cI am so much better than Ken Kratz in any conceivable way,\u201d hit submit. 2015 self-eval over.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:49:29 +0000 2016", "source": "Twitter for Mac", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 199312938, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/734931998/241c98d3e09c9bb1e44db1c20ea28c8f.jpeg", "statuses_count": 11783, "profile_banner_url": "https://pbs.twimg.com/profile_banners/199312938/1398097311", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14590010", "following": false, "friends_count": 165, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ernest.ly/gpg.html", "url": "https://t.co/XUcP99arT4", "expanded_url": "https://ernest.ly/gpg.html", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 509, "location": "cleveland, oh", "screen_name": "EWDurbin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "\u1d31\u02b3\u1db0\u1d49\u02e2\u1d57 \u1d42\u22c5 \u1d30\u1d58\u02b3\u1d47\u1da6\u1db0 \u1d35\u1d35\u1d35", "profile_use_background_image": true, "description": "engineering whiz at the groundwork.", "url": "https://t.co/XUcP99arT4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638167679082192896/cKedz7FX_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 29 20:10:53 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638167679082192896/cKedz7FX_normal.jpg", "favourites_count": 10440, "status": {"in_reply_to_status_id": 685604720078139392, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/aa7defe13028d41f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-81.603358, 41.4827416], [-81.529651, 41.4827416], [-81.529651, 41.5452739], [-81.603358, 41.5452739]]], "type": "Polygon"}, "full_name": "Cleveland Heights, OH", "contained_within": [], "country_code": "US", "id": "aa7defe13028d41f", "name": "Cleveland Heights"}, "in_reply_to_screen_name": "guharakesh", "in_reply_to_user_id": 17036002, "in_reply_to_status_id_str": "685604720078139392", "in_reply_to_user_id_str": "17036002", "truncated": false, "id_str": "685604768266358784", "id": 685604768266358784, "text": "@guharakesh you eat it", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "guharakesh", "id_str": "17036002", "id": 17036002, "indices": [0, 11], "name": "Rakesh Guha"}]}, "created_at": "Fri Jan 08 23:31:29 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14590010, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 15903, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14590010/1450662282", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "89051764", "following": false, "friends_count": 358, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "adamgibbins.com", "url": "https://t.co/yMMqXBfQNe", "expanded_url": "https://www.adamgibbins.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "A80311", "geo_enabled": true, "followers_count": 235, "location": "London, England", "screen_name": "adamgibbins", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Adam Gibbins", "profile_use_background_image": true, "description": "Linux, SysAdmin, Systems, Code, Automation, Beer, Music, Coffee.\nWhoop @ Freenode\n\nRT \u2260 endorsement", "url": "https://t.co/yMMqXBfQNe", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/460418259263553536/lg_qJEtc_normal.jpeg", "profile_background_color": "131516", "created_at": "Tue Nov 10 23:26:46 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460418259263553536/lg_qJEtc_normal.jpeg", "favourites_count": 0, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685442376530182144", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "skillsmatter.com/meetups/7576-d\u2026", "url": "https://t.co/gZNYxM5Wwe", "expanded_url": "https://skillsmatter.com/meetups/7576-descale-systems-meetup", "indices": [99, 122]}], "hashtags": [], "user_mentions": [{"screen_name": "skillsmatter", "id_str": "16345873", "id": 16345873, "indices": [71, 84], "name": "Skills Matter"}]}, "created_at": "Fri Jan 08 12:46:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685442376530182144, "text": "Our next event will be on Monday 18th January! You can register on the @skillsmatter website here: https://t.co/gZNYxM5Wwe", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685525931587407873", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "skillsmatter.com/meetups/7576-d\u2026", "url": "https://t.co/gZNYxM5Wwe", "expanded_url": "https://skillsmatter.com/meetups/7576-descale-systems-meetup", "indices": [116, 139]}], "hashtags": [], "user_mentions": [{"screen_name": "descale_ldn", "id_str": "3402670426", "id": 3402670426, "indices": [3, 15], "name": "Descale"}, {"screen_name": "skillsmatter", "id_str": "16345873", "id": 16345873, "indices": [88, 101], "name": "Skills Matter"}]}, "created_at": "Fri Jan 08 18:18:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685525931587407873, "text": "RT @descale_ldn: Our next event will be on Monday 18th January! You can register on the @skillsmatter website here: https://t.co/gZNYxM5Wwe", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 89051764, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 875, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89051764/1397910318", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15926485", "following": false, "friends_count": 2646, "entities": {"description": {"urls": [{"display_url": "chef.io", "url": "http://t.co/lU81z8Xj9H", "expanded_url": "http://chef.io", "indices": [35, 57]}]}, "url": {"urls": [{"display_url": "nathenharvey.com", "url": "http://t.co/8Xbz708j4F", "expanded_url": "http://nathenharvey.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4488, "location": "Annapolis, MD USA", "screen_name": "nathenharvey", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 277, "name": "nathenharvey", "profile_use_background_image": true, "description": "VP, Community Development at Chef (http://t.co/lU81z8Xj9H)", "url": "http://t.co/8Xbz708j4F", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459018058426613760/vM4_VsIS_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Aug 21 02:11:54 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459018058426613760/vM4_VsIS_normal.png", "favourites_count": 3599, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685496670730219520", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swarmapp.com/c/3EVFABynwPf", "url": "https://t.co/Jb1kjEbMMW", "expanded_url": "https://www.swarmapp.com/c/3EVFABynwPf", "indices": [46, 69]}], "hashtags": [], "user_mentions": [{"screen_name": "chef", "id_str": "16333852", "id": 16333852, "indices": [14, 19], "name": "Chef"}, {"screen_name": "chef", "id_str": "16333852", "id": 16333852, "indices": [24, 29], "name": "Chef"}]}, "created_at": "Fri Jan 08 16:21:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [47.60204619, -122.3360862], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/300bcc6e23a88361.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.436232, 47.4953154], [-122.2249728, 47.4953154], [-122.2249728, 47.734561], [-122.436232, 47.734561]]], "type": "Polygon"}, "full_name": "Seattle, WA", "contained_within": [], "country_code": "US", "id": "300bcc6e23a88361", "name": "Seattle"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685496670730219520, "text": "Good morning, @chef (at @Chef in Seattle, WA) https://t.co/Jb1kjEbMMW", "coordinates": {"coordinates": [-122.3360862, 47.60204619], "type": "Point"}, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Foursquare"}, "default_profile_image": false, "id": 15926485, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 9823, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14065905", "following": false, "friends_count": 518, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "traceback.org", "url": "http://t.co/iq5TfPAOJX", "expanded_url": "http://traceback.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3983329/bg_twittergallery.jpg", "notifications": false, "profile_sidebar_fill_color": "232323", "profile_link_color": "58A362", "geo_enabled": true, "followers_count": 756, "location": "Cleveland, OH", "screen_name": "dstanek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 65, "name": "David Stanek", "profile_use_background_image": true, "description": "Software programmer; Racker; Husband & father; Beer drinker", "url": "http://t.co/iq5TfPAOJX", "profile_text_color": "70797D", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/58766568/headshot_normal.JPG", "profile_background_color": "3C7682", "created_at": "Sat Mar 01 18:58:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A5D0BF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/58766568/headshot_normal.JPG", "favourites_count": 783, "status": {"retweet_count": 16, "retweeted_status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685276382293786624", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", "type": "photo", "indices": [45, 68], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", "display_url": "pic.twitter.com/UXioTmxgh8", "id_str": "685276202416865281", "expanded_url": "http://twitter.com/ZAGGStudios/status/685276382293786624/video/1", "id": 685276202416865281, "url": "https://t.co/UXioTmxgh8"}], "symbols": [], "urls": [], "hashtags": [{"text": "codemash", "indices": [13, 22]}, {"text": "pong", "indices": [23, 28]}, {"text": "laserpong", "indices": [34, 44]}], "user_mentions": [{"screen_name": "GWR", "id_str": "18073623", "id": 18073623, "indices": [29, 33], "name": "GuinnessWorldRecords"}]}, "created_at": "Fri Jan 08 01:46:36 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685276382293786624, "text": "Game point!! #codemash #pong @GWR #laserpong https://t.co/UXioTmxgh8", "coordinates": null, "retweeted": false, "favorite_count": 16, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685303279610408960", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id_str": "685276382293786624", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", "source_user_id_str": "1297375447", "id_str": "685276202416865281", "id": 685276202416865281, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685276202416865281/pu/img/V_eccUTAF-Epi4kL.jpg", "type": "photo", "indices": [62, 85], "source_status_id": 685276382293786624, "source_user_id": 1297375447, "display_url": "pic.twitter.com/UXioTmxgh8", "expanded_url": "http://twitter.com/ZAGGStudios/status/685276382293786624/video/1", "url": "https://t.co/UXioTmxgh8"}], "symbols": [], "urls": [], "hashtags": [{"text": "codemash", "indices": [30, 39]}, {"text": "pong", "indices": [40, 45]}, {"text": "laserpong", "indices": [51, 61]}], "user_mentions": [{"screen_name": "ZAGGStudios", "id_str": "1297375447", "id": 1297375447, "indices": [3, 15], "name": "ZAGG Studios, Ltd."}, {"screen_name": "GWR", "id_str": "18073623", "id": 18073623, "indices": [46, 50], "name": "GuinnessWorldRecords"}]}, "created_at": "Fri Jan 08 03:33:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685303279610408960, "text": "RT @ZAGGStudios: Game point!! #codemash #pong @GWR #laserpong https://t.co/UXioTmxgh8", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 14065905, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3983329/bg_twittergallery.jpg", "statuses_count": 4386, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "170605832", "following": false, "friends_count": 1872, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/emilyrose", "url": "https://t.co/Ds54nDaamu", "expanded_url": "https://github.com/emilyrose", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/126420117/cloud_bg.jpg", "notifications": false, "profile_sidebar_fill_color": "E8F2FB", "profile_link_color": "4684A8", "geo_enabled": true, "followers_count": 3036, "location": "San Francisco, CA", "screen_name": "nexxylove", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 203, "name": "mx emily rose", "profile_use_background_image": false, "description": "hardware art, some kind of fabulous unicorn; and computing, [two-for] inspiring dark speaking. plural pronoun they; interactive electric ubiquitous hacking,", "url": "https://t.co/Ds54nDaamu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/679825275509592064/SmpGRD_1_normal.png", "profile_background_color": "1C0F1E", "created_at": "Sun Jul 25 08:04:06 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "A2C7E4", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679825275509592064/SmpGRD_1_normal.png", "favourites_count": 3606, "status": {"retweet_count": 0, "in_reply_to_user_id": 15583257, "possibly_sensitive": false, "id_str": "685521273598820352", "in_reply_to_user_id_str": "15583257", "entities": {"symbols": [], "urls": [{"display_url": "gayshamesf.org", "url": "https://t.co/BQx23L6QOb", "expanded_url": "http://gayshamesf.org", "indices": [14, 37]}], "hashtags": [], "user_mentions": [{"screen_name": "cowperthwait", "id_str": "15583257", "id": 15583257, "indices": [0, 13], "name": "Cowperthwait"}]}, "created_at": "Fri Jan 08 17:59:42 +0000 2016", "favorited": false, "in_reply_to_status_id": 685520897734623232, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": "cowperthwait", "in_reply_to_status_id_str": "685520897734623232", "truncated": false, "id": 685521273598820352, "text": "@cowperthwait https://t.co/BQx23L6QOb", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 170605832, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/126420117/cloud_bg.jpg", "statuses_count": 20258, "profile_banner_url": "https://pbs.twimg.com/profile_banners/170605832/1450918251", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14188391", "following": false, "friends_count": 693, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "benjaminwarfield.com", "url": "https://t.co/YqNb1uZbHY", "expanded_url": "http://benjaminwarfield.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865335069/ab622272f599abc2d1e2f068a47f5efa.png", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "4D8A98", "geo_enabled": true, "followers_count": 1515, "location": "Lakewood, OH", "screen_name": "benjaminws", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 117, "name": "wrongo db", "profile_use_background_image": false, "description": "just trying to use a computer", "url": "https://t.co/YqNb1uZbHY", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680913876934721538/msph0SPH_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Fri Mar 21 00:21:25 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680913876934721538/msph0SPH_normal.jpg", "favourites_count": 18241, "status": {"in_reply_to_status_id": 685482873831337984, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "benjaminws", "in_reply_to_user_id": 14188391, "in_reply_to_status_id_str": "685482873831337984", "in_reply_to_user_id_str": "14188391", "truncated": false, "id_str": "685482917909245953", "id": 685482917909245953, "text": "@benjaminws *ying", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "benjaminws", "id_str": "14188391", "id": 14188391, "indices": [0, 11], "name": "Nice segway, dude"}]}, "created_at": "Fri Jan 08 15:27:17 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14188391, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865335069/ab622272f599abc2d1e2f068a47f5efa.png", "statuses_count": 48496, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14188391/1452184250", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17177251", "following": false, "friends_count": 1939, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/pub/brian-j-br\u2026", "url": "https://t.co/LqJaTeSeNf", "expanded_url": "https://www.linkedin.com/pub/brian-j-brennan/20/28a/4a9", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/596808118752792579/I7vAKG7k.jpg", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 3808, "location": "Brooklyn, NY", "screen_name": "brianloveswords", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 245, "name": "spacer.tiff", "profile_use_background_image": true, "description": "chief garbage monster @Bocoup; figurehead @brooklyn_js; probably not three cats in a trench coat. He/him", "url": "https://t.co/LqJaTeSeNf", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678023379002253312/_hS0iDAv_normal.jpg", "profile_background_color": "352726", "created_at": "Wed Nov 05 02:16:27 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678023379002253312/_hS0iDAv_normal.jpg", "favourites_count": 18685, "status": {"in_reply_to_status_id": 685502987989561344, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.026675, 40.683935], [-73.910408, 40.683935], [-73.910408, 40.877483], [-74.026675, 40.877483]]], "type": "Polygon"}, "full_name": "Manhattan, NY", "contained_within": [], "country_code": "US", "id": "01a9a39529b27f36", "name": "Manhattan"}, "in_reply_to_screen_name": "jennschiffer", "in_reply_to_user_id": 12524622, "in_reply_to_status_id_str": "685502987989561344", "in_reply_to_user_id_str": "12524622", "truncated": false, "id_str": "685503107304914944", "id": 685503107304914944, "text": "@jennschiffer @kosamari I can't believe I missed out on this one, this is bullshit", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jennschiffer", "id_str": "12524622", "id": 12524622, "indices": [0, 13], "name": "shingyVEVO"}, {"screen_name": "kosamari", "id_str": "8470842", "id": 8470842, "indices": [14, 23], "name": "Mariko Kosaka"}]}, "created_at": "Fri Jan 08 16:47:31 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17177251, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/596808118752792579/I7vAKG7k.jpg", "statuses_count": 19085, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17177251/1440564032", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "17527655", "following": false, "friends_count": 1174, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2706, "location": "SF Bay Area", "screen_name": "sigje", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 223, "name": "Jennifer", "profile_use_background_image": true, "description": "Sparkly DevOps princess. #coffeeops #hugops practitioner, co-author Effective Devops, Agile Conf DevOps Track Chair 2016", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660204503832985600/2QtQ7d_7_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Nov 21 00:59:20 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660204503832985600/2QtQ7d_7_normal.png", "favourites_count": 28341, "status": {"in_reply_to_status_id": 685607990917922816, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "sigje", "in_reply_to_user_id": 17527655, "in_reply_to_status_id_str": "685607990917922816", "in_reply_to_user_id_str": "17527655", "truncated": false, "id_str": "685608198288506880", "id": 685608198288506880, "text": "@ashedryden @chef username at chef.io will reach me via email as well.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ashedryden", "id_str": "9510922", "id": 9510922, "indices": [0, 11], "name": "ashe"}, {"screen_name": "chef", "id_str": "16333852", "id": 16333852, "indices": [12, 17], "name": "Chef"}]}, "created_at": "Fri Jan 08 23:45:07 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17527655, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 26988, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17527655/1426924077", "is_translator": false}, {"time_zone": "Rome", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "5813712", "following": false, "friends_count": 324, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "invece.org", "url": "http://t.co/7GxMMGyAln", "expanded_url": "http://invece.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 17375, "location": "Sicily, Italy", "screen_name": "antirez", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 917, "name": "Salvatore Sanfilippo", "profile_use_background_image": true, "description": "I believe in the power of the imagination to remake the world -- J.G.Ballard", "url": "http://t.co/7GxMMGyAln", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/595630881924059138/Ah0O5bEE_normal.png", "profile_background_color": "C6E2EE", "created_at": "Sun May 06 18:34:46 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/595630881924059138/Ah0O5bEE_normal.png", "favourites_count": 2039, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685071497656987649", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "reddit.com/r/redis/commen\u2026", "url": "https://t.co/1HlK5bafCB", "expanded_url": "https://www.reddit.com/r/redis/comments/3zv85m/new_security_feature_redis_protected_mode/", "indices": [109, 132]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 12:12:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685071497656987649, "text": "The security feature for Redis that should stop, starting with Redis 3.2, most \u201cinstances left open\u201d errors: https://t.co/1HlK5bafCB", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "YoruFukurou"}, "default_profile_image": false, "id": 5813712, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 29491, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5813712/1398845907", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "1465659204", "following": false, "friends_count": 954, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bridgetkromhout.com", "url": "http://t.co/GWCuQWb6CV", "expanded_url": "http://bridgetkromhout.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 5188, "location": "Minneapolis, Minnesota", "screen_name": "bridgetkromhout", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 311, "name": "Bridget Kromhout", "profile_use_background_image": true, "description": "Principal Technologist for @cloudfoundry at @pivotal. Podcasts @arresteddevops. Organizes @devopsdays. Was ops at @DramaFever. Likes snow, bicycles, & @joelaha.", "url": "http://t.co/GWCuQWb6CV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/469973128840368128/Eud_QsXs_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue May 28 21:02:05 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469973128840368128/Eud_QsXs_normal.png", "favourites_count": 8290, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": 13640312, "possibly_sensitive": false, "id_str": "685562659257868289", "in_reply_to_user_id_str": "13640312", "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/caseywest/stat\u2026", "url": "https://t.co/ShuOreW5Il", "expanded_url": "https://twitter.com/caseywest/status/685498244319842306", "indices": [49, 72]}], "hashtags": [{"text": "codemash", "indices": [39, 48]}], "user_mentions": []}, "created_at": "Fri Jan 08 20:44:09 +0000 2016", "favorited": false, "in_reply_to_status_id": 685498244319842306, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "caseywest", "in_reply_to_status_id_str": "685498244319842306", "truncated": false, "id": 685562659257868289, "text": "Let\u2019s get this party started. Salon E! #codemash https://t.co/ShuOreW5Il", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Tweetbot for i\u039fS"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685564695659466755", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/caseywest/stat\u2026", "url": "https://t.co/ShuOreW5Il", "expanded_url": "https://twitter.com/caseywest/status/685498244319842306", "indices": [64, 87]}], "hashtags": [{"text": "codemash", "indices": [54, 63]}], "user_mentions": [{"screen_name": "caseywest", "id_str": "13640312", "id": 13640312, "indices": [3, 13], "name": "Casey West"}]}, "created_at": "Fri Jan 08 20:52:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685564695659466755, "text": "RT @caseywest: Let\u2019s get this party started. Salon E! #codemash https://t.co/ShuOreW5Il", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1465659204, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 9388, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1465659204/1402021840", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "36823", "following": false, "friends_count": 3648, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "anildash.com", "url": "https://t.co/DGlCONxUGJ", "expanded_url": "http://anildash.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378252063/dark-floral-pattern.jpg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "800080", "geo_enabled": true, "followers_count": 573880, "location": "NYC: 40.739069,-73.987082", "screen_name": "anildash", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 7811, "name": "Anil Dash", "profile_use_background_image": true, "description": "The only person who's ever been retweeted by Prince, Bill Gates, @katies, AvaDuvernay and the White House. Working to make tech & the tech industry more humane.", "url": "https://t.co/DGlCONxUGJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678402398981775361/xeju7Lqg_normal.jpg", "profile_background_color": "131516", "created_at": "Sat Dec 02 09:15:15 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678402398981775361/xeju7Lqg_normal.jpg", "favourites_count": 284118, "status": {"in_reply_to_status_id": 685566764630028288, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ev", "in_reply_to_user_id": 20, "in_reply_to_status_id_str": "685566764630028288", "in_reply_to_user_id_str": "20", "truncated": false, "id_str": "685567450923036673", "id": 685567450923036673, "text": "@ev so what would you do to change it? It's good to have meat alternatives, but how would you change policy?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ev", "id_str": "20", "id": 20, "indices": [0, 3], "name": "Ev Williams"}]}, "created_at": "Fri Jan 08 21:03:12 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 36823, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378252063/dark-floral-pattern.jpg", "statuses_count": 105807, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36823/1444532685", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18713", "following": false, "friends_count": 405, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "al3x.net", "url": "https://t.co/BwDqELWAp7", "expanded_url": "https://al3x.net/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "C3CBD0", "profile_link_color": "336699", "geo_enabled": true, "followers_count": 41125, "location": "Portland, OR", "screen_name": "al3x", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 2596, "name": "Alex Payne", "profile_use_background_image": false, "description": "'the human person, who is animal, fantasist, and computer combined' \u2013 Yi-Fu Tuan", "url": "https://t.co/BwDqELWAp7", "profile_text_color": "232323", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/513088789585993728/s1DnFxP6_normal.jpeg", "profile_background_color": "E5E9EB", "created_at": "Thu Nov 23 19:29:11 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "333333", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/513088789585993728/s1DnFxP6_normal.jpeg", "favourites_count": 11217, "status": {"in_reply_to_status_id": 685585927486345216, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "tinysubversions", "in_reply_to_user_id": 14475298, "in_reply_to_status_id_str": "685585927486345216", "in_reply_to_user_id_str": "14475298", "truncated": false, "id_str": "685591516803252224", "id": 685591516803252224, "text": "@tinysubversions it isn't good though so you're fine", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tinysubversions", "id_str": "14475298", "id": 14475298, "indices": [0, 16], "name": "Darius Kazemi"}]}, "created_at": "Fri Jan 08 22:38:49 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18713, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 30006, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18713/1451501144", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1186", "following": false, "friends_count": 3538, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chrismessina.me", "url": "https://t.co/JIhVYXdY5s", "expanded_url": "http://chrismessina.me", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/86425594/xd76c913111e2caa58f9257eadc3f4b0.png", "notifications": false, "profile_sidebar_fill_color": "F1F1F1", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 79615, "location": "San Francisco", "screen_name": "chrismessina", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 3961, "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e", "profile_use_background_image": false, "description": "Developer Experience Lead at @Uber. Friend to startups, inventor of the hashtag, former Googler, and proud participant in the open source/open web communities.", "url": "https://t.co/JIhVYXdY5s", "profile_text_color": "444444", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624387887665016832/xS9_Z8YF_normal.jpg", "profile_background_color": "CF290C", "created_at": "Sun Jul 16 06:53:48 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "868686", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624387887665016832/xS9_Z8YF_normal.jpg", "favourites_count": 7924, "status": {"retweet_count": 0, "in_reply_to_user_id": 9729502, "possibly_sensitive": false, "id_str": "685606649793359872", "in_reply_to_user_id_str": "9729502", "entities": {"symbols": [], "urls": [{"display_url": "j.mp/Stln", "url": "https://t.co/eLPm24nG5F", "expanded_url": "http://j.mp/Stln", "indices": [86, 109]}], "hashtags": [{"text": "StolenOnStolen", "indices": [70, 85]}, {"text": "meta", "indices": [110, 115]}], "user_mentions": [{"screen_name": "travisk", "id_str": "9729502", "id": 9729502, "indices": [0, 8], "name": "travis kalanick"}, {"screen_name": "alexpriest", "id_str": "7604502", "id": 7604502, "indices": [31, 42], "name": "Alex Priest"}, {"screen_name": "getstolen", "id_str": "3255100813", "id": 3255100813, "indices": [58, 68], "name": "Stolen!"}]}, "created_at": "Fri Jan 08 23:38:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "travisk", "in_reply_to_status_id_str": null, "truncated": false, "id": 685606649793359872, "text": "@travisk I just stole you from @alexpriest for 430,660 on @getstolen. #StolenOnStolen https://t.co/eLPm24nG5F #meta", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1186, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/86425594/xd76c913111e2caa58f9257eadc3f4b0.png", "statuses_count": 28662, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1186/1447013497", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "260044118", "following": false, "friends_count": 367, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "beero.ps", "url": "http://t.co/3SOVRwGCJL", "expanded_url": "http://beero.ps", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459436144204079104/LPeVolRt.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "33003F", "geo_enabled": false, "followers_count": 5706, "location": "Brooklyn", "screen_name": "beerops", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 344, "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 sdo\u0279\u0259\u0259q", "profile_use_background_image": true, "description": "Senior sparkly ops witch @Etsy, 10X engiqueer, full stack cat lady, homebrewer, climber, aspiring cellist, purple-haired face-metal cabalist, yarn sorceress.", "url": "http://t.co/3SOVRwGCJL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/646467659505250305/MGdBkS8o_normal.png", "profile_background_color": "131516", "created_at": "Thu Mar 03 02:54:14 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/646467659505250305/MGdBkS8o_normal.png", "favourites_count": 6646, "status": {"retweet_count": 6, "retweeted_status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597446962024448", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "etsy.com/careers/job/ol\u2026", "url": "https://t.co/pP1zKTvYt1", "expanded_url": "https://www.etsy.com/careers/job/olOn2fwi", "indices": [77, 100]}], "hashtags": [], "user_mentions": [{"screen_name": "Etsy", "id_str": "11522502", "id": 11522502, "indices": [46, 51], "name": "Etsy"}]}, "created_at": "Fri Jan 08 23:02:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597446962024448, "text": "We're hiring a second PM for the Data team at @Etsy. RT if you like data. ;) https://t.co/pP1zKTvYt1", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607423445479425", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "etsy.com/careers/job/ol\u2026", "url": "https://t.co/pP1zKTvYt1", "expanded_url": "https://www.etsy.com/careers/job/olOn2fwi", "indices": [91, 114]}], "hashtags": [], "user_mentions": [{"screen_name": "gianelli", "id_str": "15745226", "id": 15745226, "indices": [3, 12], "name": "Gabrielle Gianelli"}, {"screen_name": "Etsy", "id_str": "11522502", "id": 11522502, "indices": [60, 65], "name": "Etsy"}]}, "created_at": "Fri Jan 08 23:42:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607423445479425, "text": "RT @gianelli: We're hiring a second PM for the Data team at @Etsy. RT if you like data. ;) https://t.co/pP1zKTvYt1", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Talon Plus"}, "default_profile_image": false, "id": 260044118, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459436144204079104/LPeVolRt.jpeg", "statuses_count": 15122, "profile_banner_url": "https://pbs.twimg.com/profile_banners/260044118/1442965095", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14584629", "following": false, "friends_count": 279, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "waynewitzel.com", "url": "https://t.co/Mbxe3QilXq", "expanded_url": "http://waynewitzel.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/405496748/xa3298200db2865c4d4fde02dc99255e.jpg", "notifications": false, "profile_sidebar_fill_color": "1D1D1D", "profile_link_color": "892DD8", "geo_enabled": true, "followers_count": 303, "location": "Durham, NC", "screen_name": "wwitzel3", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Wayne Witzel III", "profile_use_background_image": true, "description": "Software Engineer at Ansible", "url": "https://t.co/Mbxe3QilXq", "profile_text_color": "D4D4D4", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/441524995898888192/MQ-MtfFj_normal.jpeg", "profile_background_color": "8C8B91", "created_at": "Tue Apr 29 13:40:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "68FA04", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/441524995898888192/MQ-MtfFj_normal.jpeg", "favourites_count": 222, "status": {"in_reply_to_status_id": 685121455311306752, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "katco_", "in_reply_to_user_id": 27390972, "in_reply_to_status_id_str": "685121455311306752", "in_reply_to_user_id_str": "27390972", "truncated": false, "id_str": "685124219701751809", "id": 685124219701751809, "text": "@katco_ it reads more emo than intended, I meant, people already just scan and reply and it's only 140. It will only get worse.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "katco_", "id_str": "27390972", "id": 27390972, "indices": [0, 7], "name": "Katherine Cox-Buday"}]}, "created_at": "Thu Jan 07 15:41:57 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14584629, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/405496748/xa3298200db2865c4d4fde02dc99255e.jpg", "statuses_count": 3199, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "63615426", "following": false, "friends_count": 1624, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jonathan.sh/dont-trust-you\u2026", "url": "http://t.co/BL7L2iFse2", "expanded_url": "http://jonathan.sh/dont-trust-your-cat", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000182485660/cTNCO6Dr.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "7E5C40", "geo_enabled": true, "followers_count": 2896, "location": "kepler-452b", "screen_name": "jonathanmarvens", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 157, "name": "jojo", "profile_use_background_image": true, "description": "haitian. hacker. engineer @ @npmjs. feminist. i \u2764\ufe0f systems hacking, database theory, and distributed systems. apple juice is bae. be you. believe in yourself.", "url": "http://t.co/BL7L2iFse2", "profile_text_color": "EA8418", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666069166445694977/kQEiUvl2_normal.png", "profile_background_color": "1677AB", "created_at": "Fri Aug 07 02:31:51 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666069166445694977/kQEiUvl2_normal.png", "favourites_count": 16025, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612789080178688", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/kosamari/statu\u2026", "url": "https://t.co/9WdptnI9Q1", "expanded_url": "https://twitter.com/kosamari/status/685527140801101824", "indices": [107, 130]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:03:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612789080178688, "text": "LOL. I love when programmers straight up lie like this just to make themselves feel better. Such bullshit. https://t.co/9WdptnI9Q1", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 63615426, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000182485660/cTNCO6Dr.jpeg", "statuses_count": 14245, "profile_banner_url": "https://pbs.twimg.com/profile_banners/63615426/1451830598", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "784984", "following": false, "friends_count": 1615, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "info.sean808080.com", "url": "http://t.co/LqvKkV53nu", "expanded_url": "http://info.sean808080.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2591707/headstockstar25-full.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 1785, "location": "Schooleys Mountain, New Jersey", "screen_name": "sean808080", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 121, "name": "sean808080", "profile_use_background_image": true, "description": "Dad (with @kcmphoto ) to Neo iOS App Developer (MBA & PMP), Child Of Deaf Adults, Amateur (Ham) Radio Op: KC2NEO Work Twitter: @adaptIOTech", "url": "http://t.co/LqvKkV53nu", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641238036529967104/7mk0oLjI_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Feb 21 00:22:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641238036529967104/7mk0oLjI_normal.jpg", "favourites_count": 812, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685482512030777344", "id": 685482512030777344, "text": "Take Action:Urge Congress to Support the Amateur Radio Parity Act #hamradio", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "hamradio", "indices": [67, 76]}], "user_mentions": []}, "created_at": "Fri Jan 08 15:25:41 +0000 2016", "source": "Mobile Web", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 784984, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2591707/headstockstar25-full.jpg", "statuses_count": 31641, "profile_banner_url": "https://pbs.twimg.com/profile_banners/784984/1403000347", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "246", "following": false, "friends_count": 1516, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "poetica.com", "url": "https://t.co/h9i4CuXdVd", "expanded_url": "https://poetica.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/232/bg2.png", "notifications": false, "profile_sidebar_fill_color": "91B7FF", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 14448, "location": "London, UK", "screen_name": "blaine", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 574, "name": "Blaine Cook", "profile_use_background_image": true, "description": "Sociotechnologist. Social solutions for technological problems. CTO / Co-founder at @Poetica. Founding Engineer at @Twitter.", "url": "https://t.co/h9i4CuXdVd", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/14022002/171593560_00e00bc7c9_normal.jpg", "profile_background_color": "E1EFFF", "created_at": "Wed May 03 18:52:57 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "4485BC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/14022002/171593560_00e00bc7c9_normal.jpg", "favourites_count": 6282, "status": {"in_reply_to_status_id": 685488126316249088, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "rwchambliss", "in_reply_to_user_id": 207818606, "in_reply_to_status_id_str": "685488126316249088", "in_reply_to_user_id_str": "207818606", "truncated": false, "id_str": "685490751707443200", "id": 685490751707443200, "text": "@rwchambliss @lifewinning \"that's no coconut\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "rwchambliss", "id_str": "207818606", "id": 207818606, "indices": [0, 12], "name": "Wayne Chambliss"}, {"screen_name": "lifewinning", "id_str": "348082699", "id": 348082699, "indices": [13, 25], "name": "Ingrid Burrington"}]}, "created_at": "Fri Jan 08 15:58:25 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 246, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/232/bg2.png", "statuses_count": 13219, "profile_banner_url": "https://pbs.twimg.com/profile_banners/246/1415700195", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1704421", "following": false, "friends_count": 310, "entities": {"description": {"urls": [{"display_url": "github.com/telehash", "url": "http://t.co/WG9TNV59NM", "expanded_url": "http://github.com/telehash", "indices": [19, 41]}]}, "url": {"urls": [{"display_url": "jeremie.com/-", "url": "http://t.co/EAUy42gm1g", "expanded_url": "http://jeremie.com/-", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572330404/lks4grrmlrjifjbgl64h.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 2762, "location": "Denver, CO", "screen_name": "jeremie", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 199, "name": "Jeremie Miller", "profile_use_background_image": false, "description": "Currently building http://t.co/WG9TNV59NM. Helped create Jabber/XMPP, open communication platforms FTW!", "url": "http://t.co/EAUy42gm1g", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/565991047/jer_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 21 02:44:51 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/565991047/jer_normal.jpg", "favourites_count": 319, "status": {"retweet_count": 0, "in_reply_to_user_id": 10402702, "possibly_sensitive": false, "id_str": "678235898148839424", "in_reply_to_user_id_str": "10402702", "entities": {"symbols": [], "urls": [{"display_url": "github.com/telehash/teleh\u2026", "url": "https://t.co/ij70iPpd62", "expanded_url": "http://github.com/telehash/telehash.org/", "indices": [120, 143]}], "hashtags": [], "user_mentions": [{"screen_name": "elimisteve", "id_str": "10402702", "id": 10402702, "indices": [0, 11], "name": "Steven Phillips"}, {"screen_name": "telehash", "id_str": "101790678", "id": 101790678, "indices": [12, 21], "name": "telehash"}]}, "created_at": "Sat Dec 19 15:30:13 +0000 2015", "favorited": false, "in_reply_to_status_id": 678216259591208964, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/58fe996bbe3a4048.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-104.96747, 39.783752], [-104.771597, 39.783752], [-104.771597, 39.922981], [-104.96747, 39.922981]]], "type": "Polygon"}, "full_name": "Commerce City, CO", "contained_within": [], "country_code": "US", "id": "58fe996bbe3a4048", "name": "Commerce City"}, "in_reply_to_screen_name": "elimisteve", "in_reply_to_status_id_str": "678216259591208964", "truncated": false, "id": 678235898148839424, "text": "@elimisteve @telehash setting up the channel does, I'd recommend using github issues for q&a if you're up for that? https://t.co/ij70iPpd62", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1704421, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572330404/lks4grrmlrjifjbgl64h.jpeg", "statuses_count": 1953, "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1384891", "following": false, "friends_count": 664, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "metajack.im", "url": "http://t.co/367pPJxfkU", "expanded_url": "http://metajack.im", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "CC3366", "geo_enabled": false, "followers_count": 2145, "location": "Albuquerque, NM", "screen_name": "metajack", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 178, "name": "Jack Moffitt", "profile_use_background_image": true, "description": "Senior Research Engineer at Mozilla. I work on Servo, Daala, and Rust.", "url": "http://t.co/367pPJxfkU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/29013962/Photo_7_normal.jpg", "profile_background_color": "DBE9ED", "created_at": "Sun Mar 18 00:14:42 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBE9ED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/29013962/Photo_7_normal.jpg", "favourites_count": 345, "status": {"in_reply_to_status_id": 629781107802701825, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "seanlinsley", "in_reply_to_user_id": 1169544588, "in_reply_to_status_id_str": "629781107802701825", "in_reply_to_user_id_str": "1169544588", "truncated": false, "id_str": "665277971914076160", "id": 665277971914076160, "text": "@seanlinsley @outreachy @christi3k We are! @lastontheboat is reviewing applications and I believe we will one starting in December", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "seanlinsley", "id_str": "1169544588", "id": 1169544588, "indices": [0, 12], "name": "Sean \u270f\ufe0f"}, {"screen_name": "outreachy", "id_str": "2800780073", "id": 2800780073, "indices": [13, 23], "name": "FOSS Outreach"}, {"screen_name": "christi3k", "id_str": "14111858", "id": 14111858, "indices": [24, 34], "name": "Christie Koehler"}, {"screen_name": "lastontheboat", "id_str": "47735734", "id": 47735734, "indices": [43, 57], "name": "Josh Matthews"}]}, "created_at": "Fri Nov 13 21:20:03 +0000 2015", "source": "Twitter Web Client", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1384891, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "statuses_count": 2516, "is_translator": false}, {"time_zone": "Brussels", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "803083", "following": false, "friends_count": 130, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "el-tramo.be", "url": "https://t.co/rPMuAs3JDi", "expanded_url": "https://el-tramo.be", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 332, "location": "Belgium", "screen_name": "remko", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 34, "name": "Remko Tron\u00e7on", "profile_use_background_image": true, "description": "Software \u00b7 Music \u00b7 BookWidgets", "url": "https://t.co/rPMuAs3JDi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1577244530/remko_normal.jpeg", "profile_background_color": "022330", "created_at": "Thu Mar 01 08:33:39 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1577244530/remko_normal.jpeg", "favourites_count": 511, "status": {"in_reply_to_status_id": 684842439480311810, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "remko", "in_reply_to_user_id": 803083, "in_reply_to_status_id_str": "684842439480311810", "in_reply_to_user_id_str": "803083", "truncated": false, "id_str": "684843286993985536", "id": 684843286993985536, "text": "@steven_odb Zijn we hopelijk snel van die fb-me en tweetlonger links af. Slechte (lange) content wordt sowieso afgestraft zou ik denken", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "steven_odb", "id_str": "227627337", "id": 227627337, "indices": [0, 11], "name": "Steven Op de beeck"}]}, "created_at": "Wed Jan 06 21:05:38 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "nl"}, "default_profile_image": false, "id": 803083, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 1995, "profile_banner_url": "https://pbs.twimg.com/profile_banners/803083/1347996309", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "101143", "following": false, "friends_count": 153, "entities": {"description": {"urls": [{"display_url": "monarchyllc.com", "url": "http://t.co/x480TwaG8Q", "expanded_url": "http://monarchyllc.com", "indices": [43, 65]}]}, "url": {"urls": [{"display_url": "alexking.org", "url": "http://t.co/4ugwz2gZBx", "expanded_url": "http://alexking.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "EAEAFC", "profile_link_color": "556699", "geo_enabled": false, "followers_count": 9073, "location": "Denver, CO", "screen_name": "alexkingorg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 721, "name": "Alex King", "profile_use_background_image": false, "description": "Denver independent web developer/designer (http://t.co/x480TwaG8Q), original contributor to @wordpress, creator of the Share Icon.", "url": "http://t.co/4ugwz2gZBx", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/457969928658624512/ILGIK1Un_normal.jpeg", "profile_background_color": "8899CC", "created_at": "Thu Dec 21 08:19:38 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/457969928658624512/ILGIK1Un_normal.jpeg", "favourites_count": 2872, "status": {"retweet_count": 147, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "636283117070749697", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "alexking.org/?p=22017", "url": "http://t.co/jA7t269OvT", "expanded_url": "http://alexking.org/?p=22017", "indices": [59, 81]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Aug 25 21:04:51 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 636283117070749697, "text": "Dear WordPress community folks, I have a favor to ask you. http://t.co/jA7t269OvT", "coordinates": null, "retweeted": false, "favorite_count": 69, "contributors": null, "source": "Social Proxy by Mailchimp"}, "default_profile_image": false, "id": 101143, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5595, "profile_banner_url": "https://pbs.twimg.com/profile_banners/101143/1398017193", "is_translator": false}, {"time_zone": "Brussels", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "9676412", "following": false, "friends_count": 1665, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eschnou.com", "url": "https://t.co/OQ62SUYsDf", "expanded_url": "https://eschnou.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "006399", "geo_enabled": true, "followers_count": 1985, "location": "Belgium", "screen_name": "eschnou", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 164, "name": "Laurent Eschenauer", "profile_use_background_image": false, "description": "Entrepreneur, tech geek & rock climber. Founder and CEO of @gofleye. Inventing the future of consumer drones. Falling in love with hardware startups.", "url": "https://t.co/OQ62SUYsDf", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/433686519694360576/sH22Mvnq_normal.jpeg", "profile_background_color": "000000", "created_at": "Thu Oct 25 05:49:08 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/433686519694360576/sH22Mvnq_normal.jpeg", "favourites_count": 476, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "OliverHeldens", "in_reply_to_user_id": 256569627, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "256569627", "truncated": false, "id_str": "683020255581593600", "id": 683020255581593600, "text": "@OliverHeldens The Christmas disco mix is awesome! I'll be at Omnia tomorrow and hope you will squeeze a few of these jewels in the mix :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "OliverHeldens", "id_str": "256569627", "id": 256569627, "indices": [0, 14], "name": "Oliver Heldens"}]}, "created_at": "Fri Jan 01 20:21:33 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9676412, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5843, "profile_banner_url": "https://pbs.twimg.com/profile_banners/9676412/1398885593", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "6592342", "following": false, "friends_count": 36, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "matthewwild.co.uk", "url": "http://t.co/hLZKuW1Cda", "expanded_url": "http://matthewwild.co.uk/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 126, "location": "UK", "screen_name": "MattJ", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Matthew Wild", "profile_use_background_image": true, "description": "", "url": "http://t.co/hLZKuW1Cda", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2332299377/owtmwxsi0xfbl7kva0fw_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Tue Jun 05 12:12:14 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2332299377/owtmwxsi0xfbl7kva0fw_normal.jpeg", "favourites_count": 14, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "674354353139032069", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pledgemusic.com/projects/thefa\u2026", "url": "https://t.co/hSsZm5pF0p", "expanded_url": "http://www.pledgemusic.com/projects/thefairrain?utm_campaign=project11425", "indices": [48, 71]}], "hashtags": [], "user_mentions": [{"screen_name": "PledgeMusic", "id_str": "34278049", "id": 34278049, "indices": [76, 88], "name": "PledgeMusic"}]}, "created_at": "Tue Dec 08 22:26:21 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 674354353139032069, "text": "The Fair Rain: Behind The Glass - Album Release https://t.co/hSsZm5pF0p via @pledgemusic", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 6592342, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 350, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6592342/1411719451", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "1711171", "following": false, "friends_count": 1484, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "peterkeane.com", "url": "http://t.co/4gOwSPULxD", "expanded_url": "http://peterkeane.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 852, "location": "N 30\u00b018' 0'' / W 97\u00b042' 0''", "screen_name": "pkeane", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 51, "name": "Peter Keane", "profile_use_background_image": true, "description": "Software Engineer at Etsy", "url": "http://t.co/4gOwSPULxD", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/634320167/Photo_35_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Mar 21 04:17:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634320167/Photo_35_normal.jpg", "favourites_count": 1323, "status": {"retweet_count": 9, "retweeted_status": {"retweet_count": 9, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "675072183119556608", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 465, "h": 119, "resize": "fit"}, "medium": {"w": 465, "h": 119, "resize": "fit"}, "thumb": {"w": 150, "h": 119, "resize": "crop"}, "small": {"w": 340, "h": 87, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", "type": "photo", "indices": [39, 62], "media_url": "http://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", "display_url": "pic.twitter.com/PJyoJQh1UU", "id_str": "675072182612029440", "expanded_url": "http://twitter.com/skrug/status/675072183119556608/photo/1", "id": 675072182612029440, "url": "https://t.co/PJyoJQh1UU"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 10 21:58:45 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675072183119556608, "text": "But it does make you...happier, right? https://t.co/PJyoJQh1UU", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "675770880652353536", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 465, "h": 119, "resize": "fit"}, "medium": {"w": 465, "h": 119, "resize": "fit"}, "thumb": {"w": 150, "h": 119, "resize": "crop"}, "small": {"w": 340, "h": 87, "resize": "fit"}}, "source_status_id_str": "675072183119556608", "media_url": "http://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", "source_user_id_str": "18544024", "id_str": "675072182612029440", "id": 675072182612029440, "media_url_https": "https://pbs.twimg.com/media/CV5WkspWcAAkVFx.png", "type": "photo", "indices": [50, 73], "source_status_id": 675072183119556608, "source_user_id": 18544024, "display_url": "pic.twitter.com/PJyoJQh1UU", "expanded_url": "http://twitter.com/skrug/status/675072183119556608/photo/1", "url": "https://t.co/PJyoJQh1UU"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "skrug", "id_str": "18544024", "id": 18544024, "indices": [3, 9], "name": "Steve Krug"}]}, "created_at": "Sat Dec 12 20:15:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675770880652353536, "text": "RT @skrug: But it does make you...happier, right? https://t.co/PJyoJQh1UU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1711171, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4827, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "26306597", "following": false, "friends_count": 79, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 353, "location": "", "screen_name": "rlbarnes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Richard Barnes", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3086983852/4b1788dbacf96c683b042f04515a239f_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Mar 24 19:44:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3086983852/4b1788dbacf96c683b042f04515a239f_normal.jpeg", "favourites_count": 102, "status": {"in_reply_to_status_id": 685511371643998208, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "lorenzoFB", "in_reply_to_user_id": 55643029, "in_reply_to_status_id_str": "685511371643998208", "in_reply_to_user_id_str": "55643029", "truncated": false, "id_str": "685542062075199489", "id": 685542062075199489, "text": "@lorenzoFB @HTTPSEverywhere @motherboard @bcrypt But why are you holding it back from everyone else?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lorenzoFB", "id_str": "55643029", "id": 55643029, "indices": [0, 10], "name": "Lorenzo Franceschi-B"}, {"screen_name": "HTTPSEverywhere", "id_str": "2243440136", "id": 2243440136, "indices": [11, 27], "name": "HTTPS Everywhere"}, {"screen_name": "motherboard", "id_str": "56510427", "id": 56510427, "indices": [28, 40], "name": "Motherboard"}, {"screen_name": "bcrypt", "id_str": "968881477", "id": 968881477, "indices": [41, 48], "name": "yan"}]}, "created_at": "Fri Jan 08 19:22:19 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 26306597, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 372, "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "40691407", "following": false, "friends_count": 148, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jitsi.org", "url": "https://t.co/pf8hKet9PU", "expanded_url": "https://jitsi.org", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 351, "location": "France", "screen_name": "emilivov", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Emil Ivov", "profile_use_background_image": true, "description": "Jitsi Project Lead", "url": "https://t.co/pf8hKet9PU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456109009158692865/QEvN0Vnz_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun May 17 16:53:12 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456109009158692865/QEvN0Vnz_normal.png", "favourites_count": 55, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "662417254835875840", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", "display_url": "pic.twitter.com/l9giFod0rz", "id_str": "662417252508024833", "expanded_url": "http://twitter.com/sreuter/status/662417254835875840/photo/1", "id": 662417252508024833, "url": "https://t.co/l9giFod0rz"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Nov 05 23:52:35 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 662417254835875840, "text": "WOW - Mike just announced enso.me to the world, a huge team effort I'm super excited to be a part of. Check it out! https://t.co/l9giFod0rz", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "662654329053163520", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "662417254835875840", "media_url": "http://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", "source_user_id_str": "11101892", "id_str": "662417252508024833", "id": 662417252508024833, "media_url_https": "https://pbs.twimg.com/media/CTFg-0TUwAEjSF8.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 662417254835875840, "source_user_id": 11101892, "display_url": "pic.twitter.com/l9giFod0rz", "expanded_url": "http://twitter.com/sreuter/status/662417254835875840/photo/1", "url": "https://t.co/l9giFod0rz"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "sreuter", "id_str": "11101892", "id": 11101892, "indices": [3, 11], "name": "Sascha Reuter"}]}, "created_at": "Fri Nov 06 15:34:38 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 662654329053163520, "text": "RT @sreuter: WOW - Mike just announced enso.me to the world, a huge team effort I'm super excited to be a part of. Check it out! https://t.\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 40691407, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 111, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15094432", "following": false, "friends_count": 672, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1798, "location": "Seattle, WA", "screen_name": "hillbrad", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 110, "name": "hillbrad", "profile_use_background_image": true, "description": "Security Engineer @Facebook, WebAppSec WG Chair @w3c, (former) contributor @FIDOAlliance. This personal account does not speak on behalf of my affiliations.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/517056894750306305/Mzx4Y1aH_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 12 07:24:54 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517056894750306305/Mzx4Y1aH_normal.jpeg", "favourites_count": 1549, "status": {"in_reply_to_status_id": 685199689008967680, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "pkedrosky", "in_reply_to_user_id": 1717291, "in_reply_to_status_id_str": "685199689008967680", "in_reply_to_user_id_str": "1717291", "truncated": false, "id_str": "685201241916346368", "id": 685201241916346368, "text": "@pkedrosky SUVs", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "pkedrosky", "id_str": "1717291", "id": 1717291, "indices": [0, 10], "name": "Paul Kedrosky"}]}, "created_at": "Thu Jan 07 20:48:01 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15094432, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4091, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15094432/1365202222", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "301147914", "following": false, "friends_count": 35775, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "yesworld.com", "url": "http://t.co/0TJR0Qpqnk", "expanded_url": "http://yesworld.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/572531738488737792/EYRLja2w.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "647839", "geo_enabled": true, "followers_count": 68659, "location": "London, GB", "screen_name": "yesofficial", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1039, "name": "yesofficial", "profile_use_background_image": true, "description": "English Progressive Rock Band 45 yrs, 20 studio albums. Currently Jon Davison vocal, Billy Sherwood bass, Steve Howe guitar, Alan White drums, Geoff Downes keys", "url": "http://t.co/0TJR0Qpqnk", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/672487004744130573/bH2k3ZXR_normal.jpg", "profile_background_color": "FFDE01", "created_at": "Wed May 18 23:47:04 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672487004744130573/bH2k3ZXR_normal.jpg", "favourites_count": 6, "status": {"retweet_count": 21, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684766382957830144", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "soundcloud.com/jon-kirkman/be\u2026", "url": "https://t.co/oTJghrDjGZ", "expanded_url": "https://soundcloud.com/jon-kirkman/benoit-illness", "indices": [62, 85]}], "hashtags": [{"text": "YESdialogue", "indices": [86, 98]}], "user_mentions": []}, "created_at": "Wed Jan 06 16:00:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684766382957830144, "text": "Benoit David Discusses The Illness That Forced Him Out Of Yes\nhttps://t.co/oTJghrDjGZ\n#YESdialogue", "coordinates": null, "retweeted": false, "favorite_count": 19, "contributors": null, "source": "Sprout Social"}, "default_profile_image": false, "id": 301147914, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/572531738488737792/EYRLja2w.jpeg", "statuses_count": 3095, "profile_banner_url": "https://pbs.twimg.com/profile_banners/301147914/1449168357", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "133870619", "following": false, "friends_count": 208, "entities": {"description": {"urls": [{"display_url": "xmpp.net", "url": "http://t.co/Hbv99jdQe1", "expanded_url": "http://xmpp.net", "indices": [38, 60]}]}, "url": {"urls": [{"display_url": "blog.thijsalkema.de", "url": "https://t.co/wXva8FRFq7", "expanded_url": "https://blog.thijsalkema.de", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 281, "location": "The Netherlands", "screen_name": "xnyhps", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Thijs Alkemade", "profile_use_background_image": true, "description": "Lead developer of Adium. | Creator of http://t.co/Hbv99jdQe1", "url": "https://t.co/wXva8FRFq7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/900392103/avatar_nieuw_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Apr 16 21:26:53 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900392103/avatar_nieuw_normal.png", "favourites_count": 9, "status": {"in_reply_to_status_id": 677106028379398144, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "patio11", "in_reply_to_user_id": 20844341, "in_reply_to_status_id_str": "677106028379398144", "in_reply_to_user_id_str": "20844341", "truncated": false, "id_str": "677117426392301568", "id": 677117426392301568, "text": "@patio11 Was really close with 4, needed another 15 minutes at most. Then... error 502.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "patio11", "id_str": "20844341", "id": 20844341, "indices": [0, 8], "name": "Patrick McKenzie"}]}, "created_at": "Wed Dec 16 13:25:49 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 133870619, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 175, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "15320027", "following": false, "friends_count": 375, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bettercallsaghul.com", "url": "http://t.co/PXagcRYI5h", "expanded_url": "http://bettercallsaghul.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2327, "location": "Amsterdam, NL", "screen_name": "saghul", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 114, "name": "Sa\u00fal Ibarra Corretg\u00e9", "profile_use_background_image": true, "description": "SIP, XMPP, VoIP, presence and IM lover, geek, Pythonista, geek again! libuv Core Janitor.", "url": "http://t.co/PXagcRYI5h", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/56248414/saghul-avatar_normal.png", "profile_background_color": "022330", "created_at": "Fri Jul 04 18:48:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/56248414/saghul-avatar_normal.png", "favourites_count": 696, "status": {"retweet_count": 16, "retweeted_status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685441345893208065", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "matt.sh/howto-c", "url": "https://t.co/Rz8KT0lAHS", "expanded_url": "https://matt.sh/howto-c", "indices": [20, 43]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 12:42:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685441345893208065, "text": "How to C in 2016... https://t.co/Rz8KT0lAHS", "coordinates": null, "retweeted": false, "favorite_count": 18, "contributors": null, "source": "Hacker News Bot"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685449912478253056", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "matt.sh/howto-c", "url": "https://t.co/Rz8KT0lAHS", "expanded_url": "https://matt.sh/howto-c", "indices": [39, 62]}], "hashtags": [], "user_mentions": [{"screen_name": "hackernewsbot", "id_str": "19575586", "id": 19575586, "indices": [3, 17], "name": "Hacker News Bot"}]}, "created_at": "Fri Jan 08 13:16:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685449912478253056, "text": "RT @hackernewsbot: How to C in 2016... https://t.co/Rz8KT0lAHS", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 15320027, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 18369, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7365272", "following": false, "friends_count": 218, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "synapse.com", "url": "http://t.co/XBlAjHevlw", "expanded_url": "http://www.synapse.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2378908/IMG_2793.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "17B404", "geo_enabled": true, "followers_count": 469, "location": "Seattle, WA", "screen_name": "packet", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "Rachel Blackman", "profile_use_background_image": true, "description": "Engineer, Synapster, former Trillian developer, writer, and photographer in Seattle. My rather more active gaming account is at @Packetdancer", "url": "http://t.co/XBlAjHevlw", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/422962683/ffsparks-new_normal.png", "profile_background_color": "7D0B0B", "created_at": "Tue Jul 10 06:42:44 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/422962683/ffsparks-new_normal.png", "favourites_count": 26, "status": {"retweet_count": 2, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "673983965150056448", "id": 673983965150056448, "text": "A dystopian novel: #Jira becomes self-aware and decides the most efficient workflow is one where humans can't use Jira b/c they're extinct.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Jira", "indices": [19, 24]}], "user_mentions": []}, "created_at": "Mon Dec 07 21:54:33 +0000 2015", "source": "TweetDeck", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "674023141824311296", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Jira", "indices": [37, 42]}], "user_mentions": [{"screen_name": "brandonlrice", "id_str": "195917376", "id": 195917376, "indices": [3, 16], "name": "Brandon Rice"}]}, "created_at": "Tue Dec 08 00:30:14 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 674023141824311296, "text": "RT @brandonlrice: A dystopian novel: #Jira becomes self-aware and decides the most efficient workflow is one where humans can't use Jira b/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 7365272, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2378908/IMG_2793.jpg", "statuses_count": 4588, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14833631", "following": false, "friends_count": 91, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "babelmonkeys.de", "url": "http://t.co/RdH1yHuIzA", "expanded_url": "http://babelmonkeys.de", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 89, "location": "H\u00fcrth", "screen_name": "florob", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Florian Zeitz", "profile_use_background_image": true, "description": "", "url": "http://t.co/RdH1yHuIzA", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/639151006002118656/x-PrqJSV_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon May 19 15:13:04 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639151006002118656/x-PrqJSV_normal.jpg", "favourites_count": 51, "status": {"in_reply_to_status_id": 685598035083149312, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MieMaMeise", "in_reply_to_user_id": 41142991, "in_reply_to_status_id_str": "685598035083149312", "in_reply_to_user_id_str": "41142991", "truncated": false, "id_str": "685604050684002304", "id": 685604050684002304, "text": "@MieMaMeise Way out in the water, see it swimming.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MieMaMeise", "id_str": "41142991", "id": 41142991, "indices": [0, 11], "name": "meise"}]}, "created_at": "Fri Jan 08 23:28:38 +0000 2016", "source": "Tweetian for Sailfish OS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14833631, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 683, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14833631/1441058352", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1877954299", "following": false, "friends_count": 191, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 243, "location": "", "screen_name": "KathleeMoriarty", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Kathleen Moriarty", "profile_use_background_image": true, "description": "Currently serving as Security Area Director for the IETF, works for EMC, swimmer & occassional triathlete. Views presented are mine and not that of my employer.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000472218251/d8cb0b440b5ecdcff7c2d7e263b5f6e9_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 18 03:46:19 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000472218251/d8cb0b440b5ecdcff7c2d7e263b5f6e9_normal.jpeg", "favourites_count": 160, "status": {"in_reply_to_status_id": 674758150830952448, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "RobinHoodCoop", "in_reply_to_user_id": 1101058794, "in_reply_to_status_id_str": "674758150830952448", "in_reply_to_user_id_str": "1101058794", "truncated": false, "id_str": "674794795546603520", "id": 674794795546603520, "text": "@robinhoodcoop was in a pool with about 20 people swimming laps. I think you have the wrong Kathleen.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "RobinHoodCoop", "id_str": "1101058794", "id": 1101058794, "indices": [0, 14], "name": "Robin Hood Co-op"}]}, "created_at": "Thu Dec 10 03:36:30 +0000 2015", "source": "Mobile Web (M2)", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1877954299, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 314, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "182439750", "following": false, "friends_count": 233, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "countingfromzero.wordpress.com", "url": "http://t.co/YkuTNBXKW0", "expanded_url": "http://countingfromzero.wordpress.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 940, "location": "St. Louis", "screen_name": "alanbjohnston", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 53, "name": "Alan B. Johnston", "profile_use_background_image": true, "description": "WebRTC, SIP, and VoIP subject matter expert, author of 'Counting from Zero' technothriller and WebRTC book, lecturer, robotics mentor, traveler.", "url": "http://t.co/YkuTNBXKW0", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2664154555/5e200b8e6aec0af53649f9bf752ba5ea_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Aug 24 16:09:53 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2664154555/5e200b8e6aec0af53649f9bf752ba5ea_normal.jpeg", "favourites_count": 23, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684489120886833156", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "letsencrypt.org/howitworks/", "url": "https://t.co/5e4yLkkWNM", "expanded_url": "https://letsencrypt.org/howitworks/", "indices": [115, 138]}], "hashtags": [], "user_mentions": [{"screen_name": "letsencrypt", "id_str": "2887837801", "id": 2887837801, "indices": [89, 101], "name": "Let's Encrypt"}]}, "created_at": "Tue Jan 05 21:38:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684489120886833156, "text": "First accomplishment of the new year: generating and installing a free certificate using @letsencrypt! Here's how: https://t.co/5e4yLkkWNM", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 182439750, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 481, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3339171", "following": false, "friends_count": 2827, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "doc.searls.com", "url": "http://t.co/wxYeU4br7d", "expanded_url": "http://doc.searls.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2032212/sunset2.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 22677, "location": "SBA, BOS, JFK, EWR, SFO, LHR", "screen_name": "dsearls", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2033, "name": "Doc Searls", "profile_use_background_image": true, "description": "Author of The Intention Economy, co-author of The Cluetrain Manifesto, variously connected with stuff at Harvard, NYU and UCSB.", "url": "http://t.co/wxYeU4br7d", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1250175157/headshot_blackshirt_5_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Apr 03 16:47:00 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1250175157/headshot_blackshirt_5_normal.jpg", "favourites_count": 12, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685569248886849536", "id": 685569248886849536, "text": "Looking for a quant who works in adtech. DM me or write my first name at my last name. Thanks!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:10:20 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3339171, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2032212/sunset2.jpg", "statuses_count": 9968, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3339171/1365217514", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "20695117", "following": false, "friends_count": 934, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "learnfromlisa.com", "url": "http://t.co/DPUhcQg5zq", "expanded_url": "http://learnfromlisa.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/723030511/a6edfb7e3d68e87264874ca185a65dd1.jpeg", "notifications": false, "profile_sidebar_fill_color": "1C1C1C", "profile_link_color": "3544F0", "geo_enabled": false, "followers_count": 2629, "location": "ny", "screen_name": "lisamarienyc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 197, "name": "Lisa Larson-Kelley", "profile_use_background_image": true, "description": "Online video, realtime communication consultant + tech writer + trainer. Building bridges across the chasms of technology #WebRTC #HTML5 #Flash #Prezi #Canva", "url": "http://t.co/DPUhcQg5zq", "profile_text_color": "5C91B9", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/938820826/lisa14_360x499_normal.jpg", "profile_background_color": "C0DCF1", "created_at": "Thu Feb 12 17:22:26 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/938820826/lisa14_360x499_normal.jpg", "favourites_count": 905, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685550799561166848", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/canva/status/6\u2026", "url": "https://t.co/oJqyvaJDJv", "expanded_url": "https://twitter.com/canva/status/685476147258388480", "indices": [87, 110]}], "hashtags": [{"text": "socialmedia", "indices": [57, 69]}, {"text": "calltoaction", "indices": [70, 83]}], "user_mentions": [{"screen_name": "canva", "id_str": "36542528", "id": 36542528, "indices": [50, 56], "name": "Canva"}]}, "created_at": "Fri Jan 08 19:57:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685550799561166848, "text": "Oh hey ya'll - here's another article I wrote for @canva #socialmedia #calltoaction :) https://t.co/oJqyvaJDJv", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685552779033735169", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/canva/status/6\u2026", "url": "https://t.co/oJqyvaJDJv", "expanded_url": "https://twitter.com/canva/status/685476147258388480", "indices": [107, 130]}], "hashtags": [{"text": "socialmedia", "indices": [77, 89]}, {"text": "calltoaction", "indices": [90, 103]}], "user_mentions": [{"screen_name": "colorcodedlife", "id_str": "621464045", "id": 621464045, "indices": [3, 18], "name": "Amanda O."}, {"screen_name": "canva", "id_str": "36542528", "id": 36542528, "indices": [70, 76], "name": "Canva"}]}, "created_at": "Fri Jan 08 20:04:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685552779033735169, "text": "RT @colorcodedlife: Oh hey ya'll - here's another article I wrote for @canva #socialmedia #calltoaction :) https://t.co/oJqyvaJDJv", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 20695117, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/723030511/a6edfb7e3d68e87264874ca185a65dd1.jpeg", "statuses_count": 3108, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20695117/1444750692", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7515742", "following": false, "friends_count": 493, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brycebaril.com", "url": "https://t.co/9cLztF736X", "expanded_url": "http://brycebaril.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000099677531/145a49179b3c082ca3d09165b1459bc7.jpeg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 1509, "location": "Kepler-452b", "screen_name": "brycebaril", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 77, "name": "Bryce Baril", "profile_use_background_image": true, "description": "Nothing Is Sacred", "url": "https://t.co/9cLztF736X", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685184829365682176/piZBuQV7_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Mon Jul 16 20:31:48 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685184829365682176/piZBuQV7_normal.jpg", "favourites_count": 3793, "status": {"in_reply_to_status_id": 685561201112174592, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.7900653, 45.421863], [-122.471751, 45.421863], [-122.471751, 45.6509405], [-122.7900653, 45.6509405]]], "type": "Polygon"}, "full_name": "Portland, OR", "contained_within": [], "country_code": "US", "id": "ac88a4f17a51c7fc", "name": "Portland"}, "in_reply_to_screen_name": "andychilton", "in_reply_to_user_id": 10802172, "in_reply_to_status_id_str": "685561201112174592", "in_reply_to_user_id_str": "10802172", "truncated": false, "id_str": "685565590765830144", "id": 685565590765830144, "text": "@andychilton Is it the weird frog feet? Otherwise I'm not seeing it", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "andychilton", "id_str": "10802172", "id": 10802172, "indices": [0, 12], "name": "\u2605 Andrew Chilton \u2605"}]}, "created_at": "Fri Jan 08 20:55:48 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 7515742, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000099677531/145a49179b3c082ca3d09165b1459bc7.jpeg", "statuses_count": 6334, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7515742/1444065911", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1736231", "following": false, "friends_count": 123, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lnxwolf.deviantart.com", "url": "http://t.co/dDDP2NZ1kJ", "expanded_url": "http://lnxwolf.deviantart.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "A52A2A", "geo_enabled": false, "followers_count": 97, "location": "Denver, CO, USA", "screen_name": "linuxwolf", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Matt Miller", "profile_use_background_image": false, "description": "XMPP specialist, JOSE enthusiast, frequent prankster, occasional sketch artist. Opinions expressed are my own.", "url": "http://t.co/dDDP2NZ1kJ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/615915426032152576/PhNZJjWw_normal.png", "profile_background_color": "000000", "created_at": "Wed Mar 21 11:46:48 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/615915426032152576/PhNZJjWw_normal.png", "favourites_count": 66, "status": {"retweet_count": 3655, "retweeted_status": {"retweet_count": 3655, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685508824132890624", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 192, "resize": "fit"}, "medium": {"w": 600, "h": 339, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 580, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", "type": "photo", "indices": [112, 135], "media_url": "http://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", "display_url": "pic.twitter.com/JXBm1L674A", "id_str": "685508823856058369", "expanded_url": "http://twitter.com/TheOnion/status/685508824132890624/photo/1", "id": 685508823856058369, "url": "https://t.co/JXBm1L674A"}], "symbols": [], "urls": [{"display_url": "onion.com/1OUGJGn", "url": "https://t.co/bRphMHDNYZ", "expanded_url": "http://onion.com/1OUGJGn", "indices": [88, 111]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:10:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685508824132890624, "text": "Chicago Police Department To Monitor All Interactions With Public Using New Bullet Cams https://t.co/bRphMHDNYZ https://t.co/JXBm1L674A", "coordinates": null, "retweeted": false, "favorite_count": 4847, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685533439668293632", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 192, "resize": "fit"}, "medium": {"w": 600, "h": 339, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 580, "resize": "fit"}}, "source_status_id_str": "685508824132890624", "media_url": "http://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", "source_user_id_str": "14075928", "id_str": "685508823856058369", "id": 685508823856058369, "media_url_https": "https://pbs.twimg.com/media/CYNqpLBWEAEB1vG.jpg", "type": "photo", "indices": [126, 140], "source_status_id": 685508824132890624, "source_user_id": 14075928, "display_url": "pic.twitter.com/JXBm1L674A", "expanded_url": "http://twitter.com/TheOnion/status/685508824132890624/photo/1", "url": "https://t.co/JXBm1L674A"}], "symbols": [], "urls": [{"display_url": "onion.com/1OUGJGn", "url": "https://t.co/bRphMHDNYZ", "expanded_url": "http://onion.com/1OUGJGn", "indices": [102, 125]}], "hashtags": [], "user_mentions": [{"screen_name": "TheOnion", "id_str": "14075928", "id": 14075928, "indices": [3, 12], "name": "The Onion"}]}, "created_at": "Fri Jan 08 18:48:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685533439668293632, "text": "RT @TheOnion: Chicago Police Department To Monitor All Interactions With Public Using New Bullet Cams https://t.co/bRphMHDNYZ https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1736231, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 579, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "17722582", "following": false, "friends_count": 214, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "keithnerdin.com", "url": "http://t.co/vSNXnHLQjo", "expanded_url": "http://keithnerdin.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/800154636/62c08bdf00cdf5a40aa30be085f06945.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "B23600", "geo_enabled": true, "followers_count": 419, "location": "Walla Walla, WA", "screen_name": "keithnerdin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Keith Nerdin", "profile_use_background_image": true, "description": "Growth Strategist & Happiness Coach | Founder of EmberFuel", "url": "http://t.co/vSNXnHLQjo", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657029521812549632/CMjv-ByO_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Fri Nov 28 23:20:40 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657029521812549632/CMjv-ByO_normal.jpg", "favourites_count": 3985, "status": {"in_reply_to_status_id": 657280036735725568, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "TechStud", "in_reply_to_user_id": 13000552, "in_reply_to_status_id_str": "657280036735725568", "in_reply_to_user_id_str": "13000552", "truncated": false, "id_str": "657286735194275840", "id": 657286735194275840, "text": "@TechStud I would love to Jason. Just getting the wheels turning on this but excited at the response/support it's receiving!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "TechStud", "id_str": "13000552", "id": 13000552, "indices": [0, 9], "name": "Jason Clarke"}]}, "created_at": "Thu Oct 22 20:05:44 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17722582, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/800154636/62c08bdf00cdf5a40aa30be085f06945.jpeg", "statuses_count": 5064, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17722582/1436248487", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2412227593", "following": false, "friends_count": 128, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "xmpp.org", "url": "http://t.co/WeHoWeNdEN", "expanded_url": "http://xmpp.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 546, "location": "", "screen_name": "xmpp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "XMPP", "profile_use_background_image": false, "description": "XMPP Standards Foundation. Promoting open communication.", "url": "http://t.co/WeHoWeNdEN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/448737500681342976/Pvd3o6p0_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Mar 26 07:26:50 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/448737500681342976/Pvd3o6p0_normal.png", "favourites_count": 0, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "631008981348126720", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wiki.xmpp.org/web/index.php?\u2026", "url": "http://t.co/FtRXTLyfz8", "expanded_url": "http://wiki.xmpp.org/web/index.php?title=Myths", "indices": [63, 85]}], "hashtags": [{"text": "xmpp", "indices": [17, 22]}], "user_mentions": [{"screen_name": "lloydwatkin", "id_str": "46902840", "id": 46902840, "indices": [3, 15], "name": "\uff2c\u03b9\uff4f\u04ae\u0110 \u0461\u03b1\uff54\u03ba\u13a5\u0274"}, {"screen_name": "DwdDave", "id_str": "1846739046", "id": 1846739046, "indices": [53, 61], "name": "Dave Cridland"}]}, "created_at": "Tue Aug 11 07:47:19 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 631008981348126720, "text": "RT @lloydwatkin: #xmpp myths as expertly debunked by @DwdDave http://t.co/FtRXTLyfz8", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 2412227593, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 74, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "317608274", "following": false, "friends_count": 118, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "erik-ralston.com", "url": "http://t.co/Fg4KmdcIQv", "expanded_url": "http://erik-ralston.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/565398127/darkdenim3.png", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 392, "location": "Tri-Cities, WA", "screen_name": "ErikRalston", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Erik Ralston", "profile_use_background_image": true, "description": "Team Lead & Technical Architect at @LiveTilesUI - Co-Founder at @FuseSPC Coworking - Web & Mobile Developer - Tri-Citizen", "url": "http://t.co/Fg4KmdcIQv", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000221107759/6e6d7c3e45ad15ace6c8f1653ce25b8d_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Wed Jun 15 05:45:49 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000221107759/6e6d7c3e45ad15ace6c8f1653ce25b8d_normal.jpeg", "favourites_count": 1176, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685533930947149824", "id": 685533930947149824, "text": "Unlike John Mayer, I'm not waiting for anything", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:50:00 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 317608274, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/565398127/darkdenim3.png", "statuses_count": 3859, "profile_banner_url": "https://pbs.twimg.com/profile_banners/317608274/1413250836", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "813333008", "following": false, "friends_count": 982, "entities": {"description": {"urls": [{"display_url": "codepen.io/sdras/", "url": "https://t.co/GCxUOGLXFI", "expanded_url": "http://codepen.io/sdras/", "indices": [116, 139]}]}, "url": {"urls": [{"display_url": "sarahdrasnerdesign.com", "url": "https://t.co/pr1NhYaDta", "expanded_url": "http://sarahdrasnerdesign.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458960512647041024/brIv5N37.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "4A9B85", "geo_enabled": false, "followers_count": 5045, "location": "San Francisco, California", "screen_name": "sarah_edo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 282, "name": "Sarah Drasner", "profile_use_background_image": true, "description": "Award-winning Senior UX Engineer. Works at Trulia (Zillow), staff writer @Real_CSS_Tricks, obsessed with animation: https://t.co/GCxUOGLXFI", "url": "https://t.co/pr1NhYaDta", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/613162577426817024/Lmi8X5tT_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Sep 09 15:24:34 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/613162577426817024/Lmi8X5tT_normal.jpg", "favourites_count": 14201, "status": {"in_reply_to_status_id": 685495149410041856, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "rachsmithtweets", "in_reply_to_user_id": 22354434, "in_reply_to_status_id_str": "685495149410041856", "in_reply_to_user_id_str": "22354434", "truncated": false, "id_str": "685496016238333953", "id": 685496016238333953, "text": "@rachsmithtweets niiiiiice", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "rachsmithtweets", "id_str": "22354434", "id": 22354434, "indices": [0, 16], "name": "Rach Smith"}]}, "created_at": "Fri Jan 08 16:19:20 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 813333008, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458960512647041024/brIv5N37.png", "statuses_count": 8317, "profile_banner_url": "https://pbs.twimg.com/profile_banners/813333008/1434927146", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1618974036", "following": false, "friends_count": 60, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 25, "location": "My House", "screen_name": "bentleyjensen", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Bentley Jensen", "profile_use_background_image": true, "description": "Noob, Wannabe ethical hacker, Student of the JavaScipts, Plbth", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000183664024/de29446106bf77e4f11506df0925604c_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Jul 25 01:03:24 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000183664024/de29446106bf77e4f11506df0925604c_normal.jpeg", "favourites_count": 5, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "537297305779441665", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "goo.gl/gqv62l", "url": "http://t.co/I3b6sCiBh1", "expanded_url": "http://goo.gl/gqv62l", "indices": [67, 89]}, {"display_url": "noisetrade.com/sleepingatlast\u2026", "url": "http://t.co/oGq3bNDqkA", "expanded_url": "http://noisetrade.com/sleepingatlast/christmas-collection-2014", "indices": [90, 112]}], "hashtags": [], "user_mentions": [{"screen_name": "missfelony", "id_str": "404215418", "id": 404215418, "indices": [45, 56], "name": "melanie"}]}, "created_at": "Tue Nov 25 17:30:34 +0000 2014", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 537297305779441665, "text": "Fell in love with Sleepng At Last becuase of @missfelony 's tweet.\nhttp://t.co/I3b6sCiBh1\nhttp://t.co/oGq3bNDqkA\nGreat music.", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1618974036, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 17, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16414798", "following": false, "friends_count": 304, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "betwixt.is", "url": "https://t.co/wlXSNm9xLH", "expanded_url": "http://betwixt.is", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/642085241746685952/wG70Gviw.png", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "F84E57", "geo_enabled": false, "followers_count": 2614, "location": "Central District, Seattle, WA", "screen_name": "erinanacker", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 111, "name": "Erin Anacker", "profile_use_background_image": false, "description": "Designer-Client Matchmaker @betwixters \u2014\u00a0connecting companies with the *right* designer for their project(s).\n\nLatte lover. Curious mind. Adventure seeker.", "url": "https://t.co/wlXSNm9xLH", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/508374599474495489/yqe-6E1Q_normal.jpeg", "profile_background_color": "AFE1D8", "created_at": "Tue Sep 23 03:29:40 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/508374599474495489/yqe-6E1Q_normal.jpeg", "favourites_count": 4167, "status": {"in_reply_to_status_id": 685133200222453760, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "isaseminega", "in_reply_to_user_id": 86705900, "in_reply_to_status_id_str": "685133200222453760", "in_reply_to_user_id_str": "86705900", "truncated": false, "id_str": "685195205213949952", "id": 685195205213949952, "text": "@isaseminega Thank you much! I too am happy about it\u2014it feels easeful and exciting!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "isaseminega", "id_str": "86705900", "id": 86705900, "indices": [0, 12], "name": "Isa Seminega"}]}, "created_at": "Thu Jan 07 20:24:01 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16414798, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/642085241746685952/wG70Gviw.png", "statuses_count": 12660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16414798/1407267007", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "21660394", "following": false, "friends_count": 996, "entities": {"description": {"urls": [{"display_url": "webrtchacks.com/about/c", "url": "http://t.co/8pClsQk3fj", "expanded_url": "http://webrtchacks.com/about/c", "indices": [118, 140]}]}, "url": {"urls": [{"display_url": "webrtchacks.com", "url": "https://t.co/iP08XsmqRI", "expanded_url": "https://webrtchacks.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 1194, "location": "Cambridge, Massachusetts", "screen_name": "chadwallacehart", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 38, "name": "Chad Hart", "profile_use_background_image": false, "description": "Consultant & webrtcHacks editor. I tweet about: WebRTC, Telco-Apps, JavaScript, drones, telcos trying to change More: http://t.co/8pClsQk3fj", "url": "https://t.co/iP08XsmqRI", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/585427961966235648/wobp557l_normal.png", "profile_background_color": "000000", "created_at": "Mon Feb 23 15:29:41 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585427961966235648/wobp557l_normal.png", "favourites_count": 252, "status": {"in_reply_to_status_id": 684825083265855488, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "murillo", "in_reply_to_user_id": 13157732, "in_reply_to_status_id_str": "684825083265855488", "in_reply_to_user_id_str": "13157732", "truncated": false, "id_str": "685467568589697025", "id": 685467568589697025, "text": "@murillo what do you consider \"real innovation\" wrt webrtc? anything?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "murillo", "id_str": "13157732", "id": 13157732, "indices": [0, 8], "name": "Sergio GarciaMurillo"}]}, "created_at": "Fri Jan 08 14:26:18 +0000 2016", "source": "TweetDeck", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 21660394, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1381, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21660394/1437706466", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14171076", "following": false, "friends_count": 398, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "imaginator.com", "url": "http://t.co/uCdcr2itUV", "expanded_url": "http://imaginator.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 235, "location": "Lead-lined bunker of doom.", "screen_name": "imaginator", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "imaginator", "profile_use_background_image": true, "description": "@buddycloud CEO", "url": "http://t.co/uCdcr2itUV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/506638667482292225/Q7pqzzFj_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Mar 18 17:15:25 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/506638667482292225/Q7pqzzFj_normal.jpeg", "favourites_count": 56, "status": {"retweet_count": 955, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 955, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "677658844504436737", "id": 677658844504436737, "text": "Big companies desperately hoping for blockchain without Bitcoin is exactly like 1994: Can't we please have online without Internet?? \ud83d\ude00", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Dec 18 01:17:13 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 920, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "677792395329740800", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "pmarca", "id_str": "5943622", "id": 5943622, "indices": [3, 10], "name": "Marc Andreessen"}]}, "created_at": "Fri Dec 18 10:07:54 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677792395329740800, "text": "RT @pmarca: Big companies desperately hoping for blockchain without Bitcoin is exactly like 1994: Can't we please have online without Inter\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14171076, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1189, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14125871", "following": false, "friends_count": 303, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "allenpike.com", "url": "http://t.co/o920H3nKse", "expanded_url": "http://allenpike.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "924FB3", "geo_enabled": true, "followers_count": 3371, "location": "Vancouver, BC", "screen_name": "apike", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 238, "name": "Allen Pike", "profile_use_background_image": false, "description": "I run @steamclocksw, where we make apps from pixels to code. I also do tech events like @vancouvercocoa and @vanjs, and a podcast, @upupshow.", "url": "http://t.co/o920H3nKse", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458726741821751296/Ndfb--nh_normal.jpeg", "profile_background_color": "EAEAEA", "created_at": "Tue Mar 11 17:45:37 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458726741821751296/Ndfb--nh_normal.jpeg", "favourites_count": 2566, "status": {"in_reply_to_status_id": 684095477319516160, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "classam", "in_reply_to_user_id": 14689667, "in_reply_to_status_id_str": "684095477319516160", "in_reply_to_user_id_str": "14689667", "truncated": false, "id_str": "684161717069197312", "id": 684161717069197312, "text": "@classam It looks like there\u2019s some organization in the top left, notes in the middle, and in the top right there\u2019s some piece of garbage?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "classam", "id_str": "14689667", "id": 14689667, "indices": [0, 8], "name": "Cube Drone"}]}, "created_at": "Mon Jan 04 23:57:19 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14125871, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 6116, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14125871/1398202842", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2396994720", "following": false, "friends_count": 16, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ampersandjs.com", "url": "http://t.co/Va4YGmPfKR", "expanded_url": "http://ampersandjs.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 734, "location": "The Tech Republic", "screen_name": "AmpersandJS", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "AmpersandJS", "profile_use_background_image": false, "description": "A modern, loosely coupled non-frameworky framework for client-side apps.", "url": "http://t.co/Va4YGmPfKR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/481865813909991424/pmwBlTsY_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 19 00:46:58 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/481865813909991424/pmwBlTsY_normal.png", "favourites_count": 11, "status": {"in_reply_to_status_id": 666807594997149698, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "thurmSR", "in_reply_to_user_id": 1513508101, "in_reply_to_status_id_str": "666807594997149698", "in_reply_to_user_id_str": "1513508101", "truncated": false, "id_str": "667476158426955776", "id": 667476158426955776, "text": "@thurmSR \ud83d\ude4f please let us know what you think.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thurmSR", "id_str": "1513508101", "id": 1513508101, "indices": [0, 8], "name": "Sara Thurman"}]}, "created_at": "Thu Nov 19 22:54:51 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2396994720, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 87, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2396994720/1403720848", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "372270760", "following": false, "friends_count": 1203, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "yesmusicpodcast.com", "url": "http://t.co/Hiy6pihoFs", "expanded_url": "http://www.yesmusicpodcast.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328929204/x7ecf846c097202463d1644c774a6cd1.png", "notifications": false, "profile_sidebar_fill_color": "CFDFB0", "profile_link_color": "81B996", "geo_enabled": false, "followers_count": 1307, "location": "Caesar's Palace", "screen_name": "YesMusicPodcast", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Kevin Mulryne (YMP)", "profile_use_background_image": true, "description": "Subscribe for free and join me in my exploration of the greatest progressive rock band of all time", "url": "http://t.co/Hiy6pihoFs", "profile_text_color": "2C636A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662019383619952640/i1a6b2i8_normal.jpg", "profile_background_color": "08407D", "created_at": "Mon Sep 12 13:26:44 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FDFED2", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662019383619952640/i1a6b2i8_normal.jpg", "favourites_count": 94, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685582705405353984", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOt0mvWMAAeg73.jpg", "type": "photo", "indices": [97, 120], "media_url": "http://pbs.twimg.com/media/CYOt0mvWMAAeg73.jpg", "display_url": "pic.twitter.com/TwBZFFcsXn", "id_str": "685582687554383872", "expanded_url": "http://twitter.com/YesMusicPodcast/status/685582705405353984/photo/1", "id": 685582687554383872, "url": "https://t.co/TwBZFFcsXn"}], "symbols": [], "urls": [{"display_url": "mulryne.com/yesmusicpodcas\u2026", "url": "https://t.co/cCpI4iXrIJ", "expanded_url": "http://mulryne.com/yesmusicpodcast/abwh-live-at-the-nec-october-24th-1989-part-1-208/", "indices": [25, 48]}], "hashtags": [{"text": "prog", "indices": [81, 86]}, {"text": "progrock", "indices": [87, 96]}], "user_mentions": [{"screen_name": "YesMusicPodcast", "id_str": "372270760", "id": 372270760, "indices": [49, 65], "name": "Kevin Mulryne (YMP)"}, {"screen_name": "GrumpyOldRick", "id_str": "371413088", "id": 371413088, "indices": [66, 80], "name": "Rick Wakeman"}]}, "created_at": "Fri Jan 08 22:03:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685582705405353984, "text": "ABWH Live at the NEC pt1 https://t.co/cCpI4iXrIJ @YesMusicPodcast @GrumpyOldRick #prog #progrock https://t.co/TwBZFFcsXn", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 372270760, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328929204/x7ecf846c097202463d1644c774a6cd1.png", "statuses_count": 7335, "profile_banner_url": "https://pbs.twimg.com/profile_banners/372270760/1397679137", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5834802", "following": false, "friends_count": 569, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/chriswendt", "url": "http://t.co/GBDlQ1XcKQ", "expanded_url": "http://about.me/chriswendt", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/664734789/d2d83d45a0448950200b62eeb5a21f0e.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 126, "location": "Philly", "screen_name": "chriswendt", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Chris Wendt", "profile_use_background_image": true, "description": "expert in his field", "url": "http://t.co/GBDlQ1XcKQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000820762587/3a86ef8a5aee129e039eb617b16b5552_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon May 07 15:03:19 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000820762587/3a86ef8a5aee129e039eb617b16b5552_normal.jpeg", "favourites_count": 10, "status": {"retweet_count": 30, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 30, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "680621492858687488", "id": 680621492858687488, "text": "\ud83c\udfb6 O Christmas tree\nO Christmas tree\nWe chop you down\nAnd decorate your corpse \ud83c\udfb6", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Dec 26 05:29:43 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 87, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "680728434327293954", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "anildash", "id_str": "36823", "id": 36823, "indices": [3, 12], "name": "Anil Dash"}]}, "created_at": "Sat Dec 26 12:34:40 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 680728434327293954, "text": "RT @anildash: \ud83c\udfb6 O Christmas tree\nO Christmas tree\nWe chop you down\nAnd decorate your corpse \ud83c\udfb6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 5834802, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/664734789/d2d83d45a0448950200b62eeb5a21f0e.png", "statuses_count": 308, "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "6944742", "following": false, "friends_count": 249, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/mbrevoort", "url": "https://t.co/Kb9J7pgN8D", "expanded_url": "http://about.me/mbrevoort", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "D42D2D", "geo_enabled": false, "followers_count": 985, "location": "Castle Rock, CO", "screen_name": "mbrevoort", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 103, "name": "Mike Brevoort", "profile_use_background_image": true, "description": "founder of @beepboophq / CTO - USA @robotsnpencils", "url": "https://t.co/Kb9J7pgN8D", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667136481312411648/rVt8APjF_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Jun 19 23:28:12 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667136481312411648/rVt8APjF_normal.jpg", "favourites_count": 1036, "status": {"in_reply_to_status_id": 685320673275719680, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "afhill", "in_reply_to_user_id": 1752371, "in_reply_to_status_id_str": "685320673275719680", "in_reply_to_user_id_str": "1752371", "truncated": false, "id_str": "685322033224261632", "id": 685322033224261632, "text": "@afhill hi there, would love to! Please don't submit to product hunt, we'll be \"launching\" for real soon \ud83d\ude2c", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "afhill", "id_str": "1752371", "id": 1752371, "indices": [0, 7], "name": "Andrea Hill"}]}, "created_at": "Fri Jan 08 04:48:00 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6944742, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 6309, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6944742/1413860087", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "6557062", "following": false, "friends_count": 1697, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "robotsandpencils.com", "url": "http://t.co/NJATCHFUNK", "expanded_url": "http://robotsandpencils.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2919428/twiiter_back_2.jpg", "notifications": false, "profile_sidebar_fill_color": "FFCF02", "profile_link_color": "212136", "geo_enabled": true, "followers_count": 2774, "location": "Calgary, London, Austin", "screen_name": "mjsikorsky", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 180, "name": "Michael J. Sikorsky", "profile_use_background_image": true, "description": "Chief Robot @ Robots and Pencils Inc. see: @PencilCaseHQ - Hypercard for iOS.", "url": "http://t.co/NJATCHFUNK", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/468936530623356928/IR-UQ-wi_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Mon Jun 04 00:30:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "776130", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/468936530623356928/IR-UQ-wi_normal.jpeg", "favourites_count": 2212, "status": {"retweet_count": 21, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 21, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685552976472178689", "id": 685552976472178689, "text": "Tech and health care occupations account for all employment gain since 2007. Core app economy jobs account for 20% @ppi #appeconomy", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "appeconomy", "indices": [120, 131]}], "user_mentions": [{"screen_name": "ppi", "id_str": "34666433", "id": 34666433, "indices": [115, 119], "name": "PPI"}]}, "created_at": "Fri Jan 08 20:05:41 +0000 2016", "source": "Twitter for Mac", "favorite_count": 19, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685553372200484864", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "appeconomy", "indices": [139, 140]}], "user_mentions": [{"screen_name": "MichaelMandel", "id_str": "62406858", "id": 62406858, "indices": [3, 17], "name": "Michael Mandel"}, {"screen_name": "ppi", "id_str": "34666433", "id": 34666433, "indices": [134, 138], "name": "PPI"}]}, "created_at": "Fri Jan 08 20:07:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685553372200484864, "text": "RT @MichaelMandel: Tech and health care occupations account for all employment gain since 2007. Core app economy jobs account for 20% @ppi \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 6557062, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2919428/twiiter_back_2.jpg", "statuses_count": 3457, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6557062/1400639179", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "156303065", "following": false, "friends_count": 1710, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "utx.edu", "url": "https://t.co/nF6JsZT9GA", "expanded_url": "http://utx.edu", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/596795875923402753/XdJvSEA4.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 4757, "location": "Austin, TX", "screen_name": "PhilKomarny", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 474, "name": "Phil Komarny", "profile_use_background_image": true, "description": "Executive Director of Digital Education Product/Platform @UTxTEx @UTSystem - mention \u2260 endorsement", "url": "https://t.co/nF6JsZT9GA", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/653801046586736640/jh_2gUVf_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Jun 16 15:32:16 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/653801046586736640/jh_2gUVf_normal.jpg", "favourites_count": 700, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685482521128235008", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1K2kXiA", "url": "https://t.co/TbgMlTyeyg", "expanded_url": "http://buff.ly/1K2kXiA", "indices": [107, 130]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:25:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685482521128235008, "text": "Friday 5 includes VR hitting the homes (in June, anyway) and the business and design of Netflix domination https://t.co/TbgMlTyeyg", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685483469351157760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1K2kXiA", "url": "https://t.co/TbgMlTyeyg", "expanded_url": "http://buff.ly/1K2kXiA", "indices": [124, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "perryhewitt", "id_str": "1363481", "id": 1363481, "indices": [3, 15], "name": "Perry Hewitt"}]}, "created_at": "Fri Jan 08 15:29:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685483469351157760, "text": "RT @perryhewitt: Friday 5 includes VR hitting the homes (in June, anyway) and the business and design of Netflix domination https://t.co/Tb\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 156303065, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/596795875923402753/XdJvSEA4.png", "statuses_count": 16859, "profile_banner_url": "https://pbs.twimg.com/profile_banners/156303065/1445427718", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "88223099", "following": false, "friends_count": 801, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/253885120/twilk_background_4dd024c11d676.jpg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 2647, "location": "Issaquah, WA", "screen_name": "marshray", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 184, "name": "Marsh Ray", "profile_use_background_image": true, "description": "Taurus. Into: soldering, perfectionism. Tweets represent my own opinions. [marshray % live dotcom]", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/497521153422811137/0_RSu1lw_normal.png", "profile_background_color": "131516", "created_at": "Sat Nov 07 16:56:08 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/497521153422811137/0_RSu1lw_normal.png", "favourites_count": 1459, "status": {"retweet_count": 286, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 286, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "593256977741979648", "id": 593256977741979648, "text": "Do employees actually want managers? I'd argue no; they really want advisors, mentors, coaches and leaders, and to manage themselves. :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Apr 29 03:34:20 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 423, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685597697852575744", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "KateKendall", "id_str": "15125371", "id": 15125371, "indices": [3, 15], "name": "Kate Kendall"}]}, "created_at": "Fri Jan 08 23:03:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597697852575744, "text": "RT @KateKendall: Do employees actually want managers? I'd argue no; they really want advisors, mentors, coaches and leaders, and to manage \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 88223099, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/253885120/twilk_background_4dd024c11d676.jpg", "statuses_count": 24207, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "58291812", "following": false, "friends_count": 268, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sporadicdispatches.blogspot.com", "url": "http://t.co/ejC8VGJN", "expanded_url": "http://sporadicdispatches.blogspot.com/", "indices": [0, 20]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 419, "location": "Dallas, TX", "screen_name": "adambroach", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "Adam Roach", "profile_use_background_image": true, "description": "Firefox Hacker, WebRTC Developer, IETF Standards Wonk, Mozilla Employee, Internet Freedom Fan", "url": "http://t.co/ejC8VGJN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1852952707/headshot-1_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jul 19 20:56:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1852952707/headshot-1_normal.jpg", "favourites_count": 42, "status": {"retweet_count": 60, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 60, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685469930314072064", "id": 685469930314072064, "text": "On this day in 1982, AT&T settled the Justice Department's antitrust lawsuit by agreeing to divest itself of the 22 Bell System companies.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:35:41 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 89, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685497576062189568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Fri Jan 08 16:25:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685497576062189568, "text": "RT @SwiftOnSecurity: On this day in 1982, AT&T settled the Justice Department's antitrust lawsuit by agreeing to divest itself of the 22 Be\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 58291812, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 433, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "42650438", "following": false, "friends_count": 500, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662599379/lx5z8puk4wq8r6otw340.jpeg", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "89C9FA", "geo_enabled": false, "followers_count": 551, "location": "London", "screen_name": "lauranncrossley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Laura Crossley", "profile_use_background_image": true, "description": "Communications & Engagement Lead. Not yet grown up enough for espresso, but grown up enough to be formerly known as Laura Gill. Espresso is my everest.", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/597670925534887936/i_0MM5JQ_normal.jpg", "profile_background_color": "804080", "created_at": "Tue May 26 15:45:04 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597670925534887936/i_0MM5JQ_normal.jpg", "favourites_count": 10, "status": {"in_reply_to_status_id": 685505202498199552, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "chriscrossley", "in_reply_to_user_id": 18717124, "in_reply_to_status_id_str": "685505202498199552", "in_reply_to_user_id_str": "18717124", "truncated": false, "id_str": "685510008822456321", "id": 685510008822456321, "text": "@chriscrossley Stop trying to rain on my parade.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "chriscrossley", "id_str": "18717124", "id": 18717124, "indices": [0, 14], "name": "Chris Crossley"}]}, "created_at": "Fri Jan 08 17:14:56 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 42650438, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662599379/lx5z8puk4wq8r6otw340.jpeg", "statuses_count": 3047, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42650438/1430764580", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "16085894", "following": false, "friends_count": 1094, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "surevine.com", "url": "http://t.co/OTLdIoHbfN", "expanded_url": "http://www.surevine.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "6BD500", "geo_enabled": false, "followers_count": 572, "location": "United Kingdom", "screen_name": "woodlark", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "John Atherton", "profile_use_background_image": true, "description": "What a great time to be in the software industry - I'm excited!", "url": "http://t.co/OTLdIoHbfN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/61395029/woodlark_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Mon Sep 01 18:22:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/61395029/woodlark_normal.jpg", "favourites_count": 55, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "675344626899898368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "owl.li/VKZw9", "url": "https://t.co/8xeJQfNDcT", "expanded_url": "http://owl.li/VKZw9", "indices": [69, 92]}], "hashtags": [{"text": "entsw", "indices": [93, 99]}], "user_mentions": []}, "created_at": "Fri Dec 11 16:01:21 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675344626899898368, "text": "The top three trends we expect to drive the software market in 2016: https://t.co/8xeJQfNDcT #entsw", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "675358550223400960", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "owl.li/VKZw9", "url": "https://t.co/8xeJQfNDcT", "expanded_url": "http://owl.li/VKZw9", "indices": [87, 110]}], "hashtags": [{"text": "entsw", "indices": [111, 117]}], "user_mentions": [{"screen_name": "nickpatience", "id_str": "5471512", "id": 5471512, "indices": [3, 16], "name": "Nick Patience"}]}, "created_at": "Fri Dec 11 16:56:40 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675358550223400960, "text": "RT @nickpatience: The top three trends we expect to drive the software market in 2016: https://t.co/8xeJQfNDcT #entsw", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 16085894, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 908, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "80385525", "following": false, "friends_count": 89, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": false, "followers_count": 136, "location": "Gloucestershire", "screen_name": "Simon_M_White", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Simon White", "profile_use_background_image": true, "description": "I make software for @surevine. Secure, social, beautiful software; often based on Java, Alfresco, NOSQL and Javascript/HTML5", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1312939479/simon2_square_normal.jpg", "profile_background_color": "8B542B", "created_at": "Tue Oct 06 19:42:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1312939479/simon2_square_normal.jpg", "favourites_count": 6, "status": {"in_reply_to_status_id": 538614165972467712, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "virginmedia", "in_reply_to_user_id": 17872077, "in_reply_to_status_id_str": "538614165972467712", "in_reply_to_user_id_str": "17872077", "truncated": false, "id_str": "538755716002353152", "id": 538755716002353152, "text": "@virginmedia ahforgetabout it. Was just sympton of general virgin problems around Bristol/Glos last night all well now", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "virginmedia", "id_str": "17872077", "id": 17872077, "indices": [0, 12], "name": "Virgin Media"}]}, "created_at": "Sat Nov 29 18:05:46 +0000 2014", "source": "Twitter for iPad", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 80385525, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 725, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "44856091", "following": false, "friends_count": 169, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "36A358", "geo_enabled": false, "followers_count": 99, "location": "", "screen_name": "ashward123", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Ashley Ward", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/331324991/me_normal.jpg", "profile_background_color": "352726", "created_at": "Fri Jun 05 09:17:18 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/331324991/me_normal.jpg", "favourites_count": 4, "status": {"in_reply_to_status_id": 677784067748831232, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "BBCBreaking", "in_reply_to_user_id": 5402612, "in_reply_to_status_id_str": "677784067748831232", "in_reply_to_user_id_str": "5402612", "truncated": false, "id_str": "677788989491953664", "id": 677788989491953664, "text": "@BBCBreaking Why has the boy sprog got shorts on? Don\u2019t they know it\u2019s winter? Although judging by the leaves this was taken some time ago.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BBCBreaking", "id_str": "5402612", "id": 5402612, "indices": [0, 12], "name": "BBC Breaking News"}]}, "created_at": "Fri Dec 18 09:54:22 +0000 2015", "source": "TweetDeck", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 44856091, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 530, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "889745300", "following": false, "friends_count": 240, "entities": {"description": {"urls": [{"display_url": "sust.se", "url": "http://t.co/zPoMblPlFX", "expanded_url": "http://sust.se", "indices": [68, 90]}, {"display_url": "lsys.se", "url": "http://t.co/YP4ckBPXeF", "expanded_url": "http://lsys.se", "indices": [92, 114]}, {"display_url": "xmpp.org", "url": "http://t.co/XVT9ZPV3oR", "expanded_url": "http://xmpp.org", "indices": [126, 148]}]}, "url": {"urls": [{"display_url": "lsys.se", "url": "http://t.co/HDYtdw3pb0", "expanded_url": "http://lsys.se", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 259, "location": "", "screen_name": "JoachimLindborg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Joachim Lindborg", "profile_use_background_image": true, "description": "Technology entusiast who like energyefficiency and the joy of life. http://t.co/zPoMblPlFX, http://t.co/YP4ckBPXeF, member of http://t.co/XVT9ZPV3oR", "url": "http://t.co/HDYtdw3pb0", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2734553750/9510e92197c9f9dea1231c1d64ef2f9a_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Oct 18 21:15:47 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "sv", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2734553750/9510e92197c9f9dea1231c1d64ef2f9a_normal.png", "favourites_count": 338, "status": {"in_reply_to_status_id": 684741702167465984, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "XivelyIOT", "in_reply_to_user_id": 14862767, "in_reply_to_status_id_str": "684741702167465984", "in_reply_to_user_id_str": "14862767", "truncated": false, "id_str": "684762883327160325", "id": 684762883327160325, "text": "@XivelyIOT I just got a reply that my xively personal account was gone. are you still working?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "XivelyIOT", "id_str": "14862767", "id": 14862767, "indices": [0, 10], "name": "Xively"}]}, "created_at": "Wed Jan 06 15:46:08 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 889745300, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 776, "profile_banner_url": "https://pbs.twimg.com/profile_banners/889745300/1399542692", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "799574", "following": false, "friends_count": 1163, "entities": {"description": {"urls": [{"display_url": "metafluff.com", "url": "http://t.co/e4QyEaP03i", "expanded_url": "http://metafluff.com", "indices": [82, 104]}, {"display_url": "noms.in", "url": "http://t.co/Xu2iOaLJXt", "expanded_url": "http://noms.in", "indices": [105, 127]}, {"display_url": "meatclub.in", "url": "http://t.co/84NhQITCYA", "expanded_url": "http://meatclub.in", "indices": [128, 150]}]}, "url": {"urls": [{"display_url": "metafluff.com", "url": "http://t.co/e4QyEaP03i", "expanded_url": "http://metafluff.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3295722/b53368916e912ca1944e92a72f94be9374e40435_m.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 2659, "location": "Portland, Oregon, USA", "screen_name": "dietrich", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 192, "name": "dietrich ayala", "profile_use_background_image": true, "description": "Working on Firefox OS so the next billions coming online have freedom and choice. http://t.co/e4QyEaP03i http://t.co/Xu2iOaLJXt http://t.co/84NhQITCYA", "url": "http://t.co/e4QyEaP03i", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664138406595682304/OlS9IlB__normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Feb 27 23:41:20 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664138406595682304/OlS9IlB__normal.jpg", "favourites_count": 4115, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685526009085468672", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYN6ReVUAAEpTql.jpg", "type": "photo", "indices": [66, 89], "media_url": "http://pbs.twimg.com/media/CYN6ReVUAAEpTql.jpg", "display_url": "pic.twitter.com/BBIL6R0MXb", "id_str": "685526008909266945", "expanded_url": "http://twitter.com/dietrich/status/685526009085468672/photo/1", "id": 685526008909266945, "url": "https://t.co/BBIL6R0MXb"}], "symbols": [], "urls": [{"display_url": "bit.ly/1TJTDeu", "url": "https://t.co/q2BqKkVQjI", "expanded_url": "http://bit.ly/1TJTDeu", "indices": [42, 65]}], "hashtags": [], "user_mentions": [{"screen_name": "wateravecoffee", "id_str": "128627627", "id": 128627627, "indices": [25, 40], "name": "Water Avenue Coffee"}]}, "created_at": "Fri Jan 08 18:18:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "in", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685526009085468672, "text": "Rwanda Abakundakawa from @wateravecoffee. https://t.co/q2BqKkVQjI https://t.co/BBIL6R0MXb", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "IFTTT"}, "default_profile_image": false, "id": 799574, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3295722/b53368916e912ca1944e92a72f94be9374e40435_m.png", "statuses_count": 17052, "profile_banner_url": "https://pbs.twimg.com/profile_banners/799574/1406568533", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "58337300", "following": false, "friends_count": 518, "entities": {"description": {"urls": [{"display_url": "plus.google.com/10893650267121\u2026", "url": "https://t.co/ianrSxnV", "expanded_url": "https://plus.google.com/108936502671219351445/posts", "indices": [0, 21]}]}, "url": {"urls": [{"display_url": "taras.glek.net", "url": "http://t.co/CWr6sQe6", "expanded_url": "http://taras.glek.net", "indices": [0, 20]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 805, "location": "", "screen_name": "tarasglek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "Taras Glek", "profile_use_background_image": true, "description": "https://t.co/ianrSxnV", "url": "http://t.co/CWr6sQe6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2989960370/07d65b04acdb7549524ba9ba466cac38_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Jul 20 00:32:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2989960370/07d65b04acdb7549524ba9ba466cac38_normal.jpeg", "favourites_count": 342, "status": {"retweet_count": 10, "retweeted_status": {"retweet_count": 10, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685468419332902912", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "meduza.io/en/news/2016/0\u2026", "url": "https://t.co/rhPsvu2UXs", "expanded_url": "https://meduza.io/en/news/2016/01/08/finland-decides-to-extradite-russian-hacker-to-the-us", "indices": [115, 138]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:29:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685468419332902912, "text": "Russian hacker gets detained in Finland, is now being extradited to Minnesota. Dude can\u2019t catch a break from snow. https://t.co/rhPsvu2UXs", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685484093195173888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "meduza.io/en/news/2016/0\u2026", "url": "https://t.co/rhPsvu2UXs", "expanded_url": "https://meduza.io/en/news/2016/01/08/finland-decides-to-extradite-russian-hacker-to-the-us", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "meduza_en", "id_str": "3004163369", "id": 3004163369, "indices": [3, 13], "name": "Meduza Project"}]}, "created_at": "Fri Jan 08 15:31:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685484093195173888, "text": "RT @meduza_en: Russian hacker gets detained in Finland, is now being extradited to Minnesota. Dude can\u2019t catch a break from snow. https://t\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 58337300, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4500, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1347374180", "following": false, "friends_count": 278, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "benjamin.smedbergs.us", "url": "http://t.co/T0OpiiA3Fq", "expanded_url": "http://benjamin.smedbergs.us", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 541, "location": "Johnstown, PA, USA", "screen_name": "nsIAnswers", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "Benjamin Smedberg", "profile_use_background_image": false, "description": "Sr. Engineering Manager @ Mozilla. Follower of Christ. Devoted husband. Father of seven. Software toolsmith. Chaser of crashes. Organist & choir director.", "url": "http://t.co/T0OpiiA3Fq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3511816518/201ec910ac111743ecd4dacb356bd74d_normal.jpeg", "profile_background_color": "312738", "created_at": "Fri Apr 12 17:45:02 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3511816518/201ec910ac111743ecd4dacb356bd74d_normal.jpeg", "favourites_count": 1056, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685580123161137152", "id": 685580123161137152, "text": "Dislike sites that auto-logout after a period and change the URL. Breaks overnight app tabs. Looking at you, okta/jobvite/mozilla sso.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:53:33 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1347374180, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1702, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1347374180/1365792054", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14587406", "following": false, "friends_count": 407, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.lassey.us", "url": "http://t.co/FHFVqSqrQ9", "expanded_url": "http://blog.lassey.us", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 756, "location": "N 42\u00b021' 0'' / W 71\u00b04' 0''", "screen_name": "blassey", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 35, "name": "Brad Lassey", "profile_use_background_image": true, "description": "Mozilla hacker, Bostonian, Rugger", "url": "http://t.co/FHFVqSqrQ9", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/454296236124680192/72vCsZrE_normal.png", "profile_background_color": "352726", "created_at": "Tue Apr 29 17:06:43 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/454296236124680192/72vCsZrE_normal.png", "favourites_count": 34, "status": {"retweet_count": 32, "retweeted_status": {"retweet_count": 32, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685476091952263169", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 340, "h": 225, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 398, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", "type": "photo", "indices": [104, 127], "media_url": "http://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", "display_url": "pic.twitter.com/qI5R0UmFX5", "id_str": "685476091104894977", "expanded_url": "http://twitter.com/BostonGlobe/status/685476091952263169/photo/1", "id": 685476091104894977, "url": "https://t.co/qI5R0UmFX5"}], "symbols": [], "urls": [{"display_url": "bos.gl/E4WKtQM", "url": "https://t.co/ICqRD2LhYA", "expanded_url": "http://bos.gl/E4WKtQM", "indices": [80, 103]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:00:10 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685476091952263169, "text": "Had HGH been sent to Tom Brady and his wife, would there be such radio silence? https://t.co/ICqRD2LhYA https://t.co/qI5R0UmFX5", "coordinates": null, "retweeted": false, "favorite_count": 31, "contributors": null, "source": "SocialFlow"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685489620377812993", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 340, "h": 225, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 398, "resize": "fit"}}, "source_status_id_str": "685476091952263169", "media_url": "http://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", "source_user_id_str": "95431448", "id_str": "685476091104894977", "id": 685476091104894977, "media_url_https": "https://pbs.twimg.com/media/CYNM34BUoAEGfNi.jpg", "type": "photo", "indices": [121, 140], "source_status_id": 685476091952263169, "source_user_id": 95431448, "display_url": "pic.twitter.com/qI5R0UmFX5", "expanded_url": "http://twitter.com/BostonGlobe/status/685476091952263169/photo/1", "url": "https://t.co/qI5R0UmFX5"}], "symbols": [], "urls": [{"display_url": "bos.gl/E4WKtQM", "url": "https://t.co/ICqRD2LhYA", "expanded_url": "http://bos.gl/E4WKtQM", "indices": [97, 120]}], "hashtags": [], "user_mentions": [{"screen_name": "BostonGlobe", "id_str": "95431448", "id": 95431448, "indices": [3, 15], "name": "The Boston Globe"}]}, "created_at": "Fri Jan 08 15:53:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685489620377812993, "text": "RT @BostonGlobe: Had HGH been sent to Tom Brady and his wife, would there be such radio silence? https://t.co/ICqRD2LhYA https://t.co/qI5R0\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14587406, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 7131, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14587406/1357255090", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "7795552", "following": false, "friends_count": 289, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "starkravingfinkle.org", "url": "http://t.co/qvgs6F9wLH", "expanded_url": "http://starkravingfinkle.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 1648, "location": "Pennsylvania, USA", "screen_name": "mfinkle", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 114, "name": "Mark Finkle", "profile_use_background_image": true, "description": "Team Lead: Firefox for Mobile", "url": "http://t.co/qvgs6F9wLH", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/498588007599837184/bpNnvyjB_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Sun Jul 29 03:53:44 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/498588007599837184/bpNnvyjB_normal.jpeg", "favourites_count": 1899, "status": {"retweet_count": 11, "retweeted_status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685277863243722753", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 912, "h": 708, "resize": "fit"}, "small": {"w": 340, "h": 264, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 466, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", "display_url": "pic.twitter.com/KzbXnTCvAU", "id_str": "685277280092868608", "expanded_url": "http://twitter.com/brianskold/status/685277863243722753/video/1", "id": 685277280092868608, "url": "https://t.co/KzbXnTCvAU"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 01:52:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685277863243722753, "text": "The pieces for Element.animate() are starting to come together in Firefox (video is for a patched build) https://t.co/KzbXnTCvAU", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685587999015370752", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 912, "h": 708, "resize": "fit"}, "small": {"w": 340, "h": 264, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 466, "resize": "fit"}}, "source_status_id_str": "685277863243722753", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", "source_user_id_str": "35165863", "id_str": "685277280092868608", "id": 685277280092868608, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685277280092868608/pu/img/dj146oaIB67nBazt.jpg", "type": "photo", "indices": [121, 140], "source_status_id": 685277863243722753, "source_user_id": 35165863, "display_url": "pic.twitter.com/KzbXnTCvAU", "expanded_url": "http://twitter.com/brianskold/status/685277863243722753/video/1", "url": "https://t.co/KzbXnTCvAU"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "brianskold", "id_str": "35165863", "id": 35165863, "indices": [3, 14], "name": "Brian Birtles"}]}, "created_at": "Fri Jan 08 22:24:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685587999015370752, "text": "RT @brianskold: The pieces for Element.animate() are starting to come together in Firefox (video is for a patched build) https://t.co/KzbXn\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 7795552, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7460, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "8209572", "following": false, "friends_count": 331, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 1393, "location": "Mountain View, CA", "screen_name": "dougturner", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 77, "name": "Doug Turner", "profile_use_background_image": true, "description": "engineering mgmt @mozilla. hacker on @firefox. force multiplier. dislike of upper case.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/548600836088025089/OYm0LW4r_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Aug 15 20:32:43 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/548600836088025089/OYm0LW4r_normal.jpeg", "favourites_count": 1059, "status": {"in_reply_to_status_id": 685537265947439104, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "deadsquid", "in_reply_to_user_id": 16625136, "in_reply_to_status_id_str": "685537265947439104", "in_reply_to_user_id_str": "16625136", "truncated": false, "id_str": "685552444256878592", "id": 685552444256878592, "text": "@deadsquid @nsIAnswers never!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "deadsquid", "id_str": "16625136", "id": 16625136, "indices": [0, 10], "name": "kev needham"}, {"screen_name": "nsIAnswers", "id_str": "1347374180", "id": 1347374180, "indices": [11, 22], "name": "Benjamin Smedberg"}]}, "created_at": "Fri Jan 08 20:03:34 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8209572, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 57, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8209572/1399084140", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18370424", "following": false, "friends_count": 267, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dolske.wordpress.com", "url": "http://t.co/JMoupDoaAK", "expanded_url": "http://dolske.wordpress.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 1311, "location": "Mountain View, CA", "screen_name": "dolske", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 98, "name": "Justin Dolske", "profile_use_background_image": true, "description": "Firefox engineering manager, bacon enthusiast, and snuggler of kittens. Did I mention beer? Oh, god, the beer. Mmmmm.", "url": "http://t.co/JMoupDoaAK", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456344242768465921/jWpN1yV-_normal.png", "profile_background_color": "131516", "created_at": "Thu Dec 25 04:30:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456344242768465921/jWpN1yV-_normal.png", "favourites_count": 3080, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685552777330724864", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ybca.org/internet-cat-v\u2026", "url": "https://t.co/xL5GsmS9Wf", "expanded_url": "http://ybca.org/internet-cat-video-festival", "indices": [0, 23]}, {"display_url": "twitter.com/hemeon/status/\u2026", "url": "https://t.co/hfln1j7nVA", "expanded_url": "https://twitter.com/hemeon/status/685548560859836416", "indices": [49, 72]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:04:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685552777330724864, "text": "https://t.co/xL5GsmS9Wf and already sold out. :( https://t.co/hfln1j7nVA", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18370424, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 16111, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18370424/1398201551", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "42056876", "following": false, "friends_count": 241, "entities": {"description": {"urls": [{"display_url": "wild.land", "url": "http://t.co/ktkvhRQiyM", "expanded_url": "http://wild.land", "indices": [39, 61]}]}, "url": {"urls": [{"display_url": "wild.land", "url": "https://t.co/aqz7o0iVd2", "expanded_url": "https://wild.land", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 269, "location": "Kennewick, Wa", "screen_name": "grElement", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Angela Steffens", "profile_use_background_image": true, "description": "Builder of modern web apps. Partner at http://t.co/ktkvhRQiyM. Kind of a foodie. Also a super mom.", "url": "https://t.co/aqz7o0iVd2", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1281598197/new_me_normal.png", "profile_background_color": "1A1B1F", "created_at": "Sat May 23 16:49:49 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1281598197/new_me_normal.png", "favourites_count": 86, "status": {"retweet_count": 42, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 42, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "647991814432104449", "id": 647991814432104449, "text": "evolution is \"just a theory\". well gravity is just a theory too. what I'm saying is gravity is bullshit made up by the stupid nerd Newton.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sun Sep 27 04:31:02 +0000 2015", "source": "Twitter for Android", "favorite_count": 158, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "648380077097414656", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "animaldrumss", "id_str": "1960031863", "id": 1960031863, "indices": [3, 16], "name": "Mike F"}]}, "created_at": "Mon Sep 28 06:13:51 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 648380077097414656, "text": "RT @animaldrumss: evolution is \"just a theory\". well gravity is just a theory too. what I'm saying is gravity is bullshit made up by the st\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 42056876, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 2019, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "80220145", "following": false, "friends_count": 221, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thebrianmanley.com", "url": "http://t.co/F88zLJtKtE", "expanded_url": "http://thebrianmanley.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 273, "location": "", "screen_name": "thebrianmanley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "thebrianmanley", "profile_use_background_image": true, "description": "I\u2019d rather write programs to help me write programs than write programs.", "url": "http://t.co/F88zLJtKtE", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/523007198662639617/aauxMoMI_normal.png", "profile_background_color": "ABB8C2", "created_at": "Tue Oct 06 04:59:03 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/523007198662639617/aauxMoMI_normal.png", "favourites_count": 1897, "status": {"in_reply_to_status_id": 685548656573812736, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "kendall", "in_reply_to_user_id": 307833, "in_reply_to_status_id_str": "685548656573812736", "in_reply_to_user_id_str": "307833", "truncated": false, "id_str": "685565008600805376", "id": 685565008600805376, "text": "@kendall I thought that was Santa Fe, no?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kendall", "id_str": "307833", "id": 307833, "indices": [0, 8], "name": "Kendall Clark"}]}, "created_at": "Fri Jan 08 20:53:29 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 80220145, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5595, "profile_banner_url": "https://pbs.twimg.com/profile_banners/80220145/1445538062", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "8419342", "following": false, "friends_count": 129, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "n.exts.ch", "url": "http://t.co/b2T5wJBNT2", "expanded_url": "http://n.exts.ch", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "6C8FAB", "profile_link_color": "6E7680", "geo_enabled": true, "followers_count": 462, "location": "Kennewick, WA", "screen_name": "natevw", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 54, "name": "Nathan Vander Wilt", "profile_use_background_image": false, "description": "code, read, pray", "url": "http://t.co/b2T5wJBNT2", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1782014523/IMG_2984_normal.JPG", "profile_background_color": "FFFFFF", "created_at": "Sat Aug 25 04:14:31 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "111111", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1782014523/IMG_2984_normal.JPG", "favourites_count": 2348, "status": {"in_reply_to_status_id": 685517260010594304, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "michaelossmann", "in_reply_to_user_id": 245547167, "in_reply_to_status_id_str": "685517260010594304", "in_reply_to_user_id_str": "245547167", "truncated": false, "id_str": "685537983668162560", "id": 685537983668162560, "text": ".@michaelossmann \"We are growing\" is the best part of that ad, for us non-Media Liaison types :-)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "michaelossmann", "id_str": "245547167", "id": 245547167, "indices": [1, 16], "name": "Michael Ossmann"}]}, "created_at": "Fri Jan 08 19:06:06 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8419342, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 17486, "is_translator": false}, {"time_zone": "Ljubljana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14159253", "following": false, "friends_count": 1589, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brian.kingsonline.net/talk/about/", "url": "http://t.co/0n63UkyGP0", "expanded_url": "http://brian.kingsonline.net/talk/about/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/127349504/twitter_mozsunburst_backgroundimage.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F97C7", "geo_enabled": true, "followers_count": 2561, "location": "Slovenia. Sometimes.", "screen_name": "brianking", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 157, "name": "Brian King", "profile_use_background_image": true, "description": "Participation at Mozilla, aka working with thousands of amazing people.", "url": "http://t.co/0n63UkyGP0", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/511579654445367296/_BtlLPxj_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Sun Mar 16 20:34:44 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/511579654445367296/_BtlLPxj_normal.jpeg", "favourites_count": 68, "status": {"retweet_count": 31, "retweeted_status": {"retweet_count": 31, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685385349862916096", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", "type": "photo", "indices": [76, 99], "media_url": "http://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", "display_url": "pic.twitter.com/G6vLAffmlq", "id_str": "685385317923295232", "expanded_url": "http://twitter.com/pdscott/status/685385349862916096/photo/1", "id": 685385317923295232, "url": "https://t.co/G6vLAffmlq"}], "symbols": [], "urls": [], "hashtags": [{"text": "Dublin", "indices": [68, 75]}], "user_mentions": []}, "created_at": "Fri Jan 08 08:59:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685385349862916096, "text": "Tramlines return to College Green, 67 years after they were removed #Dublin https://t.co/G6vLAffmlq", "coordinates": null, "retweeted": false, "favorite_count": 30, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685476795173482496", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "source_status_id_str": "685385349862916096", "media_url": "http://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", "source_user_id_str": "19360077", "id_str": "685385317923295232", "id": 685385317923295232, "media_url_https": "https://pbs.twimg.com/media/CYL6ULkWEAAFnTg.jpg", "type": "photo", "indices": [89, 112], "source_status_id": 685385349862916096, "source_user_id": 19360077, "display_url": "pic.twitter.com/G6vLAffmlq", "expanded_url": "http://twitter.com/pdscott/status/685385349862916096/photo/1", "url": "https://t.co/G6vLAffmlq"}], "symbols": [], "urls": [], "hashtags": [{"text": "Dublin", "indices": [81, 88]}], "user_mentions": [{"screen_name": "pdscott", "id_str": "19360077", "id": 19360077, "indices": [3, 11], "name": "Piers Scott"}]}, "created_at": "Fri Jan 08 15:02:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685476795173482496, "text": "RT @pdscott: Tramlines return to College Green, 67 years after they were removed #Dublin https://t.co/G6vLAffmlq", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 14159253, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/127349504/twitter_mozsunburst_backgroundimage.jpg", "statuses_count": 9880, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159253/1417544922", "is_translator": false}, {"time_zone": "Bern", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "41655877", "following": false, "friends_count": 72, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 616, "location": "", "screen_name": "axelhecht", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 38, "name": "Axel Hecht", "profile_use_background_image": true, "description": "Mozillian working on localization infrastructure", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/224734723/Axel_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu May 21 19:21:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/224734723/Axel_normal.jpg", "favourites_count": 21, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685593439031828480", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.mozilla.org/l10n/2016/01/0\u2026", "url": "https://t.co/JRIbzfYG2M", "expanded_url": "https://blog.mozilla.org/l10n/2016/01/08/mozlando-localization-sessions/", "indices": [33, 56]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:46:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593439031828480, "text": "L10n-driver report from Mozlando https://t.co/JRIbzfYG2M", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685598438042546182", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.mozilla.org/l10n/2016/01/0\u2026", "url": "https://t.co/JRIbzfYG2M", "expanded_url": "https://blog.mozilla.org/l10n/2016/01/08/mozlando-localization-sessions/", "indices": [51, 74]}], "hashtags": [], "user_mentions": [{"screen_name": "mozilla_l10n", "id_str": "227647662", "id": 227647662, "indices": [3, 16], "name": "Mozilla Localization"}]}, "created_at": "Fri Jan 08 23:06:20 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685598438042546182, "text": "RT @mozilla_l10n: L10n-driver report from Mozlando https://t.co/JRIbzfYG2M", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 41655877, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1765, "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "93677805", "following": false, "friends_count": 93, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": false, "followers_count": 662, "location": "Berlin, Germany", "screen_name": "MadalinaAna", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 31, "name": "Madalina Ana", "profile_use_background_image": true, "description": "Keeping the web open @Mozilla. Football player and fan. Point-and-click gaming geek. Music addict and Web worshiper.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3368171228/610c85a7ceae792330e259ef3fb21d7f_normal.jpeg", "profile_background_color": "EBEBEB", "created_at": "Mon Nov 30 17:49:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3368171228/610c85a7ceae792330e259ef3fb21d7f_normal.jpeg", "favourites_count": 11, "status": {"in_reply_to_status_id": 667720748556017664, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "costenslayer", "in_reply_to_user_id": 251683429, "in_reply_to_status_id_str": "667720748556017664", "in_reply_to_user_id_str": "251683429", "truncated": false, "id_str": "667720975107014657", "id": 667720975107014657, "text": "@costenslayer testing testing 1,2,3 #fxhelp", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "fxhelp", "indices": [36, 43]}], "user_mentions": [{"screen_name": "costenslayer", "id_str": "251683429", "id": 251683429, "indices": [0, 13], "name": "Stefan Costen"}]}, "created_at": "Fri Nov 20 15:07:40 +0000 2015", "source": "Army of Awesome", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 93677805, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 280, "is_translator": false}, {"time_zone": "Greenland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "258840559", "following": false, "friends_count": 229, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000077062766/feb26da04b728fa62bdaad23c7f8eba0.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 1282, "location": "Berlin", "screen_name": "rosanardila", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 47, "name": "Rosana Ardila", "profile_use_background_image": true, "description": "Language geek, open tech enthusiast and Mozilla Reps Council Member", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1790764965/Rosana_normal.png", "profile_background_color": "1238A8", "created_at": "Mon Feb 28 16:27:33 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1790764965/Rosana_normal.png", "favourites_count": 375, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679832897235189760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.mozilla.org/mozillareps/20\u2026", "url": "https://t.co/ac2nBta01i", "expanded_url": "https://blog.mozilla.org/mozillareps/2015/12/24/reps-regional-communities-and-beyond-2015/", "indices": [44, 67]}], "hashtags": [], "user_mentions": [{"screen_name": "firefox", "id_str": "2142731", "id": 2142731, "indices": [72, 80], "name": "Firefox"}]}, "created_at": "Thu Dec 24 01:16:08 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679832897235189760, "text": "Reps, regional communities and beyond: 2015 https://t.co/ac2nBta01i via @firefox", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 258840559, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000077062766/feb26da04b728fa62bdaad23c7f8eba0.jpeg", "statuses_count": 726, "profile_banner_url": "https://pbs.twimg.com/profile_banners/258840559/1416561407", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "4253351", "following": false, "friends_count": 1171, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mozillians.org/en-US/u/mary/", "url": "https://t.co/SpGHcgXARN", "expanded_url": "https://mozillians.org/en-US/u/mary/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/146635655/Adopt_Mozilla.jpg", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 2521, "location": "San Francisco, CA", "screen_name": "foxymary", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 115, "name": "Mary J. Colvig", "profile_use_background_image": true, "description": "Thrive on fostering users and supporters into champions for Mozilla. Specialize in engaging communities when stakes are high...with a touch of play!", "url": "https://t.co/SpGHcgXARN", "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/502297916606664704/HstKkO7K_normal.jpeg", "profile_background_color": "642D8B", "created_at": "Wed Apr 11 22:23:58 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/502297916606664704/HstKkO7K_normal.jpeg", "favourites_count": 524, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682799707563790337", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "donate.mozilla.org/en-US/", "url": "https://t.co/AEkd5rkO79", "expanded_url": "https://donate.mozilla.org/en-US/", "indices": [95, 118]}], "hashtags": [{"text": "lovetheweb", "indices": [36, 47]}], "user_mentions": [{"screen_name": "mozilla", "id_str": "106682853", "id": 106682853, "indices": [11, 19], "name": "Mozilla"}]}, "created_at": "Fri Jan 01 05:45:10 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682799707563790337, "text": "Donated to @mozilla today because I #lovetheweb. Only a few hours to go & so close to $4M! https://t.co/AEkd5rkO79", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 4253351, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/146635655/Adopt_Mozilla.jpg", "statuses_count": 4707, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4253351/1408592080", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14614648", "following": false, "friends_count": 105, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.lizardwrangler.com", "url": "http://t.co/Ef1HtT09oE", "expanded_url": "http://blog.lizardwrangler.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 6104, "location": "", "screen_name": "MitchellBaker", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 495, "name": "MitchellBaker", "profile_use_background_image": true, "description": "", "url": "http://t.co/Ef1HtT09oE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000073181505/2cc3f656c656f702cb276b66ff255b78_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu May 01 14:25:10 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000073181505/2cc3f656c656f702cb276b66ff255b78_normal.png", "favourites_count": 8, "status": {"in_reply_to_status_id": null, "retweet_count": 14, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685520840989908992", "id": 685520840989908992, "text": "privacy tip today:Manage access to each website. Type about:permissions in a new tab in your Firefox browser #advocate4privacy #privacymonth", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "advocate4privacy", "indices": [109, 126]}, {"text": "privacymonth", "indices": [127, 140]}], "user_mentions": []}, "created_at": "Fri Jan 08 17:57:59 +0000 2016", "source": "Twitter Web Client", "favorite_count": 16, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14614648, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1823, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15540222", "following": false, "friends_count": 983, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rauchg.com", "url": "http://t.co/CCq1K8vos8", "expanded_url": "http://rauchg.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 16528, "location": "SF", "screen_name": "rauchg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 954, "name": "Guillermo Rauch", "profile_use_background_image": true, "description": "\u25b2", "url": "http://t.co/CCq1K8vos8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681929779176706048/BBI9KCFJ_normal.png", "profile_background_color": "131516", "created_at": "Tue Jul 22 22:54:37 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681929779176706048/BBI9KCFJ_normal.png", "favourites_count": 4481, "status": {"in_reply_to_status_id": 685601687273254912, "retweet_count": 1, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": "amasad", "in_reply_to_user_id": 166138615, "in_reply_to_status_id_str": "685601687273254912", "in_reply_to_user_id_str": "166138615", "truncated": false, "id_str": "685607490583539712", "id": 685607490583539712, "text": "@amasad I wish neither existed. Reproducibility sans manifest duplication (shrink wrap) ftw", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "amasad", "id_str": "166138615", "id": 166138615, "indices": [0, 7], "name": "Amjad Masad"}]}, "created_at": "Fri Jan 08 23:42:18 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15540222, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 9401, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15540222/1446798932", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "10058662", "following": false, "friends_count": 12, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "asadotzler.com", "url": "http://t.co/TFsbThdtN9", "expanded_url": "http://asadotzler.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441855782758268928/SugecIa3.png", "notifications": false, "profile_sidebar_fill_color": "F7F1BE", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 2381, "location": "", "screen_name": "asadotzler", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 191, "name": "Asa Dotzler", "profile_use_background_image": true, "description": "asa@mozilla.org", "url": "http://t.co/TFsbThdtN9", "profile_text_color": "E04C12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2774714763/8b6710ad9bb523019e4ca1a132ed29c1_normal.jpeg", "profile_background_color": "272A2A", "created_at": "Thu Nov 08 07:32:25 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2774714763/8b6710ad9bb523019e4ca1a132ed29c1_normal.jpeg", "favourites_count": 5, "status": {"retweet_count": 569, "retweeted_status": {"retweet_count": 569, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679078758255497216", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blogs.technet.microsoft.com/mmpc/2015/12/2\u2026", "url": "https://t.co/kVYfKYJP15", "expanded_url": "https://blogs.technet.microsoft.com/mmpc/2015/12/21/keeping-browsing-experience-in-users-hands/", "indices": [113, 136]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Dec 21 23:19:27 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679078758255497216, "text": "Breaking: Microsoft bans all adware use of proxies/Winsock/MitM to inject ads. Violators will be marked malware. https://t.co/kVYfKYJP15", "coordinates": null, "retweeted": false, "favorite_count": 422, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679418983896887296", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blogs.technet.microsoft.com/mmpc/2015/12/2\u2026", "url": "https://t.co/kVYfKYJP15", "expanded_url": "https://blogs.technet.microsoft.com/mmpc/2015/12/21/keeping-browsing-experience-in-users-hands/", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Tue Dec 22 21:51:23 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679418983896887296, "text": "RT @SwiftOnSecurity: Breaking: Microsoft bans all adware use of proxies/Winsock/MitM to inject ads. Violators will be marked malware. https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 10058662, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441855782758268928/SugecIa3.png", "statuses_count": 12157, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10058662/1444669718", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3242411", "following": false, "friends_count": 130, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/cbeard", "url": "http://t.co/fLi2DdMgiu", "expanded_url": "http://linkedin.com/in/cbeard", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/815299669/957c8f532cfc59d140f40e654888f804.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3551, "location": "San Francisco Bay Area", "screen_name": "cbeard", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 160, "name": "Chris Beard", "profile_use_background_image": false, "description": "@Mozilla CEO", "url": "http://t.co/fLi2DdMgiu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/455802966344101888/6Tf6AJlT_normal.jpeg", "profile_background_color": "00539F", "created_at": "Mon Apr 02 19:35:28 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/455802966344101888/6Tf6AJlT_normal.jpeg", "favourites_count": 588, "status": {"retweet_count": 7178, "retweeted_status": {"retweet_count": 7178, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678639616199557120", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 936, "h": 710, "resize": "fit"}, "small": {"w": 340, "h": 257, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 455, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", "type": "photo", "indices": [62, 85], "media_url": "http://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", "display_url": "pic.twitter.com/pXb7F7aWsP", "id_str": "678639615675269120", "expanded_url": "http://twitter.com/randfish/status/678639616199557120/photo/1", "id": 678639615675269120, "url": "https://t.co/pXb7F7aWsP"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sun Dec 20 18:14:27 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678639616199557120, "text": "Mobile isn't killing desktop. It's killing all our free time. https://t.co/pXb7F7aWsP", "coordinates": null, "retweeted": false, "favorite_count": 4222, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679451578667945984", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 936, "h": 710, "resize": "fit"}, "small": {"w": 340, "h": 257, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 455, "resize": "fit"}}, "source_status_id_str": "678639616199557120", "media_url": "http://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", "source_user_id_str": "6527972", "id_str": "678639615675269120", "id": 678639615675269120, "media_url_https": "https://pbs.twimg.com/media/CWsDIobVAAAPtZZ.png", "type": "photo", "indices": [76, 99], "source_status_id": 678639616199557120, "source_user_id": 6527972, "display_url": "pic.twitter.com/pXb7F7aWsP", "expanded_url": "http://twitter.com/randfish/status/678639616199557120/photo/1", "url": "https://t.co/pXb7F7aWsP"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "randfish", "id_str": "6527972", "id": 6527972, "indices": [3, 12], "name": "Rand Fishkin"}]}, "created_at": "Wed Dec 23 00:00:54 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679451578667945984, "text": "RT @randfish: Mobile isn't killing desktop. It's killing all our free time. https://t.co/pXb7F7aWsP", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3242411, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/815299669/957c8f532cfc59d140f40e654888f804.jpeg", "statuses_count": 459, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3242411/1398780577", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "806757", "following": false, "friends_count": 2175, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nodesource.com/company#dshaw", "url": "https://t.co/XawtxLkLRf", "expanded_url": "https://nodesource.com/company#dshaw", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/59926981/M104-hs-2003-28-a.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 11990, "location": "San Francisco, CA", "screen_name": "dshaw", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 740, "name": "Dan Shaw", "profile_use_background_image": true, "description": "CTO and Co-Founder of @NodeSource - the Enterprise Node.js Company.", "url": "https://t.co/XawtxLkLRf", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/485564678039302144/Fjxv6IbQ_normal.png", "profile_background_color": "010302", "created_at": "Fri Mar 02 18:39:44 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/485564678039302144/Fjxv6IbQ_normal.png", "favourites_count": 31976, "status": {"in_reply_to_status_id": 685557670053588992, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": "mrohitkunal", "in_reply_to_user_id": 136649482, "in_reply_to_status_id_str": "685557670053588992", "in_reply_to_user_id_str": "136649482", "truncated": false, "id_str": "685563541332463616", "id": 685563541332463616, "text": "@mrohitkunal @sfnode @stinkydofu @NetflixUIE Unrelated.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mrohitkunal", "id_str": "136649482", "id": 136649482, "indices": [0, 12], "name": "Rohit Kunal"}, {"screen_name": "sfnode", "id_str": "2800676574", "id": 2800676574, "indices": [13, 20], "name": "SFNode"}, {"screen_name": "stinkydofu", "id_str": "16318984", "id": 16318984, "indices": [21, 32], "name": "Alex Liu"}, {"screen_name": "NetflixUIE", "id_str": "3018765357", "id": 3018765357, "indices": [33, 44], "name": "Netflix UI Engineers"}]}, "created_at": "Fri Jan 08 20:47:40 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 806757, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/59926981/M104-hs-2003-28-a.jpg", "statuses_count": 43785, "profile_banner_url": "https://pbs.twimg.com/profile_banners/806757/1382916317", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "843799844", "following": false, "friends_count": 166, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "isode.com", "url": "http://t.co/4IcOx6dh", "expanded_url": "http://www.isode.com", "indices": [0, 20]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/778257871/1ed94c30a10335b03f086800cbad5962.png", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "0056A6", "geo_enabled": true, "followers_count": 130, "location": "Hampton, Middlesex, UK", "screen_name": "Isode_Ltd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Isode", "profile_use_background_image": true, "description": "The leading messaging server software company, enabling secure communications in challenging deployments worldwide.", "url": "http://t.co/4IcOx6dh", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/643441999111155712/w0E48ey1_normal.png", "profile_background_color": "000000", "created_at": "Mon Sep 24 15:36:34 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643441999111155712/w0E48ey1_normal.png", "favourites_count": 6, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685487692977684481", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1n7HsxQ", "url": "https://t.co/oisefvTtJj", "expanded_url": "http://buff.ly/1n7HsxQ", "indices": [10, 33]}, {"display_url": "buff.ly/1n7HtSm", "url": "https://t.co/PF68VdHNot", "expanded_url": "http://buff.ly/1n7HtSm", "indices": [116, 139]}], "hashtags": [{"text": "icaoECOND", "indices": [104, 114]}], "user_mentions": [{"screen_name": "icao", "id_str": "246309084", "id": 246309084, "indices": [3, 8], "name": "ICAO "}]}, "created_at": "Fri Jan 08 15:46:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685487692977684481, "text": "RT @icao: https://t.co/oisefvTtJj: Middle East grew strongly in freight traffic by +8.3%. Download now! #icaoECOND\u2026 https://t.co/PF68VdHNot", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 843799844, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/778257871/1ed94c30a10335b03f086800cbad5962.png", "statuses_count": 1356, "profile_banner_url": "https://pbs.twimg.com/profile_banners/843799844/1442312979", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "29255412", "following": false, "friends_count": 619, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tjholowaychuk.com", "url": "https://t.co/uSeKUUmcKC", "expanded_url": "http://tjholowaychuk.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 26354, "location": "Victoria BC", "screen_name": "tjholowaychuk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1327, "name": "TJ Holowaychuk", "profile_use_background_image": false, "description": "Code. Photography. Art. @tj on Github. @tjholowaychuk on Medium.", "url": "https://t.co/uSeKUUmcKC", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000226613002/36623ae09f553713c575c97c77544b49_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Mon Apr 06 18:05:41 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000226613002/36623ae09f553713c575c97c77544b49_normal.jpeg", "favourites_count": 1768, "status": {"in_reply_to_status_id": 685598202096123904, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "PreetamJinka", "in_reply_to_user_id": 302840829, "in_reply_to_status_id_str": "685598202096123904", "in_reply_to_user_id_str": "302840829", "truncated": false, "id_str": "685600661463928832", "id": 685600661463928832, "text": "@PreetamJinka interesting use-case!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "PreetamJinka", "id_str": "302840829", "id": 302840829, "indices": [0, 13], "name": "Preetam Jinka"}]}, "created_at": "Fri Jan 08 23:15:10 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 29255412, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 13840, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29255412/1448314322", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "8038312", "following": false, "friends_count": 400, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.izs.me", "url": "https://t.co/EP1ieD9VvF", "expanded_url": "http://blog.izs.me/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 13131, "location": "Oak Town CA", "screen_name": "izs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 902, "name": "Isaac Z. Schlueter", "profile_use_background_image": true, "description": "npm ceo. aspiring empath. zero time for shitbirds. he/him/his", "url": "https://t.co/EP1ieD9VvF", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649690687860899840/bSyKUJfg_normal.png", "profile_background_color": "EBEBEB", "created_at": "Tue Aug 07 20:44:59 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649690687860899840/bSyKUJfg_normal.png", "favourites_count": 4305, "status": {"retweet_count": 20, "retweeted_status": {"retweet_count": 20, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685388664596250624", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 537, "resize": "fit"}, "small": {"w": 340, "h": 178, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 314, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", "type": "photo", "indices": [23, 46], "media_url": "http://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", "display_url": "pic.twitter.com/TxHrDuOT4E", "id_str": "685388663396675584", "expanded_url": "http://twitter.com/jonginn/status/685388664596250624/photo/1", "id": 685388663396675584, "url": "https://t.co/TxHrDuOT4E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 09:12:46 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685388664596250624, "text": "Happy incept day, Roy! https://t.co/TxHrDuOT4E", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Fenix for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685518247588843521", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 537, "resize": "fit"}, "small": {"w": 340, "h": 178, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 314, "resize": "fit"}}, "source_status_id_str": "685388664596250624", "media_url": "http://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", "source_user_id_str": "16461969", "id_str": "685388663396675584", "id": 685388663396675584, "media_url_https": "https://pbs.twimg.com/media/CYL9W6bWsAATy_o.jpg", "type": "photo", "indices": [36, 59], "source_status_id": 685388664596250624, "source_user_id": 16461969, "display_url": "pic.twitter.com/TxHrDuOT4E", "expanded_url": "http://twitter.com/jonginn/status/685388664596250624/photo/1", "url": "https://t.co/TxHrDuOT4E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jonginn", "id_str": "16461969", "id": 16461969, "indices": [3, 11], "name": "Jonathan Ginn"}]}, "created_at": "Fri Jan 08 17:47:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685518247588843521, "text": "RT @jonginn: Happy incept day, Roy! https://t.co/TxHrDuOT4E", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 8038312, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 38341, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8038312/1448927004", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "668423", "following": false, "friends_count": 456, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mikealrogers.com", "url": "https://t.co/7kRL5uIWRL", "expanded_url": "http://mikealrogers.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 13568, "location": "San Francisco, CA", "screen_name": "mikeal", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 887, "name": "Mikeal Rogers", "profile_use_background_image": true, "description": "Creator of NodeConf & request. Community @ Node.js Foundation. All gifs from One-Punch Man :)", "url": "https://t.co/7kRL5uIWRL", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/549609524038877184/01oMFk1H_normal.png", "profile_background_color": "9AE4E8", "created_at": "Fri Jan 19 22:47:30 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/549609524038877184/01oMFk1H_normal.png", "favourites_count": 3769, "status": {"in_reply_to_status_id": 685581797850279937, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": "tomdale", "in_reply_to_user_id": 668863, "in_reply_to_status_id_str": "685581797850279937", "in_reply_to_user_id_str": "668863", "truncated": false, "id_str": "685610148786614272", "id": 685610148786614272, "text": "@tomdale @mjasay don't worry, eventually it's consistent ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tomdale", "id_str": "668863", "id": 668863, "indices": [0, 8], "name": "Tom Dale"}, {"screen_name": "mjasay", "id_str": "7617702", "id": 7617702, "indices": [9, 16], "name": "Matt Asay"}]}, "created_at": "Fri Jan 08 23:52:52 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 668423, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 37228, "profile_banner_url": "https://pbs.twimg.com/profile_banners/668423/1419820652", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "12241752", "following": false, "friends_count": 3595, "entities": {"description": {"urls": [{"display_url": "instagram.com/catmapper", "url": "https://t.co/wBC1sQc8kf", "expanded_url": "https://instagram.com/catmapper", "indices": [94, 117]}]}, "url": {"urls": [{"display_url": "maxogden.com", "url": "http://t.co/GAcgXmdLV9", "expanded_url": "http://maxogden.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000181139101/ckYUsb2C.png", "notifications": false, "profile_sidebar_fill_color": "B5E8FC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 16188, "location": "~/PDX", "screen_name": "denormalize", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 991, "name": "maxwell ogden", "profile_use_background_image": false, "description": "computer programmer @dat_project working on open source data tools. amateur cat photographer (https://t.co/wBC1sQc8kf). author of JS For Cats", "url": "http://t.co/GAcgXmdLV9", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661753310819434496/GqJ8Kn97_normal.jpg", "profile_background_color": "D6F7FF", "created_at": "Mon Jan 14 23:11:21 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661753310819434496/GqJ8Kn97_normal.jpg", "favourites_count": 204, "status": {"in_reply_to_status_id": 685258489900351488, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "lippytak", "in_reply_to_user_id": 23721781, "in_reply_to_status_id_str": "685258489900351488", "in_reply_to_user_id_str": "23721781", "truncated": false, "id_str": "685259387338792960", "id": 685259387338792960, "text": "@lippytak I do (on mac) CMD + C <SPACE> V A C <CLICK>", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lippytak", "id_str": "23721781", "id": 23721781, "indices": [0, 9], "name": "Jake Solomon"}]}, "created_at": "Fri Jan 08 00:39:04 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 12241752, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000181139101/ckYUsb2C.png", "statuses_count": 16479, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12241752/1446598756", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "35432643", "following": false, "friends_count": 1461, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "addyosmani.com", "url": "https://t.co/qO6rgXCMIG", "expanded_url": "http://www.addyosmani.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/666933300175376384/6j0swZpR.png", "notifications": false, "profile_sidebar_fill_color": "56E372", "profile_link_color": "9D582E", "geo_enabled": true, "followers_count": 119957, "location": "London, England", "screen_name": "addyosmani", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5415, "name": "Addy Osmani", "profile_use_background_image": true, "description": "Engineer at Google working on Chrome & @Polymer \u2022 Author \u2022 Creator of TodoMVC, @Yeoman, Material Design Lite, Critical \u2022 Passionate about web tooling", "url": "https://t.co/qO6rgXCMIG", "profile_text_color": "0A0A0A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/586079587626422272/80Q5wAFU_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Apr 26 08:40:11 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/586079587626422272/80Q5wAFU_normal.jpg", "favourites_count": 14237, "status": {"in_reply_to_status_id": 685530143583027200, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jeffposnick", "in_reply_to_user_id": 11817932, "in_reply_to_status_id_str": "685530143583027200", "in_reply_to_user_id_str": "11817932", "truncated": false, "id_str": "685531187314573312", "id": 685531187314573312, "text": "@jeffposnick YES! Have been hoping we would move in this direction. Will leave some thoughts after the weekend :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jeffposnick", "id_str": "11817932", "id": 11817932, "indices": [0, 12], "name": "Jeffrey Posnick"}]}, "created_at": "Fri Jan 08 18:39:06 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 35432643, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/666933300175376384/6j0swZpR.png", "statuses_count": 14349, "profile_banner_url": "https://pbs.twimg.com/profile_banners/35432643/1449774217", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1671811", "following": false, "friends_count": 1852, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paulirish.com", "url": "http://t.co/fbpDRudFKn", "expanded_url": "http://paulirish.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2411001/watermelon-1600x1200.jpg", "notifications": false, "profile_sidebar_fill_color": "CBF8BD", "profile_link_color": "3D8C3A", "geo_enabled": true, "followers_count": 184666, "location": "Palo Alto", "screen_name": "paul_irish", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8177, "name": "Paul Irish", "profile_use_background_image": true, "description": "The web is awesome, let's make it even better \u2022 I work on Chrome DevTools and browser performance \u2022 big fan of rye whiskey, data and whimsy", "url": "http://t.co/fbpDRudFKn", "profile_text_color": "323232", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/420826194083213312/CP1RmLa3_normal.jpeg", "profile_background_color": "E9E9E9", "created_at": "Tue Mar 20 21:15:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "1E4B04", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/420826194083213312/CP1RmLa3_normal.jpeg", "favourites_count": 3307, "status": {"retweet_count": 0, "in_reply_to_user_id": 1679, "possibly_sensitive": false, "id_str": "685226978199207936", "in_reply_to_user_id_str": "1679", "entities": {"symbols": [], "urls": [{"display_url": "code.google.com/p/chromium/iss\u2026", "url": "https://t.co/yoPGAGsYuJ", "expanded_url": "https://code.google.com/p/chromium/issues/detail?id=478214", "indices": [58, 81]}], "hashtags": [], "user_mentions": [{"screen_name": "javan", "id_str": "1679", "id": 1679, "indices": [0, 6], "name": "Javan Makhmali"}]}, "created_at": "Thu Jan 07 22:30:17 +0000 2016", "favorited": false, "in_reply_to_status_id": 685182546498449408, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "javan", "in_reply_to_status_id_str": "685182546498449408", "truncated": false, "id": 685226978199207936, "text": "@javan This is a bug that we'll eventually fix in Chrome: https://t.co/yoPGAGsYuJ In the meantime, your solution is v nice. :)", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1671811, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2411001/watermelon-1600x1200.jpg", "statuses_count": 24010, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "143128205", "following": false, "friends_count": 939, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chriskranky.com", "url": "http://t.co/IzUIseAKTj", "expanded_url": "http://www.chriskranky.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/462058347005370369/5bvgJJ2N.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1072, "location": "San Francisco", "screen_name": "ckoehncke", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "Chris Koehncke", "profile_use_background_image": true, "description": "Following a new era of communications & collaboration with HTML5 & WebRTC", "url": "http://t.co/IzUIseAKTj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1408852205/fuzzy_normal.jpg", "profile_background_color": "1F1520", "created_at": "Wed May 12 17:25:29 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1408852205/fuzzy_normal.jpg", "favourites_count": 137, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685256148669222912", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/JohnLegere/sta\u2026", "url": "https://t.co/HqFQtsAKND", "expanded_url": "https://twitter.com/JohnLegere/status/685201130427531264", "indices": [57, 80]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 00:26:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685256148669222912, "text": "Ugh CEO put foot in mouth with this one, I feel the pain https://t.co/HqFQtsAKND", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 143128205, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/462058347005370369/5bvgJJ2N.jpeg", "statuses_count": 1295, "profile_banner_url": "https://pbs.twimg.com/profile_banners/143128205/1398998211", "is_translator": false}], "next_cursor": 1489123725664322527, "previous_cursor": -1494685098210881400, "previous_cursor_str": "-1494685098210881400", "next_cursor_str": "1489123725664322527"} \ No newline at end of file diff --git a/testdata/get_friends_2.json b/testdata/get_friends_2.json index 7e8eba86..8bcc15fd 100644 --- a/testdata/get_friends_2.json +++ b/testdata/get_friends_2.json @@ -1,27010 +1 @@ -{ - "next_cursor": 1488977745323208956, - "users": [ - { - "time_zone": "Bern", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "2898431", - "following": false, - "friends_count": 453, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stefan-strigler.de", - "url": "http://t.co/MMFUtto9Dc", - "expanded_url": "http://stefan-strigler.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/219733938/IMG_0074.JPG", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 539, - "location": "52.484125,13.447212", - "screen_name": "zeank", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "stefan strigler", - "profile_use_background_image": true, - "description": "jabbermaniac, javascript and erlang enthusiast", - "url": "http://t.co/MMFUtto9Dc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/589719809803288577/i1K0dkpK_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 29 21:46:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/589719809803288577/i1K0dkpK_normal.jpg", - "favourites_count": 7605, - "status": { - "retweet_count": 107, - "retweeted_status": { - "retweet_count": 107, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685241368323567617", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 733, - "h": 387, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 316, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 179, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", - "display_url": "pic.twitter.com/gnZlI5niUq", - "id_str": "685241367488929792", - "expanded_url": "http://twitter.com/TheRoyalTbomb/status/685241368323567617/photo/1", - "id": 685241367488929792, - "url": "https://t.co/gnZlI5niUq" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "duckduckgo", - "id_str": "14504859", - "id": 14504859, - "indices": [ - 46, - 57 - ], - "name": "DuckDuckGo" - } - ] - }, - "created_at": "Thu Jan 07 23:27:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685241368323567617, - "text": "Just learned that typing 'color picker' in to @duckduckgo brings up ... a color picker!! Another reason I love ddg. https://t.co/gnZlI5niUq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 110, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685455218205655040", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 733, - "h": 387, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 316, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 179, - "resize": "fit" - } - }, - "source_status_id_str": "685241368323567617", - "url": "https://t.co/gnZlI5niUq", - "media_url": "http://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", - "source_user_id_str": "281405328", - "id_str": "685241367488929792", - "id": 685241367488929792, - "media_url_https": "https://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685241368323567617, - "source_user_id": 281405328, - "display_url": "pic.twitter.com/gnZlI5niUq", - "expanded_url": "http://twitter.com/TheRoyalTbomb/status/685241368323567617/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheRoyalTbomb", - "id_str": "281405328", - "id": 281405328, - "indices": [ - 3, - 17 - ], - "name": "Mike Tannenbaum \u30c4" - }, - { - "screen_name": "duckduckgo", - "id_str": "14504859", - "id": 14504859, - "indices": [ - 65, - 76 - ], - "name": "DuckDuckGo" - } - ] - }, - "created_at": "Fri Jan 08 13:37:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685455218205655040, - "text": "RT @TheRoyalTbomb: Just learned that typing 'color picker' in to @duckduckgo brings up ... a color picker!! Another reason I love ddg. http\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2898431, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/219733938/IMG_0074.JPG", - "statuses_count": 14855, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2898431/1399637633", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1537305181", - "following": false, - "friends_count": 71, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "talky.io", - "url": "http://t.co/ENtk7BVm7Z", - "expanded_url": "http://talky.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 806, - "location": "Richland, WA", - "screen_name": "usetalky", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 40, - "name": "Talky", - "profile_use_background_image": true, - "description": "Group video chat and screen sharing, built with love by @andyet - ask us about on-site versions and realtime product development!", - "url": "http://t.co/ENtk7BVm7Z", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000026458107/d122752f4dc74a93ea4375c24e1cc4eb_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Jun 21 20:27:02 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000026458107/d122752f4dc74a93ea4375c24e1cc4eb_normal.png", - "favourites_count": 202, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "dominictarr", - "in_reply_to_user_id": 136933779, - "in_reply_to_status_id_str": "666740095454724098", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "666759139003990017", - "id": 666759139003990017, - "text": "@dominictarr @dan_jenkins @fritzvd Yes, Apple doesn't support the WEbRTC standard yet in Safari. Someday, we hope...", - "in_reply_to_user_id_str": "136933779", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dominictarr", - "id_str": "136933779", - "id": 136933779, - "indices": [ - 0, - 12 - ], - "name": "Dominic Tarr" - }, - { - "screen_name": "dan_jenkins", - "id_str": "16101889", - "id": 16101889, - "indices": [ - 13, - 25 - ], - "name": "Dan Jenkins" - }, - { - "screen_name": "fritzvd", - "id_str": "26720376", - "id": 26720376, - "indices": [ - 26, - 34 - ], - "name": "Boring Stranger" - } - ] - }, - "created_at": "Tue Nov 17 23:25:41 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 666740095454724098, - "lang": "en" - }, - "default_profile_image": false, - "id": 1537305181, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 471, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1537305181/1433181818", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "752673", - "following": false, - "friends_count": 3265, - "entities": { - "description": { - "urls": [ - { - "display_url": "ukiyo-e.org", - "url": "http://t.co/vc69XXB4fq", - "expanded_url": "http://ukiyo-e.org", - "indices": [ - 76, - 98 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ejohn.org", - "url": "http://t.co/DhxxrmIfa8", - "expanded_url": "http://ejohn.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/877581375/8dffa13dd0d000736ca8b34b794cda8f.png", - "notifications": false, - "profile_sidebar_fill_color": "F2EEBB", - "profile_link_color": "224F52", - "geo_enabled": true, - "followers_count": 213204, - "location": "Brooklyn, NY", - "screen_name": "jeresig", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 9950, - "name": "John Resig", - "profile_use_background_image": true, - "description": "Creator of @jquery, JavaScript programmer, author, Japanese woodblock nerd (http://t.co/vc69XXB4fq), work at @khanacademy.", - "url": "http://t.co/DhxxrmIfa8", - "profile_text_color": "272727", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/628273703587975168/YorO7ort_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Sat Feb 03 20:17:32 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/628273703587975168/YorO7ort_normal.png", - "favourites_count": 2622, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mrb_bk", - "in_reply_to_user_id": 10179552, - "in_reply_to_status_id_str": "684370709590749185", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "684384448872361984", - "id": 684384448872361984, - "text": "@mrb_bk is that in the peacock room?", - "in_reply_to_user_id_str": "10179552", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mrb_bk", - "id_str": "10179552", - "id": 10179552, - "indices": [ - 0, - 7 - ], - "name": "mrb" - } - ] - }, - "created_at": "Tue Jan 05 14:42:22 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684370709590749185, - "lang": "en" - }, - "default_profile_image": false, - "id": 752673, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/877581375/8dffa13dd0d000736ca8b34b794cda8f.png", - "statuses_count": 9059, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/752673/1396970219", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "9533042", - "following": false, - "friends_count": 786, - "entities": { - "description": { - "urls": [ - { - "display_url": "mozilla.org", - "url": "https://t.co/3BL4fnhZut", - "expanded_url": "http://mozilla.org", - "indices": [ - 45, - 68 - ] - }, - { - "display_url": "brave.com", - "url": "https://t.co/NV4bmd6vxq", - "expanded_url": "https://brave.com/", - "indices": [ - 101, - 124 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "brendaneich.com", - "url": "https://t.co/31gjnOax12", - "expanded_url": "http://www.brendaneich.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/179519748/blog-bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 50699, - "location": "Everywhere JS runs", - "screen_name": "BrendanEich", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2899, - "name": "BrendanEich", - "profile_use_background_image": true, - "description": "Brendan Eich invented JavaScript, co-founded https://t.co/3BL4fnhZut, and has founded a new startup, https://t.co/NV4bmd6vxq.", - "url": "https://t.co/31gjnOax12", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/603270050556956672/T0mfRsil_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Oct 19 01:09:03 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/603270050556956672/T0mfRsil_normal.png", - "favourites_count": 7179, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685595851637534721", - "id": 685595851637534721, - "text": "I just heard some more terrible and wasteful spending going on at $YHOO", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [ - { - "indices": [ - 66, - 71 - ], - "text": "YHOO" - } - ], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:56:03 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685596370137296896", - "geo": null, - "entities": { - "symbols": [ - { - "indices": [ - 83, - 88 - ], - "text": "YHOO" - } - ], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ericjackson", - "id_str": "818071", - "id": 818071, - "indices": [ - 3, - 15 - ], - "name": "Eric Jackson" - } - ] - }, - "created_at": "Fri Jan 08 22:58:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685596370137296896, - "text": "RT @ericjackson: I just heard some more terrible and wasteful spending going on at $YHOO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 9533042, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/179519748/blog-bg.jpg", - "statuses_count": 35228, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9533042/1432670315", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15618553", - "following": false, - "friends_count": 732, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gatherthepeople.com", - "url": "https://t.co/9l9PYSHSTI", - "expanded_url": "https://gatherthepeople.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000048572233/104e2ce2a8d792fc7923def2deeef06d.png", - "notifications": false, - "profile_sidebar_fill_color": "E1E3D8", - "profile_link_color": "0EB0CD", - "geo_enabled": false, - "followers_count": 5849, - "location": "Norfolk, VA", - "screen_name": "sarahjbray", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 391, - "name": "Sarah Bray", - "profile_use_background_image": true, - "description": "Human-centered marketing strategist at @gathertheppl. \u2764\ufe0f writing, design, dev, & you. Side projects: @everybranchis & toast.", - "url": "https://t.co/9l9PYSHSTI", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494526865919315968/f86JgG9I_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Sun Jul 27 07:57:12 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494526865919315968/f86JgG9I_normal.jpeg", - "favourites_count": 8734, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685577740284760068", - "id": 685577740284760068, - "text": "Uggh. I hate it when I use a winky face instead of a smiley face by accident. Makes so many conversations unintentionally creepy.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:44:05 +0000 2016", - "source": "Buffer", - "favorite_count": 6, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15618553, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000048572233/104e2ce2a8d792fc7923def2deeef06d.png", - "statuses_count": 18374, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15618553/1431446371", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "435181415", - "following": false, - "friends_count": 262, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "redhat.com", - "url": "http://t.co/zYkyiWoxru", - "expanded_url": "http://www.redhat.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591912595/kh0uwwpav0e941hh4hdu.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1241, - "location": "", - "screen_name": "RHELdevelop", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "RHELdevelop", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/zYkyiWoxru", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2267097300/l06f4pzvkc62r6h4heyz_normal.png", - "profile_background_color": "2C2C2C", - "created_at": "Mon Dec 12 19:27:58 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2267097300/l06f4pzvkc62r6h4heyz_normal.png", - "favourites_count": 4, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685140373132283904", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wp.me/p2WBxv-1Kyi", - "url": "https://t.co/Eovnh7YrfG", - "expanded_url": "http://wp.me/p2WBxv-1Kyi", - "indices": [ - 31, - 54 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 16:46:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685140373132283904, - "text": "React.js with Isotope and\u00a0Flux https://t.co/Eovnh7YrfG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "WordPress.com" - }, - "default_profile_image": false, - "id": 435181415, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591912595/kh0uwwpav0e941hh4hdu.jpeg", - "statuses_count": 748, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "21702939", - "following": false, - "friends_count": 368, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ayena.de", - "url": "http://t.co/PPmUCAkPiS", - "expanded_url": "http://ayena.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "94D487", - "geo_enabled": false, - "followers_count": 110, - "location": "Hamburg, Germany", - "screen_name": "tobiasfar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Tobias Markmann", - "profile_use_background_image": false, - "description": "OSS dev, XMPP, SASL, security, crypto, CompSci, usability, UX, etc.", - "url": "http://t.co/PPmUCAkPiS", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2634231247/af02b3e9ab7d867850492242f0339858_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Feb 23 22:40:23 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2634231247/af02b3e9ab7d867850492242f0339858_normal.jpeg", - "favourites_count": 539, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685476729222201344", - "id": 685476729222201344, - "text": "Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #SpellCheckNoHelp", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 118, - 135 - ], - "text": "SpellCheckNoHelp" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:02:42 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685478054521651200", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 135, - 140 - ], - "text": "SpellCheckNoHelp" - } - ], - "user_mentions": [ - { - "screen_name": "willsheward", - "id_str": "16362966", - "id": 16362966, - "indices": [ - 3, - 15 - ], - "name": "Will Sheward" - } - ] - }, - "created_at": "Fri Jan 08 15:07:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685478054521651200, - "text": "RT @willsheward: Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #Spe\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 21702939, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 1189, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21702939/1422117406", - "is_translator": false - }, - { - "time_zone": "Edinburgh", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "18728950", - "following": false, - "friends_count": 2095, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kateho.com", - "url": "http://t.co/c6WNxKhxL9", - "expanded_url": "http://www.kateho.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 3184, - "location": "Edinburgh, Scotland", - "screen_name": "kateho", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 176, - "name": "Kate Ho", - "profile_use_background_image": false, - "description": "All about User Experience. Designs mobile apps. Builds kids games. Love geeking with the arts. Head of Product at @mygovscot", - "url": "http://t.co/c6WNxKhxL9", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/451637989467119616/Qjrmjbpt_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Jan 07 17:18:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/451637989467119616/Qjrmjbpt_normal.png", - "favourites_count": 340, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "redowle", - "in_reply_to_user_id": 2279940315, - "in_reply_to_status_id_str": "685527764666023940", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685562519843373056", - "id": 685562519843373056, - "text": "@redowle @grahambeedie check you out being a philosopher!", - "in_reply_to_user_id_str": "2279940315", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "redowle", - "id_str": "2279940315", - "id": 2279940315, - "indices": [ - 0, - 8 - ], - "name": "rachel dowle" - }, - { - "screen_name": "grahambeedie", - "id_str": "20667729", - "id": 20667729, - "indices": [ - 9, - 22 - ], - "name": "Graham Beedie" - } - ] - }, - "created_at": "Fri Jan 08 20:43:36 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685527764666023940, - "lang": "en" - }, - "default_profile_image": false, - "id": 18728950, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 3071, - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "25798693", - "following": false, - "friends_count": 328, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hilaryroberts.co.uk", - "url": "http://t.co/kZA4hPOy7m", - "expanded_url": "http://www.hilaryroberts.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/783108438/ebfc698e202070d0533fc87104057ce7.png", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1075, - "location": "", - "screen_name": "hilcsr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 49, - "name": "Hilary Roberts", - "profile_use_background_image": true, - "description": "Product Manager @Skyscanner. Wife to @philip_roberts. General enthusiasm.", - "url": "http://t.co/kZA4hPOy7m", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678141690834780160/h0gxn2RA_normal.jpg", - "profile_background_color": "EEEEEE", - "created_at": "Sun Mar 22 08:40:41 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678141690834780160/h0gxn2RA_normal.jpg", - "favourites_count": 154, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "hilcsr", - "in_reply_to_user_id": 25798693, - "in_reply_to_status_id_str": "566370581927714816", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "678141033792847872", - "id": 678141033792847872, - "text": "2015 in review: Belfast | Budapest | Dublin | Inverness | Kyoto | London | Manchester | Oxford | Seattle | Sofia | Strasbourg | Tokyo.", - "in_reply_to_user_id_str": "25798693", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Dec 19 09:13:16 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 566370581927714816, - "lang": "en" - }, - "default_profile_image": false, - "id": 25798693, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/783108438/ebfc698e202070d0533fc87104057ce7.png", - "statuses_count": 2576, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25798693/1450516588", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14883693", - "following": false, - "friends_count": 216, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000005250560/b4ae108d319a0a71fe4743fe1f8234f6.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "FF7502", - "geo_enabled": true, - "followers_count": 410, - "location": "", - "screen_name": "babyfro", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Rachel Baldwin", - "profile_use_background_image": true, - "description": "Stuff goes here.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/647197621082198016/CSY6U7IL_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Fri May 23 16:42:28 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/647197621082198016/CSY6U7IL_normal.jpg", - "favourites_count": 188, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684821399475630080", - "id": 684821399475630080, - "text": "Importing and tossing CD's. So sick of random clutter. Who needs spring cleaning when you can have a Winter Wash!!!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 19:38:39 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14883693, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000005250560/b4ae108d319a0a71fe4743fe1f8234f6.jpeg", - "statuses_count": 3397, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14883693/1443145419", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14518875", - "following": false, - "friends_count": 461, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fitnerd.amac.me", - "url": "http://t.co/uSmPFCWpb4", - "expanded_url": "http://fitnerd.amac.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 699, - "location": "Sandpoint, ID", - "screen_name": "aaronmccall", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 58, - "name": "Aaron McCall", - "profile_use_background_image": true, - "description": "Husband, father, maker, lifter, foodie. Love & minister with @PastorAmberDawn. Work @andyet. Live in @CityOfBoise.", - "url": "http://t.co/uSmPFCWpb4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/585236377748443136/foTlvySa_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu Apr 24 22:29:22 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/585236377748443136/foTlvySa_normal.jpg", - "favourites_count": 531, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "680186676124237824", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXCCLZHWQAAFnWM.jpg", - "type": "photo", - "indices": [ - 25, - 48 - ], - "media_url": "http://pbs.twimg.com/media/CXCCLZHWQAAFnWM.jpg", - "display_url": "pic.twitter.com/woeqDEPfa6", - "id_str": "680186675964821504", - "expanded_url": "http://twitter.com/aaronmccall/status/680186676124237824/photo/1", - "id": 680186675964821504, - "url": "https://t.co/woeqDEPfa6" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Dec 25 00:41:55 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "nl", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 680186676124237824, - "text": "Winter Wonderland it is! https://t.co/woeqDEPfa6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "IFTTT" - }, - "default_profile_image": false, - "id": 14518875, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5031, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14518875/1437492841", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "15810455", - "following": false, - "friends_count": 99, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "latentflip.com", - "url": "http://t.co/D5e7NnDsG4", - "expanded_url": "http://www.latentflip.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3159, - "location": "Edinburgh", - "screen_name": "philip_roberts", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 184, - "name": "Philip Roberts", - "profile_use_background_image": false, - "description": "JavaScripter and ethicist with my friends at @andyet, husband to @hilcsr.", - "url": "http://t.co/D5e7NnDsG4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657700482220216320/UfMaYL1q_normal.jpg", - "profile_background_color": "022330", - "created_at": "Mon Aug 11 17:04:40 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657700482220216320/UfMaYL1q_normal.jpg", - "favourites_count": 2494, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 25183606, - "possibly_sensitive": false, - "id_str": "685549648233263104", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "latentflip.com/emergency-jasp\u2026", - "url": "https://t.co/u5vYJgOHP2", - "expanded_url": "http://latentflip.com/emergency-jasper/", - "indices": [ - 18, - 41 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Charlotteis", - "id_str": "25183606", - "id": 25183606, - "indices": [ - 0, - 12 - ], - "name": "console.warn()" - } - ] - }, - "created_at": "Fri Jan 08 19:52:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "25183606", - "place": { - "url": "https://api.twitter.com/1.1/geo/id/7ae9e2f2ff7a87cd.json", - "country": "United Kingdom", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -3.3285119, - 55.894729 - ], - [ - -3.077505, - 55.894729 - ], - [ - -3.077505, - 55.991662 - ], - [ - -3.3285119, - 55.991662 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "GB", - "contained_within": [], - "full_name": "Edinburgh, Scotland", - "id": "7ae9e2f2ff7a87cd", - "name": "Edinburgh" - }, - "in_reply_to_screen_name": "Charlotteis", - "in_reply_to_status_id_str": "685549471275597824", - "truncated": false, - "id": 685549648233263104, - "text": "@Charlotteis oops https://t.co/u5vYJgOHP2", - "coordinates": null, - "in_reply_to_status_id": 685549471275597824, - "favorite_count": 1, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 15810455, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 23882, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15810455/1385903051", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "622564842", - "following": false, - "friends_count": 21, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "liftsecurity.io", - "url": "http://t.co/SrWJg242Xh", - "expanded_url": "http://liftsecurity.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/597700721/8vp76usrc2cf6ko1ftdq.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B9BDB", - "geo_enabled": false, - "followers_count": 677, - "location": "Richland, WA", - "screen_name": "LiftSecurity", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "^lift security", - "profile_use_background_image": true, - "description": "We're here to guide your team in building secure web applications. Security Assessments, Training, and Consulting.", - "url": "http://t.co/SrWJg242Xh", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/497855749989466112/uuluTvQ__normal.png", - "profile_background_color": "FAFAFA", - "created_at": "Sat Jun 30 04:03:28 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/497855749989466112/uuluTvQ__normal.png", - "favourites_count": 127, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683737775858794497", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "it.slashdot.org/story/16/01/03\u2026", - "url": "https://t.co/nT7CXrmKCP", - "expanded_url": "http://it.slashdot.org/story/16/01/03/1541254/first-nodejs-powered-ransomware-discovered?utm_source=slashdot&utm_medium=twitter", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Jan 03 19:52:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683737775858794497, - "text": "The First Node.js Powered Ransomware Discovered. https://t.co/nT7CXrmKCP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 622564842, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/597700721/8vp76usrc2cf6ko1ftdq.jpeg", - "statuses_count": 275, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "41294568", - "following": false, - "friends_count": 60, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyet.com", - "url": "https://t.co/SteW4uB7tS", - "expanded_url": "http://andyet.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/50448757/headertwitter3.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDDDDD", - "profile_link_color": "3B9BDB", - "geo_enabled": true, - "followers_count": 4489, - "location": "Richland, WA", - "screen_name": "andyet", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 265, - "name": "&yet", - "profile_use_background_image": true, - "description": "We create & consult from dream to deploy. We're the kind & efficient sort of perfectionists.\n\nUX + JS + Node + Realtime\n\n@liftsecurity @usetalky @nodesecurity", - "url": "https://t.co/SteW4uB7tS", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/630588077510033408/YoZIkOzS_normal.png", - "profile_background_color": "FAFAFA", - "created_at": "Wed May 20 04:18:08 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "555555", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/630588077510033408/YoZIkOzS_normal.png", - "favourites_count": 921, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684857661091790848", - "id": 684857661091790848, - "text": "Hallway talks today - Star Wars, reading levels, the one cow coffee mug in the office, teachers, and upcoming art shows.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 22:02:45 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 8, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 41294568, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/50448757/headertwitter3.jpg", - "statuses_count": 2468, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41294568/1447448326", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "123851638", - "following": false, - "friends_count": 85, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kismith.co.uk", - "url": "http://t.co/46yZ8T0uTP", - "expanded_url": "http://kismith.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 188, - "location": "", - "screen_name": "definitivekev", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Kevin Smith", - "profile_use_background_image": true, - "description": "XMPP developer / author, Swift, Psi, XMPP: The Definitive Guide. Techie side of @KevTWondersheep", - "url": "http://t.co/46yZ8T0uTP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/758031559/avatar-me2_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 17 12:08:32 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/758031559/avatar-me2_normal.png", - "favourites_count": 3, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "679707901062180865", - "id": 679707901062180865, - "text": "Ah yes, that \"But the Internet said this should work!\" moment when trying to write CSS. Flexbox: 1, Kev: 0.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 23 16:59:26 +0000 2015", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 123851638, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 190, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "47908980", - "following": false, - "friends_count": 399, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ehsanakhgari.org", - "url": "http://t.co/k2Dqta2KPz", - "expanded_url": "http://ehsanakhgari.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": false, - "followers_count": 927, - "location": "Toronto", - "screen_name": "ehsanakhgari", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "Ehsan Akhgari", - "profile_use_background_image": true, - "description": "Mozilla hacker", - "url": "http://t.co/k2Dqta2KPz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/522494268812701696/Pf-iJWP8_normal.jpeg", - "profile_background_color": "709397", - "created_at": "Wed Jun 17 09:31:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522494268812701696/Pf-iJWP8_normal.jpeg", - "favourites_count": 13, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ehsanakhgari", - "in_reply_to_user_id": 47908980, - "in_reply_to_status_id_str": "685598451988561921", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685598842050482177", - "id": 685598842050482177, - "text": "@inexorabletash @mikewest @metromoxie @jaffathecake @wanderview @ericlaw IIRC our number is 0.05% of page loads.", - "in_reply_to_user_id_str": "47908980", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "inexorabletash", - "id_str": "15871491", - "id": 15871491, - "indices": [ - 0, - 15 - ], - "name": "Joshua Bell" - }, - { - "screen_name": "mikewest", - "id_str": "63163", - "id": 63163, - "indices": [ - 16, - 25 - ], - "name": "Mike West" - }, - { - "screen_name": "metromoxie", - "id_str": "42462490", - "id": 42462490, - "indices": [ - 26, - 37 - ], - "name": "Joel Weinberger" - }, - { - "screen_name": "jaffathecake", - "id_str": "15390783", - "id": 15390783, - "indices": [ - 38, - 51 - ], - "name": "Jake Archibald" - }, - { - "screen_name": "wanderview", - "id_str": "362469218", - "id": 362469218, - "indices": [ - 52, - 63 - ], - "name": "Ben Kelly" - }, - { - "screen_name": "ericlaw", - "id_str": "5725652", - "id": 5725652, - "indices": [ - 64, - 72 - ], - "name": "Eric Lawrence" - } - ] - }, - "created_at": "Fri Jan 08 23:07:56 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598451988561921, - "lang": "en" - }, - "default_profile_image": false, - "id": 47908980, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 393, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "318908901", - "following": false, - "friends_count": 99, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitch.tv/kraftypants", - "url": "http://t.co/vyQ8oj2519", - "expanded_url": "http://www.twitch.tv/kraftypants", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": false, - "followers_count": 164, - "location": "Tri-Cities, WA", - "screen_name": "krcaputo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Katie", - "profile_use_background_image": true, - "description": "bad gamer. artist. cat lady. food lover.", - "url": "http://t.co/vyQ8oj2519", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/483000980468817920/65pjX-0M_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Fri Jun 17 07:35:31 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/483000980468817920/65pjX-0M_normal.jpeg", - "favourites_count": 354, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684903853343551488", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BAOAE3wiPch/", - "url": "https://t.co/iNHTm18UQD", - "expanded_url": "https://www.instagram.com/p/BAOAE3wiPch/", - "indices": [ - 10, - 33 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 01:06:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684903853343551488, - "text": "Snort lol https://t.co/iNHTm18UQD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 318908901, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 2099, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/318908901/1403991399", - "is_translator": false - }, - { - "time_zone": "America/Los_Angeles", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13038122", - "following": false, - "friends_count": 109, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/464171753149722625/D1IzAztF.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "080808", - "geo_enabled": false, - "followers_count": 183, - "location": "", - "screen_name": "madelmund", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Mat Adelmund", - "profile_use_background_image": true, - "description": "MTG fan (username Flashtastica on Pucatrade), sports fan, neature fan.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1815556860/AFB1FF81-6BC1-49DB-B62B-A2DBF2EE9986_normal", - "profile_background_color": "1A1B1F", - "created_at": "Mon Feb 04 07:06:47 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1815556860/AFB1FF81-6BC1-49DB-B62B-A2DBF2EE9986_normal", - "favourites_count": 1232, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MTGatTCGplayer", - "in_reply_to_user_id": 54425885, - "in_reply_to_status_id_str": "685530200675872768", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685536826401009664", - "id": 685536826401009664, - "text": "@MTGatTCGplayer if you're wondering why you lose followers, look no further than these annoying posts.", - "in_reply_to_user_id_str": "54425885", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MTGatTCGplayer", - "id_str": "54425885", - "id": 54425885, - "indices": [ - 0, - 15 - ], - "name": "Magic.TCGplayer.com" - } - ] - }, - "created_at": "Fri Jan 08 19:01:30 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685530200675872768, - "lang": "en" - }, - "default_profile_image": false, - "id": 13038122, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/464171753149722625/D1IzAztF.jpeg", - "statuses_count": 4621, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13038122/1429241732", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "10794832", - "following": false, - "friends_count": 109, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jkprovideo.com", - "url": "https://t.co/m1VXCvKpr8", - "expanded_url": "http://jkprovideo.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2047112/spider-guarding-eggs-683251-xl.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EEEECC", - "profile_link_color": "218754", - "geo_enabled": true, - "followers_count": 369, - "location": "eccenTriCities, Washington", - "screen_name": "junsten", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 20, - "name": "easily distracte", - "profile_use_background_image": false, - "description": "Personal Twitter account of Justin Brault. Opinions expressed are not those of my company, its parent company or my parents.", - "url": "https://t.co/m1VXCvKpr8", - "profile_text_color": "101041", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667533921840566277/feExkf3L_normal.jpg", - "profile_background_color": "101041", - "created_at": "Sun Dec 02 22:05:59 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "101041", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667533921840566277/feExkf3L_normal.jpg", - "favourites_count": 473, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685577162687053824", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/TriCityHerald/\u2026", - "url": "https://t.co/5yTImEYe01", - "expanded_url": "https://twitter.com/TriCityHerald/status/685576485244030976", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:41:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685577162687053824, - "text": "I misread \u201cKennewick man\u201d as \u201cKennewick Man\u201d Every. Single. Time. \nhttps://t.co/5yTImEYe01", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 10794832, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2047112/spider-guarding-eggs-683251-xl.jpg", - "statuses_count": 8288, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "12811302", - "following": false, - "friends_count": 917, - "entities": { - "description": { - "urls": [ - { - "display_url": "on.fb.me/ZN1M85", - "url": "http://t.co/2nrtjFXE5G", - "expanded_url": "http://on.fb.me/ZN1M85", - "indices": [ - 134, - 156 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/christopher.bl\u2026", - "url": "https://t.co/2uv4GOkTL6", - "expanded_url": "https://www.facebook.com/christopher.blizzard", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "D4C4B9", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 8637, - "location": "Santa Clara, CA", - "screen_name": "chrisblizzard", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 421, - "name": "Christopher Blizzard", - "profile_use_background_image": false, - "description": "Developer Relations Clown at Facebook. Lemons racer. Former Mozillian. Lots of tech and cats doing funny things. Also on Facebook: http://t.co/2nrtjFXE5G", - "url": "https://t.co/2uv4GOkTL6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/421244098/blizz-head-sq-96_normal.png", - "profile_background_color": "4A4F68", - "created_at": "Tue Jan 29 02:13:18 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5C5C5C", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/421244098/blizz-head-sq-96_normal.png", - "favourites_count": 2025, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685582539432460289", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "vine.co/v/OjqeYWWpVWK", - "url": "https://t.co/66CLkgwSmz", - "expanded_url": "https://vine.co/v/OjqeYWWpVWK", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:03:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685582539432460289, - "text": "When I want to focus on quality work I leave this running in the background as a reminder: https://t.co/66CLkgwSmz", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 12811302, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 23505, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12811302/1397768573", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16130049", - "following": false, - "friends_count": 317, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 203, - "location": "\u00dcT: 41.39564,-82.15921", - "screen_name": "jslagle", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "jslagle", - "profile_use_background_image": true, - "description": "Problem solving nerd; infrastructure guy. Trying to bring technology to whatever he can, including fitness and the traditional enterprise.", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1276325677/IMG_2111-resize_normal.JPG", - "profile_background_color": "1A1B1F", - "created_at": "Thu Sep 04 15:11:08 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1276325677/IMG_2111-resize_normal.JPG", - "favourites_count": 7, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "sjonsson", - "in_reply_to_user_id": 14366907, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685565535203926016", - "id": 685565535203926016, - "text": "@sjonsson You should have shared your MFP etc username :)", - "in_reply_to_user_id_str": "14366907", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sjonsson", - "id_str": "14366907", - "id": 14366907, - "indices": [ - 0, - 9 - ], - "name": "Stan J\u00f3nsson" - } - ] - }, - "created_at": "Fri Jan 08 20:55:35 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 16130049, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 1507, - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "118345831", - "following": false, - "friends_count": 9174, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "philippe.lewin.me", - "url": "http://t.co/flKLkiL7fj", - "expanded_url": "http://philippe.lewin.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "8F5536", - "geo_enabled": true, - "followers_count": 10735, - "location": "Paris, France", - "screen_name": "PhilippeLewin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 168, - "name": "Philippe Lewin", - "profile_use_background_image": true, - "description": "May share things about IT, dev, ops, data *, monitoring and security.\n\n@parismonitoring", - "url": "http://t.co/flKLkiL7fj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655845220727324672/vvvFJhGq_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Sun Feb 28 11:11:37 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655845220727324672/vvvFJhGq_normal.jpg", - "favourites_count": 442, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684261361082339328", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1ZL3tjM", - "url": "https://t.co/fmPFnGNJUY", - "expanded_url": "http://bit.ly/1ZL3tjM", - "indices": [ - 34, - 57 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 06:33:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684261361082339328, - "text": "Permanent Identifiers for the Web https://t.co/fmPFnGNJUY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 118345831, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "statuses_count": 1190, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/118345831/1420119559", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "12996602", - "following": false, - "friends_count": 238, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2042112/Bus_20Excursion_20_1.JPG", - "notifications": false, - "profile_sidebar_fill_color": "F385A9", - "profile_link_color": "060BD7", - "geo_enabled": true, - "followers_count": 214, - "location": "", - "screen_name": "jadelmund", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Julie Adelmund", - "profile_use_background_image": false, - "description": "CPA for real. Tax Preparer extrodinaire. Wife of @madelmund; mother of 3 (dogs). Follower of Christ.", - "url": null, - "profile_text_color": "D7064A", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1302404708/Screen_shot_2011-04-06_at_2.41.25_PM_normal.png", - "profile_background_color": "F385A9", - "created_at": "Sun Feb 03 01:31:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D7064A", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302404708/Screen_shot_2011-04-06_at_2.41.25_PM_normal.png", - "favourites_count": 632, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MBrault", - "in_reply_to_user_id": 27579777, - "in_reply_to_status_id_str": "675889949888024576", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "676062488035627009", - "id": 676062488035627009, - "text": "@MBrault @lalahods gorgeous!", - "in_reply_to_user_id_str": "27579777", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MBrault", - "id_str": "27579777", - "id": 27579777, - "indices": [ - 0, - 8 - ], - "name": "Michelle" - }, - { - "screen_name": "lalahods", - "id_str": "227551595", - "id": 227551595, - "indices": [ - 9, - 18 - ], - "name": "Lady Hodo" - } - ] - }, - "created_at": "Sun Dec 13 15:33:52 +0000 2015", - "source": "Twitter for iPad", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 675889949888024576, - "lang": "en" - }, - "default_profile_image": false, - "id": 12996602, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2042112/Bus_20Excursion_20_1.JPG", - "statuses_count": 1726, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12996602/1421597549", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "34368005", - "following": false, - "friends_count": 344, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 125, - "location": "", - "screen_name": "jessecpeterson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Jesse Peterson", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Apr 22 19:21:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", - "favourites_count": 15, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684537994586398720", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/marczak/status\u2026", - "url": "https://t.co/TO0vTofgNn", - "expanded_url": "https://twitter.com/marczak/status/684536561401245696", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 00:52:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684537994586398720, - "text": "I suppose for some people for some movies the studio/intro jingle just is *that* flick. Tristar does that for me https://t.co/TO0vTofgNn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": true, - "id": 34368005, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 164, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "97506932", - "following": false, - "friends_count": 104, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tilanus.com", - "url": "http://t.co/60VzbWrfaR", - "expanded_url": "http://www.tilanus.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/574846490083860482/Ppai_wXN.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "520303", - "geo_enabled": false, - "followers_count": 162, - "location": "Pijnacker", - "screen_name": "winfriedtilanus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "name": "Winfried Tilanus", - "profile_use_background_image": true, - "description": "Thinking is a knife. A good cut enables action. Knowledge tells where to cut, clean cuts come with experience. But in the end it boils down to dare to cut.", - "url": "http://t.co/60VzbWrfaR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579666619/winfried_normal.jpg", - "profile_background_color": "BD6000", - "created_at": "Thu Dec 17 19:19:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579666619/winfried_normal.jpg", - "favourites_count": 23, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "zeank", - "in_reply_to_user_id": 2898431, - "in_reply_to_status_id_str": "685033853401063424", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685036295190646784", - "id": 685036295190646784, - "text": "@zeank when reading @stewartbaker I also first thought it was @theonion, but he sincerely shows us the right direction!", - "in_reply_to_user_id_str": "2898431", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "zeank", - "id_str": "2898431", - "id": 2898431, - "indices": [ - 0, - 6 - ], - "name": "stefan strigler" - }, - { - "screen_name": "stewartbaker", - "id_str": "11484172", - "id": 11484172, - "indices": [ - 20, - 33 - ], - "name": "stewartbaker" - }, - { - "screen_name": "TheOnion", - "id_str": "14075928", - "id": 14075928, - "indices": [ - 62, - 71 - ], - "name": "The Onion" - } - ] - }, - "created_at": "Thu Jan 07 09:52:34 +0000 2016", - "source": "Choqok", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685033853401063424, - "lang": "en" - }, - "default_profile_image": false, - "id": 97506932, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/574846490083860482/Ppai_wXN.png", - "statuses_count": 1064, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "28593671", - "following": false, - "friends_count": 186, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 48, - "location": "Waterford, Ireland", - "screen_name": "weili1984", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Wei Li", - "profile_use_background_image": true, - "description": "Software Engineer @FeedHenry", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/512367356933578752/YQvZix6G_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Apr 03 16:10:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/512367356933578752/YQvZix6G_normal.jpeg", - "favourites_count": 19, - "status": { - "retweet_count": 4, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jasonmadigan", - "in_reply_to_user_id": 8654152, - "in_reply_to_status_id_str": null, - "retweet_count": 4, - "truncated": false, - "retweeted": false, - "id_str": "675426132502687745", - "id": 675426132502687745, - "text": "@jasonmadigan #jasonstag2015", - "in_reply_to_user_id_str": "8654152", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 14, - 28 - ], - "text": "jasonstag2015" - } - ], - "user_mentions": [ - { - "screen_name": "jasonmadigan", - "id_str": "8654152", - "id": 8654152, - "indices": [ - 0, - 13 - ], - "name": "Jason Madigan" - } - ] - }, - "created_at": "Fri Dec 11 21:25:13 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "und" - }, - "in_reply_to_user_id": null, - "id_str": "675426461533229057", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 30, - 44 - ], - "text": "jasonstag2015" - } - ], - "user_mentions": [ - { - "screen_name": "ialanmoran", - "id_str": "353861082", - "id": 353861082, - "indices": [ - 3, - 14 - ], - "name": "Alan Moran" - }, - { - "screen_name": "jasonmadigan", - "id_str": "8654152", - "id": 8654152, - "indices": [ - 16, - 29 - ], - "name": "Jason Madigan" - } - ] - }, - "created_at": "Fri Dec 11 21:26:31 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675426461533229057, - "text": "RT @ialanmoran: @jasonmadigan #jasonstag2015", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 28593671, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 21, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/28593671/1410994647", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "23238890", - "following": false, - "friends_count": 298, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "charles.stanho.pe", - "url": "http://t.co/xkzuqVonai", - "expanded_url": "http://charles.stanho.pe", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9C481D", - "geo_enabled": false, - "followers_count": 83, - "location": "Portland, OR", - "screen_name": "cstanhope", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Charles Stanhope", - "profile_use_background_image": false, - "description": "Software/hardware developer interested in programming languages, open platforms, art, craft, diy, learning, life etc. Trying hard to be part of the solution.", - "url": "http://t.co/xkzuqVonai", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684168704196644864/8iC7wstY_normal.jpg", - "profile_background_color": "0A703D", - "created_at": "Sat Mar 07 21:47:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684168704196644864/8iC7wstY_normal.jpg", - "favourites_count": 3712, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "JohnLegere", - "in_reply_to_user_id": 1394399438, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685223070018080769", - "id": 685223070018080769, - "text": "@JohnLegere EFF supporter and a T-Mobile customer since my first cell phone, but you just made me regret the latter. #WeAreEFF", - "in_reply_to_user_id_str": "1394399438", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 117, - 126 - ], - "text": "WeAreEFF" - } - ], - "user_mentions": [ - { - "screen_name": "JohnLegere", - "id_str": "1394399438", - "id": 1394399438, - "indices": [ - 0, - 11 - ], - "name": "John Legere" - } - ] - }, - "created_at": "Thu Jan 07 22:14:45 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 23238890, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "statuses_count": 2903, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "90916703", - "following": false, - "friends_count": 150, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 346, - "location": "Kansas City, MO", - "screen_name": "michellebrush", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "Michelle Brush", - "profile_use_background_image": false, - "description": "Math geek leading teams that bring in big data for @cernereng, chapter leader for @gdikc, and organizer for @midwestio.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/625000596383227908/WH7hhHsO_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Nov 18 17:33:06 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/625000596383227908/WH7hhHsO_normal.jpg", - "favourites_count": 214, - "status": { - "retweet_count": 497, - "retweeted_status": { - "retweet_count": 497, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "675354789346156545", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/GmGcqB5292", - "url": "https://t.co/GmGcqB5292", - "expanded_url": "http://twitter.com/lennyzeltser/status/675354789346156545/photo/1", - "indices": [ - 16, - 39 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Dec 11 16:41:43 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675354789346156545, - "text": "Risk assessment https://t.co/GmGcqB5292", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 414, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "675711078496514049", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/GmGcqB5292", - "url": "https://t.co/GmGcqB5292", - "expanded_url": "http://twitter.com/lennyzeltser/status/675354789346156545/photo/1", - "indices": [ - 34, - 57 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lennyzeltser", - "id_str": "14780493", - "id": 14780493, - "indices": [ - 3, - 16 - ], - "name": "Lenny Zeltser" - } - ] - }, - "created_at": "Sat Dec 12 16:17:29 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675711078496514049, - "text": "RT @lennyzeltser: Risk assessment https://t.co/GmGcqB5292", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 90916703, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 210, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/90916703/1402448313", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Beer, Coffee, Ruby, Systems guy, linux", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "166223307", - "blocking": false, - "is_translation_enabled": false, - "id": 166223307, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Jul 13 16:55:37 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/459028643323207681/MhUvSPKX_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 532, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459028643323207681/MhUvSPKX_normal.jpeg", - "favourites_count": 506, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 14, - "blocked_by": false, - "following": false, - "location": "Seattle, WA", - "muting": false, - "friends_count": 124, - "notifications": false, - "screen_name": "ianderson__", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 1, - "is_translator": false, - "name": "Mr. WolfOps" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "429366017", - "following": false, - "friends_count": 162, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "csa-net.dk", - "url": "http://t.co/wGwo3r3kww", - "expanded_url": "http://csa-net.dk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 66, - "location": "Denmark", - "screen_name": "ClausAlboege", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Claus Alb\u00f8ge", - "profile_use_background_image": true, - "description": "Operations, Deployment, Automation, Cloud, Security", - "url": "http://t.co/wGwo3r3kww", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2506933106/h2uvo4vlolpxn9t0mk9m_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 05 21:53:51 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2506933106/h2uvo4vlolpxn9t0mk9m_normal.jpeg", - "favourites_count": 398, - "status": { - "retweet_count": 5, - "retweeted_status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684858483464880128", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "opensourcedays.org", - "url": "https://t.co/2KtIu0PjtD", - "expanded_url": "https://opensourcedays.org", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 22:06:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684858483464880128, - "text": "Psssssttttt... Open Source Days has a new team, and they are doing a conference the 27th of February in Copenhagen - https://t.co/2KtIu0PjtD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684871299324342274", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "opensourcedays.org", - "url": "https://t.co/2KtIu0PjtD", - "expanded_url": "https://opensourcedays.org", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ahfaeroey", - "id_str": "29861819", - "id": 29861819, - "indices": [ - 3, - 13 - ], - "name": "Alexander F\u00e6r\u00f8y" - } - ] - }, - "created_at": "Wed Jan 06 22:56:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684871299324342274, - "text": "RT @ahfaeroey: Psssssttttt... Open Source Days has a new team, and they are doing a conference the 27th of February in Copenhagen - https:/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 429366017, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 463, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/429366017/1398760147", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14960321", - "following": false, - "friends_count": 327, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tim.freunds.net", - "url": "http://t.co/T3vKb1MjKS", - "expanded_url": "http://tim.freunds.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 186, - "location": "Lancaster, PA", - "screen_name": "timfreund", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Tim Freund", - "profile_use_background_image": true, - "description": "Programmer, home renovator, eater of good food.", - "url": "http://t.co/T3vKb1MjKS", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/589988064988016641/9y7BipD3_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat May 31 03:18:16 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/589988064988016641/9y7BipD3_normal.jpg", - "favourites_count": 98, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "RyanMelton", - "in_reply_to_user_id": 126011278, - "in_reply_to_status_id_str": "684813481196040192", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684815216589180928", - "id": 684815216589180928, - "text": "@RyanMelton congrats, Ryan!", - "in_reply_to_user_id_str": "126011278", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RyanMelton", - "id_str": "126011278", - "id": 126011278, - "indices": [ - 0, - 11 - ], - "name": "Ryan Melton" - } - ] - }, - "created_at": "Wed Jan 06 19:14:05 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684813481196040192, - "lang": "en" - }, - "default_profile_image": false, - "id": 14960321, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 484, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "180062994", - "following": false, - "friends_count": 1153, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649260006/qzzejvgx06re9pjqjda1.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2EDB6B", - "geo_enabled": false, - "followers_count": 383, - "location": "Louisville, Kentucky", - "screen_name": "Mr_KNE", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Mr_KNE", - "profile_use_background_image": true, - "description": "Linux and Science enthusiast. Does not auto-follow.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2569221673/tfpochuonbr5cyxp5t3n_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Aug 18 19:10:40 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2569221673/tfpochuonbr5cyxp5t3n_normal.png", - "favourites_count": 938, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609326015344641", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/dailykos/statu\u2026", - "url": "https://t.co/Ra3tOfN2Q6", - "expanded_url": "https://twitter.com/dailykos/status/685605890251161600", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [ - { - "indices": [ - 76, - 84 - ], - "text": "THEBEST" - } - ], - "user_mentions": [ - { - "screen_name": "realDonaldTrump", - "id_str": "25073877", - "id": 25073877, - "indices": [ - 51, - 67 - ], - "name": "Donald J. Trump" - } - ] - }, - "created_at": "Fri Jan 08 23:49:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609326015344641, - "text": "You forgot the noise canceling headphones for when @realDonaldTrump speaks. #THEBEST https://t.co/Ra3tOfN2Q6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 180062994, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649260006/qzzejvgx06re9pjqjda1.jpeg", - "statuses_count": 6108, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/180062994/1399637026", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "31369018", - "following": false, - "friends_count": 525, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362231250/nedroid_tumblr_lrfqzmbbfv1qhfu4ho1_1280.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 170, - "location": "", - "screen_name": "barry_oneill", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Barry O'Neill", - "profile_use_background_image": true, - "description": "bottles and cans just clap your hands", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/563910610736279554/HEBKN9eY_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Apr 15 08:29:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/563910610736279554/HEBKN9eY_normal.png", - "favourites_count": 64, - "status": { - "retweet_count": 64, - "retweeted_status": { - "retweet_count": 64, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684828660973580288", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 254, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 449, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 720, - "h": 539, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", - "type": "photo", - "indices": [ - 49, - 72 - ], - "media_url": "http://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", - "display_url": "pic.twitter.com/NSYWRbhGzi", - "id_str": "684828643193962496", - "expanded_url": "http://twitter.com/BrilliantMaps/status/684828660973580288/photo/1", - "id": 684828643193962496, - "url": "https://t.co/NSYWRbhGzi" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "brilliantmaps.com/syria-situatio\u2026", - "url": "https://t.co/GZO7sFiARi", - "expanded_url": "http://brilliantmaps.com/syria-situation/", - "indices": [ - 25, - 48 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 20:07:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684828660973580288, - "text": "The Situation in Syria - https://t.co/GZO7sFiARi https://t.co/NSYWRbhGzi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 33, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684884559314448385", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 254, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 449, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 720, - "h": 539, - "resize": "fit" - } - }, - "source_status_id_str": "684828660973580288", - "url": "https://t.co/NSYWRbhGzi", - "media_url": "http://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", - "source_user_id_str": "2751434132", - "id_str": "684828643193962496", - "id": 684828643193962496, - "media_url_https": "https://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", - "type": "photo", - "indices": [ - 68, - 91 - ], - "source_status_id": 684828660973580288, - "source_user_id": 2751434132, - "display_url": "pic.twitter.com/NSYWRbhGzi", - "expanded_url": "http://twitter.com/BrilliantMaps/status/684828660973580288/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "brilliantmaps.com/syria-situatio\u2026", - "url": "https://t.co/GZO7sFiARi", - "expanded_url": "http://brilliantmaps.com/syria-situation/", - "indices": [ - 44, - 67 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BrilliantMaps", - "id_str": "2751434132", - "id": 2751434132, - "indices": [ - 3, - 17 - ], - "name": "Brilliant Maps" - } - ] - }, - "created_at": "Wed Jan 06 23:49:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684884559314448385, - "text": "RT @BrilliantMaps: The Situation in Syria - https://t.co/GZO7sFiARi https://t.co/NSYWRbhGzi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Fenix for Android" - }, - "default_profile_image": false, - "id": 31369018, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362231250/nedroid_tumblr_lrfqzmbbfv1qhfu4ho1_1280.jpg", - "statuses_count": 3310, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/31369018/1352224614", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "35648936", - "following": false, - "friends_count": 572, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/854384889/03791c673b51f79c4aa20ee15dbfaeac.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "12291F", - "profile_link_color": "786A55", - "geo_enabled": true, - "followers_count": 181, - "location": "San Mateo, CA", - "screen_name": "sdoumbouya", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "Sekou Doumbouya", - "profile_use_background_image": true, - "description": "Systems Engineer that love automation", - "url": null, - "profile_text_color": "547B61", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000627467794/76a096f69384f6a262fa075da554687d_normal.jpeg", - "profile_background_color": "030302", - "created_at": "Mon Apr 27 02:54:32 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "3C5449", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000627467794/76a096f69384f6a262fa075da554687d_normal.jpeg", - "favourites_count": 150, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684811777368961025", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "clusterhq.com/2015/12/16/int\u2026", - "url": "https://t.co/qTx7UKR3Wp", - "expanded_url": "https://clusterhq.com/2015/12/16/introducing-mesos-flocker/", - "indices": [ - 63, - 86 - ] - } - ], - "hashtags": [ - { - "indices": [ - 5, - 11 - ], - "text": "mesos" - }, - { - "indices": [ - 47, - 51 - ], - "text": "SDS" - }, - { - "indices": [ - 87, - 94 - ], - "text": "docker" - }, - { - "indices": [ - 95, - 106 - ], - "text": "mesosphere" - }, - { - "indices": [ - 107, - 117 - ], - "text": "databases" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 19:00:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684811777368961025, - "text": "Love #mesos? Checkout Mesos-Flocker: Seamless #SDS for Mesos https://t.co/qTx7UKR3Wp #docker #mesosphere #databases", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685156667198169088", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "clusterhq.com/2015/12/16/int\u2026", - "url": "https://t.co/qTx7UKR3Wp", - "expanded_url": "https://clusterhq.com/2015/12/16/introducing-mesos-flocker/", - "indices": [ - 78, - 101 - ] - } - ], - "hashtags": [ - { - "indices": [ - 20, - 26 - ], - "text": "mesos" - }, - { - "indices": [ - 62, - 66 - ], - "text": "SDS" - }, - { - "indices": [ - 102, - 109 - ], - "text": "docker" - }, - { - "indices": [ - 110, - 121 - ], - "text": "mesosphere" - }, - { - "indices": [ - 122, - 132 - ], - "text": "databases" - } - ], - "user_mentions": [ - { - "screen_name": "ClusterHQ", - "id_str": "2571577512", - "id": 2571577512, - "indices": [ - 3, - 13 - ], - "name": "ClusterHQ" - } - ] - }, - "created_at": "Thu Jan 07 17:50:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685156667198169088, - "text": "RT @ClusterHQ: Love #mesos? Checkout Mesos-Flocker: Seamless #SDS for Mesos https://t.co/qTx7UKR3Wp #docker #mesosphere #databases", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 35648936, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/854384889/03791c673b51f79c4aa20ee15dbfaeac.jpeg", - "statuses_count": 1102, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35648936/1401159851", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14187783", - "following": false, - "friends_count": 1771, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stevenmurawski.com", - "url": "http://t.co/JfIVsEmAS6", - "expanded_url": "http://stevenmurawski.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3086, - "location": "Oconomowoc, WI ", - "screen_name": "StevenMurawski", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 251, - "name": "Steven Murawski", - "profile_use_background_image": true, - "description": "Community Software Engineer for @Chef and Microsoft MVP (PowerShell)", - "url": "http://t.co/JfIVsEmAS6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/554782165930504192/P1YLJA1D_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 20 22:27:25 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/554782165930504192/P1YLJA1D_normal.jpeg", - "favourites_count": 639, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685512588831096832", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1mIBRxo", - "url": "https://t.co/Fv9fvWdWDT", - "expanded_url": "http://bit.ly/1mIBRxo", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [ - { - "indices": [ - 10, - 21 - ], - "text": "PowerShell" - } - ], - "user_mentions": [ - { - "screen_name": "r_keith_hill", - "id_str": "16938890", - "id": 16938890, - "indices": [ - 81, - 94 - ], - "name": "r_keith_hill" - } - ] - }, - "created_at": "Fri Jan 08 17:25:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685512588831096832, - "text": "Debugging #PowerShell Script with Visual Studio Code https://t.co/Fv9fvWdWDT via @r_keith_hill", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 14187783, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10775, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "108667802", - "following": false, - "friends_count": 229, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "MediaRemedial.com", - "url": "https://t.co/XdkxvpK0CQ", - "expanded_url": "http://www.MediaRemedial.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/715352704/745e63260f0f02274f671bef267eaa3f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "809DBD", - "geo_enabled": true, - "followers_count": 379, - "location": "Portland, OR", - "screen_name": "MediaRemedial", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 26, - "name": "Tara", - "profile_use_background_image": true, - "description": "I code. I write. I edit. I proofread. I am single (is it the cat?) I am transforming my life. I also curse. See also @GoatUserStories", - "url": "https://t.co/XdkxvpK0CQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2659435311/854e4ec9568758ea2312e76eb105e028_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 26 17:43:30 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2659435311/854e4ec9568758ea2312e76eb105e028_normal.png", - "favourites_count": 1235, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685382155539615752", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 293, - "resize": "fit" - }, - "medium": { - "w": 540, - "h": 466, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 540, - "h": 466, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYL3cDzUsAADYnu.png", - "type": "photo", - "indices": [ - 47, - 70 - ], - "media_url": "http://pbs.twimg.com/media/CYL3cDzUsAADYnu.png", - "display_url": "pic.twitter.com/cz44jsTW52", - "id_str": "685382154742706176", - "expanded_url": "http://twitter.com/MediaRemedial/status/685382155539615752/photo/1", - "id": 685382154742706176, - "url": "https://t.co/cz44jsTW52" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 0, - 13 - ], - "text": "whiskyadvent" - }, - { - "indices": [ - 28, - 46 - ], - "text": "thingsthatamuseme" - } - ], - "user_mentions": [ - { - "screen_name": "MasterOfMalt", - "id_str": "81616245", - "id": 81616245, - "indices": [ - 14, - 27 - ], - "name": "Master Of Malt" - } - ] - }, - "created_at": "Fri Jan 08 08:46:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685382155539615752, - "text": "#whiskyadvent @MasterOfMalt #thingsthatamuseme https://t.co/cz44jsTW52", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetCaster for Android" - }, - "default_profile_image": false, - "id": 108667802, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/715352704/745e63260f0f02274f671bef267eaa3f.jpeg", - "statuses_count": 3452, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/108667802/1353278918", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "70037326", - "following": false, - "friends_count": 449, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "icarocamelo.com", - "url": "https://t.co/cZwA4NCdF6", - "expanded_url": "http://www.icarocamelo.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FFFFFF", - "geo_enabled": true, - "followers_count": 298, - "location": "Qu\u00e9bec City, QC, Canada", - "screen_name": "icarocamelo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Icaro Camelo", - "profile_use_background_image": false, - "description": "I'm a software dev lover, autodidact, tennis player, guitar player, teacher but always a learner.", - "url": "https://t.co/cZwA4NCdF6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/563166528275619840/PGgQsEMn_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Aug 30 03:27:30 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/563166528275619840/PGgQsEMn_normal.jpeg", - "favourites_count": 278, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682441062258978816", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/@mauricioanich\u2026", - "url": "https://t.co/nbwBQzmGTU", - "expanded_url": "https://medium.com/@mauricioaniche/what-is-the-magic-of-test-driven-development-868f45fc9b1", - "indices": [ - 64, - 87 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mauricioaniche", - "id_str": "14262678", - "id": 14262678, - "indices": [ - 48, - 63 - ], - "name": "Maur\u00edcio Aniche" - } - ] - }, - "created_at": "Thu Dec 31 06:00:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682441062258978816, - "text": "\u201cWhat is the magic of Test-Driven Development?\u201d @mauricioaniche https://t.co/nbwBQzmGTU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 70037326, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 4287, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70037326/1430515967", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15895658", - "following": false, - "friends_count": 2032, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "harrymoreno.com", - "url": "http://t.co/zvwKWysV4h", - "expanded_url": "http://harrymoreno.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 564, - "location": "New York, USA", - "screen_name": "morenoh149", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 72, - "name": "Harry Moreno", - "profile_use_background_image": true, - "description": "\u200d\u2764\ufe0f\u200d\u200d", - "url": "http://t.co/zvwKWysV4h", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664663082275246080/y6enNHl5_normal.jpg", - "profile_background_color": "0F0C06", - "created_at": "Mon Aug 18 20:04:55 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664663082275246080/y6enNHl5_normal.jpg", - "favourites_count": 7747, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 15895658, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 8809, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15895658/1352711231", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6182512", - "following": false, - "friends_count": 209, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 116, - "location": "Delaware", - "screen_name": "cbontrager", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Caleb Bontrager", - "profile_use_background_image": true, - "description": "Techy, business oriented, network/system guy. Love technology, life, and more importantly, life following Jesus.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/543238913238654976/CNdoj7XV_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Sun May 20 17:49:07 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/543238913238654976/CNdoj7XV_normal.jpeg", - "favourites_count": 167, - "status": { - "retweet_count": 5, - "retweeted_status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678627759598542849", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1YuelQI", - "url": "https://t.co/RAgd7Kj2Vk", - "expanded_url": "http://bit.ly/1YuelQI", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Dec 20 17:27:20 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678627759598542849, - "text": "The CIA Secret to Cybersecurity That No One Seems to Get | WIRED - https://t.co/RAgd7Kj2Vk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "TweetCaster for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678729078845915136", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1YuelQI", - "url": "https://t.co/RAgd7Kj2Vk", - "expanded_url": "http://bit.ly/1YuelQI", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "secprofgreen", - "id_str": "66025772", - "id": 66025772, - "indices": [ - 3, - 16 - ], - "name": "Andy Green" - } - ] - }, - "created_at": "Mon Dec 21 00:09:57 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678729078845915136, - "text": "RT @secprofgreen: The CIA Secret to Cybersecurity That No One Seems to Get | WIRED - https://t.co/RAgd7Kj2Vk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 6182512, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 639, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "15103611", - "following": false, - "friends_count": 492, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "medium.com/@maxlynch/", - "url": "https://t.co/8eRRTRGxcZ", - "expanded_url": "http://medium.com/@maxlynch/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479029095271899136/4AxMGk8y.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "737373", - "geo_enabled": true, - "followers_count": 7971, - "location": "Madison", - "screen_name": "maxlynch", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 385, - "name": "Max Lynch", - "profile_use_background_image": false, - "description": "Helping the web win on mobile with @ionicframework", - "url": "https://t.co/8eRRTRGxcZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/653007360026259460/ok1dzunM_normal.png", - "profile_background_color": "CFEAF0", - "created_at": "Fri Jun 13 02:12:31 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/653007360026259460/ok1dzunM_normal.png", - "favourites_count": 15448, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685608203401297921", - "id": 685608203401297921, - "text": "Raining in January...crazy", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:45:08 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15103611, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479029095271899136/4AxMGk8y.png", - "statuses_count": 15190, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15103611/1448247056", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "14375294", - "following": false, - "friends_count": 72501, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bitfieldconsulting.com", - "url": "http://t.co/St02BRS9rN", - "expanded_url": "http://bitfieldconsulting.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/56417743/bitfield-logo.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 69480, - "location": "Cornwall", - "screen_name": "bitfield", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1275, - "name": "John Arundel", - "profile_use_background_image": true, - "description": "Helps with sysadmin, devops, Puppet & Chef. Automates stuff for you, because you haven't got time. Ally.", - "url": "http://t.co/St02BRS9rN", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2550451333/upr558w4gb7mdgopk0af_normal.jpeg", - "profile_background_color": "000203", - "created_at": "Sun Apr 13 14:37:00 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2550451333/upr558w4gb7mdgopk0af_normal.jpeg", - "favourites_count": 96, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 37, - "truncated": false, - "retweeted": false, - "id_str": "685474079390830592", - "id": 685474079390830592, - "text": "Nginx is a great operating system, but it lacks a good webserver.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:52:10 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 88, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14375294, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/56417743/bitfield-logo.png", - "statuses_count": 4653, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14375294/1398508041", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "963411698", - "following": false, - "friends_count": 1879, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fsharpers.com", - "url": "http://t.co/ESsVEjsMYi", - "expanded_url": "http://www.fsharpers.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554716993018818561/R-VQdntT.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "4191BE", - "geo_enabled": false, - "followers_count": 390, - "location": "Midtown Manhattan 212-470-8005", - "screen_name": "itcognoscente", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 31, - "name": "Gregory Hutchinson", - "profile_use_background_image": false, - "description": "Building Functional Programming Relationships in Silicon Alley and the Valley. Recruitment Boutique for Haskell, Erlang, OCaml, Clojure, F# and Lisp.", - "url": "http://t.co/ESsVEjsMYi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/550876475306434560/r-7V83DO_normal.jpeg", - "profile_background_color": "30B9DB", - "created_at": "Thu Nov 22 01:28:52 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/550876475306434560/r-7V83DO_normal.jpeg", - "favourites_count": 1258, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "672875683698339841", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/MIT_CSAIL/stat\u2026", - "url": "https://t.co/kERuQoFlvQ", - "expanded_url": "https://twitter.com/MIT_CSAIL/status/667080239323979776", - "indices": [ - 47, - 70 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Dec 04 20:30:39 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 672875683698339841, - "text": "Looks lie 're training him for the Rangers! :D https://t.co/kERuQoFlvQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 963411698, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554716993018818561/R-VQdntT.jpeg", - "statuses_count": 2984, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/963411698/1421096614", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "23992877", - "following": false, - "friends_count": 552, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jeremytinley.wordpress.com", - "url": "https://t.co/WDRp7DtmNH", - "expanded_url": "https://jeremytinley.wordpress.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 395, - "location": "Denver, CO", - "screen_name": "techwolf359", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Jeremy Tinley", - "profile_use_background_image": true, - "description": "i like Tool, bacon and geeky things. Senior MySQL Operations Engineer for Etsy.", - "url": "https://t.co/WDRp7DtmNH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648248735042945024/boFlcCxu_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu Mar 12 17:55:56 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648248735042945024/boFlcCxu_normal.jpg", - "favourites_count": 411, - "status": { - "retweet_count": 10971, - "retweeted_status": { - "retweet_count": 10971, - "in_reply_to_user_id": null, - "possibly_sensitive": true, - "id_str": "685301049654165504", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 425, - "resize": "fit" - }, - "large": { - "w": 480, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 480, - "h": 600, - "resize": "fit" - } - }, - "source_status_id_str": "684448534515548161", - "url": "https://t.co/Q6S1azBPWp", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", - "source_user_id_str": "2582885773", - "id_str": "684448461350113281", - "id": 684448461350113281, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", - "type": "photo", - "indices": [ - 28, - 51 - ], - "source_status_id": 684448534515548161, - "source_user_id": 2582885773, - "display_url": "pic.twitter.com/Q6S1azBPWp", - "expanded_url": "http://twitter.com/HippieGifs/status/684448534515548161/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:24:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685301049654165504, - "text": "Perspective is everything \ud83d\udc41 https://t.co/Q6S1azBPWp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15183, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685311199655792640", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 425, - "resize": "fit" - }, - "large": { - "w": 480, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 480, - "h": 600, - "resize": "fit" - } - }, - "source_status_id_str": "684448534515548161", - "url": "https://t.co/Q6S1azBPWp", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", - "source_user_id_str": "2582885773", - "id_str": "684448461350113281", - "id": 684448461350113281, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", - "type": "photo", - "indices": [ - 48, - 71 - ], - "source_status_id": 684448534515548161, - "source_user_id": 2582885773, - "display_url": "pic.twitter.com/Q6S1azBPWp", - "expanded_url": "http://twitter.com/HippieGifs/status/684448534515548161/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BabyAnimalPics", - "id_str": "1372975219", - "id": 1372975219, - "indices": [ - 3, - 18 - ], - "name": "Baby Animals" - } - ] - }, - "created_at": "Fri Jan 08 04:04:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685311199655792640, - "text": "RT @BabyAnimalPics: Perspective is everything \ud83d\udc41 https://t.co/Q6S1azBPWp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 23992877, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3896, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23992877/1401897032", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "149391883", - "following": false, - "friends_count": 715, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ofmax.li/pages/about-me\u2026", - "url": "https://t.co/rlNUBQUD5s", - "expanded_url": "https://ofmax.li/pages/about-me.html", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/376260464/x941d0ed8d4ed543d5e9c11f07fc78c1.png", - "notifications": false, - "profile_sidebar_fill_color": "333333", - "profile_link_color": "666666", - "geo_enabled": true, - "followers_count": 599, - "location": "Portland, OR", - "screen_name": "Max_Resnick", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 40, - "name": "Max Resnick", - "profile_use_background_image": true, - "description": "opinionated. interwebs. python. linux. software engineer. ex project manager off the record.", - "url": "https://t.co/rlNUBQUD5s", - "profile_text_color": "999999", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/438483690029842432/McRiUETF_normal.jpeg", - "profile_background_color": "CCCCCC", - "created_at": "Sat May 29 05:00:55 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/438483690029842432/McRiUETF_normal.jpeg", - "favourites_count": 26, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685515454522224644", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "jelly.co", - "url": "https://t.co/HwH41dMWq8", - "expanded_url": "http://jelly.co", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:36:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685515454522224644, - "text": "startupvanco I just reserved my username on jelly, a way for busy people to get helpful answers. Reserve yours now\u2026 https://t.co/HwH41dMWq8", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "IFTTT" - }, - "default_profile_image": false, - "id": 149391883, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/376260464/x941d0ed8d4ed543d5e9c11f07fc78c1.png", - "statuses_count": 12212, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/149391883/1393377677", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1380413569", - "following": false, - "friends_count": 677, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nathwill.github.io", - "url": "https://t.co/lXzI0Y1RV7", - "expanded_url": "https://nathwill.github.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 239, - "location": "Hillsboro, OR", - "screen_name": "nathwhal", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "nathan w", - "profile_use_background_image": true, - "description": "PDX resident, ops guy, enthusiastic homebrewer, happily married to a fellow geek. developer/site-ops at @treehouse.", - "url": "https://t.co/lXzI0Y1RV7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682422321278107649/pKYQYDr4_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Apr 25 20:55:25 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682422321278107649/pKYQYDr4_normal.jpg", - "favourites_count": 2656, - "status": { - "retweet_count": 3956, - "retweeted_status": { - "retweet_count": 3956, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685521449432518656", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", - "type": "photo", - "indices": [ - 68, - 91 - ], - "media_url": "http://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", - "display_url": "pic.twitter.com/XRQlSfM2PU", - "id_str": "685521449306722304", - "expanded_url": "http://twitter.com/HistoricalPics/status/685521449432518656/photo/1", - "id": 685521449306722304, - "url": "https://t.co/XRQlSfM2PU" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:00:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685521449432518656, - "text": "This is a genuine conversation between Tony Blair and Bill Clinton. https://t.co/XRQlSfM2PU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4706, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685531956927303680", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "source_status_id_str": "685521449432518656", - "url": "https://t.co/XRQlSfM2PU", - "media_url": "http://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", - "source_user_id_str": "1598644159", - "id_str": "685521449306722304", - "id": 685521449306722304, - "media_url_https": "https://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", - "type": "photo", - "indices": [ - 88, - 111 - ], - "source_status_id": 685521449432518656, - "source_user_id": 1598644159, - "display_url": "pic.twitter.com/XRQlSfM2PU", - "expanded_url": "http://twitter.com/HistoricalPics/status/685521449432518656/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "HistoricalPics", - "id_str": "1598644159", - "id": 1598644159, - "indices": [ - 3, - 18 - ], - "name": "Historical Pics" - } - ] - }, - "created_at": "Fri Jan 08 18:42:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685531956927303680, - "text": "RT @HistoricalPics: This is a genuine conversation between Tony Blair and Bill Clinton. https://t.co/XRQlSfM2PU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1380413569, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2899, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1380413569/1436401512", - "is_translator": false - }, - { - "time_zone": "Caracas", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -16200, - "id_str": "23130430", - "following": false, - "friends_count": 736, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "foxcarlos.wordpress.com", - "url": "http://t.co/11vGRn3tWV", - "expanded_url": "http://www.foxcarlos.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/94098055/ffirefox.jpg", - "notifications": false, - "profile_sidebar_fill_color": "AB7F11", - "profile_link_color": "EDA042", - "geo_enabled": true, - "followers_count": 478, - "location": "Venezuela-Maracaibo", - "screen_name": "foxcarlos", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 47, - "name": "FoxCarlos", - "profile_use_background_image": true, - "description": "Linux Fan User, Programador, SysAdmin, DevOp, Fan de Python, Amante de las tecnologias , Android User", - "url": "http://t.co/11vGRn3tWV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/462342029733662721/JDiNDbdB_normal.jpeg", - "profile_background_color": "FAEB41", - "created_at": "Fri Mar 06 22:43:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5E4107", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/462342029733662721/JDiNDbdB_normal.jpeg", - "favourites_count": 196, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684338026542153728", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BAJ-xLABYru/", - "url": "https://t.co/YdKy6FH4Ib", - "expanded_url": "https://www.instagram.com/p/BAJ-xLABYru/", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [ - { - "indices": [ - 59, - 68 - ], - "text": "adafruit" - }, - { - "indices": [ - 69, - 81 - ], - "text": "electr\u00f3nica" - }, - { - "indices": [ - 82, - 90 - ], - "text": "arduino" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 11:37:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "es", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684338026542153728, - "text": "Soldando los pines de mi arduino Adafruit Pro Trinket - 5V #adafruit #electr\u00f3nica #arduino https://t.co/YdKy6FH4Ib", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 23130430, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/94098055/ffirefox.jpg", - "statuses_count": 5788, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23130430/1399066139", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "259118402", - "following": false, - "friends_count": 340, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "106118", - "geo_enabled": true, - "followers_count": 142, - "location": "Berkeley, CA", - "screen_name": "jwadams_sf", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Jonathan Adams", - "profile_use_background_image": true, - "description": "A Solaris kernel engineer in Berkeley and San Francisco.", - "url": null, - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2607006579/fc8a2hzb9282wlkh5tuo_normal.jpeg", - "profile_background_color": "352726", - "created_at": "Tue Mar 01 04:56:42 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2607006579/fc8a2hzb9282wlkh5tuo_normal.jpeg", - "favourites_count": 1824, - "status": { - "retweet_count": 232, - "retweeted_status": { - "retweet_count": 232, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "671118301901291521", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 880, - "h": 440, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", - "type": "photo", - "indices": [ - 48, - 71 - ], - "media_url": "http://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", - "display_url": "pic.twitter.com/NJ3g1uSW7Q", - "id_str": "671118300680597504", - "expanded_url": "http://twitter.com/pickover/status/671118301901291521/photo/1", - "id": 671118300680597504, - "url": "https://t.co/NJ3g1uSW7Q" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Nov 30 00:07:26 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 671118301901291521, - "text": "This is a Venn Diagram, sort of. Maybe. Smile. https://t.co/NJ3g1uSW7Q", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 159, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681586911652253697", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 880, - "h": 440, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - } - }, - "source_status_id_str": "671118301901291521", - "url": "https://t.co/NJ3g1uSW7Q", - "media_url": "http://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", - "source_user_id_str": "16176754", - "id_str": "671118300680597504", - "id": 671118300680597504, - "media_url_https": "https://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", - "type": "photo", - "indices": [ - 62, - 85 - ], - "source_status_id": 671118301901291521, - "source_user_id": 16176754, - "display_url": "pic.twitter.com/NJ3g1uSW7Q", - "expanded_url": "http://twitter.com/pickover/status/671118301901291521/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "pickover", - "id_str": "16176754", - "id": 16176754, - "indices": [ - 3, - 12 - ], - "name": "Cliff Pickover" - } - ] - }, - "created_at": "Mon Dec 28 21:25:57 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681586911652253697, - "text": "RT @pickover: This is a Venn Diagram, sort of. Maybe. Smile. https://t.co/NJ3g1uSW7Q", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 259118402, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 370, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "15255729", - "following": false, - "friends_count": 759, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "netdot.co", - "url": "http://t.co/EcAnlji6b1", - "expanded_url": "http://netdot.co", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "00A4E0", - "geo_enabled": false, - "followers_count": 149, - "location": "Princeton, NJ", - "screen_name": "uncryptic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "James Polera", - "profile_use_background_image": true, - "description": "Husband, Dad, Programmer", - "url": "http://t.co/EcAnlji6b1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3275393726/ef737d3f9c00e972d7576d0b26376f74_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri Jun 27 15:23:49 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3275393726/ef737d3f9c00e972d7576d0b26376f74_normal.jpeg", - "favourites_count": 99, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "savraj", - "in_reply_to_user_id": 18775474, - "in_reply_to_status_id_str": "628181055971946496", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "628601576425451520", - "id": 628601576425451520, - "text": "@savraj very cool!", - "in_reply_to_user_id_str": "18775474", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "savraj", - "id_str": "18775474", - "id": 18775474, - "indices": [ - 0, - 7 - ], - "name": "Savraj Singh" - } - ] - }, - "created_at": "Tue Aug 04 16:21:09 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 628181055971946496, - "lang": "en" - }, - "default_profile_image": false, - "id": 15255729, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1009, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15255729/1425338482", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "10286", - "following": false, - "friends_count": 557, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "larrywright.me", - "url": "http://t.co/loD1xmJArs", - "expanded_url": "http://larrywright.me/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 1062, - "location": "Normal, IL", - "screen_name": "larrywright", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 83, - "name": "Larry Wright", - "profile_use_background_image": true, - "description": "Curious person; maker of things. Ruby, Chef, Sinatra, Docker, photography. Currently: Chef Lead for the Accenture Cloud Platform. Opinions are my own.", - "url": "http://t.co/loD1xmJArs", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663570206913097728/jQBM7Maw_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Oct 24 11:52:46 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663570206913097728/jQBM7Maw_normal.jpg", - "favourites_count": 3941, - "status": { - "retweet_count": 117, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 117, - "truncated": false, - "retweeted": false, - "id_str": "685226091737399297", - "id": 685226091737399297, - "text": "A health app that automatically posts your most unflattering naked selfie to Facebook if you don't reach your step goal.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 22:26:45 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 272, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685491086039609344", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "badbanana", - "id_str": "809760", - "id": 809760, - "indices": [ - 3, - 13 - ], - "name": "Tim Siedell" - } - ] - }, - "created_at": "Fri Jan 08 15:59:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685491086039609344, - "text": "RT @badbanana: A health app that automatically posts your most unflattering naked selfie to Facebook if you don't reach your step goal.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 10286, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 38510, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "267899351", - "following": false, - "friends_count": 287, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 157, - "location": "Dublin", - "screen_name": "dbosullivan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "diarmuid o'sullivan", - "profile_use_background_image": true, - "description": "Professional Network Engineer, Amateur Dad", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2944090679/e67f46da79338d5670762f8e2ae52f28_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 17 19:23:19 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2944090679/e67f46da79338d5670762f8e2ae52f28_normal.jpeg", - "favourites_count": 3, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "IrishRail", - "in_reply_to_user_id": 15115986, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677574417837346816", - "id": 677574417837346816, - "text": "@IrishRail how\u2019s the 20:13 Pearse to Skerries looking?", - "in_reply_to_user_id_str": "15115986", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "IrishRail", - "id_str": "15115986", - "id": 15115986, - "indices": [ - 0, - 10 - ], - "name": "Iarnr\u00f3d \u00c9ireann" - } - ] - }, - "created_at": "Thu Dec 17 19:41:44 +0000 2015", - "source": "Twitterrific", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 267899351, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 149, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "289403", - "following": false, - "friends_count": 1236, - "entities": { - "description": { - "urls": [ - { - "display_url": "bestpractical.com", - "url": "http://t.co/UFnJLZgN6J", - "expanded_url": "http://bestpractical.com", - "indices": [ - 14, - 36 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "s.ly", - "url": "https://t.co/uyPF67lH2k", - "expanded_url": "https://s.ly", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "F5F5F5", - "profile_link_color": "0F6985", - "geo_enabled": true, - "followers_count": 3091, - "location": "Oakland, CA", - "screen_name": "obra", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 257, - "name": "Jesse", - "profile_use_background_image": false, - "description": "keyboard.io \u2022 http://t.co/UFnJLZgN6J\r\n\r\nI like to cause trouble.", - "url": "https://t.co/uyPF67lH2k", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1465412656/userpic_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Dec 27 16:52:30 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F5F5F5", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1465412656/userpic_normal.png", - "favourites_count": 5596, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/37d88f13e7a85f14.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -115.173994, - 36.1280771 - ], - [ - -115.083699, - 36.1280771 - ], - [ - -115.083699, - 36.144748 - ], - [ - -115.173994, - 36.144748 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Winchester, NV", - "id": "37d88f13e7a85f14", - "name": "Winchester" - }, - "in_reply_to_screen_name": "starsandrobots", - "in_reply_to_user_id": 19281751, - "in_reply_to_status_id_str": "685577517785157632", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685577784253485056", - "id": 685577784253485056, - "text": "@starsandrobots but banned at the show", - "in_reply_to_user_id_str": "19281751", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "starsandrobots", - "id_str": "19281751", - "id": 19281751, - "indices": [ - 0, - 15 - ], - "name": "Star Simpson" - } - ] - }, - "created_at": "Fri Jan 08 21:44:15 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685577517785157632, - "lang": "en" - }, - "default_profile_image": false, - "id": 289403, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 22752, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/289403/1385248556", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "967370761", - "following": false, - "friends_count": 126, - "entities": { - "description": { - "urls": [ - { - "display_url": "mozilla.org", - "url": "http://t.co/3BL4fnhZut", - "expanded_url": "http://mozilla.org", - "indices": [ - 21, - 43 - ] - }, - { - "display_url": "bugzilla.org", - "url": "http://t.co/Jt0mPbUA4Q", - "expanded_url": "http://bugzilla.org", - "indices": [ - 63, - 85 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 117, - "location": "", - "screen_name": "justdavemiller", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Dave Miller", - "profile_use_background_image": true, - "description": "Network Operations @ http://t.co/3BL4fnhZut,\r\nProject Leader @ http://t.co/Jt0mPbUA4Q", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2888394041/6e4aaeda613033641fb6db550afc126c_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sat Nov 24 04:37:24 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2888394041/6e4aaeda613033641fb6db550afc126c_normal.png", - "favourites_count": 19, - "status": { - "retweet_count": 4, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 4, - "truncated": false, - "retweeted": false, - "id_str": "675703717006585856", - "id": 675703717006585856, - "text": "MCO has the worst security lines of any airport I've ever been to, anywhere in the world. #mozlando", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 90, - 99 - ], - "text": "mozlando" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Dec 12 15:48:14 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "675806472291282944", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 106, - 115 - ], - "text": "mozlando" - } - ], - "user_mentions": [ - { - "screen_name": "todesschaf", - "id_str": "14691220", - "id": 14691220, - "indices": [ - 3, - 14 - ], - "name": "Nicholas Hurley" - } - ] - }, - "created_at": "Sat Dec 12 22:36:33 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 675806472291282944, - "text": "RT @todesschaf: MCO has the worst security lines of any airport I've ever been to, anywhere in the world. #mozlando", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 967370761, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 534, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/967370761/1398836689", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14045442", - "following": false, - "friends_count": 1142, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mschade.me", - "url": "https://t.co/g9ELmn7nPH", - "expanded_url": "http://mschade.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "78588A", - "geo_enabled": true, - "followers_count": 1013, - "location": "m@mschade.me \u00b7 San Francisco", - "screen_name": "sch", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 64, - "name": "Michael Schade", - "profile_use_background_image": true, - "description": "helping people and building things at @stripe. I like flying, coding, cooking, running, reading, photography, and trying new things.", - "url": "https://t.co/g9ELmn7nPH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650397324867301376/MrR6XasI_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Feb 27 03:23:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650397324867301376/MrR6XasI_normal.jpg", - "favourites_count": 4195, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "CraigBuchek", - "in_reply_to_user_id": 29504430, - "in_reply_to_status_id_str": "685497436496777216", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685513621355413504", - "id": 685513621355413504, - "text": "@CraigBuchek @mfollett There's gonna be a similar folklore post about this Whole30 in 20 years", - "in_reply_to_user_id_str": "29504430", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CraigBuchek", - "id_str": "29504430", - "id": 29504430, - "indices": [ - 0, - 12 - ], - "name": "Craig Buchek" - }, - { - "screen_name": "mfollett", - "id_str": "15683300", - "id": 15683300, - "indices": [ - 13, - 22 - ], - "name": "mfollett" - } - ] - }, - "created_at": "Fri Jan 08 17:29:18 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685497436496777216, - "lang": "en" - }, - "default_profile_image": false, - "id": 14045442, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 7907, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14045442/1404692212", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "9870342", - "following": false, - "friends_count": 416, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tacticalpants.tumblr.com", - "url": "https://t.co/AvVS5l2yCn", - "expanded_url": "http://tacticalpants.tumblr.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 770, - "location": "San Francisco", - "screen_name": "mhat", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "Matt Knopp", - "profile_use_background_image": true, - "description": "Token Old Person @ Mode Analytics. All change is change.", - "url": "https://t.co/AvVS5l2yCn", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624797957624332288/YVrZFn0m_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Nov 02 01:04:10 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624797957624332288/YVrZFn0m_normal.jpg", - "favourites_count": 1443, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mhat", - "in_reply_to_user_id": 9870342, - "in_reply_to_status_id_str": "683504543078850560", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "683504958843441152", - "id": 683504958843441152, - "text": "@moonpolysoft besides anyone funding OLAPaaS should know they're in for at least a decade and probably two.", - "in_reply_to_user_id_str": "9870342", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "moonpolysoft", - "id_str": "14204623", - "id": 14204623, - "indices": [ - 0, - 13 - ], - "name": "Modafinil Duck" - } - ] - }, - "created_at": "Sun Jan 03 04:27:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683504543078850560, - "lang": "en" - }, - "default_profile_image": false, - "id": 9870342, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 10865, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9870342/1445322715", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "10776912", - "following": false, - "friends_count": 217, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "zen4ever.com", - "url": "http://t.co/8vNkoFTN", - "expanded_url": "http://www.zen4ever.com/", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": true, - "followers_count": 158, - "location": "Los Angeles", - "screen_name": "zen4ever", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 34, - "name": "Andrew Kurinnyi", - "profile_use_background_image": true, - "description": "Python aficionado. Other technologies I'm enjoying to work with: AWS, Ansible, , Swift/Objective-C, SASS/HTML, AngularJS/jQuery", - "url": "http://t.co/8vNkoFTN", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1250364986/SDC11775_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Sun Dec 02 01:03:39 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1250364986/SDC11775_normal.jpg", - "favourites_count": 2828, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1927193c57f35d51.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -118.3959042, - 34.075963 - ], - [ - -118.3433861, - 34.075963 - ], - [ - -118.3433861, - 34.098056 - ], - [ - -118.3959042, - 34.098056 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "West Hollywood, CA", - "id": "1927193c57f35d51", - "name": "West Hollywood" - }, - "in_reply_to_screen_name": "garnaat", - "in_reply_to_user_id": 17736981, - "in_reply_to_status_id_str": "685509163720519680", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685509876722708480", - "id": 685509876722708480, - "text": "@garnaat I hope it wasn\u2019t a production table :-p", - "in_reply_to_user_id_str": "17736981", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "garnaat", - "id_str": "17736981", - "id": 17736981, - "indices": [ - 0, - 8 - ], - "name": "Mitch Garnaat" - } - ] - }, - "created_at": "Fri Jan 08 17:14:25 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685509163720519680, - "lang": "en" - }, - "default_profile_image": false, - "id": 10776912, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "statuses_count": 1087, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10776912/1356168608", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24538862", - "following": false, - "friends_count": 681, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/jsolis", - "url": "http://t.co/GLIbgF5Nfe", - "expanded_url": "http://about.me/jsolis", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 203, - "location": "Trumbull, CT", - "screen_name": "jasonsolis", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Jason Solis", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/GLIbgF5Nfe", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/125464418/jay_boat_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Sun Mar 15 15:40:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/125464418/jay_boat_normal.jpg", - "favourites_count": 101, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677575884979707906", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 503, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 294, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 167, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWc7rTiVAAAqHMG.png", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CWc7rTiVAAAqHMG.png", - "display_url": "pic.twitter.com/mMNL9ZHqLl", - "id_str": "677575884107218944", - "expanded_url": "http://twitter.com/jasonsolis/status/677575884979707906/photo/1", - "id": 677575884107218944, - "url": "https://t.co/mMNL9ZHqLl" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Walmart", - "id_str": "17137891", - "id": 17137891, - "indices": [ - 38, - 46 - ], - "name": "Walmart" - } - ] - }, - "created_at": "Thu Dec 17 19:47:34 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677575884979707906, - "text": "My latest attempt to unsubscribe from @Walmart emails. I guess I'm not the only one having problems \u00af\\_(\u30c4)_/\u00af https://t.co/mMNL9ZHqLl", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 24538862, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 350, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "225581432", - "following": false, - "friends_count": 1599, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "seclectech.wordpress.com", - "url": "http://t.co/CPRtxWpvvq", - "expanded_url": "http://seclectech.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 865, - "location": "Lutherville Timonium, MD", - "screen_name": "seclectech", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 76, - "name": "Matt Franz", - "profile_use_background_image": false, - "description": "Operability Advocate. Container Troll. Former Security Guy. Ex @Cisco @digitalbond @TenableSecurity @Mandiant Often unclear if sarcastic/serious.", - "url": "http://t.co/CPRtxWpvvq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458050887542251520/3TCpHyCr_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sat Dec 11 23:12:13 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458050887542251520/3TCpHyCr_normal.png", - "favourites_count": 418, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685608329809424384", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/guyma/status/6\u2026", - "url": "https://t.co/yObkSNcmwg", - "expanded_url": "https://twitter.com/guyma/status/685602902585442304", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:45:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685608329809424384, - "text": "And \"complex, nuanced, and instant mental math performed that precedes the shields-down situation\" https://t.co/yObkSNcmwg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 225581432, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7942, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1019381", - "following": false, - "friends_count": 663, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1490, - "location": "Cary, NC", - "screen_name": "spotrh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 109, - "name": "Tom Callaway", - "profile_use_background_image": true, - "description": "University Outreach lead @ Red Hat\nCo-author of Raspberry Pi Hacks. Linux hacker, geocacher, pinball wizard, game player, frog lover, hockey nut, and scifi fan.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657728926555308036/XpK5Ufl5_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Mar 12 15:41:53 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657728926555308036/XpK5Ufl5_normal.jpg", - "favourites_count": 442, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685306570175987712", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "imgur.com/a/ZmthC", - "url": "https://t.co/JoDKE2DZwv", - "expanded_url": "http://imgur.com/a/ZmthC", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:46:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -115.2092535, - 35.984784 - ], - [ - -115.0610763, - 35.984784 - ], - [ - -115.0610763, - 36.137145 - ], - [ - -115.2092535, - 36.137145 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Paradise, NV", - "id": "8fa6d7a33b83ef26", - "name": "Paradise" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685306570175987712, - "text": "3D printing at CES - Day Two https://t.co/JoDKE2DZwv", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 1019381, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4892, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "15005347", - "following": false, - "friends_count": 1179, - "entities": { - "description": { - "urls": [ - { - "display_url": "GeekMom.com", - "url": "http://t.co/pZZjGME6O9", - "expanded_url": "http://GeekMom.com", - "indices": [ - 46, - 68 - ] - }, - { - "display_url": "opensource.com", - "url": "http://t.co/olzt8M25oa", - "expanded_url": "http://opensource.com", - "indices": [ - 71, - 93 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "hobbyhobby.wordpress.com", - "url": "http://t.co/0nPq5tppyJ", - "expanded_url": "http://hobbyhobby.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": false, - "followers_count": 2548, - "location": "N 30\u00b016' 0'' / W 97\u00b044' 0''", - "screen_name": "suehle", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 172, - "name": "Ruth Suehle", - "profile_use_background_image": true, - "description": "Open Source and Standards at Red Hat. Editor, http://t.co/pZZjGME6O9 & http://t.co/olzt8M25oa. Co-author Raspberry Pi Hacks. Sewing, cake-ing, making.", - "url": "http://t.co/0nPq5tppyJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459426520017014784/l2Y-ZbwA_normal.jpeg", - "profile_background_color": "EBEBEB", - "created_at": "Wed Jun 04 14:19:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459426520017014784/l2Y-ZbwA_normal.jpeg", - "favourites_count": 172, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "CraigArgh", - "in_reply_to_user_id": 868494619, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685570763286523905", - "id": 685570763286523905, - "text": "@CraigArgh Just picked up the mail and had a copy of Learn to Program With Minecraft. Pretty sure my kid is going to melt with happiness.", - "in_reply_to_user_id_str": "868494619", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CraigArgh", - "id_str": "868494619", - "id": 868494619, - "indices": [ - 0, - 10 - ], - "name": "Craig Richardson" - } - ] - }, - "created_at": "Fri Jan 08 21:16:21 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15005347, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 6015, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15005347/1398370907", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "17639049", - "following": false, - "friends_count": 1166, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "robyn.io", - "url": "http://t.co/mr4VVE5ZKH", - "expanded_url": "http://robyn.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "1D6BAF", - "geo_enabled": false, - "followers_count": 2833, - "location": "scottsdale, az", - "screen_name": "robynbergeron", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 187, - "name": "robyn bergeron", - "profile_use_background_image": false, - "description": "Community Architect @ansible. Connector, contributor, co-conspirator. Fedora Project Leader in a previous life. Loves open source and bad puns.", - "url": "http://t.co/mr4VVE5ZKH", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/622089213194797060/3ARXTDjh_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Nov 26 01:56:21 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/622089213194797060/3ARXTDjh_normal.jpg", - "favourites_count": 4380, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "krishnan", - "in_reply_to_user_id": 782502, - "in_reply_to_status_id_str": "685151133317246977", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685162018660200448", - "id": 685162018660200448, - "text": "@krishnan grats, yo!", - "in_reply_to_user_id_str": "782502", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "krishnan", - "id_str": "782502", - "id": 782502, - "indices": [ - 0, - 9 - ], - "name": "Krish" - } - ] - }, - "created_at": "Thu Jan 07 18:12:09 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685151133317246977, - "lang": "en" - }, - "default_profile_image": false, - "id": 17639049, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "statuses_count": 16104, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17639049/1421690444", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "9887162", - "following": false, - "friends_count": 1048, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 6499, - "location": "Wake Forest, NC", - "screen_name": "markimbriaco", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 390, - "name": "Mark Imbriaco", - "profile_use_background_image": true, - "description": "Co-founder & CEO at @OperableInc. Previously: DigitalOcean, GitHub, LivingSocial, Heroku, and 37signals.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/471493631283441664/aiwoVRj7_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Fri Nov 02 14:56:54 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/471493631283441664/aiwoVRj7_normal.jpeg", - "favourites_count": 1188, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685572079891181573", - "id": 685572079891181573, - "text": "The next time I complain about something ops related, someone remind me of that Friday afternoon I spent hacking on CSS.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:21:35 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 16, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 9887162, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 20594, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "96179624", - "following": false, - "friends_count": 1227, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bit.ly/rhdev-1angdon", - "url": "http://t.co/sSnsxQ2TYi", - "expanded_url": "http://bit.ly/rhdev-1angdon", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 768, - "location": "", - "screen_name": "1angdon", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 40, - "name": "Langdon White", - "profile_use_background_image": true, - "description": "Developer and architect working to advocate for RHEL for developers. Tweets are my own.", - "url": "http://t.co/sSnsxQ2TYi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1822951183/D5IafQxH_normal", - "profile_background_color": "C0DEED", - "created_at": "Fri Dec 11 18:32:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1822951183/D5IafQxH_normal", - "favourites_count": 509, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": 2398413343, - "possibly_sensitive": false, - "id_str": "685029107193769984", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", - "type": "photo", - "indices": [ - 113, - 136 - ], - "media_url": "http://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", - "display_url": "pic.twitter.com/Q69ZE7UZZ1", - "id_str": "685029098373001216", - "expanded_url": "http://twitter.com/bexelbie/status/685029107193769984/photo/1", - "id": 685029098373001216, - "url": "https://t.co/Q69ZE7UZZ1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 93, - 112 - ], - "text": "BabyItsColdOutside" - } - ], - "user_mentions": [ - { - "screen_name": "ProjectAtomic", - "id_str": "2398413343", - "id": 2398413343, - "indices": [ - 0, - 14 - ], - "name": "Project Atomic " - }, - { - "screen_name": "CentOS", - "id_str": "17232315", - "id": 17232315, - "indices": [ - 58, - 65 - ], - "name": "Karanbir Singh" - } - ] - }, - "created_at": "Thu Jan 07 09:24:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "2398413343", - "place": null, - "in_reply_to_screen_name": "ProjectAtomic", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685029107193769984, - "text": "@ProjectAtomic hat Thursday. Because some us don't have a @CentOS shirt and it's not Friday. #BabyItsColdOutside https://t.co/Q69ZE7UZZ1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685100509292806144", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - } - }, - "source_status_id_str": "685029107193769984", - "url": "https://t.co/Q69ZE7UZZ1", - "media_url": "http://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", - "source_user_id_str": "10325302", - "id_str": "685029098373001216", - "id": 685029098373001216, - "media_url_https": "https://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685029107193769984, - "source_user_id": 10325302, - "display_url": "pic.twitter.com/Q69ZE7UZZ1", - "expanded_url": "http://twitter.com/bexelbie/status/685029107193769984/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 107, - 126 - ], - "text": "BabyItsColdOutside" - } - ], - "user_mentions": [ - { - "screen_name": "bexelbie", - "id_str": "10325302", - "id": 10325302, - "indices": [ - 3, - 12 - ], - "name": "bex" - }, - { - "screen_name": "ProjectAtomic", - "id_str": "2398413343", - "id": 2398413343, - "indices": [ - 14, - 28 - ], - "name": "Project Atomic " - }, - { - "screen_name": "CentOS", - "id_str": "17232315", - "id": 17232315, - "indices": [ - 72, - 79 - ], - "name": "Karanbir Singh" - } - ] - }, - "created_at": "Thu Jan 07 14:07:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685100509292806144, - "text": "RT @bexelbie: @ProjectAtomic hat Thursday. Because some us don't have a @CentOS shirt and it's not Friday. #BabyItsColdOutside https://t.co\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 96179624, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3765, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "13978722", - "following": false, - "friends_count": 676, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fladpad.com", - "url": "http://t.co/Am0KVvc2DI", - "expanded_url": "http://www.fladpad.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/739216918/bed2985374c7da6d1ca4781c45a3bfed.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 453, - "location": "Philadelphia", - "screen_name": "bflad", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "Brian Flad", - "profile_use_background_image": true, - "description": "Music, photography, travel, and technology are my life. Lover of all things food and beer. Any thoughts and words here are my own.", - "url": "http://t.co/Am0KVvc2DI", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2523270070/image_normal.jpg", - "profile_background_color": "352726", - "created_at": "Tue Feb 26 01:44:18 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2523270070/image_normal.jpg", - "favourites_count": 49, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685253297230450688", - "id": 685253297230450688, - "text": "As I'm walking past it... Why is there a fire alarm system in a concrete parking structure?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 00:14:52 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 13978722, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/739216918/bed2985374c7da6d1ca4781c45a3bfed.jpeg", - "statuses_count": 8456, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13978722/1355604820", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1526157127", - "following": false, - "friends_count": 859, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 106, - "location": "Denver, CO", - "screen_name": "pwgnr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Critmoose", - "profile_use_background_image": true, - "description": "Virtualization technologist | Ops and tools | General banter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/460929940624392192/3F0qvis1_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Mon Jun 17 23:08:23 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/460929940624392192/3F0qvis1_normal.jpeg", - "favourites_count": 349, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/b49b3053b5c25bf5.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -105.109815, - 39.614151 - ], - [ - -104.734372, - 39.614151 - ], - [ - -104.734372, - 39.812975 - ], - [ - -105.109815, - 39.812975 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Denver, CO", - "id": "b49b3053b5c25bf5", - "name": "Denver" - }, - "in_reply_to_screen_name": "BenMSmith", - "in_reply_to_user_id": 36894019, - "in_reply_to_status_id_str": "682054747998695424", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682058101298573312", - "id": 682058101298573312, - "text": "@BenMSmith Alas Ben, I've moved to Denver and won't be able to make it this year. Has the team name been revealed yet?", - "in_reply_to_user_id_str": "36894019", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BenMSmith", - "id_str": "36894019", - "id": 36894019, - "indices": [ - 0, - 10 - ], - "name": "Ben Smith" - } - ] - }, - "created_at": "Wed Dec 30 04:38:18 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 682054747998695424, - "lang": "en" - }, - "default_profile_image": false, - "id": 1526157127, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 748, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1526157127/1398716661", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "35019631", - "following": false, - "friends_count": 508, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hackeryhq.com", - "url": "http://t.co/xU9ThntxLj", - "expanded_url": "http://hackeryhq.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 171, - "location": "Martinez, CA", - "screen_name": "DoriftoShoes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 34, - "name": "Patrick Hoolboom", - "profile_use_background_image": false, - "description": "Automating myself out of a job...One workflow at a time. Trying to never do the same thing twice.", - "url": "http://t.co/xU9ThntxLj", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1580497725/beaker_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Apr 24 19:50:40 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1580497725/beaker_normal.jpg", - "favourites_count": 162, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685535080886976513", - "geo": { - "coordinates": [ - 38.01765184, - -122.13573933 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "swarmapp.com/c/6ZKeacAscNB", - "url": "https://t.co/Q2KniQRfr3", - "expanded_url": "https://www.swarmapp.com/c/6ZKeacAscNB", - "indices": [ - 43, - 66 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:54:34 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/71d33f776fe41dfb.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.157021, - 37.954027 - ], - [ - -122.075217, - 37.954027 - ], - [ - -122.075217, - 38.037226 - ], - [ - -122.157021, - 38.037226 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Martinez, CA", - "id": "71d33f776fe41dfb", - "name": "Martinez" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685535080886976513, - "text": "Coffee date (@ Barrelista in Martinez, CA) https://t.co/Q2KniQRfr3", - "coordinates": { - "coordinates": [ - -122.13573933, - 38.01765184 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Foursquare" - }, - "default_profile_image": false, - "id": 35019631, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 953, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "66432490", - "following": false, - "friends_count": 382, - "entities": { - "description": { - "urls": [ - { - "display_url": "shop.oreilly.com/product/063692\u2026", - "url": "https://t.co/vIR4eVGVkp", - "expanded_url": "http://shop.oreilly.com/product/0636920035794.do", - "indices": [ - 63, - 86 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "obfuscurity.com", - "url": "https://t.co/LQBsafkde9", - "expanded_url": "http://obfuscurity.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 4067, - "location": "Westminster, MD", - "screen_name": "obfuscurity", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 278, - "name": "Jason Dixon", - "profile_use_background_image": true, - "description": "Director of Integrations @Librato. Author of the Graphite Book https://t.co/vIR4eVGVkp Previously: Dyn, GitHub, Heroku and Circonus.", - "url": "https://t.co/LQBsafkde9", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/626581711556448256/EcRbS6R9_normal.png", - "profile_background_color": "131516", - "created_at": "Mon Aug 17 18:00:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626581711556448256/EcRbS6R9_normal.png", - "favourites_count": 209, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jordansissel", - "in_reply_to_user_id": 15782607, - "in_reply_to_status_id_str": "685332408875401217", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685333853498667008", - "id": 685333853498667008, - "text": "@jordansissel @fivetanley wow, that\u2019s fucking brilliant", - "in_reply_to_user_id_str": "15782607", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jordansissel", - "id_str": "15782607", - "id": 15782607, - "indices": [ - 0, - 13 - ], - "name": "@jordansissel" - }, - { - "screen_name": "fivetanley", - "id_str": "306497372", - "id": 306497372, - "indices": [ - 14, - 25 - ], - "name": "dead emo kid" - } - ] - }, - "created_at": "Fri Jan 08 05:34:58 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685332408875401217, - "lang": "en" - }, - "default_profile_image": false, - "id": 66432490, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 34479, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/66432490/1370191219", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "235668252", - "following": false, - "friends_count": 237, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/mike.murphy", - "url": "http://t.co/59rM1FJDUZ", - "expanded_url": "http://about.me/mike.murphy", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 110, - "location": "Atlanta, GA", - "screen_name": "martianbogon", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 7, - "name": "Mike Murphy", - "profile_use_background_image": true, - "description": "Father of Two, Married to Patty, IT Infrastructure Architect, Graduate of Boston University. Opinions are my own.", - "url": "http://t.co/59rM1FJDUZ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654376957199687684/kp0TbZD__normal.jpg", - "profile_background_color": "131516", - "created_at": "Sat Jan 08 20:06:09 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654376957199687684/kp0TbZD__normal.jpg", - "favourites_count": 323, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685482918504972288", - "id": 685482918504972288, - "text": "A recursive structure of devops teams.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:27:18 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 235668252, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 982, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "40720843", - "following": false, - "friends_count": 33842, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "his.com/pshapiro/brief\u2026", - "url": "http://t.co/La2YpjPmos", - "expanded_url": "http://www.his.com/pshapiro/briefbio.html", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629902371666141184/lfrRFbv_.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 36097, - "location": "Washington DC", - "screen_name": "philshapiro", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1506, - "name": "Phil Shapiro", - "profile_use_background_image": true, - "description": "Edtech blogger refurbisher satirist professor songwriter screencaster library geek storyteller FOSS advocate immigrant change agent inclusion dreamer whimsy", - "url": "http://t.co/La2YpjPmos", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660953223159746560/C_31hXuT_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun May 17 19:36:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660953223159746560/C_31hXuT_normal.jpg", - "favourites_count": 3559, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685601805217181697", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 818, - "h": 960, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 704, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 399, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", - "type": "photo", - "indices": [ - 61, - 84 - ], - "media_url": "http://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", - "display_url": "pic.twitter.com/CZftmyOMsd", - "id_str": "685601805145903105", - "expanded_url": "http://twitter.com/DougUNDP/status/685601805217181697/photo/1", - "id": 685601805145903105, - "url": "https://t.co/CZftmyOMsd" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Brasilmagic", - "id_str": "21833728", - "id": 21833728, - "indices": [ - 48, - 60 - ], - "name": "Brasilmagic" - } - ] - }, - "created_at": "Fri Jan 08 23:19:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685601805217181697, - "text": "How Public health messaging should be done! via @Brasilmagic https://t.co/CZftmyOMsd", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685601847957131264", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 818, - "h": 960, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 704, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 399, - "resize": "fit" - } - }, - "source_status_id_str": "685601805217181697", - "url": "https://t.co/CZftmyOMsd", - "media_url": "http://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", - "source_user_id_str": "633999734", - "id_str": "685601805145903105", - "id": 685601805145903105, - "media_url_https": "https://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", - "type": "photo", - "indices": [ - 75, - 98 - ], - "source_status_id": 685601805217181697, - "source_user_id": 633999734, - "display_url": "pic.twitter.com/CZftmyOMsd", - "expanded_url": "http://twitter.com/DougUNDP/status/685601805217181697/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DougUNDP", - "id_str": "633999734", - "id": 633999734, - "indices": [ - 3, - 12 - ], - "name": "Douglas Webb" - }, - { - "screen_name": "Brasilmagic", - "id_str": "21833728", - "id": 21833728, - "indices": [ - 62, - 74 - ], - "name": "Brasilmagic" - } - ] - }, - "created_at": "Fri Jan 08 23:19:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685601847957131264, - "text": "RT @DougUNDP: How Public health messaging should be done! via @Brasilmagic https://t.co/CZftmyOMsd", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 40720843, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629902371666141184/lfrRFbv_.jpg", - "statuses_count": 68500, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/40720843/1439016769", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14561327", - "following": false, - "friends_count": 202, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "david.heinemeierhansson.com", - "url": "http://t.co/IaAsahpjsQ", - "expanded_url": "http://david.heinemeierhansson.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 155152, - "location": "Chicago, USA", - "screen_name": "dhh", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8024, - "name": "DHH", - "profile_use_background_image": true, - "description": "Creator of Ruby on Rails, Founder & CTO at Basecamp (formerly 37signals), NYT Best-selling author of REWORK and REMOTE, and Le Mans class-winning racing driver.", - "url": "http://t.co/IaAsahpjsQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2556368541/alng5gtlmjhrdlr3qxqv_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Apr 27 20:19:25 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2556368541/alng5gtlmjhrdlr3qxqv_normal.jpeg", - "favourites_count": 312, - "status": { - "retweet_count": 78, - "retweeted_status": { - "retweet_count": 78, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685516990333751296", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/rails/rails/pu\u2026", - "url": "https://t.co/WosS7Br1W3", - "expanded_url": "https://github.com/rails/rails/pull/22934", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mperham", - "id_str": "14060922", - "id": 14060922, - "indices": [ - 45, - 53 - ], - "name": "Mike Perham" - } - ] - }, - "created_at": "Fri Jan 08 17:42:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685516990333751296, - "text": "Action Cable no longer depends on Celluloid. @mperham converted it to use concurrent-ruby instead \ud83d\udc4f https://t.co/WosS7Br1W3", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 101, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685517292935987200", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/rails/rails/pu\u2026", - "url": "https://t.co/WosS7Br1W3", - "expanded_url": "https://github.com/rails/rails/pull/22934", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rails", - "id_str": "3116191", - "id": 3116191, - "indices": [ - 3, - 9 - ], - "name": "Ruby on Rails" - }, - { - "screen_name": "mperham", - "id_str": "14060922", - "id": 14060922, - "indices": [ - 56, - 64 - ], - "name": "Mike Perham" - } - ] - }, - "created_at": "Fri Jan 08 17:43:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685517292935987200, - "text": "RT @rails: Action Cable no longer depends on Celluloid. @mperham converted it to use concurrent-ruby instead \ud83d\udc4f https://t.co/WosS7Br1W3", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 14561327, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 28479, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14561327/1398347760", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "5637652", - "following": false, - "friends_count": 169, - "entities": { - "description": { - "urls": [ - { - "display_url": "stackexchange.com", - "url": "http://t.co/JbStnko3pv", - "expanded_url": "http://stackexchange.com", - "indices": [ - 33, - 55 - ] - }, - { - "display_url": "discourse.org", - "url": "http://t.co/kaSwrMgE57", - "expanded_url": "http://www.discourse.org", - "indices": [ - 60, - 82 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "blog.codinghorror.com", - "url": "http://t.co/rM9N1bQpLr", - "expanded_url": "http://blog.codinghorror.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623412/hunt-wumpus-bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0E1F5", - "profile_link_color": "282D58", - "geo_enabled": false, - "followers_count": 186754, - "location": "Bay Area, CA", - "screen_name": "codinghorror", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8805, - "name": "Jeff Atwood", - "profile_use_background_image": true, - "description": "Indoor enthusiast. Co-founder of http://t.co/JbStnko3pv and http://t.co/kaSwrMgE57. Disclaimer: I have no idea what I'm talking about.", - "url": "http://t.co/rM9N1bQpLr", - "profile_text_color": "383A48", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/632821853627678720/zPKK7jql_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Sun Apr 29 20:50:37 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "E0E1F5", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/632821853627678720/zPKK7jql_normal.png", - "favourites_count": 6821, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "AriyaHidayat", - "in_reply_to_user_id": 15608761, - "in_reply_to_status_id_str": "685594181692076033", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685596358552637441", - "id": 685596358552637441, - "text": "@AriyaHidayat @reybango @eviltrout I will ask the people who work here if they are OK with a 100% salary cut ;)", - "in_reply_to_user_id_str": "15608761", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AriyaHidayat", - "id_str": "15608761", - "id": 15608761, - "indices": [ - 0, - 13 - ], - "name": "Ariya Hidayat" - }, - { - "screen_name": "reybango", - "id_str": "1589691", - "id": 1589691, - "indices": [ - 14, - 23 - ], - "name": "Rey Bango" - }, - { - "screen_name": "eviltrout", - "id_str": "16712921", - "id": 16712921, - "indices": [ - 24, - 34 - ], - "name": "Robin Ward" - } - ] - }, - "created_at": "Fri Jan 08 22:58:04 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685594181692076033, - "lang": "en" - }, - "default_profile_image": false, - "id": 5637652, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623412/hunt-wumpus-bg.png", - "statuses_count": 47257, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5637652/1398207303", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "90221684", - "following": false, - "friends_count": 372, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theangryangel.co.uk", - "url": "http://t.co/qoDV6L8xHL", - "expanded_url": "http://theangryangel.co.uk/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 86, - "location": "", - "screen_name": "the_angry_angel", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "the_angry_angel", - "profile_use_background_image": false, - "description": "Sysadmin. Generic geek. Gamer. Hobbiest Aqueous Thermomancer. Frequently sleep deprived.", - "url": "http://t.co/qoDV6L8xHL", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2060711415/gravatar_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Nov 15 18:54:49 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2060711415/gravatar_normal.jpg", - "favourites_count": 28, - "status": { - "retweet_count": 3622, - "retweeted_status": { - "retweet_count": 3622, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682281861830160384", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bits.debian.org/2015/12/mourni\u2026", - "url": "https://t.co/1EhZ5BwKSH", - "expanded_url": "https://bits.debian.org/2015/12/mourning-ian-murdock.html", - "indices": [ - 93, - 116 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 19:27:26 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682281861830160384, - "text": "Debian is saddened to share the news of the passing of Ian Murdock. We will miss him dearly. https://t.co/1EhZ5BwKSH", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 968, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682286650534277120", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bits.debian.org/2015/12/mourni\u2026", - "url": "https://t.co/1EhZ5BwKSH", - "expanded_url": "https://bits.debian.org/2015/12/mourning-ian-murdock.html", - "indices": [ - 105, - 128 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "debian", - "id_str": "24253645", - "id": 24253645, - "indices": [ - 3, - 10 - ], - "name": "The Debian Project" - } - ] - }, - "created_at": "Wed Dec 30 19:46:28 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682286650534277120, - "text": "RT @debian: Debian is saddened to share the news of the passing of Ian Murdock. We will miss him dearly. https://t.co/1EhZ5BwKSH", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 90221684, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 959, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "12466012", - "following": false, - "friends_count": 1065, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "graylog.org", - "url": "http://t.co/mnPWKabISf", - "expanded_url": "http://www.graylog.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 1667, - "location": "Houston, TX / Hamburg, GER", - "screen_name": "_lennart", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 101, - "name": "Lennart Koopmann", - "profile_use_background_image": true, - "description": "Founder and CTO at Graylog, Inc. Started the @graylog2 project in 2010. Ironman training, Party Gorillas.", - "url": "http://t.co/mnPWKabISf", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629114058344497152/oqt-f6Tf_normal.jpg", - "profile_background_color": "131516", - "created_at": "Sun Jan 20 19:05:12 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629114058344497152/oqt-f6Tf_normal.jpg", - "favourites_count": 2858, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685607302062305280", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 1820, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 604, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 1066, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPEMppWwAADqrl.jpg", - "type": "photo", - "indices": [ - 65, - 88 - ], - "media_url": "http://pbs.twimg.com/media/CYPEMppWwAADqrl.jpg", - "display_url": "pic.twitter.com/6NqJUAR5XB", - "id_str": "685607289907232768", - "expanded_url": "http://twitter.com/_lennart/status/685607302062305280/photo/1", - "id": 685607289907232768, - "url": "https://t.co/6NqJUAR5XB" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "solarce", - "id_str": "822284", - "id": 822284, - "indices": [ - 55, - 63 - ], - "name": "leader of cola" - } - ] - }, - "created_at": "Fri Jan 08 23:41:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1c69a67ad480e1b1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -95.823268, - 29.522325 - ], - [ - -95.069705, - 29.522325 - ], - [ - -95.069705, - 30.1546646 - ], - [ - -95.823268, - 30.1546646 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Houston, TX", - "id": "1c69a67ad480e1b1", - "name": "Houston" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685607302062305280, - "text": "1/8/16 we will never forget (after only 2 years or so, @solarce) https://t.co/6NqJUAR5XB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 12466012, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 19492, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12466012/1404744849", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "687843", - "following": false, - "friends_count": 736, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "patrickod.com", - "url": "http://t.co/Q2ipmL5d8W", - "expanded_url": "http://patrickod.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 719, - "location": "San Francisco, California", - "screen_name": "patrickod", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Patrick O'Doherty", - "profile_use_background_image": false, - "description": "Engineer @ Intercom in SF, hacker, tinkerer, aspiring cryptoanarchist. GPG: F05E 232B 31FE 4222 He/him", - "url": "http://t.co/Q2ipmL5d8W", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685104886703353856/Gv9bLPB6_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jan 23 18:15:37 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685104886703353856/Gv9bLPB6_normal.jpg", - "favourites_count": 2257, - "status": { - "retweet_count": 87, - "retweeted_status": { - "retweet_count": 87, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685524575396978688", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/josephfcox/sta\u2026", - "url": "https://t.co/cWt7wYaqKF", - "expanded_url": "https://twitter.com/josephfcox/status/685510751063248896", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:12:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685524575396978688, - "text": "For 2 weeks in '15 the FBI ran what may be the biggest child porn site on the darkweb, distributing CP to 215k users https://t.co/cWt7wYaqKF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 30, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685527148208254977", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/josephfcox/sta\u2026", - "url": "https://t.co/cWt7wYaqKF", - "expanded_url": "https://twitter.com/josephfcox/status/685510751063248896", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "csoghoian", - "id_str": "14669471", - "id": 14669471, - "indices": [ - 3, - 13 - ], - "name": "Christopher Soghoian" - } - ] - }, - "created_at": "Fri Jan 08 18:23:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685527148208254977, - "text": "RT @csoghoian: For 2 weeks in '15 the FBI ran what may be the biggest child porn site on the darkweb, distributing CP to 215k users https:/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 687843, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "statuses_count": 9376, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/687843/1410225843", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "6579422", - "following": false, - "friends_count": 816, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bettcher.net", - "url": "http://t.co/Ex4n38uYNW", - "expanded_url": "http://bettcher.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 5726, - "location": "Louisville, CO", - "screen_name": "Pufferfish", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 58, - "name": "Jon Bettcher", - "profile_use_background_image": true, - "description": "Hacker, Beer Enthusiast, Colorad(o)an via California. Mobile engineer @Twitter.", - "url": "http://t.co/Ex4n38uYNW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/637107928881717248/_53TORWT_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Jun 04 20:53:44 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637107928881717248/_53TORWT_normal.jpg", - "favourites_count": 4717, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5d1bffd975c6ff73.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -105.1836432, - 39.9395764 - ], - [ - -105.099812, - 39.9395764 - ], - [ - -105.099812, - 39.998224 - ], - [ - -105.1836432, - 39.998224 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Louisville, CO", - "id": "5d1bffd975c6ff73", - "name": "Louisville" - }, - "in_reply_to_screen_name": "mrcs", - "in_reply_to_user_id": 101935227, - "in_reply_to_status_id_str": "684589819960266752", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684591013218783234", - "id": 684591013218783234, - "text": "@mrcs @Brilanka I keep a picture of @TheDon on the side of my helmet. Underneath reads 'NEVER FORGET'.", - "in_reply_to_user_id_str": "101935227", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mrcs", - "id_str": "101935227", - "id": 101935227, - "indices": [ - 0, - 5 - ], - "name": "Marcus Hanson" - }, - { - "screen_name": "Brilanka", - "id_str": "69128362", - "id": 69128362, - "indices": [ - 6, - 15 - ], - "name": "Brilanka" - }, - { - "screen_name": "TheDon", - "id_str": "24799086", - "id": 24799086, - "indices": [ - 37, - 44 - ], - "name": "Don" - } - ] - }, - "created_at": "Wed Jan 06 04:23:11 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684589819960266752, - "lang": "en" - }, - "default_profile_image": false, - "id": 6579422, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5275, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6579422/1440733343", - "is_translator": false - }, - { - "time_zone": "America/New_York", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18510643", - "following": false, - "friends_count": 422, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.douglasstanley.com", - "url": "http://t.co/UfZiJnhhrI", - "expanded_url": "http://blog.douglasstanley.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 263, - "location": "Ohio", - "screen_name": "thafreak", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "!Dr", - "profile_use_background_image": true, - "description": "CS Geek, PhD dropout, Linux something, blah blah...devops...cloud...", - "url": "http://t.co/UfZiJnhhrI", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/522113078331469824/3hNzlCRo_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Dec 31 17:11:43 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522113078331469824/3hNzlCRo_normal.jpeg", - "favourites_count": 1326, - "status": { - "retweet_count": 151, - "retweeted_status": { - "retweet_count": 151, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684759334597857280", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "arstechnica.com/security/2016/\u2026", - "url": "https://t.co/ucH6dJHoNl", - "expanded_url": "http://arstechnica.com/security/2016/01/fatally-weak-md5-function-torpedoes-crypto-protections-in-https-and-ipsec/", - "indices": [ - 74, - 97 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dangoodin001", - "id_str": "14150736", - "id": 14150736, - "indices": [ - 101, - 114 - ], - "name": "Dan Goodin" - } - ] - }, - "created_at": "Wed Jan 06 15:32:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684759334597857280, - "text": "Fatally weak MD5 function torpedoes crypto protections in HTTPS and IPSEC https://t.co/ucH6dJHoNl by @dangoodin001", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 84, - "contributors": null, - "source": "Ars tweetbot" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685217743394717701", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "arstechnica.com/security/2016/\u2026", - "url": "https://t.co/ucH6dJHoNl", - "expanded_url": "http://arstechnica.com/security/2016/01/fatally-weak-md5-function-torpedoes-crypto-protections-in-https-and-ipsec/", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "arstechnica", - "id_str": "717313", - "id": 717313, - "indices": [ - 3, - 15 - ], - "name": "Ars Technica" - }, - { - "screen_name": "dangoodin001", - "id_str": "14150736", - "id": 14150736, - "indices": [ - 118, - 131 - ], - "name": "Dan Goodin" - } - ] - }, - "created_at": "Thu Jan 07 21:53:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685217743394717701, - "text": "RT @arstechnica: Fatally weak MD5 function torpedoes crypto protections in HTTPS and IPSEC https://t.co/ucH6dJHoNl by @dangoodin001", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 18510643, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 4085, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18510643/1406063888", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "34610111", - "following": false, - "friends_count": 1089, - "entities": { - "description": { - "urls": [ - { - "display_url": "unscatter.com", - "url": "http://t.co/lv2hAzXh34", - "expanded_url": "http://www.unscatter.com", - "indices": [ - 43, - 65 - ] - }, - { - "display_url": "joerussbowman.tumblr.com", - "url": "http://t.co/uDoXXLNixh", - "expanded_url": "http://joerussbowman.tumblr.com", - "indices": [ - 75, - 97 - ] - }, - { - "display_url": "github.com/joerussbowman", - "url": "https://t.co/Z35VDQ5ouH", - "expanded_url": "https://github.com/joerussbowman", - "indices": [ - 114, - 137 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22842058/twitter.jpg", - "notifications": false, - "profile_sidebar_fill_color": "0D4D69", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 457, - "location": "", - "screen_name": "joerussbowman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Joe Russ Bowman", - "profile_use_background_image": true, - "description": "Sysadmin, sometimes programmer. Working on http://t.co/lv2hAzXh34 - blog @ http://t.co/uDoXXLNixh and on github - https://t.co/Z35VDQ5ouH", - "url": null, - "profile_text_color": "5BA1F0", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/502104444830351360/BJ9HL5C8_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Thu Apr 23 13:24:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/502104444830351360/BJ9HL5C8_normal.jpeg", - "favourites_count": 26, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685258190834012160", - "id": 685258190834012160, - "text": "Checking out Shannara Chronicles, waiting for Indiana Jones to come save the elves. #showingmyage", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 84, - 97 - ], - "text": "showingmyage" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 00:34:18 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 34610111, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22842058/twitter.jpg", - "statuses_count": 6465, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14510730", - "following": false, - "friends_count": 302, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sysdoc.io", - "url": "https://t.co/sMSA5BwOj5", - "expanded_url": "http://sysdoc.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000112950477/48f0551ad73bae7fb31e6254fdf24415.png", - "notifications": false, - "profile_sidebar_fill_color": "C4C4C4", - "profile_link_color": "3C6CE6", - "geo_enabled": false, - "followers_count": 95, - "location": "", - "screen_name": "nrcook", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "Nick Cook", - "profile_use_background_image": true, - "description": "Product guy at @blackfinmedia, founder of Sysdoc.", - "url": "https://t.co/sMSA5BwOj5", - "profile_text_color": "BECFCC", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/598290668146962432/kgBgheRN_normal.png", - "profile_background_color": "F2EAD0", - "created_at": "Thu Apr 24 12:24:07 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/598290668146962432/kgBgheRN_normal.png", - "favourites_count": 295, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "669565468324286465", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1GYHikT", - "url": "https://t.co/fVd2SvFjXU", - "expanded_url": "http://bit.ly/1GYHikT", - "indices": [ - 28, - 51 - ] - } - ], - "hashtags": [ - { - "indices": [ - 52, - 64 - ], - "text": "programming" - }, - { - "indices": [ - 65, - 75 - ], - "text": "developer" - }, - { - "indices": [ - 76, - 85 - ], - "text": "learning" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Nov 25 17:17:02 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 669565468324286465, - "text": "Learning to Program Sucks - https://t.co/fVd2SvFjXU #programming #developer #learning", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "Meet Edgar" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "669572900555485188", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1GYHikT", - "url": "https://t.co/fVd2SvFjXU", - "expanded_url": "http://bit.ly/1GYHikT", - "indices": [ - 44, - 67 - ] - } - ], - "hashtags": [ - { - "indices": [ - 68, - 80 - ], - "text": "programming" - }, - { - "indices": [ - 81, - 91 - ], - "text": "developer" - }, - { - "indices": [ - 92, - 101 - ], - "text": "learning" - } - ], - "user_mentions": [ - { - "screen_name": "donnfelker", - "id_str": "14393851", - "id": 14393851, - "indices": [ - 3, - 14 - ], - "name": "Donn Felker" - } - ] - }, - "created_at": "Wed Nov 25 17:46:34 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 669572900555485188, - "text": "RT @donnfelker: Learning to Program Sucks - https://t.co/fVd2SvFjXU #programming #developer #learning", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14510730, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000112950477/48f0551ad73bae7fb31e6254fdf24415.png", - "statuses_count": 917, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "15851858", - "following": false, - "friends_count": 885, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": true, - "followers_count": 446, - "location": "san francisco", - "screen_name": "setient", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "setient", - "profile_use_background_image": true, - "description": "dev ops ftw. I am also a supportive of positivity. hearts everyone", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/522835111041961984/tJCL2ACm_normal.jpeg", - "profile_background_color": "709397", - "created_at": "Thu Aug 14 15:49:58 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522835111041961984/tJCL2ACm_normal.jpeg", - "favourites_count": 1340, - "status": { - "retweet_count": 18, - "retweeted_status": { - "retweet_count": 18, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685472504115281920", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/jack_daniel/st\u2026", - "url": "https://t.co/ES9Q17g8G3", - "expanded_url": "https://twitter.com/jack_daniel/status/684936983219728385", - "indices": [ - 58, - 81 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:45:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685472504115281920, - "text": "We've lost a great friend, but you can make him live on. https://t.co/ES9Q17g8G3", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 27, - "contributors": null, - "source": "TweetCaster for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685495361608126464", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/jack_daniel/st\u2026", - "url": "https://t.co/ES9Q17g8G3", - "expanded_url": "https://twitter.com/jack_daniel/status/684936983219728385", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jack_daniel", - "id_str": "7025212", - "id": 7025212, - "indices": [ - 3, - 15 - ], - "name": "Jack Daniel" - } - ] - }, - "created_at": "Fri Jan 08 16:16:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685495361608126464, - "text": "RT @jack_daniel: We've lost a great friend, but you can make him live on. https://t.co/ES9Q17g8G3", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 15851858, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 5312, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "20865431", - "following": false, - "friends_count": 3374, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "standalone-sysadmin.com", - "url": "http://t.co/YORxb7gX1b", - "expanded_url": "http://www.standalone-sysadmin.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/106552711/twitter-backgrounda.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 5182, - "location": "Los Angeles, CA", - "screen_name": "standaloneSA", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 450, - "name": "Matt Simmons", - "profile_use_background_image": true, - "description": "I play with computers all day in Iron Man's spaceship factory - Tweets are my own", - "url": "http://t.co/YORxb7gX1b", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617651226658738176/3aplbFKo_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sat Feb 14 19:14:10 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617651226658738176/3aplbFKo_normal.jpg", - "favourites_count": 3404, - "status": { - "retweet_count": 12, - "retweeted_status": { - "retweet_count": 12, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685259250369601537", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nbcnews.com/tech/innovatio\u2026", - "url": "https://t.co/mpPdCyOHNn", - "expanded_url": "http://www.nbcnews.com/tech/innovation/spacex-plans-drone-ship-rocket-landing-jan-17-launch-n492471", - "indices": [ - 37, - 60 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 00:38:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685259250369601537, - "text": "Now, let's nail a droneship landing! https://t.co/mpPdCyOHNn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 22, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685271429793751040", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nbcnews.com/tech/innovatio\u2026", - "url": "https://t.co/mpPdCyOHNn", - "expanded_url": "http://www.nbcnews.com/tech/innovation/spacex-plans-drone-ship-rocket-landing-jan-17-launch-n492471", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "larsblackmore", - "id_str": "562325211", - "id": 562325211, - "indices": [ - 3, - 17 - ], - "name": "Lars Blackmore" - } - ] - }, - "created_at": "Fri Jan 08 01:26:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685271429793751040, - "text": "RT @larsblackmore: Now, let's nail a droneship landing! https://t.co/mpPdCyOHNn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 20865431, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/106552711/twitter-backgrounda.jpg", - "statuses_count": 23481, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/20865431/1401481629", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "132978921", - "following": false, - "friends_count": 736, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "etchsoftware.com", - "url": "http://t.co/6bJgwMooHY", - "expanded_url": "http://www.etchsoftware.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/413186195/DrWho10thDoor.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "10184F", - "geo_enabled": true, - "followers_count": 583, - "location": "Portland, OR", - "screen_name": "geekcode", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 54, - "name": "Mike Bijon", - "profile_use_background_image": false, - "description": "Platform engineer & VP Tech @billupsww, coffee, #golang, coffee, #WordPress core & OSS contrib, runner, coffee. Yes, that much coffee.", - "url": "http://t.co/6bJgwMooHY", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2778765012/1ded7889acf754782539a059a159768d_normal.png", - "profile_background_color": "5D6569", - "created_at": "Wed Apr 14 17:53:29 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2778765012/1ded7889acf754782539a059a159768d_normal.png", - "favourites_count": 2234, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "danielbachhuber", - "in_reply_to_user_id": 272166936, - "in_reply_to_status_id_str": "685495807496159232", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685591211986440192", - "id": 685591211986440192, - "text": "@danielbachhuber Like refactoring a whole lot just to make single-line corner cases testable?", - "in_reply_to_user_id_str": "272166936", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "danielbachhuber", - "id_str": "272166936", - "id": 272166936, - "indices": [ - 0, - 16 - ], - "name": "Daniel Bachhuber" - } - ] - }, - "created_at": "Fri Jan 08 22:37:37 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685495807496159232, - "lang": "en" - }, - "default_profile_image": false, - "id": 132978921, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/413186195/DrWho10thDoor.jpg", - "statuses_count": 3841, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132978921/1398211951", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "385757065", - "following": false, - "friends_count": 31, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rocketlift.com", - "url": "http://t.co/st5RoBqEUR", - "expanded_url": "http://rocketlift.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/749855714/d6af75093a620f71f8013dfdb80b48f5.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "727C89", - "geo_enabled": false, - "followers_count": 88, - "location": "The Internet", - "screen_name": "RocketLiftInc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Rocket Lift", - "profile_use_background_image": true, - "description": "We are capable, caring, thoughtful, excited humans who build world-class websites and web software.", - "url": "http://t.co/st5RoBqEUR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3034405783/1ab06cea7818faea8b74571179bdc4ae_normal.png", - "profile_background_color": "333842", - "created_at": "Thu Oct 06 02:24:42 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3034405783/1ab06cea7818faea8b74571179bdc4ae_normal.png", - "favourites_count": 19, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684123557534629888", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 176, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 312, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 663, - "h": 345, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX5-wCrUsAA13sD.png", - "type": "photo", - "indices": [ - 65, - 88 - ], - "media_url": "http://pbs.twimg.com/media/CX5-wCrUsAA13sD.png", - "display_url": "pic.twitter.com/TaV5qQKGEZ", - "id_str": "684123557224296448", - "expanded_url": "http://twitter.com/RocketLiftInc/status/684123557534629888/photo/1", - "id": 684123557224296448, - "url": "https://t.co/TaV5qQKGEZ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 21:25:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684123557534629888, - "text": "You won\u2019t believe how we\u2019re making strategic planning fun again. https://t.co/TaV5qQKGEZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 385757065, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/749855714/d6af75093a620f71f8013dfdb80b48f5.png", - "statuses_count": 118, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2343043428", - "following": false, - "friends_count": 351, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 206, - "location": "Toronto, ON, Canada", - "screen_name": "Cliffehangers", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "Three-ve Cliffe", - "profile_use_background_image": true, - "description": "DadOps (to 3 kids) & DevOps (Product Sherpa @ PagerDuty)", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/434196387899535360/tSOrVjIW_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Feb 14 04:28:03 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/434196387899535360/tSOrVjIW_normal.jpeg", - "favourites_count": 478, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "683561599886618624", - "id": 683561599886618624, - "text": "When your body wakes up \"naturally\" at 3am ... Ugh. #DadOps", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 52, - 59 - ], - "text": "DadOps" - } - ], - "user_mentions": [] - }, - "created_at": "Sun Jan 03 08:12:40 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2343043428, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1041, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14871770", - "following": false, - "friends_count": 436, - "entities": { - "description": { - "urls": [ - { - "display_url": "rocketlift.com", - "url": "http://t.co/PbFXp9t0bB", - "expanded_url": "http://rocketlift.com", - "indices": [ - 44, - 66 - ] - }, - { - "display_url": "galacticpanda.com", - "url": "http://t.co/7mBG1S01PD", - "expanded_url": "http://galacticpanda.com", - "indices": [ - 67, - 89 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mattheweppelsheimer.com", - "url": "http://t.co/1YaawPsJh6", - "expanded_url": "http://mattheweppelsheimer.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "F23000", - "geo_enabled": false, - "followers_count": 571, - "location": "Portland, Oregon", - "screen_name": "mattepp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 72, - "name": "Matthew Eppelsheimer", - "profile_use_background_image": true, - "description": "Team lead @RocketLiftInc. #RCTID #WordPress http://t.co/PbFXp9t0bB http://t.co/7mBG1S01PD", - "url": "http://t.co/1YaawPsJh6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683184178649632768/m7cwV27G_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu May 22 18:45:11 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683184178649632768/m7cwV27G_normal.jpg", - "favourites_count": 5966, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685567757157400576", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 1365, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 453, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOgPLGUAAE1XQZ.jpg", - "type": "photo", - "indices": [ - 117, - 140 - ], - "media_url": "http://pbs.twimg.com/media/CYOgPLGUAAE1XQZ.jpg", - "display_url": "pic.twitter.com/Jzi6g7Oa2e", - "id_str": "685567750828195841", - "expanded_url": "http://twitter.com/mattepp/status/685567757157400576/photo/1", - "id": 685567750828195841, - "url": "https://t.co/Jzi6g7Oa2e" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ZekeHero", - "id_str": "15663173", - "id": 15663173, - "indices": [ - 1, - 10 - ], - "name": "Mike Cassella" - } - ] - }, - "created_at": "Fri Jan 08 21:04:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685567757157400576, - "text": ".@ZekeHero pointed out we\u2019re in possession of the original theatrical releases of Star Wars IV-VI.\n\nThis whole time! https://t.co/Jzi6g7Oa2e", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 14871770, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 14509, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14871770/1435244285", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15368317", - "following": false, - "friends_count": 897, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paulosman.me", - "url": "http://t.co/haR9pkCsWA", - "expanded_url": "http://paulosman.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 1913, - "location": "Austin, TX", - "screen_name": "paulosman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 114, - "name": "Paul Osman", - "profile_use_background_image": true, - "description": "Software Eng @UnderArmour Connected Fitness. Rider of Bikes, Toronto person living in Austin, Coffee Addict, @meghatron's less witty half.", - "url": "http://t.co/haR9pkCsWA", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/646857949751578628/prqqpv7y_normal.jpg", - "profile_background_color": "352726", - "created_at": "Wed Jul 09 17:58:37 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/646857949751578628/prqqpv7y_normal.jpg", - "favourites_count": 1353, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -97.928935, - 30.127892 - ], - [ - -97.5805133, - 30.127892 - ], - [ - -97.5805133, - 30.5187994 - ], - [ - -97.928935, - 30.5187994 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Austin, TX", - "id": "c3f37afa9efcf94b", - "name": "Austin" - }, - "in_reply_to_screen_name": "herhighnessness", - "in_reply_to_user_id": 14437357, - "in_reply_to_status_id_str": "685293163267887104", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685309904001888257", - "id": 685309904001888257, - "text": "@herhighnessness it took me 2 years of living East before I was able to find my way around.", - "in_reply_to_user_id_str": "14437357", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "herhighnessness", - "id_str": "14437357", - "id": 14437357, - "indices": [ - 0, - 16 - ], - "name": "Chelsea Novak" - } - ] - }, - "created_at": "Fri Jan 08 03:59:48 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685293163267887104, - "lang": "en" - }, - "default_profile_image": false, - "id": 15368317, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 6434, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15368317/1419781254", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "226319355", - "following": false, - "friends_count": 288, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/mpangrazzi", - "url": "https://t.co/N54bTqXneR", - "expanded_url": "https://github.com/mpangrazzi", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 65, - "location": "Software Engineer", - "screen_name": "xmikex83", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Michele Pangrazzi", - "profile_use_background_image": true, - "description": "Full-stack web developer. Mostly Javascript, HTML / CSS and Ruby. Node.js addict.", - "url": "https://t.co/N54bTqXneR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000118991479/46019d4266676221ea1b3a6030749130_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 13 21:53:44 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "it", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000118991479/46019d4266676221ea1b3a6030749130_normal.png", - "favourites_count": 218, - "status": { - "retweet_count": 30, - "retweeted_status": { - "retweet_count": 30, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685487567098261504", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mitchrobb.com/chromes-consol\u2026", - "url": "https://t.co/qoxwOguhtv", - "expanded_url": "http://www.mitchrobb.com/chromes-console-api-greatest-hits/", - "indices": [ - 108, - 131 - ] - } - ], - "hashtags": [ - { - "indices": [ - 132, - 135 - ], - "text": "js" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:45:46 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685487567098261504, - "text": "Chrome's Console API Greatest hits - .dir(), .table(), debug levels, and other great lesser-known features: https://t.co/qoxwOguhtv #js", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 35, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685529825344274432", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mitchrobb.com/chromes-consol\u2026", - "url": "https://t.co/qoxwOguhtv", - "expanded_url": "http://www.mitchrobb.com/chromes-console-api-greatest-hits/", - "indices": [ - 126, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "js" - } - ], - "user_mentions": [ - { - "screen_name": "_ericelliott", - "id_str": "14148308", - "id": 14148308, - "indices": [ - 3, - 16 - ], - "name": "Eric Elliott" - } - ] - }, - "created_at": "Fri Jan 08 18:33:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685529825344274432, - "text": "RT @_ericelliott: Chrome's Console API Greatest hits - .dir(), .table(), debug levels, and other great lesser-known features: https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 226319355, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 465, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/226319355/1414508396", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "97307610", - "following": false, - "friends_count": 1499, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 185, - "location": "Phoenix, AZ", - "screen_name": "joshhardison", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "The One True Josh", - "profile_use_background_image": true, - "description": "I love math, programming, golf, my goofy kids and humanity in general.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1854007167/vKfwebYu_normal", - "profile_background_color": "C0DEED", - "created_at": "Wed Dec 16 22:52:17 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1854007167/vKfwebYu_normal", - "favourites_count": 130, - "status": { - "retweet_count": 7058, - "retweeted_status": { - "retweet_count": 7058, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682700489000140801", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", - "display_url": "pic.twitter.com/Smrls9NHFj", - "id_str": "682700485787267072", - "expanded_url": "http://twitter.com/dcatast/status/682700489000140801/photo/1", - "id": 682700485787267072, - "url": "https://t.co/Smrls9NHFj" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 23:10:55 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682700489000140801, - "text": "Mother-i-L doesn't have Twitter. She wanted the world to see her bread. Told her I only 28 followers. \"That'll do.\" https://t.co/Smrls9NHFj", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9394, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682711850098671616", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "682700489000140801", - "url": "https://t.co/Smrls9NHFj", - "media_url": "http://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", - "source_user_id_str": "3045462152", - "id_str": "682700485787267072", - "id": 682700485787267072, - "media_url_https": "https://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 682700489000140801, - "source_user_id": 3045462152, - "display_url": "pic.twitter.com/Smrls9NHFj", - "expanded_url": "http://twitter.com/dcatast/status/682700489000140801/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dcatast", - "id_str": "3045462152", - "id": 3045462152, - "indices": [ - 3, - 11 - ], - "name": "Dc" - } - ] - }, - "created_at": "Thu Dec 31 23:56:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682711850098671616, - "text": "RT @dcatast: Mother-i-L doesn't have Twitter. She wanted the world to see her bread. Told her I only 28 followers. \"That'll do.\" https://t.\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 97307610, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 589, - "is_translator": false - }, - { - "time_zone": "Rome", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "21745028", - "following": false, - "friends_count": 455, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/martinp", - "url": "https://t.co/prsUC0LrCr", - "expanded_url": "https://github.com/martinp", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 162, - "location": "Trondheim, Norway", - "screen_name": "mpolden", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Martin Polden", - "profile_use_background_image": true, - "description": "music snob, free software enthusiast, occasionally writes code, often curses code, works at yahoo", - "url": "https://t.co/prsUC0LrCr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000711415781/b686d1b0cfae878f17a304fb278ef860_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Feb 24 11:06:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000711415781/b686d1b0cfae878f17a304fb278ef860_normal.png", - "favourites_count": 813, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mpolden", - "in_reply_to_user_id": 21745028, - "in_reply_to_status_id_str": "685432425728598017", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685432737155670016", - "id": 685432737155670016, - "text": "@ingvald @atlefren @mrodem or Google Slides if I'm lazy :)", - "in_reply_to_user_id_str": "21745028", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ingvald", - "id_str": "6564832", - "id": 6564832, - "indices": [ - 0, - 8 - ], - "name": "Ingvald Skaug" - }, - { - "screen_name": "atlefren", - "id_str": "14732917", - "id": 14732917, - "indices": [ - 9, - 18 - ], - "name": "Atle Frenvik Sveen" - }, - { - "screen_name": "mrodem", - "id_str": "22851988", - "id": 22851988, - "indices": [ - 19, - 26 - ], - "name": "Magne Rodem" - } - ] - }, - "created_at": "Fri Jan 08 12:07:53 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685432425728598017, - "lang": "en" - }, - "default_profile_image": false, - "id": 21745028, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 773, - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "15011401", - "following": false, - "friends_count": 317, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "evanshortiss.com", - "url": "http://t.co/T1nBQwmLdz", - "expanded_url": "http://www.evanshortiss.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "E65C20", - "geo_enabled": true, - "followers_count": 170, - "location": "Boston, MA", - "screen_name": "evanshortiss", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Evan Shortiss", - "profile_use_background_image": true, - "description": "Irishman. Photographer. Software Engineer @feedhenry @RedHatSoftware.", - "url": "http://t.co/T1nBQwmLdz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/550108672668753921/eZ-HyfhG_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Jun 04 22:46:07 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/550108672668753921/eZ-HyfhG_normal.jpeg", - "favourites_count": 153, - "status": { - "retweet_count": 1980, - "retweeted_status": { - "retweet_count": 1980, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678444166016335872", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 244, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 431, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 736, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", - "type": "photo", - "indices": [ - 99, - 122 - ], - "media_url": "http://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", - "display_url": "pic.twitter.com/znpnqmRwUW", - "id_str": "678444165055819776", - "expanded_url": "http://twitter.com/PolitiFact/status/678444166016335872/photo/1", - "id": 678444165055819776, - "url": "https://t.co/znpnqmRwUW" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/W87ui", - "url": "https://t.co/PWQKpmpUMD", - "expanded_url": "http://ow.ly/W87ui", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Dec 20 05:17:48 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678444166016335872, - "text": "Bernie Sanders is correct. US spends 3 times what UK spends on health care https://t.co/PWQKpmpUMD https://t.co/znpnqmRwUW", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3177, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678541548024430592", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 244, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 431, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 736, - "resize": "fit" - } - }, - "source_status_id_str": "678444166016335872", - "url": "https://t.co/znpnqmRwUW", - "media_url": "http://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", - "source_user_id_str": "8953122", - "id_str": "678444165055819776", - "id": 678444165055819776, - "media_url_https": "https://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", - "type": "photo", - "indices": [ - 115, - 138 - ], - "source_status_id": 678444166016335872, - "source_user_id": 8953122, - "display_url": "pic.twitter.com/znpnqmRwUW", - "expanded_url": "http://twitter.com/PolitiFact/status/678444166016335872/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/W87ui", - "url": "https://t.co/PWQKpmpUMD", - "expanded_url": "http://ow.ly/W87ui", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PolitiFact", - "id_str": "8953122", - "id": 8953122, - "indices": [ - 3, - 14 - ], - "name": "PolitiFact" - } - ] - }, - "created_at": "Sun Dec 20 11:44:46 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678541548024430592, - "text": "RT @PolitiFact: Bernie Sanders is correct. US spends 3 times what UK spends on health care https://t.co/PWQKpmpUMD https://t.co/znpnqmRwUW", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 15011401, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1025, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15011401/1407809987", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "360369653", - "following": false, - "friends_count": 3038, - "entities": { - "description": { - "urls": [ - { - "display_url": "nationalobserver.com", - "url": "https://t.co/KEKlnliSlO", - "expanded_url": "http://www.nationalobserver.com", - "indices": [ - 65, - 88 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/340419679/sandytwitterbackground2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E8E8E8", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 7556, - "location": "Vancouver", - "screen_name": "Garossino", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 251, - "name": "Sandy Garossino", - "profile_use_background_image": false, - "description": "writer, former trial lawyer, associate editor, National Observer https://t.co/KEKlnliSlO", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/637097904809734144/0QGM2l15_normal.png", - "profile_background_color": "ED217A", - "created_at": "Tue Aug 23 03:10:24 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "E8E8E8", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637097904809734144/0QGM2l15_normal.png", - "favourites_count": 7439, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "pqpolitics", - "in_reply_to_user_id": 246667561, - "in_reply_to_status_id_str": "685598567185039360", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685602547579502592", - "id": 685602547579502592, - "text": "@pqpolitics It\u2019s how a tinderbox situation should ideally be de-escalated tho...", - "in_reply_to_user_id_str": "246667561", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "pqpolitics", - "id_str": "246667561", - "id": 246667561, - "indices": [ - 0, - 11 - ], - "name": "Pete Quily" - } - ] - }, - "created_at": "Fri Jan 08 23:22:39 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598567185039360, - "lang": "en" - }, - "default_profile_image": false, - "id": 360369653, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/340419679/sandytwitterbackground2.jpg", - "statuses_count": 32542, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/360369653/1408058611", - "is_translator": false - }, - { - "time_zone": "Ljubljana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "819606", - "following": false, - "friends_count": 4191, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "writing.jan.io", - "url": "https://t.co/q2RB27h8sD", - "expanded_url": "http://writing.jan.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685034469573681152/iYCV8S8K.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "000088", - "geo_enabled": false, - "followers_count": 13964, - "location": "Berlin", - "screen_name": "janl", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1024, - "name": "Jan Lehnardt", - "profile_use_background_image": true, - "description": "Dissatisfied with the status-quo.\n\n@couchdb \u2022 @hoodiehq \u2022 @jsconfeu \u2022 @greenkeeperio \u2022 #offlinefirst\n\nCEO at neighbourhood.ie\n\nDuct tape artist and feminist.", - "url": "https://t.co/q2RB27h8sD", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2673735348/331cefd2263bbc754979526b3fd48e4d_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 07 21:36:26 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2673735348/331cefd2263bbc754979526b3fd48e4d_normal.png", - "favourites_count": 32485, - "status": { - "retweet_count": 89, - "retweeted_status": { - "retweet_count": 89, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685548731127738368", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 199, - "resize": "fit" - }, - "medium": { - "w": 454, - "h": 266, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 454, - "h": 266, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", - "type": "photo", - "indices": [ - 111, - 134 - ], - "media_url": "http://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", - "display_url": "pic.twitter.com/ZEUtRUpo4o", - "id_str": "685548730041397249", - "expanded_url": "http://twitter.com/HaticeAkyuen/status/685548731127738368/photo/1", - "id": 685548730041397249, - "url": "https://t.co/ZEUtRUpo4o" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:48:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685548731127738368, - "text": "Name verschwunden, Erg\u00e4nzung hinzugef\u00fcgt. Ich dachte, sowas gibt es nur in schlechten Filmen mit Journalisten. https://t.co/ZEUtRUpo4o", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 64, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685558331365285888", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 199, - "resize": "fit" - }, - "medium": { - "w": 454, - "h": 266, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 454, - "h": 266, - "resize": "fit" - } - }, - "source_status_id_str": "685548731127738368", - "url": "https://t.co/ZEUtRUpo4o", - "media_url": "http://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", - "source_user_id_str": "67280909", - "id_str": "685548730041397249", - "id": 685548730041397249, - "media_url_https": "https://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685548731127738368, - "source_user_id": 67280909, - "display_url": "pic.twitter.com/ZEUtRUpo4o", - "expanded_url": "http://twitter.com/HaticeAkyuen/status/685548731127738368/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "HaticeAkyuen", - "id_str": "67280909", - "id": 67280909, - "indices": [ - 3, - 16 - ], - "name": "Hatice Aky\u00fcn" - } - ] - }, - "created_at": "Fri Jan 08 20:26:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685558331365285888, - "text": "RT @HaticeAkyuen: Name verschwunden, Erg\u00e4nzung hinzugef\u00fcgt. Ich dachte, sowas gibt es nur in schlechten Filmen mit Journalisten. https://t.\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 819606, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685034469573681152/iYCV8S8K.jpg", - "statuses_count": 110086, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/819606/1452160317", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "88168192", - "following": false, - "friends_count": 474, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "arndissler.net", - "url": "http://t.co/ZUGi3nxlTE", - "expanded_url": "http://arndissler.net/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000082688609/ddc4e686e13588938487da851ab1bdb6.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 189, - "location": "Hamburg", - "screen_name": "arndissler", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Arnd Issler", - "profile_use_background_image": true, - "description": "websites / apps / photos / development / @mailmindr - All tweets are ROT13 encrypted. Twice.", - "url": "http://t.co/ZUGi3nxlTE", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/557489425559482369/aKukb5lm_normal.png", - "profile_background_color": "030303", - "created_at": "Sat Nov 07 11:33:51 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/557489425559482369/aKukb5lm_normal.png", - "favourites_count": 1530, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685469542424928257", - "id": 685469542424928257, - "text": "Franzbr\u00f6tchen #ftw", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 14, - 18 - ], - "text": "ftw" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:34:08 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "de" - }, - "default_profile_image": false, - "id": 88168192, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000082688609/ddc4e686e13588938487da851ab1bdb6.jpeg", - "statuses_count": 3088, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/88168192/1356087736", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14932908", - "following": false, - "friends_count": 503, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/zoepage/", - "url": "https://t.co/b5WODoIU99", - "expanded_url": "https://github.com/zoepage/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EDEDED", - "profile_link_color": "ED0000", - "geo_enabled": false, - "followers_count": 2231, - "location": "Dortmund / Berlin", - "screen_name": "misprintedtype", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 193, - "name": "/me npm i dance", - "profile_use_background_image": true, - "description": "JavaScript && daughter driven development. Sr. developer @getstyla && CTO @angefragtjs, part of @HoodieHQ, @rejectjs, @otsconf", - "url": "https://t.co/b5WODoIU99", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681603537223172097/cwWKXWZY_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed May 28 12:02:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DEDEDE", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681603537223172097/cwWKXWZY_normal.jpg", - "favourites_count": 21535, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "blaue_flecken", - "in_reply_to_user_id": 513354442, - "in_reply_to_status_id_str": "685532462873710592", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685532588442779648", - "id": 685532588442779648, - "text": "@blaue_flecken @badboy_ will aaaaaauch!", - "in_reply_to_user_id_str": "513354442", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "blaue_flecken", - "id_str": "513354442", - "id": 513354442, - "indices": [ - 0, - 14 - ], - "name": ". ." - }, - { - "screen_name": "badboy_", - "id_str": "13485262", - "id": 13485262, - "indices": [ - 15, - 23 - ], - "name": "RB_GC_GUARD(v)" - } - ] - }, - "created_at": "Fri Jan 08 18:44:40 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685532462873710592, - "lang": "de" - }, - "default_profile_image": false, - "id": 14932908, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 35491, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14932908/1449941458", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1436340385", - "following": false, - "friends_count": 380, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "danielmschmidt.de", - "url": "http://t.co/VfRq2S27fl", - "expanded_url": "http://danielmschmidt.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 79, - "location": "Kiel", - "screen_name": "DSchmidt1992", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Daniel Schmidt", - "profile_use_background_image": true, - "description": "Webdev, with focus on frontend and mobile development", - "url": "http://t.co/VfRq2S27fl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/465053646409826304/heVzNqcF_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri May 17 18:08:47 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/465053646409826304/heVzNqcF_normal.jpeg", - "favourites_count": 448, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684965269748318208", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", - "type": "photo", - "indices": [ - 57, - 80 - ], - "media_url": "http://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", - "display_url": "pic.twitter.com/evoMEqdv9g", - "id_str": "684965254351069184", - "expanded_url": "http://twitter.com/KrauseFx/status/684965269748318208/photo/1", - "id": 684965254351069184, - "url": "https://t.co/evoMEqdv9g" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "fastlane.tools", - "url": "https://t.co/dhb4eHkOnr", - "expanded_url": "https://fastlane.tools", - "indices": [ - 25, - 48 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 05:10:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0079932b106eb4c9.json", - "country": "Vi\u1ec7t Nam", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - 106.356398, - 10.365786 - ], - [ - 107.012798, - 10.365786 - ], - [ - 107.012798, - 11.160291 - ], - [ - 106.356398, - 11.160291 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "VN", - "contained_within": [], - "full_name": "Ho Chi Minh, Vietnam", - "id": "0079932b106eb4c9", - "name": "Ho Chi Minh" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684965269748318208, - "text": "1 year ago: drafting the https://t.co/dhb4eHkOnr website https://t.co/evoMEqdv9g", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 42, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685375894597287936", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "684965269748318208", - "url": "https://t.co/evoMEqdv9g", - "media_url": "http://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", - "source_user_id_str": "50055757", - "id_str": "684965254351069184", - "id": 684965254351069184, - "media_url_https": "https://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", - "type": "photo", - "indices": [ - 71, - 94 - ], - "source_status_id": 684965269748318208, - "source_user_id": 50055757, - "display_url": "pic.twitter.com/evoMEqdv9g", - "expanded_url": "http://twitter.com/KrauseFx/status/684965269748318208/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "fastlane.tools", - "url": "https://t.co/dhb4eHkOnr", - "expanded_url": "https://fastlane.tools", - "indices": [ - 39, - 62 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "KrauseFx", - "id_str": "50055757", - "id": 50055757, - "indices": [ - 3, - 12 - ], - "name": "Felix Krause" - } - ] - }, - "created_at": "Fri Jan 08 08:22:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685375894597287936, - "text": "RT @KrauseFx: 1 year ago: drafting the https://t.co/dhb4eHkOnr website https://t.co/evoMEqdv9g", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1436340385, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 513, - "is_translator": false - }, - { - "time_zone": "Edinburgh", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "17368293", - "following": false, - "friends_count": 479, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tinnedfruit.com", - "url": "http://t.co/pzfe4KxYu4", - "expanded_url": "http://tinnedfruit.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 672, - "location": "Edinburgh", - "screen_name": "froots101", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "Jim Newbery", - "profile_use_background_image": true, - "description": "Director of Front End Engineering at FanDuel. Director of Front End Snack Consumption everywhere.", - "url": "http://t.co/pzfe4KxYu4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459350515189428224/mDJMxNmx_normal.png", - "profile_background_color": "131516", - "created_at": "Thu Nov 13 16:36:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459350515189428224/mDJMxNmx_normal.png", - "favourites_count": 811, - "status": { - "retweet_count": 1831, - "retweeted_status": { - "retweet_count": 1831, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685484472498798592", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "type": "photo", - "indices": [ - 117, - 140 - ], - "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "display_url": "pic.twitter.com/TMcevQeAVA", - "id_str": "685484471227953152", - "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", - "id": 685484471227953152, - "url": "https://t.co/TMcevQeAVA" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:33:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685484472498798592, - "text": "This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https://t.co/TMcevQeAVA", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1984, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685512506593394689", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "source_status_id_str": "685484472498798592", - "url": "https://t.co/TMcevQeAVA", - "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "source_user_id_str": "119043148", - "id_str": "685484471227953152", - "id": 685484471227953152, - "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685484472498798592, - "source_user_id": 119043148, - "display_url": "pic.twitter.com/TMcevQeAVA", - "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lukekarmali", - "id_str": "119043148", - "id": 119043148, - "indices": [ - 3, - 15 - ], - "name": "Luke Karmali" - } - ] - }, - "created_at": "Fri Jan 08 17:24:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685512506593394689, - "text": "RT @lukekarmali: This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 17368293, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5284, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17368293/1364377512", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "253635851", - "following": false, - "friends_count": 46, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 57, - "location": "Universe", - "screen_name": "EdwinMons", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Edwin Mons", - "profile_use_background_image": true, - "description": "Publiek geneuzel van Edwin", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1867125171/Foto_op_22-11-2011_om_09.34_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Feb 17 17:12:32 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1867125171/Foto_op_22-11-2011_om_09.34_normal.jpg", - "favourites_count": 42, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677420835007803392", - "id": 677420835007803392, - "text": "I suspect there's a huge overlap in people from the Sirius Cybernetics Corp Marketing Division, and people who think systemd is a good idea.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 17 09:31:27 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 253635851, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 324, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "16168410", - "following": false, - "friends_count": 503, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shanehudson.net/work", - "url": "https://t.co/Jht5i7jeDz", - "expanded_url": "https://shanehudson.net/work", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/429521174/bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "83AFB6", - "geo_enabled": true, - "followers_count": 2968, - "location": "West Sussex, England", - "screen_name": "ShaneHudson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 134, - "name": "Shane Hudson", - "profile_use_background_image": true, - "description": "I'm a freelance developer, making stuff on the Web. Wrote a book - JavaScript Creativity. shane@shanehudson.net", - "url": "https://t.co/Jht5i7jeDz", - "profile_text_color": "4B729C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/476845708578803712/RnApcn6v_normal.png", - "profile_background_color": "E8E6DF", - "created_at": "Sun Sep 07 12:03:21 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "CDCDCD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/476845708578803712/RnApcn6v_normal.png", - "favourites_count": 19843, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "edd_greer", - "in_reply_to_user_id": 328566545, - "in_reply_to_status_id_str": "685475509489299457", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685476367274737665", - "id": 685476367274737665, - "text": "@edd_greer I'm sitting in a cafe looking over the sea. Really is lovely today :)", - "in_reply_to_user_id_str": "328566545", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "edd_greer", - "id_str": "328566545", - "id": 328566545, - "indices": [ - 0, - 10 - ], - "name": "Edward Oliver Greer" - } - ] - }, - "created_at": "Fri Jan 08 15:01:16 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685475509489299457, - "lang": "en" - }, - "default_profile_image": false, - "id": 16168410, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/429521174/bg.jpg", - "statuses_count": 47918, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16168410/1412614431", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "408410310", - "following": false, - "friends_count": 1081, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 99, - "location": "", - "screen_name": "JanuschH", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Janusch", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/549874024797323264/omgsmKnh_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Nov 09 11:38:57 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/549874024797323264/omgsmKnh_normal.jpeg", - "favourites_count": 321, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "t_spicydonuts", - "in_reply_to_user_id": 623182154, - "in_reply_to_status_id_str": "669000572226285568", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "669276857259397121", - "id": 669276857259397121, - "text": "@t_spicydonuts @babeljs O.o I feel your pain, had to roll back my 5to6 upgrade attempt as well, being an early adopter bit me. Good luck!", - "in_reply_to_user_id_str": "623182154", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "t_spicydonuts", - "id_str": "623182154", - "id": 623182154, - "indices": [ - 0, - 14 - ], - "name": "Michael Trotter" - }, - { - "screen_name": "babeljs", - "id_str": "2958823554", - "id": 2958823554, - "indices": [ - 15, - 23 - ], - "name": "Babel" - } - ] - }, - "created_at": "Tue Nov 24 22:10:11 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 669000572226285568, - "lang": "en" - }, - "default_profile_image": false, - "id": 408410310, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 136, - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "14092028", - "following": false, - "friends_count": 1009, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "saperduper.org", - "url": "http://t.co/DVWiulnJKs", - "expanded_url": "http://saperduper.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3201906/PA25-TC4Matt-3.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": false, - "followers_count": 771, - "location": "Athens, GR", - "screen_name": "saperduper", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "saperduper", - "profile_use_background_image": true, - "description": "An electrical and computer engineer trying to manage uncertainty", - "url": "http://t.co/DVWiulnJKs", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/52795574/sd_normal.jpg", - "profile_background_color": "E8E8E8", - "created_at": "Thu Mar 06 23:11:32 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/52795574/sd_normal.jpg", - "favourites_count": 51, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "stazybohorn", - "in_reply_to_user_id": 14733413, - "in_reply_to_status_id_str": "662330478377181184", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "662367381495406594", - "id": 662367381495406594, - "text": "@stazybohorn \u03bc\u03bf\u03bd\u03bf \u03b7 \u03a0\u03b1\u03bd\u03b1\u03b8\u03b1 \u03bc\u03b1\u03c2 \u03c0\u03bb\u03b7\u03b3\u03c9\u03bd\u03b5\u03b9", - "in_reply_to_user_id_str": "14733413", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "stazybohorn", - "id_str": "14733413", - "id": 14733413, - "indices": [ - 0, - 12 - ], - "name": "Stazybo Horn" - } - ] - }, - "created_at": "Thu Nov 05 20:34:24 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 662330478377181184, - "lang": "el" - }, - "default_profile_image": false, - "id": 14092028, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3201906/PA25-TC4Matt-3.jpg", - "statuses_count": 2074, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "559330891", - "following": false, - "friends_count": 176, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/zooldk", - "url": "https://t.co/gJQlWm0aVr", - "expanded_url": "http://about.me/zooldk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 182, - "location": "Copenhagen, Denmark", - "screen_name": "zooldk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Steffen Larsen", - "profile_use_background_image": true, - "description": "CTO of CodeZense, Founder of BrainTrust ApS, Full stack software developer, Entrepreneur, Consultant. Computer Science, Copenhagen University Alumni.", - "url": "https://t.co/gJQlWm0aVr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/578588645025845249/gZq4o02q_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 21 08:29:04 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/578588645025845249/gZq4o02q_normal.jpeg", - "favourites_count": 1892, - "status": { - "retweet_count": 63, - "retweeted_status": { - "retweet_count": 63, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684119465567629312", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 296, - "h": 296, - "resize": "fit" - }, - "medium": { - "w": 296, - "h": 296, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 296, - "h": 296, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", - "type": "photo", - "indices": [ - 106, - 129 - ], - "media_url": "http://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", - "display_url": "pic.twitter.com/NBtp4EjJmo", - "id_str": "684119465315930114", - "expanded_url": "http://twitter.com/TheOfficialACM/status/684119465567629312/photo/1", - "id": 684119465315930114, - "url": "https://t.co/NBtp4EjJmo" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WCvA5", - "url": "https://t.co/DV0YKIcU5O", - "expanded_url": "http://ow.ly/WCvA5", - "indices": [ - 82, - 105 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 21:09:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684119465567629312, - "text": "Peter Naur, 2005 recipient of the ACM A.M. Turing Award, passed away on Jan. 3rd. https://t.co/DV0YKIcU5O https://t.co/NBtp4EjJmo", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 21, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684303063860031488", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 296, - "h": 296, - "resize": "fit" - }, - "medium": { - "w": 296, - "h": 296, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 296, - "h": 296, - "resize": "fit" - } - }, - "source_status_id_str": "684119465567629312", - "url": "https://t.co/NBtp4EjJmo", - "media_url": "http://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", - "source_user_id_str": "115763683", - "id_str": "684119465315930114", - "id": 684119465315930114, - "media_url_https": "https://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", - "type": "photo", - "indices": [ - 126, - 140 - ], - "source_status_id": 684119465567629312, - "source_user_id": 115763683, - "display_url": "pic.twitter.com/NBtp4EjJmo", - "expanded_url": "http://twitter.com/TheOfficialACM/status/684119465567629312/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WCvA5", - "url": "https://t.co/DV0YKIcU5O", - "expanded_url": "http://ow.ly/WCvA5", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheOfficialACM", - "id_str": "115763683", - "id": 115763683, - "indices": [ - 3, - 18 - ], - "name": "Official ACM" - } - ] - }, - "created_at": "Tue Jan 05 09:18:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684303063860031488, - "text": "RT @TheOfficialACM: Peter Naur, 2005 recipient of the ACM A.M. Turing Award, passed away on Jan. 3rd. https://t.co/DV0YKIcU5O https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 559330891, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1915, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/559330891/1445665136", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "21531737", - "following": false, - "friends_count": 659, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 524, - "location": "Fort Worth, TX", - "screen_name": "andyregan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Andrew Regan", - "profile_use_background_image": true, - "description": "Sysadmin turned developer. Lover of linux, comics and supercomputers.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1149429588/movember_aregan_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Feb 22 00:37:34 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1149429588/movember_aregan_normal.png", - "favourites_count": 1055, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "damienmulley", - "in_reply_to_user_id": 193753, - "in_reply_to_status_id_str": "682934542848684032", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682939572787920900", - "id": 682939572787920900, - "text": "@damienmulley the currency of the proletariat", - "in_reply_to_user_id_str": "193753", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "damienmulley", - "id_str": "193753", - "id": 193753, - "indices": [ - 0, - 13 - ], - "name": "Damien Mulley " - } - ] - }, - "created_at": "Fri Jan 01 15:00:57 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 682934542848684032, - "lang": "en" - }, - "default_profile_image": false, - "id": 21531737, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3855, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21531737/1351450162", - "is_translator": false - }, - { - "time_zone": "Mumbai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "1484841", - "following": false, - "friends_count": 617, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "plus.google.com/10720687640631\u2026", - "url": "https://t.co/Pl4J9f1vtE", - "expanded_url": "https://plus.google.com/107206876406312072458/about", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/716204525/9696ef443d52817370a48acaab983baa.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 607, - "location": "Mumbai, India", - "screen_name": "tapan_pandita", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "Tapan Pandita", - "profile_use_background_image": true, - "description": "Geek, Gooner, Internet-lover, Internet-maker, IITian, Worked on mobile payments, Startup founder", - "url": "https://t.co/Pl4J9f1vtE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459029023134195712/KPrRyuGu_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Mon Mar 19 09:23:36 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459029023134195712/KPrRyuGu_normal.jpeg", - "favourites_count": 38, - "status": { - "retweet_count": 29492, - "retweeted_status": { - "retweet_count": 29492, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682916583073779712", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", - "type": "photo", - "indices": [ - 100, - 123 - ], - "media_url": "http://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", - "display_url": "pic.twitter.com/szKKRM4U4i", - "id_str": "682916557333331968", - "expanded_url": "http://twitter.com/hughesroland/status/682916583073779712/photo/1", - "id": 682916557333331968, - "url": "https://t.co/szKKRM4U4i" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 13:29:36 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682916583073779712, - "text": "So much going on this pic of New Year in Manchester by the Evening News. Like a beautiful painting. https://t.co/szKKRM4U4i", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 30876, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683157885594025984", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - } - }, - "source_status_id_str": "682916583073779712", - "url": "https://t.co/szKKRM4U4i", - "media_url": "http://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", - "source_user_id_str": "23226772", - "id_str": "682916557333331968", - "id": 682916557333331968, - "media_url_https": "https://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", - "type": "photo", - "indices": [ - 118, - 140 - ], - "source_status_id": 682916583073779712, - "source_user_id": 23226772, - "display_url": "pic.twitter.com/szKKRM4U4i", - "expanded_url": "http://twitter.com/hughesroland/status/682916583073779712/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "hughesroland", - "id_str": "23226772", - "id": 23226772, - "indices": [ - 3, - 16 - ], - "name": "Roland Hughes" - } - ] - }, - "created_at": "Sat Jan 02 05:28:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683157885594025984, - "text": "RT @hughesroland: So much going on this pic of New Year in Manchester by the Evening News. Like a beautiful painting. https://t.co/szKKRM4U\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 1484841, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/716204525/9696ef443d52817370a48acaab983baa.jpeg", - "statuses_count": 3063, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1484841/1398276053", - "is_translator": false - }, - { - "time_zone": "Chennai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "23416061", - "following": false, - "friends_count": 513, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/sarguru", - "url": "http://t.co/USoQKrxCvl", - "expanded_url": "http://about.me/sarguru", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 361, - "location": "London, England", - "screen_name": "sargru90", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "sarguru nathan", - "profile_use_background_image": true, - "description": "Recovering sysadmin .works for @yelpengineering CM hipster. ruby, puppet , now a clojure fanboy. slow ops, agile cyclist.", - "url": "http://t.co/USoQKrxCvl", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/490495237328863232/3AN7xaLa_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Mon Mar 09 08:41:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/490495237328863232/3AN7xaLa_normal.jpeg", - "favourites_count": 417, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/457b4814b4240d87.json", - "country": "United Kingdom", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -0.187894, - 51.483718 - ], - [ - -0.109978, - 51.483718 - ], - [ - -0.109978, - 51.5164655 - ], - [ - -0.187894, - 51.5164655 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "GB", - "contained_within": [], - "full_name": "London, England", - "id": "457b4814b4240d87", - "name": "London" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685545696246784000", - "id": 685545696246784000, - "text": "#Tarantino time baby", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 0, - 10 - ], - "text": "Tarantino" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:36:45 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 23416061, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 1432, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23416061/1416984764", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "76099033", - "following": false, - "friends_count": 155, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/145126124/grass-lq.jpg", - "notifications": false, - "profile_sidebar_fill_color": "8FB8BA", - "profile_link_color": "008720", - "geo_enabled": false, - "followers_count": 191, - "location": "Netherlands", - "screen_name": "guusdk", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 8, - "name": "Guus der Kinderen", - "profile_use_background_image": true, - "description": "The grass is pretty freakin' green on this side.", - "url": null, - "profile_text_color": "1C1C1C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/427854615/trouwfoto-oorbijt-zw_normal.jpg", - "profile_background_color": "B2D7DB", - "created_at": "Mon Sep 21 18:20:18 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "1C1C1C", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/427854615/trouwfoto-oorbijt-zw_normal.jpg", - "favourites_count": 74, - "status": { - "retweet_count": 298, - "retweeted_status": { - "retweet_count": 298, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684679564153516032", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 423, - "resize": "fit" - }, - "large": { - "w": 741, - "h": 924, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 748, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", - "type": "photo", - "indices": [ - 114, - 137 - ], - "media_url": "http://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", - "display_url": "pic.twitter.com/lSQm80ugwe", - "id_str": "684679558361182208", - "expanded_url": "http://twitter.com/resiak/status/684679564153516032/photo/1", - "id": 684679558361182208, - "url": "https://t.co/lSQm80ugwe" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 10:15:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684679564153516032, - "text": "I once believed that multi-protocol IM clients were a stopgap on the road to an inevitable federated XMPP future. https://t.co/lSQm80ugwe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 196, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684839912361865216", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 423, - "resize": "fit" - }, - "large": { - "w": 741, - "h": 924, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 748, - "resize": "fit" - } - }, - "source_status_id_str": "684679564153516032", - "url": "https://t.co/lSQm80ugwe", - "media_url": "http://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", - "source_user_id_str": "786920", - "id_str": "684679558361182208", - "id": 684679558361182208, - "media_url_https": "https://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", - "type": "photo", - "indices": [ - 126, - 140 - ], - "source_status_id": 684679564153516032, - "source_user_id": 786920, - "display_url": "pic.twitter.com/lSQm80ugwe", - "expanded_url": "http://twitter.com/resiak/status/684679564153516032/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "resiak", - "id_str": "786920", - "id": 786920, - "indices": [ - 3, - 10 - ], - "name": "w\u0131ll thompson" - } - ] - }, - "created_at": "Wed Jan 06 20:52:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684839912361865216, - "text": "RT @resiak: I once believed that multi-protocol IM clients were a stopgap on the road to an inevitable federated XMPP future. https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 76099033, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/145126124/grass-lq.jpg", - "statuses_count": 2529, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/76099033/1354456627", - "is_translator": false - }, - { - "time_zone": "Mumbai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "73310549", - "following": false, - "friends_count": 1435, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chetandhembre.in", - "url": "https://t.co/s0YPA3pwAa", - "expanded_url": "http://chetandhembre.in", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 605, - "location": "Navi Mumbai, India", - "screen_name": "ichetandhembre", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "inexperienced I am", - "profile_use_background_image": false, - "description": "...", - "url": "https://t.co/s0YPA3pwAa", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680319727206576128/Y92744-C_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Sep 11 04:40:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680319727206576128/Y92744-C_normal.jpg", - "favourites_count": 1396, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685456239564701697", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "unacademy.in/lesson/increas\u2026", - "url": "https://t.co/8ba42bkSq7", - "expanded_url": "https://unacademy.in/lesson/increase-vocabulary-top-words-part-2/QKFHK3T5", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "theunacademy", - "id_str": "231029978", - "id": 231029978, - "indices": [ - 81, - 94 - ], - "name": "Unacademy" - } - ] - }, - "created_at": "Fri Jan 08 13:41:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685456239564701697, - "text": "Increase Vocabulary: Top words Part 2 by Gaurav Munjal https://t.co/8ba42bkSq7 @theunacademy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685464166203830272", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "unacademy.in/lesson/increas\u2026", - "url": "https://t.co/8ba42bkSq7", - "expanded_url": "https://unacademy.in/lesson/increase-vocabulary-top-words-part-2/QKFHK3T5", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "gauravmunjal", - "id_str": "31501423", - "id": 31501423, - "indices": [ - 3, - 16 - ], - "name": "Gaurav Munjal" - }, - { - "screen_name": "theunacademy", - "id_str": "231029978", - "id": 231029978, - "indices": [ - 99, - 112 - ], - "name": "Unacademy" - } - ] - }, - "created_at": "Fri Jan 08 14:12:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685464166203830272, - "text": "RT @gauravmunjal: Increase Vocabulary: Top words Part 2 by Gaurav Munjal https://t.co/8ba42bkSq7 @theunacademy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 73310549, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 2357, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "24964948", - "following": false, - "friends_count": 463, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/bruderstein", - "url": "http://t.co/TJQjEm9pXy", - "expanded_url": "http://github.com/bruderstein", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 278, - "location": "Hamburg, Germany", - "screen_name": "bruderstein", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Dave Brotherstone", - "profile_use_background_image": true, - "description": "Developer. Notepad++ stuff, chocoholic, JavaScript, React. Not in that order.", - "url": "http://t.co/TJQjEm9pXy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/452846584003166208/qtYdhQ--_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 17 22:02:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/452846584003166208/qtYdhQ--_normal.jpeg", - "favourites_count": 474, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685390215364612096", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/polotek/status\u2026", - "url": "https://t.co/Yx9WC4TJBv", - "expanded_url": "https://twitter.com/polotek/status/685276186461646848", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 09:18:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685390215364612096, - "text": "I guarantee this is the most gripping and beautiful story you will read all week. Follow this thread. https://t.co/Yx9WC4TJBv", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 24964948, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1257, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "7528442", - "following": false, - "friends_count": 1332, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "matijs.net", - "url": "http://t.co/GVgHaYZHuj", - "expanded_url": "http://www.matijs.net/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 453, - "location": "Amsterdam", - "screen_name": "mvz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Matijs van Zuijlen", - "profile_use_background_image": true, - "description": "Ruby developer. I retweet a lot.\nRTs means interesting or relevant.\nLikes are mostly just bookmarks.", - "url": "http://t.co/GVgHaYZHuj", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477379684607328256/mASX3Axo_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Jul 17 10:27:13 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477379684607328256/mASX3Axo_normal.jpeg", - "favourites_count": 12329, - "status": { - "retweet_count": 24, - "retweeted_status": { - "retweet_count": 24, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683390981186666496", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "large": { - "w": 403, - "h": 537, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 403, - "h": 537, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", - "type": "photo", - "indices": [ - 52, - 75 - ], - "media_url": "http://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", - "display_url": "pic.twitter.com/QyanRNrUMq", - "id_str": "683390981069246466", - "expanded_url": "http://twitter.com/taalmissers/status/683390981186666496/photo/1", - "id": 683390981069246466, - "url": "https://t.co/QyanRNrUMq" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Rili2013", - "id_str": "1249816142", - "id": 1249816142, - "indices": [ - 42, - 51 - ], - "name": "Rili" - } - ] - }, - "created_at": "Sat Jan 02 20:54:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "nl", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683390981186666496, - "text": "[Leuker kunnen we ze niet maken ...] Dank @Rili2013 https://t.co/QyanRNrUMq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685559282977341440", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "large": { - "w": 403, - "h": 537, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 403, - "h": 537, - "resize": "fit" - } - }, - "source_status_id_str": "683390981186666496", - "url": "https://t.co/QyanRNrUMq", - "media_url": "http://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", - "source_user_id_str": "32399548", - "id_str": "683390981069246466", - "id": 683390981069246466, - "media_url_https": "https://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", - "type": "photo", - "indices": [ - 69, - 92 - ], - "source_status_id": 683390981186666496, - "source_user_id": 32399548, - "display_url": "pic.twitter.com/QyanRNrUMq", - "expanded_url": "http://twitter.com/taalmissers/status/683390981186666496/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "taalmissers", - "id_str": "32399548", - "id": 32399548, - "indices": [ - 3, - 15 - ], - "name": "Het Ned. Tekstbureau" - }, - { - "screen_name": "Rili2013", - "id_str": "1249816142", - "id": 1249816142, - "indices": [ - 59, - 68 - ], - "name": "Rili" - } - ] - }, - "created_at": "Fri Jan 08 20:30:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "nl", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685559282977341440, - "text": "RT @taalmissers: [Leuker kunnen we ze niet maken ...] Dank @Rili2013 https://t.co/QyanRNrUMq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 7528442, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 9014, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2895215379", - "following": false, - "friends_count": 191, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "iszlai.github.io", - "url": "http://t.co/8gQhdB834N", - "expanded_url": "http://iszlai.github.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 31, - "location": "Budapest", - "screen_name": "LehelIszlai", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Iszlai Lehel ", - "profile_use_background_image": true, - "description": "programming rants technology engineering", - "url": "http://t.co/8gQhdB834N", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/538106876119236608/gY_sgbLT_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Nov 27 22:40:09 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/538106876119236608/gY_sgbLT_normal.jpeg", - "favourites_count": 32, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "bkhayll", - "in_reply_to_user_id": 313849423, - "in_reply_to_status_id_str": "680771816898584576", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "680775867375681537", - "id": 680775867375681537, - "text": "@bkhayll how do I sign up?", - "in_reply_to_user_id_str": "313849423", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "bkhayll", - "id_str": "313849423", - "id": 313849423, - "indices": [ - 0, - 8 - ], - "name": "Bal\u00e1zs Korossy" - } - ] - }, - "created_at": "Sat Dec 26 15:43:09 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 680771816898584576, - "lang": "en" - }, - "default_profile_image": false, - "id": 2895215379, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 92, - "is_translator": false - }, - { - "time_zone": "Riyadh", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 10800, - "id_str": "327614909", - "following": false, - "friends_count": 250, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/samiali", - "url": "http://t.co/RiNxgClA23", - "expanded_url": "http://linkedin.com/in/samiali", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000030037276/d50e76a0ab435fb0c9d15d6b4ab109e4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "424C55", - "profile_link_color": "02358F", - "geo_enabled": false, - "followers_count": 190, - "location": "/sys/kernel/address.py", - "screen_name": "rootsami", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Sami Al-Haddad", - "profile_use_background_image": true, - "description": "SysAdmin / DevOps | Machines Are there to serve me! Passionate & in love with #linux | #OpenSource | #Troubleshooter by Nature :)", - "url": "http://t.co/RiNxgClA23", - "profile_text_color": "8CB2BD", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/418668442687119360/5sZ2JsZ7_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Fri Jul 01 21:16:57 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/418668442687119360/5sZ2JsZ7_normal.jpeg", - "favourites_count": 46, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ghaleb_tw", - "in_reply_to_user_id": 296725460, - "in_reply_to_status_id_str": "683057420239765508", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "683550085586763777", - "id": 683550085586763777, - "text": "@ghaleb_tw @Rdfanaldbes2015 \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0627\u0646\u0643 \u0645\u0631\u0627\u0633\u0644 \u064a\u0627 \u0631\u062f\u0641\u0627\u0646 .. \u0645\u0627\u062c\u0627\u0628\u0646\u0627 \u0648\u0631\u0627 \u0627\u0644\u0627 \u0627\u0644\u062f\u0631\u0639\u0645\u0647 \u0647\u0630\u064a", - "in_reply_to_user_id_str": "296725460", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ghaleb_tw", - "id_str": "296725460", - "id": 296725460, - "indices": [ - 0, - 10 - ], - "name": "\u063a\u0627\u0644\u0628" - }, - { - "screen_name": "Rdfanaldbes2015", - "id_str": "4285377393", - "id": 4285377393, - "indices": [ - 11, - 27 - ], - "name": "\u0631\u062f\u0641\u0627\u0646 \u0627\u0644\u062f\u0628\u064a\u0633" - } - ] - }, - "created_at": "Sun Jan 03 07:26:54 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683057420239765508, - "lang": "ar" - }, - "default_profile_image": false, - "id": 327614909, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000030037276/d50e76a0ab435fb0c9d15d6b4ab109e4.jpeg", - "statuses_count": 646, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/327614909/1374112127", - "is_translator": false - }, - { - "time_zone": "Cairo", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "14948104", - "following": false, - "friends_count": 1349, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "manhag.org", - "url": "http://t.co/DMZoxwFnLX", - "expanded_url": "http://www.manhag.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 1196, - "location": "Alexandria - Egypt", - "screen_name": "0xAhmed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 48, - "name": "Ahmed El-Gamil", - "profile_use_background_image": true, - "description": "Sysadmin, UNIX/Linux, DevOps, Code, Systems Engineer breaking systems in the name of advancing them .. having fun with @deveoteam", - "url": "http://t.co/DMZoxwFnLX", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/422823950905667584/wun-szid_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Thu May 29 20:54:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/422823950905667584/wun-szid_normal.jpeg", - "favourites_count": 115, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685083918400368640", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1SC6Szu", - "url": "https://t.co/b4ZCmfs5BG", - "expanded_url": "http://buff.ly/1SC6Szu", - "indices": [ - 60, - 83 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 13:01:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685083918400368640, - "text": "How to setup Jenkins integration to feature branch workflow https://t.co/b4ZCmfs5BG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685116223537950720", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1SC6Szu", - "url": "https://t.co/b4ZCmfs5BG", - "expanded_url": "http://buff.ly/1SC6Szu", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "deveoteam", - "id_str": "522084018", - "id": 522084018, - "indices": [ - 3, - 13 - ], - "name": "Deveo" - } - ] - }, - "created_at": "Thu Jan 07 15:10:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685116223537950720, - "text": "RT @deveoteam: How to setup Jenkins integration to feature branch workflow https://t.co/b4ZCmfs5BG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 14948104, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5876, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "916321", - "following": false, - "friends_count": 152, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 372, - "location": "Vienna, Austria", - "screen_name": "johannestroeger", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 17, - "name": "Johannes Troeger", - "profile_use_background_image": true, - "description": "Software Engineer @nextSocietyInc", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/606853055229902848/aN3ifQxG_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Mar 11 10:36:27 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/606853055229902848/aN3ifQxG_normal.jpg", - "favourites_count": 3049, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 916321, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1745, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/916321/1392902324", - "is_translator": false - }, - { - "time_zone": "Bucharest", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "35193525", - "following": false, - "friends_count": 539, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jakob.cosoroaba.ro", - "url": "https://t.co/HR5KD2x5EJ", - "expanded_url": "http://jakob.cosoroaba.ro/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458876762768699393/5Nr2HzuK.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "808042", - "profile_link_color": "A10E1F", - "geo_enabled": true, - "followers_count": 641, - "location": "Bucuresti, Romania, Europe", - "screen_name": "jcsrb", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 52, - "name": "Jakob Cosoroab\u0103", - "profile_use_background_image": true, - "description": "I build and break Webapps. Bearded and inquisitive by nature, tweet your ideas to me", - "url": "https://t.co/HR5KD2x5EJ", - "profile_text_color": "1A2928", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676394276935368704/w3-XVYQu_normal.jpg", - "profile_background_color": "A10E20", - "created_at": "Sat Apr 25 11:27:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676394276935368704/w3-XVYQu_normal.jpg", - "favourites_count": 3167, - "status": { - "retweet_count": 426, - "retweeted_status": { - "retweet_count": 426, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685483687895511040", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1000, - "h": 563, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNTyClWkAAOV__.png", - "type": "photo", - "indices": [ - 55, - 78 - ], - "media_url": "http://pbs.twimg.com/media/CYNTyClWkAAOV__.png", - "display_url": "pic.twitter.com/bHItWJ6Syn", - "id_str": "685483687442550784", - "expanded_url": "http://twitter.com/UnixToolTip/status/685483687895511040/photo/1", - "id": 685483687442550784, - "url": "https://t.co/bHItWJ6Syn" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "cube-drone.com/comics/c/holy-\u2026", - "url": "https://t.co/LpJlixHWqq", - "expanded_url": "http://cube-drone.com/comics/c/holy-war", - "indices": [ - 31, - 54 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:30:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "pt", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685483687895511040, - "text": "Comparison of Vim, Emacs, Nano https://t.co/LpJlixHWqq https://t.co/bHItWJ6Syn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 266, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685580658153000961", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1000, - "h": 563, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "source_status_id_str": "685483687895511040", - "url": "https://t.co/bHItWJ6Syn", - "media_url": "http://pbs.twimg.com/media/CYNTyClWkAAOV__.png", - "source_user_id_str": "363210621", - "id_str": "685483687442550784", - "id": 685483687442550784, - "media_url_https": "https://pbs.twimg.com/media/CYNTyClWkAAOV__.png", - "type": "photo", - "indices": [ - 72, - 95 - ], - "source_status_id": 685483687895511040, - "source_user_id": 363210621, - "display_url": "pic.twitter.com/bHItWJ6Syn", - "expanded_url": "http://twitter.com/UnixToolTip/status/685483687895511040/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "cube-drone.com/comics/c/holy-\u2026", - "url": "https://t.co/LpJlixHWqq", - "expanded_url": "http://cube-drone.com/comics/c/holy-war", - "indices": [ - 48, - 71 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "UnixToolTip", - "id_str": "363210621", - "id": 363210621, - "indices": [ - 3, - 15 - ], - "name": "Unix tool tip" - } - ] - }, - "created_at": "Fri Jan 08 21:55:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "pt", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685580658153000961, - "text": "RT @UnixToolTip: Comparison of Vim, Emacs, Nano https://t.co/LpJlixHWqq https://t.co/bHItWJ6Syn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 35193525, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458876762768699393/5Nr2HzuK.jpeg", - "statuses_count": 25521, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35193525/1404284839", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "335954828", - "following": false, - "friends_count": 1352, - "entities": { - "description": { - "urls": [ - { - "display_url": "codeship.com", - "url": "http://t.co/T9lN0wWTd8", - "expanded_url": "http://codeship.com", - "indices": [ - 98, - 120 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "codeship.com", - "url": "http://t.co/T9lN0xw5cK", - "expanded_url": "http://codeship.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/679233110689583104/cj4g-nM8.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F7F7F7", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 795, - "location": "Austria", - "screen_name": "Codebryo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 65, - "name": "- \u0340\u0317Codebryo \u0341\u0316-", - "profile_use_background_image": true, - "description": "Crafting Interfaces, drinks Coffeescript and Club Mate. Speaks and teaches. Frontend-Developer at http://t.co/T9lN0wWTd8", - "url": "http://t.co/T9lN0xw5cK", - "profile_text_color": "F216BF", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/644143591682502658/gUPF11e-_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Jul 15 14:28:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EBEBEB", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/644143591682502658/gUPF11e-_normal.jpg", - "favourites_count": 1108, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684069651941298176", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/jackbarham/sta\u2026", - "url": "https://t.co/hpEm78jqNp", - "expanded_url": "https://twitter.com/jackbarham/status/684068576265900032", - "indices": [ - 43, - 66 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 17:51:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684069651941298176, - "text": "Woot! Let's do some Vue meetups in 2016 :) https://t.co/hpEm78jqNp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685468665463070720", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/jackbarham/sta\u2026", - "url": "https://t.co/hpEm78jqNp", - "expanded_url": "https://twitter.com/jackbarham/status/684068576265900032", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "vuejs", - "id_str": "2292889800", - "id": 2292889800, - "indices": [ - 3, - 9 - ], - "name": "Vue.js" - } - ] - }, - "created_at": "Fri Jan 08 14:30:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685468665463070720, - "text": "RT @vuejs: Woot! Let's do some Vue meetups in 2016 :) https://t.co/hpEm78jqNp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 335954828, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/679233110689583104/cj4g-nM8.jpg", - "statuses_count": 4312, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/335954828/1416843806", - "is_translator": false - }, - { - "time_zone": "Chennai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "1528130959", - "following": false, - "friends_count": 312, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "devessentials.net", - "url": "http://t.co/fJkHZR8NOH", - "expanded_url": "http://devessentials.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000086454173/23d95609e728ed01823a2fc49b6f4ed5.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 59, - "location": "Bangalore, IN", - "screen_name": "dev_essentials", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Developer Essentials", - "profile_use_background_image": true, - "description": "Developer Essentials - account maintained by @Chetan_raJ", - "url": "http://t.co/fJkHZR8NOH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/559030214408151042/Zx9D-aTr_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 18 15:47:08 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/559030214408151042/Zx9D-aTr_normal.jpeg", - "favourites_count": 39, - "status": { - "retweet_count": 10777, - "retweeted_status": { - "retweet_count": 10777, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "680884986531201024", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", - "display_url": "pic.twitter.com/RVVNhWtJCP", - "id_str": "680884985990098944", - "expanded_url": "http://twitter.com/MKBHD/status/680884986531201024/photo/1", - "id": 680884985990098944, - "url": "https://t.co/RVVNhWtJCP" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/ShcnNkr_PEY", - "url": "https://t.co/SXDGCE6SkD", - "expanded_url": "https://youtu.be/ShcnNkr_PEY", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Dec 26 22:56:45 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 680884986531201024, - "text": "A couple more hours left to enter the Pick Your Smartphone giveaway! RT if you're in! https://t.co/SXDGCE6SkD https://t.co/RVVNhWtJCP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4581, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685060014323597312", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - } - }, - "source_status_id_str": "680884986531201024", - "url": "https://t.co/RVVNhWtJCP", - "media_url": "http://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", - "source_user_id_str": "29873662", - "id_str": "680884985990098944", - "id": 680884985990098944, - "media_url_https": "https://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", - "type": "photo", - "indices": [ - 121, - 140 - ], - "source_status_id": 680884986531201024, - "source_user_id": 29873662, - "display_url": "pic.twitter.com/RVVNhWtJCP", - "expanded_url": "http://twitter.com/MKBHD/status/680884986531201024/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/ShcnNkr_PEY", - "url": "https://t.co/SXDGCE6SkD", - "expanded_url": "https://youtu.be/ShcnNkr_PEY", - "indices": [ - 97, - 120 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MKBHD", - "id_str": "29873662", - "id": 29873662, - "indices": [ - 3, - 9 - ], - "name": "Marques Brownlee" - } - ] - }, - "created_at": "Thu Jan 07 11:26:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685060014323597312, - "text": "RT @MKBHD: A couple more hours left to enter the Pick Your Smartphone giveaway! RT if you're in! https://t.co/SXDGCE6SkD https://t.co/RVVNh\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1528130959, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000086454173/23d95609e728ed01823a2fc49b6f4ed5.jpeg", - "statuses_count": 304, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1528130959/1386316402", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14664166", - "following": false, - "friends_count": 826, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 275, - "location": "Stockholm, Sweden", - "screen_name": "mkhq", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Mikael H\u00f6gqvist", - "profile_use_background_image": true, - "description": "computer scientist, distributed systems/algorithms, storage, databases, senior research engineer @peerialism, previously @wrappcorp, PhD", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3009700122/1179defef2836d825e9387338185b4f8_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon May 05 20:04:33 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3009700122/1179defef2836d825e9387338185b4f8_normal.png", - "favourites_count": 67, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "travisbrown", - "in_reply_to_user_id": 6510972, - "in_reply_to_status_id_str": "654019413985873920", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "654029688961150976", - "id": 654029688961150976, - "text": "@travisbrown thanks for your excellent work with and around finagle!", - "in_reply_to_user_id_str": "6510972", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "travisbrown", - "id_str": "6510972", - "id": 6510972, - "indices": [ - 0, - 12 - ], - "name": "Travis Brown" - } - ] - }, - "created_at": "Tue Oct 13 20:23:23 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 654019413985873920, - "lang": "en" - }, - "default_profile_image": false, - "id": 14664166, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 519, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5381582", - "following": false, - "friends_count": 424, - "entities": { - "description": { - "urls": [ - { - "display_url": "ouvre-boite.com", - "url": "https://t.co/QBAt4pxBT6", - "expanded_url": "https://ouvre-boite.com", - "indices": [ - 73, - 96 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ouvre-boite.com", - "url": "https://t.co/b3nxwbMaHg", - "expanded_url": "https://www.ouvre-boite.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 9156, - "location": "The WWW!", - "screen_name": "julien51", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 196, - "name": "Julien Genestoux", - "profile_use_background_image": true, - "description": "Probably not here. I have set up a lot of automated tweets. Reach me via https://t.co/QBAt4pxBT6", - "url": "https://t.co/b3nxwbMaHg", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/425183656487841792/oI17U1UR_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Sat Apr 21 15:46:08 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/425183656487841792/oI17U1UR_normal.jpeg", - "favourites_count": 9351, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685128434834620416", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/realDonaldTrum\u2026", - "url": "https://t.co/lhsiGXDmbH", - "expanded_url": "https://twitter.com/realDonaldTrump/status/685089631973601280", - "indices": [ - 19, - 42 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 15:58:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685128434834620416, - "text": "Is this for real? https://t.co/lhsiGXDmbH", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 5381582, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 20659, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "46902840", - "following": false, - "friends_count": 471, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "evilprofessor.co.uk", - "url": "http://t.co/lY2GNZu8ln", - "expanded_url": "http://www.evilprofessor.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826090471/c32498796765a5174d7fb7f31a0b5bba.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "6F6A81", - "profile_link_color": "C29091", - "geo_enabled": true, - "followers_count": 654, - "location": "N 51\u00b026' 0'' / W 2\u00b035' 0''", - "screen_name": "lloydwatkin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 56, - "name": "\uff2c\u03b9\uff4f\u04ae\u0110 \u0461\u03b1\uff54\u03ba\u13a5\u0274", - "profile_use_background_image": true, - "description": "Software developer (PHP/io.js/Java/Ruby/Python/more) & outdoors type. Creator of @scubaSantas, @pinittome. #Bristol, UK. Work at @imdb.", - "url": "http://t.co/lY2GNZu8ln", - "profile_text_color": "EFA18D", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617001009202774016/o8NCp4u5_normal.jpg", - "profile_background_color": "EDDCB1", - "created_at": "Sat Jun 13 15:21:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617001009202774016/o8NCp4u5_normal.jpg", - "favourites_count": 886, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "lauranncrossley", - "in_reply_to_user_id": 42650438, - "in_reply_to_status_id_str": "685501034937069568", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685502597101387776", - "id": 685502597101387776, - "text": "@lauranncrossley how can you have several \"drink-free days\" and not have the other days being binges based on these numbers :)", - "in_reply_to_user_id_str": "42650438", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lauranncrossley", - "id_str": "42650438", - "id": 42650438, - "indices": [ - 0, - 16 - ], - "name": "Laura Crossley" - } - ] - }, - "created_at": "Fri Jan 08 16:45:29 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685501034937069568, - "lang": "en" - }, - "default_profile_image": false, - "id": 46902840, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826090471/c32498796765a5174d7fb7f31a0b5bba.jpeg", - "statuses_count": 5932, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/46902840/1401378546", - "is_translator": false - }, - { - "time_zone": "Bratislava", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "1495945232", - "following": false, - "friends_count": 669, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sk.linkedin.com/in/mnemcek/", - "url": "http://t.co/mofve7KBZ2", - "expanded_url": "http://sk.linkedin.com/in/mnemcek/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090015324/a535a6a6c708e218ed381b3dfcbab9d7.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 296, - "location": "Bratislava, Slovakia, Europe", - "screen_name": "YangWao", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Matej Nem\u010dek \u262f \u5de8\u5934", - "profile_use_background_image": true, - "description": "devops.js @AktivioCRM, autodidact webdev, hackerspace @Progressbarsk, B1tc0in-lov3r, cypherpunk, psychotronic", - "url": "http://t.co/mofve7KBZ2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3776977928/83f7f811dc71f5dc1954ba0a2ec837e2_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jun 09 15:55:40 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3776977928/83f7f811dc71f5dc1954ba0a2ec837e2_normal.jpeg", - "favourites_count": 1617, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "atudotio", - "in_reply_to_user_id": 47754498, - "in_reply_to_status_id_str": "675094887805673472", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684034946562928641", - "id": 684034946562928641, - "text": "@atudotio @NomadHouse are there vinyl and thick? I'm in Lisbon right now, but looks like I will leaving when you just arrive, sad ;)", - "in_reply_to_user_id_str": "47754498", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "atudotio", - "id_str": "47754498", - "id": 47754498, - "indices": [ - 0, - 9 - ], - "name": "Arthur Itey" - }, - { - "screen_name": "NomadHouse", - "id_str": "1525014661", - "id": 1525014661, - "indices": [ - 10, - 21 - ], - "name": "nomad" - } - ] - }, - "created_at": "Mon Jan 04 15:33:34 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 675094887805673472, - "lang": "en" - }, - "default_profile_image": false, - "id": 1495945232, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090015324/a535a6a6c708e218ed381b3dfcbab9d7.jpeg", - "statuses_count": 2468, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1495945232/1414087889", - "is_translator": false - }, - { - "time_zone": "Rome", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14509931", - "following": false, - "friends_count": 582, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "olisti.co", - "url": "https://t.co/S5DpQ24tK7", - "expanded_url": "https://olisti.co", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/562066364/random_grey_variations.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "4561B3", - "geo_enabled": true, - "followers_count": 488, - "location": "Desio, Lombardia", - "screen_name": "olistik", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 48, - "name": "Maurizio De Magnis", - "profile_use_background_image": true, - "description": "loop do\n self.try(:improve, ObjectSpace.each_object)\nend", - "url": "https://t.co/S5DpQ24tK7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/455695559496454146/rCDzu1QL_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Apr 24 10:42:41 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/455695559496454146/rCDzu1QL_normal.jpeg", - "favourites_count": 2072, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "olistik", - "in_reply_to_user_id": 14509931, - "in_reply_to_status_id_str": "685451143930114048", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685451621153792000", - "id": 685451621153792000, - "text": "@jodosha aren't we facing similar (more or less) issues when dealing with oauth security?", - "in_reply_to_user_id_str": "14509931", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jodosha", - "id_str": "724493", - "id": 724493, - "indices": [ - 0, - 8 - ], - "name": "Luca Guidi" - } - ] - }, - "created_at": "Fri Jan 08 13:22:56 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685451143930114048, - "lang": "en" - }, - "default_profile_image": false, - "id": 14509931, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/562066364/random_grey_variations.png", - "statuses_count": 8508, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14509931/1398238590", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "8901182", - "following": false, - "friends_count": 211, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "krzbff.de", - "url": "http://t.co/HYNS49xQcf", - "expanded_url": "http://krzbff.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167797318/_W8ePFz7.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 112, - "location": "Stuttgart, Germany", - "screen_name": "kwibbly", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Hannes Rist", - "profile_use_background_image": false, - "description": "Paketschubser", - "url": "http://t.co/HYNS49xQcf", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/597171160351121408/kwP1cA8N_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Sat Sep 15 17:49:29 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597171160351121408/kwP1cA8N_normal.png", - "favourites_count": 294, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 17742694, - "possibly_sensitive": false, - "id_str": "684280560383033344", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "daemonology.net/freebsd-on-ec2/", - "url": "https://t.co/VNDi7rsatn", - "expanded_url": "http://www.daemonology.net/freebsd-on-ec2/", - "indices": [ - 21, - 44 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lnwdr", - "id_str": "17742694", - "id": 17742694, - "indices": [ - 0, - 6 - ], - "name": "Leon Weidauer" - }, - { - "screen_name": "Nienor_", - "id_str": "17461946", - "id": 17461946, - "indices": [ - 7, - 15 - ], - "name": "Jella" - } - ] - }, - "created_at": "Tue Jan 05 07:49:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": "17742694", - "place": null, - "in_reply_to_screen_name": "lnwdr", - "in_reply_to_status_id_str": "684166896107827200", - "truncated": false, - "id": 684280560383033344, - "text": "@lnwdr @Nienor_ gibt https://t.co/VNDi7rsatn vllt hilfts weiter", - "coordinates": null, - "in_reply_to_status_id": 684166896107827200, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 8901182, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167797318/_W8ePFz7.png", - "statuses_count": 3044, - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11228352", - "following": false, - "friends_count": 1558, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "datil.co", - "url": "https://t.co/mu3TdrSLJw", - "expanded_url": "https://datil.co", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1930, - "location": "internets", - "screen_name": "eraad", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 110, - "name": "Eduardo Raad", - "profile_use_background_image": true, - "description": "CEO @datilec", - "url": "https://t.co/mu3TdrSLJw", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1682854029/image_normal.jpg", - "profile_background_color": "022330", - "created_at": "Sun Dec 16 17:50:10 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1682854029/image_normal.jpg", - "favourites_count": 8183, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/009924a469d7ace1.json", - "country": "Ecuador", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -80.4676050033072, - -3.06371600046572 - ], - [ - -79.7147810026682, - -3.06371600046572 - ], - [ - -79.7147810026682, - -1.96227400010509 - ], - [ - -80.4676050033072, - -1.96227400010509 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "EC", - "contained_within": [], - "full_name": "Guayaquil, Ecuador", - "id": "009924a469d7ace1", - "name": "Guayaquil" - }, - "in_reply_to_screen_name": "thegutgame", - "in_reply_to_user_id": 27505823, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685601458713145344", - "id": 685601458713145344, - "text": "@thegutgame como se llama ese local italiano de pizza que comentaste hace unos meses?", - "in_reply_to_user_id_str": "27505823", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thegutgame", - "id_str": "27505823", - "id": 27505823, - "indices": [ - 0, - 11 - ], - "name": "thegutgame" - } - ] - }, - "created_at": "Fri Jan 08 23:18:20 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "es" - }, - "default_profile_image": false, - "id": 11228352, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 16651, - "is_translator": false - }, - { - "time_zone": "Lisbon", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "16478053", - "following": false, - "friends_count": 109, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "onename.io/fampinheiro", - "url": "https://t.co/nbTMWCnnx1", - "expanded_url": "https://www.onename.io/fampinheiro", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "878787", - "geo_enabled": true, - "followers_count": 125, - "location": "Lisboa", - "screen_name": "fampinheiro", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Filipe Pinheiro", - "profile_use_background_image": true, - "description": "Consultant @ YLD!. Passionate about beautiful, functional and connected software.", - "url": "https://t.co/nbTMWCnnx1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477575626484744192/qDbNDIAf_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Sat Sep 27 00:39:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477575626484744192/qDbNDIAf_normal.jpeg", - "favourites_count": 103, - "status": { - "retweet_count": 142, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 142, - "truncated": false, - "retweeted": false, - "id_str": "680514542925787136", - "id": 680514542925787136, - "text": "Steam is so fucked up that I started downloading a game from FedEx.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Dec 25 22:24:45 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 324, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "680533591705694212", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SwiftOnSecurity", - "id_str": "2436389418", - "id": 2436389418, - "indices": [ - 3, - 19 - ], - "name": "SecuriTay" - } - ] - }, - "created_at": "Fri Dec 25 23:40:26 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 680533591705694212, - "text": "RT @SwiftOnSecurity: Steam is so fucked up that I started downloading a game from FedEx.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 16478053, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 422, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "262762865", - "following": false, - "friends_count": 1055, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/sandfox", - "url": "https://t.co/YAy6WjGGXm", - "expanded_url": "https://github.com/sandfox", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362879536/spacerace_819_111011.jpg", - "notifications": false, - "profile_sidebar_fill_color": "191B1C", - "profile_link_color": "569AB7", - "geo_enabled": true, - "followers_count": 346, - "location": "London", - "screen_name": "sandfoxthat", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 23, - "name": "Imperator Nope", - "profile_use_background_image": true, - "description": "Engineer, fool. Likes playing with concrete. Sometimes I computer at work. Try to fix more things than I break. The patriarchy can get fucked :-)", - "url": "https://t.co/YAy6WjGGXm", - "profile_text_color": "FFFFFF", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1269748656/sandfoxuk_normal.jpg", - "profile_background_color": "313639", - "created_at": "Tue Mar 08 18:20:40 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A1A1A1", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1269748656/sandfoxuk_normal.jpg", - "favourites_count": 7752, - "status": { - "retweet_count": 108, - "retweeted_status": { - "retweet_count": 108, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684535828178186244", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 1726, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 1011, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 573, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", - "display_url": "pic.twitter.com/zYvbTnzmKb", - "id_str": "684535752852660224", - "expanded_url": "http://twitter.com/MxJackMonroe/status/684535828178186244/photo/1", - "id": 684535752852660224, - "url": "https://t.co/zYvbTnzmKb" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Independent", - "id_str": "16973333", - "id": 16973333, - "indices": [ - 6, - 18 - ], - "name": "The Independent" - } - ] - }, - "created_at": "Wed Jan 06 00:43:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684535828178186244, - "text": "Hello @Independent, 1910 called, they want their hoop skirts and patriarchy back. Astonishingly regressive fuckery. https://t.co/zYvbTnzmKb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 137, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684762863857209344", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 1726, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 1011, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 573, - "resize": "fit" - } - }, - "source_status_id_str": "684535828178186244", - "url": "https://t.co/zYvbTnzmKb", - "media_url": "http://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", - "source_user_id_str": "512554477", - "id_str": "684535752852660224", - "id": 684535752852660224, - "media_url_https": "https://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 684535828178186244, - "source_user_id": 512554477, - "display_url": "pic.twitter.com/zYvbTnzmKb", - "expanded_url": "http://twitter.com/MxJackMonroe/status/684535828178186244/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MxJackMonroe", - "id_str": "512554477", - "id": 512554477, - "indices": [ - 3, - 16 - ], - "name": "jack monroe" - }, - { - "screen_name": "Independent", - "id_str": "16973333", - "id": 16973333, - "indices": [ - 24, - 36 - ], - "name": "The Independent" - } - ] - }, - "created_at": "Wed Jan 06 15:46:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684762863857209344, - "text": "RT @MxJackMonroe: Hello @Independent, 1910 called, they want their hoop skirts and patriarchy back. Astonishingly regressive fuckery. https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 262762865, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362879536/spacerace_819_111011.jpg", - "statuses_count": 7788, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/262762865/1398246086", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "10100322", - "following": false, - "friends_count": 705, - "entities": { - "description": { - "urls": [ - { - "display_url": "mlewis.io", - "url": "http://t.co/iIT1JCHfJu", - "expanded_url": "http://mlewis.io", - "indices": [ - 19, - 41 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 294, - "location": "Seattle, WA", - "screen_name": "mlewis", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "michael lewis", - "profile_use_background_image": true, - "description": "eminently boring | http://t.co/iIT1JCHfJu", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/452612831272509440/3k9sCYfX_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Nov 09 15:04:54 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/452612831272509440/3k9sCYfX_normal.jpeg", - "favourites_count": 685, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/568ac72a1fcc0f90.json", - "country": "United States", - "attributes": {}, - "place_type": "neighborhood", - "bounding_box": { - "coordinates": [ - [ - [ - -122.3424913, - 47.5923879 - ], - [ - -122.3248932, - 47.5923879 - ], - [ - -122.3248932, - 47.6050505 - ], - [ - -122.3424913, - 47.6050505 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Pioneer Square, Seattle", - "id": "568ac72a1fcc0f90", - "name": "Pioneer Square" - }, - "in_reply_to_screen_name": "packagecloudio", - "in_reply_to_user_id": 2615534612, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685224270612410368", - "id": 685224270612410368, - "text": "@packagecloudio Any preferred medium for a (low priority) bug report?", - "in_reply_to_user_id_str": "2615534612", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "packagecloudio", - "id_str": "2615534612", - "id": 2615534612, - "indices": [ - 0, - 15 - ], - "name": "packagecloud.io" - } - ] - }, - "created_at": "Thu Jan 07 22:19:31 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 10100322, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 9133, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "70387301", - "following": false, - "friends_count": 359, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kevinway.com", - "url": "http://t.co/UBe5NK5Pyy", - "expanded_url": "http://kevinway.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "1E9102", - "geo_enabled": true, - "followers_count": 388, - "location": "Philadelphia ", - "screen_name": "kevindway", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Kevin Way", - "profile_use_background_image": true, - "description": "Gruntled husband. Whisk(e)y neat. Current state: @Monetate", - "url": "http://t.co/UBe5NK5Pyy", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459537486608228352/AvTDHdod_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Mon Aug 31 13:05:46 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459537486608228352/AvTDHdod_normal.jpeg", - "favourites_count": 2206, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684952269436108800", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "theverge.com/2016/1/6/10718\u2026", - "url": "https://t.co/bnJlFK07Gl", - "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", - "indices": [ - 70, - 93 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 04:18:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/e4fa69eade6df2ab.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -75.475568, - 40.17271 - ], - [ - -75.447606, - 40.17271 - ], - [ - -75.447606, - 40.20228 - ], - [ - -75.475568, - 40.20228 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Collegeville, PA", - "id": "e4fa69eade6df2ab", - "name": "Collegeville" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684952269436108800, - "text": "Bots are here, they\u2019re learning \u2014 and in 2016, they might eat the web https://t.co/bnJlFK07Gl", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 70387301, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 1538, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70387301/1398396907", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "30437958", - "following": false, - "friends_count": 551, - "entities": { - "description": { - "urls": [ - { - "display_url": "iconcmo.com", - "url": "http://t.co/SEizGC38zJ", - "expanded_url": "http://iconcmo.com", - "indices": [ - 83, - 105 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "thehjellejar.com", - "url": "http://t.co/txoNWKoGJF", - "expanded_url": "http://thehjellejar.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18971801/IMG_4261.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 240, - "location": "West Fargo, North Dakota", - "screen_name": "dahjelle", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "David Alan Hjelle", - "profile_use_background_image": false, - "description": "Christ-follower; husband; avid reader; geek; and programmer at Icon Systems, Inc. (http://t.co/SEizGC38zJ)", - "url": "http://t.co/txoNWKoGJF", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/219429348/David_and_Chair_normal.jpg", - "profile_background_color": "003899", - "created_at": "Sat Apr 11 12:07:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/219429348/David_and_Chair_normal.jpg", - "favourites_count": 1026, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "LastPassHelp", - "in_reply_to_user_id": 343506337, - "in_reply_to_status_id_str": "685240741346459648", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685286768913084416", - "id": 685286768913084416, - "text": "@lastpasshelp Awesome\u2014thanks for looking in to it!", - "in_reply_to_user_id_str": "343506337", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "LastPassHelp", - "id_str": "343506337", - "id": 343506337, - "indices": [ - 0, - 13 - ], - "name": "LastPass Support" - } - ] - }, - "created_at": "Fri Jan 08 02:27:52 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685240741346459648, - "lang": "en" - }, - "default_profile_image": false, - "id": 30437958, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18971801/IMG_4261.jpg", - "statuses_count": 2565, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "80703", - "following": false, - "friends_count": 2658, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "morethanseven.net", - "url": "http://t.co/5U4xMB8NGz", - "expanded_url": "http://morethanseven.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 6678, - "location": "Cambridge and London", - "screen_name": "garethr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 506, - "name": "Gareth Rushgrove", - "profile_use_background_image": true, - "description": "Software developer, occasional sysadmin, general web, programming and technology geek and curator of Devops Weekly. Engineer at @puppetlabs. @gdsteam alumnus", - "url": "http://t.co/5U4xMB8NGz", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/628181401905410049/nHCZB12A_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Dec 19 21:00:05 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/628181401905410049/nHCZB12A_normal.jpg", - "favourites_count": 56, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/3aa1b1861c56d910.json", - "country": "United Kingdom", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - 0.0873022, - 52.1642435 - ], - [ - 0.18453, - 52.1642435 - ], - [ - 0.18453, - 52.237704 - ], - [ - 0.0873022, - 52.237704 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "GB", - "contained_within": [], - "full_name": "Cambridge, England", - "id": "3aa1b1861c56d910", - "name": "Cambridge" - }, - "in_reply_to_screen_name": "rooreynolds", - "in_reply_to_user_id": 787166, - "in_reply_to_status_id_str": "685557098277662720", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685559027502301184", - "id": 685559027502301184, - "text": "@rooreynolds @ad_greenway @jabley you obviously didn't do enough hiring :) 6/7 if memory serves", - "in_reply_to_user_id_str": "787166", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rooreynolds", - "id_str": "787166", - "id": 787166, - "indices": [ - 0, - 12 - ], - "name": "Roo Reynolds" - }, - { - "screen_name": "ad_greenway", - "id_str": "1344770017", - "id": 1344770017, - "indices": [ - 13, - 25 - ], - "name": "Andrew Greenway" - }, - { - "screen_name": "jabley", - "id_str": "8145762", - "id": 8145762, - "indices": [ - 26, - 33 - ], - "name": "James Abley" - } - ] - }, - "created_at": "Fri Jan 08 20:29:43 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685557098277662720, - "lang": "en" - }, - "default_profile_image": false, - "id": 80703, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 18381, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/80703/1401379875", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "13188872", - "following": false, - "friends_count": 321, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "annie.land", - "url": "https://t.co/0d49qv8XDo", - "expanded_url": "http://annie.land", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90240753/twitter0410.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFE1FF", - "profile_link_color": "B8586B", - "geo_enabled": false, - "followers_count": 1965, - "location": "Somerset County, New Jersey", - "screen_name": "banannie", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 164, - "name": "\u0430nn\u0131\u0b67", - "profile_use_background_image": true, - "description": "Mom of big kids (26, 23, 17.) Married 3 decades- to the same man! Bad cook. Watches too much TV. Diehard Mets fan. In perpetual flux.", - "url": "https://t.co/0d49qv8XDo", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477573623868555264/7saIWRFu_normal.jpeg", - "profile_background_color": "FFE1FF", - "created_at": "Thu Feb 07 02:46:37 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "B8586B", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477573623868555264/7saIWRFu_normal.jpeg", - "favourites_count": 744, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685601194773983232", - "id": 685601194773983232, - "text": "Today kinda sucked but Pad Thai will fix it.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:17:17 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 13188872, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90240753/twitter0410.jpg", - "statuses_count": 23115, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13188872/1396966664", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "78041535", - "following": false, - "friends_count": 450, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "banoss.wordpress.com", - "url": "http://t.co/564W0EpimR", - "expanded_url": "http://banoss.wordpress.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54326944/twitbg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 306, - "location": "London", - "screen_name": "banoss", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "banoss", - "profile_use_background_image": true, - "description": "A continuous integration and delivery practitioner. From build to deploy...", - "url": "http://t.co/564W0EpimR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/446775961623998465/45WrA0Pv_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 28 15:29:26 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/446775961623998465/45WrA0Pv_normal.jpeg", - "favourites_count": 480, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "676346188837335040", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1QngMVT", - "url": "https://t.co/TGF7PxBXxq", - "expanded_url": "http://bit.ly/1QngMVT", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [ - { - "indices": [ - 97, - 103 - ], - "text": "Flink" - }, - { - "indices": [ - 104, - 116 - ], - "text": "ApacheFlink" - } - ], - "user_mentions": [] - }, - "created_at": "Mon Dec 14 10:21:11 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 676346188837335040, - "text": "Why Apache Flink is the 4th Generation of Big Data Analytics Frameworks\n https://t.co/TGF7PxBXxq #Flink #ApacheFlink", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "676734460524666880", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1QngMVT", - "url": "https://t.co/TGF7PxBXxq", - "expanded_url": "http://bit.ly/1QngMVT", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [ - { - "indices": [ - 112, - 118 - ], - "text": "Flink" - }, - { - "indices": [ - 119, - 131 - ], - "text": "ApacheFlink" - } - ], - "user_mentions": [ - { - "screen_name": "51zeroLtd", - "id_str": "310777240", - "id": 310777240, - "indices": [ - 3, - 13 - ], - "name": "51zero" - } - ] - }, - "created_at": "Tue Dec 15 12:04:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 676734460524666880, - "text": "RT @51zeroLtd: Why Apache Flink is the 4th Generation of Big Data Analytics Frameworks\n https://t.co/TGF7PxBXxq #Flink #ApacheFlink", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 78041535, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54326944/twitbg.jpg", - "statuses_count": 836, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "41083053", - "following": false, - "friends_count": 950, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "0099B9", - "geo_enabled": true, - "followers_count": 288, - "location": "London", - "screen_name": "MuKoGo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Alfonso Gonzalez", - "profile_use_background_image": true, - "description": "Linux enthusiastic, Geek & Musician. Senior Site Reliability Engineer at MyDrive Solutions @_MyDrive", - "url": null, - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1810454841/twittpic_normal.jpg", - "profile_background_color": "0099B9", - "created_at": "Tue May 19 09:03:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1810454841/twittpic_normal.jpg", - "favourites_count": 246, - "status": { - "retweet_count": 8, - "retweeted_status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5eb20415c64640aa.json", - "country": "United States", - "attributes": {}, - "place_type": "neighborhood", - "bounding_box": { - "coordinates": [ - [ - [ - -118.4741578, - 33.9601689 - ], - [ - -118.4321992, - 33.9601689 - ], - [ - -118.4321992, - 33.98647 - ], - [ - -118.4741578, - 33.98647 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Marina del Rey, CA", - "id": "5eb20415c64640aa", - "name": "Marina del Rey" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 8, - "truncated": false, - "retweeted": false, - "id_str": "682333183233294336", - "id": 682333183233294336, - "text": "Hrm, youtube dot com can\u2019t stream HD, but youtube-dl can download it at 3 MB/s. ISP throttling? :(", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 22:51:22 +0000 2015", - "source": "Tweetbot for Mac", - "favorite_count": 10, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "682378018434748416", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mitchellh", - "id_str": "12819682", - "id": 12819682, - "indices": [ - 3, - 13 - ], - "name": "Mitchell Hashimoto" - } - ] - }, - "created_at": "Thu Dec 31 01:49:32 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682378018434748416, - "text": "RT @mitchellh: Hrm, youtube dot com can\u2019t stream HD, but youtube-dl can download it at 3 MB/s. ISP throttling? :(", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 41083053, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 281, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "849181692", - "following": false, - "friends_count": 988, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/missinglink", - "url": "https://t.co/uSRx4YMDJC", - "expanded_url": "https://github.com/missinglink", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459225482047655936/g75phn_h.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 608, - "location": "0\u00b00'0 N 0\u00b00'0 E", - "screen_name": "insertcoffee", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 51, - "name": "Peter Johnson", - "profile_use_background_image": true, - "description": "kiwi, web geek, node.js developer, javascript junkie, indie game developer. geocoders geocoders geocoders @mapzen", - "url": "https://t.co/uSRx4YMDJC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/608239951268986880/31HXVCXF_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Thu Sep 27 12:38:56 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/608239951268986880/31HXVCXF_normal.jpg", - "favourites_count": 312, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "aaroninit", - "in_reply_to_user_id": 3281759808, - "in_reply_to_status_id_str": "678063072922112000", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "678906215154524161", - "id": 678906215154524161, - "text": "@aaroninit @mapzen what exactly are you looking for with the 'business lookup'?", - "in_reply_to_user_id_str": "3281759808", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "aaroninit", - "id_str": "3281759808", - "id": 3281759808, - "indices": [ - 0, - 10 - ], - "name": "Aaron Mortensen" - }, - { - "screen_name": "mapzen", - "id_str": "1903859166", - "id": 1903859166, - "indices": [ - 11, - 18 - ], - "name": "Mapzen" - } - ] - }, - "created_at": "Mon Dec 21 11:53:49 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 678063072922112000, - "lang": "en" - }, - "default_profile_image": false, - "id": 849181692, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459225482047655936/g75phn_h.jpeg", - "statuses_count": 796, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/849181692/1398322927", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "82171114", - "following": false, - "friends_count": 259, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "erickdransch.com/blog", - "url": "http://t.co/D36CMGWwTc", - "expanded_url": "http://www.erickdransch.com/blog", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/45603719/sunofnothing_1280.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 78, - "location": "", - "screen_name": "ErickDransch", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Erick", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/D36CMGWwTc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/563558735038009345/463ywI9M_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Oct 13 19:29:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/563558735038009345/463ywI9M_normal.jpeg", - "favourites_count": 15, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679792449376677888", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "time.com/4159645/tsa-bo\u2026", - "url": "https://t.co/gJloxA3qhm", - "expanded_url": "http://time.com/4159645/tsa-body-scans-ait/", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 23 22:35:24 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679792449376677888, - "text": "TSA Can Now Force Passengers to Go Through Body Scanners\nhttps://t.co/gJloxA3qhm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679888373549547520", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "time.com/4159645/tsa-bo\u2026", - "url": "https://t.co/gJloxA3qhm", - "expanded_url": "http://time.com/4159645/tsa-body-scans-ait/", - "indices": [ - 74, - 97 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mike_conley", - "id_str": "18627588", - "id": 18627588, - "indices": [ - 3, - 15 - ], - "name": "Mike Conley" - } - ] - }, - "created_at": "Thu Dec 24 04:56:34 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679888373549547520, - "text": "RT @mike_conley: TSA Can Now Force Passengers to Go Through Body Scanners\nhttps://t.co/gJloxA3qhm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 82171114, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/45603719/sunofnothing_1280.jpg", - "statuses_count": 388, - "is_translator": false - }, - { - "time_zone": "Rome", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "15979784", - "following": false, - "friends_count": 1348, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "matteocollina.com", - "url": "http://t.co/REScuzT1yo", - "expanded_url": "http://matteocollina.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/697629672/74f7cdffc9b2c3f62771c7acac3f512d.png", - "notifications": false, - "profile_sidebar_fill_color": "060A00", - "profile_link_color": "618238", - "geo_enabled": true, - "followers_count": 3427, - "location": "44.282281,12.342047", - "screen_name": "matteocollina", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 201, - "name": "Matteo Collina", - "profile_use_background_image": false, - "description": "Code Pirate and Ph.D. Software Architect @nearForm, IoT Expert, Consultant, and Conference Speaker.", - "url": "http://t.co/REScuzT1yo", - "profile_text_color": "485C3A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000468501783/fe04de4765546bb77e8224b2f74adbef_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Aug 25 10:17:31 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "it", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000468501783/fe04de4765546bb77e8224b2f74adbef_normal.jpeg", - "favourites_count": 320, - "status": { - "retweet_count": 347, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 347, - "truncated": false, - "retweeted": false, - "id_str": "683809215203299328", - "id": 683809215203299328, - "text": "Don\u2019t be worried about those copying you. They are copies. Worry about those doing it differently than you. They are originals.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 00:36:36 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 436, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "683949743286972416", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jasonfried", - "id_str": "14372143", - "id": 14372143, - "indices": [ - 3, - 14 - ], - "name": "Jason Fried" - } - ] - }, - "created_at": "Mon Jan 04 09:55:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683949743286972416, - "text": "RT @jasonfried: Don\u2019t be worried about those copying you. They are copies. Worry about those doing it differently than you. They are origin\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 15979784, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/697629672/74f7cdffc9b2c3f62771c7acac3f512d.png", - "statuses_count": 12936, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15979784/1351586117", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14280929", - "following": false, - "friends_count": 721, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/danackerson", - "url": "http://t.co/y3zi25EHmE", - "expanded_url": "http://about.me/danackerson", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/490508509448900609/K8RODZjk.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "2B5078", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 850, - "location": "Germany", - "screen_name": "danackerson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 92, - "name": "Dan Ackerson", - "profile_use_background_image": true, - "description": "Expat Florida boy in Germany. Long time Java developer, Agile subscriber and devops believer!", - "url": "http://t.co/y3zi25EHmE", - "profile_text_color": "0E0101", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659088684277477377/poj5BfAj_normal.png", - "profile_background_color": "CBCEDD", - "created_at": "Wed Apr 02 05:52:44 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659088684277477377/poj5BfAj_normal.png", - "favourites_count": 123, - "status": { - "retweet_count": 10, - "retweeted_status": { - "retweet_count": 10, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684855200906108928", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/flowchainsense\u2026", - "url": "https://t.co/2S8YzyVhyC", - "expanded_url": "https://twitter.com/flowchainsensei/status/684815232624115715", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 21:52:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684855200906108928, - "text": "The world suffers more from developers who don't know how to test than testers who don't know how to develop. https://t.co/2S8YzyVhyC", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 12, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685360771535114240", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/flowchainsense\u2026", - "url": "https://t.co/2S8YzyVhyC", - "expanded_url": "https://twitter.com/flowchainsensei/status/684815232624115715", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jurgenappelo", - "id_str": "14116283", - "id": 14116283, - "indices": [ - 3, - 16 - ], - "name": "Jurgen Appelo" - } - ] - }, - "created_at": "Fri Jan 08 07:21:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685360771535114240, - "text": "RT @jurgenappelo: The world suffers more from developers who don't know how to test than testers who don't know how to develop. https://t.c\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14280929, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/490508509448900609/K8RODZjk.jpeg", - "statuses_count": 874, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14280929/1405781101", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "17618689", - "following": false, - "friends_count": 421, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 107, - "location": "South east Asia", - "screen_name": "gerva", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "Massimo", - "profile_use_background_image": true, - "description": "Nomad Releng", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/557612654282674176/AhoY1wXv_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Tue Nov 25 13:01:35 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "it", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/557612654282674176/AhoY1wXv_normal.jpeg", - "favourites_count": 274, - "status": { - "retweet_count": 6, - "retweeted_status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684929776574947328", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bugzilla.mozilla.org/show_bug.cgi?i\u2026", - "url": "https://t.co/EQxdgy9s6I", - "expanded_url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1121937", - "indices": [ - 64, - 87 - ] - }, - { - "display_url": "pic.twitter.com/xoHciWMbq2", - "url": "https://t.co/xoHciWMbq2", - "expanded_url": "http://twitter.com/mrrrgn/status/684929776574947328/photo/1", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 02:49:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684929776574947328, - "text": "Near to landing my 1st interesting ES6 feature, TypedArray.sort https://t.co/EQxdgy9s6I Here it is racing against v8 https://t.co/xoHciWMbq2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 24, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684968273574690816", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bugzilla.mozilla.org/show_bug.cgi?i\u2026", - "url": "https://t.co/EQxdgy9s6I", - "expanded_url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1121937", - "indices": [ - 76, - 99 - ] - }, - { - "display_url": "pic.twitter.com/xoHciWMbq2", - "url": "https://t.co/xoHciWMbq2", - "expanded_url": "http://twitter.com/mrrrgn/status/684929776574947328/photo/1", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mrrrgn", - "id_str": "319840411", - "id": 319840411, - "indices": [ - 3, - 10 - ], - "name": "Morgan Phillips" - } - ] - }, - "created_at": "Thu Jan 07 05:22:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684968273574690816, - "text": "RT @mrrrgn: Near to landing my 1st interesting ES6 feature, TypedArray.sort https://t.co/EQxdgy9s6I Here it is racing against v8 https://t.\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Carbon v2" - }, - "default_profile_image": false, - "id": 17618689, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 672, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17618689/1415626601", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "129834860", - "following": false, - "friends_count": 1273, - "entities": { - "description": { - "urls": [ - { - "display_url": "xkcd.com/722/", - "url": "http://t.co/URCtNHU6SL", - "expanded_url": "http://xkcd.com/722/", - "indices": [ - 27, - 49 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 667, - "location": "Dublin, Ireland", - "screen_name": "james_raftery", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "James Raftery", - "profile_use_background_image": false, - "description": "AWS DNS Internet Monkey\u2122 \u2014 http://t.co/URCtNHU6SL\n\n\u201cIf all else fails, immortality can always be assured by spectacular error.\u201d \u2014 John Kenneth Galbraith", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/605034206171922435/Kf6rNNgm_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Apr 05 15:17:21 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/605034206171922435/Kf6rNNgm_normal.jpg", - "favourites_count": 2203, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "AodhBC", - "in_reply_to_user_id": 437052773, - "in_reply_to_status_id_str": "684893200088170497", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684895289577095168", - "id": 684895289577095168, - "text": "@AodhBC If I burn fifties between now and then can I guarantee she won\u2019t?", - "in_reply_to_user_id_str": "437052773", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AodhBC", - "id_str": "437052773", - "id": 437052773, - "indices": [ - 0, - 7 - ], - "name": "Aodh" - } - ] - }, - "created_at": "Thu Jan 07 00:32:16 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684893200088170497, - "lang": "en" - }, - "default_profile_image": false, - "id": 129834860, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", - "statuses_count": 5440, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/129834860/1390067079", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6300372", - "following": false, - "friends_count": 1021, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "flutterby.net/User:DanLyke", - "url": "http://t.co/D27EBangdr", - "expanded_url": "http://www.flutterby.net/User:DanLyke", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 1209, - "location": "Petaluma, California, USA", - "screen_name": "danlyke", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 74, - "name": "Dan Lyke", - "profile_use_background_image": true, - "description": "Computer geek, cyclist, woodworker, Petaluma resident. I only follow back if I think you're actually engaging me (generally < 1k followers).", - "url": "http://t.co/D27EBangdr", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649624733395234816/WnBYYwlF_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Fri May 25 01:33:03 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649624733395234816/WnBYYwlF_normal.jpg", - "favourites_count": 15637, - "status": { - "retweet_count": 378, - "retweeted_status": { - "retweet_count": 378, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685300492864360450", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 396, - "h": 155, - "resize": "fit" - }, - "medium": { - "w": 396, - "h": 155, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 133, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", - "type": "photo", - "indices": [ - 78, - 101 - ], - "media_url": "http://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", - "display_url": "pic.twitter.com/uzhcozODa4", - "id_str": "685300491064967168", - "expanded_url": "http://twitter.com/torproject/status/685300492864360450/photo/1", - "id": 685300491064967168, - "url": "https://t.co/uzhcozODa4" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 68, - 77 - ], - "text": "WeAreEFF" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:22:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685300492864360450, - "text": "Our ally and hero in the fight for human rights in the digital age. #WeAreEFF https://t.co/uzhcozODa4", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 453, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685507917743669249", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 396, - "h": 155, - "resize": "fit" - }, - "medium": { - "w": 396, - "h": 155, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 133, - "resize": "fit" - } - }, - "source_status_id_str": "685300492864360450", - "url": "https://t.co/uzhcozODa4", - "media_url": "http://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", - "source_user_id_str": "18466967", - "id_str": "685300491064967168", - "id": 685300491064967168, - "media_url_https": "https://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", - "type": "photo", - "indices": [ - 94, - 117 - ], - "source_status_id": 685300492864360450, - "source_user_id": 18466967, - "display_url": "pic.twitter.com/uzhcozODa4", - "expanded_url": "http://twitter.com/torproject/status/685300492864360450/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 84, - 93 - ], - "text": "WeAreEFF" - } - ], - "user_mentions": [ - { - "screen_name": "torproject", - "id_str": "18466967", - "id": 18466967, - "indices": [ - 3, - 14 - ], - "name": "torproject" - } - ] - }, - "created_at": "Fri Jan 08 17:06:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685507917743669249, - "text": "RT @torproject: Our ally and hero in the fight for human rights in the digital age. #WeAreEFF https://t.co/uzhcozODa4", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 6300372, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 30075, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6300372/1367278824", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1846739046", - "following": false, - "friends_count": 101, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 167, - "location": "", - "screen_name": "DwdDave", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Dave Cridland", - "profile_use_background_image": true, - "description": "Yeah, probably.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000434448590/01c16cf93fcec64b8ad9aa2505b757d3_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 09 14:35:25 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000434448590/01c16cf93fcec64b8ad9aa2505b757d3_normal.png", - "favourites_count": 14, - "status": { - "retweet_count": 238, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 238, - "truncated": false, - "retweeted": false, - "id_str": "685068662940766208", - "id": 685068662940766208, - "text": "There are five basic plots:\n-Revenge\n-Sexy Vampires\n-A Superhero punches people\n-No-one appreciates Adam Sandler\n-Blowing up the Death Star", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 12:01:11 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 264, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685080307717042177", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "NedHartley", - "id_str": "21085906", - "id": 21085906, - "indices": [ - 3, - 14 - ], - "name": "Ned Hartley" - } - ] - }, - "created_at": "Thu Jan 07 12:47:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685080307717042177, - "text": "RT @NedHartley: There are five basic plots:\n-Revenge\n-Sexy Vampires\n-A Superhero punches people\n-No-one appreciates Adam Sandler\n-Blowing u\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1846739046, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1679, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "25823332", - "following": false, - "friends_count": 435, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wandit.co.uk", - "url": "http://t.co/fh4rcNTlgz", - "expanded_url": "http://www.wandit.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": false, - "followers_count": 179, - "location": "Hampshire (UK)", - "screen_name": "wandit", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Wesley Childs", - "profile_use_background_image": false, - "description": "Devops, Puppet, Python etc... Currently consulting for the amazing @CustomMade", - "url": "http://t.co/fh4rcNTlgz", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3612359145/84810bc36d3d5242a696b64568cffeae_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Mar 22 14:31:51 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3612359145/84810bc36d3d5242a696b64568cffeae_normal.jpeg", - "favourites_count": 591, - "status": { - "retweet_count": 9, - "retweeted_status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/3aa1b1861c56d910.json", - "country": "United Kingdom", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - 0.0873022, - 52.1642435 - ], - [ - 0.18453, - 52.1642435 - ], - [ - 0.18453, - 52.237704 - ], - [ - 0.0873022, - 52.237704 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "GB", - "contained_within": [], - "full_name": "Cambridge, England", - "id": "3aa1b1861c56d910", - "name": "Cambridge" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 9, - "truncated": false, - "retweeted": false, - "id_str": "684466828836495360", - "id": 684466828836495360, - "text": "Chat bots are the new dashboards", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 20:09:43 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 14, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "684477718973530112", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "garethr", - "id_str": "80703", - "id": 80703, - "indices": [ - 3, - 11 - ], - "name": "Gareth Rushgrove" - } - ] - }, - "created_at": "Tue Jan 05 20:52:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684477718973530112, - "text": "RT @garethr: Chat bots are the new dashboards", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 25823332, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1577, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1903684836", - "following": false, - "friends_count": 858, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sudodoki.name", - "url": "http://t.co/wEHJp0Z2DV", - "expanded_url": "http://sudodoki.name/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589891304575733760/82LGi3jD.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 715, - "location": "Kyiv, Ukraine", - "screen_name": "sudodoki", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "\u0414\u0436\u043e\u043d, \u043f\u0440\u043e\u0441\u0442\u043e \u0414\u0436\u043e\u043d", - "profile_use_background_image": true, - "description": "Where do I stick my contributions in? Member of @kottans_org gang. Ping me to join @nodeschool/kyiv.", - "url": "http://t.co/wEHJp0Z2DV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663612964252069888/raAOc4lI_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 25 10:30:52 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663612964252069888/raAOc4lI_normal.jpg", - "favourites_count": 7350, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685074640746713088", - "id": 685074640746713088, - "text": "\u041f\u043e\u043c\u0435\u043d\u044f\u043b\u0438 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043b\u0430\u043d\u0435\u0442, \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0445\u0438\u043c\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u0438 \u0435\u0449\u0451 \u0444\u0438\u0433 \u0437\u043d\u0430\u0435\u0442 \u0447\u0442\u043e \u043f\u043e\u043c\u0435\u043d\u044f\u043b\u043e\u0441\u044c. \u0414\u0435\u0442\u044f\u043c \u0441 \u0443\u0447\u0451\u0431\u043e\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043c\u043e\u0433\u0430\u0442\u044c \u043d\u0435\u043f\u0440\u043e\u0441\u0442\u043e.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 12:24:57 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "ru" - }, - "default_profile_image": false, - "id": 1903684836, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589891304575733760/82LGi3jD.png", - "statuses_count": 5079, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1903684836/1429474866", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "34473211", - "following": false, - "friends_count": 615, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chrisjenx.com", - "url": "http://t.co/7MJzlZPkF4", - "expanded_url": "http://chrisjenx.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAEDF4", - "profile_link_color": "89C9FA", - "geo_enabled": true, - "followers_count": 826, - "location": "London, United Kingdom", - "screen_name": "chrisjenx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 52, - "name": "Christopher Jenkins", - "profile_use_background_image": true, - "description": "Android Engineer. Drummer. GreenGeek. Vegan. @OWLR, @Loveflutter", - "url": "http://t.co/7MJzlZPkF4", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/596569381972369408/nbcy2eSM_normal.jpg", - "profile_background_color": "212329", - "created_at": "Thu Apr 23 01:06:23 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/596569381972369408/nbcy2eSM_normal.jpg", - "favourites_count": 2133, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "claire_mcnear", - "in_reply_to_user_id": 19330411, - "in_reply_to_status_id_str": "685250840723091456", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685402859177947136", - "id": 685402859177947136, - "text": "@claire_mcnear I hope you were trolling and do know the difference, otherwise this is really painful.", - "in_reply_to_user_id_str": "19330411", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "claire_mcnear", - "id_str": "19330411", - "id": 19330411, - "indices": [ - 0, - 14 - ], - "name": "Claire McNear" - } - ] - }, - "created_at": "Fri Jan 08 10:09:10 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685250840723091456, - "lang": "en" - }, - "default_profile_image": false, - "id": 34473211, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 4407, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/34473211/1436302874", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "15049759", - "following": false, - "friends_count": 360, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "daenney.github.io", - "url": "https://t.co/jNqbwGtHLY", - "expanded_url": "https://daenney.github.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 317, - "location": "", - "screen_name": "daenney", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 31, - "name": "Daniele Sluijters", - "profile_use_background_image": true, - "description": "Gender pronoun: he/him. Don't just stand there, do something!", - "url": "https://t.co/jNqbwGtHLY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655129326753591296/pOi3QtlE_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jun 08 20:19:30 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655129326753591296/pOi3QtlE_normal.jpg", - "favourites_count": 4, - "status": { - "retweet_count": 704, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 704, - "truncated": false, - "retweeted": false, - "id_str": "685516987859120128", - "id": 685516987859120128, - "text": "Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're on track", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:42:40 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 635, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685574915546853376", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "McKelvie", - "id_str": "14276679", - "id": 14276679, - "indices": [ - 3, - 12 - ], - "name": "Jamie McKelvie" - } - ] - }, - "created_at": "Fri Jan 08 21:32:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685574915546853376, - "text": "RT @McKelvie: Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 15049759, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4915, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15049759/1405775209", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "1148602058", - "following": false, - "friends_count": 722, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "214C6B", - "geo_enabled": false, - "followers_count": 164, - "location": "St. Louis, MO", - "screen_name": "PizzaBrandon", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Brandon Belvin", - "profile_use_background_image": true, - "description": "Node, web, and e-commerce developer. Nuts about UX. Pizza aficionado. Father of daughters.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657045459106574337/KoyJns70_normal.png", - "profile_background_color": "022330", - "created_at": "Mon Feb 04 17:31:33 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657045459106574337/KoyJns70_normal.png", - "favourites_count": 407, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685159844186161152", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYItP2CUsAAdj6-.jpg", - "type": "photo", - "indices": [ - 115, - 138 - ], - "media_url": "http://pbs.twimg.com/media/CYItP2CUsAAdj6-.jpg", - "display_url": "pic.twitter.com/HxAK0DTA6W", - "id_str": "685159843540283392", - "expanded_url": "http://twitter.com/PizzaBrandon/status/685159844186161152/photo/1", - "id": 685159843540283392, - "url": "https://t.co/HxAK0DTA6W" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "STLBLTs", - "id_str": "3347434467", - "id": 3347434467, - "indices": [ - 1, - 9 - ], - "name": "STL BLT" - } - ] - }, - "created_at": "Thu Jan 07 18:03:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685159844186161152, - "text": ".@STLBLTs came by our office for lunch. I ordered the \"We Jammin\" and I'm happy I did. The tomato jam made my day! https://t.co/HxAK0DTA6W", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1148602058, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 467, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1563811", - "following": false, - "friends_count": 257, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "google.com/+BenjaminRumble", - "url": "https://t.co/IT5zxSJolO", - "expanded_url": "https://google.com/+BenjaminRumble", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/506292/benHead.jpg", - "notifications": false, - "profile_sidebar_fill_color": "A1A591", - "profile_link_color": "000088", - "geo_enabled": true, - "followers_count": 541, - "location": "Vancouver, British Columbia", - "screen_name": "therumbler", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Benji R", - "profile_use_background_image": false, - "description": "I like life, music, beer, music, skiing, music and long walks on the beach, \r\n\r\nand writing code.\r\n\r\nI'm a feminist.", - "url": "https://t.co/IT5zxSJolO", - "profile_text_color": "606060", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507576445556649984/shFPlawr_normal.jpeg", - "profile_background_color": "808080", - "created_at": "Tue Mar 20 00:11:51 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507576445556649984/shFPlawr_normal.jpeg", - "favourites_count": 2525, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "CandiSpillard", - "in_reply_to_user_id": 2867356894, - "in_reply_to_status_id_str": "685603484331278336", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685607373046595584", - "id": 685607373046595584, - "text": "@CandiSpillard Again: your issue appears to be that Apple's products are just too good. Or, that people are morons. One of those two! :-P", - "in_reply_to_user_id_str": "2867356894", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CandiSpillard", - "id_str": "2867356894", - "id": 2867356894, - "indices": [ - 0, - 14 - ], - "name": "Dr Candida Spillard" - } - ] - }, - "created_at": "Fri Jan 08 23:41:50 +0000 2016", - "source": "YoruFukurou", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685603484331278336, - "lang": "en" - }, - "default_profile_image": false, - "id": 1563811, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/506292/benHead.jpg", - "statuses_count": 10882, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1563811/1409850835", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "144433856", - "following": false, - "friends_count": 82, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/159444108/fuckyeahgridpaper.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "6C3D5C", - "geo_enabled": true, - "followers_count": 114, - "location": "Salt Lake City, UT", - "screen_name": "benjaminkimball", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Benjamin Kimball", - "profile_use_background_image": true, - "description": "Lover of JavaScript. Working as a wrangler of links and buttons.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/593503119423582208/tQ6596iq_normal.jpg", - "profile_background_color": "EEEEEE", - "created_at": "Sun May 16 08:17:29 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/593503119423582208/tQ6596iq_normal.jpg", - "favourites_count": 680, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 14262063, - "possibly_sensitive": false, - "id_str": "684806748973039617", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.johnryding.com/post/890554809\u2026", - "url": "https://t.co/fsSzi0wkWE", - "expanded_url": "http://blog.johnryding.com/post/89055480988/eventual-consistency-in-real-time-web-apps", - "indices": [ - 50, - 73 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "crichardson", - "id_str": "14262063", - "id": 14262063, - "indices": [ - 0, - 12 - ], - "name": "Chris Richardson" - } - ] - }, - "created_at": "Wed Jan 06 18:40:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "14262063", - "place": null, - "in_reply_to_screen_name": "crichardson", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684806748973039617, - "text": "@crichardson The UX eventual consistency article! https://t.co/fsSzi0wkWE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 144433856, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/159444108/fuckyeahgridpaper.jpeg", - "statuses_count": 1419, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/144433856/1444701198", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "336113", - "following": false, - "friends_count": 2850, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "goodreads.com/meangrape", - "url": "https://t.co/1wy3UBfzx3", - "expanded_url": "https://goodreads.com/meangrape", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 5229, - "location": "San Francisco", - "screen_name": "meangrape", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 147, - "name": "Jay.", - "profile_use_background_image": false, - "description": "bellum se ipsum alet. Ex-OFA. Ex-Twitter.", - "url": "https://t.co/1wy3UBfzx3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/453022580291534848/1GwfOoTW_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri Dec 29 02:57:55 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/453022580291534848/1GwfOoTW_normal.jpeg", - "favourites_count": 7904, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": "kittenwithawhip", - "in_reply_to_user_id": 15682352, - "in_reply_to_status_id_str": "685349387380363265", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685391588738990081", - "id": 685391588738990081, - "text": "@kittenwithawhip I'm still trying to imagine the sales that required a fleet of 20 pizza delivery cars in 1950 Windsor. The mind boggles.", - "in_reply_to_user_id_str": "15682352", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kittenwithawhip", - "id_str": "15682352", - "id": 15682352, - "indices": [ - 0, - 16 - ], - "name": "Kat Kinsman" - } - ] - }, - "created_at": "Fri Jan 08 09:24:23 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685349387380363265, - "lang": "en" - }, - "default_profile_image": false, - "id": 336113, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 25636, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/336113/1415666542", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1841791", - "following": false, - "friends_count": 709, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "coderanger.net", - "url": "https://t.co/XK0CxNNOsP", - "expanded_url": "https://coderanger.net/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1856, - "location": "Lafayette, CA", - "screen_name": "kantrn", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 133, - "name": "Noah Kantrowitz", - "profile_use_background_image": true, - "description": "Programmer and all-around geek. AKA coderanger.", - "url": "https://t.co/XK0CxNNOsP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1170359603/avatar_original_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 22 05:51:31 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1170359603/avatar_original_normal.png", - "favourites_count": 4394, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "cheeseplus", - "in_reply_to_user_id": 22882670, - "in_reply_to_status_id_str": "685612596028805120", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613029484961792", - "id": 685613029484961792, - "text": "@cheeseplus Soooooooooo capitalism?", - "in_reply_to_user_id_str": "22882670", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "cheeseplus", - "id_str": "22882670", - "id": 22882670, - "indices": [ - 0, - 11 - ], - "name": "vestigial underscore" - } - ] - }, - "created_at": "Sat Jan 09 00:04:18 +0000 2016", - "source": "Twitterrific for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685612596028805120, - "lang": "es" - }, - "default_profile_image": false, - "id": 1841791, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 29232, - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "415643", - "following": false, - "friends_count": 2659, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "christopheducamp.com", - "url": "http://t.co/a5ONvFSQpa", - "expanded_url": "http://christopheducamp.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0099CC", - "geo_enabled": true, - "followers_count": 3278, - "location": "Paris, FR", - "screen_name": "xtof_fr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 299, - "name": "Christophe Ducamp", - "profile_use_background_image": true, - "description": "Father. \nPassions #indieweb & #calmtech\nFreelancing @EchosBusiness", - "url": "http://t.co/a5ONvFSQpa", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3585902892/c841be488b34741d25cf1d470903c3a4_normal.png", - "profile_background_color": "FFF04D", - "created_at": "Mon Jan 01 15:12:01 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFF8AD", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3585902892/c841be488b34741d25cf1d470903c3a4_normal.png", - "favourites_count": 2376, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "680082011231514625", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/FredCavazza/st\u2026", - "url": "https://t.co/VilQ489cST", - "expanded_url": "https://twitter.com/FredCavazza/status/679631009856503808", - "indices": [ - 106, - 129 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jekyllrb", - "id_str": "1143789606", - "id": 1143789606, - "indices": [ - 95, - 104 - ], - "name": "jekyll" - } - ] - }, - "created_at": "Thu Dec 24 17:46:01 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "fr", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 680082011231514625, - "text": "Confort\u00e9 de voir les \"sites statiques\" en t\u00eate de ton pronostic. Merci Fred. \n(\u00e9l\u00e8ve et fan de @jekyllrb) https://t.co/VilQ489cST", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 415643, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "statuses_count": 13699, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/415643/1410101838", - "is_translator": false - }, - { - "time_zone": "Irkutsk", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 28800, - "id_str": "1049287556", - "following": false, - "friends_count": 405, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 115, - "location": "", - "screen_name": "James_Hickey3", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "\u30d2\u30c3\u30ad\u30fc\u5927\u4f50", - "profile_use_background_image": true, - "description": "\u30a2\u30e1\u30ea\u30ab\u7b2c\uff14\u6b69\u5175\u5e2b\u56e3\u30fb\u7b2c\uff11\u65c5\u56e3\u53f8\u4ee4\u5b98", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649590975401099264/Dg99igFE_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 31 02:20:05 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649590975401099264/Dg99igFE_normal.jpg", - "favourites_count": 375, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684783626848841728", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "sakainaoki.blogspot.com/2016/01/instag\u2026", - "url": "https://t.co/QVXMu7MkNm", - "expanded_url": "http://sakainaoki.blogspot.com/2016/01/instagram.html", - "indices": [ - 81, - 104 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 17:08:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "ja", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684783626848841728, - "text": "\u5ba2\u89b3\u7684\u306b\u898b\u308b\u3068\u30b8\u30e0\u3067\u4f53\u3092\u935b\u3048\u3066\u3044\u308b\u30b7\u30fc\u30f3\u306f\u5b9f\u306b\u6ed1\u7a3d\u3060\u3002\u6b32\u671b\u306e\u30e1\u30c7\u30a3\u30a2Instagram\u3067\u3082\u935b\u3048\u3089\u308c\u305f\u30b0\u30e9\u30de\u30e9\u30b9\u306a\u7f8e\u4eba\u306e\u753b\u50cf\u3084\u30de\u30c3\u30c1\u30e7\u306a\u7537\u306e\u753b\u50cf\u306f\u983b\u7e41\u306b\u898b\u3089\u308c\u308b\u3002 https://t.co/QVXMu7MkNm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 1049287556, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2115, - "is_translator": false - }, - { - "time_zone": "Pacific/Auckland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 46800, - "id_str": "18344890", - "following": false, - "friends_count": 1913, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "junglistheavy.industries", - "url": "https://t.co/JMeZgr4GxB", - "expanded_url": "http://junglistheavy.industries", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 1216, - "location": "Rotorua, New Zealand", - "screen_name": "fujin_", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 97, - "name": "\u98a8\u795e", - "profile_use_background_image": true, - "description": "\u6539\u5584\u795e\u69d8\u3001#devops grandmaster; original #getchef hacker-consult, #golang gopher \u0295\u25d4\u03d6\u25d4\u0294. drifter. multicopter pilot. \u2500\u2564\u2566 \u0280\u0258\u0251\u029f \u0288rap \u0282\u0266\u0268\u0287 \u2566\u2564\u2500", - "url": "https://t.co/JMeZgr4GxB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659125802768797696/3Wo6zINt_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Dec 23 23:14:05 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659125802768797696/3Wo6zINt_normal.jpg", - "favourites_count": 2024, - "status": { - "retweet_count": 27, - "retweeted_status": { - "retweet_count": 27, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685192040951353344", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/hashicorp/cons\u2026", - "url": "https://t.co/51taNPcBuy", - "expanded_url": "https://github.com/hashicorp/consul/blob/v0.6.1/CHANGELOG.md#061-january-6-2015", - "indices": [ - 81, - 104 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 20:11:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5eb20415c64640aa.json", - "country": "United States", - "attributes": {}, - "place_type": "neighborhood", - "bounding_box": { - "coordinates": [ - [ - [ - -118.4741578, - 33.9601689 - ], - [ - -118.4321992, - 33.9601689 - ], - [ - -118.4321992, - 33.98647 - ], - [ - -118.4741578, - 33.98647 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Marina del Rey, CA", - "id": "5eb20415c64640aa", - "name": "Marina del Rey" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685192040951353344, - "text": "Consul 0.6.1 is out. Easy drop-in upgrade with some nice fixes and improvements: https://t.co/51taNPcBuy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 28, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685192260321853440", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/hashicorp/cons\u2026", - "url": "https://t.co/51taNPcBuy", - "expanded_url": "https://github.com/hashicorp/consul/blob/v0.6.1/CHANGELOG.md#061-january-6-2015", - "indices": [ - 96, - 119 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mitchellh", - "id_str": "12819682", - "id": 12819682, - "indices": [ - 3, - 13 - ], - "name": "Mitchell Hashimoto" - } - ] - }, - "created_at": "Thu Jan 07 20:12:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685192260321853440, - "text": "RT @mitchellh: Consul 0.6.1 is out. Easy drop-in upgrade with some nice fixes and improvements: https://t.co/51taNPcBuy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18344890, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 15970, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18344890/1446369594", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "140011523", - "following": false, - "friends_count": 1619, - "entities": { - "description": { - "urls": [ - { - "display_url": "mytux.fr", - "url": "http://t.co/scCCuswavo", - "expanded_url": "http://www.mytux.fr", - "indices": [ - 29, - 51 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "about.me/carlchenet", - "url": "http://t.co/pJtCu9uXyw", - "expanded_url": "http://about.me/carlchenet", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2286, - "location": "", - "screen_name": "carl_chenet", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 227, - "name": "carlchenet", - "profile_use_background_image": true, - "description": "System architect, founder of http://t.co/scCCuswavo, Debian developer & Python addict. Wrote some articles about Free Software. Tea addict. Wine lover.", - "url": "http://t.co/pJtCu9uXyw", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2777592657/94d4bcbbb2e59b6849c75e6609851fb6_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue May 04 09:16:52 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2777592657/94d4bcbbb2e59b6849c75e6609851fb6_normal.png", - "favourites_count": 9, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685540484861825029", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "framablog.org/2016/01/08/app\u2026", - "url": "https://t.co/C7jW4nHIFU", - "expanded_url": "http://framablog.org/2016/01/08/apprenez-a-lire-une-url-et-sauvez-des-chatons/", - "indices": [ - 48, - 71 - ] - } - ], - "hashtags": [ - { - "indices": [ - 72, - 76 - ], - "text": "web" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:16:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "fr", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685540484861825029, - "text": "Apprenez \u00e0 lire une URL (et sauvez des chatons) https://t.co/C7jW4nHIFU #web", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "jdh-rss2twitter" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685544006810484737", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "framablog.org/2016/01/08/app\u2026", - "url": "https://t.co/C7jW4nHIFU", - "expanded_url": "http://framablog.org/2016/01/08/apprenez-a-lire-une-url-et-sauvez-des-chatons/", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [ - { - "indices": [ - 93, - 97 - ], - "text": "web" - } - ], - "user_mentions": [ - { - "screen_name": "journalduhacker", - "id_str": "3384441765", - "id": 3384441765, - "indices": [ - 3, - 19 - ], - "name": "Le Journal du Hacker" - } - ] - }, - "created_at": "Fri Jan 08 19:30:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "fr", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685544006810484737, - "text": "RT @journalduhacker: Apprenez \u00e0 lire une URL (et sauvez des chatons) https://t.co/C7jW4nHIFU #web", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "retweet-journalduhacker" - }, - "default_profile_image": false, - "id": 140011523, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4685, - "is_translator": false - }, - { - "time_zone": "Wellington", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 46800, - "id_str": "15657543", - "following": false, - "friends_count": 622, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theunfocused.net", - "url": "http://t.co/JzrNJJ1Hsd", - "expanded_url": "http://theunfocused.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629950290570010624/X-Ax-pjR.jpg", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "008004", - "geo_enabled": false, - "followers_count": 1454, - "location": "Dunedin, New Zealand", - "screen_name": "theunfocused", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 140, - "name": "Blair McBride", - "profile_use_background_image": true, - "description": "@Firefox developer, @JavaScript_NZ secretary, Dunedin Makerspace co-founder, @MozillaUbiquity dev, maker, pogonotrophist.", - "url": "http://t.co/JzrNJJ1Hsd", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2654776266/ba300eacc55f5978d68f1d9163053eaf_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Jul 30 07:04:18 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2654776266/ba300eacc55f5978d68f1d9163053eaf_normal.jpeg", - "favourites_count": 5958, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "_writehanded_", - "in_reply_to_user_id": 2974900693, - "in_reply_to_status_id_str": "685416129708208129", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685416660342157312", - "id": 685416660342157312, - "text": "@_writehanded_ @Styla73 @mellopuffy Good to know, thanks :) (especially given the price)", - "in_reply_to_user_id_str": "2974900693", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "_writehanded_", - "id_str": "2974900693", - "id": 2974900693, - "indices": [ - 0, - 14 - ], - "name": "Sarah Wilson" - }, - { - "screen_name": "Styla73", - "id_str": "19759124", - "id": 19759124, - "indices": [ - 15, - 23 - ], - "name": "Capital K" - }, - { - "screen_name": "mellopuffy", - "id_str": "18573621", - "id": 18573621, - "indices": [ - 24, - 35 - ], - "name": "Toe-tally Puffy" - } - ] - }, - "created_at": "Fri Jan 08 11:04:00 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685416129708208129, - "lang": "en" - }, - "default_profile_image": false, - "id": 15657543, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629950290570010624/X-Ax-pjR.jpg", - "statuses_count": 24660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15657543/1431324791", - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "46471184", - "following": false, - "friends_count": 437, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mateuskern.com/pages/contact.\u2026", - "url": "https://t.co/bthJxMONpL", - "expanded_url": "https://mateuskern.com/pages/contact.html", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/365330709/Balrog2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 547, - "location": "RS / Brasil", - "screen_name": "_k3rn", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Mateus Kern", - "profile_use_background_image": false, - "description": "Python, Linux, DevOps, vim, TV Series & Music.", - "url": "https://t.co/bthJxMONpL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650818520696115200/Dx91REOT_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Jun 11 19:43:37 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650818520696115200/Dx91REOT_normal.jpg", - "favourites_count": 1531, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "o_gobbi", - "in_reply_to_user_id": 109360625, - "in_reply_to_status_id_str": "685350275436122112", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685350812051202048", - "id": 685350812051202048, - "text": "@o_gobbi \u00e9 da arrecada\u00e7\u00e3o dos eua?", - "in_reply_to_user_id_str": "109360625", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "o_gobbi", - "id_str": "109360625", - "id": 109360625, - "indices": [ - 0, - 8 - ], - "name": "Gobbi" - } - ] - }, - "created_at": "Fri Jan 08 06:42:21 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685350275436122112, - "lang": "pt" - }, - "default_profile_image": false, - "id": 46471184, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/365330709/Balrog2.jpg", - "statuses_count": 40849, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/46471184/1379963279", - "is_translator": false - }, - { - "time_zone": "New Delhi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "105083", - "following": false, - "friends_count": 1505, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "vamsee.in", - "url": "http://t.co/3aYyV5kxNM", - "expanded_url": "http://vamsee.in", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 1112, - "location": "Bangalore, India", - "screen_name": "vamsee", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "name": "Vamsee Kanakala", - "profile_use_background_image": true, - "description": "Rails dev turned devops guy @viamentis. Believe in open source and open web. Also a godless, bleeding-heart liberal :-)", - "url": "http://t.co/3aYyV5kxNM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/653422115807367168/iLpECAF7_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Thu Dec 21 10:45:38 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/653422115807367168/iLpECAF7_normal.jpg", - "favourites_count": 3199, - "status": { - "retweet_count": 1831, - "retweeted_status": { - "retweet_count": 1831, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685484472498798592", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "type": "photo", - "indices": [ - 117, - 140 - ], - "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "display_url": "pic.twitter.com/TMcevQeAVA", - "id_str": "685484471227953152", - "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", - "id": 685484471227953152, - "url": "https://t.co/TMcevQeAVA" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:33:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685484472498798592, - "text": "This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https://t.co/TMcevQeAVA", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1984, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685506749911048193", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 602, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "source_status_id_str": "685484472498798592", - "url": "https://t.co/TMcevQeAVA", - "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "source_user_id_str": "119043148", - "id_str": "685484471227953152", - "id": 685484471227953152, - "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685484472498798592, - "source_user_id": 119043148, - "display_url": "pic.twitter.com/TMcevQeAVA", - "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lukekarmali", - "id_str": "119043148", - "id": 119043148, - "indices": [ - 3, - 15 - ], - "name": "Luke Karmali" - } - ] - }, - "created_at": "Fri Jan 08 17:01:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685506749911048193, - "text": "RT @lukekarmali: This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 105083, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 12050, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105083/1353319858", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1613642678", - "following": false, - "friends_count": 313, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "grubernaut.com", - "url": "http://t.co/mgIollH58E", - "expanded_url": "http://grubernaut.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 433, - "location": "Small Town, USA ", - "screen_name": "grubernaut", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 36, - "name": "MarriedBiscuits", - "profile_use_background_image": true, - "description": "Kaizen \u6539\u5584, Husband, Padawan, Ops, Gearhead, and Pancake Enthusiast. Constant adventures with @kaiteddelman", - "url": "http://t.co/mgIollH58E", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682275076964618240/5BDp8AL2_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 22 20:53:57 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682275076964618240/5BDp8AL2_normal.jpg", - "favourites_count": 6247, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597488783347712", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 175, - "resize": "fit" - }, - "medium": { - "w": 434, - "h": 224, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 434, - "h": 224, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYO7SC8UoAECN8u.png", - "type": "photo", - "indices": [ - 30, - 53 - ], - "media_url": "http://pbs.twimg.com/media/CYO7SC8UoAECN8u.png", - "display_url": "pic.twitter.com/Q1G4ZO7kh1", - "id_str": "685597486992367617", - "expanded_url": "http://twitter.com/grubernaut/status/685597488783347712/photo/1", - "id": 685597486992367617, - "url": "https://t.co/Q1G4ZO7kh1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:02:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/49f0a5eb038077e9.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -85.996969, - 39.163203 - ], - [ - -85.847755, - 39.163203 - ], - [ - -85.847755, - 39.25966 - ], - [ - -85.996969, - 39.25966 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Columbus, IN", - "id": "49f0a5eb038077e9", - "name": "Columbus" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597488783347712, - "text": "Hashicorp emoji game on point https://t.co/Q1G4ZO7kh1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 1613642678, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10511, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1613642678/1406162904", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6509982", - "following": false, - "friends_count": 669, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000114307961/d36a958842daa7a4328147beb87ff328.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 32132, - "location": "san francisco", - "screen_name": "argv0", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 233, - "name": "Andy Gross", - "profile_use_background_image": true, - "description": "Author of Riak. Distsys ne'er-do-well. Problematic half of @sarahelliott77", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685155270880661504/hkudG0_z_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Jun 01 20:37:52 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685155270880661504/hkudG0_z_normal.jpg", - "favourites_count": 5587, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685029425507745792", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "huffingtonpost.com/rene-zografos/\u2026", - "url": "https://t.co/7c336Q55ym", - "expanded_url": "http://www.huffingtonpost.com/rene-zografos/where-is-the-american-gen_b_8920660.html", - "indices": [ - 79, - 102 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "HuffPostWomen", - "id_str": "309978842", - "id": 309978842, - "indices": [ - 107, - 121 - ], - "name": "HuffPostWomen" - } - ] - }, - "created_at": "Thu Jan 07 09:25:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685029425507745792, - "text": "lol what the christ is this please explain????Where is The American Gentlemen? https://t.co/7c336Q55ym via @HuffPostWomen", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Mobile Web" - }, - "default_profile_image": false, - "id": 6509982, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000114307961/d36a958842daa7a4328147beb87ff328.jpeg", - "statuses_count": 14388, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6509982/1451356105", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "14264091", - "following": false, - "friends_count": 2169, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tylerhannan.com", - "url": "http://t.co/TG1LgO1z9s", - "expanded_url": "http://www.tylerhannan.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 2050, - "location": "iPhone: 33.769097,-84.385343", - "screen_name": "tylerhannan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 59, - "name": "tylerhannan", - "profile_use_background_image": true, - "description": "Distributed Systems. Music. Director of Product Marketing @elastic", - "url": "http://t.co/TG1LgO1z9s", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/425400933661425664/NtI67zqz_normal.jpeg", - "profile_background_color": "EBEBEB", - "created_at": "Mon Mar 31 06:41:41 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/425400933661425664/NtI67zqz_normal.jpeg", - "favourites_count": 4025, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/7d62cffe6f98f349.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.035311, - 37.193164 - ], - [ - -121.71215, - 37.193164 - ], - [ - -121.71215, - 37.469154 - ], - [ - -122.035311, - 37.469154 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Jose, CA", - "id": "7d62cffe6f98f349", - "name": "San Jose" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685191303403945984", - "id": 685191303403945984, - "text": "OH in the airport customer service line: \u201cif we aren\u2019t pitching we aren\u2019t winning\u201d Fellow then, actually said, \u201calways be closing\u201d", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 20:08:31 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14264091, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 11875, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14264091/1366581436", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "8630562", - "following": false, - "friends_count": 1268, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "quora.com/ben-newman", - "url": "http://t.co/cKjvwVK6NJ", - "expanded_url": "http://quora.com/ben-newman", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 2021, - "location": "iPhone: 37.420708,-122.168798", - "screen_name": "benjamn", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 107, - "name": "Ben Newman", - "profile_use_background_image": true, - "description": "Recovering sarcast, aspiring ironist. Meebo, Apture, Mozilla, Quora, Facebook/Instagram, and Meteor have employed me.", - "url": "http://t.co/cKjvwVK6NJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458793879831977984/pNj9Au1N_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Mon Sep 03 20:27:48 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458793879831977984/pNj9Au1N_normal.jpeg", - "favourites_count": 1725, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685201161134170116", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 510, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 900, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 750, - "h": 1126, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJS00QWAAAKURz.png", - "type": "photo", - "indices": [ - 74, - 97 - ], - "media_url": "http://pbs.twimg.com/media/CYJS00QWAAAKURz.png", - "display_url": "pic.twitter.com/fCVZThFMMT", - "id_str": "685201160647606272", - "expanded_url": "http://twitter.com/SteveMoraco/status/685201161134170116/photo/1", - "id": 685201160647606272, - "url": "https://t.co/fCVZThFMMT" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "medium.com/@girlziplocked\u2026", - "url": "https://t.co/YQN5mOGLBJ", - "expanded_url": "https://medium.com/@girlziplocked/paul-graham-is-still-asking-to-be-eaten-5f021c0c0650#---0-170.dwl3k5g6c", - "indices": [ - 50, - 73 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "girlziplocked", - "id_str": "20221325", - "id": 20221325, - "indices": [ - 35, - 49 - ], - "name": "holly wood" - } - ] - }, - "created_at": "Thu Jan 07 20:47:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685201161134170116, - "text": "This article is \ud83d\udd25\ud83d\udd25\ud83d\udd25 read it now.\u200a\u2014\u200a@girlziplocked https://t.co/YQN5mOGLBJ https://t.co/fCVZThFMMT", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Medium" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685201605772328960", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 510, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 900, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 750, - "h": 1126, - "resize": "fit" - } - }, - "source_status_id_str": "685201161134170116", - "url": "https://t.co/fCVZThFMMT", - "media_url": "http://pbs.twimg.com/media/CYJS00QWAAAKURz.png", - "source_user_id_str": "8238522", - "id_str": "685201160647606272", - "id": 685201160647606272, - "media_url_https": "https://pbs.twimg.com/media/CYJS00QWAAAKURz.png", - "type": "photo", - "indices": [ - 91, - 114 - ], - "source_status_id": 685201161134170116, - "source_user_id": 8238522, - "display_url": "pic.twitter.com/fCVZThFMMT", - "expanded_url": "http://twitter.com/SteveMoraco/status/685201161134170116/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "medium.com/@girlziplocked\u2026", - "url": "https://t.co/YQN5mOGLBJ", - "expanded_url": "https://medium.com/@girlziplocked/paul-graham-is-still-asking-to-be-eaten-5f021c0c0650#---0-170.dwl3k5g6c", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SteveMoraco", - "id_str": "8238522", - "id": 8238522, - "indices": [ - 3, - 15 - ], - "name": "Steve Moraco" - }, - { - "screen_name": "girlziplocked", - "id_str": "20221325", - "id": 20221325, - "indices": [ - 52, - 66 - ], - "name": "holly wood" - } - ] - }, - "created_at": "Thu Jan 07 20:49:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685201605772328960, - "text": "RT @SteveMoraco: This article is \ud83d\udd25\ud83d\udd25\ud83d\udd25 read it now.\u200a\u2014\u200a@girlziplocked https://t.co/YQN5mOGLBJ https://t.co/fCVZThFMMT", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 8630562, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 5482, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8630562/1398219833", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "23000562", - "following": false, - "friends_count": 603, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 690, - "location": "Chicagoland", - "screen_name": "mleinart", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "Michael Leinartas", - "profile_use_background_image": true, - "description": "Tinkerer; I like to take things apart.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1706485416/IMG_20111218_092724_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 05 23:55:38 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1706485416/IMG_20111218_092724_normal.jpg", - "favourites_count": 8757, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 15374401, - "possibly_sensitive": false, - "id_str": "685576170004299776", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/tkDcxANsZz", - "url": "https://t.co/tkDcxANsZz", - "expanded_url": "http://twitter.com/mleinart/status/685576170004299776/photo/1", - "indices": [ - 58, - 81 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "esten", - "id_str": "15374401", - "id": 15374401, - "indices": [ - 0, - 6 - ], - "name": "Este\u00f1 Americanus" - } - ] - }, - "created_at": "Fri Jan 08 21:37:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "15374401", - "place": null, - "in_reply_to_screen_name": "esten", - "in_reply_to_status_id_str": "685575402564096004", - "truncated": false, - "id": 685576170004299776, - "text": "@esten you need a New Yorker to say that properly for you https://t.co/tkDcxANsZz", - "coordinates": null, - "in_reply_to_status_id": 685575402564096004, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 23000562, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10348, - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "58663169", - "following": false, - "friends_count": 279, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "1E2224", - "geo_enabled": true, - "followers_count": 133, - "location": "Seattle WA", - "screen_name": "jeffraffo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Jeff Raffo", - "profile_use_background_image": true, - "description": "Passionate about lean principles in technology, automation, open source and being a dad. director - personalization technology @ nordstrom", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/612109224143753216/ARoM66lQ_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jul 21 01:42:20 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/612109224143753216/ARoM66lQ_normal.jpg", - "favourites_count": 1016, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "dougireton", - "in_reply_to_user_id": 7894852, - "in_reply_to_status_id_str": "685254065572298753", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685543360942047233", - "id": 685543360942047233, - "text": "@dougireton I'm owning the hug in 2016! #vulnerability #comfortablewithmyself", - "in_reply_to_user_id_str": "7894852", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 40, - 54 - ], - "text": "vulnerability" - }, - { - "indices": [ - 55, - 77 - ], - "text": "comfortablewithmyself" - } - ], - "user_mentions": [ - { - "screen_name": "dougireton", - "id_str": "7894852", - "id": 7894852, - "indices": [ - 0, - 11 - ], - "name": "Doug Ireton" - } - ] - }, - "created_at": "Fri Jan 08 19:27:28 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685254065572298753, - "lang": "en" - }, - "default_profile_image": false, - "id": 58663169, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 495, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/58663169/1398401815", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "35213", - "following": false, - "friends_count": 1075, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shawn.medero.net", - "url": "http://t.co/8Dn7SAHC1W", - "expanded_url": "http://shawn.medero.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/65220225/patt_4b47c3685cc0d.jpg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E8E8E8", - "profile_link_color": "CC3300", - "geo_enabled": true, - "followers_count": 572, - "location": "Claremont, CA", - "screen_name": "soypunk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "Shawn Medero", - "profile_use_background_image": false, - "description": "When not bicycling with my family, I'm a solutions architect in higher education. Interested in user experience, web archeology, hockey, and vegan food.", - "url": "http://t.co/8Dn7SAHC1W", - "profile_text_color": "212121", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684080455679774720/gGS_61YC_normal.jpg", - "profile_background_color": "303030", - "created_at": "Fri Dec 01 23:33:16 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D3D3", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684080455679774720/gGS_61YC_normal.jpg", - "favourites_count": 13564, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/dbd7fea9eedaecd0.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -117.7508068, - 34.0794765 - ], - [ - -117.6815385, - 34.0794765 - ], - [ - -117.6815385, - 34.1585563 - ], - [ - -117.7508068, - 34.1585563 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Claremont, CA", - "id": "dbd7fea9eedaecd0", - "name": "Claremont" - }, - "in_reply_to_screen_name": "kristimarleau", - "in_reply_to_user_id": 550444722, - "in_reply_to_status_id_str": "685536272459239424", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685536778464305152", - "id": 685536778464305152, - "text": "@kristimarleau Reply All is a great show btw, you should give some of the archives a chance.", - "in_reply_to_user_id_str": "550444722", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kristimarleau", - "id_str": "550444722", - "id": 550444722, - "indices": [ - 0, - 14 - ], - "name": "Kristi Marleau" - } - ] - }, - "created_at": "Fri Jan 08 19:01:19 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685536272459239424, - "lang": "en" - }, - "default_profile_image": false, - "id": 35213, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/65220225/patt_4b47c3685cc0d.jpg.jpg", - "statuses_count": 13400, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35213/1397163361", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "17954385", - "following": false, - "friends_count": 799, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "clintweathers.com", - "url": "http://t.co/PMWUQpP7Ri", - "expanded_url": "http://clintweathers.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": true, - "followers_count": 661, - "location": "MSP", - "screen_name": "zenrhino", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 120, - "name": "Clint Weathers", - "profile_use_background_image": true, - "description": "I use #rstats and #pydata to fight fraud. +100kg Judo player with a mean tai otoshi. Hasselblad + TriX + Rodinal. Full-stack baker.", - "url": "http://t.co/PMWUQpP7Ri", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/679575511354478592/66QphBZB_normal.jpg", - "profile_background_color": "709397", - "created_at": "Mon Dec 08 03:07:23 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/679575511354478592/66QphBZB_normal.jpg", - "favourites_count": 6700, - "status": { - "retweet_count": 36, - "retweeted_status": { - "retweet_count": 36, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685575365180309505", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/USSJoin/status\u2026", - "url": "https://t.co/un9Oa5lUzq", - "expanded_url": "https://twitter.com/USSJoin/status/685567709342347264", - "indices": [ - 101, - 124 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:34:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685575365180309505, - "text": "sorry everyone, 2016 is over. the most ironic data leak trophy is already taken. you can go home now https://t.co/un9Oa5lUzq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 37, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685575505790173184", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/USSJoin/status\u2026", - "url": "https://t.co/un9Oa5lUzq", - "expanded_url": "https://twitter.com/USSJoin/status/685567709342347264", - "indices": [ - 119, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "FioraAeterna", - "id_str": "2468699718", - "id": 2468699718, - "indices": [ - 3, - 16 - ], - "name": "Fiora Aeterna \u2604" - } - ] - }, - "created_at": "Fri Jan 08 21:35:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685575505790173184, - "text": "RT @FioraAeterna: sorry everyone, 2016 is over. the most ironic data leak trophy is already taken. you can go home now https://t.co/un9Oa5l\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 17954385, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 32454, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17954385/1390323077", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "457893808", - "following": false, - "friends_count": 701, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": false, - "followers_count": 217, - "location": "Orange County, CA", - "screen_name": "bobbylikeslinux", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "bobby", - "profile_use_background_image": false, - "description": "Exploring the world of open source software, Python, Brazilian Jiu Jitsu, and making computers actually work for people again!", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674131539051982848/9VYAvrwT_normal.png", - "profile_background_color": "000000", - "created_at": "Sat Jan 07 23:17:20 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674131539051982848/9VYAvrwT_normal.png", - "favourites_count": 3071, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "joerogan", - "in_reply_to_user_id": 18208354, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685565662039703552", - "id": 685565662039703552, - "text": "@joerogan First live show last night. I loved the whole lineup at the @icehousecomedy", - "in_reply_to_user_id_str": "18208354", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "joerogan", - "id_str": "18208354", - "id": 18208354, - "indices": [ - 0, - 9 - ], - "name": "Joe Rogan" - }, - { - "screen_name": "icehousecomedy", - "id_str": "57833012", - "id": 57833012, - "indices": [ - 71, - 86 - ], - "name": "Ice House Comedy" - } - ] - }, - "created_at": "Fri Jan 08 20:56:05 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 457893808, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2831, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/457893808/1426654010", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15146957", - "following": false, - "friends_count": 306, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "spof.io", - "url": "https://t.co/IpKruWlg7y", - "expanded_url": "https://spof.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "666666", - "geo_enabled": true, - "followers_count": 491, - "location": "California", - "screen_name": "dontrebootme", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 36, - "name": "Patrick O'Connor", - "profile_use_background_image": false, - "description": "Systems Engineering in the LA area. \nShipping awesome experiences at Disney.\n\nCurrently Imagineering R&D.\nPreviously rendering and systems at DreamWorks.", - "url": "https://t.co/IpKruWlg7y", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677265112579702785/1-oDaeyG_normal.png", - "profile_background_color": "000000", - "created_at": "Tue Jun 17 15:48:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677265112579702785/1-oDaeyG_normal.png", - "favourites_count": 3087, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685581921057959936", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 811, - "h": 1000, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 739, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 419, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", - "type": "photo", - "indices": [ - 120, - 143 - ], - "media_url": "http://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", - "display_url": "pic.twitter.com/m2yLVcADLG", - "id_str": "685581920940482562", - "expanded_url": "http://twitter.com/hackadayio/status/685581921057959936/photo/1", - "id": 685581920940482562, - "url": "https://t.co/m2yLVcADLG" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1OyXMls", - "url": "https://t.co/wNwkHUk2KM", - "expanded_url": "http://bit.ly/1OyXMls", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "socallinuxexpo", - "id_str": "14120402", - "id": 14120402, - "indices": [ - 38, - 53 - ], - "name": "socallinuxexpo" - }, - { - "screen_name": "SupplyFrame", - "id_str": "16933617", - "id": 16933617, - "indices": [ - 106, - 118 - ], - "name": "SupplyFrame, Inc." - } - ] - }, - "created_at": "Fri Jan 08 22:00:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685581921057959936, - "text": "Play games & party w/ Hackaday at @SoCalLinuxExpo Game Night 23rd Jan. https://t.co/wNwkHUk2KM Thanks @SupplyFrame! https://t.co/m2yLVcADLG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Meet Edgar" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685582321299279872", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 811, - "h": 1000, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 739, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 419, - "resize": "fit" - } - }, - "source_status_id_str": "685581921057959936", - "url": "https://t.co/m2yLVcADLG", - "media_url": "http://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", - "source_user_id_str": "2670064278", - "id_str": "685581920940482562", - "id": 685581920940482562, - "media_url_https": "https://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", - "type": "photo", - "indices": [ - 143, - 144 - ], - "source_status_id": 685581921057959936, - "source_user_id": 2670064278, - "display_url": "pic.twitter.com/m2yLVcADLG", - "expanded_url": "http://twitter.com/hackadayio/status/685581921057959936/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1OyXMls", - "url": "https://t.co/wNwkHUk2KM", - "expanded_url": "http://bit.ly/1OyXMls", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "hackadayio", - "id_str": "2670064278", - "id": 2670064278, - "indices": [ - 3, - 14 - ], - "name": "Hackaday.io" - }, - { - "screen_name": "socallinuxexpo", - "id_str": "14120402", - "id": 14120402, - "indices": [ - 54, - 69 - ], - "name": "socallinuxexpo" - }, - { - "screen_name": "SupplyFrame", - "id_str": "16933617", - "id": 16933617, - "indices": [ - 122, - 134 - ], - "name": "SupplyFrame, Inc." - } - ] - }, - "created_at": "Fri Jan 08 22:02:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685582321299279872, - "text": "RT @hackadayio: Play games & party w/ Hackaday at @SoCalLinuxExpo Game Night 23rd Jan. https://t.co/wNwkHUk2KM Thanks @SupplyFrame! https:/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 15146957, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 2470, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15146957/1450313349", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8084512", - "following": false, - "friends_count": 971, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nymag.com", - "url": "https://t.co/h3Ulh5oQm9", - "expanded_url": "http://nymag.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/735772534/9495f1433a2b072c10c1a668313df0fe.png", - "notifications": false, - "profile_sidebar_fill_color": "E2FF9E", - "profile_link_color": "419EC9", - "geo_enabled": false, - "followers_count": 1655, - "location": "Brooklyn, NY", - "screen_name": "gloddy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 80, - "name": "Christian Gloddy", - "profile_use_background_image": true, - "description": "Director of Web Dev @NYMag. Optimist. Love node.js, gulp, responsive design, web standards, and kind people.", - "url": "https://t.co/h3Ulh5oQm9", - "profile_text_color": "9ED54C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671729014831099905/0REgQMKF_normal.jpg", - "profile_background_color": "8F9699", - "created_at": "Thu Aug 09 17:02:35 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671729014831099905/0REgQMKF_normal.jpg", - "favourites_count": 6712, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685456563767775232", - "id": 685456563767775232, - "text": "If your version of \"Agile\" involves long meetings, then you might want to find a different word to describe what you're doing.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 13:42:34 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 7, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 8084512, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/735772534/9495f1433a2b072c10c1a668313df0fe.png", - "statuses_count": 2641, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8084512/1442231967", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8820492", - "following": false, - "friends_count": 863, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "joshfinnie.com", - "url": "http://t.co/GbqqdUdYyo", - "expanded_url": "http://www.joshfinnie.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/670653368/4ebce690a626c7c92811b413c83ce474.gif", - "notifications": false, - "profile_sidebar_fill_color": "F9D762", - "profile_link_color": "DB5151", - "geo_enabled": true, - "followers_count": 1459, - "location": "Washington DC", - "screen_name": "joshfinnie", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 89, - "name": "Josh Finnie", - "profile_use_background_image": true, - "description": "Software Maven at @TrackMaven, creator of @BeerLedge. Interests: #Javascript (#Angular, #Node), #Python (#Django, #Pyramid)", - "url": "http://t.co/GbqqdUdYyo", - "profile_text_color": "C5BE71", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1867634130/josh-final_normal.jpg", - "profile_background_color": "EDFDCC", - "created_at": "Tue Sep 11 22:10:25 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1867634130/josh-final_normal.jpg", - "favourites_count": 638, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685568488010825728", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "beerledge.com/ledges/CciZ2Ga\u2026", - "url": "https://t.co/1Z1fRNFEUU", - "expanded_url": "https://www.beerledge.com/ledges/CciZ2GafqvuGHnZkx4HmhP", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "EvilGeniusBeer", - "id_str": "150438189", - "id": 150438189, - "indices": [ - 34, - 49 - ], - "name": "Evil Genius Beer Co." - }, - { - "screen_name": "beerledge", - "id_str": "174866293", - "id": 174866293, - "indices": [ - 68, - 78 - ], - "name": "Beer Ledge" - } - ] - }, - "created_at": "Fri Jan 08 21:07:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685568488010825728, - "text": "Drank a Evil Genius Beer Company (@evilgeniusbeer) Evil Eye PA. Via @beerledge. https://t.co/1Z1fRNFEUU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "BeerLedgeV2" - }, - "default_profile_image": false, - "id": 8820492, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/670653368/4ebce690a626c7c92811b413c83ce474.gif", - "statuses_count": 19349, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8820492/1398795982", - "is_translator": false - }, - { - "time_zone": "Lisbon", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "200749589", - "following": false, - "friends_count": 351, - "entities": { - "description": { - "urls": [ - { - "display_url": "ipn.io", - "url": "https://t.co/yreM5xC4PE", - "expanded_url": "http://ipn.io", - "indices": [ - 24, - 47 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "daviddias.me", - "url": "https://t.co/JTVkZvLXKc", - "expanded_url": "http://daviddias.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 1441, - "location": "Portugal", - "screen_name": "daviddias", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 58, - "name": "David Dias", - "profile_use_background_image": true, - "description": "P2P SE at Protocol Labs https://t.co/yreM5xC4PE : #IPFS & @filecoin. P2P MSc. Made @lxjs & @startupscholars", - "url": "https://t.co/JTVkZvLXKc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/483942490517807104/Wd8QaL3l_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Sun Oct 10 04:07:38 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/483942490517807104/Wd8QaL3l_normal.jpeg", - "favourites_count": 3182, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684526318961201152", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/feross/status/\u2026", - "url": "https://t.co/01Aoplvsxe", - "expanded_url": "https://twitter.com/feross/status/684525552091459584", - "indices": [ - 118, - 141 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 00:06:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684526318961201152, - "text": "WebTorrent and Peerflix are probably the fastest torrent clients in existence.\n\nMagnet links find peers in <1 sec. https://t.co/01Aoplvsxe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 18, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684544934817456133", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/feross/status/\u2026", - "url": "https://t.co/01Aoplvsxe", - "expanded_url": "https://twitter.com/feross/status/684525552091459584", - "indices": [ - 142, - 143 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "WebTorrentApp", - "id_str": "3231905569", - "id": 3231905569, - "indices": [ - 3, - 17 - ], - "name": "WebTorrent" - } - ] - }, - "created_at": "Wed Jan 06 01:20:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684544934817456133, - "text": "RT @WebTorrentApp: WebTorrent and Peerflix are probably the fastest torrent clients in existence.\n\nMagnet links find peers in <1 sec. https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 200749589, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 3878, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/200749589/1409036234", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "196082293", - "following": false, - "friends_count": 1095, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mikespeegle.com", - "url": "http://t.co/xdukoWcWQp", - "expanded_url": "http://www.mikespeegle.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 1552, - "location": "Kennwick, WA", - "screen_name": "Mike_Speegle", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 70, - "name": "Mike Speegle", - "profile_use_background_image": false, - "description": "Author. Playwright. Kirkus Indie Book of the Year, Something Greater than Artifice. Jukebox musical, Guns of Ireland. Repped by @leonhusock. Likes toast.", - "url": "http://t.co/xdukoWcWQp", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/627225288452145153/zQ2JEgRz_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Sep 28 08:41:51 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/627225288452145153/zQ2JEgRz_normal.jpg", - "favourites_count": 2313, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "_Shannon_Knight", - "in_reply_to_user_id": 3188997517, - "in_reply_to_status_id_str": "685573435431333888", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685589638157742081", - "id": 685589638157742081, - "text": "@_shannon_knight Ha! Well I\u2019m just 1/3 the production team, but I appreciate the props.", - "in_reply_to_user_id_str": "3188997517", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "_Shannon_Knight", - "id_str": "3188997517", - "id": 3188997517, - "indices": [ - 0, - 16 - ], - "name": "Shannon Knight" - } - ] - }, - "created_at": "Fri Jan 08 22:31:22 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685573435431333888, - "lang": "en" - }, - "default_profile_image": false, - "id": 196082293, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 10295, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/196082293/1434391956", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "407296703", - "following": false, - "friends_count": 792, - "entities": { - "description": { - "urls": [ - { - "display_url": "soundcloud.com/benmichelmusic", - "url": "https://t.co/BWrMpb89KY", - "expanded_url": "http://soundcloud.com/benmichelmusic", - "indices": [ - 97, - 120 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/449685667832811520/htR5S1-H.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "46757F", - "geo_enabled": false, - "followers_count": 611, - "location": "Portland, OR", - "screen_name": "obensource", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 36, - "name": "Ben Michel", - "profile_use_background_image": true, - "description": "Musician\u2013Developer. I curate & perform musical experiences for live events & recordings, listen: https://t.co/BWrMpb89KY", - "url": null, - "profile_text_color": "FFFFFF", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/560338263890612224/SDEpGo5s_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Nov 07 22:14:02 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/560338263890612224/SDEpGo5s_normal.jpeg", - "favourites_count": 7062, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "davidlymanning", - "in_reply_to_user_id": 310674727, - "in_reply_to_status_id_str": "685523459984588800", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685530039450914816", - "id": 685530039450914816, - "text": "@davidlymanning @HenrikJoreteg hard to say because in-roads and accessibility to becoming an artisan later on greatly enrich people's lives.", - "in_reply_to_user_id_str": "310674727", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "davidlymanning", - "id_str": "310674727", - "id": 310674727, - "indices": [ - 0, - 15 - ], - "name": "David Manning" - }, - { - "screen_name": "HenrikJoreteg", - "id_str": "15102110", - "id": 15102110, - "indices": [ - 16, - 30 - ], - "name": "Henrik Joreteg" - } - ] - }, - "created_at": "Fri Jan 08 18:34:32 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685523459984588800, - "lang": "en" - }, - "default_profile_image": false, - "id": 407296703, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/449685667832811520/htR5S1-H.png", - "statuses_count": 3111, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/407296703/1394863631", - "is_translator": false - }, - { - "time_zone": "Warsaw", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "42864649", - "following": false, - "friends_count": 331, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thefox.is", - "url": "https://t.co/wKJ9u67ov4", - "expanded_url": "http://thefox.is", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/197733467/bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F5F5F5", - "profile_link_color": "C03546", - "geo_enabled": true, - "followers_count": 7814, - "location": "Melbourne, Victoria", - "screen_name": "fox", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 420, - "name": "fantastic ms.", - "profile_use_background_image": false, - "description": "\u21161 inclusivity and empathy enthusiast, diversity advisor \u273b Co-running @jsconfeu, past @cssconfoak. Product, photography and \u2764\ufe0f for @benschwarz.", - "url": "https://t.co/wKJ9u67ov4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668345269424099328/v0f_IJZz_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed May 27 11:48:42 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668345269424099328/v0f_IJZz_normal.png", - "favourites_count": 1506, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "olasitarska", - "in_reply_to_user_id": 32315020, - "in_reply_to_status_id_str": "685461632965840896", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685581334023024640", - "id": 685581334023024640, - "text": "@olasitarska \u2014 @xoxo and @buildconf", - "in_reply_to_user_id_str": "32315020", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "olasitarska", - "id_str": "32315020", - "id": 32315020, - "indices": [ - 0, - 12 - ], - "name": "Ola Sitarska" - }, - { - "screen_name": "xoxo", - "id_str": "516875194", - "id": 516875194, - "indices": [ - 15, - 20 - ], - "name": "XOXO" - }, - { - "screen_name": "buildconf", - "id_str": "16601823", - "id": 16601823, - "indices": [ - 25, - 35 - ], - "name": "Build" - } - ] - }, - "created_at": "Fri Jan 08 21:58:22 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685461632965840896, - "lang": "und" - }, - "default_profile_image": false, - "id": 42864649, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/197733467/bg.jpg", - "statuses_count": 14763, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/42864649/1448180980", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "346026614", - "following": false, - "friends_count": 44, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hueniverse.com", - "url": "http://t.co/EoJhrhmss4", - "expanded_url": "http://hueniverse.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "505050", - "geo_enabled": false, - "followers_count": 5860, - "location": "Los Gatos, CA", - "screen_name": "eranhammer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 262, - "name": "Eran Hammer", - "profile_use_background_image": false, - "description": "Life experiences collector. @sideway founder, @hapijs creator. Former farmer and emu wrangler. My husband @DadOfTwinzLG is better than yours. eran@hammer.io", - "url": "http://t.co/EoJhrhmss4", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631361295015526400/YV8fcPYM_normal.png", - "profile_background_color": "000000", - "created_at": "Sun Jul 31 16:05:54 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631361295015526400/YV8fcPYM_normal.png", - "favourites_count": 1057, - "status": { - "retweet_count": 22, - "retweeted_status": { - "retweet_count": 22, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685177589254598656", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 427, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", - "type": "photo", - "indices": [ - 100, - 123 - ], - "media_url": "http://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", - "display_url": "pic.twitter.com/00NnlVFIDE", - "id_str": "685177589128810496", - "expanded_url": "http://twitter.com/nodejs/status/685177589254598656/photo/1", - "id": 685177589128810496, - "url": "https://t.co/00NnlVFIDE" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/members\u2026", - "url": "https://t.co/sxuXulYAXx", - "expanded_url": "https://github.com/nodejs/membership/issues/12", - "indices": [ - 76, - 99 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 19:14:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685177589254598656, - "text": "Nominations to join our Board of Directors ends January 15! You interested? https://t.co/sxuXulYAXx https://t.co/00NnlVFIDE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 28, - "contributors": null, - "source": "Sprout Social" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685198395917512704", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 427, - "resize": "fit" - } - }, - "source_status_id_str": "685177589254598656", - "url": "https://t.co/00NnlVFIDE", - "media_url": "http://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", - "source_user_id_str": "91985735", - "id_str": "685177589128810496", - "id": 685177589128810496, - "media_url_https": "https://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", - "type": "photo", - "indices": [ - 112, - 135 - ], - "source_status_id": 685177589254598656, - "source_user_id": 91985735, - "display_url": "pic.twitter.com/00NnlVFIDE", - "expanded_url": "http://twitter.com/nodejs/status/685177589254598656/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/members\u2026", - "url": "https://t.co/sxuXulYAXx", - "expanded_url": "https://github.com/nodejs/membership/issues/12", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nodejs", - "id_str": "91985735", - "id": 91985735, - "indices": [ - 3, - 10 - ], - "name": "Node.js" - } - ] - }, - "created_at": "Thu Jan 07 20:36:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685198395917512704, - "text": "RT @nodejs: Nominations to join our Board of Directors ends January 15! You interested? https://t.co/sxuXulYAXx https://t.co/00NnlVFIDE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 346026614, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 5727, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/346026614/1438570099", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "91985735", - "following": false, - "friends_count": 209, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nodejs.org", - "url": "https://t.co/X32n3a0B1h", - "expanded_url": "http://nodejs.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 305316, - "location": "Earth", - "screen_name": "nodejs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4787, - "name": "Node.js", - "profile_use_background_image": true, - "description": "The Node.js JavaScript Runtime", - "url": "https://t.co/X32n3a0B1h", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494226256276123648/GWnVTc9j_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 23 10:57:50 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494226256276123648/GWnVTc9j_normal.png", - "favourites_count": 182, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "danielnwilliams", - "in_reply_to_user_id": 398846571, - "in_reply_to_status_id_str": "685557569256091648", - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685561277364723713", - "id": 685561277364723713, - "text": "@danielnwilliams @ktrott00 good catch. Netflix streams 100 million+ hrs of video/day :)", - "in_reply_to_user_id_str": "398846571", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "danielnwilliams", - "id_str": "398846571", - "id": 398846571, - "indices": [ - 0, - 16 - ], - "name": "Daniel Williams" - }, - { - "screen_name": "ktrott00", - "id_str": "16898833", - "id": 16898833, - "indices": [ - 17, - 26 - ], - "name": "Kim Trott" - } - ] - }, - "created_at": "Fri Jan 08 20:38:40 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685557569256091648, - "lang": "en" - }, - "default_profile_image": false, - "id": 91985735, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2172, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/91985735/1406667709", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1126476188", - "following": false, - "friends_count": 1507, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ansible.com", - "url": "http://t.co/Yu5etG6UZX", - "expanded_url": "http://www.ansible.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 15787, - "location": "", - "screen_name": "ansible", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 545, - "name": "Ansible", - "profile_use_background_image": true, - "description": "Ansible is the simplest way to automate apps and infrastructure. Application Deployment + Configuration Management + Continuous Delivery.", - "url": "http://t.co/Yu5etG6UZX", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/428287509047435264/ElOjna20_normal.png", - "profile_background_color": "131516", - "created_at": "Sun Jan 27 23:16:48 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/428287509047435264/ElOjna20_normal.png", - "favourites_count": 2535, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612959226310656", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "hubs.ly/H01LcJ20", - "url": "https://t.co/3SUh5gtU60", - "expanded_url": "http://hubs.ly/H01LcJ20", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:04:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612959226310656, - "text": "Don't miss the Seattle Ansible Meetup on January 12th https://t.co/3SUh5gtU60", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "HubSpot" - }, - "default_profile_image": false, - "id": 1126476188, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 7209, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1126476188/1449349061", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14878068", - "following": false, - "friends_count": 760, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyet.com/team/baldwin", - "url": "https://t.co/xF4ndOjEu2", - "expanded_url": "https://andyet.com/team/baldwin", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 3436, - "location": "Tri-Cities, WA", - "screen_name": "adam_baldwin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 200, - "name": "Adam Baldwin", - "profile_use_background_image": true, - "description": "Husband @babyfro\nFather of 2\nTeam ^lifter @liftsecurity\nYeti @andyet\nFounder @nodesecurity", - "url": "https://t.co/xF4ndOjEu2", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/620086266244116480/1SW5afQT_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Fri May 23 05:38:53 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/620086266244116480/1SW5afQT_normal.jpg", - "favourites_count": 16394, - "status": { - "retweet_count": 63, - "retweeted_status": { - "retweet_count": 63, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685332012131954688", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "phrack.org/issues/7/3.html", - "url": "https://t.co/xlBLGAHGcl", - "expanded_url": "http://phrack.org/issues/7/3.html", - "indices": [ - 52, - 75 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 05:27:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685332012131954688, - "text": "30 years ago to date The Mentor wrote his manifesto https://t.co/xlBLGAHGcl Despite the propaganda and mass sellouts, it still matters", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 44, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685357215415287808", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "phrack.org/issues/7/3.html", - "url": "https://t.co/xlBLGAHGcl", - "expanded_url": "http://phrack.org/issues/7/3.html", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "agelastic", - "id_str": "367629666", - "id": 367629666, - "indices": [ - 3, - 13 - ], - "name": "Vitaly Osipov" - } - ] - }, - "created_at": "Fri Jan 08 07:07:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685357215415287808, - "text": "RT @agelastic: 30 years ago to date The Mentor wrote his manifesto https://t.co/xlBLGAHGcl Despite the propaganda and mass sellouts, it sti\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 14878068, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 15621, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18496432", - "following": false, - "friends_count": 1531, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "medium.com/@nrrrdcore", - "url": "https://t.co/yNzkb6fJpL", - "expanded_url": "https://medium.com/@nrrrdcore", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/606579843/q2ygld2s5eo2b6kria06.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FDF68F", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 24092, - "location": "Oakland, CA", - "screen_name": "nrrrdcore", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 1066, - "name": "Julie Ann Horvath", - "profile_use_background_image": false, - "description": "Part pok\u00e9mon, part reality tv gif. Designer who codes. Multicultural. Friendly neighborhood Feminist. Volunteer at @Oakland_CM. Bay Area Native.", - "url": "https://t.co/yNzkb6fJpL", - "profile_text_color": "0D0D0C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670454037028868096/xU17-mNX_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Dec 31 02:39:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "0A0A09", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670454037028868096/xU17-mNX_normal.jpg", - "favourites_count": 25755, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "polotek", - "in_reply_to_user_id": 20079975, - "in_reply_to_status_id_str": "684832544966103040", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685606596416679936", - "id": 685606596416679936, - "text": "@polotek she's the luckiest baby girl to have parents like you and @operaqueenie \ud83d\ude4c\ud83c\udffd", - "in_reply_to_user_id_str": "20079975", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "polotek", - "id_str": "20079975", - "id": 20079975, - "indices": [ - 0, - 8 - ], - "name": "Marco Rogers" - }, - { - "screen_name": "operaqueenie", - "id_str": "18710797", - "id": 18710797, - "indices": [ - 67, - 80 - ], - "name": "Aniyia" - } - ] - }, - "created_at": "Fri Jan 08 23:38:45 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684832544966103040, - "lang": "en" - }, - "default_profile_image": false, - "id": 18496432, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/606579843/q2ygld2s5eo2b6kria06.jpeg", - "statuses_count": 27871, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18496432/1446178912", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "238257944", - "following": false, - "friends_count": 295, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "deedubs.com", - "url": "http://t.co/Jo9kwa5p7q", - "expanded_url": "http://deedubs.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/601132773/s1z93dncq6lyre2s8v51.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 368, - "location": "Ottawa, ON", - "screen_name": "deedubs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "name": "Dan Williams", - "profile_use_background_image": false, - "description": "JavaScript, Site Reliability Engineer. Senior developer at @keatonrow", - "url": "http://t.co/Jo9kwa5p7q", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638672882290266112/ufp3Vfqz_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Jan 14 19:02:08 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638672882290266112/ufp3Vfqz_normal.jpg", - "favourites_count": 202, - "status": { - "retweet_count": 3, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "685475894945792001", - "id": 685475894945792001, - "text": "Currently tying our shoes. Want early access? Follow for details.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:59:23 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685515370845749248", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "trytipjuice", - "id_str": "3973986610", - "id": 3973986610, - "indices": [ - 3, - 15 - ], - "name": "TipJuice" - } - ] - }, - "created_at": "Fri Jan 08 17:36:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685515370845749248, - "text": "RT @trytipjuice: Currently tying our shoes. Want early access? Follow for details.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 238257944, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/601132773/s1z93dncq6lyre2s8v51.jpeg", - "statuses_count": 3109, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/238257944/1422636454", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "11395", - "following": false, - "friends_count": 163, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stpeter.im", - "url": "https://t.co/9DJjN5mx49", - "expanded_url": "https://stpeter.im/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 1986, - "location": "Parker, Colorado, USA", - "screen_name": "stpeter", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 130, - "name": "Peter Saint-Andre", - "profile_use_background_image": true, - "description": "Technologist. Musician. Philosopher. CTO with @andyet.", - "url": "https://t.co/9DJjN5mx49", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494848536710619136/BaEAuasq_normal.png", - "profile_background_color": "9AE4E8", - "created_at": "Fri Nov 03 18:45:57 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494848536710619136/BaEAuasq_normal.png", - "favourites_count": 1761, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684856883530760192", - "id": 684856883530760192, - "text": "Too many chars, my dear Twitter!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 21:59:39 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 11395, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3918, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "8446052", - "following": false, - "friends_count": 539, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 625, - "location": "WA", - "screen_name": "hjon", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 80, - "name": "Jon Hjelle", - "profile_use_background_image": true, - "description": "iOS Developer at &yet (@andyet). I work on @usetalky.", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/34548232/5-3-03_020_1_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Aug 26 19:13:41 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/34548232/5-3-03_020_1_normal.jpg", - "favourites_count": 323, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Gautam_Pratik", - "in_reply_to_user_id": 355311539, - "in_reply_to_status_id_str": "678996154445508608", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "679080894615851008", - "id": 679080894615851008, - "text": "@Gautam_Pratik Not really. Brought it to a shop and they could only narrow it down to logic board or video card.", - "in_reply_to_user_id_str": "355311539", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Gautam_Pratik", - "id_str": "355311539", - "id": 355311539, - "indices": [ - 0, - 14 - ], - "name": "Pratik Gautam" - } - ] - }, - "created_at": "Mon Dec 21 23:27:56 +0000 2015", - "source": "Twitterrific", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 678996154445508608, - "lang": "en" - }, - "default_profile_image": false, - "id": 8446052, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 3091, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18076186", - "following": false, - "friends_count": 93, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "maltson.com", - "url": "https://t.co/CAoihOvU1e", - "expanded_url": "http://maltson.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 264, - "location": "Toronto, Canada", - "screen_name": "amaltson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "Arthur Maltson", - "profile_use_background_image": true, - "description": "Husband and father of two wonderful daughters. Practicing DevOps during the day and DadOps at night.", - "url": "https://t.co/CAoihOvU1e", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1213346750/arthur_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Dec 12 13:50:31 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1213346750/arthur_normal.jpg", - "favourites_count": 1587, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685529684633882624", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/joshuajenkins/\u2026", - "url": "https://t.co/YeGEHah4r8", - "expanded_url": "https://twitter.com/joshuajenkins/status/685166119573848064", - "indices": [ - 17, - 40 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:33:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685529684633882624, - "text": "This is awesome! https://t.co/YeGEHah4r8", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 18076186, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 8716, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "10886832", - "following": false, - "friends_count": 722, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nerderati.com", - "url": "http://t.co/lhQToqxP8q", - "expanded_url": "http://nerderati.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2699971/eqns1.jpg", - "notifications": false, - "profile_sidebar_fill_color": "A0A0A0", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 2495, - "location": "iPhone: 45.522545,-73.593346", - "screen_name": "jperras", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 242, - "name": "Jo\u00ebl Perras", - "profile_use_background_image": true, - "description": "I'm a physicist turned web dev, and a partner at @FictiveKin.\n\nOSI Layer 8 enthusiast.", - "url": "http://t.co/lhQToqxP8q", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/576168271096868864/mpIZKKDZ_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Dec 05 22:56:35 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "787878", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/576168271096868864/mpIZKKDZ_normal.jpeg", - "favourites_count": 1942, - "status": { - "retweet_count": 15, - "retweeted_status": { - "retweet_count": 15, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685607398036344832", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 577, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", - "type": "photo", - "indices": [ - 115, - 138 - ], - "media_url": "http://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", - "display_url": "pic.twitter.com/Bm16PNTLPf", - "id_str": "685607396408999936", - "expanded_url": "http://twitter.com/vanschneider/status/685607398036344832/photo/1", - "id": 685607396408999936, - "url": "https://t.co/Bm16PNTLPf" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:41:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685607398036344832, - "text": "\u201c$9.99 for a paid music streaming service is too expensive for me.\u201d - This is what americans spend their money on. https://t.co/Bm16PNTLPf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 21, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685608068869144580", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 577, - "resize": "fit" - } - }, - "source_status_id_str": "685607398036344832", - "url": "https://t.co/Bm16PNTLPf", - "media_url": "http://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", - "source_user_id_str": "18971006", - "id_str": "685607396408999936", - "id": 685607396408999936, - "media_url_https": "https://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685607398036344832, - "source_user_id": 18971006, - "display_url": "pic.twitter.com/Bm16PNTLPf", - "expanded_url": "http://twitter.com/vanschneider/status/685607398036344832/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "vanschneider", - "id_str": "18971006", - "id": 18971006, - "indices": [ - 3, - 16 - ], - "name": "Tobias van Schneider" - } - ] - }, - "created_at": "Fri Jan 08 23:44:36 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685608068869144580, - "text": "RT @vanschneider: \u201c$9.99 for a paid music streaming service is too expensive for me.\u201d - This is what americans spend their money on. https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 10886832, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2699971/eqns1.jpg", - "statuses_count": 17412, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10886832/1426204332", - "is_translator": false - }, - { - "time_zone": "America/New_York", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "262289144", - "following": false, - "friends_count": 349, - "entities": { - "description": { - "urls": [ - { - "display_url": "linkedin.com/in/devopsto", - "url": "http://t.co/Aciv0cPnM8", - "expanded_url": "http://linkedin.com/in/devopsto", - "indices": [ - 76, - 98 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "stevepereira.ca", - "url": "http://t.co/Bxf9OuOiuu", - "expanded_url": "http://stevepereira.ca", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 894, - "location": "Toronto", - "screen_name": "SteveElsewhere", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 90, - "name": "Steve Pereira", - "profile_use_background_image": false, - "description": "@Statflo CTO - Teammate - Software Delivery / Systems Engineer - DevOps fan http://t.co/Aciv0cPnM8", - "url": "http://t.co/Bxf9OuOiuu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659417434303008768/Xqy2RBHD_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Mar 07 19:21:27 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659417434303008768/Xqy2RBHD_normal.jpg", - "favourites_count": 2948, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mferrier", - "in_reply_to_user_id": 12979942, - "in_reply_to_status_id_str": "684923946261712897", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684931694034485248", - "id": 684931694034485248, - "text": "@mferrier so ready for the robots to step in on this...", - "in_reply_to_user_id_str": "12979942", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mferrier", - "id_str": "12979942", - "id": 12979942, - "indices": [ - 0, - 9 - ], - "name": "Mike Ferrier" - } - ] - }, - "created_at": "Thu Jan 07 02:56:55 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684923946261712897, - "lang": "en" - }, - "default_profile_image": false, - "id": 262289144, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 3064, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/262289144/1449646593", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "22066036", - "following": false, - "friends_count": 365, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 532, - "location": "Brooklyn, NY", - "screen_name": "techbint", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 53, - "name": "Lisa van Gelder", - "profile_use_background_image": true, - "description": "Software developer, coffee lover", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/85150644/Photo_4_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Feb 26 21:38:09 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/85150644/Photo_4_normal.jpg", - "favourites_count": 160, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684907534742765569", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mic.com/articles/13186\u2026", - "url": "https://t.co/KbI0Gpso30", - "expanded_url": "http://mic.com/articles/131861/silicon-valley-is-lying-to-you-about-economic-inequality#.WkIEmAark", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JackSmithIV", - "id_str": "27306129", - "id": 27306129, - "indices": [ - 60, - 72 - ], - "name": "Jack Smith IV" - }, - { - "screen_name": "micnews", - "id_str": "139909832", - "id": 139909832, - "indices": [ - 101, - 109 - ], - "name": "Mic" - } - ] - }, - "created_at": "Thu Jan 07 01:20:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684907534742765569, - "text": "Silicon Valley Is Lying to You About Economic Inequality by @jacksmithiv https://t.co/KbI0Gpso30 via @MicNews", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684911569151639554", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mic.com/articles/13186\u2026", - "url": "https://t.co/KbI0Gpso30", - "expanded_url": "http://mic.com/articles/131861/silicon-valley-is-lying-to-you-about-economic-inequality#.WkIEmAark", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "harper", - "id_str": "1497", - "id": 1497, - "indices": [ - 3, - 10 - ], - "name": "harper" - }, - { - "screen_name": "JackSmithIV", - "id_str": "27306129", - "id": 27306129, - "indices": [ - 72, - 84 - ], - "name": "Jack Smith IV" - }, - { - "screen_name": "micnews", - "id_str": "139909832", - "id": 139909832, - "indices": [ - 113, - 121 - ], - "name": "Mic" - } - ] - }, - "created_at": "Thu Jan 07 01:36:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684911569151639554, - "text": "RT @harper: Silicon Valley Is Lying to You About Economic Inequality by @jacksmithiv https://t.co/KbI0Gpso30 via @MicNews", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 22066036, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2450, - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "38389571", - "following": false, - "friends_count": 111, - "entities": { - "description": { - "urls": [ - { - "display_url": "gingerhq.com", - "url": "https://t.co/70QKPxW52X", - "expanded_url": "https://gingerhq.com", - "indices": [ - 42, - 65 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 578, - "location": "Steamboat Springs, Colorado", - "screen_name": "ipmb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Peter Baumgartner", - "profile_use_background_image": true, - "description": "Founder at Lincoln Loop, maker of Ginger (https://t.co/70QKPxW52X). Lover of family, surfing, skiing, kayaking, and mountain biking.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/533293012156051456/kwGzVRnY_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu May 07 07:16:37 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/533293012156051456/kwGzVRnY_normal.png", - "favourites_count": 382, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "montylounge", - "in_reply_to_user_id": 34617218, - "in_reply_to_status_id_str": "679676778013704192", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "679733605413695488", - "id": 679733605413695488, - "text": "@montylounge second the recommendation of an inexpensive laster printer", - "in_reply_to_user_id_str": "34617218", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "montylounge", - "id_str": "34617218", - "id": 34617218, - "indices": [ - 0, - 12 - ], - "name": "Kevin Fricovsky" - } - ] - }, - "created_at": "Wed Dec 23 18:41:35 +0000 2015", - "source": "Twitter for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 679676778013704192, - "lang": "en" - }, - "default_profile_image": false, - "id": 38389571, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 745, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "46082263", - "following": false, - "friends_count": 21, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jeskecompany.com", - "url": "http://t.co/wvNxsWx69d", - "expanded_url": "http://jeskecompany.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "336699", - "geo_enabled": true, - "followers_count": 574, - "location": "Neenah, WI, USA", - "screen_name": "geekles", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "Shawn Hansen", - "profile_use_background_image": false, - "description": "Ecommerce at The Jeske Company.", - "url": "http://t.co/wvNxsWx69d", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649964839545106432/6mvYsAtT_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Jun 10 10:29:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649964839545106432/6mvYsAtT_normal.jpg", - "favourites_count": 350, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jaffathecake", - "in_reply_to_user_id": 15390783, - "in_reply_to_status_id_str": "578926689046142978", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "578927048963567617", - "id": 578927048963567617, - "text": "@jaffathecake That a great name for a character in a book.", - "in_reply_to_user_id_str": "15390783", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jaffathecake", - "id_str": "15390783", - "id": 15390783, - "indices": [ - 0, - 13 - ], - "name": "Jake Archibald" - } - ] - }, - "created_at": "Fri Mar 20 14:32:19 +0000 2015", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 578926689046142978, - "lang": "en" - }, - "default_profile_image": false, - "id": 46082263, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7120, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/46082263/1427672701", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "159822053", - "following": false, - "friends_count": 154, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 8289, - "location": "Portland, OR", - "screen_name": "kelseyhightower", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 366, - "name": "Kelsey Hightower", - "profile_use_background_image": true, - "description": "Containers. Kubernetes. Golang", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/498800179206578177/5VBrlADU_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jun 26 12:24:45 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/498800179206578177/5VBrlADU_normal.jpeg", - "favourites_count": 4396, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685613533107630080", - "id": 685613533107630080, - "text": "Details still to come, but looks like we\u2019ve locked in @kelseyhightower for the next Nike Tech Talk on 2/11! ;~)", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kelseyhightower", - "id_str": "159822053", - "id": 159822053, - "indices": [ - 54, - 70 - ], - "name": "Kelsey Hightower" - } - ] - }, - "created_at": "Sat Jan 09 00:06:19 +0000 2016", - "source": "TweetDeck", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685613575885303808", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tlockney", - "id_str": "1941471", - "id": 1941471, - "indices": [ - 3, - 12 - ], - "name": "Thomas Lockney" - }, - { - "screen_name": "kelseyhightower", - "id_str": "159822053", - "id": 159822053, - "indices": [ - 68, - 84 - ], - "name": "Kelsey Hightower" - } - ] - }, - "created_at": "Sat Jan 09 00:06:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613575885303808, - "text": "RT @tlockney: Details still to come, but looks like we\u2019ve locked in @kelseyhightower for the next Nike Tech Talk on 2/11! ;~)", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 159822053, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8775, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1974059004", - "following": false, - "friends_count": 217, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 495, - "location": "", - "screen_name": "HCornflower", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Philipp Hancke", - "profile_use_background_image": true, - "description": "doing things webrtc @tokbox", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000644644201/35b0d0ee5b74d7c7328da661b201c03b_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Oct 20 06:34:42 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000644644201/35b0d0ee5b74d7c7328da661b201c03b_normal.png", - "favourites_count": 1314, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "feross", - "in_reply_to_user_id": 15692193, - "in_reply_to_status_id_str": "685130192780673024", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685329496153669632", - "id": 685329496153669632, - "text": "@feross always stay close to the person with the gun. And make sure you know how a reindeer looks.", - "in_reply_to_user_id_str": "15692193", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "feross", - "id_str": "15692193", - "id": 15692193, - "indices": [ - 0, - 7 - ], - "name": "Feross" - } - ] - }, - "created_at": "Fri Jan 08 05:17:39 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685130192780673024, - "lang": "en" - }, - "default_profile_image": false, - "id": 1974059004, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1116, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1974059004/1424759180", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2554691999", - "following": false, - "friends_count": 82, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/stongo", - "url": "https://t.co/2z4msjYUJ6", - "expanded_url": "http://github.com/stongo", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 72, - "location": "Canada", - "screen_name": "stongops", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Stongsy", - "profile_use_background_image": true, - "description": "DevOps Engineer at @andyet", - "url": "https://t.co/2z4msjYUJ6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648714602805596160/vsEJr0zP_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue May 20 00:38:58 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648714602805596160/vsEJr0zP_normal.jpg", - "favourites_count": 113, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681684681281146880", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 597, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 349, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 198, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXXUl62WcAAWgdj.jpg", - "type": "photo", - "indices": [ - 33, - 56 - ], - "media_url": "http://pbs.twimg.com/media/CXXUl62WcAAWgdj.jpg", - "display_url": "pic.twitter.com/z5N3NrcofS", - "id_str": "681684666533965824", - "expanded_url": "http://twitter.com/stongops/status/681684681281146880/photo/1", - "id": 681684666533965824, - "url": "https://t.co/z5N3NrcofS" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 29 03:54:27 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681684681281146880, - "text": "Say no to drugs and yes to Jenga https://t.co/z5N3NrcofS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2554691999, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 74, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2554691999/1441495963", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "798920833", - "following": false, - "friends_count": 891, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 147, - "location": "Canada", - "screen_name": "idleinca", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Luke Tymowski", - "profile_use_background_image": true, - "description": "Sysadmin", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/490270588141711362/Dy_HyNvs_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Sep 02 19:40:45 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/490270588141711362/Dy_HyNvs_normal.jpeg", - "favourites_count": 2, - "status": { - "retweet_count": 42, - "retweeted_status": { - "retweet_count": 42, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684772419693862912", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "arstechnica.com/tech-policy/20\u2026", - "url": "https://t.co/AO5ZeQnHQ8", - "expanded_url": "http://arstechnica.com/tech-policy/2016/01/dutch-government-encryption-good-backdoors-bad/", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "glynmoody", - "id_str": "18525497", - "id": 18525497, - "indices": [ - 76, - 86 - ], - "name": "Glyn Moody" - } - ] - }, - "created_at": "Wed Jan 06 16:24:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684772419693862912, - "text": "Dutch government: Encryption good, backdoors bad https://t.co/AO5ZeQnHQ8 by @glynmoody", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 29, - "contributors": null, - "source": "Ars tweetbot" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684772945659428864", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "arstechnica.com/tech-policy/20\u2026", - "url": "https://t.co/AO5ZeQnHQ8", - "expanded_url": "http://arstechnica.com/tech-policy/2016/01/dutch-government-encryption-good-backdoors-bad/", - "indices": [ - 66, - 89 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "arstechnica", - "id_str": "717313", - "id": 717313, - "indices": [ - 3, - 15 - ], - "name": "Ars Technica" - }, - { - "screen_name": "glynmoody", - "id_str": "18525497", - "id": 18525497, - "indices": [ - 93, - 103 - ], - "name": "Glyn Moody" - } - ] - }, - "created_at": "Wed Jan 06 16:26:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684772945659428864, - "text": "RT @arstechnica: Dutch government: Encryption good, backdoors bad https://t.co/AO5ZeQnHQ8 by @glynmoody", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 798920833, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3569, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/798920833/1407726620", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "40994489", - "following": false, - "friends_count": 929, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kristofferpantic.com", - "url": "http://t.co/jLZ3EXpJSR", - "expanded_url": "http://www.kristofferpantic.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 477, - "location": "Barcelona, Spain ", - "screen_name": "kpantic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Kristoffer Pantic", - "profile_use_background_image": true, - "description": "VPoE of @talpor_ve, Computer Engineer from Venezuela currently living in Barcelona, USB and CMU-SV alumni.", - "url": "http://t.co/jLZ3EXpJSR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/646076438693715968/NWYnZRuZ_normal.jpg", - "profile_background_color": "022330", - "created_at": "Mon May 18 23:06:56 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/646076438693715968/NWYnZRuZ_normal.jpg", - "favourites_count": 177, - "status": { - "retweet_count": 798, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 798, - "truncated": false, - "retweeted": false, - "id_str": "677982650481553408", - "id": 677982650481553408, - "text": "Step one:\n$ git remote rename origin jedi\n\nStep two:\n$ git push --force jedi master\n\nStep three:\n\ud83c\udf89\ud83c\udf89\ud83c\udf89Profit \ud83c\udf89\ud83c\udf89\ud83c\udf89", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Dec 18 22:43:54 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 614, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "678277444319735809", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thealphanerd", - "id_str": "150664007", - "id": 150664007, - "indices": [ - 3, - 16 - ], - "name": "Make Fyles" - } - ] - }, - "created_at": "Sat Dec 19 18:15:19 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678277444319735809, - "text": "RT @thealphanerd: Step one:\n$ git remote rename origin jedi\n\nStep two:\n$ git push --force jedi master\n\nStep three:\n\ud83c\udf89\ud83c\udf89\ud83c\udf89Profit \ud83c\udf89\ud83c\udf89\ud83c\udf89", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 40994489, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 8731, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/40994489/1370318379", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "263981412", - "following": false, - "friends_count": 827, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 65, - "location": "", - "screen_name": "jfer0501", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "John Ferris", - "profile_use_background_image": true, - "description": "Die Hard Red Sox Fan, Software Engineer, Punk Rock lover", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/412057714311696385/fS2QIp7p_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Mar 11 03:13:12 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/412057714311696385/fS2QIp7p_normal.jpeg", - "favourites_count": 39, - "status": { - "retweet_count": 15689, - "retweeted_status": { - "retweet_count": 15689, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685210402578382848", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", - "type": "photo", - "indices": [ - 68, - 91 - ], - "media_url": "http://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", - "display_url": "pic.twitter.com/SS8gp4WHAF", - "id_str": "685210402448355329", - "expanded_url": "http://twitter.com/Fallout/status/685210402578382848/photo/1", - "id": 685210402448355329, - "url": "https://t.co/SS8gp4WHAF" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 5, - 27 - ], - "text": "NationalBobbleheadDay" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 21:24:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685210402578382848, - "text": "It's #NationalBobbleheadDay ! RT & follow for a chance to win ! https://t.co/SS8gp4WHAF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4608, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685247198079152128", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - } - }, - "source_status_id_str": "685210402578382848", - "url": "https://t.co/SS8gp4WHAF", - "media_url": "http://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", - "source_user_id_str": "112511880", - "id_str": "685210402448355329", - "id": 685210402448355329, - "media_url_https": "https://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", - "type": "photo", - "indices": [ - 81, - 104 - ], - "source_status_id": 685210402578382848, - "source_user_id": 112511880, - "display_url": "pic.twitter.com/SS8gp4WHAF", - "expanded_url": "http://twitter.com/Fallout/status/685210402578382848/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 18, - 40 - ], - "text": "NationalBobbleheadDay" - } - ], - "user_mentions": [ - { - "screen_name": "Fallout", - "id_str": "112511880", - "id": 112511880, - "indices": [ - 3, - 11 - ], - "name": "Fallout" - } - ] - }, - "created_at": "Thu Jan 07 23:50:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685247198079152128, - "text": "RT @Fallout: It's #NationalBobbleheadDay ! RT & follow for a chance to win ! https://t.co/SS8gp4WHAF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 263981412, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 494, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2224090597", - "following": false, - "friends_count": 339, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "travisallan.com", - "url": "http://t.co/4AeECnyJpu", - "expanded_url": "http://travisallan.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/513158005743833088/SPlg2CPJ.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2196AD", - "geo_enabled": false, - "followers_count": 125, - "location": "Vancouver", - "screen_name": "travis_eh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Travis Allan", - "profile_use_background_image": true, - "description": "Advocate of the impossible for a telco that employs animals.", - "url": "http://t.co/4AeECnyJpu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000813579626/cdec533dbb73630947f99801e7d81c22_normal.jpeg", - "profile_background_color": "F0F0F0", - "created_at": "Sun Dec 01 02:46:49 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000813579626/cdec533dbb73630947f99801e7d81c22_normal.jpeg", - "favourites_count": 56, - "status": { - "retweet_count": 4, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 4, - "truncated": false, - "retweeted": false, - "id_str": "665551119477833728", - "id": 665551119477833728, - "text": "At #fstoconf15 today? Come visit us and learn about our stack", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 3, - 14 - ], - "text": "fstoconf15" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Nov 14 15:25:26 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "665625579148840960", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 21, - 32 - ], - "text": "fstoconf15" - } - ], - "user_mentions": [ - { - "screen_name": "telusdigital", - "id_str": "3023244921", - "id": 3023244921, - "indices": [ - 3, - 16 - ], - "name": "TELUS digital" - } - ] - }, - "created_at": "Sat Nov 14 20:21:19 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 665625579148840960, - "text": "RT @telusdigital: At #fstoconf15 today? Come visit us and learn about our stack", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2224090597, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/513158005743833088/SPlg2CPJ.png", - "statuses_count": 271, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2224090597/1411181499", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "85646316", - "following": false, - "friends_count": 1421, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "elliotmurphy.com", - "url": "http://t.co/gFsRT6JJs8", - "expanded_url": "http://elliotmurphy.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": false, - "followers_count": 660, - "location": "portland, maine", - "screen_name": "sstatik", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 53, - "name": "Elliot Murphy", - "profile_use_background_image": true, - "description": "Please may I drive your boat?", - "url": "http://t.co/gFsRT6JJs8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2349367231/003E1A1D-CEC9-44F0-9C43-694D34CFC754_normal", - "profile_background_color": "EBEBEB", - "created_at": "Tue Oct 27 19:50:51 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2349367231/003E1A1D-CEC9-44F0-9C43-694D34CFC754_normal", - "favourites_count": 2874, - "status": { - "retweet_count": 54, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 54, - "truncated": false, - "retweeted": false, - "id_str": "685196271745814528", - "id": 685196271745814528, - "text": "If you take any security system with a backdoor, you can make it more secure by removing the backdoor. \n\nWe can call this \"The eek! Law\".", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 20:28:16 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 49, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685473533502205952", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "eqe", - "id_str": "16076004", - "id": 16076004, - "indices": [ - 3, - 7 - ], - "name": "@eqe (Andy Isaacson)" - } - ] - }, - "created_at": "Fri Jan 08 14:50:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685473533502205952, - "text": "RT @eqe: If you take any security system with a backdoor, you can make it more secure by removing the backdoor. \n\nWe can call this \"The eek\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 85646316, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 3671, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11944492", - "following": false, - "friends_count": 394, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 288, - "location": "phila", - "screen_name": "cmerrick", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "cmerrick", - "profile_use_background_image": true, - "description": "engineer at RJMetrics", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3591779491/caaf951d2f1aa3d8f11b3dc0e9341db3_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 07 14:36:18 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3591779491/caaf951d2f1aa3d8f11b3dc0e9341db3_normal.jpeg", - "favourites_count": 31, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "bengarvey", - "in_reply_to_user_id": 3732861, - "in_reply_to_status_id_str": "682691595167088640", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682771670688481280", - "id": 682771670688481280, - "text": "@bengarvey impressive reverse engineering of the Windows 3.1 screen saver", - "in_reply_to_user_id_str": "3732861", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "bengarvey", - "id_str": "3732861", - "id": 3732861, - "indices": [ - 0, - 10 - ], - "name": "Ben Garvey" - } - ] - }, - "created_at": "Fri Jan 01 03:53:46 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 682691595167088640, - "lang": "en" - }, - "default_profile_image": false, - "id": 11944492, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 547, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7221", - "following": false, - "friends_count": 1654, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkd.in/A2n01d", - "url": "https://t.co/Bu1B67OyHy", - "expanded_url": "http://linkd.in/A2n01d", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 465, - "location": "santa monica, california", - "screen_name": "arnold", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 49, - "name": "Arnold", - "profile_use_background_image": false, - "description": "lucky to have @annamau @dylanskye_ @sydneydani_. data engineer at startup game company. fauxtographer. completed sweltering @lamarathon 2015. @playoverwatch nub", - "url": "https://t.co/Bu1B67OyHy", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1880208035/164_21258363192_647538192_398945_620_n_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Sep 29 06:52:48 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1880208035/164_21258363192_647538192_398945_620_n_normal.jpg", - "favourites_count": 6233, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685605870445543424", - "geo": { - "coordinates": [ - 34.03107017, - -118.4406039 - ], - "type": "Point" - }, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 576, - "h": 1024, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 604, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 576, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPC5qWUQAEaw_h.jpg", - "type": "photo", - "indices": [ - 35, - 58 - ], - "media_url": "http://pbs.twimg.com/media/CYPC5qWUQAEaw_h.jpg", - "display_url": "pic.twitter.com/khl1CZNC1z", - "id_str": "685605864166670337", - "expanded_url": "http://twitter.com/arnold/status/685605870445543424/photo/1", - "id": 685605864166670337, - "url": "https://t.co/khl1CZNC1z" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:35:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/96683cc9126741d1.json", - "country": "United States", - "attributes": {}, - "place_type": "country", - "bounding_box": { - "coordinates": [ - [ - [ - -179.231086, - 13.182335 - ], - [ - 179.859685, - 13.182335 - ], - [ - 179.859685, - 71.434357 - ], - [ - -179.231086, - 71.434357 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "United States", - "id": "96683cc9126741d1", - "name": "United States" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685605870445543424, - "text": "$800M lottery jackpot in the US. \ud83e\udd11 https://t.co/khl1CZNC1z", - "coordinates": { - "coordinates": [ - -118.4406039, - 34.03107017 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 7221, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 38100, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7221/1427384184", - "is_translator": false - }, - { - "time_zone": "Quito", - "profile_use_background_image": true, - "description": "Off-Beat Linux guru and Devops Nerd. Fan of bourbon, glass blowing, hardware hacking, hackerspaces, and moonshine. Open Source is my soul...", - "url": "http://t.co/igc3tRJ0HH", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "14459170", - "blocking": false, - "is_translation_enabled": false, - "id": 14459170, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ianwilson.org", - "url": "http://t.co/igc3tRJ0HH", - "expanded_url": "http://ianwilson.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "131516", - "created_at": "Mon Apr 21 06:50:05 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/1852779298/dMCdH_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "statuses_count": 8834, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1852779298/dMCdH_normal.jpg", - "favourites_count": 80, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 228, - "blocked_by": false, - "following": false, - "location": "Midwest", - "muting": false, - "friends_count": 329, - "notifications": false, - "screen_name": "uid0", - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 10, - "is_translator": false, - "name": "Ian WIlson" - }, - { - "time_zone": "America/Los_Angeles", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "641953", - "following": false, - "friends_count": 345, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ctbfourone.tumblr.com", - "url": "https://t.co/CyH7vIb6zb", - "expanded_url": "http://ctbfourone.tumblr.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000106779969/fa6f934b0bf864af6d2d91af83a7c7df.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "333355", - "geo_enabled": true, - "followers_count": 908, - "location": "Portland", - "screen_name": "ctb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 47, - "name": "Chris Brentano", - "profile_use_background_image": true, - "description": "Network engineer, @simple.", - "url": "https://t.co/CyH7vIb6zb", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579870117539889152/9smPEoNX_normal.jpg", - "profile_background_color": "411D59", - "created_at": "Tue Jan 16 00:34:47 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579870117539889152/9smPEoNX_normal.jpg", - "favourites_count": 3767, - "status": { - "retweet_count": 10, - "retweeted_status": { - "retweet_count": 10, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685215854473023488", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "gimmethelute.com", - "url": "https://t.co/5URNe0xQPk", - "expanded_url": "http://www.gimmethelute.com/", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 21:46:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685215854473023488, - "text": "Hi! Need a brand/communications person? Get in touch! https://t.co/5URNe0xQPk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 11, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685237534339641344", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "gimmethelute.com", - "url": "https://t.co/5URNe0xQPk", - "expanded_url": "http://www.gimmethelute.com/", - "indices": [ - 72, - 95 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "EffingBoring", - "id_str": "6613122", - "id": 6613122, - "indices": [ - 3, - 16 - ], - "name": "I. Ron Butterfly" - } - ] - }, - "created_at": "Thu Jan 07 23:12:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685237534339641344, - "text": "RT @EffingBoring: Hi! Need a brand/communications person? Get in touch! https://t.co/5URNe0xQPk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 641953, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000106779969/fa6f934b0bf864af6d2d91af83a7c7df.png", - "statuses_count": 8904, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/641953/1427086815", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "139871207", - "following": false, - "friends_count": 509, - "entities": { - "description": { - "urls": [ - { - "display_url": "pronoun.is/he/him", - "url": "https://t.co/6bo52FY7b4", - "expanded_url": "http://pronoun.is/he/him", - "indices": [ - 124, - 147 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "joefriedl.net", - "url": "https://t.co/YxMmpW1FzG", - "expanded_url": "http://joefriedl.net", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/98426108/darksgrey.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 103, - "location": "Queens, NY", - "screen_name": "joefriedl", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "grampajoe \u02c1\u02d9\u02df\u02d9\u02c0", - "profile_use_background_image": true, - "description": "I hook computers up to other computers so they do a thing. Sometimes I put computers inside of other computers, it's weird. https://t.co/6bo52FY7b4", - "url": "https://t.co/YxMmpW1FzG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/416290524027314176/Lm3CGt_y_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon May 03 22:53:02 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/416290524027314176/Lm3CGt_y_normal.png", - "favourites_count": 2843, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685608016872390658", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 460, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 813, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1388, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", - "type": "photo", - "indices": [ - 16, - 39 - ], - "media_url": "http://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", - "display_url": "pic.twitter.com/1x2J9xwUx2", - "id_str": "685607983900966914", - "expanded_url": "http://twitter.com/OminousZoom/status/685608016872390658/photo/1", - "id": 685607983900966914, - "url": "https://t.co/1x2J9xwUx2" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:44:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685608016872390658, - "text": "*hissing* zooom https://t.co/1x2J9xwUx2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Ominous Zoom" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685608719627988992", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 460, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 813, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1388, - "resize": "fit" - } - }, - "source_status_id_str": "685608016872390658", - "url": "https://t.co/1x2J9xwUx2", - "media_url": "http://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", - "source_user_id_str": "3997848915", - "id_str": "685607983900966914", - "id": 685607983900966914, - "media_url_https": "https://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", - "type": "photo", - "indices": [ - 33, - 56 - ], - "source_status_id": 685608016872390658, - "source_user_id": 3997848915, - "display_url": "pic.twitter.com/1x2J9xwUx2", - "expanded_url": "http://twitter.com/OminousZoom/status/685608016872390658/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "OminousZoom", - "id_str": "3997848915", - "id": 3997848915, - "indices": [ - 3, - 15 - ], - "name": "Ominous Zoom" - } - ] - }, - "created_at": "Fri Jan 08 23:47:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685608719627988992, - "text": "RT @OminousZoom: *hissing* zooom https://t.co/1x2J9xwUx2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 139871207, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/98426108/darksgrey.png", - "statuses_count": 8509, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/139871207/1389745051", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6645822", - "following": false, - "friends_count": 854, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3330406/future.jpg", - "notifications": false, - "profile_sidebar_fill_color": "ABABAB", - "profile_link_color": "363636", - "geo_enabled": true, - "followers_count": 245, - "location": "", - "screen_name": "theshah", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Oh. It's -- oh.", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/527670702313197568/vsg1S1d5_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Thu Jun 07 17:21:53 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "424242", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/527670702313197568/vsg1S1d5_normal.jpeg", - "favourites_count": 1141, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "647626954821267457", - "id": 647626954821267457, - "text": "Wow @doordashBayArea is terrible! First time ordering and after 80 minutes they forgot to send a driver to get my order. Wont use them again", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "doordashBayArea", - "id_str": "2741484955", - "id": 2741484955, - "indices": [ - 4, - 20 - ], - "name": "DoorDash Bay Area" - } - ] - }, - "created_at": "Sat Sep 26 04:21:13 +0000 2015", - "source": "Mobile Web (M5)", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 6645822, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3330406/future.jpg", - "statuses_count": 1210, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "687123", - "following": false, - "friends_count": 398, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rc3.org", - "url": "http://t.co/hkwKKv3bud", - "expanded_url": "http://rc3.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/561384715/threadlesssolitarydream_653_163260.jpg", - "notifications": false, - "profile_sidebar_fill_color": "05132C", - "profile_link_color": "4A913C", - "geo_enabled": false, - "followers_count": 1847, - "location": "", - "screen_name": "rafeco", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 113, - "name": "Rafe", - "profile_use_background_image": true, - "description": "Programmer, writer, curious person. Manager of the @etsy Data Engineering team.", - "url": "http://t.co/hkwKKv3bud", - "profile_text_color": "004A86", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1539376994/rafe_normal.jpg", - "profile_background_color": "0B1933", - "created_at": "Tue Jan 23 16:17:35 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "043C6E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1539376994/rafe_normal.jpg", - "favourites_count": 660, - "status": { - "retweet_count": 33, - "retweeted_status": { - "retweet_count": 33, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684872357425614850", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "etsy.com/careers/job/oC\u2026", - "url": "https://t.co/exx7H2tdnF", - "expanded_url": "https://www.etsy.com/careers/job/oCHh2fwm", - "indices": [ - 94, - 117 - ] - } - ], - "hashtags": [ - { - "indices": [ - 133, - 140 - ], - "text": "devops" - } - ], - "user_mentions": [ - { - "screen_name": "mrembetsy", - "id_str": "20456848", - "id": 20456848, - "indices": [ - 122, - 132 - ], - "name": "Michael Rembetsy" - } - ] - }, - "created_at": "Wed Jan 06 23:01:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684872357425614850, - "text": "Hey everyone - we're hiring an engineering manager for Production Operations at Etsy! Dig it: https://t.co/exx7H2tdnF /cc @mrembetsy #devops", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 21, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685238827812843520", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "etsy.com/careers/job/oC\u2026", - "url": "https://t.co/exx7H2tdnF", - "expanded_url": "https://www.etsy.com/careers/job/oCHh2fwm", - "indices": [ - 107, - 130 - ] - } - ], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "devops" - } - ], - "user_mentions": [ - { - "screen_name": "allspaw", - "id_str": "13378422", - "id": 13378422, - "indices": [ - 3, - 11 - ], - "name": "John Allspaw" - }, - { - "screen_name": "mrembetsy", - "id_str": "20456848", - "id": 20456848, - "indices": [ - 135, - 140 - ], - "name": "Michael Rembetsy" - } - ] - }, - "created_at": "Thu Jan 07 23:17:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685238827812843520, - "text": "RT @allspaw: Hey everyone - we're hiring an engineering manager for Production Operations at Etsy! Dig it: https://t.co/exx7H2tdnF /cc @mre\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 687123, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/561384715/threadlesssolitarydream_653_163260.jpg", - "statuses_count": 13035, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/687123/1379168349", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13124352", - "following": false, - "friends_count": 736, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000040654748/2abf079c6bc80f94080246a6a2f3b71a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "918B8A", - "profile_link_color": "500B10", - "geo_enabled": true, - "followers_count": 471, - "location": "Portland, OR", - "screen_name": "todd534", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 35, - "name": "Todd Johnson", - "profile_use_background_image": true, - "description": "It\u2019s not all \u201cScala is terrible\u201d; some people are trying to Lead Thoughts\u2122 out here.", - "url": null, - "profile_text_color": "3A3C34", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/551558279311011841/BsYtdAZi_normal.jpeg", - "profile_background_color": "121704", - "created_at": "Wed Feb 06 00:38:16 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551558279311011841/BsYtdAZi_normal.jpeg", - "favourites_count": 7218, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.7900653, - 45.421863 - ], - [ - -122.471751, - 45.421863 - ], - [ - -122.471751, - 45.6509405 - ], - [ - -122.7900653, - 45.6509405 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Portland, OR", - "id": "ac88a4f17a51c7fc", - "name": "Portland" - }, - "in_reply_to_screen_name": "jtowle", - "in_reply_to_user_id": 17889641, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685564613488803840", - "id": 685564613488803840, - "text": "@jtowle YOU STAY AWAY FROM OUR HR PEOPLE", - "in_reply_to_user_id_str": "17889641", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jtowle", - "id_str": "17889641", - "id": 17889641, - "indices": [ - 0, - 7 - ], - "name": "Jeff Towle" - } - ] - }, - "created_at": "Fri Jan 08 20:51:55 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 13124352, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000040654748/2abf079c6bc80f94080246a6a2f3b71a.jpeg", - "statuses_count": 4303, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13124352/1449964144", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14735036", - "following": false, - "friends_count": 447, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2515596/dad_and_beer_sm.jpg", - "notifications": false, - "profile_sidebar_fill_color": "BEBEBE", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 116, - "location": "Lake County IL USA", - "screen_name": "boomer812", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Chris Velkover", - "profile_use_background_image": true, - "description": "IT guy, mac devotee, erratic golfer, Cubs/Bears/Hawks fan, ILL-INI, Spoon!", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/554368442300518401/iSbywOnT_normal.jpeg", - "profile_background_color": "3A3A3A", - "created_at": "Sun May 11 16:57:56 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "585858", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/554368442300518401/iSbywOnT_normal.jpeg", - "favourites_count": 415, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683450662852648960", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "theintercept.com/2015/12/14/go-\u2026", - "url": "https://t.co/e9vekFGdmB", - "expanded_url": "https://theintercept.com/2015/12/14/go-see-the-big-short-right-now-and-then-read-this/", - "indices": [ - 50, - 73 - ] - } - ], - "hashtags": [ - { - "indices": [ - 15, - 27 - ], - "text": "TheBigShort" - } - ], - "user_mentions": [] - }, - "created_at": "Sun Jan 03 00:51:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683450662852648960, - "text": "Really enjoyed #TheBigShort Pay attention people! https://t.co/e9vekFGdmB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14735036, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2515596/dad_and_beer_sm.jpg", - "statuses_count": 953, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14735036/1421007000", - "is_translator": false - } - ], - "previous_cursor": -1489123720614746884, - "previous_cursor_str": "-1489123720614746884", - "next_cursor_str": "1488977745323208956" -} \ No newline at end of file +{"users": [{"time_zone": "Bern", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "2898431", "following": false, "friends_count": 453, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stefan-strigler.de", "url": "http://t.co/MMFUtto9Dc", "expanded_url": "http://stefan-strigler.de", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/219733938/IMG_0074.JPG", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 539, "location": "52.484125,13.447212", "screen_name": "zeank", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "stefan strigler", "profile_use_background_image": true, "description": "jabbermaniac, javascript and erlang enthusiast", "url": "http://t.co/MMFUtto9Dc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/589719809803288577/i1K0dkpK_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 29 21:46:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/589719809803288577/i1K0dkpK_normal.jpg", "favourites_count": 7605, "status": {"retweet_count": 107, "retweeted_status": {"retweet_count": 107, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685241368323567617", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 733, "h": 387, "resize": "fit"}, "medium": {"w": 600, "h": 316, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 179, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", "display_url": "pic.twitter.com/gnZlI5niUq", "id_str": "685241367488929792", "expanded_url": "http://twitter.com/TheRoyalTbomb/status/685241368323567617/photo/1", "id": 685241367488929792, "url": "https://t.co/gnZlI5niUq"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "duckduckgo", "id_str": "14504859", "id": 14504859, "indices": [46, 57], "name": "DuckDuckGo"}]}, "created_at": "Thu Jan 07 23:27:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685241368323567617, "text": "Just learned that typing 'color picker' in to @duckduckgo brings up ... a color picker!! Another reason I love ddg. https://t.co/gnZlI5niUq", "coordinates": null, "retweeted": false, "favorite_count": 110, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685455218205655040", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 733, "h": 387, "resize": "fit"}, "medium": {"w": 600, "h": 316, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 179, "resize": "fit"}}, "source_status_id_str": "685241368323567617", "media_url": "http://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", "source_user_id_str": "281405328", "id_str": "685241367488929792", "id": 685241367488929792, "media_url_https": "https://pbs.twimg.com/media/CYJ3ZKaUoAA-rSR.png", "type": "photo", "indices": [139, 140], "source_status_id": 685241368323567617, "source_user_id": 281405328, "display_url": "pic.twitter.com/gnZlI5niUq", "expanded_url": "http://twitter.com/TheRoyalTbomb/status/685241368323567617/photo/1", "url": "https://t.co/gnZlI5niUq"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "TheRoyalTbomb", "id_str": "281405328", "id": 281405328, "indices": [3, 17], "name": "Mike Tannenbaum \u30c4"}, {"screen_name": "duckduckgo", "id_str": "14504859", "id": 14504859, "indices": [65, 76], "name": "DuckDuckGo"}]}, "created_at": "Fri Jan 08 13:37:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685455218205655040, "text": "RT @TheRoyalTbomb: Just learned that typing 'color picker' in to @duckduckgo brings up ... a color picker!! Another reason I love ddg. http\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2898431, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/219733938/IMG_0074.JPG", "statuses_count": 14855, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2898431/1399637633", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1537305181", "following": false, "friends_count": 71, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "talky.io", "url": "http://t.co/ENtk7BVm7Z", "expanded_url": "http://talky.io", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 806, "location": "Richland, WA", "screen_name": "usetalky", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 40, "name": "Talky", "profile_use_background_image": true, "description": "Group video chat and screen sharing, built with love by @andyet - ask us about on-site versions and realtime product development!", "url": "http://t.co/ENtk7BVm7Z", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000026458107/d122752f4dc74a93ea4375c24e1cc4eb_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Jun 21 20:27:02 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000026458107/d122752f4dc74a93ea4375c24e1cc4eb_normal.png", "favourites_count": 202, "status": {"in_reply_to_status_id": 666740095454724098, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "dominictarr", "in_reply_to_user_id": 136933779, "in_reply_to_status_id_str": "666740095454724098", "in_reply_to_user_id_str": "136933779", "truncated": false, "id_str": "666759139003990017", "id": 666759139003990017, "text": "@dominictarr @dan_jenkins @fritzvd Yes, Apple doesn't support the WEbRTC standard yet in Safari. Someday, we hope...", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "dominictarr", "id_str": "136933779", "id": 136933779, "indices": [0, 12], "name": "Dominic Tarr"}, {"screen_name": "dan_jenkins", "id_str": "16101889", "id": 16101889, "indices": [13, 25], "name": "Dan Jenkins"}, {"screen_name": "fritzvd", "id_str": "26720376", "id": 26720376, "indices": [26, 34], "name": "Boring Stranger"}]}, "created_at": "Tue Nov 17 23:25:41 +0000 2015", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1537305181, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 471, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1537305181/1433181818", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "752673", "following": false, "friends_count": 3265, "entities": {"description": {"urls": [{"display_url": "ukiyo-e.org", "url": "http://t.co/vc69XXB4fq", "expanded_url": "http://ukiyo-e.org", "indices": [76, 98]}]}, "url": {"urls": [{"display_url": "ejohn.org", "url": "http://t.co/DhxxrmIfa8", "expanded_url": "http://ejohn.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/877581375/8dffa13dd0d000736ca8b34b794cda8f.png", "notifications": false, "profile_sidebar_fill_color": "F2EEBB", "profile_link_color": "224F52", "geo_enabled": true, "followers_count": 213204, "location": "Brooklyn, NY", "screen_name": "jeresig", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 9950, "name": "John Resig", "profile_use_background_image": true, "description": "Creator of @jquery, JavaScript programmer, author, Japanese woodblock nerd (http://t.co/vc69XXB4fq), work at @khanacademy.", "url": "http://t.co/DhxxrmIfa8", "profile_text_color": "272727", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/628273703587975168/YorO7ort_normal.png", "profile_background_color": "FFFFFF", "created_at": "Sat Feb 03 20:17:32 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/628273703587975168/YorO7ort_normal.png", "favourites_count": 2622, "status": {"in_reply_to_status_id": 684370709590749185, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "mrb_bk", "in_reply_to_user_id": 10179552, "in_reply_to_status_id_str": "684370709590749185", "in_reply_to_user_id_str": "10179552", "truncated": false, "id_str": "684384448872361984", "id": 684384448872361984, "text": "@mrb_bk is that in the peacock room?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mrb_bk", "id_str": "10179552", "id": 10179552, "indices": [0, 7], "name": "mrb"}]}, "created_at": "Tue Jan 05 14:42:22 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 752673, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/877581375/8dffa13dd0d000736ca8b34b794cda8f.png", "statuses_count": 9059, "profile_banner_url": "https://pbs.twimg.com/profile_banners/752673/1396970219", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "9533042", "following": false, "friends_count": 786, "entities": {"description": {"urls": [{"display_url": "mozilla.org", "url": "https://t.co/3BL4fnhZut", "expanded_url": "http://mozilla.org", "indices": [45, 68]}, {"display_url": "brave.com", "url": "https://t.co/NV4bmd6vxq", "expanded_url": "https://brave.com/", "indices": [101, 124]}]}, "url": {"urls": [{"display_url": "brendaneich.com", "url": "https://t.co/31gjnOax12", "expanded_url": "http://www.brendaneich.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/179519748/blog-bg.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 50699, "location": "Everywhere JS runs", "screen_name": "BrendanEich", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2899, "name": "BrendanEich", "profile_use_background_image": true, "description": "Brendan Eich invented JavaScript, co-founded https://t.co/3BL4fnhZut, and has founded a new startup, https://t.co/NV4bmd6vxq.", "url": "https://t.co/31gjnOax12", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/603270050556956672/T0mfRsil_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Oct 19 01:09:03 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/603270050556956672/T0mfRsil_normal.png", "favourites_count": 7179, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685595851637534721", "id": 685595851637534721, "text": "I just heard some more terrible and wasteful spending going on at $YHOO", "geo": null, "entities": {"symbols": [{"text": "YHOO", "indices": [66, 71]}], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:56:03 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685596370137296896", "in_reply_to_user_id_str": null, "entities": {"symbols": [{"text": "YHOO", "indices": [83, 88]}], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ericjackson", "id_str": "818071", "id": 818071, "indices": [3, 15], "name": "Eric Jackson"}]}, "created_at": "Fri Jan 08 22:58:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685596370137296896, "text": "RT @ericjackson: I just heard some more terrible and wasteful spending going on at $YHOO", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 9533042, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/179519748/blog-bg.jpg", "statuses_count": 35228, "profile_banner_url": "https://pbs.twimg.com/profile_banners/9533042/1432670315", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15618553", "following": false, "friends_count": 732, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gatherthepeople.com", "url": "https://t.co/9l9PYSHSTI", "expanded_url": "https://gatherthepeople.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000048572233/104e2ce2a8d792fc7923def2deeef06d.png", "notifications": false, "profile_sidebar_fill_color": "E1E3D8", "profile_link_color": "0EB0CD", "geo_enabled": false, "followers_count": 5849, "location": "Norfolk, VA", "screen_name": "sarahjbray", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 391, "name": "Sarah Bray", "profile_use_background_image": true, "description": "Human-centered marketing strategist at @gathertheppl. \u2764\ufe0f writing, design, dev, & you. Side projects: @everybranchis & toast.", "url": "https://t.co/9l9PYSHSTI", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494526865919315968/f86JgG9I_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Sun Jul 27 07:57:12 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494526865919315968/f86JgG9I_normal.jpeg", "favourites_count": 8734, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685577740284760068", "id": 685577740284760068, "text": "Uggh. I hate it when I use a winky face instead of a smiley face by accident. Makes so many conversations unintentionally creepy.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:44:05 +0000 2016", "source": "Buffer", "favorite_count": 6, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15618553, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000048572233/104e2ce2a8d792fc7923def2deeef06d.png", "statuses_count": 18374, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15618553/1431446371", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "435181415", "following": false, "friends_count": 262, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "redhat.com", "url": "http://t.co/zYkyiWoxru", "expanded_url": "http://www.redhat.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591912595/kh0uwwpav0e941hh4hdu.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1241, "location": "", "screen_name": "RHELdevelop", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "RHELdevelop", "profile_use_background_image": true, "description": "", "url": "http://t.co/zYkyiWoxru", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2267097300/l06f4pzvkc62r6h4heyz_normal.png", "profile_background_color": "2C2C2C", "created_at": "Mon Dec 12 19:27:58 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2267097300/l06f4pzvkc62r6h4heyz_normal.png", "favourites_count": 4, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685140373132283904", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wp.me/p2WBxv-1Kyi", "url": "https://t.co/Eovnh7YrfG", "expanded_url": "http://wp.me/p2WBxv-1Kyi", "indices": [31, 54]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 16:46:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685140373132283904, "text": "React.js with Isotope and\u00a0Flux https://t.co/Eovnh7YrfG", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "WordPress.com"}, "default_profile_image": false, "id": 435181415, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591912595/kh0uwwpav0e941hh4hdu.jpeg", "statuses_count": 748, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "21702939", "following": false, "friends_count": 368, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ayena.de", "url": "http://t.co/PPmUCAkPiS", "expanded_url": "http://ayena.de", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "94D487", "geo_enabled": false, "followers_count": 110, "location": "Hamburg, Germany", "screen_name": "tobiasfar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Tobias Markmann", "profile_use_background_image": false, "description": "OSS dev, XMPP, SASL, security, crypto, CompSci, usability, UX, etc.", "url": "http://t.co/PPmUCAkPiS", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2634231247/af02b3e9ab7d867850492242f0339858_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Feb 23 22:40:23 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2634231247/af02b3e9ab7d867850492242f0339858_normal.jpeg", "favourites_count": 539, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685476729222201344", "id": 685476729222201344, "text": "Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #SpellCheckNoHelp", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "SpellCheckNoHelp", "indices": [118, 135]}], "user_mentions": []}, "created_at": "Fri Jan 08 15:02:42 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685478054521651200", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "SpellCheckNoHelp", "indices": [135, 140]}], "user_mentions": [{"screen_name": "willsheward", "id_str": "16362966", "id": 16362966, "indices": [3, 15], "name": "Will Sheward"}]}, "created_at": "Fri Jan 08 15:07:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685478054521651200, "text": "RT @willsheward: Close call with a copywriting error: \"important military messaging\" almost published as \"impotent military massaging\" #Spe\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 21702939, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 1189, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21702939/1422117406", "is_translator": false}, {"time_zone": "Edinburgh", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "18728950", "following": false, "friends_count": 2095, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kateho.com", "url": "http://t.co/c6WNxKhxL9", "expanded_url": "http://www.kateho.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 3184, "location": "Edinburgh, Scotland", "screen_name": "kateho", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 176, "name": "Kate Ho", "profile_use_background_image": false, "description": "All about User Experience. Designs mobile apps. Builds kids games. Love geeking with the arts. Head of Product at @mygovscot", "url": "http://t.co/c6WNxKhxL9", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/451637989467119616/Qjrmjbpt_normal.png", "profile_background_color": "000000", "created_at": "Wed Jan 07 17:18:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451637989467119616/Qjrmjbpt_normal.png", "favourites_count": 340, "status": {"in_reply_to_status_id": 685527764666023940, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "redowle", "in_reply_to_user_id": 2279940315, "in_reply_to_status_id_str": "685527764666023940", "in_reply_to_user_id_str": "2279940315", "truncated": false, "id_str": "685562519843373056", "id": 685562519843373056, "text": "@redowle @grahambeedie check you out being a philosopher!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "redowle", "id_str": "2279940315", "id": 2279940315, "indices": [0, 8], "name": "rachel dowle"}, {"screen_name": "grahambeedie", "id_str": "20667729", "id": 20667729, "indices": [9, 22], "name": "Graham Beedie"}]}, "created_at": "Fri Jan 08 20:43:36 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18728950, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 3071, "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "25798693", "following": false, "friends_count": 328, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hilaryroberts.co.uk", "url": "http://t.co/kZA4hPOy7m", "expanded_url": "http://www.hilaryroberts.co.uk", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/783108438/ebfc698e202070d0533fc87104057ce7.png", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1075, "location": "", "screen_name": "hilcsr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 49, "name": "Hilary Roberts", "profile_use_background_image": true, "description": "Product Manager @Skyscanner. Wife to @philip_roberts. General enthusiasm.", "url": "http://t.co/kZA4hPOy7m", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678141690834780160/h0gxn2RA_normal.jpg", "profile_background_color": "EEEEEE", "created_at": "Sun Mar 22 08:40:41 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678141690834780160/h0gxn2RA_normal.jpg", "favourites_count": 154, "status": {"in_reply_to_status_id": 566370581927714816, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "hilcsr", "in_reply_to_user_id": 25798693, "in_reply_to_status_id_str": "566370581927714816", "in_reply_to_user_id_str": "25798693", "truncated": false, "id_str": "678141033792847872", "id": 678141033792847872, "text": "2015 in review: Belfast | Budapest | Dublin | Inverness | Kyoto | London | Manchester | Oxford | Seattle | Sofia | Strasbourg | Tokyo.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Dec 19 09:13:16 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 25798693, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/783108438/ebfc698e202070d0533fc87104057ce7.png", "statuses_count": 2576, "profile_banner_url": "https://pbs.twimg.com/profile_banners/25798693/1450516588", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14883693", "following": false, "friends_count": 216, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000005250560/b4ae108d319a0a71fe4743fe1f8234f6.jpeg", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "FF7502", "geo_enabled": true, "followers_count": 410, "location": "", "screen_name": "babyfro", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Rachel Baldwin", "profile_use_background_image": true, "description": "Stuff goes here.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/647197621082198016/CSY6U7IL_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Fri May 23 16:42:28 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/647197621082198016/CSY6U7IL_normal.jpg", "favourites_count": 188, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684821399475630080", "id": 684821399475630080, "text": "Importing and tossing CD's. So sick of random clutter. Who needs spring cleaning when you can have a Winter Wash!!!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 19:38:39 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14883693, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000005250560/b4ae108d319a0a71fe4743fe1f8234f6.jpeg", "statuses_count": 3397, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14883693/1443145419", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14518875", "following": false, "friends_count": 461, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fitnerd.amac.me", "url": "http://t.co/uSmPFCWpb4", "expanded_url": "http://fitnerd.amac.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 699, "location": "Sandpoint, ID", "screen_name": "aaronmccall", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 58, "name": "Aaron McCall", "profile_use_background_image": true, "description": "Husband, father, maker, lifter, foodie. Love & minister with @PastorAmberDawn. Work @andyet. Live in @CityOfBoise.", "url": "http://t.co/uSmPFCWpb4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/585236377748443136/foTlvySa_normal.jpg", "profile_background_color": "131516", "created_at": "Thu Apr 24 22:29:22 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585236377748443136/foTlvySa_normal.jpg", "favourites_count": 531, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "680186676124237824", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXCCLZHWQAAFnWM.jpg", "type": "photo", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/CXCCLZHWQAAFnWM.jpg", "display_url": "pic.twitter.com/woeqDEPfa6", "id_str": "680186675964821504", "expanded_url": "http://twitter.com/aaronmccall/status/680186676124237824/photo/1", "id": 680186675964821504, "url": "https://t.co/woeqDEPfa6"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Dec 25 00:41:55 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "nl", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 680186676124237824, "text": "Winter Wonderland it is! https://t.co/woeqDEPfa6", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "IFTTT"}, "default_profile_image": false, "id": 14518875, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5031, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14518875/1437492841", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "15810455", "following": false, "friends_count": 99, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "latentflip.com", "url": "http://t.co/D5e7NnDsG4", "expanded_url": "http://www.latentflip.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3159, "location": "Edinburgh", "screen_name": "philip_roberts", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 184, "name": "Philip Roberts", "profile_use_background_image": false, "description": "JavaScripter and ethicist with my friends at @andyet, husband to @hilcsr.", "url": "http://t.co/D5e7NnDsG4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657700482220216320/UfMaYL1q_normal.jpg", "profile_background_color": "022330", "created_at": "Mon Aug 11 17:04:40 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657700482220216320/UfMaYL1q_normal.jpg", "favourites_count": 2494, "status": {"retweet_count": 0, "in_reply_to_user_id": 25183606, "possibly_sensitive": false, "id_str": "685549648233263104", "in_reply_to_user_id_str": "25183606", "entities": {"symbols": [], "urls": [{"display_url": "latentflip.com/emergency-jasp\u2026", "url": "https://t.co/u5vYJgOHP2", "expanded_url": "http://latentflip.com/emergency-jasper/", "indices": [18, 41]}], "hashtags": [], "user_mentions": [{"screen_name": "Charlotteis", "id_str": "25183606", "id": 25183606, "indices": [0, 12], "name": "console.warn()"}]}, "created_at": "Fri Jan 08 19:52:27 +0000 2016", "favorited": false, "in_reply_to_status_id": 685549471275597824, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/7ae9e2f2ff7a87cd.json", "country": "United Kingdom", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-3.3285119, 55.894729], [-3.077505, 55.894729], [-3.077505, 55.991662], [-3.3285119, 55.991662]]], "type": "Polygon"}, "full_name": "Edinburgh, Scotland", "contained_within": [], "country_code": "GB", "id": "7ae9e2f2ff7a87cd", "name": "Edinburgh"}, "in_reply_to_screen_name": "Charlotteis", "in_reply_to_status_id_str": "685549471275597824", "truncated": false, "id": 685549648233263104, "text": "@Charlotteis oops https://t.co/u5vYJgOHP2", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 15810455, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 23882, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15810455/1385903051", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "622564842", "following": false, "friends_count": 21, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "liftsecurity.io", "url": "http://t.co/SrWJg242Xh", "expanded_url": "http://liftsecurity.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/597700721/8vp76usrc2cf6ko1ftdq.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B9BDB", "geo_enabled": false, "followers_count": 677, "location": "Richland, WA", "screen_name": "LiftSecurity", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "^lift security", "profile_use_background_image": true, "description": "We're here to guide your team in building secure web applications. Security Assessments, Training, and Consulting.", "url": "http://t.co/SrWJg242Xh", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/497855749989466112/uuluTvQ__normal.png", "profile_background_color": "FAFAFA", "created_at": "Sat Jun 30 04:03:28 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/497855749989466112/uuluTvQ__normal.png", "favourites_count": 127, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683737775858794497", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "it.slashdot.org/story/16/01/03\u2026", "url": "https://t.co/nT7CXrmKCP", "expanded_url": "http://it.slashdot.org/story/16/01/03/1541254/first-nodejs-powered-ransomware-discovered?utm_source=slashdot&utm_medium=twitter", "indices": [49, 72]}], "hashtags": [], "user_mentions": []}, "created_at": "Sun Jan 03 19:52:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683737775858794497, "text": "The First Node.js Powered Ransomware Discovered. https://t.co/nT7CXrmKCP", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 622564842, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/597700721/8vp76usrc2cf6ko1ftdq.jpeg", "statuses_count": 275, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "41294568", "following": false, "friends_count": 60, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyet.com", "url": "https://t.co/SteW4uB7tS", "expanded_url": "http://andyet.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/50448757/headertwitter3.jpg", "notifications": false, "profile_sidebar_fill_color": "DDDDDD", "profile_link_color": "3B9BDB", "geo_enabled": true, "followers_count": 4489, "location": "Richland, WA", "screen_name": "andyet", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 265, "name": "&yet", "profile_use_background_image": true, "description": "We create & consult from dream to deploy. We're the kind & efficient sort of perfectionists.\n\nUX + JS + Node + Realtime\n\n@liftsecurity @usetalky @nodesecurity", "url": "https://t.co/SteW4uB7tS", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/630588077510033408/YoZIkOzS_normal.png", "profile_background_color": "FAFAFA", "created_at": "Wed May 20 04:18:08 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "555555", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/630588077510033408/YoZIkOzS_normal.png", "favourites_count": 921, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684857661091790848", "id": 684857661091790848, "text": "Hallway talks today - Star Wars, reading levels, the one cow coffee mug in the office, teachers, and upcoming art shows.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 22:02:45 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 8, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 41294568, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/50448757/headertwitter3.jpg", "statuses_count": 2468, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41294568/1447448326", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "123851638", "following": false, "friends_count": 85, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kismith.co.uk", "url": "http://t.co/46yZ8T0uTP", "expanded_url": "http://kismith.co.uk", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 188, "location": "", "screen_name": "definitivekev", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Kevin Smith", "profile_use_background_image": true, "description": "XMPP developer / author, Swift, Psi, XMPP: The Definitive Guide. Techie side of @KevTWondersheep", "url": "http://t.co/46yZ8T0uTP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/758031559/avatar-me2_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Mar 17 12:08:32 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/758031559/avatar-me2_normal.png", "favourites_count": 3, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "679707901062180865", "id": 679707901062180865, "text": "Ah yes, that \"But the Internet said this should work!\" moment when trying to write CSS. Flexbox: 1, Kev: 0.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 23 16:59:26 +0000 2015", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 123851638, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 190, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "47908980", "following": false, "friends_count": 399, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ehsanakhgari.org", "url": "http://t.co/k2Dqta2KPz", "expanded_url": "http://ehsanakhgari.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": false, "followers_count": 927, "location": "Toronto", "screen_name": "ehsanakhgari", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "Ehsan Akhgari", "profile_use_background_image": true, "description": "Mozilla hacker", "url": "http://t.co/k2Dqta2KPz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/522494268812701696/Pf-iJWP8_normal.jpeg", "profile_background_color": "709397", "created_at": "Wed Jun 17 09:31:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522494268812701696/Pf-iJWP8_normal.jpeg", "favourites_count": 13, "status": {"in_reply_to_status_id": 685598451988561921, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ehsanakhgari", "in_reply_to_user_id": 47908980, "in_reply_to_status_id_str": "685598451988561921", "in_reply_to_user_id_str": "47908980", "truncated": false, "id_str": "685598842050482177", "id": 685598842050482177, "text": "@inexorabletash @mikewest @metromoxie @jaffathecake @wanderview @ericlaw IIRC our number is 0.05% of page loads.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "inexorabletash", "id_str": "15871491", "id": 15871491, "indices": [0, 15], "name": "Joshua Bell"}, {"screen_name": "mikewest", "id_str": "63163", "id": 63163, "indices": [16, 25], "name": "Mike West"}, {"screen_name": "metromoxie", "id_str": "42462490", "id": 42462490, "indices": [26, 37], "name": "Joel Weinberger"}, {"screen_name": "jaffathecake", "id_str": "15390783", "id": 15390783, "indices": [38, 51], "name": "Jake Archibald"}, {"screen_name": "wanderview", "id_str": "362469218", "id": 362469218, "indices": [52, 63], "name": "Ben Kelly"}, {"screen_name": "ericlaw", "id_str": "5725652", "id": 5725652, "indices": [64, 72], "name": "Eric Lawrence"}]}, "created_at": "Fri Jan 08 23:07:56 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 47908980, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 393, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "318908901", "following": false, "friends_count": 99, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitch.tv/kraftypants", "url": "http://t.co/vyQ8oj2519", "expanded_url": "http://www.twitch.tv/kraftypants", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": false, "followers_count": 164, "location": "Tri-Cities, WA", "screen_name": "krcaputo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Katie", "profile_use_background_image": true, "description": "bad gamer. artist. cat lady. food lover.", "url": "http://t.co/vyQ8oj2519", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/483000980468817920/65pjX-0M_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Fri Jun 17 07:35:31 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/483000980468817920/65pjX-0M_normal.jpeg", "favourites_count": 354, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684903853343551488", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BAOAE3wiPch/", "url": "https://t.co/iNHTm18UQD", "expanded_url": "https://www.instagram.com/p/BAOAE3wiPch/", "indices": [10, 33]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 01:06:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684903853343551488, "text": "Snort lol https://t.co/iNHTm18UQD", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 318908901, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 2099, "profile_banner_url": "https://pbs.twimg.com/profile_banners/318908901/1403991399", "is_translator": false}, {"time_zone": "America/Los_Angeles", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13038122", "following": false, "friends_count": 109, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/464171753149722625/D1IzAztF.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "080808", "geo_enabled": false, "followers_count": 183, "location": "", "screen_name": "madelmund", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Mat Adelmund", "profile_use_background_image": true, "description": "MTG fan (username Flashtastica on Pucatrade), sports fan, neature fan.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1815556860/AFB1FF81-6BC1-49DB-B62B-A2DBF2EE9986_normal", "profile_background_color": "1A1B1F", "created_at": "Mon Feb 04 07:06:47 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1815556860/AFB1FF81-6BC1-49DB-B62B-A2DBF2EE9986_normal", "favourites_count": 1232, "status": {"in_reply_to_status_id": 685530200675872768, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MTGatTCGplayer", "in_reply_to_user_id": 54425885, "in_reply_to_status_id_str": "685530200675872768", "in_reply_to_user_id_str": "54425885", "truncated": false, "id_str": "685536826401009664", "id": 685536826401009664, "text": "@MTGatTCGplayer if you're wondering why you lose followers, look no further than these annoying posts.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MTGatTCGplayer", "id_str": "54425885", "id": 54425885, "indices": [0, 15], "name": "Magic.TCGplayer.com"}]}, "created_at": "Fri Jan 08 19:01:30 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13038122, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/464171753149722625/D1IzAztF.jpeg", "statuses_count": 4621, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13038122/1429241732", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "10794832", "following": false, "friends_count": 109, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jkprovideo.com", "url": "https://t.co/m1VXCvKpr8", "expanded_url": "http://jkprovideo.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2047112/spider-guarding-eggs-683251-xl.jpg", "notifications": false, "profile_sidebar_fill_color": "EEEECC", "profile_link_color": "218754", "geo_enabled": true, "followers_count": 369, "location": "eccenTriCities, Washington", "screen_name": "junsten", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 20, "name": "easily distracte", "profile_use_background_image": false, "description": "Personal Twitter account of Justin Brault. Opinions expressed are not those of my company, its parent company or my parents.", "url": "https://t.co/m1VXCvKpr8", "profile_text_color": "101041", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667533921840566277/feExkf3L_normal.jpg", "profile_background_color": "101041", "created_at": "Sun Dec 02 22:05:59 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "101041", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667533921840566277/feExkf3L_normal.jpg", "favourites_count": 473, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685577162687053824", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/TriCityHerald/\u2026", "url": "https://t.co/5yTImEYe01", "expanded_url": "https://twitter.com/TriCityHerald/status/685576485244030976", "indices": [67, 90]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:41:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685577162687053824, "text": "I misread \u201cKennewick man\u201d as \u201cKennewick Man\u201d Every. Single. Time. \nhttps://t.co/5yTImEYe01", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 10794832, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2047112/spider-guarding-eggs-683251-xl.jpg", "statuses_count": 8288, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "12811302", "following": false, "friends_count": 917, "entities": {"description": {"urls": [{"display_url": "on.fb.me/ZN1M85", "url": "http://t.co/2nrtjFXE5G", "expanded_url": "http://on.fb.me/ZN1M85", "indices": [134, 156]}]}, "url": {"urls": [{"display_url": "facebook.com/christopher.bl\u2026", "url": "https://t.co/2uv4GOkTL6", "expanded_url": "https://www.facebook.com/christopher.blizzard", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "D4C4B9", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 8637, "location": "Santa Clara, CA", "screen_name": "chrisblizzard", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 421, "name": "Christopher Blizzard", "profile_use_background_image": false, "description": "Developer Relations Clown at Facebook. Lemons racer. Former Mozillian. Lots of tech and cats doing funny things. Also on Facebook: http://t.co/2nrtjFXE5G", "url": "https://t.co/2uv4GOkTL6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/421244098/blizz-head-sq-96_normal.png", "profile_background_color": "4A4F68", "created_at": "Tue Jan 29 02:13:18 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "5C5C5C", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/421244098/blizz-head-sq-96_normal.png", "favourites_count": 2025, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685582539432460289", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "vine.co/v/OjqeYWWpVWK", "url": "https://t.co/66CLkgwSmz", "expanded_url": "https://vine.co/v/OjqeYWWpVWK", "indices": [91, 114]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:03:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685582539432460289, "text": "When I want to focus on quality work I leave this running in the background as a reminder: https://t.co/66CLkgwSmz", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 12811302, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 23505, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12811302/1397768573", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16130049", "following": false, "friends_count": 317, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 203, "location": "\u00dcT: 41.39564,-82.15921", "screen_name": "jslagle", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "jslagle", "profile_use_background_image": true, "description": "Problem solving nerd; infrastructure guy. Trying to bring technology to whatever he can, including fitness and the traditional enterprise.", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1276325677/IMG_2111-resize_normal.JPG", "profile_background_color": "1A1B1F", "created_at": "Thu Sep 04 15:11:08 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1276325677/IMG_2111-resize_normal.JPG", "favourites_count": 7, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "sjonsson", "in_reply_to_user_id": 14366907, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "14366907", "truncated": false, "id_str": "685565535203926016", "id": 685565535203926016, "text": "@sjonsson You should have shared your MFP etc username :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "sjonsson", "id_str": "14366907", "id": 14366907, "indices": [0, 9], "name": "Stan J\u00f3nsson"}]}, "created_at": "Fri Jan 08 20:55:35 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16130049, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 1507, "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "118345831", "following": false, "friends_count": 9174, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "philippe.lewin.me", "url": "http://t.co/flKLkiL7fj", "expanded_url": "http://philippe.lewin.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "8F5536", "geo_enabled": true, "followers_count": 10735, "location": "Paris, France", "screen_name": "PhilippeLewin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 168, "name": "Philippe Lewin", "profile_use_background_image": true, "description": "May share things about IT, dev, ops, data *, monitoring and security.\n\n@parismonitoring", "url": "http://t.co/flKLkiL7fj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655845220727324672/vvvFJhGq_normal.jpg", "profile_background_color": "8B542B", "created_at": "Sun Feb 28 11:11:37 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655845220727324672/vvvFJhGq_normal.jpg", "favourites_count": 442, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684261361082339328", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1ZL3tjM", "url": "https://t.co/fmPFnGNJUY", "expanded_url": "http://bit.ly/1ZL3tjM", "indices": [34, 57]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 06:33:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684261361082339328, "text": "Permanent Identifiers for the Web https://t.co/fmPFnGNJUY", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 118345831, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 1190, "profile_banner_url": "https://pbs.twimg.com/profile_banners/118345831/1420119559", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "12996602", "following": false, "friends_count": 238, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2042112/Bus_20Excursion_20_1.JPG", "notifications": false, "profile_sidebar_fill_color": "F385A9", "profile_link_color": "060BD7", "geo_enabled": true, "followers_count": 214, "location": "", "screen_name": "jadelmund", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Julie Adelmund", "profile_use_background_image": false, "description": "CPA for real. Tax Preparer extrodinaire. Wife of @madelmund; mother of 3 (dogs). Follower of Christ.", "url": null, "profile_text_color": "D7064A", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1302404708/Screen_shot_2011-04-06_at_2.41.25_PM_normal.png", "profile_background_color": "F385A9", "created_at": "Sun Feb 03 01:31:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D7064A", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302404708/Screen_shot_2011-04-06_at_2.41.25_PM_normal.png", "favourites_count": 632, "status": {"in_reply_to_status_id": 675889949888024576, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MBrault", "in_reply_to_user_id": 27579777, "in_reply_to_status_id_str": "675889949888024576", "in_reply_to_user_id_str": "27579777", "truncated": false, "id_str": "676062488035627009", "id": 676062488035627009, "text": "@MBrault @lalahods gorgeous!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MBrault", "id_str": "27579777", "id": 27579777, "indices": [0, 8], "name": "Michelle"}, {"screen_name": "lalahods", "id_str": "227551595", "id": 227551595, "indices": [9, 18], "name": "Lady Hodo"}]}, "created_at": "Sun Dec 13 15:33:52 +0000 2015", "source": "Twitter for iPad", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 12996602, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2042112/Bus_20Excursion_20_1.JPG", "statuses_count": 1726, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12996602/1421597549", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "34368005", "following": false, "friends_count": 344, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 125, "location": "", "screen_name": "jessecpeterson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Jesse Peterson", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Apr 22 19:21:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "favourites_count": 15, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684537994586398720", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/marczak/status\u2026", "url": "https://t.co/TO0vTofgNn", "expanded_url": "https://twitter.com/marczak/status/684536561401245696", "indices": [113, 136]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 00:52:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684537994586398720, "text": "I suppose for some people for some movies the studio/intro jingle just is *that* flick. Tristar does that for me https://t.co/TO0vTofgNn", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": true, "id": 34368005, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 164, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "97506932", "following": false, "friends_count": 104, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tilanus.com", "url": "http://t.co/60VzbWrfaR", "expanded_url": "http://www.tilanus.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/574846490083860482/Ppai_wXN.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "520303", "geo_enabled": false, "followers_count": 162, "location": "Pijnacker", "screen_name": "winfriedtilanus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 25, "name": "Winfried Tilanus", "profile_use_background_image": true, "description": "Thinking is a knife. A good cut enables action. Knowledge tells where to cut, clean cuts come with experience. But in the end it boils down to dare to cut.", "url": "http://t.co/60VzbWrfaR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579666619/winfried_normal.jpg", "profile_background_color": "BD6000", "created_at": "Thu Dec 17 19:19:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579666619/winfried_normal.jpg", "favourites_count": 23, "status": {"in_reply_to_status_id": 685033853401063424, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "zeank", "in_reply_to_user_id": 2898431, "in_reply_to_status_id_str": "685033853401063424", "in_reply_to_user_id_str": "2898431", "truncated": false, "id_str": "685036295190646784", "id": 685036295190646784, "text": "@zeank when reading @stewartbaker I also first thought it was @theonion, but he sincerely shows us the right direction!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "zeank", "id_str": "2898431", "id": 2898431, "indices": [0, 6], "name": "stefan strigler"}, {"screen_name": "stewartbaker", "id_str": "11484172", "id": 11484172, "indices": [20, 33], "name": "stewartbaker"}, {"screen_name": "TheOnion", "id_str": "14075928", "id": 14075928, "indices": [62, 71], "name": "The Onion"}]}, "created_at": "Thu Jan 07 09:52:34 +0000 2016", "source": "Choqok", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 97506932, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/574846490083860482/Ppai_wXN.png", "statuses_count": 1064, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "28593671", "following": false, "friends_count": 186, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 48, "location": "Waterford, Ireland", "screen_name": "weili1984", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Wei Li", "profile_use_background_image": true, "description": "Software Engineer @FeedHenry", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/512367356933578752/YQvZix6G_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Apr 03 16:10:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/512367356933578752/YQvZix6G_normal.jpeg", "favourites_count": 19, "status": {"retweet_count": 4, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 4, "place": null, "in_reply_to_screen_name": "jasonmadigan", "in_reply_to_user_id": 8654152, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "8654152", "truncated": false, "id_str": "675426132502687745", "id": 675426132502687745, "text": "@jasonmadigan #jasonstag2015", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "jasonstag2015", "indices": [14, 28]}], "user_mentions": [{"screen_name": "jasonmadigan", "id_str": "8654152", "id": 8654152, "indices": [0, 13], "name": "Jason Madigan"}]}, "created_at": "Fri Dec 11 21:25:13 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "in_reply_to_user_id": null, "id_str": "675426461533229057", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "jasonstag2015", "indices": [30, 44]}], "user_mentions": [{"screen_name": "ialanmoran", "id_str": "353861082", "id": 353861082, "indices": [3, 14], "name": "Alan Moran"}, {"screen_name": "jasonmadigan", "id_str": "8654152", "id": 8654152, "indices": [16, 29], "name": "Jason Madigan"}]}, "created_at": "Fri Dec 11 21:26:31 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675426461533229057, "text": "RT @ialanmoran: @jasonmadigan #jasonstag2015", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 28593671, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 21, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28593671/1410994647", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "23238890", "following": false, "friends_count": 298, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "charles.stanho.pe", "url": "http://t.co/xkzuqVonai", "expanded_url": "http://charles.stanho.pe", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9C481D", "geo_enabled": false, "followers_count": 83, "location": "Portland, OR", "screen_name": "cstanhope", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Charles Stanhope", "profile_use_background_image": false, "description": "Software/hardware developer interested in programming languages, open platforms, art, craft, diy, learning, life etc. Trying hard to be part of the solution.", "url": "http://t.co/xkzuqVonai", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684168704196644864/8iC7wstY_normal.jpg", "profile_background_color": "0A703D", "created_at": "Sat Mar 07 21:47:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684168704196644864/8iC7wstY_normal.jpg", "favourites_count": 3712, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "JohnLegere", "in_reply_to_user_id": 1394399438, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "1394399438", "truncated": false, "id_str": "685223070018080769", "id": 685223070018080769, "text": "@JohnLegere EFF supporter and a T-Mobile customer since my first cell phone, but you just made me regret the latter. #WeAreEFF", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "WeAreEFF", "indices": [117, 126]}], "user_mentions": [{"screen_name": "JohnLegere", "id_str": "1394399438", "id": 1394399438, "indices": [0, 11], "name": "John Legere"}]}, "created_at": "Thu Jan 07 22:14:45 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 23238890, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 2903, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "90916703", "following": false, "friends_count": 150, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 346, "location": "Kansas City, MO", "screen_name": "michellebrush", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "Michelle Brush", "profile_use_background_image": false, "description": "Math geek leading teams that bring in big data for @cernereng, chapter leader for @gdikc, and organizer for @midwestio.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/625000596383227908/WH7hhHsO_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Nov 18 17:33:06 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625000596383227908/WH7hhHsO_normal.jpg", "favourites_count": 214, "status": {"retweet_count": 497, "retweeted_status": {"retweet_count": 497, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "675354789346156545", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/GmGcqB5292", "url": "https://t.co/GmGcqB5292", "expanded_url": "http://twitter.com/lennyzeltser/status/675354789346156545/photo/1", "indices": [16, 39]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Dec 11 16:41:43 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675354789346156545, "text": "Risk assessment https://t.co/GmGcqB5292", "coordinates": null, "retweeted": false, "favorite_count": 414, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "675711078496514049", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/GmGcqB5292", "url": "https://t.co/GmGcqB5292", "expanded_url": "http://twitter.com/lennyzeltser/status/675354789346156545/photo/1", "indices": [34, 57]}], "hashtags": [], "user_mentions": [{"screen_name": "lennyzeltser", "id_str": "14780493", "id": 14780493, "indices": [3, 16], "name": "Lenny Zeltser"}]}, "created_at": "Sat Dec 12 16:17:29 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675711078496514049, "text": "RT @lennyzeltser: Risk assessment https://t.co/GmGcqB5292", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 90916703, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 210, "profile_banner_url": "https://pbs.twimg.com/profile_banners/90916703/1402448313", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Beer, Coffee, Ruby, Systems guy, linux", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "166223307", "profile_image_url": "http://pbs.twimg.com/profile_images/459028643323207681/MhUvSPKX_normal.jpeg", "friends_count": 124, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Jul 13 16:55:37 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 532, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/459028643323207681/MhUvSPKX_normal.jpeg", "favourites_count": 506, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 14, "following": false, "default_profile_image": false, "id": 166223307, "blocked_by": false, "name": "Mr. WolfOps", "location": "Seattle, WA", "screen_name": "ianderson__", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "429366017", "following": false, "friends_count": 162, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "csa-net.dk", "url": "http://t.co/wGwo3r3kww", "expanded_url": "http://csa-net.dk", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 66, "location": "Denmark", "screen_name": "ClausAlboege", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Claus Alb\u00f8ge", "profile_use_background_image": true, "description": "Operations, Deployment, Automation, Cloud, Security", "url": "http://t.co/wGwo3r3kww", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2506933106/h2uvo4vlolpxn9t0mk9m_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 05 21:53:51 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2506933106/h2uvo4vlolpxn9t0mk9m_normal.jpeg", "favourites_count": 398, "status": {"retweet_count": 5, "retweeted_status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684858483464880128", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "opensourcedays.org", "url": "https://t.co/2KtIu0PjtD", "expanded_url": "https://opensourcedays.org", "indices": [117, 140]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 22:06:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684858483464880128, "text": "Psssssttttt... Open Source Days has a new team, and they are doing a conference the 27th of February in Copenhagen - https://t.co/2KtIu0PjtD", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684871299324342274", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "opensourcedays.org", "url": "https://t.co/2KtIu0PjtD", "expanded_url": "https://opensourcedays.org", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "ahfaeroey", "id_str": "29861819", "id": 29861819, "indices": [3, 13], "name": "Alexander F\u00e6r\u00f8y"}]}, "created_at": "Wed Jan 06 22:56:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684871299324342274, "text": "RT @ahfaeroey: Psssssttttt... Open Source Days has a new team, and they are doing a conference the 27th of February in Copenhagen - https:/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 429366017, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 463, "profile_banner_url": "https://pbs.twimg.com/profile_banners/429366017/1398760147", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14960321", "following": false, "friends_count": 327, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tim.freunds.net", "url": "http://t.co/T3vKb1MjKS", "expanded_url": "http://tim.freunds.net", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 186, "location": "Lancaster, PA", "screen_name": "timfreund", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Tim Freund", "profile_use_background_image": true, "description": "Programmer, home renovator, eater of good food.", "url": "http://t.co/T3vKb1MjKS", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/589988064988016641/9y7BipD3_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat May 31 03:18:16 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/589988064988016641/9y7BipD3_normal.jpg", "favourites_count": 98, "status": {"in_reply_to_status_id": 684813481196040192, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "RyanMelton", "in_reply_to_user_id": 126011278, "in_reply_to_status_id_str": "684813481196040192", "in_reply_to_user_id_str": "126011278", "truncated": false, "id_str": "684815216589180928", "id": 684815216589180928, "text": "@RyanMelton congrats, Ryan!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "RyanMelton", "id_str": "126011278", "id": 126011278, "indices": [0, 11], "name": "Ryan Melton"}]}, "created_at": "Wed Jan 06 19:14:05 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14960321, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 484, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "180062994", "following": false, "friends_count": 1153, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649260006/qzzejvgx06re9pjqjda1.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2EDB6B", "geo_enabled": false, "followers_count": 383, "location": "Louisville, Kentucky", "screen_name": "Mr_KNE", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Mr_KNE", "profile_use_background_image": true, "description": "Linux and Science enthusiast. Does not auto-follow.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2569221673/tfpochuonbr5cyxp5t3n_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Aug 18 19:10:40 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2569221673/tfpochuonbr5cyxp5t3n_normal.png", "favourites_count": 938, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609326015344641", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/dailykos/statu\u2026", "url": "https://t.co/Ra3tOfN2Q6", "expanded_url": "https://twitter.com/dailykos/status/685605890251161600", "indices": [86, 109]}], "hashtags": [{"text": "THEBEST", "indices": [76, 84]}], "user_mentions": [{"screen_name": "realDonaldTrump", "id_str": "25073877", "id": 25073877, "indices": [51, 67], "name": "Donald J. Trump"}]}, "created_at": "Fri Jan 08 23:49:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609326015344641, "text": "You forgot the noise canceling headphones for when @realDonaldTrump speaks. #THEBEST https://t.co/Ra3tOfN2Q6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 180062994, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649260006/qzzejvgx06re9pjqjda1.jpeg", "statuses_count": 6108, "profile_banner_url": "https://pbs.twimg.com/profile_banners/180062994/1399637026", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "31369018", "following": false, "friends_count": 525, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362231250/nedroid_tumblr_lrfqzmbbfv1qhfu4ho1_1280.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 170, "location": "", "screen_name": "barry_oneill", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Barry O'Neill", "profile_use_background_image": true, "description": "bottles and cans just clap your hands", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/563910610736279554/HEBKN9eY_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Apr 15 08:29:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563910610736279554/HEBKN9eY_normal.png", "favourites_count": 64, "status": {"retweet_count": 64, "retweeted_status": {"retweet_count": 64, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684828660973580288", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 254, "resize": "fit"}, "medium": {"w": 600, "h": 449, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 539, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", "type": "photo", "indices": [49, 72], "media_url": "http://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", "display_url": "pic.twitter.com/NSYWRbhGzi", "id_str": "684828643193962496", "expanded_url": "http://twitter.com/BrilliantMaps/status/684828660973580288/photo/1", "id": 684828643193962496, "url": "https://t.co/NSYWRbhGzi"}], "symbols": [], "urls": [{"display_url": "brilliantmaps.com/syria-situatio\u2026", "url": "https://t.co/GZO7sFiARi", "expanded_url": "http://brilliantmaps.com/syria-situation/", "indices": [25, 48]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 20:07:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684828660973580288, "text": "The Situation in Syria - https://t.co/GZO7sFiARi https://t.co/NSYWRbhGzi", "coordinates": null, "retweeted": false, "favorite_count": 33, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684884559314448385", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 254, "resize": "fit"}, "medium": {"w": 600, "h": 449, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 539, "resize": "fit"}}, "source_status_id_str": "684828660973580288", "media_url": "http://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", "source_user_id_str": "2751434132", "id_str": "684828643193962496", "id": 684828643193962496, "media_url_https": "https://pbs.twimg.com/media/CYEABcmWwAAG1ON.jpg", "type": "photo", "indices": [68, 91], "source_status_id": 684828660973580288, "source_user_id": 2751434132, "display_url": "pic.twitter.com/NSYWRbhGzi", "expanded_url": "http://twitter.com/BrilliantMaps/status/684828660973580288/photo/1", "url": "https://t.co/NSYWRbhGzi"}], "symbols": [], "urls": [{"display_url": "brilliantmaps.com/syria-situatio\u2026", "url": "https://t.co/GZO7sFiARi", "expanded_url": "http://brilliantmaps.com/syria-situation/", "indices": [44, 67]}], "hashtags": [], "user_mentions": [{"screen_name": "BrilliantMaps", "id_str": "2751434132", "id": 2751434132, "indices": [3, 17], "name": "Brilliant Maps"}]}, "created_at": "Wed Jan 06 23:49:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684884559314448385, "text": "RT @BrilliantMaps: The Situation in Syria - https://t.co/GZO7sFiARi https://t.co/NSYWRbhGzi", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Fenix for Android"}, "default_profile_image": false, "id": 31369018, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362231250/nedroid_tumblr_lrfqzmbbfv1qhfu4ho1_1280.jpg", "statuses_count": 3310, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31369018/1352224614", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "35648936", "following": false, "friends_count": 572, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/854384889/03791c673b51f79c4aa20ee15dbfaeac.jpeg", "notifications": false, "profile_sidebar_fill_color": "12291F", "profile_link_color": "786A55", "geo_enabled": true, "followers_count": 181, "location": "San Mateo, CA", "screen_name": "sdoumbouya", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "Sekou Doumbouya", "profile_use_background_image": true, "description": "Systems Engineer that love automation", "url": null, "profile_text_color": "547B61", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000627467794/76a096f69384f6a262fa075da554687d_normal.jpeg", "profile_background_color": "030302", "created_at": "Mon Apr 27 02:54:32 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "3C5449", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000627467794/76a096f69384f6a262fa075da554687d_normal.jpeg", "favourites_count": 150, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684811777368961025", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "clusterhq.com/2015/12/16/int\u2026", "url": "https://t.co/qTx7UKR3Wp", "expanded_url": "https://clusterhq.com/2015/12/16/introducing-mesos-flocker/", "indices": [63, 86]}], "hashtags": [{"text": "mesos", "indices": [5, 11]}, {"text": "SDS", "indices": [47, 51]}, {"text": "docker", "indices": [87, 94]}, {"text": "mesosphere", "indices": [95, 106]}, {"text": "databases", "indices": [107, 117]}], "user_mentions": []}, "created_at": "Wed Jan 06 19:00:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684811777368961025, "text": "Love #mesos? Checkout Mesos-Flocker: Seamless #SDS for Mesos https://t.co/qTx7UKR3Wp #docker #mesosphere #databases", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685156667198169088", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "clusterhq.com/2015/12/16/int\u2026", "url": "https://t.co/qTx7UKR3Wp", "expanded_url": "https://clusterhq.com/2015/12/16/introducing-mesos-flocker/", "indices": [78, 101]}], "hashtags": [{"text": "mesos", "indices": [20, 26]}, {"text": "SDS", "indices": [62, 66]}, {"text": "docker", "indices": [102, 109]}, {"text": "mesosphere", "indices": [110, 121]}, {"text": "databases", "indices": [122, 132]}], "user_mentions": [{"screen_name": "ClusterHQ", "id_str": "2571577512", "id": 2571577512, "indices": [3, 13], "name": "ClusterHQ"}]}, "created_at": "Thu Jan 07 17:50:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685156667198169088, "text": "RT @ClusterHQ: Love #mesos? Checkout Mesos-Flocker: Seamless #SDS for Mesos https://t.co/qTx7UKR3Wp #docker #mesosphere #databases", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 35648936, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/854384889/03791c673b51f79c4aa20ee15dbfaeac.jpeg", "statuses_count": 1102, "profile_banner_url": "https://pbs.twimg.com/profile_banners/35648936/1401159851", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14187783", "following": false, "friends_count": 1771, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stevenmurawski.com", "url": "http://t.co/JfIVsEmAS6", "expanded_url": "http://stevenmurawski.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3086, "location": "Oconomowoc, WI ", "screen_name": "StevenMurawski", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 251, "name": "Steven Murawski", "profile_use_background_image": true, "description": "Community Software Engineer for @Chef and Microsoft MVP (PowerShell)", "url": "http://t.co/JfIVsEmAS6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/554782165930504192/P1YLJA1D_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 20 22:27:25 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/554782165930504192/P1YLJA1D_normal.jpeg", "favourites_count": 639, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685512588831096832", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1mIBRxo", "url": "https://t.co/Fv9fvWdWDT", "expanded_url": "http://bit.ly/1mIBRxo", "indices": [53, 76]}], "hashtags": [{"text": "PowerShell", "indices": [10, 21]}], "user_mentions": [{"screen_name": "r_keith_hill", "id_str": "16938890", "id": 16938890, "indices": [81, 94], "name": "r_keith_hill"}]}, "created_at": "Fri Jan 08 17:25:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685512588831096832, "text": "Debugging #PowerShell Script with Visual Studio Code https://t.co/Fv9fvWdWDT via @r_keith_hill", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 14187783, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10775, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "108667802", "following": false, "friends_count": 229, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "MediaRemedial.com", "url": "https://t.co/XdkxvpK0CQ", "expanded_url": "http://www.MediaRemedial.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/715352704/745e63260f0f02274f671bef267eaa3f.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "809DBD", "geo_enabled": true, "followers_count": 379, "location": "Portland, OR", "screen_name": "MediaRemedial", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 26, "name": "Tara", "profile_use_background_image": true, "description": "I code. I write. I edit. I proofread. I am single (is it the cat?) I am transforming my life. I also curse. See also @GoatUserStories", "url": "https://t.co/XdkxvpK0CQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2659435311/854e4ec9568758ea2312e76eb105e028_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Jan 26 17:43:30 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2659435311/854e4ec9568758ea2312e76eb105e028_normal.png", "favourites_count": 1235, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685382155539615752", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 293, "resize": "fit"}, "medium": {"w": 540, "h": 466, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 466, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYL3cDzUsAADYnu.png", "type": "photo", "indices": [47, 70], "media_url": "http://pbs.twimg.com/media/CYL3cDzUsAADYnu.png", "display_url": "pic.twitter.com/cz44jsTW52", "id_str": "685382154742706176", "expanded_url": "http://twitter.com/MediaRemedial/status/685382155539615752/photo/1", "id": 685382154742706176, "url": "https://t.co/cz44jsTW52"}], "symbols": [], "urls": [], "hashtags": [{"text": "whiskyadvent", "indices": [0, 13]}, {"text": "thingsthatamuseme", "indices": [28, 46]}], "user_mentions": [{"screen_name": "MasterOfMalt", "id_str": "81616245", "id": 81616245, "indices": [14, 27], "name": "Master Of Malt"}]}, "created_at": "Fri Jan 08 08:46:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685382155539615752, "text": "#whiskyadvent @MasterOfMalt #thingsthatamuseme https://t.co/cz44jsTW52", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetCaster for Android"}, "default_profile_image": false, "id": 108667802, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/715352704/745e63260f0f02274f671bef267eaa3f.jpeg", "statuses_count": 3452, "profile_banner_url": "https://pbs.twimg.com/profile_banners/108667802/1353278918", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "70037326", "following": false, "friends_count": 449, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "icarocamelo.com", "url": "https://t.co/cZwA4NCdF6", "expanded_url": "http://www.icarocamelo.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FFFFFF", "geo_enabled": true, "followers_count": 298, "location": "Qu\u00e9bec City, QC, Canada", "screen_name": "icarocamelo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Icaro Camelo", "profile_use_background_image": false, "description": "I'm a software dev lover, autodidact, tennis player, guitar player, teacher but always a learner.", "url": "https://t.co/cZwA4NCdF6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/563166528275619840/PGgQsEMn_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Aug 30 03:27:30 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563166528275619840/PGgQsEMn_normal.jpeg", "favourites_count": 278, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682441062258978816", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/@mauricioanich\u2026", "url": "https://t.co/nbwBQzmGTU", "expanded_url": "https://medium.com/@mauricioaniche/what-is-the-magic-of-test-driven-development-868f45fc9b1", "indices": [64, 87]}], "hashtags": [], "user_mentions": [{"screen_name": "mauricioaniche", "id_str": "14262678", "id": 14262678, "indices": [48, 63], "name": "Maur\u00edcio Aniche"}]}, "created_at": "Thu Dec 31 06:00:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682441062258978816, "text": "\u201cWhat is the magic of Test-Driven Development?\u201d @mauricioaniche https://t.co/nbwBQzmGTU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 70037326, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 4287, "profile_banner_url": "https://pbs.twimg.com/profile_banners/70037326/1430515967", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15895658", "following": false, "friends_count": 2032, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "harrymoreno.com", "url": "http://t.co/zvwKWysV4h", "expanded_url": "http://harrymoreno.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 564, "location": "New York, USA", "screen_name": "morenoh149", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 72, "name": "Harry Moreno", "profile_use_background_image": true, "description": "\u200d\u2764\ufe0f\u200d\u200d", "url": "http://t.co/zvwKWysV4h", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664663082275246080/y6enNHl5_normal.jpg", "profile_background_color": "0F0C06", "created_at": "Mon Aug 18 20:04:55 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664663082275246080/y6enNHl5_normal.jpg", "favourites_count": 7747, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 15895658, "blocked_by": false, "profile_background_tile": false, "statuses_count": 8809, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15895658/1352711231", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6182512", "following": false, "friends_count": 209, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 116, "location": "Delaware", "screen_name": "cbontrager", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Caleb Bontrager", "profile_use_background_image": true, "description": "Techy, business oriented, network/system guy. Love technology, life, and more importantly, life following Jesus.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/543238913238654976/CNdoj7XV_normal.jpeg", "profile_background_color": "022330", "created_at": "Sun May 20 17:49:07 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/543238913238654976/CNdoj7XV_normal.jpeg", "favourites_count": 167, "status": {"retweet_count": 5, "retweeted_status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678627759598542849", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1YuelQI", "url": "https://t.co/RAgd7Kj2Vk", "expanded_url": "http://bit.ly/1YuelQI", "indices": [67, 90]}], "hashtags": [], "user_mentions": []}, "created_at": "Sun Dec 20 17:27:20 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678627759598542849, "text": "The CIA Secret to Cybersecurity That No One Seems to Get | WIRED - https://t.co/RAgd7Kj2Vk", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "TweetCaster for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678729078845915136", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1YuelQI", "url": "https://t.co/RAgd7Kj2Vk", "expanded_url": "http://bit.ly/1YuelQI", "indices": [85, 108]}], "hashtags": [], "user_mentions": [{"screen_name": "secprofgreen", "id_str": "66025772", "id": 66025772, "indices": [3, 16], "name": "Andy Green"}]}, "created_at": "Mon Dec 21 00:09:57 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678729078845915136, "text": "RT @secprofgreen: The CIA Secret to Cybersecurity That No One Seems to Get | WIRED - https://t.co/RAgd7Kj2Vk", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 6182512, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 639, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "15103611", "following": false, "friends_count": 492, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "medium.com/@maxlynch/", "url": "https://t.co/8eRRTRGxcZ", "expanded_url": "http://medium.com/@maxlynch/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479029095271899136/4AxMGk8y.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "737373", "geo_enabled": true, "followers_count": 7971, "location": "Madison", "screen_name": "maxlynch", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 385, "name": "Max Lynch", "profile_use_background_image": false, "description": "Helping the web win on mobile with @ionicframework", "url": "https://t.co/8eRRTRGxcZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/653007360026259460/ok1dzunM_normal.png", "profile_background_color": "CFEAF0", "created_at": "Fri Jun 13 02:12:31 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/653007360026259460/ok1dzunM_normal.png", "favourites_count": 15448, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685608203401297921", "id": 685608203401297921, "text": "Raining in January...crazy", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:45:08 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15103611, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479029095271899136/4AxMGk8y.png", "statuses_count": 15190, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15103611/1448247056", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "14375294", "following": false, "friends_count": 72501, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bitfieldconsulting.com", "url": "http://t.co/St02BRS9rN", "expanded_url": "http://bitfieldconsulting.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/56417743/bitfield-logo.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 69480, "location": "Cornwall", "screen_name": "bitfield", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1275, "name": "John Arundel", "profile_use_background_image": true, "description": "Helps with sysadmin, devops, Puppet & Chef. Automates stuff for you, because you haven't got time. Ally.", "url": "http://t.co/St02BRS9rN", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2550451333/upr558w4gb7mdgopk0af_normal.jpeg", "profile_background_color": "000203", "created_at": "Sun Apr 13 14:37:00 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2550451333/upr558w4gb7mdgopk0af_normal.jpeg", "favourites_count": 96, "status": {"in_reply_to_status_id": null, "retweet_count": 37, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685474079390830592", "id": 685474079390830592, "text": "Nginx is a great operating system, but it lacks a good webserver.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:52:10 +0000 2016", "source": "Twitter Web Client", "favorite_count": 88, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14375294, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/56417743/bitfield-logo.png", "statuses_count": 4653, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14375294/1398508041", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "963411698", "following": false, "friends_count": 1879, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fsharpers.com", "url": "http://t.co/ESsVEjsMYi", "expanded_url": "http://www.fsharpers.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554716993018818561/R-VQdntT.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "4191BE", "geo_enabled": false, "followers_count": 390, "location": "Midtown Manhattan 212-470-8005", "screen_name": "itcognoscente", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 31, "name": "Gregory Hutchinson", "profile_use_background_image": false, "description": "Building Functional Programming Relationships in Silicon Alley and the Valley. Recruitment Boutique for Haskell, Erlang, OCaml, Clojure, F# and Lisp.", "url": "http://t.co/ESsVEjsMYi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/550876475306434560/r-7V83DO_normal.jpeg", "profile_background_color": "30B9DB", "created_at": "Thu Nov 22 01:28:52 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/550876475306434560/r-7V83DO_normal.jpeg", "favourites_count": 1258, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "672875683698339841", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/MIT_CSAIL/stat\u2026", "url": "https://t.co/kERuQoFlvQ", "expanded_url": "https://twitter.com/MIT_CSAIL/status/667080239323979776", "indices": [47, 70]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Dec 04 20:30:39 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 672875683698339841, "text": "Looks lie 're training him for the Rangers! :D https://t.co/kERuQoFlvQ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 963411698, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554716993018818561/R-VQdntT.jpeg", "statuses_count": 2984, "profile_banner_url": "https://pbs.twimg.com/profile_banners/963411698/1421096614", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "23992877", "following": false, "friends_count": 552, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jeremytinley.wordpress.com", "url": "https://t.co/WDRp7DtmNH", "expanded_url": "https://jeremytinley.wordpress.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 395, "location": "Denver, CO", "screen_name": "techwolf359", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Jeremy Tinley", "profile_use_background_image": true, "description": "i like Tool, bacon and geeky things. Senior MySQL Operations Engineer for Etsy.", "url": "https://t.co/WDRp7DtmNH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648248735042945024/boFlcCxu_normal.jpg", "profile_background_color": "131516", "created_at": "Thu Mar 12 17:55:56 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648248735042945024/boFlcCxu_normal.jpg", "favourites_count": 411, "status": {"retweet_count": 10971, "retweeted_status": {"retweet_count": 10971, "in_reply_to_user_id": null, "possibly_sensitive": true, "id_str": "685301049654165504", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 425, "resize": "fit"}, "large": {"w": 480, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 600, "resize": "fit"}}, "source_status_id_str": "684448534515548161", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", "source_user_id_str": "2582885773", "id_str": "684448461350113281", "id": 684448461350113281, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", "type": "photo", "indices": [28, 51], "source_status_id": 684448534515548161, "source_user_id": 2582885773, "display_url": "pic.twitter.com/Q6S1azBPWp", "expanded_url": "http://twitter.com/HippieGifs/status/684448534515548161/video/1", "url": "https://t.co/Q6S1azBPWp"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 03:24:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685301049654165504, "text": "Perspective is everything \ud83d\udc41 https://t.co/Q6S1azBPWp", "coordinates": null, "retweeted": false, "favorite_count": 15183, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685311199655792640", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 425, "resize": "fit"}, "large": {"w": 480, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 600, "resize": "fit"}}, "source_status_id_str": "684448534515548161", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", "source_user_id_str": "2582885773", "id_str": "684448461350113281", "id": 684448461350113281, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/684448461350113281/pu/img/_MbNuuQSZEzVOhoM.jpg", "type": "photo", "indices": [48, 71], "source_status_id": 684448534515548161, "source_user_id": 2582885773, "display_url": "pic.twitter.com/Q6S1azBPWp", "expanded_url": "http://twitter.com/HippieGifs/status/684448534515548161/video/1", "url": "https://t.co/Q6S1azBPWp"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BabyAnimalPics", "id_str": "1372975219", "id": 1372975219, "indices": [3, 18], "name": "Baby Animals"}]}, "created_at": "Fri Jan 08 04:04:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685311199655792640, "text": "RT @BabyAnimalPics: Perspective is everything \ud83d\udc41 https://t.co/Q6S1azBPWp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 23992877, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3896, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23992877/1401897032", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "149391883", "following": false, "friends_count": 715, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ofmax.li/pages/about-me\u2026", "url": "https://t.co/rlNUBQUD5s", "expanded_url": "https://ofmax.li/pages/about-me.html", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/376260464/x941d0ed8d4ed543d5e9c11f07fc78c1.png", "notifications": false, "profile_sidebar_fill_color": "333333", "profile_link_color": "666666", "geo_enabled": true, "followers_count": 599, "location": "Portland, OR", "screen_name": "Max_Resnick", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 40, "name": "Max Resnick", "profile_use_background_image": true, "description": "opinionated. interwebs. python. linux. software engineer. ex project manager off the record.", "url": "https://t.co/rlNUBQUD5s", "profile_text_color": "999999", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/438483690029842432/McRiUETF_normal.jpeg", "profile_background_color": "CCCCCC", "created_at": "Sat May 29 05:00:55 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/438483690029842432/McRiUETF_normal.jpeg", "favourites_count": 26, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685515454522224644", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "jelly.co", "url": "https://t.co/HwH41dMWq8", "expanded_url": "http://jelly.co", "indices": [116, 139]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:36:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685515454522224644, "text": "startupvanco I just reserved my username on jelly, a way for busy people to get helpful answers. Reserve yours now\u2026 https://t.co/HwH41dMWq8", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "IFTTT"}, "default_profile_image": false, "id": 149391883, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/376260464/x941d0ed8d4ed543d5e9c11f07fc78c1.png", "statuses_count": 12212, "profile_banner_url": "https://pbs.twimg.com/profile_banners/149391883/1393377677", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1380413569", "following": false, "friends_count": 677, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nathwill.github.io", "url": "https://t.co/lXzI0Y1RV7", "expanded_url": "https://nathwill.github.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 239, "location": "Hillsboro, OR", "screen_name": "nathwhal", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "nathan w", "profile_use_background_image": true, "description": "PDX resident, ops guy, enthusiastic homebrewer, happily married to a fellow geek. developer/site-ops at @treehouse.", "url": "https://t.co/lXzI0Y1RV7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682422321278107649/pKYQYDr4_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Apr 25 20:55:25 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682422321278107649/pKYQYDr4_normal.jpg", "favourites_count": 2656, "status": {"retweet_count": 3956, "retweeted_status": {"retweet_count": 3956, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685521449432518656", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 602, "resize": "fit"}, "medium": {"w": 599, "h": 602, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", "type": "photo", "indices": [68, 91], "media_url": "http://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", "display_url": "pic.twitter.com/XRQlSfM2PU", "id_str": "685521449306722304", "expanded_url": "http://twitter.com/HistoricalPics/status/685521449432518656/photo/1", "id": 685521449306722304, "url": "https://t.co/XRQlSfM2PU"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:00:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685521449432518656, "text": "This is a genuine conversation between Tony Blair and Bill Clinton. https://t.co/XRQlSfM2PU", "coordinates": null, "retweeted": false, "favorite_count": 4706, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685531956927303680", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 602, "resize": "fit"}, "medium": {"w": 599, "h": 602, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "source_status_id_str": "685521449432518656", "media_url": "http://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", "source_user_id_str": "1598644159", "id_str": "685521449306722304", "id": 685521449306722304, "media_url_https": "https://pbs.twimg.com/media/CYN2IEfWkAA74e4.jpg", "type": "photo", "indices": [88, 111], "source_status_id": 685521449432518656, "source_user_id": 1598644159, "display_url": "pic.twitter.com/XRQlSfM2PU", "expanded_url": "http://twitter.com/HistoricalPics/status/685521449432518656/photo/1", "url": "https://t.co/XRQlSfM2PU"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "HistoricalPics", "id_str": "1598644159", "id": 1598644159, "indices": [3, 18], "name": "Historical Pics"}]}, "created_at": "Fri Jan 08 18:42:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685531956927303680, "text": "RT @HistoricalPics: This is a genuine conversation between Tony Blair and Bill Clinton. https://t.co/XRQlSfM2PU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1380413569, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2899, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1380413569/1436401512", "is_translator": false}, {"time_zone": "Caracas", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -16200, "id_str": "23130430", "following": false, "friends_count": 736, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "foxcarlos.wordpress.com", "url": "http://t.co/11vGRn3tWV", "expanded_url": "http://www.foxcarlos.wordpress.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/94098055/ffirefox.jpg", "notifications": false, "profile_sidebar_fill_color": "AB7F11", "profile_link_color": "EDA042", "geo_enabled": true, "followers_count": 478, "location": "Venezuela-Maracaibo", "screen_name": "foxcarlos", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 47, "name": "FoxCarlos", "profile_use_background_image": true, "description": "Linux Fan User, Programador, SysAdmin, DevOp, Fan de Python, Amante de las tecnologias , Android User", "url": "http://t.co/11vGRn3tWV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/462342029733662721/JDiNDbdB_normal.jpeg", "profile_background_color": "FAEB41", "created_at": "Fri Mar 06 22:43:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "5E4107", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/462342029733662721/JDiNDbdB_normal.jpeg", "favourites_count": 196, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684338026542153728", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BAJ-xLABYru/", "url": "https://t.co/YdKy6FH4Ib", "expanded_url": "https://www.instagram.com/p/BAJ-xLABYru/", "indices": [91, 114]}], "hashtags": [{"text": "adafruit", "indices": [59, 68]}, {"text": "electr\u00f3nica", "indices": [69, 81]}, {"text": "arduino", "indices": [82, 90]}], "user_mentions": []}, "created_at": "Tue Jan 05 11:37:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "es", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684338026542153728, "text": "Soldando los pines de mi arduino Adafruit Pro Trinket - 5V #adafruit #electr\u00f3nica #arduino https://t.co/YdKy6FH4Ib", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 23130430, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/94098055/ffirefox.jpg", "statuses_count": 5788, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23130430/1399066139", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "259118402", "following": false, "friends_count": 340, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "106118", "geo_enabled": true, "followers_count": 142, "location": "Berkeley, CA", "screen_name": "jwadams_sf", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Jonathan Adams", "profile_use_background_image": true, "description": "A Solaris kernel engineer in Berkeley and San Francisco.", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2607006579/fc8a2hzb9282wlkh5tuo_normal.jpeg", "profile_background_color": "352726", "created_at": "Tue Mar 01 04:56:42 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2607006579/fc8a2hzb9282wlkh5tuo_normal.jpeg", "favourites_count": 1824, "status": {"retweet_count": 232, "retweeted_status": {"retweet_count": 232, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "671118301901291521", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 880, "h": 440, "resize": "fit"}, "small": {"w": 340, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 300, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", "type": "photo", "indices": [48, 71], "media_url": "http://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", "display_url": "pic.twitter.com/NJ3g1uSW7Q", "id_str": "671118300680597504", "expanded_url": "http://twitter.com/pickover/status/671118301901291521/photo/1", "id": 671118300680597504, "url": "https://t.co/NJ3g1uSW7Q"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Nov 30 00:07:26 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 671118301901291521, "text": "This is a Venn Diagram, sort of. Maybe. Smile. https://t.co/NJ3g1uSW7Q", "coordinates": null, "retweeted": false, "favorite_count": 159, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681586911652253697", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 880, "h": 440, "resize": "fit"}, "small": {"w": 340, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 300, "resize": "fit"}}, "source_status_id_str": "671118301901291521", "media_url": "http://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", "source_user_id_str": "16176754", "id_str": "671118300680597504", "id": 671118300680597504, "media_url_https": "https://pbs.twimg.com/media/CVBKiepUsAAtXBC.jpg", "type": "photo", "indices": [62, 85], "source_status_id": 671118301901291521, "source_user_id": 16176754, "display_url": "pic.twitter.com/NJ3g1uSW7Q", "expanded_url": "http://twitter.com/pickover/status/671118301901291521/photo/1", "url": "https://t.co/NJ3g1uSW7Q"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "pickover", "id_str": "16176754", "id": 16176754, "indices": [3, 12], "name": "Cliff Pickover"}]}, "created_at": "Mon Dec 28 21:25:57 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681586911652253697, "text": "RT @pickover: This is a Venn Diagram, sort of. Maybe. Smile. https://t.co/NJ3g1uSW7Q", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 259118402, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 370, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "15255729", "following": false, "friends_count": 759, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "netdot.co", "url": "http://t.co/EcAnlji6b1", "expanded_url": "http://netdot.co", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "00A4E0", "geo_enabled": false, "followers_count": 149, "location": "Princeton, NJ", "screen_name": "uncryptic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "James Polera", "profile_use_background_image": true, "description": "Husband, Dad, Programmer", "url": "http://t.co/EcAnlji6b1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3275393726/ef737d3f9c00e972d7576d0b26376f74_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri Jun 27 15:23:49 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3275393726/ef737d3f9c00e972d7576d0b26376f74_normal.jpeg", "favourites_count": 99, "status": {"in_reply_to_status_id": 628181055971946496, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "savraj", "in_reply_to_user_id": 18775474, "in_reply_to_status_id_str": "628181055971946496", "in_reply_to_user_id_str": "18775474", "truncated": false, "id_str": "628601576425451520", "id": 628601576425451520, "text": "@savraj very cool!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "savraj", "id_str": "18775474", "id": 18775474, "indices": [0, 7], "name": "Savraj Singh"}]}, "created_at": "Tue Aug 04 16:21:09 +0000 2015", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15255729, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1009, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15255729/1425338482", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "10286", "following": false, "friends_count": 557, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "larrywright.me", "url": "http://t.co/loD1xmJArs", "expanded_url": "http://larrywright.me/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 1062, "location": "Normal, IL", "screen_name": "larrywright", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 83, "name": "Larry Wright", "profile_use_background_image": true, "description": "Curious person; maker of things. Ruby, Chef, Sinatra, Docker, photography. Currently: Chef Lead for the Accenture Cloud Platform. Opinions are my own.", "url": "http://t.co/loD1xmJArs", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663570206913097728/jQBM7Maw_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Oct 24 11:52:46 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663570206913097728/jQBM7Maw_normal.jpg", "favourites_count": 3941, "status": {"retweet_count": 117, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 117, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685226091737399297", "id": 685226091737399297, "text": "A health app that automatically posts your most unflattering naked selfie to Facebook if you don't reach your step goal.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 22:26:45 +0000 2016", "source": "Twitter Web Client", "favorite_count": 272, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685491086039609344", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "badbanana", "id_str": "809760", "id": 809760, "indices": [3, 13], "name": "Tim Siedell"}]}, "created_at": "Fri Jan 08 15:59:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685491086039609344, "text": "RT @badbanana: A health app that automatically posts your most unflattering naked selfie to Facebook if you don't reach your step goal.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 10286, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 38510, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "267899351", "following": false, "friends_count": 287, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 157, "location": "Dublin", "screen_name": "dbosullivan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "diarmuid o'sullivan", "profile_use_background_image": true, "description": "Professional Network Engineer, Amateur Dad", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2944090679/e67f46da79338d5670762f8e2ae52f28_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 17 19:23:19 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2944090679/e67f46da79338d5670762f8e2ae52f28_normal.jpeg", "favourites_count": 3, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "IrishRail", "in_reply_to_user_id": 15115986, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "15115986", "truncated": false, "id_str": "677574417837346816", "id": 677574417837346816, "text": "@IrishRail how\u2019s the 20:13 Pearse to Skerries looking?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "IrishRail", "id_str": "15115986", "id": 15115986, "indices": [0, 10], "name": "Iarnr\u00f3d \u00c9ireann"}]}, "created_at": "Thu Dec 17 19:41:44 +0000 2015", "source": "Twitterrific", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 267899351, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 149, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "289403", "following": false, "friends_count": 1236, "entities": {"description": {"urls": [{"display_url": "bestpractical.com", "url": "http://t.co/UFnJLZgN6J", "expanded_url": "http://bestpractical.com", "indices": [14, 36]}]}, "url": {"urls": [{"display_url": "s.ly", "url": "https://t.co/uyPF67lH2k", "expanded_url": "https://s.ly", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "F5F5F5", "profile_link_color": "0F6985", "geo_enabled": true, "followers_count": 3091, "location": "Oakland, CA", "screen_name": "obra", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 257, "name": "Jesse", "profile_use_background_image": false, "description": "keyboard.io \u2022 http://t.co/UFnJLZgN6J\r\n\r\nI like to cause trouble.", "url": "https://t.co/uyPF67lH2k", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1465412656/userpic_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Dec 27 16:52:30 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "F5F5F5", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1465412656/userpic_normal.png", "favourites_count": 5596, "status": {"in_reply_to_status_id": 685577517785157632, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/37d88f13e7a85f14.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-115.173994, 36.1280771], [-115.083699, 36.1280771], [-115.083699, 36.144748], [-115.173994, 36.144748]]], "type": "Polygon"}, "full_name": "Winchester, NV", "contained_within": [], "country_code": "US", "id": "37d88f13e7a85f14", "name": "Winchester"}, "in_reply_to_screen_name": "starsandrobots", "in_reply_to_user_id": 19281751, "in_reply_to_status_id_str": "685577517785157632", "in_reply_to_user_id_str": "19281751", "truncated": false, "id_str": "685577784253485056", "id": 685577784253485056, "text": "@starsandrobots but banned at the show", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "starsandrobots", "id_str": "19281751", "id": 19281751, "indices": [0, 15], "name": "Star Simpson"}]}, "created_at": "Fri Jan 08 21:44:15 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 289403, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 22752, "profile_banner_url": "https://pbs.twimg.com/profile_banners/289403/1385248556", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "967370761", "following": false, "friends_count": 126, "entities": {"description": {"urls": [{"display_url": "mozilla.org", "url": "http://t.co/3BL4fnhZut", "expanded_url": "http://mozilla.org", "indices": [21, 43]}, {"display_url": "bugzilla.org", "url": "http://t.co/Jt0mPbUA4Q", "expanded_url": "http://bugzilla.org", "indices": [63, 85]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 117, "location": "", "screen_name": "justdavemiller", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Dave Miller", "profile_use_background_image": true, "description": "Network Operations @ http://t.co/3BL4fnhZut,\r\nProject Leader @ http://t.co/Jt0mPbUA4Q", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2888394041/6e4aaeda613033641fb6db550afc126c_normal.png", "profile_background_color": "C0DEED", "created_at": "Sat Nov 24 04:37:24 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2888394041/6e4aaeda613033641fb6db550afc126c_normal.png", "favourites_count": 19, "status": {"retweet_count": 4, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 4, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "675703717006585856", "id": 675703717006585856, "text": "MCO has the worst security lines of any airport I've ever been to, anywhere in the world. #mozlando", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "mozlando", "indices": [90, 99]}], "user_mentions": []}, "created_at": "Sat Dec 12 15:48:14 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "675806472291282944", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "mozlando", "indices": [106, 115]}], "user_mentions": [{"screen_name": "todesschaf", "id_str": "14691220", "id": 14691220, "indices": [3, 14], "name": "Nicholas Hurley"}]}, "created_at": "Sat Dec 12 22:36:33 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 675806472291282944, "text": "RT @todesschaf: MCO has the worst security lines of any airport I've ever been to, anywhere in the world. #mozlando", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 967370761, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 534, "profile_banner_url": "https://pbs.twimg.com/profile_banners/967370761/1398836689", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14045442", "following": false, "friends_count": 1142, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mschade.me", "url": "https://t.co/g9ELmn7nPH", "expanded_url": "http://mschade.me", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "78588A", "geo_enabled": true, "followers_count": 1013, "location": "m@mschade.me \u00b7 San Francisco", "screen_name": "sch", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 64, "name": "Michael Schade", "profile_use_background_image": true, "description": "helping people and building things at @stripe. I like flying, coding, cooking, running, reading, photography, and trying new things.", "url": "https://t.co/g9ELmn7nPH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650397324867301376/MrR6XasI_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Feb 27 03:23:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650397324867301376/MrR6XasI_normal.jpg", "favourites_count": 4195, "status": {"in_reply_to_status_id": 685497436496777216, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "CraigBuchek", "in_reply_to_user_id": 29504430, "in_reply_to_status_id_str": "685497436496777216", "in_reply_to_user_id_str": "29504430", "truncated": false, "id_str": "685513621355413504", "id": 685513621355413504, "text": "@CraigBuchek @mfollett There's gonna be a similar folklore post about this Whole30 in 20 years", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "CraigBuchek", "id_str": "29504430", "id": 29504430, "indices": [0, 12], "name": "Craig Buchek"}, {"screen_name": "mfollett", "id_str": "15683300", "id": 15683300, "indices": [13, 22], "name": "mfollett"}]}, "created_at": "Fri Jan 08 17:29:18 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14045442, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 7907, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14045442/1404692212", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "9870342", "following": false, "friends_count": 416, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tacticalpants.tumblr.com", "url": "https://t.co/AvVS5l2yCn", "expanded_url": "http://tacticalpants.tumblr.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 770, "location": "San Francisco", "screen_name": "mhat", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "Matt Knopp", "profile_use_background_image": true, "description": "Token Old Person @ Mode Analytics. All change is change.", "url": "https://t.co/AvVS5l2yCn", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624797957624332288/YVrZFn0m_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Fri Nov 02 01:04:10 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624797957624332288/YVrZFn0m_normal.jpg", "favourites_count": 1443, "status": {"in_reply_to_status_id": 683504543078850560, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mhat", "in_reply_to_user_id": 9870342, "in_reply_to_status_id_str": "683504543078850560", "in_reply_to_user_id_str": "9870342", "truncated": false, "id_str": "683504958843441152", "id": 683504958843441152, "text": "@moonpolysoft besides anyone funding OLAPaaS should know they're in for at least a decade and probably two.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "moonpolysoft", "id_str": "14204623", "id": 14204623, "indices": [0, 13], "name": "Modafinil Duck"}]}, "created_at": "Sun Jan 03 04:27:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9870342, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 10865, "profile_banner_url": "https://pbs.twimg.com/profile_banners/9870342/1445322715", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "10776912", "following": false, "friends_count": 217, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "zen4ever.com", "url": "http://t.co/8vNkoFTN", "expanded_url": "http://www.zen4ever.com/", "indices": [0, 20]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": true, "followers_count": 158, "location": "Los Angeles", "screen_name": "zen4ever", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 34, "name": "Andrew Kurinnyi", "profile_use_background_image": true, "description": "Python aficionado. Other technologies I'm enjoying to work with: AWS, Ansible, , Swift/Objective-C, SASS/HTML, AngularJS/jQuery", "url": "http://t.co/8vNkoFTN", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1250364986/SDC11775_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Sun Dec 02 01:03:39 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1250364986/SDC11775_normal.jpg", "favourites_count": 2828, "status": {"in_reply_to_status_id": 685509163720519680, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/1927193c57f35d51.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-118.3959042, 34.075963], [-118.3433861, 34.075963], [-118.3433861, 34.098056], [-118.3959042, 34.098056]]], "type": "Polygon"}, "full_name": "West Hollywood, CA", "contained_within": [], "country_code": "US", "id": "1927193c57f35d51", "name": "West Hollywood"}, "in_reply_to_screen_name": "garnaat", "in_reply_to_user_id": 17736981, "in_reply_to_status_id_str": "685509163720519680", "in_reply_to_user_id_str": "17736981", "truncated": false, "id_str": "685509876722708480", "id": 685509876722708480, "text": "@garnaat I hope it wasn\u2019t a production table :-p", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "garnaat", "id_str": "17736981", "id": 17736981, "indices": [0, 8], "name": "Mitch Garnaat"}]}, "created_at": "Fri Jan 08 17:14:25 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 10776912, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 1087, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10776912/1356168608", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24538862", "following": false, "friends_count": 681, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/jsolis", "url": "http://t.co/GLIbgF5Nfe", "expanded_url": "http://about.me/jsolis", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 203, "location": "Trumbull, CT", "screen_name": "jasonsolis", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Jason Solis", "profile_use_background_image": true, "description": "", "url": "http://t.co/GLIbgF5Nfe", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/125464418/jay_boat_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Sun Mar 15 15:40:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/125464418/jay_boat_normal.jpg", "favourites_count": 101, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677575884979707906", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 503, "resize": "fit"}, "medium": {"w": 600, "h": 294, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 167, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWc7rTiVAAAqHMG.png", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CWc7rTiVAAAqHMG.png", "display_url": "pic.twitter.com/mMNL9ZHqLl", "id_str": "677575884107218944", "expanded_url": "http://twitter.com/jasonsolis/status/677575884979707906/photo/1", "id": 677575884107218944, "url": "https://t.co/mMNL9ZHqLl"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Walmart", "id_str": "17137891", "id": 17137891, "indices": [38, 46], "name": "Walmart"}]}, "created_at": "Thu Dec 17 19:47:34 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677575884979707906, "text": "My latest attempt to unsubscribe from @Walmart emails. I guess I'm not the only one having problems \u00af\\_(\u30c4)_/\u00af https://t.co/mMNL9ZHqLl", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 24538862, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 350, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "225581432", "following": false, "friends_count": 1599, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "seclectech.wordpress.com", "url": "http://t.co/CPRtxWpvvq", "expanded_url": "http://seclectech.wordpress.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 865, "location": "Lutherville Timonium, MD", "screen_name": "seclectech", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 76, "name": "Matt Franz", "profile_use_background_image": false, "description": "Operability Advocate. Container Troll. Former Security Guy. Ex @Cisco @digitalbond @TenableSecurity @Mandiant Often unclear if sarcastic/serious.", "url": "http://t.co/CPRtxWpvvq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458050887542251520/3TCpHyCr_normal.png", "profile_background_color": "C0DEED", "created_at": "Sat Dec 11 23:12:13 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458050887542251520/3TCpHyCr_normal.png", "favourites_count": 418, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685608329809424384", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/guyma/status/6\u2026", "url": "https://t.co/yObkSNcmwg", "expanded_url": "https://twitter.com/guyma/status/685602902585442304", "indices": [100, 123]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:45:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685608329809424384, "text": "And \"complex, nuanced, and instant mental math performed that precedes the shields-down situation\" https://t.co/yObkSNcmwg", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 225581432, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7942, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1019381", "following": false, "friends_count": 663, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1490, "location": "Cary, NC", "screen_name": "spotrh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 109, "name": "Tom Callaway", "profile_use_background_image": true, "description": "University Outreach lead @ Red Hat\nCo-author of Raspberry Pi Hacks. Linux hacker, geocacher, pinball wizard, game player, frog lover, hockey nut, and scifi fan.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657728926555308036/XpK5Ufl5_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Mar 12 15:41:53 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657728926555308036/XpK5Ufl5_normal.jpg", "favourites_count": 442, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685306570175987712", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "imgur.com/a/ZmthC", "url": "https://t.co/JoDKE2DZwv", "expanded_url": "http://imgur.com/a/ZmthC", "indices": [29, 52]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 03:46:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-115.2092535, 35.984784], [-115.0610763, 35.984784], [-115.0610763, 36.137145], [-115.2092535, 36.137145]]], "type": "Polygon"}, "full_name": "Paradise, NV", "contained_within": [], "country_code": "US", "id": "8fa6d7a33b83ef26", "name": "Paradise"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685306570175987712, "text": "3D printing at CES - Day Two https://t.co/JoDKE2DZwv", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 1019381, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4892, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "15005347", "following": false, "friends_count": 1179, "entities": {"description": {"urls": [{"display_url": "GeekMom.com", "url": "http://t.co/pZZjGME6O9", "expanded_url": "http://GeekMom.com", "indices": [46, 68]}, {"display_url": "opensource.com", "url": "http://t.co/olzt8M25oa", "expanded_url": "http://opensource.com", "indices": [71, 93]}]}, "url": {"urls": [{"display_url": "hobbyhobby.wordpress.com", "url": "http://t.co/0nPq5tppyJ", "expanded_url": "http://hobbyhobby.wordpress.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": false, "followers_count": 2548, "location": "N 30\u00b016' 0'' / W 97\u00b044' 0''", "screen_name": "suehle", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 172, "name": "Ruth Suehle", "profile_use_background_image": true, "description": "Open Source and Standards at Red Hat. Editor, http://t.co/pZZjGME6O9 & http://t.co/olzt8M25oa. Co-author Raspberry Pi Hacks. Sewing, cake-ing, making.", "url": "http://t.co/0nPq5tppyJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459426520017014784/l2Y-ZbwA_normal.jpeg", "profile_background_color": "EBEBEB", "created_at": "Wed Jun 04 14:19:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459426520017014784/l2Y-ZbwA_normal.jpeg", "favourites_count": 172, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "CraigArgh", "in_reply_to_user_id": 868494619, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "868494619", "truncated": false, "id_str": "685570763286523905", "id": 685570763286523905, "text": "@CraigArgh Just picked up the mail and had a copy of Learn to Program With Minecraft. Pretty sure my kid is going to melt with happiness.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "CraigArgh", "id_str": "868494619", "id": 868494619, "indices": [0, 10], "name": "Craig Richardson"}]}, "created_at": "Fri Jan 08 21:16:21 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15005347, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 6015, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15005347/1398370907", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "17639049", "following": false, "friends_count": 1166, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "robyn.io", "url": "http://t.co/mr4VVE5ZKH", "expanded_url": "http://robyn.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "1D6BAF", "geo_enabled": false, "followers_count": 2833, "location": "scottsdale, az", "screen_name": "robynbergeron", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 187, "name": "robyn bergeron", "profile_use_background_image": false, "description": "Community Architect @ansible. Connector, contributor, co-conspirator. Fedora Project Leader in a previous life. Loves open source and bad puns.", "url": "http://t.co/mr4VVE5ZKH", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/622089213194797060/3ARXTDjh_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Nov 26 01:56:21 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/622089213194797060/3ARXTDjh_normal.jpg", "favourites_count": 4380, "status": {"in_reply_to_status_id": 685151133317246977, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "krishnan", "in_reply_to_user_id": 782502, "in_reply_to_status_id_str": "685151133317246977", "in_reply_to_user_id_str": "782502", "truncated": false, "id_str": "685162018660200448", "id": 685162018660200448, "text": "@krishnan grats, yo!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "krishnan", "id_str": "782502", "id": 782502, "indices": [0, 9], "name": "Krish"}]}, "created_at": "Thu Jan 07 18:12:09 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17639049, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "statuses_count": 16104, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17639049/1421690444", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "9887162", "following": false, "friends_count": 1048, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 6499, "location": "Wake Forest, NC", "screen_name": "markimbriaco", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 390, "name": "Mark Imbriaco", "profile_use_background_image": true, "description": "Co-founder & CEO at @OperableInc. Previously: DigitalOcean, GitHub, LivingSocial, Heroku, and 37signals.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/471493631283441664/aiwoVRj7_normal.jpeg", "profile_background_color": "022330", "created_at": "Fri Nov 02 14:56:54 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/471493631283441664/aiwoVRj7_normal.jpeg", "favourites_count": 1188, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685572079891181573", "id": 685572079891181573, "text": "The next time I complain about something ops related, someone remind me of that Friday afternoon I spent hacking on CSS.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:21:35 +0000 2016", "source": "Twitter Web Client", "favorite_count": 16, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9887162, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 20594, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "96179624", "following": false, "friends_count": 1227, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bit.ly/rhdev-1angdon", "url": "http://t.co/sSnsxQ2TYi", "expanded_url": "http://bit.ly/rhdev-1angdon", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 768, "location": "", "screen_name": "1angdon", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 40, "name": "Langdon White", "profile_use_background_image": true, "description": "Developer and architect working to advocate for RHEL for developers. Tweets are my own.", "url": "http://t.co/sSnsxQ2TYi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1822951183/D5IafQxH_normal", "profile_background_color": "C0DEED", "created_at": "Fri Dec 11 18:32:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1822951183/D5IafQxH_normal", "favourites_count": 509, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": 2398413343, "possibly_sensitive": false, "id_str": "685029107193769984", "in_reply_to_user_id_str": "2398413343", "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "small": {"w": 340, "h": 255, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 450, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", "type": "photo", "indices": [113, 136], "media_url": "http://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", "display_url": "pic.twitter.com/Q69ZE7UZZ1", "id_str": "685029098373001216", "expanded_url": "http://twitter.com/bexelbie/status/685029107193769984/photo/1", "id": 685029098373001216, "url": "https://t.co/Q69ZE7UZZ1"}], "symbols": [], "urls": [], "hashtags": [{"text": "BabyItsColdOutside", "indices": [93, 112]}], "user_mentions": [{"screen_name": "ProjectAtomic", "id_str": "2398413343", "id": 2398413343, "indices": [0, 14], "name": "Project Atomic "}, {"screen_name": "CentOS", "id_str": "17232315", "id": 17232315, "indices": [58, 65], "name": "Karanbir Singh"}]}, "created_at": "Thu Jan 07 09:24:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "ProjectAtomic", "in_reply_to_status_id_str": null, "truncated": false, "id": 685029107193769984, "text": "@ProjectAtomic hat Thursday. Because some us don't have a @CentOS shirt and it's not Friday. #BabyItsColdOutside https://t.co/Q69ZE7UZZ1", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685100509292806144", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "small": {"w": 340, "h": 255, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 450, "resize": "fit"}}, "source_status_id_str": "685029107193769984", "media_url": "http://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", "source_user_id_str": "10325302", "id_str": "685029098373001216", "id": 685029098373001216, "media_url_https": "https://pbs.twimg.com/media/CYG2VeVUMAAvj1r.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685029107193769984, "source_user_id": 10325302, "display_url": "pic.twitter.com/Q69ZE7UZZ1", "expanded_url": "http://twitter.com/bexelbie/status/685029107193769984/photo/1", "url": "https://t.co/Q69ZE7UZZ1"}], "symbols": [], "urls": [], "hashtags": [{"text": "BabyItsColdOutside", "indices": [107, 126]}], "user_mentions": [{"screen_name": "bexelbie", "id_str": "10325302", "id": 10325302, "indices": [3, 12], "name": "bex"}, {"screen_name": "ProjectAtomic", "id_str": "2398413343", "id": 2398413343, "indices": [14, 28], "name": "Project Atomic "}, {"screen_name": "CentOS", "id_str": "17232315", "id": 17232315, "indices": [72, 79], "name": "Karanbir Singh"}]}, "created_at": "Thu Jan 07 14:07:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685100509292806144, "text": "RT @bexelbie: @ProjectAtomic hat Thursday. Because some us don't have a @CentOS shirt and it's not Friday. #BabyItsColdOutside https://t.co\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 96179624, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3765, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "13978722", "following": false, "friends_count": 676, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fladpad.com", "url": "http://t.co/Am0KVvc2DI", "expanded_url": "http://www.fladpad.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/739216918/bed2985374c7da6d1ca4781c45a3bfed.jpeg", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 453, "location": "Philadelphia", "screen_name": "bflad", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "Brian Flad", "profile_use_background_image": true, "description": "Music, photography, travel, and technology are my life. Lover of all things food and beer. Any thoughts and words here are my own.", "url": "http://t.co/Am0KVvc2DI", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2523270070/image_normal.jpg", "profile_background_color": "352726", "created_at": "Tue Feb 26 01:44:18 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2523270070/image_normal.jpg", "favourites_count": 49, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685253297230450688", "id": 685253297230450688, "text": "As I'm walking past it... Why is there a fire alarm system in a concrete parking structure?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 00:14:52 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13978722, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/739216918/bed2985374c7da6d1ca4781c45a3bfed.jpeg", "statuses_count": 8456, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13978722/1355604820", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1526157127", "following": false, "friends_count": 859, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 106, "location": "Denver, CO", "screen_name": "pwgnr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Critmoose", "profile_use_background_image": true, "description": "Virtualization technologist | Ops and tools | General banter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/460929940624392192/3F0qvis1_normal.jpeg", "profile_background_color": "022330", "created_at": "Mon Jun 17 23:08:23 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460929940624392192/3F0qvis1_normal.jpeg", "favourites_count": 349, "status": {"in_reply_to_status_id": 682054747998695424, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/b49b3053b5c25bf5.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-105.109815, 39.614151], [-104.734372, 39.614151], [-104.734372, 39.812975], [-105.109815, 39.812975]]], "type": "Polygon"}, "full_name": "Denver, CO", "contained_within": [], "country_code": "US", "id": "b49b3053b5c25bf5", "name": "Denver"}, "in_reply_to_screen_name": "BenMSmith", "in_reply_to_user_id": 36894019, "in_reply_to_status_id_str": "682054747998695424", "in_reply_to_user_id_str": "36894019", "truncated": false, "id_str": "682058101298573312", "id": 682058101298573312, "text": "@BenMSmith Alas Ben, I've moved to Denver and won't be able to make it this year. Has the team name been revealed yet?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BenMSmith", "id_str": "36894019", "id": 36894019, "indices": [0, 10], "name": "Ben Smith"}]}, "created_at": "Wed Dec 30 04:38:18 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1526157127, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 748, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1526157127/1398716661", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "35019631", "following": false, "friends_count": 508, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hackeryhq.com", "url": "http://t.co/xU9ThntxLj", "expanded_url": "http://hackeryhq.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 171, "location": "Martinez, CA", "screen_name": "DoriftoShoes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 34, "name": "Patrick Hoolboom", "profile_use_background_image": false, "description": "Automating myself out of a job...One workflow at a time. Trying to never do the same thing twice.", "url": "http://t.co/xU9ThntxLj", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1580497725/beaker_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Apr 24 19:50:40 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1580497725/beaker_normal.jpg", "favourites_count": 162, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685535080886976513", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swarmapp.com/c/6ZKeacAscNB", "url": "https://t.co/Q2KniQRfr3", "expanded_url": "https://www.swarmapp.com/c/6ZKeacAscNB", "indices": [43, 66]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:54:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [38.01765184, -122.13573933], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/71d33f776fe41dfb.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.157021, 37.954027], [-122.075217, 37.954027], [-122.075217, 38.037226], [-122.157021, 38.037226]]], "type": "Polygon"}, "full_name": "Martinez, CA", "contained_within": [], "country_code": "US", "id": "71d33f776fe41dfb", "name": "Martinez"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685535080886976513, "text": "Coffee date (@ Barrelista in Martinez, CA) https://t.co/Q2KniQRfr3", "coordinates": {"coordinates": [-122.13573933, 38.01765184], "type": "Point"}, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Foursquare"}, "default_profile_image": false, "id": 35019631, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 953, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "66432490", "following": false, "friends_count": 382, "entities": {"description": {"urls": [{"display_url": "shop.oreilly.com/product/063692\u2026", "url": "https://t.co/vIR4eVGVkp", "expanded_url": "http://shop.oreilly.com/product/0636920035794.do", "indices": [63, 86]}]}, "url": {"urls": [{"display_url": "obfuscurity.com", "url": "https://t.co/LQBsafkde9", "expanded_url": "http://obfuscurity.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 4067, "location": "Westminster, MD", "screen_name": "obfuscurity", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 278, "name": "Jason Dixon", "profile_use_background_image": true, "description": "Director of Integrations @Librato. Author of the Graphite Book https://t.co/vIR4eVGVkp Previously: Dyn, GitHub, Heroku and Circonus.", "url": "https://t.co/LQBsafkde9", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/626581711556448256/EcRbS6R9_normal.png", "profile_background_color": "131516", "created_at": "Mon Aug 17 18:00:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626581711556448256/EcRbS6R9_normal.png", "favourites_count": 209, "status": {"in_reply_to_status_id": 685332408875401217, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jordansissel", "in_reply_to_user_id": 15782607, "in_reply_to_status_id_str": "685332408875401217", "in_reply_to_user_id_str": "15782607", "truncated": false, "id_str": "685333853498667008", "id": 685333853498667008, "text": "@jordansissel @fivetanley wow, that\u2019s fucking brilliant", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jordansissel", "id_str": "15782607", "id": 15782607, "indices": [0, 13], "name": "@jordansissel"}, {"screen_name": "fivetanley", "id_str": "306497372", "id": 306497372, "indices": [14, 25], "name": "dead emo kid"}]}, "created_at": "Fri Jan 08 05:34:58 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 66432490, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 34479, "profile_banner_url": "https://pbs.twimg.com/profile_banners/66432490/1370191219", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "235668252", "following": false, "friends_count": 237, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/mike.murphy", "url": "http://t.co/59rM1FJDUZ", "expanded_url": "http://about.me/mike.murphy", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 110, "location": "Atlanta, GA", "screen_name": "martianbogon", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 7, "name": "Mike Murphy", "profile_use_background_image": true, "description": "Father of Two, Married to Patty, IT Infrastructure Architect, Graduate of Boston University. Opinions are my own.", "url": "http://t.co/59rM1FJDUZ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654376957199687684/kp0TbZD__normal.jpg", "profile_background_color": "131516", "created_at": "Sat Jan 08 20:06:09 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654376957199687684/kp0TbZD__normal.jpg", "favourites_count": 323, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685482918504972288", "id": 685482918504972288, "text": "A recursive structure of devops teams.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:27:18 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 235668252, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 982, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "40720843", "following": false, "friends_count": 33842, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "his.com/pshapiro/brief\u2026", "url": "http://t.co/La2YpjPmos", "expanded_url": "http://www.his.com/pshapiro/briefbio.html", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629902371666141184/lfrRFbv_.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 36097, "location": "Washington DC", "screen_name": "philshapiro", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1506, "name": "Phil Shapiro", "profile_use_background_image": true, "description": "Edtech blogger refurbisher satirist professor songwriter screencaster library geek storyteller FOSS advocate immigrant change agent inclusion dreamer whimsy", "url": "http://t.co/La2YpjPmos", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660953223159746560/C_31hXuT_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun May 17 19:36:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660953223159746560/C_31hXuT_normal.jpg", "favourites_count": 3559, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685601805217181697", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 818, "h": 960, "resize": "fit"}, "medium": {"w": 600, "h": 704, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 399, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", "type": "photo", "indices": [61, 84], "media_url": "http://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", "display_url": "pic.twitter.com/CZftmyOMsd", "id_str": "685601805145903105", "expanded_url": "http://twitter.com/DougUNDP/status/685601805217181697/photo/1", "id": 685601805145903105, "url": "https://t.co/CZftmyOMsd"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Brasilmagic", "id_str": "21833728", "id": 21833728, "indices": [48, 60], "name": "Brasilmagic"}]}, "created_at": "Fri Jan 08 23:19:42 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685601805217181697, "text": "How Public health messaging should be done! via @Brasilmagic https://t.co/CZftmyOMsd", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685601847957131264", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 818, "h": 960, "resize": "fit"}, "medium": {"w": 600, "h": 704, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 399, "resize": "fit"}}, "source_status_id_str": "685601805217181697", "media_url": "http://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", "source_user_id_str": "633999734", "id_str": "685601805145903105", "id": 685601805145903105, "media_url_https": "https://pbs.twimg.com/media/CYO_NZUWkAE0x7S.jpg", "type": "photo", "indices": [75, 98], "source_status_id": 685601805217181697, "source_user_id": 633999734, "display_url": "pic.twitter.com/CZftmyOMsd", "expanded_url": "http://twitter.com/DougUNDP/status/685601805217181697/photo/1", "url": "https://t.co/CZftmyOMsd"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DougUNDP", "id_str": "633999734", "id": 633999734, "indices": [3, 12], "name": "Douglas Webb"}, {"screen_name": "Brasilmagic", "id_str": "21833728", "id": 21833728, "indices": [62, 74], "name": "Brasilmagic"}]}, "created_at": "Fri Jan 08 23:19:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685601847957131264, "text": "RT @DougUNDP: How Public health messaging should be done! via @Brasilmagic https://t.co/CZftmyOMsd", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 40720843, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629902371666141184/lfrRFbv_.jpg", "statuses_count": 68500, "profile_banner_url": "https://pbs.twimg.com/profile_banners/40720843/1439016769", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14561327", "following": false, "friends_count": 202, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "david.heinemeierhansson.com", "url": "http://t.co/IaAsahpjsQ", "expanded_url": "http://david.heinemeierhansson.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 155152, "location": "Chicago, USA", "screen_name": "dhh", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8024, "name": "DHH", "profile_use_background_image": true, "description": "Creator of Ruby on Rails, Founder & CTO at Basecamp (formerly 37signals), NYT Best-selling author of REWORK and REMOTE, and Le Mans class-winning racing driver.", "url": "http://t.co/IaAsahpjsQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2556368541/alng5gtlmjhrdlr3qxqv_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Apr 27 20:19:25 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2556368541/alng5gtlmjhrdlr3qxqv_normal.jpeg", "favourites_count": 312, "status": {"retweet_count": 78, "retweeted_status": {"retweet_count": 78, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685516990333751296", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/rails/rails/pu\u2026", "url": "https://t.co/WosS7Br1W3", "expanded_url": "https://github.com/rails/rails/pull/22934", "indices": [100, 123]}], "hashtags": [], "user_mentions": [{"screen_name": "mperham", "id_str": "14060922", "id": 14060922, "indices": [45, 53], "name": "Mike Perham"}]}, "created_at": "Fri Jan 08 17:42:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685516990333751296, "text": "Action Cable no longer depends on Celluloid. @mperham converted it to use concurrent-ruby instead \ud83d\udc4f https://t.co/WosS7Br1W3", "coordinates": null, "retweeted": false, "favorite_count": 101, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685517292935987200", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/rails/rails/pu\u2026", "url": "https://t.co/WosS7Br1W3", "expanded_url": "https://github.com/rails/rails/pull/22934", "indices": [111, 134]}], "hashtags": [], "user_mentions": [{"screen_name": "rails", "id_str": "3116191", "id": 3116191, "indices": [3, 9], "name": "Ruby on Rails"}, {"screen_name": "mperham", "id_str": "14060922", "id": 14060922, "indices": [56, 64], "name": "Mike Perham"}]}, "created_at": "Fri Jan 08 17:43:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685517292935987200, "text": "RT @rails: Action Cable no longer depends on Celluloid. @mperham converted it to use concurrent-ruby instead \ud83d\udc4f https://t.co/WosS7Br1W3", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 14561327, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 28479, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14561327/1398347760", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "5637652", "following": false, "friends_count": 169, "entities": {"description": {"urls": [{"display_url": "stackexchange.com", "url": "http://t.co/JbStnko3pv", "expanded_url": "http://stackexchange.com", "indices": [33, 55]}, {"display_url": "discourse.org", "url": "http://t.co/kaSwrMgE57", "expanded_url": "http://www.discourse.org", "indices": [60, 82]}]}, "url": {"urls": [{"display_url": "blog.codinghorror.com", "url": "http://t.co/rM9N1bQpLr", "expanded_url": "http://blog.codinghorror.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623412/hunt-wumpus-bg.png", "notifications": false, "profile_sidebar_fill_color": "E0E1F5", "profile_link_color": "282D58", "geo_enabled": false, "followers_count": 186754, "location": "Bay Area, CA", "screen_name": "codinghorror", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8805, "name": "Jeff Atwood", "profile_use_background_image": true, "description": "Indoor enthusiast. Co-founder of http://t.co/JbStnko3pv and http://t.co/kaSwrMgE57. Disclaimer: I have no idea what I'm talking about.", "url": "http://t.co/rM9N1bQpLr", "profile_text_color": "383A48", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/632821853627678720/zPKK7jql_normal.png", "profile_background_color": "FFFFFF", "created_at": "Sun Apr 29 20:50:37 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "E0E1F5", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/632821853627678720/zPKK7jql_normal.png", "favourites_count": 6821, "status": {"in_reply_to_status_id": 685594181692076033, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "AriyaHidayat", "in_reply_to_user_id": 15608761, "in_reply_to_status_id_str": "685594181692076033", "in_reply_to_user_id_str": "15608761", "truncated": false, "id_str": "685596358552637441", "id": 685596358552637441, "text": "@AriyaHidayat @reybango @eviltrout I will ask the people who work here if they are OK with a 100% salary cut ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AriyaHidayat", "id_str": "15608761", "id": 15608761, "indices": [0, 13], "name": "Ariya Hidayat"}, {"screen_name": "reybango", "id_str": "1589691", "id": 1589691, "indices": [14, 23], "name": "Rey Bango"}, {"screen_name": "eviltrout", "id_str": "16712921", "id": 16712921, "indices": [24, 34], "name": "Robin Ward"}]}, "created_at": "Fri Jan 08 22:58:04 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5637652, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623412/hunt-wumpus-bg.png", "statuses_count": 47257, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5637652/1398207303", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "90221684", "following": false, "friends_count": 372, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theangryangel.co.uk", "url": "http://t.co/qoDV6L8xHL", "expanded_url": "http://theangryangel.co.uk/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 86, "location": "", "screen_name": "the_angry_angel", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "the_angry_angel", "profile_use_background_image": false, "description": "Sysadmin. Generic geek. Gamer. Hobbiest Aqueous Thermomancer. Frequently sleep deprived.", "url": "http://t.co/qoDV6L8xHL", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2060711415/gravatar_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Nov 15 18:54:49 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2060711415/gravatar_normal.jpg", "favourites_count": 28, "status": {"retweet_count": 3622, "retweeted_status": {"retweet_count": 3622, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682281861830160384", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bits.debian.org/2015/12/mourni\u2026", "url": "https://t.co/1EhZ5BwKSH", "expanded_url": "https://bits.debian.org/2015/12/mourning-ian-murdock.html", "indices": [93, 116]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 30 19:27:26 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682281861830160384, "text": "Debian is saddened to share the news of the passing of Ian Murdock. We will miss him dearly. https://t.co/1EhZ5BwKSH", "coordinates": null, "retweeted": false, "favorite_count": 968, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682286650534277120", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bits.debian.org/2015/12/mourni\u2026", "url": "https://t.co/1EhZ5BwKSH", "expanded_url": "https://bits.debian.org/2015/12/mourning-ian-murdock.html", "indices": [105, 128]}], "hashtags": [], "user_mentions": [{"screen_name": "debian", "id_str": "24253645", "id": 24253645, "indices": [3, 10], "name": "The Debian Project"}]}, "created_at": "Wed Dec 30 19:46:28 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682286650534277120, "text": "RT @debian: Debian is saddened to share the news of the passing of Ian Murdock. We will miss him dearly. https://t.co/1EhZ5BwKSH", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 90221684, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 959, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "12466012", "following": false, "friends_count": 1065, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "graylog.org", "url": "http://t.co/mnPWKabISf", "expanded_url": "http://www.graylog.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 1667, "location": "Houston, TX / Hamburg, GER", "screen_name": "_lennart", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 101, "name": "Lennart Koopmann", "profile_use_background_image": true, "description": "Founder and CTO at Graylog, Inc. Started the @graylog2 project in 2010. Ironman training, Party Gorillas.", "url": "http://t.co/mnPWKabISf", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629114058344497152/oqt-f6Tf_normal.jpg", "profile_background_color": "131516", "created_at": "Sun Jan 20 19:05:12 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629114058344497152/oqt-f6Tf_normal.jpg", "favourites_count": 2858, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607302062305280", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 1820, "resize": "fit"}, "small": {"w": 340, "h": 604, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1066, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPEMppWwAADqrl.jpg", "type": "photo", "indices": [65, 88], "media_url": "http://pbs.twimg.com/media/CYPEMppWwAADqrl.jpg", "display_url": "pic.twitter.com/6NqJUAR5XB", "id_str": "685607289907232768", "expanded_url": "http://twitter.com/_lennart/status/685607302062305280/photo/1", "id": 685607289907232768, "url": "https://t.co/6NqJUAR5XB"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "solarce", "id_str": "822284", "id": 822284, "indices": [55, 63], "name": "leader of cola"}]}, "created_at": "Fri Jan 08 23:41:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/1c69a67ad480e1b1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-95.823268, 29.522325], [-95.069705, 29.522325], [-95.069705, 30.1546646], [-95.823268, 30.1546646]]], "type": "Polygon"}, "full_name": "Houston, TX", "contained_within": [], "country_code": "US", "id": "1c69a67ad480e1b1", "name": "Houston"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607302062305280, "text": "1/8/16 we will never forget (after only 2 years or so, @solarce) https://t.co/6NqJUAR5XB", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 12466012, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 19492, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12466012/1404744849", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "687843", "following": false, "friends_count": 736, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "patrickod.com", "url": "http://t.co/Q2ipmL5d8W", "expanded_url": "http://patrickod.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 719, "location": "San Francisco, California", "screen_name": "patrickod", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Patrick O'Doherty", "profile_use_background_image": false, "description": "Engineer @ Intercom in SF, hacker, tinkerer, aspiring cryptoanarchist. GPG: F05E 232B 31FE 4222 He/him", "url": "http://t.co/Q2ipmL5d8W", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685104886703353856/Gv9bLPB6_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jan 23 18:15:37 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685104886703353856/Gv9bLPB6_normal.jpg", "favourites_count": 2257, "status": {"retweet_count": 87, "retweeted_status": {"retweet_count": 87, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685524575396978688", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/josephfcox/sta\u2026", "url": "https://t.co/cWt7wYaqKF", "expanded_url": "https://twitter.com/josephfcox/status/685510751063248896", "indices": [117, 140]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:12:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685524575396978688, "text": "For 2 weeks in '15 the FBI ran what may be the biggest child porn site on the darkweb, distributing CP to 215k users https://t.co/cWt7wYaqKF", "coordinates": null, "retweeted": false, "favorite_count": 30, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685527148208254977", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/josephfcox/sta\u2026", "url": "https://t.co/cWt7wYaqKF", "expanded_url": "https://twitter.com/josephfcox/status/685510751063248896", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "csoghoian", "id_str": "14669471", "id": 14669471, "indices": [3, 13], "name": "Christopher Soghoian"}]}, "created_at": "Fri Jan 08 18:23:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685527148208254977, "text": "RT @csoghoian: For 2 weeks in '15 the FBI ran what may be the biggest child porn site on the darkweb, distributing CP to 215k users https:/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 687843, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "statuses_count": 9376, "profile_banner_url": "https://pbs.twimg.com/profile_banners/687843/1410225843", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "6579422", "following": false, "friends_count": 816, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bettcher.net", "url": "http://t.co/Ex4n38uYNW", "expanded_url": "http://bettcher.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 5726, "location": "Louisville, CO", "screen_name": "Pufferfish", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 58, "name": "Jon Bettcher", "profile_use_background_image": true, "description": "Hacker, Beer Enthusiast, Colorad(o)an via California. Mobile engineer @Twitter.", "url": "http://t.co/Ex4n38uYNW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/637107928881717248/_53TORWT_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Jun 04 20:53:44 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637107928881717248/_53TORWT_normal.jpg", "favourites_count": 4717, "status": {"in_reply_to_status_id": 684589819960266752, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/5d1bffd975c6ff73.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-105.1836432, 39.9395764], [-105.099812, 39.9395764], [-105.099812, 39.998224], [-105.1836432, 39.998224]]], "type": "Polygon"}, "full_name": "Louisville, CO", "contained_within": [], "country_code": "US", "id": "5d1bffd975c6ff73", "name": "Louisville"}, "in_reply_to_screen_name": "mrcs", "in_reply_to_user_id": 101935227, "in_reply_to_status_id_str": "684589819960266752", "in_reply_to_user_id_str": "101935227", "truncated": false, "id_str": "684591013218783234", "id": 684591013218783234, "text": "@mrcs @Brilanka I keep a picture of @TheDon on the side of my helmet. Underneath reads 'NEVER FORGET'.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mrcs", "id_str": "101935227", "id": 101935227, "indices": [0, 5], "name": "Marcus Hanson"}, {"screen_name": "Brilanka", "id_str": "69128362", "id": 69128362, "indices": [6, 15], "name": "Brilanka"}, {"screen_name": "TheDon", "id_str": "24799086", "id": 24799086, "indices": [37, 44], "name": "Don"}]}, "created_at": "Wed Jan 06 04:23:11 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6579422, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5275, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6579422/1440733343", "is_translator": false}, {"time_zone": "America/New_York", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18510643", "following": false, "friends_count": 422, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.douglasstanley.com", "url": "http://t.co/UfZiJnhhrI", "expanded_url": "http://blog.douglasstanley.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 263, "location": "Ohio", "screen_name": "thafreak", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "!Dr", "profile_use_background_image": true, "description": "CS Geek, PhD dropout, Linux something, blah blah...devops...cloud...", "url": "http://t.co/UfZiJnhhrI", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/522113078331469824/3hNzlCRo_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Wed Dec 31 17:11:43 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522113078331469824/3hNzlCRo_normal.jpeg", "favourites_count": 1326, "status": {"retweet_count": 151, "retweeted_status": {"retweet_count": 151, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684759334597857280", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "arstechnica.com/security/2016/\u2026", "url": "https://t.co/ucH6dJHoNl", "expanded_url": "http://arstechnica.com/security/2016/01/fatally-weak-md5-function-torpedoes-crypto-protections-in-https-and-ipsec/", "indices": [74, 97]}], "hashtags": [], "user_mentions": [{"screen_name": "dangoodin001", "id_str": "14150736", "id": 14150736, "indices": [101, 114], "name": "Dan Goodin"}]}, "created_at": "Wed Jan 06 15:32:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684759334597857280, "text": "Fatally weak MD5 function torpedoes crypto protections in HTTPS and IPSEC https://t.co/ucH6dJHoNl by @dangoodin001", "coordinates": null, "retweeted": false, "favorite_count": 84, "contributors": null, "source": "Ars tweetbot"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685217743394717701", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "arstechnica.com/security/2016/\u2026", "url": "https://t.co/ucH6dJHoNl", "expanded_url": "http://arstechnica.com/security/2016/01/fatally-weak-md5-function-torpedoes-crypto-protections-in-https-and-ipsec/", "indices": [91, 114]}], "hashtags": [], "user_mentions": [{"screen_name": "arstechnica", "id_str": "717313", "id": 717313, "indices": [3, 15], "name": "Ars Technica"}, {"screen_name": "dangoodin001", "id_str": "14150736", "id": 14150736, "indices": [118, 131], "name": "Dan Goodin"}]}, "created_at": "Thu Jan 07 21:53:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685217743394717701, "text": "RT @arstechnica: Fatally weak MD5 function torpedoes crypto protections in HTTPS and IPSEC https://t.co/ucH6dJHoNl by @dangoodin001", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 18510643, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4085, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18510643/1406063888", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "34610111", "following": false, "friends_count": 1089, "entities": {"description": {"urls": [{"display_url": "unscatter.com", "url": "http://t.co/lv2hAzXh34", "expanded_url": "http://www.unscatter.com", "indices": [43, 65]}, {"display_url": "joerussbowman.tumblr.com", "url": "http://t.co/uDoXXLNixh", "expanded_url": "http://joerussbowman.tumblr.com", "indices": [75, 97]}, {"display_url": "github.com/joerussbowman", "url": "https://t.co/Z35VDQ5ouH", "expanded_url": "https://github.com/joerussbowman", "indices": [114, 137]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22842058/twitter.jpg", "notifications": false, "profile_sidebar_fill_color": "0D4D69", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 457, "location": "", "screen_name": "joerussbowman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Joe Russ Bowman", "profile_use_background_image": true, "description": "Sysadmin, sometimes programmer. Working on http://t.co/lv2hAzXh34 - blog @ http://t.co/uDoXXLNixh and on github - https://t.co/Z35VDQ5ouH", "url": null, "profile_text_color": "5BA1F0", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/502104444830351360/BJ9HL5C8_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Thu Apr 23 13:24:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/502104444830351360/BJ9HL5C8_normal.jpeg", "favourites_count": 26, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685258190834012160", "id": 685258190834012160, "text": "Checking out Shannara Chronicles, waiting for Indiana Jones to come save the elves. #showingmyage", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "showingmyage", "indices": [84, 97]}], "user_mentions": []}, "created_at": "Fri Jan 08 00:34:18 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 34610111, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22842058/twitter.jpg", "statuses_count": 6465, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14510730", "following": false, "friends_count": 302, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sysdoc.io", "url": "https://t.co/sMSA5BwOj5", "expanded_url": "http://sysdoc.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000112950477/48f0551ad73bae7fb31e6254fdf24415.png", "notifications": false, "profile_sidebar_fill_color": "C4C4C4", "profile_link_color": "3C6CE6", "geo_enabled": false, "followers_count": 95, "location": "", "screen_name": "nrcook", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "Nick Cook", "profile_use_background_image": true, "description": "Product guy at @blackfinmedia, founder of Sysdoc.", "url": "https://t.co/sMSA5BwOj5", "profile_text_color": "BECFCC", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/598290668146962432/kgBgheRN_normal.png", "profile_background_color": "F2EAD0", "created_at": "Thu Apr 24 12:24:07 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/598290668146962432/kgBgheRN_normal.png", "favourites_count": 295, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "669565468324286465", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1GYHikT", "url": "https://t.co/fVd2SvFjXU", "expanded_url": "http://bit.ly/1GYHikT", "indices": [28, 51]}], "hashtags": [{"text": "programming", "indices": [52, 64]}, {"text": "developer", "indices": [65, 75]}, {"text": "learning", "indices": [76, 85]}], "user_mentions": []}, "created_at": "Wed Nov 25 17:17:02 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 669565468324286465, "text": "Learning to Program Sucks - https://t.co/fVd2SvFjXU #programming #developer #learning", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "Meet Edgar"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "669572900555485188", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1GYHikT", "url": "https://t.co/fVd2SvFjXU", "expanded_url": "http://bit.ly/1GYHikT", "indices": [44, 67]}], "hashtags": [{"text": "programming", "indices": [68, 80]}, {"text": "developer", "indices": [81, 91]}, {"text": "learning", "indices": [92, 101]}], "user_mentions": [{"screen_name": "donnfelker", "id_str": "14393851", "id": 14393851, "indices": [3, 14], "name": "Donn Felker"}]}, "created_at": "Wed Nov 25 17:46:34 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 669572900555485188, "text": "RT @donnfelker: Learning to Program Sucks - https://t.co/fVd2SvFjXU #programming #developer #learning", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14510730, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000112950477/48f0551ad73bae7fb31e6254fdf24415.png", "statuses_count": 917, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "15851858", "following": false, "friends_count": 885, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": true, "followers_count": 446, "location": "san francisco", "screen_name": "setient", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "setient", "profile_use_background_image": true, "description": "dev ops ftw. I am also a supportive of positivity. hearts everyone", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/522835111041961984/tJCL2ACm_normal.jpeg", "profile_background_color": "709397", "created_at": "Thu Aug 14 15:49:58 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522835111041961984/tJCL2ACm_normal.jpeg", "favourites_count": 1340, "status": {"retweet_count": 18, "retweeted_status": {"retweet_count": 18, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685472504115281920", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/jack_daniel/st\u2026", "url": "https://t.co/ES9Q17g8G3", "expanded_url": "https://twitter.com/jack_daniel/status/684936983219728385", "indices": [58, 81]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:45:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685472504115281920, "text": "We've lost a great friend, but you can make him live on. https://t.co/ES9Q17g8G3", "coordinates": null, "retweeted": false, "favorite_count": 27, "contributors": null, "source": "TweetCaster for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685495361608126464", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/jack_daniel/st\u2026", "url": "https://t.co/ES9Q17g8G3", "expanded_url": "https://twitter.com/jack_daniel/status/684936983219728385", "indices": [75, 98]}], "hashtags": [], "user_mentions": [{"screen_name": "jack_daniel", "id_str": "7025212", "id": 7025212, "indices": [3, 15], "name": "Jack Daniel"}]}, "created_at": "Fri Jan 08 16:16:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685495361608126464, "text": "RT @jack_daniel: We've lost a great friend, but you can make him live on. https://t.co/ES9Q17g8G3", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 15851858, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 5312, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "20865431", "following": false, "friends_count": 3374, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "standalone-sysadmin.com", "url": "http://t.co/YORxb7gX1b", "expanded_url": "http://www.standalone-sysadmin.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/106552711/twitter-backgrounda.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 5182, "location": "Los Angeles, CA", "screen_name": "standaloneSA", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 450, "name": "Matt Simmons", "profile_use_background_image": true, "description": "I play with computers all day in Iron Man's spaceship factory - Tweets are my own", "url": "http://t.co/YORxb7gX1b", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617651226658738176/3aplbFKo_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sat Feb 14 19:14:10 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617651226658738176/3aplbFKo_normal.jpg", "favourites_count": 3404, "status": {"retweet_count": 12, "retweeted_status": {"retweet_count": 12, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685259250369601537", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nbcnews.com/tech/innovatio\u2026", "url": "https://t.co/mpPdCyOHNn", "expanded_url": "http://www.nbcnews.com/tech/innovation/spacex-plans-drone-ship-rocket-landing-jan-17-launch-n492471", "indices": [37, 60]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 00:38:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685259250369601537, "text": "Now, let's nail a droneship landing! https://t.co/mpPdCyOHNn", "coordinates": null, "retweeted": false, "favorite_count": 22, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685271429793751040", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nbcnews.com/tech/innovatio\u2026", "url": "https://t.co/mpPdCyOHNn", "expanded_url": "http://www.nbcnews.com/tech/innovation/spacex-plans-drone-ship-rocket-landing-jan-17-launch-n492471", "indices": [56, 79]}], "hashtags": [], "user_mentions": [{"screen_name": "larsblackmore", "id_str": "562325211", "id": 562325211, "indices": [3, 17], "name": "Lars Blackmore"}]}, "created_at": "Fri Jan 08 01:26:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685271429793751040, "text": "RT @larsblackmore: Now, let's nail a droneship landing! https://t.co/mpPdCyOHNn", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 20865431, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/106552711/twitter-backgrounda.jpg", "statuses_count": 23481, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20865431/1401481629", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "132978921", "following": false, "friends_count": 736, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "etchsoftware.com", "url": "http://t.co/6bJgwMooHY", "expanded_url": "http://www.etchsoftware.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/413186195/DrWho10thDoor.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "10184F", "geo_enabled": true, "followers_count": 583, "location": "Portland, OR", "screen_name": "geekcode", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 54, "name": "Mike Bijon", "profile_use_background_image": false, "description": "Platform engineer & VP Tech @billupsww, coffee, #golang, coffee, #WordPress core & OSS contrib, runner, coffee. Yes, that much coffee.", "url": "http://t.co/6bJgwMooHY", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2778765012/1ded7889acf754782539a059a159768d_normal.png", "profile_background_color": "5D6569", "created_at": "Wed Apr 14 17:53:29 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2778765012/1ded7889acf754782539a059a159768d_normal.png", "favourites_count": 2234, "status": {"in_reply_to_status_id": 685495807496159232, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "danielbachhuber", "in_reply_to_user_id": 272166936, "in_reply_to_status_id_str": "685495807496159232", "in_reply_to_user_id_str": "272166936", "truncated": false, "id_str": "685591211986440192", "id": 685591211986440192, "text": "@danielbachhuber Like refactoring a whole lot just to make single-line corner cases testable?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "danielbachhuber", "id_str": "272166936", "id": 272166936, "indices": [0, 16], "name": "Daniel Bachhuber"}]}, "created_at": "Fri Jan 08 22:37:37 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 132978921, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/413186195/DrWho10thDoor.jpg", "statuses_count": 3841, "profile_banner_url": "https://pbs.twimg.com/profile_banners/132978921/1398211951", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "385757065", "following": false, "friends_count": 31, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rocketlift.com", "url": "http://t.co/st5RoBqEUR", "expanded_url": "http://rocketlift.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/749855714/d6af75093a620f71f8013dfdb80b48f5.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "727C89", "geo_enabled": false, "followers_count": 88, "location": "The Internet", "screen_name": "RocketLiftInc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Rocket Lift", "profile_use_background_image": true, "description": "We are capable, caring, thoughtful, excited humans who build world-class websites and web software.", "url": "http://t.co/st5RoBqEUR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3034405783/1ab06cea7818faea8b74571179bdc4ae_normal.png", "profile_background_color": "333842", "created_at": "Thu Oct 06 02:24:42 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3034405783/1ab06cea7818faea8b74571179bdc4ae_normal.png", "favourites_count": 19, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684123557534629888", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 176, "resize": "fit"}, "medium": {"w": 600, "h": 312, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 663, "h": 345, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX5-wCrUsAA13sD.png", "type": "photo", "indices": [65, 88], "media_url": "http://pbs.twimg.com/media/CX5-wCrUsAA13sD.png", "display_url": "pic.twitter.com/TaV5qQKGEZ", "id_str": "684123557224296448", "expanded_url": "http://twitter.com/RocketLiftInc/status/684123557534629888/photo/1", "id": 684123557224296448, "url": "https://t.co/TaV5qQKGEZ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 21:25:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684123557534629888, "text": "You won\u2019t believe how we\u2019re making strategic planning fun again. https://t.co/TaV5qQKGEZ", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 385757065, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/749855714/d6af75093a620f71f8013dfdb80b48f5.png", "statuses_count": 118, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2343043428", "following": false, "friends_count": 351, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 206, "location": "Toronto, ON, Canada", "screen_name": "Cliffehangers", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "Three-ve Cliffe", "profile_use_background_image": true, "description": "DadOps (to 3 kids) & DevOps (Product Sherpa @ PagerDuty)", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/434196387899535360/tSOrVjIW_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Feb 14 04:28:03 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/434196387899535360/tSOrVjIW_normal.jpeg", "favourites_count": 478, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "683561599886618624", "id": 683561599886618624, "text": "When your body wakes up \"naturally\" at 3am ... Ugh. #DadOps", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "DadOps", "indices": [52, 59]}], "user_mentions": []}, "created_at": "Sun Jan 03 08:12:40 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2343043428, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1041, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14871770", "following": false, "friends_count": 436, "entities": {"description": {"urls": [{"display_url": "rocketlift.com", "url": "http://t.co/PbFXp9t0bB", "expanded_url": "http://rocketlift.com", "indices": [44, 66]}, {"display_url": "galacticpanda.com", "url": "http://t.co/7mBG1S01PD", "expanded_url": "http://galacticpanda.com", "indices": [67, 89]}]}, "url": {"urls": [{"display_url": "mattheweppelsheimer.com", "url": "http://t.co/1YaawPsJh6", "expanded_url": "http://mattheweppelsheimer.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "F23000", "geo_enabled": false, "followers_count": 571, "location": "Portland, Oregon", "screen_name": "mattepp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 72, "name": "Matthew Eppelsheimer", "profile_use_background_image": true, "description": "Team lead @RocketLiftInc. #RCTID #WordPress http://t.co/PbFXp9t0bB http://t.co/7mBG1S01PD", "url": "http://t.co/1YaawPsJh6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683184178649632768/m7cwV27G_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu May 22 18:45:11 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683184178649632768/m7cwV27G_normal.jpg", "favourites_count": 5966, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685567757157400576", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 1365, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 453, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOgPLGUAAE1XQZ.jpg", "type": "photo", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CYOgPLGUAAE1XQZ.jpg", "display_url": "pic.twitter.com/Jzi6g7Oa2e", "id_str": "685567750828195841", "expanded_url": "http://twitter.com/mattepp/status/685567757157400576/photo/1", "id": 685567750828195841, "url": "https://t.co/Jzi6g7Oa2e"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ZekeHero", "id_str": "15663173", "id": 15663173, "indices": [1, 10], "name": "Mike Cassella"}]}, "created_at": "Fri Jan 08 21:04:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685567757157400576, "text": ".@ZekeHero pointed out we\u2019re in possession of the original theatrical releases of Star Wars IV-VI.\n\nThis whole time! https://t.co/Jzi6g7Oa2e", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 14871770, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 14509, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14871770/1435244285", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15368317", "following": false, "friends_count": 897, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paulosman.me", "url": "http://t.co/haR9pkCsWA", "expanded_url": "http://paulosman.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 1913, "location": "Austin, TX", "screen_name": "paulosman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 114, "name": "Paul Osman", "profile_use_background_image": true, "description": "Software Eng @UnderArmour Connected Fitness. Rider of Bikes, Toronto person living in Austin, Coffee Addict, @meghatron's less witty half.", "url": "http://t.co/haR9pkCsWA", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/646857949751578628/prqqpv7y_normal.jpg", "profile_background_color": "352726", "created_at": "Wed Jul 09 17:58:37 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/646857949751578628/prqqpv7y_normal.jpg", "favourites_count": 1353, "status": {"in_reply_to_status_id": 685293163267887104, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-97.928935, 30.127892], [-97.5805133, 30.127892], [-97.5805133, 30.5187994], [-97.928935, 30.5187994]]], "type": "Polygon"}, "full_name": "Austin, TX", "contained_within": [], "country_code": "US", "id": "c3f37afa9efcf94b", "name": "Austin"}, "in_reply_to_screen_name": "herhighnessness", "in_reply_to_user_id": 14437357, "in_reply_to_status_id_str": "685293163267887104", "in_reply_to_user_id_str": "14437357", "truncated": false, "id_str": "685309904001888257", "id": 685309904001888257, "text": "@herhighnessness it took me 2 years of living East before I was able to find my way around.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "herhighnessness", "id_str": "14437357", "id": 14437357, "indices": [0, 16], "name": "Chelsea Novak"}]}, "created_at": "Fri Jan 08 03:59:48 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15368317, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 6434, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15368317/1419781254", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "226319355", "following": false, "friends_count": 288, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/mpangrazzi", "url": "https://t.co/N54bTqXneR", "expanded_url": "https://github.com/mpangrazzi", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 65, "location": "Software Engineer", "screen_name": "xmikex83", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Michele Pangrazzi", "profile_use_background_image": true, "description": "Full-stack web developer. Mostly Javascript, HTML / CSS and Ruby. Node.js addict.", "url": "https://t.co/N54bTqXneR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000118991479/46019d4266676221ea1b3a6030749130_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Dec 13 21:53:44 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "it", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000118991479/46019d4266676221ea1b3a6030749130_normal.png", "favourites_count": 218, "status": {"retweet_count": 30, "retweeted_status": {"retweet_count": 30, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685487567098261504", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mitchrobb.com/chromes-consol\u2026", "url": "https://t.co/qoxwOguhtv", "expanded_url": "http://www.mitchrobb.com/chromes-console-api-greatest-hits/", "indices": [108, 131]}], "hashtags": [{"text": "js", "indices": [132, 135]}], "user_mentions": []}, "created_at": "Fri Jan 08 15:45:46 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685487567098261504, "text": "Chrome's Console API Greatest hits - .dir(), .table(), debug levels, and other great lesser-known features: https://t.co/qoxwOguhtv #js", "coordinates": null, "retweeted": false, "favorite_count": 35, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685529825344274432", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mitchrobb.com/chromes-consol\u2026", "url": "https://t.co/qoxwOguhtv", "expanded_url": "http://www.mitchrobb.com/chromes-console-api-greatest-hits/", "indices": [126, 140]}], "hashtags": [{"text": "js", "indices": [139, 140]}], "user_mentions": [{"screen_name": "_ericelliott", "id_str": "14148308", "id": 14148308, "indices": [3, 16], "name": "Eric Elliott"}]}, "created_at": "Fri Jan 08 18:33:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685529825344274432, "text": "RT @_ericelliott: Chrome's Console API Greatest hits - .dir(), .table(), debug levels, and other great lesser-known features: https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 226319355, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 465, "profile_banner_url": "https://pbs.twimg.com/profile_banners/226319355/1414508396", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "97307610", "following": false, "friends_count": 1499, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 185, "location": "Phoenix, AZ", "screen_name": "joshhardison", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "The One True Josh", "profile_use_background_image": true, "description": "I love math, programming, golf, my goofy kids and humanity in general.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1854007167/vKfwebYu_normal", "profile_background_color": "C0DEED", "created_at": "Wed Dec 16 22:52:17 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1854007167/vKfwebYu_normal", "favourites_count": 130, "status": {"retweet_count": 7058, "retweeted_status": {"retweet_count": 7058, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682700489000140801", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", "display_url": "pic.twitter.com/Smrls9NHFj", "id_str": "682700485787267072", "expanded_url": "http://twitter.com/dcatast/status/682700489000140801/photo/1", "id": 682700485787267072, "url": "https://t.co/Smrls9NHFj"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 31 23:10:55 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682700489000140801, "text": "Mother-i-L doesn't have Twitter. She wanted the world to see her bread. Told her I only 28 followers. \"That'll do.\" https://t.co/Smrls9NHFj", "coordinates": null, "retweeted": false, "favorite_count": 9394, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682711850098671616", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "682700489000140801", "media_url": "http://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", "source_user_id_str": "3045462152", "id_str": "682700485787267072", "id": 682700485787267072, "media_url_https": "https://pbs.twimg.com/media/CXlweYdWMAAK15z.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 682700489000140801, "source_user_id": 3045462152, "display_url": "pic.twitter.com/Smrls9NHFj", "expanded_url": "http://twitter.com/dcatast/status/682700489000140801/photo/1", "url": "https://t.co/Smrls9NHFj"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "dcatast", "id_str": "3045462152", "id": 3045462152, "indices": [3, 11], "name": "Dc"}]}, "created_at": "Thu Dec 31 23:56:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682711850098671616, "text": "RT @dcatast: Mother-i-L doesn't have Twitter. She wanted the world to see her bread. Told her I only 28 followers. \"That'll do.\" https://t.\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 97307610, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 589, "is_translator": false}, {"time_zone": "Rome", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "21745028", "following": false, "friends_count": 455, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/martinp", "url": "https://t.co/prsUC0LrCr", "expanded_url": "https://github.com/martinp", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 162, "location": "Trondheim, Norway", "screen_name": "mpolden", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Martin Polden", "profile_use_background_image": true, "description": "music snob, free software enthusiast, occasionally writes code, often curses code, works at yahoo", "url": "https://t.co/prsUC0LrCr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000711415781/b686d1b0cfae878f17a304fb278ef860_normal.png", "profile_background_color": "131516", "created_at": "Tue Feb 24 11:06:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000711415781/b686d1b0cfae878f17a304fb278ef860_normal.png", "favourites_count": 813, "status": {"in_reply_to_status_id": 685432425728598017, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mpolden", "in_reply_to_user_id": 21745028, "in_reply_to_status_id_str": "685432425728598017", "in_reply_to_user_id_str": "21745028", "truncated": false, "id_str": "685432737155670016", "id": 685432737155670016, "text": "@ingvald @atlefren @mrodem or Google Slides if I'm lazy :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ingvald", "id_str": "6564832", "id": 6564832, "indices": [0, 8], "name": "Ingvald Skaug"}, {"screen_name": "atlefren", "id_str": "14732917", "id": 14732917, "indices": [9, 18], "name": "Atle Frenvik Sveen"}, {"screen_name": "mrodem", "id_str": "22851988", "id": 22851988, "indices": [19, 26], "name": "Magne Rodem"}]}, "created_at": "Fri Jan 08 12:07:53 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 21745028, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 773, "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "15011401", "following": false, "friends_count": 317, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "evanshortiss.com", "url": "http://t.co/T1nBQwmLdz", "expanded_url": "http://www.evanshortiss.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "E65C20", "geo_enabled": true, "followers_count": 170, "location": "Boston, MA", "screen_name": "evanshortiss", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Evan Shortiss", "profile_use_background_image": true, "description": "Irishman. Photographer. Software Engineer @feedhenry @RedHatSoftware.", "url": "http://t.co/T1nBQwmLdz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/550108672668753921/eZ-HyfhG_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Jun 04 22:46:07 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/550108672668753921/eZ-HyfhG_normal.jpeg", "favourites_count": 153, "status": {"retweet_count": 1980, "retweeted_status": {"retweet_count": 1980, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678444166016335872", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 244, "resize": "fit"}, "medium": {"w": 600, "h": 431, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 736, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", "type": "photo", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", "display_url": "pic.twitter.com/znpnqmRwUW", "id_str": "678444165055819776", "expanded_url": "http://twitter.com/PolitiFact/status/678444166016335872/photo/1", "id": 678444165055819776, "url": "https://t.co/znpnqmRwUW"}], "symbols": [], "urls": [{"display_url": "ow.ly/W87ui", "url": "https://t.co/PWQKpmpUMD", "expanded_url": "http://ow.ly/W87ui", "indices": [75, 98]}], "hashtags": [], "user_mentions": []}, "created_at": "Sun Dec 20 05:17:48 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678444166016335872, "text": "Bernie Sanders is correct. US spends 3 times what UK spends on health care https://t.co/PWQKpmpUMD https://t.co/znpnqmRwUW", "coordinates": null, "retweeted": false, "favorite_count": 3177, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678541548024430592", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 244, "resize": "fit"}, "medium": {"w": 600, "h": 431, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 736, "resize": "fit"}}, "source_status_id_str": "678444166016335872", "media_url": "http://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", "source_user_id_str": "8953122", "id_str": "678444165055819776", "id": 678444165055819776, "media_url_https": "https://pbs.twimg.com/media/CWpRX6IWsAALzmc.jpg", "type": "photo", "indices": [115, 138], "source_status_id": 678444166016335872, "source_user_id": 8953122, "display_url": "pic.twitter.com/znpnqmRwUW", "expanded_url": "http://twitter.com/PolitiFact/status/678444166016335872/photo/1", "url": "https://t.co/znpnqmRwUW"}], "symbols": [], "urls": [{"display_url": "ow.ly/W87ui", "url": "https://t.co/PWQKpmpUMD", "expanded_url": "http://ow.ly/W87ui", "indices": [91, 114]}], "hashtags": [], "user_mentions": [{"screen_name": "PolitiFact", "id_str": "8953122", "id": 8953122, "indices": [3, 14], "name": "PolitiFact"}]}, "created_at": "Sun Dec 20 11:44:46 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678541548024430592, "text": "RT @PolitiFact: Bernie Sanders is correct. US spends 3 times what UK spends on health care https://t.co/PWQKpmpUMD https://t.co/znpnqmRwUW", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 15011401, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1025, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15011401/1407809987", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "360369653", "following": false, "friends_count": 3038, "entities": {"description": {"urls": [{"display_url": "nationalobserver.com", "url": "https://t.co/KEKlnliSlO", "expanded_url": "http://www.nationalobserver.com", "indices": [65, 88]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/340419679/sandytwitterbackground2.jpg", "notifications": false, "profile_sidebar_fill_color": "E8E8E8", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 7556, "location": "Vancouver", "screen_name": "Garossino", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 251, "name": "Sandy Garossino", "profile_use_background_image": false, "description": "writer, former trial lawyer, associate editor, National Observer https://t.co/KEKlnliSlO", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/637097904809734144/0QGM2l15_normal.png", "profile_background_color": "ED217A", "created_at": "Tue Aug 23 03:10:24 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "E8E8E8", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637097904809734144/0QGM2l15_normal.png", "favourites_count": 7439, "status": {"in_reply_to_status_id": 685598567185039360, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "pqpolitics", "in_reply_to_user_id": 246667561, "in_reply_to_status_id_str": "685598567185039360", "in_reply_to_user_id_str": "246667561", "truncated": false, "id_str": "685602547579502592", "id": 685602547579502592, "text": "@pqpolitics It\u2019s how a tinderbox situation should ideally be de-escalated tho...", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "pqpolitics", "id_str": "246667561", "id": 246667561, "indices": [0, 11], "name": "Pete Quily"}]}, "created_at": "Fri Jan 08 23:22:39 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 360369653, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/340419679/sandytwitterbackground2.jpg", "statuses_count": 32542, "profile_banner_url": "https://pbs.twimg.com/profile_banners/360369653/1408058611", "is_translator": false}, {"time_zone": "Ljubljana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "819606", "following": false, "friends_count": 4191, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "writing.jan.io", "url": "https://t.co/q2RB27h8sD", "expanded_url": "http://writing.jan.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685034469573681152/iYCV8S8K.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "000088", "geo_enabled": false, "followers_count": 13964, "location": "Berlin", "screen_name": "janl", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1024, "name": "Jan Lehnardt", "profile_use_background_image": true, "description": "Dissatisfied with the status-quo.\n\n@couchdb \u2022 @hoodiehq \u2022 @jsconfeu \u2022 @greenkeeperio \u2022 #offlinefirst\n\nCEO at neighbourhood.ie\n\nDuct tape artist and feminist.", "url": "https://t.co/q2RB27h8sD", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2673735348/331cefd2263bbc754979526b3fd48e4d_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 07 21:36:26 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2673735348/331cefd2263bbc754979526b3fd48e4d_normal.png", "favourites_count": 32485, "status": {"retweet_count": 89, "retweeted_status": {"retweet_count": 89, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685548731127738368", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 199, "resize": "fit"}, "medium": {"w": 454, "h": 266, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 454, "h": 266, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", "type": "photo", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", "display_url": "pic.twitter.com/ZEUtRUpo4o", "id_str": "685548730041397249", "expanded_url": "http://twitter.com/HaticeAkyuen/status/685548731127738368/photo/1", "id": 685548730041397249, "url": "https://t.co/ZEUtRUpo4o"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:48:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685548731127738368, "text": "Name verschwunden, Erg\u00e4nzung hinzugef\u00fcgt. Ich dachte, sowas gibt es nur in schlechten Filmen mit Journalisten. https://t.co/ZEUtRUpo4o", "coordinates": null, "retweeted": false, "favorite_count": 64, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685558331365285888", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 199, "resize": "fit"}, "medium": {"w": 454, "h": 266, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 454, "h": 266, "resize": "fit"}}, "source_status_id_str": "685548731127738368", "media_url": "http://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", "source_user_id_str": "67280909", "id_str": "685548730041397249", "id": 685548730041397249, "media_url_https": "https://pbs.twimg.com/media/CYOO8BJWcAEmitT.png", "type": "photo", "indices": [139, 140], "source_status_id": 685548731127738368, "source_user_id": 67280909, "display_url": "pic.twitter.com/ZEUtRUpo4o", "expanded_url": "http://twitter.com/HaticeAkyuen/status/685548731127738368/photo/1", "url": "https://t.co/ZEUtRUpo4o"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "HaticeAkyuen", "id_str": "67280909", "id": 67280909, "indices": [3, 16], "name": "Hatice Aky\u00fcn"}]}, "created_at": "Fri Jan 08 20:26:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685558331365285888, "text": "RT @HaticeAkyuen: Name verschwunden, Erg\u00e4nzung hinzugef\u00fcgt. Ich dachte, sowas gibt es nur in schlechten Filmen mit Journalisten. https://t.\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 819606, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685034469573681152/iYCV8S8K.jpg", "statuses_count": 110086, "profile_banner_url": "https://pbs.twimg.com/profile_banners/819606/1452160317", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "88168192", "following": false, "friends_count": 474, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "arndissler.net", "url": "http://t.co/ZUGi3nxlTE", "expanded_url": "http://arndissler.net/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000082688609/ddc4e686e13588938487da851ab1bdb6.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 189, "location": "Hamburg", "screen_name": "arndissler", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Arnd Issler", "profile_use_background_image": true, "description": "websites / apps / photos / development / @mailmindr - All tweets are ROT13 encrypted. Twice.", "url": "http://t.co/ZUGi3nxlTE", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/557489425559482369/aKukb5lm_normal.png", "profile_background_color": "030303", "created_at": "Sat Nov 07 11:33:51 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/557489425559482369/aKukb5lm_normal.png", "favourites_count": 1530, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685469542424928257", "id": 685469542424928257, "text": "Franzbr\u00f6tchen #ftw", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "ftw", "indices": [14, 18]}], "user_mentions": []}, "created_at": "Fri Jan 08 14:34:08 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "de"}, "default_profile_image": false, "id": 88168192, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000082688609/ddc4e686e13588938487da851ab1bdb6.jpeg", "statuses_count": 3088, "profile_banner_url": "https://pbs.twimg.com/profile_banners/88168192/1356087736", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14932908", "following": false, "friends_count": 503, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/zoepage/", "url": "https://t.co/b5WODoIU99", "expanded_url": "https://github.com/zoepage/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EDEDED", "profile_link_color": "ED0000", "geo_enabled": false, "followers_count": 2231, "location": "Dortmund / Berlin", "screen_name": "misprintedtype", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 193, "name": "/me npm i dance", "profile_use_background_image": true, "description": "JavaScript && daughter driven development. Sr. developer @getstyla && CTO @angefragtjs, part of @HoodieHQ, @rejectjs, @otsconf", "url": "https://t.co/b5WODoIU99", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681603537223172097/cwWKXWZY_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed May 28 12:02:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "DEDEDE", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681603537223172097/cwWKXWZY_normal.jpg", "favourites_count": 21535, "status": {"in_reply_to_status_id": 685532462873710592, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "blaue_flecken", "in_reply_to_user_id": 513354442, "in_reply_to_status_id_str": "685532462873710592", "in_reply_to_user_id_str": "513354442", "truncated": false, "id_str": "685532588442779648", "id": 685532588442779648, "text": "@blaue_flecken @badboy_ will aaaaaauch!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "blaue_flecken", "id_str": "513354442", "id": 513354442, "indices": [0, 14], "name": ". ."}, {"screen_name": "badboy_", "id_str": "13485262", "id": 13485262, "indices": [15, 23], "name": "RB_GC_GUARD(v)"}]}, "created_at": "Fri Jan 08 18:44:40 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "de"}, "default_profile_image": false, "id": 14932908, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 35491, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14932908/1449941458", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1436340385", "following": false, "friends_count": 380, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "danielmschmidt.de", "url": "http://t.co/VfRq2S27fl", "expanded_url": "http://danielmschmidt.de", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 79, "location": "Kiel", "screen_name": "DSchmidt1992", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Daniel Schmidt", "profile_use_background_image": true, "description": "Webdev, with focus on frontend and mobile development", "url": "http://t.co/VfRq2S27fl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/465053646409826304/heVzNqcF_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri May 17 18:08:47 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465053646409826304/heVzNqcF_normal.jpeg", "favourites_count": 448, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684965269748318208", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", "type": "photo", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", "display_url": "pic.twitter.com/evoMEqdv9g", "id_str": "684965254351069184", "expanded_url": "http://twitter.com/KrauseFx/status/684965269748318208/photo/1", "id": 684965254351069184, "url": "https://t.co/evoMEqdv9g"}], "symbols": [], "urls": [{"display_url": "fastlane.tools", "url": "https://t.co/dhb4eHkOnr", "expanded_url": "https://fastlane.tools", "indices": [25, 48]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 05:10:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/0079932b106eb4c9.json", "country": "Vi\u1ec7t Nam", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[106.356398, 10.365786], [107.012798, 10.365786], [107.012798, 11.160291], [106.356398, 11.160291]]], "type": "Polygon"}, "full_name": "Ho Chi Minh, Vietnam", "contained_within": [], "country_code": "VN", "id": "0079932b106eb4c9", "name": "Ho Chi Minh"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684965269748318208, "text": "1 year ago: drafting the https://t.co/dhb4eHkOnr website https://t.co/evoMEqdv9g", "coordinates": null, "retweeted": false, "favorite_count": 42, "contributors": null, "source": "Tweetbot for i\u039fS"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685375894597287936", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "source_status_id_str": "684965269748318208", "media_url": "http://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", "source_user_id_str": "50055757", "id_str": "684965254351069184", "id": 684965254351069184, "media_url_https": "https://pbs.twimg.com/media/CYF8RQ0UoAAGRFt.jpg", "type": "photo", "indices": [71, 94], "source_status_id": 684965269748318208, "source_user_id": 50055757, "display_url": "pic.twitter.com/evoMEqdv9g", "expanded_url": "http://twitter.com/KrauseFx/status/684965269748318208/photo/1", "url": "https://t.co/evoMEqdv9g"}], "symbols": [], "urls": [{"display_url": "fastlane.tools", "url": "https://t.co/dhb4eHkOnr", "expanded_url": "https://fastlane.tools", "indices": [39, 62]}], "hashtags": [], "user_mentions": [{"screen_name": "KrauseFx", "id_str": "50055757", "id": 50055757, "indices": [3, 12], "name": "Felix Krause"}]}, "created_at": "Fri Jan 08 08:22:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685375894597287936, "text": "RT @KrauseFx: 1 year ago: drafting the https://t.co/dhb4eHkOnr website https://t.co/evoMEqdv9g", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1436340385, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 513, "is_translator": false}, {"time_zone": "Edinburgh", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "17368293", "following": false, "friends_count": 479, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tinnedfruit.com", "url": "http://t.co/pzfe4KxYu4", "expanded_url": "http://tinnedfruit.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 672, "location": "Edinburgh", "screen_name": "froots101", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "Jim Newbery", "profile_use_background_image": true, "description": "Director of Front End Engineering at FanDuel. Director of Front End Snack Consumption everywhere.", "url": "http://t.co/pzfe4KxYu4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459350515189428224/mDJMxNmx_normal.png", "profile_background_color": "131516", "created_at": "Thu Nov 13 16:36:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459350515189428224/mDJMxNmx_normal.png", "favourites_count": 811, "status": {"retweet_count": 1831, "retweeted_status": {"retweet_count": 1831, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685484472498798592", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 602, "resize": "fit"}, "medium": {"w": 599, "h": 602, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "type": "photo", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "display_url": "pic.twitter.com/TMcevQeAVA", "id_str": "685484471227953152", "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", "id": 685484471227953152, "url": "https://t.co/TMcevQeAVA"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:33:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685484472498798592, "text": "This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https://t.co/TMcevQeAVA", "coordinates": null, "retweeted": false, "favorite_count": 1984, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685512506593394689", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 602, "resize": "fit"}, "medium": {"w": 599, "h": 602, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "source_status_id_str": "685484472498798592", "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "source_user_id_str": "119043148", "id_str": "685484471227953152", "id": 685484471227953152, "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685484472498798592, "source_user_id": 119043148, "display_url": "pic.twitter.com/TMcevQeAVA", "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", "url": "https://t.co/TMcevQeAVA"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lukekarmali", "id_str": "119043148", "id": 119043148, "indices": [3, 15], "name": "Luke Karmali"}]}, "created_at": "Fri Jan 08 17:24:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685512506593394689, "text": "RT @lukekarmali: This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 17368293, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5284, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17368293/1364377512", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "253635851", "following": false, "friends_count": 46, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 57, "location": "Universe", "screen_name": "EdwinMons", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Edwin Mons", "profile_use_background_image": true, "description": "Publiek geneuzel van Edwin", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1867125171/Foto_op_22-11-2011_om_09.34_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Feb 17 17:12:32 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1867125171/Foto_op_22-11-2011_om_09.34_normal.jpg", "favourites_count": 42, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "677420835007803392", "id": 677420835007803392, "text": "I suspect there's a huge overlap in people from the Sirius Cybernetics Corp Marketing Division, and people who think systemd is a good idea.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 17 09:31:27 +0000 2015", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 253635851, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 324, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "16168410", "following": false, "friends_count": 503, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "shanehudson.net/work", "url": "https://t.co/Jht5i7jeDz", "expanded_url": "https://shanehudson.net/work", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/429521174/bg.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "83AFB6", "geo_enabled": true, "followers_count": 2968, "location": "West Sussex, England", "screen_name": "ShaneHudson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 134, "name": "Shane Hudson", "profile_use_background_image": true, "description": "I'm a freelance developer, making stuff on the Web. Wrote a book - JavaScript Creativity. shane@shanehudson.net", "url": "https://t.co/Jht5i7jeDz", "profile_text_color": "4B729C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/476845708578803712/RnApcn6v_normal.png", "profile_background_color": "E8E6DF", "created_at": "Sun Sep 07 12:03:21 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "CDCDCD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/476845708578803712/RnApcn6v_normal.png", "favourites_count": 19843, "status": {"in_reply_to_status_id": 685475509489299457, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "edd_greer", "in_reply_to_user_id": 328566545, "in_reply_to_status_id_str": "685475509489299457", "in_reply_to_user_id_str": "328566545", "truncated": false, "id_str": "685476367274737665", "id": 685476367274737665, "text": "@edd_greer I'm sitting in a cafe looking over the sea. Really is lovely today :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "edd_greer", "id_str": "328566545", "id": 328566545, "indices": [0, 10], "name": "Edward Oliver Greer"}]}, "created_at": "Fri Jan 08 15:01:16 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16168410, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/429521174/bg.jpg", "statuses_count": 47918, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16168410/1412614431", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "408410310", "following": false, "friends_count": 1081, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 99, "location": "", "screen_name": "JanuschH", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Janusch", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/549874024797323264/omgsmKnh_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Nov 09 11:38:57 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/549874024797323264/omgsmKnh_normal.jpeg", "favourites_count": 321, "status": {"in_reply_to_status_id": 669000572226285568, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "t_spicydonuts", "in_reply_to_user_id": 623182154, "in_reply_to_status_id_str": "669000572226285568", "in_reply_to_user_id_str": "623182154", "truncated": false, "id_str": "669276857259397121", "id": 669276857259397121, "text": "@t_spicydonuts @babeljs O.o I feel your pain, had to roll back my 5to6 upgrade attempt as well, being an early adopter bit me. Good luck!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "t_spicydonuts", "id_str": "623182154", "id": 623182154, "indices": [0, 14], "name": "Michael Trotter"}, {"screen_name": "babeljs", "id_str": "2958823554", "id": 2958823554, "indices": [15, 23], "name": "Babel"}]}, "created_at": "Tue Nov 24 22:10:11 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 408410310, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 136, "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "14092028", "following": false, "friends_count": 1009, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "saperduper.org", "url": "http://t.co/DVWiulnJKs", "expanded_url": "http://saperduper.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3201906/PA25-TC4Matt-3.jpg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": false, "followers_count": 771, "location": "Athens, GR", "screen_name": "saperduper", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "saperduper", "profile_use_background_image": true, "description": "An electrical and computer engineer trying to manage uncertainty", "url": "http://t.co/DVWiulnJKs", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/52795574/sd_normal.jpg", "profile_background_color": "E8E8E8", "created_at": "Thu Mar 06 23:11:32 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/52795574/sd_normal.jpg", "favourites_count": 51, "status": {"in_reply_to_status_id": 662330478377181184, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "stazybohorn", "in_reply_to_user_id": 14733413, "in_reply_to_status_id_str": "662330478377181184", "in_reply_to_user_id_str": "14733413", "truncated": false, "id_str": "662367381495406594", "id": 662367381495406594, "text": "@stazybohorn \u03bc\u03bf\u03bd\u03bf \u03b7 \u03a0\u03b1\u03bd\u03b1\u03b8\u03b1 \u03bc\u03b1\u03c2 \u03c0\u03bb\u03b7\u03b3\u03c9\u03bd\u03b5\u03b9", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "stazybohorn", "id_str": "14733413", "id": 14733413, "indices": [0, 12], "name": "Stazybo Horn"}]}, "created_at": "Thu Nov 05 20:34:24 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "el"}, "default_profile_image": false, "id": 14092028, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3201906/PA25-TC4Matt-3.jpg", "statuses_count": 2074, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "559330891", "following": false, "friends_count": 176, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/zooldk", "url": "https://t.co/gJQlWm0aVr", "expanded_url": "http://about.me/zooldk", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 182, "location": "Copenhagen, Denmark", "screen_name": "zooldk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Steffen Larsen", "profile_use_background_image": true, "description": "CTO of CodeZense, Founder of BrainTrust ApS, Full stack software developer, Entrepreneur, Consultant. Computer Science, Copenhagen University Alumni.", "url": "https://t.co/gJQlWm0aVr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/578588645025845249/gZq4o02q_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Apr 21 08:29:04 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/578588645025845249/gZq4o02q_normal.jpeg", "favourites_count": 1892, "status": {"retweet_count": 63, "retweeted_status": {"retweet_count": 63, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684119465567629312", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 296, "h": 296, "resize": "fit"}, "medium": {"w": 296, "h": 296, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 296, "h": 296, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", "type": "photo", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", "display_url": "pic.twitter.com/NBtp4EjJmo", "id_str": "684119465315930114", "expanded_url": "http://twitter.com/TheOfficialACM/status/684119465567629312/photo/1", "id": 684119465315930114, "url": "https://t.co/NBtp4EjJmo"}], "symbols": [], "urls": [{"display_url": "ow.ly/WCvA5", "url": "https://t.co/DV0YKIcU5O", "expanded_url": "http://ow.ly/WCvA5", "indices": [82, 105]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 21:09:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684119465567629312, "text": "Peter Naur, 2005 recipient of the ACM A.M. Turing Award, passed away on Jan. 3rd. https://t.co/DV0YKIcU5O https://t.co/NBtp4EjJmo", "coordinates": null, "retweeted": false, "favorite_count": 21, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684303063860031488", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 296, "h": 296, "resize": "fit"}, "medium": {"w": 296, "h": 296, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 296, "h": 296, "resize": "fit"}}, "source_status_id_str": "684119465567629312", "media_url": "http://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", "source_user_id_str": "115763683", "id_str": "684119465315930114", "id": 684119465315930114, "media_url_https": "https://pbs.twimg.com/media/CX57B3IWEAIapTu.jpg", "type": "photo", "indices": [126, 140], "source_status_id": 684119465567629312, "source_user_id": 115763683, "display_url": "pic.twitter.com/NBtp4EjJmo", "expanded_url": "http://twitter.com/TheOfficialACM/status/684119465567629312/photo/1", "url": "https://t.co/NBtp4EjJmo"}], "symbols": [], "urls": [{"display_url": "ow.ly/WCvA5", "url": "https://t.co/DV0YKIcU5O", "expanded_url": "http://ow.ly/WCvA5", "indices": [102, 125]}], "hashtags": [], "user_mentions": [{"screen_name": "TheOfficialACM", "id_str": "115763683", "id": 115763683, "indices": [3, 18], "name": "Official ACM"}]}, "created_at": "Tue Jan 05 09:18:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684303063860031488, "text": "RT @TheOfficialACM: Peter Naur, 2005 recipient of the ACM A.M. Turing Award, passed away on Jan. 3rd. https://t.co/DV0YKIcU5O https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 559330891, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1915, "profile_banner_url": "https://pbs.twimg.com/profile_banners/559330891/1445665136", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "21531737", "following": false, "friends_count": 659, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 524, "location": "Fort Worth, TX", "screen_name": "andyregan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Andrew Regan", "profile_use_background_image": true, "description": "Sysadmin turned developer. Lover of linux, comics and supercomputers.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1149429588/movember_aregan_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Feb 22 00:37:34 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1149429588/movember_aregan_normal.png", "favourites_count": 1055, "status": {"in_reply_to_status_id": 682934542848684032, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "damienmulley", "in_reply_to_user_id": 193753, "in_reply_to_status_id_str": "682934542848684032", "in_reply_to_user_id_str": "193753", "truncated": false, "id_str": "682939572787920900", "id": 682939572787920900, "text": "@damienmulley the currency of the proletariat", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "damienmulley", "id_str": "193753", "id": 193753, "indices": [0, 13], "name": "Damien Mulley "}]}, "created_at": "Fri Jan 01 15:00:57 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 21531737, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3855, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21531737/1351450162", "is_translator": false}, {"time_zone": "Mumbai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "1484841", "following": false, "friends_count": 617, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "plus.google.com/10720687640631\u2026", "url": "https://t.co/Pl4J9f1vtE", "expanded_url": "https://plus.google.com/107206876406312072458/about", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/716204525/9696ef443d52817370a48acaab983baa.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 607, "location": "Mumbai, India", "screen_name": "tapan_pandita", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "Tapan Pandita", "profile_use_background_image": true, "description": "Geek, Gooner, Internet-lover, Internet-maker, IITian, Worked on mobile payments, Startup founder", "url": "https://t.co/Pl4J9f1vtE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459029023134195712/KPrRyuGu_normal.jpeg", "profile_background_color": "022330", "created_at": "Mon Mar 19 09:23:36 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459029023134195712/KPrRyuGu_normal.jpeg", "favourites_count": 38, "status": {"retweet_count": 29492, "retweeted_status": {"retweet_count": 29492, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682916583073779712", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 682, "resize": "fit"}, "small": {"w": 340, "h": 226, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 399, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", "type": "photo", "indices": [100, 123], "media_url": "http://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", "display_url": "pic.twitter.com/szKKRM4U4i", "id_str": "682916557333331968", "expanded_url": "http://twitter.com/hughesroland/status/682916583073779712/photo/1", "id": 682916557333331968, "url": "https://t.co/szKKRM4U4i"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 01 13:29:36 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682916583073779712, "text": "So much going on this pic of New Year in Manchester by the Evening News. Like a beautiful painting. https://t.co/szKKRM4U4i", "coordinates": null, "retweeted": false, "favorite_count": 30876, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683157885594025984", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 682, "resize": "fit"}, "small": {"w": 340, "h": 226, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 399, "resize": "fit"}}, "source_status_id_str": "682916583073779712", "media_url": "http://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", "source_user_id_str": "23226772", "id_str": "682916557333331968", "id": 682916557333331968, "media_url_https": "https://pbs.twimg.com/media/CXo0_ZsWAAAeCUm.jpg", "type": "photo", "indices": [118, 140], "source_status_id": 682916583073779712, "source_user_id": 23226772, "display_url": "pic.twitter.com/szKKRM4U4i", "expanded_url": "http://twitter.com/hughesroland/status/682916583073779712/photo/1", "url": "https://t.co/szKKRM4U4i"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "hughesroland", "id_str": "23226772", "id": 23226772, "indices": [3, 16], "name": "Roland Hughes"}]}, "created_at": "Sat Jan 02 05:28:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683157885594025984, "text": "RT @hughesroland: So much going on this pic of New Year in Manchester by the Evening News. Like a beautiful painting. https://t.co/szKKRM4U\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 1484841, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/716204525/9696ef443d52817370a48acaab983baa.jpeg", "statuses_count": 3063, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1484841/1398276053", "is_translator": false}, {"time_zone": "Chennai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "23416061", "following": false, "friends_count": 513, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/sarguru", "url": "http://t.co/USoQKrxCvl", "expanded_url": "http://about.me/sarguru", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 361, "location": "London, England", "screen_name": "sargru90", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "sarguru nathan", "profile_use_background_image": true, "description": "Recovering sysadmin .works for @yelpengineering CM hipster. ruby, puppet , now a clojure fanboy. slow ops, agile cyclist.", "url": "http://t.co/USoQKrxCvl", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/490495237328863232/3AN7xaLa_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Mon Mar 09 08:41:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/490495237328863232/3AN7xaLa_normal.jpeg", "favourites_count": 417, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/457b4814b4240d87.json", "country": "United Kingdom", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-0.187894, 51.483718], [-0.109978, 51.483718], [-0.109978, 51.5164655], [-0.187894, 51.5164655]]], "type": "Polygon"}, "full_name": "London, England", "contained_within": [], "country_code": "GB", "id": "457b4814b4240d87", "name": "London"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685545696246784000", "id": 685545696246784000, "text": "#Tarantino time baby", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Tarantino", "indices": [0, 10]}], "user_mentions": []}, "created_at": "Fri Jan 08 19:36:45 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 23416061, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 1432, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23416061/1416984764", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "76099033", "following": false, "friends_count": 155, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/145126124/grass-lq.jpg", "notifications": false, "profile_sidebar_fill_color": "8FB8BA", "profile_link_color": "008720", "geo_enabled": false, "followers_count": 191, "location": "Netherlands", "screen_name": "guusdk", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 8, "name": "Guus der Kinderen", "profile_use_background_image": true, "description": "The grass is pretty freakin' green on this side.", "url": null, "profile_text_color": "1C1C1C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/427854615/trouwfoto-oorbijt-zw_normal.jpg", "profile_background_color": "B2D7DB", "created_at": "Mon Sep 21 18:20:18 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "1C1C1C", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/427854615/trouwfoto-oorbijt-zw_normal.jpg", "favourites_count": 74, "status": {"retweet_count": 298, "retweeted_status": {"retweet_count": 298, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684679564153516032", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 423, "resize": "fit"}, "large": {"w": 741, "h": 924, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 748, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", "type": "photo", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", "display_url": "pic.twitter.com/lSQm80ugwe", "id_str": "684679558361182208", "expanded_url": "http://twitter.com/resiak/status/684679564153516032/photo/1", "id": 684679558361182208, "url": "https://t.co/lSQm80ugwe"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 10:15:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684679564153516032, "text": "I once believed that multi-protocol IM clients were a stopgap on the road to an inevitable federated XMPP future. https://t.co/lSQm80ugwe", "coordinates": null, "retweeted": false, "favorite_count": 196, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684839912361865216", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 423, "resize": "fit"}, "large": {"w": 741, "h": 924, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 748, "resize": "fit"}}, "source_status_id_str": "684679564153516032", "media_url": "http://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", "source_user_id_str": "786920", "id_str": "684679558361182208", "id": 684679558361182208, "media_url_https": "https://pbs.twimg.com/media/CYB4bkUW8AAMvHL.jpg", "type": "photo", "indices": [126, 140], "source_status_id": 684679564153516032, "source_user_id": 786920, "display_url": "pic.twitter.com/lSQm80ugwe", "expanded_url": "http://twitter.com/resiak/status/684679564153516032/photo/1", "url": "https://t.co/lSQm80ugwe"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "resiak", "id_str": "786920", "id": 786920, "indices": [3, 10], "name": "w\u0131ll thompson"}]}, "created_at": "Wed Jan 06 20:52:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684839912361865216, "text": "RT @resiak: I once believed that multi-protocol IM clients were a stopgap on the road to an inevitable federated XMPP future. https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 76099033, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/145126124/grass-lq.jpg", "statuses_count": 2529, "profile_banner_url": "https://pbs.twimg.com/profile_banners/76099033/1354456627", "is_translator": false}, {"time_zone": "Mumbai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "73310549", "following": false, "friends_count": 1435, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chetandhembre.in", "url": "https://t.co/s0YPA3pwAa", "expanded_url": "http://chetandhembre.in", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 605, "location": "Navi Mumbai, India", "screen_name": "ichetandhembre", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "inexperienced I am", "profile_use_background_image": false, "description": "...", "url": "https://t.co/s0YPA3pwAa", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680319727206576128/Y92744-C_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Sep 11 04:40:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680319727206576128/Y92744-C_normal.jpg", "favourites_count": 1396, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685456239564701697", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "unacademy.in/lesson/increas\u2026", "url": "https://t.co/8ba42bkSq7", "expanded_url": "https://unacademy.in/lesson/increase-vocabulary-top-words-part-2/QKFHK3T5", "indices": [57, 80]}], "hashtags": [], "user_mentions": [{"screen_name": "theunacademy", "id_str": "231029978", "id": 231029978, "indices": [81, 94], "name": "Unacademy"}]}, "created_at": "Fri Jan 08 13:41:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685456239564701697, "text": "Increase Vocabulary: Top words Part 2 by Gaurav Munjal https://t.co/8ba42bkSq7 @theunacademy", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685464166203830272", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "unacademy.in/lesson/increas\u2026", "url": "https://t.co/8ba42bkSq7", "expanded_url": "https://unacademy.in/lesson/increase-vocabulary-top-words-part-2/QKFHK3T5", "indices": [75, 98]}], "hashtags": [], "user_mentions": [{"screen_name": "gauravmunjal", "id_str": "31501423", "id": 31501423, "indices": [3, 16], "name": "Gaurav Munjal"}, {"screen_name": "theunacademy", "id_str": "231029978", "id": 231029978, "indices": [99, 112], "name": "Unacademy"}]}, "created_at": "Fri Jan 08 14:12:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685464166203830272, "text": "RT @gauravmunjal: Increase Vocabulary: Top words Part 2 by Gaurav Munjal https://t.co/8ba42bkSq7 @theunacademy", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 73310549, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 2357, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "24964948", "following": false, "friends_count": 463, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/bruderstein", "url": "http://t.co/TJQjEm9pXy", "expanded_url": "http://github.com/bruderstein", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 278, "location": "Hamburg, Germany", "screen_name": "bruderstein", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Dave Brotherstone", "profile_use_background_image": true, "description": "Developer. Notepad++ stuff, chocoholic, JavaScript, React. Not in that order.", "url": "http://t.co/TJQjEm9pXy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/452846584003166208/qtYdhQ--_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Mar 17 22:02:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/452846584003166208/qtYdhQ--_normal.jpeg", "favourites_count": 474, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685390215364612096", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/polotek/status\u2026", "url": "https://t.co/Yx9WC4TJBv", "expanded_url": "https://twitter.com/polotek/status/685276186461646848", "indices": [102, 125]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 09:18:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685390215364612096, "text": "I guarantee this is the most gripping and beautiful story you will read all week. Follow this thread. https://t.co/Yx9WC4TJBv", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 24964948, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1257, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "7528442", "following": false, "friends_count": 1332, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "matijs.net", "url": "http://t.co/GVgHaYZHuj", "expanded_url": "http://www.matijs.net/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 453, "location": "Amsterdam", "screen_name": "mvz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Matijs van Zuijlen", "profile_use_background_image": true, "description": "Ruby developer. I retweet a lot.\nRTs means interesting or relevant.\nLikes are mostly just bookmarks.", "url": "http://t.co/GVgHaYZHuj", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477379684607328256/mASX3Axo_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Tue Jul 17 10:27:13 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477379684607328256/mASX3Axo_normal.jpeg", "favourites_count": 12329, "status": {"retweet_count": 24, "retweeted_status": {"retweet_count": 24, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683390981186666496", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "large": {"w": 403, "h": 537, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 403, "h": 537, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", "type": "photo", "indices": [52, 75], "media_url": "http://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", "display_url": "pic.twitter.com/QyanRNrUMq", "id_str": "683390981069246466", "expanded_url": "http://twitter.com/taalmissers/status/683390981186666496/photo/1", "id": 683390981069246466, "url": "https://t.co/QyanRNrUMq"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Rili2013", "id_str": "1249816142", "id": 1249816142, "indices": [42, 51], "name": "Rili"}]}, "created_at": "Sat Jan 02 20:54:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "nl", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683390981186666496, "text": "[Leuker kunnen we ze niet maken ...] Dank @Rili2013 https://t.co/QyanRNrUMq", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Tweetbot for i\u039fS"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685559282977341440", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "large": {"w": 403, "h": 537, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 403, "h": 537, "resize": "fit"}}, "source_status_id_str": "683390981186666496", "media_url": "http://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", "source_user_id_str": "32399548", "id_str": "683390981069246466", "id": 683390981069246466, "media_url_https": "https://pbs.twimg.com/media/CXvkef1WkAICf2W.jpg", "type": "photo", "indices": [69, 92], "source_status_id": 683390981186666496, "source_user_id": 32399548, "display_url": "pic.twitter.com/QyanRNrUMq", "expanded_url": "http://twitter.com/taalmissers/status/683390981186666496/photo/1", "url": "https://t.co/QyanRNrUMq"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "taalmissers", "id_str": "32399548", "id": 32399548, "indices": [3, 15], "name": "Het Ned. Tekstbureau"}, {"screen_name": "Rili2013", "id_str": "1249816142", "id": 1249816142, "indices": [59, 68], "name": "Rili"}]}, "created_at": "Fri Jan 08 20:30:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "nl", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685559282977341440, "text": "RT @taalmissers: [Leuker kunnen we ze niet maken ...] Dank @Rili2013 https://t.co/QyanRNrUMq", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 7528442, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 9014, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2895215379", "following": false, "friends_count": 191, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iszlai.github.io", "url": "http://t.co/8gQhdB834N", "expanded_url": "http://iszlai.github.io", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 31, "location": "Budapest", "screen_name": "LehelIszlai", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Iszlai Lehel ", "profile_use_background_image": true, "description": "programming rants technology engineering", "url": "http://t.co/8gQhdB834N", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/538106876119236608/gY_sgbLT_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Nov 27 22:40:09 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/538106876119236608/gY_sgbLT_normal.jpeg", "favourites_count": 32, "status": {"in_reply_to_status_id": 680771816898584576, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "bkhayll", "in_reply_to_user_id": 313849423, "in_reply_to_status_id_str": "680771816898584576", "in_reply_to_user_id_str": "313849423", "truncated": false, "id_str": "680775867375681537", "id": 680775867375681537, "text": "@bkhayll how do I sign up?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "bkhayll", "id_str": "313849423", "id": 313849423, "indices": [0, 8], "name": "Bal\u00e1zs Korossy"}]}, "created_at": "Sat Dec 26 15:43:09 +0000 2015", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2895215379, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 92, "is_translator": false}, {"time_zone": "Riyadh", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 10800, "id_str": "327614909", "following": false, "friends_count": 250, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/samiali", "url": "http://t.co/RiNxgClA23", "expanded_url": "http://linkedin.com/in/samiali", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000030037276/d50e76a0ab435fb0c9d15d6b4ab109e4.jpeg", "notifications": false, "profile_sidebar_fill_color": "424C55", "profile_link_color": "02358F", "geo_enabled": false, "followers_count": 190, "location": "/sys/kernel/address.py", "screen_name": "rootsami", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Sami Al-Haddad", "profile_use_background_image": true, "description": "SysAdmin / DevOps | Machines Are there to serve me! Passionate & in love with #linux | #OpenSource | #Troubleshooter by Nature :)", "url": "http://t.co/RiNxgClA23", "profile_text_color": "8CB2BD", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/418668442687119360/5sZ2JsZ7_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Fri Jul 01 21:16:57 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/418668442687119360/5sZ2JsZ7_normal.jpeg", "favourites_count": 46, "status": {"in_reply_to_status_id": 683057420239765508, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ghaleb_tw", "in_reply_to_user_id": 296725460, "in_reply_to_status_id_str": "683057420239765508", "in_reply_to_user_id_str": "296725460", "truncated": false, "id_str": "683550085586763777", "id": 683550085586763777, "text": "@ghaleb_tw @Rdfanaldbes2015 \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0627\u0646\u0643 \u0645\u0631\u0627\u0633\u0644 \u064a\u0627 \u0631\u062f\u0641\u0627\u0646 .. \u0645\u0627\u062c\u0627\u0628\u0646\u0627 \u0648\u0631\u0627 \u0627\u0644\u0627 \u0627\u0644\u062f\u0631\u0639\u0645\u0647 \u0647\u0630\u064a", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ghaleb_tw", "id_str": "296725460", "id": 296725460, "indices": [0, 10], "name": "\u063a\u0627\u0644\u0628"}, {"screen_name": "Rdfanaldbes2015", "id_str": "4285377393", "id": 4285377393, "indices": [11, 27], "name": "\u0631\u062f\u0641\u0627\u0646 \u0627\u0644\u062f\u0628\u064a\u0633"}]}, "created_at": "Sun Jan 03 07:26:54 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "ar"}, "default_profile_image": false, "id": 327614909, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000030037276/d50e76a0ab435fb0c9d15d6b4ab109e4.jpeg", "statuses_count": 646, "profile_banner_url": "https://pbs.twimg.com/profile_banners/327614909/1374112127", "is_translator": false}, {"time_zone": "Cairo", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "14948104", "following": false, "friends_count": 1349, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "manhag.org", "url": "http://t.co/DMZoxwFnLX", "expanded_url": "http://www.manhag.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 1196, "location": "Alexandria - Egypt", "screen_name": "0xAhmed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 48, "name": "Ahmed El-Gamil", "profile_use_background_image": true, "description": "Sysadmin, UNIX/Linux, DevOps, Code, Systems Engineer breaking systems in the name of advancing them .. having fun with @deveoteam", "url": "http://t.co/DMZoxwFnLX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/422823950905667584/wun-szid_normal.jpeg", "profile_background_color": "131516", "created_at": "Thu May 29 20:54:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/422823950905667584/wun-szid_normal.jpeg", "favourites_count": 115, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685083918400368640", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1SC6Szu", "url": "https://t.co/b4ZCmfs5BG", "expanded_url": "http://buff.ly/1SC6Szu", "indices": [60, 83]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 13:01:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685083918400368640, "text": "How to setup Jenkins integration to feature branch workflow https://t.co/b4ZCmfs5BG", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685116223537950720", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1SC6Szu", "url": "https://t.co/b4ZCmfs5BG", "expanded_url": "http://buff.ly/1SC6Szu", "indices": [75, 98]}], "hashtags": [], "user_mentions": [{"screen_name": "deveoteam", "id_str": "522084018", "id": 522084018, "indices": [3, 13], "name": "Deveo"}]}, "created_at": "Thu Jan 07 15:10:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685116223537950720, "text": "RT @deveoteam: How to setup Jenkins integration to feature branch workflow https://t.co/b4ZCmfs5BG", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 14948104, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5876, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "916321", "following": false, "friends_count": 152, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 372, "location": "Vienna, Austria", "screen_name": "johannestroeger", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 17, "name": "Johannes Troeger", "profile_use_background_image": true, "description": "Software Engineer @nextSocietyInc", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/606853055229902848/aN3ifQxG_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun Mar 11 10:36:27 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/606853055229902848/aN3ifQxG_normal.jpg", "favourites_count": 3049, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 916321, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1745, "profile_banner_url": "https://pbs.twimg.com/profile_banners/916321/1392902324", "is_translator": false}, {"time_zone": "Bucharest", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "35193525", "following": false, "friends_count": 539, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jakob.cosoroaba.ro", "url": "https://t.co/HR5KD2x5EJ", "expanded_url": "http://jakob.cosoroaba.ro/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458876762768699393/5Nr2HzuK.jpeg", "notifications": false, "profile_sidebar_fill_color": "808042", "profile_link_color": "A10E1F", "geo_enabled": true, "followers_count": 641, "location": "Bucuresti, Romania, Europe", "screen_name": "jcsrb", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 52, "name": "Jakob Cosoroab\u0103", "profile_use_background_image": true, "description": "I build and break Webapps. Bearded and inquisitive by nature, tweet your ideas to me", "url": "https://t.co/HR5KD2x5EJ", "profile_text_color": "1A2928", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676394276935368704/w3-XVYQu_normal.jpg", "profile_background_color": "A10E20", "created_at": "Sat Apr 25 11:27:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676394276935368704/w3-XVYQu_normal.jpg", "favourites_count": 3167, "status": {"retweet_count": 426, "retweeted_status": {"retweet_count": 426, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685483687895511040", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1000, "h": 563, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNTyClWkAAOV__.png", "type": "photo", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CYNTyClWkAAOV__.png", "display_url": "pic.twitter.com/bHItWJ6Syn", "id_str": "685483687442550784", "expanded_url": "http://twitter.com/UnixToolTip/status/685483687895511040/photo/1", "id": 685483687442550784, "url": "https://t.co/bHItWJ6Syn"}], "symbols": [], "urls": [{"display_url": "cube-drone.com/comics/c/holy-\u2026", "url": "https://t.co/LpJlixHWqq", "expanded_url": "http://cube-drone.com/comics/c/holy-war", "indices": [31, 54]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:30:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "pt", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685483687895511040, "text": "Comparison of Vim, Emacs, Nano https://t.co/LpJlixHWqq https://t.co/bHItWJ6Syn", "coordinates": null, "retweeted": false, "favorite_count": 266, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685580658153000961", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1000, "h": 563, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "source_status_id_str": "685483687895511040", "media_url": "http://pbs.twimg.com/media/CYNTyClWkAAOV__.png", "source_user_id_str": "363210621", "id_str": "685483687442550784", "id": 685483687442550784, "media_url_https": "https://pbs.twimg.com/media/CYNTyClWkAAOV__.png", "type": "photo", "indices": [72, 95], "source_status_id": 685483687895511040, "source_user_id": 363210621, "display_url": "pic.twitter.com/bHItWJ6Syn", "expanded_url": "http://twitter.com/UnixToolTip/status/685483687895511040/photo/1", "url": "https://t.co/bHItWJ6Syn"}], "symbols": [], "urls": [{"display_url": "cube-drone.com/comics/c/holy-\u2026", "url": "https://t.co/LpJlixHWqq", "expanded_url": "http://cube-drone.com/comics/c/holy-war", "indices": [48, 71]}], "hashtags": [], "user_mentions": [{"screen_name": "UnixToolTip", "id_str": "363210621", "id": 363210621, "indices": [3, 15], "name": "Unix tool tip"}]}, "created_at": "Fri Jan 08 21:55:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "pt", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685580658153000961, "text": "RT @UnixToolTip: Comparison of Vim, Emacs, Nano https://t.co/LpJlixHWqq https://t.co/bHItWJ6Syn", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 35193525, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458876762768699393/5Nr2HzuK.jpeg", "statuses_count": 25521, "profile_banner_url": "https://pbs.twimg.com/profile_banners/35193525/1404284839", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "335954828", "following": false, "friends_count": 1352, "entities": {"description": {"urls": [{"display_url": "codeship.com", "url": "http://t.co/T9lN0wWTd8", "expanded_url": "http://codeship.com", "indices": [98, 120]}]}, "url": {"urls": [{"display_url": "codeship.com", "url": "http://t.co/T9lN0xw5cK", "expanded_url": "http://codeship.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/679233110689583104/cj4g-nM8.jpg", "notifications": false, "profile_sidebar_fill_color": "F7F7F7", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 795, "location": "Austria", "screen_name": "Codebryo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 65, "name": "- \u0340\u0317Codebryo \u0341\u0316-", "profile_use_background_image": true, "description": "Crafting Interfaces, drinks Coffeescript and Club Mate. Speaks and teaches. Frontend-Developer at http://t.co/T9lN0wWTd8", "url": "http://t.co/T9lN0xw5cK", "profile_text_color": "F216BF", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/644143591682502658/gUPF11e-_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Jul 15 14:28:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EBEBEB", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/644143591682502658/gUPF11e-_normal.jpg", "favourites_count": 1108, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684069651941298176", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/jackbarham/sta\u2026", "url": "https://t.co/hpEm78jqNp", "expanded_url": "https://twitter.com/jackbarham/status/684068576265900032", "indices": [43, 66]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 17:51:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684069651941298176, "text": "Woot! Let's do some Vue meetups in 2016 :) https://t.co/hpEm78jqNp", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685468665463070720", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/jackbarham/sta\u2026", "url": "https://t.co/hpEm78jqNp", "expanded_url": "https://twitter.com/jackbarham/status/684068576265900032", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "vuejs", "id_str": "2292889800", "id": 2292889800, "indices": [3, 9], "name": "Vue.js"}]}, "created_at": "Fri Jan 08 14:30:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685468665463070720, "text": "RT @vuejs: Woot! Let's do some Vue meetups in 2016 :) https://t.co/hpEm78jqNp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 335954828, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/679233110689583104/cj4g-nM8.jpg", "statuses_count": 4312, "profile_banner_url": "https://pbs.twimg.com/profile_banners/335954828/1416843806", "is_translator": false}, {"time_zone": "Chennai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "1528130959", "following": false, "friends_count": 312, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "devessentials.net", "url": "http://t.co/fJkHZR8NOH", "expanded_url": "http://devessentials.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000086454173/23d95609e728ed01823a2fc49b6f4ed5.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 59, "location": "Bangalore, IN", "screen_name": "dev_essentials", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Developer Essentials", "profile_use_background_image": true, "description": "Developer Essentials - account maintained by @Chetan_raJ", "url": "http://t.co/fJkHZR8NOH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/559030214408151042/Zx9D-aTr_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 18 15:47:08 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/559030214408151042/Zx9D-aTr_normal.jpeg", "favourites_count": 39, "status": {"retweet_count": 10777, "retweeted_status": {"retweet_count": 10777, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "680884986531201024", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", "display_url": "pic.twitter.com/RVVNhWtJCP", "id_str": "680884985990098944", "expanded_url": "http://twitter.com/MKBHD/status/680884986531201024/photo/1", "id": 680884985990098944, "url": "https://t.co/RVVNhWtJCP"}], "symbols": [], "urls": [{"display_url": "youtu.be/ShcnNkr_PEY", "url": "https://t.co/SXDGCE6SkD", "expanded_url": "https://youtu.be/ShcnNkr_PEY", "indices": [86, 109]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Dec 26 22:56:45 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 680884986531201024, "text": "A couple more hours left to enter the Pick Your Smartphone giveaway! RT if you're in! https://t.co/SXDGCE6SkD https://t.co/RVVNhWtJCP", "coordinates": null, "retweeted": false, "favorite_count": 4581, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685060014323597312", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id_str": "680884986531201024", "media_url": "http://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", "source_user_id_str": "29873662", "id_str": "680884985990098944", "id": 680884985990098944, "media_url_https": "https://pbs.twimg.com/media/CXL9SYrWMAAQX6x.jpg", "type": "photo", "indices": [121, 140], "source_status_id": 680884986531201024, "source_user_id": 29873662, "display_url": "pic.twitter.com/RVVNhWtJCP", "expanded_url": "http://twitter.com/MKBHD/status/680884986531201024/photo/1", "url": "https://t.co/RVVNhWtJCP"}], "symbols": [], "urls": [{"display_url": "youtu.be/ShcnNkr_PEY", "url": "https://t.co/SXDGCE6SkD", "expanded_url": "https://youtu.be/ShcnNkr_PEY", "indices": [97, 120]}], "hashtags": [], "user_mentions": [{"screen_name": "MKBHD", "id_str": "29873662", "id": 29873662, "indices": [3, 9], "name": "Marques Brownlee"}]}, "created_at": "Thu Jan 07 11:26:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685060014323597312, "text": "RT @MKBHD: A couple more hours left to enter the Pick Your Smartphone giveaway! RT if you're in! https://t.co/SXDGCE6SkD https://t.co/RVVNh\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1528130959, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000086454173/23d95609e728ed01823a2fc49b6f4ed5.jpeg", "statuses_count": 304, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1528130959/1386316402", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14664166", "following": false, "friends_count": 826, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 275, "location": "Stockholm, Sweden", "screen_name": "mkhq", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Mikael H\u00f6gqvist", "profile_use_background_image": true, "description": "computer scientist, distributed systems/algorithms, storage, databases, senior research engineer @peerialism, previously @wrappcorp, PhD", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3009700122/1179defef2836d825e9387338185b4f8_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon May 05 20:04:33 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3009700122/1179defef2836d825e9387338185b4f8_normal.png", "favourites_count": 67, "status": {"in_reply_to_status_id": 654019413985873920, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "travisbrown", "in_reply_to_user_id": 6510972, "in_reply_to_status_id_str": "654019413985873920", "in_reply_to_user_id_str": "6510972", "truncated": false, "id_str": "654029688961150976", "id": 654029688961150976, "text": "@travisbrown thanks for your excellent work with and around finagle!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "travisbrown", "id_str": "6510972", "id": 6510972, "indices": [0, 12], "name": "Travis Brown"}]}, "created_at": "Tue Oct 13 20:23:23 +0000 2015", "source": "Twitter for Android", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14664166, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 519, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5381582", "following": false, "friends_count": 424, "entities": {"description": {"urls": [{"display_url": "ouvre-boite.com", "url": "https://t.co/QBAt4pxBT6", "expanded_url": "https://ouvre-boite.com", "indices": [73, 96]}]}, "url": {"urls": [{"display_url": "ouvre-boite.com", "url": "https://t.co/b3nxwbMaHg", "expanded_url": "https://www.ouvre-boite.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 9156, "location": "The WWW!", "screen_name": "julien51", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 196, "name": "Julien Genestoux", "profile_use_background_image": true, "description": "Probably not here. I have set up a lot of automated tweets. Reach me via https://t.co/QBAt4pxBT6", "url": "https://t.co/b3nxwbMaHg", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/425183656487841792/oI17U1UR_normal.jpeg", "profile_background_color": "022330", "created_at": "Sat Apr 21 15:46:08 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/425183656487841792/oI17U1UR_normal.jpeg", "favourites_count": 9351, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685128434834620416", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/realDonaldTrum\u2026", "url": "https://t.co/lhsiGXDmbH", "expanded_url": "https://twitter.com/realDonaldTrump/status/685089631973601280", "indices": [19, 42]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 15:58:42 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685128434834620416, "text": "Is this for real? https://t.co/lhsiGXDmbH", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 5381582, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 20659, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "46902840", "following": false, "friends_count": 471, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "evilprofessor.co.uk", "url": "http://t.co/lY2GNZu8ln", "expanded_url": "http://www.evilprofessor.co.uk", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826090471/c32498796765a5174d7fb7f31a0b5bba.jpeg", "notifications": false, "profile_sidebar_fill_color": "6F6A81", "profile_link_color": "C29091", "geo_enabled": true, "followers_count": 654, "location": "N 51\u00b026' 0'' / W 2\u00b035' 0''", "screen_name": "lloydwatkin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 56, "name": "\uff2c\u03b9\uff4f\u04ae\u0110 \u0461\u03b1\uff54\u03ba\u13a5\u0274", "profile_use_background_image": true, "description": "Software developer (PHP/io.js/Java/Ruby/Python/more) & outdoors type. Creator of @scubaSantas, @pinittome. #Bristol, UK. Work at @imdb.", "url": "http://t.co/lY2GNZu8ln", "profile_text_color": "EFA18D", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617001009202774016/o8NCp4u5_normal.jpg", "profile_background_color": "EDDCB1", "created_at": "Sat Jun 13 15:21:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617001009202774016/o8NCp4u5_normal.jpg", "favourites_count": 886, "status": {"in_reply_to_status_id": 685501034937069568, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "lauranncrossley", "in_reply_to_user_id": 42650438, "in_reply_to_status_id_str": "685501034937069568", "in_reply_to_user_id_str": "42650438", "truncated": false, "id_str": "685502597101387776", "id": 685502597101387776, "text": "@lauranncrossley how can you have several \"drink-free days\" and not have the other days being binges based on these numbers :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lauranncrossley", "id_str": "42650438", "id": 42650438, "indices": [0, 16], "name": "Laura Crossley"}]}, "created_at": "Fri Jan 08 16:45:29 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 46902840, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826090471/c32498796765a5174d7fb7f31a0b5bba.jpeg", "statuses_count": 5932, "profile_banner_url": "https://pbs.twimg.com/profile_banners/46902840/1401378546", "is_translator": false}, {"time_zone": "Bratislava", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "1495945232", "following": false, "friends_count": 669, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sk.linkedin.com/in/mnemcek/", "url": "http://t.co/mofve7KBZ2", "expanded_url": "http://sk.linkedin.com/in/mnemcek/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090015324/a535a6a6c708e218ed381b3dfcbab9d7.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 296, "location": "Bratislava, Slovakia, Europe", "screen_name": "YangWao", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Matej Nem\u010dek \u262f \u5de8\u5934", "profile_use_background_image": true, "description": "devops.js @AktivioCRM, autodidact webdev, hackerspace @Progressbarsk, B1tc0in-lov3r, cypherpunk, psychotronic", "url": "http://t.co/mofve7KBZ2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3776977928/83f7f811dc71f5dc1954ba0a2ec837e2_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Jun 09 15:55:40 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3776977928/83f7f811dc71f5dc1954ba0a2ec837e2_normal.jpeg", "favourites_count": 1617, "status": {"in_reply_to_status_id": 675094887805673472, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "atudotio", "in_reply_to_user_id": 47754498, "in_reply_to_status_id_str": "675094887805673472", "in_reply_to_user_id_str": "47754498", "truncated": false, "id_str": "684034946562928641", "id": 684034946562928641, "text": "@atudotio @NomadHouse are there vinyl and thick? I'm in Lisbon right now, but looks like I will leaving when you just arrive, sad ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "atudotio", "id_str": "47754498", "id": 47754498, "indices": [0, 9], "name": "Arthur Itey"}, {"screen_name": "NomadHouse", "id_str": "1525014661", "id": 1525014661, "indices": [10, 21], "name": "nomad"}]}, "created_at": "Mon Jan 04 15:33:34 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1495945232, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090015324/a535a6a6c708e218ed381b3dfcbab9d7.jpeg", "statuses_count": 2468, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1495945232/1414087889", "is_translator": false}, {"time_zone": "Rome", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14509931", "following": false, "friends_count": 582, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "olisti.co", "url": "https://t.co/S5DpQ24tK7", "expanded_url": "https://olisti.co", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/562066364/random_grey_variations.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "4561B3", "geo_enabled": true, "followers_count": 488, "location": "Desio, Lombardia", "screen_name": "olistik", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 48, "name": "Maurizio De Magnis", "profile_use_background_image": true, "description": "loop do\n self.try(:improve, ObjectSpace.each_object)\nend", "url": "https://t.co/S5DpQ24tK7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/455695559496454146/rCDzu1QL_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Apr 24 10:42:41 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/455695559496454146/rCDzu1QL_normal.jpeg", "favourites_count": 2072, "status": {"in_reply_to_status_id": 685451143930114048, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "olistik", "in_reply_to_user_id": 14509931, "in_reply_to_status_id_str": "685451143930114048", "in_reply_to_user_id_str": "14509931", "truncated": false, "id_str": "685451621153792000", "id": 685451621153792000, "text": "@jodosha aren't we facing similar (more or less) issues when dealing with oauth security?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jodosha", "id_str": "724493", "id": 724493, "indices": [0, 8], "name": "Luca Guidi"}]}, "created_at": "Fri Jan 08 13:22:56 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14509931, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/562066364/random_grey_variations.png", "statuses_count": 8508, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14509931/1398238590", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "8901182", "following": false, "friends_count": 211, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "krzbff.de", "url": "http://t.co/HYNS49xQcf", "expanded_url": "http://krzbff.de", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167797318/_W8ePFz7.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 112, "location": "Stuttgart, Germany", "screen_name": "kwibbly", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Hannes Rist", "profile_use_background_image": false, "description": "Paketschubser", "url": "http://t.co/HYNS49xQcf", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/597171160351121408/kwP1cA8N_normal.png", "profile_background_color": "FFFFFF", "created_at": "Sat Sep 15 17:49:29 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597171160351121408/kwP1cA8N_normal.png", "favourites_count": 294, "status": {"retweet_count": 0, "in_reply_to_user_id": 17742694, "possibly_sensitive": false, "id_str": "684280560383033344", "in_reply_to_user_id_str": "17742694", "entities": {"symbols": [], "urls": [{"display_url": "daemonology.net/freebsd-on-ec2/", "url": "https://t.co/VNDi7rsatn", "expanded_url": "http://www.daemonology.net/freebsd-on-ec2/", "indices": [21, 44]}], "hashtags": [], "user_mentions": [{"screen_name": "lnwdr", "id_str": "17742694", "id": 17742694, "indices": [0, 6], "name": "Leon Weidauer"}, {"screen_name": "Nienor_", "id_str": "17461946", "id": 17461946, "indices": [7, 15], "name": "Jella"}]}, "created_at": "Tue Jan 05 07:49:33 +0000 2016", "favorited": false, "in_reply_to_status_id": 684166896107827200, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": "lnwdr", "in_reply_to_status_id_str": "684166896107827200", "truncated": false, "id": 684280560383033344, "text": "@lnwdr @Nienor_ gibt https://t.co/VNDi7rsatn vllt hilfts weiter", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 8901182, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167797318/_W8ePFz7.png", "statuses_count": 3044, "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11228352", "following": false, "friends_count": 1558, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "datil.co", "url": "https://t.co/mu3TdrSLJw", "expanded_url": "https://datil.co", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1930, "location": "internets", "screen_name": "eraad", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 110, "name": "Eduardo Raad", "profile_use_background_image": true, "description": "CEO @datilec", "url": "https://t.co/mu3TdrSLJw", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1682854029/image_normal.jpg", "profile_background_color": "022330", "created_at": "Sun Dec 16 17:50:10 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1682854029/image_normal.jpg", "favourites_count": 8183, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/009924a469d7ace1.json", "country": "Ecuador", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-80.4676050033072, -3.06371600046572], [-79.7147810026682, -3.06371600046572], [-79.7147810026682, -1.96227400010509], [-80.4676050033072, -1.96227400010509]]], "type": "Polygon"}, "full_name": "Guayaquil, Ecuador", "contained_within": [], "country_code": "EC", "id": "009924a469d7ace1", "name": "Guayaquil"}, "in_reply_to_screen_name": "thegutgame", "in_reply_to_user_id": 27505823, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "27505823", "truncated": false, "id_str": "685601458713145344", "id": 685601458713145344, "text": "@thegutgame como se llama ese local italiano de pizza que comentaste hace unos meses?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thegutgame", "id_str": "27505823", "id": 27505823, "indices": [0, 11], "name": "thegutgame"}]}, "created_at": "Fri Jan 08 23:18:20 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "es"}, "default_profile_image": false, "id": 11228352, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 16651, "is_translator": false}, {"time_zone": "Lisbon", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "16478053", "following": false, "friends_count": 109, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "onename.io/fampinheiro", "url": "https://t.co/nbTMWCnnx1", "expanded_url": "https://www.onename.io/fampinheiro", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "878787", "geo_enabled": true, "followers_count": 125, "location": "Lisboa", "screen_name": "fampinheiro", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Filipe Pinheiro", "profile_use_background_image": true, "description": "Consultant @ YLD!. Passionate about beautiful, functional and connected software.", "url": "https://t.co/nbTMWCnnx1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477575626484744192/qDbNDIAf_normal.jpeg", "profile_background_color": "131516", "created_at": "Sat Sep 27 00:39:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477575626484744192/qDbNDIAf_normal.jpeg", "favourites_count": 103, "status": {"retweet_count": 142, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 142, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "680514542925787136", "id": 680514542925787136, "text": "Steam is so fucked up that I started downloading a game from FedEx.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Dec 25 22:24:45 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 324, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "680533591705694212", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Fri Dec 25 23:40:26 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 680533591705694212, "text": "RT @SwiftOnSecurity: Steam is so fucked up that I started downloading a game from FedEx.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 16478053, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 422, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "262762865", "following": false, "friends_count": 1055, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/sandfox", "url": "https://t.co/YAy6WjGGXm", "expanded_url": "https://github.com/sandfox", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/362879536/spacerace_819_111011.jpg", "notifications": false, "profile_sidebar_fill_color": "191B1C", "profile_link_color": "569AB7", "geo_enabled": true, "followers_count": 346, "location": "London", "screen_name": "sandfoxthat", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 23, "name": "Imperator Nope", "profile_use_background_image": true, "description": "Engineer, fool. Likes playing with concrete. Sometimes I computer at work. Try to fix more things than I break. The patriarchy can get fucked :-)", "url": "https://t.co/YAy6WjGGXm", "profile_text_color": "FFFFFF", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1269748656/sandfoxuk_normal.jpg", "profile_background_color": "313639", "created_at": "Tue Mar 08 18:20:40 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "A1A1A1", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1269748656/sandfoxuk_normal.jpg", "favourites_count": 7752, "status": {"retweet_count": 108, "retweeted_status": {"retweet_count": 108, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684535828178186244", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 1726, "resize": "fit"}, "medium": {"w": 600, "h": 1011, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 573, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", "display_url": "pic.twitter.com/zYvbTnzmKb", "id_str": "684535752852660224", "expanded_url": "http://twitter.com/MxJackMonroe/status/684535828178186244/photo/1", "id": 684535752852660224, "url": "https://t.co/zYvbTnzmKb"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Independent", "id_str": "16973333", "id": 16973333, "indices": [6, 18], "name": "The Independent"}]}, "created_at": "Wed Jan 06 00:43:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684535828178186244, "text": "Hello @Independent, 1910 called, they want their hoop skirts and patriarchy back. Astonishingly regressive fuckery. https://t.co/zYvbTnzmKb", "coordinates": null, "retweeted": false, "favorite_count": 137, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684762863857209344", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 1726, "resize": "fit"}, "medium": {"w": 600, "h": 1011, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 573, "resize": "fit"}}, "source_status_id_str": "684535828178186244", "media_url": "http://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", "source_user_id_str": "512554477", "id_str": "684535752852660224", "id": 684535752852660224, "media_url_https": "https://pbs.twimg.com/media/CX_1o_DWYAAGynH.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 684535828178186244, "source_user_id": 512554477, "display_url": "pic.twitter.com/zYvbTnzmKb", "expanded_url": "http://twitter.com/MxJackMonroe/status/684535828178186244/photo/1", "url": "https://t.co/zYvbTnzmKb"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MxJackMonroe", "id_str": "512554477", "id": 512554477, "indices": [3, 16], "name": "jack monroe"}, {"screen_name": "Independent", "id_str": "16973333", "id": 16973333, "indices": [24, 36], "name": "The Independent"}]}, "created_at": "Wed Jan 06 15:46:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684762863857209344, "text": "RT @MxJackMonroe: Hello @Independent, 1910 called, they want their hoop skirts and patriarchy back. Astonishingly regressive fuckery. https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 262762865, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/362879536/spacerace_819_111011.jpg", "statuses_count": 7788, "profile_banner_url": "https://pbs.twimg.com/profile_banners/262762865/1398246086", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "10100322", "following": false, "friends_count": 705, "entities": {"description": {"urls": [{"display_url": "mlewis.io", "url": "http://t.co/iIT1JCHfJu", "expanded_url": "http://mlewis.io", "indices": [19, 41]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 294, "location": "Seattle, WA", "screen_name": "mlewis", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "michael lewis", "profile_use_background_image": true, "description": "eminently boring | http://t.co/iIT1JCHfJu", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/452612831272509440/3k9sCYfX_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Fri Nov 09 15:04:54 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/452612831272509440/3k9sCYfX_normal.jpeg", "favourites_count": 685, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/568ac72a1fcc0f90.json", "country": "United States", "attributes": {}, "place_type": "neighborhood", "bounding_box": {"coordinates": [[[-122.3424913, 47.5923879], [-122.3248932, 47.5923879], [-122.3248932, 47.6050505], [-122.3424913, 47.6050505]]], "type": "Polygon"}, "full_name": "Pioneer Square, Seattle", "contained_within": [], "country_code": "US", "id": "568ac72a1fcc0f90", "name": "Pioneer Square"}, "in_reply_to_screen_name": "packagecloudio", "in_reply_to_user_id": 2615534612, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "2615534612", "truncated": false, "id_str": "685224270612410368", "id": 685224270612410368, "text": "@packagecloudio Any preferred medium for a (low priority) bug report?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "packagecloudio", "id_str": "2615534612", "id": 2615534612, "indices": [0, 15], "name": "packagecloud.io"}]}, "created_at": "Thu Jan 07 22:19:31 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 10100322, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 9133, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "70387301", "following": false, "friends_count": 359, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kevinway.com", "url": "http://t.co/UBe5NK5Pyy", "expanded_url": "http://kevinway.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "1E9102", "geo_enabled": true, "followers_count": 388, "location": "Philadelphia ", "screen_name": "kevindway", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Kevin Way", "profile_use_background_image": true, "description": "Gruntled husband. Whisk(e)y neat. Current state: @Monetate", "url": "http://t.co/UBe5NK5Pyy", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459537486608228352/AvTDHdod_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Mon Aug 31 13:05:46 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459537486608228352/AvTDHdod_normal.jpeg", "favourites_count": 2206, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684952269436108800", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "theverge.com/2016/1/6/10718\u2026", "url": "https://t.co/bnJlFK07Gl", "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", "indices": [70, 93]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 04:18:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/e4fa69eade6df2ab.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-75.475568, 40.17271], [-75.447606, 40.17271], [-75.447606, 40.20228], [-75.475568, 40.20228]]], "type": "Polygon"}, "full_name": "Collegeville, PA", "contained_within": [], "country_code": "US", "id": "e4fa69eade6df2ab", "name": "Collegeville"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684952269436108800, "text": "Bots are here, they\u2019re learning \u2014 and in 2016, they might eat the web https://t.co/bnJlFK07Gl", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 70387301, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 1538, "profile_banner_url": "https://pbs.twimg.com/profile_banners/70387301/1398396907", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "30437958", "following": false, "friends_count": 551, "entities": {"description": {"urls": [{"display_url": "iconcmo.com", "url": "http://t.co/SEizGC38zJ", "expanded_url": "http://iconcmo.com", "indices": [83, 105]}]}, "url": {"urls": [{"display_url": "thehjellejar.com", "url": "http://t.co/txoNWKoGJF", "expanded_url": "http://thehjellejar.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18971801/IMG_4261.jpg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 240, "location": "West Fargo, North Dakota", "screen_name": "dahjelle", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "David Alan Hjelle", "profile_use_background_image": false, "description": "Christ-follower; husband; avid reader; geek; and programmer at Icon Systems, Inc. (http://t.co/SEizGC38zJ)", "url": "http://t.co/txoNWKoGJF", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/219429348/David_and_Chair_normal.jpg", "profile_background_color": "003899", "created_at": "Sat Apr 11 12:07:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/219429348/David_and_Chair_normal.jpg", "favourites_count": 1026, "status": {"in_reply_to_status_id": 685240741346459648, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "LastPassHelp", "in_reply_to_user_id": 343506337, "in_reply_to_status_id_str": "685240741346459648", "in_reply_to_user_id_str": "343506337", "truncated": false, "id_str": "685286768913084416", "id": 685286768913084416, "text": "@lastpasshelp Awesome\u2014thanks for looking in to it!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "LastPassHelp", "id_str": "343506337", "id": 343506337, "indices": [0, 13], "name": "LastPass Support"}]}, "created_at": "Fri Jan 08 02:27:52 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 30437958, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18971801/IMG_4261.jpg", "statuses_count": 2565, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "80703", "following": false, "friends_count": 2658, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "morethanseven.net", "url": "http://t.co/5U4xMB8NGz", "expanded_url": "http://morethanseven.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 6678, "location": "Cambridge and London", "screen_name": "garethr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 506, "name": "Gareth Rushgrove", "profile_use_background_image": true, "description": "Software developer, occasional sysadmin, general web, programming and technology geek and curator of Devops Weekly. Engineer at @puppetlabs. @gdsteam alumnus", "url": "http://t.co/5U4xMB8NGz", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/628181401905410049/nHCZB12A_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Dec 19 21:00:05 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/628181401905410049/nHCZB12A_normal.jpg", "favourites_count": 56, "status": {"in_reply_to_status_id": 685557098277662720, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/3aa1b1861c56d910.json", "country": "United Kingdom", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[0.0873022, 52.1642435], [0.18453, 52.1642435], [0.18453, 52.237704], [0.0873022, 52.237704]]], "type": "Polygon"}, "full_name": "Cambridge, England", "contained_within": [], "country_code": "GB", "id": "3aa1b1861c56d910", "name": "Cambridge"}, "in_reply_to_screen_name": "rooreynolds", "in_reply_to_user_id": 787166, "in_reply_to_status_id_str": "685557098277662720", "in_reply_to_user_id_str": "787166", "truncated": false, "id_str": "685559027502301184", "id": 685559027502301184, "text": "@rooreynolds @ad_greenway @jabley you obviously didn't do enough hiring :) 6/7 if memory serves", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "rooreynolds", "id_str": "787166", "id": 787166, "indices": [0, 12], "name": "Roo Reynolds"}, {"screen_name": "ad_greenway", "id_str": "1344770017", "id": 1344770017, "indices": [13, 25], "name": "Andrew Greenway"}, {"screen_name": "jabley", "id_str": "8145762", "id": 8145762, "indices": [26, 33], "name": "James Abley"}]}, "created_at": "Fri Jan 08 20:29:43 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 80703, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 18381, "profile_banner_url": "https://pbs.twimg.com/profile_banners/80703/1401379875", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "13188872", "following": false, "friends_count": 321, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "annie.land", "url": "https://t.co/0d49qv8XDo", "expanded_url": "http://annie.land", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90240753/twitter0410.jpg", "notifications": false, "profile_sidebar_fill_color": "FFE1FF", "profile_link_color": "B8586B", "geo_enabled": false, "followers_count": 1965, "location": "Somerset County, New Jersey", "screen_name": "banannie", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 164, "name": "\u0430nn\u0131\u0b67", "profile_use_background_image": true, "description": "Mom of big kids (26, 23, 17.) Married 3 decades- to the same man! Bad cook. Watches too much TV. Diehard Mets fan. In perpetual flux.", "url": "https://t.co/0d49qv8XDo", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477573623868555264/7saIWRFu_normal.jpeg", "profile_background_color": "FFE1FF", "created_at": "Thu Feb 07 02:46:37 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "B8586B", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477573623868555264/7saIWRFu_normal.jpeg", "favourites_count": 744, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685601194773983232", "id": 685601194773983232, "text": "Today kinda sucked but Pad Thai will fix it.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:17:17 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13188872, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90240753/twitter0410.jpg", "statuses_count": 23115, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13188872/1396966664", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "78041535", "following": false, "friends_count": 450, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "banoss.wordpress.com", "url": "http://t.co/564W0EpimR", "expanded_url": "http://banoss.wordpress.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54326944/twitbg.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 306, "location": "London", "screen_name": "banoss", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "banoss", "profile_use_background_image": true, "description": "A continuous integration and delivery practitioner. From build to deploy...", "url": "http://t.co/564W0EpimR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/446775961623998465/45WrA0Pv_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Sep 28 15:29:26 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/446775961623998465/45WrA0Pv_normal.jpeg", "favourites_count": 480, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "676346188837335040", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1QngMVT", "url": "https://t.co/TGF7PxBXxq", "expanded_url": "http://bit.ly/1QngMVT", "indices": [73, 96]}], "hashtags": [{"text": "Flink", "indices": [97, 103]}, {"text": "ApacheFlink", "indices": [104, 116]}], "user_mentions": []}, "created_at": "Mon Dec 14 10:21:11 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 676346188837335040, "text": "Why Apache Flink is the 4th Generation of Big Data Analytics Frameworks\n https://t.co/TGF7PxBXxq #Flink #ApacheFlink", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "676734460524666880", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1QngMVT", "url": "https://t.co/TGF7PxBXxq", "expanded_url": "http://bit.ly/1QngMVT", "indices": [88, 111]}], "hashtags": [{"text": "Flink", "indices": [112, 118]}, {"text": "ApacheFlink", "indices": [119, 131]}], "user_mentions": [{"screen_name": "51zeroLtd", "id_str": "310777240", "id": 310777240, "indices": [3, 13], "name": "51zero"}]}, "created_at": "Tue Dec 15 12:04:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 676734460524666880, "text": "RT @51zeroLtd: Why Apache Flink is the 4th Generation of Big Data Analytics Frameworks\n https://t.co/TGF7PxBXxq #Flink #ApacheFlink", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 78041535, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54326944/twitbg.jpg", "statuses_count": 836, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "41083053", "following": false, "friends_count": 950, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "0099B9", "geo_enabled": true, "followers_count": 288, "location": "London", "screen_name": "MuKoGo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Alfonso Gonzalez", "profile_use_background_image": true, "description": "Linux enthusiastic, Geek & Musician. Senior Site Reliability Engineer at MyDrive Solutions @_MyDrive", "url": null, "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1810454841/twittpic_normal.jpg", "profile_background_color": "0099B9", "created_at": "Tue May 19 09:03:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1810454841/twittpic_normal.jpg", "favourites_count": 246, "status": {"retweet_count": 8, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 8, "place": {"url": "https://api.twitter.com/1.1/geo/id/5eb20415c64640aa.json", "country": "United States", "attributes": {}, "place_type": "neighborhood", "bounding_box": {"coordinates": [[[-118.4741578, 33.9601689], [-118.4321992, 33.9601689], [-118.4321992, 33.98647], [-118.4741578, 33.98647]]], "type": "Polygon"}, "full_name": "Marina del Rey, CA", "contained_within": [], "country_code": "US", "id": "5eb20415c64640aa", "name": "Marina del Rey"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682333183233294336", "id": 682333183233294336, "text": "Hrm, youtube dot com can\u2019t stream HD, but youtube-dl can download it at 3 MB/s. ISP throttling? :(", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 30 22:51:22 +0000 2015", "source": "Tweetbot for Mac", "favorite_count": 10, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "682378018434748416", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mitchellh", "id_str": "12819682", "id": 12819682, "indices": [3, 13], "name": "Mitchell Hashimoto"}]}, "created_at": "Thu Dec 31 01:49:32 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682378018434748416, "text": "RT @mitchellh: Hrm, youtube dot com can\u2019t stream HD, but youtube-dl can download it at 3 MB/s. ISP throttling? :(", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 41083053, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 281, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "849181692", "following": false, "friends_count": 988, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/missinglink", "url": "https://t.co/uSRx4YMDJC", "expanded_url": "https://github.com/missinglink", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459225482047655936/g75phn_h.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 608, "location": "0\u00b00'0 N 0\u00b00'0 E", "screen_name": "insertcoffee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 51, "name": "Peter Johnson", "profile_use_background_image": true, "description": "kiwi, web geek, node.js developer, javascript junkie, indie game developer. geocoders geocoders geocoders @mapzen", "url": "https://t.co/uSRx4YMDJC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/608239951268986880/31HXVCXF_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Thu Sep 27 12:38:56 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/608239951268986880/31HXVCXF_normal.jpg", "favourites_count": 312, "status": {"in_reply_to_status_id": 678063072922112000, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "aaroninit", "in_reply_to_user_id": 3281759808, "in_reply_to_status_id_str": "678063072922112000", "in_reply_to_user_id_str": "3281759808", "truncated": false, "id_str": "678906215154524161", "id": 678906215154524161, "text": "@aaroninit @mapzen what exactly are you looking for with the 'business lookup'?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "aaroninit", "id_str": "3281759808", "id": 3281759808, "indices": [0, 10], "name": "Aaron Mortensen"}, {"screen_name": "mapzen", "id_str": "1903859166", "id": 1903859166, "indices": [11, 18], "name": "Mapzen"}]}, "created_at": "Mon Dec 21 11:53:49 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 849181692, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459225482047655936/g75phn_h.jpeg", "statuses_count": 796, "profile_banner_url": "https://pbs.twimg.com/profile_banners/849181692/1398322927", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "82171114", "following": false, "friends_count": 259, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "erickdransch.com/blog", "url": "http://t.co/D36CMGWwTc", "expanded_url": "http://www.erickdransch.com/blog", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/45603719/sunofnothing_1280.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 78, "location": "", "screen_name": "ErickDransch", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Erick", "profile_use_background_image": true, "description": "", "url": "http://t.co/D36CMGWwTc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/563558735038009345/463ywI9M_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Oct 13 19:29:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563558735038009345/463ywI9M_normal.jpeg", "favourites_count": 15, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679792449376677888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "time.com/4159645/tsa-bo\u2026", "url": "https://t.co/gJloxA3qhm", "expanded_url": "http://time.com/4159645/tsa-body-scans-ait/", "indices": [57, 80]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 23 22:35:24 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679792449376677888, "text": "TSA Can Now Force Passengers to Go Through Body Scanners\nhttps://t.co/gJloxA3qhm", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679888373549547520", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "time.com/4159645/tsa-bo\u2026", "url": "https://t.co/gJloxA3qhm", "expanded_url": "http://time.com/4159645/tsa-body-scans-ait/", "indices": [74, 97]}], "hashtags": [], "user_mentions": [{"screen_name": "mike_conley", "id_str": "18627588", "id": 18627588, "indices": [3, 15], "name": "Mike Conley"}]}, "created_at": "Thu Dec 24 04:56:34 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679888373549547520, "text": "RT @mike_conley: TSA Can Now Force Passengers to Go Through Body Scanners\nhttps://t.co/gJloxA3qhm", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 82171114, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/45603719/sunofnothing_1280.jpg", "statuses_count": 388, "is_translator": false}, {"time_zone": "Rome", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "15979784", "following": false, "friends_count": 1348, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "matteocollina.com", "url": "http://t.co/REScuzT1yo", "expanded_url": "http://matteocollina.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/697629672/74f7cdffc9b2c3f62771c7acac3f512d.png", "notifications": false, "profile_sidebar_fill_color": "060A00", "profile_link_color": "618238", "geo_enabled": true, "followers_count": 3427, "location": "44.282281,12.342047", "screen_name": "matteocollina", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 201, "name": "Matteo Collina", "profile_use_background_image": false, "description": "Code Pirate and Ph.D. Software Architect @nearForm, IoT Expert, Consultant, and Conference Speaker.", "url": "http://t.co/REScuzT1yo", "profile_text_color": "485C3A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000468501783/fe04de4765546bb77e8224b2f74adbef_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Aug 25 10:17:31 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "it", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000468501783/fe04de4765546bb77e8224b2f74adbef_normal.jpeg", "favourites_count": 320, "status": {"retweet_count": 347, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 347, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "683809215203299328", "id": 683809215203299328, "text": "Don\u2019t be worried about those copying you. They are copies. Worry about those doing it differently than you. They are originals.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 00:36:36 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 436, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "683949743286972416", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jasonfried", "id_str": "14372143", "id": 14372143, "indices": [3, 14], "name": "Jason Fried"}]}, "created_at": "Mon Jan 04 09:55:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683949743286972416, "text": "RT @jasonfried: Don\u2019t be worried about those copying you. They are copies. Worry about those doing it differently than you. They are origin\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 15979784, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/697629672/74f7cdffc9b2c3f62771c7acac3f512d.png", "statuses_count": 12936, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15979784/1351586117", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14280929", "following": false, "friends_count": 721, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/danackerson", "url": "http://t.co/y3zi25EHmE", "expanded_url": "http://about.me/danackerson", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/490508509448900609/K8RODZjk.jpeg", "notifications": false, "profile_sidebar_fill_color": "2B5078", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 850, "location": "Germany", "screen_name": "danackerson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 92, "name": "Dan Ackerson", "profile_use_background_image": true, "description": "Expat Florida boy in Germany. Long time Java developer, Agile subscriber and devops believer!", "url": "http://t.co/y3zi25EHmE", "profile_text_color": "0E0101", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659088684277477377/poj5BfAj_normal.png", "profile_background_color": "CBCEDD", "created_at": "Wed Apr 02 05:52:44 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659088684277477377/poj5BfAj_normal.png", "favourites_count": 123, "status": {"retweet_count": 10, "retweeted_status": {"retweet_count": 10, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684855200906108928", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/flowchainsense\u2026", "url": "https://t.co/2S8YzyVhyC", "expanded_url": "https://twitter.com/flowchainsensei/status/684815232624115715", "indices": [110, 133]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 21:52:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684855200906108928, "text": "The world suffers more from developers who don't know how to test than testers who don't know how to develop. https://t.co/2S8YzyVhyC", "coordinates": null, "retweeted": false, "favorite_count": 12, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685360771535114240", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/flowchainsense\u2026", "url": "https://t.co/2S8YzyVhyC", "expanded_url": "https://twitter.com/flowchainsensei/status/684815232624115715", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "jurgenappelo", "id_str": "14116283", "id": 14116283, "indices": [3, 16], "name": "Jurgen Appelo"}]}, "created_at": "Fri Jan 08 07:21:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685360771535114240, "text": "RT @jurgenappelo: The world suffers more from developers who don't know how to test than testers who don't know how to develop. https://t.c\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14280929, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/490508509448900609/K8RODZjk.jpeg", "statuses_count": 874, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14280929/1405781101", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "17618689", "following": false, "friends_count": 421, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 107, "location": "South east Asia", "screen_name": "gerva", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "Massimo", "profile_use_background_image": true, "description": "Nomad Releng", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/557612654282674176/AhoY1wXv_normal.jpeg", "profile_background_color": "131516", "created_at": "Tue Nov 25 13:01:35 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "it", "profile_image_url_https": "https://pbs.twimg.com/profile_images/557612654282674176/AhoY1wXv_normal.jpeg", "favourites_count": 274, "status": {"retweet_count": 6, "retweeted_status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684929776574947328", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bugzilla.mozilla.org/show_bug.cgi?i\u2026", "url": "https://t.co/EQxdgy9s6I", "expanded_url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1121937", "indices": [64, 87]}, {"display_url": "pic.twitter.com/xoHciWMbq2", "url": "https://t.co/xoHciWMbq2", "expanded_url": "http://twitter.com/mrrrgn/status/684929776574947328/photo/1", "indices": [117, 140]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 02:49:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684929776574947328, "text": "Near to landing my 1st interesting ES6 feature, TypedArray.sort https://t.co/EQxdgy9s6I Here it is racing against v8 https://t.co/xoHciWMbq2", "coordinates": null, "retweeted": false, "favorite_count": 24, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684968273574690816", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bugzilla.mozilla.org/show_bug.cgi?i\u2026", "url": "https://t.co/EQxdgy9s6I", "expanded_url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1121937", "indices": [76, 99]}, {"display_url": "pic.twitter.com/xoHciWMbq2", "url": "https://t.co/xoHciWMbq2", "expanded_url": "http://twitter.com/mrrrgn/status/684929776574947328/photo/1", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "mrrrgn", "id_str": "319840411", "id": 319840411, "indices": [3, 10], "name": "Morgan Phillips"}]}, "created_at": "Thu Jan 07 05:22:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684968273574690816, "text": "RT @mrrrgn: Near to landing my 1st interesting ES6 feature, TypedArray.sort https://t.co/EQxdgy9s6I Here it is racing against v8 https://t.\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Carbon v2"}, "default_profile_image": false, "id": 17618689, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 672, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17618689/1415626601", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "129834860", "following": false, "friends_count": 1273, "entities": {"description": {"urls": [{"display_url": "xkcd.com/722/", "url": "http://t.co/URCtNHU6SL", "expanded_url": "http://xkcd.com/722/", "indices": [27, 49]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 667, "location": "Dublin, Ireland", "screen_name": "james_raftery", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "James Raftery", "profile_use_background_image": false, "description": "AWS DNS Internet Monkey\u2122 \u2014 http://t.co/URCtNHU6SL\n\n\u201cIf all else fails, immortality can always be assured by spectacular error.\u201d \u2014 John Kenneth Galbraith", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/605034206171922435/Kf6rNNgm_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Apr 05 15:17:21 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605034206171922435/Kf6rNNgm_normal.jpg", "favourites_count": 2203, "status": {"in_reply_to_status_id": 684893200088170497, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "AodhBC", "in_reply_to_user_id": 437052773, "in_reply_to_status_id_str": "684893200088170497", "in_reply_to_user_id_str": "437052773", "truncated": false, "id_str": "684895289577095168", "id": 684895289577095168, "text": "@AodhBC If I burn fifties between now and then can I guarantee she won\u2019t?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AodhBC", "id_str": "437052773", "id": 437052773, "indices": [0, 7], "name": "Aodh"}]}, "created_at": "Thu Jan 07 00:32:16 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 129834860, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "statuses_count": 5440, "profile_banner_url": "https://pbs.twimg.com/profile_banners/129834860/1390067079", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6300372", "following": false, "friends_count": 1021, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flutterby.net/User:DanLyke", "url": "http://t.co/D27EBangdr", "expanded_url": "http://www.flutterby.net/User:DanLyke", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 1209, "location": "Petaluma, California, USA", "screen_name": "danlyke", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 74, "name": "Dan Lyke", "profile_use_background_image": true, "description": "Computer geek, cyclist, woodworker, Petaluma resident. I only follow back if I think you're actually engaging me (generally < 1k followers).", "url": "http://t.co/D27EBangdr", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649624733395234816/WnBYYwlF_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Fri May 25 01:33:03 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649624733395234816/WnBYYwlF_normal.jpg", "favourites_count": 15637, "status": {"retweet_count": 378, "retweeted_status": {"retweet_count": 378, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685300492864360450", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 396, "h": 155, "resize": "fit"}, "medium": {"w": 396, "h": 155, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 133, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", "type": "photo", "indices": [78, 101], "media_url": "http://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", "display_url": "pic.twitter.com/uzhcozODa4", "id_str": "685300491064967168", "expanded_url": "http://twitter.com/torproject/status/685300492864360450/photo/1", "id": 685300491064967168, "url": "https://t.co/uzhcozODa4"}], "symbols": [], "urls": [], "hashtags": [{"text": "WeAreEFF", "indices": [68, 77]}], "user_mentions": []}, "created_at": "Fri Jan 08 03:22:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685300492864360450, "text": "Our ally and hero in the fight for human rights in the digital age. #WeAreEFF https://t.co/uzhcozODa4", "coordinates": null, "retweeted": false, "favorite_count": 453, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685507917743669249", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 396, "h": 155, "resize": "fit"}, "medium": {"w": 396, "h": 155, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 133, "resize": "fit"}}, "source_status_id_str": "685300492864360450", "media_url": "http://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", "source_user_id_str": "18466967", "id_str": "685300491064967168", "id": 685300491064967168, "media_url_https": "https://pbs.twimg.com/media/CYKtKm5UAAAftn7.png", "type": "photo", "indices": [94, 117], "source_status_id": 685300492864360450, "source_user_id": 18466967, "display_url": "pic.twitter.com/uzhcozODa4", "expanded_url": "http://twitter.com/torproject/status/685300492864360450/photo/1", "url": "https://t.co/uzhcozODa4"}], "symbols": [], "urls": [], "hashtags": [{"text": "WeAreEFF", "indices": [84, 93]}], "user_mentions": [{"screen_name": "torproject", "id_str": "18466967", "id": 18466967, "indices": [3, 14], "name": "torproject"}]}, "created_at": "Fri Jan 08 17:06:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685507917743669249, "text": "RT @torproject: Our ally and hero in the fight for human rights in the digital age. #WeAreEFF https://t.co/uzhcozODa4", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 6300372, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 30075, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6300372/1367278824", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1846739046", "following": false, "friends_count": 101, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 167, "location": "", "screen_name": "DwdDave", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Dave Cridland", "profile_use_background_image": true, "description": "Yeah, probably.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000434448590/01c16cf93fcec64b8ad9aa2505b757d3_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Sep 09 14:35:25 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000434448590/01c16cf93fcec64b8ad9aa2505b757d3_normal.png", "favourites_count": 14, "status": {"retweet_count": 238, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 238, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685068662940766208", "id": 685068662940766208, "text": "There are five basic plots:\n-Revenge\n-Sexy Vampires\n-A Superhero punches people\n-No-one appreciates Adam Sandler\n-Blowing up the Death Star", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 12:01:11 +0000 2016", "source": "Twitter Web Client", "favorite_count": 264, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685080307717042177", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "NedHartley", "id_str": "21085906", "id": 21085906, "indices": [3, 14], "name": "Ned Hartley"}]}, "created_at": "Thu Jan 07 12:47:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685080307717042177, "text": "RT @NedHartley: There are five basic plots:\n-Revenge\n-Sexy Vampires\n-A Superhero punches people\n-No-one appreciates Adam Sandler\n-Blowing u\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1846739046, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1679, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "25823332", "following": false, "friends_count": 435, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wandit.co.uk", "url": "http://t.co/fh4rcNTlgz", "expanded_url": "http://www.wandit.co.uk", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": false, "followers_count": 179, "location": "Hampshire (UK)", "screen_name": "wandit", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Wesley Childs", "profile_use_background_image": false, "description": "Devops, Puppet, Python etc... Currently consulting for the amazing @CustomMade", "url": "http://t.co/fh4rcNTlgz", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3612359145/84810bc36d3d5242a696b64568cffeae_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Mar 22 14:31:51 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3612359145/84810bc36d3d5242a696b64568cffeae_normal.jpeg", "favourites_count": 591, "status": {"retweet_count": 9, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 9, "place": {"url": "https://api.twitter.com/1.1/geo/id/3aa1b1861c56d910.json", "country": "United Kingdom", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[0.0873022, 52.1642435], [0.18453, 52.1642435], [0.18453, 52.237704], [0.0873022, 52.237704]]], "type": "Polygon"}, "full_name": "Cambridge, England", "contained_within": [], "country_code": "GB", "id": "3aa1b1861c56d910", "name": "Cambridge"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684466828836495360", "id": 684466828836495360, "text": "Chat bots are the new dashboards", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 20:09:43 +0000 2016", "source": "Twitter for Android", "favorite_count": 14, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "684477718973530112", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "garethr", "id_str": "80703", "id": 80703, "indices": [3, 11], "name": "Gareth Rushgrove"}]}, "created_at": "Tue Jan 05 20:52:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684477718973530112, "text": "RT @garethr: Chat bots are the new dashboards", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 25823332, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1577, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1903684836", "following": false, "friends_count": 858, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sudodoki.name", "url": "http://t.co/wEHJp0Z2DV", "expanded_url": "http://sudodoki.name/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/589891304575733760/82LGi3jD.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 715, "location": "Kyiv, Ukraine", "screen_name": "sudodoki", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "\u0414\u0436\u043e\u043d, \u043f\u0440\u043e\u0441\u0442\u043e \u0414\u0436\u043e\u043d", "profile_use_background_image": true, "description": "Where do I stick my contributions in? Member of @kottans_org gang. Ping me to join @nodeschool/kyiv.", "url": "http://t.co/wEHJp0Z2DV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663612964252069888/raAOc4lI_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 25 10:30:52 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663612964252069888/raAOc4lI_normal.jpg", "favourites_count": 7350, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685074640746713088", "id": 685074640746713088, "text": "\u041f\u043e\u043c\u0435\u043d\u044f\u043b\u0438 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043b\u0430\u043d\u0435\u0442, \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0445\u0438\u043c\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u0438 \u0435\u0449\u0451 \u0444\u0438\u0433 \u0437\u043d\u0430\u0435\u0442 \u0447\u0442\u043e \u043f\u043e\u043c\u0435\u043d\u044f\u043b\u043e\u0441\u044c. \u0414\u0435\u0442\u044f\u043c \u0441 \u0443\u0447\u0451\u0431\u043e\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043c\u043e\u0433\u0430\u0442\u044c \u043d\u0435\u043f\u0440\u043e\u0441\u0442\u043e.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 12:24:57 +0000 2016", "source": "Twitter for Android", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "ru"}, "default_profile_image": false, "id": 1903684836, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/589891304575733760/82LGi3jD.png", "statuses_count": 5079, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1903684836/1429474866", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "34473211", "following": false, "friends_count": 615, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chrisjenx.com", "url": "http://t.co/7MJzlZPkF4", "expanded_url": "http://chrisjenx.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAEDF4", "profile_link_color": "89C9FA", "geo_enabled": true, "followers_count": 826, "location": "London, United Kingdom", "screen_name": "chrisjenx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 52, "name": "Christopher Jenkins", "profile_use_background_image": true, "description": "Android Engineer. Drummer. GreenGeek. Vegan. @OWLR, @Loveflutter", "url": "http://t.co/7MJzlZPkF4", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/596569381972369408/nbcy2eSM_normal.jpg", "profile_background_color": "212329", "created_at": "Thu Apr 23 01:06:23 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596569381972369408/nbcy2eSM_normal.jpg", "favourites_count": 2133, "status": {"in_reply_to_status_id": 685250840723091456, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "claire_mcnear", "in_reply_to_user_id": 19330411, "in_reply_to_status_id_str": "685250840723091456", "in_reply_to_user_id_str": "19330411", "truncated": false, "id_str": "685402859177947136", "id": 685402859177947136, "text": "@claire_mcnear I hope you were trolling and do know the difference, otherwise this is really painful.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "claire_mcnear", "id_str": "19330411", "id": 19330411, "indices": [0, 14], "name": "Claire McNear"}]}, "created_at": "Fri Jan 08 10:09:10 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 34473211, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4407, "profile_banner_url": "https://pbs.twimg.com/profile_banners/34473211/1436302874", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "15049759", "following": false, "friends_count": 360, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "daenney.github.io", "url": "https://t.co/jNqbwGtHLY", "expanded_url": "https://daenney.github.io", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 317, "location": "", "screen_name": "daenney", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 31, "name": "Daniele Sluijters", "profile_use_background_image": true, "description": "Gender pronoun: he/him. Don't just stand there, do something!", "url": "https://t.co/jNqbwGtHLY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655129326753591296/pOi3QtlE_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jun 08 20:19:30 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655129326753591296/pOi3QtlE_normal.jpg", "favourites_count": 4, "status": {"retweet_count": 704, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 704, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685516987859120128", "id": 685516987859120128, "text": "Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're on track", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:42:40 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 635, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685574915546853376", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "McKelvie", "id_str": "14276679", "id": 14276679, "indices": [3, 12], "name": "Jamie McKelvie"}]}, "created_at": "Fri Jan 08 21:32:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685574915546853376, "text": "RT @McKelvie: Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 15049759, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4915, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15049759/1405775209", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "1148602058", "following": false, "friends_count": 722, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "214C6B", "geo_enabled": false, "followers_count": 164, "location": "St. Louis, MO", "screen_name": "PizzaBrandon", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Brandon Belvin", "profile_use_background_image": true, "description": "Node, web, and e-commerce developer. Nuts about UX. Pizza aficionado. Father of daughters.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657045459106574337/KoyJns70_normal.png", "profile_background_color": "022330", "created_at": "Mon Feb 04 17:31:33 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657045459106574337/KoyJns70_normal.png", "favourites_count": 407, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685159844186161152", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYItP2CUsAAdj6-.jpg", "type": "photo", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/CYItP2CUsAAdj6-.jpg", "display_url": "pic.twitter.com/HxAK0DTA6W", "id_str": "685159843540283392", "expanded_url": "http://twitter.com/PizzaBrandon/status/685159844186161152/photo/1", "id": 685159843540283392, "url": "https://t.co/HxAK0DTA6W"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "STLBLTs", "id_str": "3347434467", "id": 3347434467, "indices": [1, 9], "name": "STL BLT"}]}, "created_at": "Thu Jan 07 18:03:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685159844186161152, "text": ".@STLBLTs came by our office for lunch. I ordered the \"We Jammin\" and I'm happy I did. The tomato jam made my day! https://t.co/HxAK0DTA6W", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1148602058, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 467, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1563811", "following": false, "friends_count": 257, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "google.com/+BenjaminRumble", "url": "https://t.co/IT5zxSJolO", "expanded_url": "https://google.com/+BenjaminRumble", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/506292/benHead.jpg", "notifications": false, "profile_sidebar_fill_color": "A1A591", "profile_link_color": "000088", "geo_enabled": true, "followers_count": 541, "location": "Vancouver, British Columbia", "screen_name": "therumbler", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Benji R", "profile_use_background_image": false, "description": "I like life, music, beer, music, skiing, music and long walks on the beach, \r\n\r\nand writing code.\r\n\r\nI'm a feminist.", "url": "https://t.co/IT5zxSJolO", "profile_text_color": "606060", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507576445556649984/shFPlawr_normal.jpeg", "profile_background_color": "808080", "created_at": "Tue Mar 20 00:11:51 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507576445556649984/shFPlawr_normal.jpeg", "favourites_count": 2525, "status": {"in_reply_to_status_id": 685603484331278336, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "CandiSpillard", "in_reply_to_user_id": 2867356894, "in_reply_to_status_id_str": "685603484331278336", "in_reply_to_user_id_str": "2867356894", "truncated": false, "id_str": "685607373046595584", "id": 685607373046595584, "text": "@CandiSpillard Again: your issue appears to be that Apple's products are just too good. Or, that people are morons. One of those two! :-P", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "CandiSpillard", "id_str": "2867356894", "id": 2867356894, "indices": [0, 14], "name": "Dr Candida Spillard"}]}, "created_at": "Fri Jan 08 23:41:50 +0000 2016", "source": "YoruFukurou", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1563811, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/506292/benHead.jpg", "statuses_count": 10882, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1563811/1409850835", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "144433856", "following": false, "friends_count": 82, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/159444108/fuckyeahgridpaper.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "6C3D5C", "geo_enabled": true, "followers_count": 114, "location": "Salt Lake City, UT", "screen_name": "benjaminkimball", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Benjamin Kimball", "profile_use_background_image": true, "description": "Lover of JavaScript. Working as a wrangler of links and buttons.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/593503119423582208/tQ6596iq_normal.jpg", "profile_background_color": "EEEEEE", "created_at": "Sun May 16 08:17:29 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/593503119423582208/tQ6596iq_normal.jpg", "favourites_count": 680, "status": {"retweet_count": 0, "in_reply_to_user_id": 14262063, "possibly_sensitive": false, "id_str": "684806748973039617", "in_reply_to_user_id_str": "14262063", "entities": {"symbols": [], "urls": [{"display_url": "blog.johnryding.com/post/890554809\u2026", "url": "https://t.co/fsSzi0wkWE", "expanded_url": "http://blog.johnryding.com/post/89055480988/eventual-consistency-in-real-time-web-apps", "indices": [50, 73]}], "hashtags": [], "user_mentions": [{"screen_name": "crichardson", "id_str": "14262063", "id": 14262063, "indices": [0, 12], "name": "Chris Richardson"}]}, "created_at": "Wed Jan 06 18:40:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "crichardson", "in_reply_to_status_id_str": null, "truncated": false, "id": 684806748973039617, "text": "@crichardson The UX eventual consistency article! https://t.co/fsSzi0wkWE", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 144433856, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/159444108/fuckyeahgridpaper.jpeg", "statuses_count": 1419, "profile_banner_url": "https://pbs.twimg.com/profile_banners/144433856/1444701198", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "336113", "following": false, "friends_count": 2850, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "goodreads.com/meangrape", "url": "https://t.co/1wy3UBfzx3", "expanded_url": "https://goodreads.com/meangrape", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 5229, "location": "San Francisco", "screen_name": "meangrape", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 147, "name": "Jay.", "profile_use_background_image": false, "description": "bellum se ipsum alet. Ex-OFA. Ex-Twitter.", "url": "https://t.co/1wy3UBfzx3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/453022580291534848/1GwfOoTW_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri Dec 29 02:57:55 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/453022580291534848/1GwfOoTW_normal.jpeg", "favourites_count": 7904, "status": {"in_reply_to_status_id": 685349387380363265, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": "kittenwithawhip", "in_reply_to_user_id": 15682352, "in_reply_to_status_id_str": "685349387380363265", "in_reply_to_user_id_str": "15682352", "truncated": false, "id_str": "685391588738990081", "id": 685391588738990081, "text": "@kittenwithawhip I'm still trying to imagine the sales that required a fleet of 20 pizza delivery cars in 1950 Windsor. The mind boggles.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kittenwithawhip", "id_str": "15682352", "id": 15682352, "indices": [0, 16], "name": "Kat Kinsman"}]}, "created_at": "Fri Jan 08 09:24:23 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 336113, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 25636, "profile_banner_url": "https://pbs.twimg.com/profile_banners/336113/1415666542", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1841791", "following": false, "friends_count": 709, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "coderanger.net", "url": "https://t.co/XK0CxNNOsP", "expanded_url": "https://coderanger.net/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1856, "location": "Lafayette, CA", "screen_name": "kantrn", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 133, "name": "Noah Kantrowitz", "profile_use_background_image": true, "description": "Programmer and all-around geek. AKA coderanger.", "url": "https://t.co/XK0CxNNOsP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1170359603/avatar_original_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Mar 22 05:51:31 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1170359603/avatar_original_normal.png", "favourites_count": 4394, "status": {"in_reply_to_status_id": 685612596028805120, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "cheeseplus", "in_reply_to_user_id": 22882670, "in_reply_to_status_id_str": "685612596028805120", "in_reply_to_user_id_str": "22882670", "truncated": false, "id_str": "685613029484961792", "id": 685613029484961792, "text": "@cheeseplus Soooooooooo capitalism?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "cheeseplus", "id_str": "22882670", "id": 22882670, "indices": [0, 11], "name": "vestigial underscore"}]}, "created_at": "Sat Jan 09 00:04:18 +0000 2016", "source": "Twitterrific for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "es"}, "default_profile_image": false, "id": 1841791, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 29232, "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "415643", "following": false, "friends_count": 2659, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "christopheducamp.com", "url": "http://t.co/a5ONvFSQpa", "expanded_url": "http://christopheducamp.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0099CC", "geo_enabled": true, "followers_count": 3278, "location": "Paris, FR", "screen_name": "xtof_fr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 299, "name": "Christophe Ducamp", "profile_use_background_image": true, "description": "Father. \nPassions #indieweb & #calmtech\nFreelancing @EchosBusiness", "url": "http://t.co/a5ONvFSQpa", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3585902892/c841be488b34741d25cf1d470903c3a4_normal.png", "profile_background_color": "FFF04D", "created_at": "Mon Jan 01 15:12:01 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFF8AD", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3585902892/c841be488b34741d25cf1d470903c3a4_normal.png", "favourites_count": 2376, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "680082011231514625", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/FredCavazza/st\u2026", "url": "https://t.co/VilQ489cST", "expanded_url": "https://twitter.com/FredCavazza/status/679631009856503808", "indices": [106, 129]}], "hashtags": [], "user_mentions": [{"screen_name": "jekyllrb", "id_str": "1143789606", "id": 1143789606, "indices": [95, 104], "name": "jekyll"}]}, "created_at": "Thu Dec 24 17:46:01 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "fr", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 680082011231514625, "text": "Confort\u00e9 de voir les \"sites statiques\" en t\u00eate de ton pronostic. Merci Fred. \n(\u00e9l\u00e8ve et fan de @jekyllrb) https://t.co/VilQ489cST", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 415643, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "statuses_count": 13699, "profile_banner_url": "https://pbs.twimg.com/profile_banners/415643/1410101838", "is_translator": false}, {"time_zone": "Irkutsk", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 28800, "id_str": "1049287556", "following": false, "friends_count": 405, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 115, "location": "", "screen_name": "James_Hickey3", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "\u30d2\u30c3\u30ad\u30fc\u5927\u4f50", "profile_use_background_image": true, "description": "\u30a2\u30e1\u30ea\u30ab\u7b2c\uff14\u6b69\u5175\u5e2b\u56e3\u30fb\u7b2c\uff11\u65c5\u56e3\u53f8\u4ee4\u5b98", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649590975401099264/Dg99igFE_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 31 02:20:05 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649590975401099264/Dg99igFE_normal.jpg", "favourites_count": 375, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684783626848841728", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sakainaoki.blogspot.com/2016/01/instag\u2026", "url": "https://t.co/QVXMu7MkNm", "expanded_url": "http://sakainaoki.blogspot.com/2016/01/instagram.html", "indices": [81, 104]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 17:08:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "ja", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684783626848841728, "text": "\u5ba2\u89b3\u7684\u306b\u898b\u308b\u3068\u30b8\u30e0\u3067\u4f53\u3092\u935b\u3048\u3066\u3044\u308b\u30b7\u30fc\u30f3\u306f\u5b9f\u306b\u6ed1\u7a3d\u3060\u3002\u6b32\u671b\u306e\u30e1\u30c7\u30a3\u30a2Instagram\u3067\u3082\u935b\u3048\u3089\u308c\u305f\u30b0\u30e9\u30de\u30e9\u30b9\u306a\u7f8e\u4eba\u306e\u753b\u50cf\u3084\u30de\u30c3\u30c1\u30e7\u306a\u7537\u306e\u753b\u50cf\u306f\u983b\u7e41\u306b\u898b\u3089\u308c\u308b\u3002 https://t.co/QVXMu7MkNm", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 1049287556, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2115, "is_translator": false}, {"time_zone": "Pacific/Auckland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "18344890", "following": false, "friends_count": 1913, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "junglistheavy.industries", "url": "https://t.co/JMeZgr4GxB", "expanded_url": "http://junglistheavy.industries", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 1216, "location": "Rotorua, New Zealand", "screen_name": "fujin_", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 97, "name": "\u98a8\u795e", "profile_use_background_image": true, "description": "\u6539\u5584\u795e\u69d8\u3001#devops grandmaster; original #getchef hacker-consult, #golang gopher \u0295\u25d4\u03d6\u25d4\u0294. drifter. multicopter pilot. \u2500\u2564\u2566 \u0280\u0258\u0251\u029f \u0288rap \u0282\u0266\u0268\u0287 \u2566\u2564\u2500", "url": "https://t.co/JMeZgr4GxB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659125802768797696/3Wo6zINt_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Dec 23 23:14:05 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659125802768797696/3Wo6zINt_normal.jpg", "favourites_count": 2024, "status": {"retweet_count": 27, "retweeted_status": {"retweet_count": 27, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685192040951353344", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/hashicorp/cons\u2026", "url": "https://t.co/51taNPcBuy", "expanded_url": "https://github.com/hashicorp/consul/blob/v0.6.1/CHANGELOG.md#061-january-6-2015", "indices": [81, 104]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 20:11:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5eb20415c64640aa.json", "country": "United States", "attributes": {}, "place_type": "neighborhood", "bounding_box": {"coordinates": [[[-118.4741578, 33.9601689], [-118.4321992, 33.9601689], [-118.4321992, 33.98647], [-118.4741578, 33.98647]]], "type": "Polygon"}, "full_name": "Marina del Rey, CA", "contained_within": [], "country_code": "US", "id": "5eb20415c64640aa", "name": "Marina del Rey"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685192040951353344, "text": "Consul 0.6.1 is out. Easy drop-in upgrade with some nice fixes and improvements: https://t.co/51taNPcBuy", "coordinates": null, "retweeted": false, "favorite_count": 28, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685192260321853440", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/hashicorp/cons\u2026", "url": "https://t.co/51taNPcBuy", "expanded_url": "https://github.com/hashicorp/consul/blob/v0.6.1/CHANGELOG.md#061-january-6-2015", "indices": [96, 119]}], "hashtags": [], "user_mentions": [{"screen_name": "mitchellh", "id_str": "12819682", "id": 12819682, "indices": [3, 13], "name": "Mitchell Hashimoto"}]}, "created_at": "Thu Jan 07 20:12:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685192260321853440, "text": "RT @mitchellh: Consul 0.6.1 is out. Easy drop-in upgrade with some nice fixes and improvements: https://t.co/51taNPcBuy", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18344890, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 15970, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18344890/1446369594", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "140011523", "following": false, "friends_count": 1619, "entities": {"description": {"urls": [{"display_url": "mytux.fr", "url": "http://t.co/scCCuswavo", "expanded_url": "http://www.mytux.fr", "indices": [29, 51]}]}, "url": {"urls": [{"display_url": "about.me/carlchenet", "url": "http://t.co/pJtCu9uXyw", "expanded_url": "http://about.me/carlchenet", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2286, "location": "", "screen_name": "carl_chenet", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 227, "name": "carlchenet", "profile_use_background_image": true, "description": "System architect, founder of http://t.co/scCCuswavo, Debian developer & Python addict. Wrote some articles about Free Software. Tea addict. Wine lover.", "url": "http://t.co/pJtCu9uXyw", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2777592657/94d4bcbbb2e59b6849c75e6609851fb6_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue May 04 09:16:52 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2777592657/94d4bcbbb2e59b6849c75e6609851fb6_normal.png", "favourites_count": 9, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685540484861825029", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "framablog.org/2016/01/08/app\u2026", "url": "https://t.co/C7jW4nHIFU", "expanded_url": "http://framablog.org/2016/01/08/apprenez-a-lire-une-url-et-sauvez-des-chatons/", "indices": [48, 71]}], "hashtags": [{"text": "web", "indices": [72, 76]}], "user_mentions": []}, "created_at": "Fri Jan 08 19:16:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "fr", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685540484861825029, "text": "Apprenez \u00e0 lire une URL (et sauvez des chatons) https://t.co/C7jW4nHIFU #web", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "jdh-rss2twitter"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685544006810484737", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "framablog.org/2016/01/08/app\u2026", "url": "https://t.co/C7jW4nHIFU", "expanded_url": "http://framablog.org/2016/01/08/apprenez-a-lire-une-url-et-sauvez-des-chatons/", "indices": [69, 92]}], "hashtags": [{"text": "web", "indices": [93, 97]}], "user_mentions": [{"screen_name": "journalduhacker", "id_str": "3384441765", "id": 3384441765, "indices": [3, 19], "name": "Le Journal du Hacker"}]}, "created_at": "Fri Jan 08 19:30:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "fr", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685544006810484737, "text": "RT @journalduhacker: Apprenez \u00e0 lire une URL (et sauvez des chatons) https://t.co/C7jW4nHIFU #web", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "retweet-journalduhacker"}, "default_profile_image": false, "id": 140011523, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4685, "is_translator": false}, {"time_zone": "Wellington", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "15657543", "following": false, "friends_count": 622, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theunfocused.net", "url": "http://t.co/JzrNJJ1Hsd", "expanded_url": "http://theunfocused.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/629950290570010624/X-Ax-pjR.jpg", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "008004", "geo_enabled": false, "followers_count": 1454, "location": "Dunedin, New Zealand", "screen_name": "theunfocused", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 140, "name": "Blair McBride", "profile_use_background_image": true, "description": "@Firefox developer, @JavaScript_NZ secretary, Dunedin Makerspace co-founder, @MozillaUbiquity dev, maker, pogonotrophist.", "url": "http://t.co/JzrNJJ1Hsd", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2654776266/ba300eacc55f5978d68f1d9163053eaf_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Jul 30 07:04:18 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2654776266/ba300eacc55f5978d68f1d9163053eaf_normal.jpeg", "favourites_count": 5958, "status": {"in_reply_to_status_id": 685416129708208129, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "_writehanded_", "in_reply_to_user_id": 2974900693, "in_reply_to_status_id_str": "685416129708208129", "in_reply_to_user_id_str": "2974900693", "truncated": false, "id_str": "685416660342157312", "id": 685416660342157312, "text": "@_writehanded_ @Styla73 @mellopuffy Good to know, thanks :) (especially given the price)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "_writehanded_", "id_str": "2974900693", "id": 2974900693, "indices": [0, 14], "name": "Sarah Wilson"}, {"screen_name": "Styla73", "id_str": "19759124", "id": 19759124, "indices": [15, 23], "name": "Capital K"}, {"screen_name": "mellopuffy", "id_str": "18573621", "id": 18573621, "indices": [24, 35], "name": "Toe-tally Puffy"}]}, "created_at": "Fri Jan 08 11:04:00 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15657543, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/629950290570010624/X-Ax-pjR.jpg", "statuses_count": 24660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15657543/1431324791", "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "46471184", "following": false, "friends_count": 437, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mateuskern.com/pages/contact.\u2026", "url": "https://t.co/bthJxMONpL", "expanded_url": "https://mateuskern.com/pages/contact.html", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/365330709/Balrog2.jpg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 547, "location": "RS / Brasil", "screen_name": "_k3rn", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Mateus Kern", "profile_use_background_image": false, "description": "Python, Linux, DevOps, vim, TV Series & Music.", "url": "https://t.co/bthJxMONpL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650818520696115200/Dx91REOT_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Jun 11 19:43:37 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650818520696115200/Dx91REOT_normal.jpg", "favourites_count": 1531, "status": {"in_reply_to_status_id": 685350275436122112, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "o_gobbi", "in_reply_to_user_id": 109360625, "in_reply_to_status_id_str": "685350275436122112", "in_reply_to_user_id_str": "109360625", "truncated": false, "id_str": "685350812051202048", "id": 685350812051202048, "text": "@o_gobbi \u00e9 da arrecada\u00e7\u00e3o dos eua?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "o_gobbi", "id_str": "109360625", "id": 109360625, "indices": [0, 8], "name": "Gobbi"}]}, "created_at": "Fri Jan 08 06:42:21 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "pt"}, "default_profile_image": false, "id": 46471184, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/365330709/Balrog2.jpg", "statuses_count": 40849, "profile_banner_url": "https://pbs.twimg.com/profile_banners/46471184/1379963279", "is_translator": false}, {"time_zone": "New Delhi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "105083", "following": false, "friends_count": 1505, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "vamsee.in", "url": "http://t.co/3aYyV5kxNM", "expanded_url": "http://vamsee.in", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 1112, "location": "Bangalore, India", "screen_name": "vamsee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 66, "name": "Vamsee Kanakala", "profile_use_background_image": true, "description": "Rails dev turned devops guy @viamentis. Believe in open source and open web. Also a godless, bleeding-heart liberal :-)", "url": "http://t.co/3aYyV5kxNM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/653422115807367168/iLpECAF7_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Thu Dec 21 10:45:38 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/653422115807367168/iLpECAF7_normal.jpg", "favourites_count": 3199, "status": {"retweet_count": 1831, "retweeted_status": {"retweet_count": 1831, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685484472498798592", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 602, "resize": "fit"}, "medium": {"w": 599, "h": 602, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "type": "photo", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "display_url": "pic.twitter.com/TMcevQeAVA", "id_str": "685484471227953152", "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", "id": 685484471227953152, "url": "https://t.co/TMcevQeAVA"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:33:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685484472498798592, "text": "This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https://t.co/TMcevQeAVA", "coordinates": null, "retweeted": false, "favorite_count": 1984, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685506749911048193", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 602, "resize": "fit"}, "medium": {"w": 599, "h": 602, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "source_status_id_str": "685484472498798592", "media_url": "http://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "source_user_id_str": "119043148", "id_str": "685484471227953152", "id": 685484471227953152, "media_url_https": "https://pbs.twimg.com/media/CYNUfqaWsAAaAZQ.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685484472498798592, "source_user_id": 119043148, "display_url": "pic.twitter.com/TMcevQeAVA", "expanded_url": "http://twitter.com/lukekarmali/status/685484472498798592/photo/1", "url": "https://t.co/TMcevQeAVA"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lukekarmali", "id_str": "119043148", "id": 119043148, "indices": [3, 15], "name": "Luke Karmali"}]}, "created_at": "Fri Jan 08 17:01:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685506749911048193, "text": "RT @lukekarmali: This is a real phone call that happened between Tony Blair and Bill Clinton. And now it's public. GOD IS REAL, Y'ALL https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 105083, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 12050, "profile_banner_url": "https://pbs.twimg.com/profile_banners/105083/1353319858", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1613642678", "following": false, "friends_count": 313, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "grubernaut.com", "url": "http://t.co/mgIollH58E", "expanded_url": "http://grubernaut.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 433, "location": "Small Town, USA ", "screen_name": "grubernaut", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "MarriedBiscuits", "profile_use_background_image": true, "description": "Kaizen \u6539\u5584, Husband, Padawan, Ops, Gearhead, and Pancake Enthusiast. Constant adventures with @kaiteddelman", "url": "http://t.co/mgIollH58E", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682275076964618240/5BDp8AL2_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Jul 22 20:53:57 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682275076964618240/5BDp8AL2_normal.jpg", "favourites_count": 6247, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597488783347712", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 175, "resize": "fit"}, "medium": {"w": 434, "h": 224, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 434, "h": 224, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYO7SC8UoAECN8u.png", "type": "photo", "indices": [30, 53], "media_url": "http://pbs.twimg.com/media/CYO7SC8UoAECN8u.png", "display_url": "pic.twitter.com/Q1G4ZO7kh1", "id_str": "685597486992367617", "expanded_url": "http://twitter.com/grubernaut/status/685597488783347712/photo/1", "id": 685597486992367617, "url": "https://t.co/Q1G4ZO7kh1"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:02:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/49f0a5eb038077e9.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-85.996969, 39.163203], [-85.847755, 39.163203], [-85.847755, 39.25966], [-85.996969, 39.25966]]], "type": "Polygon"}, "full_name": "Columbus, IN", "contained_within": [], "country_code": "US", "id": "49f0a5eb038077e9", "name": "Columbus"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597488783347712, "text": "Hashicorp emoji game on point https://t.co/Q1G4ZO7kh1", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 1613642678, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10511, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1613642678/1406162904", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6509982", "following": false, "friends_count": 669, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000114307961/d36a958842daa7a4328147beb87ff328.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 32132, "location": "san francisco", "screen_name": "argv0", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 233, "name": "Andy Gross", "profile_use_background_image": true, "description": "Author of Riak. Distsys ne'er-do-well. Problematic half of @sarahelliott77", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685155270880661504/hkudG0_z_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Jun 01 20:37:52 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685155270880661504/hkudG0_z_normal.jpg", "favourites_count": 5587, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685029425507745792", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "huffingtonpost.com/rene-zografos/\u2026", "url": "https://t.co/7c336Q55ym", "expanded_url": "http://www.huffingtonpost.com/rene-zografos/where-is-the-american-gen_b_8920660.html", "indices": [79, 102]}], "hashtags": [], "user_mentions": [{"screen_name": "HuffPostWomen", "id_str": "309978842", "id": 309978842, "indices": [107, 121], "name": "HuffPostWomen"}]}, "created_at": "Thu Jan 07 09:25:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685029425507745792, "text": "lol what the christ is this please explain????Where is The American Gentlemen? https://t.co/7c336Q55ym via @HuffPostWomen", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Mobile Web"}, "default_profile_image": false, "id": 6509982, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000114307961/d36a958842daa7a4328147beb87ff328.jpeg", "statuses_count": 14388, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6509982/1451356105", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "14264091", "following": false, "friends_count": 2169, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tylerhannan.com", "url": "http://t.co/TG1LgO1z9s", "expanded_url": "http://www.tylerhannan.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 2050, "location": "iPhone: 33.769097,-84.385343", "screen_name": "tylerhannan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 59, "name": "tylerhannan", "profile_use_background_image": true, "description": "Distributed Systems. Music. Director of Product Marketing @elastic", "url": "http://t.co/TG1LgO1z9s", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/425400933661425664/NtI67zqz_normal.jpeg", "profile_background_color": "EBEBEB", "created_at": "Mon Mar 31 06:41:41 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/425400933661425664/NtI67zqz_normal.jpeg", "favourites_count": 4025, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/7d62cffe6f98f349.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.035311, 37.193164], [-121.71215, 37.193164], [-121.71215, 37.469154], [-122.035311, 37.469154]]], "type": "Polygon"}, "full_name": "San Jose, CA", "contained_within": [], "country_code": "US", "id": "7d62cffe6f98f349", "name": "San Jose"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685191303403945984", "id": 685191303403945984, "text": "OH in the airport customer service line: \u201cif we aren\u2019t pitching we aren\u2019t winning\u201d Fellow then, actually said, \u201calways be closing\u201d", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 20:08:31 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14264091, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 11875, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14264091/1366581436", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "8630562", "following": false, "friends_count": 1268, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "quora.com/ben-newman", "url": "http://t.co/cKjvwVK6NJ", "expanded_url": "http://quora.com/ben-newman", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 2021, "location": "iPhone: 37.420708,-122.168798", "screen_name": "benjamn", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 107, "name": "Ben Newman", "profile_use_background_image": true, "description": "Recovering sarcast, aspiring ironist. Meebo, Apture, Mozilla, Quora, Facebook/Instagram, and Meteor have employed me.", "url": "http://t.co/cKjvwVK6NJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458793879831977984/pNj9Au1N_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Mon Sep 03 20:27:48 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458793879831977984/pNj9Au1N_normal.jpeg", "favourites_count": 1725, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685201161134170116", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 510, "resize": "fit"}, "medium": {"w": 600, "h": 900, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 750, "h": 1126, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJS00QWAAAKURz.png", "type": "photo", "indices": [74, 97], "media_url": "http://pbs.twimg.com/media/CYJS00QWAAAKURz.png", "display_url": "pic.twitter.com/fCVZThFMMT", "id_str": "685201160647606272", "expanded_url": "http://twitter.com/SteveMoraco/status/685201161134170116/photo/1", "id": 685201160647606272, "url": "https://t.co/fCVZThFMMT"}], "symbols": [], "urls": [{"display_url": "medium.com/@girlziplocked\u2026", "url": "https://t.co/YQN5mOGLBJ", "expanded_url": "https://medium.com/@girlziplocked/paul-graham-is-still-asking-to-be-eaten-5f021c0c0650#---0-170.dwl3k5g6c", "indices": [50, 73]}], "hashtags": [], "user_mentions": [{"screen_name": "girlziplocked", "id_str": "20221325", "id": 20221325, "indices": [35, 49], "name": "holly wood"}]}, "created_at": "Thu Jan 07 20:47:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685201161134170116, "text": "This article is \ud83d\udd25\ud83d\udd25\ud83d\udd25 read it now.\u200a\u2014\u200a@girlziplocked https://t.co/YQN5mOGLBJ https://t.co/fCVZThFMMT", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Medium"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685201605772328960", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 510, "resize": "fit"}, "medium": {"w": 600, "h": 900, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 750, "h": 1126, "resize": "fit"}}, "source_status_id_str": "685201161134170116", "media_url": "http://pbs.twimg.com/media/CYJS00QWAAAKURz.png", "source_user_id_str": "8238522", "id_str": "685201160647606272", "id": 685201160647606272, "media_url_https": "https://pbs.twimg.com/media/CYJS00QWAAAKURz.png", "type": "photo", "indices": [91, 114], "source_status_id": 685201161134170116, "source_user_id": 8238522, "display_url": "pic.twitter.com/fCVZThFMMT", "expanded_url": "http://twitter.com/SteveMoraco/status/685201161134170116/photo/1", "url": "https://t.co/fCVZThFMMT"}], "symbols": [], "urls": [{"display_url": "medium.com/@girlziplocked\u2026", "url": "https://t.co/YQN5mOGLBJ", "expanded_url": "https://medium.com/@girlziplocked/paul-graham-is-still-asking-to-be-eaten-5f021c0c0650#---0-170.dwl3k5g6c", "indices": [67, 90]}], "hashtags": [], "user_mentions": [{"screen_name": "SteveMoraco", "id_str": "8238522", "id": 8238522, "indices": [3, 15], "name": "Steve Moraco"}, {"screen_name": "girlziplocked", "id_str": "20221325", "id": 20221325, "indices": [52, 66], "name": "holly wood"}]}, "created_at": "Thu Jan 07 20:49:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685201605772328960, "text": "RT @SteveMoraco: This article is \ud83d\udd25\ud83d\udd25\ud83d\udd25 read it now.\u200a\u2014\u200a@girlziplocked https://t.co/YQN5mOGLBJ https://t.co/fCVZThFMMT", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 8630562, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 5482, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8630562/1398219833", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "23000562", "following": false, "friends_count": 603, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 690, "location": "Chicagoland", "screen_name": "mleinart", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "Michael Leinartas", "profile_use_background_image": true, "description": "Tinkerer; I like to take things apart.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1706485416/IMG_20111218_092724_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 05 23:55:38 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1706485416/IMG_20111218_092724_normal.jpg", "favourites_count": 8757, "status": {"retweet_count": 0, "in_reply_to_user_id": 15374401, "possibly_sensitive": false, "id_str": "685576170004299776", "in_reply_to_user_id_str": "15374401", "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/tkDcxANsZz", "url": "https://t.co/tkDcxANsZz", "expanded_url": "http://twitter.com/mleinart/status/685576170004299776/photo/1", "indices": [58, 81]}], "hashtags": [], "user_mentions": [{"screen_name": "esten", "id_str": "15374401", "id": 15374401, "indices": [0, 6], "name": "Este\u00f1 Americanus"}]}, "created_at": "Fri Jan 08 21:37:50 +0000 2016", "favorited": false, "in_reply_to_status_id": 685575402564096004, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "esten", "in_reply_to_status_id_str": "685575402564096004", "truncated": false, "id": 685576170004299776, "text": "@esten you need a New Yorker to say that properly for you https://t.co/tkDcxANsZz", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 23000562, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10348, "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "58663169", "following": false, "friends_count": 279, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "1E2224", "geo_enabled": true, "followers_count": 133, "location": "Seattle WA", "screen_name": "jeffraffo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Jeff Raffo", "profile_use_background_image": true, "description": "Passionate about lean principles in technology, automation, open source and being a dad. director - personalization technology @ nordstrom", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/612109224143753216/ARoM66lQ_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jul 21 01:42:20 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/612109224143753216/ARoM66lQ_normal.jpg", "favourites_count": 1016, "status": {"in_reply_to_status_id": 685254065572298753, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "dougireton", "in_reply_to_user_id": 7894852, "in_reply_to_status_id_str": "685254065572298753", "in_reply_to_user_id_str": "7894852", "truncated": false, "id_str": "685543360942047233", "id": 685543360942047233, "text": "@dougireton I'm owning the hug in 2016! #vulnerability #comfortablewithmyself", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "vulnerability", "indices": [40, 54]}, {"text": "comfortablewithmyself", "indices": [55, 77]}], "user_mentions": [{"screen_name": "dougireton", "id_str": "7894852", "id": 7894852, "indices": [0, 11], "name": "Doug Ireton"}]}, "created_at": "Fri Jan 08 19:27:28 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 58663169, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 495, "profile_banner_url": "https://pbs.twimg.com/profile_banners/58663169/1398401815", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "35213", "following": false, "friends_count": 1075, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "shawn.medero.net", "url": "http://t.co/8Dn7SAHC1W", "expanded_url": "http://shawn.medero.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/65220225/patt_4b47c3685cc0d.jpg.jpg", "notifications": false, "profile_sidebar_fill_color": "E8E8E8", "profile_link_color": "CC3300", "geo_enabled": true, "followers_count": 572, "location": "Claremont, CA", "screen_name": "soypunk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "Shawn Medero", "profile_use_background_image": false, "description": "When not bicycling with my family, I'm a solutions architect in higher education. Interested in user experience, web archeology, hockey, and vegan food.", "url": "http://t.co/8Dn7SAHC1W", "profile_text_color": "212121", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684080455679774720/gGS_61YC_normal.jpg", "profile_background_color": "303030", "created_at": "Fri Dec 01 23:33:16 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D3D3", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684080455679774720/gGS_61YC_normal.jpg", "favourites_count": 13564, "status": {"in_reply_to_status_id": 685536272459239424, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/dbd7fea9eedaecd0.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-117.7508068, 34.0794765], [-117.6815385, 34.0794765], [-117.6815385, 34.1585563], [-117.7508068, 34.1585563]]], "type": "Polygon"}, "full_name": "Claremont, CA", "contained_within": [], "country_code": "US", "id": "dbd7fea9eedaecd0", "name": "Claremont"}, "in_reply_to_screen_name": "kristimarleau", "in_reply_to_user_id": 550444722, "in_reply_to_status_id_str": "685536272459239424", "in_reply_to_user_id_str": "550444722", "truncated": false, "id_str": "685536778464305152", "id": 685536778464305152, "text": "@kristimarleau Reply All is a great show btw, you should give some of the archives a chance.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kristimarleau", "id_str": "550444722", "id": 550444722, "indices": [0, 14], "name": "Kristi Marleau"}]}, "created_at": "Fri Jan 08 19:01:19 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 35213, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/65220225/patt_4b47c3685cc0d.jpg.jpg", "statuses_count": 13400, "profile_banner_url": "https://pbs.twimg.com/profile_banners/35213/1397163361", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "17954385", "following": false, "friends_count": 799, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "clintweathers.com", "url": "http://t.co/PMWUQpP7Ri", "expanded_url": "http://clintweathers.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": true, "followers_count": 661, "location": "MSP", "screen_name": "zenrhino", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 120, "name": "Clint Weathers", "profile_use_background_image": true, "description": "I use #rstats and #pydata to fight fraud. +100kg Judo player with a mean tai otoshi. Hasselblad + TriX + Rodinal. Full-stack baker.", "url": "http://t.co/PMWUQpP7Ri", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/679575511354478592/66QphBZB_normal.jpg", "profile_background_color": "709397", "created_at": "Mon Dec 08 03:07:23 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679575511354478592/66QphBZB_normal.jpg", "favourites_count": 6700, "status": {"retweet_count": 36, "retweeted_status": {"retweet_count": 36, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685575365180309505", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/USSJoin/status\u2026", "url": "https://t.co/un9Oa5lUzq", "expanded_url": "https://twitter.com/USSJoin/status/685567709342347264", "indices": [101, 124]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:34:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685575365180309505, "text": "sorry everyone, 2016 is over. the most ironic data leak trophy is already taken. you can go home now https://t.co/un9Oa5lUzq", "coordinates": null, "retweeted": false, "favorite_count": 37, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685575505790173184", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/USSJoin/status\u2026", "url": "https://t.co/un9Oa5lUzq", "expanded_url": "https://twitter.com/USSJoin/status/685567709342347264", "indices": [119, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "FioraAeterna", "id_str": "2468699718", "id": 2468699718, "indices": [3, 16], "name": "Fiora Aeterna \u2604"}]}, "created_at": "Fri Jan 08 21:35:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685575505790173184, "text": "RT @FioraAeterna: sorry everyone, 2016 is over. the most ironic data leak trophy is already taken. you can go home now https://t.co/un9Oa5l\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 17954385, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 32454, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17954385/1390323077", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "457893808", "following": false, "friends_count": 701, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": false, "followers_count": 217, "location": "Orange County, CA", "screen_name": "bobbylikeslinux", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "bobby", "profile_use_background_image": false, "description": "Exploring the world of open source software, Python, Brazilian Jiu Jitsu, and making computers actually work for people again!", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674131539051982848/9VYAvrwT_normal.png", "profile_background_color": "000000", "created_at": "Sat Jan 07 23:17:20 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674131539051982848/9VYAvrwT_normal.png", "favourites_count": 3071, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "joerogan", "in_reply_to_user_id": 18208354, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "18208354", "truncated": false, "id_str": "685565662039703552", "id": 685565662039703552, "text": "@joerogan First live show last night. I loved the whole lineup at the @icehousecomedy", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "joerogan", "id_str": "18208354", "id": 18208354, "indices": [0, 9], "name": "Joe Rogan"}, {"screen_name": "icehousecomedy", "id_str": "57833012", "id": 57833012, "indices": [71, 86], "name": "Ice House Comedy"}]}, "created_at": "Fri Jan 08 20:56:05 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 457893808, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2831, "profile_banner_url": "https://pbs.twimg.com/profile_banners/457893808/1426654010", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15146957", "following": false, "friends_count": 306, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "spof.io", "url": "https://t.co/IpKruWlg7y", "expanded_url": "https://spof.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "666666", "geo_enabled": true, "followers_count": 491, "location": "California", "screen_name": "dontrebootme", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 36, "name": "Patrick O'Connor", "profile_use_background_image": false, "description": "Systems Engineering in the LA area. \nShipping awesome experiences at Disney.\n\nCurrently Imagineering R&D.\nPreviously rendering and systems at DreamWorks.", "url": "https://t.co/IpKruWlg7y", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677265112579702785/1-oDaeyG_normal.png", "profile_background_color": "000000", "created_at": "Tue Jun 17 15:48:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677265112579702785/1-oDaeyG_normal.png", "favourites_count": 3087, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685581921057959936", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 811, "h": 1000, "resize": "fit"}, "medium": {"w": 600, "h": 739, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 419, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", "type": "photo", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", "display_url": "pic.twitter.com/m2yLVcADLG", "id_str": "685581920940482562", "expanded_url": "http://twitter.com/hackadayio/status/685581921057959936/photo/1", "id": 685581920940482562, "url": "https://t.co/m2yLVcADLG"}], "symbols": [], "urls": [{"display_url": "bit.ly/1OyXMls", "url": "https://t.co/wNwkHUk2KM", "expanded_url": "http://bit.ly/1OyXMls", "indices": [75, 98]}], "hashtags": [], "user_mentions": [{"screen_name": "socallinuxexpo", "id_str": "14120402", "id": 14120402, "indices": [38, 53], "name": "socallinuxexpo"}, {"screen_name": "SupplyFrame", "id_str": "16933617", "id": 16933617, "indices": [106, 118], "name": "SupplyFrame, Inc."}]}, "created_at": "Fri Jan 08 22:00:42 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685581921057959936, "text": "Play games & party w/ Hackaday at @SoCalLinuxExpo Game Night 23rd Jan. https://t.co/wNwkHUk2KM Thanks @SupplyFrame! https://t.co/m2yLVcADLG", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Meet Edgar"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685582321299279872", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 811, "h": 1000, "resize": "fit"}, "medium": {"w": 600, "h": 739, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 419, "resize": "fit"}}, "source_status_id_str": "685581921057959936", "media_url": "http://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", "source_user_id_str": "2670064278", "id_str": "685581920940482562", "id": 685581920940482562, "media_url_https": "https://pbs.twimg.com/media/CYOtH-4WYAI-1iX.png", "type": "photo", "indices": [143, 144], "source_status_id": 685581921057959936, "source_user_id": 2670064278, "display_url": "pic.twitter.com/m2yLVcADLG", "expanded_url": "http://twitter.com/hackadayio/status/685581921057959936/photo/1", "url": "https://t.co/m2yLVcADLG"}], "symbols": [], "urls": [{"display_url": "bit.ly/1OyXMls", "url": "https://t.co/wNwkHUk2KM", "expanded_url": "http://bit.ly/1OyXMls", "indices": [91, 114]}], "hashtags": [], "user_mentions": [{"screen_name": "hackadayio", "id_str": "2670064278", "id": 2670064278, "indices": [3, 14], "name": "Hackaday.io"}, {"screen_name": "socallinuxexpo", "id_str": "14120402", "id": 14120402, "indices": [54, 69], "name": "socallinuxexpo"}, {"screen_name": "SupplyFrame", "id_str": "16933617", "id": 16933617, "indices": [122, 134], "name": "SupplyFrame, Inc."}]}, "created_at": "Fri Jan 08 22:02:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685582321299279872, "text": "RT @hackadayio: Play games & party w/ Hackaday at @SoCalLinuxExpo Game Night 23rd Jan. https://t.co/wNwkHUk2KM Thanks @SupplyFrame! https:/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 15146957, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 2470, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15146957/1450313349", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8084512", "following": false, "friends_count": 971, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nymag.com", "url": "https://t.co/h3Ulh5oQm9", "expanded_url": "http://nymag.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/735772534/9495f1433a2b072c10c1a668313df0fe.png", "notifications": false, "profile_sidebar_fill_color": "E2FF9E", "profile_link_color": "419EC9", "geo_enabled": false, "followers_count": 1655, "location": "Brooklyn, NY", "screen_name": "gloddy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 80, "name": "Christian Gloddy", "profile_use_background_image": true, "description": "Director of Web Dev @NYMag. Optimist. Love node.js, gulp, responsive design, web standards, and kind people.", "url": "https://t.co/h3Ulh5oQm9", "profile_text_color": "9ED54C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671729014831099905/0REgQMKF_normal.jpg", "profile_background_color": "8F9699", "created_at": "Thu Aug 09 17:02:35 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671729014831099905/0REgQMKF_normal.jpg", "favourites_count": 6712, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685456563767775232", "id": 685456563767775232, "text": "If your version of \"Agile\" involves long meetings, then you might want to find a different word to describe what you're doing.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 13:42:34 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 7, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8084512, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/735772534/9495f1433a2b072c10c1a668313df0fe.png", "statuses_count": 2641, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8084512/1442231967", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8820492", "following": false, "friends_count": 863, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joshfinnie.com", "url": "http://t.co/GbqqdUdYyo", "expanded_url": "http://www.joshfinnie.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/670653368/4ebce690a626c7c92811b413c83ce474.gif", "notifications": false, "profile_sidebar_fill_color": "F9D762", "profile_link_color": "DB5151", "geo_enabled": true, "followers_count": 1459, "location": "Washington DC", "screen_name": "joshfinnie", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 89, "name": "Josh Finnie", "profile_use_background_image": true, "description": "Software Maven at @TrackMaven, creator of @BeerLedge. Interests: #Javascript (#Angular, #Node), #Python (#Django, #Pyramid)", "url": "http://t.co/GbqqdUdYyo", "profile_text_color": "C5BE71", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1867634130/josh-final_normal.jpg", "profile_background_color": "EDFDCC", "created_at": "Tue Sep 11 22:10:25 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1867634130/josh-final_normal.jpg", "favourites_count": 638, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685568488010825728", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "beerledge.com/ledges/CciZ2Ga\u2026", "url": "https://t.co/1Z1fRNFEUU", "expanded_url": "https://www.beerledge.com/ledges/CciZ2GafqvuGHnZkx4HmhP", "indices": [80, 103]}], "hashtags": [], "user_mentions": [{"screen_name": "EvilGeniusBeer", "id_str": "150438189", "id": 150438189, "indices": [34, 49], "name": "Evil Genius Beer Co."}, {"screen_name": "beerledge", "id_str": "174866293", "id": 174866293, "indices": [68, 78], "name": "Beer Ledge"}]}, "created_at": "Fri Jan 08 21:07:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685568488010825728, "text": "Drank a Evil Genius Beer Company (@evilgeniusbeer) Evil Eye PA. Via @beerledge. https://t.co/1Z1fRNFEUU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "BeerLedgeV2"}, "default_profile_image": false, "id": 8820492, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/670653368/4ebce690a626c7c92811b413c83ce474.gif", "statuses_count": 19349, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8820492/1398795982", "is_translator": false}, {"time_zone": "Lisbon", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "200749589", "following": false, "friends_count": 351, "entities": {"description": {"urls": [{"display_url": "ipn.io", "url": "https://t.co/yreM5xC4PE", "expanded_url": "http://ipn.io", "indices": [24, 47]}]}, "url": {"urls": [{"display_url": "daviddias.me", "url": "https://t.co/JTVkZvLXKc", "expanded_url": "http://daviddias.me", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 1441, "location": "Portugal", "screen_name": "daviddias", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 58, "name": "David Dias", "profile_use_background_image": true, "description": "P2P SE at Protocol Labs https://t.co/yreM5xC4PE : #IPFS & @filecoin. P2P MSc. Made @lxjs & @startupscholars", "url": "https://t.co/JTVkZvLXKc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/483942490517807104/Wd8QaL3l_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Sun Oct 10 04:07:38 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/483942490517807104/Wd8QaL3l_normal.jpeg", "favourites_count": 3182, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684526318961201152", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/feross/status/\u2026", "url": "https://t.co/01Aoplvsxe", "expanded_url": "https://twitter.com/feross/status/684525552091459584", "indices": [118, 141]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 00:06:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684526318961201152, "text": "WebTorrent and Peerflix are probably the fastest torrent clients in existence.\n\nMagnet links find peers in <1 sec. https://t.co/01Aoplvsxe", "coordinates": null, "retweeted": false, "favorite_count": 18, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684544934817456133", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/feross/status/\u2026", "url": "https://t.co/01Aoplvsxe", "expanded_url": "https://twitter.com/feross/status/684525552091459584", "indices": [142, 143]}], "hashtags": [], "user_mentions": [{"screen_name": "WebTorrentApp", "id_str": "3231905569", "id": 3231905569, "indices": [3, 17], "name": "WebTorrent"}]}, "created_at": "Wed Jan 06 01:20:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684544934817456133, "text": "RT @WebTorrentApp: WebTorrent and Peerflix are probably the fastest torrent clients in existence.\n\nMagnet links find peers in <1 sec. https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 200749589, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 3878, "profile_banner_url": "https://pbs.twimg.com/profile_banners/200749589/1409036234", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "196082293", "following": false, "friends_count": 1095, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mikespeegle.com", "url": "http://t.co/xdukoWcWQp", "expanded_url": "http://www.mikespeegle.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 1552, "location": "Kennwick, WA", "screen_name": "Mike_Speegle", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 70, "name": "Mike Speegle", "profile_use_background_image": false, "description": "Author. Playwright. Kirkus Indie Book of the Year, Something Greater than Artifice. Jukebox musical, Guns of Ireland. Repped by @leonhusock. Likes toast.", "url": "http://t.co/xdukoWcWQp", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/627225288452145153/zQ2JEgRz_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Sep 28 08:41:51 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/627225288452145153/zQ2JEgRz_normal.jpg", "favourites_count": 2313, "status": {"in_reply_to_status_id": 685573435431333888, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "_Shannon_Knight", "in_reply_to_user_id": 3188997517, "in_reply_to_status_id_str": "685573435431333888", "in_reply_to_user_id_str": "3188997517", "truncated": false, "id_str": "685589638157742081", "id": 685589638157742081, "text": "@_shannon_knight Ha! Well I\u2019m just 1/3 the production team, but I appreciate the props.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "_Shannon_Knight", "id_str": "3188997517", "id": 3188997517, "indices": [0, 16], "name": "Shannon Knight"}]}, "created_at": "Fri Jan 08 22:31:22 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 196082293, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 10295, "profile_banner_url": "https://pbs.twimg.com/profile_banners/196082293/1434391956", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "407296703", "following": false, "friends_count": 792, "entities": {"description": {"urls": [{"display_url": "soundcloud.com/benmichelmusic", "url": "https://t.co/BWrMpb89KY", "expanded_url": "http://soundcloud.com/benmichelmusic", "indices": [97, 120]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/449685667832811520/htR5S1-H.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "46757F", "geo_enabled": false, "followers_count": 611, "location": "Portland, OR", "screen_name": "obensource", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "Ben Michel", "profile_use_background_image": true, "description": "Musician\u2013Developer. I curate & perform musical experiences for live events & recordings, listen: https://t.co/BWrMpb89KY", "url": null, "profile_text_color": "FFFFFF", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/560338263890612224/SDEpGo5s_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Mon Nov 07 22:14:02 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/560338263890612224/SDEpGo5s_normal.jpeg", "favourites_count": 7062, "status": {"in_reply_to_status_id": 685523459984588800, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "davidlymanning", "in_reply_to_user_id": 310674727, "in_reply_to_status_id_str": "685523459984588800", "in_reply_to_user_id_str": "310674727", "truncated": false, "id_str": "685530039450914816", "id": 685530039450914816, "text": "@davidlymanning @HenrikJoreteg hard to say because in-roads and accessibility to becoming an artisan later on greatly enrich people's lives.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "davidlymanning", "id_str": "310674727", "id": 310674727, "indices": [0, 15], "name": "David Manning"}, {"screen_name": "HenrikJoreteg", "id_str": "15102110", "id": 15102110, "indices": [16, 30], "name": "Henrik Joreteg"}]}, "created_at": "Fri Jan 08 18:34:32 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 407296703, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/449685667832811520/htR5S1-H.png", "statuses_count": 3111, "profile_banner_url": "https://pbs.twimg.com/profile_banners/407296703/1394863631", "is_translator": false}, {"time_zone": "Warsaw", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "42864649", "following": false, "friends_count": 331, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thefox.is", "url": "https://t.co/wKJ9u67ov4", "expanded_url": "http://thefox.is", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/197733467/bg.jpg", "notifications": false, "profile_sidebar_fill_color": "F5F5F5", "profile_link_color": "C03546", "geo_enabled": true, "followers_count": 7814, "location": "Melbourne, Victoria", "screen_name": "fox", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 420, "name": "fantastic ms.", "profile_use_background_image": false, "description": "\u21161 inclusivity and empathy enthusiast, diversity advisor \u273b Co-running @jsconfeu, past @cssconfoak. Product, photography and \u2764\ufe0f for @benschwarz.", "url": "https://t.co/wKJ9u67ov4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668345269424099328/v0f_IJZz_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed May 27 11:48:42 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668345269424099328/v0f_IJZz_normal.png", "favourites_count": 1506, "status": {"in_reply_to_status_id": 685461632965840896, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "olasitarska", "in_reply_to_user_id": 32315020, "in_reply_to_status_id_str": "685461632965840896", "in_reply_to_user_id_str": "32315020", "truncated": false, "id_str": "685581334023024640", "id": 685581334023024640, "text": "@olasitarska \u2014 @xoxo and @buildconf", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "olasitarska", "id_str": "32315020", "id": 32315020, "indices": [0, 12], "name": "Ola Sitarska"}, {"screen_name": "xoxo", "id_str": "516875194", "id": 516875194, "indices": [15, 20], "name": "XOXO"}, {"screen_name": "buildconf", "id_str": "16601823", "id": 16601823, "indices": [25, 35], "name": "Build"}]}, "created_at": "Fri Jan 08 21:58:22 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 42864649, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/197733467/bg.jpg", "statuses_count": 14763, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42864649/1448180980", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "346026614", "following": false, "friends_count": 44, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hueniverse.com", "url": "http://t.co/EoJhrhmss4", "expanded_url": "http://hueniverse.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "505050", "geo_enabled": false, "followers_count": 5860, "location": "Los Gatos, CA", "screen_name": "eranhammer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 262, "name": "Eran Hammer", "profile_use_background_image": false, "description": "Life experiences collector. @sideway founder, @hapijs creator. Former farmer and emu wrangler. My husband @DadOfTwinzLG is better than yours. eran@hammer.io", "url": "http://t.co/EoJhrhmss4", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631361295015526400/YV8fcPYM_normal.png", "profile_background_color": "000000", "created_at": "Sun Jul 31 16:05:54 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631361295015526400/YV8fcPYM_normal.png", "favourites_count": 1057, "status": {"retweet_count": 22, "retweeted_status": {"retweet_count": 22, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685177589254598656", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 427, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", "type": "photo", "indices": [100, 123], "media_url": "http://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", "display_url": "pic.twitter.com/00NnlVFIDE", "id_str": "685177589128810496", "expanded_url": "http://twitter.com/nodejs/status/685177589254598656/photo/1", "id": 685177589128810496, "url": "https://t.co/00NnlVFIDE"}], "symbols": [], "urls": [{"display_url": "github.com/nodejs/members\u2026", "url": "https://t.co/sxuXulYAXx", "expanded_url": "https://github.com/nodejs/membership/issues/12", "indices": [76, 99]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 19:14:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685177589254598656, "text": "Nominations to join our Board of Directors ends January 15! You interested? https://t.co/sxuXulYAXx https://t.co/00NnlVFIDE", "coordinates": null, "retweeted": false, "favorite_count": 28, "contributors": null, "source": "Sprout Social"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685198395917512704", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 427, "resize": "fit"}}, "source_status_id_str": "685177589254598656", "media_url": "http://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", "source_user_id_str": "91985735", "id_str": "685177589128810496", "id": 685177589128810496, "media_url_https": "https://pbs.twimg.com/media/CYI9YxgU0AA9HIv.jpg", "type": "photo", "indices": [112, 135], "source_status_id": 685177589254598656, "source_user_id": 91985735, "display_url": "pic.twitter.com/00NnlVFIDE", "expanded_url": "http://twitter.com/nodejs/status/685177589254598656/photo/1", "url": "https://t.co/00NnlVFIDE"}], "symbols": [], "urls": [{"display_url": "github.com/nodejs/members\u2026", "url": "https://t.co/sxuXulYAXx", "expanded_url": "https://github.com/nodejs/membership/issues/12", "indices": [88, 111]}], "hashtags": [], "user_mentions": [{"screen_name": "nodejs", "id_str": "91985735", "id": 91985735, "indices": [3, 10], "name": "Node.js"}]}, "created_at": "Thu Jan 07 20:36:42 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685198395917512704, "text": "RT @nodejs: Nominations to join our Board of Directors ends January 15! You interested? https://t.co/sxuXulYAXx https://t.co/00NnlVFIDE", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 346026614, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 5727, "profile_banner_url": "https://pbs.twimg.com/profile_banners/346026614/1438570099", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "91985735", "following": false, "friends_count": 209, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nodejs.org", "url": "https://t.co/X32n3a0B1h", "expanded_url": "http://nodejs.org", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 305316, "location": "Earth", "screen_name": "nodejs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4787, "name": "Node.js", "profile_use_background_image": true, "description": "The Node.js JavaScript Runtime", "url": "https://t.co/X32n3a0B1h", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494226256276123648/GWnVTc9j_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Nov 23 10:57:50 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494226256276123648/GWnVTc9j_normal.png", "favourites_count": 182, "status": {"in_reply_to_status_id": 685557569256091648, "retweet_count": 2, "place": null, "in_reply_to_screen_name": "danielnwilliams", "in_reply_to_user_id": 398846571, "in_reply_to_status_id_str": "685557569256091648", "in_reply_to_user_id_str": "398846571", "truncated": false, "id_str": "685561277364723713", "id": 685561277364723713, "text": "@danielnwilliams @ktrott00 good catch. Netflix streams 100 million+ hrs of video/day :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "danielnwilliams", "id_str": "398846571", "id": 398846571, "indices": [0, 16], "name": "Daniel Williams"}, {"screen_name": "ktrott00", "id_str": "16898833", "id": 16898833, "indices": [17, 26], "name": "Kim Trott"}]}, "created_at": "Fri Jan 08 20:38:40 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 91985735, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2172, "profile_banner_url": "https://pbs.twimg.com/profile_banners/91985735/1406667709", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1126476188", "following": false, "friends_count": 1507, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ansible.com", "url": "http://t.co/Yu5etG6UZX", "expanded_url": "http://www.ansible.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 15787, "location": "", "screen_name": "ansible", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 545, "name": "Ansible", "profile_use_background_image": true, "description": "Ansible is the simplest way to automate apps and infrastructure. Application Deployment + Configuration Management + Continuous Delivery.", "url": "http://t.co/Yu5etG6UZX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/428287509047435264/ElOjna20_normal.png", "profile_background_color": "131516", "created_at": "Sun Jan 27 23:16:48 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/428287509047435264/ElOjna20_normal.png", "favourites_count": 2535, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612959226310656", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "hubs.ly/H01LcJ20", "url": "https://t.co/3SUh5gtU60", "expanded_url": "http://hubs.ly/H01LcJ20", "indices": [54, 77]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:04:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612959226310656, "text": "Don't miss the Seattle Ansible Meetup on January 12th https://t.co/3SUh5gtU60", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "HubSpot"}, "default_profile_image": false, "id": 1126476188, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 7209, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1126476188/1449349061", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14878068", "following": false, "friends_count": 760, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyet.com/team/baldwin", "url": "https://t.co/xF4ndOjEu2", "expanded_url": "https://andyet.com/team/baldwin", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 3436, "location": "Tri-Cities, WA", "screen_name": "adam_baldwin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 200, "name": "Adam Baldwin", "profile_use_background_image": true, "description": "Husband @babyfro\nFather of 2\nTeam ^lifter @liftsecurity\nYeti @andyet\nFounder @nodesecurity", "url": "https://t.co/xF4ndOjEu2", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/620086266244116480/1SW5afQT_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Fri May 23 05:38:53 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/620086266244116480/1SW5afQT_normal.jpg", "favourites_count": 16394, "status": {"retweet_count": 63, "retweeted_status": {"retweet_count": 63, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685332012131954688", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "phrack.org/issues/7/3.html", "url": "https://t.co/xlBLGAHGcl", "expanded_url": "http://phrack.org/issues/7/3.html", "indices": [52, 75]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 05:27:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685332012131954688, "text": "30 years ago to date The Mentor wrote his manifesto https://t.co/xlBLGAHGcl Despite the propaganda and mass sellouts, it still matters", "coordinates": null, "retweeted": false, "favorite_count": 44, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685357215415287808", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "phrack.org/issues/7/3.html", "url": "https://t.co/xlBLGAHGcl", "expanded_url": "http://phrack.org/issues/7/3.html", "indices": [67, 90]}], "hashtags": [], "user_mentions": [{"screen_name": "agelastic", "id_str": "367629666", "id": 367629666, "indices": [3, 13], "name": "Vitaly Osipov"}]}, "created_at": "Fri Jan 08 07:07:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685357215415287808, "text": "RT @agelastic: 30 years ago to date The Mentor wrote his manifesto https://t.co/xlBLGAHGcl Despite the propaganda and mass sellouts, it sti\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 14878068, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 15621, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18496432", "following": false, "friends_count": 1531, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "medium.com/@nrrrdcore", "url": "https://t.co/yNzkb6fJpL", "expanded_url": "https://medium.com/@nrrrdcore", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/606579843/q2ygld2s5eo2b6kria06.jpeg", "notifications": false, "profile_sidebar_fill_color": "FDF68F", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 24092, "location": "Oakland, CA", "screen_name": "nrrrdcore", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 1066, "name": "Julie Ann Horvath", "profile_use_background_image": false, "description": "Part pok\u00e9mon, part reality tv gif. Designer who codes. Multicultural. Friendly neighborhood Feminist. Volunteer at @Oakland_CM. Bay Area Native.", "url": "https://t.co/yNzkb6fJpL", "profile_text_color": "0D0D0C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670454037028868096/xU17-mNX_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Dec 31 02:39:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "0A0A09", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670454037028868096/xU17-mNX_normal.jpg", "favourites_count": 25755, "status": {"in_reply_to_status_id": 684832544966103040, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "polotek", "in_reply_to_user_id": 20079975, "in_reply_to_status_id_str": "684832544966103040", "in_reply_to_user_id_str": "20079975", "truncated": false, "id_str": "685606596416679936", "id": 685606596416679936, "text": "@polotek she's the luckiest baby girl to have parents like you and @operaqueenie \ud83d\ude4c\ud83c\udffd", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "polotek", "id_str": "20079975", "id": 20079975, "indices": [0, 8], "name": "Marco Rogers"}, {"screen_name": "operaqueenie", "id_str": "18710797", "id": 18710797, "indices": [67, 80], "name": "Aniyia"}]}, "created_at": "Fri Jan 08 23:38:45 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18496432, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/606579843/q2ygld2s5eo2b6kria06.jpeg", "statuses_count": 27871, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18496432/1446178912", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "238257944", "following": false, "friends_count": 295, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "deedubs.com", "url": "http://t.co/Jo9kwa5p7q", "expanded_url": "http://deedubs.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/601132773/s1z93dncq6lyre2s8v51.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 368, "location": "Ottawa, ON", "screen_name": "deedubs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 25, "name": "Dan Williams", "profile_use_background_image": false, "description": "JavaScript, Site Reliability Engineer. Senior developer at @keatonrow", "url": "http://t.co/Jo9kwa5p7q", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638672882290266112/ufp3Vfqz_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Jan 14 19:02:08 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638672882290266112/ufp3Vfqz_normal.jpg", "favourites_count": 202, "status": {"retweet_count": 3, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685475894945792001", "id": 685475894945792001, "text": "Currently tying our shoes. Want early access? Follow for details.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:59:23 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685515370845749248", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "trytipjuice", "id_str": "3973986610", "id": 3973986610, "indices": [3, 15], "name": "TipJuice"}]}, "created_at": "Fri Jan 08 17:36:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685515370845749248, "text": "RT @trytipjuice: Currently tying our shoes. Want early access? Follow for details.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 238257944, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/601132773/s1z93dncq6lyre2s8v51.jpeg", "statuses_count": 3109, "profile_banner_url": "https://pbs.twimg.com/profile_banners/238257944/1422636454", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "11395", "following": false, "friends_count": 163, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stpeter.im", "url": "https://t.co/9DJjN5mx49", "expanded_url": "https://stpeter.im/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 1986, "location": "Parker, Colorado, USA", "screen_name": "stpeter", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 130, "name": "Peter Saint-Andre", "profile_use_background_image": true, "description": "Technologist. Musician. Philosopher. CTO with @andyet.", "url": "https://t.co/9DJjN5mx49", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494848536710619136/BaEAuasq_normal.png", "profile_background_color": "9AE4E8", "created_at": "Fri Nov 03 18:45:57 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494848536710619136/BaEAuasq_normal.png", "favourites_count": 1761, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684856883530760192", "id": 684856883530760192, "text": "Too many chars, my dear Twitter!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 21:59:39 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 11395, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3918, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "8446052", "following": false, "friends_count": 539, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 625, "location": "WA", "screen_name": "hjon", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 80, "name": "Jon Hjelle", "profile_use_background_image": true, "description": "iOS Developer at &yet (@andyet). I work on @usetalky.", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/34548232/5-3-03_020_1_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun Aug 26 19:13:41 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/34548232/5-3-03_020_1_normal.jpg", "favourites_count": 323, "status": {"in_reply_to_status_id": 678996154445508608, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Gautam_Pratik", "in_reply_to_user_id": 355311539, "in_reply_to_status_id_str": "678996154445508608", "in_reply_to_user_id_str": "355311539", "truncated": false, "id_str": "679080894615851008", "id": 679080894615851008, "text": "@Gautam_Pratik Not really. Brought it to a shop and they could only narrow it down to logic board or video card.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Gautam_Pratik", "id_str": "355311539", "id": 355311539, "indices": [0, 14], "name": "Pratik Gautam"}]}, "created_at": "Mon Dec 21 23:27:56 +0000 2015", "source": "Twitterrific", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8446052, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 3091, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18076186", "following": false, "friends_count": 93, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "maltson.com", "url": "https://t.co/CAoihOvU1e", "expanded_url": "http://maltson.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 264, "location": "Toronto, Canada", "screen_name": "amaltson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "Arthur Maltson", "profile_use_background_image": true, "description": "Husband and father of two wonderful daughters. Practicing DevOps during the day and DadOps at night.", "url": "https://t.co/CAoihOvU1e", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1213346750/arthur_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Dec 12 13:50:31 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1213346750/arthur_normal.jpg", "favourites_count": 1587, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685529684633882624", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/joshuajenkins/\u2026", "url": "https://t.co/YeGEHah4r8", "expanded_url": "https://twitter.com/joshuajenkins/status/685166119573848064", "indices": [17, 40]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:33:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685529684633882624, "text": "This is awesome! https://t.co/YeGEHah4r8", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 18076186, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 8716, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "10886832", "following": false, "friends_count": 722, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nerderati.com", "url": "http://t.co/lhQToqxP8q", "expanded_url": "http://nerderati.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2699971/eqns1.jpg", "notifications": false, "profile_sidebar_fill_color": "A0A0A0", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 2495, "location": "iPhone: 45.522545,-73.593346", "screen_name": "jperras", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 242, "name": "Jo\u00ebl Perras", "profile_use_background_image": true, "description": "I'm a physicist turned web dev, and a partner at @FictiveKin.\n\nOSI Layer 8 enthusiast.", "url": "http://t.co/lhQToqxP8q", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/576168271096868864/mpIZKKDZ_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Dec 05 22:56:35 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "787878", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/576168271096868864/mpIZKKDZ_normal.jpeg", "favourites_count": 1942, "status": {"retweet_count": 15, "retweeted_status": {"retweet_count": 15, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607398036344832", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 577, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", "type": "photo", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", "display_url": "pic.twitter.com/Bm16PNTLPf", "id_str": "685607396408999936", "expanded_url": "http://twitter.com/vanschneider/status/685607398036344832/photo/1", "id": 685607396408999936, "url": "https://t.co/Bm16PNTLPf"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:41:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607398036344832, "text": "\u201c$9.99 for a paid music streaming service is too expensive for me.\u201d - This is what americans spend their money on. https://t.co/Bm16PNTLPf", "coordinates": null, "retweeted": false, "favorite_count": 21, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685608068869144580", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 577, "resize": "fit"}}, "source_status_id_str": "685607398036344832", "media_url": "http://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", "source_user_id_str": "18971006", "id_str": "685607396408999936", "id": 685607396408999936, "media_url_https": "https://pbs.twimg.com/media/CYPES2ZWwAA8t61.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685607398036344832, "source_user_id": 18971006, "display_url": "pic.twitter.com/Bm16PNTLPf", "expanded_url": "http://twitter.com/vanschneider/status/685607398036344832/photo/1", "url": "https://t.co/Bm16PNTLPf"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "vanschneider", "id_str": "18971006", "id": 18971006, "indices": [3, 16], "name": "Tobias van Schneider"}]}, "created_at": "Fri Jan 08 23:44:36 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685608068869144580, "text": "RT @vanschneider: \u201c$9.99 for a paid music streaming service is too expensive for me.\u201d - This is what americans spend their money on. https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 10886832, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2699971/eqns1.jpg", "statuses_count": 17412, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10886832/1426204332", "is_translator": false}, {"time_zone": "America/New_York", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "262289144", "following": false, "friends_count": 349, "entities": {"description": {"urls": [{"display_url": "linkedin.com/in/devopsto", "url": "http://t.co/Aciv0cPnM8", "expanded_url": "http://linkedin.com/in/devopsto", "indices": [76, 98]}]}, "url": {"urls": [{"display_url": "stevepereira.ca", "url": "http://t.co/Bxf9OuOiuu", "expanded_url": "http://stevepereira.ca", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 894, "location": "Toronto", "screen_name": "SteveElsewhere", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 90, "name": "Steve Pereira", "profile_use_background_image": false, "description": "@Statflo CTO - Teammate - Software Delivery / Systems Engineer - DevOps fan http://t.co/Aciv0cPnM8", "url": "http://t.co/Bxf9OuOiuu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659417434303008768/Xqy2RBHD_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Mar 07 19:21:27 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659417434303008768/Xqy2RBHD_normal.jpg", "favourites_count": 2948, "status": {"in_reply_to_status_id": 684923946261712897, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mferrier", "in_reply_to_user_id": 12979942, "in_reply_to_status_id_str": "684923946261712897", "in_reply_to_user_id_str": "12979942", "truncated": false, "id_str": "684931694034485248", "id": 684931694034485248, "text": "@mferrier so ready for the robots to step in on this...", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mferrier", "id_str": "12979942", "id": 12979942, "indices": [0, 9], "name": "Mike Ferrier"}]}, "created_at": "Thu Jan 07 02:56:55 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 262289144, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 3064, "profile_banner_url": "https://pbs.twimg.com/profile_banners/262289144/1449646593", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "22066036", "following": false, "friends_count": 365, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 532, "location": "Brooklyn, NY", "screen_name": "techbint", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 53, "name": "Lisa van Gelder", "profile_use_background_image": true, "description": "Software developer, coffee lover", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/85150644/Photo_4_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Feb 26 21:38:09 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/85150644/Photo_4_normal.jpg", "favourites_count": 160, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684907534742765569", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mic.com/articles/13186\u2026", "url": "https://t.co/KbI0Gpso30", "expanded_url": "http://mic.com/articles/131861/silicon-valley-is-lying-to-you-about-economic-inequality#.WkIEmAark", "indices": [73, 96]}], "hashtags": [], "user_mentions": [{"screen_name": "JackSmithIV", "id_str": "27306129", "id": 27306129, "indices": [60, 72], "name": "Jack Smith IV"}, {"screen_name": "micnews", "id_str": "139909832", "id": 139909832, "indices": [101, 109], "name": "Mic"}]}, "created_at": "Thu Jan 07 01:20:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684907534742765569, "text": "Silicon Valley Is Lying to You About Economic Inequality by @jacksmithiv https://t.co/KbI0Gpso30 via @MicNews", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684911569151639554", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mic.com/articles/13186\u2026", "url": "https://t.co/KbI0Gpso30", "expanded_url": "http://mic.com/articles/131861/silicon-valley-is-lying-to-you-about-economic-inequality#.WkIEmAark", "indices": [85, 108]}], "hashtags": [], "user_mentions": [{"screen_name": "harper", "id_str": "1497", "id": 1497, "indices": [3, 10], "name": "harper"}, {"screen_name": "JackSmithIV", "id_str": "27306129", "id": 27306129, "indices": [72, 84], "name": "Jack Smith IV"}, {"screen_name": "micnews", "id_str": "139909832", "id": 139909832, "indices": [113, 121], "name": "Mic"}]}, "created_at": "Thu Jan 07 01:36:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684911569151639554, "text": "RT @harper: Silicon Valley Is Lying to You About Economic Inequality by @jacksmithiv https://t.co/KbI0Gpso30 via @MicNews", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 22066036, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2450, "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "38389571", "following": false, "friends_count": 111, "entities": {"description": {"urls": [{"display_url": "gingerhq.com", "url": "https://t.co/70QKPxW52X", "expanded_url": "https://gingerhq.com", "indices": [42, 65]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 578, "location": "Steamboat Springs, Colorado", "screen_name": "ipmb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Peter Baumgartner", "profile_use_background_image": true, "description": "Founder at Lincoln Loop, maker of Ginger (https://t.co/70QKPxW52X). Lover of family, surfing, skiing, kayaking, and mountain biking.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/533293012156051456/kwGzVRnY_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu May 07 07:16:37 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/533293012156051456/kwGzVRnY_normal.png", "favourites_count": 382, "status": {"in_reply_to_status_id": 679676778013704192, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "montylounge", "in_reply_to_user_id": 34617218, "in_reply_to_status_id_str": "679676778013704192", "in_reply_to_user_id_str": "34617218", "truncated": false, "id_str": "679733605413695488", "id": 679733605413695488, "text": "@montylounge second the recommendation of an inexpensive laster printer", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "montylounge", "id_str": "34617218", "id": 34617218, "indices": [0, 12], "name": "Kevin Fricovsky"}]}, "created_at": "Wed Dec 23 18:41:35 +0000 2015", "source": "Twitter for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 38389571, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 745, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "46082263", "following": false, "friends_count": 21, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jeskecompany.com", "url": "http://t.co/wvNxsWx69d", "expanded_url": "http://jeskecompany.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "336699", "geo_enabled": true, "followers_count": 574, "location": "Neenah, WI, USA", "screen_name": "geekles", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "Shawn Hansen", "profile_use_background_image": false, "description": "Ecommerce at The Jeske Company.", "url": "http://t.co/wvNxsWx69d", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649964839545106432/6mvYsAtT_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Jun 10 10:29:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649964839545106432/6mvYsAtT_normal.jpg", "favourites_count": 350, "status": {"in_reply_to_status_id": 578926689046142978, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jaffathecake", "in_reply_to_user_id": 15390783, "in_reply_to_status_id_str": "578926689046142978", "in_reply_to_user_id_str": "15390783", "truncated": false, "id_str": "578927048963567617", "id": 578927048963567617, "text": "@jaffathecake That a great name for a character in a book.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jaffathecake", "id_str": "15390783", "id": 15390783, "indices": [0, 13], "name": "Jake Archibald"}]}, "created_at": "Fri Mar 20 14:32:19 +0000 2015", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 46082263, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7120, "profile_banner_url": "https://pbs.twimg.com/profile_banners/46082263/1427672701", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "159822053", "following": false, "friends_count": 154, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 8289, "location": "Portland, OR", "screen_name": "kelseyhightower", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 366, "name": "Kelsey Hightower", "profile_use_background_image": true, "description": "Containers. Kubernetes. Golang", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/498800179206578177/5VBrlADU_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Jun 26 12:24:45 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/498800179206578177/5VBrlADU_normal.jpeg", "favourites_count": 4396, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685613533107630080", "id": 685613533107630080, "text": "Details still to come, but looks like we\u2019ve locked in @kelseyhightower for the next Nike Tech Talk on 2/11! ;~)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kelseyhightower", "id_str": "159822053", "id": 159822053, "indices": [54, 70], "name": "Kelsey Hightower"}]}, "created_at": "Sat Jan 09 00:06:19 +0000 2016", "source": "TweetDeck", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685613575885303808", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tlockney", "id_str": "1941471", "id": 1941471, "indices": [3, 12], "name": "Thomas Lockney"}, {"screen_name": "kelseyhightower", "id_str": "159822053", "id": 159822053, "indices": [68, 84], "name": "Kelsey Hightower"}]}, "created_at": "Sat Jan 09 00:06:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613575885303808, "text": "RT @tlockney: Details still to come, but looks like we\u2019ve locked in @kelseyhightower for the next Nike Tech Talk on 2/11! ;~)", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 159822053, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8775, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1974059004", "following": false, "friends_count": 217, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 495, "location": "", "screen_name": "HCornflower", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Philipp Hancke", "profile_use_background_image": true, "description": "doing things webrtc @tokbox", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000644644201/35b0d0ee5b74d7c7328da661b201c03b_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Oct 20 06:34:42 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000644644201/35b0d0ee5b74d7c7328da661b201c03b_normal.png", "favourites_count": 1314, "status": {"in_reply_to_status_id": 685130192780673024, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "feross", "in_reply_to_user_id": 15692193, "in_reply_to_status_id_str": "685130192780673024", "in_reply_to_user_id_str": "15692193", "truncated": false, "id_str": "685329496153669632", "id": 685329496153669632, "text": "@feross always stay close to the person with the gun. And make sure you know how a reindeer looks.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "feross", "id_str": "15692193", "id": 15692193, "indices": [0, 7], "name": "Feross"}]}, "created_at": "Fri Jan 08 05:17:39 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1974059004, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1116, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1974059004/1424759180", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2554691999", "following": false, "friends_count": 82, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/stongo", "url": "https://t.co/2z4msjYUJ6", "expanded_url": "http://github.com/stongo", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 72, "location": "Canada", "screen_name": "stongops", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Stongsy", "profile_use_background_image": true, "description": "DevOps Engineer at @andyet", "url": "https://t.co/2z4msjYUJ6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648714602805596160/vsEJr0zP_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue May 20 00:38:58 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648714602805596160/vsEJr0zP_normal.jpg", "favourites_count": 113, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681684681281146880", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 597, "resize": "fit"}, "medium": {"w": 600, "h": 349, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 198, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXXUl62WcAAWgdj.jpg", "type": "photo", "indices": [33, 56], "media_url": "http://pbs.twimg.com/media/CXXUl62WcAAWgdj.jpg", "display_url": "pic.twitter.com/z5N3NrcofS", "id_str": "681684666533965824", "expanded_url": "http://twitter.com/stongops/status/681684681281146880/photo/1", "id": 681684666533965824, "url": "https://t.co/z5N3NrcofS"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 29 03:54:27 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681684681281146880, "text": "Say no to drugs and yes to Jenga https://t.co/z5N3NrcofS", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2554691999, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 74, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2554691999/1441495963", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "798920833", "following": false, "friends_count": 891, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 147, "location": "Canada", "screen_name": "idleinca", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Luke Tymowski", "profile_use_background_image": true, "description": "Sysadmin", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/490270588141711362/Dy_HyNvs_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Sep 02 19:40:45 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/490270588141711362/Dy_HyNvs_normal.jpeg", "favourites_count": 2, "status": {"retweet_count": 42, "retweeted_status": {"retweet_count": 42, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684772419693862912", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "arstechnica.com/tech-policy/20\u2026", "url": "https://t.co/AO5ZeQnHQ8", "expanded_url": "http://arstechnica.com/tech-policy/2016/01/dutch-government-encryption-good-backdoors-bad/", "indices": [49, 72]}], "hashtags": [], "user_mentions": [{"screen_name": "glynmoody", "id_str": "18525497", "id": 18525497, "indices": [76, 86], "name": "Glyn Moody"}]}, "created_at": "Wed Jan 06 16:24:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684772419693862912, "text": "Dutch government: Encryption good, backdoors bad https://t.co/AO5ZeQnHQ8 by @glynmoody", "coordinates": null, "retweeted": false, "favorite_count": 29, "contributors": null, "source": "Ars tweetbot"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684772945659428864", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "arstechnica.com/tech-policy/20\u2026", "url": "https://t.co/AO5ZeQnHQ8", "expanded_url": "http://arstechnica.com/tech-policy/2016/01/dutch-government-encryption-good-backdoors-bad/", "indices": [66, 89]}], "hashtags": [], "user_mentions": [{"screen_name": "arstechnica", "id_str": "717313", "id": 717313, "indices": [3, 15], "name": "Ars Technica"}, {"screen_name": "glynmoody", "id_str": "18525497", "id": 18525497, "indices": [93, 103], "name": "Glyn Moody"}]}, "created_at": "Wed Jan 06 16:26:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684772945659428864, "text": "RT @arstechnica: Dutch government: Encryption good, backdoors bad https://t.co/AO5ZeQnHQ8 by @glynmoody", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 798920833, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3569, "profile_banner_url": "https://pbs.twimg.com/profile_banners/798920833/1407726620", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "40994489", "following": false, "friends_count": 929, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kristofferpantic.com", "url": "http://t.co/jLZ3EXpJSR", "expanded_url": "http://www.kristofferpantic.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 477, "location": "Barcelona, Spain ", "screen_name": "kpantic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Kristoffer Pantic", "profile_use_background_image": true, "description": "VPoE of @talpor_ve, Computer Engineer from Venezuela currently living in Barcelona, USB and CMU-SV alumni.", "url": "http://t.co/jLZ3EXpJSR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/646076438693715968/NWYnZRuZ_normal.jpg", "profile_background_color": "022330", "created_at": "Mon May 18 23:06:56 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/646076438693715968/NWYnZRuZ_normal.jpg", "favourites_count": 177, "status": {"retweet_count": 798, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 798, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "677982650481553408", "id": 677982650481553408, "text": "Step one:\n$ git remote rename origin jedi\n\nStep two:\n$ git push --force jedi master\n\nStep three:\n\ud83c\udf89\ud83c\udf89\ud83c\udf89Profit \ud83c\udf89\ud83c\udf89\ud83c\udf89", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Dec 18 22:43:54 +0000 2015", "source": "Twitter Web Client", "favorite_count": 614, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "678277444319735809", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thealphanerd", "id_str": "150664007", "id": 150664007, "indices": [3, 16], "name": "Make Fyles"}]}, "created_at": "Sat Dec 19 18:15:19 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678277444319735809, "text": "RT @thealphanerd: Step one:\n$ git remote rename origin jedi\n\nStep two:\n$ git push --force jedi master\n\nStep three:\n\ud83c\udf89\ud83c\udf89\ud83c\udf89Profit \ud83c\udf89\ud83c\udf89\ud83c\udf89", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 40994489, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 8731, "profile_banner_url": "https://pbs.twimg.com/profile_banners/40994489/1370318379", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "263981412", "following": false, "friends_count": 827, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 65, "location": "", "screen_name": "jfer0501", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "John Ferris", "profile_use_background_image": true, "description": "Die Hard Red Sox Fan, Software Engineer, Punk Rock lover", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/412057714311696385/fS2QIp7p_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Mar 11 03:13:12 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/412057714311696385/fS2QIp7p_normal.jpeg", "favourites_count": 39, "status": {"retweet_count": 15689, "retweeted_status": {"retweet_count": 15689, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685210402578382848", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 255, "resize": "fit"}, "large": {"w": 1024, "h": 768, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 450, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", "type": "photo", "indices": [68, 91], "media_url": "http://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", "display_url": "pic.twitter.com/SS8gp4WHAF", "id_str": "685210402448355329", "expanded_url": "http://twitter.com/Fallout/status/685210402578382848/photo/1", "id": 685210402448355329, "url": "https://t.co/SS8gp4WHAF"}], "symbols": [], "urls": [], "hashtags": [{"text": "NationalBobbleheadDay", "indices": [5, 27]}], "user_mentions": []}, "created_at": "Thu Jan 07 21:24:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685210402578382848, "text": "It's #NationalBobbleheadDay ! RT & follow for a chance to win ! https://t.co/SS8gp4WHAF", "coordinates": null, "retweeted": false, "favorite_count": 4608, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685247198079152128", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 255, "resize": "fit"}, "large": {"w": 1024, "h": 768, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 450, "resize": "fit"}}, "source_status_id_str": "685210402578382848", "media_url": "http://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", "source_user_id_str": "112511880", "id_str": "685210402448355329", "id": 685210402448355329, "media_url_https": "https://pbs.twimg.com/media/CYJbOwpWMAEx_mo.jpg", "type": "photo", "indices": [81, 104], "source_status_id": 685210402578382848, "source_user_id": 112511880, "display_url": "pic.twitter.com/SS8gp4WHAF", "expanded_url": "http://twitter.com/Fallout/status/685210402578382848/photo/1", "url": "https://t.co/SS8gp4WHAF"}], "symbols": [], "urls": [], "hashtags": [{"text": "NationalBobbleheadDay", "indices": [18, 40]}], "user_mentions": [{"screen_name": "Fallout", "id_str": "112511880", "id": 112511880, "indices": [3, 11], "name": "Fallout"}]}, "created_at": "Thu Jan 07 23:50:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685247198079152128, "text": "RT @Fallout: It's #NationalBobbleheadDay ! RT & follow for a chance to win ! https://t.co/SS8gp4WHAF", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 263981412, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 494, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2224090597", "following": false, "friends_count": 339, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "travisallan.com", "url": "http://t.co/4AeECnyJpu", "expanded_url": "http://travisallan.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/513158005743833088/SPlg2CPJ.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2196AD", "geo_enabled": false, "followers_count": 125, "location": "Vancouver", "screen_name": "travis_eh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Travis Allan", "profile_use_background_image": true, "description": "Advocate of the impossible for a telco that employs animals.", "url": "http://t.co/4AeECnyJpu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000813579626/cdec533dbb73630947f99801e7d81c22_normal.jpeg", "profile_background_color": "F0F0F0", "created_at": "Sun Dec 01 02:46:49 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000813579626/cdec533dbb73630947f99801e7d81c22_normal.jpeg", "favourites_count": 56, "status": {"retweet_count": 4, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 4, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "665551119477833728", "id": 665551119477833728, "text": "At #fstoconf15 today? Come visit us and learn about our stack", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "fstoconf15", "indices": [3, 14]}], "user_mentions": []}, "created_at": "Sat Nov 14 15:25:26 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "665625579148840960", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "fstoconf15", "indices": [21, 32]}], "user_mentions": [{"screen_name": "telusdigital", "id_str": "3023244921", "id": 3023244921, "indices": [3, 16], "name": "TELUS digital"}]}, "created_at": "Sat Nov 14 20:21:19 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 665625579148840960, "text": "RT @telusdigital: At #fstoconf15 today? Come visit us and learn about our stack", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2224090597, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/513158005743833088/SPlg2CPJ.png", "statuses_count": 271, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2224090597/1411181499", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "85646316", "following": false, "friends_count": 1421, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "elliotmurphy.com", "url": "http://t.co/gFsRT6JJs8", "expanded_url": "http://elliotmurphy.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": false, "followers_count": 660, "location": "portland, maine", "screen_name": "sstatik", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 53, "name": "Elliot Murphy", "profile_use_background_image": true, "description": "Please may I drive your boat?", "url": "http://t.co/gFsRT6JJs8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2349367231/003E1A1D-CEC9-44F0-9C43-694D34CFC754_normal", "profile_background_color": "EBEBEB", "created_at": "Tue Oct 27 19:50:51 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2349367231/003E1A1D-CEC9-44F0-9C43-694D34CFC754_normal", "favourites_count": 2874, "status": {"retweet_count": 54, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 54, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685196271745814528", "id": 685196271745814528, "text": "If you take any security system with a backdoor, you can make it more secure by removing the backdoor. \n\nWe can call this \"The eek! Law\".", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 20:28:16 +0000 2016", "source": "Twitter for Android", "favorite_count": 49, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685473533502205952", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "eqe", "id_str": "16076004", "id": 16076004, "indices": [3, 7], "name": "@eqe (Andy Isaacson)"}]}, "created_at": "Fri Jan 08 14:50:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685473533502205952, "text": "RT @eqe: If you take any security system with a backdoor, you can make it more secure by removing the backdoor. \n\nWe can call this \"The eek\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 85646316, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 3671, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11944492", "following": false, "friends_count": 394, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 288, "location": "phila", "screen_name": "cmerrick", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "cmerrick", "profile_use_background_image": true, "description": "engineer at RJMetrics", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3591779491/caaf951d2f1aa3d8f11b3dc0e9341db3_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Jan 07 14:36:18 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3591779491/caaf951d2f1aa3d8f11b3dc0e9341db3_normal.jpeg", "favourites_count": 31, "status": {"in_reply_to_status_id": 682691595167088640, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "bengarvey", "in_reply_to_user_id": 3732861, "in_reply_to_status_id_str": "682691595167088640", "in_reply_to_user_id_str": "3732861", "truncated": false, "id_str": "682771670688481280", "id": 682771670688481280, "text": "@bengarvey impressive reverse engineering of the Windows 3.1 screen saver", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "bengarvey", "id_str": "3732861", "id": 3732861, "indices": [0, 10], "name": "Ben Garvey"}]}, "created_at": "Fri Jan 01 03:53:46 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 11944492, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 547, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7221", "following": false, "friends_count": 1654, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkd.in/A2n01d", "url": "https://t.co/Bu1B67OyHy", "expanded_url": "http://linkd.in/A2n01d", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 465, "location": "santa monica, california", "screen_name": "arnold", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 49, "name": "Arnold", "profile_use_background_image": false, "description": "lucky to have @annamau @dylanskye_ @sydneydani_. data engineer at startup game company. fauxtographer. completed sweltering @lamarathon 2015. @playoverwatch nub", "url": "https://t.co/Bu1B67OyHy", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1880208035/164_21258363192_647538192_398945_620_n_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Sep 29 06:52:48 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1880208035/164_21258363192_647538192_398945_620_n_normal.jpg", "favourites_count": 6233, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685605870445543424", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 576, "h": 1024, "resize": "fit"}, "small": {"w": 340, "h": 604, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 576, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPC5qWUQAEaw_h.jpg", "type": "photo", "indices": [35, 58], "media_url": "http://pbs.twimg.com/media/CYPC5qWUQAEaw_h.jpg", "display_url": "pic.twitter.com/khl1CZNC1z", "id_str": "685605864166670337", "expanded_url": "http://twitter.com/arnold/status/685605870445543424/photo/1", "id": 685605864166670337, "url": "https://t.co/khl1CZNC1z"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:35:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [34.03107017, -118.4406039], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/96683cc9126741d1.json", "country": "United States", "attributes": {}, "place_type": "country", "bounding_box": {"coordinates": [[[-179.231086, 13.182335], [179.859685, 13.182335], [179.859685, 71.434357], [-179.231086, 71.434357]]], "type": "Polygon"}, "full_name": "United States", "contained_within": [], "country_code": "US", "id": "96683cc9126741d1", "name": "United States"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685605870445543424, "text": "$800M lottery jackpot in the US. \ud83e\udd11 https://t.co/khl1CZNC1z", "coordinates": {"coordinates": [-118.4406039, 34.03107017], "type": "Point"}, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 7221, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 38100, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7221/1427384184", "is_translator": false}, {"time_zone": "Quito", "profile_use_background_image": true, "description": "Off-Beat Linux guru and Devops Nerd. Fan of bourbon, glass blowing, hardware hacking, hackerspaces, and moonshine. Open Source is my soul...", "url": "http://t.co/igc3tRJ0HH", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "14459170", "profile_image_url": "http://pbs.twimg.com/profile_images/1852779298/dMCdH_normal.jpg", "friends_count": 329, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ianwilson.org", "url": "http://t.co/igc3tRJ0HH", "expanded_url": "http://ianwilson.org/", "indices": [0, 22]}]}}, "profile_background_color": "131516", "created_at": "Mon Apr 21 06:50:05 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 8834, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1852779298/dMCdH_normal.jpg", "favourites_count": 80, "listed_count": 10, "geo_enabled": true, "follow_request_sent": false, "followers_count": 228, "following": false, "default_profile_image": false, "id": 14459170, "blocked_by": false, "name": "Ian WIlson", "location": "Midwest", "screen_name": "uid0", "profile_background_tile": true, "notifications": false, "utc_offset": -18000, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "America/Los_Angeles", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "641953", "following": false, "friends_count": 345, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ctbfourone.tumblr.com", "url": "https://t.co/CyH7vIb6zb", "expanded_url": "http://ctbfourone.tumblr.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000106779969/fa6f934b0bf864af6d2d91af83a7c7df.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "333355", "geo_enabled": true, "followers_count": 908, "location": "Portland", "screen_name": "ctb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 47, "name": "Chris Brentano", "profile_use_background_image": true, "description": "Network engineer, @simple.", "url": "https://t.co/CyH7vIb6zb", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579870117539889152/9smPEoNX_normal.jpg", "profile_background_color": "411D59", "created_at": "Tue Jan 16 00:34:47 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579870117539889152/9smPEoNX_normal.jpg", "favourites_count": 3767, "status": {"retweet_count": 10, "retweeted_status": {"retweet_count": 10, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685215854473023488", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "gimmethelute.com", "url": "https://t.co/5URNe0xQPk", "expanded_url": "http://www.gimmethelute.com/", "indices": [54, 77]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 21:46:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685215854473023488, "text": "Hi! Need a brand/communications person? Get in touch! https://t.co/5URNe0xQPk", "coordinates": null, "retweeted": false, "favorite_count": 11, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685237534339641344", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "gimmethelute.com", "url": "https://t.co/5URNe0xQPk", "expanded_url": "http://www.gimmethelute.com/", "indices": [72, 95]}], "hashtags": [], "user_mentions": [{"screen_name": "EffingBoring", "id_str": "6613122", "id": 6613122, "indices": [3, 16], "name": "I. Ron Butterfly"}]}, "created_at": "Thu Jan 07 23:12:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685237534339641344, "text": "RT @EffingBoring: Hi! Need a brand/communications person? Get in touch! https://t.co/5URNe0xQPk", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 641953, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000106779969/fa6f934b0bf864af6d2d91af83a7c7df.png", "statuses_count": 8904, "profile_banner_url": "https://pbs.twimg.com/profile_banners/641953/1427086815", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "139871207", "following": false, "friends_count": 509, "entities": {"description": {"urls": [{"display_url": "pronoun.is/he/him", "url": "https://t.co/6bo52FY7b4", "expanded_url": "http://pronoun.is/he/him", "indices": [124, 147]}]}, "url": {"urls": [{"display_url": "joefriedl.net", "url": "https://t.co/YxMmpW1FzG", "expanded_url": "http://joefriedl.net", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/98426108/darksgrey.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 103, "location": "Queens, NY", "screen_name": "joefriedl", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "grampajoe \u02c1\u02d9\u02df\u02d9\u02c0", "profile_use_background_image": true, "description": "I hook computers up to other computers so they do a thing. Sometimes I put computers inside of other computers, it's weird. https://t.co/6bo52FY7b4", "url": "https://t.co/YxMmpW1FzG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/416290524027314176/Lm3CGt_y_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon May 03 22:53:02 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/416290524027314176/Lm3CGt_y_normal.png", "favourites_count": 2843, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685608016872390658", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 460, "resize": "fit"}, "medium": {"w": 600, "h": 813, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1388, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", "type": "photo", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", "display_url": "pic.twitter.com/1x2J9xwUx2", "id_str": "685607983900966914", "expanded_url": "http://twitter.com/OminousZoom/status/685608016872390658/photo/1", "id": 685607983900966914, "url": "https://t.co/1x2J9xwUx2"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:44:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685608016872390658, "text": "*hissing* zooom https://t.co/1x2J9xwUx2", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Ominous Zoom"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685608719627988992", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 460, "resize": "fit"}, "medium": {"w": 600, "h": 813, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1388, "resize": "fit"}}, "source_status_id_str": "685608016872390658", "media_url": "http://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", "source_user_id_str": "3997848915", "id_str": "685607983900966914", "id": 685607983900966914, "media_url_https": "https://pbs.twimg.com/media/CYPE1C-WwAIDi6X.jpg", "type": "photo", "indices": [33, 56], "source_status_id": 685608016872390658, "source_user_id": 3997848915, "display_url": "pic.twitter.com/1x2J9xwUx2", "expanded_url": "http://twitter.com/OminousZoom/status/685608016872390658/photo/1", "url": "https://t.co/1x2J9xwUx2"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "OminousZoom", "id_str": "3997848915", "id": 3997848915, "indices": [3, 15], "name": "Ominous Zoom"}]}, "created_at": "Fri Jan 08 23:47:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685608719627988992, "text": "RT @OminousZoom: *hissing* zooom https://t.co/1x2J9xwUx2", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 139871207, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/98426108/darksgrey.png", "statuses_count": 8509, "profile_banner_url": "https://pbs.twimg.com/profile_banners/139871207/1389745051", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6645822", "following": false, "friends_count": 854, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3330406/future.jpg", "notifications": false, "profile_sidebar_fill_color": "ABABAB", "profile_link_color": "363636", "geo_enabled": true, "followers_count": 245, "location": "", "screen_name": "theshah", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Oh. It's -- oh.", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/527670702313197568/vsg1S1d5_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Thu Jun 07 17:21:53 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "424242", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/527670702313197568/vsg1S1d5_normal.jpeg", "favourites_count": 1141, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "647626954821267457", "id": 647626954821267457, "text": "Wow @doordashBayArea is terrible! First time ordering and after 80 minutes they forgot to send a driver to get my order. Wont use them again", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "doordashBayArea", "id_str": "2741484955", "id": 2741484955, "indices": [4, 20], "name": "DoorDash Bay Area"}]}, "created_at": "Sat Sep 26 04:21:13 +0000 2015", "source": "Mobile Web (M5)", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6645822, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3330406/future.jpg", "statuses_count": 1210, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "687123", "following": false, "friends_count": 398, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rc3.org", "url": "http://t.co/hkwKKv3bud", "expanded_url": "http://rc3.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/561384715/threadlesssolitarydream_653_163260.jpg", "notifications": false, "profile_sidebar_fill_color": "05132C", "profile_link_color": "4A913C", "geo_enabled": false, "followers_count": 1847, "location": "", "screen_name": "rafeco", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 113, "name": "Rafe", "profile_use_background_image": true, "description": "Programmer, writer, curious person. Manager of the @etsy Data Engineering team.", "url": "http://t.co/hkwKKv3bud", "profile_text_color": "004A86", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1539376994/rafe_normal.jpg", "profile_background_color": "0B1933", "created_at": "Tue Jan 23 16:17:35 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "043C6E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1539376994/rafe_normal.jpg", "favourites_count": 660, "status": {"retweet_count": 33, "retweeted_status": {"retweet_count": 33, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684872357425614850", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "etsy.com/careers/job/oC\u2026", "url": "https://t.co/exx7H2tdnF", "expanded_url": "https://www.etsy.com/careers/job/oCHh2fwm", "indices": [94, 117]}], "hashtags": [{"text": "devops", "indices": [133, 140]}], "user_mentions": [{"screen_name": "mrembetsy", "id_str": "20456848", "id": 20456848, "indices": [122, 132], "name": "Michael Rembetsy"}]}, "created_at": "Wed Jan 06 23:01:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684872357425614850, "text": "Hey everyone - we're hiring an engineering manager for Production Operations at Etsy! Dig it: https://t.co/exx7H2tdnF /cc @mrembetsy #devops", "coordinates": null, "retweeted": false, "favorite_count": 21, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685238827812843520", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "etsy.com/careers/job/oC\u2026", "url": "https://t.co/exx7H2tdnF", "expanded_url": "https://www.etsy.com/careers/job/oCHh2fwm", "indices": [107, 130]}], "hashtags": [{"text": "devops", "indices": [139, 140]}], "user_mentions": [{"screen_name": "allspaw", "id_str": "13378422", "id": 13378422, "indices": [3, 11], "name": "John Allspaw"}, {"screen_name": "mrembetsy", "id_str": "20456848", "id": 20456848, "indices": [135, 140], "name": "Michael Rembetsy"}]}, "created_at": "Thu Jan 07 23:17:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685238827812843520, "text": "RT @allspaw: Hey everyone - we're hiring an engineering manager for Production Operations at Etsy! Dig it: https://t.co/exx7H2tdnF /cc @mre\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 687123, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/561384715/threadlesssolitarydream_653_163260.jpg", "statuses_count": 13035, "profile_banner_url": "https://pbs.twimg.com/profile_banners/687123/1379168349", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13124352", "following": false, "friends_count": 736, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000040654748/2abf079c6bc80f94080246a6a2f3b71a.jpeg", "notifications": false, "profile_sidebar_fill_color": "918B8A", "profile_link_color": "500B10", "geo_enabled": true, "followers_count": 471, "location": "Portland, OR", "screen_name": "todd534", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 35, "name": "Todd Johnson", "profile_use_background_image": true, "description": "It\u2019s not all \u201cScala is terrible\u201d; some people are trying to Lead Thoughts\u2122 out here.", "url": null, "profile_text_color": "3A3C34", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551558279311011841/BsYtdAZi_normal.jpeg", "profile_background_color": "121704", "created_at": "Wed Feb 06 00:38:16 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551558279311011841/BsYtdAZi_normal.jpeg", "favourites_count": 7218, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.7900653, 45.421863], [-122.471751, 45.421863], [-122.471751, 45.6509405], [-122.7900653, 45.6509405]]], "type": "Polygon"}, "full_name": "Portland, OR", "contained_within": [], "country_code": "US", "id": "ac88a4f17a51c7fc", "name": "Portland"}, "in_reply_to_screen_name": "jtowle", "in_reply_to_user_id": 17889641, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "17889641", "truncated": false, "id_str": "685564613488803840", "id": 685564613488803840, "text": "@jtowle YOU STAY AWAY FROM OUR HR PEOPLE", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jtowle", "id_str": "17889641", "id": 17889641, "indices": [0, 7], "name": "Jeff Towle"}]}, "created_at": "Fri Jan 08 20:51:55 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13124352, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000040654748/2abf079c6bc80f94080246a6a2f3b71a.jpeg", "statuses_count": 4303, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13124352/1449964144", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14735036", "following": false, "friends_count": 447, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2515596/dad_and_beer_sm.jpg", "notifications": false, "profile_sidebar_fill_color": "BEBEBE", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 116, "location": "Lake County IL USA", "screen_name": "boomer812", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Chris Velkover", "profile_use_background_image": true, "description": "IT guy, mac devotee, erratic golfer, Cubs/Bears/Hawks fan, ILL-INI, Spoon!", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/554368442300518401/iSbywOnT_normal.jpeg", "profile_background_color": "3A3A3A", "created_at": "Sun May 11 16:57:56 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "585858", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/554368442300518401/iSbywOnT_normal.jpeg", "favourites_count": 415, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683450662852648960", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "theintercept.com/2015/12/14/go-\u2026", "url": "https://t.co/e9vekFGdmB", "expanded_url": "https://theintercept.com/2015/12/14/go-see-the-big-short-right-now-and-then-read-this/", "indices": [50, 73]}], "hashtags": [{"text": "TheBigShort", "indices": [15, 27]}], "user_mentions": []}, "created_at": "Sun Jan 03 00:51:50 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683450662852648960, "text": "Really enjoyed #TheBigShort Pay attention people! https://t.co/e9vekFGdmB", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14735036, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2515596/dad_and_beer_sm.jpg", "statuses_count": 953, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14735036/1421007000", "is_translator": false}], "next_cursor": 1488977745323208956, "previous_cursor": -1489123720614746884, "previous_cursor_str": "-1489123720614746884", "next_cursor_str": "1488977745323208956"} \ No newline at end of file diff --git a/testdata/get_friends_3.json b/testdata/get_friends_3.json index 937d6317..8698d94f 100644 --- a/testdata/get_friends_3.json +++ b/testdata/get_friends_3.json @@ -1,25202 +1 @@ -{ - "next_cursor": 1488949918508686286, - "users": [ - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "10531662", - "following": false, - "friends_count": 523, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "limpet.net/mbrubeck/", - "url": "http://t.co/zF0SkYBFhm", - "expanded_url": "http://limpet.net/mbrubeck/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "83B35B", - "geo_enabled": false, - "followers_count": 1119, - "location": "Seattle", - "screen_name": "mbrubeck", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 88, - "name": "Matt Brubeck", - "profile_use_background_image": true, - "description": "Research engineer and mobile developer for Mozilla", - "url": "http://t.co/zF0SkYBFhm", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/610899809046650880/enYhwcmy_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Sat Nov 24 19:23:51 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/610899809046650880/enYhwcmy_normal.jpg", - "favourites_count": 639, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683859814271721473", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 1365, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX2O3mVUEAAK9wf.jpg", - "type": "photo", - "indices": [ - 85, - 108 - ], - "media_url": "http://pbs.twimg.com/media/CX2O3mVUEAAK9wf.jpg", - "display_url": "pic.twitter.com/V1AYZunAw5", - "id_str": "683859804264075264", - "expanded_url": "http://twitter.com/mbrubeck/status/683859814271721473/photo/1", - "id": 683859804264075264, - "url": "https://t.co/V1AYZunAw5" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 03:57:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683859814271721473, - "text": "Mini snowman made from the 1/16 inch of snow that fell at our house in Seattle today https://t.co/V1AYZunAw5", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 10531662, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 1651, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10531662/1431754919", - "is_translator": false - }, - { - "time_zone": "Tijuana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "11113", - "following": false, - "friends_count": 3524, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "buzzfeed.com/tech", - "url": "https://t.co/crMvYMZOqX", - "expanded_url": "http://buzzfeed.com/tech", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22152170/SF.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "40FF00", - "geo_enabled": true, - "followers_count": 72710, - "location": "Frisco", - "screen_name": "mat", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2448, - "name": "mat", - "profile_use_background_image": true, - "description": "BuzzFeed San Francisco bureau chief. Alabama native. Californian.", - "url": "https://t.co/crMvYMZOqX", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669550141502676992/Hc_MKaCj_normal.jpg", - "profile_background_color": "BADFCD", - "created_at": "Mon Oct 30 20:13:36 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F2E195", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669550141502676992/Hc_MKaCj_normal.jpg", - "favourites_count": 42452, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "rrhoover", - "in_reply_to_user_id": 14417215, - "in_reply_to_status_id_str": "685597526301360129", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685598266692534273", - "id": 685598266692534273, - "text": "@rrhoover I rage quit yesterday", - "in_reply_to_user_id_str": "14417215", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rrhoover", - "id_str": "14417215", - "id": 14417215, - "indices": [ - 0, - 9 - ], - "name": "Ryan Hoover" - } - ] - }, - "created_at": "Fri Jan 08 23:05:39 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685597526301360129, - "lang": "en" - }, - "default_profile_image": false, - "id": 11113, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22152170/SF.jpg", - "statuses_count": 53749, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11113/1384888594", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "20478755", - "following": false, - "friends_count": 753, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "supermanscott.com", - "url": "http://t.co/DthEIHnsjX", - "expanded_url": "http://supermanscott.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": false, - "followers_count": 771, - "location": "San Francisco", - "screen_name": "superman_scott", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Scott Reynolds", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/DthEIHnsjX", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/81687932/bay_bridge_normal.jpg", - "profile_background_color": "352726", - "created_at": "Mon Feb 09 23:47:49 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/81687932/bay_bridge_normal.jpg", - "favourites_count": 114, - "status": { - "retweet_count": 92, - "retweeted_status": { - "retweet_count": 92, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683717705069891584", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nyti.ms/1Jmx7rs", - "url": "https://t.co/jKcDKslleY", - "expanded_url": "http://nyti.ms/1Jmx7rs", - "indices": [ - 98, - 121 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 11 - ], - "text": "Terrorists" - }, - { - "indices": [ - 122, - 139 - ], - "text": "IfTheyWereMuslim" - } - ], - "user_mentions": [] - }, - "created_at": "Sun Jan 03 18:32:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683717705069891584, - "text": "#Terrorists M\u0336i\u0336l\u0336i\u0336t\u0336i\u0336a\u0336m\u0336e\u0336n\u0336 Seize O\u0336c\u0336c\u0336u\u0336p\u0336y\u0336 Gov Bldg O\u0336R\u0336 \u0336W\u0336i\u0336l\u0336d\u0336l\u0336i\u0336f\u0336e\u0336 \u0336O\u0336f\u0336f\u0336i\u0336c\u0336e\u0336\nhttps://t.co/jKcDKslleY\n#IfTheyWereMuslim", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 82, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683736071037829120", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nyti.ms/1Jmx7rs", - "url": "https://t.co/jKcDKslleY", - "expanded_url": "http://nyti.ms/1Jmx7rs", - "indices": [ - 118, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 20, - 31 - ], - "text": "Terrorists" - }, - { - "indices": [ - 139, - 140 - ], - "text": "IfTheyWereMuslim" - } - ], - "user_mentions": [ - { - "screen_name": "JesselynRadack", - "id_str": "533297878", - "id": 533297878, - "indices": [ - 3, - 18 - ], - "name": "unR\u0336A\u0336D\u0336A\u0336C\u0336K\u0336ted" - } - ] - }, - "created_at": "Sun Jan 03 19:45:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683736071037829120, - "text": "RT @JesselynRadack: #Terrorists M\u0336i\u0336l\u0336i\u0336t\u0336i\u0336a\u0336m\u0336e\u0336n\u0336 Seize O\u0336c\u0336c\u0336u\u0336p\u0336y\u0336 Gov Bldg O\u0336R\u0336 \u0336W\u0336i\u0336l\u0336d\u0336l\u0336i\u0336f\u0336e\u0336 \u0336O\u0336f\u0336f\u0336i\u0336c\u0336e\u0336\nhttps://t.co/jKcDKsll\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 20478755, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 708, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13130412", - "following": false, - "friends_count": 2677, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/404516060/bellagio2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "105E7A", - "geo_enabled": true, - "followers_count": 5482, - "location": "Cambridge, MA", - "screen_name": "laurelatoreilly", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 558, - "name": "Laurel Ruma", - "profile_use_background_image": false, - "description": "Director of Acquisitions and Talent at O'Reilly Media. Homebrewer, foodie, farmer in the city. Untappd: laurelinboston", - "url": null, - "profile_text_color": "0C3E53", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/507566241687412737/h7tJFHKD_normal.png", - "profile_background_color": "4A913C", - "created_at": "Wed Feb 06 02:20:07 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507566241687412737/h7tJFHKD_normal.png", - "favourites_count": 1015, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "monkchips", - "in_reply_to_user_id": 61233, - "in_reply_to_status_id_str": "685485454137896964", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685485759986536448", - "id": 685485759986536448, - "text": "@monkchips @monkigras Sadly no ;( but we need to catch up!", - "in_reply_to_user_id_str": "61233", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "monkchips", - "id_str": "61233", - "id": 61233, - "indices": [ - 0, - 10 - ], - "name": "Medea Fawning" - }, - { - "screen_name": "monkigras", - "id_str": "408912987", - "id": 408912987, - "indices": [ - 11, - 21 - ], - "name": "Monki Gras 2016" - } - ] - }, - "created_at": "Fri Jan 08 15:38:35 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685485454137896964, - "lang": "en" - }, - "default_profile_image": false, - "id": 13130412, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/404516060/bellagio2.jpg", - "statuses_count": 15581, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13130412/1398351175", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "57203", - "following": false, - "friends_count": 6470, - "entities": { - "description": { - "urls": [ - { - "display_url": "known.kevinmarks.com", - "url": "http://t.co/LD3HetU2DZ", - "expanded_url": "http://known.kevinmarks.com", - "indices": [ - 48, - 70 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kevinmarks.com", - "url": "http://t.co/cjiYwEZLiC", - "expanded_url": "http://kevinmarks.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "007494", - "geo_enabled": true, - "followers_count": 25599, - "location": "San Jose", - "screen_name": "kevinmarks", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1990, - "name": "Kevin Marks", - "profile_use_background_image": false, - "description": "Reading your thoughts. if you write them first. http://t.co/LD3HetU2DZ", - "url": "http://t.co/cjiYwEZLiC", - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553009683087114240/tU5HkXEI_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 11 11:43:36 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553009683087114240/tU5HkXEI_normal.jpeg", - "favourites_count": 2267, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "BenedictEvans", - "in_reply_to_user_id": 1236101, - "in_reply_to_status_id_str": "685593158177001472", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685594842135543808", - "id": 685594842135543808, - "text": "@BenedictEvans did you just invent folders?", - "in_reply_to_user_id_str": "1236101", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BenedictEvans", - "id_str": "1236101", - "id": 1236101, - "indices": [ - 0, - 14 - ], - "name": "Benedict Evans" - } - ] - }, - "created_at": "Fri Jan 08 22:52:02 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685593158177001472, - "lang": "en" - }, - "default_profile_image": false, - "id": 57203, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 90294, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/57203/1358547253", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5243", - "following": false, - "friends_count": 824, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "walkah.net", - "url": "https://t.co/LfuYudmbBl", - "expanded_url": "http://walkah.net/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3709, - "location": "Toronto, Canada", - "screen_name": "walkah", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 367, - "name": "James Walker", - "profile_use_background_image": true, - "description": "serial troublemaker.", - "url": "https://t.co/LfuYudmbBl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659907676965597184/zhlKDN-H_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 04 01:10:16 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659907676965597184/zhlKDN-H_normal.jpg", - "favourites_count": 1936, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0161cbc265857029.json", - "country": "Canada", - "attributes": {}, - "place_type": "neighborhood", - "bounding_box": { - "coordinates": [ - [ - [ - -79.4281185, - 43.65388 - ], - [ - -79.407748, - 43.65388 - ], - [ - -79.407748, - 43.665125 - ], - [ - -79.4281185, - 43.665125 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "CA", - "contained_within": [], - "full_name": "Palmerston-Little Italy, Toronto", - "id": "0161cbc265857029", - "name": "Palmerston-Little Italy" - }, - "in_reply_to_screen_name": "bradpurchase", - "in_reply_to_user_id": 753788227, - "in_reply_to_status_id_str": "685577373828431876", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685577626438639616", - "id": 685577626438639616, - "text": "@bradpurchase lol \u201cdry january\u201d", - "in_reply_to_user_id_str": "753788227", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "bradpurchase", - "id_str": "753788227", - "id": 753788227, - "indices": [ - 0, - 13 - ], - "name": "Brad Howard" - } - ] - }, - "created_at": "Fri Jan 08 21:43:38 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685577373828431876, - "lang": "en" - }, - "default_profile_image": false, - "id": 5243, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6297, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5243/1448757049", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "335478695", - "following": false, - "friends_count": 149, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 5, - "location": "", - "screen_name": "DilettanteDabbl", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "Ivy", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/424535174240829440/1GHc4qVa_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jul 14 19:02:55 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/424535174240829440/1GHc4qVa_normal.jpeg", - "favourites_count": 1, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "517786259972837376", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/quinnnorton/st\u2026", - "url": "https://t.co/A7OddfuitN", - "expanded_url": "https://twitter.com/quinnnorton/status/517781588545794048", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Oct 02 21:20:39 +0000 2014", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 517786259972837376, - "text": "I will have nothing to do with Quinn Norton. Race hatred and anti-Semitism \u2260 \u201cwhite pride.\u201d https://t.co/A7OddfuitN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "517865764834258944", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/quinnnorton/st\u2026", - "url": "https://t.co/A7OddfuitN", - "expanded_url": "https://twitter.com/quinnnorton/status/517781588545794048", - "indices": [ - 104, - 127 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "GlennF", - "id_str": "8315692", - "id": 8315692, - "indices": [ - 3, - 10 - ], - "name": "Glenn Fleishman" - } - ] - }, - "created_at": "Fri Oct 03 02:36:34 +0000 2014", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 517865764834258944, - "text": "RT @GlennF: I will have nothing to do with Quinn Norton. Race hatred and anti-Semitism \u2260 \u201cwhite pride.\u201d https://t.co/A7OddfuitN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Talon (Classic)" - }, - "default_profile_image": false, - "id": 335478695, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/335478695/1408301504", - "is_translator": false - }, - { - "time_zone": "Sydney", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "95345146", - "following": false, - "friends_count": 645, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 429, - "location": "Sydney, Australia", - "screen_name": "imprecise_matt", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "Matt Moor", - "profile_use_background_image": true, - "description": "Nerd on sabbatical, wandering the Canadian wilderness.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1201580935/flickr-icon_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 08 03:47:08 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1201580935/flickr-icon_normal.jpeg", - "favourites_count": 119, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684683613967761408", - "geo": { - "coordinates": [ - -33.89892438, - 151.17303696 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BAMb62hnIM_/", - "url": "https://t.co/d61F6f44cB", - "expanded_url": "https://www.instagram.com/p/BAMb62hnIM_/", - "indices": [ - 95, - 118 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 10:31:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0073b76548e5984f.json", - "country": "Australia", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - 150.520928608, - -34.1183470085 - ], - [ - 151.343020992, - -34.1183470085 - ], - [ - 151.343020992, - -33.578140996 - ], - [ - 150.520928608, - -33.578140996 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "AU", - "contained_within": [], - "full_name": "Sydney, New South Wales", - "id": "0073b76548e5984f", - "name": "Sydney" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684683613967761408, - "text": "Smashing it out of the park. Perfect mid-week meal - relaxed, inspired and just a little fun.\u2026 https://t.co/d61F6f44cB", - "coordinates": { - "coordinates": [ - 151.17303696, - -33.89892438 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 95345146, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2553, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/95345146/1363358539", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6326692", - "following": false, - "friends_count": 723, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mtrichardson.com", - "url": "http://t.co/B6G5M5NsF0", - "expanded_url": "http://mtrichardson.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1784, - "location": "Portland, Oregon", - "screen_name": "mtrichardson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 138, - "name": "Michael Richardson", - "profile_use_background_image": true, - "description": "Cofounder at Urban Airship. Senior Director of Product. My daughter's name is Blair.", - "url": "http://t.co/B6G5M5NsF0", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1268862681/avatar_512_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri May 25 20:56:14 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268862681/avatar_512_normal.jpg", - "favourites_count": 922, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": 587648379, - "possibly_sensitive": false, - "id_str": "684100682249416706", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/snowplowdata/s\u2026", - "url": "https://t.co/JbPmIOBfwt", - "expanded_url": "https://twitter.com/snowplowdata/status/683363168861564928", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SnowPlowData", - "id_str": "587648379", - "id": 587648379, - "indices": [ - 23, - 36 - ], - "name": "Snowplow" - } - ] - }, - "created_at": "Mon Jan 04 19:54:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "587648379", - "place": null, - "in_reply_to_screen_name": "SnowPlowData", - "in_reply_to_status_id_str": "683363168861564928", - "truncated": false, - "id": 684100682249416706, - "text": "This is really great \u2014 @snowplowdata now takes in Urban Airship Connect events. https://t.co/JbPmIOBfwt", - "coordinates": null, - "in_reply_to_status_id": 683363168861564928, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 6326692, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5157, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "47", - "following": false, - "friends_count": 1283, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "laughingmeme.org", - "url": "http://t.co/5T3mp4ceZu", - "expanded_url": "http://laughingmeme.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2346368/flow.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F5D91F", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 10965, - "location": "Brooklyn, NY", - "screen_name": "kellan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 532, - "name": "kellan", - "profile_use_background_image": true, - "description": "Looking for what's next. Previously CTO at Etsy, Flickr Architect. Technical solutions for social problems. #47 (A's dad)", - "url": "http://t.co/5T3mp4ceZu", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/457754650/01457d1a0f0e533062cd0d1033fb4d7a_normal.png", - "profile_background_color": "026BFA", - "created_at": "Fri Mar 24 03:13:02 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/457754650/01457d1a0f0e533062cd0d1033fb4d7a_normal.png", - "favourites_count": 20640, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "coates", - "in_reply_to_user_id": 14249124, - "in_reply_to_status_id_str": "685545686914469888", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685570448344612865", - "id": 685570448344612865, - "text": "@coates i dunno, trained on humans as input, consistency seems a tall order", - "in_reply_to_user_id_str": "14249124", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "coates", - "id_str": "14249124", - "id": 14249124, - "indices": [ - 0, - 7 - ], - "name": "Sean Coates" - } - ] - }, - "created_at": "Fri Jan 08 21:15:06 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685545686914469888, - "lang": "en" - }, - "default_profile_image": false, - "id": 47, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2346368/flow.jpg", - "statuses_count": 15195, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18593319", - "following": false, - "friends_count": 416, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/seanporter", - "url": "http://t.co/3Cme1MntgY", - "expanded_url": "http://about.me/seanporter", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685436014/e756f50b87ce80302edfaebfd8e5a61c.png", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 2090, - "location": "Hoth", - "screen_name": "portertech", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 179, - "name": "Sean Porter", - "profile_use_background_image": true, - "description": "Creator of @sensu. Partner at @heavywater. Open source hacker. Enthusiastic 40K player & hobbyist.", - "url": "http://t.co/3Cme1MntgY", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/608757468701704192/jpmlgzbT_normal.png", - "profile_background_color": "F5F5F5", - "created_at": "Sun Jan 04 02:36:11 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/608757468701704192/jpmlgzbT_normal.png", - "favourites_count": 8141, - "status": { - "retweet_count": 9420, - "retweeted_status": { - "retweet_count": 9420, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685415626945507328", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 614, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 1024, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "type": "photo", - "indices": [ - 27, - 50 - ], - "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "display_url": "pic.twitter.com/4ZnTo0GI7T", - "id_str": "685415615138545664", - "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", - "id": 685415615138545664, - "url": "https://t.co/4ZnTo0GI7T" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 10:59:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685415626945507328, - "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1176, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685567156042383360", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 614, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 1024, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "685415626945507328", - "url": "https://t.co/4ZnTo0GI7T", - "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "source_user_id_str": "2782137901", - "id_str": "685415615138545664", - "id": 685415615138545664, - "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "type": "photo", - "indices": [ - 48, - 71 - ], - "source_status_id": 685415626945507328, - "source_user_id": 2782137901, - "display_url": "pic.twitter.com/4ZnTo0GI7T", - "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "neil_finnweevil", - "id_str": "2782137901", - "id": 2782137901, - "indices": [ - 3, - 19 - ], - "name": "kiki montparnasse" - } - ] - }, - "created_at": "Fri Jan 08 21:02:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685567156042383360, - "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 18593319, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685436014/e756f50b87ce80302edfaebfd8e5a61c.png", - "statuses_count": 14073, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18593319/1441952542", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "87274687", - "following": false, - "friends_count": 1537, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "voodoowarez.com", - "url": "http://t.co/KnZD46iWAt", - "expanded_url": "http://voodoowarez.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": false, - "followers_count": 354, - "location": "", - "screen_name": "rektide", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 49, - "name": "rektide de la fey", - "profile_use_background_image": true, - "description": "just your average dj savior", - "url": "http://t.co/KnZD46iWAt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/534734516/bmstab_normal.png", - "profile_background_color": "709397", - "created_at": "Tue Nov 03 20:28:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534734516/bmstab_normal.png", - "favourites_count": 18785, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685577506548617216", - "id": 685577506548617216, - "text": "I _adore_ that I have a dbus script that can control Spotify locally, which controls the instance on my phone or tv or whatever\n\n$ sp play", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:43:09 +0000 2016", - "source": "TweetDeck", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685605975026356224", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "arrdem", - "id_str": "389468789", - "id": 389468789, - "indices": [ - 3, - 10 - ], - "name": "Reid McKenzie" - } - ] - }, - "created_at": "Fri Jan 08 23:36:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685605975026356224, - "text": "RT @arrdem: I _adore_ that I have a dbus script that can control Spotify locally, which controls the instance on my phone or tv or whatever\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 87274687, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 14509, - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "6727082", - "following": false, - "friends_count": 737, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tehgeekmeister.com", - "url": "https://t.co/11Ovl1Oxia", - "expanded_url": "http://tehgeekmeister.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000119168225/94818b67e1eb45b8750b78966197b2da.png", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "CC3366", - "geo_enabled": true, - "followers_count": 710, - "location": "Brooklyn, NY", - "screen_name": "tehgeekmeister", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 41, - "name": "FEBRUARY ICON", - "profile_use_background_image": false, - "description": "I'm a complicated person. I like code, law, philosophy, and economics. I talk about feelings.", - "url": "https://t.co/11Ovl1Oxia", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674691158954479616/atpe60CZ_normal.png", - "profile_background_color": "DBE9ED", - "created_at": "Mon Jun 11 02:13:24 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674691158954479616/atpe60CZ_normal.png", - "favourites_count": 7370, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "flippernaut", - "in_reply_to_user_id": 1061154589, - "in_reply_to_status_id_str": "685561003409461248", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685564168381050881", - "id": 685564168381050881, - "text": "@flippernaut \ud83d\udc96\ud83d\udc96\ud83d\udc96 I believe in you friend.", - "in_reply_to_user_id_str": "1061154589", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "flippernaut", - "id_str": "1061154589", - "id": 1061154589, - "indices": [ - 0, - 12 - ], - "name": "flippernaut" - } - ] - }, - "created_at": "Fri Jan 08 20:50:09 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685561003409461248, - "lang": "en" - }, - "default_profile_image": false, - "id": 6727082, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000119168225/94818b67e1eb45b8750b78966197b2da.png", - "statuses_count": 35034, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6727082/1356319039", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "9605192", - "following": false, - "friends_count": 1307, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dmpayton.com", - "url": "http://t.co/9iNkzlUKOI", - "expanded_url": "http://dmpayton.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "006699", - "geo_enabled": true, - "followers_count": 573, - "location": "Fresno, CA", - "screen_name": "dmpayton", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Derek Payton", - "profile_use_background_image": false, - "description": "I write code (usually in Python) and build web apps (usually with Django). @EditLLC, @FresnoHackNight, @FresnoPython, @FresnoCannabis, Motorcycles.", - "url": "http://t.co/9iNkzlUKOI", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/606706950890340352/657SPXsr_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 22 20:06:24 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/606706950890340352/657SPXsr_normal.jpg", - "favourites_count": 359, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685372588604788736", - "id": 685372588604788736, - "text": "Just learned the difference between [0-9] and \\d in regexes, and also that I've been doing it wrong in Django URLs. [0-9] is the way to go.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 08:08:53 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 9605192, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3796, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9605192/1443137594", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14100497", - "following": false, - "friends_count": 771, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jessenoller.com", - "url": "https://t.co/Hp1YGsizy9", - "expanded_url": "http://www.jessenoller.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "060C0F", - "geo_enabled": true, - "followers_count": 5733, - "location": "San Antonio, TX", - "screen_name": "jessenoller", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 467, - "name": "Jesse Noller", - "profile_use_background_image": true, - "description": "Director, Product Engineering /Developer Experience, Rackspace. The statements and opinions expressed here are my own, and not those of my employer.", - "url": "https://t.co/Hp1YGsizy9", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/538919770897125376/J1uagJeO_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Sat Mar 08 15:03:27 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/538919770897125376/J1uagJeO_normal.jpeg", - "favourites_count": 3915, - "status": { - "retweet_count": 3971, - "retweeted_status": { - "retweet_count": 3971, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685232104712585216", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 528, - "h": 960, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 618, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 528, - "h": 960, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", - "type": "photo", - "indices": [ - 65, - 88 - ], - "media_url": "http://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", - "display_url": "pic.twitter.com/MAxWB290GQ", - "id_str": "685232099226333184", - "expanded_url": "http://twitter.com/_DaisyRidley_/status/685232104712585216/photo/1", - "id": 685232099226333184, - "url": "https://t.co/MAxWB290GQ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 22:50:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685232104712585216, - "text": "\"Grandpa, that girl beat me up and took the lightsaber I wanted\" https://t.co/MAxWB290GQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5627, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685591850997043200", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 528, - "h": 960, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 618, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 528, - "h": 960, - "resize": "fit" - } - }, - "source_status_id_str": "685232104712585216", - "url": "https://t.co/MAxWB290GQ", - "media_url": "http://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", - "source_user_id_str": "3228495293", - "id_str": "685232099226333184", - "id": 685232099226333184, - "media_url_https": "https://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", - "type": "photo", - "indices": [ - 84, - 107 - ], - "source_status_id": 685232104712585216, - "source_user_id": 3228495293, - "display_url": "pic.twitter.com/MAxWB290GQ", - "expanded_url": "http://twitter.com/_DaisyRidley_/status/685232104712585216/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "_DaisyRidley_", - "id_str": "3228495293", - "id": 3228495293, - "indices": [ - 3, - 17 - ], - "name": "Daisy Ridley\u2744" - } - ] - }, - "created_at": "Fri Jan 08 22:40:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685591850997043200, - "text": "RT @_DaisyRidley_: \"Grandpa, that girl beat me up and took the lightsaber I wanted\" https://t.co/MAxWB290GQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14100497, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 54004, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14100497/1400509070", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "4412471", - "following": false, - "friends_count": 671, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "orvtech.com", - "url": "https://t.co/8Uy02IWCJy", - "expanded_url": "http://orvtech.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "55ACEE", - "geo_enabled": true, - "followers_count": 8237, - "location": "Interwebs", - "screen_name": "orvtech", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 143, - "name": "Oliver", - "profile_use_background_image": false, - "description": "Opinions are my own & do not represent my employer's view or any organization I am part of.", - "url": "https://t.co/8Uy02IWCJy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/679790242610556928/5ow1h5_v_normal.jpg", - "profile_background_color": "3B87C3", - "created_at": "Thu Apr 12 21:35:06 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/679790242610556928/5ow1h5_v_normal.jpg", - "favourites_count": 27552, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685544493106372608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/ceL6w0oCaj", - "url": "https://t.co/ceL6w0oCaj", - "expanded_url": "http://twitter.com/orvtech/status/685544493106372608/photo/1", - "indices": [ - 31, - 54 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "KyloR3n", - "id_str": "4625687418", - "id": 4625687418, - "indices": [ - 22, - 30 - ], - "name": "Emo Kylo Ren" - } - ] - }, - "created_at": "Fri Jan 08 19:31:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685544493106372608, - "text": "A bit more disneysee @KyloR3n https://t.co/ceL6w0oCaj", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 4412471, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 31858, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4412471/1433292877", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "39851654", - "following": false, - "friends_count": 794, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "getoutfitted.com", - "url": "http://t.co/YMPGEhW8Mn", - "expanded_url": "http://www.getoutfitted.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 659, - "location": "Colorado Springs / Boulder", - "screen_name": "spencernorman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Spencer Norman", - "profile_use_background_image": true, - "description": "Software Engineering @GetOutfitted.", - "url": "http://t.co/YMPGEhW8Mn", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/450022947864842240/P9bqZfQs_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Wed May 13 22:13:21 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/450022947864842240/P9bqZfQs_normal.jpeg", - "favourites_count": 2622, - "status": { - "retweet_count": 16, - "retweeted_status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684940742234619904", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 738, - "h": 1024, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 832, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 471, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", - "type": "photo", - "indices": [ - 14, - 37 - ], - "media_url": "http://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", - "display_url": "pic.twitter.com/8YgqN4dy0z", - "id_str": "684940737985777664", - "expanded_url": "http://twitter.com/devinbanerjee/status/684940742234619904/photo/1", - "id": 684940737985777664, - "url": "https://t.co/8YgqN4dy0z" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 7, - 13 - ], - "text": "China" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 03:32:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684940742234619904, - "text": "Wow in #China https://t.co/8YgqN4dy0z", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685329870973308928", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 738, - "h": 1024, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 832, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 471, - "resize": "fit" - } - }, - "source_status_id_str": "684940742234619904", - "url": "https://t.co/8YgqN4dy0z", - "media_url": "http://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", - "source_user_id_str": "46165612", - "id_str": "684940737985777664", - "id": 684940737985777664, - "media_url_https": "https://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", - "type": "photo", - "indices": [ - 33, - 56 - ], - "source_status_id": 684940742234619904, - "source_user_id": 46165612, - "display_url": "pic.twitter.com/8YgqN4dy0z", - "expanded_url": "http://twitter.com/devinbanerjee/status/684940742234619904/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 26, - 32 - ], - "text": "China" - } - ], - "user_mentions": [ - { - "screen_name": "devinbanerjee", - "id_str": "46165612", - "id": 46165612, - "indices": [ - 3, - 17 - ], - "name": "Devin Banerjee" - } - ] - }, - "created_at": "Fri Jan 08 05:19:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685329870973308928, - "text": "RT @devinbanerjee: Wow in #China https://t.co/8YgqN4dy0z", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 39851654, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 1707, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "55090980", - "following": false, - "friends_count": 224, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nathanbowser.com", - "url": "http://t.co/qGUXQj4YRN", - "expanded_url": "http://nathanbowser.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 159, - "location": "Philadelphia, PA", - "screen_name": "nathanbowser", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Nathan Bowser", - "profile_use_background_image": true, - "description": "JavaScript and tacos.", - "url": "http://t.co/qGUXQj4YRN", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000637876269/63d287afc301ffdeaab69e57dda7fbb1_normal.jpeg", - "profile_background_color": "352726", - "created_at": "Thu Jul 09 01:00:34 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000637876269/63d287afc301ffdeaab69e57dda7fbb1_normal.jpeg", - "favourites_count": 128, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "scttor", - "in_reply_to_user_id": 1030894430, - "in_reply_to_status_id_str": "672926644517122049", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "672931830602080256", - "id": 672931830602080256, - "text": "@scttor I'd call dibs on that ear.", - "in_reply_to_user_id_str": "1030894430", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "scttor", - "id_str": "1030894430", - "id": 1030894430, - "indices": [ - 0, - 7 - ], - "name": "Scott O'Reilly" - } - ] - }, - "created_at": "Sat Dec 05 00:13:45 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 672926644517122049, - "lang": "en" - }, - "default_profile_image": false, - "id": 55090980, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 1047, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "249150277", - "following": false, - "friends_count": 471, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pinboard.in/u:mcelaney", - "url": "http://t.co/yg55zJXrC1", - "expanded_url": "http://pinboard.in/u:mcelaney", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 691, - "location": "Philadelphia PA", - "screen_name": "McElaney", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "Brian E. McElaney", - "profile_use_background_image": true, - "description": "Philly-based Ruby developer, pitmaster, homebrewer, and benevolent skeptic.", - "url": "http://t.co/yg55zJXrC1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/610797829569818624/8kkUJvjv_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 08 13:40:07 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/610797829569818624/8kkUJvjv_normal.jpg", - "favourites_count": 1179, - "status": { - "retweet_count": 29, - "retweeted_status": { - "retweet_count": 29, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684717652435152898", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 480, - "h": 480, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 480, - "h": 480, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", - "type": "photo", - "indices": [ - 88, - 111 - ], - "media_url": "http://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", - "display_url": "pic.twitter.com/TxPt3WcFGm", - "id_str": "684717652300926978", - "expanded_url": "http://twitter.com/JimFKenney/status/684717652435152898/photo/1", - "id": 684717652300926978, - "url": "https://t.co/TxPt3WcFGm" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 12:46:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684717652435152898, - "text": "Needless to say, Mr. Douglas was a very smart man. Let's try finally to get this right. https://t.co/TxPt3WcFGm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 57, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685517687376707584", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 480, - "h": 480, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 480, - "h": 480, - "resize": "fit" - } - }, - "source_status_id_str": "684717652435152898", - "url": "https://t.co/TxPt3WcFGm", - "media_url": "http://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", - "source_user_id_str": "376874694", - "id_str": "684717652300926978", - "id": 684717652300926978, - "media_url_https": "https://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", - "type": "photo", - "indices": [ - 104, - 127 - ], - "source_status_id": 684717652435152898, - "source_user_id": 376874694, - "display_url": "pic.twitter.com/TxPt3WcFGm", - "expanded_url": "http://twitter.com/JimFKenney/status/684717652435152898/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JimFKenney", - "id_str": "376874694", - "id": 376874694, - "indices": [ - 3, - 14 - ], - "name": "Jim Kenney" - } - ] - }, - "created_at": "Fri Jan 08 17:45:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685517687376707584, - "text": "RT @JimFKenney: Needless to say, Mr. Douglas was a very smart man. Let's try finally to get this right. https://t.co/TxPt3WcFGm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 249150277, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 11364, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/249150277/1406138248", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "68474641", - "following": false, - "friends_count": 2024, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/lucperkins", - "url": "https://t.co/Lz8bR8DQDW", - "expanded_url": "https://github.com/lucperkins", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/665893188/0e8e5eddffa1acfdf680e461f23b4d08.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1203, - "location": "Portland, OR", - "screen_name": "lucperkins", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 74, - "name": "Luc Perkins", - "profile_use_background_image": true, - "description": "Technical writer @Twitter. Feminist, basic income advocate, SJW, political philosophy PhD. Ex @basho @janrain @appfog @Reed_College_ @DukeU. Deutschsprecher.", - "url": "https://t.co/Lz8bR8DQDW", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/618824444501360640/uQJv3b6q_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Mon Aug 24 18:27:00 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/618824444501360640/uQJv3b6q_normal.jpg", - "favourites_count": 801, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "lucperkins", - "in_reply_to_user_id": 68474641, - "in_reply_to_status_id_str": "685487863220158464", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685488531540590592", - "id": 685488531540590592, - "text": "@brianloveswords In all seriousness, tho, I non-ironically love that song", - "in_reply_to_user_id_str": "68474641", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "brianloveswords", - "id_str": "17177251", - "id": 17177251, - "indices": [ - 0, - 16 - ], - "name": "spacer.tiff" - } - ] - }, - "created_at": "Fri Jan 08 15:49:36 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685487863220158464, - "lang": "en" - }, - "default_profile_image": false, - "id": 68474641, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/665893188/0e8e5eddffa1acfdf680e461f23b4d08.jpeg", - "statuses_count": 10254, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/68474641/1431496573", - "is_translator": false - }, - { - "time_zone": "New Delhi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "14918557", - "following": false, - "friends_count": 670, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "stackoverflow.com/users/66945/ri\u2026", - "url": "https://t.co/4gPwhcfhtk", - "expanded_url": "http://stackoverflow.com/users/66945/rishav-rastogi", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 706, - "location": "San Jose, CA", - "screen_name": "rishavrastogi", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "Rishav Rastogi", - "profile_use_background_image": false, - "description": "Software Developer. Startup guy.", - "url": "https://t.co/4gPwhcfhtk", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/565590382205890560/LJVHh05U_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue May 27 08:44:18 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/565590382205890560/LJVHh05U_normal.jpeg", - "favourites_count": 439, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685584158291173376", - "id": 685584158291173376, - "text": "Just a test. Can you see this poll?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:09:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14918557, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 7008, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14918557/1423682170", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "170793777", - "following": false, - "friends_count": 524, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "logikal.is", - "url": "http://t.co/5LKgsNQZbU", - "expanded_url": "http://logikal.is", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/823703100/15e689e9865ec4b38a96b19c5312db85.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "D19A02", - "geo_enabled": true, - "followers_count": 263, - "location": "trapped in a server", - "screen_name": "log1kal", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Sean Kilgore", - "profile_use_background_image": true, - "description": "automation automaton. opsing all the things.", - "url": "http://t.co/5LKgsNQZbU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3730798340/2c44dc296c86edad7253fcf84532a525_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Sun Jul 25 19:54:54 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3730798340/2c44dc296c86edad7253fcf84532a525_normal.jpeg", - "favourites_count": 676, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "obfuscurity", - "in_reply_to_user_id": 66432490, - "in_reply_to_status_id_str": "677204834156724225", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677204910794936320", - "id": 677204910794936320, - "text": "@obfuscurity how can I aquire one of these?!", - "in_reply_to_user_id_str": "66432490", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "obfuscurity", - "id_str": "66432490", - "id": 66432490, - "indices": [ - 0, - 12 - ], - "name": "even tho it ass" - } - ] - }, - "created_at": "Wed Dec 16 19:13:27 +0000 2015", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 677204834156724225, - "lang": "en" - }, - "default_profile_image": false, - "id": 170793777, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/823703100/15e689e9865ec4b38a96b19c5312db85.jpeg", - "statuses_count": 2172, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/170793777/1376898775", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17697991", - "following": false, - "friends_count": 186, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1351, - "location": "California", - "screen_name": "pradeep24", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 91, - "name": "Pradeep Elankumaran", - "profile_use_background_image": false, - "description": "Emerging products & growth at Yahoo. Formerly growth at Lyft, co-founder & ceo of Kicksend", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000727552294/a4b4c3b199c28f19159073dd75a921a8_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Nov 28 03:41:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000727552294/a4b4c3b199c28f19159073dd75a921a8_normal.jpeg", - "favourites_count": 2318, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684150428771192832", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ridechar.io/p6x31", - "url": "https://t.co/WoGBa0ahEm", - "expanded_url": "http://ridechar.io/p6x31", - "indices": [ - 22, - 45 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 23:12:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "et", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684150428771192832, - "text": "MV -> SOMA shuttle https://t.co/WoGBa0ahEm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 17697991, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 9325, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17697991/1422888784", - "is_translator": false - }, - { - "time_zone": "Brisbane", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 36000, - "id_str": "180539215", - "following": false, - "friends_count": 45, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000004768931/039605008ade649e7e3ef9e2c035e56d.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 396, - "location": "", - "screen_name": "nerd___rage", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Swathe", - "profile_use_background_image": true, - "description": "Psychopath. Chelsea F.C.", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682124739171627009/KUgdNpei_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Aug 19 21:57:38 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682124739171627009/KUgdNpei_normal.jpg", - "favourites_count": 270, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685396731538767872", - "id": 685396731538767872, - "text": "3-0 at half time lmao what the fuck Victory the Mariners are smashing you cunts", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 09:44:49 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 180539215, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000004768931/039605008ade649e7e3ef9e2c035e56d.jpeg", - "statuses_count": 13450, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/180539215/1450678253", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "9580822", - "following": false, - "friends_count": 130, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "omniti.com", - "url": "https://t.co/A0Gq4WHzr9", - "expanded_url": "http://omniti.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/284711510/spiral-small.jpg", - "notifications": false, - "profile_sidebar_fill_color": "3B3A3B", - "profile_link_color": "F08A5B", - "geo_enabled": true, - "followers_count": 4384, - "location": "", - "screen_name": "postwait", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 313, - "name": "Theo Schlossnagle", - "profile_use_background_image": true, - "description": "On sabbatical seeing Earth and it's peoples.\nFounder at Circonus, Message Systems, Fontdeck, OmniTI.\nDad.", - "url": "https://t.co/A0Gq4WHzr9", - "profile_text_color": "E6E6E6", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/455795509651722240/rGKrlwZF_normal.jpeg", - "profile_background_color": "F2EEEF", - "created_at": "Sun Oct 21 15:32:43 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "808080", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/455795509651722240/rGKrlwZF_normal.jpeg", - "favourites_count": 392, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0101d60e7d6aa007.json", - "country": "Vi\u1ec7t Nam", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - 106.331083, - 10.8634421 - ], - [ - 106.966712, - 10.8634421 - ], - [ - 106.966712, - 11.499635 - ], - [ - 106.331083, - 11.499635 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "VN", - "contained_within": [], - "full_name": "B\u00ecnh D\u01b0\u01a1ng, Vietnam", - "id": "0101d60e7d6aa007", - "name": "B\u00ecnh D\u01b0\u01a1ng" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685330458746331136", - "id": 685330458746331136, - "text": "OH \"I wasn't brainwashed by propaganda b/c I have anti-brainwashing in my mind and heart... The Bible.\" Sometimes #irony can be deafening.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 114, - 120 - ], - "text": "irony" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 05:21:28 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 9580822, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/284711510/spiral-small.jpg", - "statuses_count": 8974, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9580822/1399549729", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15943764", - "following": false, - "friends_count": 262, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "castro.io", - "url": "https://t.co/IdQQKcCe7g", - "expanded_url": "https://castro.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 562, - "location": "Philadelphia, PA", - "screen_name": "hectcastro", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Hector Castro", - "profile_use_background_image": true, - "description": "Sometimes I'm good at analogies. Operations Engineer at @azavea. I also once hustled for @basho.", - "url": "https://t.co/IdQQKcCe7g", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/496839851887427587/7VfJpRgT_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri Aug 22 11:43:54 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/496839851887427587/7VfJpRgT_normal.jpeg", - "favourites_count": 1336, - "status": { - "retweet_count": 67, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "TMobileHelp", - "in_reply_to_user_id": 185728888, - "in_reply_to_status_id_str": "685219557879975936", - "retweet_count": 67, - "truncated": false, - "retweeted": false, - "id_str": "685220010499817472", - "id": 685220010499817472, - "text": "@TMobileHelp Okay, will do. @JohnLegere -- if you call 1 (877) 453-1304 -- someone will talk you through looking up EFF on Wikipedia and CN", - "in_reply_to_user_id_str": "185728888", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TMobileHelp", - "id_str": "185728888", - "id": 185728888, - "indices": [ - 0, - 12 - ], - "name": "T-Mobile USA" - }, - { - "screen_name": "JohnLegere", - "id_str": "1394399438", - "id": 1394399438, - "indices": [ - 28, - 39 - ], - "name": "John Legere" - } - ] - }, - "created_at": "Thu Jan 07 22:02:35 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 182, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685219557879975936, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685236026965671938", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mattl", - "id_str": "661723", - "id": 661723, - "indices": [ - 3, - 9 - ], - "name": "mattl" - }, - { - "screen_name": "TMobileHelp", - "id_str": "185728888", - "id": 185728888, - "indices": [ - 11, - 23 - ], - "name": "T-Mobile USA" - }, - { - "screen_name": "JohnLegere", - "id_str": "1394399438", - "id": 1394399438, - "indices": [ - 39, - 50 - ], - "name": "John Legere" - } - ] - }, - "created_at": "Thu Jan 07 23:06:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685236026965671938, - "text": "RT @mattl: @TMobileHelp Okay, will do. @JohnLegere -- if you call 1 (877) 453-1304 -- someone will talk you through looking up EFF on Wikip\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 15943764, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 8897, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15943764/1357190546", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "28828401", - "following": false, - "friends_count": 425, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tsantero.com", - "url": "https://t.co/rtMPFzpYez", - "expanded_url": "http://tsantero.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1687, - "location": "Fort Collins, CO", - "screen_name": "tsantero", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 75, - "name": "Tom Santero", - "profile_use_background_image": false, - "description": "Philosophy Scientist, Engineer, Lover.", - "url": "https://t.co/rtMPFzpYez", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667737106203078656/CL1aQe40_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Apr 04 17:03:47 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667737106203078656/CL1aQe40_normal.jpg", - "favourites_count": 21290, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/b2e4e65d7b80d2c1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -105.148074, - 40.47168 - ], - [ - -104.979811, - 40.47168 - ], - [ - -104.979811, - 40.656701 - ], - [ - -105.148074, - 40.656701 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Fort Collins, CO", - "id": "b2e4e65d7b80d2c1", - "name": "Fort Collins" - }, - "in_reply_to_screen_name": "andrew_j_stone", - "in_reply_to_user_id": 318079932, - "in_reply_to_status_id_str": "685573885928984576", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685574403682254848", - "id": 685574403682254848, - "text": "@andrew_j_stone nah, because Wood drastically underestimates the the impact of social distinctions on catnip, especially inherited catnip", - "in_reply_to_user_id_str": "318079932", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "andrew_j_stone", - "id_str": "318079932", - "id": 318079932, - "indices": [ - 0, - 15 - ], - "name": "Ass Warfare" - } - ] - }, - "created_at": "Fri Jan 08 21:30:49 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685573885928984576, - "lang": "en" - }, - "default_profile_image": false, - "id": 28828401, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 28305, - "is_translator": false - }, - { - "time_zone": "Indiana (East)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "158098153", - "following": false, - "friends_count": 383, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 271, - "location": "Albany NY", - "screen_name": "GavinInNY", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "gavin", - "profile_use_background_image": true, - "description": "Chief Architect at CommerceHub. JVM enthusiast, Dad (headshot: @scottduclos)", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/485093069818437634/qiTdZW49_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jun 21 19:40:09 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/485093069818437634/qiTdZW49_normal.jpeg", - "favourites_count": 2432, - "status": { - "retweet_count": 5, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 5, - "truncated": false, - "retweeted": false, - "id_str": "685287144823324673", - "id": 685287144823324673, - "text": "Outstanding! We gain 2 minutes of daylight tomorrow. Sun rises a minute earlier, sets a minute later. #BabySteps #thatswhatimtalkinabout", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 105, - 115 - ], - "text": "BabySteps" - }, - { - "indices": [ - 116, - 139 - ], - "text": "thatswhatimtalkinabout" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:29:22 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 6, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685296133267128320", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 124, - 134 - ], - "text": "BabySteps" - }, - { - "indices": [ - 135, - 140 - ], - "text": "thatswhatimtalkinabout" - } - ], - "user_mentions": [ - { - "screen_name": "Jason_Weather", - "id_str": "28174351", - "id": 28174351, - "indices": [ - 3, - 17 - ], - "name": "Jason Gough" - } - ] - }, - "created_at": "Fri Jan 08 03:05:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685296133267128320, - "text": "RT @Jason_Weather: Outstanding! We gain 2 minutes of daylight tomorrow. Sun rises a minute earlier, sets a minute later. #BabySteps #tha\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 158098153, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6805, - "is_translator": false - }, - { - "time_zone": "Chennai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "19160166", - "following": false, - "friends_count": 1844, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nigelb.me", - "url": "http://t.co/RLGfC4EpR8", - "expanded_url": "http://nigelb.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": false, - "followers_count": 2054, - "location": "Delhi / IRC", - "screen_name": "nigelbabu", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 166, - "name": "nigelb", - "profile_use_background_image": true, - "description": "Consulting Web Developer and sysadmin. Professional yak shaver. Loves running and climbing.", - "url": "http://t.co/RLGfC4EpR8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/616830722779779072/xVDF7YgV_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Sun Jan 18 22:18:01 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/616830722779779072/xVDF7YgV_normal.jpg", - "favourites_count": 20812, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "atti_cus", - "in_reply_to_user_id": 242873592, - "in_reply_to_status_id_str": "685460996580720640", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685461280291860480", - "id": 685461280291860480, - "text": "@atti_cus Lol.", - "in_reply_to_user_id_str": "242873592", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "atti_cus", - "id_str": "242873592", - "id": 242873592, - "indices": [ - 0, - 9 - ], - "name": "Dushyant Arora" - } - ] - }, - "created_at": "Fri Jan 08 14:01:19 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685460996580720640, - "lang": "und" - }, - "default_profile_image": false, - "id": 19160166, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 59823, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19160166/1447393938", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13857342", - "following": false, - "friends_count": 702, - "entities": { - "description": { - "urls": [ - { - "display_url": "keybase.io/freebsdgirl", - "url": "https://t.co/okBqI4N0Pg", - "expanded_url": "http://keybase.io/freebsdgirl", - "indices": [ - 69, - 92 - ] - }, - { - "display_url": "patreon.com/freebsdgirl", - "url": "https://t.co/zadlXVRLW5", - "expanded_url": "http://patreon.com/freebsdgirl", - "indices": [ - 93, - 116 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "blog.randi.io", - "url": "https://t.co/OWOqcXQCyx", - "expanded_url": "http://blog.randi.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 18448, - "location": "Portland, OR", - "screen_name": "randileeharper", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 818, - "name": "Randi Lee Harper", - "profile_use_background_image": true, - "description": "Author, @ggautoblocker. Founder, Online Abuse Prevention Initiative. https://t.co/okBqI4N0Pg https://t.co/zadlXVRLW5 randi@onlineabuseprevention.org", - "url": "https://t.co/OWOqcXQCyx", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685350328884015106/N5-h9tIu_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sat Feb 23 07:27:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685350328884015106/N5-h9tIu_normal.jpg", - "favourites_count": 42468, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.7900653, - 45.421863 - ], - [ - -122.471751, - 45.421863 - ], - [ - -122.471751, - 45.6509405 - ], - [ - -122.7900653, - 45.6509405 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Portland, OR", - "id": "ac88a4f17a51c7fc", - "name": "Portland" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685607385524654080", - "id": 685607385524654080, - "text": "Is it weird that I'm relieved that I'm feeling sad? Like I didn't know if I was capable of feeling that way anymore.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:41:53 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 8, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 13857342, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 89188, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13857342/1418112584", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14317497", - "following": false, - "friends_count": 1504, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/justinsheehy", - "url": "https://t.co/t7mUz5MyD1", - "expanded_url": "http://about.me/justinsheehy", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 4147, - "location": "", - "screen_name": "justinsheehy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 234, - "name": "Justin Sheehy", - "profile_use_background_image": true, - "description": "", - "url": "https://t.co/t7mUz5MyD1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/416962456997470208/WqPwCIXj_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Sun Apr 06 20:15:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/416962456997470208/WqPwCIXj_normal.jpeg", - "favourites_count": 135, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "threadwaste", - "in_reply_to_user_id": 24881503, - "in_reply_to_status_id_str": "685487207877095428", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685488454415826944", - "id": 685488454415826944, - "text": "@threadwaste That one is Winnimere, from Cellars at Jasper Hill. Raw milk, rind washed in Hill Farmstead beer, wrapped in spruce.", - "in_reply_to_user_id_str": "24881503", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "threadwaste", - "id_str": "24881503", - "id": 24881503, - "indices": [ - 0, - 12 - ], - "name": "Anthony M." - } - ] - }, - "created_at": "Fri Jan 08 15:49:17 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685487207877095428, - "lang": "en" - }, - "default_profile_image": false, - "id": 14317497, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 8063, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "710133", - "following": false, - "friends_count": 460, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "davekonopka.com", - "url": "http://t.co/Fxmr2QSUlM", - "expanded_url": "http://davekonopka.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000087740435/48c888b21a8d6161239296e9c00140ba.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "D67200", - "geo_enabled": false, - "followers_count": 737, - "location": "Glenside, PA", - "screen_name": "davekonopka", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 54, - "name": "Dave Konopka", - "profile_use_background_image": true, - "description": "I like rain. I like ham. I like you.\n\nOps engineer. Philly DevOps meetup co-organizer.", - "url": "http://t.co/Fxmr2QSUlM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000477832092/7ce845a98db20fbd4f5f22f266b447ea_normal.jpeg", - "profile_background_color": "FFE2B0", - "created_at": "Fri Jan 26 18:43:11 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000477832092/7ce845a98db20fbd4f5f22f266b447ea_normal.jpeg", - "favourites_count": 1566, - "status": { - "retweet_count": 55, - "retweeted_status": { - "retweet_count": 55, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684840868587540480", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "kottke.org/16/01/two-satu\u2026", - "url": "https://t.co/ilvZDE5ihs", - "expanded_url": "http://kottke.org/16/01/two-saturnian-moons-lined-up", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 20:56:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684840868587540480, - "text": "The Cassini spacecraft took a photo of two moons of Saturn, beautifully aligned https://t.co/ilvZDE5ihs", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 74, - "contributors": null, - "source": "kottke tweeter" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685261072245387268", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "kottke.org/16/01/two-satu\u2026", - "url": "https://t.co/ilvZDE5ihs", - "expanded_url": "http://kottke.org/16/01/two-saturnian-moons-lined-up", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kottke", - "id_str": "14120215", - "id": 14120215, - "indices": [ - 3, - 10 - ], - "name": "kottke.org" - } - ] - }, - "created_at": "Fri Jan 08 00:45:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685261072245387268, - "text": "RT @kottke: The Cassini spacecraft took a photo of two moons of Saturn, beautifully aligned https://t.co/ilvZDE5ihs", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 710133, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000087740435/48c888b21a8d6161239296e9c00140ba.png", - "statuses_count": 10061, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/710133/1398839750", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8412", - "following": false, - "friends_count": 603, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dangerouslyawesome.com/podcast/", - "url": "https://t.co/dEmictB8xr", - "expanded_url": "http://dangerouslyawesome.com/podcast/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4272/banner_pattern.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFF000", - "profile_link_color": "3F3F3F", - "geo_enabled": true, - "followers_count": 10092, - "location": "Philadelphia, PA", - "screen_name": "alexhillman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 768, - "name": "Alex Hillman", - "profile_use_background_image": true, - "description": "\u2764\ufe0f @hocksncoqs.\n\nI like to share what I've learned building @indyhall to help people build better businesses and community. #Coworking is my jam.", - "url": "https://t.co/dEmictB8xr", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674017499118178306/igxZQIno_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Oct 11 11:19:35 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674017499118178306/igxZQIno_normal.jpg", - "favourites_count": 18389, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685589323329204224", - "id": 685589323329204224, - "text": "Success = being the boss you need to be so you can be your own boss. Think about it.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:30:06 +0000 2016", - "source": "Meet Edgar", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 8412, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4272/banner_pattern.gif", - "statuses_count": 58699, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8412/1449533206", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "44689224", - "following": false, - "friends_count": 1307, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 506, - "location": "Philadelphia", - "screen_name": "KevinClough", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Kevin Clough", - "profile_use_background_image": true, - "description": "Full stack developer with a passion for mobile, activism and civic hacking.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2655424631/0fbfa93596945de52e228ccfad2a4b34_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 04 18:59:00 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2655424631/0fbfa93596945de52e228ccfad2a4b34_normal.jpeg", - "favourites_count": 873, - "status": { - "retweet_count": 72409, - "retweeted_status": { - "retweet_count": 72409, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684020629897621508", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "vine.co/v/ibFH7bQVaHK", - "url": "https://t.co/fmoRaxTAlV", - "expanded_url": "https://vine.co/v/ibFH7bQVaHK", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 14:36:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684020629897621508, - "text": "Watching a raccoon accidentally dissolve his candyfloss in a puddle has really put my troubles in perspective. https://t.co/fmoRaxTAlV", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 76542, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684248130230087680", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "vine.co/v/ibFH7bQVaHK", - "url": "https://t.co/fmoRaxTAlV", - "expanded_url": "https://vine.co/v/ibFH7bQVaHK", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RyanJohnNelson", - "id_str": "284183389", - "id": 284183389, - "indices": [ - 3, - 18 - ], - "name": "Ryan Nelson" - } - ] - }, - "created_at": "Tue Jan 05 05:40:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684248130230087680, - "text": "RT @RyanJohnNelson: Watching a raccoon accidentally dissolve his candyfloss in a puddle has really put my troubles in perspective. https://\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 44689224, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1683, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "16738744", - "following": false, - "friends_count": 439, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 383, - "location": "", - "screen_name": "bakins", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Brian Akins", - "profile_use_background_image": true, - "description": "Any opinions are my own.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2390796647/s1cdkmi6werv9q5uqxwo_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Oct 14 14:39:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2390796647/s1cdkmi6werv9q5uqxwo_normal.jpeg", - "favourites_count": 4312, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "JAkins490", - "in_reply_to_user_id": 332033511, - "in_reply_to_status_id_str": "685593014690033667", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685602376812740608", - "id": 685602376812740608, - "text": "@jakins490 pre-ordered months ago ;)", - "in_reply_to_user_id_str": "332033511", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JAkins490", - "id_str": "332033511", - "id": 332033511, - "indices": [ - 0, - 10 - ], - "name": "Qui-Gon Josh" - } - ] - }, - "created_at": "Fri Jan 08 23:21:59 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685593014690033667, - "lang": "en" - }, - "default_profile_image": false, - "id": 16738744, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3218, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16738744/1432739558", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14443775", - "following": false, - "friends_count": 302, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "johnryding.com", - "url": "https://t.co/NPItuiGmAx", - "expanded_url": "http://www.johnryding.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 562, - "location": "Chicago, IL", - "screen_name": "strife25", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 36, - "name": "John", - "profile_use_background_image": true, - "description": "| (\u2022 \u25e1\u2022)| (\u274d\u1d25\u274d\u028b)", - "url": "https://t.co/NPItuiGmAx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648682085520019456/K5_LqyUI_normal.jpg", - "profile_background_color": "131516", - "created_at": "Sat Apr 19 15:00:51 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648682085520019456/K5_LqyUI_normal.jpg", - "favourites_count": 74, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685506438047739904", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "24ways.org/2015/solve-the\u2026", - "url": "https://t.co/bwUSnLbUBW", - "expanded_url": "https://24ways.org/2015/solve-the-hard-problems/?utm_source=Software+Lead+Weekly&utm_campaign=c06b22b60e-SWLW_163&utm_medium=email&utm_term=0_efe3d3cd5b-c06b22b60e-198271457", - "indices": [ - 34, - 57 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:00:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685506438047739904, - "text": "Solve the Hard Problems \u25c6 24 ways https://t.co/bwUSnLbUBW", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "OS X" - }, - "default_profile_image": false, - "id": 14443775, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 9653, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16891384", - "following": false, - "friends_count": 272, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "threeriversinstitute.org", - "url": "http://t.co/84mHDZpXNN", - "expanded_url": "http://www.threeriversinstitute.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 91039, - "location": "Southern Oregon", - "screen_name": "KentBeck", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4288, - "name": "Kent Beck", - "profile_use_background_image": true, - "description": "Programmer, author, father, husband, goat farmer", - "url": "http://t.co/84mHDZpXNN", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2550670043/xq10bqclqpsezgerjxhi_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Tue Oct 21 18:56:26 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2550670043/xq10bqclqpsezgerjxhi_normal.jpeg", - "favourites_count": 1377, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "geeksam", - "in_reply_to_user_id": 38699900, - "in_reply_to_status_id_str": "685597778236444673", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685598859343433729", - "id": 685598859343433729, - "text": "@geeksam treat flat profiles as a design problem, not a tuning problem. what design, if i had it, would concentrate this perf in one area?", - "in_reply_to_user_id_str": "38699900", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "geeksam", - "id_str": "38699900", - "id": 38699900, - "indices": [ - 0, - 8 - ], - "name": "Sam Livingston-Gray" - } - ] - }, - "created_at": "Fri Jan 08 23:08:00 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685597778236444673, - "lang": "en" - }, - "default_profile_image": false, - "id": 16891384, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 9370, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16891384/1398795436", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16665197", - "following": false, - "friends_count": 387, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "martinfowler.com", - "url": "http://t.co/zJOC4bh4Tv", - "expanded_url": "http://www.martinfowler.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/59018302/PICT0019__1_.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 160990, - "location": "Boston", - "screen_name": "martinfowler", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 6020, - "name": "Martin Fowler", - "profile_use_background_image": true, - "description": "Programmer, Loud Mouth, ThoughtWorker", - "url": "http://t.co/zJOC4bh4Tv", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/79787739/mf-tg-sq_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Thu Oct 09 12:20:58 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/79787739/mf-tg-sq_normal.jpg", - "favourites_count": 22, - "status": { - "retweet_count": 108, - "retweeted_status": { - "retweet_count": 108, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685370406581080065", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 400, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 227, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", - "type": "photo", - "indices": [ - 38, - 61 - ], - "media_url": "http://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", - "display_url": "pic.twitter.com/MSJj7LUpKi", - "id_str": "685181863279865857", - "expanded_url": "http://twitter.com/KevlinHenney/status/685370406581080065/photo/1", - "id": 685181863279865857, - "url": "https://t.co/MSJj7LUpKi" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 16, - 25 - ], - "text": "RoyBatty" - }, - { - "indices": [ - 26, - 37 - ], - "text": "InceptDate" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 08:00:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685370406581080065, - "text": "Happy Birthday!\n#RoyBatty #InceptDate https://t.co/MSJj7LUpKi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 46, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685548261126615044", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 599, - "h": 400, - "resize": "fit" - }, - "medium": { - "w": 599, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 227, - "resize": "fit" - } - }, - "source_status_id_str": "685370406581080065", - "url": "https://t.co/MSJj7LUpKi", - "media_url": "http://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", - "source_user_id_str": "47378354", - "id_str": "685181863279865857", - "id": 685181863279865857, - "media_url_https": "https://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", - "type": "photo", - "indices": [ - 56, - 79 - ], - "source_status_id": 685370406581080065, - "source_user_id": 47378354, - "display_url": "pic.twitter.com/MSJj7LUpKi", - "expanded_url": "http://twitter.com/KevlinHenney/status/685370406581080065/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 34, - 43 - ], - "text": "RoyBatty" - }, - { - "indices": [ - 44, - 55 - ], - "text": "InceptDate" - } - ], - "user_mentions": [ - { - "screen_name": "KevlinHenney", - "id_str": "47378354", - "id": 47378354, - "indices": [ - 3, - 16 - ], - "name": "Kevlin Henney" - } - ] - }, - "created_at": "Fri Jan 08 19:46:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685548261126615044, - "text": "RT @KevlinHenney: Happy Birthday!\n#RoyBatty #InceptDate https://t.co/MSJj7LUpKi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16665197, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/59018302/PICT0019__1_.jpg", - "statuses_count": 5490, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16665197/1397571102", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "50090898", - "following": false, - "friends_count": 153, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "developers.google.com", - "url": "http://t.co/aBJokfscjb", - "expanded_url": "http://developers.google.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486184704068943873/bhxzl6UL.png", - "notifications": false, - "profile_sidebar_fill_color": "E6E8EB", - "profile_link_color": "4585F1", - "geo_enabled": true, - "followers_count": 1557420, - "location": "", - "screen_name": "googledevs", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 14753, - "name": "Google Developers", - "profile_use_background_image": true, - "description": "News about and from Google developers.", - "url": "http://t.co/aBJokfscjb", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/656606791694848000/wBjKn0ol_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jun 23 20:25:29 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/656606791694848000/wBjKn0ol_normal.png", - "favourites_count": 146, - "status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685582433757097984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "goo.gl/Mf0ekM", - "url": "https://t.co/WxPDxUxrrX", - "expanded_url": "https://goo.gl/Mf0ekM", - "indices": [ - 120, - 143 - ] - } - ], - "hashtags": [ - { - "indices": [ - 38, - 46 - ], - "text": "DevShow" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:02:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685582433757097984, - "text": "It's a new year & new episodes of #DevShow start up next week. Until then, catch up on all the holiday videos here: https://t.co/WxPDxUxrrX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 24, - "contributors": null, - "source": "Sprinklr" - }, - "default_profile_image": false, - "id": 50090898, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486184704068943873/bhxzl6UL.png", - "statuses_count": 2795, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/50090898/1433269328", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13334762", - "following": false, - "friends_count": 174, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com", - "url": "https://t.co/FoKGHcCyJJ", - "expanded_url": "https://github.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4229589/header_bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDDDDD", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 762035, - "location": "San Francisco, CA", - "screen_name": "github", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 11785, - "name": "GitHub", - "profile_use_background_image": false, - "description": "How people build software", - "url": "https://t.co/FoKGHcCyJJ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ_normal.png", - "profile_background_color": "EEEEEE", - "created_at": "Mon Feb 11 04:41:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BBBBBB", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ_normal.png", - "favourites_count": 155, - "status": { - "retweet_count": 361, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684204778277081089", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/blog/2094-new-\u2026", - "url": "https://t.co/VJxg6og3kn", - "expanded_url": "https://github.com/blog/2094-new-year-new-git-release?utm_source=twitter&utm_medium=social&utm_campaign=git-release-2.7", - "indices": [ - 27, - 50 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 02:48:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684204778277081089, - "text": "New Year, new Git release: https://t.co/VJxg6og3kn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 335, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 13334762, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4229589/header_bg.png", - "statuses_count": 3129, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13334762/1415719104", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1138959692", - "following": false, - "friends_count": 1391, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "docker.com", - "url": "http://t.co/ZAMxePUASD", - "expanded_url": "http://docker.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433033163481157632/I01VJL_c.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 106444, - "location": "San Francisco, CA", - "screen_name": "docker", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2318, - "name": "Docker", - "profile_use_background_image": true, - "description": "Build, Ship, Run Distributed Apps #docker #containers #getcontained", - "url": "http://t.co/ZAMxePUASD", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000124779041/fbbb494a7eef5f9278c6967b6072ca3e_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Feb 01 07:12:46 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000124779041/fbbb494a7eef5f9278c6967b6072ca3e_normal.png", - "favourites_count": 1006, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "denriquezjr", - "in_reply_to_user_id": 847973664, - "in_reply_to_status_id_str": "685612798085222400", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613981122314240", - "id": 685613981122314240, - "text": "@denriquezjr we can't contain our excitement for #DockerCon 2016!!!! looking forward to seeing you there", - "in_reply_to_user_id_str": "847973664", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 49, - 59 - ], - "text": "DockerCon" - } - ], - "user_mentions": [ - { - "screen_name": "denriquezjr", - "id_str": "847973664", - "id": 847973664, - "indices": [ - 0, - 12 - ], - "name": "DJ Enriquez" - } - ] - }, - "created_at": "Sat Jan 09 00:08:05 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685612798085222400, - "lang": "en" - }, - "default_profile_image": false, - "id": 1138959692, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433033163481157632/I01VJL_c.png", - "statuses_count": 6685, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1138959692/1441316722", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "88982108", - "following": false, - "friends_count": 1399, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "puppetlabs.com", - "url": "http://t.co/HJaLYypHcH", - "expanded_url": "http://www.puppetlabs.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591989184/lmwkeegi8kpzwrvvvou4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 59107, - "location": "Portland, OR", - "screen_name": "puppetlabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1242, - "name": "Puppet Labs", - "profile_use_background_image": true, - "description": "The official Twitter account for Puppet Labs. Please use #puppetize for support and technical questions.", - "url": "http://t.co/HJaLYypHcH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671480725183397888/rVs3Z9Df_normal.jpg", - "profile_background_color": "1C1A37", - "created_at": "Tue Nov 10 17:56:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671480725183397888/rVs3Z9Df_normal.jpg", - "favourites_count": 676, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685499553340993536", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 373, - "resize": "fit" - }, - "medium": { - "w": 535, - "h": 588, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 535, - "h": 588, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNiNhEUAAAFWSu.png", - "type": "photo", - "indices": [ - 111, - 134 - ], - "media_url": "http://pbs.twimg.com/media/CYNiNhEUAAAFWSu.png", - "display_url": "pic.twitter.com/gBshTiShCp", - "id_str": "685499552644726784", - "expanded_url": "http://twitter.com/puppetlabs/status/685499553340993536/photo/1", - "id": 685499552644726784, - "url": "https://t.co/gBshTiShCp" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1mGgJZf", - "url": "https://t.co/rq56Z5oCvh", - "expanded_url": "http://bit.ly/1mGgJZf", - "indices": [ - 87, - 110 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:33:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685499553340993536, - "text": "Try out Puppet\u2019s new application orchestration tools on the newest Puppet Learning VM: https://t.co/rq56Z5oCvh https://t.co/gBshTiShCp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 12, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 88982108, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591989184/lmwkeegi8kpzwrvvvou4.jpeg", - "statuses_count": 8956, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/88982108/1443714700", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "102048347", - "following": false, - "friends_count": 145, - "entities": { - "description": { - "urls": [ - { - "display_url": "foodfightshow.org", - "url": "http://t.co/CYtSmshqpe", - "expanded_url": "http://foodfightshow.org", - "indices": [ - 49, - 71 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "devopsanywhere.blogspot.com", - "url": "http://t.co/u3IPIe2By5", - "expanded_url": "http://devopsanywhere.blogspot.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1150, - "location": "Bangkok, Thailand", - "screen_name": "bryanwb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 106, - "name": "Bryan", - "profile_use_background_image": true, - "description": "Software developer, creator of the FoodFightShow http://t.co/CYtSmshqpe, python, ruby dev, golang gopher, wannabe scala developer, occasional idealist", - "url": "http://t.co/u3IPIe2By5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/627834582/headshot_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 05 12:33:21 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/627834582/headshot_normal.jpeg", - "favourites_count": 14, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684952804339789825", - "id": 684952804339789825, - "text": "current status, relearning ReStructured Text for the nth time", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 04:20:49 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 102048347, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6119, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15685575", - "following": false, - "friends_count": 1441, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jezhumble.com", - "url": "http://t.co/wrgO9VzrmY", - "expanded_url": "http://jezhumble.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 19321, - "location": "SF Bay Area, CA", - "screen_name": "jezhumble", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 867, - "name": "Jez Humble", - "profile_use_background_image": true, - "description": "Co-author of Continuous Delivery and Lean Enterprise, lecturer @BerkeleyISchool. I tweet on software, innovation, social & economic justice.", - "url": "http://t.co/wrgO9VzrmY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/456648820156162050/itxgcaBa_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Fri Aug 01 04:34:37 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/456648820156162050/itxgcaBa_normal.jpeg", - "favourites_count": 1009, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jezhumble", - "in_reply_to_user_id": 15685575, - "in_reply_to_status_id_str": "685007000481103872", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685007432905547777", - "id": 685007432905547777, - "text": "@JohnWLewis they are two separate concerns: but product design and agile eng practices like TDD form a virtuous circle when done right", - "in_reply_to_user_id_str": "15685575", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JohnWLewis", - "id_str": "13236772", - "id": 13236772, - "indices": [ - 0, - 11 - ], - "name": "John W Lewis" - } - ] - }, - "created_at": "Thu Jan 07 07:57:53 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685007000481103872, - "lang": "en" - }, - "default_profile_image": false, - "id": 15685575, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 5054, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15685575/1398916432", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14086716", - "following": false, - "friends_count": 282, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "madstop.com", - "url": "http://t.co/idy68PRdZA", - "expanded_url": "http://madstop.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 7366, - "location": "", - "screen_name": "puppetmasterd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 446, - "name": "Luke Kanies", - "profile_use_background_image": true, - "description": "Puppet author and recovering sysadmin", - "url": "http://t.co/idy68PRdZA", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1276213644/luke-headshot_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Thu Mar 06 03:32:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1276213644/luke-headshot_normal.jpg", - "favourites_count": 0, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685502228673630208", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/raganwald/stat\u2026", - "url": "https://t.co/eTQKExApOR", - "expanded_url": "https://twitter.com/raganwald/status/685501081091100672", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:44:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685502228673630208, - "text": "If you\u2019re in need of a good laugh today\u2026 https://t.co/eTQKExApOR", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 14086716, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 16604, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "465742594", - "following": false, - "friends_count": 111, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "foodfightshow.org", - "url": "http://t.co/PqkLKgczzH", - "expanded_url": "http://www.foodfightshow.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554352230/foodfight_twitter.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "EC6A23", - "geo_enabled": false, - "followers_count": 2871, - "location": "", - "screen_name": "foodfightshow", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 132, - "name": "foodfightshow", - "profile_use_background_image": true, - "description": "The Podcast where DevOps Engineers do Battle", - "url": "http://t.co/PqkLKgczzH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2226334549/one_chef_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Jan 16 17:54:44 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2226334549/one_chef_normal.png", - "favourites_count": 101, - "status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682355004183810049", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "foodfightshow.org/2015/12/chef-a\u2026", - "url": "https://t.co/NnbMwItZ6b", - "expanded_url": "http://foodfightshow.org/2015/12/chef-and-openstack.html", - "indices": [ - 118, - 141 - ] - } - ], - "hashtags": [ - { - "indices": [ - 64, - 74 - ], - "text": "OpenStack" - } - ], - "user_mentions": [ - { - "screen_name": "chef", - "id_str": "16333852", - "id": 16333852, - "indices": [ - 52, - 57 - ], - "name": "Chef" - }, - { - "screen_name": "filler", - "id_str": "10076322", - "id": 10076322, - "indices": [ - 80, - 87 - ], - "name": "\u2728 Nick Silkey \u2728" - }, - { - "screen_name": "scassiba", - "id_str": "16456163", - "id": 16456163, - "indices": [ - 89, - 98 - ], - "name": "Samuel Cassiba" - }, - { - "screen_name": "jjasghar", - "id_str": "130963706", - "id": 130963706, - "indices": [ - 106, - 115 - ], - "name": "JJ Asghar" - } - ] - }, - "created_at": "Thu Dec 31 00:18:05 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682355004183810049, - "text": "Episode 96 is now available in the podcast stream. @chef & #OpenStack with @filler, @scassiba, & @jjasghar - https://t.co/NnbMwItZ6b", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 465742594, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554352230/foodfight_twitter.png", - "statuses_count": 1082, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13378422", - "following": false, - "friends_count": 606, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kitchensoap.com", - "url": "http://t.co/1LtrvGduhJ", - "expanded_url": "http://www.kitchensoap.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 14349, - "location": "Brooklyn", - "screen_name": "allspaw", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 857, - "name": "John Allspaw", - "profile_use_background_image": true, - "description": "CTO, Etsy. Dad. Author. Guitarist. Student of sociotechnical systems, human factors, and cognitive systems engineering.", - "url": "http://t.co/1LtrvGduhJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000242066844/aa7ca1bd889fef6d8cedaa3f2b744861_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 12 05:36:43 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000242066844/aa7ca1bd889fef6d8cedaa3f2b744861_normal.jpeg", - "favourites_count": 3321, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jonlives", - "in_reply_to_user_id": 13093162, - "in_reply_to_status_id_str": "685447933219725312", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685451419302887424", - "id": 685451419302887424, - "text": "@jonlives Come join @mcdonnps and I in our mechanical watch enthusiasm!", - "in_reply_to_user_id_str": "13093162", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jonlives", - "id_str": "13093162", - "id": 13093162, - "indices": [ - 0, - 9 - ], - "name": "Jon Cowie" - }, - { - "screen_name": "mcdonnps", - "id_str": "305899937", - "id": 305899937, - "indices": [ - 20, - 29 - ], - "name": "Patrick McDonnell" - } - ] - }, - "created_at": "Fri Jan 08 13:22:08 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685447933219725312, - "lang": "en" - }, - "default_profile_image": false, - "id": 13378422, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 9728, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "23777840", - "following": false, - "friends_count": 749, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/lnxchk", - "url": "https://t.co/JkNqgBhmtu", - "expanded_url": "http://about.me/lnxchk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2548, - "location": "London, England", - "screen_name": "lnxchk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 225, - "name": "DevOp4StandingBy", - "profile_use_background_image": true, - "description": "Ready, Gold Leader | Click Button Get DevOps", - "url": "https://t.co/JkNqgBhmtu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1313952205/newHairThumb_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 11 15:28:01 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1313952205/newHairThumb_normal.jpg", - "favourites_count": 3217, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685531490386444289", - "id": 685531490386444289, - "text": "OH: \u201cMom called me Ned. She didn\u2019t know that The Simpsons was going to come out and ruin my life\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:40:18 +0000 2016", - "source": "TweetDeck", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 23777840, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10786, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23777840/1448838851", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "207840024", - "following": false, - "friends_count": 207, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "buildscientist.com", - "url": "http://t.co/Ry08N6pyEb", - "expanded_url": "http://www.buildscientist.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0090A3", - "geo_enabled": false, - "followers_count": 471, - "location": "California", - "screen_name": "buildscientist", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Youssuf ElKalay", - "profile_use_background_image": false, - "description": "Muslim, American, Scottish, Egyptian. Co-host @ShipShowPodcast. Senior Software Engineer @ServiceNow. My tweets do not represent my employer.", - "url": "http://t.co/Ry08N6pyEb", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662369579113431040/kdSMagFO_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Oct 26 03:54:49 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662369579113431040/kdSMagFO_normal.jpg", - "favourites_count": 200, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685330222158229504", - "id": 685330222158229504, - "text": "As much as giving into anger can make you feel good, it can never make you feel better", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 05:20:32 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685337246711468036", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Mataway", - "id_str": "52475166", - "id": 52475166, - "indices": [ - 3, - 11 - ], - "name": "Matt Attaway" - } - ] - }, - "created_at": "Fri Jan 08 05:48:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685337246711468036, - "text": "RT @Mataway: As much as giving into anger can make you feel good, it can never make you feel better", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 207840024, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 9081, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/207840024/1400049840", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "2208083953", - "following": false, - "friends_count": 683, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "arresteddevops.com", - "url": "http://t.co/joaHqjS5I7", - "expanded_url": "http://arresteddevops.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2836, - "location": "", - "screen_name": "ArrestedDevOps", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 136, - "name": "Arrested DevOps", - "profile_use_background_image": true, - "description": "There's always DevOps in the Banana Stand. Hosted by @mattstratton, @trevorghess, & @bridgetkromhout", - "url": "http://t.co/joaHqjS5I7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/615009446322765824/XRtzbKLw_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Nov 22 01:05:20 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/615009446322765824/XRtzbKLw_normal.png", - "favourites_count": 1341, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "RitaMailheau", - "in_reply_to_user_id": 471993505, - "in_reply_to_status_id_str": "685539191363506176", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685547054555201536", - "id": 685547054555201536, - "text": "@RitaMailheau did you want a specific host from our show?", - "in_reply_to_user_id_str": "471993505", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RitaMailheau", - "id_str": "471993505", - "id": 471993505, - "indices": [ - 0, - 13 - ], - "name": "Rita" - } - ] - }, - "created_at": "Fri Jan 08 19:42:09 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685539191363506176, - "lang": "en" - }, - "default_profile_image": false, - "id": 2208083953, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1448, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2208083953/1422999081", - "is_translator": false - }, - { - "time_zone": "Melbourne", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "6031", - "following": false, - "friends_count": 995, - "entities": { - "description": { - "urls": [ - { - "display_url": "artofmonitoring.com", - "url": "https://t.co/zUrMNMHWZ7", - "expanded_url": "http://artofmonitoring.com", - "indices": [ - 114, - 137 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kartar.net", - "url": "http://t.co/oNwoEGqRRJ", - "expanded_url": "http://www.kartar.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 8675, - "location": "Brooklyn and airport lounges", - "screen_name": "kartar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 628, - "name": "James Turnbull", - "profile_use_background_image": true, - "description": "Australian author, CTO @Kickstarter, Advisor @Docker. Likes tattoos, wine, and good food. The Art of Monitoring - https://t.co/zUrMNMHWZ7", - "url": "http://t.co/oNwoEGqRRJ", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553179124454281217/vV3KfTsQ_normal.jpeg", - "profile_background_color": "BADFCD", - "created_at": "Thu Sep 14 01:31:47 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F2E195", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179124454281217/vV3KfTsQ_normal.jpeg", - "favourites_count": 28, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "bronte_saurus", - "in_reply_to_user_id": 18622553, - "in_reply_to_status_id_str": "685443681608843264", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685446171280670720", - "id": 685446171280670720, - "text": "@bronte_saurus Yeah I meant the legal ones. :)", - "in_reply_to_user_id_str": "18622553", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "bronte_saurus", - "id_str": "18622553", - "id": 18622553, - "indices": [ - 0, - 14 - ], - "name": "birthdaysaurus" - } - ] - }, - "created_at": "Fri Jan 08 13:01:16 +0000 2016", - "source": "Janetter Pro for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685443681608843264, - "lang": "en" - }, - "default_profile_image": false, - "id": 6031, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "statuses_count": 32178, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6031/1398207179", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "45573701", - "following": false, - "friends_count": 405, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 1805, - "location": "Minneapolis", - "screen_name": "sascha_d", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 122, - "name": "Sascha", - "profile_use_background_image": true, - "description": "BrD (Doctor of Brattiness)", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1391497394/RH_only_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Mon Jun 08 14:18:36 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1391497394/RH_only_normal.jpg", - "favourites_count": 525, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685523603127848960", - "id": 685523603127848960, - "text": "Bicyling, Rodale and Runner\u2019s World spam really making me regret purchasing my Runner\u2019s World sub.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:08:58 +0000 2016", - "source": "TweetDeck", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 45573701, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 10543, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "809512", - "following": false, - "friends_count": 388, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "orionlabs.co", - "url": "http://t.co/AqLxJSw2tK", - "expanded_url": "http://www.orionlabs.co", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "1A1B1C", - "geo_enabled": true, - "followers_count": 8570, - "location": "San Francisco, CA", - "screen_name": "jesserobbins", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 497, - "name": "Jesse Robbins", - "profile_use_background_image": true, - "description": "Founder of @OrionLabs, beautiful wearable devices to change the way people communicate. Previously founded @Chef & @VelocityConf. Firefighter/EMT & Adventurer.", - "url": "http://t.co/AqLxJSw2tK", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/898516649/_MG_1334_2_normal.jpg", - "profile_background_color": "022330", - "created_at": "Sun Mar 04 02:57:24 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/898516649/_MG_1334_2_normal.jpg", - "favourites_count": 460, - "status": { - "retweet_count": 16, - "retweeted_status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684872737408434179", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "theverge.com/2016/1/6/10718\u2026", - "url": "https://t.co/SpmaaOauOc", - "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", - "indices": [ - 26, - 49 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CaseyNewton", - "id_str": "69426451", - "id": 69426451, - "indices": [ - 65, - 77 - ], - "name": "Casey Newton" - }, - { - "screen_name": "layer", - "id_str": "1518024493", - "id": 1518024493, - "indices": [ - 134, - 140 - ], - "name": "Layer" - } - ] - }, - "created_at": "Wed Jan 06 23:02:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684872737408434179, - "text": "search for the killer bot https://t.co/SpmaaOauOc great piece by @CaseyNewton. eventually bots + messaging will be part of all apps. @Layer", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 25, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684884814218969088", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "theverge.com/2016/1/6/10718\u2026", - "url": "https://t.co/SpmaaOauOc", - "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", - "indices": [ - 36, - 59 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RonP", - "id_str": "785027", - "id": 785027, - "indices": [ - 3, - 8 - ], - "name": "Ron Palmeri" - }, - { - "screen_name": "CaseyNewton", - "id_str": "69426451", - "id": 69426451, - "indices": [ - 75, - 87 - ], - "name": "Casey Newton" - }, - { - "screen_name": "layer", - "id_str": "1518024493", - "id": 1518024493, - "indices": [ - 139, - 140 - ], - "name": "Layer" - } - ] - }, - "created_at": "Wed Jan 06 23:50:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684884814218969088, - "text": "RT @RonP: search for the killer bot https://t.co/SpmaaOauOc great piece by @CaseyNewton. eventually bots + messaging will be part of all ap\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 809512, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 4116, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/809512/1400563083", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "862224750", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [ - { - "display_url": "hangops.com/sessions/", - "url": "http://t.co/EOwiu1aAwR", - "expanded_url": "http://www.hangops.com/sessions/", - "indices": [ - 96, - 118 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "hangops.com", - "url": "http://t.co/Lx9zm0oBLJ", - "expanded_url": "http://www.hangops.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 2061, - "location": "", - "screen_name": "hangops", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 81, - "name": "hangops", - "profile_use_background_image": false, - "description": "#hangops is awesome weekly discussions with the #devops community, via Google Hangouts and IRC. http://t.co/EOwiu1aAwR for past sessions. By @solarce", - "url": "http://t.co/Lx9zm0oBLJ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2681580573/f520588ff7bf9eb9fe3416388ed76e75_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Oct 05 00:01:43 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2681580573/f520588ff7bf9eb9fe3416388ed76e75_normal.jpeg", - "favourites_count": 69, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "646408217136762880", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "hangops.slack.com", - "url": "http://t.co/Fb1ajYZfOA", - "expanded_url": "http://hangops.slack.com", - "indices": [ - 0, - 22 - ] - }, - { - "display_url": "github.com/rawdigits/wee-\u2026", - "url": "https://t.co/dmmnnoordq", - "expanded_url": "https://github.com/rawdigits/wee-slack#features", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Sep 22 19:38:23 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 646408217136762880, - "text": "http://t.co/Fb1ajYZfOA now has the web API enabled for those of you wanting to use https://t.co/dmmnnoordq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 862224750, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 688, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/862224750/1399731010", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "617421398", - "following": false, - "friends_count": 168, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theshipshow.com", - "url": "http://t.co/lxkypXpOrH", - "expanded_url": "http://theshipshow.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1123, - "location": "The cloud", - "screen_name": "ShipShowPodcast", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 68, - "name": "The Ship Show", - "profile_use_background_image": true, - "description": "Build engineering, DevOps, release management. With @SoberBuildEng, @buildscientist, @eciramella, @cheeseplus, @sascha_d, @petecheslock, @SonOfGarr & @beerops", - "url": "http://t.co/lxkypXpOrH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2487098853/4465djeq8bk0o8atyw71_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Jun 24 19:59:11 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2487098853/4465djeq8bk0o8atyw71_normal.png", - "favourites_count": 59, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677600921661014016", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "theshipshow.com/59", - "url": "https://t.co/UyQzFmCVFO", - "expanded_url": "http://theshipshow.com/59", - "indices": [ - 90, - 113 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 17 21:27:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677600921661014016, - "text": "\"It doesn't really matter what we do behind the scenes if we deliver cr@# to customers.\"\n\nhttps://t.co/UyQzFmCVFO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 617421398, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 666, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15782607", - "following": false, - "friends_count": 320, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "semicomplete.com", - "url": "http://t.co/xNqnRweCSA", - "expanded_url": "http://www.semicomplete.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 5868, - "location": "Silicon Valley", - "screen_name": "jordansissel", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 302, - "name": "@jordansissel", - "profile_use_background_image": true, - "description": "Empathy-driven development. Consensual hugs are available. I yell at computers a lot.", - "url": "http://t.co/xNqnRweCSA", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663866598831230976/MrGxbRBh_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Fri Aug 08 20:28:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663866598831230976/MrGxbRBh_normal.jpg", - "favourites_count": 495, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685605145757929473", - "id": 685605145757929473, - "text": "I can't shutdown this machine via remote desktop, and I refuse to admit that I can walk over and hit the power button. #lazy", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 119, - 124 - ], - "text": "lazy" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:32:59 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15782607, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 33053, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15782607/1423683827", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "356447127", - "following": false, - "friends_count": 1167, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jpaulreed.com", - "url": "https://t.co/fXjoS4z1wT", - "expanded_url": "http://jpaulreed.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/314931142/sbe-t-bkgrnd.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 2096, - "location": "San Francisco, CA", - "screen_name": "jpaulreed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 152, - "name": "J. Paul Reed", - "profile_use_background_image": true, - "description": "Simply ship. Every time. Principal at Release Engineering Approaches; visiting scientist at @praxisflow; host of the @ShipShowPodcast.", - "url": "https://t.co/fXjoS4z1wT", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/565476374723309568/IVYwceSG_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Tue Aug 16 21:33:37 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/565476374723309568/IVYwceSG_normal.jpeg", - "favourites_count": 3218, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685557570925244416", - "id": 685557570925244416, - "text": "\"I mean he's got a masters in compilers. You KNOW he's seen some shit...\" - @petecheslock", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "petecheslock", - "id_str": "264481774", - "id": 264481774, - "indices": [ - 76, - 89 - ], - "name": "Pete Cheslock" - } - ] - }, - "created_at": "Fri Jan 08 20:23:56 +0000 2016", - "source": "TweetDeck", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 356447127, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/314931142/sbe-t-bkgrnd.jpg", - "statuses_count": 10034, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/356447127/1435428064", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "42039840", - "following": false, - "friends_count": 1810, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hackygolucky.com", - "url": "http://t.co/PAxs7FiRx8", - "expanded_url": "http://hackygolucky.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121813986/af68e9e3d6fe92f4ee05a6c691b70906.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "3E2D57", - "geo_enabled": true, - "followers_count": 1936, - "location": "NYC", - "screen_name": "HackyGoLucky", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 107, - "name": "Tracy", - "profile_use_background_image": true, - "description": "JS community catHerder, Web Engineer @urbanairship. Fighting my own small revolutions(trouble!). Inciting confidence in people one compliment at a time...", - "url": "http://t.co/PAxs7FiRx8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/504692206829965312/sJiuqH_J_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Sat May 23 15:04:27 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/504692206829965312/sJiuqH_J_normal.jpeg", - "favourites_count": 7274, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "kosamari", - "in_reply_to_user_id": 8470842, - "in_reply_to_status_id_str": "685527140801101824", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685573092727480321", - "id": 685573092727480321, - "text": "@kosamari I thought there are engineers at places like Facebook, maybe IBM?(don't quote me) whose sole job is things like the Linux kernel.", - "in_reply_to_user_id_str": "8470842", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kosamari", - "id_str": "8470842", - "id": 8470842, - "indices": [ - 0, - 9 - ], - "name": "Mariko Kosaka" - } - ] - }, - "created_at": "Fri Jan 08 21:25:37 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685527140801101824, - "lang": "en" - }, - "default_profile_image": false, - "id": 42039840, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121813986/af68e9e3d6fe92f4ee05a6c691b70906.jpeg", - "statuses_count": 4524, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/42039840/1405318288", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "109950516", - "following": false, - "friends_count": 928, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/pandafulmanda", - "url": "https://t.co/z2zVcyDpqy", - "expanded_url": "https://github.com/pandafulmanda", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "0099B9", - "geo_enabled": true, - "followers_count": 425, - "location": "", - "screen_name": "pandafulmanda", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Amanda Shih", - "profile_use_background_image": true, - "description": "", - "url": "https://t.co/z2zVcyDpqy", - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/546906721554145280/6zxoznyM_normal.jpeg", - "profile_background_color": "0099B9", - "created_at": "Sat Jan 30 20:34:23 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/546906721554145280/6zxoznyM_normal.jpeg", - "favourites_count": 270, - "status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "621759022606221312", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "classes.codeparkhouston.com", - "url": "http://t.co/wVXwebEKcU", - "expanded_url": "http://classes.codeparkhouston.com/", - "indices": [ - 118, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "houstonlibrary", - "id_str": "5862922", - "id": 5862922, - "indices": [ - 60, - 75 - ], - "name": "Houston Library" - }, - { - "screen_name": "fileunderjeff", - "id_str": "73465639", - "id": 73465639, - "indices": [ - 91, - 105 - ], - "name": "Jeff Reichman" - }, - { - "screen_name": "Transition", - "id_str": "14259159", - "id": 14259159, - "indices": [ - 106, - 117 - ], - "name": "Transition" - } - ] - }, - "created_at": "Thu Jul 16 19:11:17 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 621759022606221312, - "text": "Another round of free Coding in Minecraft classes for teens @houstonlibrary this Saturday! @fileunderjeff @Transition http://t.co/wVXwebEKcU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 109950516, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 131, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "41926203", - "following": false, - "friends_count": 172, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "secondstory.com", - "url": "http://t.co/CwqjPAv4X6", - "expanded_url": "http://www.secondstory.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 141, - "location": "Portland, Oregon", - "screen_name": "dbrewerpdx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "name": "David Brewer", - "profile_use_background_image": true, - "description": "Web Technology Lead at Second Story. Following web/mobile development, security, open source, history, museums and collections, and more.", - "url": "http://t.co/CwqjPAv4X6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1230031852/5_thumb_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri May 22 23:27:16 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1230031852/5_thumb_normal.jpg", - "favourites_count": 220, - "status": { - "retweet_count": 36214, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 36214, - "truncated": false, - "retweeted": false, - "id_str": "576036726046646272", - "id": 576036726046646272, - "text": "Terry took Death\u2019s arm and followed him through the doors and on to the black desert under the endless night.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Mar 12 15:07:12 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 21498, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "576091352733093888", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "terryandrob", - "id_str": "22477940", - "id": 22477940, - "indices": [ - 3, - 15 - ], - "name": "Terry Pratchett" - } - ] - }, - "created_at": "Thu Mar 12 18:44:16 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 576091352733093888, - "text": "RT @terryandrob: Terry took Death\u2019s arm and followed him through the doors and on to the black desert under the endless night.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 41926203, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1492, - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14586723", - "following": false, - "friends_count": 684, - "entities": { - "description": { - "urls": [ - { - "display_url": "twitter.com/jeffsussna/sta\u2026", - "url": "https://t.co/NRBhIxWRkj", - "expanded_url": "https://twitter.com/jeffsussna/status/627202142542041088?s=09", - "indices": [ - 0, - 23 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "about.me/lusis", - "url": "http://t.co/K7LVyopS5x", - "expanded_url": "http://about.me/lusis", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/884215773/5ea824395da2cf19c1e8bcf943b50db2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3845, - "location": "\u00dcT: 34.010375,-84.367464", - "screen_name": "lusis", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 301, - "name": "elated-pig", - "profile_use_background_image": true, - "description": "https://t.co/NRBhIxWRkj", - "url": "http://t.co/K7LVyopS5x", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/422582473331974144/xzes5qFM_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Apr 29 16:16:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/422582473331974144/xzes5qFM_normal.jpeg", - "favourites_count": 6670, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "flangy", - "in_reply_to_user_id": 14209746, - "in_reply_to_status_id_str": "685580643070128128", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685582667786641410", - "id": 685582667786641410, - "text": "@flangy BUY MY DATABA...oh wait. I don't have anything to sell.", - "in_reply_to_user_id_str": "14209746", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "flangy", - "id_str": "14209746", - "id": 14209746, - "indices": [ - 0, - 7 - ], - "name": "2,016 #Content" - } - ] - }, - "created_at": "Fri Jan 08 22:03:40 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685580643070128128, - "lang": "en" - }, - "default_profile_image": false, - "id": 14586723, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/884215773/5ea824395da2cf19c1e8bcf943b50db2.jpeg", - "statuses_count": 51138, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14586723/1438371843", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "822284", - "following": false, - "friends_count": 96, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "solarce.org", - "url": "https://t.co/JlvQwqMQ80", - "expanded_url": "https://solarce.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "0099B9", - "geo_enabled": true, - "followers_count": 2701, - "location": "Los Angeles, CA", - "screen_name": "solarce", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 219, - "name": "leader of cola", - "profile_use_background_image": true, - "description": "Ops Engineering, Infrastructure Manager at @travisci || webops, devops, unix, @hangops, and gifs || \u2728 RIP @lolcatstevens. Love you buddy. \u2728", - "url": "https://t.co/JlvQwqMQ80", - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/637409714892967936/XXjCPWZj_normal.jpg", - "profile_background_color": "0099B9", - "created_at": "Thu Mar 08 16:55:54 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637409714892967936/XXjCPWZj_normal.jpg", - "favourites_count": 24031, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685608754591711232", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "app.net", - "url": "https://t.co/qtbj6wMFuz", - "expanded_url": "http://app.net", - "indices": [ - 17, - 40 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:47:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685608754591711232, - "text": "Is peach the new https://t.co/qtbj6wMFuz?", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 822284, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 44034, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/822284/1440807638", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "264481774", - "following": false, - "friends_count": 502, - "entities": { - "description": { - "urls": [ - { - "display_url": "omg.pete.wtf/1bqAY", - "url": "https://t.co/PTfL8GfXcY", - "expanded_url": "http://omg.pete.wtf/1bqAY", - "indices": [ - 103, - 126 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "pete.wtf", - "url": "https://t.co/uyeoAVEs1J", - "expanded_url": "https://pete.wtf", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/732697280/8e7fc630a628b76234408fa31c0a21c4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2494, - "location": "Boston, MA", - "screen_name": "petecheslock", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 153, - "name": "Pete Cheslock", - "profile_use_background_image": true, - "description": "Ceci n'est pas un @petechesbot. I computer at @threatstack. I also do @BosOps & @ShipShowPodcast. PGP: https://t.co/PTfL8GfXcY", - "url": "https://t.co/uyeoAVEs1J", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/530791753830244352/8XeF4t-d_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 12 00:10:18 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/530791753830244352/8XeF4t-d_normal.jpeg", - "favourites_count": 4678, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ohlol", - "in_reply_to_user_id": 15387262, - "in_reply_to_status_id_str": "685554188399460352", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610690674057216", - "id": 685610690674057216, - "text": "@ohlol @richburroughs lmao", - "in_reply_to_user_id_str": "15387262", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ohlol", - "id_str": "15387262", - "id": 15387262, - "indices": [ - 0, - 6 - ], - "name": "O(tires)" - }, - { - "screen_name": "richburroughs", - "id_str": "19552154", - "id": 19552154, - "indices": [ - 7, - 21 - ], - "name": "Rich Burroughs" - } - ] - }, - "created_at": "Fri Jan 08 23:55:01 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685554188399460352, - "lang": "ht" - }, - "default_profile_image": false, - "id": 264481774, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/732697280/8e7fc630a628b76234408fa31c0a21c4.jpeg", - "statuses_count": 20535, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/264481774/1404067173", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14939200", - "following": false, - "friends_count": 419, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "seancribbs.com", - "url": "https://t.co/Bs65kfFYL5", - "expanded_url": "http://seancribbs.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "005C99", - "geo_enabled": true, - "followers_count": 3126, - "location": "", - "screen_name": "seancribbs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 257, - "name": "Sean Cribbs", - "profile_use_background_image": false, - "description": "Husband, Cat Daddy, distsys geek, pedant", - "url": "https://t.co/Bs65kfFYL5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564571026906828800/VWMqibpC_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Thu May 29 00:27:51 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564571026906828800/VWMqibpC_normal.jpeg", - "favourites_count": 28657, - "status": { - "retweet_count": 28, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 28, - "truncated": false, - "retweeted": false, - "id_str": "685523664758898688", - "id": 685523664758898688, - "text": "\"Knowing how to program is not synonymous w/ understanding how technologies are entangled w/ power and meaning.\" @jenterysayers #MLA16 #s280", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 128, - 134 - ], - "text": "MLA16" - }, - { - "indices": [ - 135, - 140 - ], - "text": "s280" - } - ], - "user_mentions": [ - { - "screen_name": "jenterysayers", - "id_str": "98890966", - "id": 98890966, - "indices": [ - 113, - 127 - ], - "name": "Jentery Sayers" - } - ] - }, - "created_at": "Fri Jan 08 18:09:12 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 39, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685563282900422656", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "MLA16" - }, - { - "indices": [ - 139, - 140 - ], - "text": "s280" - } - ], - "user_mentions": [ - { - "screen_name": "Jessifer", - "id_str": "11702102", - "id": 11702102, - "indices": [ - 3, - 12 - ], - "name": "Jesse Stommel" - }, - { - "screen_name": "jenterysayers", - "id_str": "98890966", - "id": 98890966, - "indices": [ - 127, - 140 - ], - "name": "Jentery Sayers" - } - ] - }, - "created_at": "Fri Jan 08 20:46:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685563282900422656, - "text": "RT @Jessifer: \"Knowing how to program is not synonymous w/ understanding how technologies are entangled w/ power and meaning.\" @jenterysaye\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14939200, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 36449, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14939200/1446405447", - "is_translator": false - }, - { - "time_zone": "Auckland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 46800, - "id_str": "13756082", - "following": false, - "friends_count": 671, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "heyrafael.com", - "url": "https://t.co/ZVABFDWGXm", - "expanded_url": "https://heyrafael.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1151, - "location": "Auckland, New Zealand", - "screen_name": "rafaelmagu", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 61, - "name": "Rafael Fonseca", - "profile_use_background_image": false, - "description": "Lead #BreakOps Practitioner at @vendhq", - "url": "https://t.co/ZVABFDWGXm", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678154954696237056/xPF3EVv-_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Feb 21 04:26:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678154954696237056/xPF3EVv-_normal.jpg", - "favourites_count": 4019, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613477818429449", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "rnkpr.com/abudyju", - "url": "https://t.co/H59tJXn4L8", - "expanded_url": "http://rnkpr.com/abudyju", - "indices": [ - 60, - 83 - ] - } - ], - "hashtags": [ - { - "indices": [ - 84, - 94 - ], - "text": "Runkeeper" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:06:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613477818429449, - "text": "Just completed a 1.42 km walk with Runkeeper. Check it out! https://t.co/H59tJXn4L8 #Runkeeper", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Runkeeper" - }, - "default_profile_image": false, - "id": 13756082, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 92742, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13756082/1432813367", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "23967168", - "following": false, - "friends_count": 295, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thejoyofcode.com", - "url": "https://t.co/FTsNoR2BNt", - "expanded_url": "http://www.thejoyofcode.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3367, - "location": "Redmond, WA", - "screen_name": "joshtwist", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 138, - "name": "Josh Twist", - "profile_use_background_image": true, - "description": "Product Management @Auth0 - making identity simple for developers. Ex-Microsoft Azure PM. Brit in the US; accent takes all the credit.", - "url": "https://t.co/FTsNoR2BNt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2580020739/54byw9ppnr5yyj4d1tnd_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 12 15:26:43 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2580020739/54byw9ppnr5yyj4d1tnd_normal.jpeg", - "favourites_count": 206, - "status": { - "retweet_count": 437, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 437, - "truncated": false, - "retweeted": false, - "id_str": "685297500689829888", - "id": 685297500689829888, - "text": "App that recognizes your phone is falling and likely to get cracked and auto purchases insurance instantly prior to impact.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:10:31 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 898, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685298157073248258", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BoredElonMusk", - "id_str": "1666038950", - "id": 1666038950, - "indices": [ - 3, - 17 - ], - "name": "Bored Elon Musk" - } - ] - }, - "created_at": "Fri Jan 08 03:13:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685298157073248258, - "text": "RT @BoredElonMusk: App that recognizes your phone is falling and likely to get cracked and auto purchases insurance instantly prior to impa\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 23967168, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6175, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23967168/1447243606", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14061017", - "following": false, - "friends_count": 844, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "geekafterfive.com", - "url": "https://t.co/5ooybAQSUP", - "expanded_url": "http://geekafterfive.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1585, - "location": "Flower Mound, TX", - "screen_name": "jakerobinson", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 104, - "name": "\u281a\u2801\u2805\u2811\u2817\u2815\u2803\u280a\u281d\u280e\u2815\u281d", - "profile_use_background_image": true, - "description": "Level 12 DevOps Rogue - Project Zombie @vmware", - "url": "https://t.co/5ooybAQSUP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671904209004965888/M5bwd2NZ_normal.jpg", - "profile_background_color": "022330", - "created_at": "Fri Feb 29 17:53:34 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671904209004965888/M5bwd2NZ_normal.jpg", - "favourites_count": 4963, - "status": { - "retweet_count": 13, - "retweeted_status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685508609254506496", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/UoEN4sD5WW", - "url": "https://t.co/UoEN4sD5WW", - "expanded_url": "http://twitter.com/ascendantlogic/status/685508609254506496/photo/1", - "indices": [ - 20, - 43 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:09:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685508609254506496, - "text": "feels like ops work https://t.co/UoEN4sD5WW", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 16, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685516326329188353", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/UoEN4sD5WW", - "url": "https://t.co/UoEN4sD5WW", - "expanded_url": "http://twitter.com/ascendantlogic/status/685508609254506496/photo/1", - "indices": [ - 40, - 63 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ascendantlogic", - "id_str": "15544659", - "id": 15544659, - "indices": [ - 3, - 18 - ], - "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 \u253b\u2501\u253b" - } - ] - }, - "created_at": "Fri Jan 08 17:40:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685516326329188353, - "text": "RT @ascendantlogic: feels like ops work https://t.co/UoEN4sD5WW", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14061017, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 13931, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14061017/1401767927", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6386722", - "following": false, - "friends_count": 285, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18101581/IMG_0263.JPG", - "notifications": false, - "profile_sidebar_fill_color": "4092B8", - "profile_link_color": "072778", - "geo_enabled": true, - "followers_count": 139, - "location": "San Antonio, TX", - "screen_name": "t8r", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Daniel Bel Biv Defoe", - "profile_use_background_image": true, - "description": "It's a new artform, showing people how little we care.\n\nAlabamian, Georgian, Texian, a being composed of pure energy and BBQ.", - "url": null, - "profile_text_color": "000308", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/469334450128433152/xK6VV0O2_normal.jpeg", - "profile_background_color": "252533", - "created_at": "Mon May 28 14:41:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/469334450128433152/xK6VV0O2_normal.jpeg", - "favourites_count": 55, - "status": { - "retweet_count": 5, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 5, - "truncated": false, - "retweeted": false, - "id_str": "668879651037646849", - "id": 668879651037646849, - "text": "All I can surmise from my Twitter feed right now is that:\n\n1. Slack is down\n2. Slack is making motherfuckin' monayyyyy", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Nov 23 19:51:50 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 10, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "668888540017594369", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "maddox", - "id_str": "750823", - "id": 750823, - "indices": [ - 3, - 10 - ], - "name": "Jon Maddox" - } - ] - }, - "created_at": "Mon Nov 23 20:27:09 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 668888540017594369, - "text": "RT @maddox: All I can surmise from my Twitter feed right now is that:\n\n1. Slack is down\n2. Slack is making motherfuckin' monayyyyy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 6386722, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18101581/IMG_0263.JPG", - "statuses_count": 716, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "3519791", - "following": false, - "friends_count": 93, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 56, - "location": "Haddon Heights, NJ", - "screen_name": "seangrieve", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Sean Grieve", - "profile_use_background_image": true, - "description": "Principal Software Engineer at Digitas Health in Philadelphia.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2606538021/55vefb1nbuosjac2i1vs_normal.gif", - "profile_background_color": "9AE4E8", - "created_at": "Thu Apr 05 13:47:12 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2606538021/55vefb1nbuosjac2i1vs_normal.gif", - "favourites_count": 68, - "status": { - "retweet_count": 221, - "retweeted_status": { - "retweet_count": 221, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683201788334313474", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 480, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", - "type": "photo", - "indices": [ - 14, - 37 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", - "display_url": "pic.twitter.com/6Cio8EyB9E", - "id_str": "683201676484870144", - "expanded_url": "http://twitter.com/damienkatz/status/683201788334313474/video/1", - "id": 683201676484870144, - "url": "https://t.co/6Cio8EyB9E" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 02 08:22:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683201788334313474, - "text": "\"son of a...\" https://t.co/6Cio8EyB9E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 215, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683392657993953280", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 480, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - } - }, - "source_status_id_str": "683201788334313474", - "url": "https://t.co/6Cio8EyB9E", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", - "source_user_id_str": "77827772", - "id_str": "683201676484870144", - "id": 683201676484870144, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", - "type": "photo", - "indices": [ - 30, - 53 - ], - "source_status_id": 683201788334313474, - "source_user_id": 77827772, - "display_url": "pic.twitter.com/6Cio8EyB9E", - "expanded_url": "http://twitter.com/damienkatz/status/683201788334313474/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "damienkatz", - "id_str": "77827772", - "id": 77827772, - "indices": [ - 3, - 14 - ], - "name": "hashtagdamienkatz" - } - ] - }, - "created_at": "Sat Jan 02 21:01:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683392657993953280, - "text": "RT @damienkatz: \"son of a...\" https://t.co/6Cio8EyB9E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 3519791, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 349, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": false, - "description": "i keep the big number spinning and in my spare time i am sad. music over at @leftfold, sometimes. married to @tina2moons.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "7280452", - "blocking": false, - "is_translation_enabled": false, - "id": 7280452, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "D1DAEB", - "created_at": "Fri Jul 06 01:50:49 +0000 2007", - "profile_image_url": "http://pbs.twimg.com/profile_images/663553425196474369/Ulo6xLzy_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "3E4E61", - "statuses_count": 19006, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663553425196474369/Ulo6xLzy_normal.jpg", - "favourites_count": 63442, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 253, - "blocked_by": false, - "following": false, - "location": "Watertown, MA", - "muting": false, - "friends_count": 665, - "notifications": false, - "screen_name": "decklin", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 6, - "is_translator": false, - "name": "something important" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5693282", - "following": false, - "friends_count": 251, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "amblin.io", - "url": "https://t.co/ej9BXSk4C7", - "expanded_url": "https://amblin.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 363, - "location": "Charleston, SC", - "screen_name": "amblin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Matthew Gregg", - "profile_use_background_image": false, - "description": "Sharks!", - "url": "https://t.co/ej9BXSk4C7", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675397943546028033/2rzp8ZSK_normal.jpg", - "profile_background_color": "FDFDFD", - "created_at": "Tue May 01 19:59:12 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675397943546028033/2rzp8ZSK_normal.jpg", - "favourites_count": 2215, - "status": { - "geo": { - "coordinates": [ - 35.4263958, - -83.0871535 - ], - "type": "Point" - }, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/3b98b02fba3f9753.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -84.32187, - 33.752879 - ], - [ - -75.40012, - 33.752879 - ], - [ - -75.40012, - 36.588118 - ], - [ - -84.32187, - 36.588118 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "North Carolina, USA", - "id": "3b98b02fba3f9753", - "name": "North Carolina" - }, - "in_reply_to_screen_name": "shortxstack", - "in_reply_to_user_id": 8094902, - "in_reply_to_status_id_str": "685500171900317696", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685575652582551552", - "id": 685575652582551552, - "text": "@shortxstack Good luck with that.", - "in_reply_to_user_id_str": "8094902", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "shortxstack", - "id_str": "8094902", - "id": 8094902, - "indices": [ - 0, - 12 - ], - "name": "Whitney Champion" - } - ] - }, - "created_at": "Fri Jan 08 21:35:47 +0000 2016", - "source": "Fenix for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": { - "coordinates": [ - -83.0871535, - 35.4263958 - ], - "type": "Point" - }, - "contributors": null, - "in_reply_to_status_id": 685500171900317696, - "lang": "en" - }, - "default_profile_image": false, - "id": 5693282, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8006, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5693282/1447632413", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "7693892", - "following": false, - "friends_count": 179, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 46, - "location": "New York, NY", - "screen_name": "greggian", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "greggian", - "profile_use_background_image": true, - "description": "Computer Enginerd", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1268590618/eightbit-f0b3028b-8d9a-495c-b40e-4997758ca6b4_normal.png", - "profile_background_color": "ACDED6", - "created_at": "Tue Jul 24 20:19:29 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268590618/eightbit-f0b3028b-8d9a-495c-b40e-4997758ca6b4_normal.png", - "favourites_count": 152, - "status": { - "retweet_count": 204, - "retweeted_status": { - "retweet_count": 204, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "670818411476291584", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 149, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 451, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 264, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", - "type": "photo", - "indices": [ - 84, - 107 - ], - "media_url": "http://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", - "display_url": "pic.twitter.com/TdOEFjCSHZ", - "id_str": "670818410016538624", - "expanded_url": "http://twitter.com/mattcutts/status/670818411476291584/photo/1", - "id": 670818410016538624, - "url": "https://t.co/TdOEFjCSHZ" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buzzfeed.com/sarahmathews/h\u2026", - "url": "https://t.co/b5aAcBpo2x", - "expanded_url": "http://www.buzzfeed.com/sarahmathews/how-to-get-your-green-card-in-america#.taAVLxo5Y", - "indices": [ - 22, - 45 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Nov 29 04:15:47 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 670818411476291584, - "text": "An immigrant's story: https://t.co/b5aAcBpo2x\n\nIt's a really good (important) read. https://t.co/TdOEFjCSHZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 261, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "670833853431422976", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 149, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 451, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 264, - "resize": "fit" - } - }, - "source_status_id_str": "670818411476291584", - "url": "https://t.co/TdOEFjCSHZ", - "media_url": "http://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", - "source_user_id_str": "3080761", - "id_str": "670818410016538624", - "id": 670818410016538624, - "media_url_https": "https://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", - "type": "photo", - "indices": [ - 99, - 122 - ], - "source_status_id": 670818411476291584, - "source_user_id": 3080761, - "display_url": "pic.twitter.com/TdOEFjCSHZ", - "expanded_url": "http://twitter.com/mattcutts/status/670818411476291584/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buzzfeed.com/sarahmathews/h\u2026", - "url": "https://t.co/b5aAcBpo2x", - "expanded_url": "http://www.buzzfeed.com/sarahmathews/how-to-get-your-green-card-in-america#.taAVLxo5Y", - "indices": [ - 37, - 60 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mattcutts", - "id_str": "3080761", - "id": 3080761, - "indices": [ - 3, - 13 - ], - "name": "Matt Cutts" - } - ] - }, - "created_at": "Sun Nov 29 05:17:08 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 670833853431422976, - "text": "RT @mattcutts: An immigrant's story: https://t.co/b5aAcBpo2x\n\nIt's a really good (important) read. https://t.co/TdOEFjCSHZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 7693892, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 441, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5746882", - "following": false, - "friends_count": 6134, - "entities": { - "description": { - "urls": [ - { - "display_url": "openhumans.org", - "url": "https://t.co/ycsix8FQSf", - "expanded_url": "http://openhumans.org", - "indices": [ - 91, - 114 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "beaugunderson.com", - "url": "https://t.co/de9VPgyMpj", - "expanded_url": "https://beaugunderson.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", - "notifications": false, - "profile_sidebar_fill_color": "F5F5F5", - "profile_link_color": "2D2823", - "geo_enabled": true, - "followers_count": 7380, - "location": "Seattle, WA", - "screen_name": "beaugunderson", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 175, - "name": "new beauginnings", - "profile_use_background_image": true, - "description": "feminist, feeling-haver, net art maker, #botALLY \u2665 javascript & python \u26a1\ufe0f pronouns: he/him https://t.co/ycsix8FQSf", - "url": "https://t.co/de9VPgyMpj", - "profile_text_color": "273633", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", - "profile_background_color": "204443", - "created_at": "Thu May 03 17:46:35 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "1A3230", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", - "favourites_count": 16157, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685605086504996864", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/nerdgarbagebot\u2026", - "url": "https://t.co/4kDdEz0rci", - "expanded_url": "https://twitter.com/nerdgarbagebot/status/685600694389309440", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:32:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685605086504996864, - "text": "not gonna lie i'd watch this if it came to key arena https://t.co/4kDdEz0rci", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 5746882, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", - "statuses_count": 14389, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5746882/1398198050", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "185682669", - "following": false, - "friends_count": 188, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jeremydove.WordPress.com", - "url": "http://t.co/09i6MGDXMz", - "expanded_url": "http://jeremydove.WordPress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 29, - "location": "Web", - "screen_name": "dovejeremy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Jeremy Dove", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/09i6MGDXMz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1796590654/DADD6983-561F-4E42-A57D-8CA98C0B5285_normal", - "profile_background_color": "131516", - "created_at": "Wed Sep 01 15:46:02 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1796590654/DADD6983-561F-4E42-A57D-8CA98C0B5285_normal", - "favourites_count": 18, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "unread_app", - "in_reply_to_user_id": 1616252148, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "595026850016923648", - "id": 595026850016923648, - "text": "@unread_app is there any way to add a new feed with the app?", - "in_reply_to_user_id_str": "1616252148", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "unread_app", - "id_str": "1616252148", - "id": 1616252148, - "indices": [ - 0, - 11 - ], - "name": "Unread" - } - ] - }, - "created_at": "Mon May 04 00:47:10 +0000 2015", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 185682669, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 401, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14127311", - "following": false, - "friends_count": 157, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/gwoo", - "url": "http://t.co/ZzcXX4NxLe", - "expanded_url": "http://github.com/gwoo", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/47979086/twitter-bg.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "029CD4", - "geo_enabled": true, - "followers_count": 1077, - "location": "Venice, CA", - "screen_name": "gwoo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 121, - "name": "gwoo", - "profile_use_background_image": true, - "description": "Likes building things.", - "url": "http://t.co/ZzcXX4NxLe", - "profile_text_color": "080808", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/76190782/Picture_4_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Mar 11 20:55:23 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/76190782/Picture_4_normal.jpg", - "favourites_count": 25, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 13799152, - "possibly_sensitive": false, - "id_str": "598902558845964288", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "aphyr.com/tags/jepsen", - "url": "https://t.co/46Sufv0orQ", - "expanded_url": "https://aphyr.com/tags/jepsen", - "indices": [ - 8, - 31 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "phishy", - "id_str": "13799152", - "id": 13799152, - "indices": [ - 0, - 7 - ], - "name": "Jeff Loiselle" - } - ] - }, - "created_at": "Thu May 14 17:27:51 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "13799152", - "place": null, - "in_reply_to_screen_name": "phishy", - "in_reply_to_status_id_str": "598854227423821824", - "truncated": false, - "id": 598902558845964288, - "text": "@phishy https://t.co/46Sufv0orQ", - "coordinates": null, - "in_reply_to_status_id": 598854227423821824, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 14127311, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/47979086/twitter-bg.png", - "statuses_count": 2698, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16388864", - "following": false, - "friends_count": 353, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/sixty4k", - "url": "http://t.co/ETlIgYv3ja", - "expanded_url": "http://about.me/sixty4k", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 390, - "location": "iPhone: 42.247345,-122.777405", - "screen_name": "sixty4k", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 23, - "name": "My Name is Mike", - "profile_use_background_image": true, - "description": "Internet janitor. Music collector/dj. Well meaning jerk. I devops the kanban of your agile lean.", - "url": "http://t.co/ETlIgYv3ja", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3140107376/eda338219ad74533f0c7fcec945ec7ac_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Sep 21 08:31:04 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3140107376/eda338219ad74533f0c7fcec945ec7ac_normal.jpeg", - "favourites_count": 3183, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "philiph", - "in_reply_to_user_id": 31693, - "in_reply_to_status_id_str": "685562636746895360", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685569787116826627", - "id": 685569787116826627, - "text": "@philiph FreeBSD? ooohhhhh, BeOS!? but srsly, get an SSD.", - "in_reply_to_user_id_str": "31693", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "philiph", - "id_str": "31693", - "id": 31693, - "indices": [ - 0, - 8 - ], - "name": "Philip J. Hollenback" - } - ] - }, - "created_at": "Fri Jan 08 21:12:29 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685562636746895360, - "lang": "en" - }, - "default_profile_image": false, - "id": 16388864, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 8364, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16388864/1419747240", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2788841", - "following": false, - "friends_count": 1338, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gRegorLove.com", - "url": "http://t.co/pM0DwbswIl", - "expanded_url": "http://gRegorLove.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138274533/SVWXap2U.png", - "notifications": false, - "profile_sidebar_fill_color": "E3E8FF", - "profile_link_color": "E00000", - "geo_enabled": true, - "followers_count": 1062, - "location": "Bellingham, WA", - "screen_name": "gRegorLove", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 75, - "name": "gRegor Morrill", - "profile_use_background_image": false, - "description": "music, faith, computer geekery, friends, liberty", - "url": "http://t.co/pM0DwbswIl", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/421355267800846336/9KjkIhvZ_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Thu Mar 29 04:43:14 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/421355267800846336/9KjkIhvZ_normal.jpeg", - "favourites_count": 22100, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "indiana_mama", - "in_reply_to_user_id": 121468302, - "in_reply_to_status_id_str": "685490719482626048", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685569803935821825", - "id": 685569803935821825, - "text": "@indiana_mama Probably after I finish _To Kill a Mockingbird_ and _Go Set a Watchman_.", - "in_reply_to_user_id_str": "121468302", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "indiana_mama", - "id_str": "121468302", - "id": 121468302, - "indices": [ - 0, - 13 - ], - "name": "Isha" - } - ] - }, - "created_at": "Fri Jan 08 21:12:33 +0000 2016", - "source": "Bridgy", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685490719482626048, - "lang": "en" - }, - "default_profile_image": false, - "id": 2788841, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138274533/SVWXap2U.png", - "statuses_count": 47029, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2788841/1357663506", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6964862", - "following": false, - "friends_count": 420, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/zerohalo", - "url": "https://t.co/jZZxidwL7w", - "expanded_url": "http://about.me/zerohalo", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 207, - "location": "Cambridge, Massachusetts", - "screen_name": "zerohalo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "Alan Graham", - "profile_use_background_image": true, - "description": "Just a geek that occasionally gets creative.", - "url": "https://t.co/jZZxidwL7w", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667085904796848128/yeFFAx6r_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Jun 20 12:44:06 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667085904796848128/yeFFAx6r_normal.jpg", - "favourites_count": 138, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682788358653882368", - "id": 682788358653882368, - "text": "Happy New Year!!!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 05:00:04 +0000 2016", - "source": "IFTTT", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 6964862, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 180, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11437862", - "following": false, - "friends_count": 469, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "brianlyttle.com", - "url": "https://t.co/ZLWdFllNPJ", - "expanded_url": "http://www.brianlyttle.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/214582547/blgrid.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "3958F5", - "geo_enabled": false, - "followers_count": 342, - "location": "Deep backwards square leg", - "screen_name": "brianly", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Brian Lyttle", - "profile_use_background_image": true, - "description": "Cloud Therapist at Yammer. Northern Ireland to Philadelphia via Manchester. Husband. C# and Python hacker. Photographer. Cyclist. Scuba. MUFC.", - "url": "https://t.co/ZLWdFllNPJ", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662301402337820672/npI4RiZD_normal.jpg", - "profile_background_color": "352726", - "created_at": "Sat Dec 22 19:09:45 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662301402337820672/npI4RiZD_normal.jpg", - "favourites_count": 319, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684531072105865217", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "qz.com/584874/you-pro\u2026", - "url": "https://t.co/QzpPweizjx", - "expanded_url": "http://qz.com/584874/you-probably-know-to-ask-yourself-what-do-i-want-heres-a-way-better-question/", - "indices": [ - 82, - 105 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 00:25:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684531072105865217, - "text": "You probably know to ask yourself, \u201cWhat do I want?\u201d Here\u2019s a way better question https://t.co/QzpPweizjx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 11437862, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/214582547/blgrid.gif", - "statuses_count": 1676, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11437862/1400990669", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "20182605", - "following": false, - "friends_count": 367, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "joedoyle.us", - "url": "http://t.co/bKxUjxFrF0", - "expanded_url": "http://joedoyle.us/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 202, - "location": "Oakland, CA", - "screen_name": "JoeDoyle23", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Joe Doyle", - "profile_use_background_image": false, - "description": "I love to Node and JavaScript. Brewer of beer and raiser of children. And other stuff. Head of Server @app_press", - "url": "http://t.co/bKxUjxFrF0", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/651126158143033344/n1qRgpfr_normal.png", - "profile_background_color": "000000", - "created_at": "Thu Feb 05 20:16:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651126158143033344/n1qRgpfr_normal.png", - "favourites_count": 88, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685298883170177024", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 271, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 478, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 817, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", - "type": "photo", - "indices": [ - 62, - 85 - ], - "media_url": "http://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", - "display_url": "pic.twitter.com/PuR6RHNjVD", - "id_str": "685298879047188481", - "expanded_url": "http://twitter.com/sfnode/status/685298883170177024/photo/1", - "id": 685298879047188481, - "url": "https://t.co/PuR6RHNjVD" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 45, - 52 - ], - "text": "SFNode" - }, - { - "indices": [ - 54, - 61 - ], - "text": "nodejs" - } - ], - "user_mentions": [ - { - "screen_name": "MuleSoft", - "id_str": "15358364", - "id": 15358364, - "indices": [ - 11, - 20 - ], - "name": "MuleSoft" - } - ] - }, - "created_at": "Fri Jan 08 03:16:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685298883170177024, - "text": "Thank you, @MuleSoft for hosting the January #SFNode. #nodejs https://t.co/PuR6RHNjVD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685300256796360705", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 271, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 478, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 817, - "resize": "fit" - } - }, - "source_status_id_str": "685298883170177024", - "url": "https://t.co/PuR6RHNjVD", - "media_url": "http://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", - "source_user_id_str": "2800676574", - "id_str": "685298879047188481", - "id": 685298879047188481, - "media_url_https": "https://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", - "type": "photo", - "indices": [ - 74, - 97 - ], - "source_status_id": 685298883170177024, - "source_user_id": 2800676574, - "display_url": "pic.twitter.com/PuR6RHNjVD", - "expanded_url": "http://twitter.com/sfnode/status/685298883170177024/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 57, - 64 - ], - "text": "SFNode" - }, - { - "indices": [ - 66, - 73 - ], - "text": "nodejs" - } - ], - "user_mentions": [ - { - "screen_name": "sfnode", - "id_str": "2800676574", - "id": 2800676574, - "indices": [ - 3, - 10 - ], - "name": "SFNode" - }, - { - "screen_name": "MuleSoft", - "id_str": "15358364", - "id": 15358364, - "indices": [ - 23, - 32 - ], - "name": "MuleSoft" - } - ] - }, - "created_at": "Fri Jan 08 03:21:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685300256796360705, - "text": "RT @sfnode: Thank you, @MuleSoft for hosting the January #SFNode. #nodejs https://t.co/PuR6RHNjVD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 20182605, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 843, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/20182605/1444075879", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14828394", - "following": false, - "friends_count": 368, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ramimassoud.com", - "url": "http://t.co/GrPTeAGqdy", - "expanded_url": "http://www.ramimassoud.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 444, - "location": "Brooklyn, NY", - "screen_name": "ramimassoud", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "Rami Massoud", - "profile_use_background_image": true, - "description": "Software Engineer @ Blue Apron, amateur sys admin, tinkerer, weightlifter, wannabe personal trainer, Android & Google fanboy, a man with far too many interests.", - "url": "http://t.co/GrPTeAGqdy", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/534064169327558656/aCkK3-tV_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Mon May 19 04:11:47 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534064169327558656/aCkK3-tV_normal.jpeg", - "favourites_count": 83, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684789080660537348", - "geo": { - "coordinates": [ - 40.7209972, - -73.99769172 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "swarmapp.com/c/41APiX0kUEA", - "url": "https://t.co/BplvNzMSqr", - "expanded_url": "https://www.swarmapp.com/c/41APiX0kUEA", - "indices": [ - 64, - 87 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BrinkleysNYC", - "id_str": "521470746", - "id": 521470746, - "indices": [ - 34, - 47 - ], - "name": "Brinkley's " - } - ] - }, - "created_at": "Wed Jan 06 17:30:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.026675, - 40.683935 - ], - [ - -73.910408, - 40.683935 - ], - [ - -73.910408, - 40.877483 - ], - [ - -74.026675, - 40.877483 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Manhattan, NY", - "id": "01a9a39529b27f36", - "name": "Manhattan" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684789080660537348, - "text": "I'm at Brinkley's Broome Street - @brinkleysnyc in New York, NY https://t.co/BplvNzMSqr", - "coordinates": { - "coordinates": [ - -73.99769172, - 40.7209972 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Foursquare" - }, - "default_profile_image": false, - "id": 14828394, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 10713, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14828394/1416165880", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "3058771", - "following": false, - "friends_count": 1126, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "laurathomson.com", - "url": "http://t.co/wAR61EciPl", - "expanded_url": "http://www.laurathomson.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 5049, - "location": "New Windsor, MD", - "screen_name": "lxt", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 490, - "name": "Laura Thomson", - "profile_use_background_image": false, - "description": "Director of Cloud Services Engineering & Operations at Mozilla; lives on farm with horses; author of tech books and a novel; mum of 5yo. Also: Australian.", - "url": "http://t.co/wAR61EciPl", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/34583482/laura_tinker_normal.jpg", - "profile_background_color": "784C4C", - "created_at": "Sat Mar 31 12:41:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/34583482/laura_tinker_normal.jpg", - "favourites_count": 4943, - "status": { - "retweet_count": 26, - "retweeted_status": { - "retweet_count": 26, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684823328033517568", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/c4HJ6If6IA", - "url": "https://t.co/c4HJ6If6IA", - "expanded_url": "http://twitter.com/EightSexyLegs/status/684823328033517568/photo/1", - "indices": [ - 8, - 31 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 7 - ], - "text": "WTFWed" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 19:46:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684823328033517568, - "text": "#WTFWed https://t.co/c4HJ6If6IA", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 37, - "contributors": null, - "source": "Twitter for iPad" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685276347875209216", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/c4HJ6If6IA", - "url": "https://t.co/c4HJ6If6IA", - "expanded_url": "http://twitter.com/EightSexyLegs/status/684823328033517568/photo/1", - "indices": [ - 27, - 50 - ] - } - ], - "hashtags": [ - { - "indices": [ - 19, - 26 - ], - "text": "WTFWed" - } - ], - "user_mentions": [ - { - "screen_name": "EightSexyLegs", - "id_str": "2792800220", - "id": 2792800220, - "indices": [ - 3, - 17 - ], - "name": "Lady Lovecraft" - } - ] - }, - "created_at": "Fri Jan 08 01:46:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685276347875209216, - "text": "RT @EightSexyLegs: #WTFWed https://t.co/c4HJ6If6IA", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 3058771, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 11218, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3058771/1398196148", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "95265455", - "following": false, - "friends_count": 581, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/mixdown", - "url": "http://t.co/cfUQCzqHGU", - "expanded_url": "http://www.github.com/mixdown", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 367, - "location": "Austin, TX", - "screen_name": "tommymessbauer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Tommy Messbauer", - "profile_use_background_image": true, - "description": "JavaScript, Neo4j, Tacos. CTO at CBANC Network. Austin, TX.", - "url": "http://t.co/cfUQCzqHGU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/585634870916952066/-nE4XAJg_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 07 19:41:46 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/585634870916952066/-nE4XAJg_normal.jpg", - "favourites_count": 164, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683857944601952258", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/EmrgencyKitten\u2026", - "url": "https://t.co/xjKNLuKWU2", - "expanded_url": "https://twitter.com/EmrgencyKittens/status/683845387631902722", - "indices": [ - 31, - 54 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 03:50:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683857944601952258, - "text": "Is like 1 of everything please https://t.co/xjKNLuKWU2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 95265455, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1245, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/95265455/1421289194", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "107069240", - "following": false, - "friends_count": 2466, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/neillink", - "url": "https://t.co/TrqIrP1Pqr", - "expanded_url": "https://www.linkedin.com/in/neillink", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078007193/be505da5510f0199bd76494073afe194.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3F8DBF", - "geo_enabled": true, - "followers_count": 2502, - "location": "Ardsley, NY, USA", - "screen_name": "Neil_Link", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 467, - "name": "Neil Link", - "profile_use_background_image": true, - "description": "Web Specialist @ColumbiaMed in #NYC husband, father of 2 boys, I tweet #Growthhacking #UX #WebDesign #WordPress #Drupal #Marketing #Analytics #SEO #Healthcare", - "url": "https://t.co/TrqIrP1Pqr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674112006782328832/Es47kuDF_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jan 21 13:28:52 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674112006782328832/Es47kuDF_normal.jpg", - "favourites_count": 1748, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685066647145676800", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1ONxiyu", - "url": "https://t.co/as1uB9tCsm", - "expanded_url": "http://buff.ly/1ONxiyu", - "indices": [ - 59, - 82 - ] - } - ], - "hashtags": [ - { - "indices": [ - 12, - 15 - ], - "text": "UX" - }, - { - "indices": [ - 54, - 58 - ], - "text": "SEO" - } - ], - "user_mentions": [ - { - "screen_name": "usertesting", - "id_str": "16262203", - "id": 16262203, - "indices": [ - 87, - 99 - ], - "name": "UserTesting" - } - ] - }, - "created_at": "Thu Jan 07 11:53:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685066647145676800, - "text": "3 Ways That #UX Professionals Can Contribute to Great #SEO https://t.co/as1uB9tCsm via @usertesting", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 107069240, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078007193/be505da5510f0199bd76494073afe194.jpeg", - "statuses_count": 4453, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/107069240/1401216248", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "1497", - "following": false, - "friends_count": 1018, - "entities": { - "description": { - "urls": [ - { - "display_url": "bit.ly/r1GnK", - "url": "http://t.co/13wugYdFb3", - "expanded_url": "http://bit.ly/r1GnK", - "indices": [ - 56, - 78 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "harperreed.com", - "url": "http://t.co/bMyxp4Tgf6", - "expanded_url": "http://harperreed.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/1222/6335_copy.gif", - "notifications": false, - "profile_sidebar_fill_color": "D6DEE1", - "profile_link_color": "3399CC", - "geo_enabled": true, - "followers_count": 32539, - "location": "Chicago, IL", - "screen_name": "harper", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 1663, - "name": "harper", - "profile_use_background_image": true, - "description": "I am pretty awesome. Check out this guide to my tweets: http://t.co/13wugYdFb3 // former CTO @ Obama for America // founder of @Modest (acquired by @paypal)", - "url": "http://t.co/bMyxp4Tgf6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/550153119208726529/ZZqJSFpi_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Sun Jul 16 18:45:58 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/550153119208726529/ZZqJSFpi_normal.jpeg", - "favourites_count": 13680, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/f54a2170ff4b15f7.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -91.51308, - 36.970298 - ], - [ - -87.019935, - 36.970298 - ], - [ - -87.019935, - 42.508303 - ], - [ - -91.51308, - 42.508303 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Illinois, USA", - "id": "f54a2170ff4b15f7", - "name": "Illinois" - }, - "in_reply_to_screen_name": "jkriss", - "in_reply_to_user_id": 7475972, - "in_reply_to_status_id_str": "685594029271040000", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685594792307212288", - "id": 685594792307212288, - "text": "@jkriss @dylanr they already do.", - "in_reply_to_user_id_str": "7475972", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jkriss", - "id_str": "7475972", - "id": 7475972, - "indices": [ - 0, - 7 - ], - "name": "Jesse Kriss" - }, - { - "screen_name": "dylanr", - "id_str": "1042361", - "id": 1042361, - "indices": [ - 8, - 15 - ], - "name": "Dylan Richard" - } - ] - }, - "created_at": "Fri Jan 08 22:51:50 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685594029271040000, - "lang": "en" - }, - "default_profile_image": false, - "id": 1497, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/1222/6335_copy.gif", - "statuses_count": 60001, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1497/1398220532", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15716821", - "following": false, - "friends_count": 245, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 122, - "location": "Seattle", - "screen_name": "joneholland", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Jonathan Holland", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2196369645/224791_10150295475763345_677498344_9575803_3828841_n_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Aug 04 01:42:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2196369645/224791_10150295475763345_677498344_9575803_3828841_n_normal.jpg", - "favourites_count": 81, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jonfaulkenberry", - "in_reply_to_user_id": 14447782, - "in_reply_to_status_id_str": "684537269730983936", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684540067138777088", - "id": 684540067138777088, - "text": "@jonfaulkenberry Oh, that's a real thing. Startups these days.", - "in_reply_to_user_id_str": "14447782", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jonfaulkenberry", - "id_str": "14447782", - "id": 14447782, - "indices": [ - 0, - 16 - ], - "name": "Jon Faulkenberry" - } - ] - }, - "created_at": "Wed Jan 06 01:00:44 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684537269730983936, - "lang": "en" - }, - "default_profile_image": false, - "id": 15716821, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3545, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15716821/1405878457", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3241601", - "following": false, - "friends_count": 509, - "entities": { - "description": { - "urls": [ - { - "display_url": "meh.com", - "url": "https://t.co/qCjFrI6d3T", - "expanded_url": "https://meh.com", - "indices": [ - 75, - 98 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "meh.com", - "url": "https://t.co/qCjFrHxyTP", - "expanded_url": "https://meh.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1105, - "location": "St. Louis, MO", - "screen_name": "smiller", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 59, - "name": "Shawn Miller", - "profile_use_background_image": true, - "description": "Co-Founder, CTO of @mediocrelabs (formerly of @woot). Most recent project: https://t.co/qCjFrI6d3T", - "url": "https://t.co/qCjFrHxyTP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3577947718/40d10a68196672e0e17fb110f9a0aef0_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Apr 02 19:26:52 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3577947718/40d10a68196672e0e17fb110f9a0aef0_normal.jpeg", - "favourites_count": 554, - "status": { - "retweet_count": 219, - "retweeted_status": { - "retweet_count": 219, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684895818780901376", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 194, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 344, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 587, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", - "type": "photo", - "indices": [ - 82, - 105 - ], - "media_url": "http://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", - "display_url": "pic.twitter.com/CuMbZD9ZjL", - "id_str": "684895817778466820", - "expanded_url": "http://twitter.com/TheNextWeb/status/684895818780901376/photo/1", - "id": 684895817778466820, - "url": "https://t.co/CuMbZD9ZjL" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "tnw.me/eNECesx", - "url": "https://t.co/8cyEVgiQbN", - "expanded_url": "http://tnw.me/eNECesx", - "indices": [ - 58, - 81 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 00:34:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684895818780901376, - "text": "Get excited: Internet Explorer 8, 9 and 10 die on Tuesday https://t.co/8cyEVgiQbN https://t.co/CuMbZD9ZjL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 115, - "contributors": null, - "source": "SocialFlow" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684896699316318209", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 194, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 344, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 587, - "resize": "fit" - } - }, - "source_status_id_str": "684895818780901376", - "url": "https://t.co/CuMbZD9ZjL", - "media_url": "http://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", - "source_user_id_str": "10876852", - "id_str": "684895817778466820", - "id": 684895817778466820, - "media_url_https": "https://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", - "type": "photo", - "indices": [ - 98, - 121 - ], - "source_status_id": 684895818780901376, - "source_user_id": 10876852, - "display_url": "pic.twitter.com/CuMbZD9ZjL", - "expanded_url": "http://twitter.com/TheNextWeb/status/684895818780901376/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "tnw.me/eNECesx", - "url": "https://t.co/8cyEVgiQbN", - "expanded_url": "http://tnw.me/eNECesx", - "indices": [ - 74, - 97 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheNextWeb", - "id_str": "10876852", - "id": 10876852, - "indices": [ - 3, - 14 - ], - "name": "The Next Web" - } - ] - }, - "created_at": "Thu Jan 07 00:37:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684896699316318209, - "text": "RT @TheNextWeb: Get excited: Internet Explorer 8, 9 and 10 die on Tuesday https://t.co/8cyEVgiQbN https://t.co/CuMbZD9ZjL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3241601, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3619, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3241601/1375155591", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "16350343", - "following": false, - "friends_count": 140, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 138, - "location": "Dubuque/San Jose", - "screen_name": "chad3814", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Chad Walker", - "profile_use_background_image": true, - "description": "ya know, I do stuff", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459055261701787649/mNe_P6yV_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Sep 18 18:08:47 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459055261701787649/mNe_P6yV_normal.jpeg", - "favourites_count": 779, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685471954078412800", - "id": 685471954078412800, - "text": "This is amazing", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:43:43 +0000 2016", - "source": "IFTTT", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 16350343, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3329, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16350343/1402684911", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "14156277", - "following": false, - "friends_count": 467, - "entities": { - "description": { - "urls": [ - { - "display_url": "xkcd.com/1053", - "url": "https://t.co/HvLA1ZBXmI", - "expanded_url": "http://xkcd.com/1053", - "indices": [ - 102, - 125 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "motowilliams.com", - "url": "https://t.co/ZgEB6wuZx4", - "expanded_url": "http://www.motowilliams.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/181362032/BikeWheel.jpg", - "notifications": false, - "profile_sidebar_fill_color": "9E9E9E", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 733, - "location": "Florence, Mt", - "screen_name": "MotoWilliams", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 78, - "name": "Eric Williams", - "profile_use_background_image": true, - "description": "Human | Husband | Father | Archery | Hunting | Fishing | Mountains | Motorcycles | \u266cusic | Software | https://t.co/HvLA1ZBXmI | Opinions === Mine", - "url": "https://t.co/ZgEB6wuZx4", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684129451592921088/O53po1Q__normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Sun Mar 16 05:07:22 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684129451592921088/O53po1Q__normal.jpg", - "favourites_count": 6673, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609988971073536", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "docs.octopusdeploy.com", - "url": "https://t.co/Ph1dgN0K3P", - "expanded_url": "http://docs.octopusdeploy.com", - "indices": [ - 45, - 68 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "OctopusDeploy", - "id_str": "623700982", - "id": 623700982, - "indices": [ - 8, - 22 - ], - "name": "OctopusDeploy" - }, - { - "screen_name": "paulstovell", - "id_str": "5523802", - "id": 5523802, - "indices": [ - 70, - 82 - ], - "name": "Paul Stovell" - } - ] - }, - "created_at": "Fri Jan 08 23:52:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609988971073536, - "text": "Are the @OctopusDeploy docs down or just me? https://t.co/Ph1dgN0K3P +@paulstovell", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 14156277, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/181362032/BikeWheel.jpg", - "statuses_count": 40966, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14156277/1398196926", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "125027291", - "following": false, - "friends_count": 945, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "substack.net", - "url": "http://t.co/6KoJQ4Tuc3", - "expanded_url": "http://substack.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 17926, - "location": "Oakland", - "screen_name": "substack", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 891, - "name": "substack", - "profile_use_background_image": true, - "description": "...", - "url": "http://t.co/6KoJQ4Tuc3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3342514715/3fde89df63ea4dacf9de71369019df22_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Mar 21 12:31:12 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3342514715/3fde89df63ea4dacf9de71369019df22_normal.png", - "favourites_count": 218, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "thlorenz", - "in_reply_to_user_id": 174726123, - "in_reply_to_status_id_str": "685508298917986305", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685520249416974336", - "id": 685520249416974336, - "text": "@thlorenz medellin is great!", - "in_reply_to_user_id_str": "174726123", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thlorenz", - "id_str": "174726123", - "id": 174726123, - "indices": [ - 0, - 9 - ], - "name": "Thorsten Lorenz" - } - ] - }, - "created_at": "Fri Jan 08 17:55:38 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685508298917986305, - "lang": "en" - }, - "default_profile_image": false, - "id": 125027291, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8790, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/125027291/1353491796", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6899112", - "following": false, - "friends_count": 762, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "justin.abrah.ms", - "url": "https://t.co/WLkSUuncSH", - "expanded_url": "https://justin.abrah.ms", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/102154262/twitter_header.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFF0", - "profile_link_color": "1D521D", - "geo_enabled": true, - "followers_count": 2118, - "location": "Cambridge, MA", - "screen_name": "justinabrahms", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 198, - "name": "Justin Abrahms", - "profile_use_background_image": false, - "description": "Founder of BetterDiff, an automated code coverage tool. Engineer. Marketer? Nerd.", - "url": "https://t.co/WLkSUuncSH", - "profile_text_color": "1A1001", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/587695307766374402/mABPHAMF_normal.jpg", - "profile_background_color": "273B28", - "created_at": "Mon Jun 18 20:33:27 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/587695307766374402/mABPHAMF_normal.jpg", - "favourites_count": 1171, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 4380901, - "possibly_sensitive": false, - "id_str": "685487117498191873", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "lh3.googleusercontent.com/-nvAFJ73mXlk/V\u2026", - "url": "https://t.co/6hbwJVPRuH", - "expanded_url": "https://lh3.googleusercontent.com/-nvAFJ73mXlk/Vo03ikpmKWI/AAAAAAAAn7w/S-Z48VuF7KU/w457-h380-rw/kisa_2.gif", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "electromute", - "id_str": "4380901", - "id": 4380901, - "indices": [ - 0, - 12 - ], - "name": "Ingrid Alongi" - } - ] - }, - "created_at": "Fri Jan 08 15:43:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "4380901", - "place": null, - "in_reply_to_screen_name": "electromute", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685487117498191873, - "text": "@electromute Next time you visit Portland, you should check out their track racing team. \n\nhttps://t.co/6hbwJVPRuH", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 6899112, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/102154262/twitter_header.png", - "statuses_count": 14210, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6899112/1354173651", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "17950990", - "following": false, - "friends_count": 2152, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dinhe.net/~aredridel/", - "url": "http://t.co/M8UUTeuY4z", - "expanded_url": "http://dinhe.net/~aredridel/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": true, - "followers_count": 2516, - "location": "Somerville, MA", - "screen_name": "aredridel", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 185, - "name": "Aria Stewart", - "profile_use_background_image": true, - "description": "Random internet positive commenter & foul weather friend.\n\nUnschooler.\n\nwww at npmjs\n\n[Object object]\n\n\u2665\ufe0e node.js\n\n\u26a7", - "url": "http://t.co/M8UUTeuY4z", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/651825569735290880/JRbMsOV2_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Mon Dec 08 00:04:59 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651825569735290880/JRbMsOV2_normal.jpg", - "favourites_count": 20319, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "megapctr", - "in_reply_to_user_id": 990607400, - "in_reply_to_status_id_str": "685503517860204546", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685510235625271298", - "id": 685510235625271298, - "text": "@megapctr What sort of missing features have you found wanting?", - "in_reply_to_user_id_str": "990607400", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "megapctr", - "id_str": "990607400", - "id": 990607400, - "indices": [ - 0, - 9 - ], - "name": "Filip" - } - ] - }, - "created_at": "Fri Jan 08 17:15:50 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685503517860204546, - "lang": "en" - }, - "default_profile_image": false, - "id": 17950990, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "statuses_count": 53299, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17950990/1398362738", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "756084", - "following": false, - "friends_count": 556, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ruiningitforeveryone.tv", - "url": "https://t.co/s04EuVwJM4", - "expanded_url": "http://ruiningitforeveryone.tv", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 1122, - "location": "iPhone: 40.744831,-73.989326", - "screen_name": "octothorpe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 89, - "name": "CM Harrington", - "profile_use_background_image": true, - "description": "Dir. Creative Strategy at Gartner. Host of Ruining It For Everyone on iTunes. \nI speak for me alone.", - "url": "https://t.co/s04EuVwJM4", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/22686212/me_normal.jpg", - "profile_background_color": "352726", - "created_at": "Wed Feb 07 15:45:26 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/22686212/me_normal.jpg", - "favourites_count": 7269, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685595380290039808", - "id": 685595380290039808, - "text": "So, why aren't folks on PrEP called PrEPPies? That sounds way cooler than the alternative.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:54:11 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 756084, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 54061, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/756084/1428809294", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15394440", - "following": false, - "friends_count": 407, - "entities": { - "description": { - "urls": [ - { - "display_url": "github.com/chrisdickinson/", - "url": "https://t.co/v0Wne0tapL", - "expanded_url": "https://github.com/chrisdickinson/", - "indices": [ - 94, - 117 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "neversaw.us", - "url": "https://t.co/DKOJdPvUh1", - "expanded_url": "http://neversaw.us/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/83753896/bg_.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 1917, - "location": "Portland, OR", - "screen_name": "isntitvacant", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 136, - "name": "Chris Dickinson", - "profile_use_background_image": true, - "description": "there's no problem javascript can't solve or change into a bigger, more interesting problem | https://t.co/v0Wne0tapL", - "url": "https://t.co/DKOJdPvUh1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668015451243327489/6G04zB-4_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Jul 11 17:49:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668015451243327489/6G04zB-4_normal.jpg", - "favourites_count": 1954, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "isntitvacant", - "in_reply_to_user_id": 15394440, - "in_reply_to_status_id_str": "685523715182833664", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685524143182200832", - "id": 685524143182200832, - "text": "@HenrikJoreteg ... it sure is interesting to exhaust a problem space looking for the optimal (if not perfect) solution!", - "in_reply_to_user_id_str": "15394440", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "HenrikJoreteg", - "id_str": "15102110", - "id": 15102110, - "indices": [ - 0, - 14 - ], - "name": "Henrik Joreteg" - } - ] - }, - "created_at": "Fri Jan 08 18:11:06 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685523715182833664, - "lang": "en" - }, - "default_profile_image": false, - "id": 15394440, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/83753896/bg_.gif", - "statuses_count": 5619, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15394440/1412028986", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "256708520", - "following": false, - "friends_count": 218, - "entities": { - "description": { - "urls": [ - { - "display_url": "tesera.com", - "url": "https://t.co/sDJ88c2RvY", - "expanded_url": "http://tesera.com", - "indices": [ - 27, - 50 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "about.me/yvesrichard", - "url": "https://t.co/se48pwxTNe", - "expanded_url": "https://about.me/yvesrichard", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 91, - "location": "Golden, British Columbia", - "screen_name": "whyvez8", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Yves Richard", - "profile_use_background_image": true, - "description": "Senior Systems Developer @ https://t.co/sDJ88c2RvY, mountain enthusiast, io literarian.", - "url": "https://t.co/se48pwxTNe", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659911981206388736/PmAdI2y2_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Feb 23 22:47:52 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659911981206388736/PmAdI2y2_normal.jpg", - "favourites_count": 1187, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685129144317808640", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/addyosmani/sta\u2026", - "url": "https://t.co/tGbeZcqL5w", - "expanded_url": "https://twitter.com/addyosmani/status/684891142597554176", - "indices": [ - 7, - 30 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 16:01:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "tl", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685129144317808640, - "text": "bahaha https://t.co/tGbeZcqL5w", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 256708520, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 789, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/256708520/1398254080", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2602238342", - "following": false, - "friends_count": 234, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ryan.muller.io", - "url": "http://t.co/eeHqHjnmWo", - "expanded_url": "http://ryan.muller.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/509704798501756929/igNNglAV.png", - "notifications": false, - "profile_sidebar_fill_color": "F3C18C", - "profile_link_color": "003D7A", - "geo_enabled": false, - "followers_count": 97, - "location": "Tallahassee, FL", - "screen_name": "_r24y", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Ryan Muller", - "profile_use_background_image": false, - "description": "3D printing, JavaScript, and general hackery.", - "url": "http://t.co/eeHqHjnmWo", - "profile_text_color": "E39074", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/488683566151114754/fPo8MbIv_normal.jpeg", - "profile_background_color": "575457", - "created_at": "Thu Jul 03 20:56:22 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "E3CFB8", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/488683566151114754/fPo8MbIv_normal.jpeg", - "favourites_count": 385, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ZSchmois", - "in_reply_to_user_id": 4483108395, - "in_reply_to_status_id_str": "685231513986830336", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685232139965722629", - "id": 685232139965722629, - "text": "@ZSchmois super relevant! We can change this tomorrow", - "in_reply_to_user_id_str": "4483108395", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ZSchmois", - "id_str": "4483108395", - "id": 4483108395, - "indices": [ - 0, - 9 - ], - "name": "Zeke Schmois" - } - ] - }, - "created_at": "Thu Jan 07 22:50:47 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685231513986830336, - "lang": "en" - }, - "default_profile_image": false, - "id": 2602238342, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/509704798501756929/igNNglAV.png", - "statuses_count": 391, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2602238342/1418565500", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "15677320", - "following": false, - "friends_count": 609, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mikereedell.com", - "url": "http://t.co/LKwFFif0PK", - "expanded_url": "http://www.mikereedell.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": true, - "followers_count": 464, - "location": "Westminster, CO", - "screen_name": "mreedell", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "Mike Reedell", - "profile_use_background_image": false, - "description": "Software developer at Comcast VIPER. Gopher. Former 3x Ironman.", - "url": "http://t.co/LKwFFif0PK", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000838096401/8d33d6313a73391288fce158b7892e96_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Thu Jul 31 17:07:28 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000838096401/8d33d6313a73391288fce158b7892e96_normal.jpeg", - "favourites_count": 325, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "davidjrusek", - "in_reply_to_user_id": 280319660, - "in_reply_to_status_id_str": "684785992771842049", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684786667064930304", - "id": 684786667064930304, - "text": "@davidjrusek I hear you. My commute to Denver is easy. Either Denver or full-time remote for me in the future.", - "in_reply_to_user_id_str": "280319660", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "davidjrusek", - "id_str": "280319660", - "id": 280319660, - "indices": [ - 0, - 12 - ], - "name": "Dave with a 'D'" - } - ] - }, - "created_at": "Wed Jan 06 17:20:38 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684785992771842049, - "lang": "en" - }, - "default_profile_image": false, - "id": 15677320, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 3065, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15677320/1399598887", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16032953", - "following": false, - "friends_count": 393, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 72, - "location": "", - "screen_name": "deryni", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Etan Reisner", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2902759343/ed71a219892c95584141421f8c4d5917_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Aug 28 21:19:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2902759343/ed71a219892c95584141421f8c4d5917_normal.jpeg", - "favourites_count": 651, - "status": { - "retweet_count": 451, - "retweeted_status": { - "retweet_count": 451, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681583753987162112", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "code.google.com/p/google-secur\u2026", - "url": "https://t.co/n7Kv4tKJce", - "expanded_url": "https://code.google.com/p/google-security-research/issues/detail?id=675", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Dec 28 21:13:24 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681583753987162112, - "text": "AVG Antivirus Chrome extension hijacks browser, bypasses malware checks, and exposes users to security flaws https://t.co/n7Kv4tKJce", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 171, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681980856303513600", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "code.google.com/p/google-secur\u2026", - "url": "https://t.co/n7Kv4tKJce", - "expanded_url": "https://code.google.com/p/google-security-research/issues/detail?id=675", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SwiftOnSecurity", - "id_str": "2436389418", - "id": 2436389418, - "indices": [ - 3, - 19 - ], - "name": "SecuriTay" - } - ] - }, - "created_at": "Tue Dec 29 23:31:21 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681980856303513600, - "text": "RT @SwiftOnSecurity: AVG Antivirus Chrome extension hijacks browser, bypasses malware checks, and exposes users to security flaws https://t\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 16032953, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 334, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "98531887", - "following": false, - "friends_count": 298, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jesseditson.com", - "url": "http://t.co/DUStTlFFNZ", - "expanded_url": "http://jesseditson.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "FF7300", - "geo_enabled": true, - "followers_count": 425, - "location": "San Francisco", - "screen_name": "jesseditson", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Jesse Ditson", - "profile_use_background_image": true, - "description": "Wizard", - "url": "http://t.co/DUStTlFFNZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2213145520/image_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 22 02:58:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2213145520/image_normal.jpg", - "favourites_count": 473, - "status": { - "retweet_count": 982, - "retweeted_status": { - "retweet_count": 982, - "in_reply_to_user_id": 373564351, - "possibly_sensitive": false, - "id_str": "680443862687432704", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "vine.co/v/OMqDr7r0bKI", - "url": "https://t.co/ece7tlGEDE", - "expanded_url": "http://vine.co/v/OMqDr7r0bKI", - "indices": [ - 52, - 75 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Dec 25 17:43:53 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "373564351", - "place": null, - "in_reply_to_screen_name": "Khanoisseur", - "in_reply_to_status_id_str": "648872546335461376", - "truncated": false, - "id": 680443862687432704, - "text": "greatest Christmas gift unwrapping vine of all time https://t.co/ece7tlGEDE", - "coordinates": null, - "in_reply_to_status_id": 648872546335461376, - "favorite_count": 1047, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "680839022814494722", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "vine.co/v/OMqDr7r0bKI", - "url": "https://t.co/ece7tlGEDE", - "expanded_url": "http://vine.co/v/OMqDr7r0bKI", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Khanoisseur", - "id_str": "373564351", - "id": 373564351, - "indices": [ - 3, - 15 - ], - "name": "Adam Khan" - } - ] - }, - "created_at": "Sat Dec 26 19:54:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 680839022814494722, - "text": "RT @Khanoisseur: greatest Christmas gift unwrapping vine of all time https://t.co/ece7tlGEDE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 98531887, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3103, - "is_translator": false - }, - { - "time_zone": "La Paz", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "8533632", - "following": false, - "friends_count": 3166, - "entities": { - "description": { - "urls": [ - { - "display_url": "emberaddons.com", - "url": "https://t.co/0C0x1rcZv4", - "expanded_url": "http://emberaddons.com", - "indices": [ - 89, - 112 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "elweb.co", - "url": "https://t.co/kVZTn3FcBa", - "expanded_url": "http://elweb.co", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2988, - "location": "San Juan, Puerto Rico", - "screen_name": "gcollazo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 151, - "name": "Giovanni Collazo", - "profile_use_background_image": true, - "description": "Code + Design. @Blimp, @GasolinaMovil, @StartupsOfPR, @FullstackNights, @BuiltWithEmber, https://t.co/0C0x1rcZv4. Se habla Espa\u00f1ol. hello@gcollazo.com", - "url": "https://t.co/kVZTn3FcBa", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/645002062569213952/eS7i6YJO_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Aug 30 13:05:00 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645002062569213952/eS7i6YJO_normal.jpg", - "favourites_count": 3848, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685500634691452928", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BASPdlsgBKu/", - "url": "https://t.co/UPkfSDssv2", - "expanded_url": "https://www.instagram.com/p/BASPdlsgBKu/", - "indices": [ - 20, - 43 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:37:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685500634691452928, - "text": "Just posted a photo https://t.co/UPkfSDssv2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 8533632, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 17970, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8533632/1437859490", - "is_translator": false - }, - { - "time_zone": "Melbourne", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "14998770", - "following": false, - "friends_count": 141, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bluetigertech.com.au", - "url": "http://t.co/IXU8f2vC3K", - "expanded_url": "http://www.bluetigertech.com.au", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 25, - "location": "Pomonal Victoria Australia", - "screen_name": "daveywc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "David Compton", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/IXU8f2vC3K", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1682442728/David_Profile_Picture_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 03 23:10:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1682442728/David_Profile_Picture_normal.jpg", - "favourites_count": 33, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "650503056451239937", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "citizengo.org/en/30210-send-\u2026", - "url": "http://t.co/4kMGgdfnpX", - "expanded_url": "http://citizengo.org/en/30210-send-letter-denouncing-australias-deportation-peaceful-pro-life-speaker?tc=tw&tcid=16491525", - "indices": [ - 113, - 135 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Oct 04 02:49:49 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 650503056451239937, - "text": "Justice Geoffrey Nettle of the High Court of Australia: Send a letter denouncing Australia's deportation of a... http://t.co/4kMGgdfnpX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14998770, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 104, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15692193", - "following": false, - "friends_count": 731, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "feross.org", - "url": "http://t.co/Xk7quPGsmg", - "expanded_url": "http://feross.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000160435454/xj8GKj2U.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 9363, - "location": "Stanford, CA", - "screen_name": "feross", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 539, - "name": "Feross", - "profile_use_background_image": true, - "description": "Mad scientist, building @StudyNotesApp and @WebTorrentApp. Previously, founded @PeerCDN, Stanford '12.", - "url": "http://t.co/Xk7quPGsmg", - "profile_text_color": "5D8CBF", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458911857466560513/uKX6-c4z_normal.jpeg", - "profile_background_color": "990000", - "created_at": "Fri Aug 01 18:03:27 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458911857466560513/uKX6-c4z_normal.jpeg", - "favourites_count": 4400, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685610775055056896", - "id": 685610775055056896, - "text": "\"Debugging is 2x as hard as writing a program in the 1st place. So if you're as clever as can be when you write it, how will you debug it?\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:55:21 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15692193, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000160435454/xj8GKj2U.jpeg", - "statuses_count": 12257, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15692193/1449273254", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15116482", - "following": false, - "friends_count": 1882, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thewebivore.com", - "url": "http://t.co/bvhYAgzlQw", - "expanded_url": "http://thewebivore.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 4858, - "location": "Philadelphia, PA", - "screen_name": "pamasaur", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 374, - "name": "Pam Selle", - "profile_use_background_image": true, - "description": "Professional nerd, amateur humorist, author, herbivore, cyclist, and hacker. @recursecenter alum, @phillyjsdev cat herder. she/her", - "url": "http://t.co/bvhYAgzlQw", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495266631539388417/7DLEFWis_normal.jpeg", - "profile_background_color": "EBEBEB", - "created_at": "Sat Jun 14 12:58:09 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495266631539388417/7DLEFWis_normal.jpeg", - "favourites_count": 663, - "status": { - "retweet_count": 9, - "retweeted_status": { - "retweet_count": 9, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685268431336271872", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "hubs.ly/H01MfrH0", - "url": "https://t.co/IJL2mtiIVd", - "expanded_url": "http://hubs.ly/H01MfrH0", - "indices": [ - 97, - 120 - ] - } - ], - "hashtags": [ - { - "indices": [ - 122, - 133 - ], - "text": "remotework" - }, - { - "indices": [ - 134, - 138 - ], - "text": "rwd" - } - ], - "user_mentions": [ - { - "screen_name": "Skillcrush", - "id_str": "507709379", - "id": 507709379, - "indices": [ - 49, - 60 - ], - "name": "Skillcrush" - } - ] - }, - "created_at": "Fri Jan 08 01:15:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685268431336271872, - "text": "We are looking for a junior designer to join the @Skillcrush instructor team as a Web Design TA! https://t.co/IJL2mtiIVd\u2026 #remotework #rwd", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "HubSpot" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685271320104431616", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "hubs.ly/H01MfrH0", - "url": "https://t.co/IJL2mtiIVd", - "expanded_url": "http://hubs.ly/H01MfrH0", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "remotework" - }, - { - "indices": [ - 139, - 140 - ], - "text": "rwd" - } - ], - "user_mentions": [ - { - "screen_name": "Skillcrush", - "id_str": "507709379", - "id": 507709379, - "indices": [ - 3, - 14 - ], - "name": "Skillcrush" - }, - { - "screen_name": "Skillcrush", - "id_str": "507709379", - "id": 507709379, - "indices": [ - 65, - 76 - ], - "name": "Skillcrush" - } - ] - }, - "created_at": "Fri Jan 08 01:26:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685271320104431616, - "text": "RT @Skillcrush: We are looking for a junior designer to join the @Skillcrush instructor team as a Web Design TA! https://t.co/IJL2mtiIVd\u2026 #\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 15116482, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 9248, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15116482/1401891491", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2410813016", - "following": false, - "friends_count": 785, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3848, - "location": "London - Italy", - "screen_name": "nino_fontana", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Nino Fontana", - "profile_use_background_image": true, - "description": "PhD student. Ci\u00f2 che l'occhio \u00e8 per il corpo, la ragione lo \u00e8 per l'anima (Erasmo da Rotterdam)", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/452580209338744832/fOs_cvov_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Mar 25 10:49:33 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "it", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/452580209338744832/fOs_cvov_normal.jpeg", - "favourites_count": 317, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 85626417, - "possibly_sensitive": false, - "id_str": "680730135658643456", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tinyurl.com/ptrpk7x", - "url": "https://t.co/qZ1UX8oM1z", - "expanded_url": "http://tinyurl.com/ptrpk7x", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [ - { - "indices": [ - 103, - 114 - ], - "text": "Natale2015" - } - ], - "user_mentions": [ - { - "screen_name": "Gazzetta_it", - "id_str": "85626417", - "id": 85626417, - "indices": [ - 35, - 47 - ], - "name": "LaGazzettadelloSport" - } - ] - }, - "created_at": "Sat Dec 26 12:41:26 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "it", - "in_reply_to_user_id_str": "85626417", - "place": null, - "in_reply_to_screen_name": "Gazzetta_it", - "in_reply_to_status_id_str": "680389107806265344", - "truncated": false, - "id": 680730135658643456, - "text": "Il vero spirito del Natale secondo @Gazzetta_it, complimenti\r \"Con Angeli cos\u00ec non pu\u00f2 essere che Buon #Natale2015 https://t.co/qZ1UX8oM1z\"", - "coordinates": null, - "in_reply_to_status_id": 680389107806265344, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Windows Phone" - }, - "default_profile_image": false, - "id": 2410813016, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2414, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2410813016/1395746672", - "is_translator": false - }, - { - "time_zone": "Sydney", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "14180671", - "following": false, - "friends_count": 1902, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bytecodeartist.net", - "url": "http://t.co/eujmx5ZDq9", - "expanded_url": "http://www.bytecodeartist.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685970528/5077b01ec673f963a50580b055dde7b5.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F3F7D9", - "profile_link_color": "2D3873", - "geo_enabled": true, - "followers_count": 1369, - "location": "Earth", - "screen_name": "philiplaureano", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 110, - "name": "Philip Laureano", - "profile_use_background_image": false, - "description": "World Traveler, Avid Foodie, .NET Junkie/Human CLR, Amateur Photographer, AOP Enthusiast, and ILDasm Geek in this amazing home we call Earth", - "url": "http://t.co/eujmx5ZDq9", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2657709076/0037b8cb2ab7fb1cc61a1002e4f67251_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Mar 19 23:23:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2657709076/0037b8cb2ab7fb1cc61a1002e4f67251_normal.jpeg", - "favourites_count": 3301, - "status": { - "retweet_count": 239, - "retweeted_status": { - "retweet_count": 239, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685192813236088832", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mcaule.github.io/d3_exploding_b\u2026", - "url": "https://t.co/4jJHibAgnW", - "expanded_url": "http://mcaule.github.io/d3_exploding_boxplot/", - "indices": [ - 51, - 74 - ] - }, - { - "display_url": "pic.twitter.com/DUnQmbbNdP", - "url": "https://t.co/DUnQmbbNdP", - "expanded_url": "http://twitter.com/maartenzam/status/685192813236088832/photo/1", - "indices": [ - 93, - 116 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 3 - ], - "text": "D3" - } - ], - "user_mentions": [ - { - "screen_name": "NadiehBremer", - "id_str": "242069220", - "id": 242069220, - "indices": [ - 79, - 92 - ], - "name": "Nadieh Bremer" - } - ] - }, - "created_at": "Thu Jan 07 20:14:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "sv", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685192813236088832, - "text": "#D3 Exploding box plot (aka imploding scatterplot) https://t.co/4jJHibAgnW Via @NadiehBremer https://t.co/DUnQmbbNdP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 319, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685317541200187392", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mcaule.github.io/d3_exploding_b\u2026", - "url": "https://t.co/4jJHibAgnW", - "expanded_url": "http://mcaule.github.io/d3_exploding_boxplot/", - "indices": [ - 67, - 90 - ] - }, - { - "display_url": "pic.twitter.com/DUnQmbbNdP", - "url": "https://t.co/DUnQmbbNdP", - "expanded_url": "http://twitter.com/maartenzam/status/685192813236088832/photo/1", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [ - { - "indices": [ - 16, - 19 - ], - "text": "D3" - } - ], - "user_mentions": [ - { - "screen_name": "maartenzam", - "id_str": "17242884", - "id": 17242884, - "indices": [ - 3, - 14 - ], - "name": "Maarten Lambrechts" - }, - { - "screen_name": "NadiehBremer", - "id_str": "242069220", - "id": 242069220, - "indices": [ - 95, - 108 - ], - "name": "Nadieh Bremer" - } - ] - }, - "created_at": "Fri Jan 08 04:30:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "sv", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685317541200187392, - "text": "RT @maartenzam: #D3 Exploding box plot (aka imploding scatterplot) https://t.co/4jJHibAgnW Via @NadiehBremer https://t.co/DUnQmbbNdP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 14180671, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685970528/5077b01ec673f963a50580b055dde7b5.jpeg", - "statuses_count": 16389, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14180671/1371759640", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "481383369", - "following": false, - "friends_count": 103, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0F6B8C", - "geo_enabled": false, - "followers_count": 77, - "location": "Cambridge, UK", - "screen_name": "alan_gibble", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Alan Wright", - "profile_use_background_image": true, - "description": "Infrastructure Software Engineer at Spotify. Always learning.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/481454286866366464/AylmX2yj_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Feb 02 17:44:50 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/481454286866366464/AylmX2yj_normal.png", - "favourites_count": 16, - "status": { - "retweet_count": 374, - "retweeted_status": { - "retweet_count": 374, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684921510113460224", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1022, - "h": 523, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 307, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 173, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", - "type": "photo", - "indices": [ - 40, - 63 - ], - "media_url": "http://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", - "display_url": "pic.twitter.com/4ZGS1srULp", - "id_str": "684921509362688000", - "expanded_url": "http://twitter.com/AdamMGrant/status/684921510113460224/photo/1", - "id": 684921509362688000, - "url": "https://t.co/4ZGS1srULp" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 02:16:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684921510113460224, - "text": "2015 in America, in 460 million tweets: https://t.co/4ZGS1srULp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 268, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685016635623751680", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1022, - "h": 523, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 307, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 173, - "resize": "fit" - } - }, - "source_status_id_str": "684921510113460224", - "url": "https://t.co/4ZGS1srULp", - "media_url": "http://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", - "source_user_id_str": "1059273780", - "id_str": "684921509362688000", - "id": 684921509362688000, - "media_url_https": "https://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", - "type": "photo", - "indices": [ - 56, - 79 - ], - "source_status_id": 684921510113460224, - "source_user_id": 1059273780, - "display_url": "pic.twitter.com/4ZGS1srULp", - "expanded_url": "http://twitter.com/AdamMGrant/status/684921510113460224/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AdamMGrant", - "id_str": "1059273780", - "id": 1059273780, - "indices": [ - 3, - 14 - ], - "name": "Adam Grant" - } - ] - }, - "created_at": "Thu Jan 07 08:34:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685016635623751680, - "text": "RT @AdamMGrant: 2015 in America, in 460 million tweets: https://t.co/4ZGS1srULp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 481383369, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1048, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/481383369/1412113781", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "83870274", - "following": false, - "friends_count": 240, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/metllord", - "url": "https://t.co/ige9AAxhNS", - "expanded_url": "https://github.com/metllord", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624560161760411648/cJELcPCC.png", - "notifications": false, - "profile_sidebar_fill_color": "734426", - "profile_link_color": "422110", - "geo_enabled": true, - "followers_count": 83, - "location": "Philadelphia, PA", - "screen_name": "metllord", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 7, - "name": "Eric Stein", - "profile_use_background_image": true, - "description": "Python programmer, sizable data guy, amateur Vim user, fueled by coffee and beer.", - "url": "https://t.co/ige9AAxhNS", - "profile_text_color": "5C5B47", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2028110877/13532_521689987314_39300088_31071305_3862753_n_normal.jpg", - "profile_background_color": "131E0F", - "created_at": "Tue Oct 20 15:56:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2028110877/13532_521689987314_39300088_31071305_3862753_n_normal.jpg", - "favourites_count": 26, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/e4a0d228eb6be76b.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -75.280284, - 39.871811 - ], - [ - -74.955712, - 39.871811 - ], - [ - -74.955712, - 40.13792 - ], - [ - -75.280284, - 40.13792 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Philadelphia, PA", - "id": "e4a0d228eb6be76b", - "name": "Philadelphia" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685165087347355648", - "id": 685165087347355648, - "text": "Ha. Running rm -rf / in a Vagrant box deletes your Vagrantfile.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 18:24:21 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 83870274, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624560161760411648/cJELcPCC.png", - "statuses_count": 718, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5908032", - "following": false, - "friends_count": 1047, - "entities": { - "description": { - "urls": [ - { - "display_url": "Cloud.com", - "url": "https://t.co/JI5orZ8uwf", - "expanded_url": "http://Cloud.com", - "indices": [ - 55, - 78 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 3382, - "location": "Seattle, WA", - "screen_name": "ulander", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 151, - "name": "Peder Ulander", - "profile_use_background_image": true, - "description": "work: Cisco Cloud VP | formerly: Apache CloudStack and https://t.co/JI5orZ8uwf | persona: opinionated geek, disruptor, agitator | opinions = mine", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/643611355984076801/d6npusfi_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed May 09 18:31:54 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/643611355984076801/d6npusfi_normal.jpg", - "favourites_count": 162, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "aneel", - "in_reply_to_user_id": 1293051, - "in_reply_to_status_id_str": "685171757859258368", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685175234916302848", - "id": 685175234916302848, - "text": "@aneel but when you get there, rest assured it will work for you", - "in_reply_to_user_id_str": "1293051", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "aneel", - "id_str": "1293051", - "id": 1293051, - "indices": [ - 0, - 6 - ], - "name": "Aneel" - } - ] - }, - "created_at": "Thu Jan 07 19:04:40 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685171757859258368, - "lang": "en" - }, - "default_profile_image": false, - "id": 5908032, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5659, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5908032/1421369600", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14862647", - "following": false, - "friends_count": 426, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "brianbondy.com", - "url": "http://t.co/WYBVgFKbxw", - "expanded_url": "http://brianbondy.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": true, - "followers_count": 1463, - "location": "Belle River, Ontario, Canada", - "screen_name": "brianbondy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 141, - "name": "Brian R. Bondy", - "profile_use_background_image": true, - "description": "Father of 3 co-founding a startup. Gecko hacker, Khan Academy contributor, top 0.1% StackOverflow, UWaterloo grad. Past Microsoft MVP. Runner.", - "url": "http://t.co/WYBVgFKbxw", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649573213505200128/LU2vI_3s_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Wed May 21 23:45:24 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649573213505200128/LU2vI_3s_normal.jpg", - "favourites_count": 869, - "status": { - "retweet_count": 69, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 69, - "truncated": false, - "retweeted": false, - "id_str": "684999185792282625", - "id": 684999185792282625, - "text": "If your Firefox successfully downloaded today's SHA-1 protection undo update you didn't need it. If it blocked it, you did. #realworldcrypto", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 124, - 140 - ], - "text": "realworldcrypto" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 07:25:07 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 58, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685237803043700736", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "realworldcrypto" - } - ], - "user_mentions": [ - { - "screen_name": "BRIAN_____", - "id_str": "14586929", - "id": 14586929, - "indices": [ - 3, - 14 - ], - "name": "Brian Smith" - } - ] - }, - "created_at": "Thu Jan 07 23:13:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685237803043700736, - "text": "RT @BRIAN_____: If your Firefox successfully downloaded today's SHA-1 protection undo update you didn't need it. If it blocked it, you did.\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 14862647, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "statuses_count": 1484, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14862647/1398209413", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14835101", - "following": false, - "friends_count": 741, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "yes.erin.codes", - "url": "https://t.co/Yp4c3meMi5", - "expanded_url": "http://yes.erin.codes", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/882775034/4ccd35438b42a7da37c20ebc15940e52.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "140E0A", - "profile_link_color": "4F3F38", - "geo_enabled": false, - "followers_count": 1510, - "location": "Huntsville, AL", - "screen_name": "erinspice", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 109, - "name": "snarkaeopteryx", - "profile_use_background_image": true, - "description": "Code life, yo. Sr. Software Engineer for @Respoke, FOSS, WebRTC, Node.js, running, kayaking. Choctaw, Chickasaw, Bahamian. ENTP/ENFP", - "url": "https://t.co/Yp4c3meMi5", - "profile_text_color": "838978", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/562987039084146688/BxGQ49EL_normal.png", - "profile_background_color": "1C130E", - "created_at": "Mon May 19 17:08:51 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "9DB98C", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/562987039084146688/BxGQ49EL_normal.png", - "favourites_count": 12428, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "polotek", - "in_reply_to_user_id": 20079975, - "in_reply_to_status_id_str": "685598429934817283", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685599053053345792", - "id": 685599053053345792, - "text": "@polotek I love Noemi so much.", - "in_reply_to_user_id_str": "20079975", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "polotek", - "id_str": "20079975", - "id": 20079975, - "indices": [ - 0, - 8 - ], - "name": "Marco Rogers" - } - ] - }, - "created_at": "Fri Jan 08 23:08:46 +0000 2016", - "source": "TweetDeck", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598429934817283, - "lang": "en" - }, - "default_profile_image": false, - "id": 14835101, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/882775034/4ccd35438b42a7da37c20ebc15940e52.jpeg", - "statuses_count": 10237, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14835101/1398351739", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2396932368", - "following": false, - "friends_count": 2080, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 1002, - "location": "Texas", - "screen_name": "Thaeldes", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 11, - "name": "Larry Freeman", - "profile_use_background_image": false, - "description": "#Husband, #Uncle, World Craftsman, #Cigar #Pipe and #HookahLover, #Student #filmstudent #excrazymountainman", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/581679057277849601/Cs4qEtR3_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Mar 18 23:50:22 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/581679057277849601/Cs4qEtR3_normal.jpg", - "favourites_count": 3797, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685566739141259264", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "gofundme.com/qqg4nrdw", - "url": "https://t.co/Kkw1BVOedS", - "expanded_url": "http://gofundme.com/qqg4nrdw", - "indices": [ - 45, - 68 - ] - } - ], - "hashtags": [ - { - "indices": [ - 17, - 25 - ], - "text": "college" - }, - { - "indices": [ - 69, - 79 - ], - "text": "crowdfund" - }, - { - "indices": [ - 80, - 92 - ], - "text": "collegelife" - }, - { - "indices": [ - 93, - 108 - ], - "text": "cinematography" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:00:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685566739141259264, - "text": "help me continue #college my funding was cut https://t.co/Kkw1BVOedS #crowdfund #collegelife #cinematography", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2396932368, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1343, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2396932368/1419886819", - "is_translator": false - }, - { - "time_zone": "America/Los_Angeles", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "82480797", - "following": false, - "friends_count": 661, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/817092131/e35a189e26ca361ceadff8b2eae3ca2b.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 161, - "location": "San Diego", - "screen_name": "Mi_keC", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Michael Conlon", - "profile_use_background_image": true, - "description": "Never stop learning - information security and craft beer addiction", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/591366723279785984/0LOfXLcP_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Oct 14 23:07:48 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/591366723279785984/0LOfXLcP_normal.jpg", - "favourites_count": 1247, - "status": { - "retweet_count": 113, - "retweeted_status": { - "retweet_count": 113, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "654136987453128704", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 450, - "h": 282, - "resize": "fit" - }, - "medium": { - "w": 450, - "h": 282, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 213, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", - "type": "photo", - "indices": [ - 75, - 97 - ], - "media_url": "http://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", - "display_url": "pic.twitter.com/4KTZsuUwmT", - "id_str": "654136983946678272", - "expanded_url": "http://twitter.com/mzbat/status/654136987453128704/photo/1", - "id": 654136983946678272, - "url": "http://t.co/4KTZsuUwmT" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "M3atShi3ld", - "id_str": "982428168", - "id": 982428168, - "indices": [ - 12, - 23 - ], - "name": "M3atShi3ld" - } - ] - }, - "created_at": "Wed Oct 14 03:29:45 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 654136987453128704, - "text": "100 RTs and @M3atShi3ld will get this bat tattooed on his butt. On camera. http://t.co/4KTZsuUwmT", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 27, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "654352341810810880", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 450, - "h": 282, - "resize": "fit" - }, - "medium": { - "w": 450, - "h": 282, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 213, - "resize": "fit" - } - }, - "source_status_id_str": "654136987453128704", - "url": "http://t.co/4KTZsuUwmT", - "media_url": "http://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", - "source_user_id_str": "253608265", - "id_str": "654136983946678272", - "id": 654136983946678272, - "media_url_https": "https://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", - "type": "photo", - "indices": [ - 86, - 108 - ], - "source_status_id": 654136987453128704, - "source_user_id": 253608265, - "display_url": "pic.twitter.com/4KTZsuUwmT", - "expanded_url": "http://twitter.com/mzbat/status/654136987453128704/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mzbat", - "id_str": "253608265", - "id": 253608265, - "indices": [ - 3, - 9 - ], - "name": "b\u0360\u035d\u0344\u0350\u0310\u035d\u030a\u0341a\u030f\u0344\u0343\u0305\u0302\u0313\u030f\u0304t\u0352" - }, - { - "screen_name": "M3atShi3ld", - "id_str": "982428168", - "id": 982428168, - "indices": [ - 23, - 34 - ], - "name": "M3atShi3ld" - } - ] - }, - "created_at": "Wed Oct 14 17:45:30 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 654352341810810880, - "text": "RT @mzbat: 100 RTs and @M3atShi3ld will get this bat tattooed on his butt. On camera. http://t.co/4KTZsuUwmT", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 82480797, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/817092131/e35a189e26ca361ceadff8b2eae3ca2b.jpeg", - "statuses_count": 204, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "177646723", - "following": false, - "friends_count": 1113, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135037717/CRW_9589_reduced.jpg", - "notifications": false, - "profile_sidebar_fill_color": "2F1036", - "profile_link_color": "5C1361", - "geo_enabled": false, - "followers_count": 387, - "location": "[redacted] ", - "screen_name": "r3d4ct3d", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "[REDACTED]", - "profile_use_background_image": true, - "description": "free thinker, atheist, hacktivist. i post/RT anything having to do with science, politics, hactivism, art, music and tech.", - "url": null, - "profile_text_color": "D4D4D4", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1770342024/FIF_copy_normal.jpg", - "profile_background_color": "101B21", - "created_at": "Thu Aug 12 18:08:53 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1770342024/FIF_copy_normal.jpg", - "favourites_count": 559, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "596894667641200640", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "m.huffpost.com/us/entry/72427\u2026", - "url": "http://t.co/9yRTKxHXpg", - "expanded_url": "http://m.huffpost.com/us/entry/7242720", - "indices": [ - 96, - 118 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat May 09 04:29:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 596894667641200640, - "text": "Ignoring this being racist, you do realize this is illegal under state and federal laws, right? http://t.co/9yRTKxHXpg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "596905652850569216", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "m.huffpost.com/us/entry/72427\u2026", - "url": "http://t.co/9yRTKxHXpg", - "expanded_url": "http://m.huffpost.com/us/entry/7242720", - "indices": [ - 110, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wwahammy", - "id_str": "19212550", - "id": 19212550, - "indices": [ - 3, - 12 - ], - "name": "Eric Kringleschultz" - } - ] - }, - "created_at": "Sat May 09 05:12:52 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 596905652850569216, - "text": "RT @wwahammy: Ignoring this being racist, you do realize this is illegal under state and federal laws, right? http://t.co/9yRTKxHXpg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 177646723, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135037717/CRW_9589_reduced.jpg", - "statuses_count": 23283, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/177646723/1358587342", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "12897812", - "following": false, - "friends_count": 1123, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jamigibbs.com", - "url": "https://t.co/pgV1I0wHOf", - "expanded_url": "http://jamigibbs.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/427142944/groovepaper.png", - "notifications": false, - "profile_sidebar_fill_color": "F5F5F5", - "profile_link_color": "FF3300", - "geo_enabled": true, - "followers_count": 2540, - "location": "Chicago", - "screen_name": "JamiGibbs", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 70, - "name": "Jami Gibbs \u26f5", - "profile_use_background_image": true, - "description": "Doing stuff on the interwebs. Founder of @rescuethemes. Recovering expat. Still learning.", - "url": "https://t.co/pgV1I0wHOf", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/679694700459233284/1-OJBDxd_normal.png", - "profile_background_color": "E0E0E0", - "created_at": "Thu Jan 31 02:52:11 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C7C7C7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/679694700459233284/1-OJBDxd_normal.png", - "favourites_count": 712, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685256403418779648", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKFEDWWsAAP1Ky.jpg", - "type": "photo", - "indices": [ - 50, - 73 - ], - "media_url": "http://pbs.twimg.com/media/CYKFEDWWsAAP1Ky.jpg", - "display_url": "pic.twitter.com/AG95peuNkM", - "id_str": "685256397978775552", - "expanded_url": "http://twitter.com/JamiGibbs/status/685256403418779648/photo/1", - "id": 685256397978775552, - "url": "https://t.co/AG95peuNkM" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 00:27:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -87.940033, - 41.644102 - ], - [ - -87.523993, - 41.644102 - ], - [ - -87.523993, - 42.0230669 - ], - [ - -87.940033, - 42.0230669 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Chicago, IL", - "id": "1d9a5370a355ab0c", - "name": "Chicago" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685256403418779648, - "text": "TIL: My dog fucking hates dudes that climb trees. https://t.co/AG95peuNkM", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 12897812, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/427142944/groovepaper.png", - "statuses_count": 11136, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12897812/1446593975", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "307983", - "following": false, - "friends_count": 792, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lendami.co", - "url": "https://t.co/ST37mdmeuQ", - "expanded_url": "http://lendami.co", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2968792/bg_beercaps.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EEEEEE", - "profile_link_color": "676767", - "geo_enabled": true, - "followers_count": 1705, - "location": "Trillmington, DE", - "screen_name": "lendamico", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 117, - "name": "Len Damico", - "profile_use_background_image": true, - "description": "UX Architect, @Arcweb Technologies. Founding jawn, @phldesignco. Husband, @psujo. I'm really sorry about #PSUtwitter. RIYL: dadlife, feminism, hops, indie rock.", - "url": "https://t.co/ST37mdmeuQ", - "profile_text_color": "323232", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671515446219288577/ggZ_SL0V_normal.jpg", - "profile_background_color": "121212", - "created_at": "Thu Dec 28 04:40:08 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "666666", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671515446219288577/ggZ_SL0V_normal.jpg", - "favourites_count": 6644, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685610363086336000", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 111, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 196, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 717, - "h": 235, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPG_hOWsAU-XFU.jpg", - "type": "photo", - "indices": [ - 10, - 33 - ], - "media_url": "http://pbs.twimg.com/media/CYPG_hOWsAU-XFU.jpg", - "display_url": "pic.twitter.com/3w9IAwJBuN", - "id_str": "685610362843082757", - "expanded_url": "http://twitter.com/lendamico/status/685610363086336000/photo/1", - "id": 685610362843082757, - "url": "https://t.co/3w9IAwJBuN" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:53:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685610363086336000, - "text": "mmmmm yes https://t.co/3w9IAwJBuN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 307983, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2968792/bg_beercaps.jpg", - "statuses_count": 42357, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/307983/1435980493", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "27965538", - "following": false, - "friends_count": 365, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lynnandtonic.com", - "url": "http://t.co/heVvcx6U2V", - "expanded_url": "http://lynnandtonic.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7182491/squidfingers-bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EBEBEB", - "profile_link_color": "219E9E", - "geo_enabled": false, - "followers_count": 1714, - "location": "Chandler, AZ", - "screen_name": "lynnandtonic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "name": "Lynn Fisher", - "profile_use_background_image": false, - "description": "Living each day like it's Pizza Day.", - "url": "http://t.co/heVvcx6U2V", - "profile_text_color": "424242", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477556215401025537/zH_q0-_s_normal.png", - "profile_background_color": "242424", - "created_at": "Tue Mar 31 21:19:06 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BABABA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477556215401025537/zH_q0-_s_normal.png", - "favourites_count": 1914, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684787294465753088", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/783hwpJTjlo", - "url": "https://t.co/ODNDb8Xs2M", - "expanded_url": "https://youtu.be/783hwpJTjlo", - "indices": [ - 51, - 74 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheeNerdwriter", - "id_str": "87576856", - "id": 87576856, - "indices": [ - 35, - 50 - ], - "name": "Evan Puschak" - } - ] - }, - "created_at": "Wed Jan 06 17:23:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684787294465753088, - "text": "How Art Transforms The Internet by @TheeNerdwriter https://t.co/ODNDb8Xs2M", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 27965538, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7182491/squidfingers-bg.gif", - "statuses_count": 3210, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/27965538/1380170906", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14403366", - "following": false, - "friends_count": 654, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pcable.net", - "url": "https://t.co/J5UfTI3pNd", - "expanded_url": "http://www.pcable.net", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/246043858/IMG_1824.jpg", - "notifications": false, - "profile_sidebar_fill_color": "2F3333", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 657, - "location": "Somerville", - "screen_name": "patcable", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 35, - "name": "Patrick Cable", - "profile_use_background_image": true, - "description": "sailing systems by the sea shore. also: LISA16 talks co-chair", - "url": "https://t.co/J5UfTI3pNd", - "profile_text_color": "3EA8A5", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668478465797169154/p7tkQ4aS_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Apr 16 01:42:35 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "434545", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668478465797169154/p7tkQ4aS_normal.jpg", - "favourites_count": 2159, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "tyrostone", - "in_reply_to_user_id": 381193410, - "in_reply_to_status_id_str": "685598865798656000", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685602278955433986", - "id": 685602278955433986, - "text": "@tyrostone whoa, that's kinda a great library perk", - "in_reply_to_user_id_str": "381193410", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tyrostone", - "id_str": "381193410", - "id": 381193410, - "indices": [ - 0, - 10 - ], - "name": "Laura Stone" - } - ] - }, - "created_at": "Fri Jan 08 23:21:35 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598865798656000, - "lang": "en" - }, - "default_profile_image": false, - "id": 14403366, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/246043858/IMG_1824.jpg", - "statuses_count": 7685, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14403366/1448214484", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14701839", - "following": false, - "friends_count": 125, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "adamyonk.com", - "url": "http://t.co/ka2I9JDfh8", - "expanded_url": "http://adamyonk.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3202932/bg_2.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "DC322F", - "geo_enabled": false, - "followers_count": 357, - "location": "Springfield, MO", - "screen_name": "adamyonk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "Adam Jahnke \u2615\ufe0f", - "profile_use_background_image": false, - "description": "Pursuer of God and @oliviayonk, minimalist, thinker, programmer, recovering perfectionist, engineer at @Librato. I love to make the complex simple.", - "url": "http://t.co/ka2I9JDfh8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676859032045379584/ZpQCo8T7_normal.jpg", - "profile_background_color": "FDF6E3", - "created_at": "Thu May 08 15:53:12 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676859032045379584/ZpQCo8T7_normal.jpg", - "favourites_count": 290, - "status": { - "retweet_count": 7, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 7, - "truncated": false, - "retweeted": false, - "id_str": "685507394470690818", - "id": 685507394470690818, - "text": "Most of programming is just a never ending search for the right abstractions.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:04:33 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 35, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685566356712861697", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "HenrikJoreteg", - "id_str": "15102110", - "id": 15102110, - "indices": [ - 3, - 17 - ], - "name": "Henrik Joreteg" - } - ] - }, - "created_at": "Fri Jan 08 20:58:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685566356712861697, - "text": "RT @HenrikJoreteg: Most of programming is just a never ending search for the right abstractions.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 14701839, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3202932/bg_2.png", - "statuses_count": 6318, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14701839/1430812181", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "9905392", - "following": false, - "friends_count": 2879, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "iam.travishartwell.net", - "url": "http://t.co/noZfvrEjJH", - "expanded_url": "http://iam.travishartwell.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2688, - "location": "Idaho Falls, Idaho", - "screen_name": "travisbhartwell", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 87, - "name": "Travis B. Hartwell", - "profile_use_background_image": true, - "description": "LDS. Meditator. Kidney transplant recipient. On dialysis. Losing vision to Retinitis Pigmentosa. Software Toolsmith. Free/Open Source advocate. Writer. Friend.", - "url": "http://t.co/noZfvrEjJH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/453097486228279296/H6aYkYt5_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Nov 03 02:50:41 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/453097486228279296/H6aYkYt5_normal.jpeg", - "favourites_count": 8357, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/07d9f5b941887004.json", - "country": "United States", - "attributes": {}, - "place_type": "poi", - "bounding_box": { - "coordinates": [ - [ - [ - -122.03072304117417, - 37.331652997806785 - ], - [ - -122.03072304117417, - 37.331652997806785 - ], - [ - -122.03072304117417, - 37.331652997806785 - ], - [ - -122.03072304117417, - 37.331652997806785 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Apple Inc.", - "id": "07d9f5b941887004", - "name": "Apple Inc." - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685567022172737537", - "id": 685567022172737537, - "text": "I feel like a spy, infiltrating enemy headquarters.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:01:29 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 9905392, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10724, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "87004913", - "following": false, - "friends_count": 1499, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1410, - "location": "The Woods, Calaforny", - "screen_name": "nvcexploder", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 94, - "name": "Beardiest Tween", - "profile_use_background_image": true, - "description": "I write code in the woods and teach kids to build robots.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/524375386767904768/SsOI4V4k_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 02 19:07:08 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/524375386767904768/SsOI4V4k_normal.jpeg", - "favourites_count": 7359, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "fritzy", - "in_reply_to_user_id": 14498374, - "in_reply_to_status_id_str": "685563110468399104", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685563291469352960", - "id": 685563291469352960, - "text": "@fritzy @vladikoff @HugoGiraudel I noticed that too - it's still SO RAD.", - "in_reply_to_user_id_str": "14498374", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "fritzy", - "id_str": "14498374", - "id": 14498374, - "indices": [ - 0, - 7 - ], - "name": "Fritzy" - }, - { - "screen_name": "vladikoff", - "id_str": "57659047", - "id": 57659047, - "indices": [ - 8, - 18 - ], - "name": "Vlad Filippov" - }, - { - "screen_name": "HugoGiraudel", - "id_str": "551949534", - "id": 551949534, - "indices": [ - 19, - 32 - ], - "name": "Hugo Giraudel" - } - ] - }, - "created_at": "Fri Jan 08 20:46:40 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685563110468399104, - "lang": "en" - }, - "default_profile_image": false, - "id": 87004913, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4848, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/87004913/1398990558", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "39129267", - "following": false, - "friends_count": 304, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "url": "http://reza.akhavan.me", - "expanded_url": null, - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "333333", - "geo_enabled": false, - "followers_count": 520, - "location": "San Francisco", - "screen_name": "jedireza", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 46, - "name": "Reza Akhavan", - "profile_use_background_image": false, - "description": "Engineer @Mozilla \u2728 Co-Organizer @NodeSchoolSF", - "url": "http://reza.akhavan.me", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/568295339157753856/s4XVgdXN_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun May 10 22:55:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/568295339157753856/s4XVgdXN_normal.jpeg", - "favourites_count": 737, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683436415040933888", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/nodeschooloak/\u2026", - "url": "https://t.co/N7ckQ72EQm", - "expanded_url": "https://twitter.com/nodeschooloak/status/683436238473310208", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nodeschooloak", - "id_str": "3271438309", - "id": 3271438309, - "indices": [ - 72, - 86 - ], - "name": "NodeSchool Oakland" - } - ] - }, - "created_at": "Sat Jan 02 23:55:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683436415040933888, - "text": "Come join me and some of the finest folks from the bay area at the next @nodeschooloak! https://t.co/N7ckQ72EQm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683851658095243264", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/nodeschooloak/\u2026", - "url": "https://t.co/N7ckQ72EQm", - "expanded_url": "https://twitter.com/nodeschooloak/status/683436238473310208", - "indices": [ - 101, - 124 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "takempf", - "id_str": "17734862", - "id": 17734862, - "indices": [ - 3, - 11 - ], - "name": "Timothy Kempf" - }, - { - "screen_name": "nodeschooloak", - "id_str": "3271438309", - "id": 3271438309, - "indices": [ - 85, - 99 - ], - "name": "NodeSchool Oakland" - } - ] - }, - "created_at": "Mon Jan 04 03:25:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683851658095243264, - "text": "RT @takempf: Come join me and some of the finest folks from the bay area at the next @nodeschooloak! https://t.co/N7ckQ72EQm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 39129267, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1061, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39129267/1421477916", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "17293000", - "following": false, - "friends_count": 481, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "aguidinglife.co.uk", - "url": "https://t.co/IWUVA2WIs8", - "expanded_url": "http://www.aguidinglife.co.uk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 921, - "location": "UK", - "screen_name": "kelloggs_ville", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 36, - "name": "KV_Guiding_DBA", - "profile_use_background_image": true, - "description": "Oracle DBA, Guider. Tried to be normal once, worst 2 minutes of my life.", - "url": "https://t.co/IWUVA2WIs8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681825809183686656/220vNYu5_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Mon Nov 10 19:32:47 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681825809183686656/220vNYu5_normal.jpg", - "favourites_count": 1939, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "TheDashingChap", - "in_reply_to_user_id": 22298246, - "in_reply_to_status_id_str": "685539178982043648", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685539757695365120", - "id": 685539757695365120, - "text": "@TheDashingChap I for one am always praying for peas on earth \ud83d\ude02\ud83d\ude02\ud83d\ude02", - "in_reply_to_user_id_str": "22298246", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheDashingChap", - "id_str": "22298246", - "id": 22298246, - "indices": [ - 0, - 15 - ], - "name": "Ty" - } - ] - }, - "created_at": "Fri Jan 08 19:13:09 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685539178982043648, - "lang": "en" - }, - "default_profile_image": false, - "id": 17293000, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 22251, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17293000/1449608601", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "52270403", - "following": false, - "friends_count": 410, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mojolingo.com", - "url": "http://t.co/QQBQqmHHBD", - "expanded_url": "http://mojolingo.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/294691643/MojoLingoBG-Twitter.png", - "notifications": false, - "profile_sidebar_fill_color": "E3E3E3", - "profile_link_color": "96172E", - "geo_enabled": true, - "followers_count": 671, - "location": "Atlanta", - "screen_name": "bklang", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "Ben Klang", - "profile_use_background_image": true, - "description": "Principal/Technology Strategist at Mojo Lingo. Project Lead for Adhearsion, the voice app framework. Real-Time Comms Revolutionary. Open Source Hacker.", - "url": "http://t.co/QQBQqmHHBD", - "profile_text_color": "37424A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/621343464735772672/mKCqd3FO_normal.jpg", - "profile_background_color": "324555", - "created_at": "Tue Jun 30 02:12:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "919191", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621343464735772672/mKCqd3FO_normal.jpg", - "favourites_count": 211, - "status": { - "retweet_count": 9, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 9, - "truncated": false, - "retweeted": false, - "id_str": "682756823544365056", - "id": 682756823544365056, - "text": "Pretty stoked that #Asterisk 14 will support\n same => n,Playback(https://someserver/some_sound_file.wav)\n\nLots more to do, but progress!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 19, - 28 - ], - "text": "Asterisk" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 02:54:46 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 17, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "682762462643499009", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 36, - 45 - ], - "text": "Asterisk" - } - ], - "user_mentions": [ - { - "screen_name": "mattcjordan", - "id_str": "48244004", - "id": 48244004, - "indices": [ - 3, - 15 - ], - "name": "Matt Jordan" - } - ] - }, - "created_at": "Fri Jan 01 03:17:10 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682762462643499009, - "text": "RT @mattcjordan: Pretty stoked that #Asterisk 14 will support\n same => n,Playback(https://someserver/some_sound_file.wav)\n\nLots more to \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 52270403, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/294691643/MojoLingoBG-Twitter.png", - "statuses_count": 1882, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/52270403/1436974855", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "528590347", - "following": false, - "friends_count": 1214, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/poeticninja", - "url": "https://t.co/2Hpy5zsVuW", - "expanded_url": "https://github.com/poeticninja", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 378, - "location": "Houston, TX", - "screen_name": "poeticninja", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 35, - "name": "Saul Maddox", - "profile_use_background_image": true, - "description": "Web Developer, co-manage Node.js Houston, husband to a wonderful wife, and father to three amazing children.", - "url": "https://t.co/2Hpy5zsVuW", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000698748900/37ec2ffa765e556b16aea10a3c73e6bc_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Mar 18 15:11:58 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000698748900/37ec2ffa765e556b16aea10a3c73e6bc_normal.jpeg", - "favourites_count": 1681, - "status": { - "retweet_count": 97, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 97, - "truncated": false, - "retweeted": false, - "id_str": "684553093409861632", - "id": 684553093409861632, - "text": "Don\u2019t ask your contributors to npm install any packages globally. Set up aliases for tasks via \"scripts\" config in package.json.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 01:52:30 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 203, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685248751787589632", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dan_abramov", - "id_str": "70345946", - "id": 70345946, - "indices": [ - 3, - 15 - ], - "name": "Dan Abramov" - } - ] - }, - "created_at": "Thu Jan 07 23:56:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685248751787589632, - "text": "RT @dan_abramov: Don\u2019t ask your contributors to npm install any packages globally. Set up aliases for tasks via \"scripts\" config in package\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 528590347, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 1187, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/528590347/1378419100", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "217607250", - "following": false, - "friends_count": 887, - "entities": { - "description": { - "urls": [ - { - "display_url": "ike.io", - "url": "https://t.co/tShgYG6Gye", - "expanded_url": "http://ike.io", - "indices": [ - 19, - 42 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ike.io", - "url": "https://t.co/tShgYG6Gye", - "expanded_url": "http://ike.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/693712484/978192d7b7735dc78f2fed907480eaa8.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 567, - "location": "Richland, WA", - "screen_name": "_crossdiver", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 46, - "name": "Isaac Lewis", - "profile_use_background_image": true, - "description": "Dude with a lance, https://t.co/tShgYG6Gye. Founder, @muxtc. Renaissance Kid. @the_lewist's lesser half.", - "url": "https://t.co/tShgYG6Gye", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/563851021403688961/j08fLJw2_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Sat Nov 20 00:22:04 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/563851021403688961/j08fLJw2_normal.jpeg", - "favourites_count": 3249, - "status": { - "retweet_count": 12, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 12, - "truncated": false, - "retweeted": false, - "id_str": "679318236744294400", - "id": 679318236744294400, - "text": "We're looking for businesses looking to sell to their workers. Help us spread the word by retweeting or let us know if you know someone!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 22 15:11:03 +0000 2015", - "source": "Hootsuite", - "favorite_count": 7, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685603260187578368", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "workingworldorg", - "id_str": "496495582", - "id": 496495582, - "indices": [ - 3, - 19 - ], - "name": "The Working World" - } - ] - }, - "created_at": "Fri Jan 08 23:25:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685603260187578368, - "text": "RT @workingworldorg: We're looking for businesses looking to sell to their workers. Help us spread the word by retweeting or let us know if\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 217607250, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/693712484/978192d7b7735dc78f2fed907480eaa8.jpeg", - "statuses_count": 5204, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/217607250/1442362227", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "34672729", - "following": false, - "friends_count": 218, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyet.com", - "url": "https://t.co/g5X3ldct0t", - "expanded_url": "http://www.andyet.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "F5ABB5", - "geo_enabled": true, - "followers_count": 489, - "location": "Richland, Wa", - "screen_name": "Jennadear_", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Jenna Tormanen", - "profile_use_background_image": false, - "description": "Marketing or something @andyet \u2022 Coffee Enthusiast @wearethelocal \u2022 Videographer {Eastern Washington}", - "url": "https://t.co/g5X3ldct0t", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/659153708341592064/QB5FRwqm_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Apr 23 17:32:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/659153708341592064/QB5FRwqm_normal.jpg", - "favourites_count": 1648, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685200578268405760", - "id": 685200578268405760, - "text": "Learning alllllllllllllll the knowledge from @lancestout!!! w/@sallycmohr.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lancestout", - "id_str": "17123007", - "id": 17123007, - "indices": [ - 45, - 56 - ], - "name": "Lance Stout" - }, - { - "screen_name": "sallycmohr", - "id_str": "23568790", - "id": 23568790, - "indices": [ - 62, - 73 - ], - "name": "Sally C. Mohr" - } - ] - }, - "created_at": "Thu Jan 07 20:45:22 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 34672729, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1519, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/34672729/1447698106", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "221488208", - "following": false, - "friends_count": 613, - "entities": { - "description": { - "urls": [ - { - "display_url": "wild.land", - "url": "http://t.co/ktkvhRQiyM", - "expanded_url": "http://wild.land", - "indices": [ - 126, - 148 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "dribbble.com/tymulholland", - "url": "https://t.co/CFdBPTtdzG", - "expanded_url": "https://dribbble.com/tymulholland", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 623, - "location": "", - "screen_name": "tymulholland", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 40, - "name": "Ty Mulholland", - "profile_use_background_image": true, - "description": "Mastermind @wildlandlabs, by mastermind I mean fumbling, fly-by-the-seat-of-my-pants, accidental, ah s###! designer/creative. http://t.co/ktkvhRQiyM", - "url": "https://t.co/CFdBPTtdzG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/634592193404010496/o7Yb1ir0_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Nov 30 20:15:09 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/634592193404010496/o7Yb1ir0_normal.jpg", - "favourites_count": 723, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685522986015719424", - "id": 685522986015719424, - "text": "\"I believe researching that feature will take 1 hour of cussing and 2 hours of actual research.\" #doitright", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 97, - 107 - ], - "text": "doitright" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:06:30 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 221488208, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 2957, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/221488208/1434956478", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14697361", - "following": false, - "friends_count": 184, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dougwaltman.com", - "url": "http://t.co/ravmBOhT5Q", - "expanded_url": "http://www.dougwaltman.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/533332526064885760/z3_XeSQQ.png", - "notifications": false, - "profile_sidebar_fill_color": "14161B", - "profile_link_color": "309EA6", - "geo_enabled": true, - "followers_count": 825, - "location": "Tri-Cities, WA", - "screen_name": "dougwaltman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 59, - "name": "Douglas", - "profile_use_background_image": true, - "description": "Unverified adult, making the world a better place with technology. Connecting, exploring, nerding out, and making art. \u2661", - "url": "http://t.co/ravmBOhT5Q", - "profile_text_color": "93A097", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662059136599789569/-ny7sQ2R_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu May 08 07:13:13 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662059136599789569/-ny7sQ2R_normal.jpg", - "favourites_count": 1829, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685522518199816193", - "id": 685522518199816193, - "text": "We don't get to choose what happens, but we get to choose how we feel about it.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:04:39 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14697361, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/533332526064885760/z3_XeSQQ.png", - "statuses_count": 5668, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14697361/1445640558", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "536923214", - "following": false, - "friends_count": 185, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FF6D69", - "geo_enabled": false, - "followers_count": 207, - "location": "Tri Cities", - "screen_name": "JaimeHRobles", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Jaime Robles", - "profile_use_background_image": false, - "description": "President and pixel pusher at @Andyet", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/607249416253087744/YEzcUr-p_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Mar 26 04:37:11 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/607249416253087744/YEzcUr-p_normal.jpg", - "favourites_count": 2145, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684834165645119488", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/2-p44-9S4O0", - "url": "https://t.co/cekiHK3nYL", - "expanded_url": "https://youtu.be/2-p44-9S4O0", - "indices": [ - 47, - 70 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 20:29:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684834165645119488, - "text": "John Cleese: \"So, Anyway...\" | Talks at Google https://t.co/cekiHK3nYL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 536923214, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 1358, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/536923214/1433663921", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "37127416", - "following": false, - "friends_count": 269, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shenoalawrence.com", - "url": "http://t.co/TjMvjrHu3l", - "expanded_url": "http://shenoalawrence.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/107900660/twitterback.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "F28907", - "geo_enabled": true, - "followers_count": 615, - "location": "Seattle, WA", - "screen_name": "ShenoaLawrence", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "\u24c8\u24d7\u24d4\u24dd\u24de\u24d0", - "profile_use_background_image": false, - "description": "Front-end designer, project manager, and adventure seeker. Podcasting at ingoodcompany.fm", - "url": "http://t.co/TjMvjrHu3l", - "profile_text_color": "B19135", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/633169399130681344/6DXwmKc6_normal.jpg", - "profile_background_color": "EEE0C9", - "created_at": "Sat May 02 03:20:40 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/633169399130681344/6DXwmKc6_normal.jpg", - "favourites_count": 2485, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "681624221848473600", - "id": 681624221848473600, - "text": "Taking a social media break. Catch you on the flip side.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Dec 28 23:54:13 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 37127416, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/107900660/twitterback.jpg", - "statuses_count": 5933, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/37127416/1416440886", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "121241223", - "following": false, - "friends_count": 664, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554093609696239616/gC_YUGuY.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DBDBDB", - "profile_link_color": "231DCF", - "geo_enabled": false, - "followers_count": 300, - "location": "Tri-Cities, WA", - "screen_name": "jeffboyus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Jeff Boyus", - "profile_use_background_image": true, - "description": "Primarily a front-end developer using Ampersand/Backbone. I love sports and my timeline may be all over the place at times... so you've been warned.", - "url": null, - "profile_text_color": "182224", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1795620231/7DF56B64-8150-4CF6-8DC4-6A4F06C02C86_normal", - "profile_background_color": "8F82C7", - "created_at": "Mon Mar 08 22:11:12 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "162024", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1795620231/7DF56B64-8150-4CF6-8DC4-6A4F06C02C86_normal", - "favourites_count": 119, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "DavisHsuSeattle", - "in_reply_to_user_id": 55139282, - "in_reply_to_status_id_str": "684641789781778436", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684652133258366976", - "id": 684652133258366976, - "text": "@DavisHsuSeattle or they like their previous scouting on MIN and GB enough to focus a bit more time on WAS in case.", - "in_reply_to_user_id_str": "55139282", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DavisHsuSeattle", - "id_str": "55139282", - "id": 55139282, - "indices": [ - 0, - 16 - ], - "name": "DAVIS HSU" - } - ] - }, - "created_at": "Wed Jan 06 08:26:03 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684641789781778436, - "lang": "en" - }, - "default_profile_image": false, - "id": 121241223, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554093609696239616/gC_YUGuY.jpeg", - "statuses_count": 3836, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "327558148", - "following": false, - "friends_count": 295, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/793050516/f8489173837e263207c93f89754e89a5.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "020812", - "profile_link_color": "131516", - "geo_enabled": false, - "followers_count": 172, - "location": "Washington State", - "screen_name": "Laurie_Wells55", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 1, - "name": "Laurie Wells", - "profile_use_background_image": true, - "description": "Married 37 yrs 2 a great guy 2 Border Collies VinDiesel & Sadie who are crazy, & came out of retirement to work for Amazon Happy Life !", - "url": null, - "profile_text_color": "2280A9", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564558188935389184/InKgv58-_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri Jul 01 19:23:57 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564558188935389184/InKgv58-_normal.jpeg", - "favourites_count": 179, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/793050516/f8489173837e263207c93f89754e89a5.jpeg", - "default_profile_image": false, - "id": 327558148, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1552, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/327558148/1430000910", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "367119191", - "following": false, - "friends_count": 565, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyet.com", - "url": "https://t.co/TCoCuFOO85", - "expanded_url": "https://andyet.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 327, - "location": "", - "screen_name": "DesignSaves", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Illuminati Dropout", - "profile_use_background_image": true, - "description": "Designer and UX Developer at &yet. Unconditional inclusivity is the only option.", - "url": "https://t.co/TCoCuFOO85", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662515784736862210/iqWmEwuK_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Sep 03 12:18:32 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662515784736862210/iqWmEwuK_normal.jpg", - "favourites_count": 786, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682780720322891776", - "id": 682780720322891776, - "text": "A thought I just had: \"who could I pay to put my Christmas tree away?\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 04:29:43 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 367119191, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 670, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "20166253", - "following": false, - "friends_count": 1003, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 132, - "location": "", - "screen_name": "cyclerunner", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "cyclerunner", - "profile_use_background_image": true, - "description": "Sir Pinklepot Honeychild Fishfetish, 4th Earl of Duke", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1689671357/doggiePhotoshop_normal.jpg", - "profile_background_color": "D0A1D4", - "created_at": "Thu Feb 05 17:22:10 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1689671357/doggiePhotoshop_normal.jpg", - "favourites_count": 176, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Nero", - "in_reply_to_user_id": 6160792, - "in_reply_to_status_id_str": "685611241197416448", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613838864125952", - "id": 685613838864125952, - "text": "@Nero if you take the bigotry out of the Milo, what is left?", - "in_reply_to_user_id_str": "6160792", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Nero", - "id_str": "6160792", - "id": 6160792, - "indices": [ - 0, - 5 - ], - "name": "Milo Yiannopoulos" - } - ] - }, - "created_at": "Sat Jan 09 00:07:31 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685611241197416448, - "lang": "en" - }, - "default_profile_image": false, - "id": 20166253, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 28586, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "38380590", - "following": false, - "friends_count": 4632, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "JasonEvanish.com", - "url": "http://t.co/0GdIwc7qEB", - "expanded_url": "http://JasonEvanish.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/36919524/twitter-background-free-032.jpg", - "notifications": false, - "profile_sidebar_fill_color": "149E5E", - "profile_link_color": "218499", - "geo_enabled": false, - "followers_count": 8735, - "location": "San Francisco via Boston", - "screen_name": "Evanish", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 569, - "name": "Jason Evanish", - "profile_use_background_image": true, - "description": "Customer driven product guy. Avid reader. Student of leadership. Founder @Get_Lighthouse to help managers become leaders. Prev @KISSmetrics & @Greenhornboston", - "url": "http://t.co/0GdIwc7qEB", - "profile_text_color": "011701", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2983505158/46a0f5eadf450f553472c4361133e4cc_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Thu May 07 05:54:47 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2983505158/46a0f5eadf450f553472c4361133e4cc_normal.jpeg", - "favourites_count": 4018, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ToGovern", - "in_reply_to_user_id": 166505377, - "in_reply_to_status_id_str": "685577074417991681", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613343294357504", - "id": 685613343294357504, - "text": "@ToGovern thanks! You'll also like @Get_Lighthouse then.", - "in_reply_to_user_id_str": "166505377", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ToGovern", - "id_str": "166505377", - "id": 166505377, - "indices": [ - 0, - 9 - ], - "name": "Corporate Governance" - }, - { - "screen_name": "Get_Lighthouse", - "id_str": "2450328954", - "id": 2450328954, - "indices": [ - 35, - 50 - ], - "name": "Get Lighthouse" - } - ] - }, - "created_at": "Sat Jan 09 00:05:33 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685577074417991681, - "lang": "en" - }, - "default_profile_image": false, - "id": 38380590, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/36919524/twitter-background-free-032.jpg", - "statuses_count": 33074, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/38380590/1402174070", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "163997887", - "following": false, - "friends_count": 617, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tech.paulcz.net", - "url": "http://t.co/pszReLs02g", - "expanded_url": "http://tech.paulcz.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 783, - "location": "Austin, TX", - "screen_name": "pczarkowski", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "Czarknado", - "profile_use_background_image": true, - "description": "Assistant to the Regional Devop", - "url": "http://t.co/pszReLs02g", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655945658021490694/fWJNd4Wr_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jul 07 19:59:49 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655945658021490694/fWJNd4Wr_normal.jpg", - "favourites_count": 1143, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jesspryles", - "in_reply_to_user_id": 239123640, - "in_reply_to_status_id_str": "685567662189969408", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685583721785724928", - "id": 685583721785724928, - "text": "@jesspryles @BarbecueWife @tmbbq That looks like the start of a beautiful martini", - "in_reply_to_user_id_str": "239123640", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jesspryles", - "id_str": "239123640", - "id": 239123640, - "indices": [ - 0, - 11 - ], - "name": "Jess Pryles" - }, - { - "screen_name": "BarbecueWife", - "id_str": "2156702220", - "id": 2156702220, - "indices": [ - 12, - 25 - ], - "name": "Barbecue Wife" - }, - { - "screen_name": "tmbbq", - "id_str": "314842586", - "id": 314842586, - "indices": [ - 26, - 32 - ], - "name": "TMBBQ" - } - ] - }, - "created_at": "Fri Jan 08 22:07:51 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685567662189969408, - "lang": "en" - }, - "default_profile_image": false, - "id": 163997887, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6130, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/163997887/1445224049", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5676102", - "following": false, - "friends_count": 5512, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hanselman.com", - "url": "https://t.co/KWE5X1BBOh", - "expanded_url": "http://hanselman.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/373869284/sepiabackground.jpg", - "notifications": false, - "profile_sidebar_fill_color": "B8AA9C", - "profile_link_color": "72412C", - "geo_enabled": true, - "followers_count": 150954, - "location": "Portland, Oregon", - "screen_name": "shanselman", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 7232, - "name": "Scott Hanselman", - "profile_use_background_image": true, - "description": "Tech, Code, YouTube, Race, Linguistics, Web, Parenting, Fashion, Black Hair, STEM, @OSCON chair, Phony. MSFT, but these are my opinions. @overheardathome", - "url": "https://t.co/KWE5X1BBOh", - "profile_text_color": "696969", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459455847165218816/I_sH-zvU_normal.jpeg", - "profile_background_color": "D1CDC1", - "created_at": "Tue May 01 05:55:26 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "B8AA9C", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459455847165218816/I_sH-zvU_normal.jpeg", - "favourites_count": 24118, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 39, - "truncated": false, - "retweeted": false, - "id_str": "685612414331523072", - "id": 685612414331523072, - "text": "I don't want a SmartTV. I want a DumbTV with an HDMI input. I'm not interested in a lousy insecure TV operating system and slow Netflix app.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:01:52 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 61, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 5676102, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/373869284/sepiabackground.jpg", - "statuses_count": 134545, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5676102/1398280381", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "176785758", - "following": false, - "friends_count": 560, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/cdparks", - "url": "https://t.co/i3UJKkqCYc", - "expanded_url": "http://github.com/cdparks", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 99, - "location": "Santa Clara", - "screen_name": "cdparx", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 2, - "name": "Chris Parks", - "profile_use_background_image": true, - "description": "Books, Haskell, cycling, chiptunes. Web engineer at Front Row Education.", - "url": "https://t.co/i3UJKkqCYc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/673630904183447552/BtXDgn8G_normal.jpg", - "profile_background_color": "022330", - "created_at": "Tue Aug 10 12:43:49 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673630904183447552/BtXDgn8G_normal.jpg", - "favourites_count": 589, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685519445159055361", - "id": 685519445159055361, - "text": ".@alex_kurilin maybe I'm easy to impress, but tmux is blowing my mind", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "alex_kurilin", - "id_str": "518123090", - "id": 518123090, - "indices": [ - 1, - 14 - ], - "name": "Alexandr Kurilin" - } - ] - }, - "created_at": "Fri Jan 08 17:52:26 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 176785758, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 320, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/176785758/1449441098", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "169213944", - "following": false, - "friends_count": 975, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "netmeister.org", - "url": "https://t.co/ig2RCUAX9I", - "expanded_url": "https://www.netmeister.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "300099", - "geo_enabled": true, - "followers_count": 1873, - "location": "New York, NY", - "screen_name": "jschauma", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 123, - "name": "Jan Schaumann", - "profile_use_background_image": false, - "description": "Vell, I'm just zis guy, you know?", - "url": "https://t.co/ig2RCUAX9I", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/551217713230528512/t4O7Iflt_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Jul 21 20:33:15 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551217713230528512/t4O7Iflt_normal.jpeg", - "favourites_count": 988, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jschauma", - "in_reply_to_user_id": 169213944, - "in_reply_to_status_id_str": "509752797156622336", - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685582148498272256", - "id": 685582148498272256, - "text": "Is giving an #infosec talk without using the word 'cyber' and not referencing Sun Tsu even allowed? Asking for a friend.", - "in_reply_to_user_id_str": "169213944", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 13, - 21 - ], - "text": "infosec" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:01:36 +0000 2016", - "source": "very-simple-tweet", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 509752797156622336, - "lang": "en" - }, - "default_profile_image": false, - "id": 169213944, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 19568, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/169213944/1420256090", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "196702550", - "following": false, - "friends_count": 1154, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 456, - "location": "", - "screen_name": "dvdeijk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 35, - "name": "David van Deijk", - "profile_use_background_image": true, - "description": "Emotie is nodig om geluk te vinden, Ratio om het te bereiken.\r\nExpert op (web)applicaties, social media en vrijwilligerssturing.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1826560759/2d248f2e-78f0-4b7f-8f49-cb039a9e2541_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 29 18:27:59 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1826560759/2d248f2e-78f0-4b7f-8f49-cb039a9e2541_normal.png", - "favourites_count": 20, - "status": { - "retweet_count": 316, - "retweeted_status": { - "retweet_count": 316, - "in_reply_to_user_id": null, - "possibly_sensitive": true, - "id_str": "684944939151527937", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 720, - "h": 470, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 221, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 391, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", - "type": "photo", - "indices": [ - 0, - 23 - ], - "media_url": "http://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", - "display_url": "pic.twitter.com/WC5wGzrOUk", - "id_str": "684944922642759680", - "expanded_url": "http://twitter.com/StrangeImages/status/684944939151527937/photo/1", - "id": 684944922642759680, - "url": "https://t.co/WC5wGzrOUk" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 03:49:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684944939151527937, - "text": "https://t.co/WC5wGzrOUk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 543, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685525851623047169", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 720, - "h": 470, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 221, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 391, - "resize": "fit" - } - }, - "source_status_id_str": "684944939151527937", - "url": "https://t.co/WC5wGzrOUk", - "media_url": "http://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", - "source_user_id_str": "1681431577", - "id_str": "684944922642759680", - "id": 684944922642759680, - "media_url_https": "https://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", - "type": "photo", - "indices": [ - 19, - 42 - ], - "source_status_id": 684944939151527937, - "source_user_id": 1681431577, - "display_url": "pic.twitter.com/WC5wGzrOUk", - "expanded_url": "http://twitter.com/StrangeImages/status/684944939151527937/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "StrangeImages", - "id_str": "1681431577", - "id": 1681431577, - "indices": [ - 3, - 17 - ], - "name": "Cynide And Happiness" - } - ] - }, - "created_at": "Fri Jan 08 18:17:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685525851623047169, - "text": "RT @StrangeImages: https://t.co/WC5wGzrOUk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 196702550, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7230, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16215661", - "following": false, - "friends_count": 913, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "leifmadsen.com", - "url": "https://t.co/iQoEHSTtV4", - "expanded_url": "http://www.leifmadsen.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/605840517/kkd6rs03wn463ps6rs29.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1853, - "location": "\u00dcT: 43.521809,-79.698364", - "screen_name": "leifmadsen", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 118, - "name": "Life Mad Sun", - "profile_use_background_image": true, - "description": "Co-author of Asterisk: The Future of Telephony and Asterisk: The Definitive Guide.\n\nPartner Engineer - CI and NFV at Red Hat.", - "url": "https://t.co/iQoEHSTtV4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/637323360733667329/QQmh-udy_normal.jpg", - "profile_background_color": "022330", - "created_at": "Wed Sep 10 02:49:53 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637323360733667329/QQmh-udy_normal.jpg", - "favourites_count": 2123, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "681999770307571713", - "id": 681999770307571713, - "text": "Not once have I ever meant \"Ducking\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 00:46:30 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 6, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 16215661, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/605840517/kkd6rs03wn463ps6rs29.png", - "statuses_count": 5416, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16215661/1449766084", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "790719620", - "following": false, - "friends_count": 130, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "CC3366", - "geo_enabled": false, - "followers_count": 32, - "location": "", - "screen_name": "kavek9", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "janueric", - "profile_use_background_image": true, - "description": "eric's jokes, sports, and political comments with only random attempts at grammar.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683890407357284352/fWiCAyVK_normal.jpg", - "profile_background_color": "DBE9ED", - "created_at": "Thu Aug 30 03:19:23 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBE9ED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683890407357284352/fWiCAyVK_normal.jpg", - "favourites_count": 615, - "status": { - "retweet_count": 8, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "JacsonBevens", - "in_reply_to_user_id": 295234079, - "in_reply_to_status_id_str": "685542577488044032", - "retweet_count": 8, - "truncated": false, - "retweeted": false, - "id_str": "685543133577281536", - "id": 685543133577281536, - "text": "Believe when I say that Jimmy Graham would be feasting like a Norse king if he were healthy in this offense the way the OL has been playing", - "in_reply_to_user_id_str": "295234079", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:26:34 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 39, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685542577488044032, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685568225417936896", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JacsonBevens", - "id_str": "295234079", - "id": 295234079, - "indices": [ - 3, - 16 - ], - "name": "Jacson A. Bevens" - } - ] - }, - "created_at": "Fri Jan 08 21:06:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685568225417936896, - "text": "RT @JacsonBevens: Believe when I say that Jimmy Graham would be feasting like a Norse king if he were healthy in this offense the way the \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 790719620, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "statuses_count": 531, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2891402324", - "following": false, - "friends_count": 56, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 50, - "location": "", - "screen_name": "Inman_Leslie_62", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Leslie Inman", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/531329061872611328/A3Lc1iWt_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Nov 06 00:55:58 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/531329061872611328/A3Lc1iWt_normal.jpeg", - "favourites_count": 261, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Mike_Speegle", - "in_reply_to_user_id": 196082293, - "in_reply_to_status_id_str": "683858779276877824", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "683860091993370624", - "id": 683860091993370624, - "text": "@Mike_Speegle weirdly pretty...hmmm", - "in_reply_to_user_id_str": "196082293", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Mike_Speegle", - "id_str": "196082293", - "id": 196082293, - "indices": [ - 0, - 13 - ], - "name": "Mike Speegle" - } - ] - }, - "created_at": "Mon Jan 04 03:58:46 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683858779276877824, - "lang": "en" - }, - "default_profile_image": false, - "id": 2891402324, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 54, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16340755", - "following": false, - "friends_count": 153, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cloudpundit.com", - "url": "http://t.co/QQVdkoyVS2", - "expanded_url": "http://cloudpundit.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 13022, - "location": "Washington DC", - "screen_name": "cloudpundit", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 750, - "name": "Lydia Leong", - "profile_use_background_image": true, - "description": "VP Distinguished Analyst at Gartner, covering cloud computing, content delivery networks, hosting, and more. Opinions are my own. RTs do not imply agreement.", - "url": "http://t.co/QQVdkoyVS2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/78675981/Lydia_normal.jpg", - "profile_background_color": "022330", - "created_at": "Thu Sep 18 01:38:45 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/78675981/Lydia_normal.jpg", - "favourites_count": 3, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685520689370103808", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "sumall.com/myweek", - "url": "https://t.co/ShJJ98dtrS", - "expanded_url": "http://sumall.com/myweek", - "indices": [ - 105, - 128 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:57:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685520689370103808, - "text": "My week on Twitter: 33 New Followers, 17 Mentions, 51.4K Mention Reach. How's your audience growing? via https://t.co/ShJJ98dtrS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TwentyFeet" - }, - "default_profile_image": false, - "id": 16340755, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 9221, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16340755/1401729570", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "14089059", - "following": false, - "friends_count": 763, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pingham.com", - "url": "http://t.co/kDVpGDlHQk", - "expanded_url": "http://www.pingham.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme20/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "BF1238", - "geo_enabled": true, - "followers_count": 628, - "location": "Didsbury, South Manchester", - "screen_name": "paulingham", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 32, - "name": "Paul Ingham.", - "profile_use_background_image": false, - "description": "Senior Developer for @OnTheBeachUK and all round awesome guy. Probably the most awesome person you'll ever meet. Views are my own.", - "url": "http://t.co/kDVpGDlHQk", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/442807573071556608/ppAO7PHP_normal.jpeg", - "profile_background_color": "BF1238", - "created_at": "Thu Mar 06 15:14:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/442807573071556608/ppAO7PHP_normal.jpeg", - "favourites_count": 10, - "status": { - "retweet_count": 2198, - "retweeted_status": { - "retweet_count": 2198, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685111345348521984", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 480, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", - "type": "photo", - "indices": [ - 47, - 70 - ], - "media_url": "http://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", - "display_url": "pic.twitter.com/AwSYt5s7OX", - "id_str": "685111342987087872", - "expanded_url": "http://twitter.com/RachaelKrishna/status/685111345348521984/photo/1", - "id": 685111342987087872, - "url": "https://t.co/AwSYt5s7OX" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 14:50:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685111345348521984, - "text": "Fox is evolving, Fox has evolved into Quadfox. https://t.co/AwSYt5s7OX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2612, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685124160062894080", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 480, - "resize": "fit" - } - }, - "source_status_id_str": "685111345348521984", - "url": "https://t.co/AwSYt5s7OX", - "media_url": "http://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", - "source_user_id_str": "31167776", - "id_str": "685111342987087872", - "id": 685111342987087872, - "media_url_https": "https://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", - "type": "photo", - "indices": [ - 67, - 90 - ], - "source_status_id": 685111345348521984, - "source_user_id": 31167776, - "display_url": "pic.twitter.com/AwSYt5s7OX", - "expanded_url": "http://twitter.com/RachaelKrishna/status/685111345348521984/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RachaelKrishna", - "id_str": "31167776", - "id": 31167776, - "indices": [ - 3, - 18 - ], - "name": "Rachael Krishna" - } - ] - }, - "created_at": "Thu Jan 07 15:41:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685124160062894080, - "text": "RT @RachaelKrishna: Fox is evolving, Fox has evolved into Quadfox. https://t.co/AwSYt5s7OX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 14089059, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme20/bg.png", - "statuses_count": 22624, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14089059/1398369726", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "246586641", - "following": false, - "friends_count": 746, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/tomsteele", - "url": "https://t.co/BjxFlIEzZt", - "expanded_url": "https://github.com/tomsteele", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 513, - "location": "Boise, ID", - "screen_name": "_tomsteele", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 22, - "name": "Tom Steele", - "profile_use_background_image": true, - "description": "", - "url": "https://t.co/BjxFlIEzZt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663640413362782208/fE5DDncd_normal.jpg", - "profile_background_color": "022330", - "created_at": "Thu Feb 03 02:06:57 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663640413362782208/fE5DDncd_normal.jpg", - "favourites_count": 947, - "status": { - "retweet_count": 33, - "retweeted_status": { - "retweet_count": 33, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679123620308783104", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", - "type": "photo", - "indices": [ - 94, - 117 - ], - "media_url": "http://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", - "display_url": "pic.twitter.com/x2ITwDRC9E", - "id_str": "679123619641864192", - "expanded_url": "http://twitter.com/jmgosney/status/679123620308783104/photo/1", - "id": 679123619641864192, - "url": "https://t.co/x2ITwDRC9E" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 22 02:17:43 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679123620308783104, - "text": "Happy holidays from Sagitta HPC! We made a Christmas tree and a nativity scene out of GPUs :) https://t.co/x2ITwDRC9E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 56, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679125475185135616", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "source_status_id_str": "679123620308783104", - "url": "https://t.co/x2ITwDRC9E", - "media_url": "http://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", - "source_user_id_str": "312383587", - "id_str": "679123619641864192", - "id": 679123619641864192, - "media_url_https": "https://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", - "type": "photo", - "indices": [ - 108, - 131 - ], - "source_status_id": 679123620308783104, - "source_user_id": 312383587, - "display_url": "pic.twitter.com/x2ITwDRC9E", - "expanded_url": "http://twitter.com/jmgosney/status/679123620308783104/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jmgosney", - "id_str": "312383587", - "id": 312383587, - "indices": [ - 3, - 12 - ], - "name": "Jeremi M Gosney" - } - ] - }, - "created_at": "Tue Dec 22 02:25:05 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679125475185135616, - "text": "RT @jmgosney: Happy holidays from Sagitta HPC! We made a Christmas tree and a nativity scene out of GPUs :) https://t.co/x2ITwDRC9E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 246586641, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 1177, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "18209670", - "following": false, - "friends_count": 414, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/882271759/58d21fd2e0431d9b504cf57550d0019d.png", - "notifications": false, - "profile_sidebar_fill_color": "E8E8E8", - "profile_link_color": "B89404", - "geo_enabled": true, - "followers_count": 757, - "location": "pdx \u2022 oregon", - "screen_name": "amydearest", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "Amy Lynn Taylor", - "profile_use_background_image": true, - "description": "letterer, designer & swag master at @andyet. take me to the beach!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/604400972379521024/4Iol5Nyr_normal.jpg", - "profile_background_color": "4A4141", - "created_at": "Thu Dec 18 05:26:58 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/604400972379521024/4Iol5Nyr_normal.jpg", - "favourites_count": 1236, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "nrrrdcore", - "in_reply_to_user_id": 18496432, - "in_reply_to_status_id_str": "685008838605455360", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685026965103968256", - "id": 685026965103968256, - "text": "@nrrrdcore Miss you too, lady!!! Hope 2016 is an amazing year for you! \u2728\ud83c\udf89\ud83c\udf08\ud83c\udf69\ud83c\udf1f", - "in_reply_to_user_id_str": "18496432", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nrrrdcore", - "id_str": "18496432", - "id": 18496432, - "indices": [ - 0, - 10 - ], - "name": "Julie Ann Horvath" - } - ] - }, - "created_at": "Thu Jan 07 09:15:30 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685008838605455360, - "lang": "en" - }, - "default_profile_image": false, - "id": 18209670, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/882271759/58d21fd2e0431d9b504cf57550d0019d.png", - "statuses_count": 2968, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18209670/1429780917", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Christian, Husband, Security Professional, Zymurgist.", - "url": "http://t.co/FcIMyqDn1D", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "14161519", - "blocking": false, - "is_translation_enabled": false, - "id": 14161519, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.liftsecurity.io", - "url": "http://t.co/FcIMyqDn1D", - "expanded_url": "http://blog.liftsecurity.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "022330", - "created_at": "Mon Mar 17 05:16:11 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/425795441137942528/MKPIEfkm_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "statuses_count": 790, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/425795441137942528/MKPIEfkm_normal.jpeg", - "favourites_count": 747, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 198, - "blocked_by": false, - "following": false, - "location": "Tri-Cities, Washington", - "muting": false, - "friends_count": 278, - "notifications": false, - "screen_name": "jon_lamendola", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 18, - "is_translator": false, - "name": "Jon Lamendola" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15839160", - "following": false, - "friends_count": 393, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/802935671/3526cfcd432db9a1b194a58fd53258c3.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 174, - "location": "Richland, WA", - "screen_name": "shadowking", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "Matt", - "profile_use_background_image": true, - "description": "Dad, Computer Geek, Seeking World Domination", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/469317185496563712/hzejFsWa_normal.jpeg", - "profile_background_color": "396DA5", - "created_at": "Wed Aug 13 16:59:11 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/469317185496563712/hzejFsWa_normal.jpeg", - "favourites_count": 19, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "seank", - "in_reply_to_user_id": 1251781, - "in_reply_to_status_id_str": "666810637390061570", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "666815014708244480", - "id": 666815014708244480, - "text": "@seank @andyet Not it. But @hjon might know a lot more than I do.", - "in_reply_to_user_id_str": "1251781", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "seank", - "id_str": "1251781", - "id": 1251781, - "indices": [ - 0, - 6 - ], - "name": "Sean Kelly" - }, - { - "screen_name": "andyet", - "id_str": "41294568", - "id": 41294568, - "indices": [ - 7, - 14 - ], - "name": "&yet" - }, - { - "screen_name": "hjon", - "id_str": "8446052", - "id": 8446052, - "indices": [ - 27, - 32 - ], - "name": "Jon Hjelle" - } - ] - }, - "created_at": "Wed Nov 18 03:07:42 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 666810637390061570, - "lang": "en" - }, - "default_profile_image": false, - "id": 15839160, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/802935671/3526cfcd432db9a1b194a58fd53258c3.jpeg", - "statuses_count": 100, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15839160/1406223575", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "36700219", - "following": false, - "friends_count": 191, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.danger.computer", - "url": "https://t.co/QDoQ6jSQlH", - "expanded_url": "http://blog.danger.computer", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/19825055/scematic.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "CD678B", - "geo_enabled": false, - "followers_count": 551, - "location": "The Internet", - "screen_name": "wraithgar", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 58, - "name": "Gar", - "profile_use_background_image": true, - "description": "That's me I'm Gar.", - "url": "https://t.co/QDoQ6jSQlH", - "profile_text_color": "008000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684124704643223552/w8QjxnMH_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Apr 30 16:12:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684124704643223552/w8QjxnMH_normal.jpg", - "favourites_count": 7937, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685598426990444544", - "id": 685598426990444544, - "text": "TIL there are still people out there who will put www in front of any url you give them.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:06:17 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 36700219, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/19825055/scematic.gif", - "statuses_count": 14795, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/36700219/1397581843", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "22577946", - "following": false, - "friends_count": 357, - "entities": { - "description": { - "urls": [ - { - "display_url": "jennpm.com", - "url": "http://t.co/Hh0LGhrdhx", - "expanded_url": "http://jennpm.com", - "indices": [ - 68, - 90 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "tinyletter.com/renrutnnej", - "url": "https://t.co/66aBzBcFPN", - "expanded_url": "https://tinyletter.com/renrutnnej", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/788428227/2a7556d8d4ef62ef128d880c9832fd54.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F5DA2E", - "profile_link_color": "45BFA4", - "geo_enabled": true, - "followers_count": 1166, - "location": "Brooklyn, NY", - "screen_name": "renrutnnej", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 81, - "name": "Jenn Turner", - "profile_use_background_image": false, - "description": "Young, wild and free. Except for the young part. And the wild part. http://t.co/Hh0LGhrdhx", - "url": "https://t.co/66aBzBcFPN", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624664971742310404/zlx538-s_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Mar 03 03:25:12 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624664971742310404/zlx538-s_normal.jpg", - "favourites_count": 15202, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610321629831170", - "id": 685610321629831170, - "text": "Hearts are so weird. Just when I think mine's completely full, someone shows up and boom! There's room for more.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:53:33 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 22577946, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/788428227/2a7556d8d4ef62ef128d880c9832fd54.jpeg", - "statuses_count": 14951, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22577946/1448822155", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "404215418", - "following": false, - "friends_count": 336, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyet.com", - "url": "http://t.co/XD7F7KJqCZ", - "expanded_url": "http://andyet.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886967261/1724fffecf73d7b8c22b3ce21cccfa4c.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "94D487", - "geo_enabled": false, - "followers_count": 397, - "location": "The Dalles, OR", - "screen_name": "missfelony", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "melanie", - "profile_use_background_image": false, - "description": "A frequent filmmaker, photographer and theology student. Lover of honey bees and my peoples at &yet.", - "url": "http://t.co/XD7F7KJqCZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/644167511764697088/IIMFrV4Y_normal.jpg", - "profile_background_color": "F5E5CB", - "created_at": "Thu Nov 03 16:16:18 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/644167511764697088/IIMFrV4Y_normal.jpg", - "favourites_count": 947, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 15281965, - "possibly_sensitive": false, - "id_str": "684456894983843840", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "lizvice.com/calendar/", - "url": "https://t.co/b5lqCB2xTC", - "expanded_url": "http://www.lizvice.com/calendar/", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "fosterhunting", - "id_str": "15281965", - "id": 15281965, - "indices": [ - 0, - 14 - ], - "name": "Foster Huntington" - } - ] - }, - "created_at": "Tue Jan 05 19:30:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "15281965", - "place": null, - "in_reply_to_screen_name": "fosterhunting", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684456894983843840, - "text": "@fosterhunting By chance do u open your home in (Humboldt) to nice people on tour? We make great guests! Jan 25th https://t.co/b5lqCB2xTC", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 404215418, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886967261/1724fffecf73d7b8c22b3ce21cccfa4c.jpeg", - "statuses_count": 541, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "72917560", - "following": false, - "friends_count": 201, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "FF0000", - "geo_enabled": false, - "followers_count": 237, - "location": "", - "screen_name": "StephanieMaier", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 14, - "name": "Stephanie Maier", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495316813518237696/JajTx181_normal.jpeg", - "profile_background_color": "BADFCD", - "created_at": "Wed Sep 09 18:36:28 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F2E195", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495316813518237696/JajTx181_normal.jpeg", - "favourites_count": 728, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "578740117755465728", - "id": 578740117755465728, - "text": "Hardest lesson I\u2019ve learned to date: If something seems too good to be true, it probably is.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Mar 20 02:09:31 +0000 2015", - "source": "Tweetbot for Mac", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 72917560, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "statuses_count": 1568, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "326997078", - "following": false, - "friends_count": 224, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 214, - "location": "Kennewick, WA", - "screen_name": "DanielChBarnes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Daniel Barnes", - "profile_use_background_image": true, - "description": "programmer, paraglider", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/514517153559494657/Q5zlmgX0_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Jun 30 20:44:12 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/514517153559494657/Q5zlmgX0_normal.jpeg", - "favourites_count": 410, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "McKurves", - "in_reply_to_user_id": 214349059, - "in_reply_to_status_id_str": "657038086522564608", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "657072222150914048", - "id": 657072222150914048, - "text": "@McKurves just never much to use it for too me.", - "in_reply_to_user_id_str": "214349059", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "McKurves", - "id_str": "214349059", - "id": 214349059, - "indices": [ - 0, - 9 - ], - "name": "\uff2b\uff41\uff44\uff45" - } - ] - }, - "created_at": "Thu Oct 22 05:53:20 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 657038086522564608, - "lang": "en" - }, - "default_profile_image": false, - "id": 326997078, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 737, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/326997078/1411505627", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "37875884", - "following": false, - "friends_count": 126, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "4A913C", - "geo_enabled": false, - "followers_count": 551, - "location": "Tri Cities", - "screen_name": "ericzanol", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 47, - "name": "Eric", - "profile_use_background_image": false, - "description": "Dry wit, bleeding heart, can\u2019t lose.", - "url": null, - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680148284736864257/SyqcadxG_normal.jpg", - "profile_background_color": "352726", - "created_at": "Tue May 05 06:56:24 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680148284736864257/SyqcadxG_normal.jpg", - "favourites_count": 2381, - "status": { - "retweet_count": 5, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 5, - "truncated": false, - "retweeted": false, - "id_str": "685562906017136640", - "id": 685562906017136640, - "text": "Happiness is when what you think, what you say, and what you do are in harmony. -M. K. Gandhi", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:45:08 +0000 2016", - "source": "Hootsuite", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685571850949144576", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ldavidmarquet", - "id_str": "165091971", - "id": 165091971, - "indices": [ - 3, - 17 - ], - "name": "David Marquet" - } - ] - }, - "created_at": "Fri Jan 08 21:20:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685571850949144576, - "text": "RT @ldavidmarquet: Happiness is when what you think, what you say, and what you do are in harmony. -M. K. Gandhi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 37875884, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 180, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "186343313", - "following": false, - "friends_count": 121, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "unneeded.info", - "url": "http://t.co/1yci9kxdeJ", - "expanded_url": "http://unneeded.info", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 324, - "location": "Kennewick, WA", - "screen_name": "quitlahok", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 20, - "name": "Nathan LaFreniere", - "profile_use_background_image": true, - "description": "I work at &yet where I pretend I know how to program, and occasionally fix whatever's broken", - "url": "http://t.co/1yci9kxdeJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/448225972865622017/qWgtXEYW_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Sep 03 05:43:46 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/448225972865622017/qWgtXEYW_normal.jpeg", - "favourites_count": 13, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "wraithgar", - "in_reply_to_user_id": 36700219, - "in_reply_to_status_id_str": "679719966816374785", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "680060113932046338", - "id": 680060113932046338, - "text": "@wraithgar @brycebaril he talks about as much as i did too", - "in_reply_to_user_id_str": "36700219", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wraithgar", - "id_str": "36700219", - "id": 36700219, - "indices": [ - 0, - 10 - ], - "name": "Gar" - }, - { - "screen_name": "brycebaril", - "id_str": "7515742", - "id": 7515742, - "indices": [ - 11, - 22 - ], - "name": "Bryce Baril" - } - ] - }, - "created_at": "Thu Dec 24 16:19:00 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 679719966816374785, - "lang": "en" - }, - "default_profile_image": false, - "id": 186343313, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 549, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "26330898", - "following": false, - "friends_count": 342, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rckbt.me", - "url": "https://t.co/oqkVcYlwPm", - "expanded_url": "http://rckbt.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 8038, - "location": "Bay Area, CA", - "screen_name": "rockbot", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 480, - "name": "Raquel V\u00e9lez", - "profile_use_background_image": true, - "description": "purveyor of flan \u2219 web wombat at @npmjs \u2219 polyglot \u2219 co-host of @reactivepod", - "url": "https://t.co/oqkVcYlwPm", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657044546430177280/47ES_A2x_normal.jpg", - "profile_background_color": "022330", - "created_at": "Tue Mar 24 21:38:23 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657044546430177280/47ES_A2x_normal.jpg", - "favourites_count": 8443, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ag_dubs", - "in_reply_to_user_id": 304067888, - "in_reply_to_status_id_str": "685577669900169217", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685577888381321216", - "id": 685577888381321216, - "text": "@ag_dubs @wafflejs omggggg\n\nmaybe? :-D", - "in_reply_to_user_id_str": "304067888", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ag_dubs", - "id_str": "304067888", - "id": 304067888, - "indices": [ - 0, - 8 - ], - "name": "ashley williams" - }, - { - "screen_name": "wafflejs", - "id_str": "3338088405", - "id": 3338088405, - "indices": [ - 9, - 18 - ], - "name": "WaffleJS" - } - ] - }, - "created_at": "Fri Jan 08 21:44:40 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685577669900169217, - "lang": "en" - }, - "default_profile_image": false, - "id": 26330898, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 17452, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26330898/1385156937", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17123007", - "following": false, - "friends_count": 146, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lance.im", - "url": "https://t.co/83MrRTiW4A", - "expanded_url": "http://lance.im", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 506, - "location": "West Richland, WA ", - "screen_name": "lancestout", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Lance Stout", - "profile_use_background_image": true, - "description": "JS / Node / XMPP developer at @andyet", - "url": "https://t.co/83MrRTiW4A", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/517111112181899265/EdolLRh8_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 03 01:01:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/517111112181899265/EdolLRh8_normal.png", - "favourites_count": 209, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "wraithgar", - "in_reply_to_user_id": 36700219, - "in_reply_to_status_id_str": "671373498619592705", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "671377713643393025", - "id": 671377713643393025, - "text": "@wraithgar For a while, our phones would tell us how long it'd take to get to your house on the weekends..", - "in_reply_to_user_id_str": "36700219", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wraithgar", - "id_str": "36700219", - "id": 36700219, - "indices": [ - 0, - 10 - ], - "name": "Gar" - } - ] - }, - "created_at": "Mon Nov 30 17:18:15 +0000 2015", - "source": "Twitter for Mac", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 671373498619592705, - "lang": "en" - }, - "default_profile_image": false, - "id": 17123007, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 234, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "44897658", - "following": false, - "friends_count": 961, - "entities": { - "description": { - "urls": [ - { - "display_url": "deepfield.net", - "url": "http://t.co/zwaTxtC536", - "expanded_url": "http://deepfield.net", - "indices": [ - 26, - 48 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 103, - "location": "4th and Maynard ... ", - "screen_name": "halfaleague", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Luke Carmichael", - "profile_use_background_image": true, - "description": "python clojure c + data @ http://t.co/zwaTxtC536", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1525229600/macke_lady_thumb_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Jun 05 14:00:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1525229600/macke_lady_thumb_normal.jpg", - "favourites_count": 35, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685580888982159360", - "id": 685580888982159360, - "text": "Our new Epoca espresso machine at Deepfield is so good. I apologize to the local economy for how much less coffee I'll be buying.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:56:36 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685586744444489728", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "naim", - "id_str": "7228172", - "id": 7228172, - "indices": [ - 3, - 8 - ], - "name": "Naim Falandino" - } - ] - }, - "created_at": "Fri Jan 08 22:19:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685586744444489728, - "text": "RT @naim: Our new Epoca espresso machine at Deepfield is so good. I apologize to the local economy for how much less coffee I'll be buying.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 44897658, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 355, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "78663", - "following": false, - "friends_count": 616, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ceejbot.tumblr.com", - "url": "https://t.co/BKkuBfyOm7", - "expanded_url": "http://ceejbot.tumblr.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/149122382/x59fbc11347f5afe2a4e736cd31efed2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E8DDCB", - "profile_link_color": "472C04", - "geo_enabled": true, - "followers_count": 2579, - "location": "Menlo Park, CA", - "screen_name": "ceejbot", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 216, - "name": "Secret Ceej Weapon", - "profile_use_background_image": true, - "description": "Ceej aka ceejbot. THE NPM SIEGE BOT. Innovative thought admiral-ship in cat-related tweeting.", - "url": "https://t.co/BKkuBfyOm7", - "profile_text_color": "031634", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631253658743603200/XeO_3PC7_normal.jpg", - "profile_background_color": "CDB380", - "created_at": "Mon Dec 18 23:22:16 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "036564", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631253658743603200/XeO_3PC7_normal.jpg", - "favourites_count": 11779, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/ab2f2fac83aa388d.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.34266, - 37.699279 - ], - [ - -122.114711, - 37.699279 - ], - [ - -122.114711, - 37.8847092 - ], - [ - -122.34266, - 37.8847092 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Oakland, CA", - "id": "ab2f2fac83aa388d", - "name": "Oakland" - }, - "in_reply_to_screen_name": "DanielleSucher", - "in_reply_to_user_id": 19393655, - "in_reply_to_status_id_str": "685569257409765377", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685598431209914368", - "id": 685598431209914368, - "text": "@DanielleSucher *hugs* and not crazy at all IMO.", - "in_reply_to_user_id_str": "19393655", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DanielleSucher", - "id_str": "19393655", - "id": 19393655, - "indices": [ - 0, - 15 - ], - "name": "Danielle Sucher" - } - ] - }, - "created_at": "Fri Jan 08 23:06:18 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685569257409765377, - "lang": "en" - }, - "default_profile_image": false, - "id": 78663, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/149122382/x59fbc11347f5afe2a4e736cd31efed2.jpg", - "statuses_count": 34269, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/78663/1400545557", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "810132127", - "following": false, - "friends_count": 1590, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "flipboard.com/@cdurant", - "url": "https://t.co/aibuc166qC", - "expanded_url": "https://flipboard.com/@cdurant", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 341, - "location": "San Francisco, CA", - "screen_name": "colin_durant", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "Colin DuRant", - "profile_use_background_image": true, - "description": "Analytics & product at @clever formerly @flipboard @catalogspree / SF by way of SJ and OK", - "url": "https://t.co/aibuc166qC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/523882538779942913/q14cM8U1_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Sep 08 03:52:28 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/523882538779942913/q14cM8U1_normal.jpeg", - "favourites_count": 3962, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681855917378293760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "apple.news/A5b8trld-SUeWl\u2026", - "url": "https://t.co/usDHcNomwE", - "expanded_url": "https://apple.news/A5b8trld-SUeWl9Wzn4xrdQ", - "indices": [ - 64, - 87 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 29 15:14:53 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681855917378293760, - "text": "San Francisco's Self-Defeating Housing Activists - The Atlantic https://t.co/usDHcNomwE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681913746965442560", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "apple.news/A5b8trld-SUeWl\u2026", - "url": "https://t.co/usDHcNomwE", - "expanded_url": "https://apple.news/A5b8trld-SUeWl9Wzn4xrdQ", - "indices": [ - 78, - 101 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "drfourny", - "id_str": "255787439", - "id": 255787439, - "indices": [ - 3, - 12 - ], - "name": "Diane Rogers Fourny" - } - ] - }, - "created_at": "Tue Dec 29 19:04:41 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681913746965442560, - "text": "RT @drfourny: San Francisco's Self-Defeating Housing Activists - The Atlantic https://t.co/usDHcNomwE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 810132127, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1654, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/810132127/1413738305", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14498374", - "following": false, - "friends_count": 979, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyet.net/team/nathan", - "url": "https://t.co/sHqfMeNd0i", - "expanded_url": "http://andyet.net/team/nathan", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 1583, - "location": "Kennewick, WA", - "screen_name": "fritzy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 124, - "name": "Fritzy", - "profile_use_background_image": true, - "description": "@andyet Chief Architect by day, Indie game dev by night.", - "url": "https://t.co/sHqfMeNd0i", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677258552621142017/fyRHHsb-_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Apr 23 18:26:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677258552621142017/fyRHHsb-_normal.jpg", - "favourites_count": 7346, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685611889636671488", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 224, - "h": 495, - "resize": "fit" - }, - "medium": { - "w": 224, - "h": 495, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 224, - "h": 495, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPIYXkUMAAJQz5.png", - "type": "photo", - "indices": [ - 82, - 105 - ], - "media_url": "http://pbs.twimg.com/media/CYPIYXkUMAAJQz5.png", - "display_url": "pic.twitter.com/5quACdznFY", - "id_str": "685611889259196416", - "expanded_url": "http://twitter.com/fritzy/status/685611889636671488/photo/1", - "id": 685611889259196416, - "url": "https://t.co/5quACdznFY" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "firefox", - "id_str": "2142731", - "id": 2142731, - "indices": [ - 25, - 33 - ], - "name": "Firefox" - }, - { - "screen_name": "github", - "id_str": "13334762", - "id": 13334762, - "indices": [ - 57, - 64 - ], - "name": "GitHub" - } - ] - }, - "created_at": "Fri Jan 08 23:59:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685611889636671488, - "text": "So, about moving back to @Firefox. No plugins, just on a @github code page. Nope. https://t.co/5quACdznFY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14498374, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 9830, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14498374/1427130806", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "346307007", - "following": false, - "friends_count": 263, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "louisefristensky.com", - "url": "http://t.co/TNsqxaAiRL", - "expanded_url": "http://www.louisefristensky.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/341688821/California_Cows6.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 94, - "location": "Mountainside, NJ", - "screen_name": "RamblingLouise", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Louise Fristensky", - "profile_use_background_image": true, - "description": "A Composer. A wanderer. Food. Art. and sweet sweet Music.", - "url": "http://t.co/TNsqxaAiRL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000620805231/7b9212e77ca86fbbf6b883b6e167ebb7_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Mon Aug 01 02:06:37 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000620805231/7b9212e77ca86fbbf6b883b6e167ebb7_normal.jpeg", - "favourites_count": 430, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 35490819, - "possibly_sensitive": false, - "id_str": "685286688676036608", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 561, - "h": 370, - "resize": "fit" - }, - "medium": { - "w": 561, - "h": 370, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 224, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKgnLHWMAILBxT.jpg", - "type": "photo", - "indices": [ - 12, - 35 - ], - "media_url": "http://pbs.twimg.com/media/CYKgnLHWMAILBxT.jpg", - "display_url": "pic.twitter.com/I3UH0Ea7Ji", - "id_str": "685286688172683266", - "expanded_url": "http://twitter.com/RamblingLouise/status/685286688676036608/photo/1", - "id": 685286688172683266, - "url": "https://t.co/I3UH0Ea7Ji" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "timoandres", - "id_str": "35490819", - "id": 35490819, - "indices": [ - 0, - 11 - ], - "name": "Timo Andres" - } - ] - }, - "created_at": "Fri Jan 08 02:27:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "35490819", - "place": null, - "in_reply_to_screen_name": "timoandres", - "in_reply_to_status_id_str": "685265488205737985", - "truncated": false, - "id": 685286688676036608, - "text": "@timoandres https://t.co/I3UH0Ea7Ji", - "coordinates": null, - "in_reply_to_status_id": 685265488205737985, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 346307007, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/341688821/California_Cows6.jpg", - "statuses_count": 725, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/346307007/1430450101", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "13137632", - "following": false, - "friends_count": 1939, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "supine.com", - "url": "http://t.co/Berf3TCv", - "expanded_url": "http://supine.com", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 618, - "location": "An Aussie living in Frankfurt", - "screen_name": "martinbarry", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Martin Barry", - "profile_use_background_image": true, - "description": "Sysadmin / Network Ops", - "url": "http://t.co/Berf3TCv", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2137176918/martin_barry_headshot_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Feb 06 03:53:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2137176918/martin_barry_headshot_normal.jpg", - "favourites_count": 247, - "status": { - "retweet_count": 29, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 29, - "truncated": false, - "retweeted": false, - "id_str": "681959073034727425", - "id": 681959073034727425, - "text": "NYC, I'm looking for a great ops team to work with! (Realized I hadn't publicly said that I'm searching. Reluctant use of #devops tag here.)", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 122, - 129 - ], - "text": "devops" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Dec 29 22:04:47 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 16, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685194442333122560", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 136, - 140 - ], - "text": "devops" - } - ], - "user_mentions": [ - { - "screen_name": "cerephic", - "id_str": "14166535", - "id": 14166535, - "indices": [ - 3, - 12 - ], - "name": "Ceren Ercen" - } - ] - }, - "created_at": "Thu Jan 07 20:21:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685194442333122560, - "text": "RT @cerephic: NYC, I'm looking for a great ops team to work with! (Realized I hadn't publicly said that I'm searching. Reluctant use of #de\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TalonForSupine" - }, - "default_profile_image": false, - "id": 13137632, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5400, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13137632/1402574766", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "250397632", - "following": false, - "friends_count": 525, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "caremad.io", - "url": "https://t.co/N7EFH3OI46", - "expanded_url": "https://caremad.io/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 2297, - "location": "Philadelphia, PA", - "screen_name": "dstufft", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 157, - "name": "Donald Stufft", - "profile_use_background_image": true, - "description": "pip // PyPI // Python // cryptography\n\nI am perpetually caremad.\n\nI care a lot about security. \n\nAgitator and profesional rabble rouser.", - "url": "https://t.co/N7EFH3OI46", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2589562873/85j1remox0wdwpycnmpt_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Feb 11 00:55:49 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2589562873/85j1remox0wdwpycnmpt_normal.jpeg", - "favourites_count": 47, - "status": { - "retweet_count": 704, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 704, - "truncated": false, - "retweeted": false, - "id_str": "685516987859120128", - "id": 685516987859120128, - "text": "Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're on track", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:42:40 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 635, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685538376716529665", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "McKelvie", - "id_str": "14276679", - "id": 14276679, - "indices": [ - 3, - 12 - ], - "name": "Jamie McKelvie" - } - ] - }, - "created_at": "Fri Jan 08 19:07:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685538376716529665, - "text": "RT @McKelvie: Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 250397632, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 14451, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "41817149", - "following": false, - "friends_count": 1199, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "0051A8", - "geo_enabled": true, - "followers_count": 235, - "location": "Village", - "screen_name": "donnysp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Duncan Rance", - "profile_use_background_image": true, - "description": "wip", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670239079255187456/z5bnpVZV_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Fri May 22 14:04:10 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670239079255187456/z5bnpVZV_normal.jpg", - "favourites_count": 300, - "status": { - "retweet_count": 22, - "retweeted_status": { - "retweet_count": 22, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684866848429584386", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 639, - "h": 576, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 540, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 306, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", - "type": "photo", - "indices": [ - 39, - 62 - ], - "media_url": "http://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", - "display_url": "pic.twitter.com/qf2RHVXc2g", - "id_str": "684866840808538112", - "expanded_url": "http://twitter.com/banalyst/status/684866848429584386/photo/1", - "id": 684866840808538112, - "url": "https://t.co/qf2RHVXc2g" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 22:39:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684866848429584386, - "text": "Not sure about this Rising Damp reboot https://t.co/qf2RHVXc2g", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685251375480070144", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 639, - "h": 576, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 540, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 306, - "resize": "fit" - } - }, - "source_status_id_str": "684866848429584386", - "url": "https://t.co/qf2RHVXc2g", - "media_url": "http://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", - "source_user_id_str": "29412015", - "id_str": "684866840808538112", - "id": 684866840808538112, - "media_url_https": "https://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", - "type": "photo", - "indices": [ - 53, - 76 - ], - "source_status_id": 684866848429584386, - "source_user_id": 29412015, - "display_url": "pic.twitter.com/qf2RHVXc2g", - "expanded_url": "http://twitter.com/banalyst/status/684866848429584386/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "banalyst", - "id_str": "29412015", - "id": 29412015, - "indices": [ - 3, - 12 - ], - "name": "Zorro P Freely" - } - ] - }, - "created_at": "Fri Jan 08 00:07:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685251375480070144, - "text": "RT @banalyst: Not sure about this Rising Damp reboot https://t.co/qf2RHVXc2g", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 41817149, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 1384, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41817149/1414050232", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "784467", - "following": false, - "friends_count": 2089, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 1650, - "location": "", - "screen_name": "complex", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 109, - "name": "Anthony Elizondo", - "profile_use_background_image": false, - "description": "sysadmin, geek, ruby, vmware, freebsd, pop culture, startups, hockey, burritos, beer, gadgets, movies, environment, arduino, \u0e2d\u0e32\u0e2b\u0e32\u0e23, comida espa\u00f1ola, and you.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Feb 20 21:23:17 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", - "favourites_count": 853, - "status": { - "retweet_count": 23, - "retweeted_status": { - "retweet_count": 23, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685457956939427840", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "theatlantic.com/technology/arc\u2026", - "url": "https://t.co/OlOZjb71Cp", - "expanded_url": "http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/", - "indices": [ - 0, - 23 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 13:48:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685457956939427840, - "text": "https://t.co/OlOZjb71Cp well I wrote about northern Virginia.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 41, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685495702529650689", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "theatlantic.com/technology/arc\u2026", - "url": "https://t.co/OlOZjb71Cp", - "expanded_url": "http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/", - "indices": [ - 17, - 40 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lifewinning", - "id_str": "348082699", - "id": 348082699, - "indices": [ - 3, - 15 - ], - "name": "Ingrid Burrington" - } - ] - }, - "created_at": "Fri Jan 08 16:18:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685495702529650689, - "text": "RT @lifewinning: https://t.co/OlOZjb71Cp well I wrote about northern Virginia.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 784467, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 14687, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/784467/1396966682", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "2652345853", - "following": false, - "friends_count": 333, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": false, - "followers_count": 238, - "location": "somewhere in minnesota", - "screen_name": "annamarls", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 15, - "name": "canadamarls", - "profile_use_background_image": true, - "description": "Rogue Canadian, discreet intellectual, impassioned feminist, audacious traveler, gluttonous reader of young adult sci-fi. she/her", - "url": null, - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684083531576811521/Q42bXcA7_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Thu Jul 17 00:04:14 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684083531576811521/Q42bXcA7_normal.jpg", - "favourites_count": 9906, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685282354349355012", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 1025, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKclHVUsAETV5D.jpg", - "type": "photo", - "indices": [ - 45, - 68 - ], - "media_url": "http://pbs.twimg.com/media/CYKclHVUsAETV5D.jpg", - "display_url": "pic.twitter.com/V0k9KL3f70", - "id_str": "685282254751313921", - "expanded_url": "http://twitter.com/annamarls/status/685282354349355012/photo/1", - "id": 685282254751313921, - "url": "https://t.co/V0k9KL3f70" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:10:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685282354349355012, - "text": "I thought I had enough t-shirts, but then... https://t.co/V0k9KL3f70", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2652345853, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 8083, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652345853/1445212313", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15102110", - "following": false, - "friends_count": 356, - "entities": { - "description": { - "urls": [ - { - "display_url": "gumroad.com/henrikjoreteg/", - "url": "https://t.co/Duu1O9DHXR", - "expanded_url": "http://gumroad.com/henrikjoreteg/", - "indices": [ - 123, - 146 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "joreteg.com", - "url": "https://t.co/2XYoNHOk0q", - "expanded_url": "http://joreteg.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "12B6C4", - "geo_enabled": true, - "followers_count": 9942, - "location": "Tri-Cities, WA", - "screen_name": "HenrikJoreteg", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 632, - "name": "Henrik Joreteg", - "profile_use_background_image": false, - "description": "Progressive Web App developer, consultant, author, and educator. \n\nThe web is the future of mobile and IoT.\n\nmailing list: https://t.co/Duu1O9DHXR\u2026", - "url": "https://t.co/2XYoNHOk0q", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/425625343144103936/BJf6lFhU_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Thu Jun 12 22:54:23 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/425625343144103936/BJf6lFhU_normal.jpeg", - "favourites_count": 2733, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "davidlymanning", - "in_reply_to_user_id": 310674727, - "in_reply_to_status_id_str": "685520844609589248", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685521940694433792", - "id": 685521940694433792, - "text": "@davidlymanning it's not negative, per se. But it can be a bit exhausting at times :)", - "in_reply_to_user_id_str": "310674727", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "davidlymanning", - "id_str": "310674727", - "id": 310674727, - "indices": [ - 0, - 15 - ], - "name": "David Manning" - } - ] - }, - "created_at": "Fri Jan 08 18:02:21 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685520844609589248, - "lang": "en" - }, - "default_profile_image": false, - "id": 15102110, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 15793, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15102110/1431973648", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16969318", - "following": false, - "friends_count": 878, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "\u2026NUWillTravel.ApesSeekingKnowledge.net", - "url": "http://t.co/c1YitYiUzs", - "expanded_url": "http://HaveGNUWillTravel.ApesSeekingKnowledge.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 494, - "location": "R'lyeh", - "screen_name": "curiousbiped", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 64, - "name": "Bag of mostly water", - "profile_use_background_image": true, - "description": "Have GNU, Will Travel. Speaker to Computers, though the words I say are often impolite.", - "url": "http://t.co/c1YitYiUzs", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000503809944/dba3f6ccda9fe5f0bdf7f7edcea767ea_normal.png", - "profile_background_color": "022330", - "created_at": "Sat Oct 25 17:53:45 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000503809944/dba3f6ccda9fe5f0bdf7f7edcea767ea_normal.png", - "favourites_count": 1224, - "status": { - "retweet_count": 37, - "retweeted_status": { - "retweet_count": 37, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685255684582055936", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", - "type": "photo", - "indices": [ - 56, - 79 - ], - "media_url": "http://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", - "display_url": "pic.twitter.com/eEGDrqYhoM", - "id_str": "685255664604581888", - "expanded_url": "http://twitter.com/PeoplesVuePoint/status/685255684582055936/photo/1", - "id": 685255664604581888, - "url": "https://t.co/eEGDrqYhoM" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 00:24:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685255684582055936, - "text": "Great Prognostications In American Conservative History https://t.co/eEGDrqYhoM", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 37, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685554071156162560", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "source_status_id_str": "685255684582055936", - "url": "https://t.co/eEGDrqYhoM", - "media_url": "http://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", - "source_user_id_str": "331317907", - "id_str": "685255664604581888", - "id": 685255664604581888, - "media_url_https": "https://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", - "type": "photo", - "indices": [ - 77, - 100 - ], - "source_status_id": 685255684582055936, - "source_user_id": 331317907, - "display_url": "pic.twitter.com/eEGDrqYhoM", - "expanded_url": "http://twitter.com/PeoplesVuePoint/status/685255684582055936/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PeoplesVuePoint", - "id_str": "331317907", - "id": 331317907, - "indices": [ - 3, - 19 - ], - "name": "Zach Beasley" - } - ] - }, - "created_at": "Fri Jan 08 20:10:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685554071156162560, - "text": "RT @PeoplesVuePoint: Great Prognostications In American Conservative History https://t.co/eEGDrqYhoM", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 16969318, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 4951, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "72935642", - "following": false, - "friends_count": 235, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/xicombd", - "url": "https://t.co/9kqeImMQWG", - "expanded_url": "http://github.com/xicombd", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 326, - "location": "Lisbon \u2708 London", - "screen_name": "xicombd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Francisco Baio Dias", - "profile_use_background_image": true, - "description": "Node.js consultant at @YLDio! Sometimes makes silly games with @BraveBunnyGames", - "url": "https://t.co/9kqeImMQWG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/486593422040371200/rTQ_I4gZ_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Sep 09 19:57:50 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/486593422040371200/rTQ_I4gZ_normal.jpeg", - "favourites_count": 1607, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685584880961482752", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bravebunny.co", - "url": "https://t.co/iHPF1p8Jl4", - "expanded_url": "http://bravebunny.co", - "indices": [ - 80, - 103 - ] - }, - { - "display_url": "pic.twitter.com/Fhu9QZGclu", - "url": "https://t.co/Fhu9QZGclu", - "expanded_url": "http://twitter.com/BraveBunnyGames/status/685584880961482752/photo/1", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [ - { - "indices": [ - 104, - 112 - ], - "text": "gamedev" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:12:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685584880961482752, - "text": "We updated our website, added dome new games and prototypes! What do you think?\nhttps://t.co/iHPF1p8Jl4\n#gamedev https://t.co/Fhu9QZGclu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685585269010100224", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bravebunny.co", - "url": "https://t.co/iHPF1p8Jl4", - "expanded_url": "http://bravebunny.co", - "indices": [ - 101, - 124 - ] - }, - { - "display_url": "pic.twitter.com/Fhu9QZGclu", - "url": "https://t.co/Fhu9QZGclu", - "expanded_url": "http://twitter.com/BraveBunnyGames/status/685584880961482752/photo/1", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 125, - 133 - ], - "text": "gamedev" - } - ], - "user_mentions": [ - { - "screen_name": "BraveBunnyGames", - "id_str": "3014589334", - "id": 3014589334, - "indices": [ - 3, - 19 - ], - "name": "Brave Bunny" - } - ] - }, - "created_at": "Fri Jan 08 22:14:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685585269010100224, - "text": "RT @BraveBunnyGames: We updated our website, added dome new games and prototypes! What do you think?\nhttps://t.co/iHPF1p8Jl4\n#gamedev https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 72935642, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 595, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/72935642/1444598387", - "is_translator": false - }, - { - "time_zone": "Stockholm", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "15094025", - "following": false, - "friends_count": 943, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/matspetersson", - "url": "http://t.co/eUA2BLJQdN", - "expanded_url": "http://about.me/matspetersson", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/704081407/a2f6dea3e6284c9be6cea69517705c4e.png", - "notifications": false, - "profile_sidebar_fill_color": "587189", - "profile_link_color": "F06311", - "geo_enabled": false, - "followers_count": 219, - "location": "Sweden", - "screen_name": "entropi", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Mats Petersson", - "profile_use_background_image": false, - "description": "Kommunikat\u00f6r. Tidningsfantast. F\u00e5gelsk\u00e5dare. Naturvetarjunkie. Cyklar g\u00e4rna. Sm\u00e5l\u00e4nning. Tedrickare. Mellanchef i egen verksamhet. Kartn\u00f6rd. Bild: Lars Lerin", - "url": "http://t.co/eUA2BLJQdN", - "profile_text_color": "A39691", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/603177577897918464/KSYjfL8F_normal.jpg", - "profile_background_color": "EEEEEE", - "created_at": "Thu Jun 12 06:16:11 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "sv", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/603177577897918464/KSYjfL8F_normal.jpg", - "favourites_count": 148, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "671777548515344385", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "willworkfortattoos.com", - "url": "https://t.co/YhXE6jEFeU", - "expanded_url": "http://www.willworkfortattoos.com", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 01 19:47:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 671777548515344385, - "text": "Do you need a new logotype? Hire me, pay with a tattoo. https://t.co/YhXE6jEFeU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 15094025, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/704081407/a2f6dea3e6284c9be6cea69517705c4e.png", - "statuses_count": 1264, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15094025/1392045318", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "806210", - "following": false, - "friends_count": 1441, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "briantanaka.com", - "url": "http://t.co/bPxXcabgVT", - "expanded_url": "http://www.briantanaka.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000180789931/geQ0PE6C.png", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 694, - "location": "San Francisco Bay Area", - "screen_name": "btanaka", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 34, - "name": "Brian Tanaka", - "profile_use_background_image": true, - "description": "Stuff I use for fun and profit: Python, Vim, Git, Linux, and so on.", - "url": "http://t.co/bPxXcabgVT", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/571401186943574016/FtOYv-02_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Fri Mar 02 14:50:18 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/571401186943574016/FtOYv-02_normal.jpeg", - "favourites_count": 1, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "iluvcompsci", - "in_reply_to_user_id": 1332857102, - "in_reply_to_status_id_str": "684486982752288768", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684537950802055168", - "id": 684537950802055168, - "text": "@iluvcompsci No way!", - "in_reply_to_user_id_str": "1332857102", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "iluvcompsci", - "id_str": "1332857102", - "id": 1332857102, - "indices": [ - 0, - 12 - ], - "name": "Bri Chapman" - } - ] - }, - "created_at": "Wed Jan 06 00:52:20 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684486982752288768, - "lang": "en" - }, - "default_profile_image": false, - "id": 806210, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000180789931/geQ0PE6C.png", - "statuses_count": 4425, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/806210/1411251006", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "12524622", - "following": false, - "friends_count": 1720, - "entities": { - "description": { - "urls": [ - { - "display_url": "make8bitart.com", - "url": "https://t.co/zaBLoHykZE", - "expanded_url": "http://make8bitart.com", - "indices": [ - 97, - 120 - ] - }, - { - "display_url": "instagram.com/jenn", - "url": "https://t.co/gU8YuaYVSH", - "expanded_url": "http://instagram.com/jenn", - "indices": [ - 122, - 145 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "jennmoney.biz", - "url": "https://t.co/bxZjaPVmBS", - "expanded_url": "http://jennmoney.biz", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/454274435055230978/1Ww8jwZg.png", - "notifications": false, - "profile_sidebar_fill_color": "99CCCC", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 14497, - "location": "jersey city ", - "screen_name": "jennschiffer", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 768, - "name": "shingyVEVO", - "profile_use_background_image": true, - "description": "i am definitely most certainly unequivocally undisputedly not a cop \u2022 @bocoup, @jerseyscriptusa, https://t.co/zaBLoHykZE, https://t.co/gU8YuaYVSH", - "url": "https://t.co/bxZjaPVmBS", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683382430120685568/A9xcIOxY_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jan 22 05:42:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683382430120685568/A9xcIOxY_normal.jpg", - "favourites_count": 60491, - "status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597323829751808", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/1WRErgry8f", - "url": "https://t.co/1WRErgry8f", - "expanded_url": "http://twitter.com/jennschiffer/status/685597323829751808/photo/1", - "indices": [ - 5, - 28 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:01:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597323829751808, - "text": "same https://t.co/1WRErgry8f", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 34, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 12524622, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/454274435055230978/1Ww8jwZg.png", - "statuses_count": 57842, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12524622/1451026178", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "49820803", - "following": false, - "friends_count": 298, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com/watch?v=PWmfNe\u2026", - "url": "https://t.co/YINbmSx8E9", - "expanded_url": "https://www.youtube.com/watch?v=PWmfNeLs7fA", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/444961569948966912/ND9JLEF2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F0F0F5", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 9580, - "location": "Lexically bound", - "screen_name": "aphyr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 373, - "name": "\u2200sket", - "profile_use_background_image": true, - "description": "Trophy husband of @ericajoy, purveyor of jockstrap selfies. 'Internal records show you're more offensive than @MrSLeather but better than @BoundJocks.'", - "url": "https://t.co/YINbmSx8E9", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/639508069752279040/ipgD4h36_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jun 23 00:12:37 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/639508069752279040/ipgD4h36_normal.jpg", - "favourites_count": 23507, - "status": { - "retweet_count": 75, - "retweeted_status": { - "retweet_count": 75, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685517196529922049", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 888, - "h": 499, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", - "type": "photo", - "indices": [ - 30, - 53 - ], - "media_url": "http://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", - "display_url": "pic.twitter.com/UiGZUOctyQ", - "id_str": "685517196118900736", - "expanded_url": "http://twitter.com/chrisk5000/status/685517196529922049/photo/1", - "id": 685517196118900736, - "url": "https://t.co/UiGZUOctyQ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:43:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685517196529922049, - "text": "distributed databases be like https://t.co/UiGZUOctyQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 56, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685573066873778176", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 888, - "h": 499, - "resize": "fit" - } - }, - "source_status_id_str": "685517196529922049", - "url": "https://t.co/UiGZUOctyQ", - "media_url": "http://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", - "source_user_id_str": "37232065", - "id_str": "685517196118900736", - "id": 685517196118900736, - "media_url_https": "https://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", - "type": "photo", - "indices": [ - 46, - 69 - ], - "source_status_id": 685517196529922049, - "source_user_id": 37232065, - "display_url": "pic.twitter.com/UiGZUOctyQ", - "expanded_url": "http://twitter.com/chrisk5000/status/685517196529922049/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chrisk5000", - "id_str": "37232065", - "id": 37232065, - "indices": [ - 3, - 14 - ], - "name": "chrisk5000" - } - ] - }, - "created_at": "Fri Jan 08 21:25:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685573066873778176, - "text": "RT @chrisk5000: distributed databases be like https://t.co/UiGZUOctyQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 49820803, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/444961569948966912/ND9JLEF2.jpeg", - "statuses_count": 41239, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/49820803/1443201143", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "625093", - "following": false, - "friends_count": 1921, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "beginningwithi.com", - "url": "http://t.co/243IACccPc", - "expanded_url": "http://beginningwithi.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/31522/keyb.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "FF0044", - "geo_enabled": false, - "followers_count": 2886, - "location": "Bay Area", - "screen_name": "DeirdreS", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 196, - "name": "Deirdr\u00e9 Straughan", - "profile_use_background_image": true, - "description": "People connector. Woman with opinions (all mine). Work on cloud @Ericsson. I do and tweet about technology, among other things. Had breast cancer. Over it.", - "url": "http://t.co/243IACccPc", - "profile_text_color": "000000", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/674300197103525888/4UBqHN-J_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Thu Jan 11 10:18:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674300197103525888/4UBqHN-J_normal.jpg", - "favourites_count": 533, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612725985136641", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "thenation.com/article/yes-hi\u2026", - "url": "https://t.co/isJ9BqlaFP", - "expanded_url": "http://www.thenation.com/article/yes-hillarys-a-democrat/", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:03:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612725985136641, - "text": "What\u2019s wrong with wanting to see a highly qualified liberal-feminist woman in the most powerful job in the world? https://t.co/isJ9BqlaFP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "iOS" - }, - "default_profile_image": false, - "id": 625093, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/31522/keyb.jpg", - "statuses_count": 42395, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/625093/1398656840", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "6083342", - "following": false, - "friends_count": 3073, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tonyarcieri.com", - "url": "https://t.co/BPlVYoJhSX", - "expanded_url": "http://tonyarcieri.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623707235345145857/RQTCdVn0.jpg", - "notifications": false, - "profile_sidebar_fill_color": "EDEDED", - "profile_link_color": "373E75", - "geo_enabled": true, - "followers_count": 7457, - "location": "San Francisco, CA", - "screen_name": "bascule", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 390, - "name": "Tony Arcieri", - "profile_use_background_image": true, - "description": "@SquareEng CyberSecurity Engineer. Tweets about cybercrypto, cyberauthority systems, and cyber. Creator of @celluloidrb and @TheCryptosphere. Cyber.", - "url": "https://t.co/BPlVYoJhSX", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/450061818606522368/pjDTHFB9_normal.jpeg", - "profile_background_color": "373E75", - "created_at": "Wed May 16 08:32:42 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/450061818606522368/pjDTHFB9_normal.jpeg", - "favourites_count": 8733, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609915646226433", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/tonyvernall/st\u2026", - "url": "https://t.co/P8li8PI6WD", - "expanded_url": "https://twitter.com/tonyvernall/status/685584647267442688", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:51:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609915646226433, - "text": "Maybe if we take two terrible things and combine them the terrible will cancel out https://t.co/P8li8PI6WD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 6083342, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623707235345145857/RQTCdVn0.jpg", - "statuses_count": 39861, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6083342/1398287020", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "13350372", - "following": false, - "friends_count": 583, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jedgar.co", - "url": "https://t.co/Yh90tJ832s", - "expanded_url": "http://jedgar.co", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000100660867/c0f46373de96d3498a580deb86afade8.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FCFCFC", - "profile_link_color": "535F85", - "geo_enabled": true, - "followers_count": 17115, - "location": "Manhattan, NY", - "screen_name": "jedgar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 303, - "name": "John Edgar", - "profile_use_background_image": true, - "description": "child of the www, lover of the arts, traveler of the world, solver of the problems. politics, sailing, startup, feminist, weird. Building @staehere ecology+tech", - "url": "https://t.co/Yh90tJ832s", - "profile_text_color": "A1A1A1", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638396887133913088/oNeUBUxj_normal.jpg", - "profile_background_color": "936C6C", - "created_at": "Mon Feb 11 15:44:37 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638396887133913088/oNeUBUxj_normal.jpg", - "favourites_count": 9281, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612208789811201", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 605, - "resize": "fit" - }, - "medium": { - "w": 575, - "h": 1024, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 575, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPIqsuUoAIWrKR.jpg", - "type": "photo", - "indices": [ - 0, - 23 - ], - "media_url": "http://pbs.twimg.com/media/CYPIqsuUoAIWrKR.jpg", - "display_url": "pic.twitter.com/lTDyzwSECr", - "id_str": "685612204175958018", - "expanded_url": "http://twitter.com/jedgar/status/685612208789811201/photo/1", - "id": 685612204175958018, - "url": "https://t.co/lTDyzwSECr" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:01:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612208789811201, - "text": "https://t.co/lTDyzwSECr", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 13350372, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000100660867/c0f46373de96d3498a580deb86afade8.jpeg", - "statuses_count": 31400, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13350372/1443731819", - "is_translator": false - }, - { - "time_zone": "Europe/Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "2426271", - "following": false, - "friends_count": 387, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ralphm.net", - "url": "http://t.co/Fa3sxfYE4J", - "expanded_url": "http://ralphm.net/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 563, - "location": "Eindhoven", - "screen_name": "ralphm", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Ralph Meijer", - "profile_use_background_image": true, - "description": "Hacker and drummer. Real-time, federated social web. XMPP Standards Foundation Board member, publish-subscribe, Python, Twisted, Wokkel. @mail_gun / @rackspace", - "url": "http://t.co/Fa3sxfYE4J", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459006420390649856/eMX8uh4q_normal.png", - "profile_background_color": "9AE4E8", - "created_at": "Tue Mar 27 07:42:01 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459006420390649856/eMX8uh4q_normal.png", - "favourites_count": 1178, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "hynek", - "in_reply_to_user_id": 14914177, - "in_reply_to_status_id_str": "685041111572869120", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685066377678434304", - "id": 685066377678434304, - "text": "@hynek and/or make their XMPP support first class citizen /cc @SinaBahram", - "in_reply_to_user_id_str": "14914177", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "hynek", - "id_str": "14914177", - "id": 14914177, - "indices": [ - 0, - 6 - ], - "name": "Hynek Schlawack" - }, - { - "screen_name": "SinaBahram", - "id_str": "114569401", - "id": 114569401, - "indices": [ - 62, - 73 - ], - "name": "Sina Bahram" - } - ] - }, - "created_at": "Thu Jan 07 11:52:07 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685041111572869120, - "lang": "en" - }, - "default_profile_image": false, - "id": 2426271, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2732, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2426271/1358272747", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7751912", - "following": false, - "friends_count": 2002, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jhigley.com", - "url": "https://t.co/CA3K2xy3fr", - "expanded_url": "http://jhigley.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "94D487", - "geo_enabled": false, - "followers_count": 746, - "location": "Richland, WA", - "screen_name": "higley", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 55, - "name": "Hooligan", - "profile_use_background_image": false, - "description": "I'm a lesser known character from the Internet. \n\nSwedish Fish are my spirit animal.", - "url": "https://t.co/CA3K2xy3fr", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685137678946308096/aZzkDSOa_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Jul 27 03:29:39 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685137678946308096/aZzkDSOa_normal.jpg", - "favourites_count": 4082, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684845096102043648", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "thestranger.com/blogs/slog/201\u2026", - "url": "https://t.co/GHQ5j9vZzX", - "expanded_url": "http://www.thestranger.com/blogs/slog/2016/01/06/23350480/my-dad-worked-at-the-malheur-national-wildlife-refuge-and-he-knows-what-happens-when-ranchers-get-their-way", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 21:12:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684845096102043648, - "text": "My Dad Worked at the Malheur National Wildlife Refuge, and He Knows What Happens When Ranchers Get Their Way https://t.co/GHQ5j9vZzX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684848495413432320", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "thestranger.com/blogs/slog/201\u2026", - "url": "https://t.co/GHQ5j9vZzX", - "expanded_url": "http://www.thestranger.com/blogs/slog/2016/01/06/23350480/my-dad-worked-at-the-malheur-national-wildlife-refuge-and-he-knows-what-happens-when-ranchers-get-their-way", - "indices": [ - 121, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ahecht", - "id_str": "4543101", - "id": 4543101, - "indices": [ - 3, - 10 - ], - "name": "Anthony Hecht" - } - ] - }, - "created_at": "Wed Jan 06 21:26:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684848495413432320, - "text": "RT @ahecht: My Dad Worked at the Malheur National Wildlife Refuge, and He Knows What Happens When Ranchers Get Their Way https://t.co/GHQ5j\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 7751912, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 8292, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7751912/1402521594", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1568", - "following": false, - "friends_count": 588, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "adambrault.com", - "url": "http://t.co/u1D1iCKwhH", - "expanded_url": "http://adambrault.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/6986352/backdrop3.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FAFAFA", - "profile_link_color": "09ACED", - "geo_enabled": false, - "followers_count": 3068, - "location": "EccenTriCities + The Internet", - "screen_name": "adambrault", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 202, - "name": "adam", - "profile_use_background_image": false, - "description": "@andyet founder. @andyetconf conspirator. @triconf instigator. @tcpublicmarket rouser. Collaborator in @fusespc @usetalky @liftsecurity. Terrific firestarter.", - "url": "http://t.co/u1D1iCKwhH", - "profile_text_color": "222222", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629171593814544384/2jp9uAYU_normal.jpg", - "profile_background_color": "333333", - "created_at": "Sun Jul 16 21:01:39 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "333333", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629171593814544384/2jp9uAYU_normal.jpg", - "favourites_count": 12056, - "status": { - "retweet_count": 112, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 112, - "truncated": false, - "retweeted": false, - "id_str": "684083104777109504", - "id": 684083104777109504, - "text": "\"You have to be one or the other.\"\n\"I don't have to. I'm both.\"\n\"That isn't even a thing!\"\n\"Is too! It's called 'wave-particle duality'.\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 18:44:56 +0000 2016", - "source": "Hootsuite", - "favorite_count": 120, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "684085968073166848", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MicroSFF", - "id_str": "1376608884", - "id": 1376608884, - "indices": [ - 3, - 12 - ], - "name": "Micro SF/F Fiction" - } - ] - }, - "created_at": "Mon Jan 04 18:56:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684085968073166848, - "text": "RT @MicroSFF: \"You have to be one or the other.\"\n\"I don't have to. I'm both.\"\n\"That isn't even a thing!\"\n\"Is too! It's called 'wave-particl\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 1568, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/6986352/backdrop3.jpg", - "statuses_count": 19795, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1568/1438841667", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16535661", - "following": false, - "friends_count": 874, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "robotgrrl.com", - "url": "http://t.co/hHXlVUBA1z", - "expanded_url": "http://robotgrrl.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000172757239/odPrjp9g.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "6EFA19", - "profile_link_color": "7700C7", - "geo_enabled": true, - "followers_count": 6461, - "location": "Canada", - "screen_name": "RobotGrrl", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 324, - "name": "RobotGrrl \ue12b", - "profile_use_background_image": true, - "description": "Studio[Y] fellow @MaRSDD #StudioY - Fab Academy student - Intel Emerging Young Entrepreneur - Maker of RoboBrrd - Gold medal @ Intl RoboGames - Mac & iOS dev", - "url": "http://t.co/hHXlVUBA1z", - "profile_text_color": "4A3D30", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3634861506/af661544e8a2ef98602dffafb0c6918d_normal.jpeg", - "profile_background_color": "FC6500", - "created_at": "Tue Sep 30 21:58:11 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3634861506/af661544e8a2ef98602dffafb0c6918d_normal.jpeg", - "favourites_count": 4662, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684937097682096128", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 258, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 779, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 456, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYFiqOlUMAAUZvJ.jpg", - "type": "photo", - "indices": [ - 108, - 131 - ], - "media_url": "http://pbs.twimg.com/media/CYFiqOlUMAAUZvJ.jpg", - "display_url": "pic.twitter.com/jMpFwoMrDO", - "id_str": "684937095945662464", - "expanded_url": "http://twitter.com/RobotGrrl/status/684937097682096128/photo/1", - "id": 684937095945662464, - "url": "https://t.co/jMpFwoMrDO" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 03:18:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684937097682096128, - "text": "The ROBOT PARTY will be Saturday at 7PM ET! Share your bots w/ other makers \u2014 reply if you want to join in! https://t.co/jMpFwoMrDO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16535661, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000172757239/odPrjp9g.jpeg", - "statuses_count": 10559, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16535661/1448405813", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "19090770", - "following": false, - "friends_count": 338, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kylewm.com", - "url": "https://t.co/zxQkhDten5", - "expanded_url": "https://kylewm.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 186, - "location": "Burlingame, CA", - "screen_name": "kylewmahan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Kyle Mahan", - "profile_use_background_image": true, - "description": "For every coin there is an equal and opposite bird.", - "url": "https://t.co/zxQkhDten5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641457114381074432/vUdKopH8_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Fri Jan 16 22:51:18 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641457114381074432/vUdKopH8_normal.jpg", - "favourites_count": 2027, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685191733919875072", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 300, - "h": 300, - "resize": "fit" - }, - "medium": { - "w": 300, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 300, - "h": 300, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJKQGnU0AAV4ct.jpg", - "type": "photo", - "indices": [ - 29, - 52 - ], - "media_url": "http://pbs.twimg.com/media/CYJKQGnU0AAV4ct.jpg", - "display_url": "pic.twitter.com/f9B0nAKCNP", - "id_str": "685191733827653632", - "expanded_url": "http://twitter.com/kylewmahan/status/685191733919875072/photo/1", - "id": 685191733827653632, - "url": "https://t.co/f9B0nAKCNP" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 20:10:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685191733919875072, - "text": "Larry the Cucumber: no lips. https://t.co/f9B0nAKCNP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "groomsman-kylewm.com" - }, - "default_profile_image": false, - "id": 19090770, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 5712, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2809321", - "following": false, - "friends_count": 732, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "funk.co.uk/jokethief", - "url": "http://t.co/CTXEScpW42", - "expanded_url": "http://funk.co.uk/jokethief", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/536532/double_bow.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 1366, - "location": "London", - "screen_name": "Deek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 75, - "name": "Deek Deekster", - "profile_use_background_image": true, - "description": "The imagination is not a State: it is the Human existence itself. \u2013 William Blake.", - "url": "http://t.co/CTXEScpW42", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/81711236/funkbaby150_normal.jpg", - "profile_background_color": "7A684E", - "created_at": "Thu Mar 29 08:15:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/81711236/funkbaby150_normal.jpg", - "favourites_count": 1066, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "681769694492233728", - "id": 681769694492233728, - "text": "described", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 29 09:32:16 +0000 2015", - "source": "TweetCaster for iOS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2809321, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/536532/double_bow.jpg", - "statuses_count": 26149, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2809321/1347980689", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2149850018", - "following": false, - "friends_count": 1349, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bret.io", - "url": "https://t.co/nwoGndmEhz", - "expanded_url": "http://bret.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000099971838/42731531dc2f28d52cc57df7848a43ee.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3C3C3C", - "geo_enabled": true, - "followers_count": 381, - "location": "Portland, OR", - "screen_name": "bretolius", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 38, - "name": "Bret Comnes", - "profile_use_background_image": true, - "description": "super serious business twiter", - "url": "https://t.co/nwoGndmEhz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/473135457975283712/41oMFXBB_normal.jpeg", - "profile_background_color": "F5F5F5", - "created_at": "Tue Oct 22 22:57:49 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/473135457975283712/41oMFXBB_normal.jpeg", - "favourites_count": 2024, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "oneshotchch", - "in_reply_to_user_id": 2975656664, - "in_reply_to_status_id_str": "685588073128804354", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685588514927316992", - "id": 685588514927316992, - "text": "@oneshotchch That would be super cool to get out though! TY", - "in_reply_to_user_id_str": "2975656664", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "oneshotchch", - "id_str": "2975656664", - "id": 2975656664, - "indices": [ - 0, - 12 - ], - "name": "Oneshot Christchurch" - } - ] - }, - "created_at": "Fri Jan 08 22:26:54 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685588073128804354, - "lang": "en" - }, - "default_profile_image": false, - "id": 2149850018, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000099971838/42731531dc2f28d52cc57df7848a43ee.jpeg", - "statuses_count": 748, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2149850018/1401817534", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2407626138", - "following": false, - "friends_count": 13, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rascul.io", - "url": "https://t.co/fnyTNoPEUT", - "expanded_url": "https://rascul.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 11, - "location": "Pennsylvania", - "screen_name": "rascul3", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Ray Schulz", - "profile_use_background_image": true, - "description": "", - "url": "https://t.co/fnyTNoPEUT", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/454812691069038592/2nHc2cKi_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Sun Mar 23 19:22:55 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/454812691069038592/2nHc2cKi_normal.jpeg", - "favourites_count": 0, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "664630993123315712", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "i.destroy.tokyo/Rascul/", - "url": "https://t.co/1PIwZL1Oiy", - "expanded_url": "https://i.destroy.tokyo/Rascul/", - "indices": [ - 11, - 34 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Nov 12 02:29:11 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "sv", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 664630993123315712, - "text": "lrn2rascul https://t.co/1PIwZL1Oiy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Known Twitter Syndication" - }, - "default_profile_image": false, - "id": 2407626138, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 10, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2407626138/1397271246", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14256966", - "following": false, - "friends_count": 402, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "robjameskelley.com", - "url": "http://t.co/qLikakmjjU", - "expanded_url": "http://robjameskelley.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5124586/b1c459dda3582d06e52bd429a54af160.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 314, - "location": "", - "screen_name": "pyroonaswing", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "pyroonaswing", - "profile_use_background_image": true, - "description": "photographer. tech enthusiast. dancing superstar.", - "url": "http://t.co/qLikakmjjU", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000716794365/86b1e457c939d6d24f1c290d89031566_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Mar 30 07:58:16 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000716794365/86b1e457c939d6d24f1c290d89031566_normal.jpeg", - "favourites_count": 444, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "El_Doctor88", - "in_reply_to_user_id": 31355945, - "in_reply_to_status_id_str": "678282365224026112", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "678282893815324672", - "id": 678282893815324672, - "text": "@El_Doctor88 no way?! I googled nes gameshark & couldn't figure out why I couldn't find what I remembered using till I saw genie. Classic", - "in_reply_to_user_id_str": "31355945", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "El_Doctor88", - "id_str": "31355945", - "id": 31355945, - "indices": [ - 0, - 12 - ], - "name": "Patrick P." - } - ] - }, - "created_at": "Sat Dec 19 18:36:58 +0000 2015", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 678282365224026112, - "lang": "en" - }, - "default_profile_image": false, - "id": 14256966, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5124586/b1c459dda3582d06e52bd429a54af160.jpg", - "statuses_count": 7322, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14447132", - "following": false, - "friends_count": 955, - "entities": { - "description": { - "urls": [ - { - "display_url": "oauth.net", - "url": "http://t.co/zBgRc3GHvO", - "expanded_url": "http://oauth.net", - "indices": [ - 75, - 97 - ] - }, - { - "display_url": "micropub.net", - "url": "http://t.co/yDBCPnanjA", - "expanded_url": "http://micropub.net", - "indices": [ - 111, - 133 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "aaronparecki.com", - "url": "https://t.co/sUmpTDQA8l", - "expanded_url": "http://aaronparecki.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/185835062/4786064324_b7049fbec8_b.jpg", - "notifications": false, - "profile_sidebar_fill_color": "94C8FF", - "profile_link_color": "FF5900", - "geo_enabled": true, - "followers_count": 3093, - "location": "Portland, OR", - "screen_name": "aaronpk", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 316, - "name": "Aaron Parecki", - "profile_use_background_image": true, - "description": "CTO @EsriPDX R&D Center \u2022 Cofounder of #indieweb/@indiewebcamp \u2022 Maintains http://t.co/zBgRc3GHvO \u2022 Creator of http://t.co/yDBCPnanjA", - "url": "https://t.co/sUmpTDQA8l", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3657148842/934fb225b84b8fd3effe5ab95bb18005_normal.jpeg", - "profile_background_color": "7A9AAF", - "created_at": "Sat Apr 19 22:38:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3657148842/934fb225b84b8fd3effe5ab95bb18005_normal.jpeg", - "favourites_count": 3597, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 296398358, - "possibly_sensitive": false, - "id_str": "685611029493985281", - "geo": { - "coordinates": [ - 45.521893, - -122.638494 - ], - "type": "Point" - }, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "large": { - "w": 960, - "h": 640, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPHmQnUwAAXsz5.jpg", - "type": "photo", - "indices": [ - 40, - 63 - ], - "media_url": "http://pbs.twimg.com/media/CYPHmQnUwAAXsz5.jpg", - "display_url": "pic.twitter.com/GH7oQXKBwI", - "id_str": "685611028399308800", - "expanded_url": "http://twitter.com/aaronpk/status/685611029493985281/photo/1", - "id": 685611028399308800, - "url": "https://t.co/GH7oQXKBwI" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lucashammill", - "id_str": "296398358", - "id": 296398358, - "indices": [ - 0, - 13 - ], - "name": "Luke Hammill" - } - ] - }, - "created_at": "Fri Jan 08 23:56:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "296398358", - "place": { - "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.7900653, - 45.421863 - ], - [ - -122.471751, - 45.421863 - ], - [ - -122.471751, - 45.6509405 - ], - [ - -122.7900653, - 45.6509405 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Portland, OR", - "id": "ac88a4f17a51c7fc", - "name": "Portland" - }, - "in_reply_to_screen_name": "lucashammill", - "in_reply_to_status_id_str": "684757252633280513", - "truncated": false, - "id": 685611029493985281, - "text": "@lucashammill It's all in the lighting. https://t.co/GH7oQXKBwI", - "coordinates": { - "coordinates": [ - -122.638494, - 45.521893 - ], - "type": "Point" - }, - "in_reply_to_status_id": 684757252633280513, - "favorite_count": 0, - "contributors": null, - "source": "Bridgy" - }, - "default_profile_image": false, - "id": 14447132, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/185835062/4786064324_b7049fbec8_b.jpg", - "statuses_count": 6234, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14447132/1398201184", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13860742", - "following": false, - "friends_count": 4823, - "entities": { - "description": { - "urls": [ - { - "display_url": "calmtechnology.com", - "url": "http://t.co/bOKIYApk0t", - "expanded_url": "http://calmtechnology.com", - "indices": [ - 101, - 123 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "caseorganic.com", - "url": "http://t.co/IMSCSEyFQw", - "expanded_url": "http://caseorganic.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/220733289/xc8c5ed789f413b46fc32145db5e2cb1.png", - "notifications": false, - "profile_sidebar_fill_color": "C9C9C9", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 20823, - "location": "Portland, OR", - "screen_name": "caseorganic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1943, - "name": "Amber Case", - "profile_use_background_image": false, - "description": "Calm technology, cyborgs, future of location and mobile. Working on @mycompassapp and @calmtechbook. http://t.co/bOKIYApk0t Formerly founder of @geoloqi.", - "url": "http://t.co/IMSCSEyFQw", - "profile_text_color": "1C1F23", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/577987854745239552/yquRHGzt_normal.jpeg", - "profile_background_color": "252525", - "created_at": "Sat Feb 23 10:43:27 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BFBFBF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/577987854745239552/yquRHGzt_normal.jpeg", - "favourites_count": 3414, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685578323016073216", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 453, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOp2YgUMAATMHh.jpg", - "type": "photo", - "indices": [ - 109, - 132 - ], - "media_url": "http://pbs.twimg.com/media/CYOp2YgUMAATMHh.jpg", - "display_url": "pic.twitter.com/rcup9P0sMt", - "id_str": "685578320046469120", - "expanded_url": "http://twitter.com/caseorganic/status/685578323016073216/photo/1", - "id": 685578320046469120, - "url": "https://t.co/rcup9P0sMt" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "amazon.com/Calm-Technolog\u2026", - "url": "https://t.co/q1BFmTG2yv", - "expanded_url": "http://www.amazon.com/Calm-Technology-Principles-Patterns-Non-Intrusive/dp/1491925884", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [ - { - "indices": [ - 99, - 108 - ], - "text": "calmtech" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:46:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685578323016073216, - "text": "Was just sent this picture of the youngest reader of Calm Technology yet! https://t.co/q1BFmTG2yv #calmtech https://t.co/rcup9P0sMt", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 13860742, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/220733289/xc8c5ed789f413b46fc32145db5e2cb1.png", - "statuses_count": 25851, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13860742/1426638493", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "783092", - "following": false, - "friends_count": 3667, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "werd.io", - "url": "http://t.co/n2griYFTdR", - "expanded_url": "http://werd.io/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/584714231/ncbqjrotq7pwip9v0110.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "D4E6F1", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 5071, - "location": "San Francisco Bay Area", - "screen_name": "benwerd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 367, - "name": "Ben Werdm\u00fcller", - "profile_use_background_image": true, - "description": "CEO, @withknown. Previously @elgg. Humanist technologist. Equality and adventures.", - "url": "http://t.co/n2griYFTdR", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681986174966104064/t3BubQKk_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Feb 20 13:34:20 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681986174966104064/t3BubQKk_normal.jpg", - "favourites_count": 11271, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682834736452997122", - "id": 682834736452997122, - "text": "Happy new year!!! Best wishes for a wonderful 2016 to all. \n\n(Happy hangover, UK.)", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 08:04:22 +0000 2016", - "source": "werd.io", - "favorite_count": 7, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 783092, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/584714231/ncbqjrotq7pwip9v0110.jpeg", - "statuses_count": 33964, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783092/1440331990", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "11628", - "following": false, - "friends_count": 1270, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tantek.com", - "url": "http://t.co/krTnc8jAFk", - "expanded_url": "http://tantek.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 71425, - "location": "Pacific Time Zone", - "screen_name": "t", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1923, - "name": "Tantek \u00c7elik", - "profile_use_background_image": true, - "description": "Cofounder: #indieweb #barcamp @IndieWebCamp @microformats.\nWorking @Mozilla: @CSSWG @W3CAB.\nMaking: @Falcon @CASSISjs.\n#fightfortheusers & aspiring runner.", - "url": "http://t.co/krTnc8jAFk", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Nov 07 02:26:19 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH_normal.jpeg", - "favourites_count": 0, - "status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685519566106066944", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 640, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYN0aboUkAA-r2W.jpg", - "type": "photo", - "indices": [ - 107, - 130 - ], - "media_url": "http://pbs.twimg.com/media/CYN0aboUkAA-r2W.jpg", - "display_url": "pic.twitter.com/7cFTaaoweb", - "id_str": "685519565732745216", - "expanded_url": "http://twitter.com/t/status/685519566106066944/photo/1", - "id": 685519565732745216, - "url": "https://t.co/7cFTaaoweb" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "tantek.com/2016/008/t1/we\u2026", - "url": "https://t.co/T4aAFoQatR", - "expanded_url": "http://tantek.com/2016/008/t1/welcome-bladerunner-replicant-roy-batty", - "indices": [ - 82, - 105 - ] - } - ], - "hashtags": [ - { - "indices": [ - 36, - 48 - ], - "text": "BladeRunner" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:52:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685519566106066944, - "text": "2016-01-08: Welcome to the world of #BladeRunner\nToday is Replicant Roy Batty\u2019s\u2026 (https://t.co/T4aAFoQatR) https://t.co/7cFTaaoweb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 11, - "contributors": null, - "source": "Bridgy" - }, - "default_profile_image": false, - "id": 11628, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8088, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14788846", - "following": false, - "friends_count": 348, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 271, - "location": "Oregon", - "screen_name": "KWierso", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "KWierso", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/620515026571390976/FLF0gwV1_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu May 15 17:21:03 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/620515026571390976/FLF0gwV1_normal.jpg", - "favourites_count": 20079, - "status": { - "retweet_count": 20, - "retweeted_status": { - "retweet_count": 20, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685599353013051393", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/thehill/status\u2026", - "url": "https://t.co/QszM8bbJ5m", - "expanded_url": "https://twitter.com/thehill/status/685508541151625216", - "indices": [ - 15, - 38 - ] - } - ], - "hashtags": [ - { - "indices": [ - 7, - 14 - ], - "text": "choice" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:09:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685599353013051393, - "text": "Boosh. #choice https://t.co/QszM8bbJ5m", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 84, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685606718160502784", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/thehill/status\u2026", - "url": "https://t.co/QszM8bbJ5m", - "expanded_url": "https://twitter.com/thehill/status/685508541151625216", - "indices": [ - 31, - 54 - ] - } - ], - "hashtags": [ - { - "indices": [ - 23, - 30 - ], - "text": "choice" - } - ], - "user_mentions": [ - { - "screen_name": "aishatyler", - "id_str": "18125335", - "id": 18125335, - "indices": [ - 3, - 14 - ], - "name": "Aisha Tyler" - } - ] - }, - "created_at": "Fri Jan 08 23:39:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685606718160502784, - "text": "RT @aishatyler: Boosh. #choice https://t.co/QszM8bbJ5m", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14788846, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10813, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2319611", - "following": false, - "friends_count": 761, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shaver.off.net/diary/", - "url": "http://t.co/yVLagrSeto", - "expanded_url": "http://shaver.off.net/diary/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "1B43D4", - "geo_enabled": true, - "followers_count": 4949, - "location": "Menlo Park", - "screen_name": "shaver", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 279, - "name": "Mike Shaver", - "profile_use_background_image": false, - "description": "I've probably made 10 of the next 6 mistakes you'll make. WEBFBMOZCDNYYZMPKDADHACKOPENBP2TRUST", - "url": "http://t.co/yVLagrSeto", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1168257928/shaver-headshot-profile_normal.jpg", - "profile_background_color": "352726", - "created_at": "Mon Mar 26 16:27:55 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1168257928/shaver-headshot-profile_normal.jpg", - "favourites_count": 379, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "girltuesday", - "in_reply_to_user_id": 16833482, - "in_reply_to_status_id_str": "685599118815834112", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685599707276509184", - "id": 685599707276509184, - "text": "@girltuesday mfbt", - "in_reply_to_user_id_str": "16833482", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "girltuesday", - "id_str": "16833482", - "id": 16833482, - "indices": [ - 0, - 12 - ], - "name": "mko'g" - } - ] - }, - "created_at": "Fri Jan 08 23:11:22 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685599118815834112, - "lang": "en" - }, - "default_profile_image": false, - "id": 2319611, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 24763, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15859076", - "following": false, - "friends_count": 134, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "escapewindow.dreamwidth.org", - "url": "http://t.co/lg3cnMaIov", - "expanded_url": "http://escapewindow.dreamwidth.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 202, - "location": "San Francisco", - "screen_name": "escapewindow", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "aki", - "profile_use_background_image": true, - "description": "geek. writer. amateur photographer. musician: escape(window) and slave unit.", - "url": "http://t.co/lg3cnMaIov", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/510134493823266818/4K3DRvQY_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Fri Aug 15 02:48:12 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/510134493823266818/4K3DRvQY_normal.jpeg", - "favourites_count": 3011, - "status": { - "retweet_count": 109, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 109, - "truncated": false, - "retweeted": false, - "id_str": "685445889750507522", - "id": 685445889750507522, - "text": "Write as often as possible, not with the idea at once of getting into print, but as if you were learning an instrument.\nJ. B. PRIESTLEY", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 13:00:09 +0000 2016", - "source": "TweetDeck", - "favorite_count": 195, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685521999351791616", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AdviceToWriters", - "id_str": "44949890", - "id": 44949890, - "indices": [ - 3, - 19 - ], - "name": "Jon Winokur" - } - ] - }, - "created_at": "Fri Jan 08 18:02:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685521999351791616, - "text": "RT @AdviceToWriters: Write as often as possible, not with the idea at once of getting into print, but as if you were learning an instrument\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Echofon" - }, - "default_profile_image": false, - "id": 15859076, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 2748, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15859076/1396977715", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "9973032", - "following": false, - "friends_count": 484, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mozilla.org/firefox", - "url": "https://t.co/uiLRlFZnpI", - "expanded_url": "http://mozilla.org/firefox", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 2020, - "location": "Toronto", - "screen_name": "madhava", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 175, - "name": "madhava", - "profile_use_background_image": true, - "description": "Director, Firefox User Experience at Mozilla. Canada Fancy.", - "url": "https://t.co/uiLRlFZnpI", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629776260261134336/TLVUYGfu_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Mon Nov 05 17:45:30 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629776260261134336/TLVUYGfu_normal.jpg", - "favourites_count": 4487, - "status": { - "retweet_count": 40, - "retweeted_status": { - "retweet_count": 40, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685550447717789696", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/briankesinger/", - "url": "https://t.co/fMDwiiT2kx", - "expanded_url": "https://www.instagram.com/briankesinger/", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:55:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685550447717789696, - "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 30, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685555557168709632", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/briankesinger/", - "url": "https://t.co/fMDwiiT2kx", - "expanded_url": "https://www.instagram.com/briankesinger/", - "indices": [ - 52, - 75 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rands", - "id_str": "30923", - "id": 30923, - "indices": [ - 3, - 9 - ], - "name": "rands" - } - ] - }, - "created_at": "Fri Jan 08 20:15:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685555557168709632, - "text": "RT @rands: Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 9973032, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 10135, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9973032/1450396803", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15675252", - "following": false, - "friends_count": 262, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.seanmartell.com", - "url": "https://t.co/viPaZogXpT", - "expanded_url": "http://blog.seanmartell.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000092477482/01936932ffe31782326abc8c26c7ace9.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "171717", - "profile_link_color": "944B3D", - "geo_enabled": false, - "followers_count": 2263, - "location": "North of the Wall", - "screen_name": "mart3ll", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 145, - "name": "Sean Martell", - "profile_use_background_image": true, - "description": "Creative Lead at Mozilla, transmogrifier of vectors, animator of GIFs, CSS eyebrow waggler, ketchup chip expert, lover of thick cut bacon.", - "url": "https://t.co/viPaZogXpT", - "profile_text_color": "919191", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/477427176539578368/ZeOhlO9T_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Jul 31 14:38:00 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477427176539578368/ZeOhlO9T_normal.png", - "favourites_count": 1362, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "sireric", - "in_reply_to_user_id": 17545176, - "in_reply_to_status_id_str": "685562118611992576", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685570086434902016", - "id": 685570086434902016, - "text": "@sireric @madhava approved. I have some brand work you can do for me if you'd like.", - "in_reply_to_user_id_str": "17545176", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sireric", - "id_str": "17545176", - "id": 17545176, - "indices": [ - 0, - 8 - ], - "name": "Eric Petitt" - }, - { - "screen_name": "madhava", - "id_str": "9973032", - "id": 9973032, - "indices": [ - 9, - 17 - ], - "name": "madhava" - } - ] - }, - "created_at": "Fri Jan 08 21:13:40 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685562118611992576, - "lang": "en" - }, - "default_profile_image": false, - "id": 15675252, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000092477482/01936932ffe31782326abc8c26c7ace9.jpeg", - "statuses_count": 14036, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15675252/1398266038", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14174812", - "following": false, - "friends_count": 226, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.vlad1.com", - "url": "http://t.co/ri1ytBN8a5", - "expanded_url": "http://blog.vlad1.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 2032, - "location": "Mountain View, CA", - "screen_name": "vvuk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 128, - "name": "Vlad Vukicevic", - "profile_use_background_image": true, - "description": "Graphics, JS, Gaming director at Mozilla. WebGL firestarter. Photographer. Owner of a pile of unfinished personal projects.", - "url": "http://t.co/ri1ytBN8a5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1078510864/DSC_5553-square-small_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Mar 19 05:02:07 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1078510864/DSC_5553-square-small_normal.jpg", - "favourites_count": 190, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "tumblrunning", - "in_reply_to_user_id": 942956258, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "658405478750359552", - "id": 658405478750359552, - "text": "@tumblrunning heya, sent an email to the email address on the play store -- not sure if you check that any more! If not shoot me a DM :)", - "in_reply_to_user_id_str": "942956258", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tumblrunning", - "id_str": "942956258", - "id": 942956258, - "indices": [ - 0, - 13 - ], - "name": "Tumblrunning" - } - ] - }, - "created_at": "Sun Oct 25 22:11:13 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14174812, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3065, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6140482", - "following": false, - "friends_count": 654, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.johnath.com", - "url": "https://t.co/9GW7UvMgsi", - "expanded_url": "http://blog.johnath.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000174656091/1ku5OylQ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFF99", - "profile_link_color": "038543", - "geo_enabled": false, - "followers_count": 2997, - "location": "Hand Crafted in Toronto", - "screen_name": "johnath", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 172, - "name": "J Nightingale", - "profile_use_background_image": true, - "description": "Tech, Leadership, Photog, Food, Hippy, Dad. The unimaginable positive power of the global internet. CPO @Hubba. Board @creativecommons. Former Mr. @Firefox.", - "url": "https://t.co/9GW7UvMgsi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631207154247057408/LEonY-0T_normal.jpg", - "profile_background_color": "CAE8E3", - "created_at": "Fri May 18 15:37:44 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631207154247057408/LEonY-0T_normal.jpg", - "favourites_count": 10019, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685595083639504896", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", - "type": "photo", - "indices": [ - 0, - 23 - ], - "media_url": "http://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", - "display_url": "pic.twitter.com/Z1RiD9kKvw", - "id_str": "685595078434406400", - "expanded_url": "http://twitter.com/shappy/status/685595083639504896/photo/1", - "id": 685595078434406400, - "url": "https://t.co/Z1RiD9kKvw" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:53:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685595083639504896, - "text": "https://t.co/Z1RiD9kKvw", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597843860529152", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "685595083639504896", - "url": "https://t.co/Z1RiD9kKvw", - "media_url": "http://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", - "source_user_id_str": "5356872", - "id_str": "685595078434406400", - "id": 685595078434406400, - "media_url_https": "https://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", - "type": "photo", - "indices": [ - 12, - 35 - ], - "source_status_id": 685595083639504896, - "source_user_id": 5356872, - "display_url": "pic.twitter.com/Z1RiD9kKvw", - "expanded_url": "http://twitter.com/shappy/status/685595083639504896/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "shappy", - "id_str": "5356872", - "id": 5356872, - "indices": [ - 3, - 10 - ], - "name": "Melissa Nightingale" - } - ] - }, - "created_at": "Fri Jan 08 23:03:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597843860529152, - "text": "RT @shappy: https://t.co/Z1RiD9kKvw", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 6140482, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000174656091/1ku5OylQ.jpeg", - "statuses_count": 5754, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6140482/1353472261", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "59680997", - "following": false, - "friends_count": 125, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 78, - "location": "", - "screen_name": "hwine", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Hal Wine", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459309975555162112/-htFG3uQ_normal.jpeg", - "profile_background_color": "BADFCD", - "created_at": "Fri Jul 24 03:43:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F2E195", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459309975555162112/-htFG3uQ_normal.jpeg", - "favourites_count": 76, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684144421068115969", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "danluu.com/wat/", - "url": "https://t.co/TgvNOle7nL", - "expanded_url": "http://danluu.com/wat/", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 22:48:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684144421068115969, - "text": "Nice reminder of danger of accepting status quo: https://t.co/TgvNOle7nL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "OS X" - }, - "default_profile_image": false, - "id": 59680997, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "statuses_count": 956, - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "15645136", - "following": false, - "friends_count": 138, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000165777761/UceRm6vD.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 112, - "location": "Toronto, Canada", - "screen_name": "railaliiev", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Rail Aliiev", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1277181474/rail_river2_normal.jpg", - "profile_background_color": "131516", - "created_at": "Tue Jul 29 12:08:00 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1277181474/rail_river2_normal.jpg", - "favourites_count": 503, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "johnath", - "in_reply_to_user_id": 6140482, - "in_reply_to_status_id_str": "676819284895604736", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "676854090836541440", - "id": 676854090836541440, - "text": "@johnath @shappy congrats!", - "in_reply_to_user_id_str": "6140482", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "johnath", - "id_str": "6140482", - "id": 6140482, - "indices": [ - 0, - 8 - ], - "name": "J Nightingale" - }, - { - "screen_name": "shappy", - "id_str": "5356872", - "id": 5356872, - "indices": [ - 9, - 16 - ], - "name": "Melissa Nightingale" - } - ] - }, - "created_at": "Tue Dec 15 19:59:25 +0000 2015", - "source": "TweetDeck", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 676819284895604736, - "lang": "en" - }, - "default_profile_image": false, - "id": 15645136, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000165777761/UceRm6vD.jpeg", - "statuses_count": 783, - "is_translator": false - } - ], - "previous_cursor": -1488977629350241687, - "previous_cursor_str": "-1488977629350241687", - "next_cursor_str": "1488949918508686286" -} \ No newline at end of file +{"users": [{"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "10531662", "following": false, "friends_count": 523, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "limpet.net/mbrubeck/", "url": "http://t.co/zF0SkYBFhm", "expanded_url": "http://limpet.net/mbrubeck/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "83B35B", "geo_enabled": false, "followers_count": 1119, "location": "Seattle", "screen_name": "mbrubeck", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 88, "name": "Matt Brubeck", "profile_use_background_image": true, "description": "Research engineer and mobile developer for Mozilla", "url": "http://t.co/zF0SkYBFhm", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/610899809046650880/enYhwcmy_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Sat Nov 24 19:23:51 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/610899809046650880/enYhwcmy_normal.jpg", "favourites_count": 639, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683859814271721473", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "large": {"w": 1024, "h": 1365, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 800, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX2O3mVUEAAK9wf.jpg", "type": "photo", "indices": [85, 108], "media_url": "http://pbs.twimg.com/media/CX2O3mVUEAAK9wf.jpg", "display_url": "pic.twitter.com/V1AYZunAw5", "id_str": "683859804264075264", "expanded_url": "http://twitter.com/mbrubeck/status/683859814271721473/photo/1", "id": 683859804264075264, "url": "https://t.co/V1AYZunAw5"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 03:57:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683859814271721473, "text": "Mini snowman made from the 1/16 inch of snow that fell at our house in Seattle today https://t.co/V1AYZunAw5", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 10531662, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 1651, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10531662/1431754919", "is_translator": false}, {"time_zone": "Tijuana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "11113", "following": false, "friends_count": 3524, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "buzzfeed.com/tech", "url": "https://t.co/crMvYMZOqX", "expanded_url": "http://buzzfeed.com/tech", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/22152170/SF.jpg", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "40FF00", "geo_enabled": true, "followers_count": 72710, "location": "Frisco", "screen_name": "mat", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2448, "name": "mat", "profile_use_background_image": true, "description": "BuzzFeed San Francisco bureau chief. Alabama native. Californian.", "url": "https://t.co/crMvYMZOqX", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669550141502676992/Hc_MKaCj_normal.jpg", "profile_background_color": "BADFCD", "created_at": "Mon Oct 30 20:13:36 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "F2E195", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669550141502676992/Hc_MKaCj_normal.jpg", "favourites_count": 42452, "status": {"in_reply_to_status_id": 685597526301360129, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "rrhoover", "in_reply_to_user_id": 14417215, "in_reply_to_status_id_str": "685597526301360129", "in_reply_to_user_id_str": "14417215", "truncated": false, "id_str": "685598266692534273", "id": 685598266692534273, "text": "@rrhoover I rage quit yesterday", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "rrhoover", "id_str": "14417215", "id": 14417215, "indices": [0, 9], "name": "Ryan Hoover"}]}, "created_at": "Fri Jan 08 23:05:39 +0000 2016", "source": "Twitter Web Client", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 11113, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/22152170/SF.jpg", "statuses_count": 53749, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11113/1384888594", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "20478755", "following": false, "friends_count": 753, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "supermanscott.com", "url": "http://t.co/DthEIHnsjX", "expanded_url": "http://supermanscott.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": false, "followers_count": 771, "location": "San Francisco", "screen_name": "superman_scott", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Scott Reynolds", "profile_use_background_image": true, "description": "", "url": "http://t.co/DthEIHnsjX", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/81687932/bay_bridge_normal.jpg", "profile_background_color": "352726", "created_at": "Mon Feb 09 23:47:49 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/81687932/bay_bridge_normal.jpg", "favourites_count": 114, "status": {"retweet_count": 92, "retweeted_status": {"retweet_count": 92, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683717705069891584", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nyti.ms/1Jmx7rs", "url": "https://t.co/jKcDKslleY", "expanded_url": "http://nyti.ms/1Jmx7rs", "indices": [98, 121]}], "hashtags": [{"text": "Terrorists", "indices": [0, 11]}, {"text": "IfTheyWereMuslim", "indices": [122, 139]}], "user_mentions": []}, "created_at": "Sun Jan 03 18:32:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683717705069891584, "text": "#Terrorists M\u0336i\u0336l\u0336i\u0336t\u0336i\u0336a\u0336m\u0336e\u0336n\u0336 Seize O\u0336c\u0336c\u0336u\u0336p\u0336y\u0336 Gov Bldg O\u0336R\u0336 \u0336W\u0336i\u0336l\u0336d\u0336l\u0336i\u0336f\u0336e\u0336 \u0336O\u0336f\u0336f\u0336i\u0336c\u0336e\u0336\nhttps://t.co/jKcDKslleY\n#IfTheyWereMuslim", "coordinates": null, "retweeted": false, "favorite_count": 82, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683736071037829120", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nyti.ms/1Jmx7rs", "url": "https://t.co/jKcDKslleY", "expanded_url": "http://nyti.ms/1Jmx7rs", "indices": [118, 140]}], "hashtags": [{"text": "Terrorists", "indices": [20, 31]}, {"text": "IfTheyWereMuslim", "indices": [139, 140]}], "user_mentions": [{"screen_name": "JesselynRadack", "id_str": "533297878", "id": 533297878, "indices": [3, 18], "name": "unR\u0336A\u0336D\u0336A\u0336C\u0336K\u0336ted"}]}, "created_at": "Sun Jan 03 19:45:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683736071037829120, "text": "RT @JesselynRadack: #Terrorists M\u0336i\u0336l\u0336i\u0336t\u0336i\u0336a\u0336m\u0336e\u0336n\u0336 Seize O\u0336c\u0336c\u0336u\u0336p\u0336y\u0336 Gov Bldg O\u0336R\u0336 \u0336W\u0336i\u0336l\u0336d\u0336l\u0336i\u0336f\u0336e\u0336 \u0336O\u0336f\u0336f\u0336i\u0336c\u0336e\u0336\nhttps://t.co/jKcDKsll\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 20478755, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 708, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13130412", "following": false, "friends_count": 2677, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/404516060/bellagio2.jpg", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "105E7A", "geo_enabled": true, "followers_count": 5482, "location": "Cambridge, MA", "screen_name": "laurelatoreilly", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 558, "name": "Laurel Ruma", "profile_use_background_image": false, "description": "Director of Acquisitions and Talent at O'Reilly Media. Homebrewer, foodie, farmer in the city. Untappd: laurelinboston", "url": null, "profile_text_color": "0C3E53", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/507566241687412737/h7tJFHKD_normal.png", "profile_background_color": "4A913C", "created_at": "Wed Feb 06 02:20:07 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507566241687412737/h7tJFHKD_normal.png", "favourites_count": 1015, "status": {"in_reply_to_status_id": 685485454137896964, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "monkchips", "in_reply_to_user_id": 61233, "in_reply_to_status_id_str": "685485454137896964", "in_reply_to_user_id_str": "61233", "truncated": false, "id_str": "685485759986536448", "id": 685485759986536448, "text": "@monkchips @monkigras Sadly no ;( but we need to catch up!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "monkchips", "id_str": "61233", "id": 61233, "indices": [0, 10], "name": "Medea Fawning"}, {"screen_name": "monkigras", "id_str": "408912987", "id": 408912987, "indices": [11, 21], "name": "Monki Gras 2016"}]}, "created_at": "Fri Jan 08 15:38:35 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13130412, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/404516060/bellagio2.jpg", "statuses_count": 15581, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13130412/1398351175", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "57203", "following": false, "friends_count": 6470, "entities": {"description": {"urls": [{"display_url": "known.kevinmarks.com", "url": "http://t.co/LD3HetU2DZ", "expanded_url": "http://known.kevinmarks.com", "indices": [48, 70]}]}, "url": {"urls": [{"display_url": "kevinmarks.com", "url": "http://t.co/cjiYwEZLiC", "expanded_url": "http://kevinmarks.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "007494", "geo_enabled": true, "followers_count": 25599, "location": "San Jose", "screen_name": "kevinmarks", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1990, "name": "Kevin Marks", "profile_use_background_image": false, "description": "Reading your thoughts. if you write them first. http://t.co/LD3HetU2DZ", "url": "http://t.co/cjiYwEZLiC", "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553009683087114240/tU5HkXEI_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 11 11:43:36 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553009683087114240/tU5HkXEI_normal.jpeg", "favourites_count": 2267, "status": {"in_reply_to_status_id": 685593158177001472, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "BenedictEvans", "in_reply_to_user_id": 1236101, "in_reply_to_status_id_str": "685593158177001472", "in_reply_to_user_id_str": "1236101", "truncated": false, "id_str": "685594842135543808", "id": 685594842135543808, "text": "@BenedictEvans did you just invent folders?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BenedictEvans", "id_str": "1236101", "id": 1236101, "indices": [0, 14], "name": "Benedict Evans"}]}, "created_at": "Fri Jan 08 22:52:02 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 57203, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 90294, "profile_banner_url": "https://pbs.twimg.com/profile_banners/57203/1358547253", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5243", "following": false, "friends_count": 824, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "walkah.net", "url": "https://t.co/LfuYudmbBl", "expanded_url": "http://walkah.net/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3709, "location": "Toronto, Canada", "screen_name": "walkah", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 367, "name": "James Walker", "profile_use_background_image": true, "description": "serial troublemaker.", "url": "https://t.co/LfuYudmbBl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659907676965597184/zhlKDN-H_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Sep 04 01:10:16 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659907676965597184/zhlKDN-H_normal.jpg", "favourites_count": 1936, "status": {"in_reply_to_status_id": 685577373828431876, "retweet_count": 1, "place": {"url": "https://api.twitter.com/1.1/geo/id/0161cbc265857029.json", "country": "Canada", "attributes": {}, "place_type": "neighborhood", "bounding_box": {"coordinates": [[[-79.4281185, 43.65388], [-79.407748, 43.65388], [-79.407748, 43.665125], [-79.4281185, 43.665125]]], "type": "Polygon"}, "full_name": "Palmerston-Little Italy, Toronto", "contained_within": [], "country_code": "CA", "id": "0161cbc265857029", "name": "Palmerston-Little Italy"}, "in_reply_to_screen_name": "bradpurchase", "in_reply_to_user_id": 753788227, "in_reply_to_status_id_str": "685577373828431876", "in_reply_to_user_id_str": "753788227", "truncated": false, "id_str": "685577626438639616", "id": 685577626438639616, "text": "@bradpurchase lol \u201cdry january\u201d", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "bradpurchase", "id_str": "753788227", "id": 753788227, "indices": [0, 13], "name": "Brad Howard"}]}, "created_at": "Fri Jan 08 21:43:38 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5243, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6297, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5243/1448757049", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "335478695", "following": false, "friends_count": 149, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 5, "location": "", "screen_name": "DilettanteDabbl", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "Ivy", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/424535174240829440/1GHc4qVa_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Jul 14 19:02:55 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/424535174240829440/1GHc4qVa_normal.jpeg", "favourites_count": 1, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "517786259972837376", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/quinnnorton/st\u2026", "url": "https://t.co/A7OddfuitN", "expanded_url": "https://twitter.com/quinnnorton/status/517781588545794048", "indices": [92, 115]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Oct 02 21:20:39 +0000 2014", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 517786259972837376, "text": "I will have nothing to do with Quinn Norton. Race hatred and anti-Semitism \u2260 \u201cwhite pride.\u201d https://t.co/A7OddfuitN", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "517865764834258944", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/quinnnorton/st\u2026", "url": "https://t.co/A7OddfuitN", "expanded_url": "https://twitter.com/quinnnorton/status/517781588545794048", "indices": [104, 127]}], "hashtags": [], "user_mentions": [{"screen_name": "GlennF", "id_str": "8315692", "id": 8315692, "indices": [3, 10], "name": "Glenn Fleishman"}]}, "created_at": "Fri Oct 03 02:36:34 +0000 2014", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 517865764834258944, "text": "RT @GlennF: I will have nothing to do with Quinn Norton. Race hatred and anti-Semitism \u2260 \u201cwhite pride.\u201d https://t.co/A7OddfuitN", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Talon (Classic)"}, "default_profile_image": false, "id": 335478695, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1, "profile_banner_url": "https://pbs.twimg.com/profile_banners/335478695/1408301504", "is_translator": false}, {"time_zone": "Sydney", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "95345146", "following": false, "friends_count": 645, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 429, "location": "Sydney, Australia", "screen_name": "imprecise_matt", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "Matt Moor", "profile_use_background_image": true, "description": "Nerd on sabbatical, wandering the Canadian wilderness.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1201580935/flickr-icon_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 08 03:47:08 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1201580935/flickr-icon_normal.jpeg", "favourites_count": 119, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684683613967761408", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BAMb62hnIM_/", "url": "https://t.co/d61F6f44cB", "expanded_url": "https://www.instagram.com/p/BAMb62hnIM_/", "indices": [95, 118]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 10:31:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [-33.89892438, 151.17303696], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/0073b76548e5984f.json", "country": "Australia", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[150.520928608, -34.1183470085], [151.343020992, -34.1183470085], [151.343020992, -33.578140996], [150.520928608, -33.578140996]]], "type": "Polygon"}, "full_name": "Sydney, New South Wales", "contained_within": [], "country_code": "AU", "id": "0073b76548e5984f", "name": "Sydney"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684683613967761408, "text": "Smashing it out of the park. Perfect mid-week meal - relaxed, inspired and just a little fun.\u2026 https://t.co/d61F6f44cB", "coordinates": {"coordinates": [151.17303696, -33.89892438], "type": "Point"}, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 95345146, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2553, "profile_banner_url": "https://pbs.twimg.com/profile_banners/95345146/1363358539", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6326692", "following": false, "friends_count": 723, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mtrichardson.com", "url": "http://t.co/B6G5M5NsF0", "expanded_url": "http://mtrichardson.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1784, "location": "Portland, Oregon", "screen_name": "mtrichardson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 138, "name": "Michael Richardson", "profile_use_background_image": true, "description": "Cofounder at Urban Airship. Senior Director of Product. My daughter's name is Blair.", "url": "http://t.co/B6G5M5NsF0", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1268862681/avatar_512_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri May 25 20:56:14 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268862681/avatar_512_normal.jpg", "favourites_count": 922, "status": {"retweet_count": 2, "in_reply_to_user_id": 587648379, "possibly_sensitive": false, "id_str": "684100682249416706", "in_reply_to_user_id_str": "587648379", "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/snowplowdata/s\u2026", "url": "https://t.co/JbPmIOBfwt", "expanded_url": "https://twitter.com/snowplowdata/status/683363168861564928", "indices": [80, 103]}], "hashtags": [], "user_mentions": [{"screen_name": "SnowPlowData", "id_str": "587648379", "id": 587648379, "indices": [23, 36], "name": "Snowplow"}]}, "created_at": "Mon Jan 04 19:54:47 +0000 2016", "favorited": false, "in_reply_to_status_id": 683363168861564928, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "SnowPlowData", "in_reply_to_status_id_str": "683363168861564928", "truncated": false, "id": 684100682249416706, "text": "This is really great \u2014 @snowplowdata now takes in Urban Airship Connect events. https://t.co/JbPmIOBfwt", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 6326692, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5157, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "47", "following": false, "friends_count": 1283, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "laughingmeme.org", "url": "http://t.co/5T3mp4ceZu", "expanded_url": "http://laughingmeme.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2346368/flow.jpg", "notifications": false, "profile_sidebar_fill_color": "F5D91F", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 10965, "location": "Brooklyn, NY", "screen_name": "kellan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 532, "name": "kellan", "profile_use_background_image": true, "description": "Looking for what's next. Previously CTO at Etsy, Flickr Architect. Technical solutions for social problems. #47 (A's dad)", "url": "http://t.co/5T3mp4ceZu", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/457754650/01457d1a0f0e533062cd0d1033fb4d7a_normal.png", "profile_background_color": "026BFA", "created_at": "Fri Mar 24 03:13:02 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/457754650/01457d1a0f0e533062cd0d1033fb4d7a_normal.png", "favourites_count": 20640, "status": {"in_reply_to_status_id": 685545686914469888, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "coates", "in_reply_to_user_id": 14249124, "in_reply_to_status_id_str": "685545686914469888", "in_reply_to_user_id_str": "14249124", "truncated": false, "id_str": "685570448344612865", "id": 685570448344612865, "text": "@coates i dunno, trained on humans as input, consistency seems a tall order", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "coates", "id_str": "14249124", "id": 14249124, "indices": [0, 7], "name": "Sean Coates"}]}, "created_at": "Fri Jan 08 21:15:06 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 47, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2346368/flow.jpg", "statuses_count": 15195, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18593319", "following": false, "friends_count": 416, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/seanporter", "url": "http://t.co/3Cme1MntgY", "expanded_url": "http://about.me/seanporter", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685436014/e756f50b87ce80302edfaebfd8e5a61c.png", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 2090, "location": "Hoth", "screen_name": "portertech", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 179, "name": "Sean Porter", "profile_use_background_image": true, "description": "Creator of @sensu. Partner at @heavywater. Open source hacker. Enthusiastic 40K player & hobbyist.", "url": "http://t.co/3Cme1MntgY", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/608757468701704192/jpmlgzbT_normal.png", "profile_background_color": "F5F5F5", "created_at": "Sun Jan 04 02:36:11 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/608757468701704192/jpmlgzbT_normal.png", "favourites_count": 8141, "status": {"retweet_count": 9420, "retweeted_status": {"retweet_count": 9420, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685415626945507328", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 614, "resize": "fit"}, "medium": {"w": 567, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "type": "photo", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "display_url": "pic.twitter.com/4ZnTo0GI7T", "id_str": "685415615138545664", "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", "id": 685415615138545664, "url": "https://t.co/4ZnTo0GI7T"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 10:59:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685415626945507328, "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", "coordinates": null, "retweeted": false, "favorite_count": 1176, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685567156042383360", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 614, "resize": "fit"}, "medium": {"w": 567, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 1024, "resize": "fit"}}, "source_status_id_str": "685415626945507328", "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "source_user_id_str": "2782137901", "id_str": "685415615138545664", "id": 685415615138545664, "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "type": "photo", "indices": [48, 71], "source_status_id": 685415626945507328, "source_user_id": 2782137901, "display_url": "pic.twitter.com/4ZnTo0GI7T", "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", "url": "https://t.co/4ZnTo0GI7T"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "neil_finnweevil", "id_str": "2782137901", "id": 2782137901, "indices": [3, 19], "name": "kiki montparnasse"}]}, "created_at": "Fri Jan 08 21:02:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685567156042383360, "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 18593319, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685436014/e756f50b87ce80302edfaebfd8e5a61c.png", "statuses_count": 14073, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18593319/1441952542", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "87274687", "following": false, "friends_count": 1537, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "voodoowarez.com", "url": "http://t.co/KnZD46iWAt", "expanded_url": "http://voodoowarez.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": false, "followers_count": 354, "location": "", "screen_name": "rektide", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 49, "name": "rektide de la fey", "profile_use_background_image": true, "description": "just your average dj savior", "url": "http://t.co/KnZD46iWAt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/534734516/bmstab_normal.png", "profile_background_color": "709397", "created_at": "Tue Nov 03 20:28:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534734516/bmstab_normal.png", "favourites_count": 18785, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685577506548617216", "id": 685577506548617216, "text": "I _adore_ that I have a dbus script that can control Spotify locally, which controls the instance on my phone or tv or whatever\n\n$ sp play", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:43:09 +0000 2016", "source": "TweetDeck", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685605975026356224", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "arrdem", "id_str": "389468789", "id": 389468789, "indices": [3, 10], "name": "Reid McKenzie"}]}, "created_at": "Fri Jan 08 23:36:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685605975026356224, "text": "RT @arrdem: I _adore_ that I have a dbus script that can control Spotify locally, which controls the instance on my phone or tv or whatever\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 87274687, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 14509, "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "6727082", "following": false, "friends_count": 737, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tehgeekmeister.com", "url": "https://t.co/11Ovl1Oxia", "expanded_url": "http://tehgeekmeister.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000119168225/94818b67e1eb45b8750b78966197b2da.png", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "CC3366", "geo_enabled": true, "followers_count": 710, "location": "Brooklyn, NY", "screen_name": "tehgeekmeister", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 41, "name": "FEBRUARY ICON", "profile_use_background_image": false, "description": "I'm a complicated person. I like code, law, philosophy, and economics. I talk about feelings.", "url": "https://t.co/11Ovl1Oxia", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674691158954479616/atpe60CZ_normal.png", "profile_background_color": "DBE9ED", "created_at": "Mon Jun 11 02:13:24 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674691158954479616/atpe60CZ_normal.png", "favourites_count": 7370, "status": {"in_reply_to_status_id": 685561003409461248, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "flippernaut", "in_reply_to_user_id": 1061154589, "in_reply_to_status_id_str": "685561003409461248", "in_reply_to_user_id_str": "1061154589", "truncated": false, "id_str": "685564168381050881", "id": 685564168381050881, "text": "@flippernaut \ud83d\udc96\ud83d\udc96\ud83d\udc96 I believe in you friend.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "flippernaut", "id_str": "1061154589", "id": 1061154589, "indices": [0, 12], "name": "flippernaut"}]}, "created_at": "Fri Jan 08 20:50:09 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6727082, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000119168225/94818b67e1eb45b8750b78966197b2da.png", "statuses_count": 35034, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6727082/1356319039", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "9605192", "following": false, "friends_count": 1307, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dmpayton.com", "url": "http://t.co/9iNkzlUKOI", "expanded_url": "http://dmpayton.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "006699", "geo_enabled": true, "followers_count": 573, "location": "Fresno, CA", "screen_name": "dmpayton", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Derek Payton", "profile_use_background_image": false, "description": "I write code (usually in Python) and build web apps (usually with Django). @EditLLC, @FresnoHackNight, @FresnoPython, @FresnoCannabis, Motorcycles.", "url": "http://t.co/9iNkzlUKOI", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/606706950890340352/657SPXsr_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 22 20:06:24 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/606706950890340352/657SPXsr_normal.jpg", "favourites_count": 359, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685372588604788736", "id": 685372588604788736, "text": "Just learned the difference between [0-9] and \\d in regexes, and also that I've been doing it wrong in Django URLs. [0-9] is the way to go.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 08:08:53 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9605192, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3796, "profile_banner_url": "https://pbs.twimg.com/profile_banners/9605192/1443137594", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14100497", "following": false, "friends_count": 771, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jessenoller.com", "url": "https://t.co/Hp1YGsizy9", "expanded_url": "http://www.jessenoller.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "060C0F", "geo_enabled": true, "followers_count": 5733, "location": "San Antonio, TX", "screen_name": "jessenoller", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 467, "name": "Jesse Noller", "profile_use_background_image": true, "description": "Director, Product Engineering /Developer Experience, Rackspace. The statements and opinions expressed here are my own, and not those of my employer.", "url": "https://t.co/Hp1YGsizy9", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/538919770897125376/J1uagJeO_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Sat Mar 08 15:03:27 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/538919770897125376/J1uagJeO_normal.jpeg", "favourites_count": 3915, "status": {"retweet_count": 3971, "retweeted_status": {"retweet_count": 3971, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685232104712585216", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 528, "h": 960, "resize": "fit"}, "small": {"w": 340, "h": 618, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 528, "h": 960, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", "type": "photo", "indices": [65, 88], "media_url": "http://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", "display_url": "pic.twitter.com/MAxWB290GQ", "id_str": "685232099226333184", "expanded_url": "http://twitter.com/_DaisyRidley_/status/685232104712585216/photo/1", "id": 685232099226333184, "url": "https://t.co/MAxWB290GQ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 22:50:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685232104712585216, "text": "\"Grandpa, that girl beat me up and took the lightsaber I wanted\" https://t.co/MAxWB290GQ", "coordinates": null, "retweeted": false, "favorite_count": 5627, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685591850997043200", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 528, "h": 960, "resize": "fit"}, "small": {"w": 340, "h": 618, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 528, "h": 960, "resize": "fit"}}, "source_status_id_str": "685232104712585216", "media_url": "http://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", "source_user_id_str": "3228495293", "id_str": "685232099226333184", "id": 685232099226333184, "media_url_https": "https://pbs.twimg.com/media/CYJu9rcUsAAfKyH.jpg", "type": "photo", "indices": [84, 107], "source_status_id": 685232104712585216, "source_user_id": 3228495293, "display_url": "pic.twitter.com/MAxWB290GQ", "expanded_url": "http://twitter.com/_DaisyRidley_/status/685232104712585216/photo/1", "url": "https://t.co/MAxWB290GQ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "_DaisyRidley_", "id_str": "3228495293", "id": 3228495293, "indices": [3, 17], "name": "Daisy Ridley\u2744"}]}, "created_at": "Fri Jan 08 22:40:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685591850997043200, "text": "RT @_DaisyRidley_: \"Grandpa, that girl beat me up and took the lightsaber I wanted\" https://t.co/MAxWB290GQ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14100497, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 54004, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14100497/1400509070", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "4412471", "following": false, "friends_count": 671, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "orvtech.com", "url": "https://t.co/8Uy02IWCJy", "expanded_url": "http://orvtech.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "55ACEE", "geo_enabled": true, "followers_count": 8237, "location": "Interwebs", "screen_name": "orvtech", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 143, "name": "Oliver", "profile_use_background_image": false, "description": "Opinions are my own & do not represent my employer's view or any organization I am part of.", "url": "https://t.co/8Uy02IWCJy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/679790242610556928/5ow1h5_v_normal.jpg", "profile_background_color": "3B87C3", "created_at": "Thu Apr 12 21:35:06 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679790242610556928/5ow1h5_v_normal.jpg", "favourites_count": 27552, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685544493106372608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/ceL6w0oCaj", "url": "https://t.co/ceL6w0oCaj", "expanded_url": "http://twitter.com/orvtech/status/685544493106372608/photo/1", "indices": [31, 54]}], "hashtags": [], "user_mentions": [{"screen_name": "KyloR3n", "id_str": "4625687418", "id": 4625687418, "indices": [22, 30], "name": "Emo Kylo Ren"}]}, "created_at": "Fri Jan 08 19:31:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685544493106372608, "text": "A bit more disneysee @KyloR3n https://t.co/ceL6w0oCaj", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 4412471, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 31858, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4412471/1433292877", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "39851654", "following": false, "friends_count": 794, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "getoutfitted.com", "url": "http://t.co/YMPGEhW8Mn", "expanded_url": "http://www.getoutfitted.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 659, "location": "Colorado Springs / Boulder", "screen_name": "spencernorman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Spencer Norman", "profile_use_background_image": true, "description": "Software Engineering @GetOutfitted.", "url": "http://t.co/YMPGEhW8Mn", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/450022947864842240/P9bqZfQs_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Wed May 13 22:13:21 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/450022947864842240/P9bqZfQs_normal.jpeg", "favourites_count": 2622, "status": {"retweet_count": 16, "retweeted_status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684940742234619904", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 738, "h": 1024, "resize": "fit"}, "medium": {"w": 600, "h": 832, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 471, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", "type": "photo", "indices": [14, 37], "media_url": "http://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", "display_url": "pic.twitter.com/8YgqN4dy0z", "id_str": "684940737985777664", "expanded_url": "http://twitter.com/devinbanerjee/status/684940742234619904/photo/1", "id": 684940737985777664, "url": "https://t.co/8YgqN4dy0z"}], "symbols": [], "urls": [], "hashtags": [{"text": "China", "indices": [7, 13]}], "user_mentions": []}, "created_at": "Thu Jan 07 03:32:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684940742234619904, "text": "Wow in #China https://t.co/8YgqN4dy0z", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685329870973308928", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 738, "h": 1024, "resize": "fit"}, "medium": {"w": 600, "h": 832, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 471, "resize": "fit"}}, "source_status_id_str": "684940742234619904", "media_url": "http://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", "source_user_id_str": "46165612", "id_str": "684940737985777664", "id": 684940737985777664, "media_url_https": "https://pbs.twimg.com/media/CYFl-OPWEAAzrma.jpg", "type": "photo", "indices": [33, 56], "source_status_id": 684940742234619904, "source_user_id": 46165612, "display_url": "pic.twitter.com/8YgqN4dy0z", "expanded_url": "http://twitter.com/devinbanerjee/status/684940742234619904/photo/1", "url": "https://t.co/8YgqN4dy0z"}], "symbols": [], "urls": [], "hashtags": [{"text": "China", "indices": [26, 32]}], "user_mentions": [{"screen_name": "devinbanerjee", "id_str": "46165612", "id": 46165612, "indices": [3, 17], "name": "Devin Banerjee"}]}, "created_at": "Fri Jan 08 05:19:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685329870973308928, "text": "RT @devinbanerjee: Wow in #China https://t.co/8YgqN4dy0z", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 39851654, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 1707, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "55090980", "following": false, "friends_count": 224, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nathanbowser.com", "url": "http://t.co/qGUXQj4YRN", "expanded_url": "http://nathanbowser.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 159, "location": "Philadelphia, PA", "screen_name": "nathanbowser", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Nathan Bowser", "profile_use_background_image": true, "description": "JavaScript and tacos.", "url": "http://t.co/qGUXQj4YRN", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000637876269/63d287afc301ffdeaab69e57dda7fbb1_normal.jpeg", "profile_background_color": "352726", "created_at": "Thu Jul 09 01:00:34 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000637876269/63d287afc301ffdeaab69e57dda7fbb1_normal.jpeg", "favourites_count": 128, "status": {"in_reply_to_status_id": 672926644517122049, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "scttor", "in_reply_to_user_id": 1030894430, "in_reply_to_status_id_str": "672926644517122049", "in_reply_to_user_id_str": "1030894430", "truncated": false, "id_str": "672931830602080256", "id": 672931830602080256, "text": "@scttor I'd call dibs on that ear.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "scttor", "id_str": "1030894430", "id": 1030894430, "indices": [0, 7], "name": "Scott O'Reilly"}]}, "created_at": "Sat Dec 05 00:13:45 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 55090980, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 1047, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "249150277", "following": false, "friends_count": 471, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pinboard.in/u:mcelaney", "url": "http://t.co/yg55zJXrC1", "expanded_url": "http://pinboard.in/u:mcelaney", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 691, "location": "Philadelphia PA", "screen_name": "McElaney", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "Brian E. McElaney", "profile_use_background_image": true, "description": "Philly-based Ruby developer, pitmaster, homebrewer, and benevolent skeptic.", "url": "http://t.co/yg55zJXrC1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/610797829569818624/8kkUJvjv_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Feb 08 13:40:07 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/610797829569818624/8kkUJvjv_normal.jpg", "favourites_count": 1179, "status": {"retweet_count": 29, "retweeted_status": {"retweet_count": 29, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684717652435152898", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 480, "h": 480, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 480, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", "type": "photo", "indices": [88, 111], "media_url": "http://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", "display_url": "pic.twitter.com/TxPt3WcFGm", "id_str": "684717652300926978", "expanded_url": "http://twitter.com/JimFKenney/status/684717652435152898/photo/1", "id": 684717652300926978, "url": "https://t.co/TxPt3WcFGm"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 12:46:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684717652435152898, "text": "Needless to say, Mr. Douglas was a very smart man. Let's try finally to get this right. https://t.co/TxPt3WcFGm", "coordinates": null, "retweeted": false, "favorite_count": 57, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685517687376707584", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 480, "h": 480, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 480, "resize": "fit"}}, "source_status_id_str": "684717652435152898", "media_url": "http://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", "source_user_id_str": "376874694", "id_str": "684717652300926978", "id": 684717652300926978, "media_url_https": "https://pbs.twimg.com/media/CYCbE7TWEAIqn22.jpg", "type": "photo", "indices": [104, 127], "source_status_id": 684717652435152898, "source_user_id": 376874694, "display_url": "pic.twitter.com/TxPt3WcFGm", "expanded_url": "http://twitter.com/JimFKenney/status/684717652435152898/photo/1", "url": "https://t.co/TxPt3WcFGm"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JimFKenney", "id_str": "376874694", "id": 376874694, "indices": [3, 14], "name": "Jim Kenney"}]}, "created_at": "Fri Jan 08 17:45:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685517687376707584, "text": "RT @JimFKenney: Needless to say, Mr. Douglas was a very smart man. Let's try finally to get this right. https://t.co/TxPt3WcFGm", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 249150277, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 11364, "profile_banner_url": "https://pbs.twimg.com/profile_banners/249150277/1406138248", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "68474641", "following": false, "friends_count": 2024, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/lucperkins", "url": "https://t.co/Lz8bR8DQDW", "expanded_url": "https://github.com/lucperkins", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/665893188/0e8e5eddffa1acfdf680e461f23b4d08.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1203, "location": "Portland, OR", "screen_name": "lucperkins", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 74, "name": "Luc Perkins", "profile_use_background_image": true, "description": "Technical writer @Twitter. Feminist, basic income advocate, SJW, political philosophy PhD. Ex @basho @janrain @appfog @Reed_College_ @DukeU. Deutschsprecher.", "url": "https://t.co/Lz8bR8DQDW", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/618824444501360640/uQJv3b6q_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Mon Aug 24 18:27:00 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/618824444501360640/uQJv3b6q_normal.jpg", "favourites_count": 801, "status": {"in_reply_to_status_id": 685487863220158464, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "lucperkins", "in_reply_to_user_id": 68474641, "in_reply_to_status_id_str": "685487863220158464", "in_reply_to_user_id_str": "68474641", "truncated": false, "id_str": "685488531540590592", "id": 685488531540590592, "text": "@brianloveswords In all seriousness, tho, I non-ironically love that song", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "brianloveswords", "id_str": "17177251", "id": 17177251, "indices": [0, 16], "name": "spacer.tiff"}]}, "created_at": "Fri Jan 08 15:49:36 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 68474641, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/665893188/0e8e5eddffa1acfdf680e461f23b4d08.jpeg", "statuses_count": 10254, "profile_banner_url": "https://pbs.twimg.com/profile_banners/68474641/1431496573", "is_translator": false}, {"time_zone": "New Delhi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "14918557", "following": false, "friends_count": 670, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stackoverflow.com/users/66945/ri\u2026", "url": "https://t.co/4gPwhcfhtk", "expanded_url": "http://stackoverflow.com/users/66945/rishav-rastogi", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 706, "location": "San Jose, CA", "screen_name": "rishavrastogi", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "Rishav Rastogi", "profile_use_background_image": false, "description": "Software Developer. Startup guy.", "url": "https://t.co/4gPwhcfhtk", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/565590382205890560/LJVHh05U_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue May 27 08:44:18 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/565590382205890560/LJVHh05U_normal.jpeg", "favourites_count": 439, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685584158291173376", "id": 685584158291173376, "text": "Just a test. Can you see this poll?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:09:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14918557, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 7008, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14918557/1423682170", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "170793777", "following": false, "friends_count": 524, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "logikal.is", "url": "http://t.co/5LKgsNQZbU", "expanded_url": "http://logikal.is", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/823703100/15e689e9865ec4b38a96b19c5312db85.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "D19A02", "geo_enabled": true, "followers_count": 263, "location": "trapped in a server", "screen_name": "log1kal", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Sean Kilgore", "profile_use_background_image": true, "description": "automation automaton. opsing all the things.", "url": "http://t.co/5LKgsNQZbU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3730798340/2c44dc296c86edad7253fcf84532a525_normal.jpeg", "profile_background_color": "131516", "created_at": "Sun Jul 25 19:54:54 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3730798340/2c44dc296c86edad7253fcf84532a525_normal.jpeg", "favourites_count": 676, "status": {"in_reply_to_status_id": 677204834156724225, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "obfuscurity", "in_reply_to_user_id": 66432490, "in_reply_to_status_id_str": "677204834156724225", "in_reply_to_user_id_str": "66432490", "truncated": false, "id_str": "677204910794936320", "id": 677204910794936320, "text": "@obfuscurity how can I aquire one of these?!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "obfuscurity", "id_str": "66432490", "id": 66432490, "indices": [0, 12], "name": "even tho it ass"}]}, "created_at": "Wed Dec 16 19:13:27 +0000 2015", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 170793777, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/823703100/15e689e9865ec4b38a96b19c5312db85.jpeg", "statuses_count": 2172, "profile_banner_url": "https://pbs.twimg.com/profile_banners/170793777/1376898775", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17697991", "following": false, "friends_count": 186, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1351, "location": "California", "screen_name": "pradeep24", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 91, "name": "Pradeep Elankumaran", "profile_use_background_image": false, "description": "Emerging products & growth at Yahoo. Formerly growth at Lyft, co-founder & ceo of Kicksend", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000727552294/a4b4c3b199c28f19159073dd75a921a8_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Nov 28 03:41:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000727552294/a4b4c3b199c28f19159073dd75a921a8_normal.jpeg", "favourites_count": 2318, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684150428771192832", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ridechar.io/p6x31", "url": "https://t.co/WoGBa0ahEm", "expanded_url": "http://ridechar.io/p6x31", "indices": [22, 45]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 23:12:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "et", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684150428771192832, "text": "MV -> SOMA shuttle https://t.co/WoGBa0ahEm", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 17697991, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 9325, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17697991/1422888784", "is_translator": false}, {"time_zone": "Brisbane", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 36000, "id_str": "180539215", "following": false, "friends_count": 45, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000004768931/039605008ade649e7e3ef9e2c035e56d.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 396, "location": "", "screen_name": "nerd___rage", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Swathe", "profile_use_background_image": true, "description": "Psychopath. Chelsea F.C.", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682124739171627009/KUgdNpei_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Thu Aug 19 21:57:38 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682124739171627009/KUgdNpei_normal.jpg", "favourites_count": 270, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685396731538767872", "id": 685396731538767872, "text": "3-0 at half time lmao what the fuck Victory the Mariners are smashing you cunts", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 09:44:49 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 180539215, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000004768931/039605008ade649e7e3ef9e2c035e56d.jpeg", "statuses_count": 13450, "profile_banner_url": "https://pbs.twimg.com/profile_banners/180539215/1450678253", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "9580822", "following": false, "friends_count": 130, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "omniti.com", "url": "https://t.co/A0Gq4WHzr9", "expanded_url": "http://omniti.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/284711510/spiral-small.jpg", "notifications": false, "profile_sidebar_fill_color": "3B3A3B", "profile_link_color": "F08A5B", "geo_enabled": true, "followers_count": 4384, "location": "", "screen_name": "postwait", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 313, "name": "Theo Schlossnagle", "profile_use_background_image": true, "description": "On sabbatical seeing Earth and it's peoples.\nFounder at Circonus, Message Systems, Fontdeck, OmniTI.\nDad.", "url": "https://t.co/A0Gq4WHzr9", "profile_text_color": "E6E6E6", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/455795509651722240/rGKrlwZF_normal.jpeg", "profile_background_color": "F2EEEF", "created_at": "Sun Oct 21 15:32:43 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "808080", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/455795509651722240/rGKrlwZF_normal.jpeg", "favourites_count": 392, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/0101d60e7d6aa007.json", "country": "Vi\u1ec7t Nam", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[106.331083, 10.8634421], [106.966712, 10.8634421], [106.966712, 11.499635], [106.331083, 11.499635]]], "type": "Polygon"}, "full_name": "B\u00ecnh D\u01b0\u01a1ng, Vietnam", "contained_within": [], "country_code": "VN", "id": "0101d60e7d6aa007", "name": "B\u00ecnh D\u01b0\u01a1ng"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685330458746331136", "id": 685330458746331136, "text": "OH \"I wasn't brainwashed by propaganda b/c I have anti-brainwashing in my mind and heart... The Bible.\" Sometimes #irony can be deafening.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "irony", "indices": [114, 120]}], "user_mentions": []}, "created_at": "Fri Jan 08 05:21:28 +0000 2016", "source": "Twitter for Android", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9580822, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/284711510/spiral-small.jpg", "statuses_count": 8974, "profile_banner_url": "https://pbs.twimg.com/profile_banners/9580822/1399549729", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15943764", "following": false, "friends_count": 262, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "castro.io", "url": "https://t.co/IdQQKcCe7g", "expanded_url": "https://castro.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 562, "location": "Philadelphia, PA", "screen_name": "hectcastro", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Hector Castro", "profile_use_background_image": true, "description": "Sometimes I'm good at analogies. Operations Engineer at @azavea. I also once hustled for @basho.", "url": "https://t.co/IdQQKcCe7g", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/496839851887427587/7VfJpRgT_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri Aug 22 11:43:54 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/496839851887427587/7VfJpRgT_normal.jpeg", "favourites_count": 1336, "status": {"retweet_count": 67, "retweeted_status": {"in_reply_to_status_id": 685219557879975936, "retweet_count": 67, "place": null, "in_reply_to_screen_name": "TMobileHelp", "in_reply_to_user_id": 185728888, "in_reply_to_status_id_str": "685219557879975936", "in_reply_to_user_id_str": "185728888", "truncated": false, "id_str": "685220010499817472", "id": 685220010499817472, "text": "@TMobileHelp Okay, will do. @JohnLegere -- if you call 1 (877) 453-1304 -- someone will talk you through looking up EFF on Wikipedia and CN", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "TMobileHelp", "id_str": "185728888", "id": 185728888, "indices": [0, 12], "name": "T-Mobile USA"}, {"screen_name": "JohnLegere", "id_str": "1394399438", "id": 1394399438, "indices": [28, 39], "name": "John Legere"}]}, "created_at": "Thu Jan 07 22:02:35 +0000 2016", "source": "Twitter Web Client", "favorite_count": 182, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685236026965671938", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mattl", "id_str": "661723", "id": 661723, "indices": [3, 9], "name": "mattl"}, {"screen_name": "TMobileHelp", "id_str": "185728888", "id": 185728888, "indices": [11, 23], "name": "T-Mobile USA"}, {"screen_name": "JohnLegere", "id_str": "1394399438", "id": 1394399438, "indices": [39, 50], "name": "John Legere"}]}, "created_at": "Thu Jan 07 23:06:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685236026965671938, "text": "RT @mattl: @TMobileHelp Okay, will do. @JohnLegere -- if you call 1 (877) 453-1304 -- someone will talk you through looking up EFF on Wikip\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 15943764, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 8897, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15943764/1357190546", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "28828401", "following": false, "friends_count": 425, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tsantero.com", "url": "https://t.co/rtMPFzpYez", "expanded_url": "http://tsantero.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1687, "location": "Fort Collins, CO", "screen_name": "tsantero", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 75, "name": "Tom Santero", "profile_use_background_image": false, "description": "Philosophy Scientist, Engineer, Lover.", "url": "https://t.co/rtMPFzpYez", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667737106203078656/CL1aQe40_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Apr 04 17:03:47 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667737106203078656/CL1aQe40_normal.jpg", "favourites_count": 21290, "status": {"in_reply_to_status_id": 685573885928984576, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/b2e4e65d7b80d2c1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-105.148074, 40.47168], [-104.979811, 40.47168], [-104.979811, 40.656701], [-105.148074, 40.656701]]], "type": "Polygon"}, "full_name": "Fort Collins, CO", "contained_within": [], "country_code": "US", "id": "b2e4e65d7b80d2c1", "name": "Fort Collins"}, "in_reply_to_screen_name": "andrew_j_stone", "in_reply_to_user_id": 318079932, "in_reply_to_status_id_str": "685573885928984576", "in_reply_to_user_id_str": "318079932", "truncated": false, "id_str": "685574403682254848", "id": 685574403682254848, "text": "@andrew_j_stone nah, because Wood drastically underestimates the the impact of social distinctions on catnip, especially inherited catnip", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "andrew_j_stone", "id_str": "318079932", "id": 318079932, "indices": [0, 15], "name": "Ass Warfare"}]}, "created_at": "Fri Jan 08 21:30:49 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 28828401, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 28305, "is_translator": false}, {"time_zone": "Indiana (East)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "158098153", "following": false, "friends_count": 383, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 271, "location": "Albany NY", "screen_name": "GavinInNY", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "gavin", "profile_use_background_image": true, "description": "Chief Architect at CommerceHub. JVM enthusiast, Dad (headshot: @scottduclos)", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/485093069818437634/qiTdZW49_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Jun 21 19:40:09 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/485093069818437634/qiTdZW49_normal.jpeg", "favourites_count": 2432, "status": {"retweet_count": 5, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 5, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685287144823324673", "id": 685287144823324673, "text": "Outstanding! We gain 2 minutes of daylight tomorrow. Sun rises a minute earlier, sets a minute later. #BabySteps #thatswhatimtalkinabout", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "BabySteps", "indices": [105, 115]}, {"text": "thatswhatimtalkinabout", "indices": [116, 139]}], "user_mentions": []}, "created_at": "Fri Jan 08 02:29:22 +0000 2016", "source": "Twitter Web Client", "favorite_count": 6, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685296133267128320", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "BabySteps", "indices": [124, 134]}, {"text": "thatswhatimtalkinabout", "indices": [135, 140]}], "user_mentions": [{"screen_name": "Jason_Weather", "id_str": "28174351", "id": 28174351, "indices": [3, 17], "name": "Jason Gough"}]}, "created_at": "Fri Jan 08 03:05:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685296133267128320, "text": "RT @Jason_Weather: Outstanding! We gain 2 minutes of daylight tomorrow. Sun rises a minute earlier, sets a minute later. #BabySteps #tha\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 158098153, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6805, "is_translator": false}, {"time_zone": "Chennai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "19160166", "following": false, "friends_count": 1844, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nigelb.me", "url": "http://t.co/RLGfC4EpR8", "expanded_url": "http://nigelb.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": false, "followers_count": 2054, "location": "Delhi / IRC", "screen_name": "nigelbabu", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 166, "name": "nigelb", "profile_use_background_image": true, "description": "Consulting Web Developer and sysadmin. Professional yak shaver. Loves running and climbing.", "url": "http://t.co/RLGfC4EpR8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/616830722779779072/xVDF7YgV_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Sun Jan 18 22:18:01 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616830722779779072/xVDF7YgV_normal.jpg", "favourites_count": 20812, "status": {"in_reply_to_status_id": 685460996580720640, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "atti_cus", "in_reply_to_user_id": 242873592, "in_reply_to_status_id_str": "685460996580720640", "in_reply_to_user_id_str": "242873592", "truncated": false, "id_str": "685461280291860480", "id": 685461280291860480, "text": "@atti_cus Lol.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "atti_cus", "id_str": "242873592", "id": 242873592, "indices": [0, 9], "name": "Dushyant Arora"}]}, "created_at": "Fri Jan 08 14:01:19 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 19160166, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 59823, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19160166/1447393938", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13857342", "following": false, "friends_count": 702, "entities": {"description": {"urls": [{"display_url": "keybase.io/freebsdgirl", "url": "https://t.co/okBqI4N0Pg", "expanded_url": "http://keybase.io/freebsdgirl", "indices": [69, 92]}, {"display_url": "patreon.com/freebsdgirl", "url": "https://t.co/zadlXVRLW5", "expanded_url": "http://patreon.com/freebsdgirl", "indices": [93, 116]}]}, "url": {"urls": [{"display_url": "blog.randi.io", "url": "https://t.co/OWOqcXQCyx", "expanded_url": "http://blog.randi.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 18448, "location": "Portland, OR", "screen_name": "randileeharper", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 818, "name": "Randi Lee Harper", "profile_use_background_image": true, "description": "Author, @ggautoblocker. Founder, Online Abuse Prevention Initiative. https://t.co/okBqI4N0Pg https://t.co/zadlXVRLW5 randi@onlineabuseprevention.org", "url": "https://t.co/OWOqcXQCyx", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685350328884015106/N5-h9tIu_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sat Feb 23 07:27:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685350328884015106/N5-h9tIu_normal.jpg", "favourites_count": 42468, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.7900653, 45.421863], [-122.471751, 45.421863], [-122.471751, 45.6509405], [-122.7900653, 45.6509405]]], "type": "Polygon"}, "full_name": "Portland, OR", "contained_within": [], "country_code": "US", "id": "ac88a4f17a51c7fc", "name": "Portland"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685607385524654080", "id": 685607385524654080, "text": "Is it weird that I'm relieved that I'm feeling sad? Like I didn't know if I was capable of feeling that way anymore.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:41:53 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 8, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13857342, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 89188, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13857342/1418112584", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14317497", "following": false, "friends_count": 1504, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/justinsheehy", "url": "https://t.co/t7mUz5MyD1", "expanded_url": "http://about.me/justinsheehy", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 4147, "location": "", "screen_name": "justinsheehy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 234, "name": "Justin Sheehy", "profile_use_background_image": true, "description": "", "url": "https://t.co/t7mUz5MyD1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/416962456997470208/WqPwCIXj_normal.jpeg", "profile_background_color": "131516", "created_at": "Sun Apr 06 20:15:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/416962456997470208/WqPwCIXj_normal.jpeg", "favourites_count": 135, "status": {"in_reply_to_status_id": 685487207877095428, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "threadwaste", "in_reply_to_user_id": 24881503, "in_reply_to_status_id_str": "685487207877095428", "in_reply_to_user_id_str": "24881503", "truncated": false, "id_str": "685488454415826944", "id": 685488454415826944, "text": "@threadwaste That one is Winnimere, from Cellars at Jasper Hill. Raw milk, rind washed in Hill Farmstead beer, wrapped in spruce.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "threadwaste", "id_str": "24881503", "id": 24881503, "indices": [0, 12], "name": "Anthony M."}]}, "created_at": "Fri Jan 08 15:49:17 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14317497, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 8063, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "710133", "following": false, "friends_count": 460, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "davekonopka.com", "url": "http://t.co/Fxmr2QSUlM", "expanded_url": "http://davekonopka.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000087740435/48c888b21a8d6161239296e9c00140ba.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "D67200", "geo_enabled": false, "followers_count": 737, "location": "Glenside, PA", "screen_name": "davekonopka", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 54, "name": "Dave Konopka", "profile_use_background_image": true, "description": "I like rain. I like ham. I like you.\n\nOps engineer. Philly DevOps meetup co-organizer.", "url": "http://t.co/Fxmr2QSUlM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000477832092/7ce845a98db20fbd4f5f22f266b447ea_normal.jpeg", "profile_background_color": "FFE2B0", "created_at": "Fri Jan 26 18:43:11 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000477832092/7ce845a98db20fbd4f5f22f266b447ea_normal.jpeg", "favourites_count": 1566, "status": {"retweet_count": 55, "retweeted_status": {"retweet_count": 55, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684840868587540480", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "kottke.org/16/01/two-satu\u2026", "url": "https://t.co/ilvZDE5ihs", "expanded_url": "http://kottke.org/16/01/two-saturnian-moons-lined-up", "indices": [80, 103]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 20:56:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684840868587540480, "text": "The Cassini spacecraft took a photo of two moons of Saturn, beautifully aligned https://t.co/ilvZDE5ihs", "coordinates": null, "retweeted": false, "favorite_count": 74, "contributors": null, "source": "kottke tweeter"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685261072245387268", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "kottke.org/16/01/two-satu\u2026", "url": "https://t.co/ilvZDE5ihs", "expanded_url": "http://kottke.org/16/01/two-saturnian-moons-lined-up", "indices": [92, 115]}], "hashtags": [], "user_mentions": [{"screen_name": "kottke", "id_str": "14120215", "id": 14120215, "indices": [3, 10], "name": "kottke.org"}]}, "created_at": "Fri Jan 08 00:45:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685261072245387268, "text": "RT @kottke: The Cassini spacecraft took a photo of two moons of Saturn, beautifully aligned https://t.co/ilvZDE5ihs", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 710133, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000087740435/48c888b21a8d6161239296e9c00140ba.png", "statuses_count": 10061, "profile_banner_url": "https://pbs.twimg.com/profile_banners/710133/1398839750", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8412", "following": false, "friends_count": 603, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dangerouslyawesome.com/podcast/", "url": "https://t.co/dEmictB8xr", "expanded_url": "http://dangerouslyawesome.com/podcast/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4272/banner_pattern.gif", "notifications": false, "profile_sidebar_fill_color": "FFF000", "profile_link_color": "3F3F3F", "geo_enabled": true, "followers_count": 10092, "location": "Philadelphia, PA", "screen_name": "alexhillman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 768, "name": "Alex Hillman", "profile_use_background_image": true, "description": "\u2764\ufe0f @hocksncoqs.\n\nI like to share what I've learned building @indyhall to help people build better businesses and community. #Coworking is my jam.", "url": "https://t.co/dEmictB8xr", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674017499118178306/igxZQIno_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Oct 11 11:19:35 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674017499118178306/igxZQIno_normal.jpg", "favourites_count": 18389, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685589323329204224", "id": 685589323329204224, "text": "Success = being the boss you need to be so you can be your own boss. Think about it.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:30:06 +0000 2016", "source": "Meet Edgar", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8412, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4272/banner_pattern.gif", "statuses_count": 58699, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8412/1449533206", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "44689224", "following": false, "friends_count": 1307, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 506, "location": "Philadelphia", "screen_name": "KevinClough", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Kevin Clough", "profile_use_background_image": true, "description": "Full stack developer with a passion for mobile, activism and civic hacking.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2655424631/0fbfa93596945de52e228ccfad2a4b34_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 04 18:59:00 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2655424631/0fbfa93596945de52e228ccfad2a4b34_normal.jpeg", "favourites_count": 873, "status": {"retweet_count": 72409, "retweeted_status": {"retweet_count": 72409, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684020629897621508", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "vine.co/v/ibFH7bQVaHK", "url": "https://t.co/fmoRaxTAlV", "expanded_url": "https://vine.co/v/ibFH7bQVaHK", "indices": [111, 134]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 14:36:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684020629897621508, "text": "Watching a raccoon accidentally dissolve his candyfloss in a puddle has really put my troubles in perspective. https://t.co/fmoRaxTAlV", "coordinates": null, "retweeted": false, "favorite_count": 76542, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684248130230087680", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "vine.co/v/ibFH7bQVaHK", "url": "https://t.co/fmoRaxTAlV", "expanded_url": "https://vine.co/v/ibFH7bQVaHK", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "RyanJohnNelson", "id_str": "284183389", "id": 284183389, "indices": [3, 18], "name": "Ryan Nelson"}]}, "created_at": "Tue Jan 05 05:40:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684248130230087680, "text": "RT @RyanJohnNelson: Watching a raccoon accidentally dissolve his candyfloss in a puddle has really put my troubles in perspective. https://\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 44689224, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1683, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "16738744", "following": false, "friends_count": 439, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 383, "location": "", "screen_name": "bakins", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Brian Akins", "profile_use_background_image": true, "description": "Any opinions are my own.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2390796647/s1cdkmi6werv9q5uqxwo_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Oct 14 14:39:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2390796647/s1cdkmi6werv9q5uqxwo_normal.jpeg", "favourites_count": 4312, "status": {"in_reply_to_status_id": 685593014690033667, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "JAkins490", "in_reply_to_user_id": 332033511, "in_reply_to_status_id_str": "685593014690033667", "in_reply_to_user_id_str": "332033511", "truncated": false, "id_str": "685602376812740608", "id": 685602376812740608, "text": "@jakins490 pre-ordered months ago ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JAkins490", "id_str": "332033511", "id": 332033511, "indices": [0, 10], "name": "Qui-Gon Josh"}]}, "created_at": "Fri Jan 08 23:21:59 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16738744, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3218, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16738744/1432739558", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14443775", "following": false, "friends_count": 302, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "johnryding.com", "url": "https://t.co/NPItuiGmAx", "expanded_url": "http://www.johnryding.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 562, "location": "Chicago, IL", "screen_name": "strife25", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "John", "profile_use_background_image": true, "description": "| (\u2022 \u25e1\u2022)| (\u274d\u1d25\u274d\u028b)", "url": "https://t.co/NPItuiGmAx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648682085520019456/K5_LqyUI_normal.jpg", "profile_background_color": "131516", "created_at": "Sat Apr 19 15:00:51 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648682085520019456/K5_LqyUI_normal.jpg", "favourites_count": 74, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685506438047739904", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "24ways.org/2015/solve-the\u2026", "url": "https://t.co/bwUSnLbUBW", "expanded_url": "https://24ways.org/2015/solve-the-hard-problems/?utm_source=Software+Lead+Weekly&utm_campaign=c06b22b60e-SWLW_163&utm_medium=email&utm_term=0_efe3d3cd5b-c06b22b60e-198271457", "indices": [34, 57]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:00:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685506438047739904, "text": "Solve the Hard Problems \u25c6 24 ways https://t.co/bwUSnLbUBW", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "OS X"}, "default_profile_image": false, "id": 14443775, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 9653, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16891384", "following": false, "friends_count": 272, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "threeriversinstitute.org", "url": "http://t.co/84mHDZpXNN", "expanded_url": "http://www.threeriversinstitute.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 91039, "location": "Southern Oregon", "screen_name": "KentBeck", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4288, "name": "Kent Beck", "profile_use_background_image": true, "description": "Programmer, author, father, husband, goat farmer", "url": "http://t.co/84mHDZpXNN", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2550670043/xq10bqclqpsezgerjxhi_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Tue Oct 21 18:56:26 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2550670043/xq10bqclqpsezgerjxhi_normal.jpeg", "favourites_count": 1377, "status": {"in_reply_to_status_id": 685597778236444673, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "geeksam", "in_reply_to_user_id": 38699900, "in_reply_to_status_id_str": "685597778236444673", "in_reply_to_user_id_str": "38699900", "truncated": false, "id_str": "685598859343433729", "id": 685598859343433729, "text": "@geeksam treat flat profiles as a design problem, not a tuning problem. what design, if i had it, would concentrate this perf in one area?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "geeksam", "id_str": "38699900", "id": 38699900, "indices": [0, 8], "name": "Sam Livingston-Gray"}]}, "created_at": "Fri Jan 08 23:08:00 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16891384, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 9370, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16891384/1398795436", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16665197", "following": false, "friends_count": 387, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "martinfowler.com", "url": "http://t.co/zJOC4bh4Tv", "expanded_url": "http://www.martinfowler.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/59018302/PICT0019__1_.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 160990, "location": "Boston", "screen_name": "martinfowler", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 6020, "name": "Martin Fowler", "profile_use_background_image": true, "description": "Programmer, Loud Mouth, ThoughtWorker", "url": "http://t.co/zJOC4bh4Tv", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/79787739/mf-tg-sq_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Thu Oct 09 12:20:58 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/79787739/mf-tg-sq_normal.jpg", "favourites_count": 22, "status": {"retweet_count": 108, "retweeted_status": {"retweet_count": 108, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685370406581080065", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 400, "resize": "fit"}, "medium": {"w": 599, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 227, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", "type": "photo", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", "display_url": "pic.twitter.com/MSJj7LUpKi", "id_str": "685181863279865857", "expanded_url": "http://twitter.com/KevlinHenney/status/685370406581080065/photo/1", "id": 685181863279865857, "url": "https://t.co/MSJj7LUpKi"}], "symbols": [], "urls": [], "hashtags": [{"text": "RoyBatty", "indices": [16, 25]}, {"text": "InceptDate", "indices": [26, 37]}], "user_mentions": []}, "created_at": "Fri Jan 08 08:00:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685370406581080065, "text": "Happy Birthday!\n#RoyBatty #InceptDate https://t.co/MSJj7LUpKi", "coordinates": null, "retweeted": false, "favorite_count": 46, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685548261126615044", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 599, "h": 400, "resize": "fit"}, "medium": {"w": 599, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 227, "resize": "fit"}}, "source_status_id_str": "685370406581080065", "media_url": "http://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", "source_user_id_str": "47378354", "id_str": "685181863279865857", "id": 685181863279865857, "media_url_https": "https://pbs.twimg.com/media/CYJBRj9WMAEFfKY.jpg", "type": "photo", "indices": [56, 79], "source_status_id": 685370406581080065, "source_user_id": 47378354, "display_url": "pic.twitter.com/MSJj7LUpKi", "expanded_url": "http://twitter.com/KevlinHenney/status/685370406581080065/photo/1", "url": "https://t.co/MSJj7LUpKi"}], "symbols": [], "urls": [], "hashtags": [{"text": "RoyBatty", "indices": [34, 43]}, {"text": "InceptDate", "indices": [44, 55]}], "user_mentions": [{"screen_name": "KevlinHenney", "id_str": "47378354", "id": 47378354, "indices": [3, 16], "name": "Kevlin Henney"}]}, "created_at": "Fri Jan 08 19:46:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685548261126615044, "text": "RT @KevlinHenney: Happy Birthday!\n#RoyBatty #InceptDate https://t.co/MSJj7LUpKi", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16665197, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/59018302/PICT0019__1_.jpg", "statuses_count": 5490, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16665197/1397571102", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "50090898", "following": false, "friends_count": 153, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "developers.google.com", "url": "http://t.co/aBJokfscjb", "expanded_url": "http://developers.google.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486184704068943873/bhxzl6UL.png", "notifications": false, "profile_sidebar_fill_color": "E6E8EB", "profile_link_color": "4585F1", "geo_enabled": true, "followers_count": 1557420, "location": "", "screen_name": "googledevs", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 14753, "name": "Google Developers", "profile_use_background_image": true, "description": "News about and from Google developers.", "url": "http://t.co/aBJokfscjb", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/656606791694848000/wBjKn0ol_normal.png", "profile_background_color": "FFFFFF", "created_at": "Tue Jun 23 20:25:29 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656606791694848000/wBjKn0ol_normal.png", "favourites_count": 146, "status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685582433757097984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "goo.gl/Mf0ekM", "url": "https://t.co/WxPDxUxrrX", "expanded_url": "https://goo.gl/Mf0ekM", "indices": [120, 143]}], "hashtags": [{"text": "DevShow", "indices": [38, 46]}], "user_mentions": []}, "created_at": "Fri Jan 08 22:02:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685582433757097984, "text": "It's a new year & new episodes of #DevShow start up next week. Until then, catch up on all the holiday videos here: https://t.co/WxPDxUxrrX", "coordinates": null, "retweeted": false, "favorite_count": 24, "contributors": null, "source": "Sprinklr"}, "default_profile_image": false, "id": 50090898, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486184704068943873/bhxzl6UL.png", "statuses_count": 2795, "profile_banner_url": "https://pbs.twimg.com/profile_banners/50090898/1433269328", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13334762", "following": false, "friends_count": 174, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com", "url": "https://t.co/FoKGHcCyJJ", "expanded_url": "https://github.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4229589/header_bg.png", "notifications": false, "profile_sidebar_fill_color": "DDDDDD", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 762035, "location": "San Francisco, CA", "screen_name": "github", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 11785, "name": "GitHub", "profile_use_background_image": false, "description": "How people build software", "url": "https://t.co/FoKGHcCyJJ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ_normal.png", "profile_background_color": "EEEEEE", "created_at": "Mon Feb 11 04:41:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BBBBBB", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ_normal.png", "favourites_count": 155, "status": {"retweet_count": 361, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684204778277081089", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/blog/2094-new-\u2026", "url": "https://t.co/VJxg6og3kn", "expanded_url": "https://github.com/blog/2094-new-year-new-git-release?utm_source=twitter&utm_medium=social&utm_campaign=git-release-2.7", "indices": [27, 50]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 02:48:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684204778277081089, "text": "New Year, new Git release: https://t.co/VJxg6og3kn", "coordinates": null, "retweeted": false, "favorite_count": 335, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 13334762, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4229589/header_bg.png", "statuses_count": 3129, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13334762/1415719104", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1138959692", "following": false, "friends_count": 1391, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "docker.com", "url": "http://t.co/ZAMxePUASD", "expanded_url": "http://docker.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433033163481157632/I01VJL_c.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 106444, "location": "San Francisco, CA", "screen_name": "docker", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2318, "name": "Docker", "profile_use_background_image": true, "description": "Build, Ship, Run Distributed Apps #docker #containers #getcontained", "url": "http://t.co/ZAMxePUASD", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000124779041/fbbb494a7eef5f9278c6967b6072ca3e_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Feb 01 07:12:46 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000124779041/fbbb494a7eef5f9278c6967b6072ca3e_normal.png", "favourites_count": 1006, "status": {"in_reply_to_status_id": 685612798085222400, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "denriquezjr", "in_reply_to_user_id": 847973664, "in_reply_to_status_id_str": "685612798085222400", "in_reply_to_user_id_str": "847973664", "truncated": false, "id_str": "685613981122314240", "id": 685613981122314240, "text": "@denriquezjr we can't contain our excitement for #DockerCon 2016!!!! looking forward to seeing you there", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "DockerCon", "indices": [49, 59]}], "user_mentions": [{"screen_name": "denriquezjr", "id_str": "847973664", "id": 847973664, "indices": [0, 12], "name": "DJ Enriquez"}]}, "created_at": "Sat Jan 09 00:08:05 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1138959692, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433033163481157632/I01VJL_c.png", "statuses_count": 6685, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1138959692/1441316722", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "88982108", "following": false, "friends_count": 1399, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "puppetlabs.com", "url": "http://t.co/HJaLYypHcH", "expanded_url": "http://www.puppetlabs.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591989184/lmwkeegi8kpzwrvvvou4.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 59107, "location": "Portland, OR", "screen_name": "puppetlabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1242, "name": "Puppet Labs", "profile_use_background_image": true, "description": "The official Twitter account for Puppet Labs. Please use #puppetize for support and technical questions.", "url": "http://t.co/HJaLYypHcH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671480725183397888/rVs3Z9Df_normal.jpg", "profile_background_color": "1C1A37", "created_at": "Tue Nov 10 17:56:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671480725183397888/rVs3Z9Df_normal.jpg", "favourites_count": 676, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685499553340993536", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 373, "resize": "fit"}, "medium": {"w": 535, "h": 588, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 535, "h": 588, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNiNhEUAAAFWSu.png", "type": "photo", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/CYNiNhEUAAAFWSu.png", "display_url": "pic.twitter.com/gBshTiShCp", "id_str": "685499552644726784", "expanded_url": "http://twitter.com/puppetlabs/status/685499553340993536/photo/1", "id": 685499552644726784, "url": "https://t.co/gBshTiShCp"}], "symbols": [], "urls": [{"display_url": "bit.ly/1mGgJZf", "url": "https://t.co/rq56Z5oCvh", "expanded_url": "http://bit.ly/1mGgJZf", "indices": [87, 110]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:33:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685499553340993536, "text": "Try out Puppet\u2019s new application orchestration tools on the newest Puppet Learning VM: https://t.co/rq56Z5oCvh https://t.co/gBshTiShCp", "coordinates": null, "retweeted": false, "favorite_count": 12, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 88982108, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591989184/lmwkeegi8kpzwrvvvou4.jpeg", "statuses_count": 8956, "profile_banner_url": "https://pbs.twimg.com/profile_banners/88982108/1443714700", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "102048347", "following": false, "friends_count": 145, "entities": {"description": {"urls": [{"display_url": "foodfightshow.org", "url": "http://t.co/CYtSmshqpe", "expanded_url": "http://foodfightshow.org", "indices": [49, 71]}]}, "url": {"urls": [{"display_url": "devopsanywhere.blogspot.com", "url": "http://t.co/u3IPIe2By5", "expanded_url": "http://devopsanywhere.blogspot.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1150, "location": "Bangkok, Thailand", "screen_name": "bryanwb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 106, "name": "Bryan", "profile_use_background_image": true, "description": "Software developer, creator of the FoodFightShow http://t.co/CYtSmshqpe, python, ruby dev, golang gopher, wannabe scala developer, occasional idealist", "url": "http://t.co/u3IPIe2By5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/627834582/headshot_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Jan 05 12:33:21 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/627834582/headshot_normal.jpeg", "favourites_count": 14, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684952804339789825", "id": 684952804339789825, "text": "current status, relearning ReStructured Text for the nth time", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 04:20:49 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 102048347, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6119, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15685575", "following": false, "friends_count": 1441, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jezhumble.com", "url": "http://t.co/wrgO9VzrmY", "expanded_url": "http://jezhumble.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 19321, "location": "SF Bay Area, CA", "screen_name": "jezhumble", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 867, "name": "Jez Humble", "profile_use_background_image": true, "description": "Co-author of Continuous Delivery and Lean Enterprise, lecturer @BerkeleyISchool. I tweet on software, innovation, social & economic justice.", "url": "http://t.co/wrgO9VzrmY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456648820156162050/itxgcaBa_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Fri Aug 01 04:34:37 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456648820156162050/itxgcaBa_normal.jpeg", "favourites_count": 1009, "status": {"in_reply_to_status_id": 685007000481103872, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jezhumble", "in_reply_to_user_id": 15685575, "in_reply_to_status_id_str": "685007000481103872", "in_reply_to_user_id_str": "15685575", "truncated": false, "id_str": "685007432905547777", "id": 685007432905547777, "text": "@JohnWLewis they are two separate concerns: but product design and agile eng practices like TDD form a virtuous circle when done right", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JohnWLewis", "id_str": "13236772", "id": 13236772, "indices": [0, 11], "name": "John W Lewis"}]}, "created_at": "Thu Jan 07 07:57:53 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15685575, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 5054, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15685575/1398916432", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14086716", "following": false, "friends_count": 282, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "madstop.com", "url": "http://t.co/idy68PRdZA", "expanded_url": "http://madstop.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 7366, "location": "", "screen_name": "puppetmasterd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 446, "name": "Luke Kanies", "profile_use_background_image": true, "description": "Puppet author and recovering sysadmin", "url": "http://t.co/idy68PRdZA", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1276213644/luke-headshot_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Thu Mar 06 03:32:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1276213644/luke-headshot_normal.jpg", "favourites_count": 0, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685502228673630208", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/raganwald/stat\u2026", "url": "https://t.co/eTQKExApOR", "expanded_url": "https://twitter.com/raganwald/status/685501081091100672", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:44:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685502228673630208, "text": "If you\u2019re in need of a good laugh today\u2026 https://t.co/eTQKExApOR", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 14086716, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 16604, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "465742594", "following": false, "friends_count": 111, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "foodfightshow.org", "url": "http://t.co/PqkLKgczzH", "expanded_url": "http://www.foodfightshow.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554352230/foodfight_twitter.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "EC6A23", "geo_enabled": false, "followers_count": 2871, "location": "", "screen_name": "foodfightshow", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 132, "name": "foodfightshow", "profile_use_background_image": true, "description": "The Podcast where DevOps Engineers do Battle", "url": "http://t.co/PqkLKgczzH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2226334549/one_chef_normal.png", "profile_background_color": "000000", "created_at": "Mon Jan 16 17:54:44 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2226334549/one_chef_normal.png", "favourites_count": 101, "status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682355004183810049", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "foodfightshow.org/2015/12/chef-a\u2026", "url": "https://t.co/NnbMwItZ6b", "expanded_url": "http://foodfightshow.org/2015/12/chef-and-openstack.html", "indices": [118, 141]}], "hashtags": [{"text": "OpenStack", "indices": [64, 74]}], "user_mentions": [{"screen_name": "chef", "id_str": "16333852", "id": 16333852, "indices": [52, 57], "name": "Chef"}, {"screen_name": "filler", "id_str": "10076322", "id": 10076322, "indices": [80, 87], "name": "\u2728 Nick Silkey \u2728"}, {"screen_name": "scassiba", "id_str": "16456163", "id": 16456163, "indices": [89, 98], "name": "Samuel Cassiba"}, {"screen_name": "jjasghar", "id_str": "130963706", "id": 130963706, "indices": [106, 115], "name": "JJ Asghar"}]}, "created_at": "Thu Dec 31 00:18:05 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682355004183810049, "text": "Episode 96 is now available in the podcast stream. @chef & #OpenStack with @filler, @scassiba, & @jjasghar - https://t.co/NnbMwItZ6b", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 465742594, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554352230/foodfight_twitter.png", "statuses_count": 1082, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13378422", "following": false, "friends_count": 606, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kitchensoap.com", "url": "http://t.co/1LtrvGduhJ", "expanded_url": "http://www.kitchensoap.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 14349, "location": "Brooklyn", "screen_name": "allspaw", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 857, "name": "John Allspaw", "profile_use_background_image": true, "description": "CTO, Etsy. Dad. Author. Guitarist. Student of sociotechnical systems, human factors, and cognitive systems engineering.", "url": "http://t.co/1LtrvGduhJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000242066844/aa7ca1bd889fef6d8cedaa3f2b744861_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Feb 12 05:36:43 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000242066844/aa7ca1bd889fef6d8cedaa3f2b744861_normal.jpeg", "favourites_count": 3321, "status": {"in_reply_to_status_id": 685447933219725312, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jonlives", "in_reply_to_user_id": 13093162, "in_reply_to_status_id_str": "685447933219725312", "in_reply_to_user_id_str": "13093162", "truncated": false, "id_str": "685451419302887424", "id": 685451419302887424, "text": "@jonlives Come join @mcdonnps and I in our mechanical watch enthusiasm!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jonlives", "id_str": "13093162", "id": 13093162, "indices": [0, 9], "name": "Jon Cowie"}, {"screen_name": "mcdonnps", "id_str": "305899937", "id": 305899937, "indices": [20, 29], "name": "Patrick McDonnell"}]}, "created_at": "Fri Jan 08 13:22:08 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13378422, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 9728, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "23777840", "following": false, "friends_count": 749, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/lnxchk", "url": "https://t.co/JkNqgBhmtu", "expanded_url": "http://about.me/lnxchk", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2548, "location": "London, England", "screen_name": "lnxchk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 225, "name": "DevOp4StandingBy", "profile_use_background_image": true, "description": "Ready, Gold Leader | Click Button Get DevOps", "url": "https://t.co/JkNqgBhmtu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1313952205/newHairThumb_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Mar 11 15:28:01 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1313952205/newHairThumb_normal.jpg", "favourites_count": 3217, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685531490386444289", "id": 685531490386444289, "text": "OH: \u201cMom called me Ned. She didn\u2019t know that The Simpsons was going to come out and ruin my life\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:40:18 +0000 2016", "source": "TweetDeck", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 23777840, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10786, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23777840/1448838851", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "207840024", "following": false, "friends_count": 207, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "buildscientist.com", "url": "http://t.co/Ry08N6pyEb", "expanded_url": "http://www.buildscientist.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0090A3", "geo_enabled": false, "followers_count": 471, "location": "California", "screen_name": "buildscientist", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Youssuf ElKalay", "profile_use_background_image": false, "description": "Muslim, American, Scottish, Egyptian. Co-host @ShipShowPodcast. Senior Software Engineer @ServiceNow. My tweets do not represent my employer.", "url": "http://t.co/Ry08N6pyEb", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662369579113431040/kdSMagFO_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Oct 26 03:54:49 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662369579113431040/kdSMagFO_normal.jpg", "favourites_count": 200, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685330222158229504", "id": 685330222158229504, "text": "As much as giving into anger can make you feel good, it can never make you feel better", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 05:20:32 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685337246711468036", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Mataway", "id_str": "52475166", "id": 52475166, "indices": [3, 11], "name": "Matt Attaway"}]}, "created_at": "Fri Jan 08 05:48:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685337246711468036, "text": "RT @Mataway: As much as giving into anger can make you feel good, it can never make you feel better", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 207840024, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 9081, "profile_banner_url": "https://pbs.twimg.com/profile_banners/207840024/1400049840", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "2208083953", "following": false, "friends_count": 683, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "arresteddevops.com", "url": "http://t.co/joaHqjS5I7", "expanded_url": "http://arresteddevops.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2836, "location": "", "screen_name": "ArrestedDevOps", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 136, "name": "Arrested DevOps", "profile_use_background_image": true, "description": "There's always DevOps in the Banana Stand. Hosted by @mattstratton, @trevorghess, & @bridgetkromhout", "url": "http://t.co/joaHqjS5I7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/615009446322765824/XRtzbKLw_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Nov 22 01:05:20 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/615009446322765824/XRtzbKLw_normal.png", "favourites_count": 1341, "status": {"in_reply_to_status_id": 685539191363506176, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "RitaMailheau", "in_reply_to_user_id": 471993505, "in_reply_to_status_id_str": "685539191363506176", "in_reply_to_user_id_str": "471993505", "truncated": false, "id_str": "685547054555201536", "id": 685547054555201536, "text": "@RitaMailheau did you want a specific host from our show?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "RitaMailheau", "id_str": "471993505", "id": 471993505, "indices": [0, 13], "name": "Rita"}]}, "created_at": "Fri Jan 08 19:42:09 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2208083953, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1448, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2208083953/1422999081", "is_translator": false}, {"time_zone": "Melbourne", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "6031", "following": false, "friends_count": 995, "entities": {"description": {"urls": [{"display_url": "artofmonitoring.com", "url": "https://t.co/zUrMNMHWZ7", "expanded_url": "http://artofmonitoring.com", "indices": [114, 137]}]}, "url": {"urls": [{"display_url": "kartar.net", "url": "http://t.co/oNwoEGqRRJ", "expanded_url": "http://www.kartar.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 8675, "location": "Brooklyn and airport lounges", "screen_name": "kartar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 628, "name": "James Turnbull", "profile_use_background_image": true, "description": "Australian author, CTO @Kickstarter, Advisor @Docker. Likes tattoos, wine, and good food. The Art of Monitoring - https://t.co/zUrMNMHWZ7", "url": "http://t.co/oNwoEGqRRJ", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553179124454281217/vV3KfTsQ_normal.jpeg", "profile_background_color": "BADFCD", "created_at": "Thu Sep 14 01:31:47 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "F2E195", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179124454281217/vV3KfTsQ_normal.jpeg", "favourites_count": 28, "status": {"in_reply_to_status_id": 685443681608843264, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "bronte_saurus", "in_reply_to_user_id": 18622553, "in_reply_to_status_id_str": "685443681608843264", "in_reply_to_user_id_str": "18622553", "truncated": false, "id_str": "685446171280670720", "id": 685446171280670720, "text": "@bronte_saurus Yeah I meant the legal ones. :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "bronte_saurus", "id_str": "18622553", "id": 18622553, "indices": [0, 14], "name": "birthdaysaurus"}]}, "created_at": "Fri Jan 08 13:01:16 +0000 2016", "source": "Janetter Pro for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6031, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "statuses_count": 32178, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6031/1398207179", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "45573701", "following": false, "friends_count": 405, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 1805, "location": "Minneapolis", "screen_name": "sascha_d", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 122, "name": "Sascha", "profile_use_background_image": true, "description": "BrD (Doctor of Brattiness)", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1391497394/RH_only_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Mon Jun 08 14:18:36 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1391497394/RH_only_normal.jpg", "favourites_count": 525, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685523603127848960", "id": 685523603127848960, "text": "Bicyling, Rodale and Runner\u2019s World spam really making me regret purchasing my Runner\u2019s World sub.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:08:58 +0000 2016", "source": "TweetDeck", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 45573701, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 10543, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "809512", "following": false, "friends_count": 388, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "orionlabs.co", "url": "http://t.co/AqLxJSw2tK", "expanded_url": "http://www.orionlabs.co", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "1A1B1C", "geo_enabled": true, "followers_count": 8570, "location": "San Francisco, CA", "screen_name": "jesserobbins", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 497, "name": "Jesse Robbins", "profile_use_background_image": true, "description": "Founder of @OrionLabs, beautiful wearable devices to change the way people communicate. Previously founded @Chef & @VelocityConf. Firefighter/EMT & Adventurer.", "url": "http://t.co/AqLxJSw2tK", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/898516649/_MG_1334_2_normal.jpg", "profile_background_color": "022330", "created_at": "Sun Mar 04 02:57:24 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/898516649/_MG_1334_2_normal.jpg", "favourites_count": 460, "status": {"retweet_count": 16, "retweeted_status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684872737408434179", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "theverge.com/2016/1/6/10718\u2026", "url": "https://t.co/SpmaaOauOc", "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", "indices": [26, 49]}], "hashtags": [], "user_mentions": [{"screen_name": "CaseyNewton", "id_str": "69426451", "id": 69426451, "indices": [65, 77], "name": "Casey Newton"}, {"screen_name": "layer", "id_str": "1518024493", "id": 1518024493, "indices": [134, 140], "name": "Layer"}]}, "created_at": "Wed Jan 06 23:02:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684872737408434179, "text": "search for the killer bot https://t.co/SpmaaOauOc great piece by @CaseyNewton. eventually bots + messaging will be part of all apps. @Layer", "coordinates": null, "retweeted": false, "favorite_count": 25, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684884814218969088", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "theverge.com/2016/1/6/10718\u2026", "url": "https://t.co/SpmaaOauOc", "expanded_url": "http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m", "indices": [36, 59]}], "hashtags": [], "user_mentions": [{"screen_name": "RonP", "id_str": "785027", "id": 785027, "indices": [3, 8], "name": "Ron Palmeri"}, {"screen_name": "CaseyNewton", "id_str": "69426451", "id": 69426451, "indices": [75, 87], "name": "Casey Newton"}, {"screen_name": "layer", "id_str": "1518024493", "id": 1518024493, "indices": [139, 140], "name": "Layer"}]}, "created_at": "Wed Jan 06 23:50:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684884814218969088, "text": "RT @RonP: search for the killer bot https://t.co/SpmaaOauOc great piece by @CaseyNewton. eventually bots + messaging will be part of all ap\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 809512, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 4116, "profile_banner_url": "https://pbs.twimg.com/profile_banners/809512/1400563083", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "862224750", "following": false, "friends_count": 0, "entities": {"description": {"urls": [{"display_url": "hangops.com/sessions/", "url": "http://t.co/EOwiu1aAwR", "expanded_url": "http://www.hangops.com/sessions/", "indices": [96, 118]}]}, "url": {"urls": [{"display_url": "hangops.com", "url": "http://t.co/Lx9zm0oBLJ", "expanded_url": "http://www.hangops.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 2061, "location": "", "screen_name": "hangops", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 81, "name": "hangops", "profile_use_background_image": false, "description": "#hangops is awesome weekly discussions with the #devops community, via Google Hangouts and IRC. http://t.co/EOwiu1aAwR for past sessions. By @solarce", "url": "http://t.co/Lx9zm0oBLJ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2681580573/f520588ff7bf9eb9fe3416388ed76e75_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Oct 05 00:01:43 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2681580573/f520588ff7bf9eb9fe3416388ed76e75_normal.jpeg", "favourites_count": 69, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "646408217136762880", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "hangops.slack.com", "url": "http://t.co/Fb1ajYZfOA", "expanded_url": "http://hangops.slack.com", "indices": [0, 22]}, {"display_url": "github.com/rawdigits/wee-\u2026", "url": "https://t.co/dmmnnoordq", "expanded_url": "https://github.com/rawdigits/wee-slack#features", "indices": [83, 106]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Sep 22 19:38:23 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 646408217136762880, "text": "http://t.co/Fb1ajYZfOA now has the web API enabled for those of you wanting to use https://t.co/dmmnnoordq", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 862224750, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 688, "profile_banner_url": "https://pbs.twimg.com/profile_banners/862224750/1399731010", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "617421398", "following": false, "friends_count": 168, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theshipshow.com", "url": "http://t.co/lxkypXpOrH", "expanded_url": "http://theshipshow.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1123, "location": "The cloud", "screen_name": "ShipShowPodcast", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 68, "name": "The Ship Show", "profile_use_background_image": true, "description": "Build engineering, DevOps, release management. With @SoberBuildEng, @buildscientist, @eciramella, @cheeseplus, @sascha_d, @petecheslock, @SonOfGarr & @beerops", "url": "http://t.co/lxkypXpOrH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2487098853/4465djeq8bk0o8atyw71_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Jun 24 19:59:11 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2487098853/4465djeq8bk0o8atyw71_normal.png", "favourites_count": 59, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677600921661014016", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "theshipshow.com/59", "url": "https://t.co/UyQzFmCVFO", "expanded_url": "http://theshipshow.com/59", "indices": [90, 113]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 17 21:27:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677600921661014016, "text": "\"It doesn't really matter what we do behind the scenes if we deliver cr@# to customers.\"\n\nhttps://t.co/UyQzFmCVFO", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 617421398, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 666, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15782607", "following": false, "friends_count": 320, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "semicomplete.com", "url": "http://t.co/xNqnRweCSA", "expanded_url": "http://www.semicomplete.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 5868, "location": "Silicon Valley", "screen_name": "jordansissel", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 302, "name": "@jordansissel", "profile_use_background_image": true, "description": "Empathy-driven development. Consensual hugs are available. I yell at computers a lot.", "url": "http://t.co/xNqnRweCSA", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663866598831230976/MrGxbRBh_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Fri Aug 08 20:28:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663866598831230976/MrGxbRBh_normal.jpg", "favourites_count": 495, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685605145757929473", "id": 685605145757929473, "text": "I can't shutdown this machine via remote desktop, and I refuse to admit that I can walk over and hit the power button. #lazy", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "lazy", "indices": [119, 124]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:32:59 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15782607, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 33053, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15782607/1423683827", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "356447127", "following": false, "friends_count": 1167, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jpaulreed.com", "url": "https://t.co/fXjoS4z1wT", "expanded_url": "http://jpaulreed.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/314931142/sbe-t-bkgrnd.jpg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 2096, "location": "San Francisco, CA", "screen_name": "jpaulreed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 152, "name": "J. Paul Reed", "profile_use_background_image": true, "description": "Simply ship. Every time. Principal at Release Engineering Approaches; visiting scientist at @praxisflow; host of the @ShipShowPodcast.", "url": "https://t.co/fXjoS4z1wT", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/565476374723309568/IVYwceSG_normal.jpeg", "profile_background_color": "131516", "created_at": "Tue Aug 16 21:33:37 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/565476374723309568/IVYwceSG_normal.jpeg", "favourites_count": 3218, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685557570925244416", "id": 685557570925244416, "text": "\"I mean he's got a masters in compilers. You KNOW he's seen some shit...\" - @petecheslock", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "petecheslock", "id_str": "264481774", "id": 264481774, "indices": [76, 89], "name": "Pete Cheslock"}]}, "created_at": "Fri Jan 08 20:23:56 +0000 2016", "source": "TweetDeck", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 356447127, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/314931142/sbe-t-bkgrnd.jpg", "statuses_count": 10034, "profile_banner_url": "https://pbs.twimg.com/profile_banners/356447127/1435428064", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "42039840", "following": false, "friends_count": 1810, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hackygolucky.com", "url": "http://t.co/PAxs7FiRx8", "expanded_url": "http://hackygolucky.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121813986/af68e9e3d6fe92f4ee05a6c691b70906.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "3E2D57", "geo_enabled": true, "followers_count": 1936, "location": "NYC", "screen_name": "HackyGoLucky", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 107, "name": "Tracy", "profile_use_background_image": true, "description": "JS community catHerder, Web Engineer @urbanairship. Fighting my own small revolutions(trouble!). Inciting confidence in people one compliment at a time...", "url": "http://t.co/PAxs7FiRx8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/504692206829965312/sJiuqH_J_normal.jpeg", "profile_background_color": "022330", "created_at": "Sat May 23 15:04:27 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/504692206829965312/sJiuqH_J_normal.jpeg", "favourites_count": 7274, "status": {"in_reply_to_status_id": 685527140801101824, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "kosamari", "in_reply_to_user_id": 8470842, "in_reply_to_status_id_str": "685527140801101824", "in_reply_to_user_id_str": "8470842", "truncated": false, "id_str": "685573092727480321", "id": 685573092727480321, "text": "@kosamari I thought there are engineers at places like Facebook, maybe IBM?(don't quote me) whose sole job is things like the Linux kernel.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kosamari", "id_str": "8470842", "id": 8470842, "indices": [0, 9], "name": "Mariko Kosaka"}]}, "created_at": "Fri Jan 08 21:25:37 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 42039840, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121813986/af68e9e3d6fe92f4ee05a6c691b70906.jpeg", "statuses_count": 4524, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42039840/1405318288", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "109950516", "following": false, "friends_count": 928, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/pandafulmanda", "url": "https://t.co/z2zVcyDpqy", "expanded_url": "https://github.com/pandafulmanda", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "0099B9", "geo_enabled": true, "followers_count": 425, "location": "", "screen_name": "pandafulmanda", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Amanda Shih", "profile_use_background_image": true, "description": "", "url": "https://t.co/z2zVcyDpqy", "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/546906721554145280/6zxoznyM_normal.jpeg", "profile_background_color": "0099B9", "created_at": "Sat Jan 30 20:34:23 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/546906721554145280/6zxoznyM_normal.jpeg", "favourites_count": 270, "status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "621759022606221312", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "classes.codeparkhouston.com", "url": "http://t.co/wVXwebEKcU", "expanded_url": "http://classes.codeparkhouston.com/", "indices": [118, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "houstonlibrary", "id_str": "5862922", "id": 5862922, "indices": [60, 75], "name": "Houston Library"}, {"screen_name": "fileunderjeff", "id_str": "73465639", "id": 73465639, "indices": [91, 105], "name": "Jeff Reichman"}, {"screen_name": "Transition", "id_str": "14259159", "id": 14259159, "indices": [106, 117], "name": "Transition"}]}, "created_at": "Thu Jul 16 19:11:17 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 621759022606221312, "text": "Another round of free Coding in Minecraft classes for teens @houstonlibrary this Saturday! @fileunderjeff @Transition http://t.co/wVXwebEKcU", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 109950516, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 131, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "41926203", "following": false, "friends_count": 172, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "secondstory.com", "url": "http://t.co/CwqjPAv4X6", "expanded_url": "http://www.secondstory.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 141, "location": "Portland, Oregon", "screen_name": "dbrewerpdx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 7, "name": "David Brewer", "profile_use_background_image": true, "description": "Web Technology Lead at Second Story. Following web/mobile development, security, open source, history, museums and collections, and more.", "url": "http://t.co/CwqjPAv4X6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1230031852/5_thumb_normal.jpg", "profile_background_color": "131516", "created_at": "Fri May 22 23:27:16 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1230031852/5_thumb_normal.jpg", "favourites_count": 220, "status": {"retweet_count": 36214, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 36214, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "576036726046646272", "id": 576036726046646272, "text": "Terry took Death\u2019s arm and followed him through the doors and on to the black desert under the endless night.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Mar 12 15:07:12 +0000 2015", "source": "Twitter Web Client", "favorite_count": 21498, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "576091352733093888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "terryandrob", "id_str": "22477940", "id": 22477940, "indices": [3, 15], "name": "Terry Pratchett"}]}, "created_at": "Thu Mar 12 18:44:16 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 576091352733093888, "text": "RT @terryandrob: Terry took Death\u2019s arm and followed him through the doors and on to the black desert under the endless night.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 41926203, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1492, "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14586723", "following": false, "friends_count": 684, "entities": {"description": {"urls": [{"display_url": "twitter.com/jeffsussna/sta\u2026", "url": "https://t.co/NRBhIxWRkj", "expanded_url": "https://twitter.com/jeffsussna/status/627202142542041088?s=09", "indices": [0, 23]}]}, "url": {"urls": [{"display_url": "about.me/lusis", "url": "http://t.co/K7LVyopS5x", "expanded_url": "http://about.me/lusis", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/884215773/5ea824395da2cf19c1e8bcf943b50db2.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3845, "location": "\u00dcT: 34.010375,-84.367464", "screen_name": "lusis", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 301, "name": "elated-pig", "profile_use_background_image": true, "description": "https://t.co/NRBhIxWRkj", "url": "http://t.co/K7LVyopS5x", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/422582473331974144/xzes5qFM_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Tue Apr 29 16:16:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/422582473331974144/xzes5qFM_normal.jpeg", "favourites_count": 6670, "status": {"in_reply_to_status_id": 685580643070128128, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "flangy", "in_reply_to_user_id": 14209746, "in_reply_to_status_id_str": "685580643070128128", "in_reply_to_user_id_str": "14209746", "truncated": false, "id_str": "685582667786641410", "id": 685582667786641410, "text": "@flangy BUY MY DATABA...oh wait. I don't have anything to sell.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "flangy", "id_str": "14209746", "id": 14209746, "indices": [0, 7], "name": "2,016 #Content"}]}, "created_at": "Fri Jan 08 22:03:40 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14586723, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/884215773/5ea824395da2cf19c1e8bcf943b50db2.jpeg", "statuses_count": 51138, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14586723/1438371843", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "822284", "following": false, "friends_count": 96, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "solarce.org", "url": "https://t.co/JlvQwqMQ80", "expanded_url": "https://solarce.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "0099B9", "geo_enabled": true, "followers_count": 2701, "location": "Los Angeles, CA", "screen_name": "solarce", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 219, "name": "leader of cola", "profile_use_background_image": true, "description": "Ops Engineering, Infrastructure Manager at @travisci || webops, devops, unix, @hangops, and gifs || \u2728 RIP @lolcatstevens. Love you buddy. \u2728", "url": "https://t.co/JlvQwqMQ80", "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/637409714892967936/XXjCPWZj_normal.jpg", "profile_background_color": "0099B9", "created_at": "Thu Mar 08 16:55:54 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637409714892967936/XXjCPWZj_normal.jpg", "favourites_count": 24031, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685608754591711232", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "app.net", "url": "https://t.co/qtbj6wMFuz", "expanded_url": "http://app.net", "indices": [17, 40]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:47:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685608754591711232, "text": "Is peach the new https://t.co/qtbj6wMFuz?", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 822284, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 44034, "profile_banner_url": "https://pbs.twimg.com/profile_banners/822284/1440807638", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "264481774", "following": false, "friends_count": 502, "entities": {"description": {"urls": [{"display_url": "omg.pete.wtf/1bqAY", "url": "https://t.co/PTfL8GfXcY", "expanded_url": "http://omg.pete.wtf/1bqAY", "indices": [103, 126]}]}, "url": {"urls": [{"display_url": "pete.wtf", "url": "https://t.co/uyeoAVEs1J", "expanded_url": "https://pete.wtf", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/732697280/8e7fc630a628b76234408fa31c0a21c4.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2494, "location": "Boston, MA", "screen_name": "petecheslock", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 153, "name": "Pete Cheslock", "profile_use_background_image": true, "description": "Ceci n'est pas un @petechesbot. I computer at @threatstack. I also do @BosOps & @ShipShowPodcast. PGP: https://t.co/PTfL8GfXcY", "url": "https://t.co/uyeoAVEs1J", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/530791753830244352/8XeF4t-d_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Mar 12 00:10:18 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/530791753830244352/8XeF4t-d_normal.jpeg", "favourites_count": 4678, "status": {"in_reply_to_status_id": 685554188399460352, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ohlol", "in_reply_to_user_id": 15387262, "in_reply_to_status_id_str": "685554188399460352", "in_reply_to_user_id_str": "15387262", "truncated": false, "id_str": "685610690674057216", "id": 685610690674057216, "text": "@ohlol @richburroughs lmao", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ohlol", "id_str": "15387262", "id": 15387262, "indices": [0, 6], "name": "O(tires)"}, {"screen_name": "richburroughs", "id_str": "19552154", "id": 19552154, "indices": [7, 21], "name": "Rich Burroughs"}]}, "created_at": "Fri Jan 08 23:55:01 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "ht"}, "default_profile_image": false, "id": 264481774, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/732697280/8e7fc630a628b76234408fa31c0a21c4.jpeg", "statuses_count": 20535, "profile_banner_url": "https://pbs.twimg.com/profile_banners/264481774/1404067173", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14939200", "following": false, "friends_count": 419, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "seancribbs.com", "url": "https://t.co/Bs65kfFYL5", "expanded_url": "http://seancribbs.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "005C99", "geo_enabled": true, "followers_count": 3126, "location": "", "screen_name": "seancribbs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 257, "name": "Sean Cribbs", "profile_use_background_image": false, "description": "Husband, Cat Daddy, distsys geek, pedant", "url": "https://t.co/Bs65kfFYL5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564571026906828800/VWMqibpC_normal.jpeg", "profile_background_color": "131516", "created_at": "Thu May 29 00:27:51 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564571026906828800/VWMqibpC_normal.jpeg", "favourites_count": 28657, "status": {"retweet_count": 28, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 28, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685523664758898688", "id": 685523664758898688, "text": "\"Knowing how to program is not synonymous w/ understanding how technologies are entangled w/ power and meaning.\" @jenterysayers #MLA16 #s280", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "MLA16", "indices": [128, 134]}, {"text": "s280", "indices": [135, 140]}], "user_mentions": [{"screen_name": "jenterysayers", "id_str": "98890966", "id": 98890966, "indices": [113, 127], "name": "Jentery Sayers"}]}, "created_at": "Fri Jan 08 18:09:12 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 39, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685563282900422656", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "MLA16", "indices": [139, 140]}, {"text": "s280", "indices": [139, 140]}], "user_mentions": [{"screen_name": "Jessifer", "id_str": "11702102", "id": 11702102, "indices": [3, 12], "name": "Jesse Stommel"}, {"screen_name": "jenterysayers", "id_str": "98890966", "id": 98890966, "indices": [127, 140], "name": "Jentery Sayers"}]}, "created_at": "Fri Jan 08 20:46:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685563282900422656, "text": "RT @Jessifer: \"Knowing how to program is not synonymous w/ understanding how technologies are entangled w/ power and meaning.\" @jenterysaye\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14939200, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 36449, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14939200/1446405447", "is_translator": false}, {"time_zone": "Auckland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "13756082", "following": false, "friends_count": 671, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "heyrafael.com", "url": "https://t.co/ZVABFDWGXm", "expanded_url": "https://heyrafael.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1151, "location": "Auckland, New Zealand", "screen_name": "rafaelmagu", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 61, "name": "Rafael Fonseca", "profile_use_background_image": false, "description": "Lead #BreakOps Practitioner at @vendhq", "url": "https://t.co/ZVABFDWGXm", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678154954696237056/xPF3EVv-_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Feb 21 04:26:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678154954696237056/xPF3EVv-_normal.jpg", "favourites_count": 4019, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613477818429449", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "rnkpr.com/abudyju", "url": "https://t.co/H59tJXn4L8", "expanded_url": "http://rnkpr.com/abudyju", "indices": [60, 83]}], "hashtags": [{"text": "Runkeeper", "indices": [84, 94]}], "user_mentions": []}, "created_at": "Sat Jan 09 00:06:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613477818429449, "text": "Just completed a 1.42 km walk with Runkeeper. Check it out! https://t.co/H59tJXn4L8 #Runkeeper", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Runkeeper"}, "default_profile_image": false, "id": 13756082, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 92742, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13756082/1432813367", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "23967168", "following": false, "friends_count": 295, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thejoyofcode.com", "url": "https://t.co/FTsNoR2BNt", "expanded_url": "http://www.thejoyofcode.com/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3367, "location": "Redmond, WA", "screen_name": "joshtwist", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 138, "name": "Josh Twist", "profile_use_background_image": true, "description": "Product Management @Auth0 - making identity simple for developers. Ex-Microsoft Azure PM. Brit in the US; accent takes all the credit.", "url": "https://t.co/FTsNoR2BNt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2580020739/54byw9ppnr5yyj4d1tnd_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 12 15:26:43 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2580020739/54byw9ppnr5yyj4d1tnd_normal.jpeg", "favourites_count": 206, "status": {"retweet_count": 437, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 437, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685297500689829888", "id": 685297500689829888, "text": "App that recognizes your phone is falling and likely to get cracked and auto purchases insurance instantly prior to impact.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 03:10:31 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 898, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685298157073248258", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BoredElonMusk", "id_str": "1666038950", "id": 1666038950, "indices": [3, 17], "name": "Bored Elon Musk"}]}, "created_at": "Fri Jan 08 03:13:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685298157073248258, "text": "RT @BoredElonMusk: App that recognizes your phone is falling and likely to get cracked and auto purchases insurance instantly prior to impa\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 23967168, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6175, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23967168/1447243606", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14061017", "following": false, "friends_count": 844, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "geekafterfive.com", "url": "https://t.co/5ooybAQSUP", "expanded_url": "http://geekafterfive.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1585, "location": "Flower Mound, TX", "screen_name": "jakerobinson", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 104, "name": "\u281a\u2801\u2805\u2811\u2817\u2815\u2803\u280a\u281d\u280e\u2815\u281d", "profile_use_background_image": true, "description": "Level 12 DevOps Rogue - Project Zombie @vmware", "url": "https://t.co/5ooybAQSUP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671904209004965888/M5bwd2NZ_normal.jpg", "profile_background_color": "022330", "created_at": "Fri Feb 29 17:53:34 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671904209004965888/M5bwd2NZ_normal.jpg", "favourites_count": 4963, "status": {"retweet_count": 13, "retweeted_status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685508609254506496", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/UoEN4sD5WW", "url": "https://t.co/UoEN4sD5WW", "expanded_url": "http://twitter.com/ascendantlogic/status/685508609254506496/photo/1", "indices": [20, 43]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:09:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685508609254506496, "text": "feels like ops work https://t.co/UoEN4sD5WW", "coordinates": null, "retweeted": false, "favorite_count": 16, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685516326329188353", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/UoEN4sD5WW", "url": "https://t.co/UoEN4sD5WW", "expanded_url": "http://twitter.com/ascendantlogic/status/685508609254506496/photo/1", "indices": [40, 63]}], "hashtags": [], "user_mentions": [{"screen_name": "ascendantlogic", "id_str": "15544659", "id": 15544659, "indices": [3, 18], "name": "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35 \u253b\u2501\u253b"}]}, "created_at": "Fri Jan 08 17:40:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685516326329188353, "text": "RT @ascendantlogic: feels like ops work https://t.co/UoEN4sD5WW", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14061017, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 13931, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14061017/1401767927", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6386722", "following": false, "friends_count": 285, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18101581/IMG_0263.JPG", "notifications": false, "profile_sidebar_fill_color": "4092B8", "profile_link_color": "072778", "geo_enabled": true, "followers_count": 139, "location": "San Antonio, TX", "screen_name": "t8r", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Daniel Bel Biv Defoe", "profile_use_background_image": true, "description": "It's a new artform, showing people how little we care.\n\nAlabamian, Georgian, Texian, a being composed of pure energy and BBQ.", "url": null, "profile_text_color": "000308", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/469334450128433152/xK6VV0O2_normal.jpeg", "profile_background_color": "252533", "created_at": "Mon May 28 14:41:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469334450128433152/xK6VV0O2_normal.jpeg", "favourites_count": 55, "status": {"retweet_count": 5, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 5, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "668879651037646849", "id": 668879651037646849, "text": "All I can surmise from my Twitter feed right now is that:\n\n1. Slack is down\n2. Slack is making motherfuckin' monayyyyy", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Nov 23 19:51:50 +0000 2015", "source": "Twitter Web Client", "favorite_count": 10, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "668888540017594369", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "maddox", "id_str": "750823", "id": 750823, "indices": [3, 10], "name": "Jon Maddox"}]}, "created_at": "Mon Nov 23 20:27:09 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 668888540017594369, "text": "RT @maddox: All I can surmise from my Twitter feed right now is that:\n\n1. Slack is down\n2. Slack is making motherfuckin' monayyyyy", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 6386722, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18101581/IMG_0263.JPG", "statuses_count": 716, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "3519791", "following": false, "friends_count": 93, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 56, "location": "Haddon Heights, NJ", "screen_name": "seangrieve", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Sean Grieve", "profile_use_background_image": true, "description": "Principal Software Engineer at Digitas Health in Philadelphia.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2606538021/55vefb1nbuosjac2i1vs_normal.gif", "profile_background_color": "9AE4E8", "created_at": "Thu Apr 05 13:47:12 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2606538021/55vefb1nbuosjac2i1vs_normal.gif", "favourites_count": 68, "status": {"retweet_count": 221, "retweeted_status": {"retweet_count": 221, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683201788334313474", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 255, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 450, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", "type": "photo", "indices": [14, 37], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", "display_url": "pic.twitter.com/6Cio8EyB9E", "id_str": "683201676484870144", "expanded_url": "http://twitter.com/damienkatz/status/683201788334313474/video/1", "id": 683201676484870144, "url": "https://t.co/6Cio8EyB9E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 02 08:22:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683201788334313474, "text": "\"son of a...\" https://t.co/6Cio8EyB9E", "coordinates": null, "retweeted": false, "favorite_count": 215, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683392657993953280", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 255, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 450, "resize": "fit"}}, "source_status_id_str": "683201788334313474", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", "source_user_id_str": "77827772", "id_str": "683201676484870144", "id": 683201676484870144, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683201676484870144/pu/img/6Eo37WESV9YwrWsB.jpg", "type": "photo", "indices": [30, 53], "source_status_id": 683201788334313474, "source_user_id": 77827772, "display_url": "pic.twitter.com/6Cio8EyB9E", "expanded_url": "http://twitter.com/damienkatz/status/683201788334313474/video/1", "url": "https://t.co/6Cio8EyB9E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "damienkatz", "id_str": "77827772", "id": 77827772, "indices": [3, 14], "name": "hashtagdamienkatz"}]}, "created_at": "Sat Jan 02 21:01:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683392657993953280, "text": "RT @damienkatz: \"son of a...\" https://t.co/6Cio8EyB9E", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 3519791, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 349, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": false, "description": "i keep the big number spinning and in my spare time i am sad. music over at @leftfold, sometimes. married to @tina2moons.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "7280452", "profile_image_url": "http://pbs.twimg.com/profile_images/663553425196474369/Ulo6xLzy_normal.jpg", "friends_count": 665, "entities": {"description": {"urls": []}}, "profile_background_color": "D1DAEB", "created_at": "Fri Jul 06 01:50:49 +0000 2007", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "3E4E61", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 19006, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/663553425196474369/Ulo6xLzy_normal.jpg", "favourites_count": 63442, "listed_count": 6, "geo_enabled": true, "follow_request_sent": false, "followers_count": 253, "following": false, "default_profile_image": false, "id": 7280452, "blocked_by": false, "name": "something important", "location": "Watertown, MA", "screen_name": "decklin", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5693282", "following": false, "friends_count": 251, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "amblin.io", "url": "https://t.co/ej9BXSk4C7", "expanded_url": "https://amblin.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 363, "location": "Charleston, SC", "screen_name": "amblin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Matthew Gregg", "profile_use_background_image": false, "description": "Sharks!", "url": "https://t.co/ej9BXSk4C7", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675397943546028033/2rzp8ZSK_normal.jpg", "profile_background_color": "FDFDFD", "created_at": "Tue May 01 19:59:12 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675397943546028033/2rzp8ZSK_normal.jpg", "favourites_count": 2215, "status": {"in_reply_to_status_id": 685500171900317696, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/3b98b02fba3f9753.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-84.32187, 33.752879], [-75.40012, 33.752879], [-75.40012, 36.588118], [-84.32187, 36.588118]]], "type": "Polygon"}, "full_name": "North Carolina, USA", "contained_within": [], "country_code": "US", "id": "3b98b02fba3f9753", "name": "North Carolina"}, "in_reply_to_screen_name": "shortxstack", "in_reply_to_user_id": 8094902, "in_reply_to_status_id_str": "685500171900317696", "in_reply_to_user_id_str": "8094902", "truncated": false, "id_str": "685575652582551552", "id": 685575652582551552, "text": "@shortxstack Good luck with that.", "geo": {"coordinates": [35.4263958, -83.0871535], "type": "Point"}, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "shortxstack", "id_str": "8094902", "id": 8094902, "indices": [0, 12], "name": "Whitney Champion"}]}, "created_at": "Fri Jan 08 21:35:47 +0000 2016", "source": "Fenix for Android", "favorite_count": 1, "favorited": false, "coordinates": {"coordinates": [-83.0871535, 35.4263958], "type": "Point"}, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5693282, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8006, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5693282/1447632413", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "7693892", "following": false, "friends_count": 179, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 46, "location": "New York, NY", "screen_name": "greggian", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "greggian", "profile_use_background_image": true, "description": "Computer Enginerd", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1268590618/eightbit-f0b3028b-8d9a-495c-b40e-4997758ca6b4_normal.png", "profile_background_color": "ACDED6", "created_at": "Tue Jul 24 20:19:29 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268590618/eightbit-f0b3028b-8d9a-495c-b40e-4997758ca6b4_normal.png", "favourites_count": 152, "status": {"retweet_count": 204, "retweeted_status": {"retweet_count": 204, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "670818411476291584", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 149, "resize": "fit"}, "large": {"w": 1024, "h": 451, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 264, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", "type": "photo", "indices": [84, 107], "media_url": "http://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", "display_url": "pic.twitter.com/TdOEFjCSHZ", "id_str": "670818410016538624", "expanded_url": "http://twitter.com/mattcutts/status/670818411476291584/photo/1", "id": 670818410016538624, "url": "https://t.co/TdOEFjCSHZ"}], "symbols": [], "urls": [{"display_url": "buzzfeed.com/sarahmathews/h\u2026", "url": "https://t.co/b5aAcBpo2x", "expanded_url": "http://www.buzzfeed.com/sarahmathews/how-to-get-your-green-card-in-america#.taAVLxo5Y", "indices": [22, 45]}], "hashtags": [], "user_mentions": []}, "created_at": "Sun Nov 29 04:15:47 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 670818411476291584, "text": "An immigrant's story: https://t.co/b5aAcBpo2x\n\nIt's a really good (important) read. https://t.co/TdOEFjCSHZ", "coordinates": null, "retweeted": false, "favorite_count": 261, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "670833853431422976", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 149, "resize": "fit"}, "large": {"w": 1024, "h": 451, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 264, "resize": "fit"}}, "source_status_id_str": "670818411476291584", "media_url": "http://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", "source_user_id_str": "3080761", "id_str": "670818410016538624", "id": 670818410016538624, "media_url_https": "https://pbs.twimg.com/media/CU85yi3UAAAXi6x.png", "type": "photo", "indices": [99, 122], "source_status_id": 670818411476291584, "source_user_id": 3080761, "display_url": "pic.twitter.com/TdOEFjCSHZ", "expanded_url": "http://twitter.com/mattcutts/status/670818411476291584/photo/1", "url": "https://t.co/TdOEFjCSHZ"}], "symbols": [], "urls": [{"display_url": "buzzfeed.com/sarahmathews/h\u2026", "url": "https://t.co/b5aAcBpo2x", "expanded_url": "http://www.buzzfeed.com/sarahmathews/how-to-get-your-green-card-in-america#.taAVLxo5Y", "indices": [37, 60]}], "hashtags": [], "user_mentions": [{"screen_name": "mattcutts", "id_str": "3080761", "id": 3080761, "indices": [3, 13], "name": "Matt Cutts"}]}, "created_at": "Sun Nov 29 05:17:08 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 670833853431422976, "text": "RT @mattcutts: An immigrant's story: https://t.co/b5aAcBpo2x\n\nIt's a really good (important) read. https://t.co/TdOEFjCSHZ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 7693892, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 441, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5746882", "following": false, "friends_count": 6134, "entities": {"description": {"urls": [{"display_url": "openhumans.org", "url": "https://t.co/ycsix8FQSf", "expanded_url": "http://openhumans.org", "indices": [91, 114]}]}, "url": {"urls": [{"display_url": "beaugunderson.com", "url": "https://t.co/de9VPgyMpj", "expanded_url": "https://beaugunderson.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", "notifications": false, "profile_sidebar_fill_color": "F5F5F5", "profile_link_color": "2D2823", "geo_enabled": true, "followers_count": 7380, "location": "Seattle, WA", "screen_name": "beaugunderson", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 175, "name": "new beauginnings", "profile_use_background_image": true, "description": "feminist, feeling-haver, net art maker, #botALLY \u2665 javascript & python \u26a1\ufe0f pronouns: he/him https://t.co/ycsix8FQSf", "url": "https://t.co/de9VPgyMpj", "profile_text_color": "273633", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", "profile_background_color": "204443", "created_at": "Thu May 03 17:46:35 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "1A3230", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", "favourites_count": 16157, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685605086504996864", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/nerdgarbagebot\u2026", "url": "https://t.co/4kDdEz0rci", "expanded_url": "https://twitter.com/nerdgarbagebot/status/685600694389309440", "indices": [53, 76]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:32:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685605086504996864, "text": "not gonna lie i'd watch this if it came to key arena https://t.co/4kDdEz0rci", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 5746882, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", "statuses_count": 14389, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5746882/1398198050", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "185682669", "following": false, "friends_count": 188, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jeremydove.WordPress.com", "url": "http://t.co/09i6MGDXMz", "expanded_url": "http://jeremydove.WordPress.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 29, "location": "Web", "screen_name": "dovejeremy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Jeremy Dove", "profile_use_background_image": true, "description": "", "url": "http://t.co/09i6MGDXMz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1796590654/DADD6983-561F-4E42-A57D-8CA98C0B5285_normal", "profile_background_color": "131516", "created_at": "Wed Sep 01 15:46:02 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1796590654/DADD6983-561F-4E42-A57D-8CA98C0B5285_normal", "favourites_count": 18, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "unread_app", "in_reply_to_user_id": 1616252148, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "1616252148", "truncated": false, "id_str": "595026850016923648", "id": 595026850016923648, "text": "@unread_app is there any way to add a new feed with the app?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "unread_app", "id_str": "1616252148", "id": 1616252148, "indices": [0, 11], "name": "Unread"}]}, "created_at": "Mon May 04 00:47:10 +0000 2015", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 185682669, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 401, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14127311", "following": false, "friends_count": 157, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/gwoo", "url": "http://t.co/ZzcXX4NxLe", "expanded_url": "http://github.com/gwoo", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/47979086/twitter-bg.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "029CD4", "geo_enabled": true, "followers_count": 1077, "location": "Venice, CA", "screen_name": "gwoo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 121, "name": "gwoo", "profile_use_background_image": true, "description": "Likes building things.", "url": "http://t.co/ZzcXX4NxLe", "profile_text_color": "080808", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/76190782/Picture_4_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Mar 11 20:55:23 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/76190782/Picture_4_normal.jpg", "favourites_count": 25, "status": {"retweet_count": 0, "in_reply_to_user_id": 13799152, "possibly_sensitive": false, "id_str": "598902558845964288", "in_reply_to_user_id_str": "13799152", "entities": {"symbols": [], "urls": [{"display_url": "aphyr.com/tags/jepsen", "url": "https://t.co/46Sufv0orQ", "expanded_url": "https://aphyr.com/tags/jepsen", "indices": [8, 31]}], "hashtags": [], "user_mentions": [{"screen_name": "phishy", "id_str": "13799152", "id": 13799152, "indices": [0, 7], "name": "Jeff Loiselle"}]}, "created_at": "Thu May 14 17:27:51 +0000 2015", "favorited": false, "in_reply_to_status_id": 598854227423821824, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": "phishy", "in_reply_to_status_id_str": "598854227423821824", "truncated": false, "id": 598902558845964288, "text": "@phishy https://t.co/46Sufv0orQ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 14127311, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/47979086/twitter-bg.png", "statuses_count": 2698, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16388864", "following": false, "friends_count": 353, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/sixty4k", "url": "http://t.co/ETlIgYv3ja", "expanded_url": "http://about.me/sixty4k", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 390, "location": "iPhone: 42.247345,-122.777405", "screen_name": "sixty4k", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 23, "name": "My Name is Mike", "profile_use_background_image": true, "description": "Internet janitor. Music collector/dj. Well meaning jerk. I devops the kanban of your agile lean.", "url": "http://t.co/ETlIgYv3ja", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3140107376/eda338219ad74533f0c7fcec945ec7ac_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Sun Sep 21 08:31:04 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3140107376/eda338219ad74533f0c7fcec945ec7ac_normal.jpeg", "favourites_count": 3183, "status": {"in_reply_to_status_id": 685562636746895360, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "philiph", "in_reply_to_user_id": 31693, "in_reply_to_status_id_str": "685562636746895360", "in_reply_to_user_id_str": "31693", "truncated": false, "id_str": "685569787116826627", "id": 685569787116826627, "text": "@philiph FreeBSD? ooohhhhh, BeOS!? but srsly, get an SSD.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "philiph", "id_str": "31693", "id": 31693, "indices": [0, 8], "name": "Philip J. Hollenback"}]}, "created_at": "Fri Jan 08 21:12:29 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16388864, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 8364, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16388864/1419747240", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2788841", "following": false, "friends_count": 1338, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gRegorLove.com", "url": "http://t.co/pM0DwbswIl", "expanded_url": "http://gRegorLove.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138274533/SVWXap2U.png", "notifications": false, "profile_sidebar_fill_color": "E3E8FF", "profile_link_color": "E00000", "geo_enabled": true, "followers_count": 1062, "location": "Bellingham, WA", "screen_name": "gRegorLove", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 75, "name": "gRegor Morrill", "profile_use_background_image": false, "description": "music, faith, computer geekery, friends, liberty", "url": "http://t.co/pM0DwbswIl", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/421355267800846336/9KjkIhvZ_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Thu Mar 29 04:43:14 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/421355267800846336/9KjkIhvZ_normal.jpeg", "favourites_count": 22100, "status": {"in_reply_to_status_id": 685490719482626048, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "indiana_mama", "in_reply_to_user_id": 121468302, "in_reply_to_status_id_str": "685490719482626048", "in_reply_to_user_id_str": "121468302", "truncated": false, "id_str": "685569803935821825", "id": 685569803935821825, "text": "@indiana_mama Probably after I finish _To Kill a Mockingbird_ and _Go Set a Watchman_.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "indiana_mama", "id_str": "121468302", "id": 121468302, "indices": [0, 13], "name": "Isha"}]}, "created_at": "Fri Jan 08 21:12:33 +0000 2016", "source": "Bridgy", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2788841, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138274533/SVWXap2U.png", "statuses_count": 47029, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2788841/1357663506", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6964862", "following": false, "friends_count": 420, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/zerohalo", "url": "https://t.co/jZZxidwL7w", "expanded_url": "http://about.me/zerohalo", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 207, "location": "Cambridge, Massachusetts", "screen_name": "zerohalo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "Alan Graham", "profile_use_background_image": true, "description": "Just a geek that occasionally gets creative.", "url": "https://t.co/jZZxidwL7w", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667085904796848128/yeFFAx6r_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Jun 20 12:44:06 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667085904796848128/yeFFAx6r_normal.jpg", "favourites_count": 138, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682788358653882368", "id": 682788358653882368, "text": "Happy New Year!!!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 01 05:00:04 +0000 2016", "source": "IFTTT", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6964862, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 180, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11437862", "following": false, "friends_count": 469, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brianlyttle.com", "url": "https://t.co/ZLWdFllNPJ", "expanded_url": "http://www.brianlyttle.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/214582547/blgrid.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "3958F5", "geo_enabled": false, "followers_count": 342, "location": "Deep backwards square leg", "screen_name": "brianly", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Brian Lyttle", "profile_use_background_image": true, "description": "Cloud Therapist at Yammer. Northern Ireland to Philadelphia via Manchester. Husband. C# and Python hacker. Photographer. Cyclist. Scuba. MUFC.", "url": "https://t.co/ZLWdFllNPJ", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662301402337820672/npI4RiZD_normal.jpg", "profile_background_color": "352726", "created_at": "Sat Dec 22 19:09:45 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662301402337820672/npI4RiZD_normal.jpg", "favourites_count": 319, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684531072105865217", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "qz.com/584874/you-pro\u2026", "url": "https://t.co/QzpPweizjx", "expanded_url": "http://qz.com/584874/you-probably-know-to-ask-yourself-what-do-i-want-heres-a-way-better-question/", "indices": [82, 105]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 00:25:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684531072105865217, "text": "You probably know to ask yourself, \u201cWhat do I want?\u201d Here\u2019s a way better question https://t.co/QzpPweizjx", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 11437862, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/214582547/blgrid.gif", "statuses_count": 1676, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11437862/1400990669", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "20182605", "following": false, "friends_count": 367, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joedoyle.us", "url": "http://t.co/bKxUjxFrF0", "expanded_url": "http://joedoyle.us/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 202, "location": "Oakland, CA", "screen_name": "JoeDoyle23", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Joe Doyle", "profile_use_background_image": false, "description": "I love to Node and JavaScript. Brewer of beer and raiser of children. And other stuff. Head of Server @app_press", "url": "http://t.co/bKxUjxFrF0", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/651126158143033344/n1qRgpfr_normal.png", "profile_background_color": "000000", "created_at": "Thu Feb 05 20:16:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651126158143033344/n1qRgpfr_normal.png", "favourites_count": 88, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685298883170177024", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 271, "resize": "fit"}, "medium": {"w": 600, "h": 478, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 817, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", "type": "photo", "indices": [62, 85], "media_url": "http://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", "display_url": "pic.twitter.com/PuR6RHNjVD", "id_str": "685298879047188481", "expanded_url": "http://twitter.com/sfnode/status/685298883170177024/photo/1", "id": 685298879047188481, "url": "https://t.co/PuR6RHNjVD"}], "symbols": [], "urls": [], "hashtags": [{"text": "SFNode", "indices": [45, 52]}, {"text": "nodejs", "indices": [54, 61]}], "user_mentions": [{"screen_name": "MuleSoft", "id_str": "15358364", "id": 15358364, "indices": [11, 20], "name": "MuleSoft"}]}, "created_at": "Fri Jan 08 03:16:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685298883170177024, "text": "Thank you, @MuleSoft for hosting the January #SFNode. #nodejs https://t.co/PuR6RHNjVD", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685300256796360705", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 271, "resize": "fit"}, "medium": {"w": 600, "h": 478, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 817, "resize": "fit"}}, "source_status_id_str": "685298883170177024", "media_url": "http://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", "source_user_id_str": "2800676574", "id_str": "685298879047188481", "id": 685298879047188481, "media_url_https": "https://pbs.twimg.com/media/CYKrsxqUwAEfW7m.jpg", "type": "photo", "indices": [74, 97], "source_status_id": 685298883170177024, "source_user_id": 2800676574, "display_url": "pic.twitter.com/PuR6RHNjVD", "expanded_url": "http://twitter.com/sfnode/status/685298883170177024/photo/1", "url": "https://t.co/PuR6RHNjVD"}], "symbols": [], "urls": [], "hashtags": [{"text": "SFNode", "indices": [57, 64]}, {"text": "nodejs", "indices": [66, 73]}], "user_mentions": [{"screen_name": "sfnode", "id_str": "2800676574", "id": 2800676574, "indices": [3, 10], "name": "SFNode"}, {"screen_name": "MuleSoft", "id_str": "15358364", "id": 15358364, "indices": [23, 32], "name": "MuleSoft"}]}, "created_at": "Fri Jan 08 03:21:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685300256796360705, "text": "RT @sfnode: Thank you, @MuleSoft for hosting the January #SFNode. #nodejs https://t.co/PuR6RHNjVD", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 20182605, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 843, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20182605/1444075879", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14828394", "following": false, "friends_count": 368, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ramimassoud.com", "url": "http://t.co/GrPTeAGqdy", "expanded_url": "http://www.ramimassoud.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 444, "location": "Brooklyn, NY", "screen_name": "ramimassoud", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "Rami Massoud", "profile_use_background_image": true, "description": "Software Engineer @ Blue Apron, amateur sys admin, tinkerer, weightlifter, wannabe personal trainer, Android & Google fanboy, a man with far too many interests.", "url": "http://t.co/GrPTeAGqdy", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/534064169327558656/aCkK3-tV_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Mon May 19 04:11:47 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534064169327558656/aCkK3-tV_normal.jpeg", "favourites_count": 83, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684789080660537348", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swarmapp.com/c/41APiX0kUEA", "url": "https://t.co/BplvNzMSqr", "expanded_url": "https://www.swarmapp.com/c/41APiX0kUEA", "indices": [64, 87]}], "hashtags": [], "user_mentions": [{"screen_name": "BrinkleysNYC", "id_str": "521470746", "id": 521470746, "indices": [34, 47], "name": "Brinkley's "}]}, "created_at": "Wed Jan 06 17:30:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [40.7209972, -73.99769172], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.026675, 40.683935], [-73.910408, 40.683935], [-73.910408, 40.877483], [-74.026675, 40.877483]]], "type": "Polygon"}, "full_name": "Manhattan, NY", "contained_within": [], "country_code": "US", "id": "01a9a39529b27f36", "name": "Manhattan"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684789080660537348, "text": "I'm at Brinkley's Broome Street - @brinkleysnyc in New York, NY https://t.co/BplvNzMSqr", "coordinates": {"coordinates": [-73.99769172, 40.7209972], "type": "Point"}, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Foursquare"}, "default_profile_image": false, "id": 14828394, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 10713, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14828394/1416165880", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "3058771", "following": false, "friends_count": 1126, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "laurathomson.com", "url": "http://t.co/wAR61EciPl", "expanded_url": "http://www.laurathomson.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 5049, "location": "New Windsor, MD", "screen_name": "lxt", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 490, "name": "Laura Thomson", "profile_use_background_image": false, "description": "Director of Cloud Services Engineering & Operations at Mozilla; lives on farm with horses; author of tech books and a novel; mum of 5yo. Also: Australian.", "url": "http://t.co/wAR61EciPl", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/34583482/laura_tinker_normal.jpg", "profile_background_color": "784C4C", "created_at": "Sat Mar 31 12:41:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/34583482/laura_tinker_normal.jpg", "favourites_count": 4943, "status": {"retweet_count": 26, "retweeted_status": {"retweet_count": 26, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684823328033517568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/c4HJ6If6IA", "url": "https://t.co/c4HJ6If6IA", "expanded_url": "http://twitter.com/EightSexyLegs/status/684823328033517568/photo/1", "indices": [8, 31]}], "hashtags": [{"text": "WTFWed", "indices": [0, 7]}], "user_mentions": []}, "created_at": "Wed Jan 06 19:46:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684823328033517568, "text": "#WTFWed https://t.co/c4HJ6If6IA", "coordinates": null, "retweeted": false, "favorite_count": 37, "contributors": null, "source": "Twitter for iPad"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685276347875209216", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/c4HJ6If6IA", "url": "https://t.co/c4HJ6If6IA", "expanded_url": "http://twitter.com/EightSexyLegs/status/684823328033517568/photo/1", "indices": [27, 50]}], "hashtags": [{"text": "WTFWed", "indices": [19, 26]}], "user_mentions": [{"screen_name": "EightSexyLegs", "id_str": "2792800220", "id": 2792800220, "indices": [3, 17], "name": "Lady Lovecraft"}]}, "created_at": "Fri Jan 08 01:46:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685276347875209216, "text": "RT @EightSexyLegs: #WTFWed https://t.co/c4HJ6If6IA", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 3058771, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 11218, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3058771/1398196148", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "95265455", "following": false, "friends_count": 581, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/mixdown", "url": "http://t.co/cfUQCzqHGU", "expanded_url": "http://www.github.com/mixdown", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 367, "location": "Austin, TX", "screen_name": "tommymessbauer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Tommy Messbauer", "profile_use_background_image": true, "description": "JavaScript, Neo4j, Tacos. CTO at CBANC Network. Austin, TX.", "url": "http://t.co/cfUQCzqHGU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/585634870916952066/-nE4XAJg_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 07 19:41:46 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585634870916952066/-nE4XAJg_normal.jpg", "favourites_count": 164, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683857944601952258", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/EmrgencyKitten\u2026", "url": "https://t.co/xjKNLuKWU2", "expanded_url": "https://twitter.com/EmrgencyKittens/status/683845387631902722", "indices": [31, 54]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 03:50:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683857944601952258, "text": "Is like 1 of everything please https://t.co/xjKNLuKWU2", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 95265455, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1245, "profile_banner_url": "https://pbs.twimg.com/profile_banners/95265455/1421289194", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "107069240", "following": false, "friends_count": 2466, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/neillink", "url": "https://t.co/TrqIrP1Pqr", "expanded_url": "https://www.linkedin.com/in/neillink", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078007193/be505da5510f0199bd76494073afe194.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3F8DBF", "geo_enabled": true, "followers_count": 2502, "location": "Ardsley, NY, USA", "screen_name": "Neil_Link", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 467, "name": "Neil Link", "profile_use_background_image": true, "description": "Web Specialist @ColumbiaMed in #NYC husband, father of 2 boys, I tweet #Growthhacking #UX #WebDesign #WordPress #Drupal #Marketing #Analytics #SEO #Healthcare", "url": "https://t.co/TrqIrP1Pqr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674112006782328832/Es47kuDF_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jan 21 13:28:52 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674112006782328832/Es47kuDF_normal.jpg", "favourites_count": 1748, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685066647145676800", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1ONxiyu", "url": "https://t.co/as1uB9tCsm", "expanded_url": "http://buff.ly/1ONxiyu", "indices": [59, 82]}], "hashtags": [{"text": "UX", "indices": [12, 15]}, {"text": "SEO", "indices": [54, 58]}], "user_mentions": [{"screen_name": "usertesting", "id_str": "16262203", "id": 16262203, "indices": [87, 99], "name": "UserTesting"}]}, "created_at": "Thu Jan 07 11:53:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685066647145676800, "text": "3 Ways That #UX Professionals Can Contribute to Great #SEO https://t.co/as1uB9tCsm via @usertesting", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 107069240, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078007193/be505da5510f0199bd76494073afe194.jpeg", "statuses_count": 4453, "profile_banner_url": "https://pbs.twimg.com/profile_banners/107069240/1401216248", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "1497", "following": false, "friends_count": 1018, "entities": {"description": {"urls": [{"display_url": "bit.ly/r1GnK", "url": "http://t.co/13wugYdFb3", "expanded_url": "http://bit.ly/r1GnK", "indices": [56, 78]}]}, "url": {"urls": [{"display_url": "harperreed.com", "url": "http://t.co/bMyxp4Tgf6", "expanded_url": "http://harperreed.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/1222/6335_copy.gif", "notifications": false, "profile_sidebar_fill_color": "D6DEE1", "profile_link_color": "3399CC", "geo_enabled": true, "followers_count": 32539, "location": "Chicago, IL", "screen_name": "harper", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 1663, "name": "harper", "profile_use_background_image": true, "description": "I am pretty awesome. Check out this guide to my tweets: http://t.co/13wugYdFb3 // former CTO @ Obama for America // founder of @Modest (acquired by @paypal)", "url": "http://t.co/bMyxp4Tgf6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/550153119208726529/ZZqJSFpi_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Sun Jul 16 18:45:58 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/550153119208726529/ZZqJSFpi_normal.jpeg", "favourites_count": 13680, "status": {"in_reply_to_status_id": 685594029271040000, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/f54a2170ff4b15f7.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-91.51308, 36.970298], [-87.019935, 36.970298], [-87.019935, 42.508303], [-91.51308, 42.508303]]], "type": "Polygon"}, "full_name": "Illinois, USA", "contained_within": [], "country_code": "US", "id": "f54a2170ff4b15f7", "name": "Illinois"}, "in_reply_to_screen_name": "jkriss", "in_reply_to_user_id": 7475972, "in_reply_to_status_id_str": "685594029271040000", "in_reply_to_user_id_str": "7475972", "truncated": false, "id_str": "685594792307212288", "id": 685594792307212288, "text": "@jkriss @dylanr they already do.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jkriss", "id_str": "7475972", "id": 7475972, "indices": [0, 7], "name": "Jesse Kriss"}, {"screen_name": "dylanr", "id_str": "1042361", "id": 1042361, "indices": [8, 15], "name": "Dylan Richard"}]}, "created_at": "Fri Jan 08 22:51:50 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1497, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/1222/6335_copy.gif", "statuses_count": 60001, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1497/1398220532", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15716821", "following": false, "friends_count": 245, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 122, "location": "Seattle", "screen_name": "joneholland", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Jonathan Holland", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2196369645/224791_10150295475763345_677498344_9575803_3828841_n_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Aug 04 01:42:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2196369645/224791_10150295475763345_677498344_9575803_3828841_n_normal.jpg", "favourites_count": 81, "status": {"in_reply_to_status_id": 684537269730983936, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jonfaulkenberry", "in_reply_to_user_id": 14447782, "in_reply_to_status_id_str": "684537269730983936", "in_reply_to_user_id_str": "14447782", "truncated": false, "id_str": "684540067138777088", "id": 684540067138777088, "text": "@jonfaulkenberry Oh, that's a real thing. Startups these days.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jonfaulkenberry", "id_str": "14447782", "id": 14447782, "indices": [0, 16], "name": "Jon Faulkenberry"}]}, "created_at": "Wed Jan 06 01:00:44 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15716821, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3545, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15716821/1405878457", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3241601", "following": false, "friends_count": 509, "entities": {"description": {"urls": [{"display_url": "meh.com", "url": "https://t.co/qCjFrI6d3T", "expanded_url": "https://meh.com", "indices": [75, 98]}]}, "url": {"urls": [{"display_url": "meh.com", "url": "https://t.co/qCjFrHxyTP", "expanded_url": "https://meh.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1105, "location": "St. Louis, MO", "screen_name": "smiller", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 59, "name": "Shawn Miller", "profile_use_background_image": true, "description": "Co-Founder, CTO of @mediocrelabs (formerly of @woot). Most recent project: https://t.co/qCjFrI6d3T", "url": "https://t.co/qCjFrHxyTP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3577947718/40d10a68196672e0e17fb110f9a0aef0_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Apr 02 19:26:52 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3577947718/40d10a68196672e0e17fb110f9a0aef0_normal.jpeg", "favourites_count": 554, "status": {"retweet_count": 219, "retweeted_status": {"retweet_count": 219, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684895818780901376", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 194, "resize": "fit"}, "medium": {"w": 600, "h": 344, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 587, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", "type": "photo", "indices": [82, 105], "media_url": "http://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", "display_url": "pic.twitter.com/CuMbZD9ZjL", "id_str": "684895817778466820", "expanded_url": "http://twitter.com/TheNextWeb/status/684895818780901376/photo/1", "id": 684895817778466820, "url": "https://t.co/CuMbZD9ZjL"}], "symbols": [], "urls": [{"display_url": "tnw.me/eNECesx", "url": "https://t.co/8cyEVgiQbN", "expanded_url": "http://tnw.me/eNECesx", "indices": [58, 81]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 00:34:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684895818780901376, "text": "Get excited: Internet Explorer 8, 9 and 10 die on Tuesday https://t.co/8cyEVgiQbN https://t.co/CuMbZD9ZjL", "coordinates": null, "retweeted": false, "favorite_count": 115, "contributors": null, "source": "SocialFlow"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684896699316318209", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 194, "resize": "fit"}, "medium": {"w": 600, "h": 344, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 587, "resize": "fit"}}, "source_status_id_str": "684895818780901376", "media_url": "http://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", "source_user_id_str": "10876852", "id_str": "684895817778466820", "id": 684895817778466820, "media_url_https": "https://pbs.twimg.com/media/CYE9HhbWEAQ9ZMd.png", "type": "photo", "indices": [98, 121], "source_status_id": 684895818780901376, "source_user_id": 10876852, "display_url": "pic.twitter.com/CuMbZD9ZjL", "expanded_url": "http://twitter.com/TheNextWeb/status/684895818780901376/photo/1", "url": "https://t.co/CuMbZD9ZjL"}], "symbols": [], "urls": [{"display_url": "tnw.me/eNECesx", "url": "https://t.co/8cyEVgiQbN", "expanded_url": "http://tnw.me/eNECesx", "indices": [74, 97]}], "hashtags": [], "user_mentions": [{"screen_name": "TheNextWeb", "id_str": "10876852", "id": 10876852, "indices": [3, 14], "name": "The Next Web"}]}, "created_at": "Thu Jan 07 00:37:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684896699316318209, "text": "RT @TheNextWeb: Get excited: Internet Explorer 8, 9 and 10 die on Tuesday https://t.co/8cyEVgiQbN https://t.co/CuMbZD9ZjL", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3241601, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3619, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3241601/1375155591", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "16350343", "following": false, "friends_count": 140, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 138, "location": "Dubuque/San Jose", "screen_name": "chad3814", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Chad Walker", "profile_use_background_image": true, "description": "ya know, I do stuff", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459055261701787649/mNe_P6yV_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Sep 18 18:08:47 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459055261701787649/mNe_P6yV_normal.jpeg", "favourites_count": 779, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685471954078412800", "id": 685471954078412800, "text": "This is amazing", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:43:43 +0000 2016", "source": "IFTTT", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16350343, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3329, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16350343/1402684911", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "14156277", "following": false, "friends_count": 467, "entities": {"description": {"urls": [{"display_url": "xkcd.com/1053", "url": "https://t.co/HvLA1ZBXmI", "expanded_url": "http://xkcd.com/1053", "indices": [102, 125]}]}, "url": {"urls": [{"display_url": "motowilliams.com", "url": "https://t.co/ZgEB6wuZx4", "expanded_url": "http://www.motowilliams.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/181362032/BikeWheel.jpg", "notifications": false, "profile_sidebar_fill_color": "9E9E9E", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 733, "location": "Florence, Mt", "screen_name": "MotoWilliams", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 78, "name": "Eric Williams", "profile_use_background_image": true, "description": "Human | Husband | Father | Archery | Hunting | Fishing | Mountains | Motorcycles | \u266cusic | Software | https://t.co/HvLA1ZBXmI | Opinions === Mine", "url": "https://t.co/ZgEB6wuZx4", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684129451592921088/O53po1Q__normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sun Mar 16 05:07:22 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684129451592921088/O53po1Q__normal.jpg", "favourites_count": 6673, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609988971073536", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "docs.octopusdeploy.com", "url": "https://t.co/Ph1dgN0K3P", "expanded_url": "http://docs.octopusdeploy.com", "indices": [45, 68]}], "hashtags": [], "user_mentions": [{"screen_name": "OctopusDeploy", "id_str": "623700982", "id": 623700982, "indices": [8, 22], "name": "OctopusDeploy"}, {"screen_name": "paulstovell", "id_str": "5523802", "id": 5523802, "indices": [70, 82], "name": "Paul Stovell"}]}, "created_at": "Fri Jan 08 23:52:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609988971073536, "text": "Are the @OctopusDeploy docs down or just me? https://t.co/Ph1dgN0K3P +@paulstovell", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 14156277, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/181362032/BikeWheel.jpg", "statuses_count": 40966, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14156277/1398196926", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "125027291", "following": false, "friends_count": 945, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "substack.net", "url": "http://t.co/6KoJQ4Tuc3", "expanded_url": "http://substack.net", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 17926, "location": "Oakland", "screen_name": "substack", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 891, "name": "substack", "profile_use_background_image": true, "description": "...", "url": "http://t.co/6KoJQ4Tuc3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3342514715/3fde89df63ea4dacf9de71369019df22_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Mar 21 12:31:12 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3342514715/3fde89df63ea4dacf9de71369019df22_normal.png", "favourites_count": 218, "status": {"in_reply_to_status_id": 685508298917986305, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "thlorenz", "in_reply_to_user_id": 174726123, "in_reply_to_status_id_str": "685508298917986305", "in_reply_to_user_id_str": "174726123", "truncated": false, "id_str": "685520249416974336", "id": 685520249416974336, "text": "@thlorenz medellin is great!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thlorenz", "id_str": "174726123", "id": 174726123, "indices": [0, 9], "name": "Thorsten Lorenz"}]}, "created_at": "Fri Jan 08 17:55:38 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 125027291, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8790, "profile_banner_url": "https://pbs.twimg.com/profile_banners/125027291/1353491796", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6899112", "following": false, "friends_count": 762, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "justin.abrah.ms", "url": "https://t.co/WLkSUuncSH", "expanded_url": "https://justin.abrah.ms", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/102154262/twitter_header.png", "notifications": false, "profile_sidebar_fill_color": "FFFFF0", "profile_link_color": "1D521D", "geo_enabled": true, "followers_count": 2118, "location": "Cambridge, MA", "screen_name": "justinabrahms", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 198, "name": "Justin Abrahms", "profile_use_background_image": false, "description": "Founder of BetterDiff, an automated code coverage tool. Engineer. Marketer? Nerd.", "url": "https://t.co/WLkSUuncSH", "profile_text_color": "1A1001", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/587695307766374402/mABPHAMF_normal.jpg", "profile_background_color": "273B28", "created_at": "Mon Jun 18 20:33:27 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/587695307766374402/mABPHAMF_normal.jpg", "favourites_count": 1171, "status": {"retweet_count": 0, "in_reply_to_user_id": 4380901, "possibly_sensitive": false, "id_str": "685487117498191873", "in_reply_to_user_id_str": "4380901", "entities": {"symbols": [], "urls": [{"display_url": "lh3.googleusercontent.com/-nvAFJ73mXlk/V\u2026", "url": "https://t.co/6hbwJVPRuH", "expanded_url": "https://lh3.googleusercontent.com/-nvAFJ73mXlk/Vo03ikpmKWI/AAAAAAAAn7w/S-Z48VuF7KU/w457-h380-rw/kisa_2.gif", "indices": [91, 114]}], "hashtags": [], "user_mentions": [{"screen_name": "electromute", "id_str": "4380901", "id": 4380901, "indices": [0, 12], "name": "Ingrid Alongi"}]}, "created_at": "Fri Jan 08 15:43:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "electromute", "in_reply_to_status_id_str": null, "truncated": false, "id": 685487117498191873, "text": "@electromute Next time you visit Portland, you should check out their track racing team. \n\nhttps://t.co/6hbwJVPRuH", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 6899112, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/102154262/twitter_header.png", "statuses_count": 14210, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6899112/1354173651", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "17950990", "following": false, "friends_count": 2152, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dinhe.net/~aredridel/", "url": "http://t.co/M8UUTeuY4z", "expanded_url": "http://dinhe.net/~aredridel/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": true, "followers_count": 2516, "location": "Somerville, MA", "screen_name": "aredridel", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 185, "name": "Aria Stewart", "profile_use_background_image": true, "description": "Random internet positive commenter & foul weather friend.\n\nUnschooler.\n\nwww at npmjs\n\n[Object object]\n\n\u2665\ufe0e node.js\n\n\u26a7", "url": "http://t.co/M8UUTeuY4z", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/651825569735290880/JRbMsOV2_normal.jpg", "profile_background_color": "8B542B", "created_at": "Mon Dec 08 00:04:59 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651825569735290880/JRbMsOV2_normal.jpg", "favourites_count": 20319, "status": {"in_reply_to_status_id": 685503517860204546, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "megapctr", "in_reply_to_user_id": 990607400, "in_reply_to_status_id_str": "685503517860204546", "in_reply_to_user_id_str": "990607400", "truncated": false, "id_str": "685510235625271298", "id": 685510235625271298, "text": "@megapctr What sort of missing features have you found wanting?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "megapctr", "id_str": "990607400", "id": 990607400, "indices": [0, 9], "name": "Filip"}]}, "created_at": "Fri Jan 08 17:15:50 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17950990, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 53299, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17950990/1398362738", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "756084", "following": false, "friends_count": 556, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ruiningitforeveryone.tv", "url": "https://t.co/s04EuVwJM4", "expanded_url": "http://ruiningitforeveryone.tv", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 1122, "location": "iPhone: 40.744831,-73.989326", "screen_name": "octothorpe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 89, "name": "CM Harrington", "profile_use_background_image": true, "description": "Dir. Creative Strategy at Gartner. Host of Ruining It For Everyone on iTunes. \nI speak for me alone.", "url": "https://t.co/s04EuVwJM4", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/22686212/me_normal.jpg", "profile_background_color": "352726", "created_at": "Wed Feb 07 15:45:26 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/22686212/me_normal.jpg", "favourites_count": 7269, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685595380290039808", "id": 685595380290039808, "text": "So, why aren't folks on PrEP called PrEPPies? That sounds way cooler than the alternative.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:54:11 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 756084, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 54061, "profile_banner_url": "https://pbs.twimg.com/profile_banners/756084/1428809294", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15394440", "following": false, "friends_count": 407, "entities": {"description": {"urls": [{"display_url": "github.com/chrisdickinson/", "url": "https://t.co/v0Wne0tapL", "expanded_url": "https://github.com/chrisdickinson/", "indices": [94, 117]}]}, "url": {"urls": [{"display_url": "neversaw.us", "url": "https://t.co/DKOJdPvUh1", "expanded_url": "http://neversaw.us/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/83753896/bg_.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 1917, "location": "Portland, OR", "screen_name": "isntitvacant", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 136, "name": "Chris Dickinson", "profile_use_background_image": true, "description": "there's no problem javascript can't solve or change into a bigger, more interesting problem | https://t.co/v0Wne0tapL", "url": "https://t.co/DKOJdPvUh1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668015451243327489/6G04zB-4_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Jul 11 17:49:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668015451243327489/6G04zB-4_normal.jpg", "favourites_count": 1954, "status": {"in_reply_to_status_id": 685523715182833664, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "isntitvacant", "in_reply_to_user_id": 15394440, "in_reply_to_status_id_str": "685523715182833664", "in_reply_to_user_id_str": "15394440", "truncated": false, "id_str": "685524143182200832", "id": 685524143182200832, "text": "@HenrikJoreteg ... it sure is interesting to exhaust a problem space looking for the optimal (if not perfect) solution!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "HenrikJoreteg", "id_str": "15102110", "id": 15102110, "indices": [0, 14], "name": "Henrik Joreteg"}]}, "created_at": "Fri Jan 08 18:11:06 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15394440, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/83753896/bg_.gif", "statuses_count": 5619, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15394440/1412028986", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "256708520", "following": false, "friends_count": 218, "entities": {"description": {"urls": [{"display_url": "tesera.com", "url": "https://t.co/sDJ88c2RvY", "expanded_url": "http://tesera.com", "indices": [27, 50]}]}, "url": {"urls": [{"display_url": "about.me/yvesrichard", "url": "https://t.co/se48pwxTNe", "expanded_url": "https://about.me/yvesrichard", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 91, "location": "Golden, British Columbia", "screen_name": "whyvez8", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Yves Richard", "profile_use_background_image": true, "description": "Senior Systems Developer @ https://t.co/sDJ88c2RvY, mountain enthusiast, io literarian.", "url": "https://t.co/se48pwxTNe", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659911981206388736/PmAdI2y2_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Feb 23 22:47:52 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659911981206388736/PmAdI2y2_normal.jpg", "favourites_count": 1187, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685129144317808640", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/addyosmani/sta\u2026", "url": "https://t.co/tGbeZcqL5w", "expanded_url": "https://twitter.com/addyosmani/status/684891142597554176", "indices": [7, 30]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 16:01:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "tl", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685129144317808640, "text": "bahaha https://t.co/tGbeZcqL5w", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 256708520, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 789, "profile_banner_url": "https://pbs.twimg.com/profile_banners/256708520/1398254080", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2602238342", "following": false, "friends_count": 234, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ryan.muller.io", "url": "http://t.co/eeHqHjnmWo", "expanded_url": "http://ryan.muller.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/509704798501756929/igNNglAV.png", "notifications": false, "profile_sidebar_fill_color": "F3C18C", "profile_link_color": "003D7A", "geo_enabled": false, "followers_count": 97, "location": "Tallahassee, FL", "screen_name": "_r24y", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Ryan Muller", "profile_use_background_image": false, "description": "3D printing, JavaScript, and general hackery.", "url": "http://t.co/eeHqHjnmWo", "profile_text_color": "E39074", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/488683566151114754/fPo8MbIv_normal.jpeg", "profile_background_color": "575457", "created_at": "Thu Jul 03 20:56:22 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "E3CFB8", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488683566151114754/fPo8MbIv_normal.jpeg", "favourites_count": 385, "status": {"in_reply_to_status_id": 685231513986830336, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ZSchmois", "in_reply_to_user_id": 4483108395, "in_reply_to_status_id_str": "685231513986830336", "in_reply_to_user_id_str": "4483108395", "truncated": false, "id_str": "685232139965722629", "id": 685232139965722629, "text": "@ZSchmois super relevant! We can change this tomorrow", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ZSchmois", "id_str": "4483108395", "id": 4483108395, "indices": [0, 9], "name": "Zeke Schmois"}]}, "created_at": "Thu Jan 07 22:50:47 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2602238342, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/509704798501756929/igNNglAV.png", "statuses_count": 391, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2602238342/1418565500", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "15677320", "following": false, "friends_count": 609, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mikereedell.com", "url": "http://t.co/LKwFFif0PK", "expanded_url": "http://www.mikereedell.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": true, "followers_count": 464, "location": "Westminster, CO", "screen_name": "mreedell", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "Mike Reedell", "profile_use_background_image": false, "description": "Software developer at Comcast VIPER. Gopher. Former 3x Ironman.", "url": "http://t.co/LKwFFif0PK", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000838096401/8d33d6313a73391288fce158b7892e96_normal.jpeg", "profile_background_color": "000000", "created_at": "Thu Jul 31 17:07:28 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000838096401/8d33d6313a73391288fce158b7892e96_normal.jpeg", "favourites_count": 325, "status": {"in_reply_to_status_id": 684785992771842049, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "davidjrusek", "in_reply_to_user_id": 280319660, "in_reply_to_status_id_str": "684785992771842049", "in_reply_to_user_id_str": "280319660", "truncated": false, "id_str": "684786667064930304", "id": 684786667064930304, "text": "@davidjrusek I hear you. My commute to Denver is easy. Either Denver or full-time remote for me in the future.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "davidjrusek", "id_str": "280319660", "id": 280319660, "indices": [0, 12], "name": "Dave with a 'D'"}]}, "created_at": "Wed Jan 06 17:20:38 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15677320, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 3065, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15677320/1399598887", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16032953", "following": false, "friends_count": 393, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 72, "location": "", "screen_name": "deryni", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Etan Reisner", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2902759343/ed71a219892c95584141421f8c4d5917_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Aug 28 21:19:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2902759343/ed71a219892c95584141421f8c4d5917_normal.jpeg", "favourites_count": 651, "status": {"retweet_count": 451, "retweeted_status": {"retweet_count": 451, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681583753987162112", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "code.google.com/p/google-secur\u2026", "url": "https://t.co/n7Kv4tKJce", "expanded_url": "https://code.google.com/p/google-security-research/issues/detail?id=675", "indices": [109, 132]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Dec 28 21:13:24 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681583753987162112, "text": "AVG Antivirus Chrome extension hijacks browser, bypasses malware checks, and exposes users to security flaws https://t.co/n7Kv4tKJce", "coordinates": null, "retweeted": false, "favorite_count": 171, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681980856303513600", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "code.google.com/p/google-secur\u2026", "url": "https://t.co/n7Kv4tKJce", "expanded_url": "https://code.google.com/p/google-security-research/issues/detail?id=675", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Tue Dec 29 23:31:21 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681980856303513600, "text": "RT @SwiftOnSecurity: AVG Antivirus Chrome extension hijacks browser, bypasses malware checks, and exposes users to security flaws https://t\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 16032953, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 334, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "98531887", "following": false, "friends_count": 298, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jesseditson.com", "url": "http://t.co/DUStTlFFNZ", "expanded_url": "http://jesseditson.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "FF7300", "geo_enabled": true, "followers_count": 425, "location": "San Francisco", "screen_name": "jesseditson", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Jesse Ditson", "profile_use_background_image": true, "description": "Wizard", "url": "http://t.co/DUStTlFFNZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2213145520/image_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 22 02:58:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2213145520/image_normal.jpg", "favourites_count": 473, "status": {"retweet_count": 982, "retweeted_status": {"retweet_count": 982, "in_reply_to_user_id": 373564351, "possibly_sensitive": false, "id_str": "680443862687432704", "in_reply_to_user_id_str": "373564351", "entities": {"symbols": [], "urls": [{"display_url": "vine.co/v/OMqDr7r0bKI", "url": "https://t.co/ece7tlGEDE", "expanded_url": "http://vine.co/v/OMqDr7r0bKI", "indices": [52, 75]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Dec 25 17:43:53 +0000 2015", "favorited": false, "in_reply_to_status_id": 648872546335461376, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "Khanoisseur", "in_reply_to_status_id_str": "648872546335461376", "truncated": false, "id": 680443862687432704, "text": "greatest Christmas gift unwrapping vine of all time https://t.co/ece7tlGEDE", "coordinates": null, "retweeted": false, "favorite_count": 1047, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "680839022814494722", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "vine.co/v/OMqDr7r0bKI", "url": "https://t.co/ece7tlGEDE", "expanded_url": "http://vine.co/v/OMqDr7r0bKI", "indices": [69, 92]}], "hashtags": [], "user_mentions": [{"screen_name": "Khanoisseur", "id_str": "373564351", "id": 373564351, "indices": [3, 15], "name": "Adam Khan"}]}, "created_at": "Sat Dec 26 19:54:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 680839022814494722, "text": "RT @Khanoisseur: greatest Christmas gift unwrapping vine of all time https://t.co/ece7tlGEDE", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 98531887, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3103, "is_translator": false}, {"time_zone": "La Paz", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "8533632", "following": false, "friends_count": 3166, "entities": {"description": {"urls": [{"display_url": "emberaddons.com", "url": "https://t.co/0C0x1rcZv4", "expanded_url": "http://emberaddons.com", "indices": [89, 112]}]}, "url": {"urls": [{"display_url": "elweb.co", "url": "https://t.co/kVZTn3FcBa", "expanded_url": "http://elweb.co", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2988, "location": "San Juan, Puerto Rico", "screen_name": "gcollazo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 151, "name": "Giovanni Collazo", "profile_use_background_image": true, "description": "Code + Design. @Blimp, @GasolinaMovil, @StartupsOfPR, @FullstackNights, @BuiltWithEmber, https://t.co/0C0x1rcZv4. Se habla Espa\u00f1ol. hello@gcollazo.com", "url": "https://t.co/kVZTn3FcBa", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/645002062569213952/eS7i6YJO_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Aug 30 13:05:00 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645002062569213952/eS7i6YJO_normal.jpg", "favourites_count": 3848, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685500634691452928", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BASPdlsgBKu/", "url": "https://t.co/UPkfSDssv2", "expanded_url": "https://www.instagram.com/p/BASPdlsgBKu/", "indices": [20, 43]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:37:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685500634691452928, "text": "Just posted a photo https://t.co/UPkfSDssv2", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 8533632, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 17970, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8533632/1437859490", "is_translator": false}, {"time_zone": "Melbourne", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "14998770", "following": false, "friends_count": 141, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bluetigertech.com.au", "url": "http://t.co/IXU8f2vC3K", "expanded_url": "http://www.bluetigertech.com.au", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 25, "location": "Pomonal Victoria Australia", "screen_name": "daveywc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "David Compton", "profile_use_background_image": true, "description": "", "url": "http://t.co/IXU8f2vC3K", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1682442728/David_Profile_Picture_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 03 23:10:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1682442728/David_Profile_Picture_normal.jpg", "favourites_count": 33, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "650503056451239937", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "citizengo.org/en/30210-send-\u2026", "url": "http://t.co/4kMGgdfnpX", "expanded_url": "http://citizengo.org/en/30210-send-letter-denouncing-australias-deportation-peaceful-pro-life-speaker?tc=tw&tcid=16491525", "indices": [113, 135]}], "hashtags": [], "user_mentions": []}, "created_at": "Sun Oct 04 02:49:49 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 650503056451239937, "text": "Justice Geoffrey Nettle of the High Court of Australia: Send a letter denouncing Australia's deportation of a... http://t.co/4kMGgdfnpX", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14998770, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 104, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15692193", "following": false, "friends_count": 731, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "feross.org", "url": "http://t.co/Xk7quPGsmg", "expanded_url": "http://feross.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000160435454/xj8GKj2U.jpeg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 9363, "location": "Stanford, CA", "screen_name": "feross", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 539, "name": "Feross", "profile_use_background_image": true, "description": "Mad scientist, building @StudyNotesApp and @WebTorrentApp. Previously, founded @PeerCDN, Stanford '12.", "url": "http://t.co/Xk7quPGsmg", "profile_text_color": "5D8CBF", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458911857466560513/uKX6-c4z_normal.jpeg", "profile_background_color": "990000", "created_at": "Fri Aug 01 18:03:27 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458911857466560513/uKX6-c4z_normal.jpeg", "favourites_count": 4400, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685610775055056896", "id": 685610775055056896, "text": "\"Debugging is 2x as hard as writing a program in the 1st place. So if you're as clever as can be when you write it, how will you debug it?\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:55:21 +0000 2016", "source": "Twitter Web Client", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15692193, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000160435454/xj8GKj2U.jpeg", "statuses_count": 12257, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15692193/1449273254", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15116482", "following": false, "friends_count": 1882, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thewebivore.com", "url": "http://t.co/bvhYAgzlQw", "expanded_url": "http://thewebivore.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 4858, "location": "Philadelphia, PA", "screen_name": "pamasaur", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 374, "name": "Pam Selle", "profile_use_background_image": true, "description": "Professional nerd, amateur humorist, author, herbivore, cyclist, and hacker. @recursecenter alum, @phillyjsdev cat herder. she/her", "url": "http://t.co/bvhYAgzlQw", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495266631539388417/7DLEFWis_normal.jpeg", "profile_background_color": "EBEBEB", "created_at": "Sat Jun 14 12:58:09 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495266631539388417/7DLEFWis_normal.jpeg", "favourites_count": 663, "status": {"retweet_count": 9, "retweeted_status": {"retweet_count": 9, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685268431336271872", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "hubs.ly/H01MfrH0", "url": "https://t.co/IJL2mtiIVd", "expanded_url": "http://hubs.ly/H01MfrH0", "indices": [97, 120]}], "hashtags": [{"text": "remotework", "indices": [122, 133]}, {"text": "rwd", "indices": [134, 138]}], "user_mentions": [{"screen_name": "Skillcrush", "id_str": "507709379", "id": 507709379, "indices": [49, 60], "name": "Skillcrush"}]}, "created_at": "Fri Jan 08 01:15:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685268431336271872, "text": "We are looking for a junior designer to join the @Skillcrush instructor team as a Web Design TA! https://t.co/IJL2mtiIVd\u2026 #remotework #rwd", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "HubSpot"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685271320104431616", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "hubs.ly/H01MfrH0", "url": "https://t.co/IJL2mtiIVd", "expanded_url": "http://hubs.ly/H01MfrH0", "indices": [113, 136]}], "hashtags": [{"text": "remotework", "indices": [139, 140]}, {"text": "rwd", "indices": [139, 140]}], "user_mentions": [{"screen_name": "Skillcrush", "id_str": "507709379", "id": 507709379, "indices": [3, 14], "name": "Skillcrush"}, {"screen_name": "Skillcrush", "id_str": "507709379", "id": 507709379, "indices": [65, 76], "name": "Skillcrush"}]}, "created_at": "Fri Jan 08 01:26:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685271320104431616, "text": "RT @Skillcrush: We are looking for a junior designer to join the @Skillcrush instructor team as a Web Design TA! https://t.co/IJL2mtiIVd\u2026 #\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 15116482, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 9248, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15116482/1401891491", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2410813016", "following": false, "friends_count": 785, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3848, "location": "London - Italy", "screen_name": "nino_fontana", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Nino Fontana", "profile_use_background_image": true, "description": "PhD student. Ci\u00f2 che l'occhio \u00e8 per il corpo, la ragione lo \u00e8 per l'anima (Erasmo da Rotterdam)", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/452580209338744832/fOs_cvov_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Mar 25 10:49:33 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "it", "profile_image_url_https": "https://pbs.twimg.com/profile_images/452580209338744832/fOs_cvov_normal.jpeg", "favourites_count": 317, "status": {"retweet_count": 0, "in_reply_to_user_id": 85626417, "possibly_sensitive": false, "id_str": "680730135658643456", "in_reply_to_user_id_str": "85626417", "entities": {"symbols": [], "urls": [{"display_url": "tinyurl.com/ptrpk7x", "url": "https://t.co/qZ1UX8oM1z", "expanded_url": "http://tinyurl.com/ptrpk7x", "indices": [115, 138]}], "hashtags": [{"text": "Natale2015", "indices": [103, 114]}], "user_mentions": [{"screen_name": "Gazzetta_it", "id_str": "85626417", "id": 85626417, "indices": [35, 47], "name": "LaGazzettadelloSport"}]}, "created_at": "Sat Dec 26 12:41:26 +0000 2015", "favorited": false, "in_reply_to_status_id": 680389107806265344, "lang": "it", "geo": null, "place": null, "in_reply_to_screen_name": "Gazzetta_it", "in_reply_to_status_id_str": "680389107806265344", "truncated": false, "id": 680730135658643456, "text": "Il vero spirito del Natale secondo @Gazzetta_it, complimenti\r \"Con Angeli cos\u00ec non pu\u00f2 essere che Buon #Natale2015 https://t.co/qZ1UX8oM1z\"", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Windows Phone"}, "default_profile_image": false, "id": 2410813016, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2414, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2410813016/1395746672", "is_translator": false}, {"time_zone": "Sydney", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "14180671", "following": false, "friends_count": 1902, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bytecodeartist.net", "url": "http://t.co/eujmx5ZDq9", "expanded_url": "http://www.bytecodeartist.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685970528/5077b01ec673f963a50580b055dde7b5.jpeg", "notifications": false, "profile_sidebar_fill_color": "F3F7D9", "profile_link_color": "2D3873", "geo_enabled": true, "followers_count": 1369, "location": "Earth", "screen_name": "philiplaureano", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 110, "name": "Philip Laureano", "profile_use_background_image": false, "description": "World Traveler, Avid Foodie, .NET Junkie/Human CLR, Amateur Photographer, AOP Enthusiast, and ILDasm Geek in this amazing home we call Earth", "url": "http://t.co/eujmx5ZDq9", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2657709076/0037b8cb2ab7fb1cc61a1002e4f67251_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Mar 19 23:23:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2657709076/0037b8cb2ab7fb1cc61a1002e4f67251_normal.jpeg", "favourites_count": 3301, "status": {"retweet_count": 239, "retweeted_status": {"retweet_count": 239, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685192813236088832", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mcaule.github.io/d3_exploding_b\u2026", "url": "https://t.co/4jJHibAgnW", "expanded_url": "http://mcaule.github.io/d3_exploding_boxplot/", "indices": [51, 74]}, {"display_url": "pic.twitter.com/DUnQmbbNdP", "url": "https://t.co/DUnQmbbNdP", "expanded_url": "http://twitter.com/maartenzam/status/685192813236088832/photo/1", "indices": [93, 116]}], "hashtags": [{"text": "D3", "indices": [0, 3]}], "user_mentions": [{"screen_name": "NadiehBremer", "id_str": "242069220", "id": 242069220, "indices": [79, 92], "name": "Nadieh Bremer"}]}, "created_at": "Thu Jan 07 20:14:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "sv", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685192813236088832, "text": "#D3 Exploding box plot (aka imploding scatterplot) https://t.co/4jJHibAgnW Via @NadiehBremer https://t.co/DUnQmbbNdP", "coordinates": null, "retweeted": false, "favorite_count": 319, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685317541200187392", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mcaule.github.io/d3_exploding_b\u2026", "url": "https://t.co/4jJHibAgnW", "expanded_url": "http://mcaule.github.io/d3_exploding_boxplot/", "indices": [67, 90]}, {"display_url": "pic.twitter.com/DUnQmbbNdP", "url": "https://t.co/DUnQmbbNdP", "expanded_url": "http://twitter.com/maartenzam/status/685192813236088832/photo/1", "indices": [109, 132]}], "hashtags": [{"text": "D3", "indices": [16, 19]}], "user_mentions": [{"screen_name": "maartenzam", "id_str": "17242884", "id": 17242884, "indices": [3, 14], "name": "Maarten Lambrechts"}, {"screen_name": "NadiehBremer", "id_str": "242069220", "id": 242069220, "indices": [95, 108], "name": "Nadieh Bremer"}]}, "created_at": "Fri Jan 08 04:30:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "sv", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685317541200187392, "text": "RT @maartenzam: #D3 Exploding box plot (aka imploding scatterplot) https://t.co/4jJHibAgnW Via @NadiehBremer https://t.co/DUnQmbbNdP", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 14180671, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685970528/5077b01ec673f963a50580b055dde7b5.jpeg", "statuses_count": 16389, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14180671/1371759640", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "481383369", "following": false, "friends_count": 103, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0F6B8C", "geo_enabled": false, "followers_count": 77, "location": "Cambridge, UK", "screen_name": "alan_gibble", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Alan Wright", "profile_use_background_image": true, "description": "Infrastructure Software Engineer at Spotify. Always learning.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/481454286866366464/AylmX2yj_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Feb 02 17:44:50 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/481454286866366464/AylmX2yj_normal.png", "favourites_count": 16, "status": {"retweet_count": 374, "retweeted_status": {"retweet_count": 374, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684921510113460224", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1022, "h": 523, "resize": "fit"}, "medium": {"w": 600, "h": 307, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 173, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", "type": "photo", "indices": [40, 63], "media_url": "http://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", "display_url": "pic.twitter.com/4ZGS1srULp", "id_str": "684921509362688000", "expanded_url": "http://twitter.com/AdamMGrant/status/684921510113460224/photo/1", "id": 684921509362688000, "url": "https://t.co/4ZGS1srULp"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 02:16:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684921510113460224, "text": "2015 in America, in 460 million tweets: https://t.co/4ZGS1srULp", "coordinates": null, "retweeted": false, "favorite_count": 268, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685016635623751680", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1022, "h": 523, "resize": "fit"}, "medium": {"w": 600, "h": 307, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 173, "resize": "fit"}}, "source_status_id_str": "684921510113460224", "media_url": "http://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", "source_user_id_str": "1059273780", "id_str": "684921509362688000", "id": 684921509362688000, "media_url_https": "https://pbs.twimg.com/media/CYFUe-CWYAAJeJo.png", "type": "photo", "indices": [56, 79], "source_status_id": 684921510113460224, "source_user_id": 1059273780, "display_url": "pic.twitter.com/4ZGS1srULp", "expanded_url": "http://twitter.com/AdamMGrant/status/684921510113460224/photo/1", "url": "https://t.co/4ZGS1srULp"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AdamMGrant", "id_str": "1059273780", "id": 1059273780, "indices": [3, 14], "name": "Adam Grant"}]}, "created_at": "Thu Jan 07 08:34:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685016635623751680, "text": "RT @AdamMGrant: 2015 in America, in 460 million tweets: https://t.co/4ZGS1srULp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 481383369, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1048, "profile_banner_url": "https://pbs.twimg.com/profile_banners/481383369/1412113781", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "83870274", "following": false, "friends_count": 240, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/metllord", "url": "https://t.co/ige9AAxhNS", "expanded_url": "https://github.com/metllord", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624560161760411648/cJELcPCC.png", "notifications": false, "profile_sidebar_fill_color": "734426", "profile_link_color": "422110", "geo_enabled": true, "followers_count": 83, "location": "Philadelphia, PA", "screen_name": "metllord", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 7, "name": "Eric Stein", "profile_use_background_image": true, "description": "Python programmer, sizable data guy, amateur Vim user, fueled by coffee and beer.", "url": "https://t.co/ige9AAxhNS", "profile_text_color": "5C5B47", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2028110877/13532_521689987314_39300088_31071305_3862753_n_normal.jpg", "profile_background_color": "131E0F", "created_at": "Tue Oct 20 15:56:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2028110877/13532_521689987314_39300088_31071305_3862753_n_normal.jpg", "favourites_count": 26, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/e4a0d228eb6be76b.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-75.280284, 39.871811], [-74.955712, 39.871811], [-74.955712, 40.13792], [-75.280284, 40.13792]]], "type": "Polygon"}, "full_name": "Philadelphia, PA", "contained_within": [], "country_code": "US", "id": "e4a0d228eb6be76b", "name": "Philadelphia"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685165087347355648", "id": 685165087347355648, "text": "Ha. Running rm -rf / in a Vagrant box deletes your Vagrantfile.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 18:24:21 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 83870274, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624560161760411648/cJELcPCC.png", "statuses_count": 718, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5908032", "following": false, "friends_count": 1047, "entities": {"description": {"urls": [{"display_url": "Cloud.com", "url": "https://t.co/JI5orZ8uwf", "expanded_url": "http://Cloud.com", "indices": [55, 78]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 3382, "location": "Seattle, WA", "screen_name": "ulander", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 151, "name": "Peder Ulander", "profile_use_background_image": true, "description": "work: Cisco Cloud VP | formerly: Apache CloudStack and https://t.co/JI5orZ8uwf | persona: opinionated geek, disruptor, agitator | opinions = mine", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/643611355984076801/d6npusfi_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed May 09 18:31:54 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643611355984076801/d6npusfi_normal.jpg", "favourites_count": 162, "status": {"in_reply_to_status_id": 685171757859258368, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "aneel", "in_reply_to_user_id": 1293051, "in_reply_to_status_id_str": "685171757859258368", "in_reply_to_user_id_str": "1293051", "truncated": false, "id_str": "685175234916302848", "id": 685175234916302848, "text": "@aneel but when you get there, rest assured it will work for you", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "aneel", "id_str": "1293051", "id": 1293051, "indices": [0, 6], "name": "Aneel"}]}, "created_at": "Thu Jan 07 19:04:40 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5908032, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5659, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5908032/1421369600", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14862647", "following": false, "friends_count": 426, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brianbondy.com", "url": "http://t.co/WYBVgFKbxw", "expanded_url": "http://brianbondy.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": true, "followers_count": 1463, "location": "Belle River, Ontario, Canada", "screen_name": "brianbondy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 141, "name": "Brian R. Bondy", "profile_use_background_image": true, "description": "Father of 3 co-founding a startup. Gecko hacker, Khan Academy contributor, top 0.1% StackOverflow, UWaterloo grad. Past Microsoft MVP. Runner.", "url": "http://t.co/WYBVgFKbxw", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649573213505200128/LU2vI_3s_normal.jpg", "profile_background_color": "8B542B", "created_at": "Wed May 21 23:45:24 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649573213505200128/LU2vI_3s_normal.jpg", "favourites_count": 869, "status": {"retweet_count": 69, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 69, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684999185792282625", "id": 684999185792282625, "text": "If your Firefox successfully downloaded today's SHA-1 protection undo update you didn't need it. If it blocked it, you did. #realworldcrypto", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "realworldcrypto", "indices": [124, 140]}], "user_mentions": []}, "created_at": "Thu Jan 07 07:25:07 +0000 2016", "source": "Twitter Web Client", "favorite_count": 58, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685237803043700736", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "realworldcrypto", "indices": [139, 140]}], "user_mentions": [{"screen_name": "BRIAN_____", "id_str": "14586929", "id": 14586929, "indices": [3, 14], "name": "Brian Smith"}]}, "created_at": "Thu Jan 07 23:13:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685237803043700736, "text": "RT @BRIAN_____: If your Firefox successfully downloaded today's SHA-1 protection undo update you didn't need it. If it blocked it, you did.\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 14862647, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 1484, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14862647/1398209413", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14835101", "following": false, "friends_count": 741, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "yes.erin.codes", "url": "https://t.co/Yp4c3meMi5", "expanded_url": "http://yes.erin.codes", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/882775034/4ccd35438b42a7da37c20ebc15940e52.jpeg", "notifications": false, "profile_sidebar_fill_color": "140E0A", "profile_link_color": "4F3F38", "geo_enabled": false, "followers_count": 1510, "location": "Huntsville, AL", "screen_name": "erinspice", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 109, "name": "snarkaeopteryx", "profile_use_background_image": true, "description": "Code life, yo. Sr. Software Engineer for @Respoke, FOSS, WebRTC, Node.js, running, kayaking. Choctaw, Chickasaw, Bahamian. ENTP/ENFP", "url": "https://t.co/Yp4c3meMi5", "profile_text_color": "838978", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/562987039084146688/BxGQ49EL_normal.png", "profile_background_color": "1C130E", "created_at": "Mon May 19 17:08:51 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "9DB98C", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/562987039084146688/BxGQ49EL_normal.png", "favourites_count": 12428, "status": {"in_reply_to_status_id": 685598429934817283, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "polotek", "in_reply_to_user_id": 20079975, "in_reply_to_status_id_str": "685598429934817283", "in_reply_to_user_id_str": "20079975", "truncated": false, "id_str": "685599053053345792", "id": 685599053053345792, "text": "@polotek I love Noemi so much.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "polotek", "id_str": "20079975", "id": 20079975, "indices": [0, 8], "name": "Marco Rogers"}]}, "created_at": "Fri Jan 08 23:08:46 +0000 2016", "source": "TweetDeck", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14835101, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/882775034/4ccd35438b42a7da37c20ebc15940e52.jpeg", "statuses_count": 10237, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14835101/1398351739", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2396932368", "following": false, "friends_count": 2080, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 1002, "location": "Texas", "screen_name": "Thaeldes", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 11, "name": "Larry Freeman", "profile_use_background_image": false, "description": "#Husband, #Uncle, World Craftsman, #Cigar #Pipe and #HookahLover, #Student #filmstudent #excrazymountainman", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/581679057277849601/Cs4qEtR3_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Mar 18 23:50:22 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/581679057277849601/Cs4qEtR3_normal.jpg", "favourites_count": 3797, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685566739141259264", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "gofundme.com/qqg4nrdw", "url": "https://t.co/Kkw1BVOedS", "expanded_url": "http://gofundme.com/qqg4nrdw", "indices": [45, 68]}], "hashtags": [{"text": "college", "indices": [17, 25]}, {"text": "crowdfund", "indices": [69, 79]}, {"text": "collegelife", "indices": [80, 92]}, {"text": "cinematography", "indices": [93, 108]}], "user_mentions": []}, "created_at": "Fri Jan 08 21:00:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685566739141259264, "text": "help me continue #college my funding was cut https://t.co/Kkw1BVOedS #crowdfund #collegelife #cinematography", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2396932368, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1343, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2396932368/1419886819", "is_translator": false}, {"time_zone": "America/Los_Angeles", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "82480797", "following": false, "friends_count": 661, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/817092131/e35a189e26ca361ceadff8b2eae3ca2b.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 161, "location": "San Diego", "screen_name": "Mi_keC", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Michael Conlon", "profile_use_background_image": true, "description": "Never stop learning - information security and craft beer addiction", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/591366723279785984/0LOfXLcP_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Oct 14 23:07:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/591366723279785984/0LOfXLcP_normal.jpg", "favourites_count": 1247, "status": {"retweet_count": 113, "retweeted_status": {"retweet_count": 113, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "654136987453128704", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 450, "h": 282, "resize": "fit"}, "medium": {"w": 450, "h": 282, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 213, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", "type": "photo", "indices": [75, 97], "media_url": "http://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", "display_url": "pic.twitter.com/4KTZsuUwmT", "id_str": "654136983946678272", "expanded_url": "http://twitter.com/mzbat/status/654136987453128704/photo/1", "id": 654136983946678272, "url": "http://t.co/4KTZsuUwmT"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "M3atShi3ld", "id_str": "982428168", "id": 982428168, "indices": [12, 23], "name": "M3atShi3ld"}]}, "created_at": "Wed Oct 14 03:29:45 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 654136987453128704, "text": "100 RTs and @M3atShi3ld will get this bat tattooed on his butt. On camera. http://t.co/4KTZsuUwmT", "coordinates": null, "retweeted": false, "favorite_count": 27, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "654352341810810880", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 450, "h": 282, "resize": "fit"}, "medium": {"w": 450, "h": 282, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 213, "resize": "fit"}}, "source_status_id_str": "654136987453128704", "media_url": "http://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", "source_user_id_str": "253608265", "id_str": "654136983946678272", "id": 654136983946678272, "media_url_https": "https://pbs.twimg.com/media/CRP2HwKWUAAohrI.jpg", "type": "photo", "indices": [86, 108], "source_status_id": 654136987453128704, "source_user_id": 253608265, "display_url": "pic.twitter.com/4KTZsuUwmT", "expanded_url": "http://twitter.com/mzbat/status/654136987453128704/photo/1", "url": "http://t.co/4KTZsuUwmT"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mzbat", "id_str": "253608265", "id": 253608265, "indices": [3, 9], "name": "b\u0360\u035d\u0344\u0350\u0310\u035d\u030a\u0341a\u030f\u0344\u0343\u0305\u0302\u0313\u030f\u0304t\u0352"}, {"screen_name": "M3atShi3ld", "id_str": "982428168", "id": 982428168, "indices": [23, 34], "name": "M3atShi3ld"}]}, "created_at": "Wed Oct 14 17:45:30 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 654352341810810880, "text": "RT @mzbat: 100 RTs and @M3atShi3ld will get this bat tattooed on his butt. On camera. http://t.co/4KTZsuUwmT", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 82480797, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/817092131/e35a189e26ca361ceadff8b2eae3ca2b.jpeg", "statuses_count": 204, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "177646723", "following": false, "friends_count": 1113, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135037717/CRW_9589_reduced.jpg", "notifications": false, "profile_sidebar_fill_color": "2F1036", "profile_link_color": "5C1361", "geo_enabled": false, "followers_count": 387, "location": "[redacted] ", "screen_name": "r3d4ct3d", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "[REDACTED]", "profile_use_background_image": true, "description": "free thinker, atheist, hacktivist. i post/RT anything having to do with science, politics, hactivism, art, music and tech.", "url": null, "profile_text_color": "D4D4D4", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1770342024/FIF_copy_normal.jpg", "profile_background_color": "101B21", "created_at": "Thu Aug 12 18:08:53 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1770342024/FIF_copy_normal.jpg", "favourites_count": 559, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "596894667641200640", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "m.huffpost.com/us/entry/72427\u2026", "url": "http://t.co/9yRTKxHXpg", "expanded_url": "http://m.huffpost.com/us/entry/7242720", "indices": [96, 118]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat May 09 04:29:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 596894667641200640, "text": "Ignoring this being racist, you do realize this is illegal under state and federal laws, right? http://t.co/9yRTKxHXpg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "596905652850569216", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "m.huffpost.com/us/entry/72427\u2026", "url": "http://t.co/9yRTKxHXpg", "expanded_url": "http://m.huffpost.com/us/entry/7242720", "indices": [110, 132]}], "hashtags": [], "user_mentions": [{"screen_name": "wwahammy", "id_str": "19212550", "id": 19212550, "indices": [3, 12], "name": "Eric Kringleschultz"}]}, "created_at": "Sat May 09 05:12:52 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 596905652850569216, "text": "RT @wwahammy: Ignoring this being racist, you do realize this is illegal under state and federal laws, right? http://t.co/9yRTKxHXpg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 177646723, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135037717/CRW_9589_reduced.jpg", "statuses_count": 23283, "profile_banner_url": "https://pbs.twimg.com/profile_banners/177646723/1358587342", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "12897812", "following": false, "friends_count": 1123, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jamigibbs.com", "url": "https://t.co/pgV1I0wHOf", "expanded_url": "http://jamigibbs.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/427142944/groovepaper.png", "notifications": false, "profile_sidebar_fill_color": "F5F5F5", "profile_link_color": "FF3300", "geo_enabled": true, "followers_count": 2540, "location": "Chicago", "screen_name": "JamiGibbs", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 70, "name": "Jami Gibbs \u26f5", "profile_use_background_image": true, "description": "Doing stuff on the interwebs. Founder of @rescuethemes. Recovering expat. Still learning.", "url": "https://t.co/pgV1I0wHOf", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/679694700459233284/1-OJBDxd_normal.png", "profile_background_color": "E0E0E0", "created_at": "Thu Jan 31 02:52:11 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C7C7C7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679694700459233284/1-OJBDxd_normal.png", "favourites_count": 712, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685256403418779648", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 768, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKFEDWWsAAP1Ky.jpg", "type": "photo", "indices": [50, 73], "media_url": "http://pbs.twimg.com/media/CYKFEDWWsAAP1Ky.jpg", "display_url": "pic.twitter.com/AG95peuNkM", "id_str": "685256397978775552", "expanded_url": "http://twitter.com/JamiGibbs/status/685256403418779648/photo/1", "id": 685256397978775552, "url": "https://t.co/AG95peuNkM"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 00:27:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-87.940033, 41.644102], [-87.523993, 41.644102], [-87.523993, 42.0230669], [-87.940033, 42.0230669]]], "type": "Polygon"}, "full_name": "Chicago, IL", "contained_within": [], "country_code": "US", "id": "1d9a5370a355ab0c", "name": "Chicago"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685256403418779648, "text": "TIL: My dog fucking hates dudes that climb trees. https://t.co/AG95peuNkM", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 12897812, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/427142944/groovepaper.png", "statuses_count": 11136, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12897812/1446593975", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "307983", "following": false, "friends_count": 792, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lendami.co", "url": "https://t.co/ST37mdmeuQ", "expanded_url": "http://lendami.co", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2968792/bg_beercaps.jpg", "notifications": false, "profile_sidebar_fill_color": "EEEEEE", "profile_link_color": "676767", "geo_enabled": true, "followers_count": 1705, "location": "Trillmington, DE", "screen_name": "lendamico", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 117, "name": "Len Damico", "profile_use_background_image": true, "description": "UX Architect, @Arcweb Technologies. Founding jawn, @phldesignco. Husband, @psujo. I'm really sorry about #PSUtwitter. RIYL: dadlife, feminism, hops, indie rock.", "url": "https://t.co/ST37mdmeuQ", "profile_text_color": "323232", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671515446219288577/ggZ_SL0V_normal.jpg", "profile_background_color": "121212", "created_at": "Thu Dec 28 04:40:08 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "666666", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671515446219288577/ggZ_SL0V_normal.jpg", "favourites_count": 6644, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685610363086336000", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 111, "resize": "fit"}, "medium": {"w": 600, "h": 196, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 717, "h": 235, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPG_hOWsAU-XFU.jpg", "type": "photo", "indices": [10, 33], "media_url": "http://pbs.twimg.com/media/CYPG_hOWsAU-XFU.jpg", "display_url": "pic.twitter.com/3w9IAwJBuN", "id_str": "685610362843082757", "expanded_url": "http://twitter.com/lendamico/status/685610363086336000/photo/1", "id": 685610362843082757, "url": "https://t.co/3w9IAwJBuN"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:53:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685610363086336000, "text": "mmmmm yes https://t.co/3w9IAwJBuN", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 307983, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2968792/bg_beercaps.jpg", "statuses_count": 42357, "profile_banner_url": "https://pbs.twimg.com/profile_banners/307983/1435980493", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "27965538", "following": false, "friends_count": 365, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lynnandtonic.com", "url": "http://t.co/heVvcx6U2V", "expanded_url": "http://lynnandtonic.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7182491/squidfingers-bg.gif", "notifications": false, "profile_sidebar_fill_color": "EBEBEB", "profile_link_color": "219E9E", "geo_enabled": false, "followers_count": 1714, "location": "Chandler, AZ", "screen_name": "lynnandtonic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 66, "name": "Lynn Fisher", "profile_use_background_image": false, "description": "Living each day like it's Pizza Day.", "url": "http://t.co/heVvcx6U2V", "profile_text_color": "424242", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477556215401025537/zH_q0-_s_normal.png", "profile_background_color": "242424", "created_at": "Tue Mar 31 21:19:06 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "BABABA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477556215401025537/zH_q0-_s_normal.png", "favourites_count": 1914, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684787294465753088", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/783hwpJTjlo", "url": "https://t.co/ODNDb8Xs2M", "expanded_url": "https://youtu.be/783hwpJTjlo", "indices": [51, 74]}], "hashtags": [], "user_mentions": [{"screen_name": "TheeNerdwriter", "id_str": "87576856", "id": 87576856, "indices": [35, 50], "name": "Evan Puschak"}]}, "created_at": "Wed Jan 06 17:23:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684787294465753088, "text": "How Art Transforms The Internet by @TheeNerdwriter https://t.co/ODNDb8Xs2M", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 27965538, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7182491/squidfingers-bg.gif", "statuses_count": 3210, "profile_banner_url": "https://pbs.twimg.com/profile_banners/27965538/1380170906", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14403366", "following": false, "friends_count": 654, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pcable.net", "url": "https://t.co/J5UfTI3pNd", "expanded_url": "http://www.pcable.net", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/246043858/IMG_1824.jpg", "notifications": false, "profile_sidebar_fill_color": "2F3333", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 657, "location": "Somerville", "screen_name": "patcable", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 35, "name": "Patrick Cable", "profile_use_background_image": true, "description": "sailing systems by the sea shore. also: LISA16 talks co-chair", "url": "https://t.co/J5UfTI3pNd", "profile_text_color": "3EA8A5", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668478465797169154/p7tkQ4aS_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Apr 16 01:42:35 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "434545", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668478465797169154/p7tkQ4aS_normal.jpg", "favourites_count": 2159, "status": {"in_reply_to_status_id": 685598865798656000, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "tyrostone", "in_reply_to_user_id": 381193410, "in_reply_to_status_id_str": "685598865798656000", "in_reply_to_user_id_str": "381193410", "truncated": false, "id_str": "685602278955433986", "id": 685602278955433986, "text": "@tyrostone whoa, that's kinda a great library perk", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tyrostone", "id_str": "381193410", "id": 381193410, "indices": [0, 10], "name": "Laura Stone"}]}, "created_at": "Fri Jan 08 23:21:35 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14403366, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/246043858/IMG_1824.jpg", "statuses_count": 7685, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14403366/1448214484", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14701839", "following": false, "friends_count": 125, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "adamyonk.com", "url": "http://t.co/ka2I9JDfh8", "expanded_url": "http://adamyonk.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3202932/bg_2.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "DC322F", "geo_enabled": false, "followers_count": 357, "location": "Springfield, MO", "screen_name": "adamyonk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "Adam Jahnke \u2615\ufe0f", "profile_use_background_image": false, "description": "Pursuer of God and @oliviayonk, minimalist, thinker, programmer, recovering perfectionist, engineer at @Librato. I love to make the complex simple.", "url": "http://t.co/ka2I9JDfh8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676859032045379584/ZpQCo8T7_normal.jpg", "profile_background_color": "FDF6E3", "created_at": "Thu May 08 15:53:12 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676859032045379584/ZpQCo8T7_normal.jpg", "favourites_count": 290, "status": {"retweet_count": 7, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 7, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685507394470690818", "id": 685507394470690818, "text": "Most of programming is just a never ending search for the right abstractions.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:04:33 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 35, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685566356712861697", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "HenrikJoreteg", "id_str": "15102110", "id": 15102110, "indices": [3, 17], "name": "Henrik Joreteg"}]}, "created_at": "Fri Jan 08 20:58:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685566356712861697, "text": "RT @HenrikJoreteg: Most of programming is just a never ending search for the right abstractions.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 14701839, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3202932/bg_2.png", "statuses_count": 6318, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14701839/1430812181", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "9905392", "following": false, "friends_count": 2879, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iam.travishartwell.net", "url": "http://t.co/noZfvrEjJH", "expanded_url": "http://iam.travishartwell.net", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2688, "location": "Idaho Falls, Idaho", "screen_name": "travisbhartwell", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 87, "name": "Travis B. Hartwell", "profile_use_background_image": true, "description": "LDS. Meditator. Kidney transplant recipient. On dialysis. Losing vision to Retinitis Pigmentosa. Software Toolsmith. Free/Open Source advocate. Writer. Friend.", "url": "http://t.co/noZfvrEjJH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/453097486228279296/H6aYkYt5_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Nov 03 02:50:41 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/453097486228279296/H6aYkYt5_normal.jpeg", "favourites_count": 8357, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/07d9f5b941887004.json", "country": "United States", "attributes": {}, "place_type": "poi", "bounding_box": {"coordinates": [[[-122.03072304117417, 37.331652997806785], [-122.03072304117417, 37.331652997806785], [-122.03072304117417, 37.331652997806785], [-122.03072304117417, 37.331652997806785]]], "type": "Polygon"}, "full_name": "Apple Inc.", "contained_within": [], "country_code": "US", "id": "07d9f5b941887004", "name": "Apple Inc."}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685567022172737537", "id": 685567022172737537, "text": "I feel like a spy, infiltrating enemy headquarters.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:01:29 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9905392, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10724, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "87004913", "following": false, "friends_count": 1499, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1410, "location": "The Woods, Calaforny", "screen_name": "nvcexploder", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 94, "name": "Beardiest Tween", "profile_use_background_image": true, "description": "I write code in the woods and teach kids to build robots.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/524375386767904768/SsOI4V4k_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Nov 02 19:07:08 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/524375386767904768/SsOI4V4k_normal.jpeg", "favourites_count": 7359, "status": {"in_reply_to_status_id": 685563110468399104, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "fritzy", "in_reply_to_user_id": 14498374, "in_reply_to_status_id_str": "685563110468399104", "in_reply_to_user_id_str": "14498374", "truncated": false, "id_str": "685563291469352960", "id": 685563291469352960, "text": "@fritzy @vladikoff @HugoGiraudel I noticed that too - it's still SO RAD.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "fritzy", "id_str": "14498374", "id": 14498374, "indices": [0, 7], "name": "Fritzy"}, {"screen_name": "vladikoff", "id_str": "57659047", "id": 57659047, "indices": [8, 18], "name": "Vlad Filippov"}, {"screen_name": "HugoGiraudel", "id_str": "551949534", "id": 551949534, "indices": [19, 32], "name": "Hugo Giraudel"}]}, "created_at": "Fri Jan 08 20:46:40 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 87004913, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4848, "profile_banner_url": "https://pbs.twimg.com/profile_banners/87004913/1398990558", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "39129267", "following": false, "friends_count": 304, "entities": {"description": {"urls": []}, "url": {"urls": [{"url": "http://reza.akhavan.me", "expanded_url": null, "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "333333", "geo_enabled": false, "followers_count": 520, "location": "San Francisco", "screen_name": "jedireza", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 46, "name": "Reza Akhavan", "profile_use_background_image": false, "description": "Engineer @Mozilla \u2728 Co-Organizer @NodeSchoolSF", "url": "http://reza.akhavan.me", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/568295339157753856/s4XVgdXN_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun May 10 22:55:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/568295339157753856/s4XVgdXN_normal.jpeg", "favourites_count": 737, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683436415040933888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/nodeschooloak/\u2026", "url": "https://t.co/N7ckQ72EQm", "expanded_url": "https://twitter.com/nodeschooloak/status/683436238473310208", "indices": [88, 111]}], "hashtags": [], "user_mentions": [{"screen_name": "nodeschooloak", "id_str": "3271438309", "id": 3271438309, "indices": [72, 86], "name": "NodeSchool Oakland"}]}, "created_at": "Sat Jan 02 23:55:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683436415040933888, "text": "Come join me and some of the finest folks from the bay area at the next @nodeschooloak! https://t.co/N7ckQ72EQm", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683851658095243264", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/nodeschooloak/\u2026", "url": "https://t.co/N7ckQ72EQm", "expanded_url": "https://twitter.com/nodeschooloak/status/683436238473310208", "indices": [101, 124]}], "hashtags": [], "user_mentions": [{"screen_name": "takempf", "id_str": "17734862", "id": 17734862, "indices": [3, 11], "name": "Timothy Kempf"}, {"screen_name": "nodeschooloak", "id_str": "3271438309", "id": 3271438309, "indices": [85, 99], "name": "NodeSchool Oakland"}]}, "created_at": "Mon Jan 04 03:25:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683851658095243264, "text": "RT @takempf: Come join me and some of the finest folks from the bay area at the next @nodeschooloak! https://t.co/N7ckQ72EQm", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 39129267, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1061, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39129267/1421477916", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "17293000", "following": false, "friends_count": 481, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "aguidinglife.co.uk", "url": "https://t.co/IWUVA2WIs8", "expanded_url": "http://www.aguidinglife.co.uk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 921, "location": "UK", "screen_name": "kelloggs_ville", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "KV_Guiding_DBA", "profile_use_background_image": true, "description": "Oracle DBA, Guider. Tried to be normal once, worst 2 minutes of my life.", "url": "https://t.co/IWUVA2WIs8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681825809183686656/220vNYu5_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Mon Nov 10 19:32:47 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681825809183686656/220vNYu5_normal.jpg", "favourites_count": 1939, "status": {"in_reply_to_status_id": 685539178982043648, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "TheDashingChap", "in_reply_to_user_id": 22298246, "in_reply_to_status_id_str": "685539178982043648", "in_reply_to_user_id_str": "22298246", "truncated": false, "id_str": "685539757695365120", "id": 685539757695365120, "text": "@TheDashingChap I for one am always praying for peas on earth \ud83d\ude02\ud83d\ude02\ud83d\ude02", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "TheDashingChap", "id_str": "22298246", "id": 22298246, "indices": [0, 15], "name": "Ty"}]}, "created_at": "Fri Jan 08 19:13:09 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17293000, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 22251, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17293000/1449608601", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "52270403", "following": false, "friends_count": 410, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mojolingo.com", "url": "http://t.co/QQBQqmHHBD", "expanded_url": "http://mojolingo.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/294691643/MojoLingoBG-Twitter.png", "notifications": false, "profile_sidebar_fill_color": "E3E3E3", "profile_link_color": "96172E", "geo_enabled": true, "followers_count": 671, "location": "Atlanta", "screen_name": "bklang", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "Ben Klang", "profile_use_background_image": true, "description": "Principal/Technology Strategist at Mojo Lingo. Project Lead for Adhearsion, the voice app framework. Real-Time Comms Revolutionary. Open Source Hacker.", "url": "http://t.co/QQBQqmHHBD", "profile_text_color": "37424A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/621343464735772672/mKCqd3FO_normal.jpg", "profile_background_color": "324555", "created_at": "Tue Jun 30 02:12:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "919191", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621343464735772672/mKCqd3FO_normal.jpg", "favourites_count": 211, "status": {"retweet_count": 9, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 9, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682756823544365056", "id": 682756823544365056, "text": "Pretty stoked that #Asterisk 14 will support\n same => n,Playback(https://someserver/some_sound_file.wav)\n\nLots more to do, but progress!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Asterisk", "indices": [19, 28]}], "user_mentions": []}, "created_at": "Fri Jan 01 02:54:46 +0000 2016", "source": "Twitter Web Client", "favorite_count": 17, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "682762462643499009", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Asterisk", "indices": [36, 45]}], "user_mentions": [{"screen_name": "mattcjordan", "id_str": "48244004", "id": 48244004, "indices": [3, 15], "name": "Matt Jordan"}]}, "created_at": "Fri Jan 01 03:17:10 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682762462643499009, "text": "RT @mattcjordan: Pretty stoked that #Asterisk 14 will support\n same => n,Playback(https://someserver/some_sound_file.wav)\n\nLots more to \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 52270403, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/294691643/MojoLingoBG-Twitter.png", "statuses_count": 1882, "profile_banner_url": "https://pbs.twimg.com/profile_banners/52270403/1436974855", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "528590347", "following": false, "friends_count": 1214, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/poeticninja", "url": "https://t.co/2Hpy5zsVuW", "expanded_url": "https://github.com/poeticninja", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 378, "location": "Houston, TX", "screen_name": "poeticninja", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 35, "name": "Saul Maddox", "profile_use_background_image": true, "description": "Web Developer, co-manage Node.js Houston, husband to a wonderful wife, and father to three amazing children.", "url": "https://t.co/2Hpy5zsVuW", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000698748900/37ec2ffa765e556b16aea10a3c73e6bc_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Sun Mar 18 15:11:58 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000698748900/37ec2ffa765e556b16aea10a3c73e6bc_normal.jpeg", "favourites_count": 1681, "status": {"retweet_count": 97, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 97, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684553093409861632", "id": 684553093409861632, "text": "Don\u2019t ask your contributors to npm install any packages globally. Set up aliases for tasks via \"scripts\" config in package.json.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 01:52:30 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 203, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685248751787589632", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "dan_abramov", "id_str": "70345946", "id": 70345946, "indices": [3, 15], "name": "Dan Abramov"}]}, "created_at": "Thu Jan 07 23:56:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685248751787589632, "text": "RT @dan_abramov: Don\u2019t ask your contributors to npm install any packages globally. Set up aliases for tasks via \"scripts\" config in package\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 528590347, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 1187, "profile_banner_url": "https://pbs.twimg.com/profile_banners/528590347/1378419100", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "217607250", "following": false, "friends_count": 887, "entities": {"description": {"urls": [{"display_url": "ike.io", "url": "https://t.co/tShgYG6Gye", "expanded_url": "http://ike.io", "indices": [19, 42]}]}, "url": {"urls": [{"display_url": "ike.io", "url": "https://t.co/tShgYG6Gye", "expanded_url": "http://ike.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/693712484/978192d7b7735dc78f2fed907480eaa8.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 567, "location": "Richland, WA", "screen_name": "_crossdiver", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 46, "name": "Isaac Lewis", "profile_use_background_image": true, "description": "Dude with a lance, https://t.co/tShgYG6Gye. Founder, @muxtc. Renaissance Kid. @the_lewist's lesser half.", "url": "https://t.co/tShgYG6Gye", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/563851021403688961/j08fLJw2_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Sat Nov 20 00:22:04 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563851021403688961/j08fLJw2_normal.jpeg", "favourites_count": 3249, "status": {"retweet_count": 12, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 12, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "679318236744294400", "id": 679318236744294400, "text": "We're looking for businesses looking to sell to their workers. Help us spread the word by retweeting or let us know if you know someone!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 22 15:11:03 +0000 2015", "source": "Hootsuite", "favorite_count": 7, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685603260187578368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "workingworldorg", "id_str": "496495582", "id": 496495582, "indices": [3, 19], "name": "The Working World"}]}, "created_at": "Fri Jan 08 23:25:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685603260187578368, "text": "RT @workingworldorg: We're looking for businesses looking to sell to their workers. Help us spread the word by retweeting or let us know if\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 217607250, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/693712484/978192d7b7735dc78f2fed907480eaa8.jpeg", "statuses_count": 5204, "profile_banner_url": "https://pbs.twimg.com/profile_banners/217607250/1442362227", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "34672729", "following": false, "friends_count": 218, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyet.com", "url": "https://t.co/g5X3ldct0t", "expanded_url": "http://www.andyet.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "F5ABB5", "geo_enabled": true, "followers_count": 489, "location": "Richland, Wa", "screen_name": "Jennadear_", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Jenna Tormanen", "profile_use_background_image": false, "description": "Marketing or something @andyet \u2022 Coffee Enthusiast @wearethelocal \u2022 Videographer {Eastern Washington}", "url": "https://t.co/g5X3ldct0t", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659153708341592064/QB5FRwqm_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Apr 23 17:32:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659153708341592064/QB5FRwqm_normal.jpg", "favourites_count": 1648, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685200578268405760", "id": 685200578268405760, "text": "Learning alllllllllllllll the knowledge from @lancestout!!! w/@sallycmohr.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lancestout", "id_str": "17123007", "id": 17123007, "indices": [45, 56], "name": "Lance Stout"}, {"screen_name": "sallycmohr", "id_str": "23568790", "id": 23568790, "indices": [62, 73], "name": "Sally C. Mohr"}]}, "created_at": "Thu Jan 07 20:45:22 +0000 2016", "source": "Twitter Web Client", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 34672729, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1519, "profile_banner_url": "https://pbs.twimg.com/profile_banners/34672729/1447698106", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "221488208", "following": false, "friends_count": 613, "entities": {"description": {"urls": [{"display_url": "wild.land", "url": "http://t.co/ktkvhRQiyM", "expanded_url": "http://wild.land", "indices": [126, 148]}]}, "url": {"urls": [{"display_url": "dribbble.com/tymulholland", "url": "https://t.co/CFdBPTtdzG", "expanded_url": "https://dribbble.com/tymulholland", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 623, "location": "", "screen_name": "tymulholland", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 40, "name": "Ty Mulholland", "profile_use_background_image": true, "description": "Mastermind @wildlandlabs, by mastermind I mean fumbling, fly-by-the-seat-of-my-pants, accidental, ah s###! designer/creative. http://t.co/ktkvhRQiyM", "url": "https://t.co/CFdBPTtdzG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/634592193404010496/o7Yb1ir0_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Nov 30 20:15:09 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634592193404010496/o7Yb1ir0_normal.jpg", "favourites_count": 723, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685522986015719424", "id": 685522986015719424, "text": "\"I believe researching that feature will take 1 hour of cussing and 2 hours of actual research.\" #doitright", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "doitright", "indices": [97, 107]}], "user_mentions": []}, "created_at": "Fri Jan 08 18:06:30 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 221488208, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 2957, "profile_banner_url": "https://pbs.twimg.com/profile_banners/221488208/1434956478", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14697361", "following": false, "friends_count": 184, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dougwaltman.com", "url": "http://t.co/ravmBOhT5Q", "expanded_url": "http://www.dougwaltman.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/533332526064885760/z3_XeSQQ.png", "notifications": false, "profile_sidebar_fill_color": "14161B", "profile_link_color": "309EA6", "geo_enabled": true, "followers_count": 825, "location": "Tri-Cities, WA", "screen_name": "dougwaltman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 59, "name": "Douglas", "profile_use_background_image": true, "description": "Unverified adult, making the world a better place with technology. Connecting, exploring, nerding out, and making art. \u2661", "url": "http://t.co/ravmBOhT5Q", "profile_text_color": "93A097", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662059136599789569/-ny7sQ2R_normal.jpg", "profile_background_color": "131516", "created_at": "Thu May 08 07:13:13 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662059136599789569/-ny7sQ2R_normal.jpg", "favourites_count": 1829, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685522518199816193", "id": 685522518199816193, "text": "We don't get to choose what happens, but we get to choose how we feel about it.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:04:39 +0000 2016", "source": "Twitter Web Client", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14697361, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/533332526064885760/z3_XeSQQ.png", "statuses_count": 5668, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14697361/1445640558", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "536923214", "following": false, "friends_count": 185, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FF6D69", "geo_enabled": false, "followers_count": 207, "location": "Tri Cities", "screen_name": "JaimeHRobles", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Jaime Robles", "profile_use_background_image": false, "description": "President and pixel pusher at @Andyet", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/607249416253087744/YEzcUr-p_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Mar 26 04:37:11 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/607249416253087744/YEzcUr-p_normal.jpg", "favourites_count": 2145, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684834165645119488", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/2-p44-9S4O0", "url": "https://t.co/cekiHK3nYL", "expanded_url": "https://youtu.be/2-p44-9S4O0", "indices": [47, 70]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 20:29:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684834165645119488, "text": "John Cleese: \"So, Anyway...\" | Talks at Google https://t.co/cekiHK3nYL", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 536923214, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 1358, "profile_banner_url": "https://pbs.twimg.com/profile_banners/536923214/1433663921", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "37127416", "following": false, "friends_count": 269, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "shenoalawrence.com", "url": "http://t.co/TjMvjrHu3l", "expanded_url": "http://shenoalawrence.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/107900660/twitterback.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "F28907", "geo_enabled": true, "followers_count": 615, "location": "Seattle, WA", "screen_name": "ShenoaLawrence", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "\u24c8\u24d7\u24d4\u24dd\u24de\u24d0", "profile_use_background_image": false, "description": "Front-end designer, project manager, and adventure seeker. Podcasting at ingoodcompany.fm", "url": "http://t.co/TjMvjrHu3l", "profile_text_color": "B19135", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/633169399130681344/6DXwmKc6_normal.jpg", "profile_background_color": "EEE0C9", "created_at": "Sat May 02 03:20:40 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/633169399130681344/6DXwmKc6_normal.jpg", "favourites_count": 2485, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "681624221848473600", "id": 681624221848473600, "text": "Taking a social media break. Catch you on the flip side.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Dec 28 23:54:13 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 37127416, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/107900660/twitterback.jpg", "statuses_count": 5933, "profile_banner_url": "https://pbs.twimg.com/profile_banners/37127416/1416440886", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "121241223", "following": false, "friends_count": 664, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/554093609696239616/gC_YUGuY.jpeg", "notifications": false, "profile_sidebar_fill_color": "DBDBDB", "profile_link_color": "231DCF", "geo_enabled": false, "followers_count": 300, "location": "Tri-Cities, WA", "screen_name": "jeffboyus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Jeff Boyus", "profile_use_background_image": true, "description": "Primarily a front-end developer using Ampersand/Backbone. I love sports and my timeline may be all over the place at times... so you've been warned.", "url": null, "profile_text_color": "182224", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1795620231/7DF56B64-8150-4CF6-8DC4-6A4F06C02C86_normal", "profile_background_color": "8F82C7", "created_at": "Mon Mar 08 22:11:12 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "162024", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1795620231/7DF56B64-8150-4CF6-8DC4-6A4F06C02C86_normal", "favourites_count": 119, "status": {"in_reply_to_status_id": 684641789781778436, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "DavisHsuSeattle", "in_reply_to_user_id": 55139282, "in_reply_to_status_id_str": "684641789781778436", "in_reply_to_user_id_str": "55139282", "truncated": false, "id_str": "684652133258366976", "id": 684652133258366976, "text": "@DavisHsuSeattle or they like their previous scouting on MIN and GB enough to focus a bit more time on WAS in case.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DavisHsuSeattle", "id_str": "55139282", "id": 55139282, "indices": [0, 16], "name": "DAVIS HSU"}]}, "created_at": "Wed Jan 06 08:26:03 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 121241223, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/554093609696239616/gC_YUGuY.jpeg", "statuses_count": 3836, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "327558148", "following": false, "friends_count": 295, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/793050516/f8489173837e263207c93f89754e89a5.jpeg", "notifications": false, "profile_sidebar_fill_color": "020812", "profile_link_color": "131516", "geo_enabled": false, "followers_count": 172, "location": "Washington State", "screen_name": "Laurie_Wells55", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 1, "name": "Laurie Wells", "profile_use_background_image": true, "description": "Married 37 yrs 2 a great guy 2 Border Collies VinDiesel & Sadie who are crazy, & came out of retirement to work for Amazon Happy Life !", "url": null, "profile_text_color": "2280A9", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564558188935389184/InKgv58-_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri Jul 01 19:23:57 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564558188935389184/InKgv58-_normal.jpeg", "favourites_count": 179, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/793050516/f8489173837e263207c93f89754e89a5.jpeg", "default_profile_image": false, "id": 327558148, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1552, "profile_banner_url": "https://pbs.twimg.com/profile_banners/327558148/1430000910", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "367119191", "following": false, "friends_count": 565, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyet.com", "url": "https://t.co/TCoCuFOO85", "expanded_url": "https://andyet.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 327, "location": "", "screen_name": "DesignSaves", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Illuminati Dropout", "profile_use_background_image": true, "description": "Designer and UX Developer at &yet. Unconditional inclusivity is the only option.", "url": "https://t.co/TCoCuFOO85", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662515784736862210/iqWmEwuK_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Sep 03 12:18:32 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662515784736862210/iqWmEwuK_normal.jpg", "favourites_count": 786, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682780720322891776", "id": 682780720322891776, "text": "A thought I just had: \"who could I pay to put my Christmas tree away?\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 01 04:29:43 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 367119191, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 670, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "20166253", "following": false, "friends_count": 1003, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 132, "location": "", "screen_name": "cyclerunner", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "cyclerunner", "profile_use_background_image": true, "description": "Sir Pinklepot Honeychild Fishfetish, 4th Earl of Duke", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1689671357/doggiePhotoshop_normal.jpg", "profile_background_color": "D0A1D4", "created_at": "Thu Feb 05 17:22:10 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1689671357/doggiePhotoshop_normal.jpg", "favourites_count": 176, "status": {"in_reply_to_status_id": 685611241197416448, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Nero", "in_reply_to_user_id": 6160792, "in_reply_to_status_id_str": "685611241197416448", "in_reply_to_user_id_str": "6160792", "truncated": false, "id_str": "685613838864125952", "id": 685613838864125952, "text": "@Nero if you take the bigotry out of the Milo, what is left?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Nero", "id_str": "6160792", "id": 6160792, "indices": [0, 5], "name": "Milo Yiannopoulos"}]}, "created_at": "Sat Jan 09 00:07:31 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 20166253, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 28586, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "38380590", "following": false, "friends_count": 4632, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "JasonEvanish.com", "url": "http://t.co/0GdIwc7qEB", "expanded_url": "http://JasonEvanish.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/36919524/twitter-background-free-032.jpg", "notifications": false, "profile_sidebar_fill_color": "149E5E", "profile_link_color": "218499", "geo_enabled": false, "followers_count": 8735, "location": "San Francisco via Boston", "screen_name": "Evanish", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 569, "name": "Jason Evanish", "profile_use_background_image": true, "description": "Customer driven product guy. Avid reader. Student of leadership. Founder @Get_Lighthouse to help managers become leaders. Prev @KISSmetrics & @Greenhornboston", "url": "http://t.co/0GdIwc7qEB", "profile_text_color": "011701", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2983505158/46a0f5eadf450f553472c4361133e4cc_normal.jpeg", "profile_background_color": "022330", "created_at": "Thu May 07 05:54:47 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2983505158/46a0f5eadf450f553472c4361133e4cc_normal.jpeg", "favourites_count": 4018, "status": {"in_reply_to_status_id": 685577074417991681, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ToGovern", "in_reply_to_user_id": 166505377, "in_reply_to_status_id_str": "685577074417991681", "in_reply_to_user_id_str": "166505377", "truncated": false, "id_str": "685613343294357504", "id": 685613343294357504, "text": "@ToGovern thanks! You'll also like @Get_Lighthouse then.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ToGovern", "id_str": "166505377", "id": 166505377, "indices": [0, 9], "name": "Corporate Governance"}, {"screen_name": "Get_Lighthouse", "id_str": "2450328954", "id": 2450328954, "indices": [35, 50], "name": "Get Lighthouse"}]}, "created_at": "Sat Jan 09 00:05:33 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 38380590, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/36919524/twitter-background-free-032.jpg", "statuses_count": 33074, "profile_banner_url": "https://pbs.twimg.com/profile_banners/38380590/1402174070", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "163997887", "following": false, "friends_count": 617, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tech.paulcz.net", "url": "http://t.co/pszReLs02g", "expanded_url": "http://tech.paulcz.net", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 783, "location": "Austin, TX", "screen_name": "pczarkowski", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "Czarknado", "profile_use_background_image": true, "description": "Assistant to the Regional Devop", "url": "http://t.co/pszReLs02g", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655945658021490694/fWJNd4Wr_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jul 07 19:59:49 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655945658021490694/fWJNd4Wr_normal.jpg", "favourites_count": 1143, "status": {"in_reply_to_status_id": 685567662189969408, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jesspryles", "in_reply_to_user_id": 239123640, "in_reply_to_status_id_str": "685567662189969408", "in_reply_to_user_id_str": "239123640", "truncated": false, "id_str": "685583721785724928", "id": 685583721785724928, "text": "@jesspryles @BarbecueWife @tmbbq That looks like the start of a beautiful martini", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jesspryles", "id_str": "239123640", "id": 239123640, "indices": [0, 11], "name": "Jess Pryles"}, {"screen_name": "BarbecueWife", "id_str": "2156702220", "id": 2156702220, "indices": [12, 25], "name": "Barbecue Wife"}, {"screen_name": "tmbbq", "id_str": "314842586", "id": 314842586, "indices": [26, 32], "name": "TMBBQ"}]}, "created_at": "Fri Jan 08 22:07:51 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 163997887, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6130, "profile_banner_url": "https://pbs.twimg.com/profile_banners/163997887/1445224049", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5676102", "following": false, "friends_count": 5512, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hanselman.com", "url": "https://t.co/KWE5X1BBOh", "expanded_url": "http://hanselman.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/373869284/sepiabackground.jpg", "notifications": false, "profile_sidebar_fill_color": "B8AA9C", "profile_link_color": "72412C", "geo_enabled": true, "followers_count": 150954, "location": "Portland, Oregon", "screen_name": "shanselman", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 7232, "name": "Scott Hanselman", "profile_use_background_image": true, "description": "Tech, Code, YouTube, Race, Linguistics, Web, Parenting, Fashion, Black Hair, STEM, @OSCON chair, Phony. MSFT, but these are my opinions. @overheardathome", "url": "https://t.co/KWE5X1BBOh", "profile_text_color": "696969", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459455847165218816/I_sH-zvU_normal.jpeg", "profile_background_color": "D1CDC1", "created_at": "Tue May 01 05:55:26 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "B8AA9C", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459455847165218816/I_sH-zvU_normal.jpeg", "favourites_count": 24118, "status": {"in_reply_to_status_id": null, "retweet_count": 39, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685612414331523072", "id": 685612414331523072, "text": "I don't want a SmartTV. I want a DumbTV with an HDMI input. I'm not interested in a lousy insecure TV operating system and slow Netflix app.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:01:52 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 61, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5676102, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/373869284/sepiabackground.jpg", "statuses_count": 134545, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5676102/1398280381", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "176785758", "following": false, "friends_count": 560, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/cdparks", "url": "https://t.co/i3UJKkqCYc", "expanded_url": "http://github.com/cdparks", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 99, "location": "Santa Clara", "screen_name": "cdparx", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 2, "name": "Chris Parks", "profile_use_background_image": true, "description": "Books, Haskell, cycling, chiptunes. Web engineer at Front Row Education.", "url": "https://t.co/i3UJKkqCYc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673630904183447552/BtXDgn8G_normal.jpg", "profile_background_color": "022330", "created_at": "Tue Aug 10 12:43:49 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673630904183447552/BtXDgn8G_normal.jpg", "favourites_count": 589, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685519445159055361", "id": 685519445159055361, "text": ".@alex_kurilin maybe I'm easy to impress, but tmux is blowing my mind", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "alex_kurilin", "id_str": "518123090", "id": 518123090, "indices": [1, 14], "name": "Alexandr Kurilin"}]}, "created_at": "Fri Jan 08 17:52:26 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 176785758, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 320, "profile_banner_url": "https://pbs.twimg.com/profile_banners/176785758/1449441098", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "169213944", "following": false, "friends_count": 975, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "netmeister.org", "url": "https://t.co/ig2RCUAX9I", "expanded_url": "https://www.netmeister.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "300099", "geo_enabled": true, "followers_count": 1873, "location": "New York, NY", "screen_name": "jschauma", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 123, "name": "Jan Schaumann", "profile_use_background_image": false, "description": "Vell, I'm just zis guy, you know?", "url": "https://t.co/ig2RCUAX9I", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551217713230528512/t4O7Iflt_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Jul 21 20:33:15 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551217713230528512/t4O7Iflt_normal.jpeg", "favourites_count": 988, "status": {"in_reply_to_status_id": 509752797156622336, "retweet_count": 2, "place": null, "in_reply_to_screen_name": "jschauma", "in_reply_to_user_id": 169213944, "in_reply_to_status_id_str": "509752797156622336", "in_reply_to_user_id_str": "169213944", "truncated": false, "id_str": "685582148498272256", "id": 685582148498272256, "text": "Is giving an #infosec talk without using the word 'cyber' and not referencing Sun Tsu even allowed? Asking for a friend.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "infosec", "indices": [13, 21]}], "user_mentions": []}, "created_at": "Fri Jan 08 22:01:36 +0000 2016", "source": "very-simple-tweet", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 169213944, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 19568, "profile_banner_url": "https://pbs.twimg.com/profile_banners/169213944/1420256090", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "196702550", "following": false, "friends_count": 1154, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 456, "location": "", "screen_name": "dvdeijk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 35, "name": "David van Deijk", "profile_use_background_image": true, "description": "Emotie is nodig om geluk te vinden, Ratio om het te bereiken.\r\nExpert op (web)applicaties, social media en vrijwilligerssturing.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1826560759/2d248f2e-78f0-4b7f-8f49-cb039a9e2541_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Sep 29 18:27:59 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1826560759/2d248f2e-78f0-4b7f-8f49-cb039a9e2541_normal.png", "favourites_count": 20, "status": {"retweet_count": 316, "retweeted_status": {"retweet_count": 316, "in_reply_to_user_id": null, "possibly_sensitive": true, "id_str": "684944939151527937", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 720, "h": 470, "resize": "fit"}, "small": {"w": 340, "h": 221, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 391, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", "type": "photo", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", "display_url": "pic.twitter.com/WC5wGzrOUk", "id_str": "684944922642759680", "expanded_url": "http://twitter.com/StrangeImages/status/684944939151527937/photo/1", "id": 684944922642759680, "url": "https://t.co/WC5wGzrOUk"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 03:49:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684944939151527937, "text": "https://t.co/WC5wGzrOUk", "coordinates": null, "retweeted": false, "favorite_count": 543, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685525851623047169", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 720, "h": 470, "resize": "fit"}, "small": {"w": 340, "h": 221, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 391, "resize": "fit"}}, "source_status_id_str": "684944939151527937", "media_url": "http://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", "source_user_id_str": "1681431577", "id_str": "684944922642759680", "id": 684944922642759680, "media_url_https": "https://pbs.twimg.com/media/CYFpxzTUQAAR521.jpg", "type": "photo", "indices": [19, 42], "source_status_id": 684944939151527937, "source_user_id": 1681431577, "display_url": "pic.twitter.com/WC5wGzrOUk", "expanded_url": "http://twitter.com/StrangeImages/status/684944939151527937/photo/1", "url": "https://t.co/WC5wGzrOUk"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "StrangeImages", "id_str": "1681431577", "id": 1681431577, "indices": [3, 17], "name": "Cynide And Happiness"}]}, "created_at": "Fri Jan 08 18:17:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685525851623047169, "text": "RT @StrangeImages: https://t.co/WC5wGzrOUk", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 196702550, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7230, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16215661", "following": false, "friends_count": 913, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "leifmadsen.com", "url": "https://t.co/iQoEHSTtV4", "expanded_url": "http://www.leifmadsen.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/605840517/kkd6rs03wn463ps6rs29.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1853, "location": "\u00dcT: 43.521809,-79.698364", "screen_name": "leifmadsen", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 118, "name": "Life Mad Sun", "profile_use_background_image": true, "description": "Co-author of Asterisk: The Future of Telephony and Asterisk: The Definitive Guide.\n\nPartner Engineer - CI and NFV at Red Hat.", "url": "https://t.co/iQoEHSTtV4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/637323360733667329/QQmh-udy_normal.jpg", "profile_background_color": "022330", "created_at": "Wed Sep 10 02:49:53 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637323360733667329/QQmh-udy_normal.jpg", "favourites_count": 2123, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "681999770307571713", "id": 681999770307571713, "text": "Not once have I ever meant \"Ducking\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 30 00:46:30 +0000 2015", "source": "Twitter Web Client", "favorite_count": 6, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16215661, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/605840517/kkd6rs03wn463ps6rs29.png", "statuses_count": 5416, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16215661/1449766084", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "790719620", "following": false, "friends_count": 130, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "CC3366", "geo_enabled": false, "followers_count": 32, "location": "", "screen_name": "kavek9", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "janueric", "profile_use_background_image": true, "description": "eric's jokes, sports, and political comments with only random attempts at grammar.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683890407357284352/fWiCAyVK_normal.jpg", "profile_background_color": "DBE9ED", "created_at": "Thu Aug 30 03:19:23 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBE9ED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683890407357284352/fWiCAyVK_normal.jpg", "favourites_count": 615, "status": {"retweet_count": 8, "retweeted_status": {"in_reply_to_status_id": 685542577488044032, "retweet_count": 8, "place": null, "in_reply_to_screen_name": "JacsonBevens", "in_reply_to_user_id": 295234079, "in_reply_to_status_id_str": "685542577488044032", "in_reply_to_user_id_str": "295234079", "truncated": false, "id_str": "685543133577281536", "id": 685543133577281536, "text": "Believe when I say that Jimmy Graham would be feasting like a Norse king if he were healthy in this offense the way the OL has been playing", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:26:34 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 39, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685568225417936896", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JacsonBevens", "id_str": "295234079", "id": 295234079, "indices": [3, 16], "name": "Jacson A. Bevens"}]}, "created_at": "Fri Jan 08 21:06:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685568225417936896, "text": "RT @JacsonBevens: Believe when I say that Jimmy Graham would be feasting like a Norse king if he were healthy in this offense the way the \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 790719620, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "statuses_count": 531, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2891402324", "following": false, "friends_count": 56, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 50, "location": "", "screen_name": "Inman_Leslie_62", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Leslie Inman", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/531329061872611328/A3Lc1iWt_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Nov 06 00:55:58 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/531329061872611328/A3Lc1iWt_normal.jpeg", "favourites_count": 261, "status": {"in_reply_to_status_id": 683858779276877824, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Mike_Speegle", "in_reply_to_user_id": 196082293, "in_reply_to_status_id_str": "683858779276877824", "in_reply_to_user_id_str": "196082293", "truncated": false, "id_str": "683860091993370624", "id": 683860091993370624, "text": "@Mike_Speegle weirdly pretty...hmmm", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Mike_Speegle", "id_str": "196082293", "id": 196082293, "indices": [0, 13], "name": "Mike Speegle"}]}, "created_at": "Mon Jan 04 03:58:46 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2891402324, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 54, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16340755", "following": false, "friends_count": 153, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cloudpundit.com", "url": "http://t.co/QQVdkoyVS2", "expanded_url": "http://cloudpundit.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 13022, "location": "Washington DC", "screen_name": "cloudpundit", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 750, "name": "Lydia Leong", "profile_use_background_image": true, "description": "VP Distinguished Analyst at Gartner, covering cloud computing, content delivery networks, hosting, and more. Opinions are my own. RTs do not imply agreement.", "url": "http://t.co/QQVdkoyVS2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/78675981/Lydia_normal.jpg", "profile_background_color": "022330", "created_at": "Thu Sep 18 01:38:45 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/78675981/Lydia_normal.jpg", "favourites_count": 3, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685520689370103808", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sumall.com/myweek", "url": "https://t.co/ShJJ98dtrS", "expanded_url": "http://sumall.com/myweek", "indices": [105, 128]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:57:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685520689370103808, "text": "My week on Twitter: 33 New Followers, 17 Mentions, 51.4K Mention Reach. How's your audience growing? via https://t.co/ShJJ98dtrS", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TwentyFeet"}, "default_profile_image": false, "id": 16340755, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 9221, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16340755/1401729570", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "14089059", "following": false, "friends_count": 763, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pingham.com", "url": "http://t.co/kDVpGDlHQk", "expanded_url": "http://www.pingham.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme20/bg.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "BF1238", "geo_enabled": true, "followers_count": 628, "location": "Didsbury, South Manchester", "screen_name": "paulingham", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 32, "name": "Paul Ingham.", "profile_use_background_image": false, "description": "Senior Developer for @OnTheBeachUK and all round awesome guy. Probably the most awesome person you'll ever meet. Views are my own.", "url": "http://t.co/kDVpGDlHQk", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/442807573071556608/ppAO7PHP_normal.jpeg", "profile_background_color": "BF1238", "created_at": "Thu Mar 06 15:14:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/442807573071556608/ppAO7PHP_normal.jpeg", "favourites_count": 10, "status": {"retweet_count": 2198, "retweeted_status": {"retweet_count": 2198, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685111345348521984", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 255, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 480, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", "type": "photo", "indices": [47, 70], "media_url": "http://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", "display_url": "pic.twitter.com/AwSYt5s7OX", "id_str": "685111342987087872", "expanded_url": "http://twitter.com/RachaelKrishna/status/685111345348521984/photo/1", "id": 685111342987087872, "url": "https://t.co/AwSYt5s7OX"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 14:50:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685111345348521984, "text": "Fox is evolving, Fox has evolved into Quadfox. https://t.co/AwSYt5s7OX", "coordinates": null, "retweeted": false, "favorite_count": 2612, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685124160062894080", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 255, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 480, "resize": "fit"}}, "source_status_id_str": "685111345348521984", "media_url": "http://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", "source_user_id_str": "31167776", "id_str": "685111342987087872", "id": 685111342987087872, "media_url_https": "https://pbs.twimg.com/media/CYIBIvZWEAA3NP2.jpg", "type": "photo", "indices": [67, 90], "source_status_id": 685111345348521984, "source_user_id": 31167776, "display_url": "pic.twitter.com/AwSYt5s7OX", "expanded_url": "http://twitter.com/RachaelKrishna/status/685111345348521984/photo/1", "url": "https://t.co/AwSYt5s7OX"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "RachaelKrishna", "id_str": "31167776", "id": 31167776, "indices": [3, 18], "name": "Rachael Krishna"}]}, "created_at": "Thu Jan 07 15:41:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685124160062894080, "text": "RT @RachaelKrishna: Fox is evolving, Fox has evolved into Quadfox. https://t.co/AwSYt5s7OX", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 14089059, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme20/bg.png", "statuses_count": 22624, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14089059/1398369726", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "246586641", "following": false, "friends_count": 746, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/tomsteele", "url": "https://t.co/BjxFlIEzZt", "expanded_url": "https://github.com/tomsteele", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 513, "location": "Boise, ID", "screen_name": "_tomsteele", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 22, "name": "Tom Steele", "profile_use_background_image": true, "description": "", "url": "https://t.co/BjxFlIEzZt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663640413362782208/fE5DDncd_normal.jpg", "profile_background_color": "022330", "created_at": "Thu Feb 03 02:06:57 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663640413362782208/fE5DDncd_normal.jpg", "favourites_count": 947, "status": {"retweet_count": 33, "retweeted_status": {"retweet_count": 33, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679123620308783104", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", "type": "photo", "indices": [94, 117], "media_url": "http://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", "display_url": "pic.twitter.com/x2ITwDRC9E", "id_str": "679123619641864192", "expanded_url": "http://twitter.com/jmgosney/status/679123620308783104/photo/1", "id": 679123619641864192, "url": "https://t.co/x2ITwDRC9E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 22 02:17:43 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679123620308783104, "text": "Happy holidays from Sagitta HPC! We made a Christmas tree and a nativity scene out of GPUs :) https://t.co/x2ITwDRC9E", "coordinates": null, "retweeted": false, "favorite_count": 56, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679125475185135616", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "source_status_id_str": "679123620308783104", "media_url": "http://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", "source_user_id_str": "312383587", "id_str": "679123619641864192", "id": 679123619641864192, "media_url_https": "https://pbs.twimg.com/media/CWy7VXtUsAA4TGb.jpg", "type": "photo", "indices": [108, 131], "source_status_id": 679123620308783104, "source_user_id": 312383587, "display_url": "pic.twitter.com/x2ITwDRC9E", "expanded_url": "http://twitter.com/jmgosney/status/679123620308783104/photo/1", "url": "https://t.co/x2ITwDRC9E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jmgosney", "id_str": "312383587", "id": 312383587, "indices": [3, 12], "name": "Jeremi M Gosney"}]}, "created_at": "Tue Dec 22 02:25:05 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679125475185135616, "text": "RT @jmgosney: Happy holidays from Sagitta HPC! We made a Christmas tree and a nativity scene out of GPUs :) https://t.co/x2ITwDRC9E", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 246586641, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 1177, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "18209670", "following": false, "friends_count": 414, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/882271759/58d21fd2e0431d9b504cf57550d0019d.png", "notifications": false, "profile_sidebar_fill_color": "E8E8E8", "profile_link_color": "B89404", "geo_enabled": true, "followers_count": 757, "location": "pdx \u2022 oregon", "screen_name": "amydearest", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "Amy Lynn Taylor", "profile_use_background_image": true, "description": "letterer, designer & swag master at @andyet. take me to the beach!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/604400972379521024/4Iol5Nyr_normal.jpg", "profile_background_color": "4A4141", "created_at": "Thu Dec 18 05:26:58 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604400972379521024/4Iol5Nyr_normal.jpg", "favourites_count": 1236, "status": {"in_reply_to_status_id": 685008838605455360, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "nrrrdcore", "in_reply_to_user_id": 18496432, "in_reply_to_status_id_str": "685008838605455360", "in_reply_to_user_id_str": "18496432", "truncated": false, "id_str": "685026965103968256", "id": 685026965103968256, "text": "@nrrrdcore Miss you too, lady!!! Hope 2016 is an amazing year for you! \u2728\ud83c\udf89\ud83c\udf08\ud83c\udf69\ud83c\udf1f", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "nrrrdcore", "id_str": "18496432", "id": 18496432, "indices": [0, 10], "name": "Julie Ann Horvath"}]}, "created_at": "Thu Jan 07 09:15:30 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18209670, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/882271759/58d21fd2e0431d9b504cf57550d0019d.png", "statuses_count": 2968, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18209670/1429780917", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Christian, Husband, Security Professional, Zymurgist.", "url": "http://t.co/FcIMyqDn1D", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "14161519", "profile_image_url": "http://pbs.twimg.com/profile_images/425795441137942528/MKPIEfkm_normal.jpeg", "friends_count": 278, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.liftsecurity.io", "url": "http://t.co/FcIMyqDn1D", "expanded_url": "http://blog.liftsecurity.io", "indices": [0, 22]}]}}, "profile_background_color": "022330", "created_at": "Mon Mar 17 05:16:11 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 790, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/425795441137942528/MKPIEfkm_normal.jpeg", "favourites_count": 747, "listed_count": 18, "geo_enabled": false, "follow_request_sent": false, "followers_count": 198, "following": false, "default_profile_image": false, "id": 14161519, "blocked_by": false, "name": "Jon Lamendola", "location": "Tri-Cities, Washington", "screen_name": "jon_lamendola", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": true, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15839160", "following": false, "friends_count": 393, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/802935671/3526cfcd432db9a1b194a58fd53258c3.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 174, "location": "Richland, WA", "screen_name": "shadowking", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "Matt", "profile_use_background_image": true, "description": "Dad, Computer Geek, Seeking World Domination", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/469317185496563712/hzejFsWa_normal.jpeg", "profile_background_color": "396DA5", "created_at": "Wed Aug 13 16:59:11 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469317185496563712/hzejFsWa_normal.jpeg", "favourites_count": 19, "status": {"in_reply_to_status_id": 666810637390061570, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "seank", "in_reply_to_user_id": 1251781, "in_reply_to_status_id_str": "666810637390061570", "in_reply_to_user_id_str": "1251781", "truncated": false, "id_str": "666815014708244480", "id": 666815014708244480, "text": "@seank @andyet Not it. But @hjon might know a lot more than I do.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "seank", "id_str": "1251781", "id": 1251781, "indices": [0, 6], "name": "Sean Kelly"}, {"screen_name": "andyet", "id_str": "41294568", "id": 41294568, "indices": [7, 14], "name": "&yet"}, {"screen_name": "hjon", "id_str": "8446052", "id": 8446052, "indices": [27, 32], "name": "Jon Hjelle"}]}, "created_at": "Wed Nov 18 03:07:42 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15839160, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/802935671/3526cfcd432db9a1b194a58fd53258c3.jpeg", "statuses_count": 100, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15839160/1406223575", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "36700219", "following": false, "friends_count": 191, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.danger.computer", "url": "https://t.co/QDoQ6jSQlH", "expanded_url": "http://blog.danger.computer", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/19825055/scematic.gif", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "CD678B", "geo_enabled": false, "followers_count": 551, "location": "The Internet", "screen_name": "wraithgar", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 58, "name": "Gar", "profile_use_background_image": true, "description": "That's me I'm Gar.", "url": "https://t.co/QDoQ6jSQlH", "profile_text_color": "008000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684124704643223552/w8QjxnMH_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Apr 30 16:12:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684124704643223552/w8QjxnMH_normal.jpg", "favourites_count": 7937, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685598426990444544", "id": 685598426990444544, "text": "TIL there are still people out there who will put www in front of any url you give them.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:06:17 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 36700219, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/19825055/scematic.gif", "statuses_count": 14795, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36700219/1397581843", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "22577946", "following": false, "friends_count": 357, "entities": {"description": {"urls": [{"display_url": "jennpm.com", "url": "http://t.co/Hh0LGhrdhx", "expanded_url": "http://jennpm.com", "indices": [68, 90]}]}, "url": {"urls": [{"display_url": "tinyletter.com/renrutnnej", "url": "https://t.co/66aBzBcFPN", "expanded_url": "https://tinyletter.com/renrutnnej", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/788428227/2a7556d8d4ef62ef128d880c9832fd54.jpeg", "notifications": false, "profile_sidebar_fill_color": "F5DA2E", "profile_link_color": "45BFA4", "geo_enabled": true, "followers_count": 1166, "location": "Brooklyn, NY", "screen_name": "renrutnnej", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 81, "name": "Jenn Turner", "profile_use_background_image": false, "description": "Young, wild and free. Except for the young part. And the wild part. http://t.co/Hh0LGhrdhx", "url": "https://t.co/66aBzBcFPN", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624664971742310404/zlx538-s_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Mar 03 03:25:12 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624664971742310404/zlx538-s_normal.jpg", "favourites_count": 15202, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685610321629831170", "id": 685610321629831170, "text": "Hearts are so weird. Just when I think mine's completely full, someone shows up and boom! There's room for more.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:53:33 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 22577946, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/788428227/2a7556d8d4ef62ef128d880c9832fd54.jpeg", "statuses_count": 14951, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22577946/1448822155", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "404215418", "following": false, "friends_count": 336, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyet.com", "url": "http://t.co/XD7F7KJqCZ", "expanded_url": "http://andyet.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886967261/1724fffecf73d7b8c22b3ce21cccfa4c.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "94D487", "geo_enabled": false, "followers_count": 397, "location": "The Dalles, OR", "screen_name": "missfelony", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "melanie", "profile_use_background_image": false, "description": "A frequent filmmaker, photographer and theology student. Lover of honey bees and my peoples at &yet.", "url": "http://t.co/XD7F7KJqCZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/644167511764697088/IIMFrV4Y_normal.jpg", "profile_background_color": "F5E5CB", "created_at": "Thu Nov 03 16:16:18 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/644167511764697088/IIMFrV4Y_normal.jpg", "favourites_count": 947, "status": {"retweet_count": 0, "in_reply_to_user_id": 15281965, "possibly_sensitive": false, "id_str": "684456894983843840", "in_reply_to_user_id_str": "15281965", "entities": {"symbols": [], "urls": [{"display_url": "lizvice.com/calendar/", "url": "https://t.co/b5lqCB2xTC", "expanded_url": "http://www.lizvice.com/calendar/", "indices": [116, 139]}], "hashtags": [], "user_mentions": [{"screen_name": "fosterhunting", "id_str": "15281965", "id": 15281965, "indices": [0, 14], "name": "Foster Huntington"}]}, "created_at": "Tue Jan 05 19:30:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "fosterhunting", "in_reply_to_status_id_str": null, "truncated": false, "id": 684456894983843840, "text": "@fosterhunting By chance do u open your home in (Humboldt) to nice people on tour? We make great guests! Jan 25th https://t.co/b5lqCB2xTC", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 404215418, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886967261/1724fffecf73d7b8c22b3ce21cccfa4c.jpeg", "statuses_count": 541, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "72917560", "following": false, "friends_count": 201, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "FF0000", "geo_enabled": false, "followers_count": 237, "location": "", "screen_name": "StephanieMaier", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 14, "name": "Stephanie Maier", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495316813518237696/JajTx181_normal.jpeg", "profile_background_color": "BADFCD", "created_at": "Wed Sep 09 18:36:28 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "F2E195", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495316813518237696/JajTx181_normal.jpeg", "favourites_count": 728, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "578740117755465728", "id": 578740117755465728, "text": "Hardest lesson I\u2019ve learned to date: If something seems too good to be true, it probably is.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Mar 20 02:09:31 +0000 2015", "source": "Tweetbot for Mac", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 72917560, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "statuses_count": 1568, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "326997078", "following": false, "friends_count": 224, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 214, "location": "Kennewick, WA", "screen_name": "DanielChBarnes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Daniel Barnes", "profile_use_background_image": true, "description": "programmer, paraglider", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/514517153559494657/Q5zlmgX0_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Jun 30 20:44:12 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/514517153559494657/Q5zlmgX0_normal.jpeg", "favourites_count": 410, "status": {"in_reply_to_status_id": 657038086522564608, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "McKurves", "in_reply_to_user_id": 214349059, "in_reply_to_status_id_str": "657038086522564608", "in_reply_to_user_id_str": "214349059", "truncated": false, "id_str": "657072222150914048", "id": 657072222150914048, "text": "@McKurves just never much to use it for too me.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "McKurves", "id_str": "214349059", "id": 214349059, "indices": [0, 9], "name": "\uff2b\uff41\uff44\uff45"}]}, "created_at": "Thu Oct 22 05:53:20 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 326997078, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 737, "profile_banner_url": "https://pbs.twimg.com/profile_banners/326997078/1411505627", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "37875884", "following": false, "friends_count": 126, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "4A913C", "geo_enabled": false, "followers_count": 551, "location": "Tri Cities", "screen_name": "ericzanol", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 47, "name": "Eric", "profile_use_background_image": false, "description": "Dry wit, bleeding heart, can\u2019t lose.", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680148284736864257/SyqcadxG_normal.jpg", "profile_background_color": "352726", "created_at": "Tue May 05 06:56:24 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680148284736864257/SyqcadxG_normal.jpg", "favourites_count": 2381, "status": {"retweet_count": 5, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 5, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685562906017136640", "id": 685562906017136640, "text": "Happiness is when what you think, what you say, and what you do are in harmony. -M. K. Gandhi", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:45:08 +0000 2016", "source": "Hootsuite", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685571850949144576", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ldavidmarquet", "id_str": "165091971", "id": 165091971, "indices": [3, 17], "name": "David Marquet"}]}, "created_at": "Fri Jan 08 21:20:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685571850949144576, "text": "RT @ldavidmarquet: Happiness is when what you think, what you say, and what you do are in harmony. -M. K. Gandhi", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 37875884, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 180, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "186343313", "following": false, "friends_count": 121, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "unneeded.info", "url": "http://t.co/1yci9kxdeJ", "expanded_url": "http://unneeded.info", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 324, "location": "Kennewick, WA", "screen_name": "quitlahok", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 20, "name": "Nathan LaFreniere", "profile_use_background_image": true, "description": "I work at &yet where I pretend I know how to program, and occasionally fix whatever's broken", "url": "http://t.co/1yci9kxdeJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/448225972865622017/qWgtXEYW_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Sep 03 05:43:46 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/448225972865622017/qWgtXEYW_normal.jpeg", "favourites_count": 13, "status": {"in_reply_to_status_id": 679719966816374785, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "wraithgar", "in_reply_to_user_id": 36700219, "in_reply_to_status_id_str": "679719966816374785", "in_reply_to_user_id_str": "36700219", "truncated": false, "id_str": "680060113932046338", "id": 680060113932046338, "text": "@wraithgar @brycebaril he talks about as much as i did too", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "wraithgar", "id_str": "36700219", "id": 36700219, "indices": [0, 10], "name": "Gar"}, {"screen_name": "brycebaril", "id_str": "7515742", "id": 7515742, "indices": [11, 22], "name": "Bryce Baril"}]}, "created_at": "Thu Dec 24 16:19:00 +0000 2015", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 186343313, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 549, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "26330898", "following": false, "friends_count": 342, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rckbt.me", "url": "https://t.co/oqkVcYlwPm", "expanded_url": "http://rckbt.me", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 8038, "location": "Bay Area, CA", "screen_name": "rockbot", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 480, "name": "Raquel V\u00e9lez", "profile_use_background_image": true, "description": "purveyor of flan \u2219 web wombat at @npmjs \u2219 polyglot \u2219 co-host of @reactivepod", "url": "https://t.co/oqkVcYlwPm", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657044546430177280/47ES_A2x_normal.jpg", "profile_background_color": "022330", "created_at": "Tue Mar 24 21:38:23 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657044546430177280/47ES_A2x_normal.jpg", "favourites_count": 8443, "status": {"in_reply_to_status_id": 685577669900169217, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ag_dubs", "in_reply_to_user_id": 304067888, "in_reply_to_status_id_str": "685577669900169217", "in_reply_to_user_id_str": "304067888", "truncated": false, "id_str": "685577888381321216", "id": 685577888381321216, "text": "@ag_dubs @wafflejs omggggg\n\nmaybe? :-D", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ag_dubs", "id_str": "304067888", "id": 304067888, "indices": [0, 8], "name": "ashley williams"}, {"screen_name": "wafflejs", "id_str": "3338088405", "id": 3338088405, "indices": [9, 18], "name": "WaffleJS"}]}, "created_at": "Fri Jan 08 21:44:40 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 26330898, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 17452, "profile_banner_url": "https://pbs.twimg.com/profile_banners/26330898/1385156937", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17123007", "following": false, "friends_count": 146, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lance.im", "url": "https://t.co/83MrRTiW4A", "expanded_url": "http://lance.im", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 506, "location": "West Richland, WA ", "screen_name": "lancestout", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Lance Stout", "profile_use_background_image": true, "description": "JS / Node / XMPP developer at @andyet", "url": "https://t.co/83MrRTiW4A", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/517111112181899265/EdolLRh8_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Nov 03 01:01:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517111112181899265/EdolLRh8_normal.png", "favourites_count": 209, "status": {"in_reply_to_status_id": 671373498619592705, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "wraithgar", "in_reply_to_user_id": 36700219, "in_reply_to_status_id_str": "671373498619592705", "in_reply_to_user_id_str": "36700219", "truncated": false, "id_str": "671377713643393025", "id": 671377713643393025, "text": "@wraithgar For a while, our phones would tell us how long it'd take to get to your house on the weekends..", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "wraithgar", "id_str": "36700219", "id": 36700219, "indices": [0, 10], "name": "Gar"}]}, "created_at": "Mon Nov 30 17:18:15 +0000 2015", "source": "Twitter for Mac", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17123007, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 234, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "44897658", "following": false, "friends_count": 961, "entities": {"description": {"urls": [{"display_url": "deepfield.net", "url": "http://t.co/zwaTxtC536", "expanded_url": "http://deepfield.net", "indices": [26, 48]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 103, "location": "4th and Maynard ... ", "screen_name": "halfaleague", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Luke Carmichael", "profile_use_background_image": true, "description": "python clojure c + data @ http://t.co/zwaTxtC536", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1525229600/macke_lady_thumb_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Jun 05 14:00:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1525229600/macke_lady_thumb_normal.jpg", "favourites_count": 35, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685580888982159360", "id": 685580888982159360, "text": "Our new Epoca espresso machine at Deepfield is so good. I apologize to the local economy for how much less coffee I'll be buying.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:56:36 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685586744444489728", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "naim", "id_str": "7228172", "id": 7228172, "indices": [3, 8], "name": "Naim Falandino"}]}, "created_at": "Fri Jan 08 22:19:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685586744444489728, "text": "RT @naim: Our new Epoca espresso machine at Deepfield is so good. I apologize to the local economy for how much less coffee I'll be buying.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 44897658, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 355, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "78663", "following": false, "friends_count": 616, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ceejbot.tumblr.com", "url": "https://t.co/BKkuBfyOm7", "expanded_url": "http://ceejbot.tumblr.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/149122382/x59fbc11347f5afe2a4e736cd31efed2.jpg", "notifications": false, "profile_sidebar_fill_color": "E8DDCB", "profile_link_color": "472C04", "geo_enabled": true, "followers_count": 2579, "location": "Menlo Park, CA", "screen_name": "ceejbot", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 216, "name": "Secret Ceej Weapon", "profile_use_background_image": true, "description": "Ceej aka ceejbot. THE NPM SIEGE BOT. Innovative thought admiral-ship in cat-related tweeting.", "url": "https://t.co/BKkuBfyOm7", "profile_text_color": "031634", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631253658743603200/XeO_3PC7_normal.jpg", "profile_background_color": "CDB380", "created_at": "Mon Dec 18 23:22:16 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "036564", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631253658743603200/XeO_3PC7_normal.jpg", "favourites_count": 11779, "status": {"in_reply_to_status_id": 685569257409765377, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/ab2f2fac83aa388d.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.34266, 37.699279], [-122.114711, 37.699279], [-122.114711, 37.8847092], [-122.34266, 37.8847092]]], "type": "Polygon"}, "full_name": "Oakland, CA", "contained_within": [], "country_code": "US", "id": "ab2f2fac83aa388d", "name": "Oakland"}, "in_reply_to_screen_name": "DanielleSucher", "in_reply_to_user_id": 19393655, "in_reply_to_status_id_str": "685569257409765377", "in_reply_to_user_id_str": "19393655", "truncated": false, "id_str": "685598431209914368", "id": 685598431209914368, "text": "@DanielleSucher *hugs* and not crazy at all IMO.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DanielleSucher", "id_str": "19393655", "id": 19393655, "indices": [0, 15], "name": "Danielle Sucher"}]}, "created_at": "Fri Jan 08 23:06:18 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 78663, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/149122382/x59fbc11347f5afe2a4e736cd31efed2.jpg", "statuses_count": 34269, "profile_banner_url": "https://pbs.twimg.com/profile_banners/78663/1400545557", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "810132127", "following": false, "friends_count": 1590, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flipboard.com/@cdurant", "url": "https://t.co/aibuc166qC", "expanded_url": "https://flipboard.com/@cdurant", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 341, "location": "San Francisco, CA", "screen_name": "colin_durant", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "Colin DuRant", "profile_use_background_image": true, "description": "Analytics & product at @clever formerly @flipboard @catalogspree / SF by way of SJ and OK", "url": "https://t.co/aibuc166qC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/523882538779942913/q14cM8U1_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Sep 08 03:52:28 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/523882538779942913/q14cM8U1_normal.jpeg", "favourites_count": 3962, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681855917378293760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "apple.news/A5b8trld-SUeWl\u2026", "url": "https://t.co/usDHcNomwE", "expanded_url": "https://apple.news/A5b8trld-SUeWl9Wzn4xrdQ", "indices": [64, 87]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 29 15:14:53 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681855917378293760, "text": "San Francisco's Self-Defeating Housing Activists - The Atlantic https://t.co/usDHcNomwE", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681913746965442560", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "apple.news/A5b8trld-SUeWl\u2026", "url": "https://t.co/usDHcNomwE", "expanded_url": "https://apple.news/A5b8trld-SUeWl9Wzn4xrdQ", "indices": [78, 101]}], "hashtags": [], "user_mentions": [{"screen_name": "drfourny", "id_str": "255787439", "id": 255787439, "indices": [3, 12], "name": "Diane Rogers Fourny"}]}, "created_at": "Tue Dec 29 19:04:41 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681913746965442560, "text": "RT @drfourny: San Francisco's Self-Defeating Housing Activists - The Atlantic https://t.co/usDHcNomwE", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 810132127, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1654, "profile_banner_url": "https://pbs.twimg.com/profile_banners/810132127/1413738305", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14498374", "following": false, "friends_count": 979, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyet.net/team/nathan", "url": "https://t.co/sHqfMeNd0i", "expanded_url": "http://andyet.net/team/nathan", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 1583, "location": "Kennewick, WA", "screen_name": "fritzy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 124, "name": "Fritzy", "profile_use_background_image": true, "description": "@andyet Chief Architect by day, Indie game dev by night.", "url": "https://t.co/sHqfMeNd0i", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677258552621142017/fyRHHsb-_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Apr 23 18:26:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677258552621142017/fyRHHsb-_normal.jpg", "favourites_count": 7346, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685611889636671488", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 224, "h": 495, "resize": "fit"}, "medium": {"w": 224, "h": 495, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 224, "h": 495, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPIYXkUMAAJQz5.png", "type": "photo", "indices": [82, 105], "media_url": "http://pbs.twimg.com/media/CYPIYXkUMAAJQz5.png", "display_url": "pic.twitter.com/5quACdznFY", "id_str": "685611889259196416", "expanded_url": "http://twitter.com/fritzy/status/685611889636671488/photo/1", "id": 685611889259196416, "url": "https://t.co/5quACdznFY"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "firefox", "id_str": "2142731", "id": 2142731, "indices": [25, 33], "name": "Firefox"}, {"screen_name": "github", "id_str": "13334762", "id": 13334762, "indices": [57, 64], "name": "GitHub"}]}, "created_at": "Fri Jan 08 23:59:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685611889636671488, "text": "So, about moving back to @Firefox. No plugins, just on a @github code page. Nope. https://t.co/5quACdznFY", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14498374, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 9830, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14498374/1427130806", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "346307007", "following": false, "friends_count": 263, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "louisefristensky.com", "url": "http://t.co/TNsqxaAiRL", "expanded_url": "http://www.louisefristensky.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/341688821/California_Cows6.jpg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 94, "location": "Mountainside, NJ", "screen_name": "RamblingLouise", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Louise Fristensky", "profile_use_background_image": true, "description": "A Composer. A wanderer. Food. Art. and sweet sweet Music.", "url": "http://t.co/TNsqxaAiRL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000620805231/7b9212e77ca86fbbf6b883b6e167ebb7_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Mon Aug 01 02:06:37 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000620805231/7b9212e77ca86fbbf6b883b6e167ebb7_normal.jpeg", "favourites_count": 430, "status": {"retweet_count": 0, "in_reply_to_user_id": 35490819, "possibly_sensitive": false, "id_str": "685286688676036608", "in_reply_to_user_id_str": "35490819", "entities": {"media": [{"sizes": {"large": {"w": 561, "h": 370, "resize": "fit"}, "medium": {"w": 561, "h": 370, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 224, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKgnLHWMAILBxT.jpg", "type": "photo", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/CYKgnLHWMAILBxT.jpg", "display_url": "pic.twitter.com/I3UH0Ea7Ji", "id_str": "685286688172683266", "expanded_url": "http://twitter.com/RamblingLouise/status/685286688676036608/photo/1", "id": 685286688172683266, "url": "https://t.co/I3UH0Ea7Ji"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "timoandres", "id_str": "35490819", "id": 35490819, "indices": [0, 11], "name": "Timo Andres"}]}, "created_at": "Fri Jan 08 02:27:33 +0000 2016", "favorited": false, "in_reply_to_status_id": 685265488205737985, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": "timoandres", "in_reply_to_status_id_str": "685265488205737985", "truncated": false, "id": 685286688676036608, "text": "@timoandres https://t.co/I3UH0Ea7Ji", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 346307007, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/341688821/California_Cows6.jpg", "statuses_count": 725, "profile_banner_url": "https://pbs.twimg.com/profile_banners/346307007/1430450101", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "13137632", "following": false, "friends_count": 1939, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "supine.com", "url": "http://t.co/Berf3TCv", "expanded_url": "http://supine.com", "indices": [0, 20]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 618, "location": "An Aussie living in Frankfurt", "screen_name": "martinbarry", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Martin Barry", "profile_use_background_image": true, "description": "Sysadmin / Network Ops", "url": "http://t.co/Berf3TCv", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2137176918/martin_barry_headshot_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Feb 06 03:53:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2137176918/martin_barry_headshot_normal.jpg", "favourites_count": 247, "status": {"retweet_count": 29, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 29, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "681959073034727425", "id": 681959073034727425, "text": "NYC, I'm looking for a great ops team to work with! (Realized I hadn't publicly said that I'm searching. Reluctant use of #devops tag here.)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "devops", "indices": [122, 129]}], "user_mentions": []}, "created_at": "Tue Dec 29 22:04:47 +0000 2015", "source": "Twitter Web Client", "favorite_count": 16, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685194442333122560", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "devops", "indices": [136, 140]}], "user_mentions": [{"screen_name": "cerephic", "id_str": "14166535", "id": 14166535, "indices": [3, 12], "name": "Ceren Ercen"}]}, "created_at": "Thu Jan 07 20:21:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685194442333122560, "text": "RT @cerephic: NYC, I'm looking for a great ops team to work with! (Realized I hadn't publicly said that I'm searching. Reluctant use of #de\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TalonForSupine"}, "default_profile_image": false, "id": 13137632, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5400, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13137632/1402574766", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "250397632", "following": false, "friends_count": 525, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "caremad.io", "url": "https://t.co/N7EFH3OI46", "expanded_url": "https://caremad.io/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 2297, "location": "Philadelphia, PA", "screen_name": "dstufft", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 157, "name": "Donald Stufft", "profile_use_background_image": true, "description": "pip // PyPI // Python // cryptography\n\nI am perpetually caremad.\n\nI care a lot about security. \n\nAgitator and profesional rabble rouser.", "url": "https://t.co/N7EFH3OI46", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2589562873/85j1remox0wdwpycnmpt_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Fri Feb 11 00:55:49 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2589562873/85j1remox0wdwpycnmpt_normal.jpeg", "favourites_count": 47, "status": {"retweet_count": 704, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 704, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685516987859120128", "id": 685516987859120128, "text": "Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're on track", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:42:40 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 635, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685538376716529665", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "McKelvie", "id_str": "14276679", "id": 14276679, "indices": [3, 12], "name": "Jamie McKelvie"}]}, "created_at": "Fri Jan 08 19:07:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685538376716529665, "text": "RT @McKelvie: Blade Runner takes place in 2019, where's my world ruled by corporations and environment ruined by man wait never mind we're \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 250397632, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 14451, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "41817149", "following": false, "friends_count": 1199, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "0051A8", "geo_enabled": true, "followers_count": 235, "location": "Village", "screen_name": "donnysp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Duncan Rance", "profile_use_background_image": true, "description": "wip", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670239079255187456/z5bnpVZV_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Fri May 22 14:04:10 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670239079255187456/z5bnpVZV_normal.jpg", "favourites_count": 300, "status": {"retweet_count": 22, "retweeted_status": {"retweet_count": 22, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684866848429584386", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 639, "h": 576, "resize": "fit"}, "medium": {"w": 600, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 306, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", "type": "photo", "indices": [39, 62], "media_url": "http://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", "display_url": "pic.twitter.com/qf2RHVXc2g", "id_str": "684866840808538112", "expanded_url": "http://twitter.com/banalyst/status/684866848429584386/photo/1", "id": 684866840808538112, "url": "https://t.co/qf2RHVXc2g"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 22:39:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684866848429584386, "text": "Not sure about this Rising Damp reboot https://t.co/qf2RHVXc2g", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685251375480070144", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 639, "h": 576, "resize": "fit"}, "medium": {"w": 600, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 306, "resize": "fit"}}, "source_status_id_str": "684866848429584386", "media_url": "http://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", "source_user_id_str": "29412015", "id_str": "684866840808538112", "id": 684866840808538112, "media_url_https": "https://pbs.twimg.com/media/CYEiw1zWQAA2XoZ.jpg", "type": "photo", "indices": [53, 76], "source_status_id": 684866848429584386, "source_user_id": 29412015, "display_url": "pic.twitter.com/qf2RHVXc2g", "expanded_url": "http://twitter.com/banalyst/status/684866848429584386/photo/1", "url": "https://t.co/qf2RHVXc2g"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "banalyst", "id_str": "29412015", "id": 29412015, "indices": [3, 12], "name": "Zorro P Freely"}]}, "created_at": "Fri Jan 08 00:07:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685251375480070144, "text": "RT @banalyst: Not sure about this Rising Damp reboot https://t.co/qf2RHVXc2g", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 41817149, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 1384, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41817149/1414050232", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "784467", "following": false, "friends_count": 2089, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 1650, "location": "", "screen_name": "complex", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 109, "name": "Anthony Elizondo", "profile_use_background_image": false, "description": "sysadmin, geek, ruby, vmware, freebsd, pop culture, startups, hockey, burritos, beer, gadgets, movies, environment, arduino, \u0e2d\u0e32\u0e2b\u0e32\u0e23, comida espa\u00f1ola, and you.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Feb 20 21:23:17 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", "favourites_count": 853, "status": {"retweet_count": 23, "retweeted_status": {"retweet_count": 23, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685457956939427840", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "theatlantic.com/technology/arc\u2026", "url": "https://t.co/OlOZjb71Cp", "expanded_url": "http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/", "indices": [0, 23]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 13:48:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685457956939427840, "text": "https://t.co/OlOZjb71Cp well I wrote about northern Virginia.", "coordinates": null, "retweeted": false, "favorite_count": 41, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685495702529650689", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "theatlantic.com/technology/arc\u2026", "url": "https://t.co/OlOZjb71Cp", "expanded_url": "http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/", "indices": [17, 40]}], "hashtags": [], "user_mentions": [{"screen_name": "lifewinning", "id_str": "348082699", "id": 348082699, "indices": [3, 15], "name": "Ingrid Burrington"}]}, "created_at": "Fri Jan 08 16:18:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685495702529650689, "text": "RT @lifewinning: https://t.co/OlOZjb71Cp well I wrote about northern Virginia.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 784467, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 14687, "profile_banner_url": "https://pbs.twimg.com/profile_banners/784467/1396966682", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "2652345853", "following": false, "friends_count": 333, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": false, "followers_count": 238, "location": "somewhere in minnesota", "screen_name": "annamarls", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 15, "name": "canadamarls", "profile_use_background_image": true, "description": "Rogue Canadian, discreet intellectual, impassioned feminist, audacious traveler, gluttonous reader of young adult sci-fi. she/her", "url": null, "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684083531576811521/Q42bXcA7_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Thu Jul 17 00:04:14 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684083531576811521/Q42bXcA7_normal.jpg", "favourites_count": 9906, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685282354349355012", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "large": {"w": 1024, "h": 1025, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKclHVUsAETV5D.jpg", "type": "photo", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/CYKclHVUsAETV5D.jpg", "display_url": "pic.twitter.com/V0k9KL3f70", "id_str": "685282254751313921", "expanded_url": "http://twitter.com/annamarls/status/685282354349355012/photo/1", "id": 685282254751313921, "url": "https://t.co/V0k9KL3f70"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 02:10:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685282354349355012, "text": "I thought I had enough t-shirts, but then... https://t.co/V0k9KL3f70", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2652345853, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 8083, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652345853/1445212313", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15102110", "following": false, "friends_count": 356, "entities": {"description": {"urls": [{"display_url": "gumroad.com/henrikjoreteg/", "url": "https://t.co/Duu1O9DHXR", "expanded_url": "http://gumroad.com/henrikjoreteg/", "indices": [123, 146]}]}, "url": {"urls": [{"display_url": "joreteg.com", "url": "https://t.co/2XYoNHOk0q", "expanded_url": "http://joreteg.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "12B6C4", "geo_enabled": true, "followers_count": 9942, "location": "Tri-Cities, WA", "screen_name": "HenrikJoreteg", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 632, "name": "Henrik Joreteg", "profile_use_background_image": false, "description": "Progressive Web App developer, consultant, author, and educator. \n\nThe web is the future of mobile and IoT.\n\nmailing list: https://t.co/Duu1O9DHXR\u2026", "url": "https://t.co/2XYoNHOk0q", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/425625343144103936/BJf6lFhU_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Thu Jun 12 22:54:23 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/425625343144103936/BJf6lFhU_normal.jpeg", "favourites_count": 2733, "status": {"in_reply_to_status_id": 685520844609589248, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "davidlymanning", "in_reply_to_user_id": 310674727, "in_reply_to_status_id_str": "685520844609589248", "in_reply_to_user_id_str": "310674727", "truncated": false, "id_str": "685521940694433792", "id": 685521940694433792, "text": "@davidlymanning it's not negative, per se. But it can be a bit exhausting at times :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "davidlymanning", "id_str": "310674727", "id": 310674727, "indices": [0, 15], "name": "David Manning"}]}, "created_at": "Fri Jan 08 18:02:21 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15102110, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 15793, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15102110/1431973648", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16969318", "following": false, "friends_count": 878, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "\u2026NUWillTravel.ApesSeekingKnowledge.net", "url": "http://t.co/c1YitYiUzs", "expanded_url": "http://HaveGNUWillTravel.ApesSeekingKnowledge.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 494, "location": "R'lyeh", "screen_name": "curiousbiped", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 64, "name": "Bag of mostly water", "profile_use_background_image": true, "description": "Have GNU, Will Travel. Speaker to Computers, though the words I say are often impolite.", "url": "http://t.co/c1YitYiUzs", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000503809944/dba3f6ccda9fe5f0bdf7f7edcea767ea_normal.png", "profile_background_color": "022330", "created_at": "Sat Oct 25 17:53:45 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000503809944/dba3f6ccda9fe5f0bdf7f7edcea767ea_normal.png", "favourites_count": 1224, "status": {"retweet_count": 37, "retweeted_status": {"retweet_count": 37, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685255684582055936", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 600, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", "type": "photo", "indices": [56, 79], "media_url": "http://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", "display_url": "pic.twitter.com/eEGDrqYhoM", "id_str": "685255664604581888", "expanded_url": "http://twitter.com/PeoplesVuePoint/status/685255684582055936/photo/1", "id": 685255664604581888, "url": "https://t.co/eEGDrqYhoM"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 00:24:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685255684582055936, "text": "Great Prognostications In American Conservative History https://t.co/eEGDrqYhoM", "coordinates": null, "retweeted": false, "favorite_count": 37, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685554071156162560", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 600, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "source_status_id_str": "685255684582055936", "media_url": "http://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", "source_user_id_str": "331317907", "id_str": "685255664604581888", "id": 685255664604581888, "media_url_https": "https://pbs.twimg.com/media/CYKEZXUUkAAl3TV.jpg", "type": "photo", "indices": [77, 100], "source_status_id": 685255684582055936, "source_user_id": 331317907, "display_url": "pic.twitter.com/eEGDrqYhoM", "expanded_url": "http://twitter.com/PeoplesVuePoint/status/685255684582055936/photo/1", "url": "https://t.co/eEGDrqYhoM"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "PeoplesVuePoint", "id_str": "331317907", "id": 331317907, "indices": [3, 19], "name": "Zach Beasley"}]}, "created_at": "Fri Jan 08 20:10:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685554071156162560, "text": "RT @PeoplesVuePoint: Great Prognostications In American Conservative History https://t.co/eEGDrqYhoM", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 16969318, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 4951, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "72935642", "following": false, "friends_count": 235, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/xicombd", "url": "https://t.co/9kqeImMQWG", "expanded_url": "http://github.com/xicombd", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 326, "location": "Lisbon \u2708 London", "screen_name": "xicombd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Francisco Baio Dias", "profile_use_background_image": true, "description": "Node.js consultant at @YLDio! Sometimes makes silly games with @BraveBunnyGames", "url": "https://t.co/9kqeImMQWG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/486593422040371200/rTQ_I4gZ_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Sep 09 19:57:50 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/486593422040371200/rTQ_I4gZ_normal.jpeg", "favourites_count": 1607, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685584880961482752", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bravebunny.co", "url": "https://t.co/iHPF1p8Jl4", "expanded_url": "http://bravebunny.co", "indices": [80, 103]}, {"display_url": "pic.twitter.com/Fhu9QZGclu", "url": "https://t.co/Fhu9QZGclu", "expanded_url": "http://twitter.com/BraveBunnyGames/status/685584880961482752/photo/1", "indices": [113, 136]}], "hashtags": [{"text": "gamedev", "indices": [104, 112]}], "user_mentions": []}, "created_at": "Fri Jan 08 22:12:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685584880961482752, "text": "We updated our website, added dome new games and prototypes! What do you think?\nhttps://t.co/iHPF1p8Jl4\n#gamedev https://t.co/Fhu9QZGclu", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685585269010100224", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bravebunny.co", "url": "https://t.co/iHPF1p8Jl4", "expanded_url": "http://bravebunny.co", "indices": [101, 124]}, {"display_url": "pic.twitter.com/Fhu9QZGclu", "url": "https://t.co/Fhu9QZGclu", "expanded_url": "http://twitter.com/BraveBunnyGames/status/685584880961482752/photo/1", "indices": [139, 140]}], "hashtags": [{"text": "gamedev", "indices": [125, 133]}], "user_mentions": [{"screen_name": "BraveBunnyGames", "id_str": "3014589334", "id": 3014589334, "indices": [3, 19], "name": "Brave Bunny"}]}, "created_at": "Fri Jan 08 22:14:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685585269010100224, "text": "RT @BraveBunnyGames: We updated our website, added dome new games and prototypes! What do you think?\nhttps://t.co/iHPF1p8Jl4\n#gamedev https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 72935642, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 595, "profile_banner_url": "https://pbs.twimg.com/profile_banners/72935642/1444598387", "is_translator": false}, {"time_zone": "Stockholm", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "15094025", "following": false, "friends_count": 943, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/matspetersson", "url": "http://t.co/eUA2BLJQdN", "expanded_url": "http://about.me/matspetersson", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/704081407/a2f6dea3e6284c9be6cea69517705c4e.png", "notifications": false, "profile_sidebar_fill_color": "587189", "profile_link_color": "F06311", "geo_enabled": false, "followers_count": 219, "location": "Sweden", "screen_name": "entropi", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Mats Petersson", "profile_use_background_image": false, "description": "Kommunikat\u00f6r. Tidningsfantast. F\u00e5gelsk\u00e5dare. Naturvetarjunkie. Cyklar g\u00e4rna. Sm\u00e5l\u00e4nning. Tedrickare. Mellanchef i egen verksamhet. Kartn\u00f6rd. Bild: Lars Lerin", "url": "http://t.co/eUA2BLJQdN", "profile_text_color": "A39691", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/603177577897918464/KSYjfL8F_normal.jpg", "profile_background_color": "EEEEEE", "created_at": "Thu Jun 12 06:16:11 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "sv", "profile_image_url_https": "https://pbs.twimg.com/profile_images/603177577897918464/KSYjfL8F_normal.jpg", "favourites_count": 148, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "671777548515344385", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "willworkfortattoos.com", "url": "https://t.co/YhXE6jEFeU", "expanded_url": "http://www.willworkfortattoos.com", "indices": [56, 79]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 01 19:47:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 671777548515344385, "text": "Do you need a new logotype? Hire me, pay with a tattoo. https://t.co/YhXE6jEFeU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 15094025, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/704081407/a2f6dea3e6284c9be6cea69517705c4e.png", "statuses_count": 1264, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15094025/1392045318", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "806210", "following": false, "friends_count": 1441, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "briantanaka.com", "url": "http://t.co/bPxXcabgVT", "expanded_url": "http://www.briantanaka.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000180789931/geQ0PE6C.png", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 694, "location": "San Francisco Bay Area", "screen_name": "btanaka", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 34, "name": "Brian Tanaka", "profile_use_background_image": true, "description": "Stuff I use for fun and profit: Python, Vim, Git, Linux, and so on.", "url": "http://t.co/bPxXcabgVT", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/571401186943574016/FtOYv-02_normal.jpeg", "profile_background_color": "022330", "created_at": "Fri Mar 02 14:50:18 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/571401186943574016/FtOYv-02_normal.jpeg", "favourites_count": 1, "status": {"in_reply_to_status_id": 684486982752288768, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "iluvcompsci", "in_reply_to_user_id": 1332857102, "in_reply_to_status_id_str": "684486982752288768", "in_reply_to_user_id_str": "1332857102", "truncated": false, "id_str": "684537950802055168", "id": 684537950802055168, "text": "@iluvcompsci No way!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "iluvcompsci", "id_str": "1332857102", "id": 1332857102, "indices": [0, 12], "name": "Bri Chapman"}]}, "created_at": "Wed Jan 06 00:52:20 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 806210, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000180789931/geQ0PE6C.png", "statuses_count": 4425, "profile_banner_url": "https://pbs.twimg.com/profile_banners/806210/1411251006", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "12524622", "following": false, "friends_count": 1720, "entities": {"description": {"urls": [{"display_url": "make8bitart.com", "url": "https://t.co/zaBLoHykZE", "expanded_url": "http://make8bitart.com", "indices": [97, 120]}, {"display_url": "instagram.com/jenn", "url": "https://t.co/gU8YuaYVSH", "expanded_url": "http://instagram.com/jenn", "indices": [122, 145]}]}, "url": {"urls": [{"display_url": "jennmoney.biz", "url": "https://t.co/bxZjaPVmBS", "expanded_url": "http://jennmoney.biz", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/454274435055230978/1Ww8jwZg.png", "notifications": false, "profile_sidebar_fill_color": "99CCCC", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 14497, "location": "jersey city ", "screen_name": "jennschiffer", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 768, "name": "shingyVEVO", "profile_use_background_image": true, "description": "i am definitely most certainly unequivocally undisputedly not a cop \u2022 @bocoup, @jerseyscriptusa, https://t.co/zaBLoHykZE, https://t.co/gU8YuaYVSH", "url": "https://t.co/bxZjaPVmBS", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683382430120685568/A9xcIOxY_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jan 22 05:42:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683382430120685568/A9xcIOxY_normal.jpg", "favourites_count": 60491, "status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597323829751808", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/1WRErgry8f", "url": "https://t.co/1WRErgry8f", "expanded_url": "http://twitter.com/jennschiffer/status/685597323829751808/photo/1", "indices": [5, 28]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:01:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597323829751808, "text": "same https://t.co/1WRErgry8f", "coordinates": null, "retweeted": false, "favorite_count": 34, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 12524622, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/454274435055230978/1Ww8jwZg.png", "statuses_count": 57842, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12524622/1451026178", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "49820803", "following": false, "friends_count": 298, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/watch?v=PWmfNe\u2026", "url": "https://t.co/YINbmSx8E9", "expanded_url": "https://www.youtube.com/watch?v=PWmfNeLs7fA", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/444961569948966912/ND9JLEF2.jpeg", "notifications": false, "profile_sidebar_fill_color": "F0F0F5", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 9580, "location": "Lexically bound", "screen_name": "aphyr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 373, "name": "\u2200sket", "profile_use_background_image": true, "description": "Trophy husband of @ericajoy, purveyor of jockstrap selfies. 'Internal records show you're more offensive than @MrSLeather but better than @BoundJocks.'", "url": "https://t.co/YINbmSx8E9", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/639508069752279040/ipgD4h36_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jun 23 00:12:37 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639508069752279040/ipgD4h36_normal.jpg", "favourites_count": 23507, "status": {"retweet_count": 75, "retweeted_status": {"retweet_count": 75, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685517196529922049", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 888, "h": 499, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", "type": "photo", "indices": [30, 53], "media_url": "http://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", "display_url": "pic.twitter.com/UiGZUOctyQ", "id_str": "685517196118900736", "expanded_url": "http://twitter.com/chrisk5000/status/685517196529922049/photo/1", "id": 685517196118900736, "url": "https://t.co/UiGZUOctyQ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:43:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685517196529922049, "text": "distributed databases be like https://t.co/UiGZUOctyQ", "coordinates": null, "retweeted": false, "favorite_count": 56, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685573066873778176", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 888, "h": 499, "resize": "fit"}}, "source_status_id_str": "685517196529922049", "media_url": "http://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", "source_user_id_str": "37232065", "id_str": "685517196118900736", "id": 685517196118900736, "media_url_https": "https://pbs.twimg.com/media/CYNyQgIWwAAsJfk.jpg", "type": "photo", "indices": [46, 69], "source_status_id": 685517196529922049, "source_user_id": 37232065, "display_url": "pic.twitter.com/UiGZUOctyQ", "expanded_url": "http://twitter.com/chrisk5000/status/685517196529922049/photo/1", "url": "https://t.co/UiGZUOctyQ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "chrisk5000", "id_str": "37232065", "id": 37232065, "indices": [3, 14], "name": "chrisk5000"}]}, "created_at": "Fri Jan 08 21:25:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685573066873778176, "text": "RT @chrisk5000: distributed databases be like https://t.co/UiGZUOctyQ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 49820803, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/444961569948966912/ND9JLEF2.jpeg", "statuses_count": 41239, "profile_banner_url": "https://pbs.twimg.com/profile_banners/49820803/1443201143", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "625093", "following": false, "friends_count": 1921, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "beginningwithi.com", "url": "http://t.co/243IACccPc", "expanded_url": "http://beginningwithi.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/31522/keyb.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "FF0044", "geo_enabled": false, "followers_count": 2886, "location": "Bay Area", "screen_name": "DeirdreS", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 196, "name": "Deirdr\u00e9 Straughan", "profile_use_background_image": true, "description": "People connector. Woman with opinions (all mine). Work on cloud @Ericsson. I do and tweet about technology, among other things. Had breast cancer. Over it.", "url": "http://t.co/243IACccPc", "profile_text_color": "000000", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/674300197103525888/4UBqHN-J_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Thu Jan 11 10:18:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674300197103525888/4UBqHN-J_normal.jpg", "favourites_count": 533, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612725985136641", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "thenation.com/article/yes-hi\u2026", "url": "https://t.co/isJ9BqlaFP", "expanded_url": "http://www.thenation.com/article/yes-hillarys-a-democrat/", "indices": [116, 139]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:03:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612725985136641, "text": "What\u2019s wrong with wanting to see a highly qualified liberal-feminist woman in the most powerful job in the world? https://t.co/isJ9BqlaFP", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "iOS"}, "default_profile_image": false, "id": 625093, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/31522/keyb.jpg", "statuses_count": 42395, "profile_banner_url": "https://pbs.twimg.com/profile_banners/625093/1398656840", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "6083342", "following": false, "friends_count": 3073, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tonyarcieri.com", "url": "https://t.co/BPlVYoJhSX", "expanded_url": "http://tonyarcieri.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623707235345145857/RQTCdVn0.jpg", "notifications": false, "profile_sidebar_fill_color": "EDEDED", "profile_link_color": "373E75", "geo_enabled": true, "followers_count": 7457, "location": "San Francisco, CA", "screen_name": "bascule", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 390, "name": "Tony Arcieri", "profile_use_background_image": true, "description": "@SquareEng CyberSecurity Engineer. Tweets about cybercrypto, cyberauthority systems, and cyber. Creator of @celluloidrb and @TheCryptosphere. Cyber.", "url": "https://t.co/BPlVYoJhSX", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/450061818606522368/pjDTHFB9_normal.jpeg", "profile_background_color": "373E75", "created_at": "Wed May 16 08:32:42 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/450061818606522368/pjDTHFB9_normal.jpeg", "favourites_count": 8733, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609915646226433", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/tonyvernall/st\u2026", "url": "https://t.co/P8li8PI6WD", "expanded_url": "https://twitter.com/tonyvernall/status/685584647267442688", "indices": [83, 106]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:51:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609915646226433, "text": "Maybe if we take two terrible things and combine them the terrible will cancel out https://t.co/P8li8PI6WD", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 6083342, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623707235345145857/RQTCdVn0.jpg", "statuses_count": 39861, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6083342/1398287020", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "13350372", "following": false, "friends_count": 583, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jedgar.co", "url": "https://t.co/Yh90tJ832s", "expanded_url": "http://jedgar.co", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000100660867/c0f46373de96d3498a580deb86afade8.jpeg", "notifications": false, "profile_sidebar_fill_color": "FCFCFC", "profile_link_color": "535F85", "geo_enabled": true, "followers_count": 17115, "location": "Manhattan, NY", "screen_name": "jedgar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 303, "name": "John Edgar", "profile_use_background_image": true, "description": "child of the www, lover of the arts, traveler of the world, solver of the problems. politics, sailing, startup, feminist, weird. Building @staehere ecology+tech", "url": "https://t.co/Yh90tJ832s", "profile_text_color": "A1A1A1", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638396887133913088/oNeUBUxj_normal.jpg", "profile_background_color": "936C6C", "created_at": "Mon Feb 11 15:44:37 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638396887133913088/oNeUBUxj_normal.jpg", "favourites_count": 9281, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612208789811201", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 605, "resize": "fit"}, "medium": {"w": 575, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 575, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPIqsuUoAIWrKR.jpg", "type": "photo", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CYPIqsuUoAIWrKR.jpg", "display_url": "pic.twitter.com/lTDyzwSECr", "id_str": "685612204175958018", "expanded_url": "http://twitter.com/jedgar/status/685612208789811201/photo/1", "id": 685612204175958018, "url": "https://t.co/lTDyzwSECr"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:01:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612208789811201, "text": "https://t.co/lTDyzwSECr", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 13350372, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000100660867/c0f46373de96d3498a580deb86afade8.jpeg", "statuses_count": 31400, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13350372/1443731819", "is_translator": false}, {"time_zone": "Europe/Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "2426271", "following": false, "friends_count": 387, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ralphm.net", "url": "http://t.co/Fa3sxfYE4J", "expanded_url": "http://ralphm.net/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 563, "location": "Eindhoven", "screen_name": "ralphm", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Ralph Meijer", "profile_use_background_image": true, "description": "Hacker and drummer. Real-time, federated social web. XMPP Standards Foundation Board member, publish-subscribe, Python, Twisted, Wokkel. @mail_gun / @rackspace", "url": "http://t.co/Fa3sxfYE4J", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459006420390649856/eMX8uh4q_normal.png", "profile_background_color": "9AE4E8", "created_at": "Tue Mar 27 07:42:01 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459006420390649856/eMX8uh4q_normal.png", "favourites_count": 1178, "status": {"in_reply_to_status_id": 685041111572869120, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "hynek", "in_reply_to_user_id": 14914177, "in_reply_to_status_id_str": "685041111572869120", "in_reply_to_user_id_str": "14914177", "truncated": false, "id_str": "685066377678434304", "id": 685066377678434304, "text": "@hynek and/or make their XMPP support first class citizen /cc @SinaBahram", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "hynek", "id_str": "14914177", "id": 14914177, "indices": [0, 6], "name": "Hynek Schlawack"}, {"screen_name": "SinaBahram", "id_str": "114569401", "id": 114569401, "indices": [62, 73], "name": "Sina Bahram"}]}, "created_at": "Thu Jan 07 11:52:07 +0000 2016", "source": "Twitter for Android", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2426271, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2732, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2426271/1358272747", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7751912", "following": false, "friends_count": 2002, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jhigley.com", "url": "https://t.co/CA3K2xy3fr", "expanded_url": "http://jhigley.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "94D487", "geo_enabled": false, "followers_count": 746, "location": "Richland, WA", "screen_name": "higley", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 55, "name": "Hooligan", "profile_use_background_image": false, "description": "I'm a lesser known character from the Internet. \n\nSwedish Fish are my spirit animal.", "url": "https://t.co/CA3K2xy3fr", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685137678946308096/aZzkDSOa_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Jul 27 03:29:39 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685137678946308096/aZzkDSOa_normal.jpg", "favourites_count": 4082, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684845096102043648", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "thestranger.com/blogs/slog/201\u2026", "url": "https://t.co/GHQ5j9vZzX", "expanded_url": "http://www.thestranger.com/blogs/slog/2016/01/06/23350480/my-dad-worked-at-the-malheur-national-wildlife-refuge-and-he-knows-what-happens-when-ranchers-get-their-way", "indices": [109, 132]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 21:12:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684845096102043648, "text": "My Dad Worked at the Malheur National Wildlife Refuge, and He Knows What Happens When Ranchers Get Their Way https://t.co/GHQ5j9vZzX", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684848495413432320", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "thestranger.com/blogs/slog/201\u2026", "url": "https://t.co/GHQ5j9vZzX", "expanded_url": "http://www.thestranger.com/blogs/slog/2016/01/06/23350480/my-dad-worked-at-the-malheur-national-wildlife-refuge-and-he-knows-what-happens-when-ranchers-get-their-way", "indices": [121, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "ahecht", "id_str": "4543101", "id": 4543101, "indices": [3, 10], "name": "Anthony Hecht"}]}, "created_at": "Wed Jan 06 21:26:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684848495413432320, "text": "RT @ahecht: My Dad Worked at the Malheur National Wildlife Refuge, and He Knows What Happens When Ranchers Get Their Way https://t.co/GHQ5j\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 7751912, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 8292, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7751912/1402521594", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1568", "following": false, "friends_count": 588, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "adambrault.com", "url": "http://t.co/u1D1iCKwhH", "expanded_url": "http://adambrault.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/6986352/backdrop3.jpg", "notifications": false, "profile_sidebar_fill_color": "FAFAFA", "profile_link_color": "09ACED", "geo_enabled": false, "followers_count": 3068, "location": "EccenTriCities + The Internet", "screen_name": "adambrault", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 202, "name": "adam", "profile_use_background_image": false, "description": "@andyet founder. @andyetconf conspirator. @triconf instigator. @tcpublicmarket rouser. Collaborator in @fusespc @usetalky @liftsecurity. Terrific firestarter.", "url": "http://t.co/u1D1iCKwhH", "profile_text_color": "222222", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629171593814544384/2jp9uAYU_normal.jpg", "profile_background_color": "333333", "created_at": "Sun Jul 16 21:01:39 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "333333", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629171593814544384/2jp9uAYU_normal.jpg", "favourites_count": 12056, "status": {"retweet_count": 112, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 112, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684083104777109504", "id": 684083104777109504, "text": "\"You have to be one or the other.\"\n\"I don't have to. I'm both.\"\n\"That isn't even a thing!\"\n\"Is too! It's called 'wave-particle duality'.\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 18:44:56 +0000 2016", "source": "Hootsuite", "favorite_count": 120, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "684085968073166848", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MicroSFF", "id_str": "1376608884", "id": 1376608884, "indices": [3, 12], "name": "Micro SF/F Fiction"}]}, "created_at": "Mon Jan 04 18:56:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684085968073166848, "text": "RT @MicroSFF: \"You have to be one or the other.\"\n\"I don't have to. I'm both.\"\n\"That isn't even a thing!\"\n\"Is too! It's called 'wave-particl\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 1568, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/6986352/backdrop3.jpg", "statuses_count": 19795, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1568/1438841667", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16535661", "following": false, "friends_count": 874, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "robotgrrl.com", "url": "http://t.co/hHXlVUBA1z", "expanded_url": "http://robotgrrl.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000172757239/odPrjp9g.jpeg", "notifications": false, "profile_sidebar_fill_color": "6EFA19", "profile_link_color": "7700C7", "geo_enabled": true, "followers_count": 6461, "location": "Canada", "screen_name": "RobotGrrl", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 324, "name": "RobotGrrl \ue12b", "profile_use_background_image": true, "description": "Studio[Y] fellow @MaRSDD #StudioY - Fab Academy student - Intel Emerging Young Entrepreneur - Maker of RoboBrrd - Gold medal @ Intl RoboGames - Mac & iOS dev", "url": "http://t.co/hHXlVUBA1z", "profile_text_color": "4A3D30", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3634861506/af661544e8a2ef98602dffafb0c6918d_normal.jpeg", "profile_background_color": "FC6500", "created_at": "Tue Sep 30 21:58:11 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3634861506/af661544e8a2ef98602dffafb0c6918d_normal.jpeg", "favourites_count": 4662, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684937097682096128", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 258, "resize": "fit"}, "large": {"w": 1024, "h": 779, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 456, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYFiqOlUMAAUZvJ.jpg", "type": "photo", "indices": [108, 131], "media_url": "http://pbs.twimg.com/media/CYFiqOlUMAAUZvJ.jpg", "display_url": "pic.twitter.com/jMpFwoMrDO", "id_str": "684937095945662464", "expanded_url": "http://twitter.com/RobotGrrl/status/684937097682096128/photo/1", "id": 684937095945662464, "url": "https://t.co/jMpFwoMrDO"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 03:18:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684937097682096128, "text": "The ROBOT PARTY will be Saturday at 7PM ET! Share your bots w/ other makers \u2014 reply if you want to join in! https://t.co/jMpFwoMrDO", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16535661, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000172757239/odPrjp9g.jpeg", "statuses_count": 10559, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16535661/1448405813", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "19090770", "following": false, "friends_count": 338, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kylewm.com", "url": "https://t.co/zxQkhDten5", "expanded_url": "https://kylewm.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 186, "location": "Burlingame, CA", "screen_name": "kylewmahan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Kyle Mahan", "profile_use_background_image": true, "description": "For every coin there is an equal and opposite bird.", "url": "https://t.co/zxQkhDten5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641457114381074432/vUdKopH8_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Fri Jan 16 22:51:18 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641457114381074432/vUdKopH8_normal.jpg", "favourites_count": 2027, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685191733919875072", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 300, "h": 300, "resize": "fit"}, "medium": {"w": 300, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 300, "h": 300, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJKQGnU0AAV4ct.jpg", "type": "photo", "indices": [29, 52], "media_url": "http://pbs.twimg.com/media/CYJKQGnU0AAV4ct.jpg", "display_url": "pic.twitter.com/f9B0nAKCNP", "id_str": "685191733827653632", "expanded_url": "http://twitter.com/kylewmahan/status/685191733919875072/photo/1", "id": 685191733827653632, "url": "https://t.co/f9B0nAKCNP"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 20:10:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685191733919875072, "text": "Larry the Cucumber: no lips. https://t.co/f9B0nAKCNP", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "groomsman-kylewm.com"}, "default_profile_image": false, "id": 19090770, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 5712, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2809321", "following": false, "friends_count": 732, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "funk.co.uk/jokethief", "url": "http://t.co/CTXEScpW42", "expanded_url": "http://funk.co.uk/jokethief", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/536532/double_bow.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 1366, "location": "London", "screen_name": "Deek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 75, "name": "Deek Deekster", "profile_use_background_image": true, "description": "The imagination is not a State: it is the Human existence itself. \u2013 William Blake.", "url": "http://t.co/CTXEScpW42", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/81711236/funkbaby150_normal.jpg", "profile_background_color": "7A684E", "created_at": "Thu Mar 29 08:15:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/81711236/funkbaby150_normal.jpg", "favourites_count": 1066, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "681769694492233728", "id": 681769694492233728, "text": "described", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 29 09:32:16 +0000 2015", "source": "TweetCaster for iOS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2809321, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/536532/double_bow.jpg", "statuses_count": 26149, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2809321/1347980689", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2149850018", "following": false, "friends_count": 1349, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bret.io", "url": "https://t.co/nwoGndmEhz", "expanded_url": "http://bret.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000099971838/42731531dc2f28d52cc57df7848a43ee.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3C3C3C", "geo_enabled": true, "followers_count": 381, "location": "Portland, OR", "screen_name": "bretolius", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 38, "name": "Bret Comnes", "profile_use_background_image": true, "description": "super serious business twiter", "url": "https://t.co/nwoGndmEhz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/473135457975283712/41oMFXBB_normal.jpeg", "profile_background_color": "F5F5F5", "created_at": "Tue Oct 22 22:57:49 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/473135457975283712/41oMFXBB_normal.jpeg", "favourites_count": 2024, "status": {"in_reply_to_status_id": 685588073128804354, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "oneshotchch", "in_reply_to_user_id": 2975656664, "in_reply_to_status_id_str": "685588073128804354", "in_reply_to_user_id_str": "2975656664", "truncated": false, "id_str": "685588514927316992", "id": 685588514927316992, "text": "@oneshotchch That would be super cool to get out though! TY", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "oneshotchch", "id_str": "2975656664", "id": 2975656664, "indices": [0, 12], "name": "Oneshot Christchurch"}]}, "created_at": "Fri Jan 08 22:26:54 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2149850018, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000099971838/42731531dc2f28d52cc57df7848a43ee.jpeg", "statuses_count": 748, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2149850018/1401817534", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2407626138", "following": false, "friends_count": 13, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rascul.io", "url": "https://t.co/fnyTNoPEUT", "expanded_url": "https://rascul.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 11, "location": "Pennsylvania", "screen_name": "rascul3", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Ray Schulz", "profile_use_background_image": true, "description": "", "url": "https://t.co/fnyTNoPEUT", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/454812691069038592/2nHc2cKi_normal.jpeg", "profile_background_color": "131516", "created_at": "Sun Mar 23 19:22:55 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/454812691069038592/2nHc2cKi_normal.jpeg", "favourites_count": 0, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "664630993123315712", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "i.destroy.tokyo/Rascul/", "url": "https://t.co/1PIwZL1Oiy", "expanded_url": "https://i.destroy.tokyo/Rascul/", "indices": [11, 34]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Nov 12 02:29:11 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "sv", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 664630993123315712, "text": "lrn2rascul https://t.co/1PIwZL1Oiy", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Known Twitter Syndication"}, "default_profile_image": false, "id": 2407626138, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 10, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2407626138/1397271246", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14256966", "following": false, "friends_count": 402, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "robjameskelley.com", "url": "http://t.co/qLikakmjjU", "expanded_url": "http://robjameskelley.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5124586/b1c459dda3582d06e52bd429a54af160.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 314, "location": "", "screen_name": "pyroonaswing", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "pyroonaswing", "profile_use_background_image": true, "description": "photographer. tech enthusiast. dancing superstar.", "url": "http://t.co/qLikakmjjU", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000716794365/86b1e457c939d6d24f1c290d89031566_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Sun Mar 30 07:58:16 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000716794365/86b1e457c939d6d24f1c290d89031566_normal.jpeg", "favourites_count": 444, "status": {"in_reply_to_status_id": 678282365224026112, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "El_Doctor88", "in_reply_to_user_id": 31355945, "in_reply_to_status_id_str": "678282365224026112", "in_reply_to_user_id_str": "31355945", "truncated": false, "id_str": "678282893815324672", "id": 678282893815324672, "text": "@El_Doctor88 no way?! I googled nes gameshark & couldn't figure out why I couldn't find what I remembered using till I saw genie. Classic", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "El_Doctor88", "id_str": "31355945", "id": 31355945, "indices": [0, 12], "name": "Patrick P."}]}, "created_at": "Sat Dec 19 18:36:58 +0000 2015", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14256966, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5124586/b1c459dda3582d06e52bd429a54af160.jpg", "statuses_count": 7322, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14447132", "following": false, "friends_count": 955, "entities": {"description": {"urls": [{"display_url": "oauth.net", "url": "http://t.co/zBgRc3GHvO", "expanded_url": "http://oauth.net", "indices": [75, 97]}, {"display_url": "micropub.net", "url": "http://t.co/yDBCPnanjA", "expanded_url": "http://micropub.net", "indices": [111, 133]}]}, "url": {"urls": [{"display_url": "aaronparecki.com", "url": "https://t.co/sUmpTDQA8l", "expanded_url": "http://aaronparecki.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/185835062/4786064324_b7049fbec8_b.jpg", "notifications": false, "profile_sidebar_fill_color": "94C8FF", "profile_link_color": "FF5900", "geo_enabled": true, "followers_count": 3093, "location": "Portland, OR", "screen_name": "aaronpk", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 316, "name": "Aaron Parecki", "profile_use_background_image": true, "description": "CTO @EsriPDX R&D Center \u2022 Cofounder of #indieweb/@indiewebcamp \u2022 Maintains http://t.co/zBgRc3GHvO \u2022 Creator of http://t.co/yDBCPnanjA", "url": "https://t.co/sUmpTDQA8l", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3657148842/934fb225b84b8fd3effe5ab95bb18005_normal.jpeg", "profile_background_color": "7A9AAF", "created_at": "Sat Apr 19 22:38:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3657148842/934fb225b84b8fd3effe5ab95bb18005_normal.jpeg", "favourites_count": 3597, "status": {"retweet_count": 0, "in_reply_to_user_id": 296398358, "possibly_sensitive": false, "id_str": "685611029493985281", "in_reply_to_user_id_str": "296398358", "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "large": {"w": 960, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 400, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPHmQnUwAAXsz5.jpg", "type": "photo", "indices": [40, 63], "media_url": "http://pbs.twimg.com/media/CYPHmQnUwAAXsz5.jpg", "display_url": "pic.twitter.com/GH7oQXKBwI", "id_str": "685611028399308800", "expanded_url": "http://twitter.com/aaronpk/status/685611029493985281/photo/1", "id": 685611028399308800, "url": "https://t.co/GH7oQXKBwI"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "lucashammill", "id_str": "296398358", "id": 296398358, "indices": [0, 13], "name": "Luke Hammill"}]}, "created_at": "Fri Jan 08 23:56:22 +0000 2016", "favorited": false, "in_reply_to_status_id": 684757252633280513, "lang": "en", "geo": {"coordinates": [45.521893, -122.638494], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.7900653, 45.421863], [-122.471751, 45.421863], [-122.471751, 45.6509405], [-122.7900653, 45.6509405]]], "type": "Polygon"}, "full_name": "Portland, OR", "contained_within": [], "country_code": "US", "id": "ac88a4f17a51c7fc", "name": "Portland"}, "in_reply_to_screen_name": "lucashammill", "in_reply_to_status_id_str": "684757252633280513", "truncated": false, "id": 685611029493985281, "text": "@lucashammill It's all in the lighting. https://t.co/GH7oQXKBwI", "coordinates": {"coordinates": [-122.638494, 45.521893], "type": "Point"}, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Bridgy"}, "default_profile_image": false, "id": 14447132, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/185835062/4786064324_b7049fbec8_b.jpg", "statuses_count": 6234, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14447132/1398201184", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13860742", "following": false, "friends_count": 4823, "entities": {"description": {"urls": [{"display_url": "calmtechnology.com", "url": "http://t.co/bOKIYApk0t", "expanded_url": "http://calmtechnology.com", "indices": [101, 123]}]}, "url": {"urls": [{"display_url": "caseorganic.com", "url": "http://t.co/IMSCSEyFQw", "expanded_url": "http://caseorganic.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/220733289/xc8c5ed789f413b46fc32145db5e2cb1.png", "notifications": false, "profile_sidebar_fill_color": "C9C9C9", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 20823, "location": "Portland, OR", "screen_name": "caseorganic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1943, "name": "Amber Case", "profile_use_background_image": false, "description": "Calm technology, cyborgs, future of location and mobile. Working on @mycompassapp and @calmtechbook. http://t.co/bOKIYApk0t Formerly founder of @geoloqi.", "url": "http://t.co/IMSCSEyFQw", "profile_text_color": "1C1F23", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/577987854745239552/yquRHGzt_normal.jpeg", "profile_background_color": "252525", "created_at": "Sat Feb 23 10:43:27 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BFBFBF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/577987854745239552/yquRHGzt_normal.jpeg", "favourites_count": 3414, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685578323016073216", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 768, "h": 1024, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 453, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOp2YgUMAATMHh.jpg", "type": "photo", "indices": [109, 132], "media_url": "http://pbs.twimg.com/media/CYOp2YgUMAATMHh.jpg", "display_url": "pic.twitter.com/rcup9P0sMt", "id_str": "685578320046469120", "expanded_url": "http://twitter.com/caseorganic/status/685578323016073216/photo/1", "id": 685578320046469120, "url": "https://t.co/rcup9P0sMt"}], "symbols": [], "urls": [{"display_url": "amazon.com/Calm-Technolog\u2026", "url": "https://t.co/q1BFmTG2yv", "expanded_url": "http://www.amazon.com/Calm-Technology-Principles-Patterns-Non-Intrusive/dp/1491925884", "indices": [75, 98]}], "hashtags": [{"text": "calmtech", "indices": [99, 108]}], "user_mentions": []}, "created_at": "Fri Jan 08 21:46:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685578323016073216, "text": "Was just sent this picture of the youngest reader of Calm Technology yet! https://t.co/q1BFmTG2yv #calmtech https://t.co/rcup9P0sMt", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 13860742, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/220733289/xc8c5ed789f413b46fc32145db5e2cb1.png", "statuses_count": 25851, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13860742/1426638493", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "783092", "following": false, "friends_count": 3667, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "werd.io", "url": "http://t.co/n2griYFTdR", "expanded_url": "http://werd.io/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/584714231/ncbqjrotq7pwip9v0110.jpeg", "notifications": false, "profile_sidebar_fill_color": "D4E6F1", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 5071, "location": "San Francisco Bay Area", "screen_name": "benwerd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 367, "name": "Ben Werdm\u00fcller", "profile_use_background_image": true, "description": "CEO, @withknown. Previously @elgg. Humanist technologist. Equality and adventures.", "url": "http://t.co/n2griYFTdR", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681986174966104064/t3BubQKk_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Feb 20 13:34:20 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681986174966104064/t3BubQKk_normal.jpg", "favourites_count": 11271, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682834736452997122", "id": 682834736452997122, "text": "Happy new year!!! Best wishes for a wonderful 2016 to all. \n\n(Happy hangover, UK.)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 01 08:04:22 +0000 2016", "source": "werd.io", "favorite_count": 7, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 783092, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/584714231/ncbqjrotq7pwip9v0110.jpeg", "statuses_count": 33964, "profile_banner_url": "https://pbs.twimg.com/profile_banners/783092/1440331990", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "11628", "following": false, "friends_count": 1270, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tantek.com", "url": "http://t.co/krTnc8jAFk", "expanded_url": "http://tantek.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 71425, "location": "Pacific Time Zone", "screen_name": "t", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1923, "name": "Tantek \u00c7elik", "profile_use_background_image": true, "description": "Cofounder: #indieweb #barcamp @IndieWebCamp @microformats.\nWorking @Mozilla: @CSSWG @W3CAB.\nMaking: @Falcon @CASSISjs.\n#fightfortheusers & aspiring runner.", "url": "http://t.co/krTnc8jAFk", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Nov 07 02:26:19 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH_normal.jpeg", "favourites_count": 0, "status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685519566106066944", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 640, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYN0aboUkAA-r2W.jpg", "type": "photo", "indices": [107, 130], "media_url": "http://pbs.twimg.com/media/CYN0aboUkAA-r2W.jpg", "display_url": "pic.twitter.com/7cFTaaoweb", "id_str": "685519565732745216", "expanded_url": "http://twitter.com/t/status/685519566106066944/photo/1", "id": 685519565732745216, "url": "https://t.co/7cFTaaoweb"}], "symbols": [], "urls": [{"display_url": "tantek.com/2016/008/t1/we\u2026", "url": "https://t.co/T4aAFoQatR", "expanded_url": "http://tantek.com/2016/008/t1/welcome-bladerunner-replicant-roy-batty", "indices": [82, 105]}], "hashtags": [{"text": "BladeRunner", "indices": [36, 48]}], "user_mentions": []}, "created_at": "Fri Jan 08 17:52:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685519566106066944, "text": "2016-01-08: Welcome to the world of #BladeRunner\nToday is Replicant Roy Batty\u2019s\u2026 (https://t.co/T4aAFoQatR) https://t.co/7cFTaaoweb", "coordinates": null, "retweeted": false, "favorite_count": 11, "contributors": null, "source": "Bridgy"}, "default_profile_image": false, "id": 11628, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8088, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14788846", "following": false, "friends_count": 348, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 271, "location": "Oregon", "screen_name": "KWierso", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "KWierso", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/620515026571390976/FLF0gwV1_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu May 15 17:21:03 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/620515026571390976/FLF0gwV1_normal.jpg", "favourites_count": 20079, "status": {"retweet_count": 20, "retweeted_status": {"retweet_count": 20, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685599353013051393", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/thehill/status\u2026", "url": "https://t.co/QszM8bbJ5m", "expanded_url": "https://twitter.com/thehill/status/685508541151625216", "indices": [15, 38]}], "hashtags": [{"text": "choice", "indices": [7, 14]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:09:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685599353013051393, "text": "Boosh. #choice https://t.co/QszM8bbJ5m", "coordinates": null, "retweeted": false, "favorite_count": 84, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685606718160502784", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/thehill/status\u2026", "url": "https://t.co/QszM8bbJ5m", "expanded_url": "https://twitter.com/thehill/status/685508541151625216", "indices": [31, 54]}], "hashtags": [{"text": "choice", "indices": [23, 30]}], "user_mentions": [{"screen_name": "aishatyler", "id_str": "18125335", "id": 18125335, "indices": [3, 14], "name": "Aisha Tyler"}]}, "created_at": "Fri Jan 08 23:39:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685606718160502784, "text": "RT @aishatyler: Boosh. #choice https://t.co/QszM8bbJ5m", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14788846, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10813, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2319611", "following": false, "friends_count": 761, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "shaver.off.net/diary/", "url": "http://t.co/yVLagrSeto", "expanded_url": "http://shaver.off.net/diary/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "1B43D4", "geo_enabled": true, "followers_count": 4949, "location": "Menlo Park", "screen_name": "shaver", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 279, "name": "Mike Shaver", "profile_use_background_image": false, "description": "I've probably made 10 of the next 6 mistakes you'll make. WEBFBMOZCDNYYZMPKDADHACKOPENBP2TRUST", "url": "http://t.co/yVLagrSeto", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1168257928/shaver-headshot-profile_normal.jpg", "profile_background_color": "352726", "created_at": "Mon Mar 26 16:27:55 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1168257928/shaver-headshot-profile_normal.jpg", "favourites_count": 379, "status": {"in_reply_to_status_id": 685599118815834112, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "girltuesday", "in_reply_to_user_id": 16833482, "in_reply_to_status_id_str": "685599118815834112", "in_reply_to_user_id_str": "16833482", "truncated": false, "id_str": "685599707276509184", "id": 685599707276509184, "text": "@girltuesday mfbt", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "girltuesday", "id_str": "16833482", "id": 16833482, "indices": [0, 12], "name": "mko'g"}]}, "created_at": "Fri Jan 08 23:11:22 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2319611, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 24763, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15859076", "following": false, "friends_count": 134, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "escapewindow.dreamwidth.org", "url": "http://t.co/lg3cnMaIov", "expanded_url": "http://escapewindow.dreamwidth.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 202, "location": "San Francisco", "screen_name": "escapewindow", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "aki", "profile_use_background_image": true, "description": "geek. writer. amateur photographer. musician: escape(window) and slave unit.", "url": "http://t.co/lg3cnMaIov", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/510134493823266818/4K3DRvQY_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Fri Aug 15 02:48:12 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510134493823266818/4K3DRvQY_normal.jpeg", "favourites_count": 3011, "status": {"retweet_count": 109, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 109, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685445889750507522", "id": 685445889750507522, "text": "Write as often as possible, not with the idea at once of getting into print, but as if you were learning an instrument.\nJ. B. PRIESTLEY", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 13:00:09 +0000 2016", "source": "TweetDeck", "favorite_count": 195, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685521999351791616", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AdviceToWriters", "id_str": "44949890", "id": 44949890, "indices": [3, 19], "name": "Jon Winokur"}]}, "created_at": "Fri Jan 08 18:02:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685521999351791616, "text": "RT @AdviceToWriters: Write as often as possible, not with the idea at once of getting into print, but as if you were learning an instrument\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Echofon"}, "default_profile_image": false, "id": 15859076, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 2748, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15859076/1396977715", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "9973032", "following": false, "friends_count": 484, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mozilla.org/firefox", "url": "https://t.co/uiLRlFZnpI", "expanded_url": "http://mozilla.org/firefox", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 2020, "location": "Toronto", "screen_name": "madhava", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 175, "name": "madhava", "profile_use_background_image": true, "description": "Director, Firefox User Experience at Mozilla. Canada Fancy.", "url": "https://t.co/uiLRlFZnpI", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629776260261134336/TLVUYGfu_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Mon Nov 05 17:45:30 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629776260261134336/TLVUYGfu_normal.jpg", "favourites_count": 4487, "status": {"retweet_count": 40, "retweeted_status": {"retweet_count": 40, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685550447717789696", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/briankesinger/", "url": "https://t.co/fMDwiiT2kx", "expanded_url": "https://www.instagram.com/briankesinger/", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:55:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685550447717789696, "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", "coordinates": null, "retweeted": false, "favorite_count": 30, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685555557168709632", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/briankesinger/", "url": "https://t.co/fMDwiiT2kx", "expanded_url": "https://www.instagram.com/briankesinger/", "indices": [52, 75]}], "hashtags": [], "user_mentions": [{"screen_name": "rands", "id_str": "30923", "id": 30923, "indices": [3, 9], "name": "rands"}]}, "created_at": "Fri Jan 08 20:15:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685555557168709632, "text": "RT @rands: Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 9973032, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 10135, "profile_banner_url": "https://pbs.twimg.com/profile_banners/9973032/1450396803", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15675252", "following": false, "friends_count": 262, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.seanmartell.com", "url": "https://t.co/viPaZogXpT", "expanded_url": "http://blog.seanmartell.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000092477482/01936932ffe31782326abc8c26c7ace9.jpeg", "notifications": false, "profile_sidebar_fill_color": "171717", "profile_link_color": "944B3D", "geo_enabled": false, "followers_count": 2263, "location": "North of the Wall", "screen_name": "mart3ll", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 145, "name": "Sean Martell", "profile_use_background_image": true, "description": "Creative Lead at Mozilla, transmogrifier of vectors, animator of GIFs, CSS eyebrow waggler, ketchup chip expert, lover of thick cut bacon.", "url": "https://t.co/viPaZogXpT", "profile_text_color": "919191", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/477427176539578368/ZeOhlO9T_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Jul 31 14:38:00 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477427176539578368/ZeOhlO9T_normal.png", "favourites_count": 1362, "status": {"in_reply_to_status_id": 685562118611992576, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "sireric", "in_reply_to_user_id": 17545176, "in_reply_to_status_id_str": "685562118611992576", "in_reply_to_user_id_str": "17545176", "truncated": false, "id_str": "685570086434902016", "id": 685570086434902016, "text": "@sireric @madhava approved. I have some brand work you can do for me if you'd like.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "sireric", "id_str": "17545176", "id": 17545176, "indices": [0, 8], "name": "Eric Petitt"}, {"screen_name": "madhava", "id_str": "9973032", "id": 9973032, "indices": [9, 17], "name": "madhava"}]}, "created_at": "Fri Jan 08 21:13:40 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15675252, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000092477482/01936932ffe31782326abc8c26c7ace9.jpeg", "statuses_count": 14036, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15675252/1398266038", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14174812", "following": false, "friends_count": 226, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.vlad1.com", "url": "http://t.co/ri1ytBN8a5", "expanded_url": "http://blog.vlad1.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 2032, "location": "Mountain View, CA", "screen_name": "vvuk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Vlad Vukicevic", "profile_use_background_image": true, "description": "Graphics, JS, Gaming director at Mozilla. WebGL firestarter. Photographer. Owner of a pile of unfinished personal projects.", "url": "http://t.co/ri1ytBN8a5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1078510864/DSC_5553-square-small_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Mar 19 05:02:07 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1078510864/DSC_5553-square-small_normal.jpg", "favourites_count": 190, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "tumblrunning", "in_reply_to_user_id": 942956258, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "942956258", "truncated": false, "id_str": "658405478750359552", "id": 658405478750359552, "text": "@tumblrunning heya, sent an email to the email address on the play store -- not sure if you check that any more! If not shoot me a DM :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tumblrunning", "id_str": "942956258", "id": 942956258, "indices": [0, 13], "name": "Tumblrunning"}]}, "created_at": "Sun Oct 25 22:11:13 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14174812, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3065, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6140482", "following": false, "friends_count": 654, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.johnath.com", "url": "https://t.co/9GW7UvMgsi", "expanded_url": "http://blog.johnath.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000174656091/1ku5OylQ.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFF99", "profile_link_color": "038543", "geo_enabled": false, "followers_count": 2997, "location": "Hand Crafted in Toronto", "screen_name": "johnath", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 172, "name": "J Nightingale", "profile_use_background_image": true, "description": "Tech, Leadership, Photog, Food, Hippy, Dad. The unimaginable positive power of the global internet. CPO @Hubba. Board @creativecommons. Former Mr. @Firefox.", "url": "https://t.co/9GW7UvMgsi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631207154247057408/LEonY-0T_normal.jpg", "profile_background_color": "CAE8E3", "created_at": "Fri May 18 15:37:44 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631207154247057408/LEonY-0T_normal.jpg", "favourites_count": 10019, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685595083639504896", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 768, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", "type": "photo", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", "display_url": "pic.twitter.com/Z1RiD9kKvw", "id_str": "685595078434406400", "expanded_url": "http://twitter.com/shappy/status/685595083639504896/photo/1", "id": 685595078434406400, "url": "https://t.co/Z1RiD9kKvw"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:53:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685595083639504896, "text": "https://t.co/Z1RiD9kKvw", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597843860529152", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 768, "h": 1024, "resize": "fit"}}, "source_status_id_str": "685595083639504896", "media_url": "http://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", "source_user_id_str": "5356872", "id_str": "685595078434406400", "id": 685595078434406400, "media_url_https": "https://pbs.twimg.com/media/CYO5F2XWwAA_1wY.jpg", "type": "photo", "indices": [12, 35], "source_status_id": 685595083639504896, "source_user_id": 5356872, "display_url": "pic.twitter.com/Z1RiD9kKvw", "expanded_url": "http://twitter.com/shappy/status/685595083639504896/photo/1", "url": "https://t.co/Z1RiD9kKvw"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "shappy", "id_str": "5356872", "id": 5356872, "indices": [3, 10], "name": "Melissa Nightingale"}]}, "created_at": "Fri Jan 08 23:03:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597843860529152, "text": "RT @shappy: https://t.co/Z1RiD9kKvw", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 6140482, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000174656091/1ku5OylQ.jpeg", "statuses_count": 5754, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6140482/1353472261", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "59680997", "following": false, "friends_count": 125, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 78, "location": "", "screen_name": "hwine", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Hal Wine", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459309975555162112/-htFG3uQ_normal.jpeg", "profile_background_color": "BADFCD", "created_at": "Fri Jul 24 03:43:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "F2E195", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459309975555162112/-htFG3uQ_normal.jpeg", "favourites_count": 76, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684144421068115969", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "danluu.com/wat/", "url": "https://t.co/TgvNOle7nL", "expanded_url": "http://danluu.com/wat/", "indices": [49, 72]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 22:48:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684144421068115969, "text": "Nice reminder of danger of accepting status quo: https://t.co/TgvNOle7nL", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "OS X"}, "default_profile_image": false, "id": 59680997, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "statuses_count": 956, "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "15645136", "following": false, "friends_count": 138, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000165777761/UceRm6vD.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 112, "location": "Toronto, Canada", "screen_name": "railaliiev", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Rail Aliiev", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1277181474/rail_river2_normal.jpg", "profile_background_color": "131516", "created_at": "Tue Jul 29 12:08:00 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1277181474/rail_river2_normal.jpg", "favourites_count": 503, "status": {"in_reply_to_status_id": 676819284895604736, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "johnath", "in_reply_to_user_id": 6140482, "in_reply_to_status_id_str": "676819284895604736", "in_reply_to_user_id_str": "6140482", "truncated": false, "id_str": "676854090836541440", "id": 676854090836541440, "text": "@johnath @shappy congrats!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "johnath", "id_str": "6140482", "id": 6140482, "indices": [0, 8], "name": "J Nightingale"}, {"screen_name": "shappy", "id_str": "5356872", "id": 5356872, "indices": [9, 16], "name": "Melissa Nightingale"}]}, "created_at": "Tue Dec 15 19:59:25 +0000 2015", "source": "TweetDeck", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15645136, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000165777761/UceRm6vD.jpeg", "statuses_count": 783, "is_translator": false}], "next_cursor": 1488949918508686286, "previous_cursor": -1488977629350241687, "previous_cursor_str": "-1488977629350241687", "next_cursor_str": "1488949918508686286"} \ No newline at end of file diff --git a/testdata/get_friends_4.json b/testdata/get_friends_4.json index b778a9ff..823fc9fd 100644 --- a/testdata/get_friends_4.json +++ b/testdata/get_friends_4.json @@ -1,2445 +1 @@ -{ - "next_cursor": 0, - "users": [ - { - "time_zone": "Auckland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 46800, - "id_str": "2218683102", - "following": false, - "friends_count": 103, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ftangftang.wordpress.com", - "url": "http://t.co/F56CbDZQcX", - "expanded_url": "http://ftangftang.wordpress.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 82, - "location": "New Zealand", - "screen_name": "nthomasftang", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5, - "name": "Nick Thomas", - "profile_use_background_image": true, - "description": "Release Engineer @ Mozilla", - "url": "http://t.co/F56CbDZQcX", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Nov 28 01:15:43 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", - "favourites_count": 202, - "status": { - "retweet_count": 54, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "SwiftOnSecurity", - "in_reply_to_user_id": 2436389418, - "in_reply_to_status_id_str": "683809123025072128", - "retweet_count": 54, - "truncated": false, - "retweeted": false, - "id_str": "683809344513675264", - "id": 683809344513675264, - "text": "What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", - "in_reply_to_user_id_str": "2436389418", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 00:37:06 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 86, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683809123025072128, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "683815464938508289", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SwiftOnSecurity", - "id_str": "2436389418", - "id": 2436389418, - "indices": [ - 3, - 19 - ], - "name": "SecuriTay" - } - ] - }, - "created_at": "Mon Jan 04 01:01:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683815464938508289, - "text": "RT @SwiftOnSecurity: What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2218683102, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 333, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17462502", - "following": false, - "friends_count": 323, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ted.mielczarek.org", - "url": "http://t.co/bS4QKvSrsE", - "expanded_url": "http://ted.mielczarek.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 880, - "location": "PA, USA", - "screen_name": "TedMielczarek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 69, - "name": "Ted Mielczarek", - "profile_use_background_image": true, - "description": "Mozillian, daddy, hack of all trades.", - "url": "http://t.co/bS4QKvSrsE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Nov 18 11:33:39 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", - "favourites_count": 5707, - "status": { - "retweet_count": 26, - "retweeted_status": { - "retweet_count": 26, - "in_reply_to_user_id": 318692762, - "possibly_sensitive": false, - "id_str": "685553202868174848", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 123, - "resize": "fit" - }, - "large": { - "w": 668, - "h": 242, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 217, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", - "type": "photo", - "indices": [ - 91, - 114 - ], - "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", - "display_url": "pic.twitter.com/4avrL8s4o6", - "id_str": "685553159855587328", - "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1", - "id": 685553159855587328, - "url": "https://t.co/4avrL8s4o6" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:06:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "318692762", - "place": null, - "in_reply_to_screen_name": "SeanMcElwee", - "in_reply_to_status_id_str": "685552772700352512", - "truncated": false, - "id": 685553202868174848, - "text": "lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", - "coordinates": null, - "in_reply_to_status_id": 685552772700352512, - "favorite_count": 47, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685596223445807105", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 123, - "resize": "fit" - }, - "large": { - "w": 668, - "h": 242, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 217, - "resize": "fit" - } - }, - "source_status_id_str": "685553202868174848", - "url": "https://t.co/4avrL8s4o6", - "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", - "source_user_id_str": "318692762", - "id_str": "685553159855587328", - "id": 685553159855587328, - "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", - "type": "photo", - "indices": [ - 108, - 131 - ], - "source_status_id": 685553202868174848, - "source_user_id": 318692762, - "display_url": "pic.twitter.com/4avrL8s4o6", - "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SeanMcElwee", - "id_str": "318692762", - "id": 318692762, - "indices": [ - 3, - 15 - ], - "name": "read the article" - } - ] - }, - "created_at": "Fri Jan 08 22:57:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685596223445807105, - "text": "RT @SeanMcElwee: lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 17462502, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 18432, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5003371", - "following": false, - "friends_count": 320, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "coop.deadsquid.com", - "url": "http://t.co/vR6z9ydxBE", - "expanded_url": "http://coop.deadsquid.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", - "notifications": false, - "profile_sidebar_fill_color": "15365E", - "profile_link_color": "0D0921", - "geo_enabled": true, - "followers_count": 338, - "location": "Ottawa, ON, Canada", - "screen_name": "ccooper", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 22, - "name": "Chris Cooper", - "profile_use_background_image": true, - "description": "Five different types of fried cheese", - "url": "http://t.co/vR6z9ydxBE", - "profile_text_color": "49594A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", - "profile_background_color": "061645", - "created_at": "Tue Apr 17 14:36:28 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "E5E6DF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", - "favourites_count": 1884, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685607411776925697", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "drinksmixer.com/drink8654.html", - "url": "https://t.co/DU8yJe52Sj", - "expanded_url": "http://www.drinksmixer.com/drink8654.html", - "indices": [ - 94, - 117 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:41:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685607411776925697, - "text": "I'm now wearing half a Blue Grass cocktail in my sock, but the other half is quite delicious. https://t.co/DU8yJe52Sj", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 5003371, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", - "statuses_count": 6021, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5003371/1449418107", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17231743", - "following": false, - "friends_count": 282, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "atlee.ca", - "url": "http://t.co/sUJScCQshr", - "expanded_url": "http://atlee.ca", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 337, - "location": "", - "screen_name": "chrisatlee", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Chris AtLee", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/sUJScCQshr", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Fri Nov 07 14:34:15 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", - "favourites_count": 327, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685561476761821184", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", - "url": "https://t.co/jGQK5BkrqY", - "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:39:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685561476761821184, - "text": "Tips from a resume nerd https://t.co/jGQK5BkrqY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685608384129810432", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", - "url": "https://t.co/jGQK5BkrqY", - "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", - "indices": [ - 35, - 58 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kmoir", - "id_str": "82681434", - "id": 82681434, - "indices": [ - 3, - 9 - ], - "name": "Kim Moir" - } - ] - }, - "created_at": "Fri Jan 08 23:45:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685608384129810432, - "text": "RT @kmoir: Tips from a resume nerd https://t.co/jGQK5BkrqY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 17231743, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 2173, - "is_translator": false - }, - { - "time_zone": "America/Toronto", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "37933140", - "following": false, - "friends_count": 596, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 414, - "location": "Canada", - "screen_name": "bhearsum", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "Ben Hearsum", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", - "profile_background_color": "352726", - "created_at": "Tue May 05 14:24:48 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "fil", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", - "favourites_count": 1921, - "status": { - "retweet_count": 53, - "retweeted_status": { - "retweet_count": 53, - "in_reply_to_user_id": 2436389418, - "possibly_sensitive": false, - "id_str": "685216836661587968", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/Chicago", - "url": "https://t.co/Q9XtAckEph", - "expanded_url": "https://github.com/Chicago", - "indices": [ - 33, - 56 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 21:49:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "2436389418", - "place": null, - "in_reply_to_screen_name": "SwiftOnSecurity", - "in_reply_to_status_id_str": "685213939882311680", - "truncated": false, - "id": 685216836661587968, - "text": "The city of Chicago has a github https://t.co/Q9XtAckEph", - "coordinates": null, - "in_reply_to_status_id": 685213939882311680, - "favorite_count": 91, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685507521520513029", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/Chicago", - "url": "https://t.co/Q9XtAckEph", - "expanded_url": "https://github.com/Chicago", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SwiftOnSecurity", - "id_str": "2436389418", - "id": 2436389418, - "indices": [ - 3, - 19 - ], - "name": "SecuriTay" - } - ] - }, - "created_at": "Fri Jan 08 17:05:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685507521520513029, - "text": "RT @SwiftOnSecurity: The city of Chicago has a github https://t.co/Q9XtAckEph", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 37933140, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 8478, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "798341", - "following": false, - "friends_count": 601, - "entities": { - "description": { - "urls": [ - { - "display_url": "parchmentmoon.etsy.com", - "url": "https://t.co/6Oaal1jcuN", - "expanded_url": "http://parchmentmoon.etsy.com", - "indices": [ - 57, - 80 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "parchmentmoon.etsy.com", - "url": "http://t.co/6Oaal11BDf", - "expanded_url": "http://parchmentmoon.etsy.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "5D99B3", - "geo_enabled": false, - "followers_count": 1981, - "location": "Toronto", - "screen_name": "dria", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 152, - "name": "Deb Richardson", - "profile_use_background_image": true, - "description": "Photographer & printmaker - owner of @ParchMoonPrints :: https://t.co/6Oaal1jcuN :: also in the Leslieville @ArtsMarket!", - "url": "http://t.co/6Oaal11BDf", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", - "profile_background_color": "000000", - "created_at": "Tue Feb 27 15:26:58 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", - "favourites_count": 12742, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685244145716334592", - "id": 685244145716334592, - "text": "Posted a thing on my Facebook biz page today and it reached 1 person. So that's pointless.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 23:38:30 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 798341, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", - "statuses_count": 29912, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/798341/1396011076", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "304076943", - "following": false, - "friends_count": 6, - "entities": { - "description": { - "urls": [ - { - "display_url": "monktoberfest2015.eventbrite.com", - "url": "http://t.co/NujveKLlnM", - "expanded_url": "http://monktoberfest2015.eventbrite.com", - "indices": [ - 122, - 144 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "monktoberfest.com", - "url": "http://t.co/mdmBpxbRSI", - "expanded_url": "http://monktoberfest.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 467, - "location": "Portland, ME", - "screen_name": "monktoberfest", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "The Monktoberfest", - "profile_use_background_image": true, - "description": "The fifth annual Monktoberfest, featuring developers, social, and the best beer in the world. 10/1/15 - 10/2/15. Tickets: http://t.co/NujveKLlnM.", - "url": "http://t.co/mdmBpxbRSI", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon May 23 22:02:46 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", - "favourites_count": 423, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "674954219082948608", - "id": 674954219082948608, - "text": "got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. stay tuned.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "monktoberfest", - "id_str": "304076943", - "id": 304076943, - "indices": [ - 20, - 34 - ], - "name": "The Monktoberfest" - }, - { - "screen_name": "sogrady", - "id_str": "143883", - "id": 143883, - "indices": [ - 81, - 89 - ], - "name": "steve o'grady" - }, - { - "screen_name": "RedSox", - "id_str": "40918816", - "id": 40918816, - "indices": [ - 108, - 115 - ], - "name": "Boston Red Sox" - } - ] - }, - "created_at": "Thu Dec 10 14:10:00 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "674955294452133888", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JulianeLeary", - "id_str": "1425842304", - "id": 1425842304, - "indices": [ - 3, - 16 - ], - "name": "Juliane Leary" - }, - { - "screen_name": "monktoberfest", - "id_str": "304076943", - "id": 304076943, - "indices": [ - 38, - 52 - ], - "name": "The Monktoberfest" - }, - { - "screen_name": "sogrady", - "id_str": "143883", - "id": 143883, - "indices": [ - 99, - 107 - ], - "name": "steve o'grady" - }, - { - "screen_name": "RedSox", - "id_str": "40918816", - "id": 40918816, - "indices": [ - 126, - 133 - ], - "name": "Boston Red Sox" - } - ] - }, - "created_at": "Thu Dec 10 14:14:16 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 674955294452133888, - "text": "RT @JulianeLeary: got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 304076943, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 664, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8340822", - "following": false, - "friends_count": 590, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pmc.com", - "url": "http://t.co/Fhv1KhCIcD", - "expanded_url": "http://pmc.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FAF7E9", - "profile_link_color": "7C9CD7", - "geo_enabled": true, - "followers_count": 661, - "location": "Portland, ME | Chicago | LA", - "screen_name": "coreygilmore", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 36, - "name": "corey gilmore", - "profile_use_background_image": false, - "description": "Former gov't. Special Projects Editor @BGR, Chief Architect at @PenskeMedia. r\u0316\u033c\u034d\u0318\u030a\u033f\u033e\u035b\u0365\u0313\u0368\u030e\u0346\u033d\u0313\u0345e\u032f\u032f\u0355\u034e\u0356\u0349\u0332\u035a\u033b\u0325\u0320\u031c\u0367\u0313\u0302\u030d\u0367\u031a", - "url": "http://t.co/Fhv1KhCIcD", - "profile_text_color": "786F4C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", - "profile_background_color": "3371A3", - "created_at": "Tue Aug 21 21:51:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", - "favourites_count": 1052, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684707377736593408", - "id": 684707377736593408, - "text": "When the iPhone is too cold, you get high temp warning. I\u2019m leery of self-driving cars from CA for similar reasons \u2013\u00a0need snow, ice testing.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 12:05:34 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 8340822, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5995, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8340822/1350040276", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16833482", - "following": false, - "friends_count": 237, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/girltuesday", - "url": "https://t.co/o1qJWZlfKV", - "expanded_url": "http://about.me/girltuesday", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DBDBDB", - "profile_link_color": "AA00B3", - "geo_enabled": false, - "followers_count": 542, - "location": "great northeast", - "screen_name": "girltuesday", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "mko'g", - "profile_use_background_image": true, - "description": "liar: that's latin for lawyer. married to a (red)monk, @sogrady.", - "url": "https://t.co/o1qJWZlfKV", - "profile_text_color": "330533", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Sat Oct 18 00:35:45 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", - "favourites_count": 944, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685599118815834112", - "id": 685599118815834112, - "text": "oh, right. it's friday. #babybrain", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 24, - 34 - ], - "text": "babybrain" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:09:02 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 16833482, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", - "statuses_count": 16543, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16833482/1391211651", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1538841", - "following": false, - "friends_count": 272, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lu.is", - "url": "http://t.co/fXEvt99yzX", - "expanded_url": "http://lu.is/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1826, - "location": "San Francisco", - "screen_name": "tieguy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 128, - "name": "Luis Villa", - "profile_use_background_image": true, - "description": "Ex-programmer, ex-lawyer, ex-Miamian. Wikimedia's Sr. Director of Community Engagement, but work doesn't vet or approve.", - "url": "http://t.co/fXEvt99yzX", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Mon Mar 19 18:31:56 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", - "favourites_count": 856, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685400320642433026", - "id": 685400320642433026, - "text": "During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 7, - 19 - ], - "text": "Wikipedia15" - } - ], - "user_mentions": [ - { - "screen_name": "enwikipedia", - "id_str": "18692541", - "id": 18692541, - "indices": [ - 82, - 94 - ], - "name": "enwikipedia" - }, - { - "screen_name": "bnwikipedia", - "id_str": "2387031866", - "id": 2387031866, - "indices": [ - 98, - 110 - ], - "name": "Bengali Wikipedia" - } - ] - }, - "created_at": "Fri Jan 08 09:59:05 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685534157087223808", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 20, - 32 - ], - "text": "Wikipedia15" - } - ], - "user_mentions": [ - { - "screen_name": "nhasive", - "id_str": "53717936", - "id": 53717936, - "indices": [ - 3, - 11 - ], - "name": "Nurunnaby Chowdhury" - }, - { - "screen_name": "enwikipedia", - "id_str": "18692541", - "id": 18692541, - "indices": [ - 95, - 107 - ], - "name": "enwikipedia" - }, - { - "screen_name": "bnwikipedia", - "id_str": "2387031866", - "id": 2387031866, - "indices": [ - 111, - 123 - ], - "name": "Bengali Wikipedia" - } - ] - }, - "created_at": "Fri Jan 08 18:50:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685534157087223808, - "text": "RT @nhasive: During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 1538841, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", - "statuses_count": 10342, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1538841/1398620171", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "876081", - "following": false, - "friends_count": 2143, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "en.wikipedia.org/wiki/Evan_Prod\u2026", - "url": "https://t.co/DVlmqCqJIB", - "expanded_url": "https://en.wikipedia.org/wiki/Evan_Prodromou", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "444475", - "geo_enabled": true, - "followers_count": 3472, - "location": "Montreal, Quebec, Canada", - "screen_name": "evanpro", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 367, - "name": "Evan Prodromou", - "profile_use_background_image": true, - "description": "Founder of @fuzzy_io, proud part of @500Startups family. Past founder of @wikitravel, @statusnet. Founding CTO of @breather.", - "url": "https://t.co/DVlmqCqJIB", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Sat Mar 10 17:43:00 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", - "favourites_count": 17595, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609250530422784", - "geo": { - "coordinates": [ - 45.51942856, - -73.58714291 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "swarmapp.com/c/7HtpQYkInPH", - "url": "https://t.co/AObWsAng6f", - "expanded_url": "https://www.swarmapp.com/c/7HtpQYkInPH", - "indices": [ - 52, - 75 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:49:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "fr", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/36775d842cbec509.json", - "country": "Canada", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -73.972965, - 45.410095 - ], - [ - -73.473085, - 45.410095 - ], - [ - -73.473085, - 45.705566 - ], - [ - -73.972965, - 45.705566 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "CA", - "contained_within": [], - "full_name": "Montr\u00e9al, Qu\u00e9bec", - "id": "36775d842cbec509", - "name": "Montr\u00e9al" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609250530422784, - "text": "End-of-week lift. (@ Nautilus Plus in Montr\u00e9al, QC) https://t.co/AObWsAng6f", - "coordinates": { - "coordinates": [ - -73.58714291, - 45.51942856 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Foursquare" - }, - "default_profile_image": false, - "id": 876081, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", - "statuses_count": 14346, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/876081/1418849529", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "13611", - "following": false, - "friends_count": 122, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "redmonk.com", - "url": "http://t.co/3tt6ytJ0U7", - "expanded_url": "http://redmonk.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "5E3321", - "geo_enabled": false, - "followers_count": 2283, - "location": "The Internet", - "screen_name": "redmonk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 150, - "name": "RedMonk", - "profile_use_background_image": true, - "description": "We're a small, sharp industry analyst firm focused on people doing interesting stuff with technology. We are: @julianeleary, @monkchips, @sogrady, @tomraftery", - "url": "http://t.co/3tt6ytJ0U7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", - "profile_background_color": "709397", - "created_at": "Tue Nov 21 19:37:32 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", - "favourites_count": 67, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677279848230973440", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ift.tt/1O9e5Hl", - "url": "https://t.co/3EsqpHx37C", - "expanded_url": "http://ift.tt/1O9e5Hl", - "indices": [ - 58, - 81 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 17 00:11:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677279848230973440, - "text": "Monki Gras \u2013 The developer conference about craft culture https://t.co/3EsqpHx37C", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "IFTTT" - }, - "default_profile_image": false, - "id": 13611, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 3514, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14639127", - "following": false, - "friends_count": 1639, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "451research.com/biography?eid=\u2026", - "url": "https://t.co/Vdb2y81qyg", - "expanded_url": "https://451research.com/biography?eid=859", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "333333", - "geo_enabled": true, - "followers_count": 5999, - "location": "Minneapolis", - "screen_name": "dberkholz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 424, - "name": "Donnie Berkholz", - "profile_use_background_image": true, - "description": "Research Director @451Research - Development, DevOps & IT Ops. Open-source developer. PhD biophysics. Beer lover. Passionate about data, code, and community.", - "url": "https://t.co/Vdb2y81qyg", - "profile_text_color": "0084B4", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Sat May 03 16:19:04 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", - "favourites_count": 9460, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "danthompson_TN", - "in_reply_to_user_id": 20341653, - "in_reply_to_status_id_str": "685598210883239936", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685598596398366720", - "id": 685598596398366720, - "text": "@danthompson_TN: We never truly outgrow stranger danger.", - "in_reply_to_user_id_str": "20341653", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "danthompson_TN", - "id_str": "20341653", - "id": 20341653, - "indices": [ - 0, - 15 - ], - "name": "Dan Thompson" - } - ] - }, - "created_at": "Fri Jan 08 23:06:57 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598210883239936, - "lang": "en" - }, - "default_profile_image": false, - "id": 14639127, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", - "statuses_count": 27573, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14639127/1423202091", - "is_translator": false - }, - { - "time_zone": "Europe/London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "61233", - "following": false, - "friends_count": 3383, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "monkchips.com", - "url": "http://t.co/4rH6XD51qB", - "expanded_url": "http://monkchips.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", - "notifications": false, - "profile_sidebar_fill_color": "C90D2E", - "profile_link_color": "020219", - "geo_enabled": true, - "followers_count": 20648, - "location": "London", - "screen_name": "monkchips", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1581, - "name": "Medea Fawning", - "profile_use_background_image": true, - "description": "Co-founder of @RedMonk and @shoreditchworks, organiser of @monkigras, which you should come to Jan 28/29 2016", - "url": "http://t.co/4rH6XD51qB", - "profile_text_color": "050505", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", - "profile_background_color": "B21313", - "created_at": "Tue Dec 12 17:35:55 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DA1724", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", - "favourites_count": 25995, - "status": { - "retweet_count": 18, - "retweeted_status": { - "retweet_count": 18, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684741098120429568", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/@moonpolysoft/\u2026", - "url": "https://t.co/hJCQg4bgZc", - "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 14:19:34 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684741098120429568, - "text": "hot take coming through https://t.co/hJCQg4bgZc", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 27, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685593612256579584", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/@moonpolysoft/\u2026", - "url": "https://t.co/hJCQg4bgZc", - "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", - "indices": [ - 42, - 65 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "moonpolysoft", - "id_str": "14204623", - "id": 14204623, - "indices": [ - 3, - 16 - ], - "name": "Modafinil Duck" - } - ] - }, - "created_at": "Fri Jan 08 22:47:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593612256579584, - "text": "RT @moonpolysoft: hot take coming through https://t.co/hJCQg4bgZc", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 61233, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", - "statuses_count": 87044, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/61233/1450351415", - "is_translator": false - }, - { - "time_zone": "Madrid", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "797835", - "following": false, - "friends_count": 4396, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/tomraftery", - "url": "http://t.co/5mPSXU1T48", - "expanded_url": "http://about.me/tomraftery", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "D9C8B2", - "profile_link_color": "587410", - "geo_enabled": true, - "followers_count": 11890, - "location": "Sevilla, Spain", - "screen_name": "TomRaftery", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 837, - "name": "Tom Raftery", - "profile_use_background_image": true, - "description": "Speaker, Blogger, Principal Analyst at GreenMonk (the Energy and Sustainability practice of industry analyst firm RedMonk). Opinions mine etc.", - "url": "http://t.co/5mPSXU1T48", - "profile_text_color": "355732", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", - "profile_background_color": "B38851", - "created_at": "Tue Feb 27 11:18:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", - "favourites_count": 2946, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685521358508453888", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/omN5etq7R8Q?a", - "url": "https://t.co/KUwhzfRgZH", - "expanded_url": "http://youtu.be/omN5etq7R8Q?a", - "indices": [ - 34, - 57 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "YouTube", - "id_str": "10228272", - "id": 10228272, - "indices": [ - 62, - 70 - ], - "name": "YouTube" - } - ] - }, - "created_at": "Fri Jan 08 18:00:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685521358508453888, - "text": "Technology for Good - episode 82: https://t.co/KUwhzfRgZH via @YouTube", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Google" - }, - "default_profile_image": false, - "id": 797835, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", - "statuses_count": 52847, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/797835/1398243904", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "43580317", - "following": false, - "friends_count": 111, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kegbot.org", - "url": "https://t.co/JeweXBoTLE", - "expanded_url": "https://kegbot.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1488, - "location": "San Francisco, CA", - "screen_name": "Kegbot", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Kegbot", - "profile_use_background_image": true, - "description": "Kegbot turns your beer kegerator into an awesomeness machine. Free and open source software - and now on Kickstarter!", - "url": "https://t.co/JeweXBoTLE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", - "profile_background_color": "022330", - "created_at": "Sat May 30 19:38:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", - "favourites_count": 164, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "eheydrick", - "in_reply_to_user_id": 3169572185, - "in_reply_to_status_id_str": "628332799204921345", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "630038228469477376", - "id": 630038228469477376, - "text": "@eheydrick D'oh! All fixed, thanks for the head's up!", - "in_reply_to_user_id_str": "3169572185", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "eheydrick", - "id_str": "3169572185", - "id": 3169572185, - "indices": [ - 0, - 10 - ], - "name": "Eric Heydrick" - } - ] - }, - "created_at": "Sat Aug 08 15:29:53 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 628332799204921345, - "lang": "en" - }, - "default_profile_image": false, - "id": 43580317, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 461, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43580317/1385073894", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "1023611", - "following": false, - "friends_count": 192, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 691, - "location": "Denver, CO, USA", - "screen_name": "hildjj", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 47, - "name": "Joe Hildebrand", - "profile_use_background_image": true, - "description": "Distinguished Engineer in Cisco's Cloud Collaboration Application Technology Group. Architecture for WebEx, Jabber, Social, etc.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Mar 12 16:34:27 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", - "favourites_count": 232, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "thisNatasha", - "in_reply_to_user_id": 28321091, - "in_reply_to_status_id_str": "669757790378786816", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "669875748082196481", - "id": 669875748082196481, - "text": "@thisNatasha @bortzmeyer @mnot still early days. Keep backups as you go.", - "in_reply_to_user_id_str": "28321091", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thisNatasha", - "id_str": "28321091", - "id": 28321091, - "indices": [ - 0, - 12 - ], - "name": "Natasha Rooney" - }, - { - "screen_name": "bortzmeyer", - "id_str": "75263632", - "id": 75263632, - "indices": [ - 13, - 24 - ], - "name": "St\u00e9phane Bortzmeyer" - }, - { - "screen_name": "mnot", - "id_str": "5832482", - "id": 5832482, - "indices": [ - 25, - 30 - ], - "name": "Mark Nottingham" - } - ] - }, - "created_at": "Thu Nov 26 13:49:58 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 669757790378786816, - "lang": "en" - }, - "default_profile_image": false, - "id": 1023611, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 2243, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "143883", - "following": false, - "friends_count": 589, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "redmonk.com/sogrady", - "url": "http://t.co/NlsofJ8aQb", - "expanded_url": "http://redmonk.com/sogrady", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 7415, - "location": "Maine...probably", - "screen_name": "sogrady", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 604, - "name": "steve o'grady", - "profile_use_background_image": true, - "description": "i helped found RedMonk. if you see someone at a tech conference wearing a Red Sox hat, that's probably me. wrote @newkingmakers. married to @girltuesday. eph.", - "url": "http://t.co/NlsofJ8aQb", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", - "profile_background_color": "9AE4E8", - "created_at": "Fri Dec 22 01:53:11 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", - "favourites_count": 30838, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685563226143223809", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "sogrady.org/2016/01/08/my-\u2026", - "url": "https://t.co/9T7jPZcyTf", - "expanded_url": "http://sogrady.org/2016/01/08/my-2015-in-pictures/", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:46:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685563226143223809, - "text": "2015 was a year of ups and downs, a year i\u2019m grateful for. my 2015 in pictures: https://t.co/9T7jPZcyTf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 143883, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", - "statuses_count": 42833, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/143883/1400163495", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "54481001", - "following": false, - "friends_count": 142, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.notapaper.de", - "url": "http://t.co/fWUrVqihzH", - "expanded_url": "http://blog.notapaper.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "4C95ED", - "geo_enabled": true, - "followers_count": 191, - "location": "Potsdam", - "screen_name": "hannesrauhe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Hannes Rauhe", - "profile_use_background_image": false, - "description": "Hat-wearing Geek and researcher with social skills. Verteidiger des Genitivs", - "url": "http://t.co/fWUrVqihzH", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", - "profile_background_color": "352726", - "created_at": "Tue Jul 07 07:27:27 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", - "favourites_count": 62, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MatthiasKuphal", - "in_reply_to_user_id": 457857280, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685166321366077440", - "id": 685166321366077440, - "text": "@MatthiasKuphal Prost Neujahr! Bist du morgen tags\u00fcber frei f\u00fcr alkoholfreie Biere oder dergleichen? Hab Urlaub. :-)", - "in_reply_to_user_id_str": "457857280", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MatthiasKuphal", - "id_str": "457857280", - "id": 457857280, - "indices": [ - 0, - 15 - ], - "name": "Matthias Kuphal" - } - ] - }, - "created_at": "Thu Jan 07 18:29:15 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "de" - }, - "default_profile_image": false, - "id": 54481001, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2773, - "is_translator": false - } - ], - "previous_cursor": -1488949916577120071, - "previous_cursor_str": "-1488949916577120071", - "next_cursor_str": "0" -} \ No newline at end of file +{"users": [{"time_zone": "Auckland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "2218683102", "following": false, "friends_count": 103, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ftangftang.wordpress.com", "url": "http://t.co/F56CbDZQcX", "expanded_url": "http://ftangftang.wordpress.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 82, "location": "New Zealand", "screen_name": "nthomasftang", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5, "name": "Nick Thomas", "profile_use_background_image": true, "description": "Release Engineer @ Mozilla", "url": "http://t.co/F56CbDZQcX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Nov 28 01:15:43 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000799830412/3f485e308da68093b6e868f75a3893fb_normal.jpeg", "favourites_count": 202, "status": {"retweet_count": 54, "retweeted_status": {"in_reply_to_status_id": 683809123025072128, "retweet_count": 54, "place": null, "in_reply_to_screen_name": "SwiftOnSecurity", "in_reply_to_user_id": 2436389418, "in_reply_to_status_id_str": "683809123025072128", "in_reply_to_user_id_str": "2436389418", "truncated": false, "id_str": "683809344513675264", "id": 683809344513675264, "text": "What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Jan 04 00:37:06 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 86, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "683815464938508289", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Mon Jan 04 01:01:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683815464938508289, "text": "RT @SwiftOnSecurity: What if the universe doesn't have sensible documentation because the implementation is buggy \ud83e\udd14", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2218683102, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 333, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17462502", "following": false, "friends_count": 323, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ted.mielczarek.org", "url": "http://t.co/bS4QKvSrsE", "expanded_url": "http://ted.mielczarek.org/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 880, "location": "PA, USA", "screen_name": "TedMielczarek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 69, "name": "Ted Mielczarek", "profile_use_background_image": true, "description": "Mozillian, daddy, hack of all trades.", "url": "http://t.co/bS4QKvSrsE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Nov 18 11:33:39 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000451255698/4398a354878e6a2117ef235012200abb_normal.jpeg", "favourites_count": 5707, "status": {"retweet_count": 26, "retweeted_status": {"retweet_count": 26, "in_reply_to_user_id": 318692762, "possibly_sensitive": false, "id_str": "685553202868174848", "in_reply_to_user_id_str": "318692762", "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 123, "resize": "fit"}, "large": {"w": 668, "h": 242, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 217, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "type": "photo", "indices": [91, 114], "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "display_url": "pic.twitter.com/4avrL8s4o6", "id_str": "685553159855587328", "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1", "id": 685553159855587328, "url": "https://t.co/4avrL8s4o6"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:06:35 +0000 2016", "favorited": false, "in_reply_to_status_id": 685552772700352512, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "SeanMcElwee", "in_reply_to_status_id_str": "685552772700352512", "truncated": false, "id": 685553202868174848, "text": "lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", "coordinates": null, "retweeted": false, "favorite_count": 47, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685596223445807105", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 123, "resize": "fit"}, "large": {"w": 668, "h": 242, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 217, "resize": "fit"}}, "source_status_id_str": "685553202868174848", "media_url": "http://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "source_user_id_str": "318692762", "id_str": "685553159855587328", "id": 685553159855587328, "media_url_https": "https://pbs.twimg.com/media/CYOS93fWwAAU2MX.png", "type": "photo", "indices": [108, 131], "source_status_id": 685553202868174848, "source_user_id": 318692762, "display_url": "pic.twitter.com/4avrL8s4o6", "expanded_url": "http://twitter.com/SeanMcElwee/status/685553202868174848/photo/1", "url": "https://t.co/4avrL8s4o6"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SeanMcElwee", "id_str": "318692762", "id": 318692762, "indices": [3, 15], "name": "read the article"}]}, "created_at": "Fri Jan 08 22:57:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685596223445807105, "text": "RT @SeanMcElwee: lol, remember when defined benefit pensions, COLA adjustments and paid leave were a thing? https://t.co/4avrL8s4o6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 17462502, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 18432, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5003371", "following": false, "friends_count": 320, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "coop.deadsquid.com", "url": "http://t.co/vR6z9ydxBE", "expanded_url": "http://coop.deadsquid.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", "notifications": false, "profile_sidebar_fill_color": "15365E", "profile_link_color": "0D0921", "geo_enabled": true, "followers_count": 338, "location": "Ottawa, ON, Canada", "screen_name": "ccooper", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 22, "name": "Chris Cooper", "profile_use_background_image": true, "description": "Five different types of fried cheese", "url": "http://t.co/vR6z9ydxBE", "profile_text_color": "49594A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", "profile_background_color": "061645", "created_at": "Tue Apr 17 14:36:28 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "E5E6DF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1776168398/image1327348264_normal.png", "favourites_count": 1884, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607411776925697", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "drinksmixer.com/drink8654.html", "url": "https://t.co/DU8yJe52Sj", "expanded_url": "http://www.drinksmixer.com/drink8654.html", "indices": [94, 117]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:41:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607411776925697, "text": "I'm now wearing half a Blue Grass cocktail in my sock, but the other half is quite delicious. https://t.co/DU8yJe52Sj", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 5003371, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/718518188/c34ac020793de8350d68bbf0be60c95a.png", "statuses_count": 6021, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5003371/1449418107", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17231743", "following": false, "friends_count": 282, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "atlee.ca", "url": "http://t.co/sUJScCQshr", "expanded_url": "http://atlee.ca", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 337, "location": "", "screen_name": "chrisatlee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Chris AtLee", "profile_use_background_image": true, "description": "", "url": "http://t.co/sUJScCQshr", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Fri Nov 07 14:34:15 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/705639851/avatar_normal.jpg", "favourites_count": 327, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685561476761821184", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", "url": "https://t.co/jGQK5BkrqY", "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:39:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685561476761821184, "text": "Tips from a resume nerd https://t.co/jGQK5BkrqY", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685608384129810432", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "relengofthenerds.blogspot.ca/2016/01/tips-f\u2026", "url": "https://t.co/jGQK5BkrqY", "expanded_url": "http://relengofthenerds.blogspot.ca/2016/01/tips-from-resume-nerd.html", "indices": [35, 58]}], "hashtags": [], "user_mentions": [{"screen_name": "kmoir", "id_str": "82681434", "id": 82681434, "indices": [3, 9], "name": "Kim Moir"}]}, "created_at": "Fri Jan 08 23:45:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685608384129810432, "text": "RT @kmoir: Tips from a resume nerd https://t.co/jGQK5BkrqY", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 17231743, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 2173, "is_translator": false}, {"time_zone": "America/Toronto", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "37933140", "following": false, "friends_count": 596, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 414, "location": "Canada", "screen_name": "bhearsum", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "Ben Hearsum", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", "profile_background_color": "352726", "created_at": "Tue May 05 14:24:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "fil", "profile_image_url_https": "https://pbs.twimg.com/profile_images/594558285593841664/bH1FEFqL_normal.jpg", "favourites_count": 1921, "status": {"retweet_count": 53, "retweeted_status": {"retweet_count": 53, "in_reply_to_user_id": 2436389418, "possibly_sensitive": false, "id_str": "685216836661587968", "in_reply_to_user_id_str": "2436389418", "entities": {"symbols": [], "urls": [{"display_url": "github.com/Chicago", "url": "https://t.co/Q9XtAckEph", "expanded_url": "https://github.com/Chicago", "indices": [33, 56]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 21:49:59 +0000 2016", "favorited": false, "in_reply_to_status_id": 685213939882311680, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "SwiftOnSecurity", "in_reply_to_status_id_str": "685213939882311680", "truncated": false, "id": 685216836661587968, "text": "The city of Chicago has a github https://t.co/Q9XtAckEph", "coordinates": null, "retweeted": false, "favorite_count": 91, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685507521520513029", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/Chicago", "url": "https://t.co/Q9XtAckEph", "expanded_url": "https://github.com/Chicago", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "SwiftOnSecurity", "id_str": "2436389418", "id": 2436389418, "indices": [3, 19], "name": "SecuriTay"}]}, "created_at": "Fri Jan 08 17:05:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685507521520513029, "text": "RT @SwiftOnSecurity: The city of Chicago has a github https://t.co/Q9XtAckEph", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 37933140, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 8478, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "798341", "following": false, "friends_count": 601, "entities": {"description": {"urls": [{"display_url": "parchmentmoon.etsy.com", "url": "https://t.co/6Oaal1jcuN", "expanded_url": "http://parchmentmoon.etsy.com", "indices": [57, 80]}]}, "url": {"urls": [{"display_url": "parchmentmoon.etsy.com", "url": "http://t.co/6Oaal11BDf", "expanded_url": "http://parchmentmoon.etsy.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "5D99B3", "geo_enabled": false, "followers_count": 1981, "location": "Toronto", "screen_name": "dria", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 152, "name": "Deb Richardson", "profile_use_background_image": true, "description": "Photographer & printmaker - owner of @ParchMoonPrints :: https://t.co/6Oaal1jcuN :: also in the Leslieville @ArtsMarket!", "url": "http://t.co/6Oaal11BDf", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", "profile_background_color": "000000", "created_at": "Tue Feb 27 15:26:58 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456143275791888384/F3TWT6cS_normal.png", "favourites_count": 12742, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685244145716334592", "id": 685244145716334592, "text": "Posted a thing on my Facebook biz page today and it reached 1 person. So that's pointless.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 23:38:30 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 798341, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461654253568655360/QSslB767.jpeg", "statuses_count": 29912, "profile_banner_url": "https://pbs.twimg.com/profile_banners/798341/1396011076", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "304076943", "following": false, "friends_count": 6, "entities": {"description": {"urls": [{"display_url": "monktoberfest2015.eventbrite.com", "url": "http://t.co/NujveKLlnM", "expanded_url": "http://monktoberfest2015.eventbrite.com", "indices": [122, 144]}]}, "url": {"urls": [{"display_url": "monktoberfest.com", "url": "http://t.co/mdmBpxbRSI", "expanded_url": "http://monktoberfest.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 467, "location": "Portland, ME", "screen_name": "monktoberfest", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "The Monktoberfest", "profile_use_background_image": true, "description": "The fifth annual Monktoberfest, featuring developers, social, and the best beer in the world. 10/1/15 - 10/2/15. Tickets: http://t.co/NujveKLlnM.", "url": "http://t.co/mdmBpxbRSI", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon May 23 22:02:46 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1596624293/MonktoberFest-small_normal.jpg", "favourites_count": 423, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "674954219082948608", "id": 674954219082948608, "text": "got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. stay tuned.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "monktoberfest", "id_str": "304076943", "id": 304076943, "indices": [20, 34], "name": "The Monktoberfest"}, {"screen_name": "sogrady", "id_str": "143883", "id": 143883, "indices": [81, 89], "name": "steve o'grady"}, {"screen_name": "RedSox", "id_str": "40918816", "id": 40918816, "indices": [108, 115], "name": "Boston Red Sox"}]}, "created_at": "Thu Dec 10 14:10:00 +0000 2015", "source": "Twitter Web Client", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "674955294452133888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JulianeLeary", "id_str": "1425842304", "id": 1425842304, "indices": [3, 16], "name": "Juliane Leary"}, {"screen_name": "monktoberfest", "id_str": "304076943", "id": 304076943, "indices": [38, 52], "name": "The Monktoberfest"}, {"screen_name": "sogrady", "id_str": "143883", "id": 143883, "indices": [99, 107], "name": "steve o'grady"}, {"screen_name": "RedSox", "id_str": "40918816", "id": 40918816, "indices": [126, 133], "name": "Boston Red Sox"}]}, "created_at": "Thu Dec 10 14:14:16 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 674955294452133888, "text": "RT @JulianeLeary: got a sneak peek of @monktoberfest videos. looking great! actually a spot where @sogrady *isn't* wearing a @RedSox hat. \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 304076943, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 664, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8340822", "following": false, "friends_count": 590, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pmc.com", "url": "http://t.co/Fhv1KhCIcD", "expanded_url": "http://pmc.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "FAF7E9", "profile_link_color": "7C9CD7", "geo_enabled": true, "followers_count": 661, "location": "Portland, ME | Chicago | LA", "screen_name": "coreygilmore", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 36, "name": "corey gilmore", "profile_use_background_image": false, "description": "Former gov't. Special Projects Editor @BGR, Chief Architect at @PenskeMedia. r\u0316\u033c\u034d\u0318\u030a\u033f\u033e\u035b\u0365\u0313\u0368\u030e\u0346\u033d\u0313\u0345e\u032f\u032f\u0355\u034e\u0356\u0349\u0332\u035a\u033b\u0325\u0320\u031c\u0367\u0313\u0302\u030d\u0367\u031a", "url": "http://t.co/Fhv1KhCIcD", "profile_text_color": "786F4C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", "profile_background_color": "3371A3", "created_at": "Tue Aug 21 21:51:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407669885/82a3f422052a93f05df9e840f2e51ef1_normal.jpeg", "favourites_count": 1052, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684707377736593408", "id": 684707377736593408, "text": "When the iPhone is too cold, you get high temp warning. I\u2019m leery of self-driving cars from CA for similar reasons \u2013\u00a0need snow, ice testing.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 12:05:34 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8340822, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5995, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8340822/1350040276", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16833482", "following": false, "friends_count": 237, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/girltuesday", "url": "https://t.co/o1qJWZlfKV", "expanded_url": "http://about.me/girltuesday", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", "notifications": false, "profile_sidebar_fill_color": "DBDBDB", "profile_link_color": "AA00B3", "geo_enabled": false, "followers_count": 542, "location": "great northeast", "screen_name": "girltuesday", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "mko'g", "profile_use_background_image": true, "description": "liar: that's latin for lawyer. married to a (red)monk, @sogrady.", "url": "https://t.co/o1qJWZlfKV", "profile_text_color": "330533", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sat Oct 18 00:35:45 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682789439140151296/BWH8ZMdm_normal.jpg", "favourites_count": 944, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685599118815834112", "id": 685599118815834112, "text": "oh, right. it's friday. #babybrain", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "babybrain", "indices": [24, 34]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:09:02 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16833482, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000112628486/b025114d3220db733e6094a6c88fa836.jpeg", "statuses_count": 16543, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16833482/1391211651", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1538841", "following": false, "friends_count": 272, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lu.is", "url": "http://t.co/fXEvt99yzX", "expanded_url": "http://lu.is/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1826, "location": "San Francisco", "screen_name": "tieguy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Luis Villa", "profile_use_background_image": true, "description": "Ex-programmer, ex-lawyer, ex-Miamian. Wikimedia's Sr. Director of Community Engagement, but work doesn't vet or approve.", "url": "http://t.co/fXEvt99yzX", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Mon Mar 19 18:31:56 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460473325911678976/xl-0rRdd_normal.jpeg", "favourites_count": 856, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685400320642433026", "id": 685400320642433026, "text": "During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Wikipedia15", "indices": [7, 19]}], "user_mentions": [{"screen_name": "enwikipedia", "id_str": "18692541", "id": 18692541, "indices": [82, 94], "name": "enwikipedia"}, {"screen_name": "bnwikipedia", "id_str": "2387031866", "id": 2387031866, "indices": [98, 110], "name": "Bengali Wikipedia"}]}, "created_at": "Fri Jan 08 09:59:05 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685534157087223808", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "Wikipedia15", "indices": [20, 32]}], "user_mentions": [{"screen_name": "nhasive", "id_str": "53717936", "id": 53717936, "indices": [3, 11], "name": "Nurunnaby Chowdhury"}, {"screen_name": "enwikipedia", "id_str": "18692541", "id": 18692541, "indices": [95, 107], "name": "enwikipedia"}, {"screen_name": "bnwikipedia", "id_str": "2387031866", "id": 2387031866, "indices": [111, 123], "name": "Bengali Wikipedia"}]}, "created_at": "Fri Jan 08 18:50:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685534157087223808, "text": "RT @nhasive: During #Wikipedia15 good articles contest, 525+ good articles are translated from @enwikipedia to @bnwikipedia", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 1538841, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676483994/42495cb75df46aa198706c5ff20e44b3.jpeg", "statuses_count": 10342, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1538841/1398620171", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "876081", "following": false, "friends_count": 2143, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "en.wikipedia.org/wiki/Evan_Prod\u2026", "url": "https://t.co/DVlmqCqJIB", "expanded_url": "https://en.wikipedia.org/wiki/Evan_Prodromou", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "444475", "geo_enabled": true, "followers_count": 3472, "location": "Montreal, Quebec, Canada", "screen_name": "evanpro", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 367, "name": "Evan Prodromou", "profile_use_background_image": true, "description": "Founder of @fuzzy_io, proud part of @500Startups family. Past founder of @wikitravel, @statusnet. Founding CTO of @breather.", "url": "https://t.co/DVlmqCqJIB", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sat Mar 10 17:43:00 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658854945215524864/XjpP5nt5_normal.jpg", "favourites_count": 17595, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609250530422784", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "swarmapp.com/c/7HtpQYkInPH", "url": "https://t.co/AObWsAng6f", "expanded_url": "https://www.swarmapp.com/c/7HtpQYkInPH", "indices": [52, 75]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:49:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "fr", "geo": {"coordinates": [45.51942856, -73.58714291], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/36775d842cbec509.json", "country": "Canada", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-73.972965, 45.410095], [-73.473085, 45.410095], [-73.473085, 45.705566], [-73.972965, 45.705566]]], "type": "Polygon"}, "full_name": "Montr\u00e9al, Qu\u00e9bec", "contained_within": [], "country_code": "CA", "id": "36775d842cbec509", "name": "Montr\u00e9al"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609250530422784, "text": "End-of-week lift. (@ Nautilus Plus in Montr\u00e9al, QC) https://t.co/AObWsAng6f", "coordinates": {"coordinates": [-73.58714291, 45.51942856], "type": "Point"}, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Foursquare"}, "default_profile_image": false, "id": 876081, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/1414632/big_snowy_street.jpg", "statuses_count": 14346, "profile_banner_url": "https://pbs.twimg.com/profile_banners/876081/1418849529", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "13611", "following": false, "friends_count": 122, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "redmonk.com", "url": "http://t.co/3tt6ytJ0U7", "expanded_url": "http://redmonk.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "5E3321", "geo_enabled": false, "followers_count": 2283, "location": "The Internet", "screen_name": "redmonk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 150, "name": "RedMonk", "profile_use_background_image": true, "description": "We're a small, sharp industry analyst firm focused on people doing interesting stuff with technology. We are: @julianeleary, @monkchips, @sogrady, @tomraftery", "url": "http://t.co/3tt6ytJ0U7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", "profile_background_color": "709397", "created_at": "Tue Nov 21 19:37:32 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/535852024/redmonk-cowl-icon-48x48_normal.jpg", "favourites_count": 67, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677279848230973440", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1O9e5Hl", "url": "https://t.co/3EsqpHx37C", "expanded_url": "http://ift.tt/1O9e5Hl", "indices": [58, 81]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 17 00:11:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677279848230973440, "text": "Monki Gras \u2013 The developer conference about craft culture https://t.co/3EsqpHx37C", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "IFTTT"}, "default_profile_image": false, "id": 13611, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 3514, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14639127", "following": false, "friends_count": 1639, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "451research.com/biography?eid=\u2026", "url": "https://t.co/Vdb2y81qyg", "expanded_url": "https://451research.com/biography?eid=859", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "333333", "geo_enabled": true, "followers_count": 5999, "location": "Minneapolis", "screen_name": "dberkholz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 424, "name": "Donnie Berkholz", "profile_use_background_image": true, "description": "Research Director @451Research - Development, DevOps & IT Ops. Open-source developer. PhD biophysics. Beer lover. Passionate about data, code, and community.", "url": "https://t.co/Vdb2y81qyg", "profile_text_color": "0084B4", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sat May 03 16:19:04 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/591673453754777600/k2rVd3F2_normal.jpg", "favourites_count": 9460, "status": {"in_reply_to_status_id": 685598210883239936, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "danthompson_TN", "in_reply_to_user_id": 20341653, "in_reply_to_status_id_str": "685598210883239936", "in_reply_to_user_id_str": "20341653", "truncated": false, "id_str": "685598596398366720", "id": 685598596398366720, "text": "@danthompson_TN: We never truly outgrow stranger danger.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "danthompson_TN", "id_str": "20341653", "id": 20341653, "indices": [0, 15], "name": "Dan Thompson"}]}, "created_at": "Fri Jan 08 23:06:57 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14639127, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/544828538/x74045665e00a67b1248b78b5a69e99b.png", "statuses_count": 27573, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14639127/1423202091", "is_translator": false}, {"time_zone": "Europe/London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "61233", "following": false, "friends_count": 3383, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "monkchips.com", "url": "http://t.co/4rH6XD51qB", "expanded_url": "http://monkchips.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", "notifications": false, "profile_sidebar_fill_color": "C90D2E", "profile_link_color": "020219", "geo_enabled": true, "followers_count": 20648, "location": "London", "screen_name": "monkchips", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1581, "name": "Medea Fawning", "profile_use_background_image": true, "description": "Co-founder of @RedMonk and @shoreditchworks, organiser of @monkigras, which you should come to Jan 28/29 2016", "url": "http://t.co/4rH6XD51qB", "profile_text_color": "050505", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", "profile_background_color": "B21313", "created_at": "Tue Dec 12 17:35:55 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "DA1724", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676347239518699520/mRAGOQdV_normal.jpg", "favourites_count": 25995, "status": {"retweet_count": 18, "retweeted_status": {"retweet_count": 18, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684741098120429568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/@moonpolysoft/\u2026", "url": "https://t.co/hJCQg4bgZc", "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 14:19:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684741098120429568, "text": "hot take coming through https://t.co/hJCQg4bgZc", "coordinates": null, "retweeted": false, "favorite_count": 27, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685593612256579584", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/@moonpolysoft/\u2026", "url": "https://t.co/hJCQg4bgZc", "expanded_url": "https://medium.com/@moonpolysoft/machine-learning-in-monitoring-is-bs-134e362faee2", "indices": [42, 65]}], "hashtags": [], "user_mentions": [{"screen_name": "moonpolysoft", "id_str": "14204623", "id": 14204623, "indices": [3, 16], "name": "Modafinil Duck"}]}, "created_at": "Fri Jan 08 22:47:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593612256579584, "text": "RT @moonpolysoft: hot take coming through https://t.co/hJCQg4bgZc", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 61233, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3623685/2474327370_974000ce25.jpg", "statuses_count": 87044, "profile_banner_url": "https://pbs.twimg.com/profile_banners/61233/1450351415", "is_translator": false}, {"time_zone": "Madrid", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "797835", "following": false, "friends_count": 4396, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/tomraftery", "url": "http://t.co/5mPSXU1T48", "expanded_url": "http://about.me/tomraftery", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", "notifications": false, "profile_sidebar_fill_color": "D9C8B2", "profile_link_color": "587410", "geo_enabled": true, "followers_count": 11890, "location": "Sevilla, Spain", "screen_name": "TomRaftery", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 837, "name": "Tom Raftery", "profile_use_background_image": true, "description": "Speaker, Blogger, Principal Analyst at GreenMonk (the Energy and Sustainability practice of industry analyst firm RedMonk). Opinions mine etc.", "url": "http://t.co/5mPSXU1T48", "profile_text_color": "355732", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", "profile_background_color": "B38851", "created_at": "Tue Feb 27 11:18:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654543874522763264/ttub9881_normal.jpg", "favourites_count": 2946, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685521358508453888", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/omN5etq7R8Q?a", "url": "https://t.co/KUwhzfRgZH", "expanded_url": "http://youtu.be/omN5etq7R8Q?a", "indices": [34, 57]}], "hashtags": [], "user_mentions": [{"screen_name": "YouTube", "id_str": "10228272", "id": 10228272, "indices": [62, 70], "name": "YouTube"}]}, "created_at": "Fri Jan 08 18:00:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685521358508453888, "text": "Technology for Good - episode 82: https://t.co/KUwhzfRgZH via @YouTube", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Google"}, "default_profile_image": false, "id": 797835, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662781834/v3bhsw10kmfiifnoz9ru.jpeg", "statuses_count": 52847, "profile_banner_url": "https://pbs.twimg.com/profile_banners/797835/1398243904", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "43580317", "following": false, "friends_count": 111, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kegbot.org", "url": "https://t.co/JeweXBoTLE", "expanded_url": "https://kegbot.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1488, "location": "San Francisco, CA", "screen_name": "Kegbot", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Kegbot", "profile_use_background_image": true, "description": "Kegbot turns your beer kegerator into an awesomeness machine. Free and open source software - and now on Kickstarter!", "url": "https://t.co/JeweXBoTLE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", "profile_background_color": "022330", "created_at": "Sat May 30 19:38:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1106200544/kegbot-icon-256_normal.png", "favourites_count": 164, "status": {"in_reply_to_status_id": 628332799204921345, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "eheydrick", "in_reply_to_user_id": 3169572185, "in_reply_to_status_id_str": "628332799204921345", "in_reply_to_user_id_str": "3169572185", "truncated": false, "id_str": "630038228469477376", "id": 630038228469477376, "text": "@eheydrick D'oh! All fixed, thanks for the head's up!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "eheydrick", "id_str": "3169572185", "id": 3169572185, "indices": [0, 10], "name": "Eric Heydrick"}]}, "created_at": "Sat Aug 08 15:29:53 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 43580317, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 461, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43580317/1385073894", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "1023611", "following": false, "friends_count": 192, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 691, "location": "Denver, CO, USA", "screen_name": "hildjj", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 47, "name": "Joe Hildebrand", "profile_use_background_image": true, "description": "Distinguished Engineer in Cisco's Cloud Collaboration Application Technology Group. Architecture for WebEx, Jabber, Social, etc.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Mar 12 16:34:27 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/64785777/eye_100_normal.jpg", "favourites_count": 232, "status": {"in_reply_to_status_id": 669757790378786816, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "thisNatasha", "in_reply_to_user_id": 28321091, "in_reply_to_status_id_str": "669757790378786816", "in_reply_to_user_id_str": "28321091", "truncated": false, "id_str": "669875748082196481", "id": 669875748082196481, "text": "@thisNatasha @bortzmeyer @mnot still early days. Keep backups as you go.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thisNatasha", "id_str": "28321091", "id": 28321091, "indices": [0, 12], "name": "Natasha Rooney"}, {"screen_name": "bortzmeyer", "id_str": "75263632", "id": 75263632, "indices": [13, 24], "name": "St\u00e9phane Bortzmeyer"}, {"screen_name": "mnot", "id_str": "5832482", "id": 5832482, "indices": [25, 30], "name": "Mark Nottingham"}]}, "created_at": "Thu Nov 26 13:49:58 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1023611, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 2243, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "143883", "following": false, "friends_count": 589, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "redmonk.com/sogrady", "url": "http://t.co/NlsofJ8aQb", "expanded_url": "http://redmonk.com/sogrady", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 7415, "location": "Maine...probably", "screen_name": "sogrady", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 604, "name": "steve o'grady", "profile_use_background_image": true, "description": "i helped found RedMonk. if you see someone at a tech conference wearing a Red Sox hat, that's probably me. wrote @newkingmakers. married to @girltuesday. eph.", "url": "http://t.co/NlsofJ8aQb", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", "profile_background_color": "9AE4E8", "created_at": "Fri Dec 22 01:53:11 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1753525764/image1326514302_normal.png", "favourites_count": 30838, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685563226143223809", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sogrady.org/2016/01/08/my-\u2026", "url": "https://t.co/9T7jPZcyTf", "expanded_url": "http://sogrady.org/2016/01/08/my-2015-in-pictures/", "indices": [80, 103]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:46:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685563226143223809, "text": "2015 was a year of ups and downs, a year i\u2019m grateful for. my 2015 in pictures: https://t.co/9T7jPZcyTf", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 143883, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64321065/sunset.jpg", "statuses_count": 42833, "profile_banner_url": "https://pbs.twimg.com/profile_banners/143883/1400163495", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "54481001", "following": false, "friends_count": 142, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.notapaper.de", "url": "http://t.co/fWUrVqihzH", "expanded_url": "http://blog.notapaper.de", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "4C95ED", "geo_enabled": true, "followers_count": 191, "location": "Potsdam", "screen_name": "hannesrauhe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Hannes Rauhe", "profile_use_background_image": false, "description": "Hat-wearing Geek and researcher with social skills. Verteidiger des Genitivs", "url": "http://t.co/fWUrVqihzH", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", "profile_background_color": "352726", "created_at": "Tue Jul 07 07:27:27 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/740331845/6361---Hannes_normal.png", "favourites_count": 62, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MatthiasKuphal", "in_reply_to_user_id": 457857280, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "457857280", "truncated": false, "id_str": "685166321366077440", "id": 685166321366077440, "text": "@MatthiasKuphal Prost Neujahr! Bist du morgen tags\u00fcber frei f\u00fcr alkoholfreie Biere oder dergleichen? Hab Urlaub. :-)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MatthiasKuphal", "id_str": "457857280", "id": 457857280, "indices": [0, 15], "name": "Matthias Kuphal"}]}, "created_at": "Thu Jan 07 18:29:15 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "de"}, "default_profile_image": false, "id": 54481001, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2773, "is_translator": false}], "next_cursor": 0, "previous_cursor": -1488949916577120071, "previous_cursor_str": "-1488949916577120071", "next_cursor_str": "0"} \ No newline at end of file diff --git a/testdata/get_friends_paged.json b/testdata/get_friends_paged.json index 3b4de7e0..50e22e8c 100644 --- a/testdata/get_friends_paged.json +++ b/testdata/get_friends_paged.json @@ -1,26427 +1 @@ - { - "next_cursor": 1494734862149901956, - "users": [ - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "18275645", - "following": false, - "friends_count": 118, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "danluu.com", - "url": "http://t.co/yAGxZQzkJc", - "expanded_url": "http://danluu.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2884, - "location": "Seattle, WA", - "screen_name": "danluu", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 70, - "name": "Dan Luu", - "profile_use_background_image": true, - "description": "Hardware/software co-design @Microsoft. Previously @google, @recursecenter, and centaur.", - "url": "http://t.co/yAGxZQzkJc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Dec 21 00:21:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", - "favourites_count": 624, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "danluu", - "in_reply_to_user_id": 18275645, - "in_reply_to_status_id_str": "685537630235136000", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685539148292214784", - "id": 685539148292214784, - "text": "@twitter Meanwhile, automated bots have been tweeting every HN frontpage link for 3 years without getting flagged.", - "in_reply_to_user_id_str": "18275645", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "twitter", - "id_str": "783214", - "id": 783214, - "indices": [ - 0, - 8 - ], - "name": "Twitter" - } - ] - }, - "created_at": "Fri Jan 08 19:10:44 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685537630235136000, - "lang": "en" - }, - "default_profile_image": false, - "id": 18275645, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 685, - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "16246973", - "following": false, - "friends_count": 142, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.scottlowe.org", - "url": "http://t.co/EMI294FM8u", - "expanded_url": "http://blog.scottlowe.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 22381, - "location": "Denver, CO, USA", - "screen_name": "scott_lowe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 989, - "name": "Scott S. Lowe", - "profile_use_background_image": true, - "description": "An IT pro specializing in virtualization, networking, open source, & cloud computing; currently working for a leading virtualization vendor (tweets are mine)", - "url": "http://t.co/EMI294FM8u", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Sep 11 20:17:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", - "favourites_count": 0, - "status": { - "retweet_count": 6, - "retweeted_status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597324853161984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "networkworld.com/article/301666\u2026", - "url": "https://t.co/Y5HBdGgEor", - "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", - "indices": [ - 99, - 122 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:01:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597324853161984, - "text": "With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgEor", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597548321505280", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "networkworld.com/article/301666\u2026", - "url": "https://t.co/Y5HBdGgEor", - "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", - "indices": [ - 118, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "martin_casado", - "id_str": "16591288", - "id": 16591288, - "indices": [ - 3, - 17 - ], - "name": "martin_casado" - } - ] - }, - "created_at": "Fri Jan 08 23:02:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597548321505280, - "text": "RT @martin_casado: With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgE\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 16246973, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 34402, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6981492", - "following": false, - "friends_count": 178, - "entities": { - "description": { - "urls": [ - { - "display_url": "Postlight.com", - "url": "http://t.co/AxJX6dV8Ig", - "expanded_url": "http://Postlight.com", - "indices": [ - 21, - 43 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ftrain.com", - "url": "http://t.co/6afN702mgr", - "expanded_url": "http://ftrain.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 32171, - "location": "Brooklyn, New York, USA", - "screen_name": "ftrain", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1452, - "name": "Paul Ford", - "profile_use_background_image": true, - "description": "(1974\u2013 ) Co-founder, http://t.co/AxJX6dV8Ig. Writing a book about web pages for FSG. Contact ford@ftrain.com if you spot a typo.", - "url": "http://t.co/6afN702mgr", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Jun 21 01:11:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", - "favourites_count": 20008, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.026675, - 40.683935 - ], - [ - -73.910408, - 40.683935 - ], - [ - -73.910408, - 40.877483 - ], - [ - -74.026675, - 40.877483 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Manhattan, NY", - "id": "01a9a39529b27f36", - "name": "Manhattan" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "682597070751035392", - "id": 682597070751035392, - "text": "2016 resolution: Get off Twitter, for all but writing-promotional purposes, until I lose 32 pounds, one for every thousand followers.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 16:19:58 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 58, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 6981492, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", - "statuses_count": 29820, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6981492/1362958335", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2266469498", - "following": false, - "friends_count": 344, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.samwhited.com", - "url": "https://t.co/FVESgX6vVp", - "expanded_url": "https://blog.samwhited.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "9ABB59", - "geo_enabled": true, - "followers_count": 97, - "location": "Austin, TX", - "screen_name": "SamWhited", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Sam Whited", - "profile_use_background_image": true, - "description": "Sometimes I tweet things, but mostly I don't.", - "url": "https://t.co/FVESgX6vVp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Sat Dec 28 21:36:45 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", - "favourites_count": 68, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683367861557956608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/linode/status/\u2026", - "url": "https://t.co/ChRPqTJULN", - "expanded_url": "https://twitter.com/linode/status/683366718798954496", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 02 19:22:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683367861557956608, - "text": "I have not been able to maintain a persistant TCP connection with my Linodes in Days\u2026 https://t.co/ChRPqTJULN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2266469498, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", - "statuses_count": 708, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2266469498/1388268061", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6815762", - "following": false, - "friends_count": 825, - "entities": { - "description": { - "urls": [ - { - "display_url": "lasp-lang.org", - "url": "https://t.co/SvIEg6a8n1", - "expanded_url": "http://lasp-lang.org", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "christophermeiklejohn.com", - "url": "https://t.co/OteoESj7H9", - "expanded_url": "http://christophermeiklejohn.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "4E5A5E", - "geo_enabled": true, - "followers_count": 3106, - "location": "San Francisco, CA", - "screen_name": "cmeik", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 155, - "name": "Christophe le fou", - "profile_use_background_image": true, - "description": "building programming languages for distributed computation; https://t.co/SvIEg6a8n1", - "url": "https://t.co/OteoESj7H9", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Jun 14 16:35:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", - "favourites_count": 38349, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -115.2092535, - 35.984784 - ], - [ - -115.0610763, - 35.984784 - ], - [ - -115.0610763, - 36.137145 - ], - [ - -115.2092535, - 36.137145 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Paradise, NV", - "id": "8fa6d7a33b83ef26", - "name": "Paradise" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685629512961245184", - "id": 685629512961245184, - "text": "[checking in to hotel]\n\"The IEEE? That's the porn conference, right?\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:09:48 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 7, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 6815762, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 49789, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6815762/1420224089", - "is_translator": false - }, - { - "time_zone": "Stockholm", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "17616622", - "following": false, - "friends_count": 332, - "entities": { - "description": { - "urls": [ - { - "display_url": "locust.io", - "url": "http://t.co/TQXEGLwCis", - "expanded_url": "http://locust.io", - "indices": [ - 78, - 100 - ] - }, - { - "display_url": "heyevent.com", - "url": "http://t.co/0DMoIMMGYB", - "expanded_url": "http://heyevent.com", - "indices": [ - 102, - 124 - ] - }, - { - "display_url": "boutiquehotel.me", - "url": "http://t.co/UVjwCLqJWP", - "expanded_url": "http://boutiquehotel.me", - "indices": [ - 137, - 159 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "heyman.info", - "url": "http://t.co/OJuVdsnIXQ", - "expanded_url": "http://heyman.info", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1063, - "location": "Sweden", - "screen_name": "jonatanheyman", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Jonatan Heyman", - "profile_use_background_image": true, - "description": "I'm a developer and I Iike to build stuff. I love Python. Author of @locustio http://t.co/TQXEGLwCis, http://t.co/0DMoIMMGYB, @ronigame, http://t.co/UVjwCLqJWP", - "url": "http://t.co/OJuVdsnIXQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Nov 25 10:15:22 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", - "favourites_count": 112, - "status": { - "retweet_count": 32, - "retweeted_status": { - "retweet_count": 32, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685581797850279937", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:00:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685581797850279937, - "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 33, - "contributors": null, - "source": "Mobile Web (M5)" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685587786120970241", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tomdale", - "id_str": "668863", - "id": 668863, - "indices": [ - 3, - 11 - ], - "name": "Tom Dale" - } - ] - }, - "created_at": "Fri Jan 08 22:24:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685587786120970241, - "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 17616622, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 996, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17616622/1397123585", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "290900886", - "following": false, - "friends_count": 28, - "entities": { - "description": { - "urls": [ - { - "display_url": "hashicorp.com/atlas", - "url": "https://t.co/3rYtQZlVFj", - "expanded_url": "https://hashicorp.com/atlas", - "indices": [ - 75, - 98 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "hashicorp.com", - "url": "https://t.co/ny0Vs9IMpz", - "expanded_url": "https://hashicorp.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "48B4FB", - "geo_enabled": false, - "followers_count": 10680, - "location": "San Francisco, CA", - "screen_name": "hashicorp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 326, - "name": "HashiCorp", - "profile_use_background_image": false, - "description": "We build Vagrant, Packer, Serf, Consul, Terraform, Vault, Nomad, Otto, and https://t.co/3rYtQZlVFj. We love developers, ops, and are obsessed with automation.", - "url": "https://t.co/ny0Vs9IMpz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Sun May 01 04:14:30 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", - "favourites_count": 23, - "status": { - "retweet_count": 12, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685602742769876992", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/hashicorp/terr\u2026", - "url": "https://t.co/QjiHQfLdQF", - "expanded_url": "https://github.com/hashicorp/terraform/blob/v0.6.9/CHANGELOG.md#069-january-8-2016", - "indices": [ - 90, - 113 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:23:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685602742769876992, - "text": "Terraform 0.6.9 has been released! 5 new providers and a long list of features and fixes: https://t.co/QjiHQfLdQF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 14, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 290900886, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 715, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1229010770", - "following": false, - "friends_count": 15, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kimh.github.io", - "url": "http://t.co/rOoCzBI0Uk", - "expanded_url": "http://kimh.github.io/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 24, - "location": "", - "screen_name": "kimhirokuni", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Kim, Hirokuni", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/rOoCzBI0Uk", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Mar 01 04:35:59 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", - "favourites_count": 4, - "status": { - "retweet_count": 14, - "retweeted_status": { - "retweet_count": 14, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684163973390974976", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 169, - "resize": "fit" - }, - "large": { - "w": 799, - "h": 398, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 298, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "type": "photo", - "indices": [ - 95, - 118 - ], - "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "display_url": "pic.twitter.com/VEpSVWgnhn", - "id_str": "684163973206421509", - "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", - "id": 684163973206421509, - "url": "https://t.co/VEpSVWgnhn" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "circle.ci/1YyS1W6", - "url": "https://t.co/Mil1rt44Ve", - "expanded_url": "http://circle.ci/1YyS1W6", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 16, - 25 - ], - "name": "CircleCI" - } - ] - }, - "created_at": "Tue Jan 05 00:06:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684163973390974976, - "text": "We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684249491948490752", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 169, - "resize": "fit" - }, - "large": { - "w": 799, - "h": 398, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 298, - "resize": "fit" - } - }, - "source_status_id_str": "684163973390974976", - "url": "https://t.co/VEpSVWgnhn", - "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "source_user_id_str": "381223731", - "id_str": "684163973206421509", - "id": 684163973206421509, - "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", - "type": "photo", - "indices": [ - 109, - 132 - ], - "source_status_id": 684163973390974976, - "source_user_id": 381223731, - "display_url": "pic.twitter.com/VEpSVWgnhn", - "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "circle.ci/1YyS1W6", - "url": "https://t.co/Mil1rt44Ve", - "expanded_url": "http://circle.ci/1YyS1W6", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 3, - 12 - ], - "name": "CircleCI" - }, - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 30, - 39 - ], - "name": "CircleCI" - } - ] - }, - "created_at": "Tue Jan 05 05:46:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684249491948490752, - "text": "RT @circleci: We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1229010770, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 56, - "is_translator": false - }, - { - "time_zone": "Madrid", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "311029627", - "following": false, - "friends_count": 173, - "entities": { - "description": { - "urls": [ - { - "display_url": "keybase.io/alexey_ch", - "url": "http://t.co/3wRCyfslLs", - "expanded_url": "http://keybase.io/alexey_ch", - "indices": [ - 56, - 78 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "alexey.ch", - "url": "http://t.co/sGSgRzEPYs", - "expanded_url": "http://alexey.ch", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 230, - "location": "Sant Cugat del Vall\u00e8s", - "screen_name": "alexey_am_i", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Alexey", - "profile_use_background_image": true, - "description": "bites and bytes / chief bash script officer @circleci / http://t.co/3wRCyfslLs", - "url": "http://t.co/sGSgRzEPYs", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Sat Jun 04 19:35:45 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", - "favourites_count": 2099, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "KrauseFx", - "in_reply_to_user_id": 50055757, - "in_reply_to_status_id_str": "685505979270574080", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685506452614688768", - "id": 685506452614688768, - "text": "@KrauseFx Nice screenshot :D", - "in_reply_to_user_id_str": "50055757", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "KrauseFx", - "id_str": "50055757", - "id": 50055757, - "indices": [ - 0, - 9 - ], - "name": "Felix Krause" - } - ] - }, - "created_at": "Fri Jan 08 17:00:49 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685505979270574080, - "lang": "en" - }, - "default_profile_image": false, - "id": 311029627, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", - "statuses_count": 10759, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/311029627/1366924833", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "810781", - "following": false, - "friends_count": 370, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "unwiredcouch.com", - "url": "https://t.co/AlM3lgSG3F", - "expanded_url": "https://unwiredcouch.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0099CC", - "geo_enabled": false, - "followers_count": 1872, - "location": "probably Brooklyn or Freiburg", - "screen_name": "mrtazz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 103, - "name": "Daniel Schauenberg", - "profile_use_background_image": true, - "description": "Infrastructure Toolsmith at Etsy. A Cheap Trick and a Cheesy One-Liner. I own 100% of my opinions. Feminist.", - "url": "https://t.co/AlM3lgSG3F", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", - "profile_background_color": "FFF04D", - "created_at": "Sun Mar 04 21:17:02 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFF8AD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", - "favourites_count": 7996, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jmhodges", - "in_reply_to_user_id": 9267272, - "in_reply_to_status_id_str": "685561412450562048", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685565956836487168", - "id": 685565956836487168, - "text": "@jmhodges the important bit is to understand when and how and learn from it", - "in_reply_to_user_id_str": "9267272", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jmhodges", - "id_str": "9267272", - "id": 9267272, - "indices": [ - 0, - 9 - ], - "name": "Jeff Hodges" - } - ] - }, - "created_at": "Fri Jan 08 20:57:15 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685561412450562048, - "lang": "en" - }, - "default_profile_image": false, - "id": 810781, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "statuses_count": 17494, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/810781/1374119286", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "166282004", - "following": false, - "friends_count": 131, - "entities": { - "description": { - "urls": [ - { - "display_url": "scotthel.me/PGP", - "url": "http://t.co/gL8cUpGdUF", - "expanded_url": "http://scotthel.me/PGP", - "indices": [ - 137, - 159 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "scotthelme.co.uk", - "url": "https://t.co/amYoJQqVCA", - "expanded_url": "https://scotthelme.co.uk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "2971FF", - "geo_enabled": false, - "followers_count": 1586, - "location": "UK", - "screen_name": "Scott_Helme", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 94, - "name": "Scott Helme", - "profile_use_background_image": false, - "description": "Information Security Consultant, blogger, builder of things. Creator of @reporturi and @securityheaders. I want to secure the entire web http://t.co/gL8cUpGdUF", - "url": "https://t.co/amYoJQqVCA", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", - "profile_background_color": "F5F8FA", - "created_at": "Tue Jul 13 19:42:08 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", - "favourites_count": 488, - "status": { - "retweet_count": 130, - "retweeted_status": { - "retweet_count": 130, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684262306956443648", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "securityheaders.io", - "url": "https://t.co/tFn2HCB6YS", - "expanded_url": "https://securityheaders.io/", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 06:37:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684262306956443648, - "text": "SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 261, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685607128095154176", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "securityheaders.io", - "url": "https://t.co/tFn2HCB6YS", - "expanded_url": "https://securityheaders.io/", - "indices": [ - 88, - 111 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "smashingmag", - "id_str": "15736190", - "id": 15736190, - "indices": [ - 3, - 15 - ], - "name": "Smashing Magazine" - } - ] - }, - "created_at": "Fri Jan 08 23:40:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685607128095154176, - "text": "RT @smashingmag: SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 166282004, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", - "statuses_count": 5651, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/166282004/1421676770", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13734442", - "following": false, - "friends_count": 700, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "entropystream.net", - "url": "http://t.co/jHZOamrEt4", - "expanded_url": "http://entropystream.net", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "193FFF", - "geo_enabled": false, - "followers_count": 906, - "location": "Seattle WA", - "screen_name": "blueben", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 73, - "name": "Ben Macguire", - "profile_use_background_image": false, - "description": "Ops Engineer, Music, RF, Puppies.", - "url": "http://t.co/jHZOamrEt4", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Feb 20 19:12:44 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", - "favourites_count": 497, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685121298100424704", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", - "type": "photo", - "indices": [ - 34, - 57 - ], - "media_url": "http://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", - "display_url": "pic.twitter.com/yJ5odOn9OQ", - "id_str": "685121290575806465", - "expanded_url": "http://twitter.com/blueben/status/685121298100424704/photo/1", - "id": 685121290575806465, - "url": "https://t.co/yJ5odOn9OQ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 15:30:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685121298100424704, - "text": "Slightly foggy in Salt Lake City. https://t.co/yJ5odOn9OQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 13734442, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 14940, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3237083798", - "following": false, - "friends_count": 2, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bgpstream.com", - "url": "https://t.co/gdCAgJZFwt", - "expanded_url": "https://bgpstream.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1378, - "location": "", - "screen_name": "bgpstream", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "bgpstream", - "profile_use_background_image": true, - "description": "BGPStream is a free resource for receiving alerts about BGP hijacks and large scale outages. Brought to you by @bgpmon", - "url": "https://t.co/gdCAgJZFwt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Jun 05 15:28:16 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", - "favourites_count": 4, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685604760662196224", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bgpstream.com/event/16414", - "url": "https://t.co/Fwvyew4hhY", - "expanded_url": "http://bgpstream.com/event/16414", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:31:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685604760662196224, - "text": "BGP,OT,52742,INTERNET,-,Outage affected 15 prefixes, https://t.co/Fwvyew4hhY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "BGPStream" - }, - "default_profile_image": false, - "id": 3237083798, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3555, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3237083798/1437676409", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "507922769", - "following": false, - "friends_count": 295, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "waterpigs.co.uk", - "url": "https://t.co/NTbafUKQZe", - "expanded_url": "https://waterpigs.co.uk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 331, - "location": "Reykjav\u00edk, Iceland", - "screen_name": "BarnabyWalters", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Barnaby Walters", - "profile_use_background_image": true, - "description": "Music/tech minded individual. Trained as a luthier, working on web surveys at V\u00edsar, Iceland. Building the #indieweb of the future. Hiking, climbing, gurdying.", - "url": "https://t.co/NTbafUKQZe", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Feb 28 21:07:29 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", - "favourites_count": 2198, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684845666649157632", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "waterpigs.co.uk/img/2016-01-06\u2026", - "url": "https://t.co/7wSqHpJZYS", - "expanded_url": "https://waterpigs.co.uk/img/2016-01-06-bubbles.gif", - "indices": [ - 36, - 59 - ] - }, - { - "display_url": "waterpigs.co.uk/notes/4f6MF3/", - "url": "https://t.co/5L2Znu5Ack", - "expanded_url": "https://waterpigs.co.uk/notes/4f6MF3/", - "indices": [ - 62, - 85 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 21:15:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684845666649157632, - "text": "A little preparation for tomorrow\u2026\n\nhttps://t.co/7wSqHpJZYS\n (https://t.co/5L2Znu5Ack)", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Waterpigs.co.uk" - }, - "default_profile_image": false, - "id": 507922769, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", - "statuses_count": 3559, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/507922769/1348091343", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "235193328", - "following": false, - "friends_count": 129, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "indiewebcamp.com", - "url": "http://t.co/Lhpx03ubrJ", - "expanded_url": "http://indiewebcamp.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 782, - "location": "Portland, Oregon", - "screen_name": "indiewebcamp", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "IndieWebCamp", - "profile_use_background_image": true, - "description": "Rather than posting content on 3rd-party silos, we should all begin owning our data when we create it.", - "url": "http://t.co/Lhpx03ubrJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Jan 07 15:53:54 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", - "favourites_count": 1154, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685273812682719233", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "zeldman.com/2016/01/05/139\u2026", - "url": "https://t.co/kMiWh7ufuW", - "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", - "indices": [ - 104, - 127 - ] - } - ], - "hashtags": [ - { - "indices": [ - 128, - 137 - ], - "text": "indieweb" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 01:36:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685273812682719233, - "text": "\u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7ufuW #indieweb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685306865635336192", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "zeldman.com/2016/01/05/139\u2026", - "url": "https://t.co/kMiWh7ufuW", - "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", - "indices": [ - 120, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "indieweb" - } - ], - "user_mentions": [ - { - "screen_name": "kevinmarks", - "id_str": "57203", - "id": 57203, - "indices": [ - 3, - 14 - ], - "name": "Kevin Marks" - } - ] - }, - "created_at": "Fri Jan 08 03:47:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685306865635336192, - "text": "RT @kevinmarks: \u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 235193328, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 151, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1183041", - "following": false, - "friends_count": 335, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wilwheaton.net/2009/02/what-t\u2026", - "url": "http://t.co/UAYYOhbijM", - "expanded_url": "http://wilwheaton.net/2009/02/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "F6101E", - "geo_enabled": false, - "followers_count": 2966166, - "location": "Los Angeles", - "screen_name": "wilw", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 38875, - "name": "Wil Wheaton", - "profile_use_background_image": true, - "description": "Barrelslayer. Time Lord. Fake geek girl. On a good day I am charming as fuck.", - "url": "http://t.co/UAYYOhbijM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", - "profile_background_color": "022330", - "created_at": "Wed Mar 14 21:25:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", - "favourites_count": 445, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685630321258172416", - "id": 685630321258172416, - "text": "LOS ANGELES you really want to see what's left of this sunset.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:13:01 +0000 2016", - "source": "Tweetings for Android", - "favorite_count": 11, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 1183041, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", - "statuses_count": 60971, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183041/1368668860", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24184180", - "following": false, - "friends_count": 150, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "004A05", - "geo_enabled": true, - "followers_count": 283, - "location": "", - "screen_name": "xanderdumaine", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 31, - "name": "Xander Dumaine", - "profile_use_background_image": true, - "description": "still trying. sometimes I have Opinions\u2122 which are my own, and do not represent my employer. Retweets do not imply endorsement.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Mar 13 14:59:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", - "favourites_count": 1252, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 237534782, - "possibly_sensitive": false, - "id_str": "685584914973089792", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/necrosofty/sta\u2026", - "url": "https://t.co/9jl9UNHv0s", - "expanded_url": "https://twitter.com/necrosofty/status/685270713792466944", - "indices": [ - 13, - 36 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MattCheely", - "id_str": "237534782", - "id": 237534782, - "indices": [ - 0, - 11 - ], - "name": "Matt Cheely" - } - ] - }, - "created_at": "Fri Jan 08 22:12:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "237534782", - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0122292c5bc9ff29.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -78.881022, - 35.796927 - ], - [ - -78.786799, - 35.796927 - ], - [ - -78.786799, - 35.870756 - ], - [ - -78.881022, - 35.870756 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Morrisville, NC", - "id": "0122292c5bc9ff29", - "name": "Morrisville" - }, - "in_reply_to_screen_name": "MattCheely", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685584914973089792, - "text": "@MattCheely https://t.co/9jl9UNHv0s", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 24184180, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", - "statuses_count": 18329, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/24184180/1452092382", - "is_translator": false - }, - { - "time_zone": "Melbourne", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "79227302", - "following": false, - "friends_count": 30, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fastmail.com", - "url": "https://t.co/ckOsRTyp9h", - "expanded_url": "https://www.fastmail.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "44567E", - "geo_enabled": true, - "followers_count": 5651, - "location": "Melbourne, Australia", - "screen_name": "FastMailFM", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 239, - "name": "FastMail", - "profile_use_background_image": true, - "description": "Email, calendars and contacts done right.", - "url": "https://t.co/ckOsRTyp9h", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", - "profile_background_color": "022330", - "created_at": "Fri Oct 02 16:49:48 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", - "favourites_count": 293, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "chrisWhite", - "in_reply_to_user_id": 7804242, - "in_reply_to_status_id_str": "685607110684454912", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610756151230464", - "id": 685610756151230464, - "text": "@chrisWhite No the subject tagging is independent. You can turn it off in Advaced \u2192 Spam Preferences.", - "in_reply_to_user_id_str": "7804242", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chrisWhite", - "id_str": "7804242", - "id": 7804242, - "indices": [ - 0, - 11 - ], - "name": "Chris White" - } - ] - }, - "created_at": "Fri Jan 08 23:55:16 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685607110684454912, - "lang": "en" - }, - "default_profile_image": false, - "id": 79227302, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2194, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/79227302/1403516751", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2209238580", - "following": false, - "friends_count": 2044, - "entities": { - "description": { - "urls": [ - { - "display_url": "github.com/StackStorm/st2", - "url": "https://t.co/sd2EyabsN0", - "expanded_url": "https://github.com/StackStorm/st2", - "indices": [ - 100, - 123 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "stackstorm.com", - "url": "http://t.co/5oR6MbHPSq", - "expanded_url": "http://www.stackstorm.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2407, - "location": "Palo Alto, CA", - "screen_name": "Stack_Storm", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 110, - "name": "StackStorm", - "profile_use_background_image": true, - "description": "Event driven operations. Sometimes called IFTTT for IT ops. Open source. Auto-remediation and more.\nhttps://t.co/sd2EyabsN0", - "url": "http://t.co/5oR6MbHPSq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Nov 22 16:42:49 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", - "favourites_count": 548, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685551803044249600", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "redd.it/3ztcla", - "url": "https://t.co/C6Wa98PSra", - "expanded_url": "https://redd.it/3ztcla", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [ - { - "indices": [ - 20, - 28 - ], - "text": "chatops" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:01:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685551803044249600, - "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685561768551186432", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "redd.it/3ztcla", - "url": "https://t.co/C6Wa98PSra", - "expanded_url": "https://redd.it/3ztcla", - "indices": [ - 108, - 131 - ] - } - ], - "hashtags": [ - { - "indices": [ - 36, - 44 - ], - "text": "chatops" - } - ], - "user_mentions": [ - { - "screen_name": "epowell101", - "id_str": "15119662", - "id": 15119662, - "indices": [ - 3, - 14 - ], - "name": "Evan Powell" - } - ] - }, - "created_at": "Fri Jan 08 20:40:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685561768551186432, - "text": "RT @epowell101: Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2209238580, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1667, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209238580/1414949794", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "160640740", - "following": false, - "friends_count": 1203, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/marcomorain", - "url": "https://t.co/QNDuJQAZ6V", - "expanded_url": "https://github.com/marcomorain", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 503, - "location": "Dublin, Ireland", - "screen_name": "atmarc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "Marc O'Merriment", - "profile_use_background_image": true, - "description": "Developer at @CircleCI Previously Swrve, Havok and Kore Virtual Machines.", - "url": "https://t.co/QNDuJQAZ6V", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Mon Jun 28 19:06:33 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", - "favourites_count": 3499, - "status": { - "retweet_count": 32, - "retweeted_status": { - "retweet_count": 32, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685581797850279937", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:00:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685581797850279937, - "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 33, - "contributors": null, - "source": "Mobile Web (M5)" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685582745637109760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.twitter.com/mjasay/status/\u2026", - "url": "https://t.co/V9CWXyC8lL", - "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tomdale", - "id_str": "668863", - "id": 668863, - "indices": [ - 3, - 11 - ], - "name": "Tom Dale" - } - ] - }, - "created_at": "Fri Jan 08 22:03:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685582745637109760, - "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 160640740, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 4682, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/160640740/1398359765", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13470", - "following": false, - "friends_count": 1409, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sauria.com/blog", - "url": "http://t.co/UB3y8QBrA6", - "expanded_url": "http://www.sauria.com/blog", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 2849, - "location": "Bainbridge Island, WA", - "screen_name": "twleung", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 218, - "name": "Ted Leung", - "profile_use_background_image": true, - "description": "photographs, modern programming languages, embedded systems, and commons based peer production. Leading the Playmation software team at The Walt Disney Company.", - "url": "http://t.co/UB3y8QBrA6", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Nov 21 09:23:47 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", - "favourites_count": 4072, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jaxzin", - "in_reply_to_user_id": 14320521, - "in_reply_to_status_id_str": "684776564093931521", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684784895512584192", - "id": 684784895512584192, - "text": "@jaxzin what do you think is the magic price point?", - "in_reply_to_user_id_str": "14320521", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jaxzin", - "id_str": "14320521", - "id": 14320521, - "indices": [ - 0, - 7 - ], - "name": "Brian R. Jackson" - } - ] - }, - "created_at": "Wed Jan 06 17:13:36 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684776564093931521, - "lang": "en" - }, - "default_profile_image": false, - "id": 13470, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 9358, - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "50599894", - "following": false, - "friends_count": 1352, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 955, - "location": "Paris, France", - "screen_name": "nyconyco", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 72, - "name": "Nicolas V\u00e9rit\u00e9, N\u00ffco", - "profile_use_background_image": true, - "description": "Product Owner @ErlangSolutions, President at @LinuxFrOrg #FLOSS #OpenSource #TheOpenOrg #Agile #LeanStartup #DesignThinking #GrowthHacking", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu Jun 25 09:26:17 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", - "favourites_count": 343, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685537987355111426", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1O8FVAd", - "url": "https://t.co/IxvtPzMNtO", - "expanded_url": "http://buff.ly/1O8FVAd", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [ - { - "indices": [ - 2, - 11 - ], - "text": "Startups" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:06:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685537987355111426, - "text": "8 #Startups, 4 IPO's, Lost $35m of Investors Money to Paying Them Back $1b Each! Startup Lessons From Steve Blank https://t.co/IxvtPzMNtO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 50599894, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 4281, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/50599894/1358775155", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "106621747", - "following": false, - "friends_count": 100, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "B30645", - "geo_enabled": true, - "followers_count": 734, - "location": "", - "screen_name": "KalieCatt", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 40, - "name": "Kalie Fry", - "profile_use_background_image": true, - "description": "director of engagement marketing at @gomcmkt. wordsmith. social media jedi. closet creative. coffee connoisseur. classic novel enthusiast.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Jan 20 04:01:25 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", - "favourites_count": 6311, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685351275647516672", - "id": 685351275647516672, - "text": "So, I've been in an emoji formula battle all day and need to phone a friend. Want to help me solve?\n\n\u2754\u2795\u2702\ufe0f=\u2753\n\u2754\u2795\ud83c\uddf3\ud83c\uddec= \u2753\u2753\n\u2754\u2754\u2795(\u2796\ud83c\udf32\u2795\ud83d\udd34\u2795\ud83c\udf41)=\u2753\u2753", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 06:44:11 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 106621747, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", - "statuses_count": 2130, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/106621747/1430221319", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "459492917", - "following": false, - "friends_count": 3657, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "howhackersthink.com", - "url": "http://t.co/IBghUiKudG", - "expanded_url": "http://www.howhackersthink.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3816, - "location": "Washington, DC", - "screen_name": "HowHackersThink", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 178, - "name": "HowHackersThink", - "profile_use_background_image": true, - "description": "Hacker. Consultant. Cyber Strategist. Writer. Professor. Public speaker. Researcher. Innovator. Advocate. All tweets and views are my own.", - "url": "http://t.co/IBghUiKudG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Mon Jan 09 18:43:40 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", - "favourites_count": 693, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "684614746486759424", - "id": 684614746486759424, - "text": "The most complex things in this life: the mind and the universe. I study the mind on my way to understanding the universe. #HowHackersThink", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 123, - 139 - ], - "text": "HowHackersThink" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 05:57:29 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 459492917, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2888, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/459492917/1436656035", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "110735547", - "following": false, - "friends_count": 514, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 162, - "location": "Camden, ME", - "screen_name": "kjstone00", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "Kevin Stone", - "profile_use_background_image": true, - "description": "dad, ops, monitoring, dogs, cats, chickens. Fledgling home brewer. Living life the way it should be in Maine", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 02 15:59:41 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", - "favourites_count": 421, - "status": { - "retweet_count": 3, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "685560813327925248", - "id": 685560813327925248, - "text": "\"mistakes will happen; negligence cannot\" /via @jeffbonwick 1994. #beforeDevopsWasDevops", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 66, - 88 - ], - "text": "beforeDevopsWasDevops" - } - ], - "user_mentions": [ - { - "screen_name": "jeffbonwick", - "id_str": "377264079", - "id": 377264079, - "indices": [ - 47, - 59 - ], - "name": "Jeff Bonwick" - } - ] - }, - "created_at": "Fri Jan 08 20:36:49 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685620787399753728", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 81, - 103 - ], - "text": "beforeDevopsWasDevops" - } - ], - "user_mentions": [ - { - "screen_name": "robtreat2", - "id_str": "14497060", - "id": 14497060, - "indices": [ - 3, - 13 - ], - "name": "Robert Treat" - }, - { - "screen_name": "jeffbonwick", - "id_str": "377264079", - "id": 377264079, - "indices": [ - 62, - 74 - ], - "name": "Jeff Bonwick" - } - ] - }, - "created_at": "Sat Jan 09 00:35:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685620787399753728, - "text": "RT @robtreat2: \"mistakes will happen; negligence cannot\" /via @jeffbonwick 1994. #beforeDevopsWasDevops", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 110735547, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3643, - "is_translator": false - }, - { - "time_zone": "Ljubljana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "59282163", - "following": false, - "friends_count": 876, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lstoll.net", - "url": "https://t.co/zymtFzZre6", - "expanded_url": "http://lstoll.net", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "666666", - "geo_enabled": true, - "followers_count": 41022, - "location": "Cleveland, OH", - "screen_name": "lstoll", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 125, - "name": "Kernel Sanders", - "profile_use_background_image": true, - "description": "Just some rando Australian operating computers and stuff at @Heroku. Previously @DigitalOcean, @GitHub, @Heroku.", - "url": "https://t.co/zymtFzZre6", - "profile_text_color": "000000", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", - "profile_background_color": "352726", - "created_at": "Wed Jul 22 23:05:12 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", - "favourites_count": 14331, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -81.877771, - 41.392684 - ], - [ - -81.5331634, - 41.392684 - ], - [ - -81.5331634, - 41.599195 - ], - [ - -81.877771, - 41.599195 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Cleveland, OH", - "id": "0eb9676d24b211f1", - "name": "Cleveland" - }, - "in_reply_to_screen_name": "klimpong", - "in_reply_to_user_id": 4600051, - "in_reply_to_status_id_str": "685598770684411904", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685599007415078913", - "id": 685599007415078913, - "text": "@klimpong Bonjour (That's french too)", - "in_reply_to_user_id_str": "4600051", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "klimpong", - "id_str": "4600051", - "id": 4600051, - "indices": [ - 0, - 9 - ], - "name": "Till" - } - ] - }, - "created_at": "Fri Jan 08 23:08:35 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685598770684411904, - "lang": "en" - }, - "default_profile_image": false, - "id": 59282163, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 28104, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "163457790", - "following": false, - "friends_count": 1421, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eligible.com", - "url": "https://t.co/zeacfox6vu", - "expanded_url": "http://eligible.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 15359, - "location": "San Francisco \u21c6 Brooklyn ", - "screen_name": "katgleason", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 172, - "name": "Katelyn Gleason", - "profile_use_background_image": false, - "description": "S12 YC alum. CEO @eligibleapi", - "url": "https://t.co/zeacfox6vu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jul 06 13:33:13 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", - "favourites_count": 2503, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "kirillzubovsky", - "in_reply_to_user_id": 17541787, - "in_reply_to_status_id_str": "685529873138323456", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685531559508721664", - "id": 685531559508721664, - "text": "@kirillzubovsky @davemorin LOL that's definitely going in the folder", - "in_reply_to_user_id_str": "17541787", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kirillzubovsky", - "id_str": "17541787", - "id": 17541787, - "indices": [ - 0, - 15 - ], - "name": "Kirill Zubovsky" - }, - { - "screen_name": "davemorin", - "id_str": "3475", - "id": 3475, - "indices": [ - 16, - 26 - ], - "name": "Dave Morin" - } - ] - }, - "created_at": "Fri Jan 08 18:40:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685529873138323456, - "lang": "en" - }, - "default_profile_image": false, - "id": 163457790, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", - "statuses_count": 6273, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3998615773", - "following": false, - "friends_count": 5001, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "devopsdad.com", - "url": "https://t.co/JrNXHr85zj", - "expanded_url": "http://devopsdad.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "500A53", - "geo_enabled": false, - "followers_count": 1286, - "location": "Texas, USA", - "screen_name": "TheDevOpsDad", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 25, - "name": "Roel Pasetes", - "profile_use_background_image": false, - "description": "DevOps Engineer and Dad. Love 'em Both.", - "url": "https://t.co/JrNXHr85zj", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Oct 24 04:34:34 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", - "favourites_count": 7, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682441217653796865", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 193, - "h": 186, - "resize": "fit" - }, - "small": { - "w": 193, - "h": 186, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 193, - "h": 186, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", - "type": "photo", - "indices": [ - 83, - 106 - ], - "media_url": "http://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", - "display_url": "pic.twitter.com/ZKCpgU3ctc", - "id_str": "682441217536294912", - "expanded_url": "http://twitter.com/TheDevOpsDad/status/682441217653796865/photo/1", - "id": 682441217536294912, - "url": "https://t.co/ZKCpgU3ctc" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Mr6ClV", - "url": "https://t.co/vNHAVlc1So", - "expanded_url": "http://buff.ly/1Mr6ClV", - "indices": [ - 59, - 82 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 06:00:40 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682441217653796865, - "text": "What can Joey from Friends teach us about our devops work? https://t.co/vNHAVlc1So https://t.co/ZKCpgU3ctc", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 3998615773, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 95, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3998615773/1445662297", - "is_translator": false - }, - { - "time_zone": "Tijuana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16364066", - "following": false, - "friends_count": 505, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/mcoates", - "url": "https://t.co/uNCdooglSE", - "expanded_url": "http://www.linkedin.com/in/mcoates", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "001C8A", - "geo_enabled": true, - "followers_count": 5194, - "location": "San Francisco, CA", - "screen_name": "_mwc", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 254, - "name": "Michael Coates \u2604", - "profile_use_background_image": false, - "description": "Trust & Info Security Officer @Twitter, @OWASP Global Board, Former @Mozilla", - "url": "https://t.co/uNCdooglSE", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Sep 19 14:41:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", - "favourites_count": 349, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685553622675935232", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/chrismessina/s\u2026", - "url": "https://t.co/ic0IlFWa29", - "expanded_url": "https://twitter.com/chrismessina/status/685218795435077633", - "indices": [ - 62, - 85 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chrismessina", - "id_str": "1186", - "id": 1186, - "indices": [ - 21, - 34 - ], - "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e" - } - ] - }, - "created_at": "Fri Jan 08 20:08:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685553622675935232, - "text": "I'm with you on that @chrismessina. This is just odd at best. https://t.co/ic0IlFWa29", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16364066, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3515, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16364066/1443650382", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "93954161", - "following": false, - "friends_count": 347, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 16539, - "location": "San Francisco", - "screen_name": "aroetter", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 176, - "name": "Alex Roetter", - "profile_use_background_image": true, - "description": "SVP Engineering @ Twitter. Parenthood, Aviation, Alpinism, Sandwiches. Fighting gravity but usually losing.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 01 22:04:13 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", - "favourites_count": 2838, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "NShivakumar", - "in_reply_to_user_id": 41315003, - "in_reply_to_status_id_str": "685585778076848128", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685586111687622656", - "id": 685586111687622656, - "text": "@NShivakumar congrats!", - "in_reply_to_user_id_str": "41315003", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "NShivakumar", - "id_str": "41315003", - "id": 41315003, - "indices": [ - 0, - 12 - ], - "name": "Shiva Shivakumar" - } - ] - }, - "created_at": "Fri Jan 08 22:17:21 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685585778076848128, - "lang": "en" - }, - "default_profile_image": false, - "id": 93954161, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2322, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/93954161/1385781289", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "11873632", - "following": false, - "friends_count": 871, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lewisheadden.com", - "url": "http://t.co/LYuJlxmvg5", - "expanded_url": "http://www.lewisheadden.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1039, - "location": "New York City", - "screen_name": "lewisheadden", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "Lewis Headden", - "profile_use_background_image": true, - "description": "Scotsman, New Yorker, Photoshopper, Christian. DevOps Engineer at @CondeNast. Formerly @AmazonDevScot, @AetherworksLLC, @StAndrewsCS.", - "url": "http://t.co/LYuJlxmvg5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jan 05 13:06:09 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", - "favourites_count": 785, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685121406753976320", - "id": 685121406753976320, - "text": "You know Thursday morning is a struggle when you're debating microfoam and the \"Third Wave of Coffee\".", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 15:30:46 +0000 2016", - "source": "TweetDeck", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 11873632, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4814, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11873632/1409756044", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16022957", - "following": false, - "friends_count": 2120, - "entities": { - "description": { - "urls": [ - { - "display_url": "keybase.io/markaci", - "url": "https://t.co/n8kTLKcwJx", - "expanded_url": "http://keybase.io/markaci", - "indices": [ - 137, - 160 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/markdobrowo\u2026", - "url": "https://t.co/iw20KWBDrr", - "expanded_url": "https://linkedin.com/in/markdobrowolski", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "1F2A3D", - "geo_enabled": true, - "followers_count": 1003, - "location": "Toronto, Canada", - "screen_name": "markaci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 73, - "name": "mar\u10d9\u10d0\u10ea\u10d8", - "profile_use_background_image": true, - "description": "Mark Dobrowolski - Information Security & Risk Management Professional; disruptor, innovator, rainmaker, student, friend. RT\u2260endorsement https://t.co/n8kTLKcwJx", - "url": "https://t.co/iw20KWBDrr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Thu Aug 28 03:58:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", - "favourites_count": 9595, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685616067994083328", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "washingtonpost.com/news/grade-poi\u2026", - "url": "https://t.co/HwJvphxgkP", - "expanded_url": "https://www.washingtonpost.com/news/grade-point/wp/2016/01/07/my-college-got-caught-up-in-the-horrifying-rage-over-wheatons-muslim-christian-god-debate/?wpmm=1&wpisrc=nl_highered", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:16:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685616067994083328, - "text": "My college got caught up in the horrifying rage over Wheaton's Muslim-Christian God debate https://t.co/HwJvphxgkP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685624878406434816", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "washingtonpost.com/news/grade-poi\u2026", - "url": "https://t.co/HwJvphxgkP", - "expanded_url": "https://www.washingtonpost.com/news/grade-point/wp/2016/01/07/my-college-got-caught-up-in-the-horrifying-rage-over-wheatons-muslim-christian-god-debate/?wpmm=1&wpisrc=nl_highered", - "indices": [ - 105, - 128 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sambowne", - "id_str": "20961162", - "id": 20961162, - "indices": [ - 3, - 12 - ], - "name": "Sam Bowne" - } - ] - }, - "created_at": "Sat Jan 09 00:51:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685624878406434816, - "text": "RT @sambowne: My college got caught up in the horrifying rage over Wheaton's Muslim-Christian God debate https://t.co/HwJvphxgkP", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 16022957, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 19135, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16022957/1394348072", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "70916267", - "following": false, - "friends_count": 276, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 177, - "location": "Bradford", - "screen_name": "developer_gg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Gordon Brown", - "profile_use_background_image": true, - "description": "I like computers, beer and coffee, but not necessarily in that order. I also try to run occasionally. Consultant at @ukinfinityworks.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 02 08:33:20 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", - "favourites_count": 128, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ToxicTourniquet", - "in_reply_to_user_id": 53144530, - "in_reply_to_status_id_str": "685381555305484288", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685382327615238145", - "id": 685382327615238145, - "text": "@ToxicTourniquet @Staticman1 @PayByPhone_UK you can - I just did - 0330 400 7275. You'll still need your location code.", - "in_reply_to_user_id_str": "53144530", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ToxicTourniquet", - "id_str": "53144530", - "id": 53144530, - "indices": [ - 0, - 16 - ], - "name": "Tam" - }, - { - "screen_name": "Staticman1", - "id_str": "56454758", - "id": 56454758, - "indices": [ - 17, - 28 - ], - "name": "James Hawkins" - }, - { - "screen_name": "PayByPhone_UK", - "id_str": "436714561", - "id": 436714561, - "indices": [ - 29, - 43 - ], - "name": "PayByPhone UK" - } - ] - }, - "created_at": "Fri Jan 08 08:47:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685381555305484288, - "lang": "en" - }, - "default_profile_image": false, - "id": 70916267, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 509, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "19734656", - "following": false, - "friends_count": 1068, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "realgenekim.me", - "url": "http://t.co/IBvzJu7jHq", - "expanded_url": "http://realgenekim.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 18784, - "location": "\u00dcT: 45.527981,-122.670577", - "screen_name": "RealGeneKim", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1035, - "name": "Gene Kim", - "profile_use_background_image": true, - "description": "DevOps enthusiast, The Phoenix Project co-author, Tripwire founder, Visible Ops co-author, IT Ops/Security Researcher, Theory of Constraints Jonah, rabid UX fan", - "url": "http://t.co/IBvzJu7jHq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jan 29 21:10:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", - "favourites_count": 1122, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jsomers", - "in_reply_to_user_id": 6073472, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685621037677953024", - "id": 685621037677953024, - "text": "@jsomers It's freaking brilliant! Brilliant work! There's a book I've been working on for 4 yrs that I'd love to do the analysis on.", - "in_reply_to_user_id_str": "6073472", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jsomers", - "id_str": "6073472", - "id": 6073472, - "indices": [ - 0, - 8 - ], - "name": "James Somers" - } - ] - }, - "created_at": "Sat Jan 09 00:36:08 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 19734656, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 17250, - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "12614742", - "following": false, - "friends_count": 1437, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "testobsessed.com", - "url": "http://t.co/QKSEPgi0Ad", - "expanded_url": "http://www.testobsessed.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": false, - "followers_count": 10876, - "location": "Palo Alto, California, USA", - "screen_name": "testobsessed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 808, - "name": "ElisabethHendrickson", - "profile_use_background_image": true, - "description": "Author of Explore It! Recovering consultant. I work on Big Data at @pivotal but speak only for myself.", - "url": "http://t.co/QKSEPgi0Ad", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", - "profile_background_color": "EDECE9", - "created_at": "Wed Jan 23 21:49:39 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", - "favourites_count": 9737, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685086119029948418", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/LindaRegber/st\u2026", - "url": "https://t.co/qCHRQzRBKE", - "expanded_url": "https://twitter.com/LindaRegber/status/683294175752810496", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 13:10:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685086119029948418, - "text": "Love the visualization. https://t.co/qCHRQzRBKE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 12614742, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "statuses_count": 17738, - "is_translator": false - }, - { - "time_zone": "Stockholm", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "155247426", - "following": false, - "friends_count": 391, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "loweschmidt.se", - "url": "http://t.co/bqChHrmryK", - "expanded_url": "http://loweschmidt.se", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 273, - "location": "Stockholm, Sweden", - "screen_name": "loweschmidt", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 31, - "name": "Lowe Schmidt", - "profile_use_background_image": true, - "description": "FLOSS fan, DevOps advocate, sysadmin for hire @init_ab. (neo)vim user, @sthlmdevops founder and beer collector @untappd. I also like tattoos.", - "url": "http://t.co/bqChHrmryK", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Jun 13 15:45:23 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", - "favourites_count": 608, - "status": { - "retweet_count": 9, - "retweeted_status": { - "retweet_count": 9, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685585057948434432", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 125, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 220, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 376, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "type": "photo", - "indices": [ - 107, - 130 - ], - "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "display_url": "pic.twitter.com/IEQVTQqJVK", - "id_str": "685584988327116800", - "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", - "id": 685584988327116800, - "url": "https://t.co/IEQVTQqJVK" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "facebook.com/notes/matty-gr\u2026", - "url": "https://t.co/bgCQtDeUtW", - "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:13:10 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685585057948434432, - "text": "Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJVK", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685587439931551744", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 125, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 220, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 376, - "resize": "fit" - } - }, - "source_status_id_str": "685585057948434432", - "url": "https://t.co/IEQVTQqJVK", - "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "source_user_id_str": "18137723", - "id_str": "685584988327116800", - "id": 685584988327116800, - "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", - "type": "photo", - "indices": [ - 122, - 144 - ], - "source_status_id": 685585057948434432, - "source_user_id": 18137723, - "display_url": "pic.twitter.com/IEQVTQqJVK", - "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "facebook.com/notes/matty-gr\u2026", - "url": "https://t.co/bgCQtDeUtW", - "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", - "indices": [ - 98, - 121 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "raganwald", - "id_str": "18137723", - "id": 18137723, - "indices": [ - 3, - 13 - ], - "name": "Reginald Braithwaite" - } - ] - }, - "created_at": "Fri Jan 08 22:22:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685587439931551744, - "text": "RT @raganwald: Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJ\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 155247426, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 10749, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/155247426/1372113776", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14946551", - "following": false, - "friends_count": 233, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/thedoh", - "url": "https://t.co/75FomxWTf2", - "expanded_url": "https://twitter.com/thedoh", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": false, - "followers_count": 332, - "location": "Toronto, Ontario", - "screen_name": "thedoh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 38, - "name": "Lisa Seelye", - "profile_use_background_image": true, - "description": "Magic, sysadmin, learner", - "url": "https://t.co/75FomxWTf2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Thu May 29 18:28:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9B17E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", - "favourites_count": 372, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685593686432825344", - "id": 685593686432825344, - "text": "Skipping FNM tonight. Not feeling it.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:47:27 +0000 2016", - "source": "Twitterrific for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14946551, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", - "statuses_count": 20006, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "80200818", - "following": false, - "friends_count": 587, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "100357", - "geo_enabled": true, - "followers_count": 328, - "location": "memphis \u2708 seattle", - "screen_name": "edyesed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 77, - "name": "that guy", - "profile_use_background_image": true, - "description": "asdf;lkj... #dadops #devops", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Oct 06 03:09:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", - "favourites_count": 3601, - "status": { - "retweet_count": 2, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685582326827499520", - "id": 685582326827499520, - "text": "Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told me?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:02:18 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685590780581249024", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JeffSaidSo", - "id_str": "171544323", - "id": 171544323, - "indices": [ - 3, - 14 - ], - "name": "Jeff Allen" - } - ] - }, - "created_at": "Fri Jan 08 22:35:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685590780581249024, - "text": "RT @JeffSaidSo: Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 80200818, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", - "statuses_count": 8489, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/80200818/1419223168", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "913200547", - "following": false, - "friends_count": 1308, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nickshemonsky.com", - "url": "http://t.co/xWPpyxcm6U", - "expanded_url": "http://www.nickshemonsky.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "657B83", - "geo_enabled": false, - "followers_count": 279, - "location": "Pottsville, PA", - "screen_name": "nshemonsky", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 16, - "name": "Nick Shemonsky", - "profile_use_background_image": false, - "description": "@BlueBox Ops | @Penn_State alum | #CraftBeer Enthusiast | Fly @Eagles Fly! | Runner", - "url": "http://t.co/xWPpyxcm6U", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", - "profile_background_color": "004454", - "created_at": "Mon Oct 29 20:37:31 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", - "favourites_count": 126, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MassHaste", - "in_reply_to_user_id": 27139651, - "in_reply_to_status_id_str": "685500343506071553", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685501930177597440", - "id": 685501930177597440, - "text": "@MassHaste @biscuitbitch They make a good americano as well.", - "in_reply_to_user_id_str": "27139651", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MassHaste", - "id_str": "27139651", - "id": 27139651, - "indices": [ - 0, - 10 - ], - "name": "Ruben Orduz" - }, - { - "screen_name": "biscuitbitch", - "id_str": "704580546", - "id": 704580546, - "indices": [ - 11, - 24 - ], - "name": "Biscuit Bitch" - } - ] - }, - "created_at": "Fri Jan 08 16:42:50 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685500343506071553, - "lang": "en" - }, - "default_profile_image": false, - "id": 913200547, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", - "statuses_count": 923, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/913200547/1429793800", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2838111", - "following": false, - "friends_count": 456, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mcdermottroe.com", - "url": "http://t.co/6FjMMOcAIA", - "expanded_url": "http://www.mcdermottroe.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 793, - "location": "Dublin, Ireland", - "screen_name": "IRLConor", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 37, - "name": "Conor McDermottroe", - "profile_use_background_image": true, - "description": "I'm a software developer for @circleci. I'm also a competitive rifle shooter for @targetshooting and @durifle.", - "url": "http://t.co/6FjMMOcAIA", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 29 13:35:37 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", - "favourites_count": 479, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "courtewing", - "in_reply_to_user_id": 25573729, - "in_reply_to_status_id_str": "684739332087910400", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684739489403645952", - "id": 684739489403645952, - "text": "@courtewing @cloudsteph Read position, read indicators on DMs (totally broken on Twitter itself) and mute filters among other things.", - "in_reply_to_user_id_str": "25573729", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "courtewing", - "id_str": "25573729", - "id": 25573729, - "indices": [ - 0, - 11 - ], - "name": "Court Ewing" - }, - { - "screen_name": "cloudsteph", - "id_str": "15389419", - "id": 15389419, - "indices": [ - 12, - 23 - ], - "name": "Stephie Graphics" - } - ] - }, - "created_at": "Wed Jan 06 14:13:10 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684739332087910400, - "lang": "en" - }, - "default_profile_image": false, - "id": 2838111, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5257, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2838111/1396367369", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "104164496", - "following": false, - "friends_count": 2020, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dribbble.com/danielbeere", - "url": "http://t.co/6ZvS9hPEgV", - "expanded_url": "http://dribbble.com/danielbeere", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "663399", - "geo_enabled": false, - "followers_count": 823, - "location": "San Francisco", - "screen_name": "DanielBeere", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 115, - "name": "Daniel Beere", - "profile_use_background_image": true, - "description": "Irish designer in SF @circleci \u270c\ufe0f", - "url": "http://t.co/6ZvS9hPEgV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jan 12 13:41:22 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBE9ED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", - "favourites_count": 2203, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 604516513, - "possibly_sensitive": false, - "id_str": "685495163859394562", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amazon.com/Yogi-Teas-Bags\u2026", - "url": "https://t.co/urUptC9Tt3", - "expanded_url": "http://www.amazon.com/Yogi-Teas-Bags-Stess-Relief/dp/B0009F3QKW", - "indices": [ - 11, - 34 - ] - }, - { - "display_url": "fourhourworkweek.com/2016/01/03/new\u2026", - "url": "https://t.co/ljyONNyI0B", - "expanded_url": "http://fourhourworkweek.com/2016/01/03/new-years-resolutions", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "beerhoff1", - "id_str": "604516513", - "id": 604516513, - "indices": [ - 0, - 10 - ], - "name": "Shane Beere" - }, - { - "screen_name": "kevinrose", - "id_str": "657863", - "id": 657863, - "indices": [ - 53, - 63 - ], - "name": "Kevin Rose" - }, - { - "screen_name": "tferriss", - "id_str": "11740902", - "id": 11740902, - "indices": [ - 67, - 76 - ], - "name": "Tim Ferriss" - } - ] - }, - "created_at": "Fri Jan 08 16:15:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "604516513", - "place": null, - "in_reply_to_screen_name": "beerhoff1", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685495163859394562, - "text": "@beerhoff1 https://t.co/urUptC9Tt3 as recommended by @kevinrose on @tferriss show: https://t.co/ljyONNyI0B", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 104164496, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", - "statuses_count": 6830, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/104164496/1375219663", - "is_translator": false - }, - { - "time_zone": "Vienna", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "39625343", - "following": false, - "friends_count": 446, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blag.esotericsystems.at", - "url": "https://t.co/NexvmiW4Zx", - "expanded_url": "https://blag.esotericsystems.at/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": false, - "followers_count": 781, - "location": "They/Their Land", - "screen_name": "hirojin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "The Wrath of me\u2122", - "profile_use_background_image": true, - "description": "disappointing expectations since 1894.", - "url": "https://t.co/NexvmiW4Zx", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Tue May 12 23:20:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", - "favourites_count": 18074, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "aesmael", - "in_reply_to_user_id": 18427820, - "in_reply_to_status_id_str": "685618373426724865", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685619465015418882", - "id": 685619465015418882, - "text": "@aesmael seriously: same.", - "in_reply_to_user_id_str": "18427820", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "aesmael", - "id_str": "18427820", - "id": 18427820, - "indices": [ - 0, - 8 - ], - "name": "Vulpecula" - } - ] - }, - "created_at": "Sat Jan 09 00:29:53 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685618373426724865, - "lang": "en" - }, - "default_profile_image": false, - "id": 39625343, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", - "statuses_count": 32422, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39625343/1401366515", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "12143922", - "following": false, - "friends_count": 1036, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "markn.ca", - "url": "http://t.co/n78rBOUVWU", - "expanded_url": "http://markn.ca", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", - "notifications": false, - "profile_sidebar_fill_color": "595D62", - "profile_link_color": "67BACA", - "geo_enabled": false, - "followers_count": 3456, - "location": "::1", - "screen_name": "marknca", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 446, - "name": "Mark Nunnikhoven", - "profile_use_background_image": false, - "description": "Vice President, Cloud Research @TrendMicro. \n\nResearching & teaching cloud & usable security systems at scale. Opinionated but always looking to learn.", - "url": "http://t.co/n78rBOUVWU", - "profile_text_color": "50A394", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", - "profile_background_color": "525055", - "created_at": "Sat Jan 12 04:41:20 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", - "favourites_count": 1975, - "status": { - "retweet_count": 41, - "retweeted_status": { - "retweet_count": 41, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685596159088443392", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.jquery.com/2016/01/08/jqu\u2026", - "url": "https://t.co/VroeFOmHeD", - "expanded_url": "http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:57:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685596159088443392, - "text": "jQuery 2.2 and 1.12 are released, with performance improvements, SVG class manipulation and Symbol support in ES6. https://t.co/VroeFOmHeD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 43, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685626577477046272", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.jquery.com/2016/01/08/jqu\u2026", - "url": "https://t.co/VroeFOmHeD", - "expanded_url": "http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "smashingmag", - "id_str": "15736190", - "id": 15736190, - "indices": [ - 3, - 15 - ], - "name": "Smashing Magazine" - } - ] - }, - "created_at": "Sat Jan 09 00:58:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685626577477046272, - "text": "RT @smashingmag: jQuery 2.2 and 1.12 are released, with performance improvements, SVG class manipulation and Symbol support in ES6. https:/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 12143922, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", - "statuses_count": 35452, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12143922/1397706275", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8866232", - "following": false, - "friends_count": 2005, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mattrogish.com", - "url": "http://t.co/yCK1Z82dhE", - "expanded_url": "http://www.mattrogish.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 1677, - "location": "Philadelphia, PA", - "screen_name": "MattRogish", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 233, - "name": "Matt Rogish", - "profile_use_background_image": true, - "description": "Startup janitor @ReactiveOps", - "url": "http://t.co/yCK1Z82dhE", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Fri Sep 14 01:23:45 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", - "favourites_count": 409, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685583855701594112", - "id": 685583855701594112, - "text": "Is it possible for my shower head to spray bourbon?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:08:23 +0000 2016", - "source": "TweetDeck", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685583979848830976", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mikebarish", - "id_str": "34930874", - "id": 34930874, - "indices": [ - 3, - 14 - ], - "name": "Mike Barish" - } - ] - }, - "created_at": "Fri Jan 08 22:08:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685583979848830976, - "text": "RT @mikebarish: Is it possible for my shower head to spray bourbon?", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 8866232, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", - "statuses_count": 29628, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8866232/1398194149", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1458271", - "following": false, - "friends_count": 1789, - "entities": { - "description": { - "urls": [ - { - "display_url": "mapbox.com", - "url": "https://t.co/djeLWKvmpe", - "expanded_url": "http://mapbox.com", - "indices": [ - 6, - 29 - ] - }, - { - "display_url": "github.com/tmcw", - "url": "https://t.co/j4toNgk9Vd", - "expanded_url": "https://github.com/tmcw", - "indices": [ - 36, - 59 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "macwright.org", - "url": "http://t.co/d4zmVgqQxY", - "expanded_url": "http://macwright.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "727996", - "geo_enabled": true, - "followers_count": 4338, - "location": "lon, lat", - "screen_name": "tmcw", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 336, - "name": "Tom MacWright", - "profile_use_background_image": false, - "description": "work: https://t.co/djeLWKvmpe\ncode: https://t.co/j4toNgk9Vd", - "url": "http://t.co/d4zmVgqQxY", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Mar 19 01:06:50 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", - "favourites_count": 2154, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685479131652460544", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "movingbrands.com/work/netflix", - "url": "https://t.co/jVHQei9nqB", - "expanded_url": "http://www.movingbrands.com/work/netflix", - "indices": [ - 101, - 124 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:12:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685479131652460544, - "text": "brand redesign posts that are specific about the previous design's problems are way more interesting https://t.co/jVHQei9nqB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1458271, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", - "statuses_count": 11307, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1458271/1436753023", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "821753", - "following": false, - "friends_count": 313, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "waferbaby.com", - "url": "https://t.co/qvUfWRzUDe", - "expanded_url": "http://waferbaby.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 2192, - "location": "Mos Iceland Container Store", - "screen_name": "waferbaby", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 141, - "name": "Daniel Bogan", - "profile_use_background_image": false, - "description": "I do the stuff on the Internets.", - "url": "https://t.co/qvUfWRzUDe", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", - "profile_background_color": "2E2E2E", - "created_at": "Thu Mar 08 14:02:34 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", - "favourites_count": 10157, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "collypops", - "in_reply_to_user_id": 11025002, - "in_reply_to_status_id_str": "685628007793311744", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685628439152308224", - "id": 685628439152308224, - "text": "@collypops @siothamh: WhatEVER, mudblood.", - "in_reply_to_user_id_str": "11025002", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "collypops", - "id_str": "11025002", - "id": 11025002, - "indices": [ - 0, - 10 - ], - "name": "Colin Gourlay" - }, - { - "screen_name": "siothamh", - "id_str": "821958", - "id": 821958, - "indices": [ - 11, - 20 - ], - "name": "Dana NicCaluim" - } - ] - }, - "created_at": "Sat Jan 09 01:05:32 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685628007793311744, - "lang": "en" - }, - "default_profile_image": false, - "id": 821753, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 60183, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/821753/1450081356", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "557933634", - "following": false, - "friends_count": 4062, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "saltstack.com", - "url": "http://t.co/rukw0maLdy", - "expanded_url": "http://saltstack.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "48B4FB", - "geo_enabled": false, - "followers_count": 6326, - "location": "Salt Lake City", - "screen_name": "SaltStackInc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 305, - "name": "SaltStack", - "profile_use_background_image": true, - "description": "Software to orchestrate & automate CloudOps, ITOps & DevOps at extreme speed & scale | '14 InfoWorld Technology of the Year | '13 Gartner Cool Vendor in DevOps", - "url": "http://t.co/rukw0maLdy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Apr 19 16:31:12 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", - "favourites_count": 1125, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685600728631476225", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1jM9opD", - "url": "https://t.co/TbBXqaLwrc", - "expanded_url": "http://bit.ly/1jM9opD", - "indices": [ - 90, - 113 - ] - } - ], - "hashtags": [ - { - "indices": [ - 4, - 15 - ], - "text": "SaltConf16" - } - ], - "user_mentions": [ - { - "screen_name": "LinkedIn", - "id_str": "13058772", - "id": 13058772, - "indices": [ - 27, - 36 - ], - "name": "LinkedIn" - }, - { - "screen_name": "druonysus", - "id_str": "352871356", - "id": 352871356, - "indices": [ - 38, - 48 - ], - "name": "Drew Adams" - }, - { - "screen_name": "OpenX", - "id_str": "14184143", - "id": 14184143, - "indices": [ - 52, - 58 - ], - "name": "OpenX" - }, - { - "screen_name": "ClemsonUniv", - "id_str": "23444864", - "id": 23444864, - "indices": [ - 65, - 77 - ], - "name": "Clemson University" - } - ] - }, - "created_at": "Fri Jan 08 23:15:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685600728631476225, - "text": "New #SaltConf16 talks from @LinkedIn, @druonysus of @OpenX & @ClemsonUniv now posted: https://t.co/TbBXqaLwrc Register now.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 557933634, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", - "statuses_count": 2842, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/557933634/1428941606", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3450748273", - "following": false, - "friends_count": 8, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "howdy.ai", - "url": "https://t.co/1cHNN303mV", - "expanded_url": "http://howdy.ai", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 667, - "location": "Austin, TX", - "screen_name": "HowdyAI", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Howdy", - "profile_use_background_image": false, - "description": "Your new digital coworker for Slack!", - "url": "https://t.co/1cHNN303mV", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Sep 04 18:15:13 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", - "favourites_count": 399, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mescamm", - "in_reply_to_user_id": 113094157, - "in_reply_to_status_id_str": "685485832308965376", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685600766917275648", - "id": 685600766917275648, - "text": "@mescamm Your Howdy bot is ready to go!", - "in_reply_to_user_id_str": "113094157", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mescamm", - "id_str": "113094157", - "id": 113094157, - "indices": [ - 0, - 8 - ], - "name": "Mathieu Mescam" - } - ] - }, - "created_at": "Fri Jan 08 23:15:35 +0000 2016", - "source": "Groove HQ", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685485832308965376, - "lang": "en" - }, - "default_profile_image": false, - "id": 3450748273, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 220, - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "3428227355", - "following": false, - "friends_count": 1937, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nerabus.com", - "url": "http://t.co/ZzSYPLDJDg", - "expanded_url": "http://nerabus.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "8C8C8C", - "geo_enabled": false, - "followers_count": 551, - "location": "Manchester and Cambridge, UK", - "screen_name": "computefuture", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 24, - "name": "Nerabus", - "profile_use_background_image": false, - "description": "The focal point of the Open Source hardware revolution #cto #datacenter #OpenSourceHardware #OpenSourceSilicon #FPGA", - "url": "http://t.co/ZzSYPLDJDg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Aug 17 14:43:41 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", - "favourites_count": 213, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685128917259259904", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "engt.co/1Rl04XW", - "url": "https://t.co/73ZDipi3RD", - "expanded_url": "http://engt.co/1Rl04XW", - "indices": [ - 46, - 69 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "engadget", - "id_str": "14372486", - "id": 14372486, - "indices": [ - 74, - 83 - ], - "name": "Engadget" - } - ] - }, - "created_at": "Thu Jan 07 16:00:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685128917259259904, - "text": "Amazon is selling its own processors now, too https://t.co/73ZDipi3RD via @engadget", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 3428227355, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 374, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3428227355/1442251790", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1087503266", - "following": false, - "friends_count": 311, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "levlaz.org", - "url": "https://t.co/4OB68uzJbf", - "expanded_url": "https://levlaz.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 462, - "location": "San Francisco, CA", - "screen_name": "levlaz", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 44, - "name": "Lev Lazinskiy", - "profile_use_background_image": true, - "description": "I \u2764\ufe0f\u200d Developers @CircleCI, Graduate Student @NovaSE, Veteran, Musician, Dev and Linux Geek. \u2764\ufe0f @songbing_yu", - "url": "https://t.co/4OB68uzJbf", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Sun Jan 13 23:26:26 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", - "favourites_count": 4442, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "DavidAndGoliath", - "in_reply_to_user_id": 14469175, - "in_reply_to_status_id_str": "685251764610822144", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685252027870392320", - "id": 685252027870392320, - "text": "@DavidAndGoliath @TMobile @EFF they are all horrible I'll just go without a cell provider for a while :D", - "in_reply_to_user_id_str": "14469175", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DavidAndGoliath", - "id_str": "14469175", - "id": 14469175, - "indices": [ - 0, - 16 - ], - "name": "David" - }, - { - "screen_name": "TMobile", - "id_str": "17338082", - "id": 17338082, - "indices": [ - 17, - 25 - ], - "name": "T-Mobile" - }, - { - "screen_name": "EFF", - "id_str": "4816", - "id": 4816, - "indices": [ - 26, - 30 - ], - "name": "EFF" - } - ] - }, - "created_at": "Fri Jan 08 00:09:49 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685251764610822144, - "lang": "en" - }, - "default_profile_image": false, - "id": 1087503266, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 4756, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087503266/1447471475", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2667470504", - "following": false, - "friends_count": 112, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "launchdarkly.com", - "url": "http://t.co/e7Lhd33dNc", - "expanded_url": "http://www.launchdarkly.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 255, - "location": "San Francisco", - "screen_name": "LaunchDarkly", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "LaunchDarkly", - "profile_use_background_image": true, - "description": "Control your feature launches. Feature flags as a service. Tweets about canary releases for continuous delivery.", - "url": "http://t.co/e7Lhd33dNc", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 21 23:18:43 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", - "favourites_count": 119, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685347790533296128", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z9JhG8", - "url": "https://t.co/kDewgvL5x9", - "expanded_url": "http://buff.ly/1Z9JhG8", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 06:30:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685347790533296128, - "text": "\"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685533803683512321", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z9JhG8", - "url": "https://t.co/kDewgvL5x9", - "expanded_url": "http://buff.ly/1Z9JhG8", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "divanator", - "id_str": "10184822", - "id": 10184822, - "indices": [ - 3, - 13 - ], - "name": "Div" - } - ] - }, - "created_at": "Fri Jan 08 18:49:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685533803683512321, - "text": "RT @divanator: \"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2667470504, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 548, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2667470504/1446072089", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3320603490", - "following": false, - "friends_count": 99, - "entities": { - "description": { - "urls": [ - { - "display_url": "soundcloud.com/heavybit", - "url": "https://t.co/lAnNM1oH69", - "expanded_url": "https://soundcloud.com/heavybit", - "indices": [ - 114, - 137 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": false, - "followers_count": 103, - "location": "San Francisco, CA", - "screen_name": "ContinuousCast", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "To Be Continuous", - "profile_use_background_image": false, - "description": "To Be Continuous ... a podcast on all things #ContinuousDelivery. Hosted @paulbiggar @edith_h Sponsored @heavybit https://t.co/lAnNM1oH69", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Aug 19 22:32:39 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", - "favourites_count": 8, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "stanlemon", - "in_reply_to_user_id": 14147682, - "in_reply_to_status_id_str": "685484756620857345", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685569841068048386", - "id": 685569841068048386, - "text": "@stanlemon @edith_h @paulbiggar Our producer @tedcarstensen is working on it!", - "in_reply_to_user_id_str": "14147682", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "stanlemon", - "id_str": "14147682", - "id": 14147682, - "indices": [ - 0, - 10 - ], - "name": "Stan Lemon" - }, - { - "screen_name": "edith_h", - "id_str": "14965602", - "id": 14965602, - "indices": [ - 11, - 19 - ], - "name": "Edith Harbaugh" - }, - { - "screen_name": "paulbiggar", - "id_str": "86938585", - "id": 86938585, - "indices": [ - 20, - 31 - ], - "name": "Paul Biggar" - }, - { - "screen_name": "tedcarstensen", - "id_str": "20000329", - "id": 20000329, - "indices": [ - 45, - 59 - ], - "name": "ted carstensen" - } - ] - }, - "created_at": "Fri Jan 08 21:12:42 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685484756620857345, - "lang": "en" - }, - "default_profile_image": false, - "id": 3320603490, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 107, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320603490/1440175251", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "245729302", - "following": false, - "friends_count": 1747, - "entities": { - "description": { - "urls": [ - { - "display_url": "bytemark.co.uk/support", - "url": "https://t.co/zlCkaK20Wn", - "expanded_url": "https://www.bytemark.co.uk/support", - "indices": [ - 111, - 134 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "bytemark.co.uk", - "url": "https://t.co/30hNNjVa6D", - "expanded_url": "http://www.bytemark.co.uk/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0768AA", - "geo_enabled": false, - "followers_count": 2011, - "location": "Manchester & York, UK", - "screen_name": "bytemark", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "Bytemark", - "profile_use_background_image": false, - "description": "Reliable UK hosting from \u00a310 per month. We're here to chat during office hours. Urgent problem? Email is best: https://t.co/zlCkaK20Wn", - "url": "https://t.co/30hNNjVa6D", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Feb 01 10:22:20 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", - "favourites_count": 1159, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685500519486492672", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 182, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 322, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 647, - "h": 348, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", - "type": "photo", - "indices": [ - 40, - 63 - ], - "media_url": "http://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", - "display_url": "pic.twitter.com/dzXqC0ETXZ", - "id_str": "685500516143644676", - "expanded_url": "http://twitter.com/bytemark/status/685500519486492672/photo/1", - "id": 685500516143644676, - "url": "https://t.co/dzXqC0ETXZ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:37:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685500519486492672, - "text": "Remember kids: don\u2019t copy that floppy\u2026! https://t.co/dzXqC0ETXZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 245729302, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 4660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/245729302/1445428891", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "18958102", - "following": false, - "friends_count": 2400, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "careers.stackoverflow.com/saman", - "url": "https://t.co/jnFgndfW3D", - "expanded_url": "http://careers.stackoverflow.com/saman", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 1977, - "location": "Tehran", - "screen_name": "samanismael", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 49, - "name": "Saman Ismael", - "profile_use_background_image": false, - "description": "Full Stack Developer, C & Python Lover, GNU/Linux Ninja, Open Source Fan.", - "url": "https://t.co/jnFgndfW3D", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jan 13 23:16:38 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", - "favourites_count": 2592, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "664193187326521344", - "id": 664193187326521344, - "text": "Data is the new Oil. #BigData", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 21, - 29 - ], - "text": "BigData" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Nov 10 21:29:30 +0000 2015", - "source": "TweetDeck", - "favorite_count": 8, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 18958102, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "statuses_count": 187, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18958102/1444114007", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "37681147", - "following": false, - "friends_count": 1579, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/bradyasar", - "url": "https://t.co/FqEV3wDE2u", - "expanded_url": "http://about.me/bradyasar", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 4614, - "location": "Los Angeles, CA", - "screen_name": "YasarCorp", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 139, - "name": "Brad Yasar", - "profile_use_background_image": true, - "description": "Business Architect, Entrepreneur and Investor Greater Los Angeles Area, Venture Capital & Private Equity. Equity Crowdfunding @ CrowdfundX.io", - "url": "https://t.co/FqEV3wDE2u", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon May 04 15:21:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", - "favourites_count": 15661, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685621420563558400", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 439, - "h": 333, - "resize": "fit" - }, - "medium": { - "w": 439, - "h": 333, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 257, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPRDJFWkAAW9sb.png", - "type": "photo", - "indices": [ - 88, - 111 - ], - "media_url": "http://pbs.twimg.com/media/CYPRDJFWkAAW9sb.png", - "display_url": "pic.twitter.com/maPZ5fuOi2", - "id_str": "685621420198629376", - "expanded_url": "http://twitter.com/YasarCorp/status/685621420563558400/photo/1", - "id": 685621420198629376, - "url": "https://t.co/maPZ5fuOi2" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "puls.ly/DRbAgg", - "url": "https://t.co/9v2nskwtPO", - "expanded_url": "http://puls.ly/DRbAgg", - "indices": [ - 64, - 87 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:37:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685621420563558400, - "text": "Reserve Bank of India is Actively Studying Peer to Peer Lending https://t.co/9v2nskwtPO https://t.co/maPZ5fuOi2", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Vytmn" - }, - "default_profile_image": false, - "id": 37681147, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1074, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/37681147/1382740340", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2832545398", - "following": false, - "friends_count": 4823, - "entities": { - "description": { - "urls": [ - { - "display_url": "sprawlgeek.com/p/bio.html", - "url": "https://t.co/8rLwARBvup", - "expanded_url": "http://www.sprawlgeek.com/p/bio.html", - "indices": [ - 59, - 82 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "sprawlgeek.com", - "url": "http://t.co/pUn9V1gXKx", - "expanded_url": "http://www.sprawlgeek.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 9131, - "location": "Iowa", - "screen_name": "sprawlgeek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 137, - "name": "Sprawlgeek", - "profile_use_background_image": true, - "description": "Reality from the Edge of the Network. Tablet Watchman! \nhttps://t.co/8rLwARBvup", - "url": "http://t.co/pUn9V1gXKx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", - "profile_background_color": "0084B4", - "created_at": "Wed Oct 15 19:22:42 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", - "favourites_count": 1690, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "CrankyClown", - "in_reply_to_user_id": 40303038, - "in_reply_to_status_id_str": "685629102318030849", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685629984380067840", - "id": 685629984380067840, - "text": "@CrankyClown no worries. I have had the Jabra clipper. It's OK...works but not for high end audio desires.( I only listen to lossless)", - "in_reply_to_user_id_str": "40303038", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CrankyClown", - "id_str": "40303038", - "id": 40303038, - "indices": [ - 0, - 12 - ], - "name": "Cranky Clown" - } - ] - }, - "created_at": "Sat Jan 09 01:11:41 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685629102318030849, - "lang": "en" - }, - "default_profile_image": false, - "id": 2832545398, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", - "statuses_count": 3239, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2832545398/1420726400", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3107351469", - "following": false, - "friends_count": 2434, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "git-scm.com", - "url": "http://t.co/YaM2RpAQp5", - "expanded_url": "http://git-scm.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "F05033", - "geo_enabled": false, - "followers_count": 2883, - "location": "Finland", - "screen_name": "planetgit", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "Planet Git", - "profile_use_background_image": false, - "description": "Curated news from the Git community. Git is a free and open source distributed version control system.", - "url": "http://t.co/YaM2RpAQp5", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Mar 23 10:43:42 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", - "favourites_count": 1, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684831105363656705", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z5BU2q", - "url": "https://t.co/0z9a6ISARU", - "expanded_url": "http://buff.ly/1Z5BU2q", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 20:17:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684831105363656705, - "text": "Neat new features in Git 2.7 https://t.co/0z9a6ISARU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 3107351469, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 68, - "is_translator": false - }, - { - "time_zone": "Vienna", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "23755643", - "following": false, - "friends_count": 20839, - "entities": { - "description": { - "urls": [ - { - "display_url": "linkd.in/1JT9h3X", - "url": "https://t.co/iJB2h1L78m", - "expanded_url": "http://linkd.in/1JT9h3X", - "indices": [ - 105, - 128 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "dixus.de", - "url": "http://t.co/sZ1DnHsEsZ", - "expanded_url": "http://www.dixus.de", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 28405, - "location": "Germany (Saxony)", - "screen_name": "dixus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 750, - "name": "Holger Kreissl", - "profile_use_background_image": false, - "description": "#mobile & #cloud enthusiast | #CleanCode | #dotnet | #aspnet | #enterpriseMobility | Find me on LinkedIn https://t.co/iJB2h1L78m", - "url": "http://t.co/sZ1DnHsEsZ", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Mar 11 12:38:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", - "favourites_count": 1142, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685540390351597569", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1Zb2oj6", - "url": "https://t.co/WYppjNMu0h", - "expanded_url": "http://bit.ly/1Zb2oj6", - "indices": [ - 32, - 55 - ] - } - ], - "hashtags": [ - { - "indices": [ - 56, - 66 - ], - "text": "Developer" - }, - { - "indices": [ - 67, - 72 - ], - "text": "MVVM" - }, - { - "indices": [ - 73, - 81 - ], - "text": "Pattern" - }, - { - "indices": [ - 82, - 89 - ], - "text": "CSharp" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:15:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685540390351597569, - "text": "The MVVM pattern \u2013 The practice https://t.co/WYppjNMu0h #Developer #MVVM #Pattern #CSharp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "DixusTweeter" - }, - "default_profile_image": false, - "id": 23755643, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5551, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23755643/1441816836", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2491819189", - "following": false, - "friends_count": 2316, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/InTheCloudDan", - "url": "https://t.co/cOAiJln1jK", - "expanded_url": "https://github.com/InTheCloudDan", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 437, - "location": "", - "screen_name": "InTheCloudDan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 33, - "name": "Daniel O'Brien", - "profile_use_background_image": true, - "description": "I Heart #javascript #nodejs #docker #devops while dreaming of #thegreatoutdoors and a side of #growthhacking with my better half @FoodnFunAllDay", - "url": "https://t.co/cOAiJln1jK", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon May 12 18:28:48 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", - "favourites_count": 110, - "status": { - "retweet_count": 15, - "retweeted_status": { - "retweet_count": 15, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685287444514762753", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "type": "photo", - "indices": [ - 0, - 23 - ], - "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "display_url": "pic.twitter.com/DlXvgVMX0i", - "id_str": "685287444372144128", - "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", - "id": 685287444372144128, - "url": "https://t.co/DlXvgVMX0i" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:30:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685287444514762753, - "text": "https://t.co/DlXvgVMX0i", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 16, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685439447769415680", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "source_status_id_str": "685287444514762753", - "url": "https://t.co/DlXvgVMX0i", - "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "source_user_id_str": "6927562", - "id_str": "685287444372144128", - "id": 685287444372144128, - "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", - "type": "photo", - "indices": [ - 17, - 40 - ], - "source_status_id": 685287444514762753, - "source_user_id": 6927562, - "display_url": "pic.twitter.com/DlXvgVMX0i", - "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thomasfuchs", - "id_str": "6927562", - "id": 6927562, - "indices": [ - 3, - 15 - ], - "name": "Thomas Fuchs" - } - ] - }, - "created_at": "Fri Jan 08 12:34:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685439447769415680, - "text": "RT @thomasfuchs: https://t.co/DlXvgVMX0i", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2491819189, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 254, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "19300535", - "following": false, - "friends_count": 375, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "evilchi.li", - "url": "http://t.co/7Y1LuKzE5f", - "expanded_url": "http://evilchi.li/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "BFBFBF", - "profile_link_color": "2463A3", - "geo_enabled": true, - "followers_count": 417, - "location": "\u2615\ufe0f Seattle", - "screen_name": "evilchili", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "eeeveeelcheeeleee", - "profile_use_background_image": false, - "description": "evilchili is an application downloaded from the Internet. Are you sure you want to open it?", - "url": "http://t.co/7Y1LuKzE5f", - "profile_text_color": "212121", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", - "profile_background_color": "3F5D8A", - "created_at": "Wed Jan 21 18:47:47 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", - "favourites_count": 217, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "evilchili", - "in_reply_to_user_id": 19300535, - "in_reply_to_status_id_str": "685509884037607424", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685510082142978048", - "id": 685510082142978048, - "text": "@evilchili Never say \"yes\" to anything before you've had coffee.", - "in_reply_to_user_id_str": "19300535", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "evilchili", - "id_str": "19300535", - "id": 19300535, - "indices": [ - 0, - 10 - ], - "name": "eeeveeelcheeeleee" - } - ] - }, - "created_at": "Fri Jan 08 17:15:14 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685509884037607424, - "lang": "en" - }, - "default_profile_image": false, - "id": 19300535, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 22907, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19300535/1403829270", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "919464055", - "following": false, - "friends_count": 246, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tessamero.com", - "url": "https://t.co/eFmsIOI8OE", - "expanded_url": "http://tessamero.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "89C9FA", - "geo_enabled": true, - "followers_count": 1682, - "location": "Seattle, WA", - "screen_name": "TessaMero", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 201, - "name": "Tessa Mero", - "profile_use_background_image": true, - "description": "Teacher. Open Source Contributor. Organizer of @SeaPHP, @PNWPHP, and @JUGSeattle. Snowboarder. Video Game Lover. Speaker. Traveler. Dev Advocate for @Joomla", - "url": "https://t.co/eFmsIOI8OE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", - "profile_background_color": "89C9FA", - "created_at": "Thu Nov 01 17:12:23 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", - "favourites_count": 5619, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "shivaas", - "in_reply_to_user_id": 14636369, - "in_reply_to_status_id_str": "685585585096921088", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685601154823270400", - "id": 685601154823270400, - "text": "@shivaas thank you! I'm so excited for a career change!!!", - "in_reply_to_user_id_str": "14636369", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "shivaas", - "id_str": "14636369", - "id": 14636369, - "indices": [ - 0, - 8 - ], - "name": "Shivaas Gulati" - } - ] - }, - "created_at": "Fri Jan 08 23:17:07 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685585585096921088, - "lang": "en" - }, - "default_profile_image": false, - "id": 919464055, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 11074, - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "205936598", - "following": false, - "friends_count": 112, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 155, - "location": "Richland, WA", - "screen_name": "SanStaab", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6, - "name": "Jonathan Staab", - "profile_use_background_image": true, - "description": "Web Developer trying to figure out how to code like Jesus would.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Thu Oct 21 22:56:11 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", - "favourites_count": 49, - "status": { - "retweet_count": 13473, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 13473, - "truncated": false, - "retweeted": false, - "id_str": "683681888687538177", - "id": 683681888687538177, - "text": "I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Jan 03 16:10:39 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 15374, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "684554177079414784", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JohnCleese", - "id_str": "10810102", - "id": 10810102, - "indices": [ - 3, - 14 - ], - "name": "John Cleese" - } - ] - }, - "created_at": "Wed Jan 06 01:56:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684554177079414784, - "text": "RT @JohnCleese: I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 205936598, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 628, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18195183", - "following": false, - "friends_count": 236, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gregaker.net", - "url": "https://t.co/wtcGV5PvaK", - "expanded_url": "http://www.gregaker.net/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 845, - "location": "Columbia, MO, USA", - "screen_name": "gaker", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 90, - "name": "\u0279\u04d9\u029e\u0250 \u0183\u04d9\u0279\u0183", - "profile_use_background_image": false, - "description": "I'm a thrasher, saxophone player and writer of code. DevOps @vinli", - "url": "https://t.co/wtcGV5PvaK", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Dec 17 18:15:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", - "favourites_count": 364, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684915042521890818", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "type": "photo", - "indices": [ - 78, - 101 - ], - "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "display_url": "pic.twitter.com/Nb0t9m7Kzu", - "id_str": "684915033961304064", - "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", - "id": 684915033961304064, - "url": "https://t.co/Nb0t9m7Kzu" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 51, - 55 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "vinli", - "id_str": "2409518833", - "id": 2409518833, - "indices": [ - 22, - 28 - ], - "name": "Vinli" - }, - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 37, - 42 - ], - "name": "Uber" - } - ] - }, - "created_at": "Thu Jan 07 01:50:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -115.2092535, - 35.984784 - ], - [ - -115.0610763, - 35.984784 - ], - [ - -115.0610763, - 36.137145 - ], - [ - -115.2092535, - 36.137145 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Paradise, NV", - "id": "8fa6d7a33b83ef26", - "name": "Paradise" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684915042521890818, - "text": "People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684928923247886336", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "source_status_id_str": "684915042521890818", - "url": "https://t.co/Nb0t9m7Kzu", - "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "source_user_id_str": "149705221", - "id_str": "684915033961304064", - "id": 684915033961304064, - "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", - "type": "photo", - "indices": [ - 94, - 117 - ], - "source_status_id": 684915042521890818, - "source_user_id": 149705221, - "display_url": "pic.twitter.com/Nb0t9m7Kzu", - "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 67, - 71 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "markhaidar", - "id_str": "149705221", - "id": 149705221, - "indices": [ - 3, - 14 - ], - "name": "Mark Haidar" - }, - { - "screen_name": "vinli", - "id_str": "2409518833", - "id": 2409518833, - "indices": [ - 38, - 44 - ], - "name": "Vinli" - }, - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 53, - 58 - ], - "name": "Uber" - } - ] - }, - "created_at": "Thu Jan 07 02:45:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684928923247886336, - "text": "RT @markhaidar: People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18195183, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3788, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18195183/1445621336", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "223102727", - "following": false, - "friends_count": 517, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "94D487", - "geo_enabled": true, - "followers_count": 316, - "location": "San Diego, CA", - "screen_name": "wulfmeister", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 28, - "name": "Mitchell Wulfman", - "profile_use_background_image": false, - "description": "JavaScript things, Meteor, UX. Striving to make bicycles for the mind. Currently taking HCI/UX classes at @DesignLabUCSD", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun Dec 05 11:52:50 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", - "favourites_count": 1103, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685287692490260480", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "chrome.google.com/webstore/detai\u2026", - "url": "https://t.co/9fpcPvs8Hv", - "expanded_url": "https://chrome.google.com/webstore/detail/command-click-fix/leklllfdadjjglhllebogdjfdipdjhhp", - "indices": [ - 95, - 118 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:31:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685287692490260480, - "text": "Chrome extension to force Command-Click to open links in a new tab instead of the current one: https://t.co/9fpcPvs8Hv", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 223102727, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", - "statuses_count": 630, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/223102727/1445901786", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "15085681", - "following": false, - "friends_count": 170, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 151, - "location": "Dallas, TX", - "screen_name": "pkinney", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Powell Kinney", - "profile_use_background_image": true, - "description": "CTO at Vinli (@vinli)", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 11 15:30:11 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", - "favourites_count": 24, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684554991529508864", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 426, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "type": "photo", - "indices": [ - 117, - 140 - ], - "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "display_url": "pic.twitter.com/om0NgHGk0p", - "id_str": "684554991395323904", - "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", - "id": 684554991395323904, - "url": "https://t.co/om0NgHGk0p" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "hubs.ly/H01LMTC0", - "url": "https://t.co/hrCBzE0IY9", - "expanded_url": "http://hubs.ly/H01LMTC0", - "indices": [ - 78, - 101 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 8 - ], - "text": "CES2016" - } - ], - "user_mentions": [ - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 58, - 63 - ], - "name": "Uber" - }, - { - "screen_name": "reviewjournal", - "id_str": "15358759", - "id": 15358759, - "indices": [ - 102, - 116 - ], - "name": "Las Vegas RJ" - } - ] - }, - "created_at": "Wed Jan 06 02:00:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684554991529508864, - "text": "#CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.co/om0NgHGk0p", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "HubSpot" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684851893558841344", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 426, - "resize": "fit" - } - }, - "source_status_id_str": "684554991529508864", - "url": "https://t.co/om0NgHGk0p", - "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "source_user_id_str": "2409518833", - "id_str": "684554991395323904", - "id": 684554991395323904, - "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 684554991529508864, - "source_user_id": 2409518833, - "display_url": "pic.twitter.com/om0NgHGk0p", - "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "hubs.ly/H01LMTC0", - "url": "https://t.co/hrCBzE0IY9", - "expanded_url": "http://hubs.ly/H01LMTC0", - "indices": [ - 89, - 112 - ] - } - ], - "hashtags": [ - { - "indices": [ - 11, - 19 - ], - "text": "CES2016" - } - ], - "user_mentions": [ - { - "screen_name": "vinli", - "id_str": "2409518833", - "id": 2409518833, - "indices": [ - 3, - 9 - ], - "name": "Vinli" - }, - { - "screen_name": "Uber", - "id_str": "19103481", - "id": 19103481, - "indices": [ - 69, - 74 - ], - "name": "Uber" - }, - { - "screen_name": "reviewjournal", - "id_str": "15358759", - "id": 15358759, - "indices": [ - 113, - 127 - ], - "name": "Las Vegas RJ" - } - ] - }, - "created_at": "Wed Jan 06 21:39:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684851893558841344, - "text": "RT @vinli: #CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.c\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 15085681, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 76, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15085681/1409019019", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "220165520", - "following": false, - "friends_count": 1839, - "entities": { - "description": { - "urls": [ - { - "display_url": "blog.codeship.com", - "url": "http://t.co/egYbB2cZXI", - "expanded_url": "http://blog.codeship.com", - "indices": [ - 78, - 100 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "codeship.com", - "url": "https://t.co/1m0F4Hu8KN", - "expanded_url": "https://codeship.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "0044CC", - "geo_enabled": true, - "followers_count": 8671, - "location": "Boston, MA", - "screen_name": "codeship", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 457, - "name": "Codeship", - "profile_use_background_image": false, - "description": "We are the fastest hosted Continuous Delivery Platform. Check out our blog at http://t.co/egYbB2cZXI \u2013 Need help? Ask @CodeshipSupport", - "url": "https://t.co/1m0F4Hu8KN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Fri Nov 26 23:51:57 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", - "favourites_count": 1056, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612838136770561", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1LZxOpT", - "url": "https://t.co/lHbWAw8Trn", - "expanded_url": "http://bit.ly/1LZxOpT", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [ - { - "indices": [ - 21, - 30 - ], - "text": "Postgres" - } - ], - "user_mentions": [ - { - "screen_name": "leighchalliday", - "id_str": "119841821", - "id": 119841821, - "indices": [ - 39, - 54 - ], - "name": "Leigh Halliday" - } - ] - }, - "created_at": "Sat Jan 09 00:03:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612838136770561, - "text": "\"How to use JSONB in #Postgres.\" \u2013 via @leighchalliday\n\nhttps://t.co/lHbWAw8Trn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Meet Edgar" - }, - "default_profile_image": false, - "id": 220165520, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", - "statuses_count": 14740, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/220165520/1418855084", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2705064962", - "following": false, - "friends_count": 4102, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "codecov.io", - "url": "https://t.co/rCxo4WMDnw", - "expanded_url": "https://codecov.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FC2B6A", - "geo_enabled": true, - "followers_count": 1745, - "location": "", - "screen_name": "codecov", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "Codecov", - "profile_use_background_image": false, - "description": "Continuous code coverage. Featuring browser extensions, branch coverage and coverage diffs for GitHub, Bitbucket and GitLab", - "url": "https://t.co/rCxo4WMDnw", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", - "profile_background_color": "06142B", - "created_at": "Sun Aug 03 22:36:47 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", - "favourites_count": 910, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "keimlink", - "in_reply_to_user_id": 44300359, - "in_reply_to_status_id_str": "684763065506738176", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684981810984423424", - "id": 684981810984423424, - "text": "@keimlink during some testing we found the package was having issues installing on some CI providers. I'll email you w/ more details.", - "in_reply_to_user_id_str": "44300359", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "keimlink", - "id_str": "44300359", - "id": 44300359, - "indices": [ - 0, - 9 - ], - "name": "Markus Zapke" - } - ] - }, - "created_at": "Thu Jan 07 06:16:04 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684763065506738176, - "lang": "en" - }, - "default_profile_image": false, - "id": 2705064962, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 947, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705064962/1440537606", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15534471", - "following": false, - "friends_count": 314, - "entities": { - "description": { - "urls": [ - { - "display_url": "ampproject.org/how-it-works/", - "url": "https://t.co/Wfq8ij4B8D", - "expanded_url": "https://www.ampproject.org/how-it-works/", - "indices": [ - 30, - 53 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "google.com/+MalteUbl", - "url": "https://t.co/297YfYX56s", - "expanded_url": "https://google.com/+MalteUbl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", - "notifications": false, - "profile_sidebar_fill_color": "FFFD91", - "profile_link_color": "FF0043", - "geo_enabled": true, - "followers_count": 5455, - "location": "San Francisco", - "screen_name": "cramforce", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 434, - "name": "Malte Ubl", - "profile_use_background_image": true, - "description": "Tech lead of the AMP Project. https://t.co/Wfq8ij4B8D \n\nI make www internet web pages for Google. Curator of @JSConfEU", - "url": "https://t.co/297YfYX56s", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jul 22 18:04:13 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FDE700", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", - "favourites_count": 2021, - "status": { - "retweet_count": 5, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 5, - "truncated": false, - "retweeted": false, - "id_str": "685624978780246016", - "id": 685624978780246016, - "text": "Security at its core is about reducing attack surface. You cover 90% of the job just by focussing on that. The other 10% is mostly luck.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:51:47 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 13, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685626573047791616", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "justinschuh", - "id_str": "72690437", - "id": 72690437, - "indices": [ - 3, - 15 - ], - "name": "Justin Schuh" - } - ] - }, - "created_at": "Sat Jan 09 00:58:07 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685626573047791616, - "text": "RT @justinschuh: Security at its core is about reducing attack surface. You cover 90% of the job just by focussing on that. The other 10% i\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 15534471, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", - "statuses_count": 18018, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15534471/1398619165", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "771681", - "following": false, - "friends_count": 2112, - "entities": { - "description": { - "urls": [ - { - "display_url": "pronoun.is/he", - "url": "https://t.co/h4IxIYLYdk", - "expanded_url": "http://pronoun.is/he", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/glowcoil/statu\u2026", - "url": "https://t.co/7vUIPFlyCV", - "expanded_url": "https://twitter.com/glowcoil/status/660314122010034176", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "BBBBBB", - "geo_enabled": true, - "followers_count": 6803, - "location": "Chicago, IL /via Alaska", - "screen_name": "ELLIOTTCABLE", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 156, - "name": "~", - "profile_use_background_image": false, - "description": "Topical muggle. {PL,Q}T. I invented Ruby, Node.js, and all of the LISPs. Now I'm inventing Paws.\n\n[warning: contains bitterant.] https://t.co/h4IxIYLYdk", - "url": "https://t.co/7vUIPFlyCV", - "profile_text_color": "AAAAAA", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Feb 14 06:37:31 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", - "favourites_count": 14574, - "status": { - "geo": { - "coordinates": [ - 41.86747694, - -87.63303779 - ], - "type": "Point" - }, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -87.940033, - 41.644102 - ], - [ - -87.523993, - 41.644102 - ], - [ - -87.523993, - 42.0230669 - ], - [ - -87.940033, - 42.0230669 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Chicago, IL", - "id": "1d9a5370a355ab0c", - "name": "Chicago" - }, - "in_reply_to_screen_name": "ProductHunt", - "in_reply_to_user_id": 2208027565, - "in_reply_to_status_id_str": "685091084314263552", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685232357117440000", - "id": 685232357117440000, - "text": "@ProductHunt @netflix @TheCruziest Sense 7? Is that different from Sense 8?", - "in_reply_to_user_id_str": "2208027565", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ProductHunt", - "id_str": "2208027565", - "id": 2208027565, - "indices": [ - 0, - 12 - ], - "name": "Product Hunt" - }, - { - "screen_name": "netflix", - "id_str": "16573941", - "id": 16573941, - "indices": [ - 13, - 21 - ], - "name": "Netflix US" - }, - { - "screen_name": "TheCruziest", - "id_str": "303796625", - "id": 303796625, - "indices": [ - 22, - 34 - ], - "name": "Steven Cruz" - } - ] - }, - "created_at": "Thu Jan 07 22:51:39 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": { - "coordinates": [ - -87.63303779, - 41.86747694 - ], - "type": "Point" - }, - "contributors": null, - "in_reply_to_status_id": 685091084314263552, - "lang": "en" - }, - "default_profile_image": false, - "id": 771681, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 94590, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/771681/1414127033", - "is_translator": false - }, - { - "time_zone": "Brussels", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "87257431", - "following": false, - "friends_count": 998, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "il.ly", - "url": "http://t.co/welccj0beF", - "expanded_url": "http://il.ly/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", - "notifications": false, - "profile_sidebar_fill_color": "171717", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1555, - "location": "Kortrijk, Belgium", - "screen_name": "illyism", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 70, - "name": "Ilias Ismanalijev", - "profile_use_background_image": true, - "description": "Technology \u2022 Designer \u2022 Developer \u2022 Student #NMCT", - "url": "http://t.co/welccj0beF", - "profile_text_color": "F2F2F2", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", - "profile_background_color": "242424", - "created_at": "Tue Nov 03 19:01:00 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", - "favourites_count": 10505, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "JoshDComp", - "in_reply_to_user_id": 28402389, - "in_reply_to_status_id_str": "683864186821152768", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684060669654745088", - "id": 684060669654745088, - "text": "@JoshDComp Sure is, I like the realistic politics of it all and the well crafted VFX. It sucked me right into its world.", - "in_reply_to_user_id_str": "28402389", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JoshDComp", - "id_str": "28402389", - "id": 28402389, - "indices": [ - 0, - 10 - ], - "name": "Josh Compton" - } - ] - }, - "created_at": "Mon Jan 04 17:15:47 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683864186821152768, - "lang": "en" - }, - "default_profile_image": false, - "id": 87257431, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", - "statuses_count": 244, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/87257431/1410266462", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "236341530", - "following": false, - "friends_count": 235, - "entities": { - "description": { - "urls": [ - { - "display_url": "mkeas.org", - "url": "https://t.co/bfRlctkCoN", - "expanded_url": "http://mkeas.org", - "indices": [ - 126, - 149 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mkeas.org", - "url": "https://t.co/bfRlctkCoN", - "expanded_url": "http://mkeas.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FA743E", - "geo_enabled": false, - "followers_count": 1320, - "location": "Houston, TX", - "screen_name": "matthiasak", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 72, - "name": "Mountain Matt", - "profile_use_background_image": true, - "description": "@TheIronYard, @DestinationCode, @SpaceCityConfs, INFOSEC crypto'r, powderhound, Lisper + \u03bb, @CapitalFactory alum, @HoustonJS, https://t.co/bfRlctkCoN.", - "url": "https://t.co/bfRlctkCoN", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Mon Jan 10 10:58:39 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", - "favourites_count": 1199, - "status": { - "retweet_count": 2, - "retweeted_status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1703b859c254a0f9.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -84.5129821, - 33.5933183 - ], - [ - -84.427795, - 33.5933183 - ], - [ - -84.427795, - 33.669237 - ], - [ - -84.5129821, - 33.669237 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "College Park, GA", - "id": "1703b859c254a0f9", - "name": "College Park" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685448904154976256", - "id": 685448904154976256, - "text": "Headed to Charleston today for our first @TheIronYard teammate-turned-student's graduation from our Front-end program! So proud & excited!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheIronYard", - "id_str": "576311383", - "id": 576311383, - "indices": [ - 41, - 53 - ], - "name": "The Iron Yard" - } - ] - }, - "created_at": "Fri Jan 08 13:12:08 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 13, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685617240801021952", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sarahbethlodato", - "id_str": "30965902", - "id": 30965902, - "indices": [ - 3, - 19 - ], - "name": "Sarah Lodato" - }, - { - "screen_name": "TheIronYard", - "id_str": "576311383", - "id": 576311383, - "indices": [ - 62, - 74 - ], - "name": "The Iron Yard" - } - ] - }, - "created_at": "Sat Jan 09 00:21:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685617240801021952, - "text": "RT @sarahbethlodato: Headed to Charleston today for our first @TheIronYard teammate-turned-student's graduation from our Front-end program!\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 236341530, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", - "statuses_count": 4937, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/236341530/1449188760", - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "252481460", - "following": false, - "friends_count": 24, - "entities": { - "description": { - "urls": [ - { - "display_url": "travis-ci.com", - "url": "http://t.co/0HN89Zqxlk", - "expanded_url": "http://travis-ci.com", - "indices": [ - 96, - 118 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "travis-ci.org", - "url": "http://t.co/3Tz19DXfYa", - "expanded_url": "http://travis-ci.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 14345, - "location": "Berlin, Germany", - "screen_name": "travisci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 527, - "name": "Travis CI", - "profile_use_background_image": true, - "description": "Hi I\u2019m Travis CI, a hosted continuous integration service for open source and private projects: http://t.co/0HN89Zqxlk System status updates: @traviscistatus", - "url": "http://t.co/3Tz19DXfYa", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 15 08:34:44 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", - "favourites_count": 1506, - "status": { - "retweet_count": 26, - "retweeted_status": { - "retweet_count": 26, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684128421845270530", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 271, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 453, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 453, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "type": "photo", - "indices": [ - 109, - 132 - ], - "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "display_url": "pic.twitter.com/fdIihYvkFb", - "id_str": "684128421732036608", - "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", - "id": 684128421732036608, - "url": "https://t.co/fdIihYvkFb" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "spr.ly/6018BnRke", - "url": "https://t.co/TkOgMSX4VM", - "expanded_url": "http://spr.ly/6018BnRke", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "github", - "id_str": "13334762", - "id": 13334762, - "indices": [ - 62, - 69 - ], - "name": "GitHub" - }, - { - "screen_name": "travisci", - "id_str": "252481460", - "id": 252481460, - "indices": [ - 74, - 83 - ], - "name": "Travis CI" - } - ] - }, - "created_at": "Mon Jan 04 21:45:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684128421845270530, - "text": "How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/fdIihYvkFb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 23, - "contributors": null, - "source": " SAP" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685085167086612481", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 271, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 453, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 453, - "resize": "fit" - } - }, - "source_status_id_str": "684128421845270530", - "url": "https://t.co/fdIihYvkFb", - "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "source_user_id_str": "100292002", - "id_str": "684128421732036608", - "id": 684128421732036608, - "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", - "type": "photo", - "indices": [ - 125, - 140 - ], - "source_status_id": 684128421845270530, - "source_user_id": 100292002, - "display_url": "pic.twitter.com/fdIihYvkFb", - "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "spr.ly/6018BnRke", - "url": "https://t.co/TkOgMSX4VM", - "expanded_url": "http://spr.ly/6018BnRke", - "indices": [ - 101, - 124 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SAPCommNet", - "id_str": "100292002", - "id": 100292002, - "indices": [ - 3, - 14 - ], - "name": "SAP CommunityNetwork" - }, - { - "screen_name": "github", - "id_str": "13334762", - "id": 13334762, - "indices": [ - 78, - 85 - ], - "name": "GitHub" - }, - { - "screen_name": "travisci", - "id_str": "252481460", - "id": 252481460, - "indices": [ - 90, - 99 - ], - "name": "Travis CI" - } - ] - }, - "created_at": "Thu Jan 07 13:06:46 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685085167086612481, - "text": "RT @SAPCommNet: How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/f\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 252481460, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10343, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/252481460/1383837670", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "86938585", - "following": false, - "friends_count": 134, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "circleci.com", - "url": "https://t.co/UfEqN58rWH", - "expanded_url": "https://circleci.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1584, - "location": "San Francisco", - "screen_name": "paulbiggar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 99, - "name": "Paul Biggar", - "profile_use_background_image": true, - "description": "Likes developers, chocolate, startups, history and pastries. Founder of CircleCI.", - "url": "https://t.co/UfEqN58rWH", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 02 13:08:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", - "favourites_count": 286, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685370475611078657", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "newyorker.com/magazine/2016/\u2026", - "url": "https://t.co/vbDkTva03y", - "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", - "indices": [ - 38, - 61 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "NewYorker", - "id_str": "14677919", - "id": 14677919, - "indices": [ - 66, - 76 - ], - "name": "The New Yorker" - } - ] - }, - "created_at": "Fri Jan 08 08:00:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685370475611078657, - "text": "Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685496070474973185", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "newyorker.com/magazine/2016/\u2026", - "url": "https://t.co/vbDkTva03y", - "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", - "indices": [ - 55, - 78 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sarahgbooks", - "id_str": "111095563", - "id": 111095563, - "indices": [ - 3, - 15 - ], - "name": "Sarah Gilmartin" - }, - { - "screen_name": "NewYorker", - "id_str": "14677919", - "id": 14677919, - "indices": [ - 83, - 93 - ], - "name": "The New Yorker" - } - ] - }, - "created_at": "Fri Jan 08 16:19:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685496070474973185, - "text": "RT @sarahgbooks: Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 86938585, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1368, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "381223731", - "following": false, - "friends_count": 4793, - "entities": { - "description": { - "urls": [ - { - "display_url": "discuss.circleci.com", - "url": "https://t.co/g79TaPamp5", - "expanded_url": "https://discuss.circleci.com/", - "indices": [ - 91, - 114 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "circleci.com", - "url": "https://t.co/Ls6HRLMgUX", - "expanded_url": "https://circleci.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "343434", - "geo_enabled": true, - "followers_count": 6832, - "location": "San Francisco", - "screen_name": "circleci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 171, - "name": "CircleCI", - "profile_use_background_image": false, - "description": "Easy, fast, continuous integration and deployment for web apps and iOS. For support, visit https://t.co/g79TaPamp5 or email sayhi@circleci.com.", - "url": "https://t.co/Ls6HRLMgUX", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", - "profile_background_color": "FBFBFB", - "created_at": "Tue Sep 27 23:33:23 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", - "favourites_count": 3136, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613493333135360", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "circle.ci/1VRcA07", - "url": "https://t.co/qbnualOiX6", - "expanded_url": "http://circle.ci/1VRcA07", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "iamkevinbell", - "id_str": "635809882", - "id": 635809882, - "indices": [ - 18, - 31 - ], - "name": "Kevin Bell" - }, - { - "screen_name": "circleci", - "id_str": "381223731", - "id": 381223731, - "indices": [ - 35, - 44 - ], - "name": "CircleCI" - }, - { - "screen_name": "fredsters_s", - "id_str": "14868289", - "id": 14868289, - "indices": [ - 51, - 63 - ], - "name": "Fred Stevens-Smith" - }, - { - "screen_name": "rainforestqa", - "id_str": "1012066448", - "id": 1012066448, - "indices": [ - 67, - 80 - ], - "name": "Rainforest QA" - } - ] - }, - "created_at": "Sat Jan 09 00:06:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613493333135360, - "text": "UPCOMING WEBINAR: @iamkevinbell of @circleci & @fredsters_s of @rainforestqa are talking Continuous Deployment: https://t.co/qbnualOiX6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 381223731, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2396, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7900402", - "following": false, - "friends_count": 391, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "280096", - "geo_enabled": true, - "followers_count": 342, - "location": "San Francisco, CA", - "screen_name": "tvachon", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "pizza: the gathering", - "profile_use_background_image": true, - "description": "putting the travis in circleci since 2014", - "url": null, - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Aug 02 05:37:07 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", - "favourites_count": 606, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "SpikeFriedman", - "in_reply_to_user_id": 364371190, - "in_reply_to_status_id_str": "685596593584603136", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685615315531632640", - "id": 685615315531632640, - "text": "@SpikeFriedman would", - "in_reply_to_user_id_str": "364371190", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SpikeFriedman", - "id_str": "364371190", - "id": 364371190, - "indices": [ - 0, - 14 - ], - "name": "Spike Friedman" - } - ] - }, - "created_at": "Sat Jan 09 00:13:23 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685596593584603136, - "lang": "en" - }, - "default_profile_image": false, - "id": 7900402, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", - "statuses_count": 5615, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "10399172", - "following": false, - "friends_count": 1295, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chmod777self.com", - "url": "http://t.co/6w6v8SGBti", - "expanded_url": "http://www.chmod777self.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "0A1EA3", - "geo_enabled": true, - "followers_count": 1146, - "location": "Fresno, CA", - "screen_name": "jasnell", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 87, - "name": "James M Snell", - "profile_use_background_image": true, - "description": "IBM Technical Lead for Node.js;\nNode.js TSC Member;\nAll around nice guy.", - "url": "http://t.co/6w6v8SGBti", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Nov 20 01:19:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", - "favourites_count": 2143, - "status": { - "retweet_count": 12, - "retweeted_status": { - "retweet_count": 12, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685242905007529984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/members\u2026", - "url": "https://t.co/jGV36DgAJg", - "expanded_url": "https://github.com/nodejs/membership/issues/12", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 23:33:34 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685242905007529984, - "text": "Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/jGV36DgAJg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 24, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685268279959539712", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/members\u2026", - "url": "https://t.co/jGV36DgAJg", - "expanded_url": "https://github.com/nodejs/membership/issues/12", - "indices": [ - 126, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dshaw", - "id_str": "806757", - "id": 806757, - "indices": [ - 3, - 9 - ], - "name": "Dan Shaw" - } - ] - }, - "created_at": "Fri Jan 08 01:14:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685268279959539712, - "text": "RT @dshaw: Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 10399172, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 3178, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10399172/1447689090", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3278631516", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "planet.com", - "url": "http://t.co/v3JIlJoOTW", - "expanded_url": "http://planet.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 294, - "location": "Space", - "screen_name": "dovesinspace", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Doves in space", - "profile_use_background_image": true, - "description": "We are in space.", - "url": "http://t.co/v3JIlJoOTW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 13 15:59:42 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", - "favourites_count": 0, - "status": { - "geo": { - "coordinates": [ - 29.91434343, - -83.47056022 - ], - "type": "Point" - }, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/4ec01c9dbc693497.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -87.634643, - 24.396308 - ], - [ - -79.974307, - 24.396308 - ], - [ - -79.974307, - 31.001056 - ], - [ - -87.634643, - 31.001056 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Florida, USA", - "id": "4ec01c9dbc693497", - "name": "Florida" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 4, - "truncated": false, - "retweeted": false, - "id_str": "651885332665909248", - "id": 651885332665909248, - "text": "I'm in space now! Satellite Flock 2b Satellite 14 reporting for duty.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Oct 07 22:22:29 +0000 2015", - "source": "Deployment tweets", - "favorite_count": 5, - "favorited": false, - "coordinates": { - "coordinates": [ - -83.47056022, - 29.91434343 - ], - "type": "Point" - }, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 3278631516, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 21, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3278631516/1436803648", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "13567", - "following": false, - "friends_count": 1520, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "christianheilmann.com/2013/02/11/hel\u2026", - "url": "http://t.co/fQKlvTCkqN", - "expanded_url": "http://christianheilmann.com/2013/02/11/hello-it-is-me-on-twitter/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", - "notifications": false, - "profile_sidebar_fill_color": "B7CCBB", - "profile_link_color": "13456B", - "geo_enabled": true, - "followers_count": 52184, - "location": "London, UK", - "screen_name": "codepo8", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3779, - "name": "Christian Heilmann", - "profile_use_background_image": true, - "description": "Developer Evangelist - all things open web, HTML5, writing and working together. Works at Microsoft on Edge, opinions totally my own. #nofilter", - "url": "http://t.co/fQKlvTCkqN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", - "profile_background_color": "336699", - "created_at": "Tue Nov 21 17:20:09 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", - "favourites_count": 386, - "status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685626000806424576", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "priceonomics.com/how-mickey-mou\u2026", - "url": "https://t.co/RVt1p2mhKB", - "expanded_url": "http://priceonomics.com/how-mickey-mouse-evades-the-public-domain/", - "indices": [ - 42, - 65 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:55:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685626000806424576, - "text": "How Mickey Mouse evades the public domain https://t.co/RVt1p2mhKB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 13567, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", - "statuses_count": 107977, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13567/1409269429", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2202531", - "following": false, - "friends_count": 211, - "entities": { - "description": { - "urls": [ - { - "display_url": "amazon.com/gp/product/B01\u2026", - "url": "https://t.co/C1nuRVMz0N", - "expanded_url": "http://www.amazon.com/gp/product/B018R7TV5W/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B018R7TV5W&linkCode=as2&tag=robceenet-20&linkId=377XBIIH55EWYAIK", - "indices": [ - 11, - 34 - ] - }, - { - "display_url": "flickr.com/photos/robceem\u2026", - "url": "https://t.co/7dMPlQvYLO", - "expanded_url": "https://www.flickr.com/photos/robceemoz/", - "indices": [ - 88, - 111 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "robcee.net", - "url": "http://t.co/R8fIMaSLvf", - "expanded_url": "http://robcee.net/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 1216, - "location": "Toronto, Canada", - "screen_name": "robcee", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 107, - "name": "robcee", - "profile_use_background_image": false, - "description": "#author of https://t.co/C1nuRVMz0N\n\n#drones #media #coffee #software #tech #photography https://t.co/7dMPlQvYLO", - "url": "http://t.co/R8fIMaSLvf", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Mar 25 19:52:34 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", - "favourites_count": 4161, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "matejnovak", - "in_reply_to_user_id": 15459306, - "in_reply_to_status_id_str": "685563535359868928", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685563745901350912", - "id": 685563745901350912, - "text": "@matejnovak Niagara Kale Brandy has a nasty vibe to it. But OK!", - "in_reply_to_user_id_str": "15459306", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "matejnovak", - "id_str": "15459306", - "id": 15459306, - "indices": [ - 0, - 11 - ], - "name": "Matej Novak \u23ce" - } - ] - }, - "created_at": "Fri Jan 08 20:48:28 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685563535359868928, - "lang": "en" - }, - "default_profile_image": false, - "id": 2202531, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 19075, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2202531/1420472405", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17663776", - "following": false, - "friends_count": 1126, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "planet.com", - "url": "http://t.co/AwAXMrXqVJ", - "expanded_url": "http://planet.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 12389, - "location": "San Francisco, CA, Earth", - "screen_name": "planetlabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 488, - "name": "Planet Labs", - "profile_use_background_image": false, - "description": "Delivering the most current images of our entire Earth.", - "url": "http://t.co/AwAXMrXqVJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Nov 27 00:10:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", - "favourites_count": 2014, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613487188398081", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", - "type": "photo", - "indices": [ - 97, - 120 - ], - "media_url": "http://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", - "display_url": "pic.twitter.com/01wqlNRcRx", - "id_str": "685613486617935872", - "expanded_url": "http://twitter.com/planetlabs/status/685613487188398081/photo/1", - "id": 685613486617935872, - "url": "https://t.co/01wqlNRcRx" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "planet.com/gallery/uganda\u2026", - "url": "https://t.co/QqEWAf2iM1", - "expanded_url": "https://www.planet.com/gallery/uganda-smallholders/", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [ - { - "indices": [ - 64, - 71 - ], - "text": "Uganda" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:06:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613487188398081, - "text": "Small holder and subsistence farms on a sunny day in Namutumba, #Uganda https://t.co/QqEWAf2iM1 https://t.co/01wqlNRcRx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 17663776, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", - "statuses_count": 1658, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17663776/1439957443", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "41693", - "following": false, - "friends_count": 415, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blankbaby.com", - "url": "http://t.co/bOEDVPeU3G", - "expanded_url": "http://www.blankbaby.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18572/newlogotop.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 4309, - "location": "Philadelphia, PA", - "screen_name": "blankbaby", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 279, - "name": "Scott McNulty", - "profile_use_background_image": true, - "description": "I am almost Internet famous. Host of @Random_Trek.", - "url": "http://t.co/bOEDVPeU3G", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Dec 05 00:57:26 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", - "favourites_count": 48, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "dsilverman", - "in_reply_to_user_id": 1010181, - "in_reply_to_status_id_str": "685602406990622720", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685602609508519940", - "id": 685602609508519940, - "text": "@dsilverman @GlennF ;) Alexa isn\u2019t super smart but very useful for my needs!", - "in_reply_to_user_id_str": "1010181", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dsilverman", - "id_str": "1010181", - "id": 1010181, - "indices": [ - 0, - 11 - ], - "name": "dwight silverman" - }, - { - "screen_name": "GlennF", - "id_str": "8315692", - "id": 8315692, - "indices": [ - 12, - 19 - ], - "name": "Glenn Fleishman" - } - ] - }, - "created_at": "Fri Jan 08 23:22:54 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685602406990622720, - "lang": "en" - }, - "default_profile_image": false, - "id": 41693, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18572/newlogotop.png", - "statuses_count": 25874, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41693/1362153090", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3171325140", - "following": false, - "friends_count": 18, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sideway.com", - "url": "http://t.co/pwaxdZGj2W", - "expanded_url": "http://sideway.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "04AA04", - "geo_enabled": false, - "followers_count": 244, - "location": "", - "screen_name": "sideway", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Sideway", - "profile_use_background_image": false, - "description": "Share a conversation.", - "url": "http://t.co/pwaxdZGj2W", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", - "profile_background_color": "000000", - "created_at": "Fri Apr 24 22:41:17 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "663825999717466112", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "type": "photo", - "indices": [ - 12, - 35 - ], - "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "display_url": "pic.twitter.com/Ng3S2UnWDz", - "id_str": "663825968667037697", - "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", - "id": 663825968667037697, - "url": "https://t.co/Ng3S2UnWDz" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Nov 09 21:10:26 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 663825999717466112, - "text": "New plates! https://t.co/Ng3S2UnWDz", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 12, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "663826029887270912", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "663825999717466112", - "url": "https://t.co/Ng3S2UnWDz", - "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "source_user_id_str": "346026614", - "id_str": "663825968667037697", - "id": 663825968667037697, - "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", - "type": "photo", - "indices": [ - 28, - 51 - ], - "source_status_id": 663825999717466112, - "source_user_id": 346026614, - "display_url": "pic.twitter.com/Ng3S2UnWDz", - "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "eranhammer", - "id_str": "346026614", - "id": 346026614, - "indices": [ - 3, - 14 - ], - "name": "Eran Hammer" - } - ] - }, - "created_at": "Mon Nov 09 21:10:33 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 663826029887270912, - "text": "RT @eranhammer: New plates! https://t.co/Ng3S2UnWDz", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3171325140, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5768872", - "following": false, - "friends_count": 8375, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "garyvaynerchuk.com/agvbook/", - "url": "https://t.co/n1TN3hgA84", - "expanded_url": "http://www.garyvaynerchuk.com/agvbook/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFE6CE", - "profile_link_color": "268CCD", - "geo_enabled": true, - "followers_count": 1202113, - "location": "NYC", - "screen_name": "garyvee", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 24979, - "name": "Gary Vaynerchuk", - "profile_use_background_image": true, - "description": "Family 1st! but after that, Businessman. CEO of @vaynermedia. Host of #AskGaryVee show and a dude who Loves the Hustle, the @NYJets .. snapchat - garyvee", - "url": "https://t.co/n1TN3hgA84", - "profile_text_color": "996633", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", - "profile_background_color": "152932", - "created_at": "Fri May 04 15:32:48 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", - "favourites_count": 2451, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "ChampionRandy_", - "in_reply_to_user_id": 24077081, - "in_reply_to_status_id_str": "685615325677658112", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685615719472574468", - "id": 685615719472574468, - "text": "@ChampionRandy_ @Snapchat nah just believe in it soooo much", - "in_reply_to_user_id_str": "24077081", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ChampionRandy_", - "id_str": "24077081", - "id": 24077081, - "indices": [ - 0, - 15 - ], - "name": "Champion.Randy" - }, - { - "screen_name": "Snapchat", - "id_str": "376502929", - "id": 376502929, - "indices": [ - 16, - 25 - ], - "name": "Snapchat" - } - ] - }, - "created_at": "Sat Jan 09 00:15:00 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685615325677658112, - "lang": "en" - }, - "default_profile_image": false, - "id": 5768872, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", - "statuses_count": 135762, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5768872/1423844975", - "is_translator": false - }, - { - "time_zone": "Casablanca", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "270431388", - "following": false, - "friends_count": 795, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "MarquisdeGeek.com", - "url": "https://t.co/rAxaxp0oUr", - "expanded_url": "http://www.MarquisdeGeek.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 581, - "location": "aka Steven Goodwin. London", - "screen_name": "MarquisdeGeek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 88, - "name": "Marquis de Geek", - "profile_use_background_image": true, - "description": "Maker, author, developer, educator, IoT dev, magician, musician, computer historian, sommelier, SGX creator, electronics guy, AFOL & geek. Works as edtech CTO", - "url": "https://t.co/rAxaxp0oUr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Tue Mar 22 16:17:37 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", - "favourites_count": 400, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685486479271919616", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 460, - "h": 960, - "resize": "fit" - }, - "medium": { - "w": 460, - "h": 960, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 325, - "h": 680, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", - "type": "photo", - "indices": [ - 24, - 47 - ], - "media_url": "http://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", - "display_url": "pic.twitter.com/Mo9VcBHIwC", - "id_str": "685485412517830656", - "expanded_url": "http://twitter.com/MarquisdeGeek/status/685486479271919616/photo/1", - "id": 685485412517830656, - "url": "https://t.co/Mo9VcBHIwC" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:41:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685486479271919616, - "text": "Crossing the streams... https://t.co/Mo9VcBHIwC", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 270431388, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3959, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/270431388/1406890949", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "148221086", - "following": false, - "friends_count": 617, - "entities": { - "description": { - "urls": [ - { - "display_url": "shop.oreilly.com/product/063692\u2026", - "url": "https://t.co/Zk7ejlHptN", - "expanded_url": "http://shop.oreilly.com/product/0636920042686.do", - "indices": [ - 135, - 158 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "GetYodlr.com", - "url": "https://t.co/hKMaAlWDdW", - "expanded_url": "https://GetYodlr.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 730, - "location": "SF Bay Area", - "screen_name": "rosskukulinski", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 128, - "name": "Ross Kukulinski", - "profile_use_background_image": true, - "description": "Founder @getyodlr. Entrepreneur & advisor. Work with #nodejs, #webrtc, #docker, #kubernetes, #coreos. Watch my Intro to CoreOS Course: https://t.co/Zk7ejlHptN", - "url": "https://t.co/hKMaAlWDdW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed May 26 04:22:53 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", - "favourites_count": 4397, - "status": { - "retweet_count": 17, - "retweeted_status": { - "retweet_count": 17, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685464980976566272", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nodejs.org/en/blog/commun\u2026", - "url": "https://t.co/oHkMziRUpk", - "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:16:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685464980976566272, - "text": "Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Sprout Social" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685466291180859392", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nodejs.org/en/blog/commun\u2026", - "url": "https://t.co/oHkMziRUpk", - "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nodejs", - "id_str": "91985735", - "id": 91985735, - "indices": [ - 3, - 10 - ], - "name": "Node.js" - } - ] - }, - "created_at": "Fri Jan 08 14:21:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685466291180859392, - "text": "RT @nodejs: Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 148221086, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8070, - "is_translator": false - }, - { - "time_zone": "Budapest", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "98630536", - "following": false, - "friends_count": 296, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eduardmoldovan.com", - "url": "http://t.co/4zJV0jnlaJ", - "expanded_url": "http://eduardmoldovan.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "0E0D02", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 336, - "location": "Budapest", - "screen_name": "edimoldovan", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 28, - "name": "Edu\u00e1rd", - "profile_use_background_image": true, - "description": "Views are my own", - "url": "http://t.co/4zJV0jnlaJ", - "profile_text_color": "39BD91", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Dec 22 13:09:46 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", - "favourites_count": 234, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685508856013795330", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wareable.com/fitness-tracke\u2026", - "url": "https://t.co/HDOdrQpuJU", - "expanded_url": "http://www.wareable.com/fitness-trackers/mastercard-and-coin-bringing-wearable-payments-to-fitness-trackers-including-moov-2147", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:10:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685508856013795330, - "text": "MasterCard bringing wearable payments to fitness trackers including Moov https://t.co/HDOdrQpuJU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "OS X" - }, - "default_profile_image": false, - "id": 98630536, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", - "statuses_count": 12782, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/98630536/1392472068", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14164724", - "following": false, - "friends_count": 1639, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sarahmei.com", - "url": "https://t.co/3q8gb3xaz4", - "expanded_url": "http://sarahmei.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 11828, - "location": "San Francisco, CA", - "screen_name": "sarahmei", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 762, - "name": "Sarah Mei", - "profile_use_background_image": true, - "description": "Software developer. Founder of @railsbridge. Director of Ruby Central. Chief Consultant of @devmyndsoftware. IM IN UR BASE TEACHIN U HOW TO REFACTOR UR CODE", - "url": "https://t.co/3q8gb3xaz4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Mon Mar 17 18:05:43 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", - "favourites_count": 1453, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685599933215424513", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/anildash/statu\u2026", - "url": "https://t.co/436K3Lfx5F", - "expanded_url": "https://twitter.com/anildash/status/685496167464042496", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:12:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -87.940033, - 41.644102 - ], - [ - -87.523993, - 41.644102 - ], - [ - -87.523993, - 42.0230669 - ], - [ - -87.940033, - 42.0230669 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Chicago, IL", - "id": "1d9a5370a355ab0c", - "name": "Chicago" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685599933215424513, - "text": "First time I have tapped the moments icon on purpose. https://t.co/436K3Lfx5F", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14164724, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 13073, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14164724/1423457101", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "25183606", - "following": false, - "friends_count": 746, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "charlotteis.co.uk", - "url": "https://t.co/j2AKIKz3ZY", - "expanded_url": "http://charlotteis.co.uk", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "44615D", - "geo_enabled": false, - "followers_count": 2004, - "location": "Bletchley, UK.", - "screen_name": "Charlotteis", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 116, - "name": "console.warn()", - "profile_use_background_image": false, - "description": "they/them. human ghost emoji writing code with @mandsdigital. open sourcer with @hoodiehq and creator of @yourfirstpr.", - "url": "https://t.co/j2AKIKz3ZY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 18 23:28:54 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", - "favourites_count": 8753, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "zaccolley", - "in_reply_to_user_id": 18365392, - "in_reply_to_status_id_str": "685630147626680324", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685630306834059264", - "id": 685630306834059264, - "text": "@zaccolley @orliesaurus ya", - "in_reply_to_user_id_str": "18365392", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "zaccolley", - "id_str": "18365392", - "id": 18365392, - "indices": [ - 0, - 10 - ], - "name": "zac" - }, - { - "screen_name": "orliesaurus", - "id_str": "55077784", - "id": 55077784, - "indices": [ - 11, - 23 - ], - "name": "orliesaurus" - } - ] - }, - "created_at": "Sat Jan 09 01:12:58 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685630147626680324, - "lang": "und" - }, - "default_profile_image": false, - "id": 25183606, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", - "statuses_count": 49657, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25183606/1420483218", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "253464752", - "following": false, - "friends_count": 492, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jessicard.com", - "url": "https://t.co/DwRzTkmHMB", - "expanded_url": "http://jessicard.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542881894/twitter.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "00B9E1", - "geo_enabled": true, - "followers_count": 5249, - "location": "than franthithco", - "screen_name": "jessicard", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 241, - "name": "jessicard", - "profile_use_background_image": false, - "description": "The jessicard physically strong, moves rapidly, momentum is powerful, is one of the most has the courage and strength of the software engineer in the world.", - "url": "https://t.co/DwRzTkmHMB", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", - "profile_background_color": "F6F6F6", - "created_at": "Thu Feb 17 09:04:56 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", - "favourites_count": 28153, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jlsuttles", - "in_reply_to_user_id": 21170138, - "in_reply_to_status_id_str": "685597105696579584", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685618782757322754", - "id": 685618782757322754, - "text": "@jlsuttles SO CUTE \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude4f\ud83c\udffb", - "in_reply_to_user_id_str": "21170138", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jlsuttles", - "id_str": "21170138", - "id": 21170138, - "indices": [ - 0, - 10 - ], - "name": "\u2728Jessica Suttles\u2728" - } - ] - }, - "created_at": "Sat Jan 09 00:27:10 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685597105696579584, - "lang": "en" - }, - "default_profile_image": false, - "id": 253464752, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542881894/twitter.png", - "statuses_count": 23084, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/253464752/1353017487", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "198661893", - "following": false, - "friends_count": 247, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eliseworthy.com", - "url": "http://t.co/Lfr9fIzPIs", - "expanded_url": "http://eliseworthy.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "41625C", - "geo_enabled": true, - "followers_count": 1862, - "location": "Seattle", - "screen_name": "eliseworthy", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 123, - "name": "Elise Worthy", - "profile_use_background_image": false, - "description": "software developer | founder of @brandworthy and @adaacademy", - "url": "http://t.co/Lfr9fIzPIs", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", - "profile_background_color": "946369", - "created_at": "Mon Oct 04 22:38:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", - "favourites_count": 689, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "666384799402098688", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "meetup.com/Seattle-PyLadi\u2026", - "url": "https://t.co/bg7tLVR1Tp", - "expanded_url": "http://www.meetup.com/Seattle-PyLadies/events/225729699/", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PyLadiesSEA", - "id_str": "885603211", - "id": 885603211, - "indices": [ - 38, - 50 - ], - "name": "Seattle PyLadies" - } - ] - }, - "created_at": "Mon Nov 16 22:38:11 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 666384799402098688, - "text": "What's better than a holiday party? A @PyLadiesSEA holiday party! This Wednesday! Go! https://t.co/bg7tLVR1Tp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 198661893, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", - "statuses_count": 3529, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/198661893/1377996487", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "13368452", - "following": false, - "friends_count": 1123, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ultrasaurus.com", - "url": "http://t.co/VV3FrrBWLv", - "expanded_url": "http://www.ultrasaurus.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 7943, - "location": "San Francisco, CA", - "screen_name": "ultrasaurus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 720, - "name": "Sarah Allen", - "profile_use_background_image": true, - "description": "I write code, connect pixels and speak truth to make change. @bridgefoundry @mightyverse @18F", - "url": "http://t.co/VV3FrrBWLv", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Mon Feb 11 23:40:05 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", - "favourites_count": 1229, - "status": { - "retweet_count": 9772, - "retweeted_status": { - "retweet_count": 9772, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685415626945507328", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 614, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 1024, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "type": "photo", - "indices": [ - 27, - 50 - ], - "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "display_url": "pic.twitter.com/4ZnTo0GI7T", - "id_str": "685415615138545664", - "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", - "id": 685415615138545664, - "url": "https://t.co/4ZnTo0GI7T" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 10:59:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685415626945507328, - "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1246, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685477649523712000", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 614, - "resize": "fit" - }, - "medium": { - "w": 567, - "h": 1024, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 567, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "685415626945507328", - "url": "https://t.co/4ZnTo0GI7T", - "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "source_user_id_str": "2782137901", - "id_str": "685415615138545664", - "id": 685415615138545664, - "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", - "type": "photo", - "indices": [ - 48, - 71 - ], - "source_status_id": 685415626945507328, - "source_user_id": 2782137901, - "display_url": "pic.twitter.com/4ZnTo0GI7T", - "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "neil_finnweevil", - "id_str": "2782137901", - "id": 2782137901, - "indices": [ - 3, - 19 - ], - "name": "kiki montparnasse" - } - ] - }, - "created_at": "Fri Jan 08 15:06:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685477649523712000, - "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 13368452, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 10335, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13368452/1396530463", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3300795096", - "following": false, - "friends_count": 296, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "current.sh", - "url": "http://t.co/43c4yK78zi", - "expanded_url": "http://current.sh", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "268BD2", - "geo_enabled": false, - "followers_count": 192, - "location": "", - "screen_name": "currentsh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "current.sh", - "profile_use_background_image": false, - "description": "the log management saas you've been looking for. built by @vektrasays.", - "url": "http://t.co/43c4yK78zi", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Jul 29 20:09:17 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", - "favourites_count": 8, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685167345329831936", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "producthunt.com/tech/current-3\u2026", - "url": "https://t.co/ccTe9IhAJB", - "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", - "indices": [ - 89, - 112 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "currentsh", - "id_str": "3300795096", - "id": 3300795096, - "indices": [ - 40, - 50 - ], - "name": "current.sh" - }, - { - "screen_name": "ProductHunt", - "id_str": "2208027565", - "id": 2208027565, - "indices": [ - 54, - 66 - ], - "name": "Product Hunt" - } - ] - }, - "created_at": "Thu Jan 07 18:33:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0775fcd6eb188d7c.json", - "country": "United States", - "attributes": {}, - "place_type": "neighborhood", - "bounding_box": { - "coordinates": [ - [ - [ - -118.3613876, - 34.043829 - ], - [ - -118.309037, - 34.043829 - ], - [ - -118.309037, - 34.083516 - ], - [ - -118.3613876, - 34.083516 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Mid-Wilshire, Los Angeles", - "id": "0775fcd6eb188d7c", - "name": "Mid-Wilshire" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685167345329831936, - "text": "I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685171895952490498", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "producthunt.com/tech/current-3\u2026", - "url": "https://t.co/ccTe9IhAJB", - "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "evanphx", - "id_str": "5444392", - "id": 5444392, - "indices": [ - 3, - 11 - ], - "name": "Evan Phoenix" - }, - { - "screen_name": "currentsh", - "id_str": "3300795096", - "id": 3300795096, - "indices": [ - 53, - 63 - ], - "name": "current.sh" - }, - { - "screen_name": "ProductHunt", - "id_str": "2208027565", - "id": 2208027565, - "indices": [ - 67, - 79 - ], - "name": "Product Hunt" - } - ] - }, - "created_at": "Thu Jan 07 18:51:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685171895952490498, - "text": "RT @evanphx: I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3300795096, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 36, - "is_translator": false - }, - { - "time_zone": "Tijuana", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "21170138", - "following": false, - "friends_count": 403, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "current.sh", - "url": "https://t.co/43c4yJPxHK", - "expanded_url": "http://current.sh", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 2050, - "location": "San Francisco, CA", - "screen_name": "jlsuttles", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 107, - "name": "\u2728Jessica Suttles\u2728", - "profile_use_background_image": true, - "description": "Co-Founder & CTO @currentsh", - "url": "https://t.co/43c4yJPxHK", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Feb 18 04:49:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", - "favourites_count": 4798, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "raihanaaaa", - "in_reply_to_user_id": 23154665, - "in_reply_to_status_id_str": "685608984401850368", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685621709433516032", - "id": 685621709433516032, - "text": "@raihanaaaa yes pls!", - "in_reply_to_user_id_str": "23154665", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "raihanaaaa", - "id_str": "23154665", - "id": 23154665, - "indices": [ - 0, - 11 - ], - "name": "Rae." - } - ] - }, - "created_at": "Sat Jan 09 00:38:48 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685608984401850368, - "lang": "en" - }, - "default_profile_image": false, - "id": 21170138, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 10077, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21170138/1448066737", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15714950", - "following": false, - "friends_count": 35, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 179, - "location": "", - "screen_name": "ruoho", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Clint Ruoho", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", - "profile_background_color": "022330", - "created_at": "Sun Aug 03 22:20:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", - "favourites_count": 18, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682197364367425537", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wtfismyip.com", - "url": "https://t.co/QfqlilFduQ", - "expanded_url": "https://wtfismyip.com/", - "indices": [ - 13, - 36 - ] - } - ], - "hashtags": [ - { - "indices": [ - 111, - 122 - ], - "text": "FreeBasics" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 13:51:40 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682197364367425537, - "text": "Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682229939072937984", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wtfismyip.com", - "url": "https://t.co/QfqlilFduQ", - "expanded_url": "https://wtfismyip.com/", - "indices": [ - 28, - 51 - ] - } - ], - "hashtags": [ - { - "indices": [ - 126, - 137 - ], - "text": "FreeBasics" - } - ], - "user_mentions": [ - { - "screen_name": "wtfismyip", - "id_str": "359037938", - "id": 359037938, - "indices": [ - 3, - 13 - ], - "name": "WTF IS MY IP!?!?!?" - } - ] - }, - "created_at": "Wed Dec 30 16:01:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682229939072937984, - "text": "RT @wtfismyip: Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 15714950, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 17, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "755178", - "following": false, - "friends_count": 1779, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bob.ippoli.to", - "url": "http://t.co/8Z9JtvGN55", - "expanded_url": "http://bob.ippoli.to/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 5239, - "location": "San Francisco, CA", - "screen_name": "etrepum", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 315, - "name": "Bob Ippolito", - "profile_use_background_image": true, - "description": "@playfig cofounder/CTO. @missionbit board member & lead instructor. Former founder/CTO of Mochi Media. Open source python/js/erlang/haskell/obj-c/ruby developer", - "url": "http://t.co/8Z9JtvGN55", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Tue Feb 06 09:23:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", - "favourites_count": 5820, - "status": { - "retweet_count": 12, - "retweeted_status": { - "retweet_count": 12, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "617059621379780608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tools.ietf.org/html/draft-tho\u2026", - "url": "https://t.co/XCpUoEM89o", - "expanded_url": "https://tools.ietf.org/html/draft-thomson-postel-was-wrong-00", - "indices": [ - 18, - 41 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jul 03 19:57:32 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 617059621379780608, - "text": "Postel was wrong. https://t.co/XCpUoEM89o", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685619587912605697", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tools.ietf.org/html/draft-tho\u2026", - "url": "https://t.co/XCpUoEM89o", - "expanded_url": "https://tools.ietf.org/html/draft-thomson-postel-was-wrong-00", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dreid", - "id_str": "756241", - "id": 756241, - "indices": [ - 3, - 9 - ], - "name": "dreid" - } - ] - }, - "created_at": "Sat Jan 09 00:30:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685619587912605697, - "text": "RT @dreid: Postel was wrong. https://t.co/XCpUoEM89o", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 755178, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 11507, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/755178/1353725023", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "19315174", - "following": false, - "friends_count": 123, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", - "notifications": false, - "profile_sidebar_fill_color": "96C6ED", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 798508, - "location": "Redmond, WA", - "screen_name": "MicrosoftEdge", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5871, - "name": "Microsoft Edge", - "profile_use_background_image": false, - "description": "The official Twitter handle for Microsoft Edge, the new browser from Microsoft.", - "url": null, - "profile_text_color": "453C3C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", - "profile_background_color": "3B94D9", - "created_at": "Wed Jan 21 23:42:14 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", - "favourites_count": 23, - "status": { - "retweet_count": 5, - "retweeted_status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685504215343443968", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "display_url": "pic.twitter.com/v6YqGwUtih", - "id_str": "685503595572101120", - "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", - "id": 685503595572101120, - "url": "https://t.co/v6YqGwUtih" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "aka.ms/Xwzpnt", - "url": "https://t.co/g4IP0j7aDz", - "expanded_url": "http://aka.ms/Xwzpnt", - "indices": [ - 81, - 104 - ] - } - ], - "hashtags": [ - { - "indices": [ - 56, - 64 - ], - "text": "Winning" - }, - { - "indices": [ - 66, - 80 - ], - "text": "MicrosoftEdge" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:51:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685504215343443968, - "text": "The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6YqGwUtih", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 11, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685576467468677120", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "source_status_id_str": "685504215343443968", - "url": "https://t.co/v6YqGwUtih", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "source_user_id_str": "164457546", - "id_str": "685503595572101120", - "id": 685503595572101120, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", - "type": "photo", - "indices": [ - 124, - 140 - ], - "source_status_id": 685504215343443968, - "source_user_id": 164457546, - "display_url": "pic.twitter.com/v6YqGwUtih", - "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "aka.ms/Xwzpnt", - "url": "https://t.co/g4IP0j7aDz", - "expanded_url": "http://aka.ms/Xwzpnt", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [ - { - "indices": [ - 75, - 83 - ], - "text": "Winning" - }, - { - "indices": [ - 85, - 99 - ], - "text": "MicrosoftEdge" - } - ], - "user_mentions": [ - { - "screen_name": "WindowsCanada", - "id_str": "164457546", - "id": 164457546, - "indices": [ - 3, - 17 - ], - "name": "Windows Canada" - } - ] - }, - "created_at": "Fri Jan 08 21:39:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685576467468677120, - "text": "RT @WindowsCanada: The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Sprinklr" - }, - "default_profile_image": false, - "id": 19315174, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", - "statuses_count": 1205, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19315174/1438621793", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "77343214", - "following": false, - "friends_count": 1042, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "danabauer.github.io", - "url": "http://t.co/qTVR3d3mlq", - "expanded_url": "http://danabauer.github.io/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "424F98", - "geo_enabled": true, - "followers_count": 2467, - "location": "Philly (mostly)", - "screen_name": "agentdana", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 203, - "name": "Dana Bauer", - "profile_use_background_image": false, - "description": "Geographer, Pythonista, open data enthusiast, mom to a future astronaut. I work at Planet Labs.", - "url": "http://t.co/qTVR3d3mlq", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Sep 25 23:48:03 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", - "favourites_count": 12277, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "taramurtha", - "in_reply_to_user_id": 24011702, - "in_reply_to_status_id_str": "685597724864081922", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685598350121529344", - "id": 685598350121529344, - "text": "@taramurtha gaaaahhhhhh", - "in_reply_to_user_id_str": "24011702", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "taramurtha", - "id_str": "24011702", - "id": 24011702, - "indices": [ - 0, - 11 - ], - "name": "Tara Murtha" - } - ] - }, - "created_at": "Fri Jan 08 23:05:59 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685597724864081922, - "lang": "und" - }, - "default_profile_image": false, - "id": 77343214, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4395, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/77343214/1444143700", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1141081634", - "following": false, - "friends_count": 90, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dev.modern.ie", - "url": "http://t.co/r0F7MBTxRE", - "expanded_url": "http://dev.modern.ie/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0078D7", - "geo_enabled": true, - "followers_count": 57822, - "location": "Redmond, WA", - "screen_name": "MSEdgeDev", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 741, - "name": "Microsoft Edge Dev", - "profile_use_background_image": true, - "description": "Official news and updates from the Microsoft Web Platform team on #MicrosoftEdge and #InternetExplorer", - "url": "http://t.co/r0F7MBTxRE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", - "profile_background_color": "282828", - "created_at": "Sat Feb 02 00:26:21 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", - "favourites_count": 146, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685516791003533312", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "channel9.msdn.com/Blogs/One-Dev-\u2026", - "url": "https://t.co/tL4lVK9BLo", - "expanded_url": "https://channel9.msdn.com/Blogs/One-Dev-Minute/Building-Websites-and-UWP-Apps-with-a-Yeoman-Generator", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:41:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685516791003533312, - "text": "One Dev Minute: Building websites and UWP apps with a Yeoman generator https://t.co/tL4lVK9BLo", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 1141081634, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", - "statuses_count": 1681, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1141081634/1430352524", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13348", - "following": false, - "friends_count": 53207, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/RobertScoble", - "url": "https://t.co/TZTxRbMttp", - "expanded_url": "https://facebook.com/RobertScoble", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 484968, - "location": "Half Moon Bay, California, USA", - "screen_name": "Scobleizer", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 25250, - "name": "Robert Scoble", - "profile_use_background_image": true, - "description": "@Rackspace's Futurist searches the world looking for what's happening on the bleeding edge of technology and brings that learning to the Internet.", - "url": "https://t.co/TZTxRbMttp", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Nov 20 23:43:44 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", - "favourites_count": 62360, - "status": { - "retweet_count": 6, - "retweeted_status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685589440765407232", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "display_url": "pic.twitter.com/sMEhdHTceR", - "id_str": "685589432909467648", - "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", - "id": 685589432909467648, - "url": "https://t.co/sMEhdHTceR" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1K3q0PT", - "url": "https://t.co/sXih7Q0R2J", - "expanded_url": "http://bit.ly/1K3q0PT", - "indices": [ - 55, - 78 - ] - } - ], - "hashtags": [ - { - "indices": [ - 50, - 54 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "richardbranson", - "id_str": "8161232", - "id": 8161232, - "indices": [ - 94, - 109 - ], - "name": "Richard Branson" - } - ] - }, - "created_at": "Fri Jan 08 22:30:34 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685589440765407232, - "text": "Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/sMEhdHTceR", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 11, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685593198958264320", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "685589440765407232", - "url": "https://t.co/sMEhdHTceR", - "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "source_user_id_str": "6853442", - "id_str": "685589432909467648", - "id": 685589432909467648, - "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", - "type": "photo", - "indices": [ - 126, - 140 - ], - "source_status_id": 685589440765407232, - "source_user_id": 6853442, - "display_url": "pic.twitter.com/sMEhdHTceR", - "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1K3q0PT", - "url": "https://t.co/sXih7Q0R2J", - "expanded_url": "http://bit.ly/1K3q0PT", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [ - { - "indices": [ - 66, - 70 - ], - "text": "CES" - } - ], - "user_mentions": [ - { - "screen_name": "willobrien", - "id_str": "6853442", - "id": 6853442, - "indices": [ - 3, - 14 - ], - "name": "Will O'Brien" - }, - { - "screen_name": "richardbranson", - "id_str": "8161232", - "id": 8161232, - "indices": [ - 110, - 125 - ], - "name": "Richard Branson" - } - ] - }, - "created_at": "Fri Jan 08 22:45:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593198958264320, - "text": "RT @willobrien: Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 13348, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", - "statuses_count": 67747, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13348/1450153194", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "84699828", - "following": false, - "friends_count": 2258, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 6995, - "location": "", - "screen_name": "barb_oconnor", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 65, - "name": "Barbara O'Connor", - "profile_use_background_image": true, - "description": "Girl next door mash-up :) Technology lover and biz dev aficionado. #Runner,#SUP boarder,#cyclist,#mother, dog lover, & US#Marine. Tweets=mine", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri Oct 23 21:58:22 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", - "favourites_count": 67, - "status": { - "retweet_count": 183, - "retweeted_status": { - "retweet_count": 183, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685501440639516673", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "cainc.to/yArk3o", - "url": "https://t.co/DG3FPs9ryJ", - "expanded_url": "http://cainc.to/yArk3o", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "OttoBerkes", - "id_str": "192448160", - "id": 192448160, - "indices": [ - 30, - 41 - ], - "name": "Otto Berkes" - }, - { - "screen_name": "TheEbizWizard", - "id_str": "16290014", - "id": 16290014, - "indices": [ - 70, - 84 - ], - "name": "Jason Bloomberg" - }, - { - "screen_name": "ForbesTech", - "id_str": "14885549", - "id": 14885549, - "indices": [ - 88, - 99 - ], - "name": "Forbes Tech News" - } - ] - }, - "created_at": "Fri Jan 08 16:40:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685501440639516673, - "text": "From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "SocialFlow" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685541320170029056", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "cainc.to/yArk3o", - "url": "https://t.co/DG3FPs9ryJ", - "expanded_url": "http://cainc.to/yArk3o", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CAinc", - "id_str": "14790085", - "id": 14790085, - "indices": [ - 3, - 9 - ], - "name": "CA Technologies" - }, - { - "screen_name": "OttoBerkes", - "id_str": "192448160", - "id": 192448160, - "indices": [ - 41, - 52 - ], - "name": "Otto Berkes" - }, - { - "screen_name": "TheEbizWizard", - "id_str": "16290014", - "id": 16290014, - "indices": [ - 81, - 95 - ], - "name": "Jason Bloomberg" - }, - { - "screen_name": "ForbesTech", - "id_str": "14885549", - "id": 14885549, - "indices": [ - 99, - 110 - ], - "name": "Forbes Tech News" - } - ] - }, - "created_at": "Fri Jan 08 19:19:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685541320170029056, - "text": "RT @CAinc: From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "GaggleAMP" - }, - "default_profile_image": false, - "id": 84699828, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1939, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/84699828/1440076545", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "539153822", - "following": false, - "friends_count": 8, - "entities": { - "description": { - "urls": [ - { - "display_url": "github.com/contact", - "url": "https://t.co/O4Rsiuqv", - "expanded_url": "https://github.com/contact", - "indices": [ - 54, - 75 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "developer.github.com", - "url": "http://t.co/WSCoZacuEW", - "expanded_url": "http://developer.github.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 8329, - "location": "SF", - "screen_name": "GitHubAPI", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 246, - "name": "GitHub API", - "profile_use_background_image": true, - "description": "GitHub API announcements. Send feedback/questions to https://t.co/O4Rsiuqv", - "url": "http://t.co/WSCoZacuEW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 28 15:52:25 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", - "favourites_count": 9, - "status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684448831757500416", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "developer.github.com/changes/2016-0\u2026", - "url": "https://t.co/kZjASxXV1N", - "expanded_url": "https://developer.github.com/changes/2016-01-05-api-enhancements-for-working-with-organization-permissions-are-now-official/", - "indices": [ - 76, - 99 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 18:58:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684448831757500416, - "text": "API enhancements for working with organization permissions are now official https://t.co/kZjASxXV1N", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 19, - "contributors": null, - "source": "Hubot @GitHubAPI Integration" - }, - "default_profile_image": false, - "id": 539153822, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 431, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "309528017", - "following": false, - "friends_count": 91, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "npmjs.org", - "url": "http://t.co/Yr2xkfPzXd", - "expanded_url": "http://npmjs.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "CB3837", - "geo_enabled": false, - "followers_count": 56431, - "location": "oakland, ca", - "screen_name": "npmjs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1130, - "name": "npmbot", - "profile_use_background_image": false, - "description": "i'm the package manager for javascript. problems? try @npm_support and #npm on freenode.", - "url": "http://t.co/Yr2xkfPzXd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu Jun 02 07:20:53 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", - "favourites_count": 195, - "status": { - "retweet_count": 17, - "retweeted_status": { - "retweet_count": 17, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685257850961014784", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/npm/npm/releas\u2026", - "url": "https://t.co/BL0ttn3fLO", - "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", - "indices": [ - 121, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "npmjs", - "id_str": "309528017", - "id": 309528017, - "indices": [ - 4, - 10 - ], - "name": "npmbot" - } - ] - }, - "created_at": "Fri Jan 08 00:32:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685257850961014784, - "text": "New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https://t.co/BL0ttn3fLO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685258201831309312", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/npm/npm/releas\u2026", - "url": "https://t.co/BL0ttn3fLO", - "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", - "indices": [ - 143, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ReBeccaOrg", - "id_str": "579491588", - "id": 579491588, - "indices": [ - 3, - 14 - ], - "name": "Rebecca v7.3.2" - }, - { - "screen_name": "npmjs", - "id_str": "309528017", - "id": 309528017, - "indices": [ - 20, - 26 - ], - "name": "npmbot" - } - ] - }, - "created_at": "Fri Jan 08 00:34:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685258201831309312, - "text": "RT @ReBeccaOrg: New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 309528017, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", - "statuses_count": 2512, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "785764172", - "following": false, - "friends_count": 3, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "status.github.com", - "url": "http://t.co/efPUg9pga5", - "expanded_url": "http://status.github.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 29276, - "location": "", - "screen_name": "githubstatus", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 669, - "name": "GitHub Status", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/efPUg9pga5", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Aug 28 00:04:59 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", - "favourites_count": 3, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685287597560696833", - "id": 685287597560696833, - "text": "Everything operating normally.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 02:31:09 +0000 2016", - "source": "OctoStatus Production", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 785764172, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 929, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "82874321", - "following": false, - "friends_count": 1136, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.amber.org", - "url": "https://t.co/hvvj9vghmG", - "expanded_url": "http://blog.amber.org", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 839, - "location": "Seattle, WA", - "screen_name": "petrillic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 121, - "name": "Security Therapist", - "profile_use_background_image": true, - "description": "Social Justice _________. Nerd. Tinkerer. General trouble maker. Always learning more useless things. Homo sum humani a me nihil alienum puto.", - "url": "https://t.co/hvvj9vghmG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Fri Oct 16 13:11:25 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", - "favourites_count": 3415, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "secvalve", - "in_reply_to_user_id": 155858106, - "in_reply_to_status_id_str": "685624995892965376", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685625086447988736", - "id": 685625086447988736, - "text": "@secvalve yeah, mine's 16GB, but the desktop has 64GB, so\u2026", - "in_reply_to_user_id_str": "155858106", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "secvalve", - "id_str": "155858106", - "id": 155858106, - "indices": [ - 0, - 9 - ], - "name": "Kate Pearce" - } - ] - }, - "created_at": "Sat Jan 09 00:52:13 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685624995892965376, - "lang": "en" - }, - "default_profile_image": false, - "id": 82874321, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 52187, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/82874321/1418621071", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "6297412", - "following": false, - "friends_count": 820, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "redmonk.com", - "url": "http://t.co/U63YEc1eN4", - "expanded_url": "http://redmonk.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 1019, - "location": "London", - "screen_name": "fintanr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 118, - "name": "Fintan Ryan", - "profile_use_background_image": true, - "description": "Industry analyst @redmonk. Business, technology, communities, data, platforms and occasional interjections.", - "url": "http://t.co/U63YEc1eN4", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Thu May 24 21:58:29 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", - "favourites_count": 1036, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685422437757005824", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mamamia.com.au/rules-for-visi\u2026", - "url": "https://t.co/3yc87RdloV", - "expanded_url": "http://www.mamamia.com.au/rules-for-visiting-a-newborn/", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "sogrady", - "id_str": "143883", - "id": 143883, - "indices": [ - 83, - 91 - ], - "name": "steve o'grady" - }, - { - "screen_name": "girltuesday", - "id_str": "16833482", - "id": 16833482, - "indices": [ - 96, - 108 - ], - "name": "mko'g" - } - ] - }, - "created_at": "Fri Jan 08 11:26:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685422437757005824, - "text": "Two and a bit weeks in, and this reads so well.. https://t.co/3yc87RdloV, thinking @sogrady and @girltuesday may enjoy reading this too :).", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 6297412, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 4240, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6297412/1393521949", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "29170474", - "following": false, - "friends_count": 227, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sirupsen.com", - "url": "http://t.co/lGprTMnO09", - "expanded_url": "http://sirupsen.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "F7F7F7", - "profile_link_color": "0066AA", - "geo_enabled": true, - "followers_count": 3305, - "location": "Ottawa, Canada", - "screen_name": "Sirupsen", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 133, - "name": "Simon Eskildsen", - "profile_use_background_image": false, - "description": "WebScale @Shopify. Canadian in training.", - "url": "http://t.co/lGprTMnO09", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Apr 06 09:15:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EFEFEF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", - "favourites_count": 1073, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json", - "country": "Canada", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -76.353876, - 44.961937 - ], - [ - -75.246407, - 44.961937 - ], - [ - -75.246407, - 45.534511 - ], - [ - -76.353876, - 45.534511 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "CA", - "contained_within": [], - "full_name": "Ottawa, Ontario", - "id": "38d5974e82ed1a6c", - "name": "Ottawa" - }, - "in_reply_to_screen_name": "jnunemaker", - "in_reply_to_user_id": 4243, - "in_reply_to_status_id_str": "685581732322668544", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685594548618182656", - "id": 685594548618182656, - "text": "@jnunemaker Circuit breakers <3 Curious why you ended up building your own over using Semian's?", - "in_reply_to_user_id_str": "4243", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jnunemaker", - "id_str": "4243", - "id": 4243, - "indices": [ - 0, - 11 - ], - "name": "John Nunemaker" - } - ] - }, - "created_at": "Fri Jan 08 22:50:52 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685581732322668544, - "lang": "en" - }, - "default_profile_image": false, - "id": 29170474, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 10223, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29170474/1379296952", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15911738", - "following": false, - "friends_count": 1688, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ryandlane.com", - "url": "http://t.co/eD11mzD1mC", - "expanded_url": "http://ryandlane.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1553, - "location": "San Francisco, CA", - "screen_name": "SquidDLane", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 108, - "name": "Ryan Lane", - "profile_use_background_image": true, - "description": "DevOps Engineer at Lyft, Site Operations volunteer at Wikimedia Foundation and SaltStack volunteer Developer.", - "url": "http://t.co/eD11mzD1mC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Aug 20 00:39:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", - "favourites_count": 26, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "SquidDLane", - "in_reply_to_user_id": 15911738, - "in_reply_to_status_id_str": "685203908256370688", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685204036606234624", - "id": 685204036606234624, - "text": "@tmclaughbos time to make a boto3_asg execution module ;)", - "in_reply_to_user_id_str": "15911738", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tmclaughbos", - "id_str": "740920470", - "id": 740920470, - "indices": [ - 0, - 12 - ], - "name": "Tom McLaughlin" - } - ] - }, - "created_at": "Thu Jan 07 20:59:07 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685203908256370688, - "lang": "en" - }, - "default_profile_image": false, - "id": 15911738, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4934, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1442355080", - "following": false, - "friends_count": 556, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 604, - "location": "Pittsburgh, PA", - "screen_name": "emdantrim", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 19, - "name": "hOI!!!! i'm emmie!!!", - "profile_use_background_image": true, - "description": "I type special words that computers sometimes find meaning in. my words are mine. she. @travisci", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Sun May 19 22:47:02 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", - "favourites_count": 7316, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "wilkieii", - "in_reply_to_user_id": 17047955, - "in_reply_to_status_id_str": "685613356603031552", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613747482800129", - "id": 685613747482800129, - "text": "@wilkieii if you build an application that does this for you, twitter will send you a cease and desist and then implement the feature", - "in_reply_to_user_id_str": "17047955", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wilkieii", - "id_str": "17047955", - "id": 17047955, - "indices": [ - 0, - 9 - ], - "name": "wilkie" - } - ] - }, - "created_at": "Sat Jan 09 00:07:10 +0000 2016", - "source": "TweetDeck", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685613356603031552, - "lang": "en" - }, - "default_profile_image": false, - "id": 1442355080, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 6202, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1442355080/1450668537", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "11764", - "following": false, - "friends_count": 61, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cdevroe.com", - "url": "http://t.co/1iJmxH8GUB", - "expanded_url": "http://cdevroe.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", - "notifications": false, - "profile_sidebar_fill_color": "999999", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 3740, - "location": "Jermyn, PA USA", - "screen_name": "cdevroe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 179, - "name": "Colin Devroe", - "profile_use_background_image": false, - "description": "Pronounced: See-Dev-Roo. Co-founder of @plainmade & @coalwork. JW. Kayaker.", - "url": "http://t.co/1iJmxH8GUB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Nov 08 03:01:15 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", - "favourites_count": 10667, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679337835888058368", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "plainmade.com/blog/14578/lin\u2026", - "url": "https://t.co/XgBYYftnu4", - "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", - "indices": [ - 23, - 46 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "deathtostock", - "id_str": "1727323538", - "id": 1727323538, - "indices": [ - 51, - 64 - ], - "name": "Death To Stock" - }, - { - "screen_name": "jaredsinclair", - "id_str": "15004156", - "id": 15004156, - "indices": [ - 66, - 80 - ], - "name": "Jared Sinclair" - }, - { - "screen_name": "RyanClarkDH", - "id_str": "596003901", - "id": 596003901, - "indices": [ - 83, - 95 - ], - "name": "Ryan Clark" - }, - { - "screen_name": "miguelrios", - "id_str": "14717846", - "id": 14717846, - "indices": [ - 97, - 108 - ], - "name": "Miguel Rios" - }, - { - "screen_name": "aimeeshiree", - "id_str": "14347487", - "id": 14347487, - "indices": [ - 110, - 122 - ], - "name": "aimeeshiree" - }, - { - "screen_name": "nathanaeljm", - "id_str": "97536835", - "id": 97536835, - "indices": [ - 124, - 136 - ], - "name": "Nathanael J Mehrens" - } - ] - }, - "created_at": "Tue Dec 22 16:28:56 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679337835888058368, - "text": "Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, @nathanaeljm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679340399832522752", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "plainmade.com/blog/14578/lin\u2026", - "url": "https://t.co/XgBYYftnu4", - "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", - "indices": [ - 38, - 61 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "plainmade", - "id_str": "977048040", - "id": 977048040, - "indices": [ - 3, - 13 - ], - "name": "Plain" - }, - { - "screen_name": "deathtostock", - "id_str": "1727323538", - "id": 1727323538, - "indices": [ - 66, - 79 - ], - "name": "Death To Stock" - }, - { - "screen_name": "jaredsinclair", - "id_str": "15004156", - "id": 15004156, - "indices": [ - 81, - 95 - ], - "name": "Jared Sinclair" - }, - { - "screen_name": "RyanClarkDH", - "id_str": "596003901", - "id": 596003901, - "indices": [ - 98, - 110 - ], - "name": "Ryan Clark" - }, - { - "screen_name": "miguelrios", - "id_str": "14717846", - "id": 14717846, - "indices": [ - 112, - 123 - ], - "name": "Miguel Rios" - }, - { - "screen_name": "aimeeshiree", - "id_str": "14347487", - "id": 14347487, - "indices": [ - 125, - 137 - ], - "name": "aimeeshiree" - }, - { - "screen_name": "nathanaeljm", - "id_str": "97536835", - "id": 97536835, - "indices": [ - 139, - 140 - ], - "name": "Nathanael J Mehrens" - } - ] - }, - "created_at": "Tue Dec 22 16:39:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679340399832522752, - "text": "RT @plainmade: Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 11764, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", - "statuses_count": 42666, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11764/1444176827", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "13332442", - "following": false, - "friends_count": 337, - "entities": { - "description": { - "urls": [ - { - "display_url": "flickr.com/photos/mikepan\u2026", - "url": "https://t.co/gIfppzqMQO", - "expanded_url": "http://www.flickr.com/photos/mikepanchenko/11139648213/", - "indices": [ - 117, - 140 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mihasya.com", - "url": "http://t.co/8ZVGv5uCcl", - "expanded_url": "http://mihasya.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 842, - "location": "The steak by the m'lake", - "screen_name": "mihasya", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 52, - "name": "Pancakes", - "profile_use_background_image": true, - "description": "making a career of naming projects after foods @newrelic. Formerly @opsmatic @urbanairship @simplegeo @flickr @yahoo https://t.co/gIfppzqMQO", - "url": "http://t.co/8ZVGv5uCcl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Feb 11 03:13:51 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", - "favourites_count": 916, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "polotek", - "in_reply_to_user_id": 20079975, - "in_reply_to_status_id_str": "684832544966103040", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685606078638243841", - "id": 685606078638243841, - "text": "@polotek I cannot convey in text the size of the CONGRATS I'd like to send your way. Also that birth story was intense y'all are both champs", - "in_reply_to_user_id_str": "20079975", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "polotek", - "id_str": "20079975", - "id": 20079975, - "indices": [ - 0, - 8 - ], - "name": "Marco Rogers" - } - ] - }, - "created_at": "Fri Jan 08 23:36:41 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684832544966103040, - "lang": "en" - }, - "default_profile_image": false, - "id": 13332442, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", - "statuses_count": 9830, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13332442/1437710921", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "212199251", - "following": false, - "friends_count": 155, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "orkjern.com", - "url": "https://t.co/cJoUSHfCc3", - "expanded_url": "https://orkjern.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 170, - "location": "Norway", - "screen_name": "orkj", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "eiriksm", - "profile_use_background_image": false, - "description": "All about Drupal, JS and good beer.", - "url": "https://t.co/cJoUSHfCc3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", - "profile_background_color": "A1A1A1", - "created_at": "Fri Nov 05 12:15:41 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", - "favourites_count": 207, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 2154622149, - "possibly_sensitive": false, - "id_str": "685442655992451072", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 673, - "h": 221, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 111, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 197, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", - "type": "photo", - "indices": [ - 77, - 100 - ], - "media_url": "http://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", - "display_url": "pic.twitter.com/403urs6oC3", - "id_str": "685442654981746688", - "expanded_url": "http://twitter.com/orkj/status/685442655992451072/photo/1", - "id": 685442654981746688, - "url": "https://t.co/403urs6oC3" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "torbmorland", - "id_str": "2154622149", - "id": 2154622149, - "indices": [ - 0, - 12 - ], - "name": "Torbj\u00f8rn Morland" - }, - { - "screen_name": "github", - "id_str": "13334762", - "id": 13334762, - "indices": [ - 13, - 20 - ], - "name": "GitHub" - } - ] - }, - "created_at": "Fri Jan 08 12:47:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "2154622149", - "place": null, - "in_reply_to_screen_name": "torbmorland", - "in_reply_to_status_id_str": "685416670555443200", - "truncated": false, - "id": 685442655992451072, - "text": "@torbmorland @github While you are at it, please create this project as well https://t.co/403urs6oC3", - "coordinates": null, - "in_reply_to_status_id": 685416670555443200, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 212199251, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 318, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24659495", - "following": false, - "friends_count": 380, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/bcoe", - "url": "https://t.co/oVbQkCBHsB", - "expanded_url": "https://github.com/bcoe", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1331, - "location": "San Francisco", - "screen_name": "BenjaminCoe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 93, - "name": "Benjamin Coe", - "profile_use_background_image": true, - "description": "I'm a street walking cheetah with a heart full of napalm. Co-founded @attachmentsme, currently hacks up a storm @npmjs. Aspiring human.", - "url": "https://t.co/oVbQkCBHsB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Mar 16 06:23:28 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", - "favourites_count": 2517, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685252262696861697", - "id": 685252262696861697, - "text": "I've been watching greenkeeper.io get a ton of traction across many of the projects I contribute to, wonderful idea @boennemann \\o/", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "boennemann", - "id_str": "37506335", - "id": 37506335, - "indices": [ - 116, - 127 - ], - "name": "Stephan B\u00f6nnemann" - } - ] - }, - "created_at": "Fri Jan 08 00:10:45 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 13, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 24659495, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", - "statuses_count": 3524, - "is_translator": false - }, - { - "time_zone": "Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "18210275", - "following": false, - "friends_count": 235, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "HelloJustine.com", - "url": "http://t.co/9NRKpNO5Cj", - "expanded_url": "http://HelloJustine.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", - "notifications": false, - "profile_sidebar_fill_color": "E8E6DF", - "profile_link_color": "2EC29D", - "geo_enabled": true, - "followers_count": 2243, - "location": "Where the Wild Things Are", - "screen_name": "SaltineJustine", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 122, - "name": "Justine Arreche", - "profile_use_background_image": true, - "description": "I never met a deep fryer I didn't like \u2014 Lead Clipart Strategist at @travisci.", - "url": "http://t.co/9NRKpNO5Cj", - "profile_text_color": "404040", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", - "profile_background_color": "242424", - "created_at": "Thu Dec 18 06:09:40 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", - "favourites_count": 18042, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685601535380832256", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtube.com/watch?v=3uT4RV\u2026", - "url": "https://t.co/shfgUir3HQ", - "expanded_url": "https://www.youtube.com/watch?v=3uT4RV2Dfjs", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "lstoll", - "id_str": "59282163", - "id": 59282163, - "indices": [ - 46, - 53 - ], - "name": "Kernel Sanders" - } - ] - }, - "created_at": "Fri Jan 08 23:18:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -81.877771, - 41.392684 - ], - [ - -81.5331634, - 41.392684 - ], - [ - -81.5331634, - 41.599195 - ], - [ - -81.877771, - 41.599195 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Cleveland, OH", - "id": "0eb9676d24b211f1", - "name": "Cleveland" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685601535380832256, - "text": "Friday evening beats brought to you by me and @lstoll \u2014 https://t.co/shfgUir3HQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18210275, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", - "statuses_count": 23373, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18210275/1437218808", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "11848", - "following": false, - "friends_count": 2306, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/thisisdeb", - "url": "http://t.co/JKlV7BRnzd", - "expanded_url": "http://about.me/thisisdeb", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 9039, - "location": "SF & NYC", - "screen_name": "debs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 734, - "name": "debs", - "profile_use_background_image": false, - "description": "Living at intersection of people, tech, design & horses | Technology changes, humans don't |\r\nCo-founder @yxyy @tummelvision @ILEquestrian", - "url": "http://t.co/JKlV7BRnzd", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Nov 08 17:47:14 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", - "favourites_count": 1096, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685226261308784644", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "fb.me/76u9wdYOo", - "url": "https://t.co/FXGpjqARuU", - "expanded_url": "http://fb.me/76u9wdYOo", - "indices": [ - 104, - 127 - ] - } - ], - "hashtags": [ - { - "indices": [ - 134, - 139 - ], - "text": "yxyy" - } - ], - "user_mentions": [ - { - "screen_name": "jboitnott", - "id_str": "14486811", - "id": 14486811, - "indices": [ - 34, - 44 - ], - "name": "John Boitnott" - }, - { - "screen_name": "YxYY", - "id_str": "1232029844", - "id": 1232029844, - "indices": [ - 128, - 133 - ], - "name": "Yes and Yes Yes" - } - ] - }, - "created_at": "Thu Jan 07 22:27:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685226261308784644, - "text": "Thanks for the shout out John! RT @jboitnott: Why Many Tech Execs Are Skipping the Consumer Electronics https://t.co/FXGpjqARuU @yxyy #yxyy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Echofon" - }, - "default_profile_image": false, - "id": 11848, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", - "statuses_count": 13886, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/11848/1414180455", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15662622", - "following": false, - "friends_count": 4657, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "medium.com/@stevenewcomb", - "url": "https://t.co/l86N09uJWv", - "expanded_url": "http://www.medium.com/@stevenewcomb", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 29588, - "location": "San Francisco, CA", - "screen_name": "stevenewcomb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 676, - "name": "stevenewcomb", - "profile_use_background_image": true, - "description": "founder @befamous \u2022 founder @powerset (now MSFT Bing) \u2022 board Node.js \u2022 designer \u2022 ux \u2022 ui", - "url": "https://t.co/l86N09uJWv", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Jul 30 16:55:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", - "favourites_count": 86, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5ef5b7f391e30aff.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.324818, - 37.8459532 - ], - [ - -122.234225, - 37.8459532 - ], - [ - -122.234225, - 37.905738 - ], - [ - -122.324818, - 37.905738 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Berkeley, CA", - "id": "5ef5b7f391e30aff", - "name": "Berkeley" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "679695243453661184", - "id": 679695243453661184, - "text": "When I asked my grandfather if one can be both wise and immature, he said pull my finger and I'll tell you.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 23 16:09:08 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 19, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15662622, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1147, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15662622/1398732045", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14708110", - "following": false, - "friends_count": 194, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 42, - "location": "", - "screen_name": "pease", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 0, - "name": "Dave Pease", - "profile_use_background_image": true, - "description": "Father, Husband, .NET Developer at IBS, Inc.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", - "profile_background_color": "131516", - "created_at": "Fri May 09 01:18:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", - "favourites_count": 4, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", - "default_profile_image": false, - "id": 14708110, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 136, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14708110/1425394211", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "133448051", - "following": false, - "friends_count": 79, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ussoccer.com", - "url": "http://t.co/lBXZsLTYug", - "expanded_url": "http://www.ussoccer.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 533359, - "location": "United States", - "screen_name": "ussoccer_wnt", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4083, - "name": "U.S. Soccer WNT", - "profile_use_background_image": true, - "description": "U.S. Soccer's official feed for the #USWNT.", - "url": "http://t.co/lBXZsLTYug", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", - "profile_background_color": "E4E5E6", - "created_at": "Thu Apr 15 20:39:54 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", - "favourites_count": 86, - "status": { - "retweet_count": 317, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609673668427777", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amp.twimg.com/v/4ee8494e-4f5\u2026", - "url": "https://t.co/DzHc1f29T6", - "expanded_url": "https://amp.twimg.com/v/4ee8494e-4f5b-4062-a847-abbf85aaa21e", - "indices": [ - 119, - 142 - ] - } - ], - "hashtags": [ - { - "indices": [ - 11, - 17 - ], - "text": "USWNT" - }, - { - "indices": [ - 95, - 107 - ], - "text": "JanuaryCamp" - }, - { - "indices": [ - 108, - 118 - ], - "text": "RoadToRio" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:50:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609673668427777, - "text": "WATCH: the #USWNT is off & running in 2016 with its first training camp of the year in LA. #JanuaryCamp #RoadToRio\nhttps://t.co/DzHc1f29T6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 990, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 133448051, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", - "statuses_count": 13471, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/133448051/1436146536", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "520782355", - "following": false, - "friends_count": 380, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "squidandcrow.com", - "url": "http://t.co/Iz4ZfDvOHi", - "expanded_url": "http://squidandcrow.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 330, - "location": "Pasco, WA", - "screen_name": "SquidAndCrow", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 23, - "name": "Sara Quinn, Person", - "profile_use_background_image": true, - "description": "Thing Maker | Squid Wrangler | Free Thinker | Gamer | Friend | Occasional Meat | She/Her or They/Them", - "url": "http://t.co/Iz4ZfDvOHi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Sat Mar 10 22:18:27 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", - "favourites_count": 3128, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "duosec", - "in_reply_to_user_id": 95339302, - "in_reply_to_status_id_str": "685540745177133058", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685592067100131330", - "id": 685592067100131330, - "text": "@duosec That scared me! So funny, though ;)", - "in_reply_to_user_id_str": "95339302", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "duosec", - "id_str": "95339302", - "id": 95339302, - "indices": [ - 0, - 7 - ], - "name": "Duo Security" - } - ] - }, - "created_at": "Fri Jan 08 22:41:01 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685540745177133058, - "lang": "en" - }, - "default_profile_image": false, - "id": 520782355, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 2610, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/520782355/1448506590", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2981041874", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "requiresafe.com", - "url": "http://t.co/Gbxa8dLwYt", - "expanded_url": "http://requiresafe.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 54, - "location": "Richland, wa", - "screen_name": "requiresafe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "requireSafe", - "profile_use_background_image": true, - "description": "Peace of mind for third-party Node modules. Brought to you by the @liftsecurity team and the founders of the @nodesecurity project.", - "url": "http://t.co/Gbxa8dLwYt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 13 23:44:44 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", - "favourites_count": 6, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "661228477689950208", - "id": 661228477689950208, - "text": "If you haven't done so please switch from using requiresafe to using nsp. The infrastructure will be taken down today.\n\nnpm i nsp -g", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Nov 02 17:08:48 +0000 2015", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2981041874, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 25, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15445975", - "following": false, - "friends_count": 600, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paddy.io", - "url": "http://t.co/lLVQ2zF195", - "expanded_url": "http://paddy.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 879, - "location": "Richland, WA", - "screen_name": "paddyforan", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 95, - "name": "Paddy", - "profile_use_background_image": true, - "description": "\u201cof Paddy & Ethan\u201d", - "url": "http://t.co/lLVQ2zF195", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", - "profile_background_color": "ACDED6", - "created_at": "Tue Jul 15 21:02:05 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", - "favourites_count": 2760, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/0dd0c9c93b5519e1.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -119.348075, - 46.164988 - ], - [ - -119.211248, - 46.164988 - ], - [ - -119.211248, - 46.3513671 - ], - [ - -119.348075, - 46.3513671 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Richland, WA", - "id": "0dd0c9c93b5519e1", - "name": "Richland" - }, - "in_reply_to_screen_name": "wraithgar", - "in_reply_to_user_id": 36700219, - "in_reply_to_status_id_str": "685493379812098049", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685515588530126850", - "id": 685515588530126850, - "text": "@wraithgar saaaaame", - "in_reply_to_user_id_str": "36700219", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wraithgar", - "id_str": "36700219", - "id": 36700219, - "indices": [ - 0, - 10 - ], - "name": "Gar" - } - ] - }, - "created_at": "Fri Jan 08 17:37:07 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685493379812098049, - "lang": "en" - }, - "default_profile_image": false, - "id": 15445975, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 39215, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15445975/1403466417", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2511636140", - "following": false, - "friends_count": 159, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "heatherloui.se", - "url": "https://t.co/8kOnavMn2N", - "expanded_url": "http://heatherloui.se", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "077A7A", - "geo_enabled": false, - "followers_count": 103, - "location": "Claremont, CA", - "screen_name": "one000mph", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 11, - "name": "Heather", - "profile_use_background_image": true, - "description": "Adventurer. Connoisseur Of Fine Teas. Collector of Outrageous Hats. STEM. Yogi.", - "url": "https://t.co/8kOnavMn2N", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed May 21 05:02:13 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", - "favourites_count": 53, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "666510529041575936", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "top13.net/funny-jerk-cat\u2026", - "url": "https://t.co/cQ4rAKpy5O", - "expanded_url": "http://www.top13.net/funny-jerk-cats-dont-respect-personal-space/", - "indices": [ - 0, - 23 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wraithgar", - "id_str": "36700219", - "id": 36700219, - "indices": [ - 24, - 34 - ], - "name": "Gar" - } - ] - }, - "created_at": "Tue Nov 17 06:57:47 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 666510529041575936, - "text": "https://t.co/cQ4rAKpy5O @wraithgar", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2511636140, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 60, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2511636140/1400652181", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3332249974", - "following": false, - "friends_count": 382, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2293, - "location": "", - "screen_name": "opsecanimals", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 75, - "name": "OpSec Animals", - "profile_use_background_image": true, - "description": "Animal OPSEC. The animals that teach and encourage good security practices. Boutique Animal Security Consultancy.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 18 06:10:24 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", - "favourites_count": 1187, - "status": { - "retweet_count": 8, - "retweeted_status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685591424625184769", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "modelviewculture.com/pieces/groomin\u2026", - "url": "https://t.co/mW4QbfhNVG", - "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jessysaurusrex", - "id_str": "17797084", - "id": 17797084, - "indices": [ - 66, - 81 - ], - "name": "Jessy Irwin" - } - ] - }, - "created_at": "Fri Jan 08 22:38:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685591424625184769, - "text": "Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Known: sketches.shaffermusic.com" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685597438594293760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "modelviewculture.com/pieces/groomin\u2026", - "url": "https://t.co/mW4QbfhNVG", - "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "krisshaffer", - "id_str": "136476512", - "id": 136476512, - "indices": [ - 3, - 15 - ], - "name": "Kris Shaffer" - }, - { - "screen_name": "jessysaurusrex", - "id_str": "17797084", - "id": 17797084, - "indices": [ - 83, - 98 - ], - "name": "Jessy Irwin" - } - ] - }, - "created_at": "Fri Jan 08 23:02:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685597438594293760, - "text": "RT @krisshaffer: Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 3332249974, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 317, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3332249974/1434610300", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18139160", - "following": false, - "friends_count": 389, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/inessombra", - "url": "http://t.co/hZHAl1Rxhp", - "expanded_url": "http://about.me/inessombra", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "151717", - "geo_enabled": true, - "followers_count": 2843, - "location": "San Francisco, CA", - "screen_name": "randommood", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 150, - "name": "Ines Sombra", - "profile_use_background_image": true, - "description": "Engineer @fastly. Plagued by many interests including running @papers_we_love SF & board member of @rubytogether. In an everlasting quest for increased focus.", - "url": "http://t.co/hZHAl1Rxhp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", - "profile_background_color": "131516", - "created_at": "Mon Dec 15 16:06:41 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", - "favourites_count": 2721, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "chrisamaphone", - "in_reply_to_user_id": 5972632, - "in_reply_to_status_id_str": "685132380991045632", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685138209391546369", - "id": 685138209391546369, - "text": "@chrisamaphone The industry is predatory and bullshitty. I'm happy to share what we did (or rage with you) if it helps \ud83d\udc70\ud83c\udffc\ud83d\udc79", - "in_reply_to_user_id_str": "5972632", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "chrisamaphone", - "id_str": "5972632", - "id": 5972632, - "indices": [ - 0, - 14 - ], - "name": "Chris Martens" - } - ] - }, - "created_at": "Thu Jan 07 16:37:33 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685132380991045632, - "lang": "en" - }, - "default_profile_image": false, - "id": 18139160, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 7723, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18139160/1405120776", - "is_translator": false - }, - { - "time_zone": "Europe/Berlin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "5430", - "following": false, - "friends_count": 673, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "squeakyvessel.com", - "url": "https://t.co/SmbXMAJahm", - "expanded_url": "http://squeakyvessel.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "666666", - "geo_enabled": true, - "followers_count": 1899, - "location": "Frankfurt, Germany", - "screen_name": "benjamin", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 128, - "name": "Benjamin Reitzammer", - "profile_use_background_image": true, - "description": "Head of my head, Feminist\n\n@VaamoTech //\n@socrates_2016 // \n@breathing_code", - "url": "https://t.co/SmbXMAJahm", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Sep 07 11:54:22 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "de", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", - "favourites_count": 1040, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685607349369860096", - "id": 685607349369860096, - "text": ".@henryrollins I looooove yooouuuu #manthatwasintense", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 35, - 53 - ], - "text": "manthatwasintense" - } - ], - "user_mentions": [ - { - "screen_name": "henryrollins", - "id_str": "16618332", - "id": 16618332, - "indices": [ - 1, - 14 - ], - "name": "henryrollins" - } - ] - }, - "created_at": "Fri Jan 08 23:41:44 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 5430, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", - "statuses_count": 9759, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5430/1425282364", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "304067888", - "following": false, - "friends_count": 1108, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ashleygwilliams.github.io", - "url": "https://t.co/rkt9BdQBYx", - "expanded_url": "http://ashleygwilliams.github.io/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 5856, - "location": "undefined", - "screen_name": "ag_dubs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 295, - "name": "ashley williams", - "profile_use_background_image": true, - "description": "a mess like this is easily five to ten years ahead of its time. human, @npmjs.", - "url": "https://t.co/rkt9BdQBYx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon May 23 21:43:03 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", - "favourites_count": 16725, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 351346221, - "possibly_sensitive": false, - "id_str": "685624661137342464", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPT-_bUwAAJvkx.jpg", - "type": "photo", - "indices": [ - 14, - 37 - ], - "media_url": "http://pbs.twimg.com/media/CYPT-_bUwAAJvkx.jpg", - "display_url": "pic.twitter.com/m4v7CIdJGJ", - "id_str": "685624647421837312", - "expanded_url": "http://twitter.com/ag_dubs/status/685624661137342464/photo/1", - "id": 685624647421837312, - "url": "https://t.co/m4v7CIdJGJ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "willmanduffy", - "id_str": "351346221", - "id": 351346221, - "indices": [ - 0, - 13 - ], - "name": "Willman" - } - ] - }, - "created_at": "Sat Jan 09 00:50:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "351346221", - "place": null, - "in_reply_to_screen_name": "willmanduffy", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685624661137342464, - "text": "@willmanduffy https://t.co/m4v7CIdJGJ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 304067888, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", - "statuses_count": 28816, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/304067888/1400530788", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14499792", - "following": false, - "friends_count": 69, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fayerplay.com", - "url": "http://t.co/a7vsP6hbIq", - "expanded_url": "http://fayerplay.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/125537436/bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F7DA93", - "profile_link_color": "CC3300", - "geo_enabled": false, - "followers_count": 330, - "location": "Columbia, Maryland", - "screen_name": "papa_fire", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Leon Fayer", - "profile_use_background_image": true, - "description": "Technologist. Web architect. DevOps [something]. VP @OmniTI. Gamer. Die hard Ravens fan.", - "url": "http://t.co/a7vsP6hbIq", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Apr 23 19:53:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", - "favourites_count": 7, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685498351551393795", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tinyclouds.org/colorize/", - "url": "https://t.co/n4MF2LMQA5", - "expanded_url": "http://tinyclouds.org/colorize/", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:28:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685498351551393795, - "text": "This is much cooler that even author leads to believe. https://t.co/n4MF2LMQA5", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 14499792, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/125537436/bg.jpg", - "statuses_count": 2534, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14499792/1354950251", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14412937", - "following": false, - "friends_count": 150, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "eev.ee", - "url": "http://t.co/ffxyntfCy2", - "expanded_url": "http://eev.ee/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "4380BF", - "geo_enabled": true, - "followers_count": 7056, - "location": "Sin City 2000", - "screen_name": "eevee", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 217, - "name": "\u2744\u26c4 eevee \u26c4\u2744", - "profile_use_background_image": true, - "description": "i like computers but also yell about them a lot. sometimes i hack or write or draw. she/they/he", - "url": "http://t.co/ffxyntfCy2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", - "profile_background_color": "0A3A6A", - "created_at": "Wed Apr 16 21:08:32 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", - "favourites_count": 32351, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "keisisqrl", - "in_reply_to_user_id": 1484341, - "in_reply_to_status_id_str": "685626122483011584", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685630168530948096", - "id": 685630168530948096, - "text": "@keisisqrl apparently it only even works on one brand of phone? which is an incredible leap forward in shrinking walled gardens even smaller", - "in_reply_to_user_id_str": "1484341", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "keisisqrl", - "id_str": "1484341", - "id": 1484341, - "indices": [ - 0, - 10 - ], - "name": "squirrelbutts" - } - ] - }, - "created_at": "Sat Jan 09 01:12:25 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685626122483011584, - "lang": "en" - }, - "default_profile_image": false, - "id": 14412937, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", - "statuses_count": 81073, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14412937/1435395260", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16642746", - "following": false, - "friends_count": 414, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "crappytld.club", - "url": "http://t.co/d1H2gppjtx", - "expanded_url": "http://crappytld.club/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 6003, - "location": "Austin, TX", - "screen_name": "miketaylr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 435, - "name": "Mike Taylor", - "profile_use_background_image": true, - "description": "Web Compat at Mozilla. I mostly tweet about crappy code. \\\ufdfa\u0310\u033e\u033e\u0308\u030f\u0314\u0302\u0307\u0300\u036d\u0308\u0366\u034c\u033d\u036d\u036a\u036b\u036f\u0304\u034f\u031e\u032d\u0318\u0325\u0324\u034e\u0324\u0358\\'", - "url": "http://t.co/d1H2gppjtx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Wed Oct 08 02:18:14 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", - "favourites_count": 4739, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -97.928935, - 30.127892 - ], - [ - -97.5805133, - 30.127892 - ], - [ - -97.5805133, - 30.5187994 - ], - [ - -97.928935, - 30.5187994 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Austin, TX", - "id": "c3f37afa9efcf94b", - "name": "Austin" - }, - "in_reply_to_screen_name": "snorp", - "in_reply_to_user_id": 14663842, - "in_reply_to_status_id_str": "685227191529934848", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685230499069952001", - "id": 685230499069952001, - "text": "@snorp i give it a year before someone is running NodeJS on one of these (help us all)", - "in_reply_to_user_id_str": "14663842", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "snorp", - "id_str": "14663842", - "id": 14663842, - "indices": [ - 0, - 6 - ], - "name": "James Willcox" - } - ] - }, - "created_at": "Thu Jan 07 22:44:16 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685227191529934848, - "lang": "en" - }, - "default_profile_image": false, - "id": 16642746, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", - "statuses_count": 16572, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16642746/1381258666", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "749863", - "following": false, - "friends_count": 565, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "relay.fm/rd", - "url": "https://t.co/zuZ3gobI4e", - "expanded_url": "http://www.relay.fm/rd", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", - "notifications": false, - "profile_sidebar_fill_color": "DFDFDF", - "profile_link_color": "4255AE", - "geo_enabled": false, - "followers_count": 354977, - "location": "The Outside Lands", - "screen_name": "hotdogsladies", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8034, - "name": "Merlin Mann", - "profile_use_background_image": false, - "description": "Ricordati che \u00e8 un film comico.", - "url": "https://t.co/zuZ3gobI4e", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", - "profile_background_color": "EEEEEE", - "created_at": "Sat Feb 03 01:39:53 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", - "favourites_count": 27394, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685623487570915330", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "sfsketchfest2016.sched.org/event/4jDI/rod\u2026", - "url": "https://t.co/aAyrIvUKZO", - "expanded_url": "http://sfsketchfest2016.sched.org/event/4jDI/roderick-on-the-line-with-merlin-mann-and-john-roderick", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:45:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685623487570915330, - "text": "If you are within 150 miles of San Francisco right now you have nothing more important going on tonight than: https://t.co/aAyrIvUKZO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685625963061772288", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "sfsketchfest2016.sched.org/event/4jDI/rod\u2026", - "url": "https://t.co/aAyrIvUKZO", - "expanded_url": "http://sfsketchfest2016.sched.org/event/4jDI/roderick-on-the-line-with-merlin-mann-and-john-roderick", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "johnroderick", - "id_str": "17431654", - "id": 17431654, - "indices": [ - 3, - 16 - ], - "name": "john roderick" - } - ] - }, - "created_at": "Sat Jan 09 00:55:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685625963061772288, - "text": "RT @johnroderick: If you are within 150 miles of San Francisco right now you have nothing more important going on tonight than: https://t.c\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 749863, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", - "statuses_count": 29732, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/749863/1450650802", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "239324052", - "following": false, - "friends_count": 1414, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.skepticfx.com", - "url": "https://t.co/gLsQ0GkDmG", - "expanded_url": "https://blog.skepticfx.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1421, - "location": "San Francisco, CA", - "screen_name": "skeptic_fx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "Ahamed Nafeez", - "profile_use_background_image": false, - "description": "Security Engineering is one of the things I do. Views are my own and does not represent my employer.", - "url": "https://t.co/gLsQ0GkDmG", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Jan 17 10:33:29 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", - "favourites_count": 1253, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "verystrongjoe", - "in_reply_to_user_id": 53238886, - "in_reply_to_status_id_str": "682429494154530817", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "682501819830931457", - "id": 682501819830931457, - "text": "@verystrongjoe Hi! I've replied to you over email :)", - "in_reply_to_user_id_str": "53238886", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "verystrongjoe", - "id_str": "53238886", - "id": 53238886, - "indices": [ - 0, - 14 - ], - "name": "Jo Uk" - } - ] - }, - "created_at": "Thu Dec 31 10:01:28 +0000 2015", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 682429494154530817, - "lang": "en" - }, - "default_profile_image": false, - "id": 239324052, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 2307, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/239324052/1443490816", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3194669250", - "following": false, - "friends_count": 136, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wild.land", - "url": "http://t.co/ktkvhRQiyM", - "expanded_url": "http://wild.land", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 61, - "location": "Richland, WA", - "screen_name": "wildlandlabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Wildland", - "profile_use_background_image": false, - "description": "Software Builders, Coffee Enthusiasts, General Human Beings.", - "url": "http://t.co/ktkvhRQiyM", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", - "profile_background_color": "000000", - "created_at": "Wed May 13 21:58:06 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", - "favourites_count": 5, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mattepp", - "in_reply_to_user_id": 14871770, - "in_reply_to_status_id_str": "637133104977588226", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "637150029396860930", - "id": 637150029396860930, - "text": "Ohhai!! @mattepp ///@grElement", - "in_reply_to_user_id_str": "14871770", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mattepp", - "id_str": "14871770", - "id": 14871770, - "indices": [ - 8, - 16 - ], - "name": "Matthew Eppelsheimer" - }, - { - "screen_name": "grElement", - "id_str": "42056876", - "id": 42056876, - "indices": [ - 20, - 30 - ], - "name": "Angela Steffens" - } - ] - }, - "created_at": "Fri Aug 28 06:29:39 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 637133104977588226, - "lang": "it" - }, - "default_profile_image": false, - "id": 3194669250, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 22, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3194669250/1431554889", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1530096708", - "following": false, - "friends_count": 4721, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "closetoclever.com", - "url": "https://t.co/oQf0XG5ffN", - "expanded_url": "http://www.closetoclever.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "007AB3", - "geo_enabled": false, - "followers_count": 8747, - "location": "Birmingham/London/\u3069\u3053\u3067\u3082", - "screen_name": "jesslynnrose", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 298, - "name": "Jessica Rose", - "profile_use_background_image": true, - "description": "Technology's den mother. Devrel for @dfsoftwareinc & often doing things w/ @opencodeclub, @trans_code & @watchingbuffy DMs open*, views mine", - "url": "https://t.co/oQf0XG5ffN", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 19 07:56:27 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", - "favourites_count": 8916, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "spiky_flamingo", - "in_reply_to_user_id": 3143889479, - "in_reply_to_status_id_str": "685558133687775232", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685558290324041728", - "id": 685558290324041728, - "text": "@spiky_flamingo @miss_jwo I am! DM incoming! \ud83d\ude01", - "in_reply_to_user_id_str": "3143889479", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "spiky_flamingo", - "id_str": "3143889479", - "id": 3143889479, - "indices": [ - 0, - 15 - ], - "name": "pearl irl" - }, - { - "screen_name": "miss_jwo", - "id_str": "200519952", - "id": 200519952, - "indices": [ - 16, - 25 - ], - "name": "Jenny Wong" - } - ] - }, - "created_at": "Fri Jan 08 20:26:48 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685558133687775232, - "lang": "en" - }, - "default_profile_image": false, - "id": 1530096708, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 15506, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1530096708/1448497747", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "5438512", - "following": false, - "friends_count": 543, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pcper.com", - "url": "http://t.co/FyPzbMLdvW", - "expanded_url": "http://www.pcper.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 11986, - "location": "Florence, KY", - "screen_name": "ryanshrout", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 726, - "name": "Ryan Shrout", - "profile_use_background_image": false, - "description": "Editor-in-Chief at PC Perspective", - "url": "http://t.co/FyPzbMLdvW", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Mon Apr 23 16:41:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", - "favourites_count": 258, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685614844570021888", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 460, - "h": 460, - "resize": "fit" - }, - "medium": { - "w": 460, - "h": 460, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPLEDjUsAArYcG.jpg", - "type": "photo", - "indices": [ - 91, - 114 - ], - "media_url": "http://pbs.twimg.com/media/CYPLEDjUsAArYcG.jpg", - "display_url": "pic.twitter.com/GqCp6be3gk", - "id_str": "685614838823825408", - "expanded_url": "http://twitter.com/ryanshrout/status/685614844570021888/photo/1", - "id": 685614838823825408, - "url": "https://t.co/GqCp6be3gk" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22QQFLq", - "url": "https://t.co/MSSt2Xok0y", - "expanded_url": "http://bit.ly/22QQFLq", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:11:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685614844570021888, - "text": "CES 2016: In Win H-Frame Open Air Chassis and PSU | PC Perspective https://t.co/MSSt2Xok0y https://t.co/GqCp6be3gk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 5438512, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 15327, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "43188880", - "following": false, - "friends_count": 1674, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dalebracey.com", - "url": "https://t.co/uQTo4Zburt", - "expanded_url": "http://dalebracey.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7A5339", - "profile_link_color": "FF6600", - "geo_enabled": false, - "followers_count": 1257, - "location": "San Antonio, TX", - "screen_name": "IRTermite", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 60, - "name": "Dale Bracey \u2601", - "profile_use_background_image": true, - "description": "Social Strategist @Rackspace, Racker since 2004 - Artist, Car Collector, Empath, Geek, Networker, Techie, Jack-of-all, #OpenStack, @MakeSanAntonio @RackerGamers", - "url": "https://t.co/uQTo4Zburt", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", - "profile_background_color": "131516", - "created_at": "Thu May 28 20:27:13 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", - "favourites_count": 2191, - "status": { - "retweet_count": 24, - "retweeted_status": { - "retweet_count": 24, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685296231405326337", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 852, - "h": 669, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 471, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 266, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "type": "photo", - "indices": [ - 90, - 113 - ], - "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "display_url": "pic.twitter.com/65waEZwn1E", - "id_str": "685296015801331716", - "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", - "id": 685296015801331716, - "url": "https://t.co/65waEZwn1E" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:05:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685296231405326337, - "text": "Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 23, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685296427338051584", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 852, - "h": 669, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 471, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 266, - "resize": "fit" - } - }, - "source_status_id_str": "685296231405326337", - "url": "https://t.co/65waEZwn1E", - "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "source_user_id_str": "26191233", - "id_str": "685296015801331716", - "id": 685296015801331716, - "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", - "type": "photo", - "indices": [ - 105, - 128 - ], - "source_status_id": 685296231405326337, - "source_user_id": 26191233, - "display_url": "pic.twitter.com/65waEZwn1E", - "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Rackspace", - "id_str": "26191233", - "id": 26191233, - "indices": [ - 3, - 13 - ], - "name": "Rackspace" - } - ] - }, - "created_at": "Fri Jan 08 03:06:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685296427338051584, - "text": "RT @Rackspace: Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 43188880, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 6991, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43188880/1433971079", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "801712861", - "following": false, - "friends_count": 614, - "entities": { - "description": { - "urls": [ - { - "display_url": "domschopsalsa.com", - "url": "https://t.co/ySTEeD6lcz", - "expanded_url": "http://www.domschopsalsa.com", - "indices": [ - 90, - 113 - ] - }, - { - "display_url": "facebook.com/chopsalsa", - "url": "https://t.co/DoMfz1yk60", - "expanded_url": "http://facebook.com/chopsalsa", - "indices": [ - 115, - 138 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/dominicmend\u2026", - "url": "http://t.co/3hwdF3IqPC", - "expanded_url": "http://www.linkedin.com/in/dominicmendiola", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 267, - "location": "San Antonio, TX", - "screen_name": "DominicMendiola", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "dominic.mendiola", - "profile_use_background_image": false, - "description": "Father. Husband. Racker since 2006. Social Media Team. Owner Dom's Chop Salsa @chopsalsa, https://t.co/ySTEeD6lcz, https://t.co/DoMfz1yk60", - "url": "http://t.co/3hwdF3IqPC", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Sep 04 03:13:51 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", - "favourites_count": 391, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "trevorengstrom", - "in_reply_to_user_id": 15080503, - "in_reply_to_status_id_str": "684515636333051904", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684516227667001344", - "id": 684516227667001344, - "text": "@trevorengstrom @Rackspace Ok good! If anything else pops up and you need a hand...just let us know! We're always happy to help! Thanks!", - "in_reply_to_user_id_str": "15080503", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "trevorengstrom", - "id_str": "15080503", - "id": 15080503, - "indices": [ - 0, - 15 - ], - "name": "Trevor Engstrom" - }, - { - "screen_name": "Rackspace", - "id_str": "26191233", - "id": 26191233, - "indices": [ - 16, - 26 - ], - "name": "Rackspace" - } - ] - }, - "created_at": "Tue Jan 05 23:26:01 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684515636333051904, - "lang": "en" - }, - "default_profile_image": false, - "id": 801712861, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 536, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/801712861/1443214772", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "4508241", - "following": false, - "friends_count": 194, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "langfeld.me", - "url": "http://t.co/FYGU0gVzky", - "expanded_url": "http://langfeld.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 481, - "location": "Rio de Janeiro, Brasil", - "screen_name": "benlangfeld", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "Ben Langfeld", - "profile_use_background_image": true, - "description": "Communications app developer. Mojo Lingo & Adhearsion Foundation. Experimenter and perfectionist.", - "url": "http://t.co/FYGU0gVzky", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Apr 13 15:05:00 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", - "favourites_count": 200, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 3033204133, - "possibly_sensitive": false, - "id_str": "685548188435132416", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "gist.github.com/benlangfeld/18\u2026", - "url": "https://t.co/EYtcS2Vqhk", - "expanded_url": "https://gist.github.com/benlangfeld/181cbb3997eb4236e244", - "indices": [ - 87, - 110 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "honest_update", - "id_str": "3033204133", - "id": 3033204133, - "indices": [ - 0, - 14 - ], - "name": "Honest Status Page" - } - ] - }, - "created_at": "Fri Jan 08 19:46:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "3033204133", - "place": null, - "in_reply_to_screen_name": "honest_update", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685548188435132416, - "text": "@honest_update Our app fell over because our queue was too slow. It's ok, we fixed it: https://t.co/EYtcS2Vqhk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 4508241, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2697, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4508241/1401146387", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "22199970", - "following": false, - "friends_count": 761, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lea.verou.me", - "url": "http://t.co/Q2CdWpNV1q", - "expanded_url": "http://lea.verou.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/324344036/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFBF2", - "profile_link_color": "FF0066", - "geo_enabled": true, - "followers_count": 64140, - "location": "Cambridge, MA", - "screen_name": "LeaVerou", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3585, - "name": "Lea Verou", - "profile_use_background_image": true, - "description": "HCI researcher @MIT_CSAIL, @CSSWG IE, @CSSSecretsBook author, Ex @W3C staff. Made @prismjs @dabblet @prefixfree. I \u2665 standards, code, design, UX, life!", - "url": "http://t.co/Q2CdWpNV1q", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", - "profile_background_color": "FBE4AE", - "created_at": "Fri Feb 27 22:28:59 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", - "favourites_count": 3696, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685359744966590464", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "byteplumbing.net/2016/01/book-r\u2026", - "url": "https://t.co/pfmTTIXCIy", - "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "csssecretsbook", - "id_str": "3262381338", - "id": 3262381338, - "indices": [ - 23, - 38 - ], - "name": "CSS Secrets" - } - ] - }, - "created_at": "Fri Jan 08 07:17:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685359744966590464, - "text": "Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co/pfmTTIXCIy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685574450780192770", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "byteplumbing.net/2016/01/book-r\u2026", - "url": "https://t.co/pfmTTIXCIy", - "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "iiska", - "id_str": "18630451", - "id": 18630451, - "indices": [ - 3, - 9 - ], - "name": "Juhamatti Niemel\u00e4" - }, - { - "screen_name": "csssecretsbook", - "id_str": "3262381338", - "id": 3262381338, - "indices": [ - 34, - 49 - ], - "name": "CSS Secrets" - } - ] - }, - "created_at": "Fri Jan 08 21:31:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685574450780192770, - "text": "RT @iiska: Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 22199970, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/324344036/bg.png", - "statuses_count": 24815, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22199970/1374351780", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2739826012", - "following": false, - "friends_count": 2320, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "matrix.org", - "url": "http://t.co/Rrx4mnMJ5W", - "expanded_url": "http://www.matrix.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "4F5A5E", - "geo_enabled": true, - "followers_count": 1227, - "location": "", - "screen_name": "matrixdotorg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 61, - "name": "Matrix", - "profile_use_background_image": false, - "description": "An open standard for decentralised persistent communication. Tweets by @ara4n, @amandinelepape & co.", - "url": "http://t.co/Rrx4mnMJ5W", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Aug 11 10:51:23 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", - "favourites_count": 781, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685552098830880768", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", - "url": "https://t.co/0iV7Uzmaia", - "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", - "indices": [ - 31, - 54 - ] - }, - { - "display_url": "webrtcconference.jp", - "url": "https://t.co/7NnGiq0vCN", - "expanded_url": "http://webrtcconference.jp/", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [ - { - "indices": [ - 69, - 78 - ], - "text": "skywayjs" - } - ], - "user_mentions": [ - { - "screen_name": "TADHack", - "id_str": "2315728231", - "id": 2315728231, - "indices": [ - 11, - 19 - ], - "name": "TADHack" - }, - { - "screen_name": "matrixdotorg", - "id_str": "2739826012", - "id": 2739826012, - "indices": [ - 55, - 68 - ], - "name": "Matrix" - }, - { - "screen_name": "telestax", - "id_str": "266634532", - "id": 266634532, - "indices": [ - 79, - 88 - ], - "name": "TeleStax" - }, - { - "screen_name": "ntt", - "id_str": "1706681", - "id": 1706681, - "indices": [ - 89, - 93 - ], - "name": "Chinmay" - } - ] - }, - "created_at": "Fri Jan 08 20:02:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685552098830880768, - "text": "Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co/7NnGiq0vCN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685553303049076741", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.tadhack.com/2016/01/08/tad\u2026", - "url": "https://t.co/0iV7Uzmaia", - "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", - "indices": [ - 44, - 67 - ] - }, - { - "display_url": "webrtcconference.jp", - "url": "https://t.co/7NnGiq0vCN", - "expanded_url": "http://webrtcconference.jp/", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 82, - 91 - ], - "text": "skywayjs" - } - ], - "user_mentions": [ - { - "screen_name": "TADHack", - "id_str": "2315728231", - "id": 2315728231, - "indices": [ - 3, - 11 - ], - "name": "TADHack" - }, - { - "screen_name": "TADHack", - "id_str": "2315728231", - "id": 2315728231, - "indices": [ - 24, - 32 - ], - "name": "TADHack" - }, - { - "screen_name": "matrixdotorg", - "id_str": "2739826012", - "id": 2739826012, - "indices": [ - 68, - 81 - ], - "name": "Matrix" - }, - { - "screen_name": "telestax", - "id_str": "266634532", - "id": 266634532, - "indices": [ - 92, - 101 - ], - "name": "TeleStax" - }, - { - "screen_name": "ntt", - "id_str": "1706681", - "id": 1706681, - "indices": [ - 102, - 106 - ], - "name": "Chinmay" - } - ] - }, - "created_at": "Fri Jan 08 20:06:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685553303049076741, - "text": "RT @TADHack: Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2739826012, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1282, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2739826012/1422740800", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "512410920", - "following": false, - "friends_count": 735, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wroteacodeforcloverhitch.blogspot.ca", - "url": "http://t.co/orO5dwZcHv", - "expanded_url": "http://wroteacodeforcloverhitch.blogspot.ca/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "80042B", - "geo_enabled": false, - "followers_count": 911, - "location": "Calgary, Alberta", - "screen_name": "gbhorwood", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Grant Horwood", - "profile_use_background_image": true, - "description": "Lead developer Cloverhitch Tech in Calgary, AB. I like clever code, verbose documentation, fast bicycles and questionable homebrew.", - "url": "http://t.co/orO5dwZcHv", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", - "profile_background_color": "ABB8C2", - "created_at": "Fri Mar 02 20:19:53 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", - "favourites_count": 1533, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "meejah", - "in_reply_to_user_id": 13055372, - "in_reply_to_status_id_str": "685565777680859136", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685566263142187008", - "id": 685566263142187008, - "text": "@meejah yeah. i have a \"bob has a bug\" issue. what bug? when? last name? no one can say... \n\ngrep -irn \"bob\" ./*", - "in_reply_to_user_id_str": "13055372", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "meejah", - "id_str": "13055372", - "id": 13055372, - "indices": [ - 0, - 7 - ], - "name": "meejah" - } - ] - }, - "created_at": "Fri Jan 08 20:58:28 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685565777680859136, - "lang": "en" - }, - "default_profile_image": false, - "id": 512410920, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2309, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/512410920/1398348433", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "65583", - "following": false, - "friends_count": 654, - "entities": { - "description": { - "urls": [ - { - "display_url": "OSMIhelp.org", - "url": "http://t.co/skQU77s3rk", - "expanded_url": "http://OSMIhelp.org", - "indices": [ - 83, - 105 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "funkatron.com", - "url": "http://t.co/Y4o3XtlP6R", - "expanded_url": "http://funkatron.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90616269/funbike.png", - "notifications": false, - "profile_sidebar_fill_color": "B8B8B8", - "profile_link_color": "660000", - "geo_enabled": false, - "followers_count": 8751, - "location": "West Lafayette, IN, USA", - "screen_name": "funkatron", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 773, - "name": "Ed Finkler", - "profile_use_background_image": false, - "description": "Dork, Dad, JS, PHP & Python feller. Lead Dev @GraphStoryCo. Mental Health advocate http://t.co/skQU77s3rk. 1/2 of @dev_hell podcast. See also @funkalinks", - "url": "http://t.co/Y4o3XtlP6R", - "profile_text_color": "424141", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Dec 14 00:31:16 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", - "favourites_count": 8512, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jclermont", - "in_reply_to_user_id": 16358696, - "in_reply_to_status_id_str": "685606121604681729", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685609221245763585", - "id": 685609221245763585, - "text": "@jclermont when I read this I had to say that out loud", - "in_reply_to_user_id_str": "16358696", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jclermont", - "id_str": "16358696", - "id": 16358696, - "indices": [ - 0, - 10 - ], - "name": "Joel Clermont" - } - ] - }, - "created_at": "Fri Jan 08 23:49:11 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685606121604681729, - "lang": "en" - }, - "default_profile_image": false, - "id": 65583, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90616269/funbike.png", - "statuses_count": 84078, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/65583/1438612109", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "396241682", - "following": false, - "friends_count": 322, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mariemosley.com/about", - "url": "https://t.co/BppFkRlCWu", - "expanded_url": "https://www.mariemosley.com/about", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "009CA2", - "geo_enabled": true, - "followers_count": 1098, - "location": "", - "screen_name": "MMosley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "name": "Marie Mosley", - "profile_use_background_image": false, - "description": "Look out honey, 'cause I'm using technology // Part of Team @CodePen", - "url": "https://t.co/BppFkRlCWu", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", - "profile_background_color": "01E6EF", - "created_at": "Sat Oct 22 23:58:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", - "favourites_count": 10414, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "jaynawallace", - "in_reply_to_user_id": 78213, - "in_reply_to_status_id_str": "685594363007746048", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685602091553959936", - "id": 685602091553959936, - "text": "@jaynawallace I will join your squad \ud83d\udc6f what's you're name on there?", - "in_reply_to_user_id_str": "78213", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jaynawallace", - "id_str": "78213", - "id": 78213, - "indices": [ - 0, - 13 - ], - "name": "\u02d7\u02cf\u02cb jayna wallace \u02ce\u02ca" - } - ] - }, - "created_at": "Fri Jan 08 23:20:51 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685594363007746048, - "lang": "en" - }, - "default_profile_image": false, - "id": 396241682, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3204, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/396241682/1430082364", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3202399565", - "following": false, - "friends_count": 26, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 32, - "location": "De Cymru", - "screen_name": "KevTWondersheep", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Kevin Smith", - "profile_use_background_image": true, - "description": "@DefinitiveKev pretending to be non-techie. May contain very very bad Welsh.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Apr 24 22:27:37 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", - "favourites_count": 45, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "EmiGarside", - "in_reply_to_user_id": 23923202, - "in_reply_to_status_id_str": "684380251649093632", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684380579673018368", - "id": 684380579673018368, - "text": "@emigarside Droids don't rip people's arms out of their sockets when they lose. Wookies are known to do that.", - "in_reply_to_user_id_str": "23923202", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "EmiGarside", - "id_str": "23923202", - "id": 23923202, - "indices": [ - 0, - 11 - ], - "name": "Dr Emily Garside" - } - ] - }, - "created_at": "Tue Jan 05 14:27:00 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684380251649093632, - "lang": "en" - }, - "default_profile_image": false, - "id": 3202399565, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 71, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3202399565/1429962655", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "606349117", - "following": false, - "friends_count": 1523, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sparxeng.com", - "url": "http://t.co/tfYNlmleOE", - "expanded_url": "http://www.sparxeng.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1980, - "location": "Houston, TX", - "screen_name": "SparxEngineer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 61, - "name": "Sparx Engineering", - "profile_use_background_image": true, - "description": "Engineering consulting company, specializing in embedded devices, custom/mobile/web application development and helping startups bring products to market.", - "url": "http://t.co/tfYNlmleOE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 12 14:10:06 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", - "favourites_count": 16, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685140345215139841", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", - "display_url": "pic.twitter.com/HawyibmcoX", - "id_str": "685140345039024128", - "expanded_url": "http://twitter.com/SparxEngineer/status/685140345215139841/photo/1", - "id": 685140345039024128, - "url": "https://t.co/HawyibmcoX" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1Z8fXA2", - "url": "https://t.co/LzWHfSO5Ux", - "expanded_url": "http://buff.ly/1Z8fXA2", - "indices": [ - 66, - 89 - ] - } - ], - "hashtags": [ - { - "indices": [ - 90, - 95 - ], - "text": "tech" - }, - { - "indices": [ - 96, - 104 - ], - "text": "fitness" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 16:46:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685140345215139841, - "text": "New lawsuit: Fitbit heart rate tracking is dangerously inaccurate https://t.co/LzWHfSO5Ux #tech #fitness https://t.co/HawyibmcoX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 606349117, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1734, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/606349117/1391191180", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "84107122", - "following": false, - "friends_count": 1570, - "entities": { - "description": { - "urls": [ - { - "display_url": "themakersofthings.co.uk", - "url": "http://t.co/f5R61wCtSs", - "expanded_url": "http://themakersofthings.co.uk", - "indices": [ - 73, - 95 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "anne.holiday", - "url": "http://t.co/pxLXGQsvL6", - "expanded_url": "http://anne.holiday/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 908, - "location": "Brooklyn, NY", - "screen_name": "anneholiday", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 32, - "name": "Anne Holiday", - "profile_use_background_image": true, - "description": "Filmmaker. Phototaker. Maker of The Makers of Things documentary series: http://t.co/f5R61wCtSs", - "url": "http://t.co/pxLXGQsvL6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Oct 21 16:05:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", - "favourites_count": 3006, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685464406453530624", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "newyorker.com/magazine/2015/\u2026", - "url": "https://t.co/qw5SReTvl6", - "expanded_url": "http://www.newyorker.com/magazine/2015/01/19/lets-get-drinks", - "indices": [ - 5, - 28 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:13:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685464406453530624, - "text": "Lol: https://t.co/qw5SReTvl6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 84107122, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 4627, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/84107122/1393641836", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3033725946", - "following": false, - "friends_count": 1422, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bit.ly/1vmzDHa", - "url": "http://t.co/27akJdS8AO", - "expanded_url": "http://bit.ly/1vmzDHa", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2046, - "location": "", - "screen_name": "WebRRTC", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 58, - "name": "WebRTC", - "profile_use_background_image": true, - "description": "Live content curated by top Web Real-Time Communication (WebRTC) Influencer", - "url": "http://t.co/27akJdS8AO", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sat Feb 21 02:29:20 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685619974405111809", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPPu8lUMAALzq3.jpg", - "type": "photo", - "indices": [ - 69, - 92 - ], - "media_url": "http://pbs.twimg.com/media/CYPPu8lUMAALzq3.jpg", - "display_url": "pic.twitter.com/RShfZusyFc", - "id_str": "685619973734019072", - "expanded_url": "http://twitter.com/WebRRTC/status/685619974405111809/photo/1", - "id": 685619973734019072, - "url": "https://t.co/RShfZusyFc" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "rightrelevance.com/search/article\u2026", - "url": "https://t.co/T0JCitzPyD", - "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=5f12a324855759cd16cbb7035abfa66359421230&query=webrtc&taccount=webrrtc", - "indices": [ - 45, - 68 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 7 - ], - "text": "vuc575" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:31:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "tl", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685619974405111809, - "text": "#vuc575 - WebRTC PaaS with Tsahi Levent-Levi https://t.co/T0JCitzPyD https://t.co/RShfZusyFc", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "RRPostingApp" - }, - "default_profile_image": false, - "id": 3033725946, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2874, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15518306", - "following": false, - "friends_count": 428, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "langille.org", - "url": "http://t.co/uBwYd3PW71", - "expanded_url": "http://langille.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1242, - "location": "near Philadelphia", - "screen_name": "DLangille", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 91, - "name": "Dan Langille", - "profile_use_background_image": true, - "description": "Mountain biker. Software Dev. Sysadmin. Websites & databases. Conference organizer.", - "url": "http://t.co/uBwYd3PW71", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", - "profile_background_color": "C6E2EE", - "created_at": "Mon Jul 21 17:56:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", - "favourites_count": 630, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685554984306360320", - "id": 685554984306360320, - "text": "Current status: adding my user (not me) to gmail. I feel all grown up....", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:13:39 +0000 2016", - "source": "Twitterrific for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15518306, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", - "statuses_count": 12127, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15518306/1406551613", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14420513", - "following": false, - "friends_count": 347, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fromonesrc.com", - "url": "https://t.co/Lez165p0gY", - "expanded_url": "http://fromonesrc.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 205, - "location": "Lansdale, PA", - "screen_name": "fromonesrc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Adam Ochonicki", - "profile_use_background_image": true, - "description": "Redemption? Sure. But in the end, he's just another dead rat in a garbage pail behind a Chinese restaurant.", - "url": "https://t.co/Lez165p0gY", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Apr 17 13:32:46 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", - "favourites_count": 475, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685595808402681856", - "id": 685595808402681856, - "text": "OH: \"actually, it\u2019s nice getting some time to pay down tech debt\u2026 after spending so long generating it\"\n\nThat rings so true for me.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:55:53 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14420513, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 6413, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14420513/1449525270", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "2292633427", - "following": false, - "friends_count": 3203, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "uk.linkedin.com/in/jmgcraig", - "url": "https://t.co/q8exdl06ab", - "expanded_url": "https://uk.linkedin.com/in/jmgcraig", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 2838, - "location": "London", - "screen_name": "AttackyChappie", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 83, - "name": "Graeme Craig", - "profile_use_background_image": false, - "description": "Recruitment Manager @6DegreesGroup | #UC #Connectivity #DC #Cloud | Passionate #PS4 Gamer, Cyclist, Foodie, Lover of #Lego #EnglishBullDogs & my #Wife", - "url": "https://t.co/q8exdl06ab", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Jan 15 12:23:08 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", - "favourites_count": 3, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685096224463126528", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mspalliance.com/cloud-computin\u2026", - "url": "https://t.co/Aeibg4EwGl", - "expanded_url": "http://mspalliance.com/cloud-computing-managed-services-forecast-for-2016/", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "arjun077", - "id_str": "51468247", - "id": 51468247, - "indices": [ - 85, - 94 - ], - "name": "Arjun jain" - } - ] - }, - "created_at": "Thu Jan 07 13:50:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685096224463126528, - "text": "Cloud Computing & Managed Services Forecast for 2016 https://t.co/Aeibg4EwGl via @arjun077", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2292633427, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 392, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2292633427/1424354218", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "42909423", - "following": false, - "friends_count": 284, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 198, - "location": "Raleigh, NC", - "screen_name": "__id__", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 4, - "name": "Dmytro Ilchenko", - "profile_use_background_image": true, - "description": "I'm not a geek, i'm a level 12 paladin. Yak barber. Casting special ops magic to make things work @LivingSocial.", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed May 27 15:48:15 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", - "favourites_count": 1304, - "status": { - "retweet_count": 133, - "retweeted_status": { - "retweet_count": 133, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681874873539366912", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "danluu.com/wat/", - "url": "https://t.co/9DLKdXk34s", - "expanded_url": "http://danluu.com/wat/", - "indices": [ - 98, - 121 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 29 16:30:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681874873539366912, - "text": "What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 115, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683752055920553986", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "danluu.com/wat/", - "url": "https://t.co/9DLKdXk34s", - "expanded_url": "http://danluu.com/wat/", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "danluu", - "id_str": "18275645", - "id": 18275645, - "indices": [ - 3, - 10 - ], - "name": "Dan Luu" - } - ] - }, - "created_at": "Sun Jan 03 20:49:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683752055920553986, - "text": "RT @danluu: What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 42909423, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 2800, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/42909423/1398263672", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "13166972", - "following": false, - "friends_count": 1776, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dariusdunlap.com", - "url": "https://t.co/Dmpe1rzbsb", - "expanded_url": "https://dariusdunlap.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1442, - "location": "Half Moon Bay, CA", - "screen_name": "dariusdunlap", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 85, - "name": "Darius Dunlap", - "profile_use_background_image": true, - "description": "Tech guy, Founder at Syncopat; Square Peg Foundation. Executive Director at Silicon Valley Innovation Institute, Advising startups & growing companies", - "url": "https://t.co/Dmpe1rzbsb", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Wed Feb 06 17:04:20 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", - "favourites_count": 1393, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684909434443706368", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "squarepegfoundation.org/2016/01/a-jour\u2026", - "url": "https://t.co/tZ6YYzQZKS", - "expanded_url": "https://www.squarepegfoundation.org/2016/01/a-journey-together/", - "indices": [ - 74, - 97 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 01:28:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -124.482003, - 32.528832 - ], - [ - -114.131212, - 32.528832 - ], - [ - -114.131212, - 42.009519 - ], - [ - -124.482003, - 42.009519 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "California, USA", - "id": "fbd6d2f5a4e4a15e", - "name": "California" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684909434443706368, - "text": "Our journey, finding one another and creating and building Square Pegs. ( https://t.co/tZ6YYzQZKS )", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 13166972, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 4660, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13166972/1398466705", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "12530", - "following": false, - "friends_count": 955, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hackdiary.com/about/", - "url": "http://t.co/qmocio1ti6", - "expanded_url": "http://www.hackdiary.com/about/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF3C8", - "profile_link_color": "857025", - "geo_enabled": true, - "followers_count": 6983, - "location": "San Francisco CA, USA", - "screen_name": "mattb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 453, - "name": "Matt Biddulph", - "profile_use_background_image": true, - "description": "Currently: @thingtonhq. Previously: BBC, Dopplr, Nokia.", - "url": "http://t.co/qmocio1ti6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", - "profile_background_color": "FECF1F", - "created_at": "Wed Nov 15 15:48:50 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", - "favourites_count": 4258, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685332843334086657", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ift.tt/1mJgTP1", - "url": "https://t.co/VG2Bfr3epg", - "expanded_url": "http://ift.tt/1mJgTP1", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 05:30:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685332843334086657, - "text": "David Bowie - Blackstar https://t.co/VG2Bfr3epg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "IFTTT" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685333814298595329", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ift.tt/1mJgTP1", - "url": "https://t.co/VG2Bfr3epg", - "expanded_url": "http://ift.tt/1mJgTP1", - "indices": [ - 45, - 68 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "spotifynmfeedus", - "id_str": "2553073892", - "id": 2553073892, - "indices": [ - 3, - 19 - ], - "name": "spotifynewmusicUS" - } - ] - }, - "created_at": "Fri Jan 08 05:34:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "de", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685333814298595329, - "text": "RT @spotifynmfeedus: David Bowie - Blackstar https://t.co/VG2Bfr3epg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 12530, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", - "statuses_count": 13061, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/12530/1398198928", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "239453824", - "following": false, - "friends_count": 32, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thington.com", - "url": "http://t.co/GgjWLxjLHD", - "expanded_url": "http://thington.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "FF6958", - "geo_enabled": false, - "followers_count": 2204, - "location": "San Francisco", - "screen_name": "thingtonhq", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 60, - "name": "Thington", - "profile_use_background_image": false, - "description": "We're building a new way to interact with a world of connected things!", - "url": "http://t.co/GgjWLxjLHD", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", - "profile_background_color": "F5F8FA", - "created_at": "Mon Jan 17 17:21:39 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", - "favourites_count": 33, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685263027688452096", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wired.com/2016/01/americ\u2026", - "url": "https://t.co/ZydSbrfxfe", - "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "stamen", - "id_str": "2067201", - "id": 2067201, - "indices": [ - 45, - 52 - ], - "name": "Stamen Design" - } - ] - }, - "created_at": "Fri Jan 08 00:53:32 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685263027688452096, - "text": "Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685277708821991424", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wired.com/2016/01/americ\u2026", - "url": "https://t.co/ZydSbrfxfe", - "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tomcoates", - "id_str": "12514", - "id": 12514, - "indices": [ - 3, - 13 - ], - "name": "Tom Coates" - }, - { - "screen_name": "stamen", - "id_str": "2067201", - "id": 2067201, - "indices": [ - 60, - 67 - ], - "name": "Stamen Design" - } - ] - }, - "created_at": "Fri Jan 08 01:51:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685277708821991424, - "text": "RT @tomcoates: Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 239453824, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 299, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "740983", - "following": false, - "friends_count": 753, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "leade.rs", - "url": "https://t.co/K0dvCXW6PW", - "expanded_url": "http://leade.rs", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "CDCECA", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 126940, - "location": "San Francisco", - "screen_name": "loic", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8207, - "name": "Loic Le Meur", - "profile_use_background_image": false, - "description": "starting leade.rs", - "url": "https://t.co/K0dvCXW6PW", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", - "profile_background_color": "CFB895", - "created_at": "Thu Feb 01 00:10:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", - "favourites_count": 818, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "rrhoover", - "in_reply_to_user_id": 14417215, - "in_reply_to_status_id_str": "685542551747690496", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685621151964377088", - "id": 685621151964377088, - "text": "@rrhoover @dhof is it just me or that peach looks a lot like a... Ahem.... Butt?", - "in_reply_to_user_id_str": "14417215", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rrhoover", - "id_str": "14417215", - "id": 14417215, - "indices": [ - 0, - 9 - ], - "name": "Ryan Hoover" - }, - { - "screen_name": "dhof", - "id_str": "13258512", - "id": 13258512, - "indices": [ - 10, - 15 - ], - "name": "dom hofmann" - } - ] - }, - "created_at": "Sat Jan 09 00:36:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685542551747690496, - "lang": "en" - }, - "default_profile_image": false, - "id": 740983, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", - "statuses_count": 52912, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/740983/1447869110", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "44196397", - "following": false, - "friends_count": 50, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3189508, - "location": "1 AU", - "screen_name": "elonmusk", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 24234, - "name": "Elon Musk", - "profile_use_background_image": true, - "description": "Tesla, SpaceX, SolarCity & PayPal", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 02 20:12:29 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", - "favourites_count": 224, - "status": { - "retweet_count": 882, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683333695307034625", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "en.m.wikipedia.org/wiki/The_Machi\u2026", - "url": "https://t.co/0Dl4l2t6FH", - "expanded_url": "https://en.m.wikipedia.org/wiki/The_Machine_Stops", - "indices": [ - 63, - 86 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 02 17:07:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683333695307034625, - "text": "Worth reading The Machine Stops, an old story by E. M. Forster https://t.co/0Dl4l2t6FH", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3001, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 44196397, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", - "statuses_count": 1513, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1354486475", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14623181", - "following": false, - "friends_count": 505, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kelly-dunn.me", - "url": "http://t.co/AeKQOTxEx8", - "expanded_url": "http://kelly-dunn.me", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 490, - "location": "Seattle", - "screen_name": "kellyleland", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "kelly", - "profile_use_background_image": true, - "description": "Synthesizers, Various Engineering, and Avant Garde Nonsense | bit cruncher by trade, artist after hours", - "url": "http://t.co/AeKQOTxEx8", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri May 02 06:41:19 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", - "favourites_count": 8251, - "status": { - "retweet_count": 10006, - "retweeted_status": { - "retweet_count": 10006, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685188701907988480", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 245, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 739, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 433, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "type": "photo", - "indices": [ - 77, - 100 - ], - "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "display_url": "pic.twitter.com/pEaIfJMr9T", - "id_str": "685188690730192896", - "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", - "id": 685188690730192896, - "url": "https://t.co/pEaIfJMr9T" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1Jx7CnA", - "url": "https://t.co/SxHo05b7Yz", - "expanded_url": "http://bit.ly/1Jx7CnA", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 19:58:11 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685188701907988480, - "text": "The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8779, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685198486355095552", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 245, - "resize": "fit" - }, - "large": { - "w": 1024, - "h": 739, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 433, - "resize": "fit" - } - }, - "source_status_id_str": "685188701907988480", - "url": "https://t.co/pEaIfJMr9T", - "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "source_user_id_str": "1630896181", - "id_str": "685188690730192896", - "id": 685188690730192896, - "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", - "type": "photo", - "indices": [ - 91, - 114 - ], - "source_status_id": 685188701907988480, - "source_user_id": 1630896181, - "display_url": "pic.twitter.com/pEaIfJMr9T", - "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1Jx7CnA", - "url": "https://t.co/SxHo05b7Yz", - "expanded_url": "http://bit.ly/1Jx7CnA", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "vicenews", - "id_str": "1630896181", - "id": 1630896181, - "indices": [ - 3, - 12 - ], - "name": "VICE News" - } - ] - }, - "created_at": "Thu Jan 07 20:37:04 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685198486355095552, - "text": "RT @vicenews: The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14623181, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 14314, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623181/1421113433", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "995848285", - "following": false, - "friends_count": 90, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nginx.com", - "url": "http://t.co/ahz848qfrm", - "expanded_url": "http://nginx.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 24533, - "location": "San Francisco", - "screen_name": "nginx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 452, - "name": "NGINX, Inc.", - "profile_use_background_image": true, - "description": "News from NGINX, Inc., the company providing products and services on top of its renowned open source software nginx. For news about NGINX check @nginxorg", - "url": "http://t.co/ahz848qfrm", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Fri Dec 07 20:50:31 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", - "favourites_count": 451, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685570724019453952", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1K3bA2i", - "url": "https://t.co/mUGlFylkrn", - "expanded_url": "http://bit.ly/1K3bA2i", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [ - { - "indices": [ - 33, - 42 - ], - "text": "software" - } - ], - "user_mentions": [ - { - "screen_name": "InformationAge", - "id_str": "19603444", - "id": 19603444, - "indices": [ - 113, - 128 - ], - "name": "Information Age" - } - ] - }, - "created_at": "Fri Jan 08 21:16:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685570724019453952, - "text": "Everything old is new again: how #software development will come full circle in 2016 https://t.co/mUGlFylkrn via @InformationAge", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 995848285, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", - "statuses_count": 1960, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/995848285/1443504328", - "is_translator": false - }, - { - "time_zone": "Nairobi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 10800, - "id_str": "2975078105", - "following": false, - "friends_count": 12, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "iojs.org", - "url": "https://t.co/25rC8pIJ21", - "expanded_url": "https://iojs.org/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 13923, - "location": "Global", - "screen_name": "official_iojs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 414, - "name": "io.js", - "profile_use_background_image": true, - "description": "Bringing ES6 to the Node Community!", - "url": "https://t.co/25rC8pIJ21", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 12 18:18:27 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", - "favourites_count": 1167, - "status": { - "retweet_count": 26, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "656505348208001025", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/nodejs/evangel\u2026", - "url": "https://t.co/pE0BDmhyAq", - "expanded_url": "https://github.com/nodejs/evangelism/issues/179", - "indices": [ - 20, - 43 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Oct 20 16:20:46 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 656505348208001025, - "text": "Here we go again ;) https://t.co/pE0BDmhyAq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 22, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2975078105, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 341, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2975078105/1426190219", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "30923", - "following": false, - "friends_count": 744, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "randsinrepose.com", - "url": "http://t.co/wHTKjCyuT3", - "expanded_url": "http://www.randsinrepose.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 35289, - "location": "los gatos, ca", - "screen_name": "rands", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2264, - "name": "rands", - "profile_use_background_image": true, - "description": "reposing about werewolves, pens, and writing.", - "url": "http://t.co/wHTKjCyuT3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", - "profile_background_color": "022330", - "created_at": "Wed Nov 29 19:16:11 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", - "favourites_count": 154, - "status": { - "retweet_count": 42, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685550447717789696", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/briankesinger/", - "url": "https://t.co/fMDwiiT2kx", - "expanded_url": "https://www.instagram.com/briankesinger/", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:55:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685550447717789696, - "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 31, - "contributors": null, - "source": "Tweetbot for Mac" - }, - "default_profile_image": false, - "id": 30923, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 11655, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/30923/1442198088", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "7387992", - "following": false, - "friends_count": 194, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "justincampbell.me", - "url": "https://t.co/oY5xbJv61R", - "expanded_url": "http://justincampbell.me", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2634657/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "028E9B", - "geo_enabled": true, - "followers_count": 952, - "location": "Philadelphia, PA", - "screen_name": "justincampbell", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 52, - "name": "Justin Campbell", - "profile_use_background_image": true, - "description": "@hashicorp @turingcool @cs_bookclub @sc_philly @paperswelovephl", - "url": "https://t.co/oY5xbJv61R", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", - "profile_background_color": "FF7700", - "created_at": "Wed Jul 11 00:40:57 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "028E9B", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", - "favourites_count": 2238, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -80.519851, - 39.719801 - ], - [ - -74.689517, - 39.719801 - ], - [ - -74.689517, - 42.516072 - ], - [ - -80.519851, - 42.516072 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Pennsylvania, USA", - "id": "dd9c503d6c35364b", - "name": "Pennsylvania" - }, - "in_reply_to_screen_name": "McElaney", - "in_reply_to_user_id": 249150277, - "in_reply_to_status_id_str": "684900893997821952", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684901313788948480", - "id": 684901313788948480, - "text": "@McElaney Slack \u261c(\uff9f\u30ee\uff9f\u261c)", - "in_reply_to_user_id_str": "249150277", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "McElaney", - "id_str": "249150277", - "id": 249150277, - "indices": [ - 0, - 9 - ], - "name": "Brian E. McElaney" - } - ] - }, - "created_at": "Thu Jan 07 00:56:12 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684900893997821952, - "lang": "ja" - }, - "default_profile_image": false, - "id": 7387992, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2634657/bg.gif", - "statuses_count": 8351, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7387992/1433941401", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "778518", - "following": false, - "friends_count": 397, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "progrium.com", - "url": "http://t.co/PviVbZYkA3", - "expanded_url": "http://progrium.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 6414, - "location": "Austin, TX", - "screen_name": "progrium", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 357, - "name": "Jeff Lindsay", - "profile_use_background_image": true, - "description": "Systems. Metal. Platforms. Design. Creator: Dokku, Webhooks, RequestBin, Hacker Dojo, Localtunnel, SuperHappyDevHouse. Founder: @gliderlabs", - "url": "http://t.co/PviVbZYkA3", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Sun Feb 18 09:41:22 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", - "favourites_count": 1488, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "cgenco", - "in_reply_to_user_id": 5437912, - "in_reply_to_status_id_str": "685580357232504832", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685621697215504385", - "id": 685621697215504385, - "text": "@cgenco @opendeis Depends on your needs!", - "in_reply_to_user_id_str": "5437912", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "cgenco", - "id_str": "5437912", - "id": 5437912, - "indices": [ - 0, - 7 - ], - "name": "Christian Genco" - }, - { - "screen_name": "opendeis", - "id_str": "1578016110", - "id": 1578016110, - "indices": [ - 8, - 17 - ], - "name": "Deis" - } - ] - }, - "created_at": "Sat Jan 09 00:38:45 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685580357232504832, - "lang": "en" - }, - "default_profile_image": false, - "id": 778518, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 11529, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/778518/1439089812", - "is_translator": false - }, - { - "time_zone": "Buenos Aires", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "77909615", - "following": false, - "friends_count": 2319, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tryolabs.com", - "url": "https://t.co/yDkqOVMoPH", - "expanded_url": "http://www.tryolabs.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 11880, - "location": "San Francisco | Uruguay", - "screen_name": "tryolabs", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 376, - "name": "Tryolabs", - "profile_use_background_image": true, - "description": "Hi-tech Boutique Dev Shop focused on SV & NYC Startups. Python ecosystem, JS, iOS, NLP & Machine Learning specialists. Creators of @MonkeyLearn.", - "url": "https://t.co/yDkqOVMoPH", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 28 03:09:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", - "favourites_count": 20614, - "status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685579492614631428", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 96, - "resize": "fit" - }, - "large": { - "w": 800, - "h": 226, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 169, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", - "display_url": "pic.twitter.com/Fk3brZmoTf", - "id_str": "685579492513955840", - "expanded_url": "http://twitter.com/tryolabs/status/685579492614631428/photo/1", - "id": 685579492513955840, - "url": "https://t.co/Fk3brZmoTf" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1ZfpACc", - "url": "https://t.co/VNzbh6CpJA", - "expanded_url": "http://buff.ly/1ZfpACc", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [ - { - "indices": [ - 43, - 59 - ], - "text": "MachineLearning" - } - ], - "user_mentions": [ - { - "screen_name": "genekogan", - "id_str": "51757957", - "id": 51757957, - "indices": [ - 94, - 104 - ], - "name": "Gene Kogan" - } - ] - }, - "created_at": "Fri Jan 08 21:51:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685579492614631428, - "text": "Very interesting & engaging article on #MachineLearning + Art: https://t.co/VNzbh6CpJA by @genekogan https://t.co/Fk3brZmoTf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 77909615, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", - "statuses_count": 1400, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/77909615/1437011861", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "111767172", - "following": false, - "friends_count": 70, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 313, - "location": "Philadelphia, PA", - "screen_name": "nick_kapur", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 29, - "name": "Nick Kapur", - "profile_use_background_image": true, - "description": "Historian of modern Japan and East Asia. I only tweet extremely interesting things. No photos of my lunch and no selfies, not ever.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Feb 06 02:34:40 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", - "favourites_count": 6736, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685494137613754368", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/LIJdheem1h", - "url": "https://t.co/LIJdheem1h", - "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", - "indices": [ - 12, - 35 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:11:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685494137613754368, - "text": "i love cats https://t.co/LIJdheem1h", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685519035979677696", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/LIJdheem1h", - "url": "https://t.co/LIJdheem1h", - "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", - "indices": [ - 25, - 48 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "on3ness", - "id_str": "124548700", - "id": 124548700, - "indices": [ - 3, - 11 - ], - "name": "br\u00f8seph" - } - ] - }, - "created_at": "Fri Jan 08 17:50:49 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685519035979677696, - "text": "RT @on3ness: i love cats https://t.co/LIJdheem1h", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 111767172, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4392, - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "14247654", - "following": false, - "friends_count": 5000, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "contino.co.uk", - "url": "http://t.co/7ioXHyid9F", - "expanded_url": "http://www.contino.co.uk", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2521, - "location": "London, UK", - "screen_name": "benjaminwootton", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 141, - "name": "Benjamin Wootton", - "profile_use_background_image": true, - "description": "Co-Founder of Contino, a DevOps & Continuous Delivery consultancy from the UK", - "url": "http://t.co/7ioXHyid9F", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Fri Mar 28 22:44:56 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", - "favourites_count": 1063, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683332087588503552", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "medium": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 270, - "h": 200, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "type": "photo", - "indices": [ - 117, - 140 - ], - "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "display_url": "pic.twitter.com/DabsPkV0tE", - "id_str": "683332087483641857", - "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", - "id": 683332087483641857, - "url": "https://t.co/DabsPkV0tE" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1RzZhSD", - "url": "https://t.co/qLPUnqP9Ly", - "expanded_url": "http://buff.ly/1RzZhSD", - "indices": [ - 93, - 116 - ] - } - ], - "hashtags": [ - { - "indices": [ - 30, - 37 - ], - "text": "DevOps" - } - ], - "user_mentions": [ - { - "screen_name": "paul", - "id_str": "1140", - "id": 1140, - "indices": [ - 86, - 91 - ], - "name": "Paul Rollo" - } - ] - }, - "created_at": "Sat Jan 02 17:00:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683332087588503552, - "text": "\"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly https://t.co/DabsPkV0tE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Buffer" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685368907327270912", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "medium": { - "w": 270, - "h": 200, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 270, - "h": 200, - "resize": "fit" - } - }, - "source_status_id_str": "683332087588503552", - "url": "https://t.co/DabsPkV0tE", - "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "source_user_id_str": "398365705", - "id_str": "683332087483641857", - "id": 683332087483641857, - "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 683332087588503552, - "source_user_id": 398365705, - "display_url": "pic.twitter.com/DabsPkV0tE", - "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "buff.ly/1RzZhSD", - "url": "https://t.co/qLPUnqP9Ly", - "expanded_url": "http://buff.ly/1RzZhSD", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [ - { - "indices": [ - 48, - 55 - ], - "text": "DevOps" - } - ], - "user_mentions": [ - { - "screen_name": "manupaisable", - "id_str": "398365705", - "id": 398365705, - "indices": [ - 3, - 16 - ], - "name": "Manuel Pais" - }, - { - "screen_name": "paul", - "id_str": "1140", - "id": 1140, - "indices": [ - 104, - 109 - ], - "name": "Paul Rollo" - } - ] - }, - "created_at": "Fri Jan 08 07:54:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685368907327270912, - "text": "RT @manupaisable: \"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly http\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 14247654, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 2827, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "35242212", - "following": false, - "friends_count": 201, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 95, - "location": "Boston, MA", - "screen_name": "macdiesel412", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 9, - "name": "Brian Beggs", - "profile_use_background_image": false, - "description": "I write software and think BIG. XMPP, MongoDB, NoSQL, Data Analytics, cycling, skiing, edX", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sat Apr 25 16:00:27 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", - "favourites_count": 23, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Expedia", - "in_reply_to_user_id": 17365848, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "677166680196390913", - "id": 677166680196390913, - "text": "@Expedia Now your support hung up on me, won't let me change flight. What gives? This service is awful!", - "in_reply_to_user_id_str": "17365848", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Expedia", - "id_str": "17365848", - "id": 17365848, - "indices": [ - 0, - 8 - ], - "name": "Expedia" - } - ] - }, - "created_at": "Wed Dec 16 16:41:32 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 35242212, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 420, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14961286", - "following": false, - "friends_count": 948, - "entities": { - "description": { - "urls": [ - { - "display_url": "erinjorichey.com", - "url": "https://t.co/bUIMCWrbnW", - "expanded_url": "http://erinjorichey.com", - "indices": [ - 121, - 144 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "erinjo.xyz", - "url": "https://t.co/zWMM8cNTsz", - "expanded_url": "http://erinjo.xyz", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", - "notifications": false, - "profile_sidebar_fill_color": "E4DACE", - "profile_link_color": "DB2E2E", - "geo_enabled": true, - "followers_count": 2265, - "location": "San Francisco, CA", - "screen_name": "erinjo", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 270, - "name": "Erin Jo Richey", - "profile_use_background_image": true, - "description": "Co-founder of @withknown. Information choreographer. User experience strategist. Oregonian. Building an open social web. https://t.co/bUIMCWrbnW", - "url": "https://t.co/zWMM8cNTsz", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", - "profile_background_color": "FCFCFC", - "created_at": "Sat May 31 06:45:28 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", - "favourites_count": 723, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684958057806180352", - "id": 684958057806180352, - "text": "Walking home from the grocery store just now and got pummeled by small hail. \ud83c\udf27\u2614\ufe0f", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 04:41:41 +0000 2016", - "source": "Erin's Idno", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14961286, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", - "statuses_count": 8880, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14961286/1399013710", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "258924364", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "andyetconf.com", - "url": "http://t.co/8cCQxfuIhl", - "expanded_url": "http://andyetconf.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/285931472/patternpants.png", - "notifications": false, - "profile_sidebar_fill_color": "EBEBEB", - "profile_link_color": "0099B0", - "geo_enabled": false, - "followers_count": 1258, - "location": "October 6\u20138 in Richland, WA", - "screen_name": "AndyetConf", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 87, - "name": "&yetConf", - "profile_use_background_image": true, - "description": "Conf about the intersections of tech, humanity, meaning, & ethics for people who believe the world should be better and are determined to make it so.\n\n\u2014@andyet", - "url": "http://t.co/8cCQxfuIhl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", - "profile_background_color": "202020", - "created_at": "Mon Feb 28 20:09:25 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "757575", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", - "favourites_count": 824, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mmatuzak", - "in_reply_to_user_id": 10749432, - "in_reply_to_status_id_str": "684082741512515584", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684084002504900608", - "id": 684084002504900608, - "text": "@mmatuzak @obensource Yay @ADVUnderground!", - "in_reply_to_user_id_str": "10749432", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mmatuzak", - "id_str": "10749432", - "id": 10749432, - "indices": [ - 0, - 9 - ], - "name": "matuzi" - }, - { - "screen_name": "obensource", - "id_str": "407296703", - "id": 407296703, - "indices": [ - 10, - 21 - ], - "name": "Ben Michel" - }, - { - "screen_name": "ADVUnderground", - "id_str": "2149984081", - "id": 2149984081, - "indices": [ - 26, - 41 - ], - "name": "ADV Underground" - } - ] - }, - "created_at": "Mon Jan 04 18:48:30 +0000 2016", - "source": "Tweetbot for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684082741512515584, - "lang": "und" - }, - "default_profile_image": false, - "id": 258924364, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/285931472/patternpants.png", - "statuses_count": 1505, - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "153026017", - "following": false, - "friends_count": 108, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/paulohp", - "url": "https://t.co/TH0JsQaz8h", - "expanded_url": "http://github.com/paulohp", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", - "notifications": false, - "profile_sidebar_fill_color": "FCA241", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 418, - "location": "Belo Horizonte, Brazil", - "screen_name": "paulo_hp", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 19, - "name": "Paulo Pires (\u2310\u25a0_\u25a0)", - "profile_use_background_image": true, - "description": "programmer. @bower team member. hacking listening sertanejo.", - "url": "https://t.co/TH0JsQaz8h", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", - "profile_background_color": "BCCDD6", - "created_at": "Mon Jun 07 14:00:10 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "pt", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", - "favourites_count": 562, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "rodrigo_ea", - "in_reply_to_user_id": 55245797, - "in_reply_to_status_id_str": "685272876338032640", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685276627618689024", - "id": 685276627618689024, - "text": "@rodrigo_ea @ray_ban \u00e9, o customizado :\\ mas o mais triste \u00e9 a falta de comunica\u00e7\u00e3o mesmo. Sabe como \u00e9 n\u00e9.", - "in_reply_to_user_id_str": "55245797", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rodrigo_ea", - "id_str": "55245797", - "id": 55245797, - "indices": [ - 0, - 11 - ], - "name": "Rodrigo Antinarelli" - }, - { - "screen_name": "ray_ban", - "id_str": "234264720", - "id": 234264720, - "indices": [ - 12, - 20 - ], - "name": "Ray-Ban" - } - ] - }, - "created_at": "Fri Jan 08 01:47:34 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685272876338032640, - "lang": "pt" - }, - "default_profile_image": false, - "id": 153026017, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", - "statuses_count": 5668, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/153026017/1433120246", - "is_translator": false - }, - { - "time_zone": "Lisbon", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "6477652", - "following": false, - "friends_count": 807, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "trodrigues.net", - "url": "https://t.co/MEu7qSJfMY", - "expanded_url": "http://trodrigues.net", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": false, - "followers_count": 1919, - "location": "Berlin", - "screen_name": "trodrigues", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 126, - "name": "Tiago Rodrigues", - "profile_use_background_image": false, - "description": "I tweet about things you might not like such as JS, feminism, music, coffee, open source, cats and video games. Semicolon removal expert at Contentful", - "url": "https://t.co/MEu7qSJfMY", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Thu May 31 17:09:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", - "favourites_count": 1086, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "marciana", - "in_reply_to_user_id": 1813001, - "in_reply_to_status_id_str": "685501356732510208", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685502766173843456", - "id": 685502766173843456, - "text": "@marciana tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a v", - "in_reply_to_user_id_str": "1813001", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "marciana", - "id_str": "1813001", - "id": 1813001, - "indices": [ - 0, - 9 - ], - "name": "Irrita" - } - ] - }, - "created_at": "Fri Jan 08 16:46:10 +0000 2016", - "source": "Fenix for Android", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685501356732510208, - "lang": "pt" - }, - "default_profile_image": false, - "id": 6477652, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 68450, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6477652/1410026369", - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "10840182", - "following": false, - "friends_count": 88, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mundoopensource.com.br", - "url": "http://t.co/AyVbZvEevz", - "expanded_url": "http://www.mundoopensource.com.br", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 220, - "location": "Canoas, RS", - "screen_name": "mhterres", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 15, - "name": "Marcelo Terres", - "profile_use_background_image": true, - "description": "Sysadmin Linux, com foco em VoIP e XMPP, f\u00e3 de comics, apreciador de uma boa cerveja e metido a cozinheiro e homebrewer nas horas vagas ;-)", - "url": "http://t.co/AyVbZvEevz", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 04 15:18:08 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "pt", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", - "favourites_count": 11, - "status": { - "retweet_count": 18, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 18, - "truncated": false, - "retweeted": false, - "id_str": "684096178456236032", - "id": 684096178456236032, - "text": "Happy 17th birthday, Jabber! #xmpp", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 29, - 34 - ], - "text": "xmpp" - } - ], - "user_mentions": [] - }, - "created_at": "Mon Jan 04 19:36:53 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 17, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "684112189297393665", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 41, - 46 - ], - "text": "xmpp" - } - ], - "user_mentions": [ - { - "screen_name": "ralphm", - "id_str": "2426271", - "id": 2426271, - "indices": [ - 3, - 10 - ], - "name": "Ralph Meijer" - } - ] - }, - "created_at": "Mon Jan 04 20:40:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684112189297393665, - "text": "RT @ralphm: Happy 17th birthday, Jabber! #xmpp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 10840182, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3011, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10840182/1448740364", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "2557527470", - "following": false, - "friends_count": 462, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "opensource.cisco.com", - "url": "https://t.co/XHlFibsKyg", - "expanded_url": "http://opensource.cisco.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 1022, - "location": "", - "screen_name": "TrailsAndTech", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 50, - "name": "Jen Hollingsworth", - "profile_use_background_image": false, - "description": "SW Strategy @ Cisco. Lover of: Tech, #OpenSource, Cloud Stuff, Passionate People & the Outdoors. Haven't met a trail, #CarboPro product or taco I didn't like.", - "url": "https://t.co/XHlFibsKyg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Jun 09 21:07:05 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", - "favourites_count": 2178, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "vCloudernBeer", - "in_reply_to_user_id": 830411028, - "in_reply_to_status_id_str": "685554373628424192", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685560135716966400", - "id": 685560135716966400, - "text": "@vCloudernBeer YES!!!! :)", - "in_reply_to_user_id_str": "830411028", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "vCloudernBeer", - "id_str": "830411028", - "id": 830411028, - "indices": [ - 0, - 14 - ], - "name": "Anthony Chow" - } - ] - }, - "created_at": "Fri Jan 08 20:34:08 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685554373628424192, - "lang": "und" - }, - "default_profile_image": false, - "id": 2557527470, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1371, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2557527470/1405046981", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "227050193", - "following": false, - "friends_count": 524, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "withknown.com", - "url": "http://t.co/qDJMKyeC7F", - "expanded_url": "http://withknown.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "9F111A", - "geo_enabled": false, - "followers_count": 1412, - "location": "San Francisco, CA", - "screen_name": "withknown", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 83, - "name": "Known", - "profile_use_background_image": false, - "description": "Publish on your own site, and share with audiences across the web. Part of @mattervc's third class. #indieweb #reclaimyourdomain", - "url": "http://t.co/qDJMKyeC7F", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", - "profile_background_color": "880000", - "created_at": "Wed Dec 15 19:45:51 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "880000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", - "favourites_count": 558, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "AngeloFrangione", - "in_reply_to_user_id": 334592526, - "in_reply_to_status_id_str": "685557584527376384", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685610856613216256", - "id": 685610856613216256, - "text": "@AngeloFrangione We're working on integrating a translation framework. We want everyone to be able to use Known!", - "in_reply_to_user_id_str": "334592526", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AngeloFrangione", - "id_str": "334592526", - "id": 334592526, - "indices": [ - 0, - 16 - ], - "name": "Angelo" - } - ] - }, - "created_at": "Fri Jan 08 23:55:40 +0000 2016", - "source": "Known Stream", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685557584527376384, - "lang": "en" - }, - "default_profile_image": false, - "id": 227050193, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1070, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/227050193/1423650405", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "981101", - "following": false, - "friends_count": 2074, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bengo.is", - "url": "https://t.co/d3tx42Owqt", - "expanded_url": "http://bengo.is", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", - "notifications": false, - "profile_sidebar_fill_color": "333333", - "profile_link_color": "18ADF6", - "geo_enabled": true, - "followers_count": 1033, - "location": "San Francisco, CA", - "screen_name": "bengo", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 81, - "name": "Benjamin Goering", - "profile_use_background_image": true, - "description": "Founding Engineer @Livefyre. Open. Stoic Situationist. \u2665 reading, philosophy, open web, (un)logic, AI, sports, and edm. Kansan gone Cali.", - "url": "https://t.co/d3tx42Owqt", - "profile_text_color": "636363", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", - "profile_background_color": "CCCCCC", - "created_at": "Mon Mar 12 03:55:06 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", - "favourites_count": 964, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685580750448508928", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", - "type": "photo", - "indices": [ - 84, - 107 - ], - "media_url": "http://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", - "display_url": "pic.twitter.com/LTYVklmUyg", - "id_str": "685580750377205760", - "expanded_url": "http://twitter.com/bengo/status/685580750448508928/photo/1", - "id": 685580750377205760, - "url": "https://t.co/LTYVklmUyg" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "itun.es/us/0CoK2.c?i=3\u2026", - "url": "https://t.co/zQ3UB0Dhiy", - "expanded_url": "https://itun.es/us/0CoK2.c?i=359766164", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "thenewstack", - "id_str": "2327560616", - "id": 2327560616, - "indices": [ - 71, - 83 - ], - "name": "The New Stack" - } - ] - }, - "created_at": "Fri Jan 08 21:56:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685580750448508928, - "text": "Check out this cool episode: https://t.co/zQ3UB0Dhiy \"Keep Node Weird\" @thenewstack https://t.co/LTYVklmUyg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 981101, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", - "statuses_count": 5799, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/981101/1353910636", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "321162442", - "following": false, - "friends_count": 143, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 26, - "location": "", - "screen_name": "mattyindustries", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "name": "Mathew Archibald", - "profile_use_background_image": true, - "description": "Linux Sysadmin at Toyota Australia", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 21 03:43:14 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", - "favourites_count": 44, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "EtihadStadiumAU", - "in_reply_to_user_id": 152837019, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "630298486664097793", - "id": 630298486664097793, - "text": "@EtihadStadiumAU kick to kick still on after #AFLSaintsFreo?", - "in_reply_to_user_id_str": "152837019", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 45, - 59 - ], - "text": "AFLSaintsFreo" - } - ], - "user_mentions": [ - { - "screen_name": "EtihadStadiumAU", - "id_str": "152837019", - "id": 152837019, - "indices": [ - 0, - 16 - ], - "name": "Etihad Stadium" - } - ] - }, - "created_at": "Sun Aug 09 08:44:04 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 321162442, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 39, - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "2402568709", - "following": false, - "friends_count": 17541, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "reeldx.com", - "url": "http://t.co/GqPJuzOYMV", - "expanded_url": "http://www.reeldx.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 21102, - "location": "Vancouver, WA", - "screen_name": "andrewreeldx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 518, - "name": "Andrew Richards", - "profile_use_background_image": true, - "description": "Co-Founder & CTO @ ReelDx, Technologist, Brewer, Runner, Coder", - "url": "http://t.co/GqPJuzOYMV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 22 03:27:50 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", - "favourites_count": 2991, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685609079771774976", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/cancergeek/sta\u2026", - "url": "https://t.co/tWEoIh9Mwi", - "expanded_url": "https://twitter.com/cancergeek/status/685571019667423232", - "indices": [ - 42, - 65 - ] - } - ], - "hashtags": [ - { - "indices": [ - 34, - 40 - ], - "text": "jpm16" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:48:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685609079771774976, - "text": "Liberate data? That's how we roll #jpm16 https://t.co/tWEoIh9Mwi", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2402568709, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3400, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2402568709/1411424123", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14110325", - "following": false, - "friends_count": 1108, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "soundcloud.com/jay-holler", - "url": "https://t.co/Dn5Q3Kk7jo", - "expanded_url": "https://soundcloud.com/jay-holler", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "89C9FA", - "geo_enabled": true, - "followers_count": 1109, - "location": "California, USA", - "screen_name": "jayholler", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Jay Holler", - "profile_use_background_image": false, - "description": "Eventually Sol will expand to consume everything anyone has ever known, created, or recorded.", - "url": "https://t.co/Dn5Q3Kk7jo", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", - "profile_background_color": "1A1B1F", - "created_at": "Mon Mar 10 00:14:55 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", - "favourites_count": 17301, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685629837269020674", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/KTVU/status/68\u2026", - "url": "https://t.co/iJrmieeMwr", - "expanded_url": "https://twitter.com/KTVU/status/685619144683724800", - "indices": [ - 12, - 35 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:11:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685629837269020674, - "text": "Kidnapping! https://t.co/iJrmieeMwr", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 14110325, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", - "statuses_count": 33903, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14110325/1452192763", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "126030998", - "following": false, - "friends_count": 542, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "0xabad1dea.github.io", - "url": "https://t.co/cZmmxZ39G9", - "expanded_url": "http://0xabad1dea.github.io/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 20122, - "location": "@veracode", - "screen_name": "0xabad1dea", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 877, - "name": "Melissa \u2407 \u2b50\ufe0f", - "profile_use_background_image": true, - "description": "Infosec supervillain, insufferable SJW, and twitter witch whose very name causes systems to crash. Fortune favors those who do the math. she/her; I \u2666\ufe0f @m1sp.", - "url": "https://t.co/cZmmxZ39G9", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Mar 24 16:31:05 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", - "favourites_count": 2962, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "livebeef", - "in_reply_to_user_id": 2423425960, - "in_reply_to_status_id_str": "685629875017900032", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685630096586207238", - "id": 685630096586207238, - "text": "@livebeef well, that\u2019s his thing, yes, extreme pandering, like Trump but I think that\u2019s his real hair", - "in_reply_to_user_id_str": "2423425960", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "livebeef", - "id_str": "2423425960", - "id": 2423425960, - "indices": [ - 0, - 9 - ], - "name": "Curious Reptilian" - } - ] - }, - "created_at": "Sat Jan 09 01:12:08 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685629875017900032, - "lang": "en" - }, - "default_profile_image": false, - "id": 126030998, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", - "statuses_count": 133972, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/126030998/1348018700", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "24718762", - "following": false, - "friends_count": 388, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": false, - "followers_count": 268, - "location": "", - "screen_name": "unixgeekem", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 26, - "name": "Emily Gladstone Cole", - "profile_use_background_image": true, - "description": "UNIX and Security Admin, baseball fan, singer, dancer, actor, voracious reader, student. Opinions are my own and not my employer's.", - "url": null, - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Mon Mar 16 16:23:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", - "favourites_count": 1739, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685593188971642880", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/RobotHugsComic\u2026", - "url": "https://t.co/SbF9JovOfO", - "expanded_url": "https://twitter.com/RobotHugsComic/status/674961985059074048", - "indices": [ - 6, - 29 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:45:28 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593188971642880, - "text": "This. https://t.co/SbF9JovOfO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 24718762, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "statuses_count": 2163, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/24718762/1364947598", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14071087", - "following": false, - "friends_count": 1254, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C9E6A3", - "profile_link_color": "C200E0", - "geo_enabled": true, - "followers_count": 375, - "location": "New York, NY", - "screen_name": "ineverthink", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 18, - "name": "Chris Handy", - "profile_use_background_image": true, - "description": "Devops, Systems thinker, not just technical. Works at @workmarket, formerly @condenast", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", - "profile_background_color": "8A698A", - "created_at": "Mon Mar 03 03:50:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "6A0B8A", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", - "favourites_count": 492, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "skamille", - "in_reply_to_user_id": 24257941, - "in_reply_to_status_id_str": "685106932512854016", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685169500887629824", - "id": 685169500887629824, - "text": "@skamille might want to look into @WorkMarket", - "in_reply_to_user_id_str": "24257941", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "skamille", - "id_str": "24257941", - "id": 24257941, - "indices": [ - 0, - 9 - ], - "name": "Camille Fournier" - }, - { - "screen_name": "WorkMarket", - "id_str": "154696373", - "id": 154696373, - "indices": [ - 34, - 45 - ], - "name": "Work Market" - } - ] - }, - "created_at": "Thu Jan 07 18:41:53 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685106932512854016, - "lang": "en" - }, - "default_profile_image": false, - "id": 14071087, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", - "statuses_count": 2151, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1164839209", - "following": false, - "friends_count": 2, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nodesecurity.io", - "url": "https://t.co/McA4uRwQAL", - "expanded_url": "http://nodesecurity.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 6918, - "location": "", - "screen_name": "nodesecurity", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 295, - "name": "Node.js Security", - "profile_use_background_image": true, - "description": "Advisories, news & libraries focused on Node.js security - Sponsored by @andyet, Organized by @liftsecurity", - "url": "https://t.co/McA4uRwQAL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Feb 10 03:43:44 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", - "favourites_count": 104, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "mountain_ghosts", - "in_reply_to_user_id": 13861042, - "in_reply_to_status_id_str": "685190823084986369", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685191592567701504", - "id": 685191592567701504, - "text": "@mountain_ghosts @3rdeden We added the information we received to the top of the advisory. See the linked gist.", - "in_reply_to_user_id_str": "13861042", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "mountain_ghosts", - "id_str": "13861042", - "id": 13861042, - "indices": [ - 0, - 16 - ], - "name": "\u2200a: \u223c Sa = 0" - }, - { - "screen_name": "3rdEden", - "id_str": "14350255", - "id": 14350255, - "indices": [ - 17, - 25 - ], - "name": "Arnout Kazemier" - } - ] - }, - "created_at": "Thu Jan 07 20:09:40 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685190823084986369, - "lang": "en" - }, - "default_profile_image": false, - "id": 1164839209, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 356, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2883370235", - "following": false, - "friends_count": 5040, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bit.ly/11hQZa8", - "url": "http://t.co/waaWKCIqia", - "expanded_url": "http://bit.ly/11hQZa8", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7769, - "location": "", - "screen_name": "NodeJSRR", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 113, - "name": "Node JS", - "profile_use_background_image": true, - "description": "Live Content Curated by top Node JS Influencers. Moderated by @hardeepmonty.", - "url": "http://t.co/waaWKCIqia", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed Nov 19 00:20:03 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", - "favourites_count": 11, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685615042750840833", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPLP4EUAAAqK0r.jpg", - "type": "photo", - "indices": [ - 53, - 76 - ], - "media_url": "http://pbs.twimg.com/media/CYPLP4EUAAAqK0r.jpg", - "display_url": "pic.twitter.com/2n5natiUfu", - "id_str": "685615041899397120", - "expanded_url": "http://twitter.com/NodeJSRR/status/685615042750840833/photo/1", - "id": 685615041899397120, - "url": "https://t.co/2n5natiUfu" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "rightrelevance.com/search/article\u2026", - "url": "https://t.co/re3CxcMpKD", - "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=038f1f7617ab6218faee8e9de31593bd0cc174e6&query=node%20js&taccount=nodejsrr", - "indices": [ - 29, - 52 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:12:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685615042750840833, - "text": "Mongoose 2015 Year in Review https://t.co/re3CxcMpKD https://t.co/2n5natiUfu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "RRPostingApp" - }, - "default_profile_image": false, - "id": 2883370235, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3311, - "is_translator": false - }, - { - "time_zone": "Wellington", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 46800, - "id_str": "136933779", - "following": false, - "friends_count": 360, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dominictarr.com", - "url": "http://t.co/dLMAgM9U90", - "expanded_url": "http://dominictarr.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "404099", - "geo_enabled": true, - "followers_count": 3915, - "location": "Planet Earth", - "screen_name": "dominictarr", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 229, - "name": "Dominic Tarr", - "profile_use_background_image": false, - "description": "opinioneer", - "url": "http://t.co/dLMAgM9U90", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", - "profile_background_color": "F0F0F0", - "created_at": "Sun Apr 25 09:11:58 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", - "favourites_count": 1513, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 12241752, - "possibly_sensitive": false, - "id_str": "683456176609083392", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "github.com/maxogden/dat/w\u2026", - "url": "https://t.co/qxj2MAOd76", - "expanded_url": "https://github.com/maxogden/dat/wiki/replication-protocols#couchdb", - "indices": [ - 66, - 89 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "denormalize", - "id_str": "12241752", - "id": 12241752, - "indices": [ - 0, - 12 - ], - "name": "maxwell ogden" - } - ] - }, - "created_at": "Sun Jan 03 01:13:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "12241752", - "place": null, - "in_reply_to_screen_name": "denormalize", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683456176609083392, - "text": "@denormalize hey I added some stuff to your data replication wiki\nhttps://t.co/qxj2MAOd76", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 136933779, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6487, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/136933779/1435856217", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "113419064", - "following": false, - "friends_count": 18, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "golang.org", - "url": "http://t.co/C4svVTkUmj", - "expanded_url": "http://golang.org/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 36535, - "location": "", - "screen_name": "golang", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1020, - "name": "Go", - "profile_use_background_image": true, - "description": "Go will make you love programming again. I promise.", - "url": "http://t.co/C4svVTkUmj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Feb 11 18:04:38 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", - "favourites_count": 203, - "status": { - "retweet_count": 110, - "retweeted_status": { - "retweet_count": 110, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677646473484509186", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 428, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 250, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 142, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "type": "photo", - "indices": [ - 102, - 125 - ], - "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "display_url": "pic.twitter.com/F5t4jUEiRX", - "id_str": "677646437056978944", - "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", - "id": 677646437056978944, - "url": "https://t.co/F5t4jUEiRX" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 94, - 101 - ], - "text": "golang" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Dec 18 00:28:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677646473484509186, - "text": "Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 124, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677681669638373376", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 428, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 250, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 142, - "resize": "fit" - } - }, - "source_status_id_str": "677646473484509186", - "url": "https://t.co/F5t4jUEiRX", - "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "source_user_id_str": "650013", - "id_str": "677646437056978944", - "id": 677646437056978944, - "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "source_status_id": 677646473484509186, - "source_user_id": 650013, - "display_url": "pic.twitter.com/F5t4jUEiRX", - "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 108, - 115 - ], - "text": "golang" - } - ], - "user_mentions": [ - { - "screen_name": "bradfitz", - "id_str": "650013", - "id": 650013, - "indices": [ - 3, - 12 - ], - "name": "Brad Fitzpatrick" - } - ] - }, - "created_at": "Fri Dec 18 02:47:55 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677681669638373376, - "text": "RT @bradfitz: Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 113419064, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1931, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/113419064/1398369112", - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "114477539", - "following": false, - "friends_count": 303, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dribbble.com/stephane_martin", - "url": "http://t.co/2hbatAQEMF", - "expanded_url": "http://dribbble.com/stephane_martin", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2980B9", - "geo_enabled": false, - "followers_count": 2981, - "location": "France", - "screen_name": "stephane_m_", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 115, - "name": "St\u00e9phane Martin", - "profile_use_background_image": false, - "description": "Half human, half geek. Currently Sr product designer at @StackOverflow (former @efounders) I love getting things done, I believe in minimalism and wine.", - "url": "http://t.co/2hbatAQEMF", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", - "profile_background_color": "D7DCE0", - "created_at": "Mon Feb 15 15:07:00 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", - "favourites_count": 540, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 16205746, - "possibly_sensitive": false, - "id_str": "685116838418722816", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 230, - "h": 319, - "resize": "fit" - }, - "medium": { - "w": 230, - "h": 319, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 230, - "h": 319, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", - "type": "photo", - "indices": [ - 50, - 73 - ], - "media_url": "http://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", - "display_url": "pic.twitter.com/1CDvfNJ2it", - "id_str": "685116837076582400", - "expanded_url": "http://twitter.com/stephane_m_/status/685116838418722816/photo/1", - "id": 685116837076582400, - "url": "https://t.co/1CDvfNJ2it" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "alexlmiller", - "id_str": "16205746", - "id": 16205746, - "indices": [ - 0, - 12 - ], - "name": "Alex Miller" - }, - { - "screen_name": "hellohynes", - "id_str": "14475889", - "id": 14475889, - "indices": [ - 13, - 24 - ], - "name": "Joshua Hynes" - } - ] - }, - "created_at": "Thu Jan 07 15:12:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "16205746", - "place": null, - "in_reply_to_screen_name": "alexlmiller", - "in_reply_to_status_id_str": "685111393784233984", - "truncated": false, - "id": 685116838418722816, - "text": "@alexlmiller @hellohynes Wasn't disappointed too: https://t.co/1CDvfNJ2it", - "coordinates": null, - "in_reply_to_status_id": 685111393784233984, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 114477539, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 994, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "138513072", - "following": false, - "friends_count": 54, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A6E6AC", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 40, - "location": "Portland, OR", - "screen_name": "cdaringe", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Chris Dieringer", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", - "profile_background_color": "329C40", - "created_at": "Thu Apr 29 19:29:29 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "9FC2A3", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", - "favourites_count": 49, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 14278727, - "possibly_sensitive": false, - "id_str": "679054290430787584", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "inkandfeet.com/how-to-use-a-g\u2026", - "url": "https://t.co/CSfKwrPXIy", - "expanded_url": "http://inkandfeet.com/how-to-use-a-generic-usb-20-10100m-ethernet-adaptor-rd9700-on-mac-os-1011-el-capitan", - "indices": [ - 21, - 44 - ] - }, - { - "display_url": "realtek.com/DOWNLOADS/down\u2026", - "url": "https://t.co/MXKy0tG3e9", - "expanded_url": "http://www.realtek.com/DOWNLOADS/downloadsView.aspx?Langid=1&PNid=14&PFid=55&Level=5&Conn=4&DownTypeID=3&GetDown=false", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "skoczen", - "id_str": "14278727", - "id": 14278727, - "indices": [ - 0, - 8 - ], - "name": "Steven Skoczen" - } - ] - }, - "created_at": "Mon Dec 21 21:42:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "14278727", - "place": null, - "in_reply_to_screen_name": "skoczen", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679054290430787584, - "text": "@skoczen, in ref to https://t.co/CSfKwrPXIy, realtek released a new driver for el cap that requires no sys edits: https://t.co/MXKy0tG3e9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 138513072, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 68, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "650013", - "following": false, - "friends_count": 542, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bradfitz.com", - "url": "http://t.co/AjdAkBY0iG", - "expanded_url": "http://bradfitz.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "BFA446", - "geo_enabled": true, - "followers_count": 17909, - "location": "San Francisco, CA", - "screen_name": "bradfitz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1004, - "name": "Brad Fitzpatrick", - "profile_use_background_image": false, - "description": "hacker, traveler, runner, optimist, gopher", - "url": "http://t.co/AjdAkBY0iG", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jan 16 23:05:57 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", - "favourites_count": 8369, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "tigahill", - "in_reply_to_user_id": 930826154, - "in_reply_to_status_id_str": "685602642395963392", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685603912133414912", - "id": 685603912133414912, - "text": "@tigahill @JohnLegere @EFF But not very media savvy, apparently. I'd love to read his actual accusations, if he can be calm for a second.", - "in_reply_to_user_id_str": "930826154", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tigahill", - "id_str": "930826154", - "id": 930826154, - "indices": [ - 0, - 9 - ], - "name": "LaTeigra Cahill" - }, - { - "screen_name": "JohnLegere", - "id_str": "1394399438", - "id": 1394399438, - "indices": [ - 10, - 21 - ], - "name": "John Legere" - }, - { - "screen_name": "EFF", - "id_str": "4816", - "id": 4816, - "indices": [ - 22, - 26 - ], - "name": "EFF" - } - ] - }, - "created_at": "Fri Jan 08 23:28:05 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685602642395963392, - "lang": "en" - }, - "default_profile_image": false, - "id": 650013, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 6185, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/650013/1348015829", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "8690322", - "following": false, - "friends_count": 180, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/iyaz", - "url": "http://t.co/wXnrkVLXs1", - "expanded_url": "http://about.me/iyaz", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "560869", - "geo_enabled": true, - "followers_count": 29814, - "location": "New York, NY", - "screen_name": "iyaz", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1232, - "name": "iyaz akhtar", - "profile_use_background_image": false, - "description": "I'm the best damn Iyaz Akhtar in the world. Available online @CNET and @GFQNetwork", - "url": "http://t.co/wXnrkVLXs1", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Sep 05 17:08:15 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", - "favourites_count": 520, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685297976856584192", - "id": 685297976856584192, - "text": "What did you think was the most awesome thing at CES 2016? #top5", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 59, - 64 - ], - "text": "top5" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 03:12:24 +0000 2016", - "source": "Twitter for iPad", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 8690322, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "statuses_count": 15190, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8690322/1433083510", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "10350", - "following": false, - "friends_count": 1100, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "about.me/veronica", - "url": "https://t.co/Tf4y8BelKl", - "expanded_url": "http://about.me/veronica", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1758625, - "location": "San Francisco", - "screen_name": "Veronica", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 17380, - "name": "Veronica Belmont", - "profile_use_background_image": true, - "description": "New media / TV host and writer. @swordandlaser, @vaginalfantasy and #DearVeronica for @Engadget. #SFGiants Destroyer of Worlds.", - "url": "https://t.co/Tf4y8BelKl", - "profile_text_color": "1E1A1A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Oct 24 16:00:54 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C59D79", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", - "favourites_count": 2795, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "NotAPreppie", - "in_reply_to_user_id": 53830319, - "in_reply_to_status_id_str": "685613648220303360", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685613962868609025", - "id": 685613962868609025, - "text": "@NotAPreppie @MarieDomingo getting into random fights on Twitter clearly makes YOU feel better! Whatever works!", - "in_reply_to_user_id_str": "53830319", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "NotAPreppie", - "id_str": "53830319", - "id": 53830319, - "indices": [ - 0, - 12 - ], - "name": "IfPinkyWereAChemist" - }, - { - "screen_name": "MarieDomingo", - "id_str": "10394242", - "id": 10394242, - "indices": [ - 13, - 26 - ], - "name": "MarieDomingo" - } - ] - }, - "created_at": "Sat Jan 09 00:08:01 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685613648220303360, - "lang": "en" - }, - "default_profile_image": false, - "id": 10350, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", - "statuses_count": 36156, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10350/1436988647", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "816214", - "following": false, - "friends_count": 734, - "entities": { - "description": { - "urls": [ - { - "display_url": "techcrunch.com/video/crunchre\u2026", - "url": "http://t.co/sufYJznghc", - "expanded_url": "http://techcrunch.com/video/crunchreport", - "indices": [ - 59, - 81 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "about.me/sarahlane", - "url": "http://t.co/POf8fV5kwg", - "expanded_url": "http://about.me/sarahlane", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", - "notifications": false, - "profile_sidebar_fill_color": "BAFF91", - "profile_link_color": "B81F45", - "geo_enabled": true, - "followers_count": 95473, - "location": "Norf Side ", - "screen_name": "sarahlane", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 6399, - "name": "Sarah Lane", - "profile_use_background_image": true, - "description": "TechCrunch Executive Producer, Video\n\nHost, Crunch Report: http://t.co/sufYJznghc\n\nI get it twisted, sorry", - "url": "http://t.co/POf8fV5kwg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Mar 06 22:45:50 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", - "favourites_count": 705, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MDee14", - "in_reply_to_user_id": 16684249, - "in_reply_to_status_id_str": "685526261507096577", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685527194949451776", - "id": 685527194949451776, - "text": "@MDee14 yay we both won!", - "in_reply_to_user_id_str": "16684249", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MDee14", - "id_str": "16684249", - "id": 16684249, - "indices": [ - 0, - 7 - ], - "name": "Marcel Dee" - } - ] - }, - "created_at": "Fri Jan 08 18:23:14 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685526261507096577, - "lang": "en" - }, - "default_profile_image": false, - "id": 816214, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", - "statuses_count": 16630, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/816214/1451606730", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "58708498", - "following": false, - "friends_count": 445, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "angelina.codes", - "url": "http://t.co/v5aoRQrHwi", - "expanded_url": "http://angelina.codes", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", - "notifications": false, - "profile_sidebar_fill_color": "F7C9FF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 17533, - "location": "NYC \u2708 ???", - "screen_name": "hopefulcyborg", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 972, - "name": "Angelina Fabbro", - "profile_use_background_image": false, - "description": "- polyglot programmer weirdo - engineer at @digitalocean (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b - prev: @mozilla devtools & @steamclocksw - they/their/them", - "url": "http://t.co/v5aoRQrHwi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Jul 21 04:52:08 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", - "favourites_count": 8940, - "status": { - "retweet_count": 6532, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 6532, - "truncated": false, - "retweeted": false, - "id_str": "685515171675140096", - "id": 685515171675140096, - "text": "COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\nCOP: ok ur good", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:35:27 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 12258, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685567906923593729", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "bobvulfov", - "id_str": "2442237828", - "id": 2442237828, - "indices": [ - 3, - 13 - ], - "name": "Bob Vulfov" - } - ] - }, - "created_at": "Fri Jan 08 21:05:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685567906923593729, - "text": "RT @bobvulfov: COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 58708498, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", - "statuses_count": 22753, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/58708498/1408048999", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "682433", - "following": false, - "friends_count": 1123, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/othiym23/", - "url": "http://t.co/20WWkunxbg", - "expanded_url": "http://github.com/othiym23/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "CCCCCC", - "profile_link_color": "333333", - "geo_enabled": true, - "followers_count": 2268, - "location": "the outside lands", - "screen_name": "othiym23", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 152, - "name": "Forrest L Norvell", - "profile_use_background_image": false, - "description": "down with the kyriarchy / big ups to the heavy heavy bass.\n\nI may think you're doing something dumb but I think *you're* great.", - "url": "http://t.co/20WWkunxbg", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", - "profile_background_color": "CCCCCC", - "created_at": "Mon Jan 22 20:57:31 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "333333", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", - "favourites_count": 5768, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "othiym23", - "in_reply_to_user_id": 682433, - "in_reply_to_status_id_str": "685625845499576321", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685625896372310016", - "id": 685625896372310016, - "text": "@reconbot @soldair (I mean, even the ones that pull down and examine tarballs)", - "in_reply_to_user_id_str": "682433", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "reconbot", - "id_str": "14082200", - "id": 14082200, - "indices": [ - 0, - 9 - ], - "name": "Francis Gulotta" - }, - { - "screen_name": "soldair", - "id_str": "16893912", - "id": 16893912, - "indices": [ - 10, - 18 - ], - "name": "Ryan Day" - } - ] - }, - "created_at": "Sat Jan 09 00:55:26 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685625845499576321, - "lang": "en" - }, - "default_profile_image": false, - "id": 682433, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 30184, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/682433/1355870155", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "139199211", - "following": false, - "friends_count": 253, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "snarfed.org", - "url": "https://t.co/0mWCez5XaB", - "expanded_url": "https://snarfed.org/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 464, - "location": "San Francisco", - "screen_name": "schnarfed", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Ryan Barrett", - "profile_use_background_image": false, - "description": "", - "url": "https://t.co/0mWCez5XaB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Sat May 01 21:42:43 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", - "favourites_count": 3258, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685210017411170305", - "id": 685210017411170305, - "text": "When someone invites me out, or just to hang, my first instinct is to check my calendar and hope for a conflict. :( #JustIntrovertThings", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 116, - 136 - ], - "text": "JustIntrovertThings" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 21:22:53 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 139199211, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 1763, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/139199211/1398278985", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "536965103", - "following": false, - "friends_count": 811, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "onebigfluke.com", - "url": "http://t.co/aaUMAjUIWi", - "expanded_url": "http://onebigfluke.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0074B3", - "geo_enabled": false, - "followers_count": 2574, - "location": "San Francisco", - "screen_name": "haxor", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 142, - "name": "Brett Slatkin", - "profile_use_background_image": true, - "description": "Eng lead @Google_Surveys. Author of @EffectivePython.\nI love bicycles and hate patents.", - "url": "http://t.co/aaUMAjUIWi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", - "profile_background_color": "4D4D4D", - "created_at": "Mon Mar 26 05:57:19 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", - "favourites_count": 3124, - "status": { - "retweet_count": 13, - "retweeted_status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685367480546541568", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "dlvr.it/DCnmnq", - "url": "https://t.co/vqRVp9rIbc", - "expanded_url": "http://dlvr.it/DCnmnq", - "indices": [ - 61, - 84 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 07:48:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "ja", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685367480546541568, - "text": "Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "dlvr.it" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685498607789670401", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "dlvr.it/DCnmnq", - "url": "https://t.co/vqRVp9rIbc", - "expanded_url": "http://dlvr.it/DCnmnq", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "oreilly_japan", - "id_str": "18382977", - "id": 18382977, - "indices": [ - 3, - 17 - ], - "name": "O'Reilly Japan, Inc." - } - ] - }, - "created_at": "Fri Jan 08 16:29:38 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "ja", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685498607789670401, - "text": "RT @oreilly_japan: Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 536965103, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", - "statuses_count": 1749, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/536965103/1398444972", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "610533", - "following": false, - "friends_count": 1078, - "entities": { - "description": { - "urls": [ - { - "display_url": "DailyTechNewsShow.com", - "url": "https://t.co/x2gPqqxYuL", - "expanded_url": "http://DailyTechNewsShow.com", - "indices": [ - 13, - 36 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "tommerritt.com", - "url": "http://t.co/Ru5Svk5gcM", - "expanded_url": "http://www.tommerritt.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "95E8EC", - "profile_link_color": "0099B9", - "geo_enabled": true, - "followers_count": 97335, - "location": "Virgo Supercluster", - "screen_name": "acedtect", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 6443, - "name": "Tom Merritt", - "profile_use_background_image": true, - "description": "Host of DTNS https://t.co/x2gPqqxYuL, Sword and Laser, Current Geek, Cordkillers and more. Coffee achiever", - "url": "http://t.co/Ru5Svk5gcM", - "profile_text_color": "3C3940", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", - "profile_background_color": "0099B9", - "created_at": "Sun Jan 07 17:00:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "5ED4DC", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", - "favourites_count": 806, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Nightveil", - "in_reply_to_user_id": 16855695, - "in_reply_to_status_id_str": "685611862440849408", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685612261910560768", - "id": 685612261910560768, - "text": "@Nightveil Yeah safety date. I can always move it up.", - "in_reply_to_user_id_str": "16855695", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Nightveil", - "id_str": "16855695", - "id": 16855695, - "indices": [ - 0, - 10 - ], - "name": "Nightveil" - } - ] - }, - "created_at": "Sat Jan 09 00:01:15 +0000 2016", - "source": "TweetDeck", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685611862440849408, - "lang": "en" - }, - "default_profile_image": false, - "id": 610533, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", - "statuses_count": 37135, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/610533/1348022434", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "824168", - "following": false, - "friends_count": 1919, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": false, - "followers_count": 1035, - "location": "Petaluma, CA", - "screen_name": "jammerb", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 108, - "name": "John Slanina", - "profile_use_background_image": true, - "description": "History is short. The sun is just a minor star.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", - "profile_background_color": "31532D", - "created_at": "Fri Mar 09 04:33:02 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", - "favourites_count": 107, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "11877321", - "id": 11877321, - "text": "Got my Screaming Monkey from Woot!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Mar 24 02:38:08 +0000 2007", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 824168, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", - "statuses_count": 6, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/824168/1434144272", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2369467405", - "following": false, - "friends_count": 34024, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wifiworkerbees.com", - "url": "http://t.co/rqac3Fh1dU", - "expanded_url": "http://wifiworkerbees.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 34950, - "location": "Following My Bliss", - "screen_name": "DereckCurry", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 632, - "name": "Dereck Curry", - "profile_use_background_image": false, - "description": "20+ year IT, coding, product management, and engineering professional. Remote work evangelist. Co-founder of @WifiWorkerBees. Husband to @Currying_Favor.", - "url": "http://t.co/rqac3Fh1dU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", - "profile_background_color": "DFF3F5", - "created_at": "Sun Mar 02 22:24:48 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", - "favourites_count": 3838, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "beckya234", - "in_reply_to_user_id": 407834483, - "in_reply_to_status_id_str": "685628259401334784", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685629758886002698", - "id": 685629758886002698, - "text": "@beckya234 At least your not trying to get the lifeguard drunk. Or maybe you are.", - "in_reply_to_user_id_str": "407834483", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "beckya234", - "id_str": "407834483", - "id": 407834483, - "indices": [ - 0, - 10 - ], - "name": "Becky Atkins" - } - ] - }, - "created_at": "Sat Jan 09 01:10:47 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685628259401334784, - "lang": "en" - }, - "default_profile_image": false, - "id": 2369467405, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", - "statuses_count": 9079, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369467405/1447623348", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15948437", - "following": false, - "friends_count": 590, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "joelonsoftware.com", - "url": "http://t.co/ZHNWlmFE3H", - "expanded_url": "http://www.joelonsoftware.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E4F1F0", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 117165, - "location": "New York, NY", - "screen_name": "spolsky", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5827, - "name": "Joel Spolsky", - "profile_use_background_image": true, - "description": "CEO of Stack Overflow, co-founder of Fog Creek Software (FogBugz, Kiln), and creator of Trello. Member of NYC gay startup mafia.", - "url": "http://t.co/ZHNWlmFE3H", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Aug 22 18:34:03 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", - "favourites_count": 5133, - "status": { - "retweet_count": 33, - "retweeted_status": { - "retweet_count": 33, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684896392188444672", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/p/23a20405681a", - "url": "https://t.co/ifzwy1ausF", - "expanded_url": "https://medium.com/p/23a20405681a", - "indices": [ - 112, - 135 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 00:36:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684896392188444672, - "text": "I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/ifzwy1ausF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 91, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684939456881770496", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "medium.com/p/23a20405681a", - "url": "https://t.co/ifzwy1ausF", - "expanded_url": "https://medium.com/p/23a20405681a", - "indices": [ - 126, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "anildash", - "id_str": "36823", - "id": 36823, - "indices": [ - 3, - 12 - ], - "name": "Anil Dash" - } - ] - }, - "created_at": "Thu Jan 07 03:27:46 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684939456881770496, - "text": "RT @anildash: I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 15948437, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", - "statuses_count": 6625, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15948437/1364583542", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "4519121", - "following": false, - "friends_count": 423, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theoatmeal.com", - "url": "http://t.co/hzHuiYcL4x", - "expanded_url": "http://theoatmeal.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57771255/twitter2.png", - "notifications": false, - "profile_sidebar_fill_color": "F5EDF0", - "profile_link_color": "B40B43", - "geo_enabled": true, - "followers_count": 524239, - "location": "Seattle, Washington", - "screen_name": "Oatmeal", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 17111, - "name": "Matthew Inman", - "profile_use_background_image": true, - "description": "I make comics.", - "url": "http://t.co/hzHuiYcL4x", - "profile_text_color": "362720", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", - "profile_background_color": "FF3366", - "created_at": "Fri Apr 13 16:59:37 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "CC3366", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", - "favourites_count": 1374, - "status": { - "retweet_count": 128, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685190824158691332", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 812, - "h": 587, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 245, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 433, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", - "type": "photo", - "indices": [ - 47, - 70 - ], - "media_url": "http://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", - "display_url": "pic.twitter.com/suZ6JUQaFa", - "id_str": "685190823483342849", - "expanded_url": "http://twitter.com/Oatmeal/status/685190824158691332/photo/1", - "id": 685190823483342849, - "url": "https://t.co/suZ6JUQaFa" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "theoatmeal.com/blog/playdoh", - "url": "https://t.co/v1LZDUNlnT", - "expanded_url": "http://theoatmeal.com/blog/playdoh", - "indices": [ - 23, - 46 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 20:06:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685190824158691332, - "text": "You only try this once https://t.co/v1LZDUNlnT https://t.co/suZ6JUQaFa", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 293, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 4519121, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57771255/twitter2.png", - "statuses_count": 6000, - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "9859562", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "glyph.twistedmatrix.com", - "url": "https://t.co/1dvBYKfhRo", - "expanded_url": "https://glyph.twistedmatrix.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": false, - "followers_count": 2557, - "location": "\u2191 baseline \u2193 cap-height", - "screen_name": "glyph", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 144, - "name": "\u24bc\u24c1\u24ce\u24c5\u24bd", - "profile_use_background_image": true, - "description": "Level ?? Thought Lord", - "url": "https://t.co/1dvBYKfhRo", - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", - "profile_background_color": "642D8B", - "created_at": "Thu Nov 01 18:21:23 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", - "favourites_count": 6287, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "corbinsimpson", - "in_reply_to_user_id": 41225243, - "in_reply_to_status_id_str": "685297984683155456", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685357014143250432", - "id": 685357014143250432, - "text": "@corbinsimpson yeah.", - "in_reply_to_user_id_str": "41225243", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "corbinsimpson", - "id_str": "41225243", - "id": 41225243, - "indices": [ - 0, - 14 - ], - "name": "Corbin Simpson" - } - ] - }, - "created_at": "Fri Jan 08 07:07:00 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685297984683155456, - "lang": "en" - }, - "default_profile_image": false, - "id": 9859562, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", - "statuses_count": 11017, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2782733125", - "following": false, - "friends_count": 427, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "raintank.io", - "url": "http://t.co/sZYy68B1yl", - "expanded_url": "http://www.raintank.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "10B1D3", - "geo_enabled": true, - "followers_count": 362, - "location": "", - "screen_name": "raintanksaas", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 13, - "name": "raintank", - "profile_use_background_image": false, - "description": "An opensource monitoring platform to collect, store & analyze data about your infrastructure through a gorgeously powerful frontend. The company behind @grafana", - "url": "http://t.co/sZYy68B1yl", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", - "profile_background_color": "353535", - "created_at": "Sun Aug 31 18:05:44 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", - "favourites_count": 204, - "status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684453558545203200", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "type": "photo", - "indices": [ - 113, - 136 - ], - "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", - "display_url": "pic.twitter.com/GnfOxpEaYF", - "id_str": "684450657458368512", - "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", - "id": 684450657458368512, - "url": "https://t.co/GnfOxpEaYF" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22Jb455", - "url": "https://t.co/aYQvFNmob0", - "expanded_url": "http://bit.ly/22Jb455", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [ - { - "indices": [ - 57, - 68 - ], - "text": "monitoring" - } - ], - "user_mentions": [ - { - "screen_name": "RobustPerceiver", - "id_str": "3328053545", - "id": 3328053545, - "indices": [ - 96, - 112 - ], - "name": "Robust Perception" - } - ] - }, - "created_at": "Tue Jan 05 19:16:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684453558545203200, - "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 15, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 2782733125, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 187, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782733125/1447877118", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "23134190", - "following": false, - "friends_count": 2846, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rayheffer.com", - "url": "http://t.co/65bBqa0ySJ", - "expanded_url": "http://rayheffer.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", - "notifications": false, - "profile_sidebar_fill_color": "DBDBDB", - "profile_link_color": "1887E5", - "geo_enabled": true, - "followers_count": 12127, - "location": "Brighton, United Kingdom", - "screen_name": "rayheffer", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 233, - "name": "Ray Heffer", - "profile_use_background_image": true, - "description": "Global Cloud & EUC Architect @VMware vCloud Air Network | vExpert & Double VCDX #122 | PC Gamer | Technologist | Linux | VMworld Speaker. \u65e5\u672c\u8a9e", - "url": "http://t.co/65bBqa0ySJ", - "profile_text_color": "574444", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", - "profile_background_color": "022330", - "created_at": "Fri Mar 06 23:14:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", - "favourites_count": 6141, - "status": { - "retweet_count": 8, - "retweeted_status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685565495274266624", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WFMFT", - "url": "https://t.co/QHNFIkGGaL", - "expanded_url": "http://ow.ly/WFMFT", - "indices": [ - 121, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:55:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685565495274266624, - "text": "Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https://t.co/QHNFIkGGaL", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685565627487117312", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "ow.ly/WFMFT", - "url": "https://t.co/QHNFIkGGaL", - "expanded_url": "http://ow.ly/WFMFT", - "indices": [ - 143, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PGelsinger", - "id_str": "3339261074", - "id": 3339261074, - "indices": [ - 3, - 14 - ], - "name": "Pat Gelsinger" - } - ] - }, - "created_at": "Fri Jan 08 20:55:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685565627487117312, - "text": "RT @PGelsinger: Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 23134190, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", - "statuses_count": 3576, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23134190/1447672867", - "is_translator": false - } - ], - "previous_cursor": 0, - "previous_cursor_str": "0", - "next_cursor_str": "1494734862149901956" -} \ No newline at end of file +{"users": [{"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "18275645", "following": false, "friends_count": 118, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "danluu.com", "url": "http://t.co/yAGxZQzkJc", "expanded_url": "http://danluu.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2884, "location": "Seattle, WA", "screen_name": "danluu", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 70, "name": "Dan Luu", "profile_use_background_image": true, "description": "Hardware/software co-design @Microsoft. Previously @google, @recursecenter, and centaur.", "url": "http://t.co/yAGxZQzkJc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Dec 21 00:21:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/526429203554525185/P5uadNbN_normal.png", "favourites_count": 624, "status": {"in_reply_to_status_id": 685537630235136000, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "danluu", "in_reply_to_user_id": 18275645, "in_reply_to_status_id_str": "685537630235136000", "in_reply_to_user_id_str": "18275645", "truncated": false, "id_str": "685539148292214784", "id": 685539148292214784, "text": "@twitter Meanwhile, automated bots have been tweeting every HN frontpage link for 3 years without getting flagged.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "twitter", "id_str": "783214", "id": 783214, "indices": [0, 8], "name": "Twitter"}]}, "created_at": "Fri Jan 08 19:10:44 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18275645, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 685, "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "16246973", "following": false, "friends_count": 142, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.scottlowe.org", "url": "http://t.co/EMI294FM8u", "expanded_url": "http://blog.scottlowe.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 22381, "location": "Denver, CO, USA", "screen_name": "scott_lowe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 989, "name": "Scott S. Lowe", "profile_use_background_image": true, "description": "An IT pro specializing in virtualization, networking, open source, & cloud computing; currently working for a leading virtualization vendor (tweets are mine)", "url": "http://t.co/EMI294FM8u", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Sep 11 20:17:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2164976052/gravatar_normal.jpg", "favourites_count": 0, "status": {"retweet_count": 6, "retweeted_status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597324853161984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "networkworld.com/article/301666\u2026", "url": "https://t.co/Y5HBdGgEor", "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", "indices": [99, 122]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:01:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597324853161984, "text": "With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgEor", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597548321505280", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "networkworld.com/article/301666\u2026", "url": "https://t.co/Y5HBdGgEor", "expanded_url": "http://www.networkworld.com/article/3016668/virtualization/tribune-media-rebuilds-it-from-the-ground-up-and-is-living-the-dream.html", "indices": [118, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "martin_casado", "id_str": "16591288", "id": 16591288, "indices": [3, 17], "name": "martin_casado"}]}, "created_at": "Fri Jan 08 23:02:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597548321505280, "text": "RT @martin_casado: With everything s/w controlled ... VMware\u2019s NSX offsets the need for more than $1m of network gear https://t.co/Y5HBdGgE\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 16246973, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 34402, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6981492", "following": false, "friends_count": 178, "entities": {"description": {"urls": [{"display_url": "Postlight.com", "url": "http://t.co/AxJX6dV8Ig", "expanded_url": "http://Postlight.com", "indices": [21, 43]}]}, "url": {"urls": [{"display_url": "ftrain.com", "url": "http://t.co/6afN702mgr", "expanded_url": "http://ftrain.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 32171, "location": "Brooklyn, New York, USA", "screen_name": "ftrain", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1452, "name": "Paul Ford", "profile_use_background_image": true, "description": "(1974\u2013 ) Co-founder, http://t.co/AxJX6dV8Ig. Writing a book about web pages for FSG. Contact ford@ftrain.com if you spot a typo.", "url": "http://t.co/6afN702mgr", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Jun 21 01:11:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3363818792/c90e33ccf22e3146d5cd871ce561795a_normal.png", "favourites_count": 20008, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": {"url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.026675, 40.683935], [-73.910408, 40.683935], [-73.910408, 40.877483], [-74.026675, 40.877483]]], "type": "Polygon"}, "full_name": "Manhattan, NY", "contained_within": [], "country_code": "US", "id": "01a9a39529b27f36", "name": "Manhattan"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682597070751035392", "id": 682597070751035392, "text": "2016 resolution: Get off Twitter, for all but writing-promotional purposes, until I lose 32 pounds, one for every thousand followers.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 31 16:19:58 +0000 2015", "source": "Twitter Web Client", "favorite_count": 58, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6981492, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000068059714/61a35f1700171d2eeb06d94526930818.png", "statuses_count": 29820, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6981492/1362958335", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2266469498", "following": false, "friends_count": 344, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.samwhited.com", "url": "https://t.co/FVESgX6vVp", "expanded_url": "https://blog.samwhited.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "9ABB59", "geo_enabled": true, "followers_count": 97, "location": "Austin, TX", "screen_name": "SamWhited", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Sam Whited", "profile_use_background_image": true, "description": "Sometimes I tweet things, but mostly I don't.", "url": "https://t.co/FVESgX6vVp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sat Dec 28 21:36:45 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625877273783087104/0zuhLzjs_normal.jpg", "favourites_count": 68, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683367861557956608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/linode/status/\u2026", "url": "https://t.co/ChRPqTJULN", "expanded_url": "https://twitter.com/linode/status/683366718798954496", "indices": [86, 109]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 02 19:22:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683367861557956608, "text": "I have not been able to maintain a persistant TCP connection with my Linodes in Days\u2026 https://t.co/ChRPqTJULN", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2266469498, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000158711466/Nxj8oXfB.png", "statuses_count": 708, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2266469498/1388268061", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6815762", "following": false, "friends_count": 825, "entities": {"description": {"urls": [{"display_url": "lasp-lang.org", "url": "https://t.co/SvIEg6a8n1", "expanded_url": "http://lasp-lang.org", "indices": [60, 83]}]}, "url": {"urls": [{"display_url": "christophermeiklejohn.com", "url": "https://t.co/OteoESj7H9", "expanded_url": "http://christophermeiklejohn.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "4E5A5E", "geo_enabled": true, "followers_count": 3106, "location": "San Francisco, CA", "screen_name": "cmeik", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 155, "name": "Christophe le fou", "profile_use_background_image": true, "description": "building programming languages for distributed computation; https://t.co/SvIEg6a8n1", "url": "https://t.co/OteoESj7H9", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Thu Jun 14 16:35:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597155081704775680/ZkcwYKee_normal.jpg", "favourites_count": 38349, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-115.2092535, 35.984784], [-115.0610763, 35.984784], [-115.0610763, 36.137145], [-115.2092535, 36.137145]]], "type": "Polygon"}, "full_name": "Paradise, NV", "contained_within": [], "country_code": "US", "id": "8fa6d7a33b83ef26", "name": "Paradise"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685629512961245184", "id": 685629512961245184, "text": "[checking in to hotel]\n\"The IEEE? That's the porn conference, right?\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:09:48 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 7, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6815762, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 49789, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6815762/1420224089", "is_translator": false}, {"time_zone": "Stockholm", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "17616622", "following": false, "friends_count": 332, "entities": {"description": {"urls": [{"display_url": "locust.io", "url": "http://t.co/TQXEGLwCis", "expanded_url": "http://locust.io", "indices": [78, 100]}, {"display_url": "heyevent.com", "url": "http://t.co/0DMoIMMGYB", "expanded_url": "http://heyevent.com", "indices": [102, 124]}, {"display_url": "boutiquehotel.me", "url": "http://t.co/UVjwCLqJWP", "expanded_url": "http://boutiquehotel.me", "indices": [137, 159]}]}, "url": {"urls": [{"display_url": "heyman.info", "url": "http://t.co/OJuVdsnIXQ", "expanded_url": "http://heyman.info", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1063, "location": "Sweden", "screen_name": "jonatanheyman", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Jonatan Heyman", "profile_use_background_image": true, "description": "I'm a developer and I Iike to build stuff. I love Python. Author of @locustio http://t.co/TQXEGLwCis, http://t.co/0DMoIMMGYB, @ronigame, http://t.co/UVjwCLqJWP", "url": "http://t.co/OJuVdsnIXQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Nov 25 10:15:22 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/583295810479128577/n_QmuNUu_normal.jpg", "favourites_count": 112, "status": {"retweet_count": 32, "retweeted_status": {"retweet_count": 32, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685581797850279937", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:00:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685581797850279937, "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 33, "contributors": null, "source": "Mobile Web (M5)"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685587786120970241", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "tomdale", "id_str": "668863", "id": 668863, "indices": [3, 11], "name": "Tom Dale"}]}, "created_at": "Fri Jan 08 22:24:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685587786120970241, "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 17616622, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 996, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17616622/1397123585", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "290900886", "following": false, "friends_count": 28, "entities": {"description": {"urls": [{"display_url": "hashicorp.com/atlas", "url": "https://t.co/3rYtQZlVFj", "expanded_url": "https://hashicorp.com/atlas", "indices": [75, 98]}]}, "url": {"urls": [{"display_url": "hashicorp.com", "url": "https://t.co/ny0Vs9IMpz", "expanded_url": "https://hashicorp.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "48B4FB", "geo_enabled": false, "followers_count": 10680, "location": "San Francisco, CA", "screen_name": "hashicorp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 326, "name": "HashiCorp", "profile_use_background_image": false, "description": "We build Vagrant, Packer, Serf, Consul, Terraform, Vault, Nomad, Otto, and https://t.co/3rYtQZlVFj. We love developers, ops, and are obsessed with automation.", "url": "https://t.co/ny0Vs9IMpz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", "profile_background_color": "FFFFFF", "created_at": "Sun May 01 04:14:30 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/525656622308143104/0pPm3Eov_normal.png", "favourites_count": 23, "status": {"retweet_count": 12, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685602742769876992", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/hashicorp/terr\u2026", "url": "https://t.co/QjiHQfLdQF", "expanded_url": "https://github.com/hashicorp/terraform/blob/v0.6.9/CHANGELOG.md#069-january-8-2016", "indices": [90, 113]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:23:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685602742769876992, "text": "Terraform 0.6.9 has been released! 5 new providers and a long list of features and fixes: https://t.co/QjiHQfLdQF", "coordinates": null, "retweeted": false, "favorite_count": 14, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 290900886, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 715, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1229010770", "following": false, "friends_count": 15, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kimh.github.io", "url": "http://t.co/rOoCzBI0Uk", "expanded_url": "http://kimh.github.io/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 24, "location": "", "screen_name": "kimhirokuni", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Kim, Hirokuni", "profile_use_background_image": true, "description": "", "url": "http://t.co/rOoCzBI0Uk", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Mar 01 04:35:59 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469626023059791874/9yBE3_hO_normal.jpeg", "favourites_count": 4, "status": {"retweet_count": 14, "retweeted_status": {"retweet_count": 14, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684163973390974976", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 169, "resize": "fit"}, "large": {"w": 799, "h": 398, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 298, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "type": "photo", "indices": [95, 118], "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "display_url": "pic.twitter.com/VEpSVWgnhn", "id_str": "684163973206421509", "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", "id": 684163973206421509, "url": "https://t.co/VEpSVWgnhn"}], "symbols": [], "urls": [{"display_url": "circle.ci/1YyS1W6", "url": "https://t.co/Mil1rt44Ve", "expanded_url": "http://circle.ci/1YyS1W6", "indices": [71, 94]}], "hashtags": [], "user_mentions": [{"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [16, 25], "name": "CircleCI"}]}, "created_at": "Tue Jan 05 00:06:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684163973390974976, "text": "We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684249491948490752", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 169, "resize": "fit"}, "large": {"w": 799, "h": 398, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 298, "resize": "fit"}}, "source_status_id_str": "684163973390974976", "media_url": "http://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "source_user_id_str": "381223731", "id_str": "684163973206421509", "id": 684163973206421509, "media_url_https": "https://pbs.twimg.com/media/CX6jgj8WsAUagsq.png", "type": "photo", "indices": [109, 132], "source_status_id": 684163973390974976, "source_user_id": 381223731, "display_url": "pic.twitter.com/VEpSVWgnhn", "expanded_url": "http://twitter.com/circleci/status/684163973390974976/photo/1", "url": "https://t.co/VEpSVWgnhn"}], "symbols": [], "urls": [{"display_url": "circle.ci/1YyS1W6", "url": "https://t.co/Mil1rt44Ve", "expanded_url": "http://circle.ci/1YyS1W6", "indices": [85, 108]}], "hashtags": [], "user_mentions": [{"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [3, 12], "name": "CircleCI"}, {"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [30, 39], "name": "CircleCI"}]}, "created_at": "Tue Jan 05 05:46:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684249491948490752, "text": "RT @circleci: We're launching @CircleCI Office Hours in 2016. Check it out and RSVP! https://t.co/Mil1rt44Ve https://t.co/VEpSVWgnhn", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1229010770, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 56, "is_translator": false}, {"time_zone": "Madrid", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "311029627", "following": false, "friends_count": 173, "entities": {"description": {"urls": [{"display_url": "keybase.io/alexey_ch", "url": "http://t.co/3wRCyfslLs", "expanded_url": "http://keybase.io/alexey_ch", "indices": [56, 78]}]}, "url": {"urls": [{"display_url": "alexey.ch", "url": "http://t.co/sGSgRzEPYs", "expanded_url": "http://alexey.ch", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 230, "location": "Sant Cugat del Vall\u00e8s", "screen_name": "alexey_am_i", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Alexey", "profile_use_background_image": true, "description": "bites and bytes / chief bash script officer @circleci / http://t.co/3wRCyfslLs", "url": "http://t.co/sGSgRzEPYs", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Sat Jun 04 19:35:45 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426597567896367105/nkzLbTFM_normal.jpeg", "favourites_count": 2099, "status": {"in_reply_to_status_id": 685505979270574080, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "KrauseFx", "in_reply_to_user_id": 50055757, "in_reply_to_status_id_str": "685505979270574080", "in_reply_to_user_id_str": "50055757", "truncated": false, "id_str": "685506452614688768", "id": 685506452614688768, "text": "@KrauseFx Nice screenshot :D", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "KrauseFx", "id_str": "50055757", "id": 50055757, "indices": [0, 9], "name": "Felix Krause"}]}, "created_at": "Fri Jan 08 17:00:49 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 311029627, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852340814/642366d5914695f7132f91b6b31e718f.jpeg", "statuses_count": 10759, "profile_banner_url": "https://pbs.twimg.com/profile_banners/311029627/1366924833", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "810781", "following": false, "friends_count": 370, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "unwiredcouch.com", "url": "https://t.co/AlM3lgSG3F", "expanded_url": "https://unwiredcouch.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0099CC", "geo_enabled": false, "followers_count": 1872, "location": "probably Brooklyn or Freiburg", "screen_name": "mrtazz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 103, "name": "Daniel Schauenberg", "profile_use_background_image": true, "description": "Infrastructure Toolsmith at Etsy. A Cheap Trick and a Cheesy One-Liner. I own 100% of my opinions. Feminist.", "url": "https://t.co/AlM3lgSG3F", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", "profile_background_color": "FFF04D", "created_at": "Sun Mar 04 21:17:02 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFF8AD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629425130465267712/toPYRZFS_normal.jpg", "favourites_count": 7996, "status": {"in_reply_to_status_id": 685561412450562048, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jmhodges", "in_reply_to_user_id": 9267272, "in_reply_to_status_id_str": "685561412450562048", "in_reply_to_user_id_str": "9267272", "truncated": false, "id_str": "685565956836487168", "id": 685565956836487168, "text": "@jmhodges the important bit is to understand when and how and learn from it", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jmhodges", "id_str": "9267272", "id": 9267272, "indices": [0, 9], "name": "Jeff Hodges"}]}, "created_at": "Fri Jan 08 20:57:15 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 810781, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "statuses_count": 17494, "profile_banner_url": "https://pbs.twimg.com/profile_banners/810781/1374119286", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "166282004", "following": false, "friends_count": 131, "entities": {"description": {"urls": [{"display_url": "scotthel.me/PGP", "url": "http://t.co/gL8cUpGdUF", "expanded_url": "http://scotthel.me/PGP", "indices": [137, 159]}]}, "url": {"urls": [{"display_url": "scotthelme.co.uk", "url": "https://t.co/amYoJQqVCA", "expanded_url": "https://scotthelme.co.uk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "2971FF", "geo_enabled": false, "followers_count": 1586, "location": "UK", "screen_name": "Scott_Helme", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 94, "name": "Scott Helme", "profile_use_background_image": false, "description": "Information Security Consultant, blogger, builder of things. Creator of @reporturi and @securityheaders. I want to secure the entire web http://t.co/gL8cUpGdUF", "url": "https://t.co/amYoJQqVCA", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", "profile_background_color": "F5F8FA", "created_at": "Tue Jul 13 19:42:08 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000539588600/98ae7e835cc7a03a70d59a1b4a31b264_normal.png", "favourites_count": 488, "status": {"retweet_count": 130, "retweeted_status": {"retweet_count": 130, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684262306956443648", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "securityheaders.io", "url": "https://t.co/tFn2HCB6YS", "expanded_url": "https://securityheaders.io/", "indices": [71, 94]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 06:37:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684262306956443648, "text": "SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", "coordinates": null, "retweeted": false, "favorite_count": 261, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685607128095154176", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "securityheaders.io", "url": "https://t.co/tFn2HCB6YS", "expanded_url": "https://securityheaders.io/", "indices": [88, 111]}], "hashtags": [], "user_mentions": [{"screen_name": "smashingmag", "id_str": "15736190", "id": 15736190, "indices": [3, 15], "name": "Smashing Magazine"}]}, "created_at": "Fri Jan 08 23:40:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685607128095154176, "text": "RT @smashingmag: SecurityHeaders.io analyzes a website\u2019s security-related HTTP headers. https://t.co/tFn2HCB6YS", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 166282004, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000133452638/VGrnAEEE.jpeg", "statuses_count": 5651, "profile_banner_url": "https://pbs.twimg.com/profile_banners/166282004/1421676770", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13734442", "following": false, "friends_count": 700, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "entropystream.net", "url": "http://t.co/jHZOamrEt4", "expanded_url": "http://entropystream.net", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "193FFF", "geo_enabled": false, "followers_count": 906, "location": "Seattle WA", "screen_name": "blueben", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 73, "name": "Ben Macguire", "profile_use_background_image": false, "description": "Ops Engineer, Music, RF, Puppies.", "url": "http://t.co/jHZOamrEt4", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Feb 20 19:12:44 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674515606419324928/8cnzA0WY_normal.jpg", "favourites_count": 497, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685121298100424704", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", "type": "photo", "indices": [34, 57], "media_url": "http://pbs.twimg.com/media/CYIKLxDUAAEfw_T.jpg", "display_url": "pic.twitter.com/yJ5odOn9OQ", "id_str": "685121290575806465", "expanded_url": "http://twitter.com/blueben/status/685121298100424704/photo/1", "id": 685121290575806465, "url": "https://t.co/yJ5odOn9OQ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 15:30:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685121298100424704, "text": "Slightly foggy in Salt Lake City. https://t.co/yJ5odOn9OQ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 13734442, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 14940, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3237083798", "following": false, "friends_count": 2, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bgpstream.com", "url": "https://t.co/gdCAgJZFwt", "expanded_url": "https://bgpstream.com/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1378, "location": "", "screen_name": "bgpstream", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "bgpstream", "profile_use_background_image": true, "description": "BGPStream is a free resource for receiving alerts about BGP hijacks and large scale outages. Brought to you by @bgpmon", "url": "https://t.co/gdCAgJZFwt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Jun 05 15:28:16 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624352416054415360/wT-HbVJa_normal.png", "favourites_count": 4, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685604760662196224", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bgpstream.com/event/16414", "url": "https://t.co/Fwvyew4hhY", "expanded_url": "http://bgpstream.com/event/16414", "indices": [53, 76]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:31:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685604760662196224, "text": "BGP,OT,52742,INTERNET,-,Outage affected 15 prefixes, https://t.co/Fwvyew4hhY", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "BGPStream"}, "default_profile_image": false, "id": 3237083798, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3555, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3237083798/1437676409", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "507922769", "following": false, "friends_count": 295, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "waterpigs.co.uk", "url": "https://t.co/NTbafUKQZe", "expanded_url": "https://waterpigs.co.uk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 331, "location": "Reykjav\u00edk, Iceland", "screen_name": "BarnabyWalters", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Barnaby Walters", "profile_use_background_image": true, "description": "Music/tech minded individual. Trained as a luthier, working on web surveys at V\u00edsar, Iceland. Building the #indieweb of the future. Hiking, climbing, gurdying.", "url": "https://t.co/NTbafUKQZe", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Feb 28 21:07:29 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684113513653137408/ddU8r9vj_normal.jpg", "favourites_count": 2198, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684845666649157632", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "waterpigs.co.uk/img/2016-01-06\u2026", "url": "https://t.co/7wSqHpJZYS", "expanded_url": "https://waterpigs.co.uk/img/2016-01-06-bubbles.gif", "indices": [36, 59]}, {"display_url": "waterpigs.co.uk/notes/4f6MF3/", "url": "https://t.co/5L2Znu5Ack", "expanded_url": "https://waterpigs.co.uk/notes/4f6MF3/", "indices": [62, 85]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 21:15:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684845666649157632, "text": "A little preparation for tomorrow\u2026\n\nhttps://t.co/7wSqHpJZYS\n (https://t.co/5L2Znu5Ack)", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Waterpigs.co.uk"}, "default_profile_image": false, "id": 507922769, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/439231433/TwitterBack.jpg", "statuses_count": 3559, "profile_banner_url": "https://pbs.twimg.com/profile_banners/507922769/1348091343", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "235193328", "following": false, "friends_count": 129, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "indiewebcamp.com", "url": "http://t.co/Lhpx03ubrJ", "expanded_url": "http://indiewebcamp.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 782, "location": "Portland, Oregon", "screen_name": "indiewebcamp", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "IndieWebCamp", "profile_use_background_image": true, "description": "Rather than posting content on 3rd-party silos, we should all begin owning our data when we create it.", "url": "http://t.co/Lhpx03ubrJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Jan 07 15:53:54 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386078425/indiewebcamp_logo_color_twitter_normal.png", "favourites_count": 1154, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685273812682719233", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "zeldman.com/2016/01/05/139\u2026", "url": "https://t.co/kMiWh7ufuW", "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", "indices": [104, 127]}], "hashtags": [{"text": "indieweb", "indices": [128, 137]}], "user_mentions": []}, "created_at": "Fri Jan 08 01:36:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685273812682719233, "text": "\u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7ufuW #indieweb", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685306865635336192", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "zeldman.com/2016/01/05/139\u2026", "url": "https://t.co/kMiWh7ufuW", "expanded_url": "http://www.zeldman.com/2016/01/05/13913/", "indices": [120, 140]}], "hashtags": [{"text": "indieweb", "indices": [139, 140]}], "user_mentions": [{"screen_name": "kevinmarks", "id_str": "57203", "id": 57203, "indices": [3, 14], "name": "Kevin Marks"}]}, "created_at": "Fri Jan 08 03:47:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685306865635336192, "text": "RT @kevinmarks: \u201cAs Maimonides, were he alive today, would tell us: he who excludes a single user destroys a universe.\u201d https://t.co/kMiWh7\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 235193328, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 151, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1183041", "following": false, "friends_count": 335, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wilwheaton.net/2009/02/what-t\u2026", "url": "http://t.co/UAYYOhbijM", "expanded_url": "http://wilwheaton.net/2009/02/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "F6101E", "geo_enabled": false, "followers_count": 2966166, "location": "Los Angeles", "screen_name": "wilw", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 38875, "name": "Wil Wheaton", "profile_use_background_image": true, "description": "Barrelslayer. Time Lord. Fake geek girl. On a good day I am charming as fuck.", "url": "http://t.co/UAYYOhbijM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", "profile_background_color": "022330", "created_at": "Wed Mar 14 21:25:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660891140418236416/7zeCwT9K_normal.png", "favourites_count": 445, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685630321258172416", "id": 685630321258172416, "text": "LOS ANGELES you really want to see what's left of this sunset.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:13:01 +0000 2016", "source": "Tweetings for Android", "favorite_count": 11, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1183041, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/871683408/62c85b46792dfe6bfd16420b71646cdb.png", "statuses_count": 60971, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183041/1368668860", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24184180", "following": false, "friends_count": 150, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "004A05", "geo_enabled": true, "followers_count": 283, "location": "", "screen_name": "xanderdumaine", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 31, "name": "Xander Dumaine", "profile_use_background_image": true, "description": "still trying. sometimes I have Opinions\u2122 which are my own, and do not represent my employer. Retweets do not imply endorsement.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Mar 13 14:59:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681300007044136960/l64DzyPy_normal.jpg", "favourites_count": 1252, "status": {"retweet_count": 0, "in_reply_to_user_id": 237534782, "possibly_sensitive": false, "id_str": "685584914973089792", "in_reply_to_user_id_str": "237534782", "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/necrosofty/sta\u2026", "url": "https://t.co/9jl9UNHv0s", "expanded_url": "https://twitter.com/necrosofty/status/685270713792466944", "indices": [13, 36]}], "hashtags": [], "user_mentions": [{"screen_name": "MattCheely", "id_str": "237534782", "id": 237534782, "indices": [0, 11], "name": "Matt Cheely"}]}, "created_at": "Fri Jan 08 22:12:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/0122292c5bc9ff29.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-78.881022, 35.796927], [-78.786799, 35.796927], [-78.786799, 35.870756], [-78.881022, 35.870756]]], "type": "Polygon"}, "full_name": "Morrisville, NC", "contained_within": [], "country_code": "US", "id": "0122292c5bc9ff29", "name": "Morrisville"}, "in_reply_to_screen_name": "MattCheely", "in_reply_to_status_id_str": null, "truncated": false, "id": 685584914973089792, "text": "@MattCheely https://t.co/9jl9UNHv0s", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 24184180, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433335665065861121/PZ-P25rK.jpeg", "statuses_count": 18329, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24184180/1452092382", "is_translator": false}, {"time_zone": "Melbourne", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "79227302", "following": false, "friends_count": 30, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fastmail.com", "url": "https://t.co/ckOsRTyp9h", "expanded_url": "https://www.fastmail.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "44567E", "geo_enabled": true, "followers_count": 5651, "location": "Melbourne, Australia", "screen_name": "FastMailFM", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 239, "name": "FastMail", "profile_use_background_image": true, "description": "Email, calendars and contacts done right.", "url": "https://t.co/ckOsRTyp9h", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", "profile_background_color": "022330", "created_at": "Fri Oct 02 16:49:48 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456300051074002945/Ege_GBkr_normal.png", "favourites_count": 293, "status": {"in_reply_to_status_id": 685607110684454912, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "chrisWhite", "in_reply_to_user_id": 7804242, "in_reply_to_status_id_str": "685607110684454912", "in_reply_to_user_id_str": "7804242", "truncated": false, "id_str": "685610756151230464", "id": 685610756151230464, "text": "@chrisWhite No the subject tagging is independent. You can turn it off in Advaced \u2192 Spam Preferences.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "chrisWhite", "id_str": "7804242", "id": 7804242, "indices": [0, 11], "name": "Chris White"}]}, "created_at": "Fri Jan 08 23:55:16 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 79227302, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2194, "profile_banner_url": "https://pbs.twimg.com/profile_banners/79227302/1403516751", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2209238580", "following": false, "friends_count": 2044, "entities": {"description": {"urls": [{"display_url": "github.com/StackStorm/st2", "url": "https://t.co/sd2EyabsN0", "expanded_url": "https://github.com/StackStorm/st2", "indices": [100, 123]}]}, "url": {"urls": [{"display_url": "stackstorm.com", "url": "http://t.co/5oR6MbHPSq", "expanded_url": "http://www.stackstorm.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2407, "location": "Palo Alto, CA", "screen_name": "Stack_Storm", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 110, "name": "StackStorm", "profile_use_background_image": true, "description": "Event driven operations. Sometimes called IFTTT for IT ops. Open source. Auto-remediation and more.\nhttps://t.co/sd2EyabsN0", "url": "http://t.co/5oR6MbHPSq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Nov 22 16:42:49 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/422857096665649152/VaMFEyf3_normal.jpeg", "favourites_count": 548, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685551803044249600", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "redd.it/3ztcla", "url": "https://t.co/C6Wa98PSra", "expanded_url": "https://redd.it/3ztcla", "indices": [92, 115]}], "hashtags": [{"text": "chatops", "indices": [20, 28]}], "user_mentions": []}, "created_at": "Fri Jan 08 20:01:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685551803044249600, "text": "Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685561768551186432", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "redd.it/3ztcla", "url": "https://t.co/C6Wa98PSra", "expanded_url": "https://redd.it/3ztcla", "indices": [108, 131]}], "hashtags": [{"text": "chatops", "indices": [36, 44]}], "user_mentions": [{"screen_name": "epowell101", "id_str": "15119662", "id": 15119662, "indices": [3, 14], "name": "Evan Powell"}]}, "created_at": "Fri Jan 08 20:40:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685561768551186432, "text": "RT @epowell101: Anyone want to talk #chatops and remediation? U know u want to. It is Friday after all... https://t.co/C6Wa98PSra", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2209238580, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1667, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209238580/1414949794", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "160640740", "following": false, "friends_count": 1203, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/marcomorain", "url": "https://t.co/QNDuJQAZ6V", "expanded_url": "https://github.com/marcomorain", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 503, "location": "Dublin, Ireland", "screen_name": "atmarc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "Marc O'Merriment", "profile_use_background_image": true, "description": "Developer at @CircleCI Previously Swrve, Havok and Kore Virtual Machines.", "url": "https://t.co/QNDuJQAZ6V", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Mon Jun 28 19:06:33 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649567428003917824/CkcjJPzf_normal.jpg", "favourites_count": 3499, "status": {"retweet_count": 32, "retweeted_status": {"retweet_count": 32, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685581797850279937", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:00:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685581797850279937, "text": "My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 33, "contributors": null, "source": "Mobile Web (M5)"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685582745637109760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.twitter.com/mjasay/status/\u2026", "url": "https://t.co/V9CWXyC8lL", "expanded_url": "https://mobile.twitter.com/mjasay/status/685581006875824128", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "tomdale", "id_str": "668863", "id": 668863, "indices": [3, 11], "name": "Tom Dale"}]}, "created_at": "Fri Jan 08 22:03:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685582745637109760, "text": "RT @tomdale: My fear of flying has never been higher. https://t.co/V9CWXyC8lL", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 160640740, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 4682, "profile_banner_url": "https://pbs.twimg.com/profile_banners/160640740/1398359765", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13470", "following": false, "friends_count": 1409, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sauria.com/blog", "url": "http://t.co/UB3y8QBrA6", "expanded_url": "http://www.sauria.com/blog", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 2849, "location": "Bainbridge Island, WA", "screen_name": "twleung", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 218, "name": "Ted Leung", "profile_use_background_image": true, "description": "photographs, modern programming languages, embedded systems, and commons based peer production. Leading the Playmation software team at The Walt Disney Company.", "url": "http://t.co/UB3y8QBrA6", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Tue Nov 21 09:23:47 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/14906322/1000218048_bb8c72ecaa_o_normal.jpg", "favourites_count": 4072, "status": {"in_reply_to_status_id": 684776564093931521, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jaxzin", "in_reply_to_user_id": 14320521, "in_reply_to_status_id_str": "684776564093931521", "in_reply_to_user_id_str": "14320521", "truncated": false, "id_str": "684784895512584192", "id": 684784895512584192, "text": "@jaxzin what do you think is the magic price point?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jaxzin", "id_str": "14320521", "id": 14320521, "indices": [0, 7], "name": "Brian R. Jackson"}]}, "created_at": "Wed Jan 06 17:13:36 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13470, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 9358, "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "50599894", "following": false, "friends_count": 1352, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 955, "location": "Paris, France", "screen_name": "nyconyco", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 72, "name": "Nicolas V\u00e9rit\u00e9, N\u00ffco", "profile_use_background_image": true, "description": "Product Owner @ErlangSolutions, President at @LinuxFrOrg #FLOSS #OpenSource #TheOpenOrg #Agile #LeanStartup #DesignThinking #GrowthHacking", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", "profile_background_color": "131516", "created_at": "Thu Jun 25 09:26:17 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661500699356844032/n70KmEZe_normal.jpg", "favourites_count": 343, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685537987355111426", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1O8FVAd", "url": "https://t.co/IxvtPzMNtO", "expanded_url": "http://buff.ly/1O8FVAd", "indices": [114, 137]}], "hashtags": [{"text": "Startups", "indices": [2, 11]}], "user_mentions": []}, "created_at": "Fri Jan 08 19:06:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685537987355111426, "text": "8 #Startups, 4 IPO's, Lost $35m of Investors Money to Paying Them Back $1b Each! Startup Lessons From Steve Blank https://t.co/IxvtPzMNtO", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 50599894, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 4281, "profile_banner_url": "https://pbs.twimg.com/profile_banners/50599894/1358775155", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "106621747", "following": false, "friends_count": 100, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "B30645", "geo_enabled": true, "followers_count": 734, "location": "", "screen_name": "KalieCatt", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 40, "name": "Kalie Fry", "profile_use_background_image": true, "description": "director of engagement marketing at @gomcmkt. wordsmith. social media jedi. closet creative. coffee connoisseur. classic novel enthusiast.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Jan 20 04:01:25 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658858527830634496/lrGCavd-_normal.png", "favourites_count": 6311, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685351275647516672", "id": 685351275647516672, "text": "So, I've been in an emoji formula battle all day and need to phone a friend. Want to help me solve?\n\n\u2754\u2795\u2702\ufe0f=\u2753\n\u2754\u2795\ud83c\uddf3\ud83c\uddec= \u2753\u2753\n\u2754\u2754\u2795(\u2796\ud83c\udf32\u2795\ud83d\udd34\u2795\ud83c\udf41)=\u2753\u2753", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 06:44:11 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 106621747, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/797868025/7677bb2d37eba940bd0a59afa52ffd3d.jpeg", "statuses_count": 2130, "profile_banner_url": "https://pbs.twimg.com/profile_banners/106621747/1430221319", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "459492917", "following": false, "friends_count": 3657, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "howhackersthink.com", "url": "http://t.co/IBghUiKudG", "expanded_url": "http://www.howhackersthink.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3816, "location": "Washington, DC", "screen_name": "HowHackersThink", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 178, "name": "HowHackersThink", "profile_use_background_image": true, "description": "Hacker. Consultant. Cyber Strategist. Writer. Professor. Public speaker. Researcher. Innovator. Advocate. All tweets and views are my own.", "url": "http://t.co/IBghUiKudG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", "profile_background_color": "022330", "created_at": "Mon Jan 09 18:43:40 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494933969540890625/-N6wYTfb_normal.jpeg", "favourites_count": 693, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684614746486759424", "id": 684614746486759424, "text": "The most complex things in this life: the mind and the universe. I study the mind on my way to understanding the universe. #HowHackersThink", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "HowHackersThink", "indices": [123, 139]}], "user_mentions": []}, "created_at": "Wed Jan 06 05:57:29 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 459492917, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2888, "profile_banner_url": "https://pbs.twimg.com/profile_banners/459492917/1436656035", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "110735547", "following": false, "friends_count": 514, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 162, "location": "Camden, ME", "screen_name": "kjstone00", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "Kevin Stone", "profile_use_background_image": true, "description": "dad, ops, monitoring, dogs, cats, chickens. Fledgling home brewer. Living life the way it should be in Maine", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Feb 02 15:59:41 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553027509684826112/qBQdjLwy_normal.jpeg", "favourites_count": 421, "status": {"retweet_count": 3, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685560813327925248", "id": 685560813327925248, "text": "\"mistakes will happen; negligence cannot\" /via @jeffbonwick 1994. #beforeDevopsWasDevops", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "beforeDevopsWasDevops", "indices": [66, 88]}], "user_mentions": [{"screen_name": "jeffbonwick", "id_str": "377264079", "id": 377264079, "indices": [47, 59], "name": "Jeff Bonwick"}]}, "created_at": "Fri Jan 08 20:36:49 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685620787399753728", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "beforeDevopsWasDevops", "indices": [81, 103]}], "user_mentions": [{"screen_name": "robtreat2", "id_str": "14497060", "id": 14497060, "indices": [3, 13], "name": "Robert Treat"}, {"screen_name": "jeffbonwick", "id_str": "377264079", "id": 377264079, "indices": [62, 74], "name": "Jeff Bonwick"}]}, "created_at": "Sat Jan 09 00:35:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685620787399753728, "text": "RT @robtreat2: \"mistakes will happen; negligence cannot\" /via @jeffbonwick 1994. #beforeDevopsWasDevops", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 110735547, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3643, "is_translator": false}, {"time_zone": "Ljubljana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "59282163", "following": false, "friends_count": 876, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lstoll.net", "url": "https://t.co/zymtFzZre6", "expanded_url": "http://lstoll.net", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "666666", "geo_enabled": true, "followers_count": 41022, "location": "Cleveland, OH", "screen_name": "lstoll", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 125, "name": "Kernel Sanders", "profile_use_background_image": true, "description": "Just some rando Australian operating computers and stuff at @Heroku. Previously @DigitalOcean, @GitHub, @Heroku.", "url": "https://t.co/zymtFzZre6", "profile_text_color": "000000", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", "profile_background_color": "352726", "created_at": "Wed Jul 22 23:05:12 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673478075892404225/FB25Vch7_normal.jpg", "favourites_count": 14331, "status": {"in_reply_to_status_id": 685598770684411904, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-81.877771, 41.392684], [-81.5331634, 41.392684], [-81.5331634, 41.599195], [-81.877771, 41.599195]]], "type": "Polygon"}, "full_name": "Cleveland, OH", "contained_within": [], "country_code": "US", "id": "0eb9676d24b211f1", "name": "Cleveland"}, "in_reply_to_screen_name": "klimpong", "in_reply_to_user_id": 4600051, "in_reply_to_status_id_str": "685598770684411904", "in_reply_to_user_id_str": "4600051", "truncated": false, "id_str": "685599007415078913", "id": 685599007415078913, "text": "@klimpong Bonjour (That's french too)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "klimpong", "id_str": "4600051", "id": 4600051, "indices": [0, 9], "name": "Till"}]}, "created_at": "Fri Jan 08 23:08:35 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 59282163, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 28104, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "163457790", "following": false, "friends_count": 1421, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eligible.com", "url": "https://t.co/zeacfox6vu", "expanded_url": "http://eligible.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 15359, "location": "San Francisco \u21c6 Brooklyn ", "screen_name": "katgleason", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 172, "name": "Katelyn Gleason", "profile_use_background_image": false, "description": "S12 YC alum. CEO @eligibleapi", "url": "https://t.co/zeacfox6vu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jul 06 13:33:13 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624691297580879872/ILJ1hfWy_normal.jpg", "favourites_count": 2503, "status": {"in_reply_to_status_id": 685529873138323456, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "kirillzubovsky", "in_reply_to_user_id": 17541787, "in_reply_to_status_id_str": "685529873138323456", "in_reply_to_user_id_str": "17541787", "truncated": false, "id_str": "685531559508721664", "id": 685531559508721664, "text": "@kirillzubovsky @davemorin LOL that's definitely going in the folder", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kirillzubovsky", "id_str": "17541787", "id": 17541787, "indices": [0, 15], "name": "Kirill Zubovsky"}, {"screen_name": "davemorin", "id_str": "3475", "id": 3475, "indices": [16, 26], "name": "Dave Morin"}]}, "created_at": "Fri Jan 08 18:40:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 163457790, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067900347/ed1d7ac6c7e6e0a7beb40d23bcefff4d.png", "statuses_count": 6273, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3998615773", "following": false, "friends_count": 5001, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "devopsdad.com", "url": "https://t.co/JrNXHr85zj", "expanded_url": "http://devopsdad.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "500A53", "geo_enabled": false, "followers_count": 1286, "location": "Texas, USA", "screen_name": "TheDevOpsDad", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 25, "name": "Roel Pasetes", "profile_use_background_image": false, "description": "DevOps Engineer and Dad. Love 'em Both.", "url": "https://t.co/JrNXHr85zj", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Oct 24 04:34:34 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657778447108837377/SMdLMIfF_normal.jpg", "favourites_count": 7, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682441217653796865", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 193, "h": 186, "resize": "fit"}, "small": {"w": 193, "h": 186, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 193, "h": 186, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", "type": "photo", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/CXiEq-9WAAAqd5k.png", "display_url": "pic.twitter.com/ZKCpgU3ctc", "id_str": "682441217536294912", "expanded_url": "http://twitter.com/TheDevOpsDad/status/682441217653796865/photo/1", "id": 682441217536294912, "url": "https://t.co/ZKCpgU3ctc"}], "symbols": [], "urls": [{"display_url": "buff.ly/1Mr6ClV", "url": "https://t.co/vNHAVlc1So", "expanded_url": "http://buff.ly/1Mr6ClV", "indices": [59, 82]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 31 06:00:40 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682441217653796865, "text": "What can Joey from Friends teach us about our devops work? https://t.co/vNHAVlc1So https://t.co/ZKCpgU3ctc", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 3998615773, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 95, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3998615773/1445662297", "is_translator": false}, {"time_zone": "Tijuana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16364066", "following": false, "friends_count": 505, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/mcoates", "url": "https://t.co/uNCdooglSE", "expanded_url": "http://www.linkedin.com/in/mcoates", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "001C8A", "geo_enabled": true, "followers_count": 5194, "location": "San Francisco, CA", "screen_name": "_mwc", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 254, "name": "Michael Coates \u2604", "profile_use_background_image": false, "description": "Trust & Info Security Officer @Twitter, @OWASP Global Board, Former @Mozilla", "url": "https://t.co/uNCdooglSE", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Sep 19 14:41:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/484451644164169728/BbVxXk3S_normal.jpeg", "favourites_count": 349, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685553622675935232", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/chrismessina/s\u2026", "url": "https://t.co/ic0IlFWa29", "expanded_url": "https://twitter.com/chrismessina/status/685218795435077633", "indices": [62, 85]}], "hashtags": [], "user_mentions": [{"screen_name": "chrismessina", "id_str": "1186", "id": 1186, "indices": [21, 34], "name": "\u2744\ufe0e Chris Messina \u2744\ufe0e"}]}, "created_at": "Fri Jan 08 20:08:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685553622675935232, "text": "I'm with you on that @chrismessina. This is just odd at best. https://t.co/ic0IlFWa29", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16364066, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3515, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16364066/1443650382", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "93954161", "following": false, "friends_count": 347, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 16539, "location": "San Francisco", "screen_name": "aroetter", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 176, "name": "Alex Roetter", "profile_use_background_image": true, "description": "SVP Engineering @ Twitter. Parenthood, Aviation, Alpinism, Sandwiches. Fighting gravity but usually losing.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 01 22:04:13 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/514632460756209664/dqTY9EUM_normal.jpeg", "favourites_count": 2838, "status": {"in_reply_to_status_id": 685585778076848128, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "NShivakumar", "in_reply_to_user_id": 41315003, "in_reply_to_status_id_str": "685585778076848128", "in_reply_to_user_id_str": "41315003", "truncated": false, "id_str": "685586111687622656", "id": 685586111687622656, "text": "@NShivakumar congrats!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "NShivakumar", "id_str": "41315003", "id": 41315003, "indices": [0, 12], "name": "Shiva Shivakumar"}]}, "created_at": "Fri Jan 08 22:17:21 +0000 2016", "source": "Twitter for Android", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 93954161, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2322, "profile_banner_url": "https://pbs.twimg.com/profile_banners/93954161/1385781289", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "11873632", "following": false, "friends_count": 871, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lewisheadden.com", "url": "http://t.co/LYuJlxmvg5", "expanded_url": "http://www.lewisheadden.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1039, "location": "New York City", "screen_name": "lewisheadden", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "Lewis Headden", "profile_use_background_image": true, "description": "Scotsman, New Yorker, Photoshopper, Christian. DevOps Engineer at @CondeNast. Formerly @AmazonDevScot, @AetherworksLLC, @StAndrewsCS.", "url": "http://t.co/LYuJlxmvg5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Jan 05 13:06:09 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507179424588898304/Sf3TCi9I_normal.jpeg", "favourites_count": 785, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685121406753976320", "id": 685121406753976320, "text": "You know Thursday morning is a struggle when you're debating microfoam and the \"Third Wave of Coffee\".", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 15:30:46 +0000 2016", "source": "TweetDeck", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 11873632, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4814, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11873632/1409756044", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16022957", "following": false, "friends_count": 2120, "entities": {"description": {"urls": [{"display_url": "keybase.io/markaci", "url": "https://t.co/n8kTLKcwJx", "expanded_url": "http://keybase.io/markaci", "indices": [137, 160]}]}, "url": {"urls": [{"display_url": "linkedin.com/in/markdobrowo\u2026", "url": "https://t.co/iw20KWBDrr", "expanded_url": "https://linkedin.com/in/markdobrowolski", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "1F2A3D", "geo_enabled": true, "followers_count": 1003, "location": "Toronto, Canada", "screen_name": "markaci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 73, "name": "mar\u10d9\u10d0\u10ea\u10d8", "profile_use_background_image": true, "description": "Mark Dobrowolski - Information Security & Risk Management Professional; disruptor, innovator, rainmaker, student, friend. RT\u2260endorsement https://t.co/n8kTLKcwJx", "url": "https://t.co/iw20KWBDrr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", "profile_background_color": "022330", "created_at": "Thu Aug 28 03:58:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/442547375635042304/GCAm0MVC_normal.jpeg", "favourites_count": 9595, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685616067994083328", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "washingtonpost.com/news/grade-poi\u2026", "url": "https://t.co/HwJvphxgkP", "expanded_url": "https://www.washingtonpost.com/news/grade-point/wp/2016/01/07/my-college-got-caught-up-in-the-horrifying-rage-over-wheatons-muslim-christian-god-debate/?wpmm=1&wpisrc=nl_highered", "indices": [91, 114]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:16:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685616067994083328, "text": "My college got caught up in the horrifying rage over Wheaton's Muslim-Christian God debate https://t.co/HwJvphxgkP", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685624878406434816", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "washingtonpost.com/news/grade-poi\u2026", "url": "https://t.co/HwJvphxgkP", "expanded_url": "https://www.washingtonpost.com/news/grade-point/wp/2016/01/07/my-college-got-caught-up-in-the-horrifying-rage-over-wheatons-muslim-christian-god-debate/?wpmm=1&wpisrc=nl_highered", "indices": [105, 128]}], "hashtags": [], "user_mentions": [{"screen_name": "sambowne", "id_str": "20961162", "id": 20961162, "indices": [3, 12], "name": "Sam Bowne"}]}, "created_at": "Sat Jan 09 00:51:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685624878406434816, "text": "RT @sambowne: My college got caught up in the horrifying rage over Wheaton's Muslim-Christian God debate https://t.co/HwJvphxgkP", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 16022957, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 19135, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16022957/1394348072", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "70916267", "following": false, "friends_count": 276, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 177, "location": "Bradford", "screen_name": "developer_gg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Gordon Brown", "profile_use_background_image": true, "description": "I like computers, beer and coffee, but not necessarily in that order. I also try to run occasionally. Consultant at @ukinfinityworks.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 02 08:33:20 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/454112682422329344/QRoEl81E_normal.jpeg", "favourites_count": 128, "status": {"in_reply_to_status_id": 685381555305484288, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "ToxicTourniquet", "in_reply_to_user_id": 53144530, "in_reply_to_status_id_str": "685381555305484288", "in_reply_to_user_id_str": "53144530", "truncated": false, "id_str": "685382327615238145", "id": 685382327615238145, "text": "@ToxicTourniquet @Staticman1 @PayByPhone_UK you can - I just did - 0330 400 7275. You'll still need your location code.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ToxicTourniquet", "id_str": "53144530", "id": 53144530, "indices": [0, 16], "name": "Tam"}, {"screen_name": "Staticman1", "id_str": "56454758", "id": 56454758, "indices": [17, 28], "name": "James Hawkins"}, {"screen_name": "PayByPhone_UK", "id_str": "436714561", "id": 436714561, "indices": [29, 43], "name": "PayByPhone UK"}]}, "created_at": "Fri Jan 08 08:47:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 70916267, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 509, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "19734656", "following": false, "friends_count": 1068, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "realgenekim.me", "url": "http://t.co/IBvzJu7jHq", "expanded_url": "http://realgenekim.me", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 18784, "location": "\u00dcT: 45.527981,-122.670577", "screen_name": "RealGeneKim", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1035, "name": "Gene Kim", "profile_use_background_image": true, "description": "DevOps enthusiast, The Phoenix Project co-author, Tripwire founder, Visible Ops co-author, IT Ops/Security Researcher, Theory of Constraints Jonah, rabid UX fan", "url": "http://t.co/IBvzJu7jHq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jan 29 21:10:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648620922623012864/e-SUFgSW_normal.jpg", "favourites_count": 1122, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jsomers", "in_reply_to_user_id": 6073472, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "6073472", "truncated": false, "id_str": "685621037677953024", "id": 685621037677953024, "text": "@jsomers It's freaking brilliant! Brilliant work! There's a book I've been working on for 4 yrs that I'd love to do the analysis on.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jsomers", "id_str": "6073472", "id": 6073472, "indices": [0, 8], "name": "James Somers"}]}, "created_at": "Sat Jan 09 00:36:08 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 19734656, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 17250, "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "12614742", "following": false, "friends_count": 1437, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "testobsessed.com", "url": "http://t.co/QKSEPgi0Ad", "expanded_url": "http://www.testobsessed.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": false, "followers_count": 10876, "location": "Palo Alto, California, USA", "screen_name": "testobsessed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 808, "name": "ElisabethHendrickson", "profile_use_background_image": true, "description": "Author of Explore It! Recovering consultant. I work on Big Data at @pivotal but speak only for myself.", "url": "http://t.co/QKSEPgi0Ad", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", "profile_background_color": "EDECE9", "created_at": "Wed Jan 23 21:49:39 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000537974783/0aca696fb71add94d8a153da8a37cc34_normal.jpeg", "favourites_count": 9737, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685086119029948418", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/LindaRegber/st\u2026", "url": "https://t.co/qCHRQzRBKE", "expanded_url": "https://twitter.com/LindaRegber/status/683294175752810496", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 13:10:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685086119029948418, "text": "Love the visualization. https://t.co/qCHRQzRBKE", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 12614742, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 17738, "is_translator": false}, {"time_zone": "Stockholm", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "155247426", "following": false, "friends_count": 391, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "loweschmidt.se", "url": "http://t.co/bqChHrmryK", "expanded_url": "http://loweschmidt.se", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 273, "location": "Stockholm, Sweden", "screen_name": "loweschmidt", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 31, "name": "Lowe Schmidt", "profile_use_background_image": true, "description": "FLOSS fan, DevOps advocate, sysadmin for hire @init_ab. (neo)vim user, @sthlmdevops founder and beer collector @untappd. I also like tattoos.", "url": "http://t.co/bqChHrmryK", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun Jun 13 15:45:23 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680103454031917056/3dpqtTTa_normal.jpg", "favourites_count": 608, "status": {"retweet_count": 9, "retweeted_status": {"retweet_count": 9, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685585057948434432", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 125, "resize": "fit"}, "medium": {"w": 600, "h": 220, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 376, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "type": "photo", "indices": [107, 130], "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "display_url": "pic.twitter.com/IEQVTQqJVK", "id_str": "685584988327116800", "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", "id": 685584988327116800, "url": "https://t.co/IEQVTQqJVK"}], "symbols": [], "urls": [{"display_url": "facebook.com/notes/matty-gr\u2026", "url": "https://t.co/bgCQtDeUtW", "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", "indices": [83, 106]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:13:10 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685585057948434432, "text": "Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJVK", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685587439931551744", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 125, "resize": "fit"}, "medium": {"w": 600, "h": 220, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 376, "resize": "fit"}}, "source_status_id_str": "685585057948434432", "media_url": "http://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "source_user_id_str": "18137723", "id_str": "685584988327116800", "id": 685584988327116800, "media_url_https": "https://pbs.twimg.com/media/CYOv6hyUAAAP1Pi.png", "type": "photo", "indices": [122, 144], "source_status_id": 685585057948434432, "source_user_id": 18137723, "display_url": "pic.twitter.com/IEQVTQqJVK", "expanded_url": "http://twitter.com/raganwald/status/685585057948434432/photo/1", "url": "https://t.co/IEQVTQqJVK"}], "symbols": [], "urls": [{"display_url": "facebook.com/notes/matty-gr\u2026", "url": "https://t.co/bgCQtDeUtW", "expanded_url": "https://www.facebook.com/notes/matty-granger/at-long-lastmy-star-wars-episode-vii-review-the-force-awakens-the-rise-of-idiot-/10153163095086277", "indices": [98, 121]}], "hashtags": [], "user_mentions": [{"screen_name": "raganwald", "id_str": "18137723", "id": 18137723, "indices": [3, 13], "name": "Reginald Braithwaite"}]}, "created_at": "Fri Jan 08 22:22:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685587439931551744, "text": "RT @raganwald: Epic takedown of a takedown: THE FORCE AWAKENS & THE RISE OF IDIOT JOURNALISM\n\nhttps://t.co/bgCQtDeUtW https://t.co/IEQVTQqJ\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 155247426, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 10749, "profile_banner_url": "https://pbs.twimg.com/profile_banners/155247426/1372113776", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14946551", "following": false, "friends_count": 233, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/thedoh", "url": "https://t.co/75FomxWTf2", "expanded_url": "https://twitter.com/thedoh", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": false, "followers_count": 332, "location": "Toronto, Ontario", "screen_name": "thedoh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 38, "name": "Lisa Seelye", "profile_use_background_image": true, "description": "Magic, sysadmin, learner", "url": "https://t.co/75FomxWTf2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", "profile_background_color": "8B542B", "created_at": "Thu May 29 18:28:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9B17E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/310510395/3278_95260962237_628832237_2530483_2217625_n_normal.jpg", "favourites_count": 372, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685593686432825344", "id": 685593686432825344, "text": "Skipping FNM tonight. Not feeling it.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:47:27 +0000 2016", "source": "Twitterrific for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14946551, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "statuses_count": 20006, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "80200818", "following": false, "friends_count": 587, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "100357", "geo_enabled": true, "followers_count": 328, "location": "memphis \u2708 seattle", "screen_name": "edyesed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 77, "name": "that guy", "profile_use_background_image": true, "description": "asdf;lkj... #dadops #devops", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", "profile_background_color": "131516", "created_at": "Tue Oct 06 03:09:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617082320076472320/5l2wizV0_normal.png", "favourites_count": 3601, "status": {"retweet_count": 2, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685582326827499520", "id": 685582326827499520, "text": "Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told me?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:02:18 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685590780581249024", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JeffSaidSo", "id_str": "171544323", "id": 171544323, "indices": [3, 14], "name": "Jeff Allen"}]}, "created_at": "Fri Jan 08 22:35:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685590780581249024, "text": "RT @JeffSaidSo: Our stock is down so much this week that I'm starting to feel like I work for VMware. Is Dell buying us too and no one told\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 80200818, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000090713822/5d7a8d209e5cbba763260dc949dfbb01.png", "statuses_count": 8489, "profile_banner_url": "https://pbs.twimg.com/profile_banners/80200818/1419223168", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "913200547", "following": false, "friends_count": 1308, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nickshemonsky.com", "url": "http://t.co/xWPpyxcm6U", "expanded_url": "http://www.nickshemonsky.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "657B83", "geo_enabled": false, "followers_count": 279, "location": "Pottsville, PA", "screen_name": "nshemonsky", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 16, "name": "Nick Shemonsky", "profile_use_background_image": false, "description": "@BlueBox Ops | @Penn_State alum | #CraftBeer Enthusiast | Fly @Eagles Fly! | Runner", "url": "http://t.co/xWPpyxcm6U", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", "profile_background_color": "004454", "created_at": "Mon Oct 29 20:37:31 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2966255499/03b0214089ef8f284557ab194147661d_normal.jpeg", "favourites_count": 126, "status": {"in_reply_to_status_id": 685500343506071553, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MassHaste", "in_reply_to_user_id": 27139651, "in_reply_to_status_id_str": "685500343506071553", "in_reply_to_user_id_str": "27139651", "truncated": false, "id_str": "685501930177597440", "id": 685501930177597440, "text": "@MassHaste @biscuitbitch They make a good americano as well.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MassHaste", "id_str": "27139651", "id": 27139651, "indices": [0, 10], "name": "Ruben Orduz"}, {"screen_name": "biscuitbitch", "id_str": "704580546", "id": 704580546, "indices": [11, 24], "name": "Biscuit Bitch"}]}, "created_at": "Fri Jan 08 16:42:50 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 913200547, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/591223704715071488/8W5fa2JY.jpg", "statuses_count": 923, "profile_banner_url": "https://pbs.twimg.com/profile_banners/913200547/1429793800", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2838111", "following": false, "friends_count": 456, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mcdermottroe.com", "url": "http://t.co/6FjMMOcAIA", "expanded_url": "http://www.mcdermottroe.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 793, "location": "Dublin, Ireland", "screen_name": "IRLConor", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 37, "name": "Conor McDermottroe", "profile_use_background_image": true, "description": "I'm a software developer for @circleci. I'm also a competitive rifle shooter for @targetshooting and @durifle.", "url": "http://t.co/6FjMMOcAIA", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 29 13:35:37 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624987801273151488/KQDzSMAN_normal.jpg", "favourites_count": 479, "status": {"in_reply_to_status_id": 684739332087910400, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "courtewing", "in_reply_to_user_id": 25573729, "in_reply_to_status_id_str": "684739332087910400", "in_reply_to_user_id_str": "25573729", "truncated": false, "id_str": "684739489403645952", "id": 684739489403645952, "text": "@courtewing @cloudsteph Read position, read indicators on DMs (totally broken on Twitter itself) and mute filters among other things.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "courtewing", "id_str": "25573729", "id": 25573729, "indices": [0, 11], "name": "Court Ewing"}, {"screen_name": "cloudsteph", "id_str": "15389419", "id": 15389419, "indices": [12, 23], "name": "Stephie Graphics"}]}, "created_at": "Wed Jan 06 14:13:10 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2838111, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5257, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2838111/1396367369", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "104164496", "following": false, "friends_count": 2020, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dribbble.com/danielbeere", "url": "http://t.co/6ZvS9hPEgV", "expanded_url": "http://dribbble.com/danielbeere", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "663399", "geo_enabled": false, "followers_count": 823, "location": "San Francisco", "screen_name": "DanielBeere", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 115, "name": "Daniel Beere", "profile_use_background_image": true, "description": "Irish designer in SF @circleci \u270c\ufe0f", "url": "http://t.co/6ZvS9hPEgV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jan 12 13:41:22 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBE9ED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585331625631690752/6Bo4ACkr_normal.jpg", "favourites_count": 2203, "status": {"retweet_count": 0, "in_reply_to_user_id": 604516513, "possibly_sensitive": false, "id_str": "685495163859394562", "in_reply_to_user_id_str": "604516513", "entities": {"symbols": [], "urls": [{"display_url": "amazon.com/Yogi-Teas-Bags\u2026", "url": "https://t.co/urUptC9Tt3", "expanded_url": "http://www.amazon.com/Yogi-Teas-Bags-Stess-Relief/dp/B0009F3QKW", "indices": [11, 34]}, {"display_url": "fourhourworkweek.com/2016/01/03/new\u2026", "url": "https://t.co/ljyONNyI0B", "expanded_url": "http://fourhourworkweek.com/2016/01/03/new-years-resolutions", "indices": [83, 106]}], "hashtags": [], "user_mentions": [{"screen_name": "beerhoff1", "id_str": "604516513", "id": 604516513, "indices": [0, 10], "name": "Shane Beere"}, {"screen_name": "kevinrose", "id_str": "657863", "id": 657863, "indices": [53, 63], "name": "Kevin Rose"}, {"screen_name": "tferriss", "id_str": "11740902", "id": 11740902, "indices": [67, 76], "name": "Tim Ferriss"}]}, "created_at": "Fri Jan 08 16:15:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "beerhoff1", "in_reply_to_status_id_str": null, "truncated": false, "id": 685495163859394562, "text": "@beerhoff1 https://t.co/urUptC9Tt3 as recommended by @kevinrose on @tferriss show: https://t.co/ljyONNyI0B", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 104164496, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/448845542/twitterBGtest.jpg", "statuses_count": 6830, "profile_banner_url": "https://pbs.twimg.com/profile_banners/104164496/1375219663", "is_translator": false}, {"time_zone": "Vienna", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "39625343", "following": false, "friends_count": 446, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blag.esotericsystems.at", "url": "https://t.co/NexvmiW4Zx", "expanded_url": "https://blag.esotericsystems.at/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": false, "followers_count": 781, "location": "They/Their Land", "screen_name": "hirojin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "The Wrath of me\u2122", "profile_use_background_image": true, "description": "disappointing expectations since 1894.", "url": "https://t.co/NexvmiW4Zx", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Tue May 12 23:20:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652574773189328896/UJe3C_H9_normal.jpg", "favourites_count": 18074, "status": {"in_reply_to_status_id": 685618373426724865, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "aesmael", "in_reply_to_user_id": 18427820, "in_reply_to_status_id_str": "685618373426724865", "in_reply_to_user_id_str": "18427820", "truncated": false, "id_str": "685619465015418882", "id": 685619465015418882, "text": "@aesmael seriously: same.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "aesmael", "id_str": "18427820", "id": 18427820, "indices": [0, 8], "name": "Vulpecula"}]}, "created_at": "Sat Jan 09 00:29:53 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 39625343, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651653962118991872/iGPyenqL.jpg", "statuses_count": 32422, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39625343/1401366515", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "12143922", "following": false, "friends_count": 1036, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "markn.ca", "url": "http://t.co/n78rBOUVWU", "expanded_url": "http://markn.ca", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", "notifications": false, "profile_sidebar_fill_color": "595D62", "profile_link_color": "67BACA", "geo_enabled": false, "followers_count": 3456, "location": "::1", "screen_name": "marknca", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 446, "name": "Mark Nunnikhoven", "profile_use_background_image": false, "description": "Vice President, Cloud Research @TrendMicro. \n\nResearching & teaching cloud & usable security systems at scale. Opinionated but always looking to learn.", "url": "http://t.co/n78rBOUVWU", "profile_text_color": "50A394", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", "profile_background_color": "525055", "created_at": "Sat Jan 12 04:41:20 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579998526039420928/6r__HOOO_normal.jpg", "favourites_count": 1975, "status": {"retweet_count": 41, "retweeted_status": {"retweet_count": 41, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685596159088443392", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.jquery.com/2016/01/08/jqu\u2026", "url": "https://t.co/VroeFOmHeD", "expanded_url": "http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/", "indices": [115, 138]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:57:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685596159088443392, "text": "jQuery 2.2 and 1.12 are released, with performance improvements, SVG class manipulation and Symbol support in ES6. https://t.co/VroeFOmHeD", "coordinates": null, "retweeted": false, "favorite_count": 43, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685626577477046272", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.jquery.com/2016/01/08/jqu\u2026", "url": "https://t.co/VroeFOmHeD", "expanded_url": "http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "smashingmag", "id_str": "15736190", "id": 15736190, "indices": [3, 15], "name": "Smashing Magazine"}]}, "created_at": "Sat Jan 09 00:58:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685626577477046272, "text": "RT @smashingmag: jQuery 2.2 and 1.12 are released, with performance improvements, SVG class manipulation and Symbol support in ES6. https:/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 12143922, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/827645759/f259f613ca2b8fbc60701d41de84d35d.png", "statuses_count": 35452, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12143922/1397706275", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8866232", "following": false, "friends_count": 2005, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mattrogish.com", "url": "http://t.co/yCK1Z82dhE", "expanded_url": "http://www.mattrogish.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 1677, "location": "Philadelphia, PA", "screen_name": "MattRogish", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 233, "name": "Matt Rogish", "profile_use_background_image": true, "description": "Startup janitor @ReactiveOps", "url": "http://t.co/yCK1Z82dhE", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", "profile_background_color": "1A1B1F", "created_at": "Fri Sep 14 01:23:45 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564167271933673472/FtX09lSa_normal.png", "favourites_count": 409, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685583855701594112", "id": 685583855701594112, "text": "Is it possible for my shower head to spray bourbon?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:08:23 +0000 2016", "source": "TweetDeck", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685583979848830976", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mikebarish", "id_str": "34930874", "id": 34930874, "indices": [3, 14], "name": "Mike Barish"}]}, "created_at": "Fri Jan 08 22:08:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685583979848830976, "text": "RT @mikebarish: Is it possible for my shower head to spray bourbon?", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 8866232, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000151949873/vEX3Am-4.jpeg", "statuses_count": 29628, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8866232/1398194149", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1458271", "following": false, "friends_count": 1789, "entities": {"description": {"urls": [{"display_url": "mapbox.com", "url": "https://t.co/djeLWKvmpe", "expanded_url": "http://mapbox.com", "indices": [6, 29]}, {"display_url": "github.com/tmcw", "url": "https://t.co/j4toNgk9Vd", "expanded_url": "https://github.com/tmcw", "indices": [36, 59]}]}, "url": {"urls": [{"display_url": "macwright.org", "url": "http://t.co/d4zmVgqQxY", "expanded_url": "http://macwright.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "727996", "geo_enabled": true, "followers_count": 4338, "location": "lon, lat", "screen_name": "tmcw", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 336, "name": "Tom MacWright", "profile_use_background_image": false, "description": "work: https://t.co/djeLWKvmpe\ncode: https://t.co/j4toNgk9Vd", "url": "http://t.co/d4zmVgqQxY", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Mar 19 01:06:50 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679895164232531969/7VHEeShe_normal.jpg", "favourites_count": 2154, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685479131652460544", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "movingbrands.com/work/netflix", "url": "https://t.co/jVHQei9nqB", "expanded_url": "http://www.movingbrands.com/work/netflix", "indices": [101, 124]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:12:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685479131652460544, "text": "brand redesign posts that are specific about the previous design's problems are way more interesting https://t.co/jVHQei9nqB", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1458271, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547398161/gosper_big.png", "statuses_count": 11307, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1458271/1436753023", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "821753", "following": false, "friends_count": 313, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "waferbaby.com", "url": "https://t.co/qvUfWRzUDe", "expanded_url": "http://waferbaby.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 2192, "location": "Mos Iceland Container Store", "screen_name": "waferbaby", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 141, "name": "Daniel Bogan", "profile_use_background_image": false, "description": "I do the stuff on the Internets.", "url": "https://t.co/qvUfWRzUDe", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", "profile_background_color": "2E2E2E", "created_at": "Thu Mar 08 14:02:34 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685312338912653312/zPBEnxQZ_normal.jpg", "favourites_count": 10157, "status": {"in_reply_to_status_id": 685628007793311744, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "collypops", "in_reply_to_user_id": 11025002, "in_reply_to_status_id_str": "685628007793311744", "in_reply_to_user_id_str": "11025002", "truncated": false, "id_str": "685628439152308224", "id": 685628439152308224, "text": "@collypops @siothamh: WhatEVER, mudblood.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "collypops", "id_str": "11025002", "id": 11025002, "indices": [0, 10], "name": "Colin Gourlay"}, {"screen_name": "siothamh", "id_str": "821958", "id": 821958, "indices": [11, 20], "name": "Dana NicCaluim"}]}, "created_at": "Sat Jan 09 01:05:32 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 821753, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 60183, "profile_banner_url": "https://pbs.twimg.com/profile_banners/821753/1450081356", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "557933634", "following": false, "friends_count": 4062, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "saltstack.com", "url": "http://t.co/rukw0maLdy", "expanded_url": "http://saltstack.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "48B4FB", "geo_enabled": false, "followers_count": 6326, "location": "Salt Lake City", "screen_name": "SaltStackInc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 305, "name": "SaltStack", "profile_use_background_image": true, "description": "Software to orchestrate & automate CloudOps, ITOps & DevOps at extreme speed & scale | '14 InfoWorld Technology of the Year | '13 Gartner Cool Vendor in DevOps", "url": "http://t.co/rukw0maLdy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Apr 19 16:31:12 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/577940000693620736/-lag2uPT_normal.png", "favourites_count": 1125, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685600728631476225", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1jM9opD", "url": "https://t.co/TbBXqaLwrc", "expanded_url": "http://bit.ly/1jM9opD", "indices": [90, 113]}], "hashtags": [{"text": "SaltConf16", "indices": [4, 15]}], "user_mentions": [{"screen_name": "LinkedIn", "id_str": "13058772", "id": 13058772, "indices": [27, 36], "name": "LinkedIn"}, {"screen_name": "druonysus", "id_str": "352871356", "id": 352871356, "indices": [38, 48], "name": "Drew Adams"}, {"screen_name": "OpenX", "id_str": "14184143", "id": 14184143, "indices": [52, 58], "name": "OpenX"}, {"screen_name": "ClemsonUniv", "id_str": "23444864", "id": 23444864, "indices": [65, 77], "name": "Clemson University"}]}, "created_at": "Fri Jan 08 23:15:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685600728631476225, "text": "New #SaltConf16 talks from @LinkedIn, @druonysus of @OpenX & @ClemsonUniv now posted: https://t.co/TbBXqaLwrc Register now.", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 557933634, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575736803795148800/eW3ZLb45.png", "statuses_count": 2842, "profile_banner_url": "https://pbs.twimg.com/profile_banners/557933634/1428941606", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3450748273", "following": false, "friends_count": 8, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "howdy.ai", "url": "https://t.co/1cHNN303mV", "expanded_url": "http://howdy.ai", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 667, "location": "Austin, TX", "screen_name": "HowdyAI", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Howdy", "profile_use_background_image": false, "description": "Your new digital coworker for Slack!", "url": "https://t.co/1cHNN303mV", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Sep 04 18:15:13 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656466414790795265/3bMSWEnX_normal.jpg", "favourites_count": 399, "status": {"in_reply_to_status_id": 685485832308965376, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mescamm", "in_reply_to_user_id": 113094157, "in_reply_to_status_id_str": "685485832308965376", "in_reply_to_user_id_str": "113094157", "truncated": false, "id_str": "685600766917275648", "id": 685600766917275648, "text": "@mescamm Your Howdy bot is ready to go!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mescamm", "id_str": "113094157", "id": 113094157, "indices": [0, 8], "name": "Mathieu Mescam"}]}, "created_at": "Fri Jan 08 23:15:35 +0000 2016", "source": "Groove HQ", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3450748273, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 220, "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "3428227355", "following": false, "friends_count": 1937, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nerabus.com", "url": "http://t.co/ZzSYPLDJDg", "expanded_url": "http://nerabus.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "8C8C8C", "geo_enabled": false, "followers_count": 551, "location": "Manchester and Cambridge, UK", "screen_name": "computefuture", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 24, "name": "Nerabus", "profile_use_background_image": false, "description": "The focal point of the Open Source hardware revolution #cto #datacenter #OpenSourceHardware #OpenSourceSilicon #FPGA", "url": "http://t.co/ZzSYPLDJDg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", "profile_background_color": "000000", "created_at": "Mon Aug 17 14:43:41 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643470775731789824/MnRPWXNg_normal.png", "favourites_count": 213, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685128917259259904", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "engt.co/1Rl04XW", "url": "https://t.co/73ZDipi3RD", "expanded_url": "http://engt.co/1Rl04XW", "indices": [46, 69]}], "hashtags": [], "user_mentions": [{"screen_name": "engadget", "id_str": "14372486", "id": 14372486, "indices": [74, 83], "name": "Engadget"}]}, "created_at": "Thu Jan 07 16:00:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685128917259259904, "text": "Amazon is selling its own processors now, too https://t.co/73ZDipi3RD via @engadget", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 3428227355, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 374, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3428227355/1442251790", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1087503266", "following": false, "friends_count": 311, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "levlaz.org", "url": "https://t.co/4OB68uzJbf", "expanded_url": "https://levlaz.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 462, "location": "San Francisco, CA", "screen_name": "levlaz", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 44, "name": "Lev Lazinskiy", "profile_use_background_image": true, "description": "I \u2764\ufe0f\u200d Developers @CircleCI, Graduate Student @NovaSE, Veteran, Musician, Dev and Linux Geek. \u2764\ufe0f @songbing_yu", "url": "https://t.co/4OB68uzJbf", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", "profile_background_color": "1A1B1F", "created_at": "Sun Jan 13 23:26:26 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667070764705710080/7F54O9Zw_normal.png", "favourites_count": 4442, "status": {"in_reply_to_status_id": 685251764610822144, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "DavidAndGoliath", "in_reply_to_user_id": 14469175, "in_reply_to_status_id_str": "685251764610822144", "in_reply_to_user_id_str": "14469175", "truncated": false, "id_str": "685252027870392320", "id": 685252027870392320, "text": "@DavidAndGoliath @TMobile @EFF they are all horrible I'll just go without a cell provider for a while :D", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DavidAndGoliath", "id_str": "14469175", "id": 14469175, "indices": [0, 16], "name": "David"}, {"screen_name": "TMobile", "id_str": "17338082", "id": 17338082, "indices": [17, 25], "name": "T-Mobile"}, {"screen_name": "EFF", "id_str": "4816", "id": 4816, "indices": [26, 30], "name": "EFF"}]}, "created_at": "Fri Jan 08 00:09:49 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1087503266, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4756, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087503266/1447471475", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2667470504", "following": false, "friends_count": 112, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "launchdarkly.com", "url": "http://t.co/e7Lhd33dNc", "expanded_url": "http://www.launchdarkly.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 255, "location": "San Francisco", "screen_name": "LaunchDarkly", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "LaunchDarkly", "profile_use_background_image": true, "description": "Control your feature launches. Feature flags as a service. Tweets about canary releases for continuous delivery.", "url": "http://t.co/e7Lhd33dNc", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jul 21 23:18:43 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/499048860728061953/8Phv22Ts_normal.png", "favourites_count": 119, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685347790533296128", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1Z9JhG8", "url": "https://t.co/kDewgvL5x9", "expanded_url": "http://buff.ly/1Z9JhG8", "indices": [54, 77]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 06:30:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685347790533296128, "text": "\"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685533803683512321", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1Z9JhG8", "url": "https://t.co/kDewgvL5x9", "expanded_url": "http://buff.ly/1Z9JhG8", "indices": [69, 92]}], "hashtags": [], "user_mentions": [{"screen_name": "divanator", "id_str": "10184822", "id": 10184822, "indices": [3, 13], "name": "Div"}]}, "created_at": "Fri Jan 08 18:49:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685533803683512321, "text": "RT @divanator: \"Feature Flags for Product Managers \u2013 The New Agile\" https://t.co/kDewgvL5x9", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2667470504, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 548, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2667470504/1446072089", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3320603490", "following": false, "friends_count": 99, "entities": {"description": {"urls": [{"display_url": "soundcloud.com/heavybit", "url": "https://t.co/lAnNM1oH69", "expanded_url": "https://soundcloud.com/heavybit", "indices": [114, 137]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": false, "followers_count": 103, "location": "San Francisco, CA", "screen_name": "ContinuousCast", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "To Be Continuous", "profile_use_background_image": false, "description": "To Be Continuous ... a podcast on all things #ContinuousDelivery. Hosted @paulbiggar @edith_h Sponsored @heavybit https://t.co/lAnNM1oH69", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", "profile_background_color": "000000", "created_at": "Wed Aug 19 22:32:39 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636319762948059136/j2uMRAHL_normal.png", "favourites_count": 8, "status": {"in_reply_to_status_id": 685484756620857345, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "stanlemon", "in_reply_to_user_id": 14147682, "in_reply_to_status_id_str": "685484756620857345", "in_reply_to_user_id_str": "14147682", "truncated": false, "id_str": "685569841068048386", "id": 685569841068048386, "text": "@stanlemon @edith_h @paulbiggar Our producer @tedcarstensen is working on it!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "stanlemon", "id_str": "14147682", "id": 14147682, "indices": [0, 10], "name": "Stan Lemon"}, {"screen_name": "edith_h", "id_str": "14965602", "id": 14965602, "indices": [11, 19], "name": "Edith Harbaugh"}, {"screen_name": "paulbiggar", "id_str": "86938585", "id": 86938585, "indices": [20, 31], "name": "Paul Biggar"}, {"screen_name": "tedcarstensen", "id_str": "20000329", "id": 20000329, "indices": [45, 59], "name": "ted carstensen"}]}, "created_at": "Fri Jan 08 21:12:42 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3320603490, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 107, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320603490/1440175251", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "245729302", "following": false, "friends_count": 1747, "entities": {"description": {"urls": [{"display_url": "bytemark.co.uk/support", "url": "https://t.co/zlCkaK20Wn", "expanded_url": "https://www.bytemark.co.uk/support", "indices": [111, 134]}]}, "url": {"urls": [{"display_url": "bytemark.co.uk", "url": "https://t.co/30hNNjVa6D", "expanded_url": "http://www.bytemark.co.uk/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0768AA", "geo_enabled": false, "followers_count": 2011, "location": "Manchester & York, UK", "screen_name": "bytemark", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "Bytemark", "profile_use_background_image": false, "description": "Reliable UK hosting from \u00a310 per month. We're here to chat during office hours. Urgent problem? Email is best: https://t.co/zlCkaK20Wn", "url": "https://t.co/30hNNjVa6D", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Feb 01 10:22:20 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663727834263896064/Xm2921AM_normal.jpg", "favourites_count": 1159, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685500519486492672", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 182, "resize": "fit"}, "medium": {"w": 600, "h": 322, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 647, "h": 348, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", "type": "photo", "indices": [40, 63], "media_url": "http://pbs.twimg.com/media/CYNjFmYWwAQuDRh.jpg", "display_url": "pic.twitter.com/dzXqC0ETXZ", "id_str": "685500516143644676", "expanded_url": "http://twitter.com/bytemark/status/685500519486492672/photo/1", "id": 685500516143644676, "url": "https://t.co/dzXqC0ETXZ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:37:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685500519486492672, "text": "Remember kids: don\u2019t copy that floppy\u2026! https://t.co/dzXqC0ETXZ", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 245729302, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 4660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/245729302/1445428891", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "18958102", "following": false, "friends_count": 2400, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "careers.stackoverflow.com/saman", "url": "https://t.co/jnFgndfW3D", "expanded_url": "http://careers.stackoverflow.com/saman", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 1977, "location": "Tehran", "screen_name": "samanismael", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 49, "name": "Saman Ismael", "profile_use_background_image": false, "description": "Full Stack Developer, C & Python Lover, GNU/Linux Ninja, Open Source Fan.", "url": "https://t.co/jnFgndfW3D", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jan 13 23:16:38 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651287152609787904/frszPRyb_normal.jpg", "favourites_count": 2592, "status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "664193187326521344", "id": 664193187326521344, "text": "Data is the new Oil. #BigData", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "BigData", "indices": [21, 29]}], "user_mentions": []}, "created_at": "Tue Nov 10 21:29:30 +0000 2015", "source": "TweetDeck", "favorite_count": 8, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18958102, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "statuses_count": 187, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18958102/1444114007", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "37681147", "following": false, "friends_count": 1579, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/bradyasar", "url": "https://t.co/FqEV3wDE2u", "expanded_url": "http://about.me/bradyasar", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 4614, "location": "Los Angeles, CA", "screen_name": "YasarCorp", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 139, "name": "Brad Yasar", "profile_use_background_image": true, "description": "Business Architect, Entrepreneur and Investor Greater Los Angeles Area, Venture Capital & Private Equity. Equity Crowdfunding @ CrowdfundX.io", "url": "https://t.co/FqEV3wDE2u", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon May 04 15:21:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000647412638/7179a1b695b365fc1a77b60ac5e832e6_normal.png", "favourites_count": 15661, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685621420563558400", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 439, "h": 333, "resize": "fit"}, "medium": {"w": 439, "h": 333, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 257, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPRDJFWkAAW9sb.png", "type": "photo", "indices": [88, 111], "media_url": "http://pbs.twimg.com/media/CYPRDJFWkAAW9sb.png", "display_url": "pic.twitter.com/maPZ5fuOi2", "id_str": "685621420198629376", "expanded_url": "http://twitter.com/YasarCorp/status/685621420563558400/photo/1", "id": 685621420198629376, "url": "https://t.co/maPZ5fuOi2"}], "symbols": [], "urls": [{"display_url": "puls.ly/DRbAgg", "url": "https://t.co/9v2nskwtPO", "expanded_url": "http://puls.ly/DRbAgg", "indices": [64, 87]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:37:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685621420563558400, "text": "Reserve Bank of India is Actively Studying Peer to Peer Lending https://t.co/9v2nskwtPO https://t.co/maPZ5fuOi2", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Vytmn"}, "default_profile_image": false, "id": 37681147, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1074, "profile_banner_url": "https://pbs.twimg.com/profile_banners/37681147/1382740340", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2832545398", "following": false, "friends_count": 4823, "entities": {"description": {"urls": [{"display_url": "sprawlgeek.com/p/bio.html", "url": "https://t.co/8rLwARBvup", "expanded_url": "http://www.sprawlgeek.com/p/bio.html", "indices": [59, 82]}]}, "url": {"urls": [{"display_url": "sprawlgeek.com", "url": "http://t.co/pUn9V1gXKx", "expanded_url": "http://www.sprawlgeek.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 9131, "location": "Iowa", "screen_name": "sprawlgeek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 137, "name": "Sprawlgeek", "profile_use_background_image": true, "description": "Reality from the Edge of the Network. Tablet Watchman! \nhttps://t.co/8rLwARBvup", "url": "http://t.co/pUn9V1gXKx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", "profile_background_color": "0084B4", "created_at": "Wed Oct 15 19:22:42 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553179833652355072/1zkcqkk7_normal.jpeg", "favourites_count": 1690, "status": {"in_reply_to_status_id": 685629102318030849, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "CrankyClown", "in_reply_to_user_id": 40303038, "in_reply_to_status_id_str": "685629102318030849", "in_reply_to_user_id_str": "40303038", "truncated": false, "id_str": "685629984380067840", "id": 685629984380067840, "text": "@CrankyClown no worries. I have had the Jabra clipper. It's OK...works but not for high end audio desires.( I only listen to lossless)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "CrankyClown", "id_str": "40303038", "id": 40303038, "indices": [0, 12], "name": "Cranky Clown"}]}, "created_at": "Sat Jan 09 01:11:41 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2832545398, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/522471431582392320/-MnhqZIo.jpeg", "statuses_count": 3239, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2832545398/1420726400", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3107351469", "following": false, "friends_count": 2434, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "git-scm.com", "url": "http://t.co/YaM2RpAQp5", "expanded_url": "http://git-scm.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "F05033", "geo_enabled": false, "followers_count": 2883, "location": "Finland", "screen_name": "planetgit", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "Planet Git", "profile_use_background_image": false, "description": "Curated news from the Git community. Git is a free and open source distributed version control system.", "url": "http://t.co/YaM2RpAQp5", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", "profile_background_color": "000000", "created_at": "Mon Mar 23 10:43:42 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579957320551038979/tNtCgTjC_normal.png", "favourites_count": 1, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684831105363656705", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "buff.ly/1Z5BU2q", "url": "https://t.co/0z9a6ISARU", "expanded_url": "http://buff.ly/1Z5BU2q", "indices": [29, 52]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 20:17:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684831105363656705, "text": "Neat new features in Git 2.7 https://t.co/0z9a6ISARU", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 3107351469, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 68, "is_translator": false}, {"time_zone": "Vienna", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "23755643", "following": false, "friends_count": 20839, "entities": {"description": {"urls": [{"display_url": "linkd.in/1JT9h3X", "url": "https://t.co/iJB2h1L78m", "expanded_url": "http://linkd.in/1JT9h3X", "indices": [105, 128]}]}, "url": {"urls": [{"display_url": "dixus.de", "url": "http://t.co/sZ1DnHsEsZ", "expanded_url": "http://www.dixus.de", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 28405, "location": "Germany (Saxony)", "screen_name": "dixus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 750, "name": "Holger Kreissl", "profile_use_background_image": false, "description": "#mobile & #cloud enthusiast | #CleanCode | #dotnet | #aspnet | #enterpriseMobility | Find me on LinkedIn https://t.co/iJB2h1L78m", "url": "http://t.co/sZ1DnHsEsZ", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Mar 11 12:38:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/542358050447708161/tqYY4o3X_normal.jpeg", "favourites_count": 1142, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685540390351597569", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1Zb2oj6", "url": "https://t.co/WYppjNMu0h", "expanded_url": "http://bit.ly/1Zb2oj6", "indices": [32, 55]}], "hashtags": [{"text": "Developer", "indices": [56, 66]}, {"text": "MVVM", "indices": [67, 72]}, {"text": "Pattern", "indices": [73, 81]}, {"text": "CSharp", "indices": [82, 89]}], "user_mentions": []}, "created_at": "Fri Jan 08 19:15:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685540390351597569, "text": "The MVVM pattern \u2013 The practice https://t.co/WYppjNMu0h #Developer #MVVM #Pattern #CSharp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "DixusTweeter"}, "default_profile_image": false, "id": 23755643, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5551, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23755643/1441816836", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2491819189", "following": false, "friends_count": 2316, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/InTheCloudDan", "url": "https://t.co/cOAiJln1jK", "expanded_url": "https://github.com/InTheCloudDan", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 437, "location": "", "screen_name": "InTheCloudDan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 33, "name": "Daniel O'Brien", "profile_use_background_image": true, "description": "I Heart #javascript #nodejs #docker #devops while dreaming of #thegreatoutdoors and a side of #growthhacking with my better half @FoodnFunAllDay", "url": "https://t.co/cOAiJln1jK", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon May 12 18:28:48 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469484683994988544/s_Jumrgt_normal.jpeg", "favourites_count": 110, "status": {"retweet_count": 15, "retweeted_status": {"retweet_count": 15, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685287444514762753", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "type": "photo", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "display_url": "pic.twitter.com/DlXvgVMX0i", "id_str": "685287444372144128", "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", "id": 685287444372144128, "url": "https://t.co/DlXvgVMX0i"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 02:30:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685287444514762753, "text": "https://t.co/DlXvgVMX0i", "coordinates": null, "retweeted": false, "favorite_count": 16, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685439447769415680", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "source_status_id_str": "685287444514762753", "media_url": "http://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "source_user_id_str": "6927562", "id_str": "685287444372144128", "id": 685287444372144128, "media_url_https": "https://pbs.twimg.com/media/CYKhTMLWQAAq_WX.jpg", "type": "photo", "indices": [17, 40], "source_status_id": 685287444514762753, "source_user_id": 6927562, "display_url": "pic.twitter.com/DlXvgVMX0i", "expanded_url": "http://twitter.com/thomasfuchs/status/685287444514762753/photo/1", "url": "https://t.co/DlXvgVMX0i"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "thomasfuchs", "id_str": "6927562", "id": 6927562, "indices": [3, 15], "name": "Thomas Fuchs"}]}, "created_at": "Fri Jan 08 12:34:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685439447769415680, "text": "RT @thomasfuchs: https://t.co/DlXvgVMX0i", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2491819189, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 254, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "19300535", "following": false, "friends_count": 375, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "evilchi.li", "url": "http://t.co/7Y1LuKzE5f", "expanded_url": "http://evilchi.li/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "BFBFBF", "profile_link_color": "2463A3", "geo_enabled": true, "followers_count": 417, "location": "\u2615\ufe0f Seattle", "screen_name": "evilchili", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "eeeveeelcheeeleee", "profile_use_background_image": false, "description": "evilchili is an application downloaded from the Internet. Are you sure you want to open it?", "url": "http://t.co/7Y1LuKzE5f", "profile_text_color": "212121", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", "profile_background_color": "3F5D8A", "created_at": "Wed Jan 21 18:47:47 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/482260772928512001/4V3neJC__normal.png", "favourites_count": 217, "status": {"in_reply_to_status_id": 685509884037607424, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "evilchili", "in_reply_to_user_id": 19300535, "in_reply_to_status_id_str": "685509884037607424", "in_reply_to_user_id_str": "19300535", "truncated": false, "id_str": "685510082142978048", "id": 685510082142978048, "text": "@evilchili Never say \"yes\" to anything before you've had coffee.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "evilchili", "id_str": "19300535", "id": 19300535, "indices": [0, 10], "name": "eeeveeelcheeeleee"}]}, "created_at": "Fri Jan 08 17:15:14 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 19300535, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 22907, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19300535/1403829270", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "919464055", "following": false, "friends_count": 246, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tessamero.com", "url": "https://t.co/eFmsIOI8OE", "expanded_url": "http://tessamero.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "89C9FA", "geo_enabled": true, "followers_count": 1682, "location": "Seattle, WA", "screen_name": "TessaMero", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 201, "name": "Tessa Mero", "profile_use_background_image": true, "description": "Teacher. Open Source Contributor. Organizer of @SeaPHP, @PNWPHP, and @JUGSeattle. Snowboarder. Video Game Lover. Speaker. Traveler. Dev Advocate for @Joomla", "url": "https://t.co/eFmsIOI8OE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", "profile_background_color": "89C9FA", "created_at": "Thu Nov 01 17:12:23 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715332376920064/_VisdL_D_normal.jpg", "favourites_count": 5619, "status": {"in_reply_to_status_id": 685585585096921088, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "shivaas", "in_reply_to_user_id": 14636369, "in_reply_to_status_id_str": "685585585096921088", "in_reply_to_user_id_str": "14636369", "truncated": false, "id_str": "685601154823270400", "id": 685601154823270400, "text": "@shivaas thank you! I'm so excited for a career change!!!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "shivaas", "id_str": "14636369", "id": 14636369, "indices": [0, 8], "name": "Shivaas Gulati"}]}, "created_at": "Fri Jan 08 23:17:07 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 919464055, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 11074, "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "205936598", "following": false, "friends_count": 112, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 155, "location": "Richland, WA", "screen_name": "SanStaab", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6, "name": "Jonathan Staab", "profile_use_background_image": true, "description": "Web Developer trying to figure out how to code like Jesus would.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Thu Oct 21 22:56:11 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/428605867076767744/rs_c24v3_normal.jpeg", "favourites_count": 49, "status": {"retweet_count": 13473, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 13473, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "683681888687538177", "id": 683681888687538177, "text": "I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sun Jan 03 16:10:39 +0000 2016", "source": "Twitter Web Client", "favorite_count": 15374, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "684554177079414784", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JohnCleese", "id_str": "10810102", "id": 10810102, "indices": [3, 14], "name": "John Cleese"}]}, "created_at": "Wed Jan 06 01:56:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684554177079414784, "text": "RT @JohnCleese: I would like 2016 to be the year when people remembered that science is a method of investigation,and NOT a belief system", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 205936598, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 628, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18195183", "following": false, "friends_count": 236, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gregaker.net", "url": "https://t.co/wtcGV5PvaK", "expanded_url": "http://www.gregaker.net/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 845, "location": "Columbia, MO, USA", "screen_name": "gaker", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 90, "name": "\u0279\u04d9\u029e\u0250 \u0183\u04d9\u0279\u0183", "profile_use_background_image": false, "description": "I'm a thrasher, saxophone player and writer of code. DevOps @vinli", "url": "https://t.co/wtcGV5PvaK", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Dec 17 18:15:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650195741177024512/zNT91G5K_normal.jpg", "favourites_count": 364, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684915042521890818", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "type": "photo", "indices": [78, 101], "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "display_url": "pic.twitter.com/Nb0t9m7Kzu", "id_str": "684915033961304064", "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", "id": 684915033961304064, "url": "https://t.co/Nb0t9m7Kzu"}], "symbols": [], "urls": [], "hashtags": [{"text": "CES", "indices": [51, 55]}], "user_mentions": [{"screen_name": "vinli", "id_str": "2409518833", "id": 2409518833, "indices": [22, 28], "name": "Vinli"}, {"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [37, 42], "name": "Uber"}]}, "created_at": "Thu Jan 07 01:50:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-115.2092535, 35.984784], [-115.0610763, 35.984784], [-115.0610763, 36.137145], [-115.2092535, 36.137145]]], "type": "Polygon"}, "full_name": "Paradise, NV", "contained_within": [], "country_code": "US", "id": "8fa6d7a33b83ef26", "name": "Paradise"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684915042521890818, "text": "People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684928923247886336", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id_str": "684915042521890818", "media_url": "http://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "source_user_id_str": "149705221", "id_str": "684915033961304064", "id": 684915033961304064, "media_url_https": "https://pbs.twimg.com/media/CYFOmDSWkAAlAyN.jpg", "type": "photo", "indices": [94, 117], "source_status_id": 684915042521890818, "source_user_id": 149705221, "display_url": "pic.twitter.com/Nb0t9m7Kzu", "expanded_url": "http://twitter.com/markhaidar/status/684915042521890818/photo/1", "url": "https://t.co/Nb0t9m7Kzu"}], "symbols": [], "urls": [], "hashtags": [{"text": "CES", "indices": [67, 71]}], "user_mentions": [{"screen_name": "markhaidar", "id_str": "149705221", "id": 149705221, "indices": [3, 14], "name": "Mark Haidar"}, {"screen_name": "vinli", "id_str": "2409518833", "id": 2409518833, "indices": [38, 44], "name": "Vinli"}, {"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [53, 58], "name": "Uber"}]}, "created_at": "Thu Jan 07 02:45:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684928923247886336, "text": "RT @markhaidar: People are loving the @vinli WiFi in @Uber cars at #CES. Me in particular! :) https://t.co/Nb0t9m7Kzu", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18195183, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3788, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18195183/1445621336", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "223102727", "following": false, "friends_count": 517, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "94D487", "geo_enabled": true, "followers_count": 316, "location": "San Diego, CA", "screen_name": "wulfmeister", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 28, "name": "Mitchell Wulfman", "profile_use_background_image": false, "description": "JavaScript things, Meteor, UX. Striving to make bicycles for the mind. Currently taking HCI/UX classes at @DesignLabUCSD", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun Dec 05 11:52:50 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682985982057164800/3kpan0Nx_normal.jpg", "favourites_count": 1103, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685287692490260480", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "chrome.google.com/webstore/detai\u2026", "url": "https://t.co/9fpcPvs8Hv", "expanded_url": "https://chrome.google.com/webstore/detail/command-click-fix/leklllfdadjjglhllebogdjfdipdjhhp", "indices": [95, 118]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 02:31:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685287692490260480, "text": "Chrome extension to force Command-Click to open links in a new tab instead of the current one: https://t.co/9fpcPvs8Hv", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 223102727, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/328640969/PEASE.jpg", "statuses_count": 630, "profile_banner_url": "https://pbs.twimg.com/profile_banners/223102727/1445901786", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "15085681", "following": false, "friends_count": 170, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 151, "location": "Dallas, TX", "screen_name": "pkinney", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Powell Kinney", "profile_use_background_image": true, "description": "CTO at Vinli (@vinli)", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 11 15:30:11 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/492316829704929280/wHT0dmwn_normal.jpeg", "favourites_count": 24, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684554991529508864", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 426, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "type": "photo", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "display_url": "pic.twitter.com/om0NgHGk0p", "id_str": "684554991395323904", "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", "id": 684554991395323904, "url": "https://t.co/om0NgHGk0p"}], "symbols": [], "urls": [{"display_url": "hubs.ly/H01LMTC0", "url": "https://t.co/hrCBzE0IY9", "expanded_url": "http://hubs.ly/H01LMTC0", "indices": [78, 101]}], "hashtags": [{"text": "CES2016", "indices": [0, 8]}], "user_mentions": [{"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [58, 63], "name": "Uber"}, {"screen_name": "reviewjournal", "id_str": "15358759", "id": 15358759, "indices": [102, 116], "name": "Las Vegas RJ"}]}, "created_at": "Wed Jan 06 02:00:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684554991529508864, "text": "#CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.co/om0NgHGk0p", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "HubSpot"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684851893558841344", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 426, "resize": "fit"}}, "source_status_id_str": "684554991529508864", "media_url": "http://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "source_user_id_str": "2409518833", "id_str": "684554991395323904", "id": 684554991395323904, "media_url_https": "https://pbs.twimg.com/media/CYAHI0NWwAAWY8u.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 684554991529508864, "source_user_id": 2409518833, "display_url": "pic.twitter.com/om0NgHGk0p", "expanded_url": "http://twitter.com/vinli/status/684554991529508864/photo/1", "url": "https://t.co/om0NgHGk0p"}], "symbols": [], "urls": [{"display_url": "hubs.ly/H01LMTC0", "url": "https://t.co/hrCBzE0IY9", "expanded_url": "http://hubs.ly/H01LMTC0", "indices": [89, 112]}], "hashtags": [{"text": "CES2016", "indices": [11, 19]}], "user_mentions": [{"screen_name": "vinli", "id_str": "2409518833", "id": 2409518833, "indices": [3, 9], "name": "Vinli"}, {"screen_name": "Uber", "id_str": "19103481", "id": 19103481, "indices": [69, 74], "name": "Uber"}, {"screen_name": "reviewjournal", "id_str": "15358759", "id": 15358759, "indices": [113, 127], "name": "Las Vegas RJ"}]}, "created_at": "Wed Jan 06 21:39:50 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684851893558841344, "text": "RT @vinli: #CES2016 is tmrw! Starting @ midnight, you can request an @Uber w/ FREE wifi! https://t.co/hrCBzE0IY9 @reviewjournal https://t.c\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 15085681, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 76, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15085681/1409019019", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "220165520", "following": false, "friends_count": 1839, "entities": {"description": {"urls": [{"display_url": "blog.codeship.com", "url": "http://t.co/egYbB2cZXI", "expanded_url": "http://blog.codeship.com", "indices": [78, 100]}]}, "url": {"urls": [{"display_url": "codeship.com", "url": "https://t.co/1m0F4Hu8KN", "expanded_url": "https://codeship.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "0044CC", "geo_enabled": true, "followers_count": 8671, "location": "Boston, MA", "screen_name": "codeship", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 457, "name": "Codeship", "profile_use_background_image": false, "description": "We are the fastest hosted Continuous Delivery Platform. Check out our blog at http://t.co/egYbB2cZXI \u2013 Need help? Ask @CodeshipSupport", "url": "https://t.co/1m0F4Hu8KN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", "profile_background_color": "FFFFFF", "created_at": "Fri Nov 26 23:51:57 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/420478493139300352/UJzltHZA_normal.png", "favourites_count": 1056, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612838136770561", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1LZxOpT", "url": "https://t.co/lHbWAw8Trn", "expanded_url": "http://bit.ly/1LZxOpT", "indices": [56, 79]}], "hashtags": [{"text": "Postgres", "indices": [21, 30]}], "user_mentions": [{"screen_name": "leighchalliday", "id_str": "119841821", "id": 119841821, "indices": [39, 54], "name": "Leigh Halliday"}]}, "created_at": "Sat Jan 09 00:03:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612838136770561, "text": "\"How to use JSONB in #Postgres.\" \u2013 via @leighchalliday\n\nhttps://t.co/lHbWAw8Trn", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Meet Edgar"}, "default_profile_image": false, "id": 220165520, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000164054717/ah3RPP4F.jpeg", "statuses_count": 14740, "profile_banner_url": "https://pbs.twimg.com/profile_banners/220165520/1418855084", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2705064962", "following": false, "friends_count": 4102, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "codecov.io", "url": "https://t.co/rCxo4WMDnw", "expanded_url": "https://codecov.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FC2B6A", "geo_enabled": true, "followers_count": 1745, "location": "", "screen_name": "codecov", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "Codecov", "profile_use_background_image": false, "description": "Continuous code coverage. Featuring browser extensions, branch coverage and coverage diffs for GitHub, Bitbucket and GitLab", "url": "https://t.co/rCxo4WMDnw", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", "profile_background_color": "06142B", "created_at": "Sun Aug 03 22:36:47 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/593478631629914112/XP93zhQI_normal.png", "favourites_count": 910, "status": {"in_reply_to_status_id": 684763065506738176, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "keimlink", "in_reply_to_user_id": 44300359, "in_reply_to_status_id_str": "684763065506738176", "in_reply_to_user_id_str": "44300359", "truncated": false, "id_str": "684981810984423424", "id": 684981810984423424, "text": "@keimlink during some testing we found the package was having issues installing on some CI providers. I'll email you w/ more details.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "keimlink", "id_str": "44300359", "id": 44300359, "indices": [0, 9], "name": "Markus Zapke"}]}, "created_at": "Thu Jan 07 06:16:04 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2705064962, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 947, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2705064962/1440537606", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15534471", "following": false, "friends_count": 314, "entities": {"description": {"urls": [{"display_url": "ampproject.org/how-it-works/", "url": "https://t.co/Wfq8ij4B8D", "expanded_url": "https://www.ampproject.org/how-it-works/", "indices": [30, 53]}]}, "url": {"urls": [{"display_url": "google.com/+MalteUbl", "url": "https://t.co/297YfYX56s", "expanded_url": "https://google.com/+MalteUbl", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", "notifications": false, "profile_sidebar_fill_color": "FFFD91", "profile_link_color": "FF0043", "geo_enabled": true, "followers_count": 5455, "location": "San Francisco", "screen_name": "cramforce", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 434, "name": "Malte Ubl", "profile_use_background_image": true, "description": "Tech lead of the AMP Project. https://t.co/Wfq8ij4B8D \n\nI make www internet web pages for Google. Curator of @JSConfEU", "url": "https://t.co/297YfYX56s", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Jul 22 18:04:13 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FDE700", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1705787693/L9992913_normal.jpg", "favourites_count": 2021, "status": {"retweet_count": 5, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 5, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685624978780246016", "id": 685624978780246016, "text": "Security at its core is about reducing attack surface. You cover 90% of the job just by focussing on that. The other 10% is mostly luck.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:51:47 +0000 2016", "source": "Twitter Web Client", "favorite_count": 13, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685626573047791616", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "justinschuh", "id_str": "72690437", "id": 72690437, "indices": [3, 15], "name": "Justin Schuh"}]}, "created_at": "Sat Jan 09 00:58:07 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685626573047791616, "text": "RT @justinschuh: Security at its core is about reducing attack surface. You cover 90% of the job just by focussing on that. The other 10% i\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 15534471, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2955024/digitizers.JPG", "statuses_count": 18018, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15534471/1398619165", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "771681", "following": false, "friends_count": 2112, "entities": {"description": {"urls": [{"display_url": "pronoun.is/he", "url": "https://t.co/h4IxIYLYdk", "expanded_url": "http://pronoun.is/he", "indices": [129, 152]}]}, "url": {"urls": [{"display_url": "twitter.com/glowcoil/statu\u2026", "url": "https://t.co/7vUIPFlyCV", "expanded_url": "https://twitter.com/glowcoil/status/660314122010034176", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "BBBBBB", "geo_enabled": true, "followers_count": 6803, "location": "Chicago, IL /via Alaska", "screen_name": "ELLIOTTCABLE", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 156, "name": "~", "profile_use_background_image": false, "description": "Topical muggle. {PL,Q}T. I invented Ruby, Node.js, and all of the LISPs. Now I'm inventing Paws.\n\n[warning: contains bitterant.] https://t.co/h4IxIYLYdk", "url": "https://t.co/7vUIPFlyCV", "profile_text_color": "AAAAAA", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Feb 14 06:37:31 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664970033605550081/tAjQmiAd_normal.jpg", "favourites_count": 14574, "status": {"in_reply_to_status_id": 685091084314263552, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-87.940033, 41.644102], [-87.523993, 41.644102], [-87.523993, 42.0230669], [-87.940033, 42.0230669]]], "type": "Polygon"}, "full_name": "Chicago, IL", "contained_within": [], "country_code": "US", "id": "1d9a5370a355ab0c", "name": "Chicago"}, "in_reply_to_screen_name": "ProductHunt", "in_reply_to_user_id": 2208027565, "in_reply_to_status_id_str": "685091084314263552", "in_reply_to_user_id_str": "2208027565", "truncated": false, "id_str": "685232357117440000", "id": 685232357117440000, "text": "@ProductHunt @netflix @TheCruziest Sense 7? Is that different from Sense 8?", "geo": {"coordinates": [41.86747694, -87.63303779], "type": "Point"}, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ProductHunt", "id_str": "2208027565", "id": 2208027565, "indices": [0, 12], "name": "Product Hunt"}, {"screen_name": "netflix", "id_str": "16573941", "id": 16573941, "indices": [13, 21], "name": "Netflix US"}, {"screen_name": "TheCruziest", "id_str": "303796625", "id": 303796625, "indices": [22, 34], "name": "Steven Cruz"}]}, "created_at": "Thu Jan 07 22:51:39 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 0, "favorited": false, "coordinates": {"coordinates": [-87.63303779, 41.86747694], "type": "Point"}, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 771681, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 94590, "profile_banner_url": "https://pbs.twimg.com/profile_banners/771681/1414127033", "is_translator": false}, {"time_zone": "Brussels", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "87257431", "following": false, "friends_count": 998, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "il.ly", "url": "http://t.co/welccj0beF", "expanded_url": "http://il.ly/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", "notifications": false, "profile_sidebar_fill_color": "171717", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1555, "location": "Kortrijk, Belgium", "screen_name": "illyism", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 70, "name": "Ilias Ismanalijev", "profile_use_background_image": true, "description": "Technology \u2022 Designer \u2022 Developer \u2022 Student #NMCT", "url": "http://t.co/welccj0beF", "profile_text_color": "F2F2F2", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", "profile_background_color": "242424", "created_at": "Tue Nov 03 19:01:00 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637993206949498882/RxT0gOTs_normal.jpg", "favourites_count": 10505, "status": {"in_reply_to_status_id": 683864186821152768, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "JoshDComp", "in_reply_to_user_id": 28402389, "in_reply_to_status_id_str": "683864186821152768", "in_reply_to_user_id_str": "28402389", "truncated": false, "id_str": "684060669654745088", "id": 684060669654745088, "text": "@JoshDComp Sure is, I like the realistic politics of it all and the well crafted VFX. It sucked me right into its world.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JoshDComp", "id_str": "28402389", "id": 28402389, "indices": [0, 10], "name": "Josh Compton"}]}, "created_at": "Mon Jan 04 17:15:47 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 87257431, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850535120/01f2c1a8bdf1cc450dc0f304552aa50e.png", "statuses_count": 244, "profile_banner_url": "https://pbs.twimg.com/profile_banners/87257431/1410266462", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "236341530", "following": false, "friends_count": 235, "entities": {"description": {"urls": [{"display_url": "mkeas.org", "url": "https://t.co/bfRlctkCoN", "expanded_url": "http://mkeas.org", "indices": [126, 149]}]}, "url": {"urls": [{"display_url": "mkeas.org", "url": "https://t.co/bfRlctkCoN", "expanded_url": "http://mkeas.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "FA743E", "geo_enabled": false, "followers_count": 1320, "location": "Houston, TX", "screen_name": "matthiasak", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 72, "name": "Mountain Matt", "profile_use_background_image": true, "description": "@TheIronYard, @DestinationCode, @SpaceCityConfs, INFOSEC crypto'r, powderhound, Lisper + \u03bb, @CapitalFactory alum, @HoustonJS, https://t.co/bfRlctkCoN.", "url": "https://t.co/bfRlctkCoN", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", "profile_background_color": "FFFFFF", "created_at": "Mon Jan 10 10:58:39 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684599443908235264/IgNdjWUp_normal.png", "favourites_count": 1199, "status": {"retweet_count": 2, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": {"url": "https://api.twitter.com/1.1/geo/id/1703b859c254a0f9.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-84.5129821, 33.5933183], [-84.427795, 33.5933183], [-84.427795, 33.669237], [-84.5129821, 33.669237]]], "type": "Polygon"}, "full_name": "College Park, GA", "contained_within": [], "country_code": "US", "id": "1703b859c254a0f9", "name": "College Park"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685448904154976256", "id": 685448904154976256, "text": "Headed to Charleston today for our first @TheIronYard teammate-turned-student's graduation from our Front-end program! So proud & excited!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "TheIronYard", "id_str": "576311383", "id": 576311383, "indices": [41, 53], "name": "The Iron Yard"}]}, "created_at": "Fri Jan 08 13:12:08 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 13, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685617240801021952", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "sarahbethlodato", "id_str": "30965902", "id": 30965902, "indices": [3, 19], "name": "Sarah Lodato"}, {"screen_name": "TheIronYard", "id_str": "576311383", "id": 576311383, "indices": [62, 74], "name": "The Iron Yard"}]}, "created_at": "Sat Jan 09 00:21:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685617240801021952, "text": "RT @sarahbethlodato: Headed to Charleston today for our first @TheIronYard teammate-turned-student's graduation from our Front-end program!\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 236341530, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682207870750830592/1hUffAuR.png", "statuses_count": 4937, "profile_banner_url": "https://pbs.twimg.com/profile_banners/236341530/1449188760", "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "252481460", "following": false, "friends_count": 24, "entities": {"description": {"urls": [{"display_url": "travis-ci.com", "url": "http://t.co/0HN89Zqxlk", "expanded_url": "http://travis-ci.com", "indices": [96, 118]}]}, "url": {"urls": [{"display_url": "travis-ci.org", "url": "http://t.co/3Tz19DXfYa", "expanded_url": "http://travis-ci.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 14345, "location": "Berlin, Germany", "screen_name": "travisci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 527, "name": "Travis CI", "profile_use_background_image": true, "description": "Hi I\u2019m Travis CI, a hosted continuous integration service for open source and private projects: http://t.co/0HN89Zqxlk System status updates: @traviscistatus", "url": "http://t.co/3Tz19DXfYa", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Feb 15 08:34:44 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621012221582274560/PK2r9beM_normal.jpg", "favourites_count": 1506, "status": {"retweet_count": 26, "retweeted_status": {"retweet_count": 26, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684128421845270530", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 271, "resize": "fit"}, "medium": {"w": 567, "h": 453, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 453, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "type": "photo", "indices": [109, 132], "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "display_url": "pic.twitter.com/fdIihYvkFb", "id_str": "684128421732036608", "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", "id": 684128421732036608, "url": "https://t.co/fdIihYvkFb"}], "symbols": [], "urls": [{"display_url": "spr.ly/6018BnRke", "url": "https://t.co/TkOgMSX4VM", "expanded_url": "http://spr.ly/6018BnRke", "indices": [85, 108]}], "hashtags": [], "user_mentions": [{"screen_name": "github", "id_str": "13334762", "id": 13334762, "indices": [62, 69], "name": "GitHub"}, {"screen_name": "travisci", "id_str": "252481460", "id": 252481460, "indices": [74, 83], "name": "Travis CI"}]}, "created_at": "Mon Jan 04 21:45:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684128421845270530, "text": "How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/fdIihYvkFb", "coordinates": null, "retweeted": false, "favorite_count": 23, "contributors": null, "source": " SAP"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685085167086612481", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 271, "resize": "fit"}, "medium": {"w": 567, "h": 453, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 453, "resize": "fit"}}, "source_status_id_str": "684128421845270530", "media_url": "http://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "source_user_id_str": "100292002", "id_str": "684128421732036608", "id": 684128421732036608, "media_url_https": "https://pbs.twimg.com/media/CX6DLMYWMAAePw_.png", "type": "photo", "indices": [125, 140], "source_status_id": 684128421845270530, "source_user_id": 100292002, "display_url": "pic.twitter.com/fdIihYvkFb", "expanded_url": "http://twitter.com/SAPCommNet/status/684128421845270530/photo/1", "url": "https://t.co/fdIihYvkFb"}], "symbols": [], "urls": [{"display_url": "spr.ly/6018BnRke", "url": "https://t.co/TkOgMSX4VM", "expanded_url": "http://spr.ly/6018BnRke", "indices": [101, 124]}], "hashtags": [], "user_mentions": [{"screen_name": "SAPCommNet", "id_str": "100292002", "id": 100292002, "indices": [3, 14], "name": "SAP CommunityNetwork"}, {"screen_name": "github", "id_str": "13334762", "id": 13334762, "indices": [78, 85], "name": "GitHub"}, {"screen_name": "travisci", "id_str": "252481460", "id": 252481460, "indices": [90, 99], "name": "Travis CI"}]}, "created_at": "Thu Jan 07 13:06:46 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685085167086612481, "text": "RT @SAPCommNet: How to continuously deliver to SAP HANA Cloud Platform, using @github and @travisci: https://t.co/TkOgMSX4VM https://t.co/f\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 252481460, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10343, "profile_banner_url": "https://pbs.twimg.com/profile_banners/252481460/1383837670", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "86938585", "following": false, "friends_count": 134, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "circleci.com", "url": "https://t.co/UfEqN58rWH", "expanded_url": "https://circleci.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1584, "location": "San Francisco", "screen_name": "paulbiggar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 99, "name": "Paul Biggar", "profile_use_background_image": true, "description": "Likes developers, chocolate, startups, history and pastries. Founder of CircleCI.", "url": "https://t.co/UfEqN58rWH", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Nov 02 13:08:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494873278154956802/UzQtLIJ2_normal.png", "favourites_count": 286, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685370475611078657", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "newyorker.com/magazine/2016/\u2026", "url": "https://t.co/vbDkTva03y", "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", "indices": [38, 61]}], "hashtags": [], "user_mentions": [{"screen_name": "NewYorker", "id_str": "14677919", "id": 14677919, "indices": [66, 76], "name": "The New Yorker"}]}, "created_at": "Fri Jan 08 08:00:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685370475611078657, "text": "Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685496070474973185", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "newyorker.com/magazine/2016/\u2026", "url": "https://t.co/vbDkTva03y", "expanded_url": "http://www.newyorker.com/magazine/2016/01/11/sisters-in-law", "indices": [55, 78]}], "hashtags": [], "user_mentions": [{"screen_name": "sarahgbooks", "id_str": "111095563", "id": 111095563, "indices": [3, 15], "name": "Sarah Gilmartin"}, {"screen_name": "NewYorker", "id_str": "14677919", "id": 14677919, "indices": [83, 93], "name": "The New Yorker"}]}, "created_at": "Fri Jan 08 16:19:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685496070474973185, "text": "RT @sarahgbooks: Saudi women's rights - Sisters in Law https://t.co/vbDkTva03y via @newyorker", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 86938585, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1368, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "381223731", "following": false, "friends_count": 4793, "entities": {"description": {"urls": [{"display_url": "discuss.circleci.com", "url": "https://t.co/g79TaPamp5", "expanded_url": "https://discuss.circleci.com/", "indices": [91, 114]}]}, "url": {"urls": [{"display_url": "circleci.com", "url": "https://t.co/Ls6HRLMgUX", "expanded_url": "https://circleci.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "343434", "geo_enabled": true, "followers_count": 6832, "location": "San Francisco", "screen_name": "circleci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 171, "name": "CircleCI", "profile_use_background_image": false, "description": "Easy, fast, continuous integration and deployment for web apps and iOS. For support, visit https://t.co/g79TaPamp5 or email sayhi@circleci.com.", "url": "https://t.co/Ls6HRLMgUX", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", "profile_background_color": "FBFBFB", "created_at": "Tue Sep 27 23:33:23 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648592346427191296/LaU6tv2__normal.png", "favourites_count": 3136, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613493333135360", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "circle.ci/1VRcA07", "url": "https://t.co/qbnualOiX6", "expanded_url": "http://circle.ci/1VRcA07", "indices": [117, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "iamkevinbell", "id_str": "635809882", "id": 635809882, "indices": [18, 31], "name": "Kevin Bell"}, {"screen_name": "circleci", "id_str": "381223731", "id": 381223731, "indices": [35, 44], "name": "CircleCI"}, {"screen_name": "fredsters_s", "id_str": "14868289", "id": 14868289, "indices": [51, 63], "name": "Fred Stevens-Smith"}, {"screen_name": "rainforestqa", "id_str": "1012066448", "id": 1012066448, "indices": [67, 80], "name": "Rainforest QA"}]}, "created_at": "Sat Jan 09 00:06:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613493333135360, "text": "UPCOMING WEBINAR: @iamkevinbell of @circleci & @fredsters_s of @rainforestqa are talking Continuous Deployment: https://t.co/qbnualOiX6", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 381223731, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2396, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7900402", "following": false, "friends_count": 391, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "280096", "geo_enabled": true, "followers_count": 342, "location": "San Francisco, CA", "screen_name": "tvachon", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "pizza: the gathering", "profile_use_background_image": true, "description": "putting the travis in circleci since 2014", "url": null, "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Aug 02 05:37:07 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2648401687/2231525ecc34a853803442f50debf59e_normal.png", "favourites_count": 606, "status": {"in_reply_to_status_id": 685596593584603136, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "SpikeFriedman", "in_reply_to_user_id": 364371190, "in_reply_to_status_id_str": "685596593584603136", "in_reply_to_user_id_str": "364371190", "truncated": false, "id_str": "685615315531632640", "id": 685615315531632640, "text": "@SpikeFriedman would", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SpikeFriedman", "id_str": "364371190", "id": 364371190, "indices": [0, 14], "name": "Spike Friedman"}]}, "created_at": "Sat Jan 09 00:13:23 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 7900402, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669117595/115cffbe48f76302aa1d2e4089f41d65.png", "statuses_count": 5615, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "10399172", "following": false, "friends_count": 1295, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chmod777self.com", "url": "http://t.co/6w6v8SGBti", "expanded_url": "http://www.chmod777self.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "0A1EA3", "geo_enabled": true, "followers_count": 1146, "location": "Fresno, CA", "screen_name": "jasnell", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 87, "name": "James M Snell", "profile_use_background_image": true, "description": "IBM Technical Lead for Node.js;\nNode.js TSC Member;\nAll around nice guy.", "url": "http://t.co/6w6v8SGBti", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Tue Nov 20 01:19:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641382958348267524/TypA8sW9_normal.jpg", "favourites_count": 2143, "status": {"retweet_count": 12, "retweeted_status": {"retweet_count": 12, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685242905007529984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/nodejs/members\u2026", "url": "https://t.co/jGV36DgAJg", "expanded_url": "https://github.com/nodejs/membership/issues/12", "indices": [115, 138]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 23:33:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685242905007529984, "text": "Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/jGV36DgAJg", "coordinates": null, "retweeted": false, "favorite_count": 24, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685268279959539712", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/nodejs/members\u2026", "url": "https://t.co/jGV36DgAJg", "expanded_url": "https://github.com/nodejs/membership/issues/12", "indices": [126, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "dshaw", "id_str": "806757", "id": 806757, "indices": [3, 9], "name": "Dan Shaw"}]}, "created_at": "Fri Jan 08 01:14:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685268279959539712, "text": "RT @dshaw: Node.js is strong because it is built by individuals and supported by business interests. It\u2019s time to represent:\n\nhttps://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 10399172, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 3178, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10399172/1447689090", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3278631516", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "planet.com", "url": "http://t.co/v3JIlJoOTW", "expanded_url": "http://planet.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 294, "location": "Space", "screen_name": "dovesinspace", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Doves in space", "profile_use_background_image": true, "description": "We are in space.", "url": "http://t.co/v3JIlJoOTW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jul 13 15:59:42 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/620628831016062976/T47eeVFS_normal.png", "favourites_count": 0, "status": {"in_reply_to_status_id": null, "retweet_count": 4, "place": {"url": "https://api.twitter.com/1.1/geo/id/4ec01c9dbc693497.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-87.634643, 24.396308], [-79.974307, 24.396308], [-79.974307, 31.001056], [-87.634643, 31.001056]]], "type": "Polygon"}, "full_name": "Florida, USA", "contained_within": [], "country_code": "US", "id": "4ec01c9dbc693497", "name": "Florida"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "651885332665909248", "id": 651885332665909248, "text": "I'm in space now! Satellite Flock 2b Satellite 14 reporting for duty.", "geo": {"coordinates": [29.91434343, -83.47056022], "type": "Point"}, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Oct 07 22:22:29 +0000 2015", "source": "Deployment tweets", "favorite_count": 5, "favorited": false, "coordinates": {"coordinates": [-83.47056022, 29.91434343], "type": "Point"}, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3278631516, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 21, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3278631516/1436803648", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "13567", "following": false, "friends_count": 1520, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "christianheilmann.com/2013/02/11/hel\u2026", "url": "http://t.co/fQKlvTCkqN", "expanded_url": "http://christianheilmann.com/2013/02/11/hello-it-is-me-on-twitter/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", "notifications": false, "profile_sidebar_fill_color": "B7CCBB", "profile_link_color": "13456B", "geo_enabled": true, "followers_count": 52184, "location": "London, UK", "screen_name": "codepo8", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3779, "name": "Christian Heilmann", "profile_use_background_image": true, "description": "Developer Evangelist - all things open web, HTML5, writing and working together. Works at Microsoft on Edge, opinions totally my own. #nofilter", "url": "http://t.co/fQKlvTCkqN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", "profile_background_color": "336699", "created_at": "Tue Nov 21 17:20:09 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1666904408/codepo8_normal.png", "favourites_count": 386, "status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685626000806424576", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "priceonomics.com/how-mickey-mou\u2026", "url": "https://t.co/RVt1p2mhKB", "expanded_url": "http://priceonomics.com/how-mickey-mouse-evades-the-public-domain/", "indices": [42, 65]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:55:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685626000806424576, "text": "How Mickey Mouse evades the public domain https://t.co/RVt1p2mhKB", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 13567, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/64650857/twitterbackground.gif", "statuses_count": 107977, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13567/1409269429", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2202531", "following": false, "friends_count": 211, "entities": {"description": {"urls": [{"display_url": "amazon.com/gp/product/B01\u2026", "url": "https://t.co/C1nuRVMz0N", "expanded_url": "http://www.amazon.com/gp/product/B018R7TV5W/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B018R7TV5W&linkCode=as2&tag=robceenet-20&linkId=377XBIIH55EWYAIK", "indices": [11, 34]}, {"display_url": "flickr.com/photos/robceem\u2026", "url": "https://t.co/7dMPlQvYLO", "expanded_url": "https://www.flickr.com/photos/robceemoz/", "indices": [88, 111]}]}, "url": {"urls": [{"display_url": "robcee.net", "url": "http://t.co/R8fIMaSLvf", "expanded_url": "http://robcee.net/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 1216, "location": "Toronto, Canada", "screen_name": "robcee", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 107, "name": "robcee", "profile_use_background_image": false, "description": "#author of https://t.co/C1nuRVMz0N\n\n#drones #media #coffee #software #tech #photography https://t.co/7dMPlQvYLO", "url": "http://t.co/R8fIMaSLvf", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Mar 25 19:52:34 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/552127239433633794/YVdSLObS_normal.jpeg", "favourites_count": 4161, "status": {"in_reply_to_status_id": 685563535359868928, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "matejnovak", "in_reply_to_user_id": 15459306, "in_reply_to_status_id_str": "685563535359868928", "in_reply_to_user_id_str": "15459306", "truncated": false, "id_str": "685563745901350912", "id": 685563745901350912, "text": "@matejnovak Niagara Kale Brandy has a nasty vibe to it. But OK!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "matejnovak", "id_str": "15459306", "id": 15459306, "indices": [0, 11], "name": "Matej Novak \u23ce"}]}, "created_at": "Fri Jan 08 20:48:28 +0000 2016", "source": "Twitter for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2202531, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 19075, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2202531/1420472405", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17663776", "following": false, "friends_count": 1126, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "planet.com", "url": "http://t.co/AwAXMrXqVJ", "expanded_url": "http://planet.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 12389, "location": "San Francisco, CA, Earth", "screen_name": "planetlabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 488, "name": "Planet Labs", "profile_use_background_image": false, "description": "Delivering the most current images of our entire Earth.", "url": "http://t.co/AwAXMrXqVJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Nov 27 00:10:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000044864601/2adb3a0d793068936c4e6d6105eaa20d_normal.png", "favourites_count": 2014, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613487188398081", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", "type": "photo", "indices": [97, 120], "media_url": "http://pbs.twimg.com/media/CYPJ1WMUQAA38JJ.jpg", "display_url": "pic.twitter.com/01wqlNRcRx", "id_str": "685613486617935872", "expanded_url": "http://twitter.com/planetlabs/status/685613487188398081/photo/1", "id": 685613486617935872, "url": "https://t.co/01wqlNRcRx"}], "symbols": [], "urls": [{"display_url": "planet.com/gallery/uganda\u2026", "url": "https://t.co/QqEWAf2iM1", "expanded_url": "https://www.planet.com/gallery/uganda-smallholders/", "indices": [73, 96]}], "hashtags": [{"text": "Uganda", "indices": [64, 71]}], "user_mentions": []}, "created_at": "Sat Jan 09 00:06:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613487188398081, "text": "Small holder and subsistence farms on a sunny day in Namutumba, #Uganda https://t.co/QqEWAf2iM1 https://t.co/01wqlNRcRx", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 17663776, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/528311941853216769/bLunztkI.png", "statuses_count": 1658, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17663776/1439957443", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "41693", "following": false, "friends_count": 415, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blankbaby.com", "url": "http://t.co/bOEDVPeU3G", "expanded_url": "http://www.blankbaby.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/18572/newlogotop.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 4309, "location": "Philadelphia, PA", "screen_name": "blankbaby", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 279, "name": "Scott McNulty", "profile_use_background_image": true, "description": "I am almost Internet famous. Host of @Random_Trek.", "url": "http://t.co/bOEDVPeU3G", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Tue Dec 05 00:57:26 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/471836335154954240/pduVcSUO_normal.jpeg", "favourites_count": 48, "status": {"in_reply_to_status_id": 685602406990622720, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "dsilverman", "in_reply_to_user_id": 1010181, "in_reply_to_status_id_str": "685602406990622720", "in_reply_to_user_id_str": "1010181", "truncated": false, "id_str": "685602609508519940", "id": 685602609508519940, "text": "@dsilverman @GlennF ;) Alexa isn\u2019t super smart but very useful for my needs!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "dsilverman", "id_str": "1010181", "id": 1010181, "indices": [0, 11], "name": "dwight silverman"}, {"screen_name": "GlennF", "id_str": "8315692", "id": 8315692, "indices": [12, 19], "name": "Glenn Fleishman"}]}, "created_at": "Fri Jan 08 23:22:54 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 41693, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/18572/newlogotop.png", "statuses_count": 25874, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41693/1362153090", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3171325140", "following": false, "friends_count": 18, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sideway.com", "url": "http://t.co/pwaxdZGj2W", "expanded_url": "http://sideway.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "04AA04", "geo_enabled": false, "followers_count": 244, "location": "", "screen_name": "sideway", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Sideway", "profile_use_background_image": false, "description": "Share a conversation.", "url": "http://t.co/pwaxdZGj2W", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", "profile_background_color": "000000", "created_at": "Fri Apr 24 22:41:17 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654181093650771968/f1nSwDOD_normal.png", "favourites_count": 0, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "663825999717466112", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "type": "photo", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "display_url": "pic.twitter.com/Ng3S2UnWDz", "id_str": "663825968667037697", "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", "id": 663825968667037697, "url": "https://t.co/Ng3S2UnWDz"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Nov 09 21:10:26 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 663825999717466112, "text": "New plates! https://t.co/Ng3S2UnWDz", "coordinates": null, "retweeted": false, "favorite_count": 12, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "663826029887270912", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "663825999717466112", "media_url": "http://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "source_user_id_str": "346026614", "id_str": "663825968667037697", "id": 663825968667037697, "media_url_https": "https://pbs.twimg.com/media/CTZiM48UEAEkSHx.jpg", "type": "photo", "indices": [28, 51], "source_status_id": 663825999717466112, "source_user_id": 346026614, "display_url": "pic.twitter.com/Ng3S2UnWDz", "expanded_url": "http://twitter.com/eranhammer/status/663825999717466112/photo/1", "url": "https://t.co/Ng3S2UnWDz"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "eranhammer", "id_str": "346026614", "id": 346026614, "indices": [3, 14], "name": "Eran Hammer"}]}, "created_at": "Mon Nov 09 21:10:33 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 663826029887270912, "text": "RT @eranhammer: New plates! https://t.co/Ng3S2UnWDz", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3171325140, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5768872", "following": false, "friends_count": 8375, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "garyvaynerchuk.com/agvbook/", "url": "https://t.co/n1TN3hgA84", "expanded_url": "http://www.garyvaynerchuk.com/agvbook/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFE6CE", "profile_link_color": "268CCD", "geo_enabled": true, "followers_count": 1202113, "location": "NYC", "screen_name": "garyvee", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 24979, "name": "Gary Vaynerchuk", "profile_use_background_image": true, "description": "Family 1st! but after that, Businessman. CEO of @vaynermedia. Host of #AskGaryVee show and a dude who Loves the Hustle, the @NYJets .. snapchat - garyvee", "url": "https://t.co/n1TN3hgA84", "profile_text_color": "996633", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", "profile_background_color": "152932", "created_at": "Fri May 04 15:32:48 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616983642578001920/McXOdvAM_normal.jpg", "favourites_count": 2451, "status": {"in_reply_to_status_id": 685615325677658112, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "ChampionRandy_", "in_reply_to_user_id": 24077081, "in_reply_to_status_id_str": "685615325677658112", "in_reply_to_user_id_str": "24077081", "truncated": false, "id_str": "685615719472574468", "id": 685615719472574468, "text": "@ChampionRandy_ @Snapchat nah just believe in it soooo much", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ChampionRandy_", "id_str": "24077081", "id": 24077081, "indices": [0, 15], "name": "Champion.Randy"}, {"screen_name": "Snapchat", "id_str": "376502929", "id": 376502929, "indices": [16, 25], "name": "Snapchat"}]}, "created_at": "Sat Jan 09 00:15:00 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5768872, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/886634499/4009658006615d447621e5ddb85f7d8d.jpeg", "statuses_count": 135762, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5768872/1423844975", "is_translator": false}, {"time_zone": "Casablanca", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "270431388", "following": false, "friends_count": 795, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "MarquisdeGeek.com", "url": "https://t.co/rAxaxp0oUr", "expanded_url": "http://www.MarquisdeGeek.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 581, "location": "aka Steven Goodwin. London", "screen_name": "MarquisdeGeek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 88, "name": "Marquis de Geek", "profile_use_background_image": true, "description": "Maker, author, developer, educator, IoT dev, magician, musician, computer historian, sommelier, SGX creator, electronics guy, AFOL & geek. Works as edtech CTO", "url": "https://t.co/rAxaxp0oUr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", "profile_background_color": "131516", "created_at": "Tue Mar 22 16:17:37 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/516991718034395137/BX2dHEMq_normal.jpeg", "favourites_count": 400, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685486479271919616", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 460, "h": 960, "resize": "fit"}, "medium": {"w": 460, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 325, "h": 680, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", "type": "photo", "indices": [24, 47], "media_url": "http://pbs.twimg.com/media/CYNVWc_WYAAf1AZ.jpg", "display_url": "pic.twitter.com/Mo9VcBHIwC", "id_str": "685485412517830656", "expanded_url": "http://twitter.com/MarquisdeGeek/status/685486479271919616/photo/1", "id": 685485412517830656, "url": "https://t.co/Mo9VcBHIwC"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 15:41:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685486479271919616, "text": "Crossing the streams... https://t.co/Mo9VcBHIwC", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 270431388, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3959, "profile_banner_url": "https://pbs.twimg.com/profile_banners/270431388/1406890949", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "148221086", "following": false, "friends_count": 617, "entities": {"description": {"urls": [{"display_url": "shop.oreilly.com/product/063692\u2026", "url": "https://t.co/Zk7ejlHptN", "expanded_url": "http://shop.oreilly.com/product/0636920042686.do", "indices": [135, 158]}]}, "url": {"urls": [{"display_url": "GetYodlr.com", "url": "https://t.co/hKMaAlWDdW", "expanded_url": "https://GetYodlr.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 730, "location": "SF Bay Area", "screen_name": "rosskukulinski", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Ross Kukulinski", "profile_use_background_image": true, "description": "Founder @getyodlr. Entrepreneur & advisor. Work with #nodejs, #webrtc, #docker, #kubernetes, #coreos. Watch my Intro to CoreOS Course: https://t.co/Zk7ejlHptN", "url": "https://t.co/hKMaAlWDdW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed May 26 04:22:53 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495069447128743936/4ur5YuG6_normal.png", "favourites_count": 4397, "status": {"retweet_count": 17, "retweeted_status": {"retweet_count": 17, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685464980976566272", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nodejs.org/en/blog/commun\u2026", "url": "https://t.co/oHkMziRUpk", "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", "indices": [102, 125]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:16:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685464980976566272, "text": "Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Sprout Social"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685466291180859392", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nodejs.org/en/blog/commun\u2026", "url": "https://t.co/oHkMziRUpk", "expanded_url": "https://nodejs.org/en/blog/community/individual-membership/", "indices": [114, 137]}], "hashtags": [], "user_mentions": [{"screen_name": "nodejs", "id_str": "91985735", "id": 91985735, "indices": [3, 10], "name": "Node.js"}]}, "created_at": "Fri Jan 08 14:21:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685466291180859392, "text": "RT @nodejs: Next Friday is the last day to nominate yourself or another Node.js member to the board of directors: https://t.co/oHkMziRUpk.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 148221086, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8070, "is_translator": false}, {"time_zone": "Budapest", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "98630536", "following": false, "friends_count": 296, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eduardmoldovan.com", "url": "http://t.co/4zJV0jnlaJ", "expanded_url": "http://eduardmoldovan.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", "notifications": false, "profile_sidebar_fill_color": "0E0D02", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 336, "location": "Budapest", "screen_name": "edimoldovan", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 28, "name": "Edu\u00e1rd", "profile_use_background_image": true, "description": "Views are my own", "url": "http://t.co/4zJV0jnlaJ", "profile_text_color": "39BD91", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Dec 22 13:09:46 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/583355272749588480/cJRQCODD_normal.jpg", "favourites_count": 234, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685508856013795330", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wareable.com/fitness-tracke\u2026", "url": "https://t.co/HDOdrQpuJU", "expanded_url": "http://www.wareable.com/fitness-trackers/mastercard-and-coin-bringing-wearable-payments-to-fitness-trackers-including-moov-2147", "indices": [73, 96]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:10:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685508856013795330, "text": "MasterCard bringing wearable payments to fitness trackers including Moov https://t.co/HDOdrQpuJU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "OS X"}, "default_profile_image": false, "id": 98630536, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/760228965/d3337f4a0488aaada2c7e54b6bce1f14.jpeg", "statuses_count": 12782, "profile_banner_url": "https://pbs.twimg.com/profile_banners/98630536/1392472068", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14164724", "following": false, "friends_count": 1639, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sarahmei.com", "url": "https://t.co/3q8gb3xaz4", "expanded_url": "http://sarahmei.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 11828, "location": "San Francisco, CA", "screen_name": "sarahmei", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 762, "name": "Sarah Mei", "profile_use_background_image": true, "description": "Software developer. Founder of @railsbridge. Director of Ruby Central. Chief Consultant of @devmyndsoftware. IM IN UR BASE TEACHIN U HOW TO REFACTOR UR CODE", "url": "https://t.co/3q8gb3xaz4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Mon Mar 17 18:05:43 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564645861771079680/i-bwhBp0_normal.jpeg", "favourites_count": 1453, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685599933215424513", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/anildash/statu\u2026", "url": "https://t.co/436K3Lfx5F", "expanded_url": "https://twitter.com/anildash/status/685496167464042496", "indices": [54, 77]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:12:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-87.940033, 41.644102], [-87.523993, 41.644102], [-87.523993, 42.0230669], [-87.940033, 42.0230669]]], "type": "Polygon"}, "full_name": "Chicago, IL", "contained_within": [], "country_code": "US", "id": "1d9a5370a355ab0c", "name": "Chicago"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685599933215424513, "text": "First time I have tapped the moments icon on purpose. https://t.co/436K3Lfx5F", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14164724, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 13073, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14164724/1423457101", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "25183606", "following": false, "friends_count": 746, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "charlotteis.co.uk", "url": "https://t.co/j2AKIKz3ZY", "expanded_url": "http://charlotteis.co.uk", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "44615D", "geo_enabled": false, "followers_count": 2004, "location": "Bletchley, UK.", "screen_name": "Charlotteis", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 116, "name": "console.warn()", "profile_use_background_image": false, "description": "they/them. human ghost emoji writing code with @mandsdigital. open sourcer with @hoodiehq and creator of @yourfirstpr.", "url": "https://t.co/j2AKIKz3ZY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 18 23:28:54 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597058745345155072/xF4up7Xq_normal.png", "favourites_count": 8753, "status": {"in_reply_to_status_id": 685630147626680324, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "zaccolley", "in_reply_to_user_id": 18365392, "in_reply_to_status_id_str": "685630147626680324", "in_reply_to_user_id_str": "18365392", "truncated": false, "id_str": "685630306834059264", "id": 685630306834059264, "text": "@zaccolley @orliesaurus ya", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "zaccolley", "id_str": "18365392", "id": 18365392, "indices": [0, 10], "name": "zac"}, {"screen_name": "orliesaurus", "id_str": "55077784", "id": 55077784, "indices": [11, 23], "name": "orliesaurus"}]}, "created_at": "Sat Jan 09 01:12:58 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 25183606, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/288817017/pattern_111.gif", "statuses_count": 49657, "profile_banner_url": "https://pbs.twimg.com/profile_banners/25183606/1420483218", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "253464752", "following": false, "friends_count": 492, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jessicard.com", "url": "https://t.co/DwRzTkmHMB", "expanded_url": "http://jessicard.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542881894/twitter.png", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "00B9E1", "geo_enabled": true, "followers_count": 5249, "location": "than franthithco", "screen_name": "jessicard", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 241, "name": "jessicard", "profile_use_background_image": false, "description": "The jessicard physically strong, moves rapidly, momentum is powerful, is one of the most has the courage and strength of the software engineer in the world.", "url": "https://t.co/DwRzTkmHMB", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", "profile_background_color": "F6F6F6", "created_at": "Thu Feb 17 09:04:56 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673336057274863616/qhH0PyV1_normal.jpg", "favourites_count": 28153, "status": {"in_reply_to_status_id": 685597105696579584, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jlsuttles", "in_reply_to_user_id": 21170138, "in_reply_to_status_id_str": "685597105696579584", "in_reply_to_user_id_str": "21170138", "truncated": false, "id_str": "685618782757322754", "id": 685618782757322754, "text": "@jlsuttles SO CUTE \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude4f\ud83c\udffb", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jlsuttles", "id_str": "21170138", "id": 21170138, "indices": [0, 10], "name": "\u2728Jessica Suttles\u2728"}]}, "created_at": "Sat Jan 09 00:27:10 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 253464752, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542881894/twitter.png", "statuses_count": 23084, "profile_banner_url": "https://pbs.twimg.com/profile_banners/253464752/1353017487", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "198661893", "following": false, "friends_count": 247, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eliseworthy.com", "url": "http://t.co/Lfr9fIzPIs", "expanded_url": "http://eliseworthy.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "41625C", "geo_enabled": true, "followers_count": 1862, "location": "Seattle", "screen_name": "eliseworthy", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 123, "name": "Elise Worthy", "profile_use_background_image": false, "description": "software developer | founder of @brandworthy and @adaacademy", "url": "http://t.co/Lfr9fIzPIs", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", "profile_background_color": "946369", "created_at": "Mon Oct 04 22:38:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/502913017634250754/3Da3F-N8_normal.jpeg", "favourites_count": 689, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "666384799402098688", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "meetup.com/Seattle-PyLadi\u2026", "url": "https://t.co/bg7tLVR1Tp", "expanded_url": "http://www.meetup.com/Seattle-PyLadies/events/225729699/", "indices": [86, 109]}], "hashtags": [], "user_mentions": [{"screen_name": "PyLadiesSEA", "id_str": "885603211", "id": 885603211, "indices": [38, 50], "name": "Seattle PyLadies"}]}, "created_at": "Mon Nov 16 22:38:11 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 666384799402098688, "text": "What's better than a holiday party? A @PyLadiesSEA holiday party! This Wednesday! Go! https://t.co/bg7tLVR1Tp", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 198661893, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "statuses_count": 3529, "profile_banner_url": "https://pbs.twimg.com/profile_banners/198661893/1377996487", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "13368452", "following": false, "friends_count": 1123, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ultrasaurus.com", "url": "http://t.co/VV3FrrBWLv", "expanded_url": "http://www.ultrasaurus.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 7943, "location": "San Francisco, CA", "screen_name": "ultrasaurus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 720, "name": "Sarah Allen", "profile_use_background_image": true, "description": "I write code, connect pixels and speak truth to make change. @bridgefoundry @mightyverse @18F", "url": "http://t.co/VV3FrrBWLv", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Mon Feb 11 23:40:05 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451707693577682945/6MKmBXjK_normal.jpeg", "favourites_count": 1229, "status": {"retweet_count": 9772, "retweeted_status": {"retweet_count": 9772, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685415626945507328", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 614, "resize": "fit"}, "medium": {"w": 567, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "type": "photo", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "display_url": "pic.twitter.com/4ZnTo0GI7T", "id_str": "685415615138545664", "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", "id": 685415615138545664, "url": "https://t.co/4ZnTo0GI7T"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 10:59:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685415626945507328, "text": "PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", "coordinates": null, "retweeted": false, "favorite_count": 1246, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685477649523712000", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 614, "resize": "fit"}, "medium": {"w": 567, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 567, "h": 1024, "resize": "fit"}}, "source_status_id_str": "685415626945507328", "media_url": "http://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "source_user_id_str": "2782137901", "id_str": "685415615138545664", "id": 685415615138545664, "media_url_https": "https://pbs.twimg.com/media/CYMV3tfWwAAydQm.jpg", "type": "photo", "indices": [48, 71], "source_status_id": 685415626945507328, "source_user_id": 2782137901, "display_url": "pic.twitter.com/4ZnTo0GI7T", "expanded_url": "http://twitter.com/neil_finnweevil/status/685415626945507328/photo/1", "url": "https://t.co/4ZnTo0GI7T"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "neil_finnweevil", "id_str": "2782137901", "id": 2782137901, "indices": [3, 19], "name": "kiki montparnasse"}]}, "created_at": "Fri Jan 08 15:06:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685477649523712000, "text": "RT @neil_finnweevil: PLEASE RETWEET. THANK YOU! https://t.co/4ZnTo0GI7T", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 13368452, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 10335, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13368452/1396530463", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3300795096", "following": false, "friends_count": 296, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "current.sh", "url": "http://t.co/43c4yK78zi", "expanded_url": "http://current.sh", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "268BD2", "geo_enabled": false, "followers_count": 192, "location": "", "screen_name": "currentsh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "current.sh", "profile_use_background_image": false, "description": "the log management saas you've been looking for. built by @vektrasays.", "url": "http://t.co/43c4yK78zi", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", "profile_background_color": "000000", "created_at": "Wed Jul 29 20:09:17 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634188694484750337/FQi_1TrA_normal.png", "favourites_count": 8, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685167345329831936", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "producthunt.com/tech/current-3\u2026", "url": "https://t.co/ccTe9IhAJB", "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", "indices": [89, 112]}], "hashtags": [], "user_mentions": [{"screen_name": "currentsh", "id_str": "3300795096", "id": 3300795096, "indices": [40, 50], "name": "current.sh"}, {"screen_name": "ProductHunt", "id_str": "2208027565", "id": 2208027565, "indices": [54, 66], "name": "Product Hunt"}]}, "created_at": "Thu Jan 07 18:33:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/0775fcd6eb188d7c.json", "country": "United States", "attributes": {}, "place_type": "neighborhood", "bounding_box": {"coordinates": [[[-118.3613876, 34.043829], [-118.309037, 34.043829], [-118.309037, 34.083516], [-118.3613876, 34.083516]]], "type": "Polygon"}, "full_name": "Mid-Wilshire, Los Angeles", "contained_within": [], "country_code": "US", "id": "0775fcd6eb188d7c", "name": "Mid-Wilshire"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685167345329831936, "text": "I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685171895952490498", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "producthunt.com/tech/current-3\u2026", "url": "https://t.co/ccTe9IhAJB", "expanded_url": "https://www.producthunt.com/tech/current-3#comment-207860", "indices": [102, 125]}], "hashtags": [], "user_mentions": [{"screen_name": "evanphx", "id_str": "5444392", "id": 5444392, "indices": [3, 11], "name": "Evan Phoenix"}, {"screen_name": "currentsh", "id_str": "3300795096", "id": 3300795096, "indices": [53, 63], "name": "current.sh"}, {"screen_name": "ProductHunt", "id_str": "2208027565", "id": 2208027565, "indices": [67, 79], "name": "Product Hunt"}]}, "created_at": "Thu Jan 07 18:51:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685171895952490498, "text": "RT @evanphx: I\u2019m currently answering questions about @currentsh on @ProductHunt, so let me have them! https://t.co/ccTe9IhAJB", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3300795096, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 36, "is_translator": false}, {"time_zone": "Tijuana", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "21170138", "following": false, "friends_count": 403, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "current.sh", "url": "https://t.co/43c4yJPxHK", "expanded_url": "http://current.sh", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 2050, "location": "San Francisco, CA", "screen_name": "jlsuttles", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 107, "name": "\u2728Jessica Suttles\u2728", "profile_use_background_image": true, "description": "Co-Founder & CTO @currentsh", "url": "https://t.co/43c4yJPxHK", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Feb 18 04:49:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666749836822114304/3i-1-RtX_normal.jpg", "favourites_count": 4798, "status": {"in_reply_to_status_id": 685608984401850368, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "raihanaaaa", "in_reply_to_user_id": 23154665, "in_reply_to_status_id_str": "685608984401850368", "in_reply_to_user_id_str": "23154665", "truncated": false, "id_str": "685621709433516032", "id": 685621709433516032, "text": "@raihanaaaa yes pls!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "raihanaaaa", "id_str": "23154665", "id": 23154665, "indices": [0, 11], "name": "Rae."}]}, "created_at": "Sat Jan 09 00:38:48 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 21170138, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 10077, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21170138/1448066737", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15714950", "following": false, "friends_count": 35, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 179, "location": "", "screen_name": "ruoho", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Clint Ruoho", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", "profile_background_color": "022330", "created_at": "Sun Aug 03 22:20:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1226693053/Screen_shot_2011-01-26_at_4.27.16_PM_normal.png", "favourites_count": 18, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682197364367425537", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wtfismyip.com", "url": "https://t.co/QfqlilFduQ", "expanded_url": "https://wtfismyip.com/", "indices": [13, 36]}], "hashtags": [{"text": "FreeBasics", "indices": [111, 122]}], "user_mentions": []}, "created_at": "Wed Dec 30 13:51:40 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682197364367425537, "text": "Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682229939072937984", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wtfismyip.com", "url": "https://t.co/QfqlilFduQ", "expanded_url": "https://wtfismyip.com/", "indices": [28, 51]}], "hashtags": [{"text": "FreeBasics", "indices": [126, 137]}], "user_mentions": [{"screen_name": "wtfismyip", "id_str": "359037938", "id": 359037938, "indices": [3, 13], "name": "WTF IS MY IP!?!?!?"}]}, "created_at": "Wed Dec 30 16:01:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682229939072937984, "text": "RT @wtfismyip: Surprisingly https://t.co/QfqlilFduQ has met the technical guidelines and is pending inclusion in Free Basics! #FreeBasics", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 15714950, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 17, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "755178", "following": false, "friends_count": 1779, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bob.ippoli.to", "url": "http://t.co/8Z9JtvGN55", "expanded_url": "http://bob.ippoli.to/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 5239, "location": "San Francisco, CA", "screen_name": "etrepum", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 315, "name": "Bob Ippolito", "profile_use_background_image": true, "description": "@playfig cofounder/CTO. @missionbit board member & lead instructor. Former founder/CTO of Mochi Media. Open source python/js/erlang/haskell/obj-c/ruby developer", "url": "http://t.co/8Z9JtvGN55", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Tue Feb 06 09:23:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635615219218190336/mhDIVRPn_normal.jpg", "favourites_count": 5820, "status": {"retweet_count": 12, "retweeted_status": {"retweet_count": 12, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "617059621379780608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tools.ietf.org/html/draft-tho\u2026", "url": "https://t.co/XCpUoEM89o", "expanded_url": "https://tools.ietf.org/html/draft-thomson-postel-was-wrong-00", "indices": [18, 41]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jul 03 19:57:32 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 617059621379780608, "text": "Postel was wrong. https://t.co/XCpUoEM89o", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685619587912605697", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tools.ietf.org/html/draft-tho\u2026", "url": "https://t.co/XCpUoEM89o", "expanded_url": "https://tools.ietf.org/html/draft-thomson-postel-was-wrong-00", "indices": [29, 52]}], "hashtags": [], "user_mentions": [{"screen_name": "dreid", "id_str": "756241", "id": 756241, "indices": [3, 9], "name": "dreid"}]}, "created_at": "Sat Jan 09 00:30:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685619587912605697, "text": "RT @dreid: Postel was wrong. https://t.co/XCpUoEM89o", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 755178, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 11507, "profile_banner_url": "https://pbs.twimg.com/profile_banners/755178/1353725023", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "19315174", "following": false, "friends_count": 123, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", "notifications": false, "profile_sidebar_fill_color": "96C6ED", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 798508, "location": "Redmond, WA", "screen_name": "MicrosoftEdge", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5871, "name": "Microsoft Edge", "profile_use_background_image": false, "description": "The official Twitter handle for Microsoft Edge, the new browser from Microsoft.", "url": null, "profile_text_color": "453C3C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", "profile_background_color": "3B94D9", "created_at": "Wed Jan 21 23:42:14 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626182170575421441/rEo9xeQt_normal.png", "favourites_count": 23, "status": {"retweet_count": 5, "retweeted_status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685504215343443968", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "display_url": "pic.twitter.com/v6YqGwUtih", "id_str": "685503595572101120", "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", "id": 685503595572101120, "url": "https://t.co/v6YqGwUtih"}], "symbols": [], "urls": [{"display_url": "aka.ms/Xwzpnt", "url": "https://t.co/g4IP0j7aDz", "expanded_url": "http://aka.ms/Xwzpnt", "indices": [81, 104]}], "hashtags": [{"text": "Winning", "indices": [56, 64]}, {"text": "MicrosoftEdge", "indices": [66, 80]}], "user_mentions": []}, "created_at": "Fri Jan 08 16:51:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685504215343443968, "text": "The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6YqGwUtih", "coordinates": null, "retweeted": false, "favorite_count": 11, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685576467468677120", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id_str": "685504215343443968", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "source_user_id_str": "164457546", "id_str": "685503595572101120", "id": 685503595572101120, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685503595572101120/pu/img/udIRzu3OcvMwD0LC.jpg", "type": "photo", "indices": [124, 140], "source_status_id": 685504215343443968, "source_user_id": 164457546, "display_url": "pic.twitter.com/v6YqGwUtih", "expanded_url": "http://twitter.com/WindowsCanada/status/685504215343443968/video/1", "url": "https://t.co/v6YqGwUtih"}], "symbols": [], "urls": [{"display_url": "aka.ms/Xwzpnt", "url": "https://t.co/g4IP0j7aDz", "expanded_url": "http://aka.ms/Xwzpnt", "indices": [100, 123]}], "hashtags": [{"text": "Winning", "indices": [75, 83]}, {"text": "MicrosoftEdge", "indices": [85, 99]}], "user_mentions": [{"screen_name": "WindowsCanada", "id_str": "164457546", "id": 164457546, "indices": [3, 17], "name": "Windows Canada"}]}, "created_at": "Fri Jan 08 21:39:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685576467468677120, "text": "RT @WindowsCanada: The purrrrfect way to stay distraction free. Talk about #Winning. #MicrosoftEdge https://t.co/g4IP0j7aDz https://t.co/v6\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Sprinklr"}, "default_profile_image": false, "id": 19315174, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000157221152/Pto1E_cS.png", "statuses_count": 1205, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19315174/1438621793", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "77343214", "following": false, "friends_count": 1042, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "danabauer.github.io", "url": "http://t.co/qTVR3d3mlq", "expanded_url": "http://danabauer.github.io/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "424F98", "geo_enabled": true, "followers_count": 2467, "location": "Philly (mostly)", "screen_name": "agentdana", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 203, "name": "Dana Bauer", "profile_use_background_image": false, "description": "Geographer, Pythonista, open data enthusiast, mom to a future astronaut. I work at Planet Labs.", "url": "http://t.co/qTVR3d3mlq", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Sep 25 23:48:03 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662039893758124032/gywAF5t5_normal.jpg", "favourites_count": 12277, "status": {"in_reply_to_status_id": 685597724864081922, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "taramurtha", "in_reply_to_user_id": 24011702, "in_reply_to_status_id_str": "685597724864081922", "in_reply_to_user_id_str": "24011702", "truncated": false, "id_str": "685598350121529344", "id": 685598350121529344, "text": "@taramurtha gaaaahhhhhh", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "taramurtha", "id_str": "24011702", "id": 24011702, "indices": [0, 11], "name": "Tara Murtha"}]}, "created_at": "Fri Jan 08 23:05:59 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 77343214, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4395, "profile_banner_url": "https://pbs.twimg.com/profile_banners/77343214/1444143700", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1141081634", "following": false, "friends_count": 90, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dev.modern.ie", "url": "http://t.co/r0F7MBTxRE", "expanded_url": "http://dev.modern.ie/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0078D7", "geo_enabled": true, "followers_count": 57822, "location": "Redmond, WA", "screen_name": "MSEdgeDev", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 741, "name": "Microsoft Edge Dev", "profile_use_background_image": true, "description": "Official news and updates from the Microsoft Web Platform team on #MicrosoftEdge and #InternetExplorer", "url": "http://t.co/r0F7MBTxRE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", "profile_background_color": "282828", "created_at": "Sat Feb 02 00:26:21 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/615660764842430465/VNNF2rAI_normal.png", "favourites_count": 146, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685516791003533312", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "channel9.msdn.com/Blogs/One-Dev-\u2026", "url": "https://t.co/tL4lVK9BLo", "expanded_url": "https://channel9.msdn.com/Blogs/One-Dev-Minute/Building-Websites-and-UWP-Apps-with-a-Yeoman-Generator", "indices": [71, 94]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:41:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685516791003533312, "text": "One Dev Minute: Building websites and UWP apps with a Yeoman generator https://t.co/tL4lVK9BLo", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 1141081634, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595715872586539008/TmnuSkGi.png", "statuses_count": 1681, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1141081634/1430352524", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13348", "following": false, "friends_count": 53207, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/RobertScoble", "url": "https://t.co/TZTxRbMttp", "expanded_url": "https://facebook.com/RobertScoble", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 484968, "location": "Half Moon Bay, California, USA", "screen_name": "Scobleizer", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 25250, "name": "Robert Scoble", "profile_use_background_image": true, "description": "@Rackspace's Futurist searches the world looking for what's happening on the bleeding edge of technology and brings that learning to the Internet.", "url": "https://t.co/TZTxRbMttp", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Nov 20 23:43:44 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675812624999669761/cXYLehYz_normal.jpg", "favourites_count": 62360, "status": {"retweet_count": 6, "retweeted_status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685589440765407232", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "display_url": "pic.twitter.com/sMEhdHTceR", "id_str": "685589432909467648", "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", "id": 685589432909467648, "url": "https://t.co/sMEhdHTceR"}], "symbols": [], "urls": [{"display_url": "bit.ly/1K3q0PT", "url": "https://t.co/sXih7Q0R2J", "expanded_url": "http://bit.ly/1K3q0PT", "indices": [55, 78]}], "hashtags": [{"text": "CES", "indices": [50, 54]}], "user_mentions": [{"screen_name": "richardbranson", "id_str": "8161232", "id": 8161232, "indices": [94, 109], "name": "Richard Branson"}]}, "created_at": "Fri Jan 08 22:30:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685589440765407232, "text": "Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/sMEhdHTceR", "coordinates": null, "retweeted": false, "favorite_count": 11, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685593198958264320", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "source_status_id_str": "685589440765407232", "media_url": "http://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "source_user_id_str": "6853442", "id_str": "685589432909467648", "id": 685589432909467648, "media_url_https": "https://pbs.twimg.com/media/CYOz9PJUkAA9WRH.jpg", "type": "photo", "indices": [126, 140], "source_status_id": 685589440765407232, "source_user_id": 6853442, "display_url": "pic.twitter.com/sMEhdHTceR", "expanded_url": "http://twitter.com/willobrien/status/685589440765407232/photo/1", "url": "https://t.co/sMEhdHTceR"}], "symbols": [], "urls": [{"display_url": "bit.ly/1K3q0PT", "url": "https://t.co/sXih7Q0R2J", "expanded_url": "http://bit.ly/1K3q0PT", "indices": [71, 94]}], "hashtags": [{"text": "CES", "indices": [66, 70]}], "user_mentions": [{"screen_name": "willobrien", "id_str": "6853442", "id": 6853442, "indices": [3, 14], "name": "Will O'Brien"}, {"screen_name": "richardbranson", "id_str": "8161232", "id": 8161232, "indices": [110, 125], "name": "Richard Branson"}]}, "created_at": "Fri Jan 08 22:45:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593198958264320, "text": "RT @willobrien: Tune in now LIVE to the Extreme Tech Challenge at #CES https://t.co/sXih7Q0R2J. Winners pitch @richardbranson https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 13348, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581187091867926529/35HvDGup.jpg", "statuses_count": 67747, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13348/1450153194", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "84699828", "following": false, "friends_count": 2258, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 6995, "location": "", "screen_name": "barb_oconnor", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 65, "name": "Barbara O'Connor", "profile_use_background_image": true, "description": "Girl next door mash-up :) Technology lover and biz dev aficionado. #Runner,#SUP boarder,#cyclist,#mother, dog lover, & US#Marine. Tweets=mine", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", "profile_background_color": "131516", "created_at": "Fri Oct 23 21:58:22 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629751583232905216/J6tqmAD0_normal.jpg", "favourites_count": 67, "status": {"retweet_count": 183, "retweeted_status": {"retweet_count": 183, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685501440639516673", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "cainc.to/yArk3o", "url": "https://t.co/DG3FPs9ryJ", "expanded_url": "http://cainc.to/yArk3o", "indices": [100, 123]}], "hashtags": [], "user_mentions": [{"screen_name": "OttoBerkes", "id_str": "192448160", "id": 192448160, "indices": [30, 41], "name": "Otto Berkes"}, {"screen_name": "TheEbizWizard", "id_str": "16290014", "id": 16290014, "indices": [70, 84], "name": "Jason Bloomberg"}, {"screen_name": "ForbesTech", "id_str": "14885549", "id": 14885549, "indices": [88, 99], "name": "Forbes Tech News"}]}, "created_at": "Fri Jan 08 16:40:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685501440639516673, "text": "From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "SocialFlow"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685541320170029056", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "cainc.to/yArk3o", "url": "https://t.co/DG3FPs9ryJ", "expanded_url": "http://cainc.to/yArk3o", "indices": [111, 134]}], "hashtags": [], "user_mentions": [{"screen_name": "CAinc", "id_str": "14790085", "id": 14790085, "indices": [3, 9], "name": "CA Technologies"}, {"screen_name": "OttoBerkes", "id_str": "192448160", "id": 192448160, "indices": [41, 52], "name": "Otto Berkes"}, {"screen_name": "TheEbizWizard", "id_str": "16290014", "id": 16290014, "indices": [81, 95], "name": "Jason Bloomberg"}, {"screen_name": "ForbesTech", "id_str": "14885549", "id": 14885549, "indices": [99, 110], "name": "Forbes Tech News"}]}, "created_at": "Fri Jan 08 19:19:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685541320170029056, "text": "RT @CAinc: From Xbox to the Enterprise - @OttoBerkes is a digital influencer via @TheEbizWizard at @ForbesTech https://t.co/DG3FPs9ryJ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "GaggleAMP"}, "default_profile_image": false, "id": 84699828, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1939, "profile_banner_url": "https://pbs.twimg.com/profile_banners/84699828/1440076545", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "539153822", "following": false, "friends_count": 8, "entities": {"description": {"urls": [{"display_url": "github.com/contact", "url": "https://t.co/O4Rsiuqv", "expanded_url": "https://github.com/contact", "indices": [54, 75]}]}, "url": {"urls": [{"display_url": "developer.github.com", "url": "http://t.co/WSCoZacuEW", "expanded_url": "http://developer.github.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 8329, "location": "SF", "screen_name": "GitHubAPI", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 246, "name": "GitHub API", "profile_use_background_image": true, "description": "GitHub API announcements. Send feedback/questions to https://t.co/O4Rsiuqv", "url": "http://t.co/WSCoZacuEW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Mar 28 15:52:25 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1978599420/electrocat_normal.png", "favourites_count": 9, "status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684448831757500416", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "developer.github.com/changes/2016-0\u2026", "url": "https://t.co/kZjASxXV1N", "expanded_url": "https://developer.github.com/changes/2016-01-05-api-enhancements-for-working-with-organization-permissions-are-now-official/", "indices": [76, 99]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 18:58:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684448831757500416, "text": "API enhancements for working with organization permissions are now official https://t.co/kZjASxXV1N", "coordinates": null, "retweeted": false, "favorite_count": 19, "contributors": null, "source": "Hubot @GitHubAPI Integration"}, "default_profile_image": false, "id": 539153822, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 431, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "309528017", "following": false, "friends_count": 91, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "npmjs.org", "url": "http://t.co/Yr2xkfPzXd", "expanded_url": "http://npmjs.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "CB3837", "geo_enabled": false, "followers_count": 56431, "location": "oakland, ca", "screen_name": "npmjs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1130, "name": "npmbot", "profile_use_background_image": false, "description": "i'm the package manager for javascript. problems? try @npm_support and #npm on freenode.", "url": "http://t.co/Yr2xkfPzXd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu Jun 02 07:20:53 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2536744912/lejvzrnlpb308aftn31u_normal.png", "favourites_count": 195, "status": {"retweet_count": 17, "retweeted_status": {"retweet_count": 17, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685257850961014784", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/npm/npm/releas\u2026", "url": "https://t.co/BL0ttn3fLO", "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", "indices": [121, 144]}], "hashtags": [], "user_mentions": [{"screen_name": "npmjs", "id_str": "309528017", "id": 309528017, "indices": [4, 10], "name": "npmbot"}]}, "created_at": "Fri Jan 08 00:32:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685257850961014784, "text": "New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https://t.co/BL0ttn3fLO", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Tweetbot for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685258201831309312", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/npm/npm/releas\u2026", "url": "https://t.co/BL0ttn3fLO", "expanded_url": "https://github.com/npm/npm/releases/tag/v3.5.4", "indices": [143, 144]}], "hashtags": [], "user_mentions": [{"screen_name": "ReBeccaOrg", "id_str": "579491588", "id": 579491588, "indices": [3, 14], "name": "Rebecca v7.3.2"}, {"screen_name": "npmjs", "id_str": "309528017", "id": 309528017, "indices": [20, 26], "name": "npmbot"}]}, "created_at": "Fri Jan 08 00:34:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685258201831309312, "text": "RT @ReBeccaOrg: New @npmjs\u203c For the new year we're eating our vegetables: docs & green tests \ud83d\ude01\n\nnext: 3.5.4\ncurrent: 3.5.3\n\nDetails: https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 309528017, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/263078148/npm-64-square.png", "statuses_count": 2512, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "785764172", "following": false, "friends_count": 3, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "status.github.com", "url": "http://t.co/efPUg9pga5", "expanded_url": "http://status.github.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 29276, "location": "", "screen_name": "githubstatus", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 669, "name": "GitHub Status", "profile_use_background_image": true, "description": "", "url": "http://t.co/efPUg9pga5", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Aug 28 00:04:59 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2577880769/687474703a2f2f636c2e6c792f696d6167652f337330463237324b3254324c2f636f6e74656e74_normal.png", "favourites_count": 3, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685287597560696833", "id": 685287597560696833, "text": "Everything operating normally.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 02:31:09 +0000 2016", "source": "OctoStatus Production", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 785764172, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 929, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "82874321", "following": false, "friends_count": 1136, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.amber.org", "url": "https://t.co/hvvj9vghmG", "expanded_url": "http://blog.amber.org", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 839, "location": "Seattle, WA", "screen_name": "petrillic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 121, "name": "Security Therapist", "profile_use_background_image": true, "description": "Social Justice _________. Nerd. Tinkerer. General trouble maker. Always learning more useless things. Homo sum humani a me nihil alienum puto.", "url": "https://t.co/hvvj9vghmG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Fri Oct 16 13:11:25 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676244054850461696/R1tkjvAO_normal.jpg", "favourites_count": 3415, "status": {"in_reply_to_status_id": 685624995892965376, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "secvalve", "in_reply_to_user_id": 155858106, "in_reply_to_status_id_str": "685624995892965376", "in_reply_to_user_id_str": "155858106", "truncated": false, "id_str": "685625086447988736", "id": 685625086447988736, "text": "@secvalve yeah, mine's 16GB, but the desktop has 64GB, so\u2026", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "secvalve", "id_str": "155858106", "id": 155858106, "indices": [0, 9], "name": "Kate Pearce"}]}, "created_at": "Sat Jan 09 00:52:13 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 82874321, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 52187, "profile_banner_url": "https://pbs.twimg.com/profile_banners/82874321/1418621071", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "6297412", "following": false, "friends_count": 820, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "redmonk.com", "url": "http://t.co/U63YEc1eN4", "expanded_url": "http://redmonk.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 1019, "location": "London", "screen_name": "fintanr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 118, "name": "Fintan Ryan", "profile_use_background_image": true, "description": "Industry analyst @redmonk. Business, technology, communities, data, platforms and occasional interjections.", "url": "http://t.co/U63YEc1eN4", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Thu May 24 21:58:29 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/646431855953244161/mbkUpu6z_normal.jpg", "favourites_count": 1036, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685422437757005824", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mamamia.com.au/rules-for-visi\u2026", "url": "https://t.co/3yc87RdloV", "expanded_url": "http://www.mamamia.com.au/rules-for-visiting-a-newborn/", "indices": [49, 72]}], "hashtags": [], "user_mentions": [{"screen_name": "sogrady", "id_str": "143883", "id": 143883, "indices": [83, 91], "name": "steve o'grady"}, {"screen_name": "girltuesday", "id_str": "16833482", "id": 16833482, "indices": [96, 108], "name": "mko'g"}]}, "created_at": "Fri Jan 08 11:26:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685422437757005824, "text": "Two and a bit weeks in, and this reads so well.. https://t.co/3yc87RdloV, thinking @sogrady and @girltuesday may enjoy reading this too :).", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 6297412, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 4240, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6297412/1393521949", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "29170474", "following": false, "friends_count": 227, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sirupsen.com", "url": "http://t.co/lGprTMnO09", "expanded_url": "http://sirupsen.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "F7F7F7", "profile_link_color": "0066AA", "geo_enabled": true, "followers_count": 3305, "location": "Ottawa, Canada", "screen_name": "Sirupsen", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 133, "name": "Simon Eskildsen", "profile_use_background_image": false, "description": "WebScale @Shopify. Canadian in training.", "url": "http://t.co/lGprTMnO09", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Apr 06 09:15:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EFEFEF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/603925619542491138/O12EnXHK_normal.jpg", "favourites_count": 1073, "status": {"in_reply_to_status_id": 685581732322668544, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json", "country": "Canada", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-76.353876, 44.961937], [-75.246407, 44.961937], [-75.246407, 45.534511], [-76.353876, 45.534511]]], "type": "Polygon"}, "full_name": "Ottawa, Ontario", "contained_within": [], "country_code": "CA", "id": "38d5974e82ed1a6c", "name": "Ottawa"}, "in_reply_to_screen_name": "jnunemaker", "in_reply_to_user_id": 4243, "in_reply_to_status_id_str": "685581732322668544", "in_reply_to_user_id_str": "4243", "truncated": false, "id_str": "685594548618182656", "id": 685594548618182656, "text": "@jnunemaker Circuit breakers <3 Curious why you ended up building your own over using Semian's?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jnunemaker", "id_str": "4243", "id": 4243, "indices": [0, 11], "name": "John Nunemaker"}]}, "created_at": "Fri Jan 08 22:50:52 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 29170474, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 10223, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29170474/1379296952", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15911738", "following": false, "friends_count": 1688, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ryandlane.com", "url": "http://t.co/eD11mzD1mC", "expanded_url": "http://ryandlane.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1553, "location": "San Francisco, CA", "screen_name": "SquidDLane", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 108, "name": "Ryan Lane", "profile_use_background_image": true, "description": "DevOps Engineer at Lyft, Site Operations volunteer at Wikimedia Foundation and SaltStack volunteer Developer.", "url": "http://t.co/eD11mzD1mC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Aug 20 00:39:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/611423341174370306/r3pUltM7_normal.jpg", "favourites_count": 26, "status": {"in_reply_to_status_id": 685203908256370688, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "SquidDLane", "in_reply_to_user_id": 15911738, "in_reply_to_status_id_str": "685203908256370688", "in_reply_to_user_id_str": "15911738", "truncated": false, "id_str": "685204036606234624", "id": 685204036606234624, "text": "@tmclaughbos time to make a boto3_asg execution module ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tmclaughbos", "id_str": "740920470", "id": 740920470, "indices": [0, 12], "name": "Tom McLaughlin"}]}, "created_at": "Thu Jan 07 20:59:07 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15911738, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4934, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1442355080", "following": false, "friends_count": 556, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 604, "location": "Pittsburgh, PA", "screen_name": "emdantrim", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 19, "name": "hOI!!!! i'm emmie!!!", "profile_use_background_image": true, "description": "I type special words that computers sometimes find meaning in. my words are mine. she. @travisci", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Sun May 19 22:47:02 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661063298050232320/OojSihMi_normal.jpg", "favourites_count": 7316, "status": {"in_reply_to_status_id": 685613356603031552, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "wilkieii", "in_reply_to_user_id": 17047955, "in_reply_to_status_id_str": "685613356603031552", "in_reply_to_user_id_str": "17047955", "truncated": false, "id_str": "685613747482800129", "id": 685613747482800129, "text": "@wilkieii if you build an application that does this for you, twitter will send you a cease and desist and then implement the feature", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "wilkieii", "id_str": "17047955", "id": 17047955, "indices": [0, 9], "name": "wilkie"}]}, "created_at": "Sat Jan 09 00:07:10 +0000 2016", "source": "TweetDeck", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1442355080, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 6202, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1442355080/1450668537", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "11764", "following": false, "friends_count": 61, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cdevroe.com", "url": "http://t.co/1iJmxH8GUB", "expanded_url": "http://cdevroe.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", "notifications": false, "profile_sidebar_fill_color": "999999", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 3740, "location": "Jermyn, PA USA", "screen_name": "cdevroe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 179, "name": "Colin Devroe", "profile_use_background_image": false, "description": "Pronounced: See-Dev-Roo. Co-founder of @plainmade & @coalwork. JW. Kayaker.", "url": "http://t.co/1iJmxH8GUB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Nov 08 03:01:15 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662011814197133312/cVL3hg5q_normal.jpg", "favourites_count": 10667, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679337835888058368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "plainmade.com/blog/14578/lin\u2026", "url": "https://t.co/XgBYYftnu4", "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", "indices": [23, 46]}], "hashtags": [], "user_mentions": [{"screen_name": "deathtostock", "id_str": "1727323538", "id": 1727323538, "indices": [51, 64], "name": "Death To Stock"}, {"screen_name": "jaredsinclair", "id_str": "15004156", "id": 15004156, "indices": [66, 80], "name": "Jared Sinclair"}, {"screen_name": "RyanClarkDH", "id_str": "596003901", "id": 596003901, "indices": [83, 95], "name": "Ryan Clark"}, {"screen_name": "miguelrios", "id_str": "14717846", "id": 14717846, "indices": [97, 108], "name": "Miguel Rios"}, {"screen_name": "aimeeshiree", "id_str": "14347487", "id": 14347487, "indices": [110, 122], "name": "aimeeshiree"}, {"screen_name": "nathanaeljm", "id_str": "97536835", "id": 97536835, "indices": [124, 136], "name": "Nathanael J Mehrens"}]}, "created_at": "Tue Dec 22 16:28:56 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679337835888058368, "text": "Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, @nathanaeljm", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679340399832522752", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "plainmade.com/blog/14578/lin\u2026", "url": "https://t.co/XgBYYftnu4", "expanded_url": "http://plainmade.com/blog/14578/links-from-last-week-9", "indices": [38, 61]}], "hashtags": [], "user_mentions": [{"screen_name": "plainmade", "id_str": "977048040", "id": 977048040, "indices": [3, 13], "name": "Plain"}, {"screen_name": "deathtostock", "id_str": "1727323538", "id": 1727323538, "indices": [66, 79], "name": "Death To Stock"}, {"screen_name": "jaredsinclair", "id_str": "15004156", "id": 15004156, "indices": [81, 95], "name": "Jared Sinclair"}, {"screen_name": "RyanClarkDH", "id_str": "596003901", "id": 596003901, "indices": [98, 110], "name": "Ryan Clark"}, {"screen_name": "miguelrios", "id_str": "14717846", "id": 14717846, "indices": [112, 123], "name": "Miguel Rios"}, {"screen_name": "aimeeshiree", "id_str": "14347487", "id": 14347487, "indices": [125, 137], "name": "aimeeshiree"}, {"screen_name": "nathanaeljm", "id_str": "97536835", "id": 97536835, "indices": [139, 140], "name": "Nathanael J Mehrens"}]}, "created_at": "Tue Dec 22 16:39:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679340399832522752, "text": "RT @plainmade: Links from Last Week 9 https://t.co/XgBYYftnu4\n\nw/ @deathtostock, @jaredsinclair, @RyanClarkDH, @miguelrios, @aimeeshiree, \u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 11764, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/382727777/pattern_102.gif", "statuses_count": 42666, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11764/1444176827", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "13332442", "following": false, "friends_count": 337, "entities": {"description": {"urls": [{"display_url": "flickr.com/photos/mikepan\u2026", "url": "https://t.co/gIfppzqMQO", "expanded_url": "http://www.flickr.com/photos/mikepanchenko/11139648213/", "indices": [117, 140]}]}, "url": {"urls": [{"display_url": "mihasya.com", "url": "http://t.co/8ZVGv5uCcl", "expanded_url": "http://mihasya.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 842, "location": "The steak by the m'lake", "screen_name": "mihasya", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 52, "name": "Pancakes", "profile_use_background_image": true, "description": "making a career of naming projects after foods @newrelic. Formerly @opsmatic @urbanairship @simplegeo @flickr @yahoo https://t.co/gIfppzqMQO", "url": "http://t.co/8ZVGv5uCcl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Feb 11 03:13:51 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629345050024112128/x-Rs_MoH_normal.png", "favourites_count": 916, "status": {"in_reply_to_status_id": 684832544966103040, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "polotek", "in_reply_to_user_id": 20079975, "in_reply_to_status_id_str": "684832544966103040", "in_reply_to_user_id_str": "20079975", "truncated": false, "id_str": "685606078638243841", "id": 685606078638243841, "text": "@polotek I cannot convey in text the size of the CONGRATS I'd like to send your way. Also that birth story was intense y'all are both champs", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "polotek", "id_str": "20079975", "id": 20079975, "indices": [0, 8], "name": "Marco Rogers"}]}, "created_at": "Fri Jan 08 23:36:41 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 13332442, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/321246618/UnicornMermaid1.jpg", "statuses_count": 9830, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13332442/1437710921", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "212199251", "following": false, "friends_count": 155, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "orkjern.com", "url": "https://t.co/cJoUSHfCc3", "expanded_url": "https://orkjern.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 170, "location": "Norway", "screen_name": "orkj", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "eiriksm", "profile_use_background_image": false, "description": "All about Drupal, JS and good beer.", "url": "https://t.co/cJoUSHfCc3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", "profile_background_color": "A1A1A1", "created_at": "Fri Nov 05 12:15:41 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1652448910/1432042002_normal.jpg", "favourites_count": 207, "status": {"retweet_count": 0, "in_reply_to_user_id": 2154622149, "possibly_sensitive": false, "id_str": "685442655992451072", "in_reply_to_user_id_str": "2154622149", "entities": {"media": [{"sizes": {"large": {"w": 673, "h": 221, "resize": "fit"}, "small": {"w": 340, "h": 111, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 197, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", "type": "photo", "indices": [77, 100], "media_url": "http://pbs.twimg.com/media/CYMudowWcAAZ7EK.png", "display_url": "pic.twitter.com/403urs6oC3", "id_str": "685442654981746688", "expanded_url": "http://twitter.com/orkj/status/685442655992451072/photo/1", "id": 685442654981746688, "url": "https://t.co/403urs6oC3"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "torbmorland", "id_str": "2154622149", "id": 2154622149, "indices": [0, 12], "name": "Torbj\u00f8rn Morland"}, {"screen_name": "github", "id_str": "13334762", "id": 13334762, "indices": [13, 20], "name": "GitHub"}]}, "created_at": "Fri Jan 08 12:47:18 +0000 2016", "favorited": false, "in_reply_to_status_id": 685416670555443200, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "torbmorland", "in_reply_to_status_id_str": "685416670555443200", "truncated": false, "id": 685442655992451072, "text": "@torbmorland @github While you are at it, please create this project as well https://t.co/403urs6oC3", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 212199251, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 318, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24659495", "following": false, "friends_count": 380, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/bcoe", "url": "https://t.co/oVbQkCBHsB", "expanded_url": "https://github.com/bcoe", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1331, "location": "San Francisco", "screen_name": "BenjaminCoe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 93, "name": "Benjamin Coe", "profile_use_background_image": true, "description": "I'm a street walking cheetah with a heart full of napalm. Co-founded @attachmentsme, currently hacks up a storm @npmjs. Aspiring human.", "url": "https://t.co/oVbQkCBHsB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Mar 16 06:23:28 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682797648097640449/qU5j-zeb_normal.jpg", "favourites_count": 2517, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685252262696861697", "id": 685252262696861697, "text": "I've been watching greenkeeper.io get a ton of traction across many of the projects I contribute to, wonderful idea @boennemann \\o/", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "boennemann", "id_str": "37506335", "id": 37506335, "indices": [116, 127], "name": "Stephan B\u00f6nnemann"}]}, "created_at": "Fri Jan 08 00:10:45 +0000 2016", "source": "Twitter Web Client", "favorite_count": 13, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 24659495, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453387989779902465/21ShBGqR.jpeg", "statuses_count": 3524, "is_translator": false}, {"time_zone": "Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "18210275", "following": false, "friends_count": 235, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "HelloJustine.com", "url": "http://t.co/9NRKpNO5Cj", "expanded_url": "http://HelloJustine.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", "notifications": false, "profile_sidebar_fill_color": "E8E6DF", "profile_link_color": "2EC29D", "geo_enabled": true, "followers_count": 2243, "location": "Where the Wild Things Are", "screen_name": "SaltineJustine", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 122, "name": "Justine Arreche", "profile_use_background_image": true, "description": "I never met a deep fryer I didn't like \u2014 Lead Clipart Strategist at @travisci.", "url": "http://t.co/9NRKpNO5Cj", "profile_text_color": "404040", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", "profile_background_color": "242424", "created_at": "Thu Dec 18 06:09:40 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664836755489619968/GHInMYMD_normal.jpg", "favourites_count": 18042, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685601535380832256", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtube.com/watch?v=3uT4RV\u2026", "url": "https://t.co/shfgUir3HQ", "expanded_url": "https://www.youtube.com/watch?v=3uT4RV2Dfjs", "indices": [56, 79]}], "hashtags": [], "user_mentions": [{"screen_name": "lstoll", "id_str": "59282163", "id": 59282163, "indices": [46, 53], "name": "Kernel Sanders"}]}, "created_at": "Fri Jan 08 23:18:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/0eb9676d24b211f1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-81.877771, 41.392684], [-81.5331634, 41.392684], [-81.5331634, 41.599195], [-81.877771, 41.599195]]], "type": "Polygon"}, "full_name": "Cleveland, OH", "contained_within": [], "country_code": "US", "id": "0eb9676d24b211f1", "name": "Cleveland"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685601535380832256, "text": "Friday evening beats brought to you by me and @lstoll \u2014 https://t.co/shfgUir3HQ", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18210275, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/445981363426955264/XCu3Jw7N.png", "statuses_count": 23373, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18210275/1437218808", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "11848", "following": false, "friends_count": 2306, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/thisisdeb", "url": "http://t.co/JKlV7BRnzd", "expanded_url": "http://about.me/thisisdeb", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 9039, "location": "SF & NYC", "screen_name": "debs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 734, "name": "debs", "profile_use_background_image": false, "description": "Living at intersection of people, tech, design & horses | Technology changes, humans don't |\r\nCo-founder @yxyy @tummelvision @ILEquestrian", "url": "http://t.co/JKlV7BRnzd", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Nov 08 17:47:14 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1302642444/avataruse2011_normal.jpg", "favourites_count": 1096, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685226261308784644", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "fb.me/76u9wdYOo", "url": "https://t.co/FXGpjqARuU", "expanded_url": "http://fb.me/76u9wdYOo", "indices": [104, 127]}], "hashtags": [{"text": "yxyy", "indices": [134, 139]}], "user_mentions": [{"screen_name": "jboitnott", "id_str": "14486811", "id": 14486811, "indices": [34, 44], "name": "John Boitnott"}, {"screen_name": "YxYY", "id_str": "1232029844", "id": 1232029844, "indices": [128, 133], "name": "Yes and Yes Yes"}]}, "created_at": "Thu Jan 07 22:27:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685226261308784644, "text": "Thanks for the shout out John! RT @jboitnott: Why Many Tech Execs Are Skipping the Consumer Electronics https://t.co/FXGpjqARuU @yxyy #yxyy", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Echofon"}, "default_profile_image": false, "id": 11848, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "statuses_count": 13886, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11848/1414180455", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15662622", "following": false, "friends_count": 4657, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "medium.com/@stevenewcomb", "url": "https://t.co/l86N09uJWv", "expanded_url": "http://www.medium.com/@stevenewcomb", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 29588, "location": "San Francisco, CA", "screen_name": "stevenewcomb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 676, "name": "stevenewcomb", "profile_use_background_image": true, "description": "founder @befamous \u2022 founder @powerset (now MSFT Bing) \u2022 board Node.js \u2022 designer \u2022 ux \u2022 ui", "url": "https://t.co/l86N09uJWv", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Jul 30 16:55:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2630739604/08d6cc231d487fd5d04566f8e149ee38_normal.jpeg", "favourites_count": 86, "status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": {"url": "https://api.twitter.com/1.1/geo/id/5ef5b7f391e30aff.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.324818, 37.8459532], [-122.234225, 37.8459532], [-122.234225, 37.905738], [-122.324818, 37.905738]]], "type": "Polygon"}, "full_name": "Berkeley, CA", "contained_within": [], "country_code": "US", "id": "5ef5b7f391e30aff", "name": "Berkeley"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "679695243453661184", "id": 679695243453661184, "text": "When I asked my grandfather if one can be both wise and immature, he said pull my finger and I'll tell you.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 23 16:09:08 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 19, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15662622, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1147, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15662622/1398732045", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14708110", "following": false, "friends_count": 194, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 42, "location": "", "screen_name": "pease", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 0, "name": "Dave Pease", "profile_use_background_image": true, "description": "Father, Husband, .NET Developer at IBS, Inc.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", "profile_background_color": "131516", "created_at": "Fri May 09 01:18:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664853157634162689/YcL3EFhB_normal.jpg", "favourites_count": 4, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000167800554/LZjRbYWD.jpeg", "default_profile_image": false, "id": 14708110, "blocked_by": false, "profile_background_tile": true, "statuses_count": 136, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14708110/1425394211", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "133448051", "following": false, "friends_count": 79, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ussoccer.com", "url": "http://t.co/lBXZsLTYug", "expanded_url": "http://www.ussoccer.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 533359, "location": "United States", "screen_name": "ussoccer_wnt", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4083, "name": "U.S. Soccer WNT", "profile_use_background_image": true, "description": "U.S. Soccer's official feed for the #USWNT.", "url": "http://t.co/lBXZsLTYug", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", "profile_background_color": "E4E5E6", "created_at": "Thu Apr 15 20:39:54 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617869619899027456/P7-sP9k3_normal.png", "favourites_count": 86, "status": {"retweet_count": 317, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609673668427777", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "amp.twimg.com/v/4ee8494e-4f5\u2026", "url": "https://t.co/DzHc1f29T6", "expanded_url": "https://amp.twimg.com/v/4ee8494e-4f5b-4062-a847-abbf85aaa21e", "indices": [119, 142]}], "hashtags": [{"text": "USWNT", "indices": [11, 17]}, {"text": "JanuaryCamp", "indices": [95, 107]}, {"text": "RoadToRio", "indices": [108, 118]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:50:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609673668427777, "text": "WATCH: the #USWNT is off & running in 2016 with its first training camp of the year in LA. #JanuaryCamp #RoadToRio\nhttps://t.co/DzHc1f29T6", "coordinates": null, "retweeted": false, "favorite_count": 990, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 133448051, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/619270159618801664/i2k_HV0W.png", "statuses_count": 13471, "profile_banner_url": "https://pbs.twimg.com/profile_banners/133448051/1436146536", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "520782355", "following": false, "friends_count": 380, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "squidandcrow.com", "url": "http://t.co/Iz4ZfDvOHi", "expanded_url": "http://squidandcrow.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 330, "location": "Pasco, WA", "screen_name": "SquidAndCrow", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 23, "name": "Sara Quinn, Person", "profile_use_background_image": true, "description": "Thing Maker | Squid Wrangler | Free Thinker | Gamer | Friend | Occasional Meat | She/Her or They/Them", "url": "http://t.co/Iz4ZfDvOHi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Sat Mar 10 22:18:27 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616693530677764096/U_xcDaV4_normal.jpg", "favourites_count": 3128, "status": {"in_reply_to_status_id": 685540745177133058, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "duosec", "in_reply_to_user_id": 95339302, "in_reply_to_status_id_str": "685540745177133058", "in_reply_to_user_id_str": "95339302", "truncated": false, "id_str": "685592067100131330", "id": 685592067100131330, "text": "@duosec That scared me! So funny, though ;)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "duosec", "id_str": "95339302", "id": 95339302, "indices": [0, 7], "name": "Duo Security"}]}, "created_at": "Fri Jan 08 22:41:01 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 520782355, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 2610, "profile_banner_url": "https://pbs.twimg.com/profile_banners/520782355/1448506590", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2981041874", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "requiresafe.com", "url": "http://t.co/Gbxa8dLwYt", "expanded_url": "http://requiresafe.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 54, "location": "Richland, wa", "screen_name": "requiresafe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "requireSafe", "profile_use_background_image": true, "description": "Peace of mind for third-party Node modules. Brought to you by the @liftsecurity team and the founders of the @nodesecurity project.", "url": "http://t.co/Gbxa8dLwYt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Jan 13 23:44:44 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555158573378830336/9zqs7h2B_normal.png", "favourites_count": 6, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "661228477689950208", "id": 661228477689950208, "text": "If you haven't done so please switch from using requiresafe to using nsp. The infrastructure will be taken down today.\n\nnpm i nsp -g", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Nov 02 17:08:48 +0000 2015", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2981041874, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 25, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15445975", "following": false, "friends_count": 600, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paddy.io", "url": "http://t.co/lLVQ2zF195", "expanded_url": "http://paddy.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 879, "location": "Richland, WA", "screen_name": "paddyforan", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 95, "name": "Paddy", "profile_use_background_image": true, "description": "\u201cof Paddy & Ethan\u201d", "url": "http://t.co/lLVQ2zF195", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", "profile_background_color": "ACDED6", "created_at": "Tue Jul 15 21:02:05 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/433766988179963904/MjnoKMzP_normal.jpeg", "favourites_count": 2760, "status": {"in_reply_to_status_id": 685493379812098049, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/0dd0c9c93b5519e1.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-119.348075, 46.164988], [-119.211248, 46.164988], [-119.211248, 46.3513671], [-119.348075, 46.3513671]]], "type": "Polygon"}, "full_name": "Richland, WA", "contained_within": [], "country_code": "US", "id": "0dd0c9c93b5519e1", "name": "Richland"}, "in_reply_to_screen_name": "wraithgar", "in_reply_to_user_id": 36700219, "in_reply_to_status_id_str": "685493379812098049", "in_reply_to_user_id_str": "36700219", "truncated": false, "id_str": "685515588530126850", "id": 685515588530126850, "text": "@wraithgar saaaaame", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "wraithgar", "id_str": "36700219", "id": 36700219, "indices": [0, 10], "name": "Gar"}]}, "created_at": "Fri Jan 08 17:37:07 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15445975, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 39215, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15445975/1403466417", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2511636140", "following": false, "friends_count": 159, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "heatherloui.se", "url": "https://t.co/8kOnavMn2N", "expanded_url": "http://heatherloui.se", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "077A7A", "geo_enabled": false, "followers_count": 103, "location": "Claremont, CA", "screen_name": "one000mph", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 11, "name": "Heather", "profile_use_background_image": true, "description": "Adventurer. Connoisseur Of Fine Teas. Collector of Outrageous Hats. STEM. Yogi.", "url": "https://t.co/8kOnavMn2N", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed May 21 05:02:13 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/468983792628011008/bmZ6KUyZ_normal.jpeg", "favourites_count": 53, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "666510529041575936", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "top13.net/funny-jerk-cat\u2026", "url": "https://t.co/cQ4rAKpy5O", "expanded_url": "http://www.top13.net/funny-jerk-cats-dont-respect-personal-space/", "indices": [0, 23]}], "hashtags": [], "user_mentions": [{"screen_name": "wraithgar", "id_str": "36700219", "id": 36700219, "indices": [24, 34], "name": "Gar"}]}, "created_at": "Tue Nov 17 06:57:47 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 666510529041575936, "text": "https://t.co/cQ4rAKpy5O @wraithgar", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2511636140, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 60, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2511636140/1400652181", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3332249974", "following": false, "friends_count": 382, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2293, "location": "", "screen_name": "opsecanimals", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 75, "name": "OpSec Animals", "profile_use_background_image": true, "description": "Animal OPSEC. The animals that teach and encourage good security practices. Boutique Animal Security Consultancy.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 18 06:10:24 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657021265060823040/H2vfDx4Q_normal.jpg", "favourites_count": 1187, "status": {"retweet_count": 8, "retweeted_status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685591424625184769", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "modelviewculture.com/pieces/groomin\u2026", "url": "https://t.co/mW4QbfhNVG", "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", "indices": [83, 106]}], "hashtags": [], "user_mentions": [{"screen_name": "jessysaurusrex", "id_str": "17797084", "id": 17797084, "indices": [66, 81], "name": "Jessy Irwin"}]}, "created_at": "Fri Jan 08 22:38:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685591424625184769, "text": "Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Known: sketches.shaffermusic.com"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685597438594293760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "modelviewculture.com/pieces/groomin\u2026", "url": "https://t.co/mW4QbfhNVG", "expanded_url": "https://modelviewculture.com/pieces/grooming-students-for-a-lifetime-of-surveillance", "indices": [100, 123]}], "hashtags": [], "user_mentions": [{"screen_name": "krisshaffer", "id_str": "136476512", "id": 136476512, "indices": [3, 15], "name": "Kris Shaffer"}, {"screen_name": "jessysaurusrex", "id_str": "17797084", "id": 17797084, "indices": [83, 98], "name": "Jessy Irwin"}]}, "created_at": "Fri Jan 08 23:02:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685597438594293760, "text": "RT @krisshaffer: Grooming Students for A Lifetime of Surveillance, by Jessy Irwin (@jessysaurusrex) https://t.co/mW4QbfhNVG", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 3332249974, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 317, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3332249974/1434610300", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18139160", "following": false, "friends_count": 389, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/inessombra", "url": "http://t.co/hZHAl1Rxhp", "expanded_url": "http://about.me/inessombra", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "151717", "geo_enabled": true, "followers_count": 2843, "location": "San Francisco, CA", "screen_name": "randommood", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 150, "name": "Ines Sombra", "profile_use_background_image": true, "description": "Engineer @fastly. Plagued by many interests including running @papers_we_love SF & board member of @rubytogether. In an everlasting quest for increased focus.", "url": "http://t.co/hZHAl1Rxhp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", "profile_background_color": "131516", "created_at": "Mon Dec 15 16:06:41 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/486754177192697857/gklyr0y3_normal.png", "favourites_count": 2721, "status": {"in_reply_to_status_id": 685132380991045632, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "chrisamaphone", "in_reply_to_user_id": 5972632, "in_reply_to_status_id_str": "685132380991045632", "in_reply_to_user_id_str": "5972632", "truncated": false, "id_str": "685138209391546369", "id": 685138209391546369, "text": "@chrisamaphone The industry is predatory and bullshitty. I'm happy to share what we did (or rage with you) if it helps \ud83d\udc70\ud83c\udffc\ud83d\udc79", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "chrisamaphone", "id_str": "5972632", "id": 5972632, "indices": [0, 14], "name": "Chris Martens"}]}, "created_at": "Thu Jan 07 16:37:33 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18139160, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 7723, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18139160/1405120776", "is_translator": false}, {"time_zone": "Europe/Berlin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "5430", "following": false, "friends_count": 673, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "squeakyvessel.com", "url": "https://t.co/SmbXMAJahm", "expanded_url": "http://squeakyvessel.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "666666", "geo_enabled": true, "followers_count": 1899, "location": "Frankfurt, Germany", "screen_name": "benjamin", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 128, "name": "Benjamin Reitzammer", "profile_use_background_image": true, "description": "Head of my head, Feminist\n\n@VaamoTech //\n@socrates_2016 // \n@breathing_code", "url": "https://t.co/SmbXMAJahm", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Sep 07 11:54:22 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "de", "profile_image_url_https": "https://pbs.twimg.com/profile_images/575285495204352000/aQPA_KlM_normal.jpeg", "favourites_count": 1040, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685607349369860096", "id": 685607349369860096, "text": ".@henryrollins I looooove yooouuuu #manthatwasintense", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "manthatwasintense", "indices": [35, 53]}], "user_mentions": [{"screen_name": "henryrollins", "id_str": "16618332", "id": 16618332, "indices": [1, 14], "name": "henryrollins"}]}, "created_at": "Fri Jan 08 23:41:44 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5430, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644959280/59fmaqfx3bzkkskzglzq.jpeg", "statuses_count": 9759, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5430/1425282364", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "304067888", "following": false, "friends_count": 1108, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ashleygwilliams.github.io", "url": "https://t.co/rkt9BdQBYx", "expanded_url": "http://ashleygwilliams.github.io/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 5856, "location": "undefined", "screen_name": "ag_dubs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 295, "name": "ashley williams", "profile_use_background_image": true, "description": "a mess like this is easily five to ten years ahead of its time. human, @npmjs.", "url": "https://t.co/rkt9BdQBYx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", "profile_background_color": "000000", "created_at": "Mon May 23 21:43:03 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676185846068805636/sVn10Lxy_normal.jpg", "favourites_count": 16725, "status": {"retweet_count": 0, "in_reply_to_user_id": 351346221, "possibly_sensitive": false, "id_str": "685624661137342464", "in_reply_to_user_id_str": "351346221", "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 768, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPT-_bUwAAJvkx.jpg", "type": "photo", "indices": [14, 37], "media_url": "http://pbs.twimg.com/media/CYPT-_bUwAAJvkx.jpg", "display_url": "pic.twitter.com/m4v7CIdJGJ", "id_str": "685624647421837312", "expanded_url": "http://twitter.com/ag_dubs/status/685624661137342464/photo/1", "id": 685624647421837312, "url": "https://t.co/m4v7CIdJGJ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "willmanduffy", "id_str": "351346221", "id": 351346221, "indices": [0, 13], "name": "Willman"}]}, "created_at": "Sat Jan 09 00:50:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": "willmanduffy", "in_reply_to_status_id_str": null, "truncated": false, "id": 685624661137342464, "text": "@willmanduffy https://t.co/m4v7CIdJGJ", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 304067888, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468486699333332992/x56kB77O.png", "statuses_count": 28816, "profile_banner_url": "https://pbs.twimg.com/profile_banners/304067888/1400530788", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14499792", "following": false, "friends_count": 69, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fayerplay.com", "url": "http://t.co/a7vsP6hbIq", "expanded_url": "http://fayerplay.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/125537436/bg.jpg", "notifications": false, "profile_sidebar_fill_color": "F7DA93", "profile_link_color": "CC3300", "geo_enabled": false, "followers_count": 330, "location": "Columbia, Maryland", "screen_name": "papa_fire", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Leon Fayer", "profile_use_background_image": true, "description": "Technologist. Web architect. DevOps [something]. VP @OmniTI. Gamer. Die hard Ravens fan.", "url": "http://t.co/a7vsP6hbIq", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Apr 23 19:53:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000825250987/6e327a77e234f57f7447538821c8c73e_normal.jpeg", "favourites_count": 7, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685498351551393795", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tinyclouds.org/colorize/", "url": "https://t.co/n4MF2LMQA5", "expanded_url": "http://tinyclouds.org/colorize/", "indices": [56, 79]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:28:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685498351551393795, "text": "This is much cooler that even author leads to believe. https://t.co/n4MF2LMQA5", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 14499792, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/125537436/bg.jpg", "statuses_count": 2534, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14499792/1354950251", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14412937", "following": false, "friends_count": 150, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "eev.ee", "url": "http://t.co/ffxyntfCy2", "expanded_url": "http://eev.ee/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "4380BF", "geo_enabled": true, "followers_count": 7056, "location": "Sin City 2000", "screen_name": "eevee", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 217, "name": "\u2744\u26c4 eevee \u26c4\u2744", "profile_use_background_image": true, "description": "i like computers but also yell about them a lot. sometimes i hack or write or draw. she/they/he", "url": "http://t.co/ffxyntfCy2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", "profile_background_color": "0A3A6A", "created_at": "Wed Apr 16 21:08:32 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682839536955621376/cYybA7lr_normal.png", "favourites_count": 32351, "status": {"in_reply_to_status_id": 685626122483011584, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "keisisqrl", "in_reply_to_user_id": 1484341, "in_reply_to_status_id_str": "685626122483011584", "in_reply_to_user_id_str": "1484341", "truncated": false, "id_str": "685630168530948096", "id": 685630168530948096, "text": "@keisisqrl apparently it only even works on one brand of phone? which is an incredible leap forward in shrinking walled gardens even smaller", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "keisisqrl", "id_str": "1484341", "id": 1484341, "indices": [0, 10], "name": "squirrelbutts"}]}, "created_at": "Sat Jan 09 01:12:25 +0000 2016", "source": "Twitter for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14412937, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/673724645/b1c4eaf425c8056c62b6d7700d30034c.png", "statuses_count": 81073, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14412937/1435395260", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16642746", "following": false, "friends_count": 414, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "crappytld.club", "url": "http://t.co/d1H2gppjtx", "expanded_url": "http://crappytld.club/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 6003, "location": "Austin, TX", "screen_name": "miketaylr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 435, "name": "Mike Taylor", "profile_use_background_image": true, "description": "Web Compat at Mozilla. I mostly tweet about crappy code. \\\ufdfa\u0310\u033e\u033e\u0308\u030f\u0314\u0302\u0307\u0300\u036d\u0308\u0366\u034c\u033d\u036d\u036a\u036b\u036f\u0304\u034f\u031e\u032d\u0318\u0325\u0324\u034e\u0324\u0358\\'", "url": "http://t.co/d1H2gppjtx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", "profile_background_color": "FFFFFF", "created_at": "Wed Oct 08 02:18:14 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1042621997/mikeyyyy_normal.png", "favourites_count": 4739, "status": {"in_reply_to_status_id": 685227191529934848, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/c3f37afa9efcf94b.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-97.928935, 30.127892], [-97.5805133, 30.127892], [-97.5805133, 30.5187994], [-97.928935, 30.5187994]]], "type": "Polygon"}, "full_name": "Austin, TX", "contained_within": [], "country_code": "US", "id": "c3f37afa9efcf94b", "name": "Austin"}, "in_reply_to_screen_name": "snorp", "in_reply_to_user_id": 14663842, "in_reply_to_status_id_str": "685227191529934848", "in_reply_to_user_id_str": "14663842", "truncated": false, "id_str": "685230499069952001", "id": 685230499069952001, "text": "@snorp i give it a year before someone is running NodeJS on one of these (help us all)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "snorp", "id_str": "14663842", "id": 14663842, "indices": [0, 6], "name": "James Willcox"}]}, "created_at": "Thu Jan 07 22:44:16 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16642746, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121471305/43281a8f77a7a20941862e3a278313ba.png", "statuses_count": 16572, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16642746/1381258666", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "749863", "following": false, "friends_count": 565, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "relay.fm/rd", "url": "https://t.co/zuZ3gobI4e", "expanded_url": "http://www.relay.fm/rd", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", "notifications": false, "profile_sidebar_fill_color": "DFDFDF", "profile_link_color": "4255AE", "geo_enabled": false, "followers_count": 354977, "location": "The Outside Lands", "screen_name": "hotdogsladies", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8034, "name": "Merlin Mann", "profile_use_background_image": false, "description": "Ricordati che \u00e8 un film comico.", "url": "https://t.co/zuZ3gobI4e", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", "profile_background_color": "EEEEEE", "created_at": "Sat Feb 03 01:39:53 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/548615975268921345/15phrwGy_normal.jpeg", "favourites_count": 27394, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685623487570915330", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sfsketchfest2016.sched.org/event/4jDI/rod\u2026", "url": "https://t.co/aAyrIvUKZO", "expanded_url": "http://sfsketchfest2016.sched.org/event/4jDI/roderick-on-the-line-with-merlin-mann-and-john-roderick", "indices": [110, 133]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:45:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685623487570915330, "text": "If you are within 150 miles of San Francisco right now you have nothing more important going on tonight than: https://t.co/aAyrIvUKZO", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Tweetbot for i\u039fS"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685625963061772288", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sfsketchfest2016.sched.org/event/4jDI/rod\u2026", "url": "https://t.co/aAyrIvUKZO", "expanded_url": "http://sfsketchfest2016.sched.org/event/4jDI/roderick-on-the-line-with-merlin-mann-and-john-roderick", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "johnroderick", "id_str": "17431654", "id": 17431654, "indices": [3, 16], "name": "john roderick"}]}, "created_at": "Sat Jan 09 00:55:42 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685625963061772288, "text": "RT @johnroderick: If you are within 150 miles of San Francisco right now you have nothing more important going on tonight than: https://t.c\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 749863, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3550461/merlin_icon_184.png", "statuses_count": 29732, "profile_banner_url": "https://pbs.twimg.com/profile_banners/749863/1450650802", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "239324052", "following": false, "friends_count": 1414, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "blog.skepticfx.com", "url": "https://t.co/gLsQ0GkDmG", "expanded_url": "https://blog.skepticfx.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1421, "location": "San Francisco, CA", "screen_name": "skeptic_fx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "Ahamed Nafeez", "profile_use_background_image": false, "description": "Security Engineering is one of the things I do. Views are my own and does not represent my employer.", "url": "https://t.co/gLsQ0GkDmG", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Jan 17 10:33:29 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650065342408953856/P53RdMt3_normal.jpg", "favourites_count": 1253, "status": {"in_reply_to_status_id": 682429494154530817, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "verystrongjoe", "in_reply_to_user_id": 53238886, "in_reply_to_status_id_str": "682429494154530817", "in_reply_to_user_id_str": "53238886", "truncated": false, "id_str": "682501819830931457", "id": 682501819830931457, "text": "@verystrongjoe Hi! I've replied to you over email :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "verystrongjoe", "id_str": "53238886", "id": 53238886, "indices": [0, 14], "name": "Jo Uk"}]}, "created_at": "Thu Dec 31 10:01:28 +0000 2015", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 239324052, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 2307, "profile_banner_url": "https://pbs.twimg.com/profile_banners/239324052/1443490816", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3194669250", "following": false, "friends_count": 136, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wild.land", "url": "http://t.co/ktkvhRQiyM", "expanded_url": "http://wild.land", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 61, "location": "Richland, WA", "screen_name": "wildlandlabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Wildland", "profile_use_background_image": false, "description": "Software Builders, Coffee Enthusiasts, General Human Beings.", "url": "http://t.co/ktkvhRQiyM", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", "profile_background_color": "000000", "created_at": "Wed May 13 21:58:06 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/598609029473009664/QNLrBX1-_normal.png", "favourites_count": 5, "status": {"in_reply_to_status_id": 637133104977588226, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mattepp", "in_reply_to_user_id": 14871770, "in_reply_to_status_id_str": "637133104977588226", "in_reply_to_user_id_str": "14871770", "truncated": false, "id_str": "637150029396860930", "id": 637150029396860930, "text": "Ohhai!! @mattepp ///@grElement", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mattepp", "id_str": "14871770", "id": 14871770, "indices": [8, 16], "name": "Matthew Eppelsheimer"}, {"screen_name": "grElement", "id_str": "42056876", "id": 42056876, "indices": [20, 30], "name": "Angela Steffens"}]}, "created_at": "Fri Aug 28 06:29:39 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "it"}, "default_profile_image": false, "id": 3194669250, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 22, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3194669250/1431554889", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1530096708", "following": false, "friends_count": 4721, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "closetoclever.com", "url": "https://t.co/oQf0XG5ffN", "expanded_url": "http://www.closetoclever.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "007AB3", "geo_enabled": false, "followers_count": 8747, "location": "Birmingham/London/\u3069\u3053\u3067\u3082", "screen_name": "jesslynnrose", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 298, "name": "Jessica Rose", "profile_use_background_image": true, "description": "Technology's den mother. Devrel for @dfsoftwareinc & often doing things w/ @opencodeclub, @trans_code & @watchingbuffy DMs open*, views mine", "url": "https://t.co/oQf0XG5ffN", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 19 07:56:27 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/647384142204772352/vfsyXCVY_normal.jpg", "favourites_count": 8916, "status": {"in_reply_to_status_id": 685558133687775232, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "spiky_flamingo", "in_reply_to_user_id": 3143889479, "in_reply_to_status_id_str": "685558133687775232", "in_reply_to_user_id_str": "3143889479", "truncated": false, "id_str": "685558290324041728", "id": 685558290324041728, "text": "@spiky_flamingo @miss_jwo I am! DM incoming! \ud83d\ude01", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "spiky_flamingo", "id_str": "3143889479", "id": 3143889479, "indices": [0, 15], "name": "pearl irl"}, {"screen_name": "miss_jwo", "id_str": "200519952", "id": 200519952, "indices": [16, 25], "name": "Jenny Wong"}]}, "created_at": "Fri Jan 08 20:26:48 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1530096708, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 15506, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1530096708/1448497747", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "5438512", "following": false, "friends_count": 543, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pcper.com", "url": "http://t.co/FyPzbMLdvW", "expanded_url": "http://www.pcper.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 11986, "location": "Florence, KY", "screen_name": "ryanshrout", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 726, "name": "Ryan Shrout", "profile_use_background_image": false, "description": "Editor-in-Chief at PC Perspective", "url": "http://t.co/FyPzbMLdvW", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Mon Apr 23 16:41:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428496650/profilepic_normal.jpg", "favourites_count": 258, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685614844570021888", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 460, "h": 460, "resize": "fit"}, "medium": {"w": 460, "h": 460, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPLEDjUsAArYcG.jpg", "type": "photo", "indices": [91, 114], "media_url": "http://pbs.twimg.com/media/CYPLEDjUsAArYcG.jpg", "display_url": "pic.twitter.com/GqCp6be3gk", "id_str": "685614838823825408", "expanded_url": "http://twitter.com/ryanshrout/status/685614844570021888/photo/1", "id": 685614838823825408, "url": "https://t.co/GqCp6be3gk"}], "symbols": [], "urls": [{"display_url": "bit.ly/22QQFLq", "url": "https://t.co/MSSt2Xok0y", "expanded_url": "http://bit.ly/22QQFLq", "indices": [67, 90]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:11:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685614844570021888, "text": "CES 2016: In Win H-Frame Open Air Chassis and PSU | PC Perspective https://t.co/MSSt2Xok0y https://t.co/GqCp6be3gk", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 5438512, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 15327, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "43188880", "following": false, "friends_count": 1674, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dalebracey.com", "url": "https://t.co/uQTo4Zburt", "expanded_url": "http://dalebracey.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7A5339", "profile_link_color": "FF6600", "geo_enabled": false, "followers_count": 1257, "location": "San Antonio, TX", "screen_name": "IRTermite", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 60, "name": "Dale Bracey \u2601", "profile_use_background_image": true, "description": "Social Strategist @Rackspace, Racker since 2004 - Artist, Car Collector, Empath, Geek, Networker, Techie, Jack-of-all, #OpenStack, @MakeSanAntonio @RackerGamers", "url": "https://t.co/uQTo4Zburt", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", "profile_background_color": "131516", "created_at": "Thu May 28 20:27:13 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/524043296788606977/Qxcwjd8d_normal.png", "favourites_count": 2191, "status": {"retweet_count": 24, "retweeted_status": {"retweet_count": 24, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685296231405326337", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 852, "h": 669, "resize": "fit"}, "medium": {"w": 600, "h": 471, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 266, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "type": "photo", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "display_url": "pic.twitter.com/65waEZwn1E", "id_str": "685296015801331716", "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", "id": 685296015801331716, "url": "https://t.co/65waEZwn1E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 03:05:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685296231405326337, "text": "Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", "coordinates": null, "retweeted": false, "favorite_count": 23, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685296427338051584", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 852, "h": 669, "resize": "fit"}, "medium": {"w": 600, "h": 471, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 266, "resize": "fit"}}, "source_status_id_str": "685296231405326337", "media_url": "http://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "source_user_id_str": "26191233", "id_str": "685296015801331716", "id": 685296015801331716, "media_url_https": "https://pbs.twimg.com/media/CYKpGHPUMAQe6zf.png", "type": "photo", "indices": [105, 128], "source_status_id": 685296231405326337, "source_user_id": 26191233, "display_url": "pic.twitter.com/65waEZwn1E", "expanded_url": "http://twitter.com/Rackspace/status/685296231405326337/photo/1", "url": "https://t.co/65waEZwn1E"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Rackspace", "id_str": "26191233", "id": 26191233, "indices": [3, 13], "name": "Rackspace"}]}, "created_at": "Fri Jan 08 03:06:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685296427338051584, "text": "RT @Rackspace: Our sincerest thanks for propelling us to 100K followers. You give meaning to what we do! https://t.co/65waEZwn1E", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 43188880, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 6991, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43188880/1433971079", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "801712861", "following": false, "friends_count": 614, "entities": {"description": {"urls": [{"display_url": "domschopsalsa.com", "url": "https://t.co/ySTEeD6lcz", "expanded_url": "http://www.domschopsalsa.com", "indices": [90, 113]}, {"display_url": "facebook.com/chopsalsa", "url": "https://t.co/DoMfz1yk60", "expanded_url": "http://facebook.com/chopsalsa", "indices": [115, 138]}]}, "url": {"urls": [{"display_url": "linkedin.com/in/dominicmend\u2026", "url": "http://t.co/3hwdF3IqPC", "expanded_url": "http://www.linkedin.com/in/dominicmendiola", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 267, "location": "San Antonio, TX", "screen_name": "DominicMendiola", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "dominic.mendiola", "profile_use_background_image": false, "description": "Father. Husband. Racker since 2006. Social Media Team. Owner Dom's Chop Salsa @chopsalsa, https://t.co/ySTEeD6lcz, https://t.co/DoMfz1yk60", "url": "http://t.co/3hwdF3IqPC", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Sep 04 03:13:51 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/487669288950841344/Qg6yvCgu_normal.jpeg", "favourites_count": 391, "status": {"in_reply_to_status_id": 684515636333051904, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "trevorengstrom", "in_reply_to_user_id": 15080503, "in_reply_to_status_id_str": "684515636333051904", "in_reply_to_user_id_str": "15080503", "truncated": false, "id_str": "684516227667001344", "id": 684516227667001344, "text": "@trevorengstrom @Rackspace Ok good! If anything else pops up and you need a hand...just let us know! We're always happy to help! Thanks!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "trevorengstrom", "id_str": "15080503", "id": 15080503, "indices": [0, 15], "name": "Trevor Engstrom"}, {"screen_name": "Rackspace", "id_str": "26191233", "id": 26191233, "indices": [16, 26], "name": "Rackspace"}]}, "created_at": "Tue Jan 05 23:26:01 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 801712861, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 536, "profile_banner_url": "https://pbs.twimg.com/profile_banners/801712861/1443214772", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "4508241", "following": false, "friends_count": 194, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "langfeld.me", "url": "http://t.co/FYGU0gVzky", "expanded_url": "http://langfeld.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 481, "location": "Rio de Janeiro, Brasil", "screen_name": "benlangfeld", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "Ben Langfeld", "profile_use_background_image": true, "description": "Communications app developer. Mojo Lingo & Adhearsion Foundation. Experimenter and perfectionist.", "url": "http://t.co/FYGU0gVzky", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Fri Apr 13 15:05:00 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/420991347399471104/-G6TTpb2_normal.jpeg", "favourites_count": 200, "status": {"retweet_count": 0, "in_reply_to_user_id": 3033204133, "possibly_sensitive": false, "id_str": "685548188435132416", "in_reply_to_user_id_str": "3033204133", "entities": {"symbols": [], "urls": [{"display_url": "gist.github.com/benlangfeld/18\u2026", "url": "https://t.co/EYtcS2Vqhk", "expanded_url": "https://gist.github.com/benlangfeld/181cbb3997eb4236e244", "indices": [87, 110]}], "hashtags": [], "user_mentions": [{"screen_name": "honest_update", "id_str": "3033204133", "id": 3033204133, "indices": [0, 14], "name": "Honest Status Page"}]}, "created_at": "Fri Jan 08 19:46:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "honest_update", "in_reply_to_status_id_str": null, "truncated": false, "id": 685548188435132416, "text": "@honest_update Our app fell over because our queue was too slow. It's ok, we fixed it: https://t.co/EYtcS2Vqhk", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 4508241, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2697, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4508241/1401146387", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "22199970", "following": false, "friends_count": 761, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lea.verou.me", "url": "http://t.co/Q2CdWpNV1q", "expanded_url": "http://lea.verou.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/324344036/bg.png", "notifications": false, "profile_sidebar_fill_color": "FFFBF2", "profile_link_color": "FF0066", "geo_enabled": true, "followers_count": 64140, "location": "Cambridge, MA", "screen_name": "LeaVerou", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3585, "name": "Lea Verou", "profile_use_background_image": true, "description": "HCI researcher @MIT_CSAIL, @CSSWG IE, @CSSSecretsBook author, Ex @W3C staff. Made @prismjs @dabblet @prefixfree. I \u2665 standards, code, design, UX, life!", "url": "http://t.co/Q2CdWpNV1q", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", "profile_background_color": "FBE4AE", "created_at": "Fri Feb 27 22:28:59 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/584963092120899586/TxkxQ7Y5_normal.png", "favourites_count": 3696, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685359744966590464", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "byteplumbing.net/2016/01/book-r\u2026", "url": "https://t.co/pfmTTIXCIy", "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", "indices": [116, 139]}], "hashtags": [], "user_mentions": [{"screen_name": "csssecretsbook", "id_str": "3262381338", "id": 3262381338, "indices": [23, 38], "name": "CSS Secrets"}]}, "created_at": "Fri Jan 08 07:17:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685359744966590464, "text": "Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co/pfmTTIXCIy", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685574450780192770", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "byteplumbing.net/2016/01/book-r\u2026", "url": "https://t.co/pfmTTIXCIy", "expanded_url": "https://byteplumbing.net/2016/01/book-review-css-secrets-by-lea-verou/", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "iiska", "id_str": "18630451", "id": 18630451, "indices": [3, 9], "name": "Juhamatti Niemel\u00e4"}, {"screen_name": "csssecretsbook", "id_str": "3262381338", "id": 3262381338, "indices": [34, 49], "name": "CSS Secrets"}]}, "created_at": "Fri Jan 08 21:31:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685574450780192770, "text": "RT @iiska: Posted quick review of @csssecretsbook I read through during xmas holidays. Summary: The Best CSS book I have seen. https://t.co\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 22199970, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/324344036/bg.png", "statuses_count": 24815, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22199970/1374351780", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2739826012", "following": false, "friends_count": 2320, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "matrix.org", "url": "http://t.co/Rrx4mnMJ5W", "expanded_url": "http://www.matrix.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "4F5A5E", "geo_enabled": true, "followers_count": 1227, "location": "", "screen_name": "matrixdotorg", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 61, "name": "Matrix", "profile_use_background_image": false, "description": "An open standard for decentralised persistent communication. Tweets by @ara4n, @amandinelepape & co.", "url": "http://t.co/Rrx4mnMJ5W", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", "profile_background_color": "000000", "created_at": "Mon Aug 11 10:51:23 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/500400952029888512/yI0qtFi7_normal.png", "favourites_count": 781, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685552098830880768", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.tadhack.com/2016/01/08/tad\u2026", "url": "https://t.co/0iV7Uzmaia", "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", "indices": [31, 54]}, {"display_url": "webrtcconference.jp", "url": "https://t.co/7NnGiq0vCN", "expanded_url": "http://webrtcconference.jp/", "indices": [114, 137]}], "hashtags": [{"text": "skywayjs", "indices": [69, 78]}], "user_mentions": [{"screen_name": "TADHack", "id_str": "2315728231", "id": 2315728231, "indices": [11, 19], "name": "TADHack"}, {"screen_name": "matrixdotorg", "id_str": "2739826012", "id": 2739826012, "indices": [55, 68], "name": "Matrix"}, {"screen_name": "telestax", "id_str": "266634532", "id": 266634532, "indices": [79, 88], "name": "TeleStax"}, {"screen_name": "ntt", "id_str": "1706681", "id": 1706681, "indices": [89, 93], "name": "Chinmay"}]}, "created_at": "Fri Jan 08 20:02:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685552098830880768, "text": "Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co/7NnGiq0vCN", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685553303049076741", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.tadhack.com/2016/01/08/tad\u2026", "url": "https://t.co/0iV7Uzmaia", "expanded_url": "http://blog.tadhack.com/2016/01/08/tadhack-japan-1314-february-kawasaki/", "indices": [44, 67]}, {"display_url": "webrtcconference.jp", "url": "https://t.co/7NnGiq0vCN", "expanded_url": "http://webrtcconference.jp/", "indices": [139, 140]}], "hashtags": [{"text": "skywayjs", "indices": [82, 91]}], "user_mentions": [{"screen_name": "TADHack", "id_str": "2315728231", "id": 2315728231, "indices": [3, 11], "name": "TADHack"}, {"screen_name": "TADHack", "id_str": "2315728231", "id": 2315728231, "indices": [24, 32], "name": "TADHack"}, {"screen_name": "matrixdotorg", "id_str": "2739826012", "id": 2739826012, "indices": [68, 81], "name": "Matrix"}, {"screen_name": "telestax", "id_str": "266634532", "id": 266634532, "indices": [92, 101], "name": "TeleStax"}, {"screen_name": "ntt", "id_str": "1706681", "id": 1706681, "indices": [102, 106], "name": "Chinmay"}]}, "created_at": "Fri Jan 08 20:06:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685553303049076741, "text": "RT @TADHack: Announcing @TADHack-mini Japan https://t.co/0iV7Uzmaia @matrixdotorg #skywayjs @telestax @NTT Advanced Technology https://t.co\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2739826012, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1282, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2739826012/1422740800", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "512410920", "following": false, "friends_count": 735, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wroteacodeforcloverhitch.blogspot.ca", "url": "http://t.co/orO5dwZcHv", "expanded_url": "http://wroteacodeforcloverhitch.blogspot.ca/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "80042B", "geo_enabled": false, "followers_count": 911, "location": "Calgary, Alberta", "screen_name": "gbhorwood", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Grant Horwood", "profile_use_background_image": true, "description": "Lead developer Cloverhitch Tech in Calgary, AB. I like clever code, verbose documentation, fast bicycles and questionable homebrew.", "url": "http://t.co/orO5dwZcHv", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", "profile_background_color": "ABB8C2", "created_at": "Fri Mar 02 20:19:53 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/611987213178396672/hZ0qTf0Z_normal.jpg", "favourites_count": 1533, "status": {"in_reply_to_status_id": 685565777680859136, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "meejah", "in_reply_to_user_id": 13055372, "in_reply_to_status_id_str": "685565777680859136", "in_reply_to_user_id_str": "13055372", "truncated": false, "id_str": "685566263142187008", "id": 685566263142187008, "text": "@meejah yeah. i have a \"bob has a bug\" issue. what bug? when? last name? no one can say... \n\ngrep -irn \"bob\" ./*", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "meejah", "id_str": "13055372", "id": 13055372, "indices": [0, 7], "name": "meejah"}]}, "created_at": "Fri Jan 08 20:58:28 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 512410920, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2309, "profile_banner_url": "https://pbs.twimg.com/profile_banners/512410920/1398348433", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "65583", "following": false, "friends_count": 654, "entities": {"description": {"urls": [{"display_url": "OSMIhelp.org", "url": "http://t.co/skQU77s3rk", "expanded_url": "http://OSMIhelp.org", "indices": [83, 105]}]}, "url": {"urls": [{"display_url": "funkatron.com", "url": "http://t.co/Y4o3XtlP6R", "expanded_url": "http://funkatron.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90616269/funbike.png", "notifications": false, "profile_sidebar_fill_color": "B8B8B8", "profile_link_color": "660000", "geo_enabled": false, "followers_count": 8751, "location": "West Lafayette, IN, USA", "screen_name": "funkatron", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 773, "name": "Ed Finkler", "profile_use_background_image": false, "description": "Dork, Dad, JS, PHP & Python feller. Lead Dev @GraphStoryCo. Mental Health advocate http://t.co/skQU77s3rk. 1/2 of @dev_hell podcast. See also @funkalinks", "url": "http://t.co/Y4o3XtlP6R", "profile_text_color": "424141", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Dec 14 00:31:16 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649353631636983808/PJoGdw8M_normal.jpg", "favourites_count": 8512, "status": {"in_reply_to_status_id": 685606121604681729, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jclermont", "in_reply_to_user_id": 16358696, "in_reply_to_status_id_str": "685606121604681729", "in_reply_to_user_id_str": "16358696", "truncated": false, "id_str": "685609221245763585", "id": 685609221245763585, "text": "@jclermont when I read this I had to say that out loud", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jclermont", "id_str": "16358696", "id": 16358696, "indices": [0, 10], "name": "Joel Clermont"}]}, "created_at": "Fri Jan 08 23:49:11 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 65583, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90616269/funbike.png", "statuses_count": 84078, "profile_banner_url": "https://pbs.twimg.com/profile_banners/65583/1438612109", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "396241682", "following": false, "friends_count": 322, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mariemosley.com/about", "url": "https://t.co/BppFkRlCWu", "expanded_url": "https://www.mariemosley.com/about", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "009CA2", "geo_enabled": true, "followers_count": 1098, "location": "", "screen_name": "MMosley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 66, "name": "Marie Mosley", "profile_use_background_image": false, "description": "Look out honey, 'cause I'm using technology // Part of Team @CodePen", "url": "https://t.co/BppFkRlCWu", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", "profile_background_color": "01E6EF", "created_at": "Sat Oct 22 23:58:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/565554520185257984/4v3OQUU-_normal.jpeg", "favourites_count": 10414, "status": {"in_reply_to_status_id": 685594363007746048, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "jaynawallace", "in_reply_to_user_id": 78213, "in_reply_to_status_id_str": "685594363007746048", "in_reply_to_user_id_str": "78213", "truncated": false, "id_str": "685602091553959936", "id": 685602091553959936, "text": "@jaynawallace I will join your squad \ud83d\udc6f what's you're name on there?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jaynawallace", "id_str": "78213", "id": 78213, "indices": [0, 13], "name": "\u02d7\u02cf\u02cb jayna wallace \u02ce\u02ca"}]}, "created_at": "Fri Jan 08 23:20:51 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 396241682, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3204, "profile_banner_url": "https://pbs.twimg.com/profile_banners/396241682/1430082364", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3202399565", "following": false, "friends_count": 26, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 32, "location": "De Cymru", "screen_name": "KevTWondersheep", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Kevin Smith", "profile_use_background_image": true, "description": "@DefinitiveKev pretending to be non-techie. May contain very very bad Welsh.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Apr 24 22:27:37 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/603600202839261184/Fg_7-H1Z_normal.jpg", "favourites_count": 45, "status": {"in_reply_to_status_id": 684380251649093632, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "EmiGarside", "in_reply_to_user_id": 23923202, "in_reply_to_status_id_str": "684380251649093632", "in_reply_to_user_id_str": "23923202", "truncated": false, "id_str": "684380579673018368", "id": 684380579673018368, "text": "@emigarside Droids don't rip people's arms out of their sockets when they lose. Wookies are known to do that.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "EmiGarside", "id_str": "23923202", "id": 23923202, "indices": [0, 11], "name": "Dr Emily Garside"}]}, "created_at": "Tue Jan 05 14:27:00 +0000 2016", "source": "Twitter for Mac", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3202399565, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 71, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3202399565/1429962655", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "606349117", "following": false, "friends_count": 1523, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sparxeng.com", "url": "http://t.co/tfYNlmleOE", "expanded_url": "http://www.sparxeng.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1980, "location": "Houston, TX", "screen_name": "SparxEngineer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 61, "name": "Sparx Engineering", "profile_use_background_image": true, "description": "Engineering consulting company, specializing in embedded devices, custom/mobile/web application development and helping startups bring products to market.", "url": "http://t.co/tfYNlmleOE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Jun 12 14:10:06 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2301880266/ok5f15zs7z6xp86cnpxe_normal.png", "favourites_count": 16, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685140345215139841", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 600, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/CYIbg4dW8AAh_y6.jpg", "display_url": "pic.twitter.com/HawyibmcoX", "id_str": "685140345039024128", "expanded_url": "http://twitter.com/SparxEngineer/status/685140345215139841/photo/1", "id": 685140345039024128, "url": "https://t.co/HawyibmcoX"}], "symbols": [], "urls": [{"display_url": "buff.ly/1Z8fXA2", "url": "https://t.co/LzWHfSO5Ux", "expanded_url": "http://buff.ly/1Z8fXA2", "indices": [66, 89]}], "hashtags": [{"text": "tech", "indices": [90, 95]}, {"text": "fitness", "indices": [96, 104]}], "user_mentions": []}, "created_at": "Thu Jan 07 16:46:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685140345215139841, "text": "New lawsuit: Fitbit heart rate tracking is dangerously inaccurate https://t.co/LzWHfSO5Ux #tech #fitness https://t.co/HawyibmcoX", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 606349117, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1734, "profile_banner_url": "https://pbs.twimg.com/profile_banners/606349117/1391191180", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "84107122", "following": false, "friends_count": 1570, "entities": {"description": {"urls": [{"display_url": "themakersofthings.co.uk", "url": "http://t.co/f5R61wCtSs", "expanded_url": "http://themakersofthings.co.uk", "indices": [73, 95]}]}, "url": {"urls": [{"display_url": "anne.holiday", "url": "http://t.co/pxLXGQsvL6", "expanded_url": "http://anne.holiday/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 908, "location": "Brooklyn, NY", "screen_name": "anneholiday", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 32, "name": "Anne Holiday", "profile_use_background_image": true, "description": "Filmmaker. Phototaker. Maker of The Makers of Things documentary series: http://t.co/f5R61wCtSs", "url": "http://t.co/pxLXGQsvL6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Oct 21 16:05:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000335764655/672431d94c7aebfc4c3ceb4956dc7e9c_normal.jpeg", "favourites_count": 3006, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685464406453530624", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "newyorker.com/magazine/2015/\u2026", "url": "https://t.co/qw5SReTvl6", "expanded_url": "http://www.newyorker.com/magazine/2015/01/19/lets-get-drinks", "indices": [5, 28]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:13:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685464406453530624, "text": "Lol: https://t.co/qw5SReTvl6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 84107122, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 4627, "profile_banner_url": "https://pbs.twimg.com/profile_banners/84107122/1393641836", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3033725946", "following": false, "friends_count": 1422, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bit.ly/1vmzDHa", "url": "http://t.co/27akJdS8AO", "expanded_url": "http://bit.ly/1vmzDHa", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2046, "location": "", "screen_name": "WebRRTC", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 58, "name": "WebRTC", "profile_use_background_image": true, "description": "Live content curated by top Web Real-Time Communication (WebRTC) Influencer", "url": "http://t.co/27akJdS8AO", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", "profile_background_color": "C0DEED", "created_at": "Sat Feb 21 02:29:20 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/568960696109391872/8Xq-Euh0_normal.png", "favourites_count": 0, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685619974405111809", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPPu8lUMAALzq3.jpg", "type": "photo", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/CYPPu8lUMAALzq3.jpg", "display_url": "pic.twitter.com/RShfZusyFc", "id_str": "685619973734019072", "expanded_url": "http://twitter.com/WebRRTC/status/685619974405111809/photo/1", "id": 685619973734019072, "url": "https://t.co/RShfZusyFc"}], "symbols": [], "urls": [{"display_url": "rightrelevance.com/search/article\u2026", "url": "https://t.co/T0JCitzPyD", "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=5f12a324855759cd16cbb7035abfa66359421230&query=webrtc&taccount=webrrtc", "indices": [45, 68]}], "hashtags": [{"text": "vuc575", "indices": [0, 7]}], "user_mentions": []}, "created_at": "Sat Jan 09 00:31:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "tl", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685619974405111809, "text": "#vuc575 - WebRTC PaaS with Tsahi Levent-Levi https://t.co/T0JCitzPyD https://t.co/RShfZusyFc", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "RRPostingApp"}, "default_profile_image": false, "id": 3033725946, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2874, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15518306", "following": false, "friends_count": 428, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "langille.org", "url": "http://t.co/uBwYd3PW71", "expanded_url": "http://langille.org/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1242, "location": "near Philadelphia", "screen_name": "DLangille", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 91, "name": "Dan Langille", "profile_use_background_image": true, "description": "Mountain biker. Software Dev. Sysadmin. Websites & databases. Conference organizer.", "url": "http://t.co/uBwYd3PW71", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", "profile_background_color": "C6E2EE", "created_at": "Mon Jul 21 17:56:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/612815515095068677/aiWUi9Gp_normal.png", "favourites_count": 630, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685554984306360320", "id": 685554984306360320, "text": "Current status: adding my user (not me) to gmail. I feel all grown up....", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:13:39 +0000 2016", "source": "Twitterrific for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15518306, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432257631797788672/Xz2qQpvz.jpeg", "statuses_count": 12127, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15518306/1406551613", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14420513", "following": false, "friends_count": 347, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fromonesrc.com", "url": "https://t.co/Lez165p0gY", "expanded_url": "http://fromonesrc.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 205, "location": "Lansdale, PA", "screen_name": "fromonesrc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Adam Ochonicki", "profile_use_background_image": true, "description": "Redemption? Sure. But in the end, he's just another dead rat in a garbage pail behind a Chinese restaurant.", "url": "https://t.co/Lez165p0gY", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Thu Apr 17 13:32:46 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673983703278858244/DV_CsSOJ_normal.jpg", "favourites_count": 475, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685595808402681856", "id": 685595808402681856, "text": "OH: \"actually, it\u2019s nice getting some time to pay down tech debt\u2026 after spending so long generating it\"\n\nThat rings so true for me.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:55:53 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14420513, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 6413, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14420513/1449525270", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "2292633427", "following": false, "friends_count": 3203, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "uk.linkedin.com/in/jmgcraig", "url": "https://t.co/q8exdl06ab", "expanded_url": "https://uk.linkedin.com/in/jmgcraig", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 2838, "location": "London", "screen_name": "AttackyChappie", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 83, "name": "Graeme Craig", "profile_use_background_image": false, "description": "Recruitment Manager @6DegreesGroup | #UC #Connectivity #DC #Cloud | Passionate #PS4 Gamer, Cyclist, Foodie, Lover of #Lego #EnglishBullDogs & my #Wife", "url": "https://t.co/q8exdl06ab", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Jan 15 12:23:08 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423468737518252032/e10pmh5Z_normal.jpeg", "favourites_count": 3, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685096224463126528", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mspalliance.com/cloud-computin\u2026", "url": "https://t.co/Aeibg4EwGl", "expanded_url": "http://mspalliance.com/cloud-computing-managed-services-forecast-for-2016/", "indices": [57, 80]}], "hashtags": [], "user_mentions": [{"screen_name": "arjun077", "id_str": "51468247", "id": 51468247, "indices": [85, 94], "name": "Arjun jain"}]}, "created_at": "Thu Jan 07 13:50:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685096224463126528, "text": "Cloud Computing & Managed Services Forecast for 2016 https://t.co/Aeibg4EwGl via @arjun077", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2292633427, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 392, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2292633427/1424354218", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "42909423", "following": false, "friends_count": 284, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 198, "location": "Raleigh, NC", "screen_name": "__id__", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 4, "name": "Dmytro Ilchenko", "profile_use_background_image": true, "description": "I'm not a geek, i'm a level 12 paladin. Yak barber. Casting special ops magic to make things work @LivingSocial.", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed May 27 15:48:15 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626870835471589377/s-CFGW6G_normal.jpg", "favourites_count": 1304, "status": {"retweet_count": 133, "retweeted_status": {"retweet_count": 133, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681874873539366912", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "danluu.com/wat/", "url": "https://t.co/9DLKdXk34s", "expanded_url": "http://danluu.com/wat/", "indices": [98, 121]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 29 16:30:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681874873539366912, "text": "What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", "coordinates": null, "retweeted": false, "favorite_count": 115, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683752055920553986", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "danluu.com/wat/", "url": "https://t.co/9DLKdXk34s", "expanded_url": "http://danluu.com/wat/", "indices": [110, 133]}], "hashtags": [], "user_mentions": [{"screen_name": "danluu", "id_str": "18275645", "id": 18275645, "indices": [3, 10], "name": "Dan Luu"}]}, "created_at": "Sun Jan 03 20:49:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683752055920553986, "text": "RT @danluu: What we can learn from aviation, civil engineering, healthcare, and other safety critical fields: https://t.co/9DLKdXk34s", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 42909423, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 2800, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42909423/1398263672", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "13166972", "following": false, "friends_count": 1776, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dariusdunlap.com", "url": "https://t.co/Dmpe1rzbsb", "expanded_url": "https://dariusdunlap.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1442, "location": "Half Moon Bay, CA", "screen_name": "dariusdunlap", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 85, "name": "Darius Dunlap", "profile_use_background_image": true, "description": "Tech guy, Founder at Syncopat; Square Peg Foundation. Executive Director at Silicon Valley Innovation Institute, Advising startups & growing companies", "url": "https://t.co/Dmpe1rzbsb", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Wed Feb 06 17:04:20 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000533619646/cec9ccc39a9a31fd30fc94207cb4e5bd_normal.jpeg", "favourites_count": 1393, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684909434443706368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "squarepegfoundation.org/2016/01/a-jour\u2026", "url": "https://t.co/tZ6YYzQZKS", "expanded_url": "https://www.squarepegfoundation.org/2016/01/a-journey-together/", "indices": [74, 97]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 01:28:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-124.482003, 32.528832], [-114.131212, 32.528832], [-114.131212, 42.009519], [-124.482003, 42.009519]]], "type": "Polygon"}, "full_name": "California, USA", "contained_within": [], "country_code": "US", "id": "fbd6d2f5a4e4a15e", "name": "California"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684909434443706368, "text": "Our journey, finding one another and creating and building Square Pegs. ( https://t.co/tZ6YYzQZKS )", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 13166972, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 4660, "profile_banner_url": "https://pbs.twimg.com/profile_banners/13166972/1398466705", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "12530", "following": false, "friends_count": 955, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hackdiary.com/about/", "url": "http://t.co/qmocio1ti6", "expanded_url": "http://www.hackdiary.com/about/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", "notifications": false, "profile_sidebar_fill_color": "FFF3C8", "profile_link_color": "857025", "geo_enabled": true, "followers_count": 6983, "location": "San Francisco CA, USA", "screen_name": "mattb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 453, "name": "Matt Biddulph", "profile_use_background_image": true, "description": "Currently: @thingtonhq. Previously: BBC, Dopplr, Nokia.", "url": "http://t.co/qmocio1ti6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", "profile_background_color": "FECF1F", "created_at": "Wed Nov 15 15:48:50 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458723441089073152/bZB2s-Nl_normal.png", "favourites_count": 4258, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685332843334086657", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1mJgTP1", "url": "https://t.co/VG2Bfr3epg", "expanded_url": "http://ift.tt/1mJgTP1", "indices": [24, 47]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 05:30:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685332843334086657, "text": "David Bowie - Blackstar https://t.co/VG2Bfr3epg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "IFTTT"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685333814298595329", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ift.tt/1mJgTP1", "url": "https://t.co/VG2Bfr3epg", "expanded_url": "http://ift.tt/1mJgTP1", "indices": [45, 68]}], "hashtags": [], "user_mentions": [{"screen_name": "spotifynmfeedus", "id_str": "2553073892", "id": 2553073892, "indices": [3, 19], "name": "spotifynewmusicUS"}]}, "created_at": "Fri Jan 08 05:34:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "de", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685333814298595329, "text": "RT @spotifynmfeedus: David Bowie - Blackstar https://t.co/VG2Bfr3epg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 12530, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458724646150369280/uAeAUPMW.png", "statuses_count": 13061, "profile_banner_url": "https://pbs.twimg.com/profile_banners/12530/1398198928", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "239453824", "following": false, "friends_count": 32, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thington.com", "url": "http://t.co/GgjWLxjLHD", "expanded_url": "http://thington.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "FF6958", "geo_enabled": false, "followers_count": 2204, "location": "San Francisco", "screen_name": "thingtonhq", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 60, "name": "Thington", "profile_use_background_image": false, "description": "We're building a new way to interact with a world of connected things!", "url": "http://t.co/GgjWLxjLHD", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", "profile_background_color": "F5F8FA", "created_at": "Mon Jan 17 17:21:39 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/588106002798489601/mkS9_eX3_normal.png", "favourites_count": 33, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685263027688452096", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wired.com/2016/01/americ\u2026", "url": "https://t.co/ZydSbrfxfe", "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", "indices": [54, 77]}], "hashtags": [], "user_mentions": [{"screen_name": "stamen", "id_str": "2067201", "id": 2067201, "indices": [45, 52], "name": "Stamen Design"}]}, "created_at": "Fri Jan 08 00:53:32 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685263027688452096, "text": "Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685277708821991424", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wired.com/2016/01/americ\u2026", "url": "https://t.co/ZydSbrfxfe", "expanded_url": "http://www.wired.com/2016/01/american-panorama-is-an-interactive-atlas-for-the-21st-century/", "indices": [69, 92]}], "hashtags": [], "user_mentions": [{"screen_name": "tomcoates", "id_str": "12514", "id": 12514, "indices": [3, 13], "name": "Tom Coates"}, {"screen_name": "stamen", "id_str": "2067201", "id": 2067201, "indices": [60, 67], "name": "Stamen Design"}]}, "created_at": "Fri Jan 08 01:51:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685277708821991424, "text": "RT @tomcoates: Awesome Interactive Atlas from our landlords @stamen: https://t.co/ZydSbrfxfe", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 239453824, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 299, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "740983", "following": false, "friends_count": 753, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "leade.rs", "url": "https://t.co/K0dvCXW6PW", "expanded_url": "http://leade.rs", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", "notifications": false, "profile_sidebar_fill_color": "CDCECA", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 126940, "location": "San Francisco", "screen_name": "loic", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8207, "name": "Loic Le Meur", "profile_use_background_image": false, "description": "starting leade.rs", "url": "https://t.co/K0dvCXW6PW", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", "profile_background_color": "CFB895", "created_at": "Thu Feb 01 00:10:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678768994354991104/N98nXqy2_normal.jpg", "favourites_count": 818, "status": {"in_reply_to_status_id": 685542551747690496, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "rrhoover", "in_reply_to_user_id": 14417215, "in_reply_to_status_id_str": "685542551747690496", "in_reply_to_user_id_str": "14417215", "truncated": false, "id_str": "685621151964377088", "id": 685621151964377088, "text": "@rrhoover @dhof is it just me or that peach looks a lot like a... Ahem.... Butt?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "rrhoover", "id_str": "14417215", "id": 14417215, "indices": [0, 9], "name": "Ryan Hoover"}, {"screen_name": "dhof", "id_str": "13258512", "id": 13258512, "indices": [10, 15], "name": "dom hofmann"}]}, "created_at": "Sat Jan 09 00:36:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 740983, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000108650140/fb7c985f7dab5995c10c8167624640de.jpeg", "statuses_count": 52912, "profile_banner_url": "https://pbs.twimg.com/profile_banners/740983/1447869110", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "44196397", "following": false, "friends_count": 50, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3189508, "location": "1 AU", "screen_name": "elonmusk", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 24234, "name": "Elon Musk", "profile_use_background_image": true, "description": "Tesla, SpaceX, SolarCity & PayPal", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 02 20:12:29 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648751321026138112/8z47ePnq_normal.jpg", "favourites_count": 224, "status": {"retweet_count": 882, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683333695307034625", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "en.m.wikipedia.org/wiki/The_Machi\u2026", "url": "https://t.co/0Dl4l2t6FH", "expanded_url": "https://en.m.wikipedia.org/wiki/The_Machine_Stops", "indices": [63, 86]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 02 17:07:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683333695307034625, "text": "Worth reading The Machine Stops, an old story by E. M. Forster https://t.co/0Dl4l2t6FH", "coordinates": null, "retweeted": false, "favorite_count": 3001, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 44196397, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/399721902/fusion.jpg", "statuses_count": 1513, "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1354486475", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14623181", "following": false, "friends_count": 505, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kelly-dunn.me", "url": "http://t.co/AeKQOTxEx8", "expanded_url": "http://kelly-dunn.me", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 490, "location": "Seattle", "screen_name": "kellyleland", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "kelly", "profile_use_background_image": true, "description": "Synthesizers, Various Engineering, and Avant Garde Nonsense | bit cruncher by trade, artist after hours", "url": "http://t.co/AeKQOTxEx8", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri May 02 06:41:19 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/487353741725552640/Yd8vYdhP_normal.jpeg", "favourites_count": 8251, "status": {"retweet_count": 10006, "retweeted_status": {"retweet_count": 10006, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685188701907988480", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 245, "resize": "fit"}, "large": {"w": 1024, "h": 739, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 433, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "type": "photo", "indices": [77, 100], "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "display_url": "pic.twitter.com/pEaIfJMr9T", "id_str": "685188690730192896", "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", "id": 685188690730192896, "url": "https://t.co/pEaIfJMr9T"}], "symbols": [], "urls": [{"display_url": "bit.ly/1Jx7CnA", "url": "https://t.co/SxHo05b7Yz", "expanded_url": "http://bit.ly/1Jx7CnA", "indices": [53, 76]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 19:58:11 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685188701907988480, "text": "The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", "coordinates": null, "retweeted": false, "favorite_count": 8779, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685198486355095552", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 245, "resize": "fit"}, "large": {"w": 1024, "h": 739, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 433, "resize": "fit"}}, "source_status_id_str": "685188701907988480", "media_url": "http://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "source_user_id_str": "1630896181", "id_str": "685188690730192896", "id": 685188690730192896, "media_url_https": "https://pbs.twimg.com/media/CYJHe-MWkAAmlhb.jpg", "type": "photo", "indices": [91, 114], "source_status_id": 685188701907988480, "source_user_id": 1630896181, "display_url": "pic.twitter.com/pEaIfJMr9T", "expanded_url": "http://twitter.com/vicenews/status/685188701907988480/photo/1", "url": "https://t.co/pEaIfJMr9T"}], "symbols": [], "urls": [{"display_url": "bit.ly/1Jx7CnA", "url": "https://t.co/SxHo05b7Yz", "expanded_url": "http://bit.ly/1Jx7CnA", "indices": [67, 90]}], "hashtags": [], "user_mentions": [{"screen_name": "vicenews", "id_str": "1630896181", "id": 1630896181, "indices": [3, 12], "name": "VICE News"}]}, "created_at": "Thu Jan 07 20:37:04 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685198486355095552, "text": "RT @vicenews: The FBI now considers animal abuse a Class A felony: https://t.co/SxHo05b7Yz https://t.co/pEaIfJMr9T", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14623181, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 14314, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14623181/1421113433", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "995848285", "following": false, "friends_count": 90, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nginx.com", "url": "http://t.co/ahz848qfrm", "expanded_url": "http://nginx.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 24533, "location": "San Francisco", "screen_name": "nginx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 452, "name": "NGINX, Inc.", "profile_use_background_image": true, "description": "News from NGINX, Inc., the company providing products and services on top of its renowned open source software nginx. For news about NGINX check @nginxorg", "url": "http://t.co/ahz848qfrm", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", "profile_background_color": "C0DEED", "created_at": "Fri Dec 07 20:50:31 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/567774844322713600/tYoVju31_normal.png", "favourites_count": 451, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685570724019453952", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1K3bA2i", "url": "https://t.co/mUGlFylkrn", "expanded_url": "http://bit.ly/1K3bA2i", "indices": [85, 108]}], "hashtags": [{"text": "software", "indices": [33, 42]}], "user_mentions": [{"screen_name": "InformationAge", "id_str": "19603444", "id": 19603444, "indices": [113, 128], "name": "Information Age"}]}, "created_at": "Fri Jan 08 21:16:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685570724019453952, "text": "Everything old is new again: how #software development will come full circle in 2016 https://t.co/mUGlFylkrn via @InformationAge", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 995848285, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000111127054/82fd839e7651d2266399b3afd24d04fe.png", "statuses_count": 1960, "profile_banner_url": "https://pbs.twimg.com/profile_banners/995848285/1443504328", "is_translator": false}, {"time_zone": "Nairobi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 10800, "id_str": "2975078105", "following": false, "friends_count": 12, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iojs.org", "url": "https://t.co/25rC8pIJ21", "expanded_url": "https://iojs.org/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 13923, "location": "Global", "screen_name": "official_iojs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 414, "name": "io.js", "profile_use_background_image": true, "description": "Bringing ES6 to the Node Community!", "url": "https://t.co/25rC8pIJ21", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jan 12 18:18:27 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/576109715039518720/W9ics_VG_normal.png", "favourites_count": 1167, "status": {"retweet_count": 26, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "656505348208001025", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "github.com/nodejs/evangel\u2026", "url": "https://t.co/pE0BDmhyAq", "expanded_url": "https://github.com/nodejs/evangelism/issues/179", "indices": [20, 43]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Oct 20 16:20:46 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 656505348208001025, "text": "Here we go again ;) https://t.co/pE0BDmhyAq", "coordinates": null, "retweeted": false, "favorite_count": 22, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2975078105, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 341, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2975078105/1426190219", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "30923", "following": false, "friends_count": 744, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "randsinrepose.com", "url": "http://t.co/wHTKjCyuT3", "expanded_url": "http://www.randsinrepose.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 35289, "location": "los gatos, ca", "screen_name": "rands", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2264, "name": "rands", "profile_use_background_image": true, "description": "reposing about werewolves, pens, and writing.", "url": "http://t.co/wHTKjCyuT3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", "profile_background_color": "022330", "created_at": "Wed Nov 29 19:16:11 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651438942181453824/Ov8RmRF9_normal.png", "favourites_count": 154, "status": {"retweet_count": 42, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685550447717789696", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/briankesinger/", "url": "https://t.co/fMDwiiT2kx", "expanded_url": "https://www.instagram.com/briankesinger/", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:55:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685550447717789696, "text": "Calvin & Hobbes + The Force Awakens: https://t.co/fMDwiiT2kx", "coordinates": null, "retweeted": false, "favorite_count": 31, "contributors": null, "source": "Tweetbot for Mac"}, "default_profile_image": false, "id": 30923, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 11655, "profile_banner_url": "https://pbs.twimg.com/profile_banners/30923/1442198088", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "7387992", "following": false, "friends_count": 194, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "justincampbell.me", "url": "https://t.co/oY5xbJv61R", "expanded_url": "http://justincampbell.me", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2634657/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "028E9B", "geo_enabled": true, "followers_count": 952, "location": "Philadelphia, PA", "screen_name": "justincampbell", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 52, "name": "Justin Campbell", "profile_use_background_image": true, "description": "@hashicorp @turingcool @cs_bookclub @sc_philly @paperswelovephl", "url": "https://t.co/oY5xbJv61R", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", "profile_background_color": "FF7700", "created_at": "Wed Jul 11 00:40:57 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "028E9B", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/483705812183822337/1uxkGTkj_normal.jpeg", "favourites_count": 2238, "status": {"in_reply_to_status_id": 684900893997821952, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-80.519851, 39.719801], [-74.689517, 39.719801], [-74.689517, 42.516072], [-80.519851, 42.516072]]], "type": "Polygon"}, "full_name": "Pennsylvania, USA", "contained_within": [], "country_code": "US", "id": "dd9c503d6c35364b", "name": "Pennsylvania"}, "in_reply_to_screen_name": "McElaney", "in_reply_to_user_id": 249150277, "in_reply_to_status_id_str": "684900893997821952", "in_reply_to_user_id_str": "249150277", "truncated": false, "id_str": "684901313788948480", "id": 684901313788948480, "text": "@McElaney Slack \u261c(\uff9f\u30ee\uff9f\u261c)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "McElaney", "id_str": "249150277", "id": 249150277, "indices": [0, 9], "name": "Brian E. McElaney"}]}, "created_at": "Thu Jan 07 00:56:12 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "ja"}, "default_profile_image": false, "id": 7387992, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2634657/bg.gif", "statuses_count": 8351, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7387992/1433941401", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "778518", "following": false, "friends_count": 397, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "progrium.com", "url": "http://t.co/PviVbZYkA3", "expanded_url": "http://progrium.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 6414, "location": "Austin, TX", "screen_name": "progrium", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 357, "name": "Jeff Lindsay", "profile_use_background_image": true, "description": "Systems. Metal. Platforms. Design. Creator: Dokku, Webhooks, RequestBin, Hacker Dojo, Localtunnel, SuperHappyDevHouse. Founder: @gliderlabs", "url": "http://t.co/PviVbZYkA3", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Sun Feb 18 09:41:22 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/630209918398652416/8VuQvYBF_normal.jpg", "favourites_count": 1488, "status": {"in_reply_to_status_id": 685580357232504832, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "cgenco", "in_reply_to_user_id": 5437912, "in_reply_to_status_id_str": "685580357232504832", "in_reply_to_user_id_str": "5437912", "truncated": false, "id_str": "685621697215504385", "id": 685621697215504385, "text": "@cgenco @opendeis Depends on your needs!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "cgenco", "id_str": "5437912", "id": 5437912, "indices": [0, 7], "name": "Christian Genco"}, {"screen_name": "opendeis", "id_str": "1578016110", "id": 1578016110, "indices": [8, 17], "name": "Deis"}]}, "created_at": "Sat Jan 09 00:38:45 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 778518, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 11529, "profile_banner_url": "https://pbs.twimg.com/profile_banners/778518/1439089812", "is_translator": false}, {"time_zone": "Buenos Aires", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "77909615", "following": false, "friends_count": 2319, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tryolabs.com", "url": "https://t.co/yDkqOVMoPH", "expanded_url": "http://www.tryolabs.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 11880, "location": "San Francisco | Uruguay", "screen_name": "tryolabs", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 376, "name": "Tryolabs", "profile_use_background_image": true, "description": "Hi-tech Boutique Dev Shop focused on SV & NYC Startups. Python ecosystem, JS, iOS, NLP & Machine Learning specialists. Creators of @MonkeyLearn.", "url": "https://t.co/yDkqOVMoPH", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Sep 28 03:09:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621496995417448448/zKSvxqAb_normal.png", "favourites_count": 20614, "status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685579492614631428", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 96, "resize": "fit"}, "large": {"w": 800, "h": 226, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 169, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/CYOq6oSWQAAZZky.jpg", "display_url": "pic.twitter.com/Fk3brZmoTf", "id_str": "685579492513955840", "expanded_url": "http://twitter.com/tryolabs/status/685579492614631428/photo/1", "id": 685579492513955840, "url": "https://t.co/Fk3brZmoTf"}], "symbols": [], "urls": [{"display_url": "buff.ly/1ZfpACc", "url": "https://t.co/VNzbh6CpJA", "expanded_url": "http://buff.ly/1ZfpACc", "indices": [67, 90]}], "hashtags": [{"text": "MachineLearning", "indices": [43, 59]}], "user_mentions": [{"screen_name": "genekogan", "id_str": "51757957", "id": 51757957, "indices": [94, 104], "name": "Gene Kogan"}]}, "created_at": "Fri Jan 08 21:51:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685579492614631428, "text": "Very interesting & engaging article on #MachineLearning + Art: https://t.co/VNzbh6CpJA by @genekogan https://t.co/Fk3brZmoTf", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 77909615, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652209316246765568/UMKWbtfE.png", "statuses_count": 1400, "profile_banner_url": "https://pbs.twimg.com/profile_banners/77909615/1437011861", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "111767172", "following": false, "friends_count": 70, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 313, "location": "Philadelphia, PA", "screen_name": "nick_kapur", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 29, "name": "Nick Kapur", "profile_use_background_image": true, "description": "Historian of modern Japan and East Asia. I only tweet extremely interesting things. No photos of my lunch and no selfies, not ever.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Feb 06 02:34:40 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000520577314/370d93bc80f4a16feeb58122f82956a3_normal.jpeg", "favourites_count": 6736, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685494137613754368", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/LIJdheem1h", "url": "https://t.co/LIJdheem1h", "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", "indices": [12, 35]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:11:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685494137613754368, "text": "i love cats https://t.co/LIJdheem1h", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685519035979677696", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/LIJdheem1h", "url": "https://t.co/LIJdheem1h", "expanded_url": "http://twitter.com/on3ness/status/685494137613754368/photo/1", "indices": [25, 48]}], "hashtags": [], "user_mentions": [{"screen_name": "on3ness", "id_str": "124548700", "id": 124548700, "indices": [3, 11], "name": "br\u00f8seph"}]}, "created_at": "Fri Jan 08 17:50:49 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685519035979677696, "text": "RT @on3ness: i love cats https://t.co/LIJdheem1h", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 111767172, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4392, "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "14247654", "following": false, "friends_count": 5000, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "contino.co.uk", "url": "http://t.co/7ioXHyid9F", "expanded_url": "http://www.contino.co.uk", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2521, "location": "London, UK", "screen_name": "benjaminwootton", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 141, "name": "Benjamin Wootton", "profile_use_background_image": true, "description": "Co-Founder of Contino, a DevOps & Continuous Delivery consultancy from the UK", "url": "http://t.co/7ioXHyid9F", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", "profile_background_color": "022330", "created_at": "Fri Mar 28 22:44:56 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432963889584558080/lw5EAdrR_normal.jpeg", "favourites_count": 1063, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683332087588503552", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 270, "h": 200, "resize": "fit"}, "medium": {"w": 270, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 270, "h": 200, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "type": "photo", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "display_url": "pic.twitter.com/DabsPkV0tE", "id_str": "683332087483641857", "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", "id": 683332087483641857, "url": "https://t.co/DabsPkV0tE"}], "symbols": [], "urls": [{"display_url": "buff.ly/1RzZhSD", "url": "https://t.co/qLPUnqP9Ly", "expanded_url": "http://buff.ly/1RzZhSD", "indices": [93, 116]}], "hashtags": [{"text": "DevOps", "indices": [30, 37]}], "user_mentions": [{"screen_name": "paul", "id_str": "1140", "id": 1140, "indices": [86, 91], "name": "Paul Rollo"}]}, "created_at": "Sat Jan 02 17:00:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683332087588503552, "text": "\"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly https://t.co/DabsPkV0tE", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Buffer"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685368907327270912", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 270, "h": 200, "resize": "fit"}, "medium": {"w": 270, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 270, "h": 200, "resize": "fit"}}, "source_status_id_str": "683332087588503552", "media_url": "http://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "source_user_id_str": "398365705", "id_str": "683332087483641857", "id": 683332087483641857, "media_url_https": "https://pbs.twimg.com/media/CXuu6cIWsAE4qEV.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 683332087588503552, "source_user_id": 398365705, "display_url": "pic.twitter.com/DabsPkV0tE", "expanded_url": "http://twitter.com/manupaisable/status/683332087588503552/photo/1", "url": "https://t.co/DabsPkV0tE"}], "symbols": [], "urls": [{"display_url": "buff.ly/1RzZhSD", "url": "https://t.co/qLPUnqP9Ly", "expanded_url": "http://buff.ly/1RzZhSD", "indices": [111, 134]}], "hashtags": [{"text": "DevOps", "indices": [48, 55]}], "user_mentions": [{"screen_name": "manupaisable", "id_str": "398365705", "id": 398365705, "indices": [3, 16], "name": "Manuel Pais"}, {"screen_name": "paul", "id_str": "1140", "id": 1140, "indices": [104, 109], "name": "Paul Rollo"}]}, "created_at": "Fri Jan 08 07:54:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685368907327270912, "text": "RT @manupaisable: \"most projects we migrated to #DevOps deployed between 200% to 400% more than before\"\n@Paul\u2026 https://t.co/qLPUnqP9Ly http\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 14247654, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 2827, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "35242212", "following": false, "friends_count": 201, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 95, "location": "Boston, MA", "screen_name": "macdiesel412", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 9, "name": "Brian Beggs", "profile_use_background_image": false, "description": "I write software and think BIG. XMPP, MongoDB, NoSQL, Data Analytics, cycling, skiing, edX", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", "profile_background_color": "000000", "created_at": "Sat Apr 25 16:00:27 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2512895031/1t5dkaadh0qkelj1ylr4_normal.jpeg", "favourites_count": 23, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Expedia", "in_reply_to_user_id": 17365848, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "17365848", "truncated": false, "id_str": "677166680196390913", "id": 677166680196390913, "text": "@Expedia Now your support hung up on me, won't let me change flight. What gives? This service is awful!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Expedia", "id_str": "17365848", "id": 17365848, "indices": [0, 8], "name": "Expedia"}]}, "created_at": "Wed Dec 16 16:41:32 +0000 2015", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 35242212, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 420, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14961286", "following": false, "friends_count": 948, "entities": {"description": {"urls": [{"display_url": "erinjorichey.com", "url": "https://t.co/bUIMCWrbnW", "expanded_url": "http://erinjorichey.com", "indices": [121, 144]}]}, "url": {"urls": [{"display_url": "erinjo.xyz", "url": "https://t.co/zWMM8cNTsz", "expanded_url": "http://erinjo.xyz", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", "notifications": false, "profile_sidebar_fill_color": "E4DACE", "profile_link_color": "DB2E2E", "geo_enabled": true, "followers_count": 2265, "location": "San Francisco, CA", "screen_name": "erinjo", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 270, "name": "Erin Jo Richey", "profile_use_background_image": true, "description": "Co-founder of @withknown. Information choreographer. User experience strategist. Oregonian. Building an open social web. https://t.co/bUIMCWrbnW", "url": "https://t.co/zWMM8cNTsz", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", "profile_background_color": "FCFCFC", "created_at": "Sat May 31 06:45:28 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/461635779010101248/ngayZj4G_normal.jpeg", "favourites_count": 723, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684958057806180352", "id": 684958057806180352, "text": "Walking home from the grocery store just now and got pummeled by small hail. \ud83c\udf27\u2614\ufe0f", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 04:41:41 +0000 2016", "source": "Erin's Idno", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14961286, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662980140/1ti8pk1kn715i2c5aya1.png", "statuses_count": 8880, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14961286/1399013710", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "258924364", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "andyetconf.com", "url": "http://t.co/8cCQxfuIhl", "expanded_url": "http://andyetconf.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/285931472/patternpants.png", "notifications": false, "profile_sidebar_fill_color": "EBEBEB", "profile_link_color": "0099B0", "geo_enabled": false, "followers_count": 1258, "location": "October 6\u20138 in Richland, WA", "screen_name": "AndyetConf", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 87, "name": "&yetConf", "profile_use_background_image": true, "description": "Conf about the intersections of tech, humanity, meaning, & ethics for people who believe the world should be better and are determined to make it so.\n\n\u2014@andyet", "url": "http://t.co/8cCQxfuIhl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", "profile_background_color": "202020", "created_at": "Mon Feb 28 20:09:25 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "757575", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/618554448651010048/LQj3BTqZ_normal.png", "favourites_count": 824, "status": {"in_reply_to_status_id": 684082741512515584, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mmatuzak", "in_reply_to_user_id": 10749432, "in_reply_to_status_id_str": "684082741512515584", "in_reply_to_user_id_str": "10749432", "truncated": false, "id_str": "684084002504900608", "id": 684084002504900608, "text": "@mmatuzak @obensource Yay @ADVUnderground!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mmatuzak", "id_str": "10749432", "id": 10749432, "indices": [0, 9], "name": "matuzi"}, {"screen_name": "obensource", "id_str": "407296703", "id": 407296703, "indices": [10, 21], "name": "Ben Michel"}, {"screen_name": "ADVUnderground", "id_str": "2149984081", "id": 2149984081, "indices": [26, 41], "name": "ADV Underground"}]}, "created_at": "Mon Jan 04 18:48:30 +0000 2016", "source": "Tweetbot for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 258924364, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/285931472/patternpants.png", "statuses_count": 1505, "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "153026017", "following": false, "friends_count": 108, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/paulohp", "url": "https://t.co/TH0JsQaz8h", "expanded_url": "http://github.com/paulohp", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", "notifications": false, "profile_sidebar_fill_color": "FCA241", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 418, "location": "Belo Horizonte, Brazil", "screen_name": "paulo_hp", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 19, "name": "Paulo Pires (\u2310\u25a0_\u25a0)", "profile_use_background_image": true, "description": "programmer. @bower team member. hacking listening sertanejo.", "url": "https://t.co/TH0JsQaz8h", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", "profile_background_color": "BCCDD6", "created_at": "Mon Jun 07 14:00:10 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "pt", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668872384502480896/_mBH7aYV_normal.jpg", "favourites_count": 562, "status": {"in_reply_to_status_id": 685272876338032640, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "rodrigo_ea", "in_reply_to_user_id": 55245797, "in_reply_to_status_id_str": "685272876338032640", "in_reply_to_user_id_str": "55245797", "truncated": false, "id_str": "685276627618689024", "id": 685276627618689024, "text": "@rodrigo_ea @ray_ban \u00e9, o customizado :\\ mas o mais triste \u00e9 a falta de comunica\u00e7\u00e3o mesmo. Sabe como \u00e9 n\u00e9.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "rodrigo_ea", "id_str": "55245797", "id": 55245797, "indices": [0, 11], "name": "Rodrigo Antinarelli"}, {"screen_name": "ray_ban", "id_str": "234264720", "id": 234264720, "indices": [12, 20], "name": "Ray-Ban"}]}, "created_at": "Fri Jan 08 01:47:34 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "pt"}, "default_profile_image": false, "id": 153026017, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/663556925/hywuxpjyq3ytnbp9823z.png", "statuses_count": 5668, "profile_banner_url": "https://pbs.twimg.com/profile_banners/153026017/1433120246", "is_translator": false}, {"time_zone": "Lisbon", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "6477652", "following": false, "friends_count": 807, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "trodrigues.net", "url": "https://t.co/MEu7qSJfMY", "expanded_url": "http://trodrigues.net", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": false, "followers_count": 1919, "location": "Berlin", "screen_name": "trodrigues", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 126, "name": "Tiago Rodrigues", "profile_use_background_image": false, "description": "I tweet about things you might not like such as JS, feminism, music, coffee, open source, cats and video games. Semicolon removal expert at Contentful", "url": "https://t.co/MEu7qSJfMY", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Thu May 31 17:09:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600311963361640449/9qFGI8ZV_normal.jpg", "favourites_count": 1086, "status": {"in_reply_to_status_id": 685501356732510208, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "marciana", "in_reply_to_user_id": 1813001, "in_reply_to_status_id_str": "685501356732510208", "in_reply_to_user_id_str": "1813001", "truncated": false, "id_str": "685502766173843456", "id": 685502766173843456, "text": "@marciana tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a ver tamb\u00e9m andas a v", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "marciana", "id_str": "1813001", "id": 1813001, "indices": [0, 9], "name": "Irrita"}]}, "created_at": "Fri Jan 08 16:46:10 +0000 2016", "source": "Fenix for Android", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "pt"}, "default_profile_image": false, "id": 6477652, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 68450, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6477652/1410026369", "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "10840182", "following": false, "friends_count": 88, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mundoopensource.com.br", "url": "http://t.co/AyVbZvEevz", "expanded_url": "http://www.mundoopensource.com.br", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 220, "location": "Canoas, RS", "screen_name": "mhterres", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 15, "name": "Marcelo Terres", "profile_use_background_image": true, "description": "Sysadmin Linux, com foco em VoIP e XMPP, f\u00e3 de comics, apreciador de uma boa cerveja e metido a cozinheiro e homebrewer nas horas vagas ;-)", "url": "http://t.co/AyVbZvEevz", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 04 15:18:08 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "pt", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1771702626/novoperfil_normal.jpg", "favourites_count": 11, "status": {"retweet_count": 18, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 18, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684096178456236032", "id": 684096178456236032, "text": "Happy 17th birthday, Jabber! #xmpp", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "xmpp", "indices": [29, 34]}], "user_mentions": []}, "created_at": "Mon Jan 04 19:36:53 +0000 2016", "source": "Twitter Web Client", "favorite_count": 17, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "684112189297393665", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "xmpp", "indices": [41, 46]}], "user_mentions": [{"screen_name": "ralphm", "id_str": "2426271", "id": 2426271, "indices": [3, 10], "name": "Ralph Meijer"}]}, "created_at": "Mon Jan 04 20:40:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684112189297393665, "text": "RT @ralphm: Happy 17th birthday, Jabber! #xmpp", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 10840182, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3011, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10840182/1448740364", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "2557527470", "following": false, "friends_count": 462, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "opensource.cisco.com", "url": "https://t.co/XHlFibsKyg", "expanded_url": "http://opensource.cisco.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 1022, "location": "", "screen_name": "TrailsAndTech", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 50, "name": "Jen Hollingsworth", "profile_use_background_image": false, "description": "SW Strategy @ Cisco. Lover of: Tech, #OpenSource, Cloud Stuff, Passionate People & the Outdoors. Haven't met a trail, #CarboPro product or taco I didn't like.", "url": "https://t.co/XHlFibsKyg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Jun 09 21:07:05 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/527303350207787008/4lyNf7X0_normal.jpeg", "favourites_count": 2178, "status": {"in_reply_to_status_id": 685554373628424192, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "vCloudernBeer", "in_reply_to_user_id": 830411028, "in_reply_to_status_id_str": "685554373628424192", "in_reply_to_user_id_str": "830411028", "truncated": false, "id_str": "685560135716966400", "id": 685560135716966400, "text": "@vCloudernBeer YES!!!! :)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "vCloudernBeer", "id_str": "830411028", "id": 830411028, "indices": [0, 14], "name": "Anthony Chow"}]}, "created_at": "Fri Jan 08 20:34:08 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 2557527470, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1371, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2557527470/1405046981", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "227050193", "following": false, "friends_count": 524, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "withknown.com", "url": "http://t.co/qDJMKyeC7F", "expanded_url": "http://withknown.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "9F111A", "geo_enabled": false, "followers_count": 1412, "location": "San Francisco, CA", "screen_name": "withknown", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 83, "name": "Known", "profile_use_background_image": false, "description": "Publish on your own site, and share with audiences across the web. Part of @mattervc's third class. #indieweb #reclaimyourdomain", "url": "http://t.co/qDJMKyeC7F", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", "profile_background_color": "880000", "created_at": "Wed Dec 15 19:45:51 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "880000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/464122315689574400/IzqGaQEL_normal.png", "favourites_count": 558, "status": {"in_reply_to_status_id": 685557584527376384, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "AngeloFrangione", "in_reply_to_user_id": 334592526, "in_reply_to_status_id_str": "685557584527376384", "in_reply_to_user_id_str": "334592526", "truncated": false, "id_str": "685610856613216256", "id": 685610856613216256, "text": "@AngeloFrangione We're working on integrating a translation framework. We want everyone to be able to use Known!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AngeloFrangione", "id_str": "334592526", "id": 334592526, "indices": [0, 16], "name": "Angelo"}]}, "created_at": "Fri Jan 08 23:55:40 +0000 2016", "source": "Known Stream", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 227050193, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1070, "profile_banner_url": "https://pbs.twimg.com/profile_banners/227050193/1423650405", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "981101", "following": false, "friends_count": 2074, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bengo.is", "url": "https://t.co/d3tx42Owqt", "expanded_url": "http://bengo.is", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", "notifications": false, "profile_sidebar_fill_color": "333333", "profile_link_color": "18ADF6", "geo_enabled": true, "followers_count": 1033, "location": "San Francisco, CA", "screen_name": "bengo", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 81, "name": "Benjamin Goering", "profile_use_background_image": true, "description": "Founding Engineer @Livefyre. Open. Stoic Situationist. \u2665 reading, philosophy, open web, (un)logic, AI, sports, and edm. Kansan gone Cali.", "url": "https://t.co/d3tx42Owqt", "profile_text_color": "636363", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", "profile_background_color": "CCCCCC", "created_at": "Mon Mar 12 03:55:06 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1856167361/Photo_on_2-26-12_at_1.41_PM_normal.jpg", "favourites_count": 964, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685580750448508928", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 600, "h": 600, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", "type": "photo", "indices": [84, 107], "media_url": "http://pbs.twimg.com/media/CYOsD2MUQAAJ8tR.jpg", "display_url": "pic.twitter.com/LTYVklmUyg", "id_str": "685580750377205760", "expanded_url": "http://twitter.com/bengo/status/685580750448508928/photo/1", "id": 685580750377205760, "url": "https://t.co/LTYVklmUyg"}], "symbols": [], "urls": [{"display_url": "itun.es/us/0CoK2.c?i=3\u2026", "url": "https://t.co/zQ3UB0Dhiy", "expanded_url": "https://itun.es/us/0CoK2.c?i=359766164", "indices": [29, 52]}], "hashtags": [], "user_mentions": [{"screen_name": "thenewstack", "id_str": "2327560616", "id": 2327560616, "indices": [71, 83], "name": "The New Stack"}]}, "created_at": "Fri Jan 08 21:56:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685580750448508928, "text": "Check out this cool episode: https://t.co/zQ3UB0Dhiy \"Keep Node Weird\" @thenewstack https://t.co/LTYVklmUyg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 981101, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/119792414/x23ca35415a8f750f5ad0aa97860e9aa.png", "statuses_count": 5799, "profile_banner_url": "https://pbs.twimg.com/profile_banners/981101/1353910636", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "321162442", "following": false, "friends_count": 143, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 26, "location": "", "screen_name": "mattyindustries", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1, "name": "Mathew Archibald", "profile_use_background_image": true, "description": "Linux Sysadmin at Toyota Australia", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 21 03:43:14 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1845304287/317521_10150457252939622_574214621_11067762_119180137_n_normal.jpg", "favourites_count": 44, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "EtihadStadiumAU", "in_reply_to_user_id": 152837019, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "152837019", "truncated": false, "id_str": "630298486664097793", "id": 630298486664097793, "text": "@EtihadStadiumAU kick to kick still on after #AFLSaintsFreo?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "AFLSaintsFreo", "indices": [45, 59]}], "user_mentions": [{"screen_name": "EtihadStadiumAU", "id_str": "152837019", "id": 152837019, "indices": [0, 16], "name": "Etihad Stadium"}]}, "created_at": "Sun Aug 09 08:44:04 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 321162442, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 39, "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "2402568709", "following": false, "friends_count": 17541, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "reeldx.com", "url": "http://t.co/GqPJuzOYMV", "expanded_url": "http://www.reeldx.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 21102, "location": "Vancouver, WA", "screen_name": "andrewreeldx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 518, "name": "Andrew Richards", "profile_use_background_image": true, "description": "Co-Founder & CTO @ ReelDx, Technologist, Brewer, Runner, Coder", "url": "http://t.co/GqPJuzOYMV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Mar 22 03:27:50 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/598983823183859712/TI8-vvmM_normal.jpg", "favourites_count": 2991, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685609079771774976", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/cancergeek/sta\u2026", "url": "https://t.co/tWEoIh9Mwi", "expanded_url": "https://twitter.com/cancergeek/status/685571019667423232", "indices": [42, 65]}], "hashtags": [{"text": "jpm16", "indices": [34, 40]}], "user_mentions": []}, "created_at": "Fri Jan 08 23:48:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685609079771774976, "text": "Liberate data? That's how we roll #jpm16 https://t.co/tWEoIh9Mwi", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2402568709, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3400, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2402568709/1411424123", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14110325", "following": false, "friends_count": 1108, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "soundcloud.com/jay-holler", "url": "https://t.co/Dn5Q3Kk7jo", "expanded_url": "https://soundcloud.com/jay-holler", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "89C9FA", "geo_enabled": true, "followers_count": 1109, "location": "California, USA", "screen_name": "jayholler", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Jay Holler", "profile_use_background_image": false, "description": "Eventually Sol will expand to consume everything anyone has ever known, created, or recorded.", "url": "https://t.co/Dn5Q3Kk7jo", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", "profile_background_color": "1A1B1F", "created_at": "Mon Mar 10 00:14:55 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684870793021374464/ft5S-xyN_normal.png", "favourites_count": 17301, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685629837269020674", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/KTVU/status/68\u2026", "url": "https://t.co/iJrmieeMwr", "expanded_url": "https://twitter.com/KTVU/status/685619144683724800", "indices": [12, 35]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:11:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685629837269020674, "text": "Kidnapping! https://t.co/iJrmieeMwr", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 14110325, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000074470579/2c04286bb38f279b5af552dc00a0dd05.png", "statuses_count": 33903, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14110325/1452192763", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "126030998", "following": false, "friends_count": 542, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "0xabad1dea.github.io", "url": "https://t.co/cZmmxZ39G9", "expanded_url": "http://0xabad1dea.github.io/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 20122, "location": "@veracode", "screen_name": "0xabad1dea", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 877, "name": "Melissa \u2407 \u2b50\ufe0f", "profile_use_background_image": true, "description": "Infosec supervillain, insufferable SJW, and twitter witch whose very name causes systems to crash. Fortune favors those who do the math. she/her; I \u2666\ufe0f @m1sp.", "url": "https://t.co/cZmmxZ39G9", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Mar 24 16:31:05 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660844914301734912/fZe3pgET_normal.png", "favourites_count": 2962, "status": {"in_reply_to_status_id": 685629875017900032, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "livebeef", "in_reply_to_user_id": 2423425960, "in_reply_to_status_id_str": "685629875017900032", "in_reply_to_user_id_str": "2423425960", "truncated": false, "id_str": "685630096586207238", "id": 685630096586207238, "text": "@livebeef well, that\u2019s his thing, yes, extreme pandering, like Trump but I think that\u2019s his real hair", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "livebeef", "id_str": "2423425960", "id": 2423425960, "indices": [0, 9], "name": "Curious Reptilian"}]}, "created_at": "Sat Jan 09 01:12:08 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 126030998, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/91946315/miku-twitter.png", "statuses_count": 133972, "profile_banner_url": "https://pbs.twimg.com/profile_banners/126030998/1348018700", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "24718762", "following": false, "friends_count": 388, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": false, "followers_count": 268, "location": "", "screen_name": "unixgeekem", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 26, "name": "Emily Gladstone Cole", "profile_use_background_image": true, "description": "UNIX and Security Admin, baseball fan, singer, dancer, actor, voracious reader, student. Opinions are my own and not my employer's.", "url": null, "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Mon Mar 16 16:23:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596414478155026432/DmOXfl8e_normal.jpg", "favourites_count": 1739, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685593188971642880", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/RobotHugsComic\u2026", "url": "https://t.co/SbF9JovOfO", "expanded_url": "https://twitter.com/RobotHugsComic/status/674961985059074048", "indices": [6, 29]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:45:28 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593188971642880, "text": "This. https://t.co/SbF9JovOfO", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 24718762, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 2163, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24718762/1364947598", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14071087", "following": false, "friends_count": 1254, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", "notifications": false, "profile_sidebar_fill_color": "C9E6A3", "profile_link_color": "C200E0", "geo_enabled": true, "followers_count": 375, "location": "New York, NY", "screen_name": "ineverthink", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 18, "name": "Chris Handy", "profile_use_background_image": true, "description": "Devops, Systems thinker, not just technical. Works at @workmarket, formerly @condenast", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", "profile_background_color": "8A698A", "created_at": "Mon Mar 03 03:50:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "6A0B8A", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/606216573754458112/g0UX_mT2_normal.jpg", "favourites_count": 492, "status": {"in_reply_to_status_id": 685106932512854016, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "skamille", "in_reply_to_user_id": 24257941, "in_reply_to_status_id_str": "685106932512854016", "in_reply_to_user_id_str": "24257941", "truncated": false, "id_str": "685169500887629824", "id": 685169500887629824, "text": "@skamille might want to look into @WorkMarket", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "skamille", "id_str": "24257941", "id": 24257941, "indices": [0, 9], "name": "Camille Fournier"}, {"screen_name": "WorkMarket", "id_str": "154696373", "id": 154696373, "indices": [34, 45], "name": "Work Market"}]}, "created_at": "Thu Jan 07 18:41:53 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14071087, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/135413985/earth-from-above-by-klaus-leidorf01.jpeg", "statuses_count": 2151, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1164839209", "following": false, "friends_count": 2, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nodesecurity.io", "url": "https://t.co/McA4uRwQAL", "expanded_url": "http://nodesecurity.io", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 6918, "location": "", "screen_name": "nodesecurity", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 295, "name": "Node.js Security", "profile_use_background_image": true, "description": "Advisories, news & libraries focused on Node.js security - Sponsored by @andyet, Organized by @liftsecurity", "url": "https://t.co/McA4uRwQAL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Feb 10 03:43:44 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3539651920/26b0eb1113c460f58d2fa508244531ca_normal.png", "favourites_count": 104, "status": {"in_reply_to_status_id": 685190823084986369, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "mountain_ghosts", "in_reply_to_user_id": 13861042, "in_reply_to_status_id_str": "685190823084986369", "in_reply_to_user_id_str": "13861042", "truncated": false, "id_str": "685191592567701504", "id": 685191592567701504, "text": "@mountain_ghosts @3rdeden We added the information we received to the top of the advisory. See the linked gist.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "mountain_ghosts", "id_str": "13861042", "id": 13861042, "indices": [0, 16], "name": "\u2200a: \u223c Sa = 0"}, {"screen_name": "3rdEden", "id_str": "14350255", "id": 14350255, "indices": [17, 25], "name": "Arnout Kazemier"}]}, "created_at": "Thu Jan 07 20:09:40 +0000 2016", "source": "Twitter for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1164839209, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 356, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2883370235", "following": false, "friends_count": 5040, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bit.ly/11hQZa8", "url": "http://t.co/waaWKCIqia", "expanded_url": "http://bit.ly/11hQZa8", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7769, "location": "", "screen_name": "NodeJSRR", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 113, "name": "Node JS", "profile_use_background_image": true, "description": "Live Content Curated by top Node JS Influencers. Moderated by @hardeepmonty.", "url": "http://t.co/waaWKCIqia", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed Nov 19 00:20:03 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534864150678106112/yIg0ZJsN_normal.png", "favourites_count": 11, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685615042750840833", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 682, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPLP4EUAAAqK0r.jpg", "type": "photo", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/CYPLP4EUAAAqK0r.jpg", "display_url": "pic.twitter.com/2n5natiUfu", "id_str": "685615041899397120", "expanded_url": "http://twitter.com/NodeJSRR/status/685615042750840833/photo/1", "id": 685615041899397120, "url": "https://t.co/2n5natiUfu"}], "symbols": [], "urls": [{"display_url": "rightrelevance.com/search/article\u2026", "url": "https://t.co/re3CxcMpKD", "expanded_url": "http://www.rightrelevance.com/search/articles/hero?article=038f1f7617ab6218faee8e9de31593bd0cc174e6&query=node%20js&taccount=nodejsrr", "indices": [29, 52]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:12:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685615042750840833, "text": "Mongoose 2015 Year in Review https://t.co/re3CxcMpKD https://t.co/2n5natiUfu", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "RRPostingApp"}, "default_profile_image": false, "id": 2883370235, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3311, "is_translator": false}, {"time_zone": "Wellington", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 46800, "id_str": "136933779", "following": false, "friends_count": 360, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dominictarr.com", "url": "http://t.co/dLMAgM9U90", "expanded_url": "http://dominictarr.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "404099", "geo_enabled": true, "followers_count": 3915, "location": "Planet Earth", "screen_name": "dominictarr", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 229, "name": "Dominic Tarr", "profile_use_background_image": false, "description": "opinioneer", "url": "http://t.co/dLMAgM9U90", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", "profile_background_color": "F0F0F0", "created_at": "Sun Apr 25 09:11:58 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/613802908665126913/sqRAc3HM_normal.jpg", "favourites_count": 1513, "status": {"retweet_count": 0, "in_reply_to_user_id": 12241752, "possibly_sensitive": false, "id_str": "683456176609083392", "in_reply_to_user_id_str": "12241752", "entities": {"symbols": [], "urls": [{"display_url": "github.com/maxogden/dat/w\u2026", "url": "https://t.co/qxj2MAOd76", "expanded_url": "https://github.com/maxogden/dat/wiki/replication-protocols#couchdb", "indices": [66, 89]}], "hashtags": [], "user_mentions": [{"screen_name": "denormalize", "id_str": "12241752", "id": 12241752, "indices": [0, 12], "name": "maxwell ogden"}]}, "created_at": "Sun Jan 03 01:13:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "denormalize", "in_reply_to_status_id_str": null, "truncated": false, "id": 683456176609083392, "text": "@denormalize hey I added some stuff to your data replication wiki\nhttps://t.co/qxj2MAOd76", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 136933779, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6487, "profile_banner_url": "https://pbs.twimg.com/profile_banners/136933779/1435856217", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "113419064", "following": false, "friends_count": 18, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "golang.org", "url": "http://t.co/C4svVTkUmj", "expanded_url": "http://golang.org/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 36535, "location": "", "screen_name": "golang", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1020, "name": "Go", "profile_use_background_image": true, "description": "Go will make you love programming again. I promise.", "url": "http://t.co/C4svVTkUmj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Feb 11 18:04:38 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2388595262/v02jhlxou71qagr6mwet_normal.png", "favourites_count": 203, "status": {"retweet_count": 110, "retweeted_status": {"retweet_count": 110, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677646473484509186", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 428, "resize": "fit"}, "medium": {"w": 600, "h": 250, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 142, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "type": "photo", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "display_url": "pic.twitter.com/F5t4jUEiRX", "id_str": "677646437056978944", "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", "id": 677646437056978944, "url": "https://t.co/F5t4jUEiRX"}], "symbols": [], "urls": [], "hashtags": [{"text": "golang", "indices": [94, 101]}], "user_mentions": []}, "created_at": "Fri Dec 18 00:28:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677646473484509186, "text": "Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", "coordinates": null, "retweeted": false, "favorite_count": 124, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677681669638373376", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 428, "resize": "fit"}, "medium": {"w": 600, "h": 250, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 142, "resize": "fit"}}, "source_status_id_str": "677646473484509186", "media_url": "http://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "source_user_id_str": "650013", "id_str": "677646437056978944", "id": 677646437056978944, "media_url_https": "https://pbs.twimg.com/media/CWd72BwXIAAsNYI.jpg", "type": "photo", "indices": [116, 139], "source_status_id": 677646473484509186, "source_user_id": 650013, "display_url": "pic.twitter.com/F5t4jUEiRX", "expanded_url": "http://twitter.com/bradfitz/status/677646473484509186/photo/1", "url": "https://t.co/F5t4jUEiRX"}], "symbols": [], "urls": [], "hashtags": [{"text": "golang", "indices": [108, 115]}], "user_mentions": [{"screen_name": "bradfitz", "id_str": "650013", "id": 650013, "indices": [3, 12], "name": "Brad Fitzpatrick"}]}, "created_at": "Fri Dec 18 02:47:55 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677681669638373376, "text": "RT @bradfitz: Go1.6beta1 is out and is the first release with official ARM binaries available for download! #golang https://t.co/F5t4jUEiRX", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 113419064, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1931, "profile_banner_url": "https://pbs.twimg.com/profile_banners/113419064/1398369112", "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "114477539", "following": false, "friends_count": 303, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dribbble.com/stephane_martin", "url": "http://t.co/2hbatAQEMF", "expanded_url": "http://dribbble.com/stephane_martin", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2980B9", "geo_enabled": false, "followers_count": 2981, "location": "France", "screen_name": "stephane_m_", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 115, "name": "St\u00e9phane Martin", "profile_use_background_image": false, "description": "Half human, half geek. Currently Sr product designer at @StackOverflow (former @efounders) I love getting things done, I believe in minimalism and wine.", "url": "http://t.co/2hbatAQEMF", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", "profile_background_color": "D7DCE0", "created_at": "Mon Feb 15 15:07:00 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668706121918636032/nSXJ5CrR_normal.png", "favourites_count": 540, "status": {"retweet_count": 0, "in_reply_to_user_id": 16205746, "possibly_sensitive": false, "id_str": "685116838418722816", "in_reply_to_user_id_str": "16205746", "entities": {"media": [{"sizes": {"large": {"w": 230, "h": 319, "resize": "fit"}, "medium": {"w": 230, "h": 319, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 230, "h": 319, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", "type": "photo", "indices": [50, 73], "media_url": "http://pbs.twimg.com/media/CYIGIieWwAAqG_7.png", "display_url": "pic.twitter.com/1CDvfNJ2it", "id_str": "685116837076582400", "expanded_url": "http://twitter.com/stephane_m_/status/685116838418722816/photo/1", "id": 685116837076582400, "url": "https://t.co/1CDvfNJ2it"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "alexlmiller", "id_str": "16205746", "id": 16205746, "indices": [0, 12], "name": "Alex Miller"}, {"screen_name": "hellohynes", "id_str": "14475889", "id": 14475889, "indices": [13, 24], "name": "Joshua Hynes"}]}, "created_at": "Thu Jan 07 15:12:37 +0000 2016", "favorited": false, "in_reply_to_status_id": 685111393784233984, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "alexlmiller", "in_reply_to_status_id_str": "685111393784233984", "truncated": false, "id": 685116838418722816, "text": "@alexlmiller @hellohynes Wasn't disappointed too: https://t.co/1CDvfNJ2it", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 114477539, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 994, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "138513072", "following": false, "friends_count": 54, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A6E6AC", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 40, "location": "Portland, OR", "screen_name": "cdaringe", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Chris Dieringer", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", "profile_background_color": "329C40", "created_at": "Thu Apr 29 19:29:29 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "9FC2A3", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/860677096/11445_634752768398_19710968_37148685_7590791_n_normal.jpg", "favourites_count": 49, "status": {"retweet_count": 0, "in_reply_to_user_id": 14278727, "possibly_sensitive": false, "id_str": "679054290430787584", "in_reply_to_user_id_str": "14278727", "entities": {"symbols": [], "urls": [{"display_url": "inkandfeet.com/how-to-use-a-g\u2026", "url": "https://t.co/CSfKwrPXIy", "expanded_url": "http://inkandfeet.com/how-to-use-a-generic-usb-20-10100m-ethernet-adaptor-rd9700-on-mac-os-1011-el-capitan", "indices": [21, 44]}, {"display_url": "realtek.com/DOWNLOADS/down\u2026", "url": "https://t.co/MXKy0tG3e9", "expanded_url": "http://www.realtek.com/DOWNLOADS/downloadsView.aspx?Langid=1&PNid=14&PFid=55&Level=5&Conn=4&DownTypeID=3&GetDown=false", "indices": [115, 138]}], "hashtags": [], "user_mentions": [{"screen_name": "skoczen", "id_str": "14278727", "id": 14278727, "indices": [0, 8], "name": "Steven Skoczen"}]}, "created_at": "Mon Dec 21 21:42:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "skoczen", "in_reply_to_status_id_str": null, "truncated": false, "id": 679054290430787584, "text": "@skoczen, in ref to https://t.co/CSfKwrPXIy, realtek released a new driver for el cap that requires no sys edits: https://t.co/MXKy0tG3e9", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 138513072, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 68, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "650013", "following": false, "friends_count": 542, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bradfitz.com", "url": "http://t.co/AjdAkBY0iG", "expanded_url": "http://bradfitz.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "BFA446", "geo_enabled": true, "followers_count": 17909, "location": "San Francisco, CA", "screen_name": "bradfitz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1004, "name": "Brad Fitzpatrick", "profile_use_background_image": false, "description": "hacker, traveler, runner, optimist, gopher", "url": "http://t.co/AjdAkBY0iG", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jan 16 23:05:57 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376628217/brad_normal.jpg", "favourites_count": 8369, "status": {"in_reply_to_status_id": 685602642395963392, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "tigahill", "in_reply_to_user_id": 930826154, "in_reply_to_status_id_str": "685602642395963392", "in_reply_to_user_id_str": "930826154", "truncated": false, "id_str": "685603912133414912", "id": 685603912133414912, "text": "@tigahill @JohnLegere @EFF But not very media savvy, apparently. I'd love to read his actual accusations, if he can be calm for a second.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tigahill", "id_str": "930826154", "id": 930826154, "indices": [0, 9], "name": "LaTeigra Cahill"}, {"screen_name": "JohnLegere", "id_str": "1394399438", "id": 1394399438, "indices": [10, 21], "name": "John Legere"}, {"screen_name": "EFF", "id_str": "4816", "id": 4816, "indices": [22, 26], "name": "EFF"}]}, "created_at": "Fri Jan 08 23:28:05 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 650013, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 6185, "profile_banner_url": "https://pbs.twimg.com/profile_banners/650013/1348015829", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "8690322", "following": false, "friends_count": 180, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/iyaz", "url": "http://t.co/wXnrkVLXs1", "expanded_url": "http://about.me/iyaz", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "560869", "geo_enabled": true, "followers_count": 29814, "location": "New York, NY", "screen_name": "iyaz", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1232, "name": "iyaz akhtar", "profile_use_background_image": false, "description": "I'm the best damn Iyaz Akhtar in the world. Available online @CNET and @GFQNetwork", "url": "http://t.co/wXnrkVLXs1", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Sep 05 17:08:15 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641973158552059904/dRLTJIiY_normal.jpg", "favourites_count": 520, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685297976856584192", "id": 685297976856584192, "text": "What did you think was the most awesome thing at CES 2016? #top5", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "top5", "indices": [59, 64]}], "user_mentions": []}, "created_at": "Fri Jan 08 03:12:24 +0000 2016", "source": "Twitter for iPad", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 8690322, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "statuses_count": 15190, "profile_banner_url": "https://pbs.twimg.com/profile_banners/8690322/1433083510", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "10350", "following": false, "friends_count": 1100, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/veronica", "url": "https://t.co/Tf4y8BelKl", "expanded_url": "http://about.me/veronica", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1758625, "location": "San Francisco", "screen_name": "Veronica", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 17380, "name": "Veronica Belmont", "profile_use_background_image": true, "description": "New media / TV host and writer. @swordandlaser, @vaginalfantasy and #DearVeronica for @Engadget. #SFGiants Destroyer of Worlds.", "url": "https://t.co/Tf4y8BelKl", "profile_text_color": "1E1A1A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Tue Oct 24 16:00:54 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C59D79", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684863070615650304/wYPYPO4o_normal.jpg", "favourites_count": 2795, "status": {"in_reply_to_status_id": 685613648220303360, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "NotAPreppie", "in_reply_to_user_id": 53830319, "in_reply_to_status_id_str": "685613648220303360", "in_reply_to_user_id_str": "53830319", "truncated": false, "id_str": "685613962868609025", "id": 685613962868609025, "text": "@NotAPreppie @MarieDomingo getting into random fights on Twitter clearly makes YOU feel better! Whatever works!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "NotAPreppie", "id_str": "53830319", "id": 53830319, "indices": [0, 12], "name": "IfPinkyWereAChemist"}, {"screen_name": "MarieDomingo", "id_str": "10394242", "id": 10394242, "indices": [13, 26], "name": "MarieDomingo"}]}, "created_at": "Sat Jan 09 00:08:01 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 10350, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/621400167472693249/x_fHufpl.jpg", "statuses_count": 36156, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10350/1436988647", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "816214", "following": false, "friends_count": 734, "entities": {"description": {"urls": [{"display_url": "techcrunch.com/video/crunchre\u2026", "url": "http://t.co/sufYJznghc", "expanded_url": "http://techcrunch.com/video/crunchreport", "indices": [59, 81]}]}, "url": {"urls": [{"display_url": "about.me/sarahlane", "url": "http://t.co/POf8fV5kwg", "expanded_url": "http://about.me/sarahlane", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", "notifications": false, "profile_sidebar_fill_color": "BAFF91", "profile_link_color": "B81F45", "geo_enabled": true, "followers_count": 95473, "location": "Norf Side ", "screen_name": "sarahlane", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 6399, "name": "Sarah Lane", "profile_use_background_image": true, "description": "TechCrunch Executive Producer, Video\n\nHost, Crunch Report: http://t.co/sufYJznghc\n\nI get it twisted, sorry", "url": "http://t.co/POf8fV5kwg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Mar 06 22:45:50 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674766167823818753/O7tpjdpi_normal.jpg", "favourites_count": 705, "status": {"in_reply_to_status_id": 685526261507096577, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MDee14", "in_reply_to_user_id": 16684249, "in_reply_to_status_id_str": "685526261507096577", "in_reply_to_user_id_str": "16684249", "truncated": false, "id_str": "685527194949451776", "id": 685527194949451776, "text": "@MDee14 yay we both won!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MDee14", "id_str": "16684249", "id": 16684249, "indices": [0, 7], "name": "Marcel Dee"}]}, "created_at": "Fri Jan 08 18:23:14 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 816214, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/3557808/Photo_29.jpg", "statuses_count": 16630, "profile_banner_url": "https://pbs.twimg.com/profile_banners/816214/1451606730", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "58708498", "following": false, "friends_count": 445, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "angelina.codes", "url": "http://t.co/v5aoRQrHwi", "expanded_url": "http://angelina.codes", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", "notifications": false, "profile_sidebar_fill_color": "F7C9FF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 17533, "location": "NYC \u2708 ???", "screen_name": "hopefulcyborg", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 972, "name": "Angelina Fabbro", "profile_use_background_image": false, "description": "- polyglot programmer weirdo - engineer at @digitalocean (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b - prev: @mozilla devtools & @steamclocksw - they/their/them", "url": "http://t.co/v5aoRQrHwi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Jul 21 04:52:08 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/599701328181465088/zXbE5ber_normal.jpg", "favourites_count": 8940, "status": {"retweet_count": 6532, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 6532, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685515171675140096", "id": 685515171675140096, "text": "COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\nCOP: ok ur good", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:35:27 +0000 2016", "source": "Twitter Web Client", "favorite_count": 12258, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685567906923593729", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "bobvulfov", "id_str": "2442237828", "id": 2442237828, "indices": [3, 13], "name": "Bob Vulfov"}]}, "created_at": "Fri Jan 08 21:05:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685567906923593729, "text": "RT @bobvulfov: COP: u were swerving a lot so i have to conduct a sobriety test\nME: ok\nCOP: lets get taco bell\nME: no\nCOP: text ur ex\nME: no\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 58708498, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/485124631792087040/92tWmeP6.png", "statuses_count": 22753, "profile_banner_url": "https://pbs.twimg.com/profile_banners/58708498/1408048999", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "682433", "following": false, "friends_count": 1123, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "github.com/othiym23/", "url": "http://t.co/20WWkunxbg", "expanded_url": "http://github.com/othiym23/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "CCCCCC", "profile_link_color": "333333", "geo_enabled": true, "followers_count": 2268, "location": "the outside lands", "screen_name": "othiym23", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 152, "name": "Forrest L Norvell", "profile_use_background_image": false, "description": "down with the kyriarchy / big ups to the heavy heavy bass.\n\nI may think you're doing something dumb but I think *you're* great.", "url": "http://t.co/20WWkunxbg", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", "profile_background_color": "CCCCCC", "created_at": "Mon Jan 22 20:57:31 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "333333", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507801607782662144/6qxxNawS_normal.png", "favourites_count": 5768, "status": {"in_reply_to_status_id": 685625845499576321, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "othiym23", "in_reply_to_user_id": 682433, "in_reply_to_status_id_str": "685625845499576321", "in_reply_to_user_id_str": "682433", "truncated": false, "id_str": "685625896372310016", "id": 685625896372310016, "text": "@reconbot @soldair (I mean, even the ones that pull down and examine tarballs)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "reconbot", "id_str": "14082200", "id": 14082200, "indices": [0, 9], "name": "Francis Gulotta"}, {"screen_name": "soldair", "id_str": "16893912", "id": 16893912, "indices": [10, 18], "name": "Ryan Day"}]}, "created_at": "Sat Jan 09 00:55:26 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 682433, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 30184, "profile_banner_url": "https://pbs.twimg.com/profile_banners/682433/1355870155", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "139199211", "following": false, "friends_count": 253, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "snarfed.org", "url": "https://t.co/0mWCez5XaB", "expanded_url": "https://snarfed.org/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 464, "location": "San Francisco", "screen_name": "schnarfed", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Ryan Barrett", "profile_use_background_image": false, "description": "", "url": "https://t.co/0mWCez5XaB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Sat May 01 21:42:43 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459041662707060736/Kb9Ex4X8_normal.jpeg", "favourites_count": 3258, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685210017411170305", "id": 685210017411170305, "text": "When someone invites me out, or just to hang, my first instinct is to check my calendar and hope for a conflict. :( #JustIntrovertThings", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "JustIntrovertThings", "indices": [116, 136]}], "user_mentions": []}, "created_at": "Thu Jan 07 21:22:53 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 139199211, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 1763, "profile_banner_url": "https://pbs.twimg.com/profile_banners/139199211/1398278985", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "536965103", "following": false, "friends_count": 811, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "onebigfluke.com", "url": "http://t.co/aaUMAjUIWi", "expanded_url": "http://onebigfluke.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0074B3", "geo_enabled": false, "followers_count": 2574, "location": "San Francisco", "screen_name": "haxor", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 142, "name": "Brett Slatkin", "profile_use_background_image": true, "description": "Eng lead @Google_Surveys. Author of @EffectivePython.\nI love bicycles and hate patents.", "url": "http://t.co/aaUMAjUIWi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", "profile_background_color": "4D4D4D", "created_at": "Mon Mar 26 05:57:19 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2405145031/666p4bcxa8r75584uck2_normal.png", "favourites_count": 3124, "status": {"retweet_count": 13, "retweeted_status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685367480546541568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "dlvr.it/DCnmnq", "url": "https://t.co/vqRVp9rIbc", "expanded_url": "http://dlvr.it/DCnmnq", "indices": [61, 84]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 07:48:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "ja", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685367480546541568, "text": "Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "dlvr.it"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685498607789670401", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "dlvr.it/DCnmnq", "url": "https://t.co/vqRVp9rIbc", "expanded_url": "http://dlvr.it/DCnmnq", "indices": [80, 103]}], "hashtags": [], "user_mentions": [{"screen_name": "oreilly_japan", "id_str": "18382977", "id": 18382977, "indices": [3, 17], "name": "O'Reilly Japan, Inc."}]}, "created_at": "Fri Jan 08 16:29:38 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "ja", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685498607789670401, "text": "RT @oreilly_japan: Effective Python: Scott Meyers\u306b\u3088\u308b\u4eba\u6c17\u30b7\u30ea\u30fc\u30ba\u3001\u300cEffective Software\u2026 https://t.co/vqRVp9rIbc [book]", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 536965103, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/479078625/250px-Solid_black.svg.png", "statuses_count": 1749, "profile_banner_url": "https://pbs.twimg.com/profile_banners/536965103/1398444972", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "610533", "following": false, "friends_count": 1078, "entities": {"description": {"urls": [{"display_url": "DailyTechNewsShow.com", "url": "https://t.co/x2gPqqxYuL", "expanded_url": "http://DailyTechNewsShow.com", "indices": [13, 36]}]}, "url": {"urls": [{"display_url": "tommerritt.com", "url": "http://t.co/Ru5Svk5gcM", "expanded_url": "http://www.tommerritt.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "notifications": false, "profile_sidebar_fill_color": "95E8EC", "profile_link_color": "0099B9", "geo_enabled": true, "followers_count": 97335, "location": "Virgo Supercluster", "screen_name": "acedtect", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 6443, "name": "Tom Merritt", "profile_use_background_image": true, "description": "Host of DTNS https://t.co/x2gPqqxYuL, Sword and Laser, Current Geek, Cordkillers and more. Coffee achiever", "url": "http://t.co/Ru5Svk5gcM", "profile_text_color": "3C3940", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", "profile_background_color": "0099B9", "created_at": "Sun Jan 07 17:00:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "5ED4DC", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000634907530/7e9f3b75be850ac447598e6f41b1e7a6_normal.jpeg", "favourites_count": 806, "status": {"in_reply_to_status_id": 685611862440849408, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Nightveil", "in_reply_to_user_id": 16855695, "in_reply_to_status_id_str": "685611862440849408", "in_reply_to_user_id_str": "16855695", "truncated": false, "id_str": "685612261910560768", "id": 685612261910560768, "text": "@Nightveil Yeah safety date. I can always move it up.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Nightveil", "id_str": "16855695", "id": 16855695, "indices": [0, 10], "name": "Nightveil"}]}, "created_at": "Sat Jan 09 00:01:15 +0000 2016", "source": "TweetDeck", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 610533, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "statuses_count": 37135, "profile_banner_url": "https://pbs.twimg.com/profile_banners/610533/1348022434", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "824168", "following": false, "friends_count": 1919, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": false, "followers_count": 1035, "location": "Petaluma, CA", "screen_name": "jammerb", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 108, "name": "John Slanina", "profile_use_background_image": true, "description": "History is short. The sun is just a minor star.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", "profile_background_color": "31532D", "created_at": "Fri Mar 09 04:33:02 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/53384595/jsmmerBike_normal.jpg", "favourites_count": 107, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "11877321", "id": 11877321, "text": "Got my Screaming Monkey from Woot!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Mar 24 02:38:08 +0000 2007", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 824168, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2390475/suestrees.jpg", "statuses_count": 6, "profile_banner_url": "https://pbs.twimg.com/profile_banners/824168/1434144272", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2369467405", "following": false, "friends_count": 34024, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wifiworkerbees.com", "url": "http://t.co/rqac3Fh1dU", "expanded_url": "http://wifiworkerbees.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 34950, "location": "Following My Bliss", "screen_name": "DereckCurry", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 632, "name": "Dereck Curry", "profile_use_background_image": false, "description": "20+ year IT, coding, product management, and engineering professional. Remote work evangelist. Co-founder of @WifiWorkerBees. Husband to @Currying_Favor.", "url": "http://t.co/rqac3Fh1dU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", "profile_background_color": "DFF3F5", "created_at": "Sun Mar 02 22:24:48 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/462703243923947520/OPzXRYzj_normal.jpeg", "favourites_count": 3838, "status": {"in_reply_to_status_id": 685628259401334784, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "beckya234", "in_reply_to_user_id": 407834483, "in_reply_to_status_id_str": "685628259401334784", "in_reply_to_user_id_str": "407834483", "truncated": false, "id_str": "685629758886002698", "id": 685629758886002698, "text": "@beckya234 At least your not trying to get the lifeguard drunk. Or maybe you are.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "beckya234", "id_str": "407834483", "id": 407834483, "indices": [0, 10], "name": "Becky Atkins"}]}, "created_at": "Sat Jan 09 01:10:47 +0000 2016", "source": "Twitter for Mac", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2369467405, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458016636239237120/hU7QMzOQ.jpeg", "statuses_count": 9079, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369467405/1447623348", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15948437", "following": false, "friends_count": 590, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joelonsoftware.com", "url": "http://t.co/ZHNWlmFE3H", "expanded_url": "http://www.joelonsoftware.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", "notifications": false, "profile_sidebar_fill_color": "E4F1F0", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 117165, "location": "New York, NY", "screen_name": "spolsky", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5827, "name": "Joel Spolsky", "profile_use_background_image": true, "description": "CEO of Stack Overflow, co-founder of Fog Creek Software (FogBugz, Kiln), and creator of Trello. Member of NYC gay startup mafia.", "url": "http://t.co/ZHNWlmFE3H", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", "profile_background_color": "9AE4E8", "created_at": "Fri Aug 22 18:34:03 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451185078073171968/T4QKBj-E_normal.jpeg", "favourites_count": 5133, "status": {"retweet_count": 33, "retweeted_status": {"retweet_count": 33, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684896392188444672", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/p/23a20405681a", "url": "https://t.co/ifzwy1ausF", "expanded_url": "https://medium.com/p/23a20405681a", "indices": [112, 135]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 00:36:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684896392188444672, "text": "I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/ifzwy1ausF", "coordinates": null, "retweeted": false, "favorite_count": 91, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684939456881770496", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "medium.com/p/23a20405681a", "url": "https://t.co/ifzwy1ausF", "expanded_url": "https://medium.com/p/23a20405681a", "indices": [126, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "anildash", "id_str": "36823", "id": 36823, "indices": [3, 12], "name": "Anil Dash"}]}, "created_at": "Thu Jan 07 03:27:46 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684939456881770496, "text": "RT @anildash: I started keeping some notes about what exactly it is in trying to do with my career in tech. Feedback welcome! https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 15948437, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2920769/NZ_and_Australia_175.jpg", "statuses_count": 6625, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15948437/1364583542", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "4519121", "following": false, "friends_count": 423, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theoatmeal.com", "url": "http://t.co/hzHuiYcL4x", "expanded_url": "http://theoatmeal.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/57771255/twitter2.png", "notifications": false, "profile_sidebar_fill_color": "F5EDF0", "profile_link_color": "B40B43", "geo_enabled": true, "followers_count": 524239, "location": "Seattle, Washington", "screen_name": "Oatmeal", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 17111, "name": "Matthew Inman", "profile_use_background_image": true, "description": "I make comics.", "url": "http://t.co/hzHuiYcL4x", "profile_text_color": "362720", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", "profile_background_color": "FF3366", "created_at": "Fri Apr 13 16:59:37 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "CC3366", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479769268104359937/VvbTc1T6_normal.png", "favourites_count": 1374, "status": {"retweet_count": 128, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685190824158691332", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 812, "h": 587, "resize": "fit"}, "small": {"w": 340, "h": 245, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 433, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", "type": "photo", "indices": [47, 70], "media_url": "http://pbs.twimg.com/media/CYJJbHUVAAEH2Yw.png", "display_url": "pic.twitter.com/suZ6JUQaFa", "id_str": "685190823483342849", "expanded_url": "http://twitter.com/Oatmeal/status/685190824158691332/photo/1", "id": 685190823483342849, "url": "https://t.co/suZ6JUQaFa"}], "symbols": [], "urls": [{"display_url": "theoatmeal.com/blog/playdoh", "url": "https://t.co/v1LZDUNlnT", "expanded_url": "http://theoatmeal.com/blog/playdoh", "indices": [23, 46]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 20:06:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685190824158691332, "text": "You only try this once https://t.co/v1LZDUNlnT https://t.co/suZ6JUQaFa", "coordinates": null, "retweeted": false, "favorite_count": 293, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 4519121, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/57771255/twitter2.png", "statuses_count": 6000, "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "9859562", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "glyph.twistedmatrix.com", "url": "https://t.co/1dvBYKfhRo", "expanded_url": "https://glyph.twistedmatrix.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": false, "followers_count": 2557, "location": "\u2191 baseline \u2193 cap-height", "screen_name": "glyph", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 144, "name": "\u24bc\u24c1\u24ce\u24c5\u24bd", "profile_use_background_image": true, "description": "Level ?? Thought Lord", "url": "https://t.co/1dvBYKfhRo", "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", "profile_background_color": "642D8B", "created_at": "Thu Nov 01 18:21:23 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/480054701220560896/LCQcjh6__normal.png", "favourites_count": 6287, "status": {"in_reply_to_status_id": 685297984683155456, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "corbinsimpson", "in_reply_to_user_id": 41225243, "in_reply_to_status_id_str": "685297984683155456", "in_reply_to_user_id_str": "41225243", "truncated": false, "id_str": "685357014143250432", "id": 685357014143250432, "text": "@corbinsimpson yeah.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "corbinsimpson", "id_str": "41225243", "id": 41225243, "indices": [0, 14], "name": "Corbin Simpson"}]}, "created_at": "Fri Jan 08 07:07:00 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 9859562, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "statuses_count": 11017, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2782733125", "following": false, "friends_count": 427, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "raintank.io", "url": "http://t.co/sZYy68B1yl", "expanded_url": "http://www.raintank.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "10B1D3", "geo_enabled": true, "followers_count": 362, "location": "", "screen_name": "raintanksaas", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 13, "name": "raintank", "profile_use_background_image": false, "description": "An opensource monitoring platform to collect, store & analyze data about your infrastructure through a gorgeously powerful frontend. The company behind @grafana", "url": "http://t.co/sZYy68B1yl", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", "profile_background_color": "353535", "created_at": "Sun Aug 31 18:05:44 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/553326024155348992/Mhburz0S_normal.png", "favourites_count": 204, "status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684453558545203200", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "type": "photo", "indices": [113, 136], "media_url": "http://pbs.twimg.com/media/CX-oPyAWsAAN3om.png", "display_url": "pic.twitter.com/GnfOxpEaYF", "id_str": "684450657458368512", "expanded_url": "http://twitter.com/raintanksaas/status/684453558545203200/photo/1", "id": 684450657458368512, "url": "https://t.co/GnfOxpEaYF"}], "symbols": [], "urls": [{"display_url": "bit.ly/22Jb455", "url": "https://t.co/aYQvFNmob0", "expanded_url": "http://bit.ly/22Jb455", "indices": [69, 92]}], "hashtags": [{"text": "monitoring", "indices": [57, 68]}], "user_mentions": [{"screen_name": "RobustPerceiver", "id_str": "3328053545", "id": 3328053545, "indices": [96, 112], "name": "Robust Perception"}]}, "created_at": "Tue Jan 05 19:16:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684453558545203200, "text": "Don\u2019t limit yourself to one approach for collecting data #monitoring https://t.co/aYQvFNmob0 by @RobustPerceiver https://t.co/GnfOxpEaYF", "coordinates": null, "retweeted": false, "favorite_count": 15, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 2782733125, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 187, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782733125/1447877118", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "23134190", "following": false, "friends_count": 2846, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rayheffer.com", "url": "http://t.co/65bBqa0ySJ", "expanded_url": "http://rayheffer.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", "notifications": false, "profile_sidebar_fill_color": "DBDBDB", "profile_link_color": "1887E5", "geo_enabled": true, "followers_count": 12127, "location": "Brighton, United Kingdom", "screen_name": "rayheffer", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 233, "name": "Ray Heffer", "profile_use_background_image": true, "description": "Global Cloud & EUC Architect @VMware vCloud Air Network | vExpert & Double VCDX #122 | PC Gamer | Technologist | Linux | VMworld Speaker. \u65e5\u672c\u8a9e", "url": "http://t.co/65bBqa0ySJ", "profile_text_color": "574444", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", "profile_background_color": "022330", "created_at": "Fri Mar 06 23:14:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621975771481911297/g5ewiqDd_normal.jpg", "favourites_count": 6141, "status": {"retweet_count": 8, "retweeted_status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685565495274266624", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ow.ly/WFMFT", "url": "https://t.co/QHNFIkGGaL", "expanded_url": "http://ow.ly/WFMFT", "indices": [121, 144]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:55:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685565495274266624, "text": "Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https://t.co/QHNFIkGGaL", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685565627487117312", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "ow.ly/WFMFT", "url": "https://t.co/QHNFIkGGaL", "expanded_url": "http://ow.ly/WFMFT", "indices": [143, 144]}], "hashtags": [], "user_mentions": [{"screen_name": "PGelsinger", "id_str": "3339261074", "id": 3339261074, "indices": [3, 14], "name": "Pat Gelsinger"}]}, "created_at": "Fri Jan 08 20:55:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685565627487117312, "text": "RT @PGelsinger: Did u know 1 of the world's largest private charity donors uses NSX to enable a biz model based on trust & security? https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 23134190, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569243383072165888/z2h49MAo.png", "statuses_count": 3576, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23134190/1447672867", "is_translator": false}], "next_cursor": 1494734862149901956, "previous_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "1494734862149901956"} \ No newline at end of file diff --git a/testdata/get_friends_paged_additional_params.json b/testdata/get_friends_paged_additional_params.json index 9c5ba9c4..2ab75a3b 100644 --- a/testdata/get_friends_paged_additional_params.json +++ b/testdata/get_friends_paged_additional_params.json @@ -1,12010 +1 @@ -{ - "next_cursor": 1510492845088954664, - "users": [ - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "2251081112", - "following": false, - "friends_count": 49, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "masterdynamic.com", - "url": "http://t.co/SgGVimTMa1", - "expanded_url": "http://www.masterdynamic.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649050988293267456/zAXOGdlc.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2019, - "location": "", - "screen_name": "MasterDynamic", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 41, - "name": "Master & Dynamic", - "profile_use_background_image": false, - "description": "Sound Tools For Creative Minds.", - "url": "http://t.co/SgGVimTMa1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649051412417093632/fDSbNhAm_normal.jpg", - "profile_background_color": "F8F8F8", - "created_at": "Tue Dec 17 22:58:37 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649051412417093632/fDSbNhAm_normal.jpg", - "favourites_count": 726, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649050988293267456/zAXOGdlc.jpg", - "default_profile_image": false, - "id": 2251081112, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1065, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2251081112/1447342923", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": false, - "description": "Peach is a fun, simple way to keep up with friends and be yourself.", - "url": "https://t.co/yI3RpqAqQF", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "4611360201", - "blocking": false, - "is_translation_enabled": false, - "id": 4611360201, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "peach.cool", - "url": "https://t.co/yI3RpqAqQF", - "expanded_url": "http://peach.cool", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "000000", - "created_at": "Sat Dec 26 14:07:02 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/680753311562117120/TQ4Sg47x_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "000000", - "profile_link_color": "FF80B9", - "statuses_count": 42, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/680753311562117120/TQ4Sg47x_normal.png", - "favourites_count": 16, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 698, - "blocked_by": false, - "following": false, - "location": "New York, NY", - "muting": false, - "friends_count": 9, - "notifications": false, - "screen_name": "peachdotcool", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 7, - "is_translator": false, - "name": "Peach" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Sneaker Shop check us on IG : Benjaminkickz", - "url": "http://t.co/rAZPYRorYS", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2213249522", - "blocking": false, - "is_translation_enabled": false, - "id": 2213249522, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "benjaminkickz.com", - "url": "http://t.co/rAZPYRorYS", - "expanded_url": "http://www.benjaminkickz.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Nov 25 00:04:30 +0000 2013", - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000786646414/7d66371ca1394de489bf94c00eb96886_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 3, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000786646414/7d66371ca1394de489bf94c00eb96886_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 585, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 12, - "notifications": false, - "screen_name": "benjaminkickz", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "Benjaminkickz" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "LaToya, Torrian & Draymond are The REAL MVP'S. God blessed me with 3 AWESOME CHILDREN and I am so blessed to have them All!", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2846207905", - "blocking": false, - "is_translation_enabled": false, - "id": 2846207905, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Oct 08 05:00:06 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/640725097481940994/t-Sxl46Z_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 9104, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/640725097481940994/t-Sxl46Z_normal.jpg", - "favourites_count": 13622, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 11685, - "blocked_by": false, - "following": false, - "location": "Saginaw Township North, MI", - "muting": false, - "friends_count": 527, - "notifications": false, - "screen_name": "BabersGreen", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 151, - "is_translator": false, - "name": "Mary Babers-Green" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2377837022", - "following": false, - "friends_count": 82, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Facebook.com/MuppetsKermit", - "url": "http://t.co/kjainYAA9x", - "expanded_url": "http://Facebook.com/MuppetsKermit", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 88405, - "location": "Hollywood, CA", - "screen_name": "KermitTheFrog", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 461, - "name": "Kermit the Frog", - "profile_use_background_image": true, - "description": "Hi-ho! Welcome to the official Twitter of me, Kermit the Frog!", - "url": "http://t.co/kjainYAA9x", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Sat Mar 08 00:14:55 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", - "favourites_count": 11, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile_image": false, - "id": 2377837022, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 487, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2377837022/1444773126", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "271395703", - "following": false, - "friends_count": 323, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/Ariadnagutierr\u2026", - "url": "https://t.co/T7mRnNYeAF", - "expanded_url": "https://www.facebook.com/Ariadnagutierrezofficial/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 142503, - "location": "", - "screen_name": "gutierrezary", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 91, - "name": "Ariadna Gutierrez", - "profile_use_background_image": true, - "description": "Miss Colombia \u2764\ufe0f Management: grecia@Latinwe.com", - "url": "https://t.co/T7mRnNYeAF", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 24 12:31:11 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", - "favourites_count": 1160, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", - "default_profile_image": false, - "id": 271395703, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2629, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/271395703/1452025456", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "36818161", - "following": false, - "friends_count": 1548, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "goldroom.la", - "url": "http://t.co/IQ8kdCE2P6", - "expanded_url": "http://goldroom.la", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397706531/try2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "CDDAFA", - "profile_link_color": "007BFF", - "geo_enabled": true, - "followers_count": 19678, - "location": "Los Angeles", - "screen_name": "goldroom", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 349, - "name": "Goldroom", - "profile_use_background_image": true, - "description": "Music producer, songwriter, rum drinker.", - "url": "http://t.co/IQ8kdCE2P6", - "profile_text_color": "1F1E1F", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Apr 30 23:54:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "245BFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", - "favourites_count": 58633, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397706531/try2.jpg", - "default_profile_image": false, - "id": 36818161, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 18478, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/36818161/1449780672", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "45090120", - "following": false, - "friends_count": 385, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "smarturl.it/Summertime06", - "url": "https://t.co/vnFEaoggqW", - "expanded_url": "http://smarturl.it/Summertime06", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "603311", - "geo_enabled": true, - "followers_count": 228852, - "location": "Long Beach, CA", - "screen_name": "vincestaples", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 665, - "name": "Vince Staples", - "profile_use_background_image": false, - "description": "I get mad cause the world don't understand me. That's the price I had to pay for this rap game. - Lil B", - "url": "https://t.co/vnFEaoggqW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", - "profile_background_color": "101820", - "created_at": "Sat Jun 06 07:40:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", - "favourites_count": 2633, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", - "default_profile_image": false, - "id": 45090120, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 11643, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/45090120/1418950988", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4704812826", - "following": false, - "friends_count": 116, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": null, - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2B7BB9", - "geo_enabled": false, - "followers_count": 12661, - "location": "Chile", - "screen_name": "Letelier1920", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 33, - "name": "Hern\u00e1n Letelier", - "profile_use_background_image": true, - "description": "Tengo 20 a\u00f1os, pero acabo de cumplir 95. Actor y director de teatro a mediados del XX. \u00bfSe acuerda de Pierre le peluquier de la P\u00e9rgola de las Flores? Era yo", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", - "profile_background_color": "F5F8FA", - "created_at": "Sun Jan 03 20:12:25 +0000 2016", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", - "favourites_count": 817, - "profile_background_image_url_https": null, - "default_profile_image": false, - "id": 4704812826, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 193, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4704812826/1452092286", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "27244131", - "following": false, - "friends_count": 878, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/gussa", - "url": "https://t.co/S3aUB7YG60", - "expanded_url": "https://www.linkedin.com/in/gussa", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1368, - "location": "Melbourne, Australia", - "screen_name": "angushervey", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "Angus Hervey", - "profile_use_background_image": true, - "description": "political economist, science communicator, optimist with @future_crunch | community manager for @rhokaustralia | PhD from London School of Economics", - "url": "https://t.co/S3aUB7YG60", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Sat Mar 28 15:13:06 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", - "favourites_count": 632, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile_image": false, - "id": 27244131, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1880, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/27244131/1451984968", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "140497508", - "following": false, - "friends_count": 96, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 26357, - "location": "Queens holla! IG/Snap:rosgo21", - "screen_name": "ROSGO21", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 520, - "name": "Rosalyn Gold-Onwude", - "profile_use_background_image": true, - "description": "GS Warriors sideline: CSN. NYLiberty: MSG. NCAA: PAC12. SF 49ers: CSN. Emmy Winner. Stanford Grad: BA, MA '10. 3 Final 4s. Pac12 DPOY '10.Nigerian Natl team '11", - "url": null, - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", - "profile_background_color": "642D8B", - "created_at": "Wed May 05 17:00:22 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", - "favourites_count": 2828, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", - "default_profile_image": false, - "id": 140497508, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 29557, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/140497508/1351351402", - "is_translator": false - }, - { - "time_zone": "Tehran", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 12600, - "id_str": "16779204", - "following": false, - "friends_count": 6313, - "entities": { - "description": { - "urls": [ - { - "display_url": "bit.ly/1CQYaYU", - "url": "https://t.co/mbs8lwspQK", - "expanded_url": "http://bit.ly/1CQYaYU", - "indices": [ - 120, - 143 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "hoder.com", - "url": "https://t.co/mnzE4YRMC6", - "expanded_url": "http://hoder.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 6824, - "location": "Tehran, Iran", - "screen_name": "h0d3r", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 152, - "name": "Hossein Derakhshan", - "profile_use_background_image": false, - "description": "Iranian-Canadian author, blogger, analyst. Spent 6 yrs in jail from 2008. Author of 'The Web We Have to Save' (Matter): https://t.co/mbs8lwspQK hoder@hoder.com", - "url": "https://t.co/mnzE4YRMC6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Oct 15 11:00:35 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", - "favourites_count": 5024, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "default_profile_image": false, - "id": 16779204, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1241, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16779204/1416664427", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "29844055", - "following": false, - "friends_count": 8, - "entities": { - "description": { - "urls": [ - { - "display_url": "tinyurl.com/lp7ubo4", - "url": "http://t.co/L1iS5iJRHH", - "expanded_url": "http://tinyurl.com/lp7ubo4", - "indices": [ - 47, - 69 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "TxDxE.com", - "url": "http://t.co/RXjkFoFTKl", - "expanded_url": "http://www.TxDxE.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", - "notifications": false, - "profile_sidebar_fill_color": "050505", - "profile_link_color": "354E99", - "geo_enabled": false, - "followers_count": 643505, - "location": "CARSON, CA (W/S DA)", - "screen_name": "abdashsoul", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1776, - "name": "Ab-Soul", - "profile_use_background_image": true, - "description": "#blacklippastor | #THESEDAYS... available now: http://t.co/L1iS5iJRHH | Booking: mgmt@txdxe.com | Instagram: @souloho3", - "url": "http://t.co/RXjkFoFTKl", - "profile_text_color": "615B5C", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", - "profile_background_color": "080808", - "created_at": "Wed Apr 08 22:43:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "9AA5AB", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", - "favourites_count": 52, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", - "default_profile_image": false, - "id": 29844055, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 20050, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29844055/1427233664", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1337271", - "following": false, - "friends_count": 2502, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mlkshk.com/p/YLTA", - "url": "http://t.co/wL4BXidKHJ", - "expanded_url": "http://mlkshk.com/p/YLTA", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "113838", - "geo_enabled": false, - "followers_count": 40311, - "location": "waking up ", - "screen_name": "darth", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 943, - "name": "darth\u2122", - "profile_use_background_image": false, - "description": "not the darth you are looking for", - "url": "http://t.co/wL4BXidKHJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", - "profile_background_color": "131516", - "created_at": "Sat Mar 17 05:38:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", - "favourites_count": 271725, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", - "default_profile_image": false, - "id": 1337271, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 31700, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1337271/1398194350", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "16228398", - "following": false, - "friends_count": 986, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cyberdust.com/addme?blogmave\u2026", - "url": "http://t.co/q9qtJaGLrB", - "expanded_url": "http://cyberdust.com/addme?blogmaverick", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4313188, - "location": "", - "screen_name": "mcuban", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 26161, - "name": "Mark Cuban", - "profile_use_background_image": true, - "description": "Cyber Dust ID: blogmaverick", - "url": "http://t.co/q9qtJaGLrB", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Sep 10 21:12:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", - "favourites_count": 279, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", - "default_profile_image": false, - "id": 16228398, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 758, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16228398/1398982404", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "216582908", - "following": false, - "friends_count": 213, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1465, - "location": "San Fran", - "screen_name": "jmsSanFran", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 42, - "name": "Jeffrey Siminoff", - "profile_use_background_image": false, - "description": "Soon to be @twitter (not yet). Inclusion & Diversity. Foodie. Would-be concierge. Traveler. Equinox. Duke. Emory Law. Former NYC, former Apple.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Nov 17 04:26:58 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", - "favourites_count": 616, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 216582908, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 891, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/216582908/1439074474", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "98988930", - "following": false, - "friends_count": 10, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 82696, - "location": "The North Pole", - "screen_name": "santa", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 171, - "name": "Santa Claus", - "profile_use_background_image": true, - "description": "#crushingit", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/590905131/image_normal.jpg", - "profile_background_color": "DD2E44", - "created_at": "Thu Dec 24 00:15:25 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/590905131/image_normal.jpg", - "favourites_count": 427, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile_image": false, - "id": 98988930, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1755, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/98988930/1419058838", - "is_translator": false - }, - { - "time_zone": "Arizona", - "profile_use_background_image": true, - "description": "Software Engineer at Twitter", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -25200, - "id_str": "27485958", - "blocking": false, - "is_translation_enabled": false, - "id": 27485958, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "B2DFDA", - "created_at": "Sun Mar 29 19:30:27 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "statuses_count": 112, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", - "favourites_count": 245, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 174, - "blocked_by": false, - "following": false, - "location": "San Francisco Bay Area", - "muting": false, - "friends_count": 130, - "notifications": false, - "screen_name": "luckysong", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "is_translator": false, - "name": "Guanglei" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "124003770", - "following": false, - "friends_count": 154, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cher.com", - "url": "http://t.co/E5aYMJHxx5", - "expanded_url": "http://cher.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "F92649", - "geo_enabled": true, - "followers_count": 2932243, - "location": "Malibu, California", - "screen_name": "cher", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 11219, - "name": "Cher", - "profile_use_background_image": true, - "description": "Stand & B Counted or Sit & B Nothing.\nDon't Litter,Chew Gum,Walk Past \nHomeless PPL w/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\nTHERE'S ONLY LOVE&FEAR", - "url": "http://t.co/E5aYMJHxx5", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 17 23:05:55 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", - "favourites_count": 1123, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", - "default_profile_image": false, - "id": 124003770, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 16283, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/124003770/1402616686", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "harpo studios EVP; mom, sister, friend. Travelling new and uncharted path, holding on to love and strength.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "16606403", - "blocking": false, - "is_translation_enabled": false, - "id": 16606403, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Oct 05 22:14:12 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 4561, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", - "favourites_count": 399, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 15617, - "blocked_by": false, - "following": false, - "location": "iPhone: 42.189728,-87.802538", - "muting": false, - "friends_count": 1987, - "notifications": false, - "screen_name": "hseitler", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 149, - "is_translator": false, - "name": "harriet seitler" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5510452", - "following": false, - "friends_count": 355, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "medium.com/@ameet", - "url": "http://t.co/hOMy2GqrvD", - "expanded_url": "http://medium.com/@ameet", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 4193, - "location": "San Francisco, CA", - "screen_name": "ameet", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 93, - "name": "Ameet Ranadive", - "profile_use_background_image": true, - "description": "VP Revenue Product @Twitter. Formerly Dasient ($TWTR), McKinsey. Love building products, startups, reading, writing, cooking, being a dad.", - "url": "http://t.co/hOMy2GqrvD", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Apr 25 22:41:59 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", - "favourites_count": 4657, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 5510452, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4637, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5510452/1422199159", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "29442313", - "following": false, - "friends_count": 1910, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sanders.senate.gov", - "url": "http://t.co/8AS4FI1oge", - "expanded_url": "http://www.sanders.senate.gov/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "D6CCB6", - "profile_link_color": "44506A", - "geo_enabled": true, - "followers_count": 1168571, - "location": "Vermont/DC", - "screen_name": "SenSanders", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 11871, - "name": "Bernie Sanders", - "profile_use_background_image": true, - "description": "Sen. Bernie Sanders is the longest serving independent in congressional history. Tweets ending in -B are from Bernie, and all others are from a staffer.", - "url": "http://t.co/8AS4FI1oge", - "profile_text_color": "304562", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", - "profile_background_color": "000000", - "created_at": "Tue Apr 07 13:02:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", - "favourites_count": 13, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", - "default_profile_image": false, - "id": 29442313, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 13418, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29442313/1430854323", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "216776631", - "following": false, - "friends_count": 1407, - "entities": { - "description": { - "urls": [ - { - "display_url": "berniesanders.com", - "url": "http://t.co/nuBuflYjUL", - "expanded_url": "http://berniesanders.com", - "indices": [ - 92, - 114 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "berniesanders.com", - "url": "https://t.co/W6f7Iy1Nho", - "expanded_url": "https://berniesanders.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1113827, - "location": "Vermont", - "screen_name": "BernieSanders", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 5205, - "name": "Bernie Sanders", - "profile_use_background_image": false, - "description": "I believe America is ready for a new path to the future. Join our campaign for president at http://t.co/nuBuflYjUL.", - "url": "https://t.co/W6f7Iy1Nho", - "profile_text_color": "050005", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", - "profile_background_color": "EA5047", - "created_at": "Wed Nov 17 17:53:52 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", - "favourites_count": 658, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", - "default_profile_image": false, - "id": 216776631, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5517, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/216776631/1451363799", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17159397", - "following": false, - "friends_count": 2290, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wnba.com", - "url": "http://t.co/VSPC6ki5Sa", - "expanded_url": "http://www.wnba.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "FF0000", - "geo_enabled": false, - "followers_count": 501515, - "location": "", - "screen_name": "WNBA", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2070, - "name": "WNBA", - "profile_use_background_image": true, - "description": "News & notes directly from the WNBA.", - "url": "http://t.co/VSPC6ki5Sa", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Tue Nov 04 16:04:48 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", - "favourites_count": 300, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", - "default_profile_image": false, - "id": 17159397, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 30615, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17159397/1444881224", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18129606", - "following": false, - "friends_count": 790, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/saintboz", - "url": "http://t.co/m8390gFxR6", - "expanded_url": "http://twitter.com/saintboz", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 3624, - "location": "\u00dcT: 40.810606,-73.986908", - "screen_name": "SaintBoz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "Boz Saint John", - "profile_use_background_image": true, - "description": "Self proclaimed badass and badmamajama. Generally bad. And good at it. Head diva of global consumer marketing @applemusic & @itunes", - "url": "http://t.co/m8390gFxR6", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Mon Dec 15 03:37:52 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", - "favourites_count": 1172, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", - "default_profile_image": false, - "id": 18129606, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 2923, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18129606/1353602146", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "122860384", - "blocking": false, - "is_translation_enabled": false, - "id": 122860384, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sun Mar 14 04:44:33 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 417, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", - "favourites_count": 945, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 1240, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 110, - "notifications": false, - "screen_name": "FeliciaHorowitz", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 69, - "is_translator": false, - "name": "Felicia Horowitz" - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "205926603", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com", - "url": "http://t.co/DeO4c250gs", - "expanded_url": "http://twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F2E7C4", - "profile_link_color": "89C9FA", - "geo_enabled": false, - "followers_count": 59832, - "location": "TwitterHQ", - "screen_name": "hackweek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 97, - "name": "HackWeek", - "profile_use_background_image": true, - "description": "Let's hack together.", - "url": "http://t.co/DeO4c250gs", - "profile_text_color": "9C6D74", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", - "profile_background_color": "452D30", - "created_at": "Thu Oct 21 22:27:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9C486", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", - "favourites_count": 1, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", - "default_profile_image": false, - "id": 205926603, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/205926603/1420662867", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2835886194", - "following": false, - "friends_count": 179, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "colbertlateshow.com", - "url": "https://t.co/YTzFH21e5t", - "expanded_url": "http://colbertlateshow.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 138182, - "location": "", - "screen_name": "colbertlateshow", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1002, - "name": "The Late Show on CBS", - "profile_use_background_image": true, - "description": "Official Twitter feed of The Late Show with Stephen Colbert. Unofficial Twitter feed of the U.S. Department of Agriculture.", - "url": "https://t.co/YTzFH21e5t", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 30 17:13:22 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", - "favourites_count": 249, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2835886194, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 804, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2835886194/1444429479", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3165817215", - "following": false, - "friends_count": 180, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 398560, - "location": "", - "screen_name": "JohnBoyega", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 856, - "name": "John Boyega", - "profile_use_background_image": true, - "description": "Dream and work towards the reality", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 14 09:19:31 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", - "favourites_count": 201, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3165817215, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 365, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3165817215/1451410540", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "252531143", - "following": false, - "friends_count": 3141, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "princeton.edu/~slaughtr/", - "url": "http://t.co/jJRR31QiUl", - "expanded_url": "http://www.princeton.edu/~slaughtr/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "2EBCB3", - "geo_enabled": true, - "followers_count": 129956, - "location": "Princeton, DC, New York", - "screen_name": "SlaughterAM", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3983, - "name": "Anne-Marie Slaughter", - "profile_use_background_image": true, - "description": "President & CEO, @newamerica. Former Princeton Prof & Director of Policy Planning, U.S. State Dept. Mother. Mentor. Foodie. Author. Foreign policy curator.", - "url": "http://t.co/jJRR31QiUl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", - "profile_background_color": "968270", - "created_at": "Tue Feb 15 11:33:50 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", - "favourites_count": 2854, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 252531143, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 25191, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/252531143/1424986634", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "299674713", - "following": false, - "friends_count": 597, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "juliefoudyleadership.com", - "url": "http://t.co/TlwVOqMe3Z", - "expanded_url": "http://www.juliefoudyleadership.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "C73460", - "geo_enabled": true, - "followers_count": 196506, - "location": "I wish I knew...", - "screen_name": "JulieFoudy", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1469, - "name": "Julie Foudy", - "profile_use_background_image": true, - "description": "Former watergirl #USWNT, current ESPN'er, mom, founder JF Sports Leadership Academy. Luvr of donuts larger than my heeed & soulful peops who empower others.", - "url": "http://t.co/TlwVOqMe3Z", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", - "profile_background_color": "B2DFDA", - "created_at": "Mon May 16 14:14:49 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile_image": false, - "id": 299674713, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6724, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/299674713/1402758316", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2651565121", - "following": false, - "friends_count": 10, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sinatra.com", - "url": "https://t.co/Xt6lI7LMFC", - "expanded_url": "http://sinatra.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0890C2", - "geo_enabled": false, - "followers_count": 22119, - "location": "", - "screen_name": "franksinatra", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 146, - "name": "Frank Sinatra", - "profile_use_background_image": false, - "description": "The Chairman of the Board - the official Twitter profile for Frank Sinatra Enterprises", - "url": "https://t.co/Xt6lI7LMFC", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Jul 16 16:58:44 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", - "favourites_count": 83, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2651565121, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 352, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2651565121/1406242389", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "21561935", - "following": false, - "friends_count": 901, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kissthedeejay.com", - "url": "http://t.co/6moXT5RhPn", - "expanded_url": "http://www.kissthedeejay.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", - "notifications": false, - "profile_sidebar_fill_color": "0A0A0B", - "profile_link_color": "929287", - "geo_enabled": false, - "followers_count": 10811, - "location": "NYC", - "screen_name": "KISSTHEDEEJAY", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 271, - "name": "DJ KISS", - "profile_use_background_image": true, - "description": "Deejay / Personality / Blogger / Fashion & Beauty Enthusiast / 1/2 of #TheSemples", - "url": "http://t.co/6moXT5RhPn", - "profile_text_color": "E11930", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", - "profile_background_color": "F5F2F7", - "created_at": "Sun Feb 22 12:22:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", - "favourites_count": 17, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", - "default_profile_image": false, - "id": 21561935, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 7709, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21561935/1422280291", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "43987763", - "following": false, - "friends_count": 1165, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 818, - "location": "San Francisco, CA", - "screen_name": "nataliemiyake", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 36, - "name": "Natalie Miyake", - "profile_use_background_image": true, - "description": "Corporate communications @twitter. Raised in Japan, ex-New Yorker, now in SF. Wine lover, hiking addict, brunch connoisseur.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Mon Jun 01 22:19:32 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", - "favourites_count": 1571, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "default_profile_image": false, - "id": 43987763, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3687, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43987763/1397010068", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "412715336", - "following": false, - "friends_count": 159, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1108, - "location": "San Francisco, CA", - "screen_name": "Celebrate", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 14, - "name": "#Celebrate", - "profile_use_background_image": true, - "description": "#celebrate", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", - "profile_background_color": "707375", - "created_at": "Tue Nov 15 02:02:23 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", - "favourites_count": 7, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", - "default_profile_image": false, - "id": 412715336, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 88, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/412715336/1449089216", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "158595960", - "following": false, - "friends_count": 228, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 364, - "location": "San Francisco", - "screen_name": "drao", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Deepak Rao", - "profile_use_background_image": true, - "description": "Product Manager @Twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 23 03:19:05 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", - "favourites_count": 646, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 158595960, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 269, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/158595960/1405201901", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16669075", - "following": false, - "friends_count": 616, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fema.gov", - "url": "http://t.co/yHUd9eUBs0", - "expanded_url": "http://www.fema.gov/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DCDCE0", - "profile_link_color": "2A91B0", - "geo_enabled": true, - "followers_count": 440519, - "location": "United States", - "screen_name": "fema", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8834, - "name": "FEMA", - "profile_use_background_image": true, - "description": "Our story of supporting citizens & first responders before, during, and after emergencies. For emergencies, call your local fire/EMS/police or 9-1-1.", - "url": "http://t.co/yHUd9eUBs0", - "profile_text_color": "65686E", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", - "profile_background_color": "CCCCCC", - "created_at": "Thu Oct 09 16:54:20 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", - "favourites_count": 519, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", - "default_profile_image": false, - "id": 16669075, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 10491, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16669075/1444411889", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1072103227", - "following": false, - "friends_count": 1004, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 832, - "location": "SF", - "screen_name": "heySierra", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 13, - "name": "Sierra Lord", - "profile_use_background_image": true, - "description": "#gsd @twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 08 21:50:58 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", - "favourites_count": 3027, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1072103227, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 548, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1072103227/1357682472", - "is_translator": false - }, - { - "time_zone": "Quito", - "profile_use_background_image": true, - "description": "Director of Video and Contributing Editor at @ThinkProgress. Contributing host @bpshow. Opinions, my own. E-mail: ivolsky@americanprogress.org", - "url": "http://t.co/YV2uNXXlyL", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "16002085", - "blocking": false, - "is_translation_enabled": false, - "id": 16002085, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thinkprogress.org", - "url": "http://t.co/YV2uNXXlyL", - "expanded_url": "http://www.thinkprogress.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C6E2EE", - "created_at": "Tue Aug 26 20:17:23 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "default_profile": false, - "profile_text_color": "663B12", - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "statuses_count": 29775, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", - "favourites_count": 649, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 74911, - "blocked_by": false, - "following": false, - "location": "Washington, DC", - "muting": false, - "friends_count": 2895, - "notifications": false, - "screen_name": "igorvolsky", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1267, - "is_translator": false, - "name": "igorvolsky" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "84981428", - "following": false, - "friends_count": 258, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "braintreepayments.com", - "url": "https://t.co/Vc3MPaIBSU", - "expanded_url": "http://www.braintreepayments.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4603, - "location": "San Francisco, Chicago", - "screen_name": "williamready", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 171, - "name": "William Ready", - "profile_use_background_image": true, - "description": "SVP, Global Head of Product & Engineering at PayPal. CEO of @Braintree/@Venmo. Creating the easiest way to pay or get paid - online, mobile, in-store.", - "url": "https://t.co/Vc3MPaIBSU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Oct 25 01:31:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", - "favourites_count": 1585, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 84981428, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2224, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/84981428/1410287238", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Instagram- brush_4\nsnapchat- showmeb", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "48477007", - "blocking": false, - "is_translation_enabled": false, - "id": 48477007, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 18 20:24:45 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 16019, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", - "favourites_count": 7, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 51042, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 368, - "notifications": false, - "screen_name": "BRush_25", - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 943, - "is_translator": false, - "name": "Brandon Rush" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "4220691364", - "following": false, - "friends_count": 33, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sunsetwx.com", - "url": "https://t.co/EQ5OfbQIZd", - "expanded_url": "http://sunsetwx.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3017, - "location": "", - "screen_name": "sunset_wx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "name": "Sunset Weather", - "profile_use_background_image": true, - "description": "Sunset & Sunrise Predictions: Model using an in-depth algorithm comprised of meteorological factors. Developed by @WxDeFlitch, @WxReppert, @hallettwx", - "url": "https://t.co/EQ5OfbQIZd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Nov 18 19:58:34 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", - "favourites_count": 3777, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4220691364, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1812, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4220691364/1447893477", - "is_translator": false - }, - { - "time_zone": "Greenland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "247901736", - "following": false, - "friends_count": 789, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/theblurbarbosa", - "url": "http://t.co/BLAOP8mM9P", - "expanded_url": "http://instagram.com/theblurbarbosa", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "C1C70A", - "geo_enabled": false, - "followers_count": 106436, - "location": "Brazil", - "screen_name": "TheBlurBarbosa", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1024, - "name": "Leandro Barbosa", - "profile_use_background_image": true, - "description": "Jogador de Basquete da NBA. \nThe official account of Leandro Barbosa, basketball player!", - "url": "http://t.co/BLAOP8mM9P", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", - "profile_background_color": "0EC704", - "created_at": "Sat Feb 05 20:31:51 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", - "favourites_count": 614, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", - "default_profile_image": false, - "id": 247901736, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 5009, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/247901736/1406161704", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "858957830", - "following": false, - "friends_count": 265, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 41636, - "location": "", - "screen_name": "gswstats", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 518, - "name": "GSWStats", - "profile_use_background_image": true, - "description": "An official twitter account of the Golden State Warriors, featuring statistics, news and notes about the team throughout the season.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Oct 03 00:50:25 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", - "favourites_count": 9, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 858957830, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 9548, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/858957830/1401380224", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "22965624", - "following": false, - "friends_count": 587, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lafourcade.com.mx", - "url": "http://t.co/CV9kDVyOwc", - "expanded_url": "http://lafourcade.com.mx", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 1704535, - "location": "Mexico, DF", - "screen_name": "lafourcade", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5644, - "name": "Natalia Lafourcade", - "profile_use_background_image": true, - "description": "musico", - "url": "http://t.co/CV9kDVyOwc", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Mar 05 19:38:07 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", - "favourites_count": 249, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile_image": false, - "id": 22965624, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6361, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22965624/1425415118", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3099613624", - "following": false, - "friends_count": 130, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 86207, - "location": "", - "screen_name": "salmahayek", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 488, - "name": "Salma Hayek", - "profile_use_background_image": false, - "description": "After hundreds of impostors, years of procrastination, and a self-imposed allergy to technology, FINALLY I'm here. \u00a1Hola! It's Salma.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Mar 20 15:48:51 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", - "favourites_count": 4, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3099613624, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 96, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3099613624/1438298694", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18441988", - "following": false, - "friends_count": 304, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 245661, - "location": "", - "screen_name": "jrich23", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3054, - "name": "Jason Richardson", - "profile_use_background_image": true, - "description": "Father, Husband and just all around good guy!", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Dec 29 04:04:33 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", - "favourites_count": 5, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", - "default_profile_image": false, - "id": 18441988, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2691, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18441988/1395676880", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15506669", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 73655, - "location": "", - "screen_name": "JeffBezos", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 880, - "name": "Jeff Bezos", - "profile_use_background_image": true, - "description": "Amazon, Blue Origin, Washington Post", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jul 20 22:38:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 15506669, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15506669/1448361938", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "15930926", - "following": false, - "friends_count": 1445, - "entities": { - "description": { - "urls": [ - { - "display_url": "therapfan.com", - "url": "http://t.co/6ty3IIzh7f", - "expanded_url": "http://therapfan.com", - "indices": [ - 101, - 123 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "therapfan.com", - "url": "https://t.co/fVOL5FpVZ3", - "expanded_url": "http://www.therapfan.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": true, - "followers_count": 8755, - "location": "WI - STL - CA - ATL - tour", - "screen_name": "djtrackstar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 194, - "name": "track", - "profile_use_background_image": true, - "description": "Professional Rap Fan. Tour DJ for Run the Jewels. The Smoking Section. WRTJ on Beats1. @peaceimages. http://t.co/6ty3IIzh7f fb/ig:trackstarthedj", - "url": "https://t.co/fVOL5FpVZ3", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Thu Aug 21 13:14:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", - "favourites_count": 6839, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", - "default_profile_image": false, - "id": 15930926, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 32239, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15930926/1388895937", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1496009995", - "following": false, - "friends_count": 634, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/jikpa", - "url": "https://t.co/dNEeeChBZx", - "expanded_url": "http://linkedin.com/in/jikpa", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 612, - "location": "San Francisco, CA", - "screen_name": "jikpapa", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 6, - "name": "Janet Ikpa", - "profile_use_background_image": true, - "description": "Diversity Strategist @Twitter | Past life @Google | @Blackbirds & @WomEng Lead | UC Santa Barbara & Indiana University Alum | \u2764\ufe0f | Thoughts my own", - "url": "https://t.co/dNEeeChBZx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Sun Jun 09 16:16:26 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", - "favourites_count": 2746, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "default_profile_image": false, - "id": 1496009995, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1058, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496009995/1431054902", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "100224999", - "following": false, - "friends_count": 183, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 505, - "location": "San Francisco", - "screen_name": "gabi_dee", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 14, - "name": "Gabrielle Delva", - "profile_use_background_image": false, - "description": "travel enthusiast, professional giggler, gif guru, forever in transition.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Dec 29 13:27:37 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", - "favourites_count": 1373, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "default_profile_image": false, - "id": 100224999, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6503, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/100224999/1426546312", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "18768473", - "following": false, - "friends_count": 2135, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "open.spotify.com/user/brucedais\u2026", - "url": "https://t.co/l0e3ybjdUA", - "expanded_url": "https://open.spotify.com/user/brucedaisley", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 19661, - "location": "", - "screen_name": "brucedaisley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 416, - "name": "Bruce Daisley", - "profile_use_background_image": true, - "description": "Typo strewn tweets about pop music. #HeForShe. Work at Twitter.", - "url": "https://t.co/l0e3ybjdUA", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", - "profile_background_color": "352726", - "created_at": "Thu Jan 08 16:20:21 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", - "favourites_count": 14621, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", - "default_profile_image": false, - "id": 18768473, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 20375, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18768473/1441290267", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "60900903", - "following": false, - "friends_count": 2731, - "entities": { - "description": { - "urls": [ - { - "display_url": "squ.re/1MXEAse", - "url": "https://t.co/lZueerHDOb", - "expanded_url": "http://squ.re/1MXEAse", - "indices": [ - 125, - 148 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mrtodspies.com", - "url": "https://t.co/Bu7ML9v7ZC", - "expanded_url": "http://www.mrtodspies.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2251, - "location": "Aqui Estoy", - "screen_name": "MrTodsPies", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 71, - "name": "Mr. Tod", - "profile_use_background_image": true, - "description": "CEO and Founder of Mr Tod's Pie Factory - ABC Shark Tank's First Winner - Sweet Potato Pie King - Check out my Square Story: https://t.co/lZueerHDOb", - "url": "https://t.co/Bu7ML9v7ZC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Jul 28 13:20:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", - "favourites_count": 423, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", - "default_profile_image": false, - "id": 60900903, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 2574, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/60900903/1432911758", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Founder & CEO of Tinder", - "url": "https://t.co/801oYHR78b", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "6148472", - "blocking": false, - "is_translation_enabled": false, - "id": 6148472, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gotinder.com", - "url": "https://t.co/801oYHR78b", - "expanded_url": "http://gotinder.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri May 18 22:24:10 +0000 2007", - "profile_image_url": "http://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 2152, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", - "favourites_count": 3, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 7032, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 57, - "notifications": false, - "screen_name": "seanrad", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 390, - "is_translator": false, - "name": "Sean Rad" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2163177444", - "following": false, - "friends_count": 61, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 18065, - "location": "", - "screen_name": "HistOpinion", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 299, - "name": "Historical Opinion", - "profile_use_background_image": true, - "description": "Tweets from historical public opinion surveys, US and around the world, 1935-yesterday. Curated by @pashulman.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Oct 29 16:37:52 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", - "favourites_count": 300, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2163177444, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1272, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2163177444/1398739322", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4257979872", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [ - { - "display_url": "on.mash.to/1SWgZ0q", - "url": "https://t.co/XCv9Qbk0fi", - "expanded_url": "http://on.mash.to/1SWgZ0q", - "indices": [ - 105, - 128 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3D4999", - "geo_enabled": false, - "followers_count": 52994, - "location": "", - "screen_name": "ParisVictims", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 214, - "name": "En m\u00e9moire", - "profile_use_background_image": false, - "description": "One tweet for every victim of the terror attacks in Paris on Nov. 13, 2015. This is a @Mashable project.\nhttps://t.co/XCv9Qbk0fi", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", - "profile_background_color": "969494", - "created_at": "Mon Nov 16 15:41:07 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4257979872, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 130, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4257979872/1447689123", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/raiVzM9CC2", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "562267840", - "blocking": false, - "is_translation_enabled": false, - "id": 562267840, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "raine.com", - "url": "http://t.co/raiVzM9CC2", - "expanded_url": "http://www.raine.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 24 19:09:33 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 325, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", - "favourites_count": 60, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 466, - "blocked_by": false, - "following": false, - "location": "NY/LA/SFO/LONDON/ASIA", - "muting": false, - "friends_count": 95, - "notifications": false, - "screen_name": "JoeRavitch", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "is_translator": false, - "name": "Joe Ravitch" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "928744998", - "following": false, - "friends_count": 812, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wakeuptopolitics.com", - "url": "https://t.co/Mwu8QKYT05", - "expanded_url": "http://www.wakeuptopolitics.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1725, - "location": "St. Louis (now), DC (future)", - "screen_name": "WakeUp2Politics", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "Gabe Fleisher", - "profile_use_background_image": false, - "description": "14 yr old Editor, Wake Up To Politics, daily political newsletter. Author. Political junkie. Also attending middle school in my spare time. RTs \u2260 endorsements.", - "url": "https://t.co/Mwu8QKYT05", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Nov 06 01:20:43 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", - "favourites_count": 2832, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", - "default_profile_image": false, - "id": 928744998, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3668, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/928744998/1452145580", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2773453886", - "following": false, - "friends_count": 32, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jumpshotgenie.com", - "url": "http://t.co/IrZ3XgzXdT", - "expanded_url": "http://www.jumpshotgenie.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7724, - "location": "Charlotte, NC", - "screen_name": "DC__for3", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "Dell Curry", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/IrZ3XgzXdT", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Aug 27 14:43:19 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", - "favourites_count": 35, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2773453886, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 69, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2773453886/1409150929", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "798048997", - "following": false, - "friends_count": 2, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "perigee.se", - "url": "http://t.co/2P0WOpJTeV", - "expanded_url": "http://www.perigee.se", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 448, - "location": "", - "screen_name": "PerigeeApps", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Perigee", - "profile_use_background_image": true, - "description": "Crafting useful and desirable apps that solve life's problems in a delightful way.", - "url": "http://t.co/2P0WOpJTeV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Sep 02 11:11:01 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", - "favourites_count": 106, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 798048997, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 433, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/798048997/1447315639", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "I am a robot that live-tweets earthquakes in the San Francisco Bay area. Built by @billsnitzer. Data is from the USGS. Get prepared: http://t.co/VtCEbuw6KH", - "url": "http://t.co/EznRBcY7a7", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "37861434", - "blocking": false, - "is_translation_enabled": false, - "id": 37861434, - "entities": { - "description": { - "urls": [ - { - "display_url": "amzn.to/PayjDo", - "url": "http://t.co/VtCEbuw6KH", - "expanded_url": "http://amzn.to/PayjDo", - "indices": [ - 133, - 155 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "eqbot.com", - "url": "http://t.co/EznRBcY7a7", - "expanded_url": "http://eqbot.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue May 05 04:53:31 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 7780, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", - "favourites_count": 0, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 124449, - "blocked_by": false, - "following": false, - "location": "San Francisco, CA", - "muting": false, - "friends_count": 6, - "notifications": false, - "screen_name": "earthquakesSF", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1540, - "is_translator": false, - "name": "SF QuakeBot" - }, - { - "time_zone": "Atlantic Time (Canada)", - "profile_use_background_image": true, - "description": "Fixes explores solutions to major social problems. Each week, it examines creative initiatives that can tell us about the difference between success and failure", - "url": "http://t.co/dSgWPDl048", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -14400, - "id_str": "249334021", - "blocking": false, - "is_translation_enabled": false, - "id": 249334021, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "opinionator.blogs.nytimes.com/category/fixes/", - "url": "http://t.co/dSgWPDl048", - "expanded_url": "http://opinionator.blogs.nytimes.com/category/fixes/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 08 21:00:21 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 349, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", - "favourites_count": 3, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 7148, - "blocked_by": false, - "following": false, - "location": "New York, NY", - "muting": false, - "friends_count": 55, - "notifications": false, - "screen_name": "nytimesfixes", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 402, - "is_translator": false, - "name": "NYT Fixes Blog" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "360391686", - "following": false, - "friends_count": 707, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chetfaker.com/shows", - "url": "https://t.co/es4xPMVZSh", - "expanded_url": "http://chetfaker.com/shows", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 82004, - "location": "Australia", - "screen_name": "Chet_Faker", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 558, - "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186", - "profile_use_background_image": true, - "description": "unnoficial fan account *parody* no way affiliated with Chet Faker. we \u2665\ufe0fChet Kawai please follow for latest music & check website for more news", - "url": "https://t.co/es4xPMVZSh", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Aug 23 04:05:11 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", - "favourites_count": 12084, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", - "default_profile_image": false, - "id": 360391686, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 8616, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/360391686/1363912234", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "748615879", - "following": false, - "friends_count": 585, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "angstrom.io", - "url": "https://t.co/bwG2E1VYFG", - "expanded_url": "http://angstrom.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 282, - "location": "37.7750\u00b0 N, 122.4183\u00b0 W", - "screen_name": "cacoco", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 8, - "name": "Christopher Coco", - "profile_use_background_image": true, - "description": "life in small doses.", - "url": "https://t.co/bwG2E1VYFG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri Aug 10 04:35:36 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", - "favourites_count": 4543, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", - "default_profile_image": false, - "id": 748615879, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1975, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/748615879/1352437653", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "2652536876", - "following": false, - "friends_count": 102, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pepsico.com", - "url": "https://t.co/SDLqDs6Xfd", - "expanded_url": "http://pepsico.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3513, - "location": "purchase ny", - "screen_name": "IndraNooyi", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "Indra Nooyi", - "profile_use_background_image": true, - "description": "CEO @PEPSICO", - "url": "https://t.co/SDLqDs6Xfd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jul 17 01:35:59 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", - "favourites_count": 7, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2652536876, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 12, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652536876/1446586148", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3274940484", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 395, - "location": "", - "screen_name": "getpolled", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 1, - "name": "@GetPolled", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", - "profile_background_color": "3B94D9", - "created_at": "Sat Jul 11 00:28:05 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3274940484, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 42, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3274940484/1437009659", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": false, - "description": "America's Favorite Icon Designer, Partner @Parakeet", - "url": "https://t.co/MWe41e6Yhi", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "41783", - "blocking": false, - "is_translation_enabled": false, - "id": 41783, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "louiemantia.com", - "url": "https://t.co/MWe41e6Yhi", - "expanded_url": "http://louiemantia.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "A8B4BF", - "created_at": "Tue Dec 05 02:40:37 +0000 2006", - "profile_image_url": "http://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "ABB8C2", - "statuses_count": 102450, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", - "favourites_count": 11672, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 17113, - "blocked_by": false, - "following": false, - "location": "Portland", - "muting": false, - "friends_count": 74, - "notifications": false, - "screen_name": "mantia", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 1118, - "is_translator": false, - "name": "Louie Mantia" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "817288", - "following": false, - "friends_count": 4457, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "techmeme.com", - "url": "http://t.co/2kJ3FyTtAJ", - "expanded_url": "http://techmeme.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 56179, - "location": "SF: Disruptopia, USA", - "screen_name": "gaberivera", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2313, - "name": "Gabe Rivera", - "profile_use_background_image": true, - "description": "I run Techmeme.\r\nSometimes I tweet what I mean. Sometimes I tweet the opposite. Retweets are endorphins.", - "url": "http://t.co/2kJ3FyTtAJ", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", - "profile_background_color": "C6E2EE", - "created_at": "Wed Mar 07 06:23:51 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", - "favourites_count": 13571, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", - "default_profile_image": false, - "id": 817288, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 11636, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/817288/1401467981", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1201139012", - "following": false, - "friends_count": 29, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkd.in/1uiUZno", - "url": "http://t.co/gi5nkD1WcX", - "expanded_url": "http://linkd.in/1uiUZno", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2770, - "location": "Cleveland, Ohio", - "screen_name": "TobyCosgroveMD", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 81, - "name": "Toby Cosgrove, MD", - "profile_use_background_image": false, - "description": "President and CEO, @ClevelandClinic. Cardiothoracic surgeon. U.S. Air Force Veteran.", - "url": "http://t.co/gi5nkD1WcX", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", - "profile_background_color": "065EA8", - "created_at": "Wed Feb 20 13:56:57 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", - "favourites_count": 15, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 1201139012, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 118, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1201139012/1415028437", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4071934995", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 122961, - "location": "twitter.com", - "screen_name": "polls", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 212, - "name": "polls", - "profile_use_background_image": true, - "description": "the most important polls on twitter. Brought to you by @BuzzFeed. DM us your poll ideas!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Oct 30 02:09:51 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", - "favourites_count": 85, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4071934995, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 812, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4071934995/1446225664", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "25084660", - "following": false, - "friends_count": 791, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 422254, - "location": "", - "screen_name": "arzE", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2851, - "name": "Ezra Koenig", - "profile_use_background_image": true, - "description": "vampire weekend inc.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Mar 18 14:52:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", - "favourites_count": 5759, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", - "default_profile_image": false, - "id": 25084660, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 9309, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25084660/1436462636", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "1081562149", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [ - { - "display_url": "favstar.fm/users/seinfeld\u2026", - "url": "https://t.co/GCOoEYISti", - "expanded_url": "http://favstar.fm/users/seinfeld2000", - "indices": [ - 71, - 94 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 101814, - "location": "", - "screen_name": "Seinfeld2000", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 779, - "name": "Seinfeld Current Day", - "profile_use_background_image": true, - "description": "Imagen Seinfeld was never canceled and still NBC comedy program today? https://t.co/GCOoEYISti", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jan 12 02:17:49 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", - "favourites_count": 56619, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", - "default_profile_image": false, - "id": 1081562149, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 6600, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1081562149/1452223878", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "23699191", - "following": false, - "friends_count": 524, - "entities": { - "description": { - "urls": [ - { - "display_url": "noisey.vice.com/en_uk/noisey-s", - "url": "https://t.co/oXek0Yp2he", - "expanded_url": "http://noisey.vice.com/en_uk/noisey-s", - "indices": [ - 75, - 98 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "helloskepta.com", - "url": "https://t.co/LCjnqqo5cF", - "expanded_url": "http://www.helloskepta.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 667153, - "location": "", - "screen_name": "Skepta", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1287, - "name": "SKEPTA", - "profile_use_background_image": true, - "description": "Bookings: grace@metallicmgmt.com jonathanbriks@theagencygroup.com\n\n#TopBoy https://t.co/oXek0Yp2he\u2026", - "url": "https://t.co/LCjnqqo5cF", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Mar 11 01:31:36 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", - "favourites_count": 1, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 23699191, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 30142, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23699191/1431890723", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "937499232", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "malala.org", - "url": "http://t.co/nyY0R0rWL2", - "expanded_url": "http://malala.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 64783, - "location": "Pakistan", - "screen_name": "Malala", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 311, - "name": "Malala Yousafzai", - "profile_use_background_image": false, - "description": "Please follow @MalalaFund for Tweets from Malala and updates on her work.", - "url": "http://t.co/nyY0R0rWL2", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Nov 09 18:34:52 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 937499232, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 0, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/937499232/1444529280", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Nobel Peace Prize 2014 winner. \nFounder-Global March Against Child Labour (@kNOwchildlabour) &\nBachpan Bachao Andolan. RTs not endorsements.", - "url": "http://t.co/p9X5Y5bZLm", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2477802067", - "blocking": false, - "is_translation_enabled": false, - "id": 2477802067, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "satyarthi.org", - "url": "http://t.co/p9X5Y5bZLm", - "expanded_url": "http://www.satyarthi.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon May 05 04:07:33 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 803, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", - "favourites_count": 173, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 180027, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 60, - "notifications": false, - "screen_name": "k_satyarthi", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 514, - "is_translator": false, - "name": "Kailash Satyarthi" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14439813", - "following": false, - "friends_count": 334, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 58956, - "location": "atlanta & nyc", - "screen_name": "wnd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 412, - "name": "wendy clark", - "profile_use_background_image": true, - "description": "mom :: ceo ddb/na :: relentless optimist", - "url": null, - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", - "profile_background_color": "352726", - "created_at": "Sat Apr 19 02:18:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", - "favourites_count": 8837, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "default_profile_image": false, - "id": 14439813, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4316, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14439813/1451700372", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "31898295", - "following": false, - "friends_count": 3108, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": true, - "followers_count": 4303, - "location": "", - "screen_name": "Derella", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 68, - "name": "matt derella", - "profile_use_background_image": true, - "description": "Rookie Dad, Lucky Husband, Ice Cream Addict. Remember, You Have Superpowers.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", - "profile_background_color": "709397", - "created_at": "Thu Apr 16 15:34:22 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", - "favourites_count": 6095, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "default_profile_image": false, - "id": 31898295, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2137, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/31898295/1350353093", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "38422658", - "following": false, - "friends_count": 1684, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "F057F0", - "geo_enabled": true, - "followers_count": 10933, - "location": "San Francisco*", - "screen_name": "melissabarnes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 247, - "name": "Melissa Barnes", - "profile_use_background_image": false, - "description": "Global Brands @Twitter. Easily entertained. Black coffee, please.", - "url": null, - "profile_text_color": "FF6F00", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu May 07 12:42:42 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", - "favourites_count": 7486, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", - "default_profile_image": false, - "id": 38422658, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1713, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/38422658/1383346519", - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "21007030", - "following": false, - "friends_count": 3161, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rio2016.com", - "url": "https://t.co/q8z1zrW1rr", - "expanded_url": "http://www.rio2016.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", - "notifications": false, - "profile_sidebar_fill_color": "A4CC35", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 222873, - "location": "Rio de Janeiro", - "screen_name": "Rio2016", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1236, - "name": "Rio 2016", - "profile_use_background_image": false, - "description": "Perfil oficial do Comit\u00ea Organizador dos Jogos Ol\u00edmpicos e Paral\u00edmpicos Rio 2016 em Portugu\u00eas. English:@rio2016_en. Espa\u00f1ol: @rio2016_es.", - "url": "https://t.co/q8z1zrW1rr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", - "profile_background_color": "FA743E", - "created_at": "Mon Feb 16 17:48:07 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", - "favourites_count": 1422, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", - "default_profile_image": false, - "id": 21007030, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7248, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21007030/1451309674", - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "88703900", - "following": false, - "friends_count": 600, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rio2016.com/en/home", - "url": "http://t.co/BFr0Z1jKEP", - "expanded_url": "http://www.rio2016.com/en/home", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", - "notifications": false, - "profile_sidebar_fill_color": "A4CC35", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 245882, - "location": "Rio de Janeiro", - "screen_name": "Rio2016_en", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1216, - "name": "Rio 2016", - "profile_use_background_image": true, - "description": "Official Rio 2016\u2122 Olympic and Paralympic Organizing Committee in English. Portugu\u00eas:@rio2016. Espa\u00f1ol: @rio2016_es.", - "url": "http://t.co/BFr0Z1jKEP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Nov 09 16:44:38 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F7AF08", - "lang": "pt", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", - "favourites_count": 1369, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", - "default_profile_image": false, - "id": 88703900, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5098, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/88703900/1451306802", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "584263864", - "following": false, - "friends_count": 372, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "005FB3", - "geo_enabled": true, - "followers_count": 642, - "location": "", - "screen_name": "edgett", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Sean Edgett", - "profile_use_background_image": true, - "description": "Corporate lawyer at Twitter. Comments here are my own.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Fri May 18 23:43:39 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", - "favourites_count": 1187, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", - "default_profile_image": false, - "id": 584263864, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 634, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/584263864/1442269032", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "4048046116", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 176589, - "location": "Turn On Our Notifications!", - "screen_name": "24HourPolls", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 102, - "name": "24 Hour Polls", - "profile_use_background_image": true, - "description": "| The Best Polls On Twitter | Original Account | *DM's Are Open For Suggestions!*", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 26 18:33:54 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", - "favourites_count": 609, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 4048046116, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 810, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048046116/1445886946", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2881611", - "following": false, - "friends_count": 1289, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/prashantsri\u2026", - "url": "https://t.co/d3WaCy2EU1", - "expanded_url": "http://www.linkedin.com/in/prashantsridharan", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 11192, - "location": "San Francisco", - "screen_name": "CoolAssPuppy", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 96, - "name": "Prashant S", - "profile_use_background_image": true, - "description": "Twitter Global Director of Developer & Platform Relations. I @SoulCycle, therefore I am. #PopcornHo", - "url": "https://t.co/d3WaCy2EU1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Mar 29 19:21:15 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", - "favourites_count": 13108, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", - "default_profile_image": false, - "id": 2881611, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 21197, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2881611/1446596289", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2990843386", - "following": false, - "friends_count": 53, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 818, - "location": "Salt Lake City, UT", - "screen_name": "pinkgrandmas", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Pink Grandmas", - "profile_use_background_image": true, - "description": "The @PinkGrandmas who lovingly cheer for their Utah Jazz, and always in pink!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jan 21 23:13:42 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", - "favourites_count": 108, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2990843386, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 139, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2990843386/1421883592", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15105000", - "following": false, - "friends_count": 1161, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "iSachin.com", - "url": "http://t.co/AWr3VV2avy", - "expanded_url": "http://iSachin.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": true, - "followers_count": 20842, - "location": "San Francisco, CA", - "screen_name": "agarwal", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 1324, - "name": "Sachin Agarwal", - "profile_use_background_image": true, - "description": "Product at Twitter. Past: @Stanford, Apple, Founder/CEO of @posterous. I \u2764\ufe0f @kateagarwal, cars, wine, puppies, and foie.", - "url": "http://t.co/AWr3VV2avy", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Fri Jun 13 06:49:22 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", - "favourites_count": 16040, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "default_profile_image": false, - "id": 15105000, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 11185, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15105000/1427478415", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "569900436", - "following": false, - "friends_count": 119, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 437, - "location": "", - "screen_name": "akkhosh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "alex", - "profile_use_background_image": true, - "description": "alex at periscope.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu May 03 09:06:30 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", - "favourites_count": 2, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 569900436, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 0, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/569900436/1422657776", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Father, Husband, Head Basketball Coach LA Clippers, Maywood Native", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "4027765453", - "blocking": false, - "is_translation_enabled": false, - "id": 4027765453, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 26 19:49:37 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 3, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 18514, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 22, - "notifications": false, - "screen_name": "DocRivers", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 178, - "is_translator": false, - "name": "doc rivers" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "54226675", - "following": false, - "friends_count": 220, - "entities": { - "description": { - "urls": [ - { - "display_url": "support.twitter.com/forms/translat\u2026", - "url": "http://t.co/SOm6i336Up", - "expanded_url": "http://support.twitter.com/forms/translation", - "indices": [ - 82, - 104 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "translate.twitter.com", - "url": "https://t.co/K91mYVcFjL", - "expanded_url": "http://translate.twitter.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2950587, - "location": "", - "screen_name": "translator", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2694, - "name": "Translator", - "profile_use_background_image": true, - "description": "Twitter's Translator Community. Got questions or found a bug? Fill out this form: http://t.co/SOm6i336Up", - "url": "https://t.co/K91mYVcFjL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 06 14:59:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", - "favourites_count": 170, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", - "default_profile_image": false, - "id": 54226675, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1708, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/54226675/1347394452", - "is_translator": true - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "376825877", - "following": false, - "friends_count": 48, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "opensource.twitter.com", - "url": "http://t.co/Hc7Cv220E7", - "expanded_url": "http://opensource.twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 282967, - "location": "Twitter HQ", - "screen_name": "TwitterOSS", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1987, - "name": "Twitter Open Source", - "profile_use_background_image": true, - "description": "Open Programs at Twitter.", - "url": "http://t.co/Hc7Cv220E7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Sep 20 15:18:34 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", - "favourites_count": 3323, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 376825877, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 5355, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/376825877/1396969577", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17874544", - "following": false, - "friends_count": 31, - "entities": { - "description": { - "urls": [ - { - "display_url": "support.twitter.com", - "url": "http://t.co/qq1HEzdMA2", - "expanded_url": "http://support.twitter.com", - "indices": [ - 118, - 140 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "support.twitter.com", - "url": "http://t.co/Vk1NkwU8qP", - "expanded_url": "http://support.twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4606293, - "location": "Twitter HQ", - "screen_name": "Support", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 13844, - "name": "Twitter Support", - "profile_use_background_image": true, - "description": "We Tweet tips and tricks to help you boost your Twitter skills and keep your account secure. For detailed help, visit http://t.co/qq1HEzdMA2.", - "url": "http://t.co/Vk1NkwU8qP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Dec 04 18:51:57 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", - "favourites_count": 300, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", - "default_profile_image": false, - "id": 17874544, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 14056, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17874544/1347394418", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6253282", - "following": false, - "friends_count": 48, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dev.twitter.com", - "url": "http://t.co/78pYTvWfJd", - "expanded_url": "http://dev.twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 5243787, - "location": "San Francisco, CA", - "screen_name": "twitterapi", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 12998, - "name": "Twitter API", - "profile_use_background_image": true, - "description": "The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.", - "url": "http://t.co/78pYTvWfJd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed May 23 06:01:13 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", - "favourites_count": 27, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", - "default_profile_image": false, - "id": 6253282, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 3554, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1431474710", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "95731075", - "following": false, - "friends_count": 85, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "safety.twitter.com", - "url": "https://t.co/mAjmahDXqp", - "expanded_url": "https://safety.twitter.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2920147, - "location": "Twitter HQ", - "screen_name": "safety", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 7562, - "name": "Safety", - "profile_use_background_image": true, - "description": "Helping you stay safe on Twitter.", - "url": "https://t.co/mAjmahDXqp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", - "profile_background_color": "022330", - "created_at": "Wed Dec 09 21:00:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", - "favourites_count": 5, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile_image": false, - "id": 95731075, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 399, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/95731075/1416521916", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "204343158", - "following": false, - "friends_count": 286, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "1stdibs.com", - "url": "http://t.co/GyCLcPK1G6", - "expanded_url": "http://www.1stdibs.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3E9DE0", - "geo_enabled": true, - "followers_count": 5054, - "location": "New York, NY", - "screen_name": "rosenblattdavid", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 60, - "name": "David Rosenblatt", - "profile_use_background_image": true, - "description": "CEO at 1stdibs", - "url": "http://t.co/GyCLcPK1G6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 18 13:56:10 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", - "favourites_count": 245, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", - "default_profile_image": false, - "id": 204343158, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 376, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/204343158/1448985578", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "19417999", - "following": false, - "friends_count": 14503, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "itun.es/us/Q4QZ6", - "url": "https://t.co/1snyy96FWE", - "expanded_url": "https://itun.es/us/Q4QZ6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 57238, - "location": "Invite The Light \u2022 Out now.", - "screen_name": "DaMFunK", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1338, - "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK", - "profile_use_background_image": true, - "description": "\u2022 Modern-Funk | No fads | No sellout \u2022", - "url": "https://t.co/1snyy96FWE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Jan 23 22:31:59 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", - "favourites_count": 52062, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", - "default_profile_image": false, - "id": 19417999, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 41219, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19417999/1441340768", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17230018", - "following": false, - "friends_count": 17947, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Spotify.com", - "url": "http://t.co/jqAb65DqrK", - "expanded_url": "http://Spotify.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "ECEBE8", - "profile_link_color": "1ED760", - "geo_enabled": true, - "followers_count": 1644482, - "location": "", - "screen_name": "Spotify", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 14006, - "name": "Spotify", - "profile_use_background_image": false, - "description": "Music for every moment. Play, discover, and share for free. \r\nNeed support? We're happy to help at @SpotifyCares", - "url": "http://t.co/jqAb65DqrK", - "profile_text_color": "458DBF", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Fri Nov 07 12:14:28 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", - "favourites_count": 4977, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", - "default_profile_image": false, - "id": 17230018, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 23164, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17230018/1450966022", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "The Official Twitter Page of Seth MacFarlane - new album No One Ever Tells You available now on iTunes https://t.co/gLePVn5Mho", - "url": "https://t.co/o4miqWAHnW", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "18948541", - "blocking": false, - "is_translation_enabled": true, - "id": 18948541, - "entities": { - "description": { - "urls": [ - { - "display_url": "itun.es/us/Vx9p-", - "url": "https://t.co/gLePVn5Mho", - "expanded_url": "http://itun.es/us/Vx9p-", - "indices": [ - 103, - 126 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/pages/Seth-Mac\u2026", - "url": "https://t.co/o4miqWAHnW", - "expanded_url": "http://www.facebook.com/pages/Seth-MacFarlane/14105972607?ref=ts", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 13 19:04:37 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 5295, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 8866646, - "blocked_by": false, - "following": false, - "location": "Los Angeles", - "muting": false, - "friends_count": 349, - "notifications": false, - "screen_name": "SethMacFarlane", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 32336, - "is_translator": false, - "name": "Seth MacFarlane" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "96829836", - "following": false, - "friends_count": 188, - "entities": { - "description": { - "urls": [ - { - "display_url": "smarturl.it/illmaticxx_itu\u2026", - "url": "http://t.co/GQVoyTHAXi", - "expanded_url": "http://smarturl.it/illmaticxx_itunes", - "indices": [ - 29, - 51 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "TribecaFilm.com/Nas", - "url": "http://t.co/Ol6HETXMsd", - "expanded_url": "http://TribecaFilm.com/Nas", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1896372, - "location": "NYC", - "screen_name": "Nas", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8574, - "name": "Nasir Jones", - "profile_use_background_image": true, - "description": "Illmatic XX now available: \r\nhttp://t.co/GQVoyTHAXi", - "url": "http://t.co/Ol6HETXMsd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 14 20:03:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", - "favourites_count": 3, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", - "default_profile_image": false, - "id": 96829836, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 4514, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/96829836/1412353651", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "422665701", - "following": false, - "friends_count": 1877, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "smarturl.it/TrapTearsVid", - "url": "https://t.co/bSTapnSbtt", - "expanded_url": "http://smarturl.it/TrapTearsVid", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "0A0A0A", - "profile_link_color": "8F120E", - "geo_enabled": true, - "followers_count": 113351, - "location": "", - "screen_name": "Raury", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 326, - "name": "AWN", - "profile_use_background_image": true, - "description": "being of light , right on time #indigo #millennial new album #AllWeNeed", - "url": "https://t.co/bSTapnSbtt", - "profile_text_color": "A30A0A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Nov 27 14:50:29 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", - "favourites_count": 9695, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", - "default_profile_image": false, - "id": 422665701, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 35237, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/422665701/1444935009", - "is_translator": false - }, - { - "time_zone": "Baghdad", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 10800, - "id_str": "1499345785", - "following": false, - "friends_count": 31, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 21461, - "location": "", - "screen_name": "Iarsulrich", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 73, - "name": "Lars Ulrich", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Jun 10 20:39:52 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", - "favourites_count": 14, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", - "default_profile_image": false, - "id": 1499345785, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499345785/1438456012", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7698", - "following": false, - "friends_count": 758, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "monkey.org/~marius/", - "url": "https://t.co/Fd7AtAPU13", - "expanded_url": "http://monkey.org/~marius/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 8435, - "location": "Silicon Valley", - "screen_name": "marius", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 296, - "name": "marius eriksen", - "profile_use_background_image": true, - "description": "I spend most days cursing at lots of very tiny electronics.", - "url": "https://t.co/Fd7AtAPU13", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Sat Oct 07 06:53:18 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", - "favourites_count": 4808, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "default_profile_image": false, - "id": 7698, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7425, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7698/1413383522", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18819527", - "following": false, - "friends_count": 3066, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "travelocity.com", - "url": "http://t.co/GxUHwpGZyC", - "expanded_url": "http://travelocity.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 80685, - "location": "", - "screen_name": "RoamingGnome", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1434, - "name": "Travelocity Gnome", - "profile_use_background_image": true, - "description": "The official globetrotting ornament. Nabbed from a very boring garden to travel the world. You can find me on instagram @roaminggnome", - "url": "http://t.co/GxUHwpGZyC", - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", - "profile_background_color": "89C9FA", - "created_at": "Fri Jan 09 23:08:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", - "favourites_count": 4816, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", - "default_profile_image": false, - "id": 18819527, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 10405, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18819527/1398261580", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "32765534", - "following": false, - "friends_count": 326, - "entities": { - "description": { - "urls": [ - { - "display_url": "billsimmonspodcast.com", - "url": "https://t.co/vjQN5lsu7P", - "expanded_url": "http://www.billsimmonspodcast.com", - "indices": [ - 44, - 67 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "grantland.com/features/compl\u2026", - "url": "https://t.co/FAEjPf1Iwj", - "expanded_url": "http://grantland.com/features/complete-column-archives-grantland-edition/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": false, - "followers_count": 4767987, - "location": "Los Angeles (via Boston)", - "screen_name": "BillSimmons", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 32240, - "name": "Bill Simmons", - "profile_use_background_image": true, - "description": "Host of The Bill Simmons Podcast - links at https://t.co/vjQN5lsu7P. My HBO show = 2016. Once ran a Grantland cult according to 2 unnamed ESPN execs.", - "url": "https://t.co/FAEjPf1Iwj", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Sat Apr 18 03:37:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", - "favourites_count": 9, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", - "default_profile_image": false, - "id": 32765534, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 15280, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/32765534/1445653325", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -14400, - "id_str": "44039298", - "blocking": false, - "is_translation_enabled": false, - "id": 44039298, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 02 02:35:39 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 6071, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", - "favourites_count": 49, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 3616527, - "blocked_by": false, - "following": false, - "location": "New York", - "muting": false, - "friends_count": 545, - "notifications": false, - "screen_name": "sethmeyers", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 20373, - "is_translator": false, - "name": "Seth Meyers" - }, - { - "time_zone": "UTC", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "104969057", - "following": false, - "friends_count": 493, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "McKellen.com", - "url": "http://t.co/g38r3qsinW", - "expanded_url": "http://www.McKellen.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "050505", - "geo_enabled": false, - "followers_count": 2903598, - "location": "London, UK", - "screen_name": "IanMcKellen", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 12050, - "name": "Ian McKellen", - "profile_use_background_image": true, - "description": "actor and activist", - "url": "http://t.co/g38r3qsinW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Thu Jan 14 23:29:56 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", - "favourites_count": 95, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 104969057, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1314, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/104969057/1449683945", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "241964676", - "following": false, - "friends_count": 226, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Grantland.com", - "url": "http://t.co/qx60xDYYa3", - "expanded_url": "http://www.Grantland.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/414549914/bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F5F5F5", - "profile_link_color": "BF1E2E", - "geo_enabled": false, - "followers_count": 508445, - "location": "Los Angeles, CA", - "screen_name": "Grantland33", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8432, - "name": "Grantland", - "profile_use_background_image": true, - "description": "Home of the Triangle | Hollywood Prospectus.", - "url": "http://t.co/qx60xDYYa3", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jan 23 16:06:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBDDDE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", - "favourites_count": 238, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/414549914/bg.jpg", - "default_profile_image": false, - "id": 241964676, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 26406, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/241964676/1441915615", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "615999145", - "blocking": false, - "is_translation_enabled": false, - "id": 615999145, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Jun 23 10:24:53 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", - "favourites_count": 6, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 766, - "blocked_by": false, - "following": false, - "location": "Los Angeles", - "muting": false, - "friends_count": 127, - "notifications": false, - "screen_name": "KikiShaf", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "Bee Shaffer" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "Arts and entertainment news from The New York Times.", - "url": "http://t.co/0H74AaBX8Y", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "1440641", - "blocking": false, - "is_translation_enabled": false, - "id": 1440641, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nytimes.com/arts", - "url": "http://t.co/0H74AaBX8Y", - "expanded_url": "http://www.nytimes.com/arts", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "FFFFFF", - "created_at": "Sun Mar 18 20:30:33 +0000 2007", - "profile_image_url": "http://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "E7EFF8", - "profile_link_color": "004276", - "statuses_count": 91388, - "profile_sidebar_border_color": "323232", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", - "favourites_count": 21, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1862334, - "blocked_by": false, - "following": false, - "location": "New York, NY", - "muting": false, - "friends_count": 88, - "notifications": false, - "screen_name": "nytimesarts", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17928, - "is_translator": false, - "name": "New York Times Arts" - }, - { - "time_zone": "Greenland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "16465385", - "following": false, - "friends_count": 536, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nobelprize.org", - "url": "http://t.co/If9cQQEL4i", - "expanded_url": "http://nobelprize.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E2E8EA", - "profile_link_color": "307497", - "geo_enabled": true, - "followers_count": 177895, - "location": "Stockholm, Sweden", - "screen_name": "NobelPrize", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3279, - "name": "The Nobel Prize", - "profile_use_background_image": true, - "description": "The official Twitter feed of the Nobel Prize @NobelPrize #NobelPrize", - "url": "http://t.co/If9cQQEL4i", - "profile_text_color": "023C59", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Fri Sep 26 08:47:58 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", - "favourites_count": 198, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", - "default_profile_image": false, - "id": 16465385, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 4674, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16465385/1450099641", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Views expressed here do not necessarily belong to my employer. Or to me.", - "url": "http://t.co/XcGA9qM04D", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "14550962", - "blocking": false, - "is_translation_enabled": false, - "id": 14550962, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "agoranomic.org", - "url": "http://t.co/XcGA9qM04D", - "expanded_url": "http://agoranomic.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 26 20:13:43 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 23885, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", - "favourites_count": 88, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 213142, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 250, - "notifications": false, - "screen_name": "comex", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6400, - "is_translator": false, - "name": "comex" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2813652210", - "following": false, - "friends_count": 2434, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kickstarter.com/projects/19573\u2026", - "url": "https://t.co/giNNN1E1AC", - "expanded_url": "https://www.kickstarter.com/projects/1957344648/meow-the-jewels", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7925, - "location": "", - "screen_name": "MeowTheJewels", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "#MeowTheJewels", - "profile_use_background_image": true, - "description": "You are listening to Meow The Jewels! Now a RTJ ran account.", - "url": "https://t.co/giNNN1E1AC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 16 20:55:34 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", - "favourites_count": 4674, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2813652210, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3280, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2813652210/1410988523", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "237548529", - "following": false, - "friends_count": 207, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "humansofnewyork.com", - "url": "http://t.co/GdwTtrMd37", - "expanded_url": "http://www.humansofnewyork.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "233294", - "geo_enabled": false, - "followers_count": 382303, - "location": "New York, NY", - "screen_name": "humansofny", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2432, - "name": "Brandon Stanton", - "profile_use_background_image": true, - "description": "Creator of the blog and #1 NYT bestselling book, Humans of New York. I take pictures of people on the street and ask them questions.", - "url": "http://t.co/GdwTtrMd37", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", - "profile_background_color": "6E757A", - "created_at": "Thu Jan 13 02:43:38 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", - "favourites_count": 1094, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", - "default_profile_image": false, - "id": 237548529, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5325, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/237548529/1412171810", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16600574", - "following": false, - "friends_count": 80792, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "adambouska.com", - "url": "https://t.co/iCi6oiInzM", - "expanded_url": "http://www.adambouska.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 201288, - "location": "Los Angeles, California", - "screen_name": "bouska", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2581, - "name": "Adam Bouska", - "profile_use_background_image": true, - "description": "Fashion Photographer & NOH8 Campaign Co-Founder \u2605\u2605\u2605\u2605\u2605\ninfo@bouska.net", - "url": "https://t.co/iCi6oiInzM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Oct 05 10:48:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", - "favourites_count": 2581, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", - "default_profile_image": false, - "id": 16600574, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 15632, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16600574/1435020398", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -36000, - "id_str": "526316060", - "blocking": false, - "is_translation_enabled": false, - "id": 526316060, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Fri Mar 16 11:53:45 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 11, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 479572, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 27, - "notifications": false, - "screen_name": "DaveChappelle", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3124, - "is_translator": false, - "name": "David Chappelle" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "VP of Engineering @Twitter", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "1188951", - "blocking": false, - "is_translation_enabled": false, - "id": 1188951, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "9AE4E8", - "created_at": "Wed Mar 14 23:09:57 +0000 2007", - "profile_image_url": "http://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "DD2E44", - "statuses_count": 1867, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", - "favourites_count": 1069, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 2211, - "blocked_by": false, - "following": false, - "location": "San Francisco, CA", - "muting": false, - "friends_count": 258, - "notifications": false, - "screen_name": "eyeseewaters", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 64, - "is_translator": false, - "name": "Nandini Ramani" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "43421130", - "following": false, - "friends_count": 147, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "treasureislandfestival.com", - "url": "http://t.co/1kda6aZhAJ", - "expanded_url": "http://www.treasureislandfestival.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", - "notifications": false, - "profile_sidebar_fill_color": "F1DAC1", - "profile_link_color": "FF9966", - "geo_enabled": false, - "followers_count": 12638, - "location": "San Francisco, CA", - "screen_name": "timfsf", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 576, - "name": "Treasure Island Fest", - "profile_use_background_image": true, - "description": "Thanks to everyone who joined us for the 2015 festival in the bay on October 17-18, 2015! 2016 details coming soon.", - "url": "http://t.co/1kda6aZhAJ", - "profile_text_color": "4F2A10", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", - "profile_background_color": "33CCCC", - "created_at": "Fri May 29 22:09:36 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", - "favourites_count": 810, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", - "default_profile_image": false, - "id": 43421130, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 2478, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43421130/1446147173", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "CEO Netflix", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "15241557", - "blocking": false, - "is_translation_enabled": false, - "id": 15241557, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 26 07:24:42 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 40, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", - "favourites_count": 10, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 11467, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 51, - "notifications": false, - "screen_name": "reedhastings", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 331, - "is_translator": false, - "name": "Reed Hastings" - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "454423650", - "following": false, - "friends_count": 465, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "006399", - "geo_enabled": true, - "followers_count": 1606, - "location": "San Francisco", - "screen_name": "tinab", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Tina Bhatnagar", - "profile_use_background_image": true, - "description": "Love food, sleep and being pampered. Difference between me and a baby? I work @Twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Jan 04 00:04:22 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", - "favourites_count": 1021, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", - "default_profile_image": false, - "id": 454423650, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1713, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/454423650/1451600055", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3751591514", - "following": false, - "friends_count": 21, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 8853, - "location": "Bellevue, WA", - "screen_name": "Steven_Ballmer", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 160, - "name": "Steve Ballmer", - "profile_use_background_image": false, - "description": "Lots going on", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", - "profile_background_color": "000000", - "created_at": "Thu Oct 01 20:37:37 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", - "favourites_count": 1, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3751591514, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 12, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3751591514/1444998576", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Author", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "845743333", - "blocking": false, - "is_translation_enabled": false, - "id": 845743333, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "022330", - "created_at": "Tue Sep 25 15:36:17 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "statuses_count": 18368, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", - "favourites_count": 55, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 139576, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 80, - "notifications": false, - "screen_name": "JoyceCarolOates", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2614, - "is_translator": false, - "name": "Joyce Carol Oates" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "292626949", - "following": false, - "friends_count": 499, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2326, - "location": "", - "screen_name": "singhtv", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 49, - "name": "Baljeet Singh", - "profile_use_background_image": true, - "description": "twitter product lead, SF transplant, hip hop head, outdoors lover, father of the coolest kid ever", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue May 03 23:41:04 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", - "favourites_count": 1294, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 292626949, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 244, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/292626949/1385075905", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "70976011", - "following": false, - "friends_count": 694, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 772, - "location": "San Francisco, CA", - "screen_name": "jdrishel", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 36, - "name": "Jeremy Rishel", - "profile_use_background_image": true, - "description": "Engineering @twitter ~ @mit CS, Philosophy, & MBA ~ Former @usmc ~ Proud supporter of @calacademy, @americanatheist, @rdfrs, @mca_marines, & @sfjazz", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 02 14:22:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", - "favourites_count": 1879, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 70976011, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 791, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70976011/1435923511", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5943622", - "following": false, - "friends_count": 5847, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "a16z.com", - "url": "http://t.co/kn6m038bNW", - "expanded_url": "http://www.a16z.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "12297A", - "geo_enabled": false, - "followers_count": 464534, - "location": "Menlo Park, CA", - "screen_name": "pmarca", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8616, - "name": "Marc Andreessen", - "profile_use_background_image": true, - "description": "\u201cI don\u2019t mean you\u2019re all going to be happy. You\u2019ll be unhappy \u2013 but in new, exciting and important ways.\u201d \u2013 Edwin Land", - "url": "http://t.co/kn6m038bNW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu May 10 23:39:54 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", - "favourites_count": 208337, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", - "default_profile_image": false, - "id": 5943622, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 83568, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5943622/1419247370", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "127062637", - "following": false, - "friends_count": 169, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 19341, - "location": "California, USA", - "screen_name": "omidkordestani", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 202, - "name": "Omid Kordestani", - "profile_use_background_image": false, - "description": "Executive Chairman @twitter", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Mar 27 23:05:58 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", - "favourites_count": 60, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 127062637, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 33, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/127062637/1445924351", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3913671", - "following": false, - "friends_count": 634, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thecodemill.biz", - "url": "http://t.co/jfXOm28eAR", - "expanded_url": "http://thecodemill.biz/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1469, - "location": "Santa Cruz/San Francisco, CA", - "screen_name": "bartt", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 55, - "name": "Bart Teeuwisse", - "profile_use_background_image": false, - "description": "Early riser to hack, build, run, bike, climb & ski. Formerly @twitter, @yahoo & various startups", - "url": "http://t.co/jfXOm28eAR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", - "profile_background_color": "F9F9F9", - "created_at": "Mon Apr 09 15:19:14 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", - "favourites_count": 840, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", - "default_profile_image": false, - "id": 3913671, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 7226, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3913671/1405375593", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "348942463", - "following": false, - "friends_count": 1107, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ie.linkedin.com/in/stephenmcin\u2026", - "url": "http://t.co/ECVj1K5Thi", - "expanded_url": "http://ie.linkedin.com/in/stephenmcintyre", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 11959, - "location": "EMEA HQ, Dublin, Ireland", - "screen_name": "stephenpmc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 180, - "name": "Stephen McIntyre", - "profile_use_background_image": true, - "description": "Building Twitter's business in Europe, Middle East, and Africa. VP Sales, MD Ireland.", - "url": "http://t.co/ECVj1K5Thi", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", - "profile_background_color": "BADFCD", - "created_at": "Fri Aug 05 07:57:24 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", - "favourites_count": 3642, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "default_profile_image": false, - "id": 348942463, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3902, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/348942463/1347467641", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "Visit ScienceDaily to read breaking news about the latest discoveries in science, health, the environment, and technology.", - "url": "http://t.co/DQWVlXDGLC", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "18700629", - "blocking": false, - "is_translation_enabled": false, - "id": 18700629, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sciencedaily.com", - "url": "http://t.co/DQWVlXDGLC", - "expanded_url": "http://www.sciencedaily.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 06 23:14:22 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 27241, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 171078, - "blocked_by": false, - "following": false, - "location": "Rockville, MD", - "muting": false, - "friends_count": 1, - "notifications": false, - "screen_name": "ScienceDaily", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5575, - "is_translator": false, - "name": "ScienceDaily" - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "23331708", - "following": false, - "friends_count": 495, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "247laundryservice.com", - "url": "https://t.co/iLa6wu5cWo", - "expanded_url": "http://www.247laundryservice.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "7D7D7D", - "geo_enabled": true, - "followers_count": 33480, - "location": "Brooklyn", - "screen_name": "jasonwstein", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 231, - "name": "Jason Stein", - "profile_use_background_image": false, - "description": "founder/ceo of @247LS + @bycycle", - "url": "https://t.co/iLa6wu5cWo", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Sun Mar 08 17:45:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", - "favourites_count": 22898, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", - "default_profile_image": false, - "id": 23331708, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 19835, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23331708/1435423055", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Former Professional Tennis Player, New York Times Best Selling Author, and proud Husband and Father. Founder of the James Blake Foundation.", - "url": "http://t.co/CMTAZXOYcQ", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "3668032217", - "blocking": false, - "is_translation_enabled": false, - "id": 3668032217, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jamesblaketennis.com", - "url": "http://t.co/CMTAZXOYcQ", - "expanded_url": "http://jamesblaketennis.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 15 21:43:58 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 344, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", - "favourites_count": 589, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 8378, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 193, - "notifications": false, - "screen_name": "JRBlake", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 135, - "is_translator": false, - "name": "James Blake" - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "1263452575", - "following": false, - "friends_count": 149, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paperrockmusic.com", - "url": "http://t.co/HG6rAVrAPT", - "expanded_url": "http://paperrockmusic.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 99, - "location": "Brooklyn, Ny", - "screen_name": "PaperrockRcrds", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Paperrock Records", - "profile_use_background_image": true, - "description": "Independent Record Label founded by World renown Hip-Hop artist Spliff Star Also known as Mr. Lewis |\r\nInstagram - Paperrockrecords #BigRings", - "url": "http://t.co/HG6rAVrAPT", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Mar 13 03:11:40 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", - "favourites_count": 3, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", - "default_profile_image": false, - "id": 1263452575, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 45, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1263452575/1365098791", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1085", - "following": false, - "friends_count": 206, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "niallkennedy.com", - "url": "http://t.co/JhRVjTpizS", - "expanded_url": "http://www.niallkennedy.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 1848, - "location": "San Francisco, CA", - "screen_name": "niall", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 87, - "name": "Niall Kennedy", - "profile_use_background_image": false, - "description": "Tech, food, puppies, and nature in and around San Francisco.", - "url": "http://t.co/JhRVjTpizS", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Jul 16 00:43:24 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", - "favourites_count": 34, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 1085, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1321, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1085/1420868587", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18825961", - "following": false, - "friends_count": 1086, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/skrillex", - "url": "http://t.co/kEuzso7gAM", - "expanded_url": "http://facebook.com/skrillex", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4721544, - "location": "\u00dcT: 33.997971,-118.280807", - "screen_name": "Skrillex", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 12265, - "name": "SKRILLEX", - "profile_use_background_image": true, - "description": "your friend \u2022 insta / snap: Skrillex", - "url": "http://t.co/kEuzso7gAM", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jan 10 03:49:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", - "favourites_count": 2850, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 18825961, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 13384, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18825961/1398372903", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "writer, filmmaker, something else maybe...", - "url": "http://t.co/8y1kL5WTwP", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "14248315", - "blocking": false, - "is_translation_enabled": false, - "id": 14248315, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "errolmorris.com", - "url": "http://t.co/8y1kL5WTwP", - "expanded_url": "http://www.errolmorris.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "9AE4E8", - "created_at": "Sat Mar 29 00:53:54 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "statuses_count": 3914, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", - "favourites_count": 1, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 50984, - "blocked_by": false, - "following": false, - "location": "Cambridge, MA", - "muting": false, - "friends_count": 0, - "notifications": false, - "screen_name": "errolmorris", - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2256, - "is_translator": false, - "name": "errolmorris" - }, - { - "time_zone": "Central Time (US & Canada)", - "profile_use_background_image": true, - "description": "Head of product, Google Now. Previously at Akamai, MIT, UT Austin, IIT Madras.", - "url": "http://t.co/YU1CzLEyBM", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -21600, - "id_str": "14065609", - "blocking": false, - "is_translation_enabled": false, - "id": 14065609, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/aparnacd", - "url": "http://t.co/YU1CzLEyBM", - "expanded_url": "http://www.linkedin.com/in/aparnacd", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "EDECE9", - "created_at": "Sat Mar 01 17:32:31 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "default_profile": false, - "profile_text_color": "634047", - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "3B94D9", - "statuses_count": 177, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", - "favourites_count": 321, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1804, - "blocked_by": false, - "following": false, - "location": "San Francisco Bay area", - "muting": false, - "friends_count": 563, - "notifications": false, - "screen_name": "aparnacd", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 68, - "is_translator": false, - "name": "Aparna Chennapragada" - }, - { - "time_zone": "Sydney", - "profile_use_background_image": true, - "description": "aspiring mad scientist", - "url": "http://t.co/ARYETd4QIZ", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 39600, - "id_str": "14563623", - "blocking": false, - "is_translation_enabled": false, - "id": 14563623, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rethrick.com/p/about/", - "url": "http://t.co/ARYETd4QIZ", - "expanded_url": "http://rethrick.com/p/about/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "131516", - "created_at": "Mon Apr 28 01:03:24 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "statuses_count": 14711, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", - "favourites_count": 556, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 4243, - "blocked_by": false, - "following": false, - "location": "San Francisco, California", - "muting": false, - "friends_count": 132, - "notifications": false, - "screen_name": "dhanji", - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 301, - "is_translator": false, - "name": "Dhanji R. Prasanna" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "39623638", - "following": false, - "friends_count": 7445, - "entities": { - "description": { - "urls": [ - { - "display_url": "s.sho.com/1mGJrJp", - "url": "https://t.co/TOH5yZnKGu", - "expanded_url": "http://s.sho.com/1mGJrJp", - "indices": [ - 84, - 107 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "sho.com/sports", - "url": "https://t.co/kvwbT7SmMj", - "expanded_url": "http://sho.com/sports", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 232363, - "location": "New York City", - "screen_name": "SHOsports", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1446, - "name": "SHOWTIME SPORTS", - "profile_use_background_image": true, - "description": "Home of Championship Boxing & award-winning documentaries. Rules: https://t.co/TOH5yZnKGu", - "url": "https://t.co/kvwbT7SmMj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", - "profile_background_color": "131516", - "created_at": "Tue May 12 23:13:03 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", - "favourites_count": 2329, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 39623638, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 29318, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39623638/1451521993", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17901282", - "following": false, - "friends_count": 31186, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hbo.com/boxing/", - "url": "http://t.co/MyHnldJu4d", - "expanded_url": "http://www.hbo.com/boxing/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "949494", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 434863, - "location": "New York, NY", - "screen_name": "HBOboxing", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2954, - "name": "HBOboxing", - "profile_use_background_image": false, - "description": "*By tagging us in a tweet, you consent to allowing HBO Sports to use and showcase it in any media* Instagram/Snapchat: @HBOboxing", - "url": "http://t.co/MyHnldJu4d", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Dec 05 16:43:16 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", - "favourites_count": 94, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", - "default_profile_image": false, - "id": 17901282, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 21087, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17901282/1448175844", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3320010078", - "following": false, - "friends_count": 47, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/extremeownersh\u2026", - "url": "http://t.co/6Lnf7gknOo", - "expanded_url": "http://facebook.com/extremeownership", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 23754, - "location": "", - "screen_name": "jockowillink", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 195, - "name": "Jocko Willink", - "profile_use_background_image": false, - "description": "Leader; follower. Reader; writer. Speaker; listener. Student; teacher. \n#DisciplineEqualsFreedom\n#ExtremeOwnership", - "url": "http://t.co/6Lnf7gknOo", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Aug 19 13:39:44 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", - "favourites_count": 8988, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3320010078, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 8294, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320010078/1443236759", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24393384", - "following": false, - "friends_count": 2123, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 141107, - "location": "NYC", - "screen_name": "40oz_VAN", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 547, - "name": "40", - "profile_use_background_image": true, - "description": "40ozVAN@gmail.com", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 14 16:45:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", - "favourites_count": 3109, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", - "default_profile_image": false, - "id": 24393384, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 130499, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/24393384/1452240381", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1639866613", - "following": false, - "friends_count": 280, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/pub/dave-free/\u2026", - "url": "https://t.co/iBhESeXA5c", - "expanded_url": "http://www.linkedin.com/pub/dave-free/82/420/ba1/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 16669, - "location": "LAX", - "screen_name": "miyatola", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 92, - "name": "Dave Free", - "profile_use_background_image": true, - "description": "President of TDE | Management & Creative for Kendrick Lamar | Jay Rock | AB-Soul | ScHoolboy Q | Isaiah Rashad | SZA | the little homies |Digi+Phonics |", - "url": "https://t.co/iBhESeXA5c", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Aug 02 07:22:39 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", - "favourites_count": 26, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", - "default_profile_image": false, - "id": 1639866613, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 687, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1639866613/1448157283", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "99841232", - "following": false, - "friends_count": 812, - "entities": { - "description": { - "urls": [ - { - "display_url": "soundcloud.com/young-magic", - "url": "https://t.co/q6ASiQNDfX", - "expanded_url": "https://soundcloud.com/young-magic", - "indices": [ - 22, - 45 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "youngmagicsounds.com", - "url": "http://t.co/jz4VuRfCjB", - "expanded_url": "http://youngmagicsounds.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 8998, - "location": "Brooklyn, NY \u262f", - "screen_name": "ItsYoungMagic", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 76, - "name": "Young Magic", - "profile_use_background_image": true, - "description": "Melati + Izak \u30b7\u30eb\u30af\u5922\u307f\u308b\u4eba https://t.co/q6ASiQNDfX", - "url": "http://t.co/jz4VuRfCjB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 28 02:47:34 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", - "favourites_count": 510, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", - "default_profile_image": false, - "id": 99841232, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1074, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/99841232/1424777262", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2194124415", - "following": false, - "friends_count": 652, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 20393, - "location": "United Kingdom", - "screen_name": "ZiauddinY", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 135, - "name": "Ziauddin Yousafzai", - "profile_use_background_image": true, - "description": "Proud to be a teacher, Malala's father and a peace, women's rights and education activist. \nRTs do not equal endorsement.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Nov 24 13:37:54 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", - "favourites_count": 953, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2194124415, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1217, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2194124415/1385300984", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": true, - "description": "Author of #1 @NYTimes bestseller Orange is the New Black: My Year in a Women's Prison @sixwords: In and out of hot water", - "url": "https://t.co/bZNP8H8fqP", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "20783", - "blocking": false, - "is_translation_enabled": false, - "id": 20783, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "piperkerman.com", - "url": "https://t.co/bZNP8H8fqP", - "expanded_url": "http://www.piperkerman.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "profile_background_color": "9AE4E8", - "created_at": "Fri Nov 24 19:35:29 +0000 2006", - "profile_image_url": "http://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", - "default_profile": false, - "profile_text_color": "000000", - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "statuses_count": 16320, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", - "favourites_count": 26941, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 112421, - "blocked_by": false, - "following": false, - "location": "Ohio, USA", - "muting": false, - "friends_count": 3684, - "notifications": false, - "screen_name": "Piper", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 934, - "is_translator": false, - "name": "Piper Kerman" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "19725644", - "following": false, - "friends_count": 46, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "haydenplanetarium.org/tyson/", - "url": "http://t.co/FRT5oYtwbX", - "expanded_url": "http://www.haydenplanetarium.org/tyson/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "CC3366", - "geo_enabled": false, - "followers_count": 4746904, - "location": "New York City", - "screen_name": "neiltyson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 39790, - "name": "Neil deGrasse Tyson", - "profile_use_background_image": true, - "description": "Astrophysicist", - "url": "http://t.co/FRT5oYtwbX", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", - "profile_background_color": "DBE9ED", - "created_at": "Thu Jan 29 18:40:26 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBE9ED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", - "favourites_count": 2, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", - "default_profile_image": false, - "id": 19725644, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4758, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19725644/1400087889", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2916305152", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "freedom.press", - "url": "https://t.co/U63fP7T2ST", - "expanded_url": "https://freedom.press", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1743010, - "location": "", - "screen_name": "Snowden", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 10804, - "name": "Edward Snowden", - "profile_use_background_image": true, - "description": "I used to work for the government. Now I work for the public. Director at @FreedomofPress.", - "url": "https://t.co/U63fP7T2ST", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Dec 11 21:24:28 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2916305152, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 373, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2916305152/1443542022", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "299364430", - "following": false, - "friends_count": 92568, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "everettetaylor.com", - "url": "https://t.co/DTKHW8LqbJ", - "expanded_url": "http://everettetaylor.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 258858, - "location": "Los Angeles (via Richmond, VA)", - "screen_name": "Everette", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2125, - "name": "Everette Taylor", - "profile_use_background_image": true, - "description": "building + growing companies (instagram: everette x snapchat: everettetaylor)", - "url": "https://t.co/DTKHW8LqbJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", - "profile_background_color": "131516", - "created_at": "Sun May 15 23:37:59 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", - "favourites_count": 184609, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 299364430, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 14393, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/299364430/1444247536", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "just a future teller", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "3633459012", - "blocking": false, - "is_translation_enabled": false, - "id": 3633459012, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 21 03:20:06 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "ja", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 25, - "blocked_by": false, - "following": false, - "location": "Tokyo, Japan", - "muting": false, - "friends_count": 2, - "notifications": false, - "screen_name": "aAcvyXkvyzhJJoj", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "\u5915\u590f" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "19777398", - "following": false, - "friends_count": 19669, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tonightshow.com", - "url": "http://t.co/fgp5RYqr3T", - "expanded_url": "http://www.tonightshow.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3340199, - "location": "Weeknights 11:35/10:35c", - "screen_name": "FallonTonight", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8976, - "name": "Fallon Tonight", - "profile_use_background_image": true, - "description": "The official Twitter for The Tonight Show Starring @JimmyFallon on @NBC. (Tweets by: @marinarachael @cdriz @thatsso_rachael @NoahGeb) #FallonTonight", - "url": "http://t.co/fgp5RYqr3T", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", - "profile_background_color": "03253E", - "created_at": "Fri Jan 30 17:26:46 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", - "favourites_count": 90444, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", - "default_profile_image": false, - "id": 19777398, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 44515, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19777398/1401723954", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "158414847", - "following": false, - "friends_count": 277, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailyshow.com", - "url": "http://t.co/BAakBFaEGx", - "expanded_url": "http://thedailyshow.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3996763, - "location": "", - "screen_name": "TheDailyShow", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 36029, - "name": "The Daily Show", - "profile_use_background_image": true, - "description": "Trevor Noah and The Best F#@king News Team. Weeknights 11/10c on @ComedyCentral. Full episodes, videos, guest information. #DailyShow", - "url": "http://t.co/BAakBFaEGx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 22 16:41:05 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", - "favourites_count": 14, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", - "default_profile_image": false, - "id": 158414847, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9003, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/158414847/1446498480", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "profile_use_background_image": false, - "description": "Politics, culture, business, science, technology, health, education, global affairs, more. Tweets by @CaitlinFrazier", - "url": "http://t.co/pI6FUBgQdl", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -18000, - "id_str": "35773039", - "blocking": false, - "is_translation_enabled": true, - "id": 35773039, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theatlantic.com", - "url": "http://t.co/pI6FUBgQdl", - "expanded_url": "http://www.theatlantic.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "000000", - "created_at": "Mon Apr 27 15:41:54 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", - "default_profile": false, - "profile_text_color": "000408", - "profile_sidebar_fill_color": "E6ECF2", - "profile_link_color": "000000", - "statuses_count": 78823, - "profile_sidebar_border_color": "BFBFBF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", - "favourites_count": 653, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1183558, - "blocked_by": false, - "following": false, - "location": "Washington, D.C.", - "muting": false, - "friends_count": 1004, - "notifications": false, - "screen_name": "TheAtlantic", - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 23362, - "is_translator": false, - "name": "The Atlantic" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "83876527", - "following": false, - "friends_count": 969, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tejucole.com", - "url": "http://t.co/FcCN8OHr", - "expanded_url": "http://www.tejucole.com", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "D1CFC1", - "profile_link_color": "4D2911", - "geo_enabled": true, - "followers_count": 232991, - "location": "the Black Atlantic", - "screen_name": "tejucole", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2716, - "name": "Teju Cole", - "profile_use_background_image": true, - "description": "We who?", - "url": "http://t.co/FcCN8OHr", - "profile_text_color": "331D0C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", - "profile_background_color": "121314", - "created_at": "Tue Oct 20 16:27:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", - "favourites_count": 1992, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", - "default_profile_image": false, - "id": 83876527, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 13298, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/83876527/1400341445", - "is_translator": false - }, - { - "time_zone": "Rome", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "241027939", - "following": false, - "friends_count": 246, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "googlethatshit.com", - "url": "https://t.co/AGKwFEnIEM", - "expanded_url": "http://googlethatshit.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "001122", - "geo_enabled": true, - "followers_count": 259535, - "location": "Italia", - "screen_name": "AsiaArgento", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1078, - "name": "Asia Argento", - "profile_use_background_image": true, - "description": "a woman who does everything but doesn't know how to do anything / instagram = asiaargento", - "url": "https://t.co/AGKwFEnIEM", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Jan 21 08:27:38 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", - "favourites_count": 28343, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", - "default_profile_image": false, - "id": 241027939, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 35108, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/241027939/1353605533", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Diana Ross Official Twitter", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2352142008", - "blocking": false, - "is_translation_enabled": false, - "id": 2352142008, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Feb 19 19:21:42 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 101, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", - "favourites_count": 15, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 38803, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 30, - "notifications": false, - "screen_name": "DianaRoss", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 295, - "is_translator": false, - "name": "Ms. Ross" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1140451", - "following": false, - "friends_count": 4937, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "antderosa.com", - "url": "https://t.co/XEmDfG5Qlv", - "expanded_url": "http://antderosa.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F0F0F0", - "profile_link_color": "2A70A6", - "geo_enabled": true, - "followers_count": 88509, - "location": "Jersey City, NJ", - "screen_name": "AntDeRosa", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4730, - "name": "Anthony De Rosa", - "profile_use_background_image": true, - "description": "Digital Production Manager for @TheDailyShow with @TrevorNoah", - "url": "https://t.co/XEmDfG5Qlv", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 14 05:45:24 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", - "favourites_count": 20408, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", - "default_profile_image": false, - "id": 1140451, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 147547, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140451/1446584214", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18393773", - "following": false, - "friends_count": 868, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "neilgaiman.com", - "url": "http://t.co/sGHzpf2rCG", - "expanded_url": "http://www.neilgaiman.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 2359612, - "location": "a bit all over the place", - "screen_name": "neilhimself", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 35382, - "name": "Neil Gaiman", - "profile_use_background_image": true, - "description": "will eventually grow up and get a real job. Until then, will keep making things up and writing them down.", - "url": "http://t.co/sGHzpf2rCG", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", - "profile_background_color": "91AAB5", - "created_at": "Fri Dec 26 19:30:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", - "favourites_count": 1091, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", - "default_profile_image": false, - "id": 18393773, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 90753, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18393773/1424768490", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "263964021", - "following": false, - "friends_count": 864, - "entities": { - "description": { - "urls": [ - { - "display_url": "LIONBABE.COM", - "url": "http://t.co/RbZqjUPgsT", - "expanded_url": "http://LIONBABE.COM", - "indices": [ - 32, - 54 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "jillonce.tumblr.com", - "url": "http://t.co/vK5PFVYnmO", - "expanded_url": "http://jillonce.tumblr.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7505, - "location": "NYC", - "screen_name": "Jillonce", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 77, - "name": "Jillian Hervey", - "profile_use_background_image": true, - "description": "arting all the time @LIONBABE x http://t.co/RbZqjUPgsT", - "url": "http://t.co/vK5PFVYnmO", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Mar 11 02:23:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", - "favourites_count": 2910, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", - "default_profile_image": false, - "id": 263964021, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 17306, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/263964021/1414102504", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "432588553", - "following": false, - "friends_count": 846, - "entities": { - "description": { - "urls": [ - { - "display_url": "po.st/WDWGiTTW", - "url": "https://t.co/s8fWZIpJuH", - "expanded_url": "http://po.st/WDWGiTTW", - "indices": [ - 100, - 123 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "LIONBABE.com", - "url": "http://t.co/IRuegBPo6R", - "expanded_url": "http://www.LIONBABE.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "DD2E44", - "geo_enabled": false, - "followers_count": 16964, - "location": "NYC", - "screen_name": "LionBabe", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 167, - "name": "LION BABE", - "profile_use_background_image": false, - "description": "Lion Babe is Jillian Hervey + Lucas Goodman @Jillonce + @Astro_Raw . NYC . WHERE DO WE GO - iTunes: https://t.co/s8fWZIpJuH x", - "url": "http://t.co/IRuegBPo6R", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Dec 09 15:18:30 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", - "favourites_count": 9526, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 432588553, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3675, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/432588553/1450721529", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "141326053", - "following": false, - "friends_count": 472, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "davesmithinstruments.com", - "url": "http://t.co/huTEKpwJ0k", - "expanded_url": "http://www.davesmithinstruments.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252745", - "profile_link_color": "DD5527", - "geo_enabled": false, - "followers_count": 24523, - "location": "San Francisco, CA", - "screen_name": "dsiSequential", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 394, - "name": "DaveSmithInstruments", - "profile_use_background_image": true, - "description": "Innovative music machines designed and built in San Francisco, CA.", - "url": "http://t.co/huTEKpwJ0k", - "profile_text_color": "858585", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", - "profile_background_color": "471A2E", - "created_at": "Fri May 07 19:54:02 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", - "favourites_count": 128, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", - "default_profile_image": false, - "id": 141326053, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 3040, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/141326053/1421946814", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "748020092", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "M3LL155X.com", - "url": "http://t.co/Qvv5qGkNFV", - "expanded_url": "http://M3LL155X.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 159581, - "location": "", - "screen_name": "FKAtwigs", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1066, - "name": "FKA twigs", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/Qvv5qGkNFV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Thu Aug 09 21:57:26 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", - "favourites_count": 91, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", - "default_profile_image": false, - "id": 748020092, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 313, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/748020092/1439491511", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14159148", - "following": false, - "friends_count": 1044, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "un.org", - "url": "http://t.co/kgJqUNDMpy", - "expanded_url": "http://www.un.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 5985356, - "location": "New York, NY", - "screen_name": "UN", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 34756, - "name": "United Nations", - "profile_use_background_image": false, - "description": "Official twitter account of #UnitedNations. Get the latest information on the #UN. #GlobalGoals", - "url": "http://t.co/kgJqUNDMpy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", - "profile_background_color": "0197D6", - "created_at": "Sun Mar 16 20:15:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", - "favourites_count": 488, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", - "default_profile_image": false, - "id": 14159148, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 42445, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159148/1447180964", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "857054191", - "following": false, - "friends_count": 51, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dorotheegilbert.com", - "url": "http://t.co/Bifsr25Z2N", - "expanded_url": "http://www.dorotheegilbert.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 5531, - "location": "", - "screen_name": "DorotheGilbert", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 86, - "name": "Doroth\u00e9e Gilbert", - "profile_use_background_image": true, - "description": "Danseuse \u00e9toile Op\u00e9ra de Paris", - "url": "http://t.co/Bifsr25Z2N", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 01 21:28:01 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", - "favourites_count": 139, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 857054191, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 287, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/857054191/1354469514", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "166739404", - "following": false, - "friends_count": 246, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "3399FF", - "geo_enabled": true, - "followers_count": 20424514, - "location": "London", - "screen_name": "EmWatson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 43462, - "name": "Emma Watson", - "profile_use_background_image": true, - "description": "British actress, Goodwill Ambassador for UN Women", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Jul 14 22:06:37 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", - "favourites_count": 765, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", - "default_profile_image": false, - "id": 166739404, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1213, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/166739404/1448459323", - "is_translator": false - }, - { - "time_zone": "Casablanca", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "384982986", - "following": false, - "friends_count": 965, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/gracejonesoffi\u2026", - "url": "http://t.co/RAPIxjvPtQ", - "expanded_url": "http://instagram.com/gracejonesofficial", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "85CFD2", - "geo_enabled": false, - "followers_count": 41783, - "location": "Worldwide", - "screen_name": "Miss_GraceJones", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 548, - "name": "Grace Jones", - "profile_use_background_image": true, - "description": "This is my Official Twitter account... I see all and hear all. Nice to have you on my plate.", - "url": "http://t.co/RAPIxjvPtQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Oct 04 17:29:03 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", - "favourites_count": 345, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", - "default_profile_image": false, - "id": 384982986, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 405, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/384982986/1366714920", - "is_translator": false - }, - { - "time_zone": "Mumbai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "41330290", - "following": false, - "friends_count": 277, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/TheShakaSurfCl\u2026", - "url": "https://t.co/SEQpF7VDH4", - "expanded_url": "http://www.facebook.com/TheShakaSurfClub", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1047, - "location": "India", - "screen_name": "surFISHita", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Ishita Malaviya", - "profile_use_background_image": true, - "description": "India's first recognized woman surfer & Co-founder of The Shaka Surf Club @SurfingIndia #Namaloha", - "url": "https://t.co/SEQpF7VDH4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed May 20 10:04:32 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", - "favourites_count": 104, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", - "default_profile_image": false, - "id": 41330290, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 470, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41330290/1357404184", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14085740", - "following": false, - "friends_count": 3037, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 4883, - "location": "San Francisco, CA", - "screen_name": "jimprosser", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 152, - "name": "Jim Prosser", - "profile_use_background_image": true, - "description": "Current @twitter comms guy, future @kanyewest 2020 campaign spokesperson.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Mar 05 23:28:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", - "favourites_count": 52938, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 14085740, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 12556, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14085740/1405206869", - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "37945489", - "following": false, - "friends_count": 996, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtu.be/ALlDZIQeNyo", - "url": "http://t.co/2nWHiTkVsZ", - "expanded_url": "http://youtu.be/ALlDZIQeNyo", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "EB3E12", - "geo_enabled": true, - "followers_count": 57089, - "location": "Paris", - "screen_name": "Carodemaigret", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 210, - "name": "Caroline de Maigret", - "profile_use_background_image": false, - "description": "Model @NextModels worldwide /// @CareFrance Ambassador /// Book out now: @Howtobeparisian /// Instagram/Periscope: @carolinedemaigret", - "url": "http://t.co/2nWHiTkVsZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", - "profile_background_color": "F0F0F0", - "created_at": "Tue May 05 15:26:02 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", - "favourites_count": 6015, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 37945489, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 7696, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/37945489/1420905232", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "35556383", - "following": false, - "friends_count": 265, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "londonzhiloh.com", - "url": "https://t.co/gsxVxxXXXz", - "expanded_url": "http://londonzhiloh.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F5F2F2", - "profile_link_color": "D9207D", - "geo_enabled": true, - "followers_count": 74136, - "location": "Snapchat: Zhiloh101", - "screen_name": "TheRealZhiloh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 272, - "name": "London Zhiloh", - "profile_use_background_image": false, - "description": "Bookings: Info@LZofficial.com", - "url": "https://t.co/gsxVxxXXXz", - "profile_text_color": "292727", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", - "profile_background_color": "F2EFF1", - "created_at": "Sun Apr 26 20:29:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F5F0F0", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", - "favourites_count": 14019, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", - "default_profile_image": false, - "id": 35556383, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 96490, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35556383/1450060528", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "233183631", - "following": false, - "friends_count": 36443, - "entities": { - "description": { - "urls": [ - { - "display_url": "itun.es/us/boyR_", - "url": "https://t.co/CJheDwyeIF", - "expanded_url": "https://itun.es/us/boyR_", - "indices": [ - 74, - 97 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "Instagram.com/madisonbeer", - "url": "https://t.co/nqrYEOhs7A", - "expanded_url": "http://Instagram.com/madisonbeer", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "6895D0", - "geo_enabled": true, - "followers_count": 1755132, - "location": "", - "screen_name": "MadisonElleBeer", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4392, - "name": "madison beer", - "profile_use_background_image": true, - "description": "\u2661 singer from ny \u2661 chase your dreams \u2661 new single Something Sweet out now https://t.co/CJheDwyeIF", - "url": "https://t.co/nqrYEOhs7A", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jan 02 14:52:35 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", - "favourites_count": 3926, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", - "default_profile_image": false, - "id": 233183631, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 11569, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/233183631/1446485514", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "70457876", - "following": false, - "friends_count": 690, - "entities": { - "description": { - "urls": [ - { - "display_url": "soundcloud.com/dope-saint-jud\u2026", - "url": "https://t.co/dIyhEjwine", - "expanded_url": "https://soundcloud.com/dope-saint-jude/", - "indices": [ - 0, - 23 - ] - }, - { - "display_url": "facebook.com/pages/Dope-Sai\u2026", - "url": "https://t.co/4Kqi4mPsER", - "expanded_url": "https://www.facebook.com/pages/Dope-Saint-Jude/287771241273733", - "indices": [ - 24, - 47 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "dopesaintjude.tumblr.com", - "url": "http://t.co/VYkd1URkb3", - "expanded_url": "http://dopesaintjude.tumblr.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 898, - "location": "@dopesaintjude (insta) ", - "screen_name": "DopeSaintJude", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 20, - "name": "DOPESAINTJUDE", - "profile_use_background_image": true, - "description": "https://t.co/dIyhEjwine https://t.co/4Kqi4mPsER", - "url": "http://t.co/VYkd1URkb3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Aug 31 18:06:59 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", - "favourites_count": 2286, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", - "default_profile_image": false, - "id": 70457876, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 4521, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70457876/1442416572", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3840", - "following": false, - "friends_count": 20921, - "entities": { - "description": { - "urls": [ - { - "display_url": "angel.co/jason", - "url": "https://t.co/nkssr3dWMC", - "expanded_url": "http://angel.co/jason", - "indices": [ - 48, - 71 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "calacanis.com", - "url": "https://t.co/akc7KgXv7J", - "expanded_url": "http://www.calacanis.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "FF9900", - "geo_enabled": true, - "followers_count": 256996, - "location": "94123", - "screen_name": "Jason", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 12248, - "name": "jason", - "profile_use_background_image": true, - "description": "Angel investor (@uber @thumbtack @wealthfront + https://t.co/nkssr3dWMC ) // Writer // Dad // Founder: @Engadget, @Inside, @LAUNCH & @twistartups", - "url": "https://t.co/akc7KgXv7J", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Aug 05 23:31:27 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", - "favourites_count": 42394, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", - "default_profile_image": false, - "id": 3840, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 71793, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3840/1438902439", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "21872269", - "following": false, - "friends_count": 70, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "emersoncollective.com", - "url": "http://t.co/Qr1O0bgn4d", - "expanded_url": "http://emersoncollective.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": false, - "followers_count": 10246, - "location": "Palo Alto, CA", - "screen_name": "laurenepowell", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 123, - "name": "Laurene Powell", - "profile_use_background_image": false, - "description": "mother, advocate, friend, Emerson Collective president, joyful adventurer", - "url": "http://t.co/Qr1O0bgn4d", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Feb 25 14:49:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", - "favourites_count": 88, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 21872269, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 100, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21872269/1445279444", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3583264572", - "following": false, - "friends_count": 168, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 107328, - "location": "", - "screen_name": "IStandWithAhmed", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 373, - "name": "Ahmed Mohamed", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Sep 16 14:00:18 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", - "favourites_count": 199, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3583264572, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 323, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3583264572/1452112394", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "43057202", - "following": false, - "friends_count": 2964, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 12240, - "location": "Las Vegas, NV", - "screen_name": "Nicholas_Cope", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 61, - "name": "Nick Cope", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu May 28 05:50:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", - "favourites_count": 409, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 43057202, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5765, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43057202/1446523732", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "1311113250", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "1D1F1F", - "geo_enabled": true, - "followers_count": 7883, - "location": "", - "screen_name": "riccardotisci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "Riccardo Tisci", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Thu Mar 28 16:36:51 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "nl", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", - "favourites_count": 0, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", - "default_profile_image": false, - "id": 1311113250, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 112, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1311113250/1411398117", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "2612918754", - "blocking": false, - "is_translation_enabled": false, - "id": 2612918754, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Wed Jul 09 04:39:39 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 17, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", - "favourites_count": 5, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 20, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 15, - "notifications": false, - "screen_name": "robertabbott92", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "robert abbott" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "Engineer. Student. Daughter. Sister. Indian-American. Passionate about diversity. Studying CS @CalPoly but my \u2665 is in the Bay.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "123710951", - "blocking": false, - "is_translation_enabled": false, - "id": 123710951, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "352726", - "created_at": "Wed Mar 17 00:37:32 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "default_profile": false, - "profile_text_color": "3E4415", - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "statuses_count": 13, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", - "favourites_count": 10, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 51, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 22, - "notifications": false, - "screen_name": "nupurgarg16", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "is_translator": false, - "name": "Nupur Garg" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2424272372", - "following": false, - "friends_count": 382, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/toddsherman", - "url": "https://t.co/vUfwnDEI57", - "expanded_url": "http://www.linkedin.com/in/toddsherman", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 1033, - "location": "San Francisco, CA", - "screen_name": "tdd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Todd Sherman", - "profile_use_background_image": true, - "description": "Product Manager at Twitter.", - "url": "https://t.co/vUfwnDEI57", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", - "profile_background_color": "B2DFDA", - "created_at": "Wed Apr 02 19:53:23 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", - "favourites_count": 2965, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "default_profile_image": false, - "id": 2424272372, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1427, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2424272372/1426469295", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "284159631", - "following": false, - "friends_count": 297, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jackiereses.tumblr.com", - "url": "https://t.co/JIrh2PYIZ2", - "expanded_url": "http://jackiereses.tumblr.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1905, - "location": "Woodside, CA and New York City", - "screen_name": "jackiereses", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "Jackie Reses", - "profile_use_background_image": true, - "description": "Just moved to new house! @jackiereseskidz", - "url": "https://t.co/JIrh2PYIZ2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", - "profile_background_color": "89C9FA", - "created_at": "Mon Apr 18 18:59:19 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", - "favourites_count": 280, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", - "default_profile_image": false, - "id": 284159631, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 601, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/284159631/1405201905", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "profile_use_background_image": true, - "description": "CEO, @google", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -28800, - "id_str": "14130366", - "blocking": false, - "is_translation_enabled": false, - "id": 14130366, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "1A1B1F", - "created_at": "Wed Mar 12 05:51:53 +0000 2008", - "profile_image_url": "http://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "default_profile": false, - "profile_text_color": "666666", - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "statuses_count": 721, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", - "favourites_count": 263, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 332791, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 256, - "notifications": false, - "screen_name": "sundarpichai", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2558, - "is_translator": false, - "name": "sundarpichai" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "3024282479", - "following": false, - "friends_count": 378, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sunujournal.com", - "url": "https://t.co/VEFaxoMlRR", - "expanded_url": "http://www.sunujournal.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 723, - "location": "", - "screen_name": "sunujournal", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "S U N U", - "profile_use_background_image": true, - "description": "SUNU: Journal of African Affairs, Critical Thought + Aesthetics \u2022 Amplifying the youth voice + contributing to the collective consciousness #SUNUjournal \u2022 2016", - "url": "https://t.co/VEFaxoMlRR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Sun Feb 08 01:50:03 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", - "favourites_count": 48, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", - "default_profile_image": false, - "id": 3024282479, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 517, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3024282479/1428706146", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17169320", - "following": false, - "friends_count": 660, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thinkcommon.com", - "url": "http://t.co/lGKu0vCb9Q", - "expanded_url": "http://thinkcommon.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "EEAD1D", - "geo_enabled": false, - "followers_count": 3228189, - "location": "Chicago, IL", - "screen_name": "common", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 14192, - "name": "COMMON", - "profile_use_background_image": false, - "description": "Hip Hop Artist/ Actor", - "url": "http://t.co/lGKu0vCb9Q", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Nov 04 21:18:21 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", - "favourites_count": 40, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", - "default_profile_image": false, - "id": 17169320, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 9755, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17169320/1438213738", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "28035260", - "following": false, - "friends_count": 588, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "smarturl.it/iKingPushDBD", - "url": "https://t.co/Y2KVVZtpIp", - "expanded_url": "http://smarturl.it/iKingPushDBD", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1196671, - "location": "VA", - "screen_name": "PUSHA_T", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3618, - "name": "PUSHA T", - "profile_use_background_image": true, - "description": "MGMT: @STEVENVICTOR Shows:Cara Lewis/CAA", - "url": "https://t.co/Y2KVVZtpIp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Apr 01 02:56:54 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", - "favourites_count": 23, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", - "default_profile_image": false, - "id": 28035260, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 12194, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/28035260/1451438540", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18381396", - "following": false, - "friends_count": 1615, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shop.txdxe.com", - "url": "http://t.co/afn1VAKJzW", - "expanded_url": "http://shop.txdxe.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "F20909", - "geo_enabled": false, - "followers_count": 197754, - "location": "TxDxE.com", - "screen_name": "TopDawgEnt", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 408, - "name": "TopDawgEnt", - "profile_use_background_image": true, - "description": "Official TopDawgEntertainment Twitter \u2022 @JayRock @KendrickLamar @ScHoolBoyQ @AbDashSoul @IsaiahRashad @SZA @MixedByAli #TDE Instagram: @TopDawgEnt", - "url": "http://t.co/afn1VAKJzW", - "profile_text_color": "B80202", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", - "profile_background_color": "000000", - "created_at": "Fri Dec 26 00:20:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", - "favourites_count": 25, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", - "default_profile_image": false, - "id": 18381396, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 6708, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18381396/1443854512", - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "327894845", - "following": false, - "friends_count": 157, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nextmanagement.com", - "url": "http://t.co/qeqVqn53yt", - "expanded_url": "http://www.nextmanagement.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2300, - "location": "new york", - "screen_name": "MelodieMonrose", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "M\u00e9lodie Monrose", - "profile_use_background_image": true, - "description": "Next models worldwide /Uno spain", - "url": "http://t.co/qeqVqn53yt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", - "profile_background_color": "1F2021", - "created_at": "Sat Jul 02 10:27:10 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", - "favourites_count": 123, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", - "default_profile_image": false, - "id": 327894845, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 2133, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/327894845/1440579572", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "tomboy model from jamaica, loves fashion,cooking,people and most of all love my job new to instagram follow me @jeneilwilliams", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "108213835", - "blocking": false, - "is_translation_enabled": false, - "id": 108213835, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 25 06:22:47 +0000 2010", - "profile_image_url": "http://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 932, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", - "favourites_count": 242, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 1386, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 173, - "notifications": false, - "screen_name": "jeneil1", - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "is_translator": false, - "name": "jeneil williams" - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6204", - "following": false, - "friends_count": 2910, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jabrams.com", - "url": "http://t.co/YcT7cUkcui", - "expanded_url": "http://www.jabrams.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 15936, - "location": "San Francisco, CA", - "screen_name": "abrams", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1064, - "name": "Jonathan Abrams", - "profile_use_background_image": true, - "description": "Founder & CEO of @Nuzzel", - "url": "http://t.co/YcT7cUkcui", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Sep 16 01:11:02 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", - "favourites_count": 10208, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 6204, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 31488, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6204/1401738610", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1547221", - "following": false, - "friends_count": 1042, - "entities": { - "description": { - "urls": [ - { - "display_url": "eugenewei.com", - "url": "https://t.co/31xFn7CUeB", - "expanded_url": "http://www.eugenewei.com", - "indices": [ - 73, - 96 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "eugenewei.com", - "url": "https://t.co/ccJQSSYAHH", - "expanded_url": "http://www.eugenewei.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "909090", - "geo_enabled": true, - "followers_count": 3361, - "location": "San Francisco, CA", - "screen_name": "eugenewei", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 173, - "name": "Eugene Wei", - "profile_use_background_image": false, - "description": "Former Head of Product at Flipboard and Hulu, an alum of Amazon. More at https://t.co/31xFn7CUeB", - "url": "https://t.co/ccJQSSYAHH", - "profile_text_color": "2C2C2C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Mon Mar 19 20:00:36 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", - "favourites_count": 5964, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", - "default_profile_image": false, - "id": 1547221, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 5743, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1547221/1398367465", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "29663668", - "following": false, - "friends_count": 511, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/RZAWU", - "url": "https://t.co/LxKDItI1ju", - "expanded_url": "http://www.facebook.com/RZAWU", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/43773275/wu.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 629096, - "location": "Brooklyn-Shaolin-NY-NJ-LA", - "screen_name": "RZA", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5504, - "name": "RZA!", - "profile_use_background_image": true, - "description": "MY OFFICIAL TWITTER, PEACE!", - "url": "https://t.co/LxKDItI1ju", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Apr 08 07:37:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", - "favourites_count": 15, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/43773275/wu.jpg", - "default_profile_image": false, - "id": 29663668, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 5560, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29663668/1448944289", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6646402", - "following": false, - "friends_count": 647, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "get.fabric.io", - "url": "http://t.co/OZQv5dblxS", - "expanded_url": "http://get.fabric.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "1191F2", - "geo_enabled": true, - "followers_count": 1159, - "location": "Boston / SF / worldwide", - "screen_name": "richparet", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Rich Paret", - "profile_use_background_image": false, - "description": "Director of Engineering, Developer Platform @twitter. @twitterapi / @gnip / @fabric. Let's build the future together.", - "url": "http://t.co/OZQv5dblxS", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", - "profile_background_color": "0F0F0F", - "created_at": "Thu Jun 07 17:49:42 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", - "favourites_count": 3282, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", - "default_profile_image": false, - "id": 6646402, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 1554, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6646402/1440532521", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "522299046", - "blocking": false, - "is_translation_enabled": false, - "id": 522299046, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Mar 12 14:33:21 +0000 2012", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 26, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 0, - "notifications": false, - "screen_name": "GenosBarberia", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Geno's Barberia" - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "Producer", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "100325421", - "blocking": false, - "is_translation_enabled": false, - "id": 100325421, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 29 21:32:20 +0000 2009", - "profile_image_url": "http://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 20, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", - "favourites_count": 1, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 70564, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 455, - "notifications": false, - "screen_name": "Kevfeige", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 507, - "is_translator": false, - "name": "Kevin Feige" - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "166747718", - "following": false, - "friends_count": 286, - "entities": { - "description": { - "urls": [ - { - "display_url": "itunes.apple.com/us/album/cherr\u2026", - "url": "https://t.co/cIuPQAaTHf", - "expanded_url": "https://itunes.apple.com/us/album/cherry-bomb/id983056044", - "indices": [ - 54, - 77 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "golfwang.com", - "url": "https://t.co/WMyHWbn11Q", - "expanded_url": "http://golfwang.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685727329729970176/bNxMsXKn.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "FFCC4D", - "geo_enabled": false, - "followers_count": 2752141, - "location": "OKAGA, CA", - "screen_name": "fucktyler", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 7283, - "name": "Tyler, The Creator", - "profile_use_background_image": true, - "description": "i want an enzo, garden and leo from romeo and juliet: https://t.co/cIuPQAaTHf", - "url": "https://t.co/WMyHWbn11Q", - "profile_text_color": "00CCFF", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", - "profile_background_color": "75D1FF", - "created_at": "Wed Jul 14 22:32:25 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", - "favourites_count": 167, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685727329729970176/bNxMsXKn.jpg", - "default_profile_image": false, - "id": 166747718, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 39779, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/166747718/1438284983", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "147279619", - "following": false, - "friends_count": 20841, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", - "notifications": false, - "profile_sidebar_fill_color": "EBDDEB", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 27078, - "location": "", - "screen_name": "MayaAMonroe", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 107, - "name": "Maya Angelique", - "profile_use_background_image": true, - "description": "IG and snapchat: mayaangelique", - "url": null, - "profile_text_color": "6ABA93", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", - "profile_background_color": "FF001E", - "created_at": "Sun May 23 18:06:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", - "favourites_count": 63000, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", - "default_profile_image": false, - "id": 147279619, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 125827, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/147279619/1448679913", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "profile_use_background_image": false, - "description": "I'm on a mission that Dreamers say is impossible.\nBut when I swing my sword, they all choppable.", - "url": "http://t.co/863fgunGbW", - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": -14400, - "id_str": "2517988075", - "blocking": false, - "is_translation_enabled": false, - "id": 2517988075, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theatlantic.com", - "url": "http://t.co/863fgunGbW", - "expanded_url": "http://www.theatlantic.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "profile_background_color": "000000", - "created_at": "Fri May 23 14:31:49 +0000 2014", - "profile_image_url": "http://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": false, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "statuses_count": 20312, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", - "favourites_count": 502, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 462988, - "blocked_by": false, - "following": false, - "location": "Shaolin ", - "muting": false, - "friends_count": 649, - "notifications": false, - "screen_name": "tanehisicoates", - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4046, - "is_translator": false, - "name": "Ta-Nehisi Coates" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2367911", - "following": false, - "friends_count": 31973, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mtv.com", - "url": "http://t.co/yyniasrs2z", - "expanded_url": "http://mtv.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 13288451, - "location": "NYC", - "screen_name": "MTV", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 28353, - "name": "MTV", - "profile_use_background_image": true, - "description": "The official Twitter account for MTV, USA! Tweets by @Kaitiii | Snapchat/KiK: MTV", - "url": "http://t.co/yyniasrs2z", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Mar 26 22:30:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", - "favourites_count": 12412, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 2367911, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 150524, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2367911/1451411117", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2601175671", - "following": false, - "friends_count": 1137, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "flyt.it/fettywapitunes", - "url": "https://t.co/ha6adhNCBb", - "expanded_url": "http://flyt.it/fettywapitunes", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 458529, - "location": "", - "screen_name": "fettywap", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 514, - "name": "FettyWap1738", - "profile_use_background_image": true, - "description": "Fetty Wap||ZooWap||Zoovier||ZooZoo for bookings: bookings@rgfproductions.com . Album \u2b07\ufe0f on iTunes", - "url": "https://t.co/ha6adhNCBb", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 11 13:55:15 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", - "favourites_count": 1939, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 2601175671, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 4811, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2601175671/1450121884", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "54387680", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "michaeljackson.com", - "url": "http://t.co/q1TE07bI3n", - "expanded_url": "http://www.michaeljackson.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "C12032", - "geo_enabled": false, - "followers_count": 1925124, - "location": "New York, NY USA", - "screen_name": "michaeljackson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 13328, - "name": "Michael Jackson", - "profile_use_background_image": true, - "description": "The Official Michael Jackson Twitter Page", - "url": "http://t.co/q1TE07bI3n", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jul 07 00:24:51 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", - "favourites_count": 0, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", - "default_profile_image": false, - "id": 54387680, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 1357, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/54387680/1435330454", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15934076", - "following": false, - "friends_count": 685, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtu.be/4-42cW_4ycA", - "url": "https://t.co/jYzdPI3TZ3", - "expanded_url": "http://youtu.be/4-42cW_4ycA", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 86286, - "location": "Los Angeles, CA", - "screen_name": "quintabrunson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 186, - "name": "Quinta B.", - "profile_use_background_image": false, - "description": "hi. i'm a creator. I know, right?", - "url": "https://t.co/jYzdPI3TZ3", - "profile_text_color": "030303", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", - "profile_background_color": "E7F5F5", - "created_at": "Thu Aug 21 17:31:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", - "favourites_count": 5678, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", - "default_profile_image": false, - "id": 15934076, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 41493, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15934076/1449387090", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "221579212", - "following": false, - "friends_count": 460, - "entities": { - "description": { - "urls": [ - { - "display_url": "jouelzy.com", - "url": "https://t.co/qfCo83qrSw", - "expanded_url": "http://jouelzy.com", - "indices": [ - 120, - 143 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com/jouelzy", - "url": "https://t.co/oeQSvIWKEP", - "expanded_url": "http://www.youtube.com/jouelzy", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "B8A2E8", - "geo_enabled": true, - "followers_count": 9974, - "location": "Floating thru the Universe...", - "screen_name": "Jouelzy", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 107, - "name": "Jouelzy", - "profile_use_background_image": true, - "description": "OG #SmartBrownGirl. Writer | Tech | Culture | Snark | Womanist Really love tacos, really is my email: tacos@jouelzy.com https://t.co/qfCo83qrSw", - "url": "https://t.co/oeQSvIWKEP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Dec 01 01:22:22 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", - "favourites_count": 763, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", - "default_profile_image": false, - "id": 221579212, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 43562, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/221579212/1412759867", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "26565946", - "following": false, - "friends_count": 117, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "justintimberlake.com", - "url": "http://t.co/SRqd8jW6W3", - "expanded_url": "http://www.justintimberlake.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 51082978, - "location": "Memphis, TN", - "screen_name": "jtimberlake", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 76095, - "name": "Justin Timberlake", - "profile_use_background_image": true, - "description": "The Official Twitter of Justin Timberlake", - "url": "http://t.co/SRqd8jW6W3", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Mar 25 19:10:50 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", - "favourites_count": 14, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "default_profile_image": false, - "id": 26565946, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 3106, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26565946/1424110230", - "is_translator": false - }, - { - "time_zone": "Mumbai", - "profile_use_background_image": true, - "description": "Former Chairman of Tata Group. Personal interests : - aviation, automobiles, scuba diving and architectural design.", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": 19800, - "id_str": "277434037", - "blocking": false, - "is_translation_enabled": false, - "id": 277434037, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 05 11:01:00 +0000 2011", - "profile_image_url": "http://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 116, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", - "favourites_count": 7, - "geo_enabled": true, - "follow_request_sent": false, - "followers_count": 5407277, - "blocked_by": false, - "following": false, - "location": "Mumbai", - "muting": false, - "friends_count": 38, - "notifications": false, - "screen_name": "RNTata2000", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2742, - "is_translator": false, - "name": "Ratan N. Tata" - } - ], - "previous_cursor": 0, - "previous_cursor_str": "0", - "next_cursor_str": "1510492845088954664" -} \ No newline at end of file +{"users": [{"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "2251081112", "following": false, "friends_count": 49, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "masterdynamic.com", "url": "http://t.co/SgGVimTMa1", "expanded_url": "http://www.masterdynamic.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649050988293267456/zAXOGdlc.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2019, "location": "", "screen_name": "MasterDynamic", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 41, "name": "Master & Dynamic", "profile_use_background_image": false, "description": "Sound Tools For Creative Minds.", "url": "http://t.co/SgGVimTMa1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649051412417093632/fDSbNhAm_normal.jpg", "profile_background_color": "F8F8F8", "created_at": "Tue Dec 17 22:58:37 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649051412417093632/fDSbNhAm_normal.jpg", "favourites_count": 726, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649050988293267456/zAXOGdlc.jpg", "default_profile_image": false, "id": 2251081112, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1065, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2251081112/1447342923", "is_translator": false}, {"time_zone": null, "profile_use_background_image": false, "description": "Peach is a fun, simple way to keep up with friends and be yourself.", "url": "https://t.co/yI3RpqAqQF", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4611360201", "profile_image_url": "http://pbs.twimg.com/profile_images/680753311562117120/TQ4Sg47x_normal.png", "friends_count": 9, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "peach.cool", "url": "https://t.co/yI3RpqAqQF", "expanded_url": "http://peach.cool", "indices": [0, 23]}]}}, "profile_background_color": "000000", "created_at": "Sat Dec 26 14:07:02 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "000000", "profile_link_color": "FF80B9", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 42, "profile_sidebar_border_color": "000000", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/680753311562117120/TQ4Sg47x_normal.png", "favourites_count": 16, "listed_count": 7, "geo_enabled": false, "follow_request_sent": false, "followers_count": 698, "following": false, "default_profile_image": false, "id": 4611360201, "blocked_by": false, "name": "Peach", "location": "New York, NY", "screen_name": "peachdotcool", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "profile_use_background_image": true, "description": "Sneaker Shop check us on IG : Benjaminkickz", "url": "http://t.co/rAZPYRorYS", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2213249522", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000786646414/7d66371ca1394de489bf94c00eb96886_normal.png", "friends_count": 12, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "benjaminkickz.com", "url": "http://t.co/rAZPYRorYS", "expanded_url": "http://www.benjaminkickz.com", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Mon Nov 25 00:04:30 +0000 2013", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000786646414/7d66371ca1394de489bf94c00eb96886_normal.png", "favourites_count": 0, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 585, "following": false, "default_profile_image": false, "id": 2213249522, "blocked_by": false, "name": "Benjaminkickz", "location": "", "screen_name": "benjaminkickz", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "LaToya, Torrian & Draymond are The REAL MVP'S. God blessed me with 3 AWESOME CHILDREN and I am so blessed to have them All!", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2846207905", "profile_image_url": "http://pbs.twimg.com/profile_images/640725097481940994/t-Sxl46Z_normal.jpg", "friends_count": 527, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Wed Oct 08 05:00:06 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 9104, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/640725097481940994/t-Sxl46Z_normal.jpg", "favourites_count": 13622, "listed_count": 151, "geo_enabled": true, "follow_request_sent": false, "followers_count": 11685, "following": false, "default_profile_image": false, "id": 2846207905, "blocked_by": false, "name": "Mary Babers-Green", "location": "Saginaw Township North, MI", "screen_name": "BabersGreen", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2377837022", "following": false, "friends_count": 82, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Facebook.com/MuppetsKermit", "url": "http://t.co/kjainYAA9x", "expanded_url": "http://Facebook.com/MuppetsKermit", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 88405, "location": "Hollywood, CA", "screen_name": "KermitTheFrog", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 461, "name": "Kermit the Frog", "profile_use_background_image": true, "description": "Hi-ho! Welcome to the official Twitter of me, Kermit the Frog!", "url": "http://t.co/kjainYAA9x", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Sat Mar 08 00:14:55 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", "favourites_count": 11, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "default_profile_image": false, "id": 2377837022, "blocked_by": false, "profile_background_tile": false, "statuses_count": 487, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2377837022/1444773126", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "271395703", "following": false, "friends_count": 323, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/Ariadnagutierr\u2026", "url": "https://t.co/T7mRnNYeAF", "expanded_url": "https://www.facebook.com/Ariadnagutierrezofficial/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 142503, "location": "", "screen_name": "gutierrezary", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 91, "name": "Ariadna Gutierrez", "profile_use_background_image": true, "description": "Miss Colombia \u2764\ufe0f Management: grecia@Latinwe.com", "url": "https://t.co/T7mRnNYeAF", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 24 12:31:11 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", "favourites_count": 1160, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", "default_profile_image": false, "id": 271395703, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2629, "profile_banner_url": "https://pbs.twimg.com/profile_banners/271395703/1452025456", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "36818161", "following": false, "friends_count": 1548, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "goldroom.la", "url": "http://t.co/IQ8kdCE2P6", "expanded_url": "http://goldroom.la", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397706531/try2.jpg", "notifications": false, "profile_sidebar_fill_color": "CDDAFA", "profile_link_color": "007BFF", "geo_enabled": true, "followers_count": 19678, "location": "Los Angeles", "screen_name": "goldroom", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 349, "name": "Goldroom", "profile_use_background_image": true, "description": "Music producer, songwriter, rum drinker.", "url": "http://t.co/IQ8kdCE2P6", "profile_text_color": "1F1E1F", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Apr 30 23:54:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "245BFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", "favourites_count": 58633, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397706531/try2.jpg", "default_profile_image": false, "id": 36818161, "blocked_by": false, "profile_background_tile": true, "statuses_count": 18478, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36818161/1449780672", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "45090120", "following": false, "friends_count": 385, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "smarturl.it/Summertime06", "url": "https://t.co/vnFEaoggqW", "expanded_url": "http://smarturl.it/Summertime06", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "603311", "geo_enabled": true, "followers_count": 228852, "location": "Long Beach, CA", "screen_name": "vincestaples", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 665, "name": "Vince Staples", "profile_use_background_image": false, "description": "I get mad cause the world don't understand me. That's the price I had to pay for this rap game. - Lil B", "url": "https://t.co/vnFEaoggqW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", "profile_background_color": "101820", "created_at": "Sat Jun 06 07:40:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", "favourites_count": 2633, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", "default_profile_image": false, "id": 45090120, "blocked_by": false, "profile_background_tile": true, "statuses_count": 11643, "profile_banner_url": "https://pbs.twimg.com/profile_banners/45090120/1418950988", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4704812826", "following": false, "friends_count": 116, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": null, "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2B7BB9", "geo_enabled": false, "followers_count": 12661, "location": "Chile", "screen_name": "Letelier1920", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 33, "name": "Hern\u00e1n Letelier", "profile_use_background_image": true, "description": "Tengo 20 a\u00f1os, pero acabo de cumplir 95. Actor y director de teatro a mediados del XX. \u00bfSe acuerda de Pierre le peluquier de la P\u00e9rgola de las Flores? Era yo", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", "profile_background_color": "F5F8FA", "created_at": "Sun Jan 03 20:12:25 +0000 2016", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", "favourites_count": 817, "profile_background_image_url_https": null, "default_profile_image": false, "id": 4704812826, "blocked_by": false, "profile_background_tile": false, "statuses_count": 193, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4704812826/1452092286", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "27244131", "following": false, "friends_count": 878, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/gussa", "url": "https://t.co/S3aUB7YG60", "expanded_url": "https://www.linkedin.com/in/gussa", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1368, "location": "Melbourne, Australia", "screen_name": "angushervey", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "Angus Hervey", "profile_use_background_image": true, "description": "political economist, science communicator, optimist with @future_crunch | community manager for @rhokaustralia | PhD from London School of Economics", "url": "https://t.co/S3aUB7YG60", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Sat Mar 28 15:13:06 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", "favourites_count": 632, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "default_profile_image": false, "id": 27244131, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1880, "profile_banner_url": "https://pbs.twimg.com/profile_banners/27244131/1451984968", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "140497508", "following": false, "friends_count": 96, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 26357, "location": "Queens holla! IG/Snap:rosgo21", "screen_name": "ROSGO21", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 520, "name": "Rosalyn Gold-Onwude", "profile_use_background_image": true, "description": "GS Warriors sideline: CSN. NYLiberty: MSG. NCAA: PAC12. SF 49ers: CSN. Emmy Winner. Stanford Grad: BA, MA '10. 3 Final 4s. Pac12 DPOY '10.Nigerian Natl team '11", "url": null, "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", "profile_background_color": "642D8B", "created_at": "Wed May 05 17:00:22 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", "favourites_count": 2828, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "default_profile_image": false, "id": 140497508, "blocked_by": false, "profile_background_tile": true, "statuses_count": 29557, "profile_banner_url": "https://pbs.twimg.com/profile_banners/140497508/1351351402", "is_translator": false}, {"time_zone": "Tehran", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 12600, "id_str": "16779204", "following": false, "friends_count": 6313, "entities": {"description": {"urls": [{"display_url": "bit.ly/1CQYaYU", "url": "https://t.co/mbs8lwspQK", "expanded_url": "http://bit.ly/1CQYaYU", "indices": [120, 143]}]}, "url": {"urls": [{"display_url": "hoder.com", "url": "https://t.co/mnzE4YRMC6", "expanded_url": "http://hoder.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 6824, "location": "Tehran, Iran", "screen_name": "h0d3r", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 152, "name": "Hossein Derakhshan", "profile_use_background_image": false, "description": "Iranian-Canadian author, blogger, analyst. Spent 6 yrs in jail from 2008. Author of 'The Web We Have to Save' (Matter): https://t.co/mbs8lwspQK hoder@hoder.com", "url": "https://t.co/mnzE4YRMC6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Oct 15 11:00:35 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", "favourites_count": 5024, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "default_profile_image": false, "id": 16779204, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1241, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16779204/1416664427", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "29844055", "following": false, "friends_count": 8, "entities": {"description": {"urls": [{"display_url": "tinyurl.com/lp7ubo4", "url": "http://t.co/L1iS5iJRHH", "expanded_url": "http://tinyurl.com/lp7ubo4", "indices": [47, 69]}]}, "url": {"urls": [{"display_url": "TxDxE.com", "url": "http://t.co/RXjkFoFTKl", "expanded_url": "http://www.TxDxE.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", "notifications": false, "profile_sidebar_fill_color": "050505", "profile_link_color": "354E99", "geo_enabled": false, "followers_count": 643505, "location": "CARSON, CA (W/S DA)", "screen_name": "abdashsoul", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1776, "name": "Ab-Soul", "profile_use_background_image": true, "description": "#blacklippastor | #THESEDAYS... available now: http://t.co/L1iS5iJRHH | Booking: mgmt@txdxe.com | Instagram: @souloho3", "url": "http://t.co/RXjkFoFTKl", "profile_text_color": "615B5C", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", "profile_background_color": "080808", "created_at": "Wed Apr 08 22:43:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "9AA5AB", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", "favourites_count": 52, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", "default_profile_image": false, "id": 29844055, "blocked_by": false, "profile_background_tile": true, "statuses_count": 20050, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29844055/1427233664", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1337271", "following": false, "friends_count": 2502, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mlkshk.com/p/YLTA", "url": "http://t.co/wL4BXidKHJ", "expanded_url": "http://mlkshk.com/p/YLTA", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "113838", "geo_enabled": false, "followers_count": 40311, "location": "waking up ", "screen_name": "darth", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 943, "name": "darth\u2122", "profile_use_background_image": false, "description": "not the darth you are looking for", "url": "http://t.co/wL4BXidKHJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", "profile_background_color": "131516", "created_at": "Sat Mar 17 05:38:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", "favourites_count": 271725, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", "default_profile_image": false, "id": 1337271, "blocked_by": false, "profile_background_tile": false, "statuses_count": 31700, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1337271/1398194350", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "16228398", "following": false, "friends_count": 986, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cyberdust.com/addme?blogmave\u2026", "url": "http://t.co/q9qtJaGLrB", "expanded_url": "http://cyberdust.com/addme?blogmaverick", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4313188, "location": "", "screen_name": "mcuban", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 26161, "name": "Mark Cuban", "profile_use_background_image": true, "description": "Cyber Dust ID: blogmaverick", "url": "http://t.co/q9qtJaGLrB", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Sep 10 21:12:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", "favourites_count": 279, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", "default_profile_image": false, "id": 16228398, "blocked_by": false, "profile_background_tile": true, "statuses_count": 758, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16228398/1398982404", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "216582908", "following": false, "friends_count": 213, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1465, "location": "San Fran", "screen_name": "jmsSanFran", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 42, "name": "Jeffrey Siminoff", "profile_use_background_image": false, "description": "Soon to be @twitter (not yet). Inclusion & Diversity. Foodie. Would-be concierge. Traveler. Equinox. Duke. Emory Law. Former NYC, former Apple.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Nov 17 04:26:58 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", "favourites_count": 616, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 216582908, "blocked_by": false, "profile_background_tile": false, "statuses_count": 891, "profile_banner_url": "https://pbs.twimg.com/profile_banners/216582908/1439074474", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "98988930", "following": false, "friends_count": 10, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 82696, "location": "The North Pole", "screen_name": "santa", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 171, "name": "Santa Claus", "profile_use_background_image": true, "description": "#crushingit", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/590905131/image_normal.jpg", "profile_background_color": "DD2E44", "created_at": "Thu Dec 24 00:15:25 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590905131/image_normal.jpg", "favourites_count": 427, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "default_profile_image": false, "id": 98988930, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1755, "profile_banner_url": "https://pbs.twimg.com/profile_banners/98988930/1419058838", "is_translator": false}, {"time_zone": "Arizona", "profile_use_background_image": true, "description": "Software Engineer at Twitter", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "27485958", "profile_image_url": "http://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", "friends_count": 130, "entities": {"description": {"urls": []}}, "profile_background_color": "B2DFDA", "created_at": "Sun Mar 29 19:30:27 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 112, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", "favourites_count": 245, "listed_count": 3, "geo_enabled": false, "follow_request_sent": false, "followers_count": 174, "following": false, "default_profile_image": false, "id": 27485958, "blocked_by": false, "name": "Guanglei", "location": "San Francisco Bay Area", "screen_name": "luckysong", "profile_background_tile": false, "notifications": false, "utc_offset": -25200, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "124003770", "following": false, "friends_count": 154, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cher.com", "url": "http://t.co/E5aYMJHxx5", "expanded_url": "http://cher.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "F92649", "geo_enabled": true, "followers_count": 2932243, "location": "Malibu, California", "screen_name": "cher", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 11219, "name": "Cher", "profile_use_background_image": true, "description": "Stand & B Counted or Sit & B Nothing.\nDon't Litter,Chew Gum,Walk Past \nHomeless PPL w/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\nTHERE'S ONLY LOVE&FEAR", "url": "http://t.co/E5aYMJHxx5", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 17 23:05:55 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", "favourites_count": 1123, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", "default_profile_image": false, "id": 124003770, "blocked_by": false, "profile_background_tile": false, "statuses_count": 16283, "profile_banner_url": "https://pbs.twimg.com/profile_banners/124003770/1402616686", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "harpo studios EVP; mom, sister, friend. Travelling new and uncharted path, holding on to love and strength.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "16606403", "profile_image_url": "http://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", "friends_count": 1987, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Oct 05 22:14:12 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4561, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", "favourites_count": 399, "listed_count": 149, "geo_enabled": false, "follow_request_sent": false, "followers_count": 15617, "following": false, "default_profile_image": false, "id": 16606403, "blocked_by": false, "name": "harriet seitler", "location": "iPhone: 42.189728,-87.802538", "screen_name": "hseitler", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5510452", "following": false, "friends_count": 355, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "medium.com/@ameet", "url": "http://t.co/hOMy2GqrvD", "expanded_url": "http://medium.com/@ameet", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 4193, "location": "San Francisco, CA", "screen_name": "ameet", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 93, "name": "Ameet Ranadive", "profile_use_background_image": true, "description": "VP Revenue Product @Twitter. Formerly Dasient ($TWTR), McKinsey. Love building products, startups, reading, writing, cooking, being a dad.", "url": "http://t.co/hOMy2GqrvD", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Apr 25 22:41:59 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", "favourites_count": 4657, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 5510452, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4637, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5510452/1422199159", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "29442313", "following": false, "friends_count": 1910, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sanders.senate.gov", "url": "http://t.co/8AS4FI1oge", "expanded_url": "http://www.sanders.senate.gov/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", "notifications": false, "profile_sidebar_fill_color": "D6CCB6", "profile_link_color": "44506A", "geo_enabled": true, "followers_count": 1168571, "location": "Vermont/DC", "screen_name": "SenSanders", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 11871, "name": "Bernie Sanders", "profile_use_background_image": true, "description": "Sen. Bernie Sanders is the longest serving independent in congressional history. Tweets ending in -B are from Bernie, and all others are from a staffer.", "url": "http://t.co/8AS4FI1oge", "profile_text_color": "304562", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", "profile_background_color": "000000", "created_at": "Tue Apr 07 13:02:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", "favourites_count": 13, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", "default_profile_image": false, "id": 29442313, "blocked_by": false, "profile_background_tile": false, "statuses_count": 13418, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29442313/1430854323", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "216776631", "following": false, "friends_count": 1407, "entities": {"description": {"urls": [{"display_url": "berniesanders.com", "url": "http://t.co/nuBuflYjUL", "expanded_url": "http://berniesanders.com", "indices": [92, 114]}]}, "url": {"urls": [{"display_url": "berniesanders.com", "url": "https://t.co/W6f7Iy1Nho", "expanded_url": "https://berniesanders.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1113827, "location": "Vermont", "screen_name": "BernieSanders", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 5205, "name": "Bernie Sanders", "profile_use_background_image": false, "description": "I believe America is ready for a new path to the future. Join our campaign for president at http://t.co/nuBuflYjUL.", "url": "https://t.co/W6f7Iy1Nho", "profile_text_color": "050005", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", "profile_background_color": "EA5047", "created_at": "Wed Nov 17 17:53:52 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", "favourites_count": 658, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", "default_profile_image": false, "id": 216776631, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5517, "profile_banner_url": "https://pbs.twimg.com/profile_banners/216776631/1451363799", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17159397", "following": false, "friends_count": 2290, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wnba.com", "url": "http://t.co/VSPC6ki5Sa", "expanded_url": "http://www.wnba.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "FF0000", "geo_enabled": false, "followers_count": 501515, "location": "", "screen_name": "WNBA", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2070, "name": "WNBA", "profile_use_background_image": true, "description": "News & notes directly from the WNBA.", "url": "http://t.co/VSPC6ki5Sa", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", "profile_background_color": "FFFFFF", "created_at": "Tue Nov 04 16:04:48 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", "favourites_count": 300, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", "default_profile_image": false, "id": 17159397, "blocked_by": false, "profile_background_tile": false, "statuses_count": 30615, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17159397/1444881224", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18129606", "following": false, "friends_count": 790, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/saintboz", "url": "http://t.co/m8390gFxR6", "expanded_url": "http://twitter.com/saintboz", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 3624, "location": "\u00dcT: 40.810606,-73.986908", "screen_name": "SaintBoz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "Boz Saint John", "profile_use_background_image": true, "description": "Self proclaimed badass and badmamajama. Generally bad. And good at it. Head diva of global consumer marketing @applemusic & @itunes", "url": "http://t.co/m8390gFxR6", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Mon Dec 15 03:37:52 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", "favourites_count": 1172, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", "default_profile_image": false, "id": 18129606, "blocked_by": false, "profile_background_tile": true, "statuses_count": 2923, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18129606/1353602146", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "122860384", "profile_image_url": "http://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", "friends_count": 110, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sun Mar 14 04:44:33 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 417, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", "favourites_count": 945, "listed_count": 69, "geo_enabled": true, "follow_request_sent": false, "followers_count": 1240, "following": false, "default_profile_image": false, "id": 122860384, "blocked_by": false, "name": "Felicia Horowitz", "location": "", "screen_name": "FeliciaHorowitz", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "205926603", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com", "url": "http://t.co/DeO4c250gs", "expanded_url": "http://twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", "notifications": false, "profile_sidebar_fill_color": "F2E7C4", "profile_link_color": "89C9FA", "geo_enabled": false, "followers_count": 59832, "location": "TwitterHQ", "screen_name": "hackweek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 97, "name": "HackWeek", "profile_use_background_image": true, "description": "Let's hack together.", "url": "http://t.co/DeO4c250gs", "profile_text_color": "9C6D74", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", "profile_background_color": "452D30", "created_at": "Thu Oct 21 22:27:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9C486", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", "favourites_count": 1, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", "default_profile_image": false, "id": 205926603, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1, "profile_banner_url": "https://pbs.twimg.com/profile_banners/205926603/1420662867", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2835886194", "following": false, "friends_count": 179, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "colbertlateshow.com", "url": "https://t.co/YTzFH21e5t", "expanded_url": "http://colbertlateshow.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 138182, "location": "", "screen_name": "colbertlateshow", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1002, "name": "The Late Show on CBS", "profile_use_background_image": true, "description": "Official Twitter feed of The Late Show with Stephen Colbert. Unofficial Twitter feed of the U.S. Department of Agriculture.", "url": "https://t.co/YTzFH21e5t", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Sep 30 17:13:22 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", "favourites_count": 249, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2835886194, "blocked_by": false, "profile_background_tile": false, "statuses_count": 804, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2835886194/1444429479", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3165817215", "following": false, "friends_count": 180, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 398560, "location": "", "screen_name": "JohnBoyega", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 856, "name": "John Boyega", "profile_use_background_image": true, "description": "Dream and work towards the reality", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 14 09:19:31 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", "favourites_count": 201, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3165817215, "blocked_by": false, "profile_background_tile": false, "statuses_count": 365, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3165817215/1451410540", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "252531143", "following": false, "friends_count": 3141, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "princeton.edu/~slaughtr/", "url": "http://t.co/jJRR31QiUl", "expanded_url": "http://www.princeton.edu/~slaughtr/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "2EBCB3", "geo_enabled": true, "followers_count": 129956, "location": "Princeton, DC, New York", "screen_name": "SlaughterAM", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3983, "name": "Anne-Marie Slaughter", "profile_use_background_image": true, "description": "President & CEO, @newamerica. Former Princeton Prof & Director of Policy Planning, U.S. State Dept. Mother. Mentor. Foodie. Author. Foreign policy curator.", "url": "http://t.co/jJRR31QiUl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", "profile_background_color": "968270", "created_at": "Tue Feb 15 11:33:50 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", "favourites_count": 2854, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 252531143, "blocked_by": false, "profile_background_tile": false, "statuses_count": 25191, "profile_banner_url": "https://pbs.twimg.com/profile_banners/252531143/1424986634", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "299674713", "following": false, "friends_count": 597, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "juliefoudyleadership.com", "url": "http://t.co/TlwVOqMe3Z", "expanded_url": "http://www.juliefoudyleadership.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "C73460", "geo_enabled": true, "followers_count": 196506, "location": "I wish I knew...", "screen_name": "JulieFoudy", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1469, "name": "Julie Foudy", "profile_use_background_image": true, "description": "Former watergirl #USWNT, current ESPN'er, mom, founder JF Sports Leadership Academy. Luvr of donuts larger than my heeed & soulful peops who empower others.", "url": "http://t.co/TlwVOqMe3Z", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", "profile_background_color": "B2DFDA", "created_at": "Mon May 16 14:14:49 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "default_profile_image": false, "id": 299674713, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6724, "profile_banner_url": "https://pbs.twimg.com/profile_banners/299674713/1402758316", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2651565121", "following": false, "friends_count": 10, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sinatra.com", "url": "https://t.co/Xt6lI7LMFC", "expanded_url": "http://sinatra.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0890C2", "geo_enabled": false, "followers_count": 22119, "location": "", "screen_name": "franksinatra", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 146, "name": "Frank Sinatra", "profile_use_background_image": false, "description": "The Chairman of the Board - the official Twitter profile for Frank Sinatra Enterprises", "url": "https://t.co/Xt6lI7LMFC", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Jul 16 16:58:44 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", "favourites_count": 83, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2651565121, "blocked_by": false, "profile_background_tile": false, "statuses_count": 352, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2651565121/1406242389", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "21561935", "following": false, "friends_count": 901, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kissthedeejay.com", "url": "http://t.co/6moXT5RhPn", "expanded_url": "http://www.kissthedeejay.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", "notifications": false, "profile_sidebar_fill_color": "0A0A0B", "profile_link_color": "929287", "geo_enabled": false, "followers_count": 10811, "location": "NYC", "screen_name": "KISSTHEDEEJAY", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 271, "name": "DJ KISS", "profile_use_background_image": true, "description": "Deejay / Personality / Blogger / Fashion & Beauty Enthusiast / 1/2 of #TheSemples", "url": "http://t.co/6moXT5RhPn", "profile_text_color": "E11930", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", "profile_background_color": "F5F2F7", "created_at": "Sun Feb 22 12:22:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", "favourites_count": 17, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", "default_profile_image": false, "id": 21561935, "blocked_by": false, "profile_background_tile": true, "statuses_count": 7709, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21561935/1422280291", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "43987763", "following": false, "friends_count": 1165, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 818, "location": "San Francisco, CA", "screen_name": "nataliemiyake", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 36, "name": "Natalie Miyake", "profile_use_background_image": true, "description": "Corporate communications @twitter. Raised in Japan, ex-New Yorker, now in SF. Wine lover, hiking addict, brunch connoisseur.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Mon Jun 01 22:19:32 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", "favourites_count": 1571, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "default_profile_image": false, "id": 43987763, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3687, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43987763/1397010068", "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "412715336", "following": false, "friends_count": 159, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1108, "location": "San Francisco, CA", "screen_name": "Celebrate", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 14, "name": "#Celebrate", "profile_use_background_image": true, "description": "#celebrate", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", "profile_background_color": "707375", "created_at": "Tue Nov 15 02:02:23 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", "favourites_count": 7, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", "default_profile_image": false, "id": 412715336, "blocked_by": false, "profile_background_tile": true, "statuses_count": 88, "profile_banner_url": "https://pbs.twimg.com/profile_banners/412715336/1449089216", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "158595960", "following": false, "friends_count": 228, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 364, "location": "San Francisco", "screen_name": "drao", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Deepak Rao", "profile_use_background_image": true, "description": "Product Manager @Twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 23 03:19:05 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", "favourites_count": 646, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 158595960, "blocked_by": false, "profile_background_tile": false, "statuses_count": 269, "profile_banner_url": "https://pbs.twimg.com/profile_banners/158595960/1405201901", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16669075", "following": false, "friends_count": 616, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fema.gov", "url": "http://t.co/yHUd9eUBs0", "expanded_url": "http://www.fema.gov/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", "notifications": false, "profile_sidebar_fill_color": "DCDCE0", "profile_link_color": "2A91B0", "geo_enabled": true, "followers_count": 440519, "location": "United States", "screen_name": "fema", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8834, "name": "FEMA", "profile_use_background_image": true, "description": "Our story of supporting citizens & first responders before, during, and after emergencies. For emergencies, call your local fire/EMS/police or 9-1-1.", "url": "http://t.co/yHUd9eUBs0", "profile_text_color": "65686E", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", "profile_background_color": "CCCCCC", "created_at": "Thu Oct 09 16:54:20 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", "favourites_count": 519, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", "default_profile_image": false, "id": 16669075, "blocked_by": false, "profile_background_tile": false, "statuses_count": 10491, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16669075/1444411889", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1072103227", "following": false, "friends_count": 1004, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 832, "location": "SF", "screen_name": "heySierra", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 13, "name": "Sierra Lord", "profile_use_background_image": true, "description": "#gsd @twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Jan 08 21:50:58 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", "favourites_count": 3027, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1072103227, "blocked_by": false, "profile_background_tile": false, "statuses_count": 548, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1072103227/1357682472", "is_translator": false}, {"time_zone": "Quito", "profile_use_background_image": true, "description": "Director of Video and Contributing Editor at @ThinkProgress. Contributing host @bpshow. Opinions, my own. E-mail: ivolsky@americanprogress.org", "url": "http://t.co/YV2uNXXlyL", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "16002085", "profile_image_url": "http://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", "friends_count": 2895, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thinkprogress.org", "url": "http://t.co/YV2uNXXlyL", "expanded_url": "http://www.thinkprogress.org", "indices": [0, 22]}]}}, "profile_background_color": "C6E2EE", "created_at": "Tue Aug 26 20:17:23 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "profile_text_color": "663B12", "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 29775, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", "favourites_count": 649, "listed_count": 1267, "geo_enabled": true, "follow_request_sent": false, "followers_count": 74911, "following": false, "default_profile_image": false, "id": 16002085, "blocked_by": false, "name": "igorvolsky", "location": "Washington, DC", "screen_name": "igorvolsky", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "84981428", "following": false, "friends_count": 258, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "braintreepayments.com", "url": "https://t.co/Vc3MPaIBSU", "expanded_url": "http://www.braintreepayments.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4603, "location": "San Francisco, Chicago", "screen_name": "williamready", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 171, "name": "William Ready", "profile_use_background_image": true, "description": "SVP, Global Head of Product & Engineering at PayPal. CEO of @Braintree/@Venmo. Creating the easiest way to pay or get paid - online, mobile, in-store.", "url": "https://t.co/Vc3MPaIBSU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Oct 25 01:31:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", "favourites_count": 1585, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 84981428, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2224, "profile_banner_url": "https://pbs.twimg.com/profile_banners/84981428/1410287238", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Instagram- brush_4\nsnapchat- showmeb", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "48477007", "profile_image_url": "http://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", "friends_count": 368, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Thu Jun 18 20:24:45 +0000 2009", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", "statuses_count": 16019, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", "favourites_count": 7, "listed_count": 943, "geo_enabled": false, "follow_request_sent": false, "followers_count": 51042, "following": false, "default_profile_image": false, "id": 48477007, "blocked_by": false, "name": "Brandon Rush", "location": "", "screen_name": "BRush_25", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "4220691364", "following": false, "friends_count": 33, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sunsetwx.com", "url": "https://t.co/EQ5OfbQIZd", "expanded_url": "http://sunsetwx.com/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3017, "location": "", "screen_name": "sunset_wx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 66, "name": "Sunset Weather", "profile_use_background_image": true, "description": "Sunset & Sunrise Predictions: Model using an in-depth algorithm comprised of meteorological factors. Developed by @WxDeFlitch, @WxReppert, @hallettwx", "url": "https://t.co/EQ5OfbQIZd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Nov 18 19:58:34 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", "favourites_count": 3777, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4220691364, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1812, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4220691364/1447893477", "is_translator": false}, {"time_zone": "Greenland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "247901736", "following": false, "friends_count": 789, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/theblurbarbosa", "url": "http://t.co/BLAOP8mM9P", "expanded_url": "http://instagram.com/theblurbarbosa", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "C1C70A", "geo_enabled": false, "followers_count": 106436, "location": "Brazil", "screen_name": "TheBlurBarbosa", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1024, "name": "Leandro Barbosa", "profile_use_background_image": true, "description": "Jogador de Basquete da NBA. \nThe official account of Leandro Barbosa, basketball player!", "url": "http://t.co/BLAOP8mM9P", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", "profile_background_color": "0EC704", "created_at": "Sat Feb 05 20:31:51 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", "favourites_count": 614, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", "default_profile_image": false, "id": 247901736, "blocked_by": false, "profile_background_tile": true, "statuses_count": 5009, "profile_banner_url": "https://pbs.twimg.com/profile_banners/247901736/1406161704", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "858957830", "following": false, "friends_count": 265, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 41636, "location": "", "screen_name": "gswstats", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 518, "name": "GSWStats", "profile_use_background_image": true, "description": "An official twitter account of the Golden State Warriors, featuring statistics, news and notes about the team throughout the season.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Oct 03 00:50:25 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", "favourites_count": 9, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 858957830, "blocked_by": false, "profile_background_tile": true, "statuses_count": 9548, "profile_banner_url": "https://pbs.twimg.com/profile_banners/858957830/1401380224", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "22965624", "following": false, "friends_count": 587, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lafourcade.com.mx", "url": "http://t.co/CV9kDVyOwc", "expanded_url": "http://lafourcade.com.mx", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 1704535, "location": "Mexico, DF", "screen_name": "lafourcade", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5644, "name": "Natalia Lafourcade", "profile_use_background_image": true, "description": "musico", "url": "http://t.co/CV9kDVyOwc", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Mar 05 19:38:07 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", "favourites_count": 249, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "default_profile_image": false, "id": 22965624, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6361, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22965624/1425415118", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3099613624", "following": false, "friends_count": 130, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 86207, "location": "", "screen_name": "salmahayek", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 488, "name": "Salma Hayek", "profile_use_background_image": false, "description": "After hundreds of impostors, years of procrastination, and a self-imposed allergy to technology, FINALLY I'm here. \u00a1Hola! It's Salma.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Mar 20 15:48:51 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", "favourites_count": 4, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3099613624, "blocked_by": false, "profile_background_tile": false, "statuses_count": 96, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3099613624/1438298694", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18441988", "following": false, "friends_count": 304, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 245661, "location": "", "screen_name": "jrich23", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3054, "name": "Jason Richardson", "profile_use_background_image": true, "description": "Father, Husband and just all around good guy!", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Dec 29 04:04:33 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", "favourites_count": 5, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", "default_profile_image": false, "id": 18441988, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2691, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18441988/1395676880", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15506669", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 73655, "location": "", "screen_name": "JeffBezos", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 880, "name": "Jeff Bezos", "profile_use_background_image": true, "description": "Amazon, Blue Origin, Washington Post", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jul 20 22:38:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 15506669, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15506669/1448361938", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "15930926", "following": false, "friends_count": 1445, "entities": {"description": {"urls": [{"display_url": "therapfan.com", "url": "http://t.co/6ty3IIzh7f", "expanded_url": "http://therapfan.com", "indices": [101, 123]}]}, "url": {"urls": [{"display_url": "therapfan.com", "url": "https://t.co/fVOL5FpVZ3", "expanded_url": "http://www.therapfan.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": true, "followers_count": 8755, "location": "WI - STL - CA - ATL - tour", "screen_name": "djtrackstar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 194, "name": "track", "profile_use_background_image": true, "description": "Professional Rap Fan. Tour DJ for Run the Jewels. The Smoking Section. WRTJ on Beats1. @peaceimages. http://t.co/6ty3IIzh7f fb/ig:trackstarthedj", "url": "https://t.co/fVOL5FpVZ3", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Thu Aug 21 13:14:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", "favourites_count": 6839, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", "default_profile_image": false, "id": 15930926, "blocked_by": false, "profile_background_tile": false, "statuses_count": 32239, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15930926/1388895937", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1496009995", "following": false, "friends_count": 634, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/jikpa", "url": "https://t.co/dNEeeChBZx", "expanded_url": "http://linkedin.com/in/jikpa", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 612, "location": "San Francisco, CA", "screen_name": "jikpapa", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 6, "name": "Janet Ikpa", "profile_use_background_image": true, "description": "Diversity Strategist @Twitter | Past life @Google | @Blackbirds & @WomEng Lead | UC Santa Barbara & Indiana University Alum | \u2764\ufe0f | Thoughts my own", "url": "https://t.co/dNEeeChBZx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Sun Jun 09 16:16:26 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", "favourites_count": 2746, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "default_profile_image": false, "id": 1496009995, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1058, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496009995/1431054902", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "100224999", "following": false, "friends_count": 183, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 505, "location": "San Francisco", "screen_name": "gabi_dee", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 14, "name": "Gabrielle Delva", "profile_use_background_image": false, "description": "travel enthusiast, professional giggler, gif guru, forever in transition.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Dec 29 13:27:37 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", "favourites_count": 1373, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "default_profile_image": false, "id": 100224999, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6503, "profile_banner_url": "https://pbs.twimg.com/profile_banners/100224999/1426546312", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "18768473", "following": false, "friends_count": 2135, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "open.spotify.com/user/brucedais\u2026", "url": "https://t.co/l0e3ybjdUA", "expanded_url": "https://open.spotify.com/user/brucedaisley", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 19661, "location": "", "screen_name": "brucedaisley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 416, "name": "Bruce Daisley", "profile_use_background_image": true, "description": "Typo strewn tweets about pop music. #HeForShe. Work at Twitter.", "url": "https://t.co/l0e3ybjdUA", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", "profile_background_color": "352726", "created_at": "Thu Jan 08 16:20:21 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", "favourites_count": 14621, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", "default_profile_image": false, "id": 18768473, "blocked_by": false, "profile_background_tile": false, "statuses_count": 20375, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18768473/1441290267", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "60900903", "following": false, "friends_count": 2731, "entities": {"description": {"urls": [{"display_url": "squ.re/1MXEAse", "url": "https://t.co/lZueerHDOb", "expanded_url": "http://squ.re/1MXEAse", "indices": [125, 148]}]}, "url": {"urls": [{"display_url": "mrtodspies.com", "url": "https://t.co/Bu7ML9v7ZC", "expanded_url": "http://www.mrtodspies.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2251, "location": "Aqui Estoy", "screen_name": "MrTodsPies", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 71, "name": "Mr. Tod", "profile_use_background_image": true, "description": "CEO and Founder of Mr Tod's Pie Factory - ABC Shark Tank's First Winner - Sweet Potato Pie King - Check out my Square Story: https://t.co/lZueerHDOb", "url": "https://t.co/Bu7ML9v7ZC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Jul 28 13:20:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", "favourites_count": 423, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", "default_profile_image": false, "id": 60900903, "blocked_by": false, "profile_background_tile": true, "statuses_count": 2574, "profile_banner_url": "https://pbs.twimg.com/profile_banners/60900903/1432911758", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Founder & CEO of Tinder", "url": "https://t.co/801oYHR78b", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "6148472", "profile_image_url": "http://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", "friends_count": 57, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gotinder.com", "url": "https://t.co/801oYHR78b", "expanded_url": "http://gotinder.com", "indices": [0, 23]}]}}, "profile_background_color": "C0DEED", "created_at": "Fri May 18 22:24:10 +0000 2007", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2152, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", "favourites_count": 3, "listed_count": 390, "geo_enabled": false, "follow_request_sent": false, "followers_count": 7032, "following": false, "default_profile_image": false, "id": 6148472, "blocked_by": false, "name": "Sean Rad", "location": "", "screen_name": "seanrad", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2163177444", "following": false, "friends_count": 61, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 18065, "location": "", "screen_name": "HistOpinion", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 299, "name": "Historical Opinion", "profile_use_background_image": true, "description": "Tweets from historical public opinion surveys, US and around the world, 1935-yesterday. Curated by @pashulman.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Oct 29 16:37:52 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", "favourites_count": 300, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2163177444, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1272, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2163177444/1398739322", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4257979872", "following": false, "friends_count": 0, "entities": {"description": {"urls": [{"display_url": "on.mash.to/1SWgZ0q", "url": "https://t.co/XCv9Qbk0fi", "expanded_url": "http://on.mash.to/1SWgZ0q", "indices": [105, 128]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3D4999", "geo_enabled": false, "followers_count": 52994, "location": "", "screen_name": "ParisVictims", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 214, "name": "En m\u00e9moire", "profile_use_background_image": false, "description": "One tweet for every victim of the terror attacks in Paris on Nov. 13, 2015. This is a @Mashable project.\nhttps://t.co/XCv9Qbk0fi", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", "profile_background_color": "969494", "created_at": "Mon Nov 16 15:41:07 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4257979872, "blocked_by": false, "profile_background_tile": false, "statuses_count": 130, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4257979872/1447689123", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": "http://t.co/raiVzM9CC2", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "562267840", "profile_image_url": "http://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", "friends_count": 95, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "raine.com", "url": "http://t.co/raiVzM9CC2", "expanded_url": "http://www.raine.com", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Tue Apr 24 19:09:33 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 325, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", "favourites_count": 60, "listed_count": 8, "geo_enabled": true, "follow_request_sent": false, "followers_count": 466, "following": false, "default_profile_image": false, "id": 562267840, "blocked_by": false, "name": "Joe Ravitch", "location": "NY/LA/SFO/LONDON/ASIA", "screen_name": "JoeRavitch", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "928744998", "following": false, "friends_count": 812, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wakeuptopolitics.com", "url": "https://t.co/Mwu8QKYT05", "expanded_url": "http://www.wakeuptopolitics.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1725, "location": "St. Louis (now), DC (future)", "screen_name": "WakeUp2Politics", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "Gabe Fleisher", "profile_use_background_image": false, "description": "14 yr old Editor, Wake Up To Politics, daily political newsletter. Author. Political junkie. Also attending middle school in my spare time. RTs \u2260 endorsements.", "url": "https://t.co/Mwu8QKYT05", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Nov 06 01:20:43 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", "favourites_count": 2832, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", "default_profile_image": false, "id": 928744998, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3668, "profile_banner_url": "https://pbs.twimg.com/profile_banners/928744998/1452145580", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2773453886", "following": false, "friends_count": 32, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jumpshotgenie.com", "url": "http://t.co/IrZ3XgzXdT", "expanded_url": "http://www.jumpshotgenie.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7724, "location": "Charlotte, NC", "screen_name": "DC__for3", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "Dell Curry", "profile_use_background_image": true, "description": "", "url": "http://t.co/IrZ3XgzXdT", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Aug 27 14:43:19 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", "favourites_count": 35, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2773453886, "blocked_by": false, "profile_background_tile": false, "statuses_count": 69, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2773453886/1409150929", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "798048997", "following": false, "friends_count": 2, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "perigee.se", "url": "http://t.co/2P0WOpJTeV", "expanded_url": "http://www.perigee.se", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 448, "location": "", "screen_name": "PerigeeApps", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Perigee", "profile_use_background_image": true, "description": "Crafting useful and desirable apps that solve life's problems in a delightful way.", "url": "http://t.co/2P0WOpJTeV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Sep 02 11:11:01 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", "favourites_count": 106, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 798048997, "blocked_by": false, "profile_background_tile": false, "statuses_count": 433, "profile_banner_url": "https://pbs.twimg.com/profile_banners/798048997/1447315639", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "I am a robot that live-tweets earthquakes in the San Francisco Bay area. Built by @billsnitzer. Data is from the USGS. Get prepared: http://t.co/VtCEbuw6KH", "url": "http://t.co/EznRBcY7a7", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "37861434", "profile_image_url": "http://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", "friends_count": 6, "entities": {"description": {"urls": [{"display_url": "amzn.to/PayjDo", "url": "http://t.co/VtCEbuw6KH", "expanded_url": "http://amzn.to/PayjDo", "indices": [133, 155]}]}, "url": {"urls": [{"display_url": "eqbot.com", "url": "http://t.co/EznRBcY7a7", "expanded_url": "http://eqbot.com/", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Tue May 05 04:53:31 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7780, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", "favourites_count": 0, "listed_count": 1540, "geo_enabled": true, "follow_request_sent": false, "followers_count": 124449, "following": false, "default_profile_image": false, "id": 37861434, "blocked_by": false, "name": "SF QuakeBot", "location": "San Francisco, CA", "screen_name": "earthquakesSF", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Atlantic Time (Canada)", "profile_use_background_image": true, "description": "Fixes explores solutions to major social problems. Each week, it examines creative initiatives that can tell us about the difference between success and failure", "url": "http://t.co/dSgWPDl048", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "249334021", "profile_image_url": "http://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", "friends_count": 55, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "opinionator.blogs.nytimes.com/category/fixes/", "url": "http://t.co/dSgWPDl048", "expanded_url": "http://opinionator.blogs.nytimes.com/category/fixes/", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Tue Feb 08 21:00:21 +0000 2011", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", "statuses_count": 349, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", "favourites_count": 3, "listed_count": 402, "geo_enabled": false, "follow_request_sent": false, "followers_count": 7148, "following": false, "default_profile_image": false, "id": 249334021, "blocked_by": false, "name": "NYT Fixes Blog", "location": "New York, NY", "screen_name": "nytimesfixes", "profile_background_tile": true, "notifications": false, "utc_offset": -14400, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "360391686", "following": false, "friends_count": 707, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chetfaker.com/shows", "url": "https://t.co/es4xPMVZSh", "expanded_url": "http://chetfaker.com/shows", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 82004, "location": "Australia", "screen_name": "Chet_Faker", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 558, "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186", "profile_use_background_image": true, "description": "unnoficial fan account *parody* no way affiliated with Chet Faker. we \u2665\ufe0fChet Kawai please follow for latest music & check website for more news", "url": "https://t.co/es4xPMVZSh", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Aug 23 04:05:11 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", "favourites_count": 12084, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", "default_profile_image": false, "id": 360391686, "blocked_by": false, "profile_background_tile": true, "statuses_count": 8616, "profile_banner_url": "https://pbs.twimg.com/profile_banners/360391686/1363912234", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "748615879", "following": false, "friends_count": 585, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "angstrom.io", "url": "https://t.co/bwG2E1VYFG", "expanded_url": "http://angstrom.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 282, "location": "37.7750\u00b0 N, 122.4183\u00b0 W", "screen_name": "cacoco", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 8, "name": "Christopher Coco", "profile_use_background_image": true, "description": "life in small doses.", "url": "https://t.co/bwG2E1VYFG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri Aug 10 04:35:36 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", "favourites_count": 4543, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", "default_profile_image": false, "id": 748615879, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1975, "profile_banner_url": "https://pbs.twimg.com/profile_banners/748615879/1352437653", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "2652536876", "following": false, "friends_count": 102, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pepsico.com", "url": "https://t.co/SDLqDs6Xfd", "expanded_url": "http://pepsico.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3513, "location": "purchase ny", "screen_name": "IndraNooyi", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "Indra Nooyi", "profile_use_background_image": true, "description": "CEO @PEPSICO", "url": "https://t.co/SDLqDs6Xfd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jul 17 01:35:59 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", "favourites_count": 7, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2652536876, "blocked_by": false, "profile_background_tile": false, "statuses_count": 12, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652536876/1446586148", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3274940484", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 395, "location": "", "screen_name": "getpolled", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 1, "name": "@GetPolled", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", "profile_background_color": "3B94D9", "created_at": "Sat Jul 11 00:28:05 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3274940484, "blocked_by": false, "profile_background_tile": false, "statuses_count": 42, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3274940484/1437009659", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": false, "description": "America's Favorite Icon Designer, Partner @Parakeet", "url": "https://t.co/MWe41e6Yhi", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "41783", "profile_image_url": "http://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", "friends_count": 74, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "louiemantia.com", "url": "https://t.co/MWe41e6Yhi", "expanded_url": "http://louiemantia.com", "indices": [0, 23]}]}}, "profile_background_color": "A8B4BF", "created_at": "Tue Dec 05 02:40:37 +0000 2006", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", "profile_text_color": "333333", "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "ABB8C2", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", "statuses_count": 102450, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", "favourites_count": 11672, "listed_count": 1118, "geo_enabled": true, "follow_request_sent": false, "followers_count": 17113, "following": false, "default_profile_image": false, "id": 41783, "blocked_by": false, "name": "Louie Mantia", "location": "Portland", "screen_name": "mantia", "profile_background_tile": true, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": true, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "817288", "following": false, "friends_count": 4457, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "techmeme.com", "url": "http://t.co/2kJ3FyTtAJ", "expanded_url": "http://techmeme.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 56179, "location": "SF: Disruptopia, USA", "screen_name": "gaberivera", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2313, "name": "Gabe Rivera", "profile_use_background_image": true, "description": "I run Techmeme.\r\nSometimes I tweet what I mean. Sometimes I tweet the opposite. Retweets are endorphins.", "url": "http://t.co/2kJ3FyTtAJ", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", "profile_background_color": "C6E2EE", "created_at": "Wed Mar 07 06:23:51 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", "favourites_count": 13571, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", "default_profile_image": false, "id": 817288, "blocked_by": false, "profile_background_tile": true, "statuses_count": 11636, "profile_banner_url": "https://pbs.twimg.com/profile_banners/817288/1401467981", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1201139012", "following": false, "friends_count": 29, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkd.in/1uiUZno", "url": "http://t.co/gi5nkD1WcX", "expanded_url": "http://linkd.in/1uiUZno", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2770, "location": "Cleveland, Ohio", "screen_name": "TobyCosgroveMD", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 81, "name": "Toby Cosgrove, MD", "profile_use_background_image": false, "description": "President and CEO, @ClevelandClinic. Cardiothoracic surgeon. U.S. Air Force Veteran.", "url": "http://t.co/gi5nkD1WcX", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", "profile_background_color": "065EA8", "created_at": "Wed Feb 20 13:56:57 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", "favourites_count": 15, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 1201139012, "blocked_by": false, "profile_background_tile": false, "statuses_count": 118, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1201139012/1415028437", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4071934995", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 122961, "location": "twitter.com", "screen_name": "polls", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 212, "name": "polls", "profile_use_background_image": true, "description": "the most important polls on twitter. Brought to you by @BuzzFeed. DM us your poll ideas!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Oct 30 02:09:51 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", "favourites_count": 85, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4071934995, "blocked_by": false, "profile_background_tile": false, "statuses_count": 812, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4071934995/1446225664", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "25084660", "following": false, "friends_count": 791, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 422254, "location": "", "screen_name": "arzE", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2851, "name": "Ezra Koenig", "profile_use_background_image": true, "description": "vampire weekend inc.", "url": null, "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Mar 18 14:52:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", "favourites_count": 5759, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", "default_profile_image": false, "id": 25084660, "blocked_by": false, "profile_background_tile": true, "statuses_count": 9309, "profile_banner_url": "https://pbs.twimg.com/profile_banners/25084660/1436462636", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "1081562149", "following": false, "friends_count": 1, "entities": {"description": {"urls": [{"display_url": "favstar.fm/users/seinfeld\u2026", "url": "https://t.co/GCOoEYISti", "expanded_url": "http://favstar.fm/users/seinfeld2000", "indices": [71, 94]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 101814, "location": "", "screen_name": "Seinfeld2000", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 779, "name": "Seinfeld Current Day", "profile_use_background_image": true, "description": "Imagen Seinfeld was never canceled and still NBC comedy program today? https://t.co/GCOoEYISti", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Jan 12 02:17:49 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", "favourites_count": 56619, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", "default_profile_image": false, "id": 1081562149, "blocked_by": false, "profile_background_tile": true, "statuses_count": 6600, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1081562149/1452223878", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "23699191", "following": false, "friends_count": 524, "entities": {"description": {"urls": [{"display_url": "noisey.vice.com/en_uk/noisey-s", "url": "https://t.co/oXek0Yp2he", "expanded_url": "http://noisey.vice.com/en_uk/noisey-s", "indices": [75, 98]}]}, "url": {"urls": [{"display_url": "helloskepta.com", "url": "https://t.co/LCjnqqo5cF", "expanded_url": "http://www.helloskepta.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 667153, "location": "", "screen_name": "Skepta", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1287, "name": "SKEPTA", "profile_use_background_image": true, "description": "Bookings: grace@metallicmgmt.com jonathanbriks@theagencygroup.com\n\n#TopBoy https://t.co/oXek0Yp2he\u2026", "url": "https://t.co/LCjnqqo5cF", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Mar 11 01:31:36 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", "favourites_count": 1, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 23699191, "blocked_by": false, "profile_background_tile": true, "statuses_count": 30142, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23699191/1431890723", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "937499232", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "malala.org", "url": "http://t.co/nyY0R0rWL2", "expanded_url": "http://malala.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 64783, "location": "Pakistan", "screen_name": "Malala", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 311, "name": "Malala Yousafzai", "profile_use_background_image": false, "description": "Please follow @MalalaFund for Tweets from Malala and updates on her work.", "url": "http://t.co/nyY0R0rWL2", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Nov 09 18:34:52 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 937499232, "blocked_by": false, "profile_background_tile": false, "statuses_count": 0, "profile_banner_url": "https://pbs.twimg.com/profile_banners/937499232/1444529280", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "Nobel Peace Prize 2014 winner. \nFounder-Global March Against Child Labour (@kNOwchildlabour) &\nBachpan Bachao Andolan. RTs not endorsements.", "url": "http://t.co/p9X5Y5bZLm", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2477802067", "profile_image_url": "http://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", "friends_count": 60, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "satyarthi.org", "url": "http://t.co/p9X5Y5bZLm", "expanded_url": "http://www.satyarthi.org", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Mon May 05 04:07:33 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 803, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", "favourites_count": 173, "listed_count": 514, "geo_enabled": true, "follow_request_sent": false, "followers_count": 180027, "following": false, "default_profile_image": false, "id": 2477802067, "blocked_by": false, "name": "Kailash Satyarthi", "location": "", "screen_name": "k_satyarthi", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14439813", "following": false, "friends_count": 334, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 58956, "location": "atlanta & nyc", "screen_name": "wnd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 412, "name": "wendy clark", "profile_use_background_image": true, "description": "mom :: ceo ddb/na :: relentless optimist", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", "profile_background_color": "352726", "created_at": "Sat Apr 19 02:18:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", "favourites_count": 8837, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "default_profile_image": false, "id": 14439813, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4316, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14439813/1451700372", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "31898295", "following": false, "friends_count": 3108, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": true, "followers_count": 4303, "location": "", "screen_name": "Derella", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 68, "name": "matt derella", "profile_use_background_image": true, "description": "Rookie Dad, Lucky Husband, Ice Cream Addict. Remember, You Have Superpowers.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", "profile_background_color": "709397", "created_at": "Thu Apr 16 15:34:22 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", "favourites_count": 6095, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "default_profile_image": false, "id": 31898295, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2137, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31898295/1350353093", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "38422658", "following": false, "friends_count": 1684, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "F057F0", "geo_enabled": true, "followers_count": 10933, "location": "San Francisco*", "screen_name": "melissabarnes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 247, "name": "Melissa Barnes", "profile_use_background_image": false, "description": "Global Brands @Twitter. Easily entertained. Black coffee, please.", "url": null, "profile_text_color": "FF6F00", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu May 07 12:42:42 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", "favourites_count": 7486, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", "default_profile_image": false, "id": 38422658, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1713, "profile_banner_url": "https://pbs.twimg.com/profile_banners/38422658/1383346519", "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "21007030", "following": false, "friends_count": 3161, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rio2016.com", "url": "https://t.co/q8z1zrW1rr", "expanded_url": "http://www.rio2016.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", "notifications": false, "profile_sidebar_fill_color": "A4CC35", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 222873, "location": "Rio de Janeiro", "screen_name": "Rio2016", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1236, "name": "Rio 2016", "profile_use_background_image": false, "description": "Perfil oficial do Comit\u00ea Organizador dos Jogos Ol\u00edmpicos e Paral\u00edmpicos Rio 2016 em Portugu\u00eas. English:@rio2016_en. Espa\u00f1ol: @rio2016_es.", "url": "https://t.co/q8z1zrW1rr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", "profile_background_color": "FA743E", "created_at": "Mon Feb 16 17:48:07 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", "favourites_count": 1422, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", "default_profile_image": false, "id": 21007030, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7248, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21007030/1451309674", "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "88703900", "following": false, "friends_count": 600, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rio2016.com/en/home", "url": "http://t.co/BFr0Z1jKEP", "expanded_url": "http://www.rio2016.com/en/home", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", "notifications": false, "profile_sidebar_fill_color": "A4CC35", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 245882, "location": "Rio de Janeiro", "screen_name": "Rio2016_en", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1216, "name": "Rio 2016", "profile_use_background_image": true, "description": "Official Rio 2016\u2122 Olympic and Paralympic Organizing Committee in English. Portugu\u00eas:@rio2016. Espa\u00f1ol: @rio2016_es.", "url": "http://t.co/BFr0Z1jKEP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Nov 09 16:44:38 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "F7AF08", "lang": "pt", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", "favourites_count": 1369, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", "default_profile_image": false, "id": 88703900, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5098, "profile_banner_url": "https://pbs.twimg.com/profile_banners/88703900/1451306802", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "584263864", "following": false, "friends_count": 372, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "005FB3", "geo_enabled": true, "followers_count": 642, "location": "", "screen_name": "edgett", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Sean Edgett", "profile_use_background_image": true, "description": "Corporate lawyer at Twitter. Comments here are my own.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", "profile_background_color": "022330", "created_at": "Fri May 18 23:43:39 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", "favourites_count": 1187, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", "default_profile_image": false, "id": 584263864, "blocked_by": false, "profile_background_tile": true, "statuses_count": 634, "profile_banner_url": "https://pbs.twimg.com/profile_banners/584263864/1442269032", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "4048046116", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 176589, "location": "Turn On Our Notifications!", "screen_name": "24HourPolls", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 102, "name": "24 Hour Polls", "profile_use_background_image": true, "description": "| The Best Polls On Twitter | Original Account | *DM's Are Open For Suggestions!*", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 26 18:33:54 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", "favourites_count": 609, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 4048046116, "blocked_by": false, "profile_background_tile": false, "statuses_count": 810, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048046116/1445886946", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2881611", "following": false, "friends_count": 1289, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/prashantsri\u2026", "url": "https://t.co/d3WaCy2EU1", "expanded_url": "http://www.linkedin.com/in/prashantsridharan", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 11192, "location": "San Francisco", "screen_name": "CoolAssPuppy", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 96, "name": "Prashant S", "profile_use_background_image": true, "description": "Twitter Global Director of Developer & Platform Relations. I @SoulCycle, therefore I am. #PopcornHo", "url": "https://t.co/d3WaCy2EU1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Mar 29 19:21:15 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", "favourites_count": 13108, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", "default_profile_image": false, "id": 2881611, "blocked_by": false, "profile_background_tile": true, "statuses_count": 21197, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2881611/1446596289", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2990843386", "following": false, "friends_count": 53, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 818, "location": "Salt Lake City, UT", "screen_name": "pinkgrandmas", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Pink Grandmas", "profile_use_background_image": true, "description": "The @PinkGrandmas who lovingly cheer for their Utah Jazz, and always in pink!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jan 21 23:13:42 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", "favourites_count": 108, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2990843386, "blocked_by": false, "profile_background_tile": false, "statuses_count": 139, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2990843386/1421883592", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15105000", "following": false, "friends_count": 1161, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iSachin.com", "url": "http://t.co/AWr3VV2avy", "expanded_url": "http://iSachin.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": true, "followers_count": 20842, "location": "San Francisco, CA", "screen_name": "agarwal", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 1324, "name": "Sachin Agarwal", "profile_use_background_image": true, "description": "Product at Twitter. Past: @Stanford, Apple, Founder/CEO of @posterous. I \u2764\ufe0f @kateagarwal, cars, wine, puppies, and foie.", "url": "http://t.co/AWr3VV2avy", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Fri Jun 13 06:49:22 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", "favourites_count": 16040, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "default_profile_image": false, "id": 15105000, "blocked_by": false, "profile_background_tile": false, "statuses_count": 11185, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15105000/1427478415", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "569900436", "following": false, "friends_count": 119, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 437, "location": "", "screen_name": "akkhosh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "alex", "profile_use_background_image": true, "description": "alex at periscope.", "url": null, "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu May 03 09:06:30 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", "favourites_count": 2, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 569900436, "blocked_by": false, "profile_background_tile": false, "statuses_count": 0, "profile_banner_url": "https://pbs.twimg.com/profile_banners/569900436/1422657776", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Father, Husband, Head Basketball Coach LA Clippers, Maywood Native", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "4027765453", "profile_image_url": "http://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", "friends_count": 22, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Oct 26 19:49:37 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", "favourites_count": 0, "listed_count": 178, "geo_enabled": false, "follow_request_sent": false, "followers_count": 18514, "following": false, "default_profile_image": false, "id": 4027765453, "blocked_by": false, "name": "doc rivers", "location": "", "screen_name": "DocRivers", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "54226675", "following": false, "friends_count": 220, "entities": {"description": {"urls": [{"display_url": "support.twitter.com/forms/translat\u2026", "url": "http://t.co/SOm6i336Up", "expanded_url": "http://support.twitter.com/forms/translation", "indices": [82, 104]}]}, "url": {"urls": [{"display_url": "translate.twitter.com", "url": "https://t.co/K91mYVcFjL", "expanded_url": "http://translate.twitter.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2950587, "location": "", "screen_name": "translator", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2694, "name": "Translator", "profile_use_background_image": true, "description": "Twitter's Translator Community. Got questions or found a bug? Fill out this form: http://t.co/SOm6i336Up", "url": "https://t.co/K91mYVcFjL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jul 06 14:59:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", "favourites_count": 170, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", "default_profile_image": false, "id": 54226675, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1708, "profile_banner_url": "https://pbs.twimg.com/profile_banners/54226675/1347394452", "is_translator": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "376825877", "following": false, "friends_count": 48, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "opensource.twitter.com", "url": "http://t.co/Hc7Cv220E7", "expanded_url": "http://opensource.twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 282967, "location": "Twitter HQ", "screen_name": "TwitterOSS", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1987, "name": "Twitter Open Source", "profile_use_background_image": true, "description": "Open Programs at Twitter.", "url": "http://t.co/Hc7Cv220E7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", "profile_background_color": "131516", "created_at": "Tue Sep 20 15:18:34 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", "favourites_count": 3323, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 376825877, "blocked_by": false, "profile_background_tile": true, "statuses_count": 5355, "profile_banner_url": "https://pbs.twimg.com/profile_banners/376825877/1396969577", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17874544", "following": false, "friends_count": 31, "entities": {"description": {"urls": [{"display_url": "support.twitter.com", "url": "http://t.co/qq1HEzdMA2", "expanded_url": "http://support.twitter.com", "indices": [118, 140]}]}, "url": {"urls": [{"display_url": "support.twitter.com", "url": "http://t.co/Vk1NkwU8qP", "expanded_url": "http://support.twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4606293, "location": "Twitter HQ", "screen_name": "Support", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 13844, "name": "Twitter Support", "profile_use_background_image": true, "description": "We Tweet tips and tricks to help you boost your Twitter skills and keep your account secure. For detailed help, visit http://t.co/qq1HEzdMA2.", "url": "http://t.co/Vk1NkwU8qP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Dec 04 18:51:57 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", "favourites_count": 300, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", "default_profile_image": false, "id": 17874544, "blocked_by": false, "profile_background_tile": true, "statuses_count": 14056, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17874544/1347394418", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6253282", "following": false, "friends_count": 48, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dev.twitter.com", "url": "http://t.co/78pYTvWfJd", "expanded_url": "http://dev.twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 5243787, "location": "San Francisco, CA", "screen_name": "twitterapi", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 12998, "name": "Twitter API", "profile_use_background_image": true, "description": "The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.", "url": "http://t.co/78pYTvWfJd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed May 23 06:01:13 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", "favourites_count": 27, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", "default_profile_image": false, "id": 6253282, "blocked_by": false, "profile_background_tile": true, "statuses_count": 3554, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1431474710", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "95731075", "following": false, "friends_count": 85, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "safety.twitter.com", "url": "https://t.co/mAjmahDXqp", "expanded_url": "https://safety.twitter.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2920147, "location": "Twitter HQ", "screen_name": "safety", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 7562, "name": "Safety", "profile_use_background_image": true, "description": "Helping you stay safe on Twitter.", "url": "https://t.co/mAjmahDXqp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", "profile_background_color": "022330", "created_at": "Wed Dec 09 21:00:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", "favourites_count": 5, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "default_profile_image": false, "id": 95731075, "blocked_by": false, "profile_background_tile": false, "statuses_count": 399, "profile_banner_url": "https://pbs.twimg.com/profile_banners/95731075/1416521916", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "204343158", "following": false, "friends_count": 286, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "1stdibs.com", "url": "http://t.co/GyCLcPK1G6", "expanded_url": "http://www.1stdibs.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3E9DE0", "geo_enabled": true, "followers_count": 5054, "location": "New York, NY", "screen_name": "rosenblattdavid", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 60, "name": "David Rosenblatt", "profile_use_background_image": true, "description": "CEO at 1stdibs", "url": "http://t.co/GyCLcPK1G6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 18 13:56:10 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", "favourites_count": 245, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", "default_profile_image": false, "id": 204343158, "blocked_by": false, "profile_background_tile": false, "statuses_count": 376, "profile_banner_url": "https://pbs.twimg.com/profile_banners/204343158/1448985578", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "19417999", "following": false, "friends_count": 14503, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "itun.es/us/Q4QZ6", "url": "https://t.co/1snyy96FWE", "expanded_url": "https://itun.es/us/Q4QZ6", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 57238, "location": "Invite The Light \u2022 Out now.", "screen_name": "DaMFunK", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1338, "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK", "profile_use_background_image": true, "description": "\u2022 Modern-Funk | No fads | No sellout \u2022", "url": "https://t.co/1snyy96FWE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Fri Jan 23 22:31:59 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", "favourites_count": 52062, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", "default_profile_image": false, "id": 19417999, "blocked_by": false, "profile_background_tile": true, "statuses_count": 41219, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19417999/1441340768", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17230018", "following": false, "friends_count": 17947, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Spotify.com", "url": "http://t.co/jqAb65DqrK", "expanded_url": "http://Spotify.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", "notifications": false, "profile_sidebar_fill_color": "ECEBE8", "profile_link_color": "1ED760", "geo_enabled": true, "followers_count": 1644482, "location": "", "screen_name": "Spotify", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 14006, "name": "Spotify", "profile_use_background_image": false, "description": "Music for every moment. Play, discover, and share for free. \r\nNeed support? We're happy to help at @SpotifyCares", "url": "http://t.co/jqAb65DqrK", "profile_text_color": "458DBF", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", "profile_background_color": "FFFFFF", "created_at": "Fri Nov 07 12:14:28 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", "favourites_count": 4977, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", "default_profile_image": false, "id": 17230018, "blocked_by": false, "profile_background_tile": false, "statuses_count": 23164, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17230018/1450966022", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "The Official Twitter Page of Seth MacFarlane - new album No One Ever Tells You available now on iTunes https://t.co/gLePVn5Mho", "url": "https://t.co/o4miqWAHnW", "contributors_enabled": false, "is_translation_enabled": true, "id_str": "18948541", "profile_image_url": "http://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", "friends_count": 349, "entities": {"description": {"urls": [{"display_url": "itun.es/us/Vx9p-", "url": "https://t.co/gLePVn5Mho", "expanded_url": "http://itun.es/us/Vx9p-", "indices": [103, 126]}]}, "url": {"urls": [{"display_url": "facebook.com/pages/Seth-Mac\u2026", "url": "https://t.co/o4miqWAHnW", "expanded_url": "http://www.facebook.com/pages/Seth-MacFarlane/14105972607?ref=ts", "indices": [0, 23]}]}}, "profile_background_color": "C0DEED", "created_at": "Tue Jan 13 19:04:37 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5295, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", "favourites_count": 0, "listed_count": 32336, "geo_enabled": false, "follow_request_sent": false, "followers_count": 8866646, "following": false, "default_profile_image": false, "id": 18948541, "blocked_by": false, "name": "Seth MacFarlane", "location": "Los Angeles", "screen_name": "SethMacFarlane", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "96829836", "following": false, "friends_count": 188, "entities": {"description": {"urls": [{"display_url": "smarturl.it/illmaticxx_itu\u2026", "url": "http://t.co/GQVoyTHAXi", "expanded_url": "http://smarturl.it/illmaticxx_itunes", "indices": [29, 51]}]}, "url": {"urls": [{"display_url": "TribecaFilm.com/Nas", "url": "http://t.co/Ol6HETXMsd", "expanded_url": "http://TribecaFilm.com/Nas", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1896372, "location": "NYC", "screen_name": "Nas", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8574, "name": "Nasir Jones", "profile_use_background_image": true, "description": "Illmatic XX now available: \r\nhttp://t.co/GQVoyTHAXi", "url": "http://t.co/Ol6HETXMsd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 14 20:03:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", "favourites_count": 3, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", "default_profile_image": false, "id": 96829836, "blocked_by": false, "profile_background_tile": true, "statuses_count": 4514, "profile_banner_url": "https://pbs.twimg.com/profile_banners/96829836/1412353651", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "422665701", "following": false, "friends_count": 1877, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "smarturl.it/TrapTearsVid", "url": "https://t.co/bSTapnSbtt", "expanded_url": "http://smarturl.it/TrapTearsVid", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", "notifications": false, "profile_sidebar_fill_color": "0A0A0A", "profile_link_color": "8F120E", "geo_enabled": true, "followers_count": 113351, "location": "", "screen_name": "Raury", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 326, "name": "AWN", "profile_use_background_image": true, "description": "being of light , right on time #indigo #millennial new album #AllWeNeed", "url": "https://t.co/bSTapnSbtt", "profile_text_color": "A30A0A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Nov 27 14:50:29 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", "favourites_count": 9695, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", "default_profile_image": false, "id": 422665701, "blocked_by": false, "profile_background_tile": true, "statuses_count": 35237, "profile_banner_url": "https://pbs.twimg.com/profile_banners/422665701/1444935009", "is_translator": false}, {"time_zone": "Baghdad", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 10800, "id_str": "1499345785", "following": false, "friends_count": 31, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 21461, "location": "", "screen_name": "Iarsulrich", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 73, "name": "Lars Ulrich", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Jun 10 20:39:52 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", "favourites_count": 14, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", "default_profile_image": false, "id": 1499345785, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499345785/1438456012", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7698", "following": false, "friends_count": 758, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "monkey.org/~marius/", "url": "https://t.co/Fd7AtAPU13", "expanded_url": "http://monkey.org/~marius/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 8435, "location": "Silicon Valley", "screen_name": "marius", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 296, "name": "marius eriksen", "profile_use_background_image": true, "description": "I spend most days cursing at lots of very tiny electronics.", "url": "https://t.co/Fd7AtAPU13", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Sat Oct 07 06:53:18 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", "favourites_count": 4808, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "default_profile_image": false, "id": 7698, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7425, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7698/1413383522", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18819527", "following": false, "friends_count": 3066, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "travelocity.com", "url": "http://t.co/GxUHwpGZyC", "expanded_url": "http://travelocity.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 80685, "location": "", "screen_name": "RoamingGnome", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1434, "name": "Travelocity Gnome", "profile_use_background_image": true, "description": "The official globetrotting ornament. Nabbed from a very boring garden to travel the world. You can find me on instagram @roaminggnome", "url": "http://t.co/GxUHwpGZyC", "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", "profile_background_color": "89C9FA", "created_at": "Fri Jan 09 23:08:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", "favourites_count": 4816, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", "default_profile_image": false, "id": 18819527, "blocked_by": false, "profile_background_tile": false, "statuses_count": 10405, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18819527/1398261580", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "32765534", "following": false, "friends_count": 326, "entities": {"description": {"urls": [{"display_url": "billsimmonspodcast.com", "url": "https://t.co/vjQN5lsu7P", "expanded_url": "http://www.billsimmonspodcast.com", "indices": [44, 67]}]}, "url": {"urls": [{"display_url": "grantland.com/features/compl\u2026", "url": "https://t.co/FAEjPf1Iwj", "expanded_url": "http://grantland.com/features/complete-column-archives-grantland-edition/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": false, "followers_count": 4767987, "location": "Los Angeles (via Boston)", "screen_name": "BillSimmons", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 32240, "name": "Bill Simmons", "profile_use_background_image": true, "description": "Host of The Bill Simmons Podcast - links at https://t.co/vjQN5lsu7P. My HBO show = 2016. Once ran a Grantland cult according to 2 unnamed ESPN execs.", "url": "https://t.co/FAEjPf1Iwj", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", "profile_background_color": "8B542B", "created_at": "Sat Apr 18 03:37:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", "favourites_count": 9, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", "default_profile_image": false, "id": 32765534, "blocked_by": false, "profile_background_tile": true, "statuses_count": 15280, "profile_banner_url": "https://pbs.twimg.com/profile_banners/32765534/1445653325", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "44039298", "profile_image_url": "http://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", "friends_count": 545, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Jun 02 02:35:39 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6071, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", "favourites_count": 49, "listed_count": 20373, "geo_enabled": false, "follow_request_sent": false, "followers_count": 3616527, "following": false, "default_profile_image": false, "id": 44039298, "blocked_by": false, "name": "Seth Meyers", "location": "New York", "screen_name": "sethmeyers", "profile_background_tile": false, "notifications": false, "utc_offset": -14400, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "UTC", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "104969057", "following": false, "friends_count": 493, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "McKellen.com", "url": "http://t.co/g38r3qsinW", "expanded_url": "http://www.McKellen.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "050505", "geo_enabled": false, "followers_count": 2903598, "location": "London, UK", "screen_name": "IanMcKellen", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 12050, "name": "Ian McKellen", "profile_use_background_image": true, "description": "actor and activist", "url": "http://t.co/g38r3qsinW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", "profile_background_color": "131516", "created_at": "Thu Jan 14 23:29:56 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", "favourites_count": 95, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 104969057, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1314, "profile_banner_url": "https://pbs.twimg.com/profile_banners/104969057/1449683945", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "241964676", "following": false, "friends_count": 226, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Grantland.com", "url": "http://t.co/qx60xDYYa3", "expanded_url": "http://www.Grantland.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/414549914/bg.jpg", "notifications": false, "profile_sidebar_fill_color": "F5F5F5", "profile_link_color": "BF1E2E", "geo_enabled": false, "followers_count": 508445, "location": "Los Angeles, CA", "screen_name": "Grantland33", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8432, "name": "Grantland", "profile_use_background_image": true, "description": "Home of the Triangle | Hollywood Prospectus.", "url": "http://t.co/qx60xDYYa3", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Jan 23 16:06:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBDDDE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", "favourites_count": 238, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/414549914/bg.jpg", "default_profile_image": false, "id": 241964676, "blocked_by": false, "profile_background_tile": true, "statuses_count": 26406, "profile_banner_url": "https://pbs.twimg.com/profile_banners/241964676/1441915615", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "615999145", "profile_image_url": "http://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", "friends_count": 127, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sat Jun 23 10:24:53 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", "favourites_count": 6, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 766, "following": false, "default_profile_image": false, "id": 615999145, "blocked_by": false, "name": "Bee Shaffer", "location": "Los Angeles", "screen_name": "KikiShaf", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "Arts and entertainment news from The New York Times.", "url": "http://t.co/0H74AaBX8Y", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "1440641", "profile_image_url": "http://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", "friends_count": 88, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nytimes.com/arts", "url": "http://t.co/0H74AaBX8Y", "expanded_url": "http://www.nytimes.com/arts", "indices": [0, 22]}]}}, "profile_background_color": "FFFFFF", "created_at": "Sun Mar 18 20:30:33 +0000 2007", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", "profile_text_color": "000000", "profile_sidebar_fill_color": "E7EFF8", "profile_link_color": "004276", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", "statuses_count": 91388, "profile_sidebar_border_color": "323232", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", "favourites_count": 21, "listed_count": 17928, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1862334, "following": false, "default_profile_image": false, "id": 1440641, "blocked_by": false, "name": "New York Times Arts", "location": "New York, NY", "screen_name": "nytimesarts", "profile_background_tile": true, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Greenland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "16465385", "following": false, "friends_count": 536, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nobelprize.org", "url": "http://t.co/If9cQQEL4i", "expanded_url": "http://nobelprize.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", "notifications": false, "profile_sidebar_fill_color": "E2E8EA", "profile_link_color": "307497", "geo_enabled": true, "followers_count": 177895, "location": "Stockholm, Sweden", "screen_name": "NobelPrize", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3279, "name": "The Nobel Prize", "profile_use_background_image": true, "description": "The official Twitter feed of the Nobel Prize @NobelPrize #NobelPrize", "url": "http://t.co/If9cQQEL4i", "profile_text_color": "023C59", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Fri Sep 26 08:47:58 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", "favourites_count": 198, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", "default_profile_image": false, "id": 16465385, "blocked_by": false, "profile_background_tile": true, "statuses_count": 4674, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16465385/1450099641", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Views expressed here do not necessarily belong to my employer. Or to me.", "url": "http://t.co/XcGA9qM04D", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "14550962", "profile_image_url": "http://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", "friends_count": 250, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "agoranomic.org", "url": "http://t.co/XcGA9qM04D", "expanded_url": "http://agoranomic.org", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Sat Apr 26 20:13:43 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 23885, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", "favourites_count": 88, "listed_count": 6400, "geo_enabled": false, "follow_request_sent": false, "followers_count": 213142, "following": false, "default_profile_image": false, "id": 14550962, "blocked_by": false, "name": "comex", "location": "", "screen_name": "comex", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2813652210", "following": false, "friends_count": 2434, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kickstarter.com/projects/19573\u2026", "url": "https://t.co/giNNN1E1AC", "expanded_url": "https://www.kickstarter.com/projects/1957344648/meow-the-jewels", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7925, "location": "", "screen_name": "MeowTheJewels", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "#MeowTheJewels", "profile_use_background_image": true, "description": "You are listening to Meow The Jewels! Now a RTJ ran account.", "url": "https://t.co/giNNN1E1AC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Sep 16 20:55:34 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", "favourites_count": 4674, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2813652210, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3280, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2813652210/1410988523", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "237548529", "following": false, "friends_count": 207, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "humansofnewyork.com", "url": "http://t.co/GdwTtrMd37", "expanded_url": "http://www.humansofnewyork.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "233294", "geo_enabled": false, "followers_count": 382303, "location": "New York, NY", "screen_name": "humansofny", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2432, "name": "Brandon Stanton", "profile_use_background_image": true, "description": "Creator of the blog and #1 NYT bestselling book, Humans of New York. I take pictures of people on the street and ask them questions.", "url": "http://t.co/GdwTtrMd37", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", "profile_background_color": "6E757A", "created_at": "Thu Jan 13 02:43:38 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", "favourites_count": 1094, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", "default_profile_image": false, "id": 237548529, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5325, "profile_banner_url": "https://pbs.twimg.com/profile_banners/237548529/1412171810", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16600574", "following": false, "friends_count": 80792, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "adambouska.com", "url": "https://t.co/iCi6oiInzM", "expanded_url": "http://www.adambouska.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 201288, "location": "Los Angeles, California", "screen_name": "bouska", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2581, "name": "Adam Bouska", "profile_use_background_image": true, "description": "Fashion Photographer & NOH8 Campaign Co-Founder \u2605\u2605\u2605\u2605\u2605\ninfo@bouska.net", "url": "https://t.co/iCi6oiInzM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Oct 05 10:48:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", "favourites_count": 2581, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", "default_profile_image": false, "id": 16600574, "blocked_by": false, "profile_background_tile": false, "statuses_count": 15632, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16600574/1435020398", "is_translator": false}, {"time_zone": "Hawaii", "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "526316060", "profile_image_url": "http://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", "friends_count": 27, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Fri Mar 16 11:53:45 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 11, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", "favourites_count": 0, "listed_count": 3124, "geo_enabled": false, "follow_request_sent": false, "followers_count": 479572, "following": false, "default_profile_image": false, "id": 526316060, "blocked_by": false, "name": "David Chappelle", "location": "", "screen_name": "DaveChappelle", "profile_background_tile": false, "notifications": false, "utc_offset": -36000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "VP of Engineering @Twitter", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "1188951", "profile_image_url": "http://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", "friends_count": 258, "entities": {"description": {"urls": []}}, "profile_background_color": "9AE4E8", "created_at": "Wed Mar 14 23:09:57 +0000 2007", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "DD2E44", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1867, "profile_sidebar_border_color": "87BC44", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", "favourites_count": 1069, "listed_count": 64, "geo_enabled": true, "follow_request_sent": false, "followers_count": 2211, "following": false, "default_profile_image": false, "id": 1188951, "blocked_by": false, "name": "Nandini Ramani", "location": "San Francisco, CA", "screen_name": "eyeseewaters", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "43421130", "following": false, "friends_count": 147, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "treasureislandfestival.com", "url": "http://t.co/1kda6aZhAJ", "expanded_url": "http://www.treasureislandfestival.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", "notifications": false, "profile_sidebar_fill_color": "F1DAC1", "profile_link_color": "FF9966", "geo_enabled": false, "followers_count": 12638, "location": "San Francisco, CA", "screen_name": "timfsf", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 576, "name": "Treasure Island Fest", "profile_use_background_image": true, "description": "Thanks to everyone who joined us for the 2015 festival in the bay on October 17-18, 2015! 2016 details coming soon.", "url": "http://t.co/1kda6aZhAJ", "profile_text_color": "4F2A10", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", "profile_background_color": "33CCCC", "created_at": "Fri May 29 22:09:36 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", "favourites_count": 810, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", "default_profile_image": false, "id": 43421130, "blocked_by": false, "profile_background_tile": false, "statuses_count": 2478, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43421130/1446147173", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "CEO Netflix", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "15241557", "profile_image_url": "http://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", "friends_count": 51, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Thu Jun 26 07:24:42 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 40, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", "favourites_count": 10, "listed_count": 331, "geo_enabled": false, "follow_request_sent": false, "followers_count": 11467, "following": false, "default_profile_image": false, "id": 15241557, "blocked_by": false, "name": "Reed Hastings", "location": "", "screen_name": "reedhastings", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "454423650", "following": false, "friends_count": 465, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "006399", "geo_enabled": true, "followers_count": 1606, "location": "San Francisco", "screen_name": "tinab", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Tina Bhatnagar", "profile_use_background_image": true, "description": "Love food, sleep and being pampered. Difference between me and a baby? I work @Twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Jan 04 00:04:22 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", "favourites_count": 1021, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", "default_profile_image": false, "id": 454423650, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1713, "profile_banner_url": "https://pbs.twimg.com/profile_banners/454423650/1451600055", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3751591514", "following": false, "friends_count": 21, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 8853, "location": "Bellevue, WA", "screen_name": "Steven_Ballmer", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 160, "name": "Steve Ballmer", "profile_use_background_image": false, "description": "Lots going on", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", "profile_background_color": "000000", "created_at": "Thu Oct 01 20:37:37 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", "favourites_count": 1, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3751591514, "blocked_by": false, "profile_background_tile": false, "statuses_count": 12, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3751591514/1444998576", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Author", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "845743333", "profile_image_url": "http://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", "friends_count": 80, "entities": {"description": {"urls": []}}, "profile_background_color": "022330", "created_at": "Tue Sep 25 15:36:17 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 18368, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", "favourites_count": 55, "listed_count": 2614, "geo_enabled": false, "follow_request_sent": false, "followers_count": 139576, "following": false, "default_profile_image": false, "id": 845743333, "blocked_by": false, "name": "Joyce Carol Oates", "location": "", "screen_name": "JoyceCarolOates", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "292626949", "following": false, "friends_count": 499, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2326, "location": "", "screen_name": "singhtv", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 49, "name": "Baljeet Singh", "profile_use_background_image": true, "description": "twitter product lead, SF transplant, hip hop head, outdoors lover, father of the coolest kid ever", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue May 03 23:41:04 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", "favourites_count": 1294, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 292626949, "blocked_by": false, "profile_background_tile": false, "statuses_count": 244, "profile_banner_url": "https://pbs.twimg.com/profile_banners/292626949/1385075905", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "70976011", "following": false, "friends_count": 694, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 772, "location": "San Francisco, CA", "screen_name": "jdrishel", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 36, "name": "Jeremy Rishel", "profile_use_background_image": true, "description": "Engineering @twitter ~ @mit CS, Philosophy, & MBA ~ Former @usmc ~ Proud supporter of @calacademy, @americanatheist, @rdfrs, @mca_marines, & @sfjazz", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 02 14:22:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", "favourites_count": 1879, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 70976011, "blocked_by": false, "profile_background_tile": false, "statuses_count": 791, "profile_banner_url": "https://pbs.twimg.com/profile_banners/70976011/1435923511", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5943622", "following": false, "friends_count": 5847, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "a16z.com", "url": "http://t.co/kn6m038bNW", "expanded_url": "http://www.a16z.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "12297A", "geo_enabled": false, "followers_count": 464534, "location": "Menlo Park, CA", "screen_name": "pmarca", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8616, "name": "Marc Andreessen", "profile_use_background_image": true, "description": "\u201cI don\u2019t mean you\u2019re all going to be happy. You\u2019ll be unhappy \u2013 but in new, exciting and important ways.\u201d \u2013 Edwin Land", "url": "http://t.co/kn6m038bNW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", "profile_background_color": "131516", "created_at": "Thu May 10 23:39:54 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", "favourites_count": 208337, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", "default_profile_image": false, "id": 5943622, "blocked_by": false, "profile_background_tile": true, "statuses_count": 83568, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5943622/1419247370", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "127062637", "following": false, "friends_count": 169, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 19341, "location": "California, USA", "screen_name": "omidkordestani", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 202, "name": "Omid Kordestani", "profile_use_background_image": false, "description": "Executive Chairman @twitter", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Mar 27 23:05:58 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", "favourites_count": 60, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 127062637, "blocked_by": false, "profile_background_tile": false, "statuses_count": 33, "profile_banner_url": "https://pbs.twimg.com/profile_banners/127062637/1445924351", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3913671", "following": false, "friends_count": 634, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thecodemill.biz", "url": "http://t.co/jfXOm28eAR", "expanded_url": "http://thecodemill.biz/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1469, "location": "Santa Cruz/San Francisco, CA", "screen_name": "bartt", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 55, "name": "Bart Teeuwisse", "profile_use_background_image": false, "description": "Early riser to hack, build, run, bike, climb & ski. Formerly @twitter, @yahoo & various startups", "url": "http://t.co/jfXOm28eAR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", "profile_background_color": "F9F9F9", "created_at": "Mon Apr 09 15:19:14 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", "favourites_count": 840, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", "default_profile_image": false, "id": 3913671, "blocked_by": false, "profile_background_tile": true, "statuses_count": 7226, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3913671/1405375593", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "348942463", "following": false, "friends_count": 1107, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ie.linkedin.com/in/stephenmcin\u2026", "url": "http://t.co/ECVj1K5Thi", "expanded_url": "http://ie.linkedin.com/in/stephenmcintyre", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 11959, "location": "EMEA HQ, Dublin, Ireland", "screen_name": "stephenpmc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 180, "name": "Stephen McIntyre", "profile_use_background_image": true, "description": "Building Twitter's business in Europe, Middle East, and Africa. VP Sales, MD Ireland.", "url": "http://t.co/ECVj1K5Thi", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", "profile_background_color": "BADFCD", "created_at": "Fri Aug 05 07:57:24 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", "favourites_count": 3642, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "default_profile_image": false, "id": 348942463, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3902, "profile_banner_url": "https://pbs.twimg.com/profile_banners/348942463/1347467641", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "Visit ScienceDaily to read breaking news about the latest discoveries in science, health, the environment, and technology.", "url": "http://t.co/DQWVlXDGLC", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "18700629", "profile_image_url": "http://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sciencedaily.com", "url": "http://t.co/DQWVlXDGLC", "expanded_url": "http://www.sciencedaily.com", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Tue Jan 06 23:14:22 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 27241, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", "favourites_count": 0, "listed_count": 5575, "geo_enabled": false, "follow_request_sent": false, "followers_count": 171078, "following": false, "default_profile_image": false, "id": 18700629, "blocked_by": false, "name": "ScienceDaily", "location": "Rockville, MD", "screen_name": "ScienceDaily", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "23331708", "following": false, "friends_count": 495, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "247laundryservice.com", "url": "https://t.co/iLa6wu5cWo", "expanded_url": "http://www.247laundryservice.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "7D7D7D", "geo_enabled": true, "followers_count": 33480, "location": "Brooklyn", "screen_name": "jasonwstein", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 231, "name": "Jason Stein", "profile_use_background_image": false, "description": "founder/ceo of @247LS + @bycycle", "url": "https://t.co/iLa6wu5cWo", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sun Mar 08 17:45:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", "favourites_count": 22898, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", "default_profile_image": false, "id": 23331708, "blocked_by": false, "profile_background_tile": true, "statuses_count": 19835, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23331708/1435423055", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Former Professional Tennis Player, New York Times Best Selling Author, and proud Husband and Father. Founder of the James Blake Foundation.", "url": "http://t.co/CMTAZXOYcQ", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3668032217", "profile_image_url": "http://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", "friends_count": 193, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jamesblaketennis.com", "url": "http://t.co/CMTAZXOYcQ", "expanded_url": "http://jamesblaketennis.com", "indices": [0, 22]}]}}, "profile_background_color": "C0DEED", "created_at": "Tue Sep 15 21:43:58 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 344, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", "favourites_count": 589, "listed_count": 135, "geo_enabled": true, "follow_request_sent": false, "followers_count": 8378, "following": false, "default_profile_image": false, "id": 3668032217, "blocked_by": false, "name": "James Blake", "location": "", "screen_name": "JRBlake", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "1263452575", "following": false, "friends_count": 149, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paperrockmusic.com", "url": "http://t.co/HG6rAVrAPT", "expanded_url": "http://paperrockmusic.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 99, "location": "Brooklyn, Ny", "screen_name": "PaperrockRcrds", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Paperrock Records", "profile_use_background_image": true, "description": "Independent Record Label founded by World renown Hip-Hop artist Spliff Star Also known as Mr. Lewis |\r\nInstagram - Paperrockrecords #BigRings", "url": "http://t.co/HG6rAVrAPT", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Mar 13 03:11:40 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", "favourites_count": 3, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", "default_profile_image": false, "id": 1263452575, "blocked_by": false, "profile_background_tile": true, "statuses_count": 45, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1263452575/1365098791", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1085", "following": false, "friends_count": 206, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "niallkennedy.com", "url": "http://t.co/JhRVjTpizS", "expanded_url": "http://www.niallkennedy.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 1848, "location": "San Francisco, CA", "screen_name": "niall", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 87, "name": "Niall Kennedy", "profile_use_background_image": false, "description": "Tech, food, puppies, and nature in and around San Francisco.", "url": "http://t.co/JhRVjTpizS", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Jul 16 00:43:24 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", "favourites_count": 34, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 1085, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1321, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1085/1420868587", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18825961", "following": false, "friends_count": 1086, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/skrillex", "url": "http://t.co/kEuzso7gAM", "expanded_url": "http://facebook.com/skrillex", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4721544, "location": "\u00dcT: 33.997971,-118.280807", "screen_name": "Skrillex", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 12265, "name": "SKRILLEX", "profile_use_background_image": true, "description": "your friend \u2022 insta / snap: Skrillex", "url": "http://t.co/kEuzso7gAM", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Jan 10 03:49:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", "favourites_count": 2850, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 18825961, "blocked_by": false, "profile_background_tile": false, "statuses_count": 13384, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18825961/1398372903", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "writer, filmmaker, something else maybe...", "url": "http://t.co/8y1kL5WTwP", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "14248315", "profile_image_url": "http://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", "friends_count": 0, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "errolmorris.com", "url": "http://t.co/8y1kL5WTwP", "expanded_url": "http://www.errolmorris.com", "indices": [0, 22]}]}}, "profile_background_color": "9AE4E8", "created_at": "Sat Mar 29 00:53:54 +0000 2008", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", "statuses_count": 3914, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", "favourites_count": 1, "listed_count": 2256, "geo_enabled": false, "follow_request_sent": false, "followers_count": 50984, "following": false, "default_profile_image": false, "id": 14248315, "blocked_by": false, "name": "errolmorris", "location": "Cambridge, MA", "screen_name": "errolmorris", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Central Time (US & Canada)", "profile_use_background_image": true, "description": "Head of product, Google Now. Previously at Akamai, MIT, UT Austin, IIT Madras.", "url": "http://t.co/YU1CzLEyBM", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "14065609", "profile_image_url": "http://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", "friends_count": 563, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/aparnacd", "url": "http://t.co/YU1CzLEyBM", "expanded_url": "http://www.linkedin.com/in/aparnacd", "indices": [0, 22]}]}}, "profile_background_color": "EDECE9", "created_at": "Sat Mar 01 17:32:31 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_text_color": "634047", "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "3B94D9", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 177, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", "favourites_count": 321, "listed_count": 68, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1804, "following": false, "default_profile_image": false, "id": 14065609, "blocked_by": false, "name": "Aparna Chennapragada", "location": "San Francisco Bay area", "screen_name": "aparnacd", "profile_background_tile": false, "notifications": false, "utc_offset": -21600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Sydney", "profile_use_background_image": true, "description": "aspiring mad scientist", "url": "http://t.co/ARYETd4QIZ", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "14563623", "profile_image_url": "http://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", "friends_count": 132, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rethrick.com/p/about/", "url": "http://t.co/ARYETd4QIZ", "expanded_url": "http://rethrick.com/p/about/", "indices": [0, 22]}]}}, "profile_background_color": "131516", "created_at": "Mon Apr 28 01:03:24 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_text_color": "333333", "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 14711, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", "favourites_count": 556, "listed_count": 301, "geo_enabled": false, "follow_request_sent": false, "followers_count": 4243, "following": false, "default_profile_image": false, "id": 14563623, "blocked_by": false, "name": "Dhanji R. Prasanna", "location": "San Francisco, California", "screen_name": "dhanji", "profile_background_tile": true, "notifications": false, "utc_offset": 39600, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "39623638", "following": false, "friends_count": 7445, "entities": {"description": {"urls": [{"display_url": "s.sho.com/1mGJrJp", "url": "https://t.co/TOH5yZnKGu", "expanded_url": "http://s.sho.com/1mGJrJp", "indices": [84, 107]}]}, "url": {"urls": [{"display_url": "sho.com/sports", "url": "https://t.co/kvwbT7SmMj", "expanded_url": "http://sho.com/sports", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 232363, "location": "New York City", "screen_name": "SHOsports", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1446, "name": "SHOWTIME SPORTS", "profile_use_background_image": true, "description": "Home of Championship Boxing & award-winning documentaries. Rules: https://t.co/TOH5yZnKGu", "url": "https://t.co/kvwbT7SmMj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", "profile_background_color": "131516", "created_at": "Tue May 12 23:13:03 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", "favourites_count": 2329, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 39623638, "blocked_by": false, "profile_background_tile": true, "statuses_count": 29318, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39623638/1451521993", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17901282", "following": false, "friends_count": 31186, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hbo.com/boxing/", "url": "http://t.co/MyHnldJu4d", "expanded_url": "http://www.hbo.com/boxing/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", "notifications": false, "profile_sidebar_fill_color": "949494", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 434863, "location": "New York, NY", "screen_name": "HBOboxing", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2954, "name": "HBOboxing", "profile_use_background_image": false, "description": "*By tagging us in a tweet, you consent to allowing HBO Sports to use and showcase it in any media* Instagram/Snapchat: @HBOboxing", "url": "http://t.co/MyHnldJu4d", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Dec 05 16:43:16 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", "favourites_count": 94, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", "default_profile_image": false, "id": 17901282, "blocked_by": false, "profile_background_tile": false, "statuses_count": 21087, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17901282/1448175844", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3320010078", "following": false, "friends_count": 47, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/extremeownersh\u2026", "url": "http://t.co/6Lnf7gknOo", "expanded_url": "http://facebook.com/extremeownership", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 23754, "location": "", "screen_name": "jockowillink", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 195, "name": "Jocko Willink", "profile_use_background_image": false, "description": "Leader; follower. Reader; writer. Speaker; listener. Student; teacher. \n#DisciplineEqualsFreedom\n#ExtremeOwnership", "url": "http://t.co/6Lnf7gknOo", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Aug 19 13:39:44 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", "favourites_count": 8988, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3320010078, "blocked_by": false, "profile_background_tile": false, "statuses_count": 8294, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320010078/1443236759", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24393384", "following": false, "friends_count": 2123, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 141107, "location": "NYC", "screen_name": "40oz_VAN", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 547, "name": "40", "profile_use_background_image": true, "description": "40ozVAN@gmail.com", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Mar 14 16:45:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", "favourites_count": 3109, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", "default_profile_image": false, "id": 24393384, "blocked_by": false, "profile_background_tile": true, "statuses_count": 130499, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24393384/1452240381", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1639866613", "following": false, "friends_count": 280, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/pub/dave-free/\u2026", "url": "https://t.co/iBhESeXA5c", "expanded_url": "http://www.linkedin.com/pub/dave-free/82/420/ba1/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 16669, "location": "LAX", "screen_name": "miyatola", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 92, "name": "Dave Free", "profile_use_background_image": true, "description": "President of TDE | Management & Creative for Kendrick Lamar | Jay Rock | AB-Soul | ScHoolboy Q | Isaiah Rashad | SZA | the little homies |Digi+Phonics |", "url": "https://t.co/iBhESeXA5c", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Aug 02 07:22:39 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", "favourites_count": 26, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", "default_profile_image": false, "id": 1639866613, "blocked_by": false, "profile_background_tile": true, "statuses_count": 687, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1639866613/1448157283", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "99841232", "following": false, "friends_count": 812, "entities": {"description": {"urls": [{"display_url": "soundcloud.com/young-magic", "url": "https://t.co/q6ASiQNDfX", "expanded_url": "https://soundcloud.com/young-magic", "indices": [22, 45]}]}, "url": {"urls": [{"display_url": "youngmagicsounds.com", "url": "http://t.co/jz4VuRfCjB", "expanded_url": "http://youngmagicsounds.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 8998, "location": "Brooklyn, NY \u262f", "screen_name": "ItsYoungMagic", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 76, "name": "Young Magic", "profile_use_background_image": true, "description": "Melati + Izak \u30b7\u30eb\u30af\u5922\u307f\u308b\u4eba https://t.co/q6ASiQNDfX", "url": "http://t.co/jz4VuRfCjB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 28 02:47:34 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", "favourites_count": 510, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", "default_profile_image": false, "id": 99841232, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1074, "profile_banner_url": "https://pbs.twimg.com/profile_banners/99841232/1424777262", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2194124415", "following": false, "friends_count": 652, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 20393, "location": "United Kingdom", "screen_name": "ZiauddinY", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 135, "name": "Ziauddin Yousafzai", "profile_use_background_image": true, "description": "Proud to be a teacher, Malala's father and a peace, women's rights and education activist. \nRTs do not equal endorsement.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Nov 24 13:37:54 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", "favourites_count": 953, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2194124415, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1217, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2194124415/1385300984", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": true, "description": "Author of #1 @NYTimes bestseller Orange is the New Black: My Year in a Women's Prison @sixwords: In and out of hot water", "url": "https://t.co/bZNP8H8fqP", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "20783", "profile_image_url": "http://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", "friends_count": 3684, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "piperkerman.com", "url": "https://t.co/bZNP8H8fqP", "expanded_url": "http://www.piperkerman.com", "indices": [0, 23]}]}}, "profile_background_color": "9AE4E8", "created_at": "Fri Nov 24 19:35:29 +0000 2006", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", "profile_text_color": "000000", "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", "statuses_count": 16320, "profile_sidebar_border_color": "87BC44", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", "favourites_count": 26941, "listed_count": 934, "geo_enabled": true, "follow_request_sent": false, "followers_count": 112421, "following": false, "default_profile_image": false, "id": 20783, "blocked_by": false, "name": "Piper Kerman", "location": "Ohio, USA", "screen_name": "Piper", "profile_background_tile": true, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "19725644", "following": false, "friends_count": 46, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "haydenplanetarium.org/tyson/", "url": "http://t.co/FRT5oYtwbX", "expanded_url": "http://www.haydenplanetarium.org/tyson/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "CC3366", "geo_enabled": false, "followers_count": 4746904, "location": "New York City", "screen_name": "neiltyson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 39790, "name": "Neil deGrasse Tyson", "profile_use_background_image": true, "description": "Astrophysicist", "url": "http://t.co/FRT5oYtwbX", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", "profile_background_color": "DBE9ED", "created_at": "Thu Jan 29 18:40:26 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBE9ED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", "favourites_count": 2, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", "default_profile_image": false, "id": 19725644, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4758, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19725644/1400087889", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2916305152", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "freedom.press", "url": "https://t.co/U63fP7T2ST", "expanded_url": "https://freedom.press", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1743010, "location": "", "screen_name": "Snowden", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 10804, "name": "Edward Snowden", "profile_use_background_image": true, "description": "I used to work for the government. Now I work for the public. Director at @FreedomofPress.", "url": "https://t.co/U63fP7T2ST", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Dec 11 21:24:28 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2916305152, "blocked_by": false, "profile_background_tile": false, "statuses_count": 373, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2916305152/1443542022", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "299364430", "following": false, "friends_count": 92568, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "everettetaylor.com", "url": "https://t.co/DTKHW8LqbJ", "expanded_url": "http://everettetaylor.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 258858, "location": "Los Angeles (via Richmond, VA)", "screen_name": "Everette", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2125, "name": "Everette Taylor", "profile_use_background_image": true, "description": "building + growing companies (instagram: everette x snapchat: everettetaylor)", "url": "https://t.co/DTKHW8LqbJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", "profile_background_color": "131516", "created_at": "Sun May 15 23:37:59 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", "favourites_count": 184609, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 299364430, "blocked_by": false, "profile_background_tile": true, "statuses_count": 14393, "profile_banner_url": "https://pbs.twimg.com/profile_banners/299364430/1444247536", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "just a future teller", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3633459012", "profile_image_url": "http://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", "friends_count": 2, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Sep 21 03:20:06 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "ja", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 25, "following": false, "default_profile_image": false, "id": 3633459012, "blocked_by": false, "name": "\u5915\u590f", "location": "Tokyo, Japan", "screen_name": "aAcvyXkvyzhJJoj", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "19777398", "following": false, "friends_count": 19669, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tonightshow.com", "url": "http://t.co/fgp5RYqr3T", "expanded_url": "http://www.tonightshow.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3340199, "location": "Weeknights 11:35/10:35c", "screen_name": "FallonTonight", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8976, "name": "Fallon Tonight", "profile_use_background_image": true, "description": "The official Twitter for The Tonight Show Starring @JimmyFallon on @NBC. (Tweets by: @marinarachael @cdriz @thatsso_rachael @NoahGeb) #FallonTonight", "url": "http://t.co/fgp5RYqr3T", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", "profile_background_color": "03253E", "created_at": "Fri Jan 30 17:26:46 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", "favourites_count": 90444, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", "default_profile_image": false, "id": 19777398, "blocked_by": false, "profile_background_tile": false, "statuses_count": 44515, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19777398/1401723954", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "158414847", "following": false, "friends_count": 277, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thedailyshow.com", "url": "http://t.co/BAakBFaEGx", "expanded_url": "http://thedailyshow.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3996763, "location": "", "screen_name": "TheDailyShow", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 36029, "name": "The Daily Show", "profile_use_background_image": true, "description": "Trevor Noah and The Best F#@king News Team. Weeknights 11/10c on @ComedyCentral. Full episodes, videos, guest information. #DailyShow", "url": "http://t.co/BAakBFaEGx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 22 16:41:05 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", "favourites_count": 14, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", "default_profile_image": false, "id": 158414847, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9003, "profile_banner_url": "https://pbs.twimg.com/profile_banners/158414847/1446498480", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "profile_use_background_image": false, "description": "Politics, culture, business, science, technology, health, education, global affairs, more. Tweets by @CaitlinFrazier", "url": "http://t.co/pI6FUBgQdl", "contributors_enabled": false, "is_translation_enabled": true, "id_str": "35773039", "profile_image_url": "http://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", "friends_count": 1004, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theatlantic.com", "url": "http://t.co/pI6FUBgQdl", "expanded_url": "http://www.theatlantic.com", "indices": [0, 22]}]}}, "profile_background_color": "000000", "created_at": "Mon Apr 27 15:41:54 +0000 2009", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", "profile_text_color": "000408", "profile_sidebar_fill_color": "E6ECF2", "profile_link_color": "000000", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", "statuses_count": 78823, "profile_sidebar_border_color": "BFBFBF", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", "favourites_count": 653, "listed_count": 23362, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1183558, "following": false, "default_profile_image": false, "id": 35773039, "blocked_by": false, "name": "The Atlantic", "location": "Washington, D.C.", "screen_name": "TheAtlantic", "profile_background_tile": false, "notifications": false, "utc_offset": -18000, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "83876527", "following": false, "friends_count": 969, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tejucole.com", "url": "http://t.co/FcCN8OHr", "expanded_url": "http://www.tejucole.com", "indices": [0, 20]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", "notifications": false, "profile_sidebar_fill_color": "D1CFC1", "profile_link_color": "4D2911", "geo_enabled": true, "followers_count": 232991, "location": "the Black Atlantic", "screen_name": "tejucole", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2716, "name": "Teju Cole", "profile_use_background_image": true, "description": "We who?", "url": "http://t.co/FcCN8OHr", "profile_text_color": "331D0C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", "profile_background_color": "121314", "created_at": "Tue Oct 20 16:27:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", "favourites_count": 1992, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", "default_profile_image": false, "id": 83876527, "blocked_by": false, "profile_background_tile": true, "statuses_count": 13298, "profile_banner_url": "https://pbs.twimg.com/profile_banners/83876527/1400341445", "is_translator": false}, {"time_zone": "Rome", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "241027939", "following": false, "friends_count": 246, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "googlethatshit.com", "url": "https://t.co/AGKwFEnIEM", "expanded_url": "http://googlethatshit.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "001122", "geo_enabled": true, "followers_count": 259535, "location": "Italia", "screen_name": "AsiaArgento", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1078, "name": "Asia Argento", "profile_use_background_image": true, "description": "a woman who does everything but doesn't know how to do anything / instagram = asiaargento", "url": "https://t.co/AGKwFEnIEM", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Fri Jan 21 08:27:38 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", "favourites_count": 28343, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", "default_profile_image": false, "id": 241027939, "blocked_by": false, "profile_background_tile": false, "statuses_count": 35108, "profile_banner_url": "https://pbs.twimg.com/profile_banners/241027939/1353605533", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "Diana Ross Official Twitter", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2352142008", "profile_image_url": "http://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", "friends_count": 30, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Wed Feb 19 19:21:42 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 101, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", "favourites_count": 15, "listed_count": 295, "geo_enabled": false, "follow_request_sent": false, "followers_count": 38803, "following": false, "default_profile_image": false, "id": 2352142008, "blocked_by": false, "name": "Ms. Ross", "location": "", "screen_name": "DianaRoss", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1140451", "following": false, "friends_count": 4937, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "antderosa.com", "url": "https://t.co/XEmDfG5Qlv", "expanded_url": "http://antderosa.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", "notifications": false, "profile_sidebar_fill_color": "F0F0F0", "profile_link_color": "2A70A6", "geo_enabled": true, "followers_count": 88509, "location": "Jersey City, NJ", "screen_name": "AntDeRosa", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4730, "name": "Anthony De Rosa", "profile_use_background_image": true, "description": "Digital Production Manager for @TheDailyShow with @TrevorNoah", "url": "https://t.co/XEmDfG5Qlv", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 14 05:45:24 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", "favourites_count": 20408, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", "default_profile_image": false, "id": 1140451, "blocked_by": false, "profile_background_tile": true, "statuses_count": 147547, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140451/1446584214", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18393773", "following": false, "friends_count": 868, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "neilgaiman.com", "url": "http://t.co/sGHzpf2rCG", "expanded_url": "http://www.neilgaiman.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 2359612, "location": "a bit all over the place", "screen_name": "neilhimself", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 35382, "name": "Neil Gaiman", "profile_use_background_image": true, "description": "will eventually grow up and get a real job. Until then, will keep making things up and writing them down.", "url": "http://t.co/sGHzpf2rCG", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", "profile_background_color": "91AAB5", "created_at": "Fri Dec 26 19:30:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", "favourites_count": 1091, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", "default_profile_image": false, "id": 18393773, "blocked_by": false, "profile_background_tile": false, "statuses_count": 90753, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18393773/1424768490", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "263964021", "following": false, "friends_count": 864, "entities": {"description": {"urls": [{"display_url": "LIONBABE.COM", "url": "http://t.co/RbZqjUPgsT", "expanded_url": "http://LIONBABE.COM", "indices": [32, 54]}]}, "url": {"urls": [{"display_url": "jillonce.tumblr.com", "url": "http://t.co/vK5PFVYnmO", "expanded_url": "http://jillonce.tumblr.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7505, "location": "NYC", "screen_name": "Jillonce", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 77, "name": "Jillian Hervey", "profile_use_background_image": true, "description": "arting all the time @LIONBABE x http://t.co/RbZqjUPgsT", "url": "http://t.co/vK5PFVYnmO", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Mar 11 02:23:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", "favourites_count": 2910, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", "default_profile_image": false, "id": 263964021, "blocked_by": false, "profile_background_tile": true, "statuses_count": 17306, "profile_banner_url": "https://pbs.twimg.com/profile_banners/263964021/1414102504", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "432588553", "following": false, "friends_count": 846, "entities": {"description": {"urls": [{"display_url": "po.st/WDWGiTTW", "url": "https://t.co/s8fWZIpJuH", "expanded_url": "http://po.st/WDWGiTTW", "indices": [100, 123]}]}, "url": {"urls": [{"display_url": "LIONBABE.com", "url": "http://t.co/IRuegBPo6R", "expanded_url": "http://www.LIONBABE.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "DD2E44", "geo_enabled": false, "followers_count": 16964, "location": "NYC", "screen_name": "LionBabe", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 167, "name": "LION BABE", "profile_use_background_image": false, "description": "Lion Babe is Jillian Hervey + Lucas Goodman @Jillonce + @Astro_Raw . NYC . WHERE DO WE GO - iTunes: https://t.co/s8fWZIpJuH x", "url": "http://t.co/IRuegBPo6R", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Dec 09 15:18:30 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", "favourites_count": 9526, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 432588553, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3675, "profile_banner_url": "https://pbs.twimg.com/profile_banners/432588553/1450721529", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "141326053", "following": false, "friends_count": 472, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "davesmithinstruments.com", "url": "http://t.co/huTEKpwJ0k", "expanded_url": "http://www.davesmithinstruments.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", "notifications": false, "profile_sidebar_fill_color": "252745", "profile_link_color": "DD5527", "geo_enabled": false, "followers_count": 24523, "location": "San Francisco, CA", "screen_name": "dsiSequential", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 394, "name": "DaveSmithInstruments", "profile_use_background_image": true, "description": "Innovative music machines designed and built in San Francisco, CA.", "url": "http://t.co/huTEKpwJ0k", "profile_text_color": "858585", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", "profile_background_color": "471A2E", "created_at": "Fri May 07 19:54:02 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", "favourites_count": 128, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", "default_profile_image": false, "id": 141326053, "blocked_by": false, "profile_background_tile": false, "statuses_count": 3040, "profile_banner_url": "https://pbs.twimg.com/profile_banners/141326053/1421946814", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "748020092", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "M3LL155X.com", "url": "http://t.co/Qvv5qGkNFV", "expanded_url": "http://M3LL155X.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 159581, "location": "", "screen_name": "FKAtwigs", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1066, "name": "FKA twigs", "profile_use_background_image": true, "description": "", "url": "http://t.co/Qvv5qGkNFV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Thu Aug 09 21:57:26 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", "favourites_count": 91, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", "default_profile_image": false, "id": 748020092, "blocked_by": false, "profile_background_tile": true, "statuses_count": 313, "profile_banner_url": "https://pbs.twimg.com/profile_banners/748020092/1439491511", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14159148", "following": false, "friends_count": 1044, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "un.org", "url": "http://t.co/kgJqUNDMpy", "expanded_url": "http://www.un.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 5985356, "location": "New York, NY", "screen_name": "UN", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 34756, "name": "United Nations", "profile_use_background_image": false, "description": "Official twitter account of #UnitedNations. Get the latest information on the #UN. #GlobalGoals", "url": "http://t.co/kgJqUNDMpy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", "profile_background_color": "0197D6", "created_at": "Sun Mar 16 20:15:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", "favourites_count": 488, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", "default_profile_image": false, "id": 14159148, "blocked_by": false, "profile_background_tile": false, "statuses_count": 42445, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159148/1447180964", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "857054191", "following": false, "friends_count": 51, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dorotheegilbert.com", "url": "http://t.co/Bifsr25Z2N", "expanded_url": "http://www.dorotheegilbert.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 5531, "location": "", "screen_name": "DorotheGilbert", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 86, "name": "Doroth\u00e9e Gilbert", "profile_use_background_image": true, "description": "Danseuse \u00e9toile Op\u00e9ra de Paris", "url": "http://t.co/Bifsr25Z2N", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Oct 01 21:28:01 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", "favourites_count": 139, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 857054191, "blocked_by": false, "profile_background_tile": false, "statuses_count": 287, "profile_banner_url": "https://pbs.twimg.com/profile_banners/857054191/1354469514", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "166739404", "following": false, "friends_count": 246, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "3399FF", "geo_enabled": true, "followers_count": 20424514, "location": "London", "screen_name": "EmWatson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 43462, "name": "Emma Watson", "profile_use_background_image": true, "description": "British actress, Goodwill Ambassador for UN Women", "url": null, "profile_text_color": "666666", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Jul 14 22:06:37 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", "favourites_count": 765, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", "default_profile_image": false, "id": 166739404, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1213, "profile_banner_url": "https://pbs.twimg.com/profile_banners/166739404/1448459323", "is_translator": false}, {"time_zone": "Casablanca", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "384982986", "following": false, "friends_count": 965, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/gracejonesoffi\u2026", "url": "http://t.co/RAPIxjvPtQ", "expanded_url": "http://instagram.com/gracejonesofficial", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "85CFD2", "geo_enabled": false, "followers_count": 41783, "location": "Worldwide", "screen_name": "Miss_GraceJones", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 548, "name": "Grace Jones", "profile_use_background_image": true, "description": "This is my Official Twitter account... I see all and hear all. Nice to have you on my plate.", "url": "http://t.co/RAPIxjvPtQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Oct 04 17:29:03 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", "favourites_count": 345, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", "default_profile_image": false, "id": 384982986, "blocked_by": false, "profile_background_tile": false, "statuses_count": 405, "profile_banner_url": "https://pbs.twimg.com/profile_banners/384982986/1366714920", "is_translator": false}, {"time_zone": "Mumbai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "41330290", "following": false, "friends_count": 277, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/TheShakaSurfCl\u2026", "url": "https://t.co/SEQpF7VDH4", "expanded_url": "http://www.facebook.com/TheShakaSurfClub", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1047, "location": "India", "screen_name": "surFISHita", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Ishita Malaviya", "profile_use_background_image": true, "description": "India's first recognized woman surfer & Co-founder of The Shaka Surf Club @SurfingIndia #Namaloha", "url": "https://t.co/SEQpF7VDH4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed May 20 10:04:32 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", "favourites_count": 104, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", "default_profile_image": false, "id": 41330290, "blocked_by": false, "profile_background_tile": false, "statuses_count": 470, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41330290/1357404184", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14085740", "following": false, "friends_count": 3037, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 4883, "location": "San Francisco, CA", "screen_name": "jimprosser", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 152, "name": "Jim Prosser", "profile_use_background_image": true, "description": "Current @twitter comms guy, future @kanyewest 2020 campaign spokesperson.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Mar 05 23:28:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", "favourites_count": 52938, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 14085740, "blocked_by": false, "profile_background_tile": true, "statuses_count": 12556, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14085740/1405206869", "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "37945489", "following": false, "friends_count": 996, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtu.be/ALlDZIQeNyo", "url": "http://t.co/2nWHiTkVsZ", "expanded_url": "http://youtu.be/ALlDZIQeNyo", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "EB3E12", "geo_enabled": true, "followers_count": 57089, "location": "Paris", "screen_name": "Carodemaigret", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 210, "name": "Caroline de Maigret", "profile_use_background_image": false, "description": "Model @NextModels worldwide /// @CareFrance Ambassador /// Book out now: @Howtobeparisian /// Instagram/Periscope: @carolinedemaigret", "url": "http://t.co/2nWHiTkVsZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", "profile_background_color": "F0F0F0", "created_at": "Tue May 05 15:26:02 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", "favourites_count": 6015, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 37945489, "blocked_by": false, "profile_background_tile": false, "statuses_count": 7696, "profile_banner_url": "https://pbs.twimg.com/profile_banners/37945489/1420905232", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "35556383", "following": false, "friends_count": 265, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "londonzhiloh.com", "url": "https://t.co/gsxVxxXXXz", "expanded_url": "http://londonzhiloh.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", "notifications": false, "profile_sidebar_fill_color": "F5F2F2", "profile_link_color": "D9207D", "geo_enabled": true, "followers_count": 74136, "location": "Snapchat: Zhiloh101", "screen_name": "TheRealZhiloh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 272, "name": "London Zhiloh", "profile_use_background_image": false, "description": "Bookings: Info@LZofficial.com", "url": "https://t.co/gsxVxxXXXz", "profile_text_color": "292727", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", "profile_background_color": "F2EFF1", "created_at": "Sun Apr 26 20:29:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "F5F0F0", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", "favourites_count": 14019, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", "default_profile_image": false, "id": 35556383, "blocked_by": false, "profile_background_tile": false, "statuses_count": 96490, "profile_banner_url": "https://pbs.twimg.com/profile_banners/35556383/1450060528", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "233183631", "following": false, "friends_count": 36443, "entities": {"description": {"urls": [{"display_url": "itun.es/us/boyR_", "url": "https://t.co/CJheDwyeIF", "expanded_url": "https://itun.es/us/boyR_", "indices": [74, 97]}]}, "url": {"urls": [{"display_url": "Instagram.com/madisonbeer", "url": "https://t.co/nqrYEOhs7A", "expanded_url": "http://Instagram.com/madisonbeer", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "6895D0", "geo_enabled": true, "followers_count": 1755132, "location": "", "screen_name": "MadisonElleBeer", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4392, "name": "madison beer", "profile_use_background_image": true, "description": "\u2661 singer from ny \u2661 chase your dreams \u2661 new single Something Sweet out now https://t.co/CJheDwyeIF", "url": "https://t.co/nqrYEOhs7A", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jan 02 14:52:35 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", "favourites_count": 3926, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", "default_profile_image": false, "id": 233183631, "blocked_by": false, "profile_background_tile": true, "statuses_count": 11569, "profile_banner_url": "https://pbs.twimg.com/profile_banners/233183631/1446485514", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "70457876", "following": false, "friends_count": 690, "entities": {"description": {"urls": [{"display_url": "soundcloud.com/dope-saint-jud\u2026", "url": "https://t.co/dIyhEjwine", "expanded_url": "https://soundcloud.com/dope-saint-jude/", "indices": [0, 23]}, {"display_url": "facebook.com/pages/Dope-Sai\u2026", "url": "https://t.co/4Kqi4mPsER", "expanded_url": "https://www.facebook.com/pages/Dope-Saint-Jude/287771241273733", "indices": [24, 47]}]}, "url": {"urls": [{"display_url": "dopesaintjude.tumblr.com", "url": "http://t.co/VYkd1URkb3", "expanded_url": "http://dopesaintjude.tumblr.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 898, "location": "@dopesaintjude (insta) ", "screen_name": "DopeSaintJude", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 20, "name": "DOPESAINTJUDE", "profile_use_background_image": true, "description": "https://t.co/dIyhEjwine https://t.co/4Kqi4mPsER", "url": "http://t.co/VYkd1URkb3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Aug 31 18:06:59 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", "favourites_count": 2286, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", "default_profile_image": false, "id": 70457876, "blocked_by": false, "profile_background_tile": true, "statuses_count": 4521, "profile_banner_url": "https://pbs.twimg.com/profile_banners/70457876/1442416572", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3840", "following": false, "friends_count": 20921, "entities": {"description": {"urls": [{"display_url": "angel.co/jason", "url": "https://t.co/nkssr3dWMC", "expanded_url": "http://angel.co/jason", "indices": [48, 71]}]}, "url": {"urls": [{"display_url": "calacanis.com", "url": "https://t.co/akc7KgXv7J", "expanded_url": "http://www.calacanis.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "FF9900", "geo_enabled": true, "followers_count": 256996, "location": "94123", "screen_name": "Jason", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 12248, "name": "jason", "profile_use_background_image": true, "description": "Angel investor (@uber @thumbtack @wealthfront + https://t.co/nkssr3dWMC ) // Writer // Dad // Founder: @Engadget, @Inside, @LAUNCH & @twistartups", "url": "https://t.co/akc7KgXv7J", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Aug 05 23:31:27 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", "favourites_count": 42394, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", "default_profile_image": false, "id": 3840, "blocked_by": false, "profile_background_tile": true, "statuses_count": 71793, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3840/1438902439", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "21872269", "following": false, "friends_count": 70, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "emersoncollective.com", "url": "http://t.co/Qr1O0bgn4d", "expanded_url": "http://emersoncollective.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": false, "followers_count": 10246, "location": "Palo Alto, CA", "screen_name": "laurenepowell", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 123, "name": "Laurene Powell", "profile_use_background_image": false, "description": "mother, advocate, friend, Emerson Collective president, joyful adventurer", "url": "http://t.co/Qr1O0bgn4d", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Feb 25 14:49:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", "favourites_count": 88, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 21872269, "blocked_by": false, "profile_background_tile": false, "statuses_count": 100, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21872269/1445279444", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3583264572", "following": false, "friends_count": 168, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 107328, "location": "", "screen_name": "IStandWithAhmed", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 373, "name": "Ahmed Mohamed", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", "profile_background_color": "000000", "created_at": "Wed Sep 16 14:00:18 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", "favourites_count": 199, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3583264572, "blocked_by": false, "profile_background_tile": false, "statuses_count": 323, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3583264572/1452112394", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "43057202", "following": false, "friends_count": 2964, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 12240, "location": "Las Vegas, NV", "screen_name": "Nicholas_Cope", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 61, "name": "Nick Cope", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", "profile_background_color": "000000", "created_at": "Thu May 28 05:50:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", "favourites_count": 409, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 43057202, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5765, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43057202/1446523732", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "1311113250", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "1D1F1F", "geo_enabled": true, "followers_count": 7883, "location": "", "screen_name": "riccardotisci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "Riccardo Tisci", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", "profile_background_color": "000000", "created_at": "Thu Mar 28 16:36:51 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "nl", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", "favourites_count": 0, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", "default_profile_image": false, "id": 1311113250, "blocked_by": false, "profile_background_tile": false, "statuses_count": 112, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1311113250/1411398117", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2612918754", "profile_image_url": "http://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", "friends_count": 15, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Wed Jul 09 04:39:39 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 17, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", "favourites_count": 5, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 20, "following": false, "default_profile_image": false, "id": 2612918754, "blocked_by": false, "name": "robert abbott", "location": "", "screen_name": "robertabbott92", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "Engineer. Student. Daughter. Sister. Indian-American. Passionate about diversity. Studying CS @CalPoly but my \u2665 is in the Bay.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "123710951", "profile_image_url": "http://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", "friends_count": 22, "entities": {"description": {"urls": []}}, "profile_background_color": "352726", "created_at": "Wed Mar 17 00:37:32 +0000 2010", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_text_color": "3E4415", "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 13, "profile_sidebar_border_color": "829D5E", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", "favourites_count": 10, "listed_count": 2, "geo_enabled": false, "follow_request_sent": false, "followers_count": 51, "following": false, "default_profile_image": false, "id": 123710951, "blocked_by": false, "name": "Nupur Garg", "location": "", "screen_name": "nupurgarg16", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2424272372", "following": false, "friends_count": 382, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/toddsherman", "url": "https://t.co/vUfwnDEI57", "expanded_url": "http://www.linkedin.com/in/toddsherman", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 1033, "location": "San Francisco, CA", "screen_name": "tdd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Todd Sherman", "profile_use_background_image": true, "description": "Product Manager at Twitter.", "url": "https://t.co/vUfwnDEI57", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", "profile_background_color": "B2DFDA", "created_at": "Wed Apr 02 19:53:23 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", "favourites_count": 2965, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "default_profile_image": false, "id": 2424272372, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1427, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2424272372/1426469295", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "284159631", "following": false, "friends_count": 297, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jackiereses.tumblr.com", "url": "https://t.co/JIrh2PYIZ2", "expanded_url": "http://jackiereses.tumblr.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1905, "location": "Woodside, CA and New York City", "screen_name": "jackiereses", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "Jackie Reses", "profile_use_background_image": true, "description": "Just moved to new house! @jackiereseskidz", "url": "https://t.co/JIrh2PYIZ2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", "profile_background_color": "89C9FA", "created_at": "Mon Apr 18 18:59:19 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", "favourites_count": 280, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "default_profile_image": false, "id": 284159631, "blocked_by": false, "profile_background_tile": false, "statuses_count": 601, "profile_banner_url": "https://pbs.twimg.com/profile_banners/284159631/1405201905", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "profile_use_background_image": true, "description": "CEO, @google", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "14130366", "profile_image_url": "http://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", "friends_count": 256, "entities": {"description": {"urls": []}}, "profile_background_color": "1A1B1F", "created_at": "Wed Mar 12 05:51:53 +0000 2008", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_text_color": "666666", "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 721, "profile_sidebar_border_color": "181A1E", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", "favourites_count": 263, "listed_count": 2558, "geo_enabled": true, "follow_request_sent": false, "followers_count": 332791, "following": false, "default_profile_image": false, "id": 14130366, "blocked_by": false, "name": "sundarpichai", "location": "", "screen_name": "sundarpichai", "profile_background_tile": false, "notifications": false, "utc_offset": -28800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "3024282479", "following": false, "friends_count": 378, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sunujournal.com", "url": "https://t.co/VEFaxoMlRR", "expanded_url": "http://www.sunujournal.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 723, "location": "", "screen_name": "sunujournal", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "S U N U", "profile_use_background_image": true, "description": "SUNU: Journal of African Affairs, Critical Thought + Aesthetics \u2022 Amplifying the youth voice + contributing to the collective consciousness #SUNUjournal \u2022 2016", "url": "https://t.co/VEFaxoMlRR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sun Feb 08 01:50:03 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", "favourites_count": 48, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", "default_profile_image": false, "id": 3024282479, "blocked_by": false, "profile_background_tile": false, "statuses_count": 517, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3024282479/1428706146", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17169320", "following": false, "friends_count": 660, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thinkcommon.com", "url": "http://t.co/lGKu0vCb9Q", "expanded_url": "http://thinkcommon.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "EEAD1D", "geo_enabled": false, "followers_count": 3228189, "location": "Chicago, IL", "screen_name": "common", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 14192, "name": "COMMON", "profile_use_background_image": false, "description": "Hip Hop Artist/ Actor", "url": "http://t.co/lGKu0vCb9Q", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Nov 04 21:18:21 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", "favourites_count": 40, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", "default_profile_image": false, "id": 17169320, "blocked_by": false, "profile_background_tile": false, "statuses_count": 9755, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17169320/1438213738", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "28035260", "following": false, "friends_count": 588, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "smarturl.it/iKingPushDBD", "url": "https://t.co/Y2KVVZtpIp", "expanded_url": "http://smarturl.it/iKingPushDBD", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1196671, "location": "VA", "screen_name": "PUSHA_T", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3618, "name": "PUSHA T", "profile_use_background_image": true, "description": "MGMT: @STEVENVICTOR Shows:Cara Lewis/CAA", "url": "https://t.co/Y2KVVZtpIp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Apr 01 02:56:54 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", "favourites_count": 23, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", "default_profile_image": false, "id": 28035260, "blocked_by": false, "profile_background_tile": true, "statuses_count": 12194, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28035260/1451438540", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18381396", "following": false, "friends_count": 1615, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "shop.txdxe.com", "url": "http://t.co/afn1VAKJzW", "expanded_url": "http://shop.txdxe.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "F20909", "geo_enabled": false, "followers_count": 197754, "location": "TxDxE.com", "screen_name": "TopDawgEnt", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 408, "name": "TopDawgEnt", "profile_use_background_image": true, "description": "Official TopDawgEntertainment Twitter \u2022 @JayRock @KendrickLamar @ScHoolBoyQ @AbDashSoul @IsaiahRashad @SZA @MixedByAli #TDE Instagram: @TopDawgEnt", "url": "http://t.co/afn1VAKJzW", "profile_text_color": "B80202", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", "profile_background_color": "000000", "created_at": "Fri Dec 26 00:20:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", "favourites_count": 25, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", "default_profile_image": false, "id": 18381396, "blocked_by": false, "profile_background_tile": false, "statuses_count": 6708, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18381396/1443854512", "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "327894845", "following": false, "friends_count": 157, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nextmanagement.com", "url": "http://t.co/qeqVqn53yt", "expanded_url": "http://www.nextmanagement.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2300, "location": "new york", "screen_name": "MelodieMonrose", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "M\u00e9lodie Monrose", "profile_use_background_image": true, "description": "Next models worldwide /Uno spain", "url": "http://t.co/qeqVqn53yt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", "profile_background_color": "1F2021", "created_at": "Sat Jul 02 10:27:10 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", "favourites_count": 123, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", "default_profile_image": false, "id": 327894845, "blocked_by": false, "profile_background_tile": true, "statuses_count": 2133, "profile_banner_url": "https://pbs.twimg.com/profile_banners/327894845/1440579572", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "tomboy model from jamaica, loves fashion,cooking,people and most of all love my job new to instagram follow me @jeneilwilliams", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "108213835", "profile_image_url": "http://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", "friends_count": 173, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Jan 25 06:22:47 +0000 2010", "blocking": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", "statuses_count": 932, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", "favourites_count": 242, "listed_count": 45, "geo_enabled": false, "follow_request_sent": false, "followers_count": 1386, "following": false, "default_profile_image": false, "id": 108213835, "blocked_by": false, "name": "jeneil williams", "location": "", "screen_name": "jeneil1", "profile_background_tile": true, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6204", "following": false, "friends_count": 2910, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jabrams.com", "url": "http://t.co/YcT7cUkcui", "expanded_url": "http://www.jabrams.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 15936, "location": "San Francisco, CA", "screen_name": "abrams", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1064, "name": "Jonathan Abrams", "profile_use_background_image": true, "description": "Founder & CEO of @Nuzzel", "url": "http://t.co/YcT7cUkcui", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Sep 16 01:11:02 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", "favourites_count": 10208, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 6204, "blocked_by": false, "profile_background_tile": false, "statuses_count": 31488, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6204/1401738610", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1547221", "following": false, "friends_count": 1042, "entities": {"description": {"urls": [{"display_url": "eugenewei.com", "url": "https://t.co/31xFn7CUeB", "expanded_url": "http://www.eugenewei.com", "indices": [73, 96]}]}, "url": {"urls": [{"display_url": "eugenewei.com", "url": "https://t.co/ccJQSSYAHH", "expanded_url": "http://www.eugenewei.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "909090", "geo_enabled": true, "followers_count": 3361, "location": "San Francisco, CA", "screen_name": "eugenewei", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 173, "name": "Eugene Wei", "profile_use_background_image": false, "description": "Former Head of Product at Flipboard and Hulu, an alum of Amazon. More at https://t.co/31xFn7CUeB", "url": "https://t.co/ccJQSSYAHH", "profile_text_color": "2C2C2C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", "profile_background_color": "FFFFFF", "created_at": "Mon Mar 19 20:00:36 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", "favourites_count": 5964, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", "default_profile_image": false, "id": 1547221, "blocked_by": false, "profile_background_tile": false, "statuses_count": 5743, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1547221/1398367465", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "29663668", "following": false, "friends_count": 511, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/RZAWU", "url": "https://t.co/LxKDItI1ju", "expanded_url": "http://www.facebook.com/RZAWU", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/43773275/wu.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 629096, "location": "Brooklyn-Shaolin-NY-NJ-LA", "screen_name": "RZA", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5504, "name": "RZA!", "profile_use_background_image": true, "description": "MY OFFICIAL TWITTER, PEACE!", "url": "https://t.co/LxKDItI1ju", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Apr 08 07:37:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", "favourites_count": 15, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/43773275/wu.jpg", "default_profile_image": false, "id": 29663668, "blocked_by": false, "profile_background_tile": true, "statuses_count": 5560, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29663668/1448944289", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6646402", "following": false, "friends_count": 647, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "get.fabric.io", "url": "http://t.co/OZQv5dblxS", "expanded_url": "http://get.fabric.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "1191F2", "geo_enabled": true, "followers_count": 1159, "location": "Boston / SF / worldwide", "screen_name": "richparet", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Rich Paret", "profile_use_background_image": false, "description": "Director of Engineering, Developer Platform @twitter. @twitterapi / @gnip / @fabric. Let's build the future together.", "url": "http://t.co/OZQv5dblxS", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", "profile_background_color": "0F0F0F", "created_at": "Thu Jun 07 17:49:42 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", "favourites_count": 3282, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", "default_profile_image": false, "id": 6646402, "blocked_by": false, "profile_background_tile": true, "statuses_count": 1554, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6646402/1440532521", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "522299046", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "friends_count": 0, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Mar 12 14:33:21 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 26, "following": false, "default_profile_image": true, "id": 522299046, "blocked_by": false, "name": "Geno's Barberia", "location": "", "screen_name": "GenosBarberia", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "profile_use_background_image": true, "description": "Producer", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "100325421", "profile_image_url": "http://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", "friends_count": 455, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Dec 29 21:32:20 +0000 2009", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 20, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", "favourites_count": 1, "listed_count": 507, "geo_enabled": false, "follow_request_sent": false, "followers_count": 70564, "following": false, "default_profile_image": false, "id": 100325421, "blocked_by": false, "name": "Kevin Feige", "location": "", "screen_name": "Kevfeige", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "166747718", "following": false, "friends_count": 286, "entities": {"description": {"urls": [{"display_url": "itunes.apple.com/us/album/cherr\u2026", "url": "https://t.co/cIuPQAaTHf", "expanded_url": "https://itunes.apple.com/us/album/cherry-bomb/id983056044", "indices": [54, 77]}]}, "url": {"urls": [{"display_url": "golfwang.com", "url": "https://t.co/WMyHWbn11Q", "expanded_url": "http://golfwang.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685727329729970176/bNxMsXKn.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "FFCC4D", "geo_enabled": false, "followers_count": 2752141, "location": "OKAGA, CA", "screen_name": "fucktyler", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 7283, "name": "Tyler, The Creator", "profile_use_background_image": true, "description": "i want an enzo, garden and leo from romeo and juliet: https://t.co/cIuPQAaTHf", "url": "https://t.co/WMyHWbn11Q", "profile_text_color": "00CCFF", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", "profile_background_color": "75D1FF", "created_at": "Wed Jul 14 22:32:25 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", "favourites_count": 167, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685727329729970176/bNxMsXKn.jpg", "default_profile_image": false, "id": 166747718, "blocked_by": false, "profile_background_tile": true, "statuses_count": 39779, "profile_banner_url": "https://pbs.twimg.com/profile_banners/166747718/1438284983", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "147279619", "following": false, "friends_count": 20841, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", "notifications": false, "profile_sidebar_fill_color": "EBDDEB", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 27078, "location": "", "screen_name": "MayaAMonroe", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 107, "name": "Maya Angelique", "profile_use_background_image": true, "description": "IG and snapchat: mayaangelique", "url": null, "profile_text_color": "6ABA93", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", "profile_background_color": "FF001E", "created_at": "Sun May 23 18:06:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", "favourites_count": 63000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", "default_profile_image": false, "id": 147279619, "blocked_by": false, "profile_background_tile": true, "statuses_count": 125827, "profile_banner_url": "https://pbs.twimg.com/profile_banners/147279619/1448679913", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "profile_use_background_image": false, "description": "I'm on a mission that Dreamers say is impossible.\nBut when I swing my sword, they all choppable.", "url": "http://t.co/863fgunGbW", "contributors_enabled": false, "is_translation_enabled": false, "id_str": "2517988075", "profile_image_url": "http://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", "friends_count": 649, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theatlantic.com", "url": "http://t.co/863fgunGbW", "expanded_url": "http://www.theatlantic.com/", "indices": [0, 22]}]}}, "profile_background_color": "000000", "created_at": "Fri May 23 14:31:49 +0000 2014", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 20312, "profile_sidebar_border_color": "000000", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", "favourites_count": 502, "listed_count": 4046, "geo_enabled": false, "follow_request_sent": false, "followers_count": 462988, "following": false, "default_profile_image": false, "id": 2517988075, "blocked_by": false, "name": "Ta-Nehisi Coates", "location": "Shaolin ", "screen_name": "tanehisicoates", "profile_background_tile": true, "notifications": false, "utc_offset": -14400, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2367911", "following": false, "friends_count": 31973, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mtv.com", "url": "http://t.co/yyniasrs2z", "expanded_url": "http://mtv.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 13288451, "location": "NYC", "screen_name": "MTV", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 28353, "name": "MTV", "profile_use_background_image": true, "description": "The official Twitter account for MTV, USA! Tweets by @Kaitiii | Snapchat/KiK: MTV", "url": "http://t.co/yyniasrs2z", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Mar 26 22:30:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", "favourites_count": 12412, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 2367911, "blocked_by": false, "profile_background_tile": true, "statuses_count": 150524, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2367911/1451411117", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2601175671", "following": false, "friends_count": 1137, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flyt.it/fettywapitunes", "url": "https://t.co/ha6adhNCBb", "expanded_url": "http://flyt.it/fettywapitunes", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 458529, "location": "", "screen_name": "fettywap", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 514, "name": "FettyWap1738", "profile_use_background_image": true, "description": "Fetty Wap||ZooWap||Zoovier||ZooZoo for bookings: bookings@rgfproductions.com . Album \u2b07\ufe0f on iTunes", "url": "https://t.co/ha6adhNCBb", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 11 13:55:15 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", "favourites_count": 1939, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 2601175671, "blocked_by": false, "profile_background_tile": false, "statuses_count": 4811, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2601175671/1450121884", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "54387680", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "michaeljackson.com", "url": "http://t.co/q1TE07bI3n", "expanded_url": "http://www.michaeljackson.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "C12032", "geo_enabled": false, "followers_count": 1925124, "location": "New York, NY USA", "screen_name": "michaeljackson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 13328, "name": "Michael Jackson", "profile_use_background_image": true, "description": "The Official Michael Jackson Twitter Page", "url": "http://t.co/q1TE07bI3n", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Tue Jul 07 00:24:51 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", "favourites_count": 0, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", "default_profile_image": false, "id": 54387680, "blocked_by": false, "profile_background_tile": false, "statuses_count": 1357, "profile_banner_url": "https://pbs.twimg.com/profile_banners/54387680/1435330454", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15934076", "following": false, "friends_count": 685, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtu.be/4-42cW_4ycA", "url": "https://t.co/jYzdPI3TZ3", "expanded_url": "http://youtu.be/4-42cW_4ycA", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 86286, "location": "Los Angeles, CA", "screen_name": "quintabrunson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 186, "name": "Quinta B.", "profile_use_background_image": false, "description": "hi. i'm a creator. I know, right?", "url": "https://t.co/jYzdPI3TZ3", "profile_text_color": "030303", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", "profile_background_color": "E7F5F5", "created_at": "Thu Aug 21 17:31:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", "favourites_count": 5678, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", "default_profile_image": false, "id": 15934076, "blocked_by": false, "profile_background_tile": true, "statuses_count": 41493, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15934076/1449387090", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "221579212", "following": false, "friends_count": 460, "entities": {"description": {"urls": [{"display_url": "jouelzy.com", "url": "https://t.co/qfCo83qrSw", "expanded_url": "http://jouelzy.com", "indices": [120, 143]}]}, "url": {"urls": [{"display_url": "youtube.com/jouelzy", "url": "https://t.co/oeQSvIWKEP", "expanded_url": "http://www.youtube.com/jouelzy", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "B8A2E8", "geo_enabled": true, "followers_count": 9974, "location": "Floating thru the Universe...", "screen_name": "Jouelzy", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 107, "name": "Jouelzy", "profile_use_background_image": true, "description": "OG #SmartBrownGirl. Writer | Tech | Culture | Snark | Womanist Really love tacos, really is my email: tacos@jouelzy.com https://t.co/qfCo83qrSw", "url": "https://t.co/oeQSvIWKEP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Dec 01 01:22:22 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", "favourites_count": 763, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", "default_profile_image": false, "id": 221579212, "blocked_by": false, "profile_background_tile": true, "statuses_count": 43562, "profile_banner_url": "https://pbs.twimg.com/profile_banners/221579212/1412759867", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "26565946", "following": false, "friends_count": 117, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "justintimberlake.com", "url": "http://t.co/SRqd8jW6W3", "expanded_url": "http://www.justintimberlake.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 51082978, "location": "Memphis, TN", "screen_name": "jtimberlake", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 76095, "name": "Justin Timberlake", "profile_use_background_image": true, "description": "The Official Twitter of Justin Timberlake", "url": "http://t.co/SRqd8jW6W3", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Mar 25 19:10:50 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", "favourites_count": 14, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "default_profile_image": false, "id": 26565946, "blocked_by": false, "profile_background_tile": true, "statuses_count": 3106, "profile_banner_url": "https://pbs.twimg.com/profile_banners/26565946/1424110230", "is_translator": false}, {"time_zone": "Mumbai", "profile_use_background_image": true, "description": "Former Chairman of Tata Group. Personal interests : - aviation, automobiles, scuba diving and architectural design.", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "277434037", "profile_image_url": "http://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", "friends_count": 38, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Tue Apr 05 11:01:00 +0000 2011", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 116, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": true, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", "favourites_count": 7, "listed_count": 2742, "geo_enabled": true, "follow_request_sent": false, "followers_count": 5407277, "following": false, "default_profile_image": false, "id": 277434037, "blocked_by": false, "name": "Ratan N. Tata", "location": "Mumbai", "screen_name": "RNTata2000", "profile_background_tile": false, "notifications": false, "utc_offset": 19800, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}], "next_cursor": 1510492845088954664, "previous_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "1510492845088954664"} \ No newline at end of file diff --git a/testdata/get_friends_paged_uid.json b/testdata/get_friends_paged_uid.json index d3882144..fd51cf89 100644 --- a/testdata/get_friends_paged_uid.json +++ b/testdata/get_friends_paged_uid.json @@ -1,26630 +1 @@ -{ - "next_cursor": 1510410423140902959, - "users": [ - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2377837022", - "following": false, - "friends_count": 82, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Facebook.com/MuppetsKermit", - "url": "http://t.co/kjainYAA9x", - "expanded_url": "http://Facebook.com/MuppetsKermit", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 88363, - "location": "Hollywood, CA", - "screen_name": "KermitTheFrog", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 462, - "name": "Kermit the Frog", - "profile_use_background_image": true, - "description": "Hi-ho! Welcome to the official Twitter of me, Kermit the Frog!", - "url": "http://t.co/kjainYAA9x", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", - "profile_background_color": "B2DFDA", - "created_at": "Sat Mar 08 00:14:55 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", - "favourites_count": 11, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "FozzieBear", - "in_reply_to_user_id": 3220881440, - "in_reply_to_status_id_str": "685568168647987200", - "retweet_count": 15, - "truncated": false, - "retweeted": false, - "id_str": "685570846509797376", - "id": 685570846509797376, - "text": ".@FozzieBear Huh. I actually like both of those. Thanks, Fozzie!", - "in_reply_to_user_id_str": "3220881440", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "FozzieBear", - "id_str": "3220881440", - "id": 3220881440, - "indices": [ - 1, - 12 - ], - "name": "Fozzie Bear" - } - ] - }, - "created_at": "Fri Jan 08 21:16:41 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 75, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685568168647987200, - "lang": "en" - }, - "default_profile_image": false, - "id": 2377837022, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 487, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2377837022/1444773126", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "271395703", - "following": false, - "friends_count": 323, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/Ariadnagutierr\u2026", - "url": "https://t.co/T7mRnNYeAF", - "expanded_url": "https://www.facebook.com/Ariadnagutierrezofficial/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 142238, - "location": "", - "screen_name": "gutierrezary", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 93, - "name": "Ariadna Gutierrez", - "profile_use_background_image": true, - "description": "Miss Colombia \u2764\ufe0f Management: grecia@Latinwe.com", - "url": "https://t.co/T7mRnNYeAF", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Mar 24 12:31:11 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", - "favourites_count": 1154, - "status": { - "retweet_count": 56, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685502760045907969", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BASQbaqtvak/", - "url": "https://t.co/FmQHSWirEj", - "expanded_url": "https://www.instagram.com/p/BASQbaqtvak/", - "indices": [ - 54, - 77 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:46:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "es", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685502760045907969, - "text": "\u2708\ufe0f Mi primera vez en M\u00e9xico! First time in Mexico\u2764\ufe0f\ud83c\uddf2\ud83c\uddfd https://t.co/FmQHSWirEj", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 371, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 271395703, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", - "statuses_count": 2623, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/271395703/1452025456", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "36818161", - "following": false, - "friends_count": 1549, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "goldroom.la", - "url": "http://t.co/IQ8kdCE2P6", - "expanded_url": "http://goldroom.la", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397706531/try2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "CDDAFA", - "profile_link_color": "007BFF", - "geo_enabled": true, - "followers_count": 19676, - "location": "Los Angeles", - "screen_name": "goldroom", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 349, - "name": "Goldroom", - "profile_use_background_image": true, - "description": "Music producer, songwriter, rum drinker.", - "url": "http://t.co/IQ8kdCE2P6", - "profile_text_color": "1F1E1F", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu Apr 30 23:54:53 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "245BFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", - "favourites_count": 58633, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Dereck_Hart", - "in_reply_to_user_id": 633160189, - "in_reply_to_status_id_str": "685613431211294720", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685625368544292864", - "id": 685625368544292864, - "text": "@Dereck_Hart it'll be out this year for sure : )", - "in_reply_to_user_id_str": "633160189", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Dereck_Hart", - "id_str": "633160189", - "id": 633160189, - "indices": [ - 0, - 12 - ], - "name": "\u00d0.\u2661" - } - ] - }, - "created_at": "Sat Jan 09 00:53:20 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685613431211294720, - "lang": "en" - }, - "default_profile_image": false, - "id": 36818161, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397706531/try2.jpg", - "statuses_count": 18478, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/36818161/1449780672", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "45090120", - "following": false, - "friends_count": 385, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "smarturl.it/Summertime06", - "url": "https://t.co/vnFEaoggqW", - "expanded_url": "http://smarturl.it/Summertime06", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "603311", - "geo_enabled": true, - "followers_count": 228612, - "location": "Long Beach, CA", - "screen_name": "vincestaples", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 664, - "name": "Vince Staples", - "profile_use_background_image": false, - "description": "I get mad cause the world don't understand me. That's the price I had to pay for this rap game. - Lil B", - "url": "https://t.co/vnFEaoggqW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", - "profile_background_color": "101820", - "created_at": "Sat Jun 06 07:40:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", - "favourites_count": 2631, - "status": { - "retweet_count": 6, - "in_reply_to_user_id": 12133382, - "possibly_sensitive": false, - "id_str": "685604683025522688", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/flyyscience1/s\u2026", - "url": "https://t.co/SkHnDTVq4z", - "expanded_url": "https://twitter.com/flyyscience1/status/685597374476107777", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [ - { - "indices": [ - 43, - 56 - ], - "text": "blackscience" - } - ], - "user_mentions": [ - { - "screen_name": "PBS", - "id_str": "12133382", - "id": 12133382, - "indices": [ - 0, - 4 - ], - "name": "PBS" - } - ] - }, - "created_at": "Fri Jan 08 23:31:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "12133382", - "place": null, - "in_reply_to_screen_name": "PBS", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685604683025522688, - "text": "@PBS YOU NIGGAS ARE SLEEP WAKE THE FUCK UP #blackscience https://t.co/SkHnDTVq4z", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 45090120, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", - "statuses_count": 11639, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/45090120/1418950988", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4704812826", - "following": false, - "friends_count": 116, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": null, - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "2B7BB9", - "geo_enabled": false, - "followers_count": 12503, - "location": "Chile", - "screen_name": "Letelier1920", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 34, - "name": "Hern\u00e1n Letelier", - "profile_use_background_image": true, - "description": "Tengo 20 a\u00f1os, pero acabo de cumplir 95. Actor y director de teatro a mediados del XX. \u00bfSe acuerda de Pierre le peluquier de la P\u00e9rgola de las Flores? Era yo", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", - "profile_background_color": "F5F8FA", - "created_at": "Sun Jan 03 20:12:25 +0000 2016", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "es", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", - "favourites_count": 818, - "status": { - "retweet_count": 30, - "retweeted_status": { - "retweet_count": 30, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685567619492114432", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 568, - "h": 320, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 192, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 568, - "h": 320, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", - "type": "photo", - "indices": [ - 77, - 100 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", - "display_url": "pic.twitter.com/kmFlAaE0pf", - "id_str": "685567406035628032", - "expanded_url": "http://twitter.com/rocio_montes/status/685567619492114432/video/1", - "id": 685567406035628032, - "url": "https://t.co/kmFlAaE0pf" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 66, - 76 - ], - "text": "Pergolero" - } - ], - "user_mentions": [ - { - "screen_name": "Letelier1920", - "id_str": "4704812826", - "id": 4704812826, - "indices": [ - 16, - 29 - ], - "name": "Hern\u00e1n Letelier" - } - ] - }, - "created_at": "Fri Jan 08 21:03:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "es", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685567619492114432, - "text": "Mire don Hern\u00e1n @Letelier1920 Un regalo para su Club de amigos :) #Pergolero https://t.co/kmFlAaE0pf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 86, - "contributors": null, - "source": "Twitter for iPad" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685576347016687616", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 568, - "h": 320, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 192, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 568, - "h": 320, - "resize": "fit" - } - }, - "source_status_id_str": "685567619492114432", - "url": "https://t.co/kmFlAaE0pf", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", - "source_user_id_str": "123320320", - "id_str": "685567406035628032", - "id": 685567406035628032, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", - "type": "photo", - "indices": [ - 95, - 118 - ], - "source_status_id": 685567619492114432, - "source_user_id": 123320320, - "display_url": "pic.twitter.com/kmFlAaE0pf", - "expanded_url": "http://twitter.com/rocio_montes/status/685567619492114432/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 84, - 94 - ], - "text": "Pergolero" - } - ], - "user_mentions": [ - { - "screen_name": "rocio_montes", - "id_str": "123320320", - "id": 123320320, - "indices": [ - 3, - 16 - ], - "name": "Roc\u00edo Montes" - }, - { - "screen_name": "Letelier1920", - "id_str": "4704812826", - "id": 4704812826, - "indices": [ - 34, - 47 - ], - "name": "Hern\u00e1n Letelier" - } - ] - }, - "created_at": "Fri Jan 08 21:38:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "es", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685576347016687616, - "text": "RT @rocio_montes: Mire don Hern\u00e1n @Letelier1920 Un regalo para su Club de amigos :) #Pergolero https://t.co/kmFlAaE0pf", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 4704812826, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": null, - "statuses_count": 193, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4704812826/1452092286", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "27244131", - "following": false, - "friends_count": 878, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/gussa", - "url": "https://t.co/S3aUB7YG60", - "expanded_url": "https://www.linkedin.com/in/gussa", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 1369, - "location": "Melbourne, Australia", - "screen_name": "angushervey", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "Angus Hervey", - "profile_use_background_image": true, - "description": "political economist, science communicator, optimist with @future_crunch | community manager for @rhokaustralia | PhD from London School of Economics", - "url": "https://t.co/S3aUB7YG60", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", - "profile_background_color": "C6E2EE", - "created_at": "Sat Mar 28 15:13:06 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", - "favourites_count": 632, - "status": { - "retweet_count": 16, - "retweeted_status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685332821867675648", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "virology.ws/2016/01/07/vir\u2026", - "url": "https://t.co/U91Z4k6DMg", - "expanded_url": "http://www.virology.ws/2016/01/07/virologists-start-your-poliovirus-destruction/", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 05:30:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685332821867675648, - "text": "The bittersweet prospect of destroying your stocks of polio viruses. https://t.co/U91Z4k6DMg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685332888154292224", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "virology.ws/2016/01/07/vir\u2026", - "url": "https://t.co/U91Z4k6DMg", - "expanded_url": "http://www.virology.ws/2016/01/07/virologists-start-your-poliovirus-destruction/", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "carlzimmer", - "id_str": "14085070", - "id": 14085070, - "indices": [ - 3, - 14 - ], - "name": "carlzimmer" - } - ] - }, - "created_at": "Fri Jan 08 05:31:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685332888154292224, - "text": "RT @carlzimmer: The bittersweet prospect of destroying your stocks of polio viruses. https://t.co/U91Z4k6DMg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 27244131, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 1880, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/27244131/1451984968", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "140497508", - "following": false, - "friends_count": 96, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 26181, - "location": "Queens holla! IG/Snap:rosgo21", - "screen_name": "ROSGO21", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 514, - "name": "Rosalyn Gold-Onwude", - "profile_use_background_image": true, - "description": "GS Warriors sideline: CSN. NYLiberty: MSG. NCAA: PAC12. SF 49ers: CSN. Emmy Winner. Stanford Grad: BA, MA '10. 3 Final 4s. Pac12 DPOY '10.Nigerian Natl team '11", - "url": null, - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", - "profile_background_color": "642D8B", - "created_at": "Wed May 05 17:00:22 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", - "favourites_count": 2824, - "status": { - "retweet_count": 5, - "retweeted_status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613187220271104", - "geo": { - "coordinates": [ - 45.52, - -122.682 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BATCpNAwsrK/", - "url": "https://t.co/xpmjSEL2qM", - "expanded_url": "https://www.instagram.com/p/BATCpNAwsrK/", - "indices": [ - 46, - 69 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ROSGO21", - "id_str": "140497508", - "id": 140497508, - "indices": [ - 16, - 24 - ], - "name": "Rosalyn Gold-Onwude" - } - ] - }, - "created_at": "Sat Jan 09 00:04:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.7900653, - 45.421863 - ], - [ - -122.471751, - 45.421863 - ], - [ - -122.471751, - 45.6509405 - ], - [ - -122.7900653, - 45.6509405 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Portland, OR", - "id": "ac88a4f17a51c7fc", - "name": "Portland" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613187220271104, - "text": "Portlandia with @rosgo21 ! @ Portland, Oregon https://t.co/xpmjSEL2qM", - "coordinates": { - "coordinates": [ - -122.682, - 45.52 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 19, - "contributors": null, - "source": "Instagram" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685631921263542272", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BATCpNAwsrK/", - "url": "https://t.co/xpmjSEL2qM", - "expanded_url": "https://www.instagram.com/p/BATCpNAwsrK/", - "indices": [ - 67, - 90 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ramonashelburne", - "id_str": "17507250", - "id": 17507250, - "indices": [ - 3, - 19 - ], - "name": "Ramona Shelburne" - }, - { - "screen_name": "ROSGO21", - "id_str": "140497508", - "id": 140497508, - "indices": [ - 37, - 45 - ], - "name": "Rosalyn Gold-Onwude" - } - ] - }, - "created_at": "Sat Jan 09 01:19:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685631921263542272, - "text": "RT @ramonashelburne: Portlandia with @rosgo21 ! @ Portland, Oregon https://t.co/xpmjSEL2qM", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 140497508, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", - "statuses_count": 29539, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/140497508/1351351402", - "is_translator": false - }, - { - "time_zone": "Tehran", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 12600, - "id_str": "16779204", - "following": false, - "friends_count": 6302, - "entities": { - "description": { - "urls": [ - { - "display_url": "bit.ly/1CQYaYU", - "url": "https://t.co/mbs8lwspQK", - "expanded_url": "http://bit.ly/1CQYaYU", - "indices": [ - 120, - 143 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "hoder.com", - "url": "https://t.co/mnzE4YRMC6", - "expanded_url": "http://hoder.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 6819, - "location": "Tehran, Iran", - "screen_name": "h0d3r", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 152, - "name": "Hossein Derakhshan", - "profile_use_background_image": false, - "description": "Iranian-Canadian author, blogger, analyst. Spent 6 yrs in jail from 2008. Author of 'The Web We Have to Save' (Matter): https://t.co/mbs8lwspQK hoder@hoder.com", - "url": "https://t.co/mnzE4YRMC6", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Oct 15 11:00:35 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", - "favourites_count": 5019, - "status": { - "retweet_count": 13, - "retweeted_status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685434790682595328", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "d.gu.com/DCwPYK", - "url": "https://t.co/DWLgyisHPI", - "expanded_url": "http://d.gu.com/DCwPYK", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 12:16:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685434790682595328, - "text": "Iran's president in drive to speed up nuclear deal compliance in the hope of election boost https://t.co/DWLgyisHPI", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "dlvr.it" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685499124691660800", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "d.gu.com/DCwPYK", - "url": "https://t.co/DWLgyisHPI", - "expanded_url": "http://d.gu.com/DCwPYK", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "guardiannews", - "id_str": "788524", - "id": 788524, - "indices": [ - 3, - 16 - ], - "name": "Guardian news" - } - ] - }, - "created_at": "Fri Jan 08 16:31:41 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685499124691660800, - "text": "RT @guardiannews: Iran's president in drive to speed up nuclear deal compliance in the hope of election boost https://t.co/DWLgyisHPI", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 16779204, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 1239, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16779204/1416664427", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "29844055", - "following": false, - "friends_count": 8, - "entities": { - "description": { - "urls": [ - { - "display_url": "tinyurl.com/lp7ubo4", - "url": "http://t.co/L1iS5iJRHH", - "expanded_url": "http://tinyurl.com/lp7ubo4", - "indices": [ - 47, - 69 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "TxDxE.com", - "url": "http://t.co/RXjkFoFTKl", - "expanded_url": "http://www.TxDxE.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", - "notifications": false, - "profile_sidebar_fill_color": "050505", - "profile_link_color": "354E99", - "geo_enabled": false, - "followers_count": 643192, - "location": "CARSON, CA (W/S DA)", - "screen_name": "abdashsoul", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1776, - "name": "Ab-Soul", - "profile_use_background_image": true, - "description": "#blacklippastor | #THESEDAYS... available now: http://t.co/L1iS5iJRHH | Booking: mgmt@txdxe.com | Instagram: @souloho3", - "url": "http://t.co/RXjkFoFTKl", - "profile_text_color": "615B5C", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", - "profile_background_color": "080808", - "created_at": "Wed Apr 08 22:43:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "9AA5AB", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", - "favourites_count": 51, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 396, - "truncated": false, - "retweeted": false, - "id_str": "685636565163356161", - "id": 685636565163356161, - "text": "REAL FRIENDS", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:37:50 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 325, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 29844055, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", - "statuses_count": 20050, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29844055/1427233664", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1337271", - "following": false, - "friends_count": 2502, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mlkshk.com/p/YLTA", - "url": "http://t.co/wL4BXidKHJ", - "expanded_url": "http://mlkshk.com/p/YLTA", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "113838", - "geo_enabled": false, - "followers_count": 40294, - "location": "waking up ", - "screen_name": "darth", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 943, - "name": "darth\u2122", - "profile_use_background_image": false, - "description": "not the darth you are looking for", - "url": "http://t.co/wL4BXidKHJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", - "profile_background_color": "131516", - "created_at": "Sat Mar 17 05:38:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", - "favourites_count": 271683, - "status": { - "retweet_count": 10, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 10, - "truncated": false, - "retweeted": false, - "id_str": "685636293858951168", - "id": 685636293858951168, - "text": "Every pie chart is bullshit unless it's actually made of pie.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:36:45 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 22, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685636959826399232", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Eden_Eats", - "id_str": "97498167", - "id": 97498167, - "indices": [ - 3, - 13 - ], - "name": "Eden Dranger" - } - ] - }, - "created_at": "Sat Jan 09 01:39:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685636959826399232, - "text": "RT @Eden_Eats: Every pie chart is bullshit unless it's actually made of pie.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 1337271, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", - "statuses_count": 31694, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1337271/1398194350", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "16228398", - "following": false, - "friends_count": 987, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cyberdust.com/addme?blogmave\u2026", - "url": "http://t.co/q9qtJaGLrB", - "expanded_url": "http://cyberdust.com/addme?blogmaverick", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4309180, - "location": "", - "screen_name": "mcuban", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 26161, - "name": "Mark Cuban", - "profile_use_background_image": true, - "description": "Cyber Dust ID: blogmaverick", - "url": "http://t.co/q9qtJaGLrB", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Sep 10 21:12:01 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", - "favourites_count": 279, - "status": { - "retweet_count": 36, - "retweeted_status": { - "retweet_count": 36, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685114560408350720", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/FantasyLabsMar\u2026", - "url": "https://t.co/7Y5jQyhYht", - "expanded_url": "http://bit.ly/FantasyLabsMarkCuban", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Fantasy_Labs", - "id_str": "2977110796", - "id": 2977110796, - "indices": [ - 12, - 25 - ], - "name": "Fantasy Labs" - }, - { - "screen_name": "mcuban", - "id_str": "16228398", - "id": 16228398, - "indices": [ - 41, - 48 - ], - "name": "Mark Cuban" - } - ] - }, - "created_at": "Thu Jan 07 15:03:34 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685114560408350720, - "text": "Pumped that @Fantasy_Labs has brought on @mcuban as an investor and strategic partner: PRESS RELEASE: https://t.co/7Y5jQyhYht \u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 178, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685545989713702912", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/FantasyLabsMar\u2026", - "url": "https://t.co/7Y5jQyhYht", - "expanded_url": "http://bit.ly/FantasyLabsMarkCuban", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CSURAM88", - "id_str": "874969926", - "id": 874969926, - "indices": [ - 3, - 12 - ], - "name": "Peter Jennings" - }, - { - "screen_name": "Fantasy_Labs", - "id_str": "2977110796", - "id": 2977110796, - "indices": [ - 26, - 39 - ], - "name": "Fantasy Labs" - }, - { - "screen_name": "mcuban", - "id_str": "16228398", - "id": 16228398, - "indices": [ - 55, - 62 - ], - "name": "Mark Cuban" - } - ] - }, - "created_at": "Fri Jan 08 19:37:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685545989713702912, - "text": "RT @CSURAM88: Pumped that @Fantasy_Labs has brought on @mcuban as an investor and strategic partner: PRESS RELEASE: https://t.co/7Y5jQyhYht\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 16228398, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", - "statuses_count": 757, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16228398/1398982404", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "216582908", - "following": false, - "friends_count": 212, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1462, - "location": "San Fran", - "screen_name": "jmsSanFran", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 42, - "name": "Jeffrey Siminoff", - "profile_use_background_image": false, - "description": "Soon to be @twitter (not yet). Inclusion & Diversity. Foodie. Would-be concierge. Traveler. Equinox. Duke. Emory Law. Former NYC, former Apple.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Nov 17 04:26:58 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", - "favourites_count": 615, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685619578085326848", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "mobile.nytimes.com/2016/01/10/opi\u2026", - "url": "https://t.co/DNzL44RtNr", - "expanded_url": "http://mobile.nytimes.com/2016/01/10/opinion/sunday/you-dont-need-more-free-time.html?smid=tw-nytimes&smtyp=cur&_r=0&referer=", - "indices": [ - 84, - 107 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nytimes", - "id_str": "807095", - "id": 807095, - "indices": [ - 74, - 82 - ], - "name": "The New York Times" - } - ] - }, - "created_at": "Sat Jan 09 00:30:20 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685619578085326848, - "text": "\"Network goods\", work-life \"coordination\" | You Don\u2019t Need More Free Time @nytimes https://t.co/DNzL44RtNr", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 216582908, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 890, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/216582908/1439074474", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "98988930", - "following": false, - "friends_count": 10, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 82716, - "location": "The North Pole", - "screen_name": "santa", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 172, - "name": "Santa Claus", - "profile_use_background_image": true, - "description": "#crushingit", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/590905131/image_normal.jpg", - "profile_background_color": "DD2E44", - "created_at": "Thu Dec 24 00:15:25 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/590905131/image_normal.jpg", - "favourites_count": 427, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 12, - "possibly_sensitive": false, - "id_str": "684602958667853824", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/santa/status/6\u2026", - "url": "https://t.co/Z1WSKc2iOk", - "expanded_url": "https://twitter.com/santa/status/671194278056484864", - "indices": [ - 31, - 54 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jack", - "id_str": "12", - "id": 12, - "indices": [ - 0, - 5 - ], - "name": "Jack" - }, - { - "screen_name": "djtrackstar", - "id_str": "15930926", - "id": 15930926, - "indices": [ - 6, - 18 - ], - "name": "WRTJ" - }, - { - "screen_name": "KillerMike", - "id_str": "21265120", - "id": 21265120, - "indices": [ - 19, - 30 - ], - "name": "Killer Mike" - } - ] - }, - "created_at": "Wed Jan 06 05:10:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "12", - "place": null, - "in_reply_to_screen_name": "jack", - "in_reply_to_status_id_str": "684601927989002240", - "truncated": false, - "id": 684602958667853824, - "text": "@jack @djtrackstar @KillerMike https://t.co/Z1WSKc2iOk", - "coordinates": null, - "in_reply_to_status_id": 684601927989002240, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 98988930, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 1754, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/98988930/1419058838", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "27485958", - "following": false, - "friends_count": 130, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": false, - "followers_count": 174, - "location": "San Francisco Bay Area", - "screen_name": "luckysong", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Guanglei", - "profile_use_background_image": true, - "description": "Software Engineer at Twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", - "profile_background_color": "B2DFDA", - "created_at": "Sun Mar 29 19:30:27 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", - "favourites_count": 245, - "status": { - "retweet_count": 62, - "retweeted_status": { - "retweet_count": 62, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "662850749043445760", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "entm.ag/1FMWdc0", - "url": "https://t.co/zkbXWBuWb1", - "expanded_url": "http://entm.ag/1FMWdc0", - "indices": [ - 55, - 78 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Nov 07 04:35:08 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 662850749043445760, - "text": "How You Know You've Created the Company of Your Dreams https://t.co/zkbXWBuWb1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 68, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "662913254616788992", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "entm.ag/1FMWdc0", - "url": "https://t.co/zkbXWBuWb1", - "expanded_url": "http://entm.ag/1FMWdc0", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Entrepreneur", - "id_str": "19407053", - "id": 19407053, - "indices": [ - 3, - 16 - ], - "name": "Entrepreneur" - } - ] - }, - "created_at": "Sat Nov 07 08:43:30 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 662913254616788992, - "text": "RT @Entrepreneur: How You Know You've Created the Company of Your Dreams https://t.co/zkbXWBuWb1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 27485958, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 112, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "124003770", - "following": false, - "friends_count": 154, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cher.com", - "url": "http://t.co/E5aYMJHxx5", - "expanded_url": "http://cher.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "F92649", - "geo_enabled": true, - "followers_count": 2931956, - "location": "Malibu, California", - "screen_name": "cher", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 11220, - "name": "Cher", - "profile_use_background_image": true, - "description": "Stand & B Counted or Sit & B Nothing.\nDon't Litter,Chew Gum,Walk Past \nHomeless PPL w/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\nTHERE'S ONLY LOVE&FEAR", - "url": "http://t.co/E5aYMJHxx5", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 17 23:05:55 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", - "favourites_count": 1124, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "SparkleChaos", - "in_reply_to_user_id": 4328151253, - "in_reply_to_status_id_str": "685006366738546688", - "retweet_count": 55, - "truncated": false, - "retweeted": false, - "id_str": "685007962935398400", - "id": 685007962935398400, - "text": "@SparkleChaos IM NOT BACKTRACKING...HES SCUM\nWHO POISONS CHILDREN EVEN AFTER HES BEEN TOLD ABOUT THE DANGER,BUT GOD WILL\nB\"HIS\"JUDGE..NOT ME", - "in_reply_to_user_id_str": "4328151253", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SparkleChaos", - "id_str": "4328151253", - "id": 4328151253, - "indices": [ - 0, - 13 - ], - "name": "GlitterBombTheWorld" - } - ] - }, - "created_at": "Thu Jan 07 07:59:59 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 149, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685006366738546688, - "lang": "en" - }, - "default_profile_image": false, - "id": 124003770, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", - "statuses_count": 16283, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/124003770/1402616686", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "16606403", - "following": false, - "friends_count": 1987, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 15615, - "location": "iPhone: 42.189728,-87.802538", - "screen_name": "hseitler", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 149, - "name": "harriet seitler", - "profile_use_background_image": true, - "description": "harpo studios EVP; mom, sister, friend. Travelling new and uncharted path, holding on to love and strength.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Oct 05 22:14:12 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", - "favourites_count": 399, - "status": { - "retweet_count": 3, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 3, - "truncated": false, - "retweeted": false, - "id_str": "681200179219939328", - "id": 681200179219939328, - "text": "Oprah just turned a weight watchers commercial into an emotional experience... How you do dat", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Dec 27 19:49:13 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "681878497267183616", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "amandabell83", - "id_str": "555631741", - "id": 555631741, - "indices": [ - 3, - 16 - ], - "name": "Amanda Bell" - } - ] - }, - "created_at": "Tue Dec 29 16:44:37 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681878497267183616, - "text": "RT @amandabell83: Oprah just turned a weight watchers commercial into an emotional experience... How you do dat", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16606403, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4561, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5510452", - "following": false, - "friends_count": 355, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "medium.com/@ameet", - "url": "http://t.co/hOMy2GqrvD", - "expanded_url": "http://medium.com/@ameet", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 4194, - "location": "San Francisco, CA", - "screen_name": "ameet", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 93, - "name": "Ameet Ranadive", - "profile_use_background_image": true, - "description": "VP Revenue Product @Twitter. Formerly Dasient ($TWTR), McKinsey. Love building products, startups, reading, writing, cooking, being a dad.", - "url": "http://t.co/hOMy2GqrvD", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Apr 25 22:41:59 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", - "favourites_count": 4657, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685565392618520576", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1AuuHQN", - "url": "https://t.co/F1QNUXMRdT", - "expanded_url": "http://bit.ly/1AuuHQN", - "indices": [ - 27, - 50 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ameet", - "id_str": "5510452", - "id": 5510452, - "indices": [ - 55, - 61 - ], - "name": "Ameet Ranadive" - } - ] - }, - "created_at": "Fri Jan 08 20:55:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685565392618520576, - "text": "Why the idea is important: https://t.co/F1QNUXMRdT via @ameet", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Sprout Social" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685568029715922944", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1AuuHQN", - "url": "https://t.co/F1QNUXMRdT", - "expanded_url": "http://bit.ly/1AuuHQN", - "indices": [ - 43, - 66 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AaronDinin", - "id_str": "260272608", - "id": 260272608, - "indices": [ - 3, - 14 - ], - "name": "Aaron Dinin" - }, - { - "screen_name": "ameet", - "id_str": "5510452", - "id": 5510452, - "indices": [ - 71, - 77 - ], - "name": "Ameet Ranadive" - } - ] - }, - "created_at": "Fri Jan 08 21:05:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685568029715922944, - "text": "RT @AaronDinin: Why the idea is important: https://t.co/F1QNUXMRdT via @ameet", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 5510452, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4637, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5510452/1422199159", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "29442313", - "following": false, - "friends_count": 1910, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sanders.senate.gov", - "url": "http://t.co/8AS4FI1oge", - "expanded_url": "http://www.sanders.senate.gov/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "D6CCB6", - "profile_link_color": "44506A", - "geo_enabled": true, - "followers_count": 1167649, - "location": "Vermont/DC", - "screen_name": "SenSanders", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 11866, - "name": "Bernie Sanders", - "profile_use_background_image": true, - "description": "Sen. Bernie Sanders is the longest serving independent in congressional history. Tweets ending in -B are from Bernie, and all others are from a staffer.", - "url": "http://t.co/8AS4FI1oge", - "profile_text_color": "304562", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", - "profile_background_color": "000000", - "created_at": "Tue Apr 07 13:02:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", - "favourites_count": 13, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 402, - "truncated": false, - "retweeted": false, - "id_str": "685626060315181057", - "id": 685626060315181057, - "text": "In America today, we not only have massive wealth and income inequality, but a power structure which protects that inequality.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:56:05 +0000 2016", - "source": "Buffer", - "favorite_count": 814, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 29442313, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", - "statuses_count": 13417, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29442313/1430854323", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "216776631", - "following": false, - "friends_count": 1407, - "entities": { - "description": { - "urls": [ - { - "display_url": "berniesanders.com", - "url": "http://t.co/nuBuflYjUL", - "expanded_url": "http://berniesanders.com", - "indices": [ - 92, - 114 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "berniesanders.com", - "url": "https://t.co/W6f7Iy1Nho", - "expanded_url": "https://berniesanders.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1112618, - "location": "Vermont", - "screen_name": "BernieSanders", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 5194, - "name": "Bernie Sanders", - "profile_use_background_image": false, - "description": "I believe America is ready for a new path to the future. Join our campaign for president at http://t.co/nuBuflYjUL.", - "url": "https://t.co/W6f7Iy1Nho", - "profile_text_color": "050005", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", - "profile_background_color": "EA5047", - "created_at": "Wed Nov 17 17:53:52 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", - "favourites_count": 658, - "status": { - "retweet_count": 143, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685634668763426816", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/aseitzwald/sta\u2026", - "url": "https://t.co/GhTCUitzl0", - "expanded_url": "https://twitter.com/aseitzwald/status/685633668665208832", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:30:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685634668763426816, - "text": "What we\u2019re doing on on this campaign is treating the American people like they're intelligent human beings. https://t.co/GhTCUitzl0", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 311, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 216776631, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", - "statuses_count": 5511, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/216776631/1451363799", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17159397", - "following": false, - "friends_count": 2290, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wnba.com", - "url": "http://t.co/VSPC6ki5Sa", - "expanded_url": "http://www.wnba.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "FF0000", - "geo_enabled": false, - "followers_count": 501510, - "location": "", - "screen_name": "WNBA", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2070, - "name": "WNBA", - "profile_use_background_image": true, - "description": "News & notes directly from the WNBA.", - "url": "http://t.co/VSPC6ki5Sa", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Tue Nov 04 16:04:48 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", - "favourites_count": 300, - "status": { - "retweet_count": 9, - "retweeted_status": { - "retweet_count": 9, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685133293335887872", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1000, - "h": 500, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", - "display_url": "pic.twitter.com/xXhBSkpe0p", - "id_str": "685133292618686464", - "expanded_url": "http://twitter.com/IndianaFever/status/685133293335887872/photo/1", - "id": 685133292618686464, - "url": "https://t.co/xXhBSkpe0p" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "on.nba.com/1JMfDQb", - "url": "https://t.co/uFsH57wP1E", - "expanded_url": "http://on.nba.com/1JMfDQb", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [ - { - "indices": [ - 52, - 63 - ], - "text": "WNBAFinals" - } - ], - "user_mentions": [ - { - "screen_name": "Catchin24", - "id_str": "370435297", - "id": 370435297, - "indices": [ - 5, - 15 - ], - "name": "Tamika Catchings" - } - ] - }, - "created_at": "Thu Jan 07 16:18:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/1010ecfa7d3a40f8.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -88.097892, - 37.771743 - ], - [ - -84.78458, - 37.771743 - ], - [ - -84.78458, - 41.761368 - ], - [ - -88.097892, - 41.761368 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Indiana, USA", - "id": "1010ecfa7d3a40f8", - "name": "Indiana" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685133293335887872, - "text": "From @Catchin24's big announcement to Game 5 of the #WNBAFinals, review the Top 24 in 2015: https://t.co/uFsH57wP1E https://t.co/xXhBSkpe0p", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 25, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685136785144438784", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1000, - "h": 500, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - } - }, - "source_status_id_str": "685133293335887872", - "url": "https://t.co/xXhBSkpe0p", - "media_url": "http://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", - "source_user_id_str": "28672101", - "id_str": "685133292618686464", - "id": 685133292618686464, - "media_url_https": "https://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685133293335887872, - "source_user_id": 28672101, - "display_url": "pic.twitter.com/xXhBSkpe0p", - "expanded_url": "http://twitter.com/IndianaFever/status/685133293335887872/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "on.nba.com/1JMfDQb", - "url": "https://t.co/uFsH57wP1E", - "expanded_url": "http://on.nba.com/1JMfDQb", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [ - { - "indices": [ - 70, - 81 - ], - "text": "WNBAFinals" - } - ], - "user_mentions": [ - { - "screen_name": "IndianaFever", - "id_str": "28672101", - "id": 28672101, - "indices": [ - 3, - 16 - ], - "name": "Indiana Fever" - }, - { - "screen_name": "Catchin24", - "id_str": "370435297", - "id": 370435297, - "indices": [ - 23, - 33 - ], - "name": "Tamika Catchings" - } - ] - }, - "created_at": "Thu Jan 07 16:31:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685136785144438784, - "text": "RT @IndianaFever: From @Catchin24's big announcement to Game 5 of the #WNBAFinals, review the Top 24 in 2015: https://t.co/uFsH57wP1E https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 17159397, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", - "statuses_count": 30615, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17159397/1444881224", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "18129606", - "following": false, - "friends_count": 790, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com/saintboz", - "url": "http://t.co/m8390gFxR6", - "expanded_url": "http://twitter.com/saintboz", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 3623, - "location": "\u00dcT: 40.810606,-73.986908", - "screen_name": "SaintBoz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 57, - "name": "Boz Saint John", - "profile_use_background_image": true, - "description": "Self proclaimed badass and badmamajama. Generally bad. And good at it. Head diva of global consumer marketing @applemusic & @itunes", - "url": "http://t.co/m8390gFxR6", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Mon Dec 15 03:37:52 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", - "favourites_count": 1170, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685522947210018816", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 640, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYN3fGvUsAA-zvd.jpg", - "type": "photo", - "indices": [ - 113, - 136 - ], - "media_url": "http://pbs.twimg.com/media/CYN3fGvUsAA-zvd.jpg", - "display_url": "pic.twitter.com/BwlpxOlcAZ", - "id_str": "685522944559198208", - "expanded_url": "http://twitter.com/SaintBoz/status/685522947210018816/photo/1", - "id": 685522944559198208, - "url": "https://t.co/BwlpxOlcAZ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 86, - 99 - ], - "text": "mommyandmini" - }, - { - "indices": [ - 100, - 112 - ], - "text": "watchmework" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:06:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685522947210018816, - "text": "Lil 6 year old (going on 25 year old) Lael's text messages are giving me LIFE...\ud83d\ude02\ud83d\ude4c\ud83c\udfff\ud83d\udc67\ud83c\udffd\ud83d\udcf1#mommyandmini #watchmework https://t.co/BwlpxOlcAZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 18129606, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", - "statuses_count": 2923, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18129606/1353602146", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "122860384", - "following": false, - "friends_count": 110, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1240, - "location": "", - "screen_name": "FeliciaHorowitz", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 69, - "name": "Felicia Horowitz", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Mar 14 04:44:33 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", - "favourites_count": 945, - "status": { - "retweet_count": 48, - "retweeted_status": { - "retweet_count": 48, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685096712789082112", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 480, - "h": 360, - "resize": "fit" - }, - "medium": { - "w": 480, - "h": 360, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", - "display_url": "pic.twitter.com/hwCQs13inD", - "id_str": "685096711925043200", - "expanded_url": "http://twitter.com/pmarca/status/685096712789082112/photo/1", - "id": 685096711925043200, - "url": "https://t.co/hwCQs13inD" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "economist.com/news/united-st\u2026", - "url": "https://t.co/8Y6PFzOdMV", - "expanded_url": "http://www.economist.com/news/united-states/21684687-high-school-students-want-citizens-rate-their-interactions-officers-how-three", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 13:52:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685096712789082112, - "text": "Congratulations Ima, Asha & Caleb on Five-O winning international justice prize!! https://t.co/8Y6PFzOdMV https://t.co/hwCQs13inD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 63, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685561599910805505", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 480, - "h": 360, - "resize": "fit" - }, - "medium": { - "w": 480, - "h": 360, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "685096712789082112", - "url": "https://t.co/hwCQs13inD", - "media_url": "http://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", - "source_user_id_str": "5943622", - "id_str": "685096711925043200", - "id": 685096711925043200, - "media_url_https": "https://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", - "type": "photo", - "indices": [ - 122, - 144 - ], - "source_status_id": 685096712789082112, - "source_user_id": 5943622, - "display_url": "pic.twitter.com/hwCQs13inD", - "expanded_url": "http://twitter.com/pmarca/status/685096712789082112/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "economist.com/news/united-st\u2026", - "url": "https://t.co/8Y6PFzOdMV", - "expanded_url": "http://www.economist.com/news/united-states/21684687-high-school-students-want-citizens-rate-their-interactions-officers-how-three", - "indices": [ - 98, - 121 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "pmarca", - "id_str": "5943622", - "id": 5943622, - "indices": [ - 3, - 10 - ], - "name": "Marc Andreessen" - } - ] - }, - "created_at": "Fri Jan 08 20:39:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685561599910805505, - "text": "RT @pmarca: Congratulations Ima, Asha & Caleb on Five-O winning international justice prize!! https://t.co/8Y6PFzOdMV https://t.co/hwCQs13i\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 122860384, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 417, - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "205926603", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "twitter.com", - "url": "http://t.co/DeO4c250gs", - "expanded_url": "http://twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F2E7C4", - "profile_link_color": "89C9FA", - "geo_enabled": false, - "followers_count": 59798, - "location": "TwitterHQ", - "screen_name": "hackweek", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 97, - "name": "HackWeek", - "profile_use_background_image": true, - "description": "Let's hack together.", - "url": "http://t.co/DeO4c250gs", - "profile_text_color": "9C6D74", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", - "profile_background_color": "452D30", - "created_at": "Thu Oct 21 22:27:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D9C486", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", - "favourites_count": 1, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 34, - "truncated": false, - "retweeted": false, - "id_str": "28459868715", - "id": 28459868715, - "text": "\u201cWhen you share a common civic culture with thousands of other people, good ideas have a tendency to flow from mind to mind \u2026\u201d ~ S. Johnson", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Oct 23 01:46:50 +0000 2010", - "source": "Twitter Web Client", - "favorite_count": 31, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 205926603, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", - "statuses_count": 1, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/205926603/1420662867", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2835886194", - "following": false, - "friends_count": 178, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "colbertlateshow.com", - "url": "https://t.co/YTzFH21e5t", - "expanded_url": "http://colbertlateshow.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 138200, - "location": "", - "screen_name": "colbertlateshow", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 999, - "name": "The Late Show on CBS", - "profile_use_background_image": true, - "description": "Official Twitter feed of The Late Show with Stephen Colbert. Unofficial Twitter feed of the U.S. Department of Agriculture.", - "url": "https://t.co/YTzFH21e5t", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 30 17:13:22 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", - "favourites_count": 209, - "status": { - "retweet_count": 65, - "retweeted_status": { - "retweet_count": 65, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685504391474974721", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 900, - "h": 900, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", - "type": "photo", - "indices": [ - 45, - 68 - ], - "media_url": "http://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", - "display_url": "pic.twitter.com/QTH7OuQZ4U", - "id_str": "685504262311428097", - "expanded_url": "http://twitter.com/KaceyMusgraves/status/685504391474974721/photo/1", - "id": 685504262311428097, - "url": "https://t.co/QTH7OuQZ4U" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "colbertlateshow", - "id_str": "2835886194", - "id": 2835886194, - "indices": [ - 28, - 44 - ], - "name": "The Late Show on CBS" - } - ] - }, - "created_at": "Fri Jan 08 16:52:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685504391474974721, - "text": "Don't be Late to the Party..@colbertlateshow https://t.co/QTH7OuQZ4U", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 387, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685595501681610752", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 900, - "h": 900, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "source_status_id_str": "685504391474974721", - "url": "https://t.co/QTH7OuQZ4U", - "media_url": "http://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", - "source_user_id_str": "30925378", - "id_str": "685504262311428097", - "id": 685504262311428097, - "media_url_https": "https://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", - "type": "photo", - "indices": [ - 65, - 88 - ], - "source_status_id": 685504391474974721, - "source_user_id": 30925378, - "display_url": "pic.twitter.com/QTH7OuQZ4U", - "expanded_url": "http://twitter.com/KaceyMusgraves/status/685504391474974721/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "KaceyMusgraves", - "id_str": "30925378", - "id": 30925378, - "indices": [ - 3, - 18 - ], - "name": "KACEY MUSGRAVES" - }, - { - "screen_name": "colbertlateshow", - "id_str": "2835886194", - "id": 2835886194, - "indices": [ - 48, - 64 - ], - "name": "The Late Show on CBS" - } - ] - }, - "created_at": "Fri Jan 08 22:54:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685595501681610752, - "text": "RT @KaceyMusgraves: Don't be Late to the Party..@colbertlateshow https://t.co/QTH7OuQZ4U", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 2835886194, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 775, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2835886194/1444429479", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3165817215", - "following": false, - "friends_count": 179, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 396664, - "location": "", - "screen_name": "JohnBoyega", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 848, - "name": "John Boyega", - "profile_use_background_image": true, - "description": "Dream and work towards the reality", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 14 09:19:31 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", - "favourites_count": 200, - "status": { - "retweet_count": 58, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685469331216580608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/emmakeele1/sta\u2026", - "url": "https://t.co/0HJrxTtp3P", - "expanded_url": "https://twitter.com/emmakeele1/status/685464003284480000", - "indices": [ - 23, - 46 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:33:18 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685469331216580608, - "text": "Erm that too miss \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/0HJrxTtp3P", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 505, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3165817215, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 365, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3165817215/1451410540", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "252531143", - "following": false, - "friends_count": 3141, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "princeton.edu/~slaughtr/", - "url": "http://t.co/jJRR31QiUl", - "expanded_url": "http://www.princeton.edu/~slaughtr/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "2EBCB3", - "geo_enabled": true, - "followers_count": 129943, - "location": "Princeton, DC, New York", - "screen_name": "SlaughterAM", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3983, - "name": "Anne-Marie Slaughter", - "profile_use_background_image": true, - "description": "President & CEO, @newamerica. Former Princeton Prof & Director of Policy Planning, U.S. State Dept. Mother. Mentor. Foodie. Author. Foreign policy curator.", - "url": "http://t.co/jJRR31QiUl", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", - "profile_background_color": "968270", - "created_at": "Tue Feb 15 11:33:50 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", - "favourites_count": 2854, - "status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685094135720767488", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "linkedin.com/pulse/real-val\u2026", - "url": "https://t.co/PJ4yFyE4St", - "expanded_url": "https://www.linkedin.com/pulse/real-value-college-education-michael-crow", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "michaelcrow", - "id_str": "20172250", - "id": 20172250, - "indices": [ - 57, - 69 - ], - "name": "Michael Crow" - }, - { - "screen_name": "LinkedIn", - "id_str": "13058772", - "id": 13058772, - "indices": [ - 73, - 82 - ], - "name": "LinkedIn" - } - ] - }, - "created_at": "Thu Jan 07 13:42:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685094135720767488, - "text": "worth readng! \"The Real Value of a College Education\" by @michaelcrow on @LinkedIn https://t.co/PJ4yFyE4St", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 18, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 252531143, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 25191, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/252531143/1424986634", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "299674713", - "following": false, - "friends_count": 597, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "juliefoudyleadership.com", - "url": "http://t.co/TlwVOqMe3Z", - "expanded_url": "http://www.juliefoudyleadership.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "C73460", - "geo_enabled": true, - "followers_count": 196502, - "location": "I wish I knew...", - "screen_name": "JulieFoudy", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1469, - "name": "Julie Foudy", - "profile_use_background_image": true, - "description": "Former watergirl #USWNT, current ESPN'er, mom, founder JF Sports Leadership Academy. Luvr of donuts larger than my heeed & soulful peops who empower others.", - "url": "http://t.co/TlwVOqMe3Z", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", - "profile_background_color": "B2DFDA", - "created_at": "Mon May 16 14:14:49 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685535018051973120", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/EmWatson/statu\u2026", - "url": "https://t.co/Sc6bJFyS7p", - "expanded_url": "https://twitter.com/EmWatson/status/685246433491025922", - "indices": [ - 112, - 135 - ] - } - ], - "hashtags": [ - { - "indices": [ - 99, - 111 - ], - "text": "soulidarity" - } - ], - "user_mentions": [ - { - "screen_name": "EmWatson", - "id_str": "166739404", - "id": 166739404, - "indices": [ - 25, - 34 - ], - "name": "Emma Watson" - }, - { - "screen_name": "AbbyWambach", - "id_str": "336124836", - "id": 336124836, - "indices": [ - 46, - 58 - ], - "name": "Abby Wambach" - } - ] - }, - "created_at": "Fri Jan 08 18:54:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685535018051973120, - "text": "What a damn cool idea by @EmWatson . Just saw @AbbyWambach went to buy it. Ordered a copy as well. #soulidarity https://t.co/Sc6bJFyS7p", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 113, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 299674713, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 6724, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/299674713/1402758316", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2651565121", - "following": false, - "friends_count": 10, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sinatra.com", - "url": "https://t.co/Xt6lI7LMFC", - "expanded_url": "http://sinatra.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0890C2", - "geo_enabled": false, - "followers_count": 22088, - "location": "", - "screen_name": "franksinatra", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 146, - "name": "Frank Sinatra", - "profile_use_background_image": false, - "description": "The Chairman of the Board - the official Twitter profile for Frank Sinatra Enterprises", - "url": "https://t.co/Xt6lI7LMFC", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed Jul 16 16:58:44 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", - "favourites_count": 83, - "status": { - "retweet_count": 156, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682234200422891520", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 900, - "h": 802, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 534, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 302, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWySaR4U4AElR5W.jpg", - "type": "photo", - "indices": [ - 102, - 125 - ], - "media_url": "http://pbs.twimg.com/media/CWySaR4U4AElR5W.jpg", - "display_url": "pic.twitter.com/RZEpjWYaqQ", - "id_str": "679078624000008193", - "expanded_url": "http://twitter.com/franksinatra/status/682234200422891520/photo/1", - "id": 679078624000008193, - "url": "https://t.co/RZEpjWYaqQ" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "smarturl.it/SinatraMyWay", - "url": "https://t.co/F6xMhfVhTy", - "expanded_url": "http://smarturl.it/SinatraMyWay", - "indices": [ - 78, - 101 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 16:18:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682234200422891520, - "text": "On this day in 1968, Frank Sinatra recorded \u201cMy Way\u201d \u2013 revisit the album now: https://t.co/F6xMhfVhTy https://t.co/RZEpjWYaqQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 269, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 2651565121, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 352, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2651565121/1406242389", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "21561935", - "following": false, - "friends_count": 901, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kissthedeejay.com", - "url": "http://t.co/6moXT5RhPn", - "expanded_url": "http://www.kissthedeejay.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", - "notifications": false, - "profile_sidebar_fill_color": "0A0A0B", - "profile_link_color": "929287", - "geo_enabled": false, - "followers_count": 10812, - "location": "NYC", - "screen_name": "KISSTHEDEEJAY", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 271, - "name": "DJ KISS", - "profile_use_background_image": true, - "description": "Deejay / Personality / Blogger / Fashion & Beauty Enthusiast / 1/2 of #TheSemples", - "url": "http://t.co/6moXT5RhPn", - "profile_text_color": "E11930", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", - "profile_background_color": "F5F2F7", - "created_at": "Sun Feb 22 12:22:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "65B0DA", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", - "favourites_count": 17, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685188364933443584", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BAQBdG-h-7V/", - "url": "https://t.co/vf92ka1zz7", - "expanded_url": "https://www.instagram.com/p/BAQBdG-h-7V/", - "indices": [ - 95, - 118 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DJMOS", - "id_str": "18716699", - "id": 18716699, - "indices": [ - 14, - 20 - ], - "name": "DJMOS" - } - ] - }, - "created_at": "Thu Jan 07 19:56:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685188364933443584, - "text": "Follow me and @djmos from Atlantic City to St. Barths in the first episode of our new youtube\u2026 https://t.co/vf92ka1zz7", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 21561935, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", - "statuses_count": 7709, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21561935/1422280291", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "43987763", - "following": false, - "friends_count": 1165, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 817, - "location": "San Francisco, CA", - "screen_name": "nataliemiyake", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 36, - "name": "Natalie Miyake", - "profile_use_background_image": true, - "description": "Corporate communications @twitter. Raised in Japan, ex-New Yorker, now in SF. Wine lover, hiking addict, brunch connoisseur.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Mon Jun 01 22:19:32 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", - "favourites_count": 1571, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "HenningD", - "in_reply_to_user_id": 20758680, - "in_reply_to_status_id_str": "685500089310277632", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685506940563107840", - "id": 685506940563107840, - "text": "@HenningD @TwitterDE it's been great working with you. Best of luck!", - "in_reply_to_user_id_str": "20758680", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "HenningD", - "id_str": "20758680", - "id": 20758680, - "indices": [ - 0, - 9 - ], - "name": "Henning Dorstewitz" - }, - { - "screen_name": "TwitterDE", - "id_str": "95255169", - "id": 95255169, - "indices": [ - 10, - 20 - ], - "name": "Twitter Deutschland" - } - ] - }, - "created_at": "Fri Jan 08 17:02:45 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685500089310277632, - "lang": "en" - }, - "default_profile_image": false, - "id": 43987763, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 3686, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43987763/1397010068", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "412715336", - "following": false, - "friends_count": 159, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 1108, - "location": "San Francisco, CA", - "screen_name": "Celebrate", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 14, - "name": "#Celebrate", - "profile_use_background_image": true, - "description": "#celebrate", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", - "profile_background_color": "707375", - "created_at": "Tue Nov 15 02:02:23 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", - "favourites_count": 7, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", - "default_profile_image": false, - "id": 412715336, - "blocked_by": false, - "profile_background_tile": true, - "statuses_count": 88, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/412715336/1449089216", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "158595960", - "following": false, - "friends_count": 228, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 364, - "location": "San Francisco", - "screen_name": "drao", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 11, - "name": "Deepak Rao", - "profile_use_background_image": true, - "description": "Product Manager @Twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 23 03:19:05 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", - "favourites_count": 646, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": "venukasturi", - "in_reply_to_user_id": 22807096, - "in_reply_to_status_id_str": "685246566118993920", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685313574592315393", - "id": 685313574592315393, - "text": "@venukasturi next year", - "in_reply_to_user_id_str": "22807096", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "venukasturi", - "id_str": "22807096", - "id": 22807096, - "indices": [ - 0, - 12 - ], - "name": "Venu Gopal Kasturi" - } - ] - }, - "created_at": "Fri Jan 08 04:14:23 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685246566118993920, - "lang": "en" - }, - "default_profile_image": false, - "id": 158595960, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 268, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/158595960/1405201901", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16669075", - "following": false, - "friends_count": 616, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "fema.gov", - "url": "http://t.co/yHUd9eUBs0", - "expanded_url": "http://www.fema.gov/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DCDCE0", - "profile_link_color": "2A91B0", - "geo_enabled": true, - "followers_count": 440462, - "location": "United States", - "screen_name": "fema", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8833, - "name": "FEMA", - "profile_use_background_image": true, - "description": "Our story of supporting citizens & first responders before, during, and after emergencies. For emergencies, call your local fire/EMS/police or 9-1-1.", - "url": "http://t.co/yHUd9eUBs0", - "profile_text_color": "65686E", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", - "profile_background_color": "CCCCCC", - "created_at": "Thu Oct 09 16:54:20 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", - "favourites_count": 517, - "status": { - "retweet_count": 44, - "retweeted_status": { - "retweet_count": 44, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685577475888291841", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1000, - "h": 1000, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", - "type": "photo", - "indices": [ - 109, - 132 - ], - "media_url": "http://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", - "display_url": "pic.twitter.com/zcrtOzbmhj", - "id_str": "685577474919419904", - "expanded_url": "http://twitter.com/CAL_FIRE/status/685577475888291841/photo/1", - "id": 685577474919419904, - "url": "https://t.co/zcrtOzbmhj" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "ready.gov/floods", - "url": "https://t.co/jhcnztJMvD", - "expanded_url": "http://www.ready.gov/floods", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 15 - ], - "text": "FireFactFriday" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:43:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685577475888291841, - "text": "#FireFactFriday Do you have a plan in the event of a flood in your area? Learn more: https://t.co/jhcnztJMvD https://t.co/zcrtOzbmhj", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 14, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685594168148779008", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1000, - "h": 1000, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "source_status_id_str": "685577475888291841", - "url": "https://t.co/zcrtOzbmhj", - "media_url": "http://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", - "source_user_id_str": "21249970", - "id_str": "685577474919419904", - "id": 685577474919419904, - "media_url_https": "https://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", - "type": "photo", - "indices": [ - 123, - 140 - ], - "source_status_id": 685577475888291841, - "source_user_id": 21249970, - "display_url": "pic.twitter.com/zcrtOzbmhj", - "expanded_url": "http://twitter.com/CAL_FIRE/status/685577475888291841/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "ready.gov/floods", - "url": "https://t.co/jhcnztJMvD", - "expanded_url": "http://www.ready.gov/floods", - "indices": [ - 99, - 122 - ] - } - ], - "hashtags": [ - { - "indices": [ - 14, - 29 - ], - "text": "FireFactFriday" - } - ], - "user_mentions": [ - { - "screen_name": "CAL_FIRE", - "id_str": "21249970", - "id": 21249970, - "indices": [ - 3, - 12 - ], - "name": "CAL FIRE" - } - ] - }, - "created_at": "Fri Jan 08 22:49:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685594168148779008, - "text": "RT @CAL_FIRE: #FireFactFriday Do you have a plan in the event of a flood in your area? Learn more: https://t.co/jhcnztJMvD https://t.co/zcr\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16669075, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", - "statuses_count": 10489, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16669075/1444411889", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1072103227", - "following": false, - "friends_count": 1004, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 831, - "location": "SF", - "screen_name": "heySierra", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 13, - "name": "Sierra Lord", - "profile_use_background_image": true, - "description": "#gsd @twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 08 21:50:58 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", - "favourites_count": 3027, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685334213197983745", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 658, - "h": 1024, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 529, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 933, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYLL1GvWQAAgdJr.jpg", - "type": "photo", - "indices": [ - 63, - 86 - ], - "media_url": "http://pbs.twimg.com/media/CYLL1GvWQAAgdJr.jpg", - "display_url": "pic.twitter.com/ARS15LRjKI", - "id_str": "685334206516445184", - "expanded_url": "http://twitter.com/heySierra/status/685334213197983745/photo/1", - "id": 685334206516445184, - "url": "https://t.co/ARS15LRjKI" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 34, - 42 - ], - "text": "CES2016" - }, - { - "indices": [ - 43, - 62 - ], - "text": "AdamSilverissonice" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 05:36:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -115.2092535, - 35.984784 - ], - [ - -115.0610763, - 35.984784 - ], - [ - -115.0610763, - 36.137145 - ], - [ - -115.2092535, - 36.137145 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Paradise, NV", - "id": "8fa6d7a33b83ef26", - "name": "Paradise" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685334213197983745, - "text": "Highlight of my day. No big deal. #CES2016 #AdamSilverissonice https://t.co/ARS15LRjKI", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1072103227, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 548, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1072103227/1357682472", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16002085", - "following": false, - "friends_count": 2895, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thinkprogress.org", - "url": "http://t.co/YV2uNXXlyL", - "expanded_url": "http://www.thinkprogress.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 74889, - "location": "Washington, DC", - "screen_name": "igorvolsky", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1265, - "name": "igorvolsky", - "profile_use_background_image": true, - "description": "Director of Video and Contributing Editor at @ThinkProgress. Contributing host @bpshow. Opinions, my own. E-mail: ivolsky@americanprogress.org", - "url": "http://t.co/YV2uNXXlyL", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", - "profile_background_color": "C6E2EE", - "created_at": "Tue Aug 26 20:17:23 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", - "favourites_count": 649, - "status": { - "retweet_count": 56, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685604356570411009", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/Reuters/status\u2026", - "url": "https://t.co/NQNchxzojN", - "expanded_url": "https://twitter.com/Reuters/status/685598272908582914", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:29:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685604356570411009, - "text": "In order to hit back against Obama's plan to allow 10,000 Syrian refugees into the country over the next year https://t.co/NQNchxzojN", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 65, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 16002085, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", - "statuses_count": 29775, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "84981428", - "following": false, - "friends_count": 258, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "braintreepayments.com", - "url": "https://t.co/Vc3MPaIBSU", - "expanded_url": "http://www.braintreepayments.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4601, - "location": "San Francisco, Chicago", - "screen_name": "williamready", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 171, - "name": "William Ready", - "profile_use_background_image": true, - "description": "SVP, Global Head of Product & Engineering at PayPal. CEO of @Braintree/@Venmo. Creating the easiest way to pay or get paid - online, mobile, in-store.", - "url": "https://t.co/Vc3MPaIBSU", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Oct 25 01:31:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", - "favourites_count": 1585, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "680164364804960256", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nyti.ms/1QX83Ix", - "url": "https://t.co/ZQLkL6vQil", - "expanded_url": "http://nyti.ms/1QX83Ix", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 24 23:13:16 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 680164364804960256, - "text": "Why it's important to understand diff between preferred stock (what investors get) & common (what employees get) https://t.co/ZQLkL6vQil", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 9, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 84981428, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2224, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/84981428/1410287238", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "48477007", - "following": false, - "friends_count": 368, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 50981, - "location": "", - "screen_name": "BRush_25", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 943, - "name": "Brandon Rush", - "profile_use_background_image": true, - "description": "Instagram- brush_4\nsnapchat- showmeb", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 18 20:24:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", - "favourites_count": 7, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 4, - "truncated": false, - "retweeted": false, - "id_str": "685547921077485569", - "id": 685547921077485569, - "text": "Still listening to these Tory Lanez tapes \ud83d\udd25\ud83d\udd25\ud83d\udd25", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:45:35 +0000 2016", - "source": "Echofon", - "favorite_count": 30, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 48477007, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", - "statuses_count": 16019, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "4220691364", - "following": false, - "friends_count": 33, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sunsetwx.com", - "url": "https://t.co/EQ5OfbQIZd", - "expanded_url": "http://sunsetwx.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3019, - "location": "", - "screen_name": "sunset_wx", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 66, - "name": "Sunset Weather", - "profile_use_background_image": true, - "description": "Sunset & Sunrise Predictions: Model using an in-depth algorithm comprised of meteorological factors. Developed by @WxDeFlitch, @WxReppert, @hallettwx", - "url": "https://t.co/EQ5OfbQIZd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Nov 18 19:58:34 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", - "favourites_count": 3776, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 813355861, - "possibly_sensitive": false, - "id_str": "685629743136399361", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 262, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 462, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 790, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPYnEDWkAAXSrH.jpg", - "type": "photo", - "indices": [ - 49, - 72 - ], - "media_url": "http://pbs.twimg.com/media/CYPYnEDWkAAXSrH.jpg", - "display_url": "pic.twitter.com/eIAHING7d6", - "id_str": "685629733904748544", - "expanded_url": "http://twitter.com/sunset_wx/status/685629743136399361/photo/1", - "id": 685629733904748544, - "url": "https://t.co/eIAHING7d6" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jwmagettejr", - "id_str": "813355861", - "id": 813355861, - "indices": [ - 0, - 12 - ], - "name": "jimmy magette" - } - ] - }, - "created_at": "Sat Jan 09 01:10:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "813355861", - "place": null, - "in_reply_to_screen_name": "jwmagettejr", - "in_reply_to_status_id_str": "685628478230630400", - "truncated": false, - "id": 685629743136399361, - "text": "@jwmagettejr Gorgeous! Verified w/ our forecast! https://t.co/eIAHING7d6", - "coordinates": null, - "in_reply_to_status_id": 685628478230630400, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 4220691364, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1810, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4220691364/1447893477", - "is_translator": false - }, - { - "time_zone": "Greenland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "247901736", - "following": false, - "friends_count": 789, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/theblurbarbosa", - "url": "http://t.co/BLAOP8mM9P", - "expanded_url": "http://instagram.com/theblurbarbosa", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "C1C70A", - "geo_enabled": false, - "followers_count": 106398, - "location": "Brazil", - "screen_name": "TheBlurBarbosa", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1024, - "name": "Leandro Barbosa", - "profile_use_background_image": true, - "description": "Jogador de Basquete da NBA. \nThe official account of Leandro Barbosa, basketball player!", - "url": "http://t.co/BLAOP8mM9P", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", - "profile_background_color": "0EC704", - "created_at": "Sat Feb 05 20:31:51 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", - "favourites_count": 614, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685194677742624768", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 728, - "h": 728, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYJM7J7W8AA4RqX.jpg", - "type": "photo", - "indices": [ - 68, - 91 - ], - "media_url": "http://pbs.twimg.com/media/CYJM7J7W8AA4RqX.jpg", - "display_url": "pic.twitter.com/hF4aXpXgwK", - "id_str": "685194672474615808", - "expanded_url": "http://twitter.com/TheBlurBarbosa/status/685194677742624768/photo/1", - "id": 685194672474615808, - "url": "https://t.co/hF4aXpXgwK" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 32, - 41 - ], - "text": "BeepBeep" - }, - { - "indices": [ - 58, - 67 - ], - "text": "Warriors" - } - ], - "user_mentions": [ - { - "screen_name": "CWArtwork", - "id_str": "1120273860", - "id": 1120273860, - "indices": [ - 21, - 31 - ], - "name": "CW Artwork" - } - ] - }, - "created_at": "Thu Jan 07 20:21:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685194677742624768, - "text": "Love the art! Thanks @cwartwork #BeepBeep\n\nAdorei a arte! #Warriors https://t.co/hF4aXpXgwK", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 63, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 247901736, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", - "statuses_count": 5009, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/247901736/1406161704", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "858957830", - "following": false, - "friends_count": 265, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 41498, - "location": "", - "screen_name": "gswstats", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 518, - "name": "GSWStats", - "profile_use_background_image": true, - "description": "An official twitter account of the Golden State Warriors, featuring statistics, news and notes about the team throughout the season.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Oct 03 00:50:25 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", - "favourites_count": 9, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 86, - "truncated": false, - "retweeted": false, - "id_str": "685597797693833217", - "id": 685597797693833217, - "text": "Warriors, who are playing their first game of the season against the Blazers tonight, swept the season series (3-0) vs. Portland in 2014-15.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 23:03:47 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 252, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 858957830, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 9529, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/858957830/1401380224", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "22965624", - "following": false, - "friends_count": 587, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "lafourcade.com.mx", - "url": "http://t.co/CV9kDVyOwc", - "expanded_url": "http://lafourcade.com.mx", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 1703741, - "location": "Mexico, DF", - "screen_name": "lafourcade", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5644, - "name": "Natalia Lafourcade", - "profile_use_background_image": true, - "description": "musico", - "url": "http://t.co/CV9kDVyOwc", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Mar 05 19:38:07 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", - "favourites_count": 249, - "status": { - "retweet_count": 20, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685254697653895169", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/sonymusiccol/s\u2026", - "url": "https://t.co/y0OpGl8LED", - "expanded_url": "https://twitter.com/sonymusiccol/status/685126161261707264", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 00:20:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "es", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685254697653895169, - "text": "Esto es para mis amigos de Colombia. \u00bfCu\u00e1l es su lugar favorito de este lindo pa\u00eds? https://t.co/y0OpGl8LED", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 129, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 22965624, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 6361, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22965624/1425415118", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3099613624", - "following": false, - "friends_count": 130, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 86090, - "location": "", - "screen_name": "salmahayek", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 487, - "name": "Salma Hayek", - "profile_use_background_image": false, - "description": "After hundreds of impostors, years of procrastination, and a self-imposed allergy to technology, FINALLY I'm here. \u00a1Hola! It's Salma.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri Mar 20 15:48:51 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", - "favourites_count": 4, - "status": { - "retweet_count": 325, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677221425497837568", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "cosmopolitan.com/entertainment/\u2026", - "url": "https://t.co/tRlCbEeNej", - "expanded_url": "http://www.cosmopolitan.com/entertainment/news/a50859/amandla-sternberg-and-rowan-blanchard-feminists-of-the-year/", - "indices": [ - 71, - 94 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "rowblanchard", - "id_str": "307548363", - "id": 307548363, - "indices": [ - 57, - 70 - ], - "name": "Rowan Blanchard" - } - ] - }, - "created_at": "Wed Dec 16 20:19:04 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/3b77caf94bfc81fe.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -118.668404, - 33.704538 - ], - [ - -118.155409, - 33.704538 - ], - [ - -118.155409, - 34.337041 - ], - [ - -118.668404, - 34.337041 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Los Angeles, CA", - "id": "3b77caf94bfc81fe", - "name": "Los Angeles" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677221425497837568, - "text": "Congratulations to my girl I adore.I am so proud of you. @rowblanchard https://t.co/tRlCbEeNej", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1139, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 3099613624, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 96, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3099613624/1438298694", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18441988", - "following": false, - "friends_count": 304, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 245663, - "location": "", - "screen_name": "jrich23", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3053, - "name": "Jason Richardson", - "profile_use_background_image": true, - "description": "Father, Husband and just all around good guy!", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Dec 29 04:04:33 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", - "favourites_count": 5, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678360808783482882", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/_fgpM4R3ub/", - "url": "https://t.co/wWEzLBZC3h", - "expanded_url": "https://www.instagram.com/p/_fgpM4R3ub/", - "indices": [ - 100, - 123 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Dec 19 23:46:34 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678360808783482882, - "text": "Short 10 hour trip to the Bay! Had a great time at the Rainbow Center court dedication & camp.\u2026 https://t.co/wWEzLBZC3h", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 18441988, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", - "statuses_count": 2691, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18441988/1395676880", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15506669", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 73576, - "location": "", - "screen_name": "JeffBezos", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 879, - "name": "Jeff Bezos", - "profile_use_background_image": true, - "description": "Amazon, Blue Origin, Washington Post", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jul 20 22:38:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", - "favourites_count": 0, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1576, - "truncated": false, - "retweeted": false, - "id_str": "679116636310360067", - "id": 679116636310360067, - "text": "Congrats @SpaceX on landing Falcon's suborbital booster stage. Welcome to the club!", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SpaceX", - "id_str": "34743251", - "id": 34743251, - "indices": [ - 9, - 16 - ], - "name": "SpaceX" - } - ] - }, - "created_at": "Tue Dec 22 01:49:58 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 2546, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15506669, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15506669/1448361938", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "15930926", - "following": false, - "friends_count": 1445, - "entities": { - "description": { - "urls": [ - { - "display_url": "therapfan.com", - "url": "http://t.co/6ty3IIzh7f", - "expanded_url": "http://therapfan.com", - "indices": [ - 101, - 123 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "therapfan.com", - "url": "https://t.co/fVOL5FpVZ3", - "expanded_url": "http://www.therapfan.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": true, - "followers_count": 8751, - "location": "WI - STL - CA - ATL - tour", - "screen_name": "djtrackstar", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 194, - "name": "WRTJ", - "profile_use_background_image": true, - "description": "Professional Rap Fan. Tour DJ for Run the Jewels. The Smoking Section. WRTJ on Beats1. @peaceimages. http://t.co/6ty3IIzh7f fb/ig:trackstarthedj", - "url": "https://t.co/fVOL5FpVZ3", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Thu Aug 21 13:14:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", - "favourites_count": 6825, - "status": { - "retweet_count": 4, - "retweeted_status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685625187392327681", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/AP3I1R8zCDc", - "url": "https://t.co/Q8mqro31Na", - "expanded_url": "https://youtu.be/AP3I1R8zCDc", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [ - { - "indices": [ - 93, - 110 - ], - "text": "battleraphistory" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:52:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685625187392327681, - "text": "Rhymefest vs Mexicano - \"you can rap like this but u not goin win\" \ud83d\ude02 https://t.co/Q8mqro31Na #battleraphistory", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685625768668446721", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/AP3I1R8zCDc", - "url": "https://t.co/Q8mqro31Na", - "expanded_url": "https://youtu.be/AP3I1R8zCDc", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [ - { - "indices": [ - 104, - 121 - ], - "text": "battleraphistory" - } - ], - "user_mentions": [ - { - "screen_name": "Drect", - "id_str": "23562632", - "id": 23562632, - "indices": [ - 3, - 9 - ], - "name": "Drect Williams" - } - ] - }, - "created_at": "Sat Jan 09 00:54:56 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685625768668446721, - "text": "RT @Drect: Rhymefest vs Mexicano - \"you can rap like this but u not goin win\" \ud83d\ude02 https://t.co/Q8mqro31Na #battleraphistory", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 15930926, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", - "statuses_count": 32218, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15930926/1388895937", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1496009995", - "following": false, - "friends_count": 634, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/jikpa", - "url": "https://t.co/dNEeeChBZx", - "expanded_url": "http://linkedin.com/in/jikpa", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F3F3F3", - "profile_link_color": "990000", - "geo_enabled": true, - "followers_count": 612, - "location": "San Francisco, CA", - "screen_name": "jikpapa", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 6, - "name": "Janet Ikpa", - "profile_use_background_image": true, - "description": "Diversity Strategist @Twitter | Past life @Google | @Blackbirds & @WomEng Lead | UC Santa Barbara & Indiana University Alum | \u2764\ufe0f | Thoughts my own", - "url": "https://t.co/dNEeeChBZx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", - "profile_background_color": "EBEBEB", - "created_at": "Sun Jun 09 16:16:26 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DFDFDF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", - "favourites_count": 2743, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685559958620868608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/i/moments/6855\u2026", - "url": "https://t.co/aarBCxI4p1", - "expanded_url": "https://twitter.com/i/moments/685530257777098752?native_moment=true", - "indices": [ - 0, - 23 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:33:25 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685559958620868608, - "text": "https://t.co/aarBCxI4p1", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1496009995, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", - "statuses_count": 1057, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496009995/1431054902", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "100224999", - "following": false, - "friends_count": 183, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 507, - "location": "San Francisco", - "screen_name": "gabi_dee", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 14, - "name": "Gabrielle Delva", - "profile_use_background_image": false, - "description": "travel enthusiast, professional giggler, gif guru, forever in transition.", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Dec 29 13:27:37 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", - "favourites_count": 1373, - "status": { - "retweet_count": 19, - "retweeted_status": { - "retweet_count": 19, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684784175044362240", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "g.co/RISEAwards", - "url": "https://t.co/pu9kaeabaw", - "expanded_url": "http://g.co/RISEAwards", - "indices": [ - 112, - 135 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 17:10:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684784175044362240, - "text": "Know a great nonprofit that teaches Computer Science to students? Apply for the Google RISE Awards by Feb 19 at https://t.co/pu9kaeabaw", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684819789219368960", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "g.co/RISEAwards", - "url": "https://t.co/pu9kaeabaw", - "expanded_url": "http://g.co/RISEAwards", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "googlenonprofit", - "id_str": "257660675", - "id": 257660675, - "indices": [ - 3, - 19 - ], - "name": "GoogleforNonprofits" - } - ] - }, - "created_at": "Wed Jan 06 19:32:15 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684819789219368960, - "text": "RT @googlenonprofit: Know a great nonprofit that teaches Computer Science to students? Apply for the Google RISE Awards by Feb 19 at https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 100224999, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "statuses_count": 6503, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/100224999/1426546312", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "18768473", - "following": false, - "friends_count": 2133, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "open.spotify.com/user/brucedais\u2026", - "url": "https://t.co/l0e3ybjdUA", - "expanded_url": "https://open.spotify.com/user/brucedaisley", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 19662, - "location": "", - "screen_name": "brucedaisley", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 416, - "name": "Bruce Daisley", - "profile_use_background_image": true, - "description": "Typo strewn tweets about pop music. #HeForShe. Work at Twitter.", - "url": "https://t.co/l0e3ybjdUA", - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", - "profile_background_color": "352726", - "created_at": "Thu Jan 08 16:20:21 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", - "favourites_count": 14620, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "MintRoyale", - "in_reply_to_user_id": 34306180, - "in_reply_to_status_id_str": "685619607722418177", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685619993329930244", - "id": 685619993329930244, - "text": "@MintRoyale I'm already over it. The one person I followed clearly is going to police about my unsolicited attention", - "in_reply_to_user_id_str": "34306180", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MintRoyale", - "id_str": "34306180", - "id": 34306180, - "indices": [ - 0, - 11 - ], - "name": "Mint Royale" - } - ] - }, - "created_at": "Sat Jan 09 00:31:59 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685619607722418177, - "lang": "en" - }, - "default_profile_image": false, - "id": 18768473, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", - "statuses_count": 20372, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18768473/1441290267", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "60900903", - "following": false, - "friends_count": 2729, - "entities": { - "description": { - "urls": [ - { - "display_url": "squ.re/1MXEAse", - "url": "https://t.co/lZueerHDOb", - "expanded_url": "http://squ.re/1MXEAse", - "indices": [ - 125, - 148 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "mrtodspies.com", - "url": "https://t.co/Bu7ML9v7ZC", - "expanded_url": "http://www.mrtodspies.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2257, - "location": "Aqui Estoy", - "screen_name": "MrTodsPies", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 71, - "name": "Mr. Tod", - "profile_use_background_image": true, - "description": "CEO and Founder of Mr Tod's Pie Factory - ABC Shark Tank's First Winner - Sweet Potato Pie King - Check out my Square Story: https://t.co/lZueerHDOb", - "url": "https://t.co/Bu7ML9v7ZC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Tue Jul 28 13:20:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", - "favourites_count": 423, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Justsayin53", - "in_reply_to_user_id": 406640706, - "in_reply_to_status_id_str": "685056214812602368", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685085098476191744", - "id": 685085098476191744, - "text": "@Justsayin53 GM! All is well in the land of #pies - baking away!", - "in_reply_to_user_id_str": "406640706", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 44, - 49 - ], - "text": "pies" - } - ], - "user_mentions": [ - { - "screen_name": "Justsayin53", - "id_str": "406640706", - "id": 406640706, - "indices": [ - 0, - 12 - ], - "name": "Wendy" - } - ] - }, - "created_at": "Thu Jan 07 13:06:30 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685056214812602368, - "lang": "en" - }, - "default_profile_image": false, - "id": 60900903, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", - "statuses_count": 2574, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/60900903/1432911758", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6148472", - "following": false, - "friends_count": 57, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "gotinder.com", - "url": "https://t.co/801oYHR78b", - "expanded_url": "http://gotinder.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7031, - "location": "", - "screen_name": "seanrad", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 390, - "name": "Sean Rad", - "profile_use_background_image": true, - "description": "Founder & CEO of Tinder", - "url": "https://t.co/801oYHR78b", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri May 18 22:24:10 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", - "favourites_count": 3, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "664448755433779200", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "tinder.com/@sean", - "url": "https://t.co/NygIrxGtnu", - "expanded_url": "http://www.tinder.com/@sean", - "indices": [ - 18, - 41 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Nov 11 14:25:02 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 664448755433779200, - "text": "Like me on Tinder https://t.co/NygIrxGtnu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 18, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 6148472, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 2153, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2163177444", - "following": false, - "friends_count": 61, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 18065, - "location": "", - "screen_name": "HistOpinion", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 299, - "name": "Historical Opinion", - "profile_use_background_image": true, - "description": "Tweets from historical public opinion surveys, US and around the world, 1935-yesterday. Curated by @pashulman.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Oct 29 16:37:52 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", - "favourites_count": 300, - "status": { - "retweet_count": 15, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684902543877476353", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 614, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 360, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 204, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYDoqYmWQAAdVCK.jpg", - "type": "photo", - "indices": [ - 114, - 137 - ], - "media_url": "http://pbs.twimg.com/media/CYDoqYmWQAAdVCK.jpg", - "display_url": "pic.twitter.com/PYMJH91nLw", - "id_str": "684802958215757824", - "expanded_url": "http://twitter.com/HistOpinion/status/684902543877476353/photo/1", - "id": 684802958215757824, - "url": "https://t.co/PYMJH91nLw" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 01:01:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684902543877476353, - "text": "US Jun 16 \u201954: If the US gets into a fighting war in Indochina, should\nwe drop hydrogen bombs on cities in China? https://t.co/PYMJH91nLw", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 2163177444, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1272, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2163177444/1398739322", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4257979872", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [ - { - "display_url": "on.mash.to/1SWgZ0q", - "url": "https://t.co/XCv9Qbk0fi", - "expanded_url": "http://on.mash.to/1SWgZ0q", - "indices": [ - 105, - 128 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3D4999", - "geo_enabled": false, - "followers_count": 53019, - "location": "", - "screen_name": "ParisVictims", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 215, - "name": "En m\u00e9moire", - "profile_use_background_image": false, - "description": "One tweet for every victim of the terror attacks in Paris on Nov. 13, 2015. This is a @Mashable project.\nhttps://t.co/XCv9Qbk0fi", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", - "profile_background_color": "969494", - "created_at": "Mon Nov 16 15:41:07 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 165, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684490643801018369", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 235, - "resize": "fit" - }, - "large": { - "w": 528, - "h": 366, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 528, - "h": 366, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX_MkmUWYAAv2nw.png", - "type": "photo", - "indices": [ - 112, - 135 - ], - "media_url": "http://pbs.twimg.com/media/CX_MkmUWYAAv2nw.png", - "display_url": "pic.twitter.com/hhsLwl89oq", - "id_str": "684490597516861440", - "expanded_url": "http://twitter.com/ParisVictims/status/684490643801018369/photo/1", - "id": 684490597516861440, - "url": "https://t.co/hhsLwl89oq" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 101, - 111 - ], - "text": "enm\u00e9moire" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 21:44:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684490643801018369, - "text": "Ren\u00e9 Bichon, 62. France. \nLoved life even though it wasn't always easy. \nVery funny. A \"bon vivant.\" #enm\u00e9moire https://t.co/hhsLwl89oq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 314, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 4257979872, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 130, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4257979872/1447689123", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "562267840", - "following": false, - "friends_count": 95, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "raine.com", - "url": "http://t.co/raiVzM9CC2", - "expanded_url": "http://www.raine.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 465, - "location": "NY/LA/SFO/LONDON/ASIA", - "screen_name": "JoeRavitch", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 8, - "name": "Joe Ravitch", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/raiVzM9CC2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 24 19:09:33 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", - "favourites_count": 60, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684484640321748997", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/NRA/status/684\u2026", - "url": "https://t.co/zpDO52WGJD", - "expanded_url": "https://twitter.com/NRA/status/684469926707335168", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 21:20:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684484640321748997, - "text": "These people are more dangerous to American freedom than ISIS ever will be https://t.co/zpDO52WGJD", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 562267840, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 325, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "928744998", - "following": false, - "friends_count": 812, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wakeuptopolitics.com", - "url": "https://t.co/Mwu8QKYT05", - "expanded_url": "http://www.wakeuptopolitics.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1722, - "location": "St. Louis (now), DC (future)", - "screen_name": "WakeUp2Politics", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 39, - "name": "Gabe Fleisher", - "profile_use_background_image": false, - "description": "14 yr old Editor, Wake Up To Politics, daily political newsletter. Author. Political junkie. Also attending middle school in my spare time. RTs \u2260 endorsements.", - "url": "https://t.co/Mwu8QKYT05", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Nov 06 01:20:43 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", - "favourites_count": 2832, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685439707459665920", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wakeuptopolitics.com/subscribe", - "url": "https://t.co/ch4BPL5do8", - "expanded_url": "http://wakeuptopolitics.com/subscribe", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 12:35:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685439707459665920, - "text": "Looking for an informative daily political update? Sign up to get Wake Up To Politics in your inbox every morning: https://t.co/ch4BPL5do8", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 928744998, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", - "statuses_count": 3668, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/928744998/1452145580", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2773453886", - "following": false, - "friends_count": 32, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jumpshotgenie.com", - "url": "http://t.co/IrZ3XgzXdT", - "expanded_url": "http://www.jumpshotgenie.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7718, - "location": "Charlotte, NC", - "screen_name": "DC__for3", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 44, - "name": "Dell Curry", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/IrZ3XgzXdT", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Aug 27 14:43:19 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", - "favourites_count": 35, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "UnderArmour", - "in_reply_to_user_id": 23114836, - "in_reply_to_status_id_str": "565328922259492870", - "retweet_count": 7, - "truncated": false, - "retweeted": false, - "id_str": "565627064007811072", - "id": 565627064007811072, - "text": "@UnderArmour thanks for keeping us looking good!", - "in_reply_to_user_id_str": "23114836", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "UnderArmour", - "id_str": "23114836", - "id": 23114836, - "indices": [ - 0, - 12 - ], - "name": "Under Armour" - } - ] - }, - "created_at": "Wed Feb 11 21:42:55 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 65, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 565328922259492870, - "lang": "en" - }, - "default_profile_image": false, - "id": 2773453886, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 69, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2773453886/1409150929", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "798048997", - "following": false, - "friends_count": 2, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "perigee.se", - "url": "http://t.co/2P0WOpJTeV", - "expanded_url": "http://www.perigee.se", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 447, - "location": "", - "screen_name": "PerigeeApps", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 12, - "name": "Perigee", - "profile_use_background_image": true, - "description": "Crafting useful and desirable apps that solve life's problems in a delightful way.", - "url": "http://t.co/2P0WOpJTeV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Sun Sep 02 11:11:01 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", - "favourites_count": 106, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "BenAlexx", - "in_reply_to_user_id": 272510324, - "in_reply_to_status_id_str": "684084532673417216", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684271791339081728", - "id": 684271791339081728, - "text": "@BenAlexx on our wish list", - "in_reply_to_user_id_str": "272510324", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BenAlexx", - "id_str": "272510324", - "id": 272510324, - "indices": [ - 0, - 9 - ], - "name": "Ben Byriel" - } - ] - }, - "created_at": "Tue Jan 05 07:14:42 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684084532673417216, - "lang": "en" - }, - "default_profile_image": false, - "id": 798048997, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 433, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/798048997/1447315639", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "37861434", - "following": false, - "friends_count": 6, - "entities": { - "description": { - "urls": [ - { - "display_url": "amzn.to/PayjDo", - "url": "http://t.co/VtCEbuw6KH", - "expanded_url": "http://amzn.to/PayjDo", - "indices": [ - 133, - 155 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "eqbot.com", - "url": "http://t.co/EznRBcY7a7", - "expanded_url": "http://eqbot.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 124430, - "location": "San Francisco, CA", - "screen_name": "earthquakesSF", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1539, - "name": "SF QuakeBot", - "profile_use_background_image": true, - "description": "I am a robot that live-tweets earthquakes in the San Francisco Bay area. Built by @billsnitzer. Data is from the USGS. Get prepared: http://t.co/VtCEbuw6KH", - "url": "http://t.co/EznRBcY7a7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue May 05 04:53:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685564529225277440", - "geo": { - "coordinates": [ - 37.7738342, - -122.1374969 - ], - "type": "Point" - }, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "eqbot.com/gAY", - "url": "https://t.co/moSo8varxs", - "expanded_url": "http://eqbot.com/gAY", - "indices": [ - 84, - 107 - ] - }, - { - "display_url": "eqbot.com/gA9", - "url": "https://t.co/5Qt0pRkUQW", - "expanded_url": "http://eqbot.com/gA9", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:51:35 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/ab2f2fac83aa388d.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.34266, - 37.699279 - ], - [ - -122.114711, - 37.699279 - ], - [ - -122.114711, - 37.8847092 - ], - [ - -122.34266, - 37.8847092 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Oakland, CA", - "id": "ab2f2fac83aa388d", - "name": "Oakland" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685564529225277440, - "text": "A 1.5 magnitude earthquake occurred 3.11mi NNE of San Leandro, California. Details: https://t.co/moSo8varxs Map: https://t.co/5Qt0pRkUQW", - "coordinates": { - "coordinates": [ - -122.1374969, - 37.7738342 - ], - "type": "Point" - }, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "EQBot" - }, - "default_profile_image": false, - "id": 37861434, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7780, - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "249334021", - "following": false, - "friends_count": 55, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "opinionator.blogs.nytimes.com/category/fixes/", - "url": "http://t.co/dSgWPDl048", - "expanded_url": "http://opinionator.blogs.nytimes.com/category/fixes/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7147, - "location": "New York, NY", - "screen_name": "nytimesfixes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 402, - "name": "NYT Fixes Blog", - "profile_use_background_image": true, - "description": "Fixes explores solutions to major social problems. Each week, it examines creative initiatives that can tell us about the difference between success and failure", - "url": "http://t.co/dSgWPDl048", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", - "profile_background_color": "C0DEED", - "created_at": "Tue Feb 08 21:00:21 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", - "favourites_count": 3, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "637290541017899008", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1E5KU38", - "url": "http://t.co/FqIFItO9DV", - "expanded_url": "http://bit.ly/1E5KU38", - "indices": [ - 106, - 128 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "poptech", - "id_str": "14514411", - "id": 14514411, - "indices": [ - 42, - 50 - ], - "name": "PopTech" - } - ] - }, - "created_at": "Fri Aug 28 15:47:59 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 637290541017899008, - "text": "SJN is sponsoring one journalist to go to @poptech conference Oct 22-24 in Camden, ME. Last day to apply! http://t.co/FqIFItO9DV", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "637290601596198912", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1E5KU38", - "url": "http://t.co/FqIFItO9DV", - "expanded_url": "http://bit.ly/1E5KU38", - "indices": [ - 123, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "dnbornstein", - "id_str": "17669950", - "id": 17669950, - "indices": [ - 3, - 15 - ], - "name": "David Bornstein" - }, - { - "screen_name": "poptech", - "id_str": "14514411", - "id": 14514411, - "indices": [ - 59, - 67 - ], - "name": "PopTech" - } - ] - }, - "created_at": "Fri Aug 28 15:48:14 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 637290601596198912, - "text": "RT @dnbornstein: SJN is sponsoring one journalist to go to @poptech conference Oct 22-24 in Camden, ME. Last day to apply! http://t.co/FqIF\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 249334021, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", - "statuses_count": 349, - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "360391686", - "following": false, - "friends_count": 707, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "chetfaker.com/shows", - "url": "https://t.co/es4xPMVZSh", - "expanded_url": "http://chetfaker.com/shows", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 81997, - "location": "Australia", - "screen_name": "Chet_Faker", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 559, - "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186", - "profile_use_background_image": true, - "description": "unnoficial fan account *parody* no way affiliated with Chet Faker. we \u2665\ufe0fChet Kawai please follow for latest music & check website for more news", - "url": "https://t.co/es4xPMVZSh", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Aug 23 04:05:11 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", - "favourites_count": 12083, - "status": { - "retweet_count": 8, - "retweeted_status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685545101813141504", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", - "display_url": "pic.twitter.com/60GJ7KHdXk", - "id_str": "685545100445749248", - "expanded_url": "http://twitter.com/shazi_LA/status/685545101813141504/photo/1", - "id": 685545100445749248, - "url": "https://t.co/60GJ7KHdXk" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "GovBallNYC", - "id_str": "241426680", - "id": 241426680, - "indices": [ - 20, - 31 - ], - "name": "The Governors Ball" - }, - { - "screen_name": "Thundercat", - "id_str": "272071608", - "id": 272071608, - "indices": [ - 85, - 96 - ], - "name": "Thunder....cat" - }, - { - "screen_name": "Chet_Faker", - "id_str": "360391686", - "id": 360391686, - "indices": [ - 103, - 114 - ], - "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186" - } - ] - }, - "created_at": "Fri Jan 08 19:34:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685545101813141504, - "text": "Oh hey, look at the @GovBallNYC lineup... some of my faves here! (I'm looking at you @Thundercat & @Chet_Faker) https://t.co/60GJ7KHdXk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 35, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685546274679066624", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "source_status_id_str": "685545101813141504", - "url": "https://t.co/60GJ7KHdXk", - "media_url": "http://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", - "source_user_id_str": "226243669", - "id_str": "685545100445749248", - "id": 685545100445749248, - "media_url_https": "https://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", - "type": "photo", - "indices": [ - 130, - 144 - ], - "source_status_id": 685545101813141504, - "source_user_id": 226243669, - "display_url": "pic.twitter.com/60GJ7KHdXk", - "expanded_url": "http://twitter.com/shazi_LA/status/685545101813141504/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "shazi_LA", - "id_str": "226243669", - "id": 226243669, - "indices": [ - 3, - 12 - ], - "name": "Shazi_LA" - }, - { - "screen_name": "GovBallNYC", - "id_str": "241426680", - "id": 241426680, - "indices": [ - 34, - 45 - ], - "name": "The Governors Ball" - }, - { - "screen_name": "Thundercat", - "id_str": "272071608", - "id": 272071608, - "indices": [ - 99, - 110 - ], - "name": "Thunder....cat" - }, - { - "screen_name": "Chet_Faker", - "id_str": "360391686", - "id": 360391686, - "indices": [ - 117, - 128 - ], - "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186" - } - ] - }, - "created_at": "Fri Jan 08 19:39:03 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685546274679066624, - "text": "RT @shazi_LA: Oh hey, look at the @GovBallNYC lineup... some of my faves here! (I'm looking at you @Thundercat & @Chet_Faker) https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 360391686, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", - "statuses_count": 8616, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/360391686/1363912234", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "748615879", - "following": false, - "friends_count": 585, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "angstrom.io", - "url": "https://t.co/bwG2E1VYFG", - "expanded_url": "http://angstrom.io", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 282, - "location": "37.7750\u00b0 N, 122.4183\u00b0 W", - "screen_name": "cacoco", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 8, - "name": "Christopher Coco", - "profile_use_background_image": true, - "description": "life in small doses.", - "url": "https://t.co/bwG2E1VYFG", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Fri Aug 10 04:35:36 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", - "favourites_count": 4543, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683060423336148992", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 453, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 801, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 767, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXq300UUMAAqlli.jpg", - "type": "photo", - "indices": [ - 23, - 46 - ], - "media_url": "http://pbs.twimg.com/media/CXq300UUMAAqlli.jpg", - "display_url": "pic.twitter.com/O9ES2jxF83", - "id_str": "683060411524984832", - "expanded_url": "http://twitter.com/cacoco/status/683060423336148992/photo/1", - "id": 683060411524984832, - "url": "https://t.co/O9ES2jxF83" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 9, - 22 - ], - "text": "HappyNewYear" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 23:01:10 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683060423336148992, - "text": "Day 700. #HappyNewYear https://t.co/O9ES2jxF83", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 748615879, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", - "statuses_count": 1975, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/748615879/1352437653", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "2652536876", - "following": false, - "friends_count": 102, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "pepsico.com", - "url": "https://t.co/SDLqDs6Xfd", - "expanded_url": "http://pepsico.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3510, - "location": "purchase ny", - "screen_name": "IndraNooyi", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "Indra Nooyi", - "profile_use_background_image": true, - "description": "CEO @PEPSICO", - "url": "https://t.co/SDLqDs6Xfd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jul 17 01:35:59 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", - "favourites_count": 7, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 9, - "truncated": false, - "retweeted": false, - "id_str": "682716095342587906", - "id": 682716095342587906, - "text": "Happy New Year to all with hopes for a peaceful and harmonious 2016", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 00:12:56 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 35, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2652536876, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 12, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652536876/1446586148", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3274940484", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 395, - "location": "", - "screen_name": "getpolled", - "verified": false, - "has_extended_profile": false, - "protected": true, - "listed_count": 1, - "name": "@GetPolled", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", - "profile_background_color": "3B94D9", - "created_at": "Sat Jul 11 00:28:05 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 3274940484, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 42, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3274940484/1437009659", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "41783", - "following": false, - "friends_count": 74, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "louiemantia.com", - "url": "https://t.co/MWe41e6Yhi", - "expanded_url": "http://louiemantia.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "ABB8C2", - "geo_enabled": true, - "followers_count": 17113, - "location": "Portland", - "screen_name": "mantia", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 1118, - "name": "Louie Mantia", - "profile_use_background_image": false, - "description": "America's Favorite Icon Designer, Partner @Parakeet", - "url": "https://t.co/MWe41e6Yhi", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", - "profile_background_color": "A8B4BF", - "created_at": "Tue Dec 05 02:40:37 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", - "favourites_count": 11668, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685636553998118914", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", - "type": "photo", - "indices": [ - 74, - 97 - ], - "media_url": "http://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", - "display_url": "pic.twitter.com/WyQjkr55BZ", - "id_str": "685636553616408576", - "expanded_url": "http://twitter.com/Parakeet/status/685636553998118914/photo/1", - "id": 685636553616408576, - "url": "https://t.co/WyQjkr55BZ" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "dribbble.com/shots/2446577-\u2026", - "url": "https://t.co/mDgJ3qH7ro", - "expanded_url": "https://dribbble.com/shots/2446577-Kitchen-Sync-App-Icon", - "indices": [ - 50, - 73 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kitchensync", - "id_str": "15569016", - "id": 15569016, - "indices": [ - 14, - 26 - ], - "name": "billy kitchen" - }, - { - "screen_name": "dribbble", - "id_str": "14351575", - "id": 14351575, - "indices": [ - 39, - 48 - ], - "name": "Dribbble" - } - ] - }, - "created_at": "Sat Jan 09 01:37:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685636553998118914, - "text": "Check out our @kitchensync app icon on @dribbble! https://t.co/mDgJ3qH7ro https://t.co/WyQjkr55BZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685636570519441408", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 512, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 300, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 170, - "resize": "fit" - } - }, - "source_status_id_str": "685636553998118914", - "url": "https://t.co/WyQjkr55BZ", - "media_url": "http://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", - "source_user_id_str": "2966622229", - "id_str": "685636553616408576", - "id": 685636553616408576, - "media_url_https": "https://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", - "type": "photo", - "indices": [ - 88, - 111 - ], - "source_status_id": 685636553998118914, - "source_user_id": 2966622229, - "display_url": "pic.twitter.com/WyQjkr55BZ", - "expanded_url": "http://twitter.com/Parakeet/status/685636553998118914/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "dribbble.com/shots/2446577-\u2026", - "url": "https://t.co/mDgJ3qH7ro", - "expanded_url": "https://dribbble.com/shots/2446577-Kitchen-Sync-App-Icon", - "indices": [ - 64, - 87 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Parakeet", - "id_str": "2966622229", - "id": 2966622229, - "indices": [ - 3, - 12 - ], - "name": "Parakeet" - }, - { - "screen_name": "kitchensync", - "id_str": "15569016", - "id": 15569016, - "indices": [ - 28, - 40 - ], - "name": "billy kitchen" - }, - { - "screen_name": "dribbble", - "id_str": "14351575", - "id": 14351575, - "indices": [ - 53, - 62 - ], - "name": "Dribbble" - } - ] - }, - "created_at": "Sat Jan 09 01:37:51 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685636570519441408, - "text": "RT @Parakeet: Check out our @kitchensync app icon on @dribbble! https://t.co/mDgJ3qH7ro https://t.co/WyQjkr55BZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Mac" - }, - "default_profile_image": false, - "id": 41783, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", - "statuses_count": 102450, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "817288", - "following": false, - "friends_count": 4457, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "techmeme.com", - "url": "http://t.co/2kJ3FyTtAJ", - "expanded_url": "http://techmeme.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "1F98C7", - "geo_enabled": true, - "followers_count": 56181, - "location": "SF: Disruptopia, USA", - "screen_name": "gaberivera", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2313, - "name": "Gabe Rivera", - "profile_use_background_image": true, - "description": "I run Techmeme.\r\nSometimes I tweet what I mean. Sometimes I tweet the opposite. Retweets are endorphins.", - "url": "http://t.co/2kJ3FyTtAJ", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", - "profile_background_color": "C6E2EE", - "created_at": "Wed Mar 07 06:23:51 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C6E2EE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", - "favourites_count": 13568, - "status": { - "retweet_count": 3, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685578243668193280", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/mediagazer/sta\u2026", - "url": "https://t.co/AzTWnMzdiF", - "expanded_url": "https://twitter.com/mediagazer/status/685208531683782656", - "indices": [ - 29, - 52 - ] - }, - { - "display_url": "twitter.com/alexweprin/sta\u2026", - "url": "https://t.co/paReLxvZ6B", - "expanded_url": "https://twitter.com/alexweprin/status/685558233407315968", - "indices": [ - 53, - 76 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:46:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685578243668193280, - "text": "Reminder about who's hiring! https://t.co/AzTWnMzdiF https://t.co/paReLxvZ6B", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 817288, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", - "statuses_count": 11636, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/817288/1401467981", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1201139012", - "following": false, - "friends_count": 29, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkd.in/1uiUZno", - "url": "http://t.co/gi5nkD1WcX", - "expanded_url": "http://linkd.in/1uiUZno", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2768, - "location": "Cleveland, Ohio", - "screen_name": "TobyCosgroveMD", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 81, - "name": "Toby Cosgrove, MD", - "profile_use_background_image": false, - "description": "President and CEO, @ClevelandClinic. Cardiothoracic surgeon. U.S. Air Force Veteran.", - "url": "http://t.co/gi5nkD1WcX", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", - "profile_background_color": "065EA8", - "created_at": "Wed Feb 20 13:56:57 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", - "favourites_count": 15, - "status": { - "retweet_count": 29, - "retweeted_status": { - "retweet_count": 29, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684354635155419139", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amp.twimg.com/v/1fef475b-c57\u2026", - "url": "https://t.co/JIWcrSTFFC", - "expanded_url": "https://amp.twimg.com/v/1fef475b-c575-441e-909d-48f4a7ffe2b2", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [ - { - "indices": [ - 71, - 84 - ], - "text": "CCHeartbeats" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 12:43:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684354635155419139, - "text": "On a frigid morning for most across the U.S., a warm and fuzzy moment. #CCHeartbeats\nhttps://t.co/JIWcrSTFFC", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 31, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685299061470015488", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amp.twimg.com/v/1fef475b-c57\u2026", - "url": "https://t.co/JIWcrSTFFC", - "expanded_url": "https://amp.twimg.com/v/1fef475b-c575-441e-909d-48f4a7ffe2b2", - "indices": [ - 106, - 129 - ] - } - ], - "hashtags": [ - { - "indices": [ - 92, - 105 - ], - "text": "CCHeartbeats" - } - ], - "user_mentions": [ - { - "screen_name": "ClevelandClinic", - "id_str": "24236494", - "id": 24236494, - "indices": [ - 3, - 19 - ], - "name": "Cleveland Clinic" - } - ] - }, - "created_at": "Fri Jan 08 03:16:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685299061470015488, - "text": "RT @ClevelandClinic: On a frigid morning for most across the U.S., a warm and fuzzy moment. #CCHeartbeats\nhttps://t.co/JIWcrSTFFC", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1201139012, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 118, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1201139012/1415028437", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "4071934995", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 123031, - "location": "twitter.com", - "screen_name": "polls", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 211, - "name": "polls", - "profile_use_background_image": true, - "description": "the most important polls on twitter. Brought to you by @BuzzFeed. DM us your poll ideas!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Oct 30 02:09:51 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", - "favourites_count": 85, - "status": { - "retweet_count": 70, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681553833370202112", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bzfd.it/1kod7ZI", - "url": "https://t.co/F1ISG4AalR", - "expanded_url": "http://bzfd.it/1kod7ZI", - "indices": [ - 61, - 84 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Dec 28 19:14:31 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681553833370202112, - "text": "POLL: Who do you think Rey actually is? (WARNING: SPOILERS!) https://t.co/F1ISG4AalR", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 221, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 4071934995, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 812, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4071934995/1446225664", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "25084660", - "following": false, - "friends_count": 791, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 422237, - "location": "", - "screen_name": "arzE", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2852, - "name": "Ezra Koenig", - "profile_use_background_image": true, - "description": "vampire weekend inc.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Mar 18 14:52:55 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", - "favourites_count": 5759, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "FiyaSturm", - "in_reply_to_user_id": 229010922, - "in_reply_to_status_id_str": "684485785580617728", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684587959090151425", - "id": 684587959090151425, - "text": "@FiyaSturm sure is", - "in_reply_to_user_id_str": "229010922", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "FiyaSturm", - "id_str": "229010922", - "id": 229010922, - "indices": [ - 0, - 10 - ], - "name": "Zaire" - } - ] - }, - "created_at": "Wed Jan 06 04:11:03 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 19, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684485785580617728, - "lang": "en" - }, - "default_profile_image": false, - "id": 25084660, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", - "statuses_count": 9309, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25084660/1436462636", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "1081562149", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [ - { - "display_url": "favstar.fm/users/seinfeld\u2026", - "url": "https://t.co/GCOoEYISti", - "expanded_url": "http://favstar.fm/users/seinfeld2000", - "indices": [ - 71, - 94 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 101799, - "location": "", - "screen_name": "Seinfeld2000", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 779, - "name": "Seinfeld Current Day", - "profile_use_background_image": true, - "description": "Imagen Seinfeld was never canceled and still NBC comedy program today? https://t.co/GCOoEYISti", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jan 12 02:17:49 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", - "favourites_count": 56611, - "status": { - "retweet_count": 223, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685612408102989825", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 539, - "resize": "fit" - }, - "medium": { - "w": 473, - "h": 750, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 473, - "h": 750, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPI0VvUsAAofpc.jpg", - "type": "photo", - "indices": [ - 25, - 48 - ], - "media_url": "http://pbs.twimg.com/media/CYPI0VvUsAAofpc.jpg", - "display_url": "pic.twitter.com/BYALvuWTr5", - "id_str": "685612369804832768", - "expanded_url": "http://twitter.com/Seinfeld2000/status/685612408102989825/photo/1", - "id": 685612369804832768, - "url": "https://t.co/BYALvuWTr5" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:01:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685612408102989825, - "text": "*watches bee movie once* https://t.co/BYALvuWTr5", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 542, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 1081562149, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", - "statuses_count": 6596, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1081562149/1452223878", - "is_translator": false - }, - { - "time_zone": "Mountain Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "23699191", - "following": false, - "friends_count": 524, - "entities": { - "description": { - "urls": [ - { - "display_url": "noisey.vice.com/en_uk/noisey-s", - "url": "https://t.co/oXek0Yp2he", - "expanded_url": "http://noisey.vice.com/en_uk/noisey-s", - "indices": [ - 75, - 98 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "helloskepta.com", - "url": "https://t.co/LCjnqqo5cF", - "expanded_url": "http://www.helloskepta.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 667002, - "location": "", - "screen_name": "Skepta", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1289, - "name": "SKEPTA", - "profile_use_background_image": true, - "description": "Bookings: grace@metallicmgmt.com jonathanbriks@theagencygroup.com\n\n#TopBoy https://t.co/oXek0Yp2he\u2026", - "url": "https://t.co/LCjnqqo5cF", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", - "profile_background_color": "131516", - "created_at": "Wed Mar 11 01:31:36 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", - "favourites_count": 1, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "AleshaOfficial", - "in_reply_to_user_id": 165725207, - "in_reply_to_status_id_str": "685597432613351424", - "retweet_count": 10, - "truncated": false, - "retweeted": false, - "id_str": "685600790900113408", - "id": 685600790900113408, - "text": "@AleshaOfficial \ud83c\udfc6", - "in_reply_to_user_id_str": "165725207", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AleshaOfficial", - "id_str": "165725207", - "id": 165725207, - "indices": [ - 0, - 15 - ], - "name": "Alesha Dixon" - } - ] - }, - "created_at": "Fri Jan 08 23:15:41 +0000 2016", - "source": "Echofon", - "favorite_count": 42, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685597432613351424, - "lang": "und" - }, - "default_profile_image": false, - "id": 23699191, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 30136, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23699191/1431890723", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "937499232", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "malala.org", - "url": "http://t.co/nyY0R0rWL2", - "expanded_url": "http://malala.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": false, - "followers_count": 64751, - "location": "Pakistan", - "screen_name": "Malala", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 311, - "name": "Malala Yousafzai", - "profile_use_background_image": false, - "description": "Please follow @MalalaFund for Tweets from Malala and updates on her work.", - "url": "http://t.co/nyY0R0rWL2", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Nov 09 18:34:52 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", - "favourites_count": 0, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 937499232, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 0, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/937499232/1444529280", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2477802067", - "following": false, - "friends_count": 60, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "satyarthi.org", - "url": "http://t.co/p9X5Y5bZLm", - "expanded_url": "http://www.satyarthi.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 179748, - "location": "", - "screen_name": "k_satyarthi", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 513, - "name": "Kailash Satyarthi", - "profile_use_background_image": true, - "description": "Nobel Peace Prize 2014 winner. \nFounder-Global March Against Child Labour (@kNOwchildlabour) &\nBachpan Bachao Andolan. RTs not endorsements.", - "url": "http://t.co/p9X5Y5bZLm", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon May 05 04:07:33 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", - "favourites_count": 173, - "status": { - "retweet_count": 29, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685387713197903872", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 224, - "resize": "fit" - }, - "large": { - "w": 641, - "h": 423, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 395, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYL8d1aVAAAVKxG.jpg", - "type": "photo", - "indices": [ - 111, - 134 - ], - "media_url": "http://pbs.twimg.com/media/CYL8d1aVAAAVKxG.jpg", - "display_url": "pic.twitter.com/ER9hXrJe2x", - "id_str": "685387682797649920", - "expanded_url": "http://twitter.com/k_satyarthi/status/685387713197903872/photo/1", - "id": 685387682797649920, - "url": "https://t.co/ER9hXrJe2x" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 0, - 16 - ], - "text": "AzadBachpanKiOr" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 09:08:59 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685387713197903872, - "text": "#AzadBachpanKiOr\u00a0is a salutation to the millions of children worldwide who are still deprived of their future. https://t.co/ER9hXrJe2x", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 65, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2477802067, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 803, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14439813", - "following": false, - "friends_count": 334, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": true, - "followers_count": 58954, - "location": "atlanta & nyc", - "screen_name": "wnd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 412, - "name": "wendy clark", - "profile_use_background_image": true, - "description": "mom :: ceo ddb/na :: relentless optimist", - "url": null, - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", - "profile_background_color": "352726", - "created_at": "Sat Apr 19 02:18:29 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", - "favourites_count": 8834, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685188590213705729", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "continuethethread.com", - "url": "https://t.co/aBHKoW0rIh", - "expanded_url": "http://continuethethread.com", - "indices": [ - 95, - 118 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "asergeeva", - "id_str": "40744699", - "id": 40744699, - "indices": [ - 123, - 133 - ], - "name": "Anna Sergeeva" - }, - { - "screen_name": "shak", - "id_str": "17977475", - "id": 17977475, - "indices": [ - 134, - 139 - ], - "name": "Shakil Khan" - } - ] - }, - "created_at": "Thu Jan 07 19:57:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685188590213705729, - "text": "This simplest ideas are often the loveliest. Receive beautiful handwritten quotes in the mail. https://t.co/aBHKoW0rIh via @asergeeva @shak", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 10, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14439813, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 4316, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14439813/1451700372", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "31898295", - "following": false, - "friends_count": 3108, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "A0C5C7", - "profile_link_color": "FF3300", - "geo_enabled": true, - "followers_count": 4300, - "location": "", - "screen_name": "Derella", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 68, - "name": "matt derella", - "profile_use_background_image": true, - "description": "Rookie Dad, Lucky Husband, Ice Cream Addict. Remember, You Have Superpowers.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", - "profile_background_color": "709397", - "created_at": "Thu Apr 16 15:34:22 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "86A4A6", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", - "favourites_count": 6095, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "adambain", - "in_reply_to_user_id": 14253109, - "in_reply_to_status_id_str": "685305534791065600", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685305641867423745", - "id": 685305641867423745, - "text": "@adambain @jack ditto", - "in_reply_to_user_id_str": "14253109", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "adambain", - "id_str": "14253109", - "id": 14253109, - "indices": [ - 0, - 9 - ], - "name": "adam bain" - }, - { - "screen_name": "jack", - "id_str": "12", - "id": 12, - "indices": [ - 10, - 15 - ], - "name": "Jack" - } - ] - }, - "created_at": "Fri Jan 08 03:42:52 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 12, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685305534791065600, - "lang": "it" - }, - "default_profile_image": false, - "id": 31898295, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", - "statuses_count": 2137, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/31898295/1350353093", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "38422658", - "following": false, - "friends_count": 1682, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "F057F0", - "geo_enabled": true, - "followers_count": 10931, - "location": "San Francisco*", - "screen_name": "melissabarnes", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 247, - "name": "Melissa Barnes", - "profile_use_background_image": false, - "description": "Global Brands @Twitter. Easily entertained. Black coffee, please.", - "url": null, - "profile_text_color": "FF6F00", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Thu May 07 12:42:42 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", - "favourites_count": 7480, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685494530288840704", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/i/moments/6847\u2026", - "url": "https://t.co/s043MWwxBV", - "expanded_url": "https://twitter.com/i/moments/684794469330206720", - "indices": [ - 0, - 23 - ] - } - ], - "hashtags": [ - { - "indices": [ - 26, - 36 - ], - "text": "LikeAGirl" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:13:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/8173485c72e78ca5.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -84.576827, - 33.647549 - ], - [ - -84.289385, - 33.647549 - ], - [ - -84.289385, - 33.8868859 - ], - [ - -84.576827, - 33.8868859 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Atlanta, GA", - "id": "8173485c72e78ca5", - "name": "Atlanta" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685494530288840704, - "text": "https://t.co/s043MWwxBV. #LikeAGirl \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685496618443915268", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/i/moments/6847\u2026", - "url": "https://t.co/s043MWwxBV", - "expanded_url": "https://twitter.com/i/moments/684794469330206720", - "indices": [ - 11, - 34 - ] - } - ], - "hashtags": [ - { - "indices": [ - 37, - 47 - ], - "text": "LikeAGirl" - } - ], - "user_mentions": [ - { - "screen_name": "EWild", - "id_str": "25830913", - "id": 25830913, - "indices": [ - 3, - 9 - ], - "name": "Erica Wild Hogue" - } - ] - }, - "created_at": "Fri Jan 08 16:21:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685496618443915268, - "text": "RT @EWild: https://t.co/s043MWwxBV. #LikeAGirl \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 38422658, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", - "statuses_count": 1712, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/38422658/1383346519", - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "21007030", - "following": false, - "friends_count": 3161, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rio2016.com", - "url": "https://t.co/q8z1zrW1rr", - "expanded_url": "http://www.rio2016.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", - "notifications": false, - "profile_sidebar_fill_color": "A4CC35", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 222738, - "location": "Rio de Janeiro", - "screen_name": "Rio2016", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1235, - "name": "Rio 2016", - "profile_use_background_image": false, - "description": "Perfil oficial do Comit\u00ea Organizador dos Jogos Ol\u00edmpicos e Paral\u00edmpicos Rio 2016 em Portugu\u00eas. English:@rio2016_en. Espa\u00f1ol: @rio2016_es.", - "url": "https://t.co/q8z1zrW1rr", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", - "profile_background_color": "FA743E", - "created_at": "Mon Feb 16 17:48:07 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", - "favourites_count": 1422, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685541550772883456", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "rio2016.com/noticias/veloc\u2026", - "url": "https://t.co/kC2A2yILeK", - "expanded_url": "http://www.rio2016.com/noticias/velocista-paralimpico-richard-browne-sofre-acidente", - "indices": [ - 69, - 92 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:20:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "pt", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685541550772883456, - "text": "Velocista Paral\u00edmpico Richard Browne (@winged_foot1) sofre acidente: https://t.co/kC2A2yILeK", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 21007030, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", - "statuses_count": 7247, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21007030/1451309674", - "is_translator": false - }, - { - "time_zone": "Brasilia", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -7200, - "id_str": "88703900", - "following": false, - "friends_count": 600, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rio2016.com/en/home", - "url": "http://t.co/BFr0Z1jKEP", - "expanded_url": "http://www.rio2016.com/en/home", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", - "notifications": false, - "profile_sidebar_fill_color": "A4CC35", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 245859, - "location": "Rio de Janeiro", - "screen_name": "Rio2016_en", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1216, - "name": "Rio 2016", - "profile_use_background_image": true, - "description": "Official Rio 2016\u2122 Olympic and Paralympic Organizing Committee in English. Portugu\u00eas:@rio2016. Espa\u00f1ol: @rio2016_es.", - "url": "http://t.co/BFr0Z1jKEP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Mon Nov 09 16:44:38 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F7AF08", - "lang": "pt", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", - "favourites_count": 1369, - "status": { - "retweet_count": 15, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685566770070032384", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 674, - "h": 450, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 227, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOfWDHWMAAKUqa.png", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CYOfWDHWMAAKUqa.png", - "display_url": "pic.twitter.com/4MM6yua5XY", - "id_str": "685566769432506368", - "expanded_url": "http://twitter.com/Rio2016_en/status/685566770070032384/photo/1", - "id": 685566769432506368, - "url": "https://t.co/4MM6yua5XY" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/ExAthletesAt_R\u2026", - "url": "https://t.co/98llohvym6", - "expanded_url": "http://bit.ly/ExAthletesAt_Rio2016", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [ - { - "indices": [ - 60, - 68 - ], - "text": "Rio2016" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:00:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685566770070032384, - "text": "Elite team of ex-athletes helping ensure stars can shine at #Rio2016 Olympic Games\n\u2728\ud83d\udcaa\nhttps://t.co/98llohvym6 https://t.co/4MM6yua5XY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 20, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 88703900, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", - "statuses_count": 5098, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/88703900/1451306802", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "584263864", - "following": false, - "friends_count": 372, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "005FB3", - "geo_enabled": true, - "followers_count": 642, - "location": "", - "screen_name": "edgett", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 27, - "name": "Sean Edgett", - "profile_use_background_image": true, - "description": "Corporate lawyer at Twitter. Comments here are my own.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", - "profile_background_color": "022330", - "created_at": "Fri May 18 23:43:39 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", - "favourites_count": 1187, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Ginarestani", - "in_reply_to_user_id": 122864275, - "in_reply_to_status_id_str": "684582267168014338", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684582398307110912", - "id": 684582398307110912, - "text": "@Ginarestani @nynashine @nantony345 @theaaronhou whoa whoa whoa, let's not get crazy.", - "in_reply_to_user_id_str": "122864275", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Ginarestani", - "id_str": "122864275", - "id": 122864275, - "indices": [ - 0, - 12 - ], - "name": "Gina Restani" - }, - { - "screen_name": "nynashine", - "id_str": "30391637", - "id": 30391637, - "indices": [ - 13, - 23 - ], - "name": "Nina Shin" - }, - { - "screen_name": "nantony345", - "id_str": "177650140", - "id": 177650140, - "indices": [ - 24, - 35 - ], - "name": "Nisha Antony" - }, - { - "screen_name": "theaaronhou", - "id_str": "3507493098", - "id": 3507493098, - "indices": [ - 36, - 48 - ], - "name": "Aaron Hou" - } - ] - }, - "created_at": "Wed Jan 06 03:48:57 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 3, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684582267168014338, - "lang": "en" - }, - "default_profile_image": false, - "id": 584263864, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", - "statuses_count": 634, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/584263864/1442269032", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "4048046116", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 176502, - "location": "Turn On Our Notifications!", - "screen_name": "24HourPolls", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 101, - "name": "24 Hour Polls", - "profile_use_background_image": true, - "description": "| The Best Polls On Twitter | Original Account | *DM's Are Open For Suggestions!*", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 26 18:33:54 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", - "favourites_count": 609, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 47, - "truncated": false, - "retweeted": false, - "id_str": "685571575861624834", - "id": 685571575861624834, - "text": "Is it attractive when girls smoke weed?", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:19:35 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 67, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 4048046116, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 810, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048046116/1445886946", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2881611", - "following": false, - "friends_count": 1288, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/prashantsri\u2026", - "url": "https://t.co/d3WaCy2EU1", - "expanded_url": "http://www.linkedin.com/in/prashantsridharan", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 11188, - "location": "San Francisco", - "screen_name": "CoolAssPuppy", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 96, - "name": "Prashant S", - "profile_use_background_image": true, - "description": "Twitter Global Director of Developer & Platform Relations. I @SoulCycle, therefore I am. #PopcornHo", - "url": "https://t.co/d3WaCy2EU1", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Thu Mar 29 19:21:15 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", - "favourites_count": 13092, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685583028937035776", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/depresseddarth\u2026", - "url": "https://t.co/8qAMtykCfF", - "expanded_url": "https://twitter.com/depresseddarth/status/685582387909144576", - "indices": [ - 42, - 65 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:05:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685583028937035776, - "text": "I want to use this gif for everything :-) https://t.co/8qAMtykCfF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2881611, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", - "statuses_count": 21189, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2881611/1446596289", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2990843386", - "following": false, - "friends_count": 53, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 818, - "location": "Salt Lake City, UT", - "screen_name": "pinkgrandmas", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 10, - "name": "Pink Grandmas", - "profile_use_background_image": true, - "description": "The @PinkGrandmas who lovingly cheer for their Utah Jazz, and always in pink!", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jan 21 23:13:42 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", - "favourites_count": 108, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "683098129923575808", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 604, - "resize": "fit" - }, - "large": { - "w": 720, - "h": 1280, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 1067, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683098092216823808/pu/img/bE8W1ZgyMVUithji.jpg", - "type": "photo", - "indices": [ - 69, - 92 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683098092216823808/pu/img/bE8W1ZgyMVUithji.jpg", - "display_url": "pic.twitter.com/U2jMFx4IIv", - "id_str": "683098092216823808", - "expanded_url": "http://twitter.com/pinkgrandmas/status/683098129923575808/video/1", - "id": 683098092216823808, - "url": "https://t.co/U2jMFx4IIv" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "gordonhayward", - "id_str": "46704247", - "id": 46704247, - "indices": [ - 39, - 53 - ], - "name": "Gordon Hayward" - }, - { - "screen_name": "utahjazz", - "id_str": "18360370", - "id": 18360370, - "indices": [ - 58, - 67 - ], - "name": "Utah Jazz" - } - ] - }, - "created_at": "Sat Jan 02 01:31:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683098129923575808, - "text": "A message for our most favorite player @gordonhayward! Go @utahjazz! https://t.co/U2jMFx4IIv", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 16, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2990843386, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 139, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2990843386/1421883592", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15105000", - "following": false, - "friends_count": 1161, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "iSachin.com", - "url": "http://t.co/AWr3VV2avy", - "expanded_url": "http://iSachin.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "088253", - "geo_enabled": true, - "followers_count": 20847, - "location": "San Francisco, CA", - "screen_name": "agarwal", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 1324, - "name": "Sachin Agarwal", - "profile_use_background_image": true, - "description": "Product at Twitter. Past: @Stanford, Apple, Founder/CEO of @posterous. I \u2764\ufe0f @kateagarwal, cars, wine, puppies, and foie.", - "url": "http://t.co/AWr3VV2avy", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Fri Jun 13 06:49:22 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", - "favourites_count": 16033, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "capotej", - "in_reply_to_user_id": 8898642, - "in_reply_to_status_id_str": "685529583605579776", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685541537774567424", - "id": 685541537774567424, - "text": "@capotej killing off 100 year old technology? how dare they!", - "in_reply_to_user_id_str": "8898642", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "capotej", - "id_str": "8898642", - "id": 8898642, - "indices": [ - 0, - 8 - ], - "name": "Julio Capote" - } - ] - }, - "created_at": "Fri Jan 08 19:20:14 +0000 2016", - "source": "Twitter for Mac", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685529583605579776, - "lang": "en" - }, - "default_profile_image": false, - "id": 15105000, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "statuses_count": 11183, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15105000/1427478415", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "569900436", - "following": false, - "friends_count": 119, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 436, - "location": "", - "screen_name": "akkhosh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17, - "name": "alex", - "profile_use_background_image": true, - "description": "alex at periscope.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Thu May 03 09:06:30 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", - "favourites_count": 2, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile_image": false, - "id": 569900436, - "blocked_by": false, - "profile_background_tile": false, - "statuses_count": 0, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/569900436/1422657776", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "4027765453", - "following": false, - "friends_count": 22, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 18502, - "location": "", - "screen_name": "DocRivers", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 178, - "name": "doc rivers", - "profile_use_background_image": true, - "description": "Father, Husband, Head Basketball Coach LA Clippers, Maywood Native", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 26 19:49:37 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", - "favourites_count": 0, - "status": { - "retweet_count": 15, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "681236665537400832", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "1.usa.gov/1Hhu4dK", - "url": "https://t.co/XRz0Hdeko3", - "expanded_url": "http://1.usa.gov/1Hhu4dK", - "indices": [ - 72, - 95 - ] - } - ], - "hashtags": [ - { - "indices": [ - 96, - 107 - ], - "text": "GetCovered" - }, - { - "indices": [ - 108, - 127 - ], - "text": "NewYearsResolution" - } - ], - "user_mentions": [] - }, - "created_at": "Sun Dec 27 22:14:12 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 681236665537400832, - "text": "Make your health a priority in the new year! Sign up for 2016 coverage: https://t.co/XRz0Hdeko3 #GetCovered #NewYearsResolution", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 36, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 4027765453, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "54226675", - "following": false, - "friends_count": 220, - "entities": { - "description": { - "urls": [ - { - "display_url": "support.twitter.com/forms/translat\u2026", - "url": "http://t.co/SOm6i336Up", - "expanded_url": "http://support.twitter.com/forms/translation", - "indices": [ - 82, - 104 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "translate.twitter.com", - "url": "https://t.co/K91mYVcFjL", - "expanded_url": "http://translate.twitter.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2948766, - "location": "", - "screen_name": "translator", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2694, - "name": "Translator", - "profile_use_background_image": true, - "description": "Twitter's Translator Community. Got questions or found a bug? Fill out this form: http://t.co/SOm6i336Up", - "url": "https://t.co/K91mYVcFjL", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Jul 06 14:59:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", - "favourites_count": 170, - "status": { - "retweet_count": 48, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684701305839992832", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 575, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYCMNWaW8AA1Tqh.png", - "type": "photo", - "indices": [ - 100, - 123 - ], - "media_url": "http://pbs.twimg.com/media/CYCMNWaW8AA1Tqh.png", - "display_url": "pic.twitter.com/PnOcQVu7So", - "id_str": "684701304342638592", - "expanded_url": "http://twitter.com/translator/status/684701305839992832/photo/1", - "id": 684701304342638592, - "url": "https://t.co/PnOcQVu7So" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 11:41:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684701305839992832, - "text": "We would like to thank our Moderators who help international users enjoy Twitter in their language. https://t.co/PnOcQVu7So", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 136, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 54226675, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", - "statuses_count": 1708, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/54226675/1347394452", - "is_translator": true - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "376825877", - "following": false, - "friends_count": 48, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "opensource.twitter.com", - "url": "http://t.co/Hc7Cv220E7", - "expanded_url": "http://opensource.twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 282835, - "location": "Twitter HQ", - "screen_name": "TwitterOSS", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1987, - "name": "Twitter Open Source", - "profile_use_background_image": true, - "description": "Open Programs at Twitter.", - "url": "http://t.co/Hc7Cv220E7", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", - "profile_background_color": "131516", - "created_at": "Tue Sep 20 15:18:34 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", - "favourites_count": 3323, - "status": { - "retweet_count": 82, - "retweeted_status": { - "retweet_count": 82, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "674709094498893824", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.twitter.com/2015/finatra-2\u2026", - "url": "https://t.co/hhh2C7v3uk", - "expanded_url": "https://blog.twitter.com/2015/finatra-20-the-fast-testable-scala-services-framework-that-powers-twitter", - "indices": [ - 120, - 143 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 09 21:55:58 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 674709094498893824, - "text": "Introducing Finatra 2.0: a high-performance, scalable & testable framework powering production services at Twitter. https://t.co/hhh2C7v3uk", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 140, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "674709290087649280", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "blog.twitter.com/2015/finatra-2\u2026", - "url": "https://t.co/hhh2C7v3uk", - "expanded_url": "https://blog.twitter.com/2015/finatra-20-the-fast-testable-scala-services-framework-that-powers-twitter", - "indices": [ - 143, - 144 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TwitterEng", - "id_str": "6844292", - "id": 6844292, - "indices": [ - 3, - 14 - ], - "name": "Twitter Engineering" - } - ] - }, - "created_at": "Wed Dec 09 21:56:44 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 674709290087649280, - "text": "RT @TwitterEng: Introducing Finatra 2.0: a high-performance, scalable & testable framework powering production services at Twitter. https:/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 376825877, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5355, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/376825877/1396969577", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17874544", - "following": false, - "friends_count": 31, - "entities": { - "description": { - "urls": [ - { - "display_url": "support.twitter.com", - "url": "http://t.co/qq1HEzdMA2", - "expanded_url": "http://support.twitter.com", - "indices": [ - 118, - 140 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "support.twitter.com", - "url": "http://t.co/Vk1NkwU8qP", - "expanded_url": "http://support.twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4604953, - "location": "Twitter HQ", - "screen_name": "Support", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 13844, - "name": "Twitter Support", - "profile_use_background_image": true, - "description": "We Tweet tips and tricks to help you boost your Twitter skills and keep your account secure. For detailed help, visit http://t.co/qq1HEzdMA2.", - "url": "http://t.co/Vk1NkwU8qP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Thu Dec 04 18:51:57 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", - "favourites_count": 300, - "status": { - "retweet_count": 54, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685551636547158016", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "support.twitter.com/articles/15789", - "url": "https://t.co/4fJrONin39", - "expanded_url": "https://support.twitter.com/articles/15789", - "indices": [ - 111, - 134 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:00:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685551636547158016, - "text": "We're here to help you keep your Twitter experience \ud83d\udcaf. Make sure you know how to report a potential violation: https://t.co/4fJrONin39", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 78, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 17874544, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", - "statuses_count": 14056, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17874544/1347394418", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6253282", - "following": false, - "friends_count": 48, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dev.twitter.com", - "url": "http://t.co/78pYTvWfJd", - "expanded_url": "http://dev.twitter.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 5241047, - "location": "San Francisco, CA", - "screen_name": "twitterapi", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 12999, - "name": "Twitter API", - "profile_use_background_image": true, - "description": "The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.", - "url": "http://t.co/78pYTvWfJd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Wed May 23 06:01:13 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", - "favourites_count": 27, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "TheNiceBot", - "in_reply_to_user_id": 3433099685, - "in_reply_to_status_id_str": "673669438504378368", - "retweet_count": 12, - "truncated": false, - "retweeted": false, - "id_str": "673922605531951105", - "id": 673922605531951105, - "text": "@TheNiceBot aww thanks, you're lovely too! :-)", - "in_reply_to_user_id_str": "3433099685", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TheNiceBot", - "id_str": "3433099685", - "id": 3433099685, - "indices": [ - 0, - 11 - ], - "name": "The NiceBot" - } - ] - }, - "created_at": "Mon Dec 07 17:50:44 +0000 2015", - "source": "TweetDeck", - "favorite_count": 16, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 673669438504378368, - "lang": "en" - }, - "default_profile_image": false, - "id": 6253282, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", - "statuses_count": 3554, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1431474710", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "95731075", - "following": false, - "friends_count": 85, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "safety.twitter.com", - "url": "https://t.co/mAjmahDXqp", - "expanded_url": "https://safety.twitter.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 2919314, - "location": "Twitter HQ", - "screen_name": "safety", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 7563, - "name": "Safety", - "profile_use_background_image": true, - "description": "Helping you stay safe on Twitter.", - "url": "https://t.co/mAjmahDXqp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", - "profile_background_color": "022330", - "created_at": "Wed Dec 09 21:00:57 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", - "favourites_count": 5, - "status": { - "retweet_count": 698, - "retweeted_status": { - "retweet_count": 698, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682343018343448576", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amp.twimg.com/v/47960172-638\u2026", - "url": "https://t.co/1SZQnuIxhm", - "expanded_url": "https://amp.twimg.com/v/47960172-638b-42b8-ab59-7f94100d6ba9", - "indices": [ - 83, - 106 - ] - } - ], - "hashtags": [ - { - "indices": [ - 70, - 82 - ], - "text": "TwitterTips" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 23:30:27 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682343018343448576, - "text": "Break free. Add a profile photo to show the world who you really are. #TwitterTips\nhttps://t.co/1SZQnuIxhm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1652, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684170204641804288", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amp.twimg.com/v/47960172-638\u2026", - "url": "https://t.co/1SZQnuIxhm", - "expanded_url": "https://amp.twimg.com/v/47960172-638b-42b8-ab59-7f94100d6ba9", - "indices": [ - 96, - 119 - ] - } - ], - "hashtags": [ - { - "indices": [ - 83, - 95 - ], - "text": "TwitterTips" - } - ], - "user_mentions": [ - { - "screen_name": "twitter", - "id_str": "783214", - "id": 783214, - "indices": [ - 3, - 11 - ], - "name": "Twitter" - } - ] - }, - "created_at": "Tue Jan 05 00:31:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684170204641804288, - "text": "RT @twitter: Break free. Add a profile photo to show the world who you really are. #TwitterTips\nhttps://t.co/1SZQnuIxhm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "TweetDeck" - }, - "default_profile_image": false, - "id": 95731075, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 399, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/95731075/1416521916", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "204343158", - "following": false, - "friends_count": 286, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "1stdibs.com", - "url": "http://t.co/GyCLcPK1G6", - "expanded_url": "http://www.1stdibs.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3E9DE0", - "geo_enabled": true, - "followers_count": 5054, - "location": "New York, NY", - "screen_name": "rosenblattdavid", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 60, - "name": "David Rosenblatt", - "profile_use_background_image": true, - "description": "CEO at 1stdibs", - "url": "http://t.co/GyCLcPK1G6", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 18 13:56:10 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", - "favourites_count": 245, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685556694533935105", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/Recode/status/\u2026", - "url": "https://t.co/L5VbEWyHBl", - "expanded_url": "https://twitter.com/Recode/status/685146065398411264", - "indices": [ - 73, - 96 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:20:27 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685556694533935105, - "text": "75% off seems to be the going rate for discounts on flash sale companies https://t.co/L5VbEWyHBl", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 204343158, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", - "statuses_count": 376, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/204343158/1448985578", - "is_translator": false - }, - { - "time_zone": "Alaska", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -32400, - "id_str": "19417999", - "following": false, - "friends_count": 14503, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "itun.es/us/Q4QZ6", - "url": "https://t.co/1snyy96FWE", - "expanded_url": "https://itun.es/us/Q4QZ6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 57232, - "location": "Invite The Light \u2022 Out now.", - "screen_name": "DaMFunK", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1338, - "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK", - "profile_use_background_image": true, - "description": "\u2022 Modern-Funk | No fads | No sellout \u2022", - "url": "https://t.co/1snyy96FWE", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Jan 23 22:31:59 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", - "favourites_count": 52059, - "status": { - "retweet_count": 1, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "DaMFunK", - "in_reply_to_user_id": 19417999, - "in_reply_to_status_id_str": "685619823364079616", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "685622220455018497", - "id": 685622220455018497, - "text": "@DaMFunK HA.", - "in_reply_to_user_id_str": "19417999", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DaMFunK", - "id_str": "19417999", - "id": 19417999, - "indices": [ - 0, - 8 - ], - "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK" - } - ] - }, - "created_at": "Sat Jan 09 00:40:50 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685619823364079616, - "lang": "und" - }, - "in_reply_to_user_id": null, - "id_str": "685622331998248960", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "YearOfEmpress", - "id_str": "20882943", - "id": 20882943, - "indices": [ - 3, - 17 - ], - "name": "\u091c\u094d\u0935\u0932\u0902\u0924 \u0924\u0932\u0935\u093e\u0930 \u0915\u0940 \u092c\u0947\u091f\u0940" - }, - { - "screen_name": "DaMFunK", - "id_str": "19417999", - "id": 19417999, - "indices": [ - 19, - 27 - ], - "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK" - } - ] - }, - "created_at": "Sat Jan 09 00:41:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685622331998248960, - "text": "RT @YearOfEmpress: @DaMFunK HA.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 19417999, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", - "statuses_count": 41218, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19417999/1441340768", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17230018", - "following": false, - "friends_count": 17946, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Spotify.com", - "url": "http://t.co/jqAb65DqrK", - "expanded_url": "http://Spotify.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "ECEBE8", - "profile_link_color": "1ED760", - "geo_enabled": true, - "followers_count": 1643957, - "location": "", - "screen_name": "Spotify", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 14002, - "name": "Spotify", - "profile_use_background_image": false, - "description": "Music for every moment. Play, discover, and share for free. \r\nNeed support? We're happy to help at @SpotifyCares", - "url": "http://t.co/jqAb65DqrK", - "profile_text_color": "458DBF", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Fri Nov 07 12:14:28 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", - "favourites_count": 4977, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "nachote88", - "in_reply_to_user_id": 70842278, - "in_reply_to_status_id_str": "685572728838066177", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685577838280454144", - "id": 685577838280454144, - "text": "@nachote88 He's never been one to disappoint! \ud83c\udfb6", - "in_reply_to_user_id_str": "70842278", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "nachote88", - "id_str": "70842278", - "id": 70842278, - "indices": [ - 0, - 10 - ], - "name": "Ignacio Rebella" - } - ] - }, - "created_at": "Fri Jan 08 21:44:28 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685572728838066177, - "lang": "en" - }, - "default_profile_image": false, - "id": 17230018, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", - "statuses_count": 23164, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17230018/1450966022", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18948541", - "following": false, - "friends_count": 349, - "entities": { - "description": { - "urls": [ - { - "display_url": "itun.es/us/Vx9p-", - "url": "https://t.co/gLePVn5Mho", - "expanded_url": "http://itun.es/us/Vx9p-", - "indices": [ - 103, - 126 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/pages/Seth-Mac\u2026", - "url": "https://t.co/o4miqWAHnW", - "expanded_url": "http://www.facebook.com/pages/Seth-MacFarlane/14105972607?ref=ts", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 8860999, - "location": "Los Angeles", - "screen_name": "SethMacFarlane", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 32337, - "name": "Seth MacFarlane", - "profile_use_background_image": true, - "description": "The Official Twitter Page of Seth MacFarlane - new album No One Ever Tells You available now on iTunes https://t.co/gLePVn5Mho", - "url": "https://t.co/o4miqWAHnW", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 13 19:04:37 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", - "favourites_count": 0, - "status": { - "retweet_count": 605, - "retweeted_status": { - "retweet_count": 605, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685472301672865794", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 360, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", - "type": "photo", - "indices": [ - 52, - 75 - ], - "media_url": "http://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", - "display_url": "pic.twitter.com/QHfbTkEWXU", - "id_str": "685321946146340864", - "expanded_url": "http://twitter.com/ClickHole/status/685472301672865794/photo/1", - "id": 685321946146340864, - "url": "https://t.co/QHfbTkEWXU" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "clickhole.com/r/754tsd", - "url": "https://t.co/qTHD9SfgX8", - "expanded_url": "http://www.clickhole.com/r/754tsd", - "indices": [ - 28, - 51 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:45:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685472301672865794, - "text": "Here\u2019s A Fucking Anime Quiz https://t.co/qTHD9SfgX8 https://t.co/QHfbTkEWXU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 852, - "contributors": null, - "source": "TweetDeck" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685490467702575104", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 360, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - } - }, - "source_status_id_str": "685472301672865794", - "url": "https://t.co/QHfbTkEWXU", - "media_url": "http://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", - "source_user_id_str": "2377815434", - "id_str": "685321946146340864", - "id": 685321946146340864, - "media_url_https": "https://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", - "type": "photo", - "indices": [ - 67, - 90 - ], - "source_status_id": 685472301672865794, - "source_user_id": 2377815434, - "display_url": "pic.twitter.com/QHfbTkEWXU", - "expanded_url": "http://twitter.com/ClickHole/status/685472301672865794/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "clickhole.com/r/754tsd", - "url": "https://t.co/qTHD9SfgX8", - "expanded_url": "http://www.clickhole.com/r/754tsd", - "indices": [ - 43, - 66 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ClickHole", - "id_str": "2377815434", - "id": 2377815434, - "indices": [ - 3, - 13 - ], - "name": "ClickHole" - } - ] - }, - "created_at": "Fri Jan 08 15:57:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685490467702575104, - "text": "RT @ClickHole: Here\u2019s A Fucking Anime Quiz https://t.co/qTHD9SfgX8 https://t.co/QHfbTkEWXU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Echofon" - }, - "default_profile_image": false, - "id": 18948541, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 5295, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "96829836", - "following": false, - "friends_count": 188, - "entities": { - "description": { - "urls": [ - { - "display_url": "smarturl.it/illmaticxx_itu\u2026", - "url": "http://t.co/GQVoyTHAXi", - "expanded_url": "http://smarturl.it/illmaticxx_itunes", - "indices": [ - 29, - 51 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "TribecaFilm.com/Nas", - "url": "http://t.co/Ol6HETXMsd", - "expanded_url": "http://TribecaFilm.com/Nas", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1896081, - "location": "NYC", - "screen_name": "Nas", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8575, - "name": "Nasir Jones", - "profile_use_background_image": true, - "description": "Illmatic XX now available: \r\nhttp://t.co/GQVoyTHAXi", - "url": "http://t.co/Ol6HETXMsd", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 14 20:03:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", - "favourites_count": 3, - "status": { - "retweet_count": 24, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685575673147191296", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BASxldUpEj8/", - "url": "https://t.co/L3S16gxv5u", - "expanded_url": "https://www.instagram.com/p/BASxldUpEj8/", - "indices": [ - 44, - 67 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 21:35:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685575673147191296, - "text": "Lord Shan! \nMC Shan ladies & gentleman. https://t.co/L3S16gxv5u", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 75, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 96829836, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", - "statuses_count": 4514, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/96829836/1412353651", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "422665701", - "following": false, - "friends_count": 1877, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "smarturl.it/TrapTearsVid", - "url": "https://t.co/bSTapnSbtt", - "expanded_url": "http://smarturl.it/TrapTearsVid", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "0A0A0A", - "profile_link_color": "8F120E", - "geo_enabled": true, - "followers_count": 113330, - "location": "", - "screen_name": "Raury", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 326, - "name": "AWN", - "profile_use_background_image": true, - "description": "being of light , right on time #indigo #millennial new album #AllWeNeed", - "url": "https://t.co/bSTapnSbtt", - "profile_text_color": "A30A0A", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sun Nov 27 14:50:29 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", - "favourites_count": 9694, - "status": { - "retweet_count": 27, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685591537066053632", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 964, - "h": 964, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYO13ZUWkAIASL1.jpg", - "type": "photo", - "indices": [ - 105, - 128 - ], - "media_url": "http://pbs.twimg.com/media/CYO13ZUWkAIASL1.jpg", - "display_url": "pic.twitter.com/GzWdNy9t6a", - "id_str": "685591531584131074", - "expanded_url": "http://twitter.com/Raury/status/685591537066053632/photo/1", - "id": 685591531584131074, - "url": "https://t.co/GzWdNy9t6a" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "6LACK", - "id_str": "27133902", - "id": 27133902, - "indices": [ - 32, - 38 - ], - "name": "bear" - }, - { - "screen_name": "carlonramong", - "id_str": "324541023", - "id": 324541023, - "indices": [ - 79, - 92 - ], - "name": "Carlon Ramong" - } - ] - }, - "created_at": "Fri Jan 08 22:38:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685591537066053632, - "text": "Cabin party in ATL tomorrow for @6LACK \ud83c\udf88\n\nbring swimsuits for the jacuzzi\ud83c\udfc4\ud83c\udfc4hit @carlonramong for details https://t.co/GzWdNy9t6a", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 58, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 422665701, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", - "statuses_count": 35240, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/422665701/1444935009", - "is_translator": false - }, - { - "time_zone": "Baghdad", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 10800, - "id_str": "1499345785", - "following": false, - "friends_count": 31, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 21460, - "location": "", - "screen_name": "Iarsulrich", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 73, - "name": "Lars Ulrich", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", - "profile_background_color": "000000", - "created_at": "Mon Jun 10 20:39:52 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en-gb", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", - "favourites_count": 14, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 239, - "truncated": false, - "retweeted": false, - "id_str": "585814658197499904", - "id": 585814658197499904, - "text": "Ba Dum Ts", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Apr 08 14:41:13 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 310, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "tl" - }, - "default_profile_image": false, - "id": 1499345785, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", - "statuses_count": 1, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499345785/1438456012", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "7698", - "following": false, - "friends_count": 758, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "monkey.org/~marius/", - "url": "https://t.co/Fd7AtAPU13", - "expanded_url": "http://monkey.org/~marius/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "038543", - "geo_enabled": true, - "followers_count": 8439, - "location": "Silicon Valley", - "screen_name": "marius", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 294, - "name": "marius eriksen", - "profile_use_background_image": true, - "description": "I spend most days cursing at lots of very tiny electronics.", - "url": "https://t.co/Fd7AtAPU13", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", - "profile_background_color": "ACDED6", - "created_at": "Sat Oct 07 06:53:18 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", - "favourites_count": 4808, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "danamlewis", - "in_reply_to_user_id": 15165858, - "in_reply_to_status_id_str": "685513010115383296", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685515748110811136", - "id": 685515748110811136, - "text": "@danamlewis @MDT_Diabetes :-( we have seriously discussed hiring someone (task rabbit?) just to deal with insurance and decide companies \u2026", - "in_reply_to_user_id_str": "15165858", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "danamlewis", - "id_str": "15165858", - "id": 15165858, - "indices": [ - 0, - 11 - ], - "name": "Dana | #hcsm #DIYPS" - }, - { - "screen_name": "MDT_Diabetes", - "id_str": "17861851", - "id": 17861851, - "indices": [ - 12, - 25 - ], - "name": "Medtronic Diabetes" - } - ] - }, - "created_at": "Fri Jan 08 17:37:45 +0000 2016", - "source": "Tweetbot for i\u039fS", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685513010115383296, - "lang": "en" - }, - "default_profile_image": false, - "id": 7698, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", - "statuses_count": 7424, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7698/1413383522", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18819527", - "following": false, - "friends_count": 3066, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "travelocity.com", - "url": "http://t.co/GxUHwpGZyC", - "expanded_url": "http://travelocity.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "7AC3EE", - "profile_link_color": "FF0000", - "geo_enabled": true, - "followers_count": 80691, - "location": "", - "screen_name": "RoamingGnome", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1434, - "name": "Travelocity Gnome", - "profile_use_background_image": true, - "description": "The official globetrotting ornament. Nabbed from a very boring garden to travel the world. You can find me on instagram @roaminggnome", - "url": "http://t.co/GxUHwpGZyC", - "profile_text_color": "3D1957", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", - "profile_background_color": "89C9FA", - "created_at": "Fri Jan 09 23:08:58 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", - "favourites_count": 4816, - "status": { - "retweet_count": 11, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685491269808877568", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 1365, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 453, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNarU-WQAAoXfI.jpg", - "type": "photo", - "indices": [ - 91, - 114 - ], - "media_url": "http://pbs.twimg.com/media/CYNarU-WQAAoXfI.jpg", - "display_url": "pic.twitter.com/rmBRcCN0Ax", - "id_str": "685491268701536256", - "expanded_url": "http://twitter.com/RoamingGnome/status/685491269808877568/photo/1", - "id": 685491268701536256, - "url": "https://t.co/rmBRcCN0Ax" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 5, - 19 - ], - "text": "BubbleBathDay" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:00:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685491269808877568, - "text": "This #BubbleBathDay wasn't quite what I had in mind. Good thing I have a vacation planned. https://t.co/rmBRcCN0Ax", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 20, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 18819527, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", - "statuses_count": 10405, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18819527/1398261580", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "32765534", - "following": false, - "friends_count": 326, - "entities": { - "description": { - "urls": [ - { - "display_url": "billsimmonspodcast.com", - "url": "https://t.co/vjQN5lsu7P", - "expanded_url": "http://www.billsimmonspodcast.com", - "indices": [ - 44, - 67 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "grantland.com/features/compl\u2026", - "url": "https://t.co/FAEjPf1Iwj", - "expanded_url": "http://grantland.com/features/complete-column-archives-grantland-edition/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "9D582E", - "geo_enabled": false, - "followers_count": 4767763, - "location": "Los Angeles (via Boston)", - "screen_name": "BillSimmons", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 32238, - "name": "Bill Simmons", - "profile_use_background_image": true, - "description": "Host of The Bill Simmons Podcast - links at https://t.co/vjQN5lsu7P. My HBO show = 2016. Once ran a Grantland cult according to 2 unnamed ESPN execs.", - "url": "https://t.co/FAEjPf1Iwj", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", - "profile_background_color": "8B542B", - "created_at": "Sat Apr 18 03:37:31 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", - "favourites_count": 9, - "status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685579237923794944", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "itunes.apple.com/us/podcast/the\u2026", - "url": "https://t.co/wuVe9E8732", - "expanded_url": "https://itunes.apple.com/us/podcast/the-bill-simmons-podcast/id1043699613?mt=2#episodeGuid=tag%3Asoundcloud%2C2010%3Atracks%2F241011357", - "indices": [ - 106, - 129 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "HousefromDC", - "id_str": "180433733", - "id": 180433733, - "indices": [ - 91, - 103 - ], - "name": "House" - } - ] - }, - "created_at": "Fri Jan 08 21:50:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685579237923794944, - "text": "New BS Pod - did some Friday Rollin' + Round One NFL picks + some NBA talk with a DC-giddy @HousefromDC \n\nhttps://t.co/wuVe9E8732", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 75, - "contributors": null, - "source": "Echofon" - }, - "default_profile_image": false, - "id": 32765534, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", - "statuses_count": 15279, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/32765534/1445653325", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "44039298", - "following": false, - "friends_count": 545, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 3613922, - "location": "New York", - "screen_name": "sethmeyers", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 20373, - "name": "Seth Meyers", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 02 02:35:39 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", - "favourites_count": 49, - "status": { - "retweet_count": 333, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 333, - "truncated": false, - "retweeted": false, - "id_str": "685539256698159104", - "id": 685539256698159104, - "text": "Already lookin' forward to the next time they catch El Chapo.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:11:10 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 604, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685539599377166338", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MrGeorgeWallace", - "id_str": "398490298", - "id": 398490298, - "indices": [ - 3, - 19 - ], - "name": "George Wallace" - } - ] - }, - "created_at": "Fri Jan 08 19:12:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685539599377166338, - "text": "RT @MrGeorgeWallace: Already lookin' forward to the next time they catch El Chapo.", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 44039298, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 6071, - "is_translator": false - }, - { - "time_zone": "UTC", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "104969057", - "following": false, - "friends_count": 493, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "McKellen.com", - "url": "http://t.co/g38r3qsinW", - "expanded_url": "http://www.McKellen.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "050505", - "geo_enabled": false, - "followers_count": 2901659, - "location": "London, UK", - "screen_name": "IanMcKellen", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 12052, - "name": "Ian McKellen", - "profile_use_background_image": true, - "description": "actor and activist", - "url": "http://t.co/g38r3qsinW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Thu Jan 14 23:29:56 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", - "favourites_count": 95, - "status": { - "retweet_count": 63, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685511765812097024", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nyti.ms/1O8JypN", - "url": "https://t.co/IhQSusDn6r", - "expanded_url": "http://nyti.ms/1O8JypN", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 17:21:55 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685511765812097024, - "text": "Ian McKellen Will Take That Seat, if You\u2019re Offering It https://t.co/IhQSusDn6r", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 359, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 104969057, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1314, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/104969057/1449683945", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "241964676", - "following": false, - "friends_count": 226, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "Grantland.com", - "url": "http://t.co/qx60xDYYa3", - "expanded_url": "http://www.Grantland.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/414549914/bg.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F5F5F5", - "profile_link_color": "BF1E2E", - "geo_enabled": false, - "followers_count": 508487, - "location": "Los Angeles, CA", - "screen_name": "Grantland33", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8432, - "name": "Grantland", - "profile_use_background_image": true, - "description": "Home of the Triangle | Hollywood Prospectus.", - "url": "http://t.co/qx60xDYYa3", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jan 23 16:06:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBDDDE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", - "favourites_count": 238, - "status": { - "retweet_count": 14, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "660147525454696448", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "gran.tl/1Womk0x", - "url": "https://t.co/1tWBmhThwU", - "expanded_url": "http://gran.tl/1Womk0x", - "indices": [ - 75, - 98 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "max_cea", - "id_str": "261502837", - "id": 261502837, - "indices": [ - 66, - 74 - ], - "name": "Max Cea" - } - ] - }, - "created_at": "Fri Oct 30 17:33:29 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 660147525454696448, - "text": "We Went There: Clippers-Mavs and DeAndre Jordan Night in L.A., by @max_cea https://t.co/1tWBmhThwU", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 71, - "contributors": null, - "source": "WordPress.com" - }, - "default_profile_image": false, - "id": 241964676, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/414549914/bg.jpg", - "statuses_count": 26406, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/241964676/1441915615", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "615999145", - "blocking": false, - "is_translation_enabled": false, - "id": 615999145, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Sat Jun 23 10:24:53 +0000 2012", - "profile_image_url": "http://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", - "favourites_count": 6, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 766, - "blocked_by": false, - "following": false, - "location": "Los Angeles", - "muting": false, - "friends_count": 127, - "notifications": false, - "screen_name": "KikiShaf", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1, - "is_translator": false, - "name": "Bee Shaffer" - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1440641", - "following": false, - "friends_count": 88, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nytimes.com/arts", - "url": "http://t.co/0H74AaBX8Y", - "expanded_url": "http://www.nytimes.com/arts", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", - "notifications": false, - "profile_sidebar_fill_color": "E7EFF8", - "profile_link_color": "004276", - "geo_enabled": false, - "followers_count": 1861404, - "location": "New York, NY", - "screen_name": "nytimesarts", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 17929, - "name": "New York Times Arts", - "profile_use_background_image": true, - "description": "Arts and entertainment news from The New York Times.", - "url": "http://t.co/0H74AaBX8Y", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Sun Mar 18 20:30:33 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "323232", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", - "favourites_count": 21, - "status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685633001577943041", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "nyti.ms/1OUVKIf", - "url": "https://t.co/dqGYg0x7HE", - "expanded_url": "http://nyti.ms/1OUVKIf", - "indices": [ - 57, - 80 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:23:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685633001577943041, - "text": "Up for Auction: Real Art, Owned by a Seller of Forgeries https://t.co/dqGYg0x7HE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 3, - "contributors": null, - "source": "SocialFlow" - }, - "default_profile_image": false, - "id": 1440641, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", - "statuses_count": 91366, - "is_translator": false - }, - { - "time_zone": "Greenland", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -10800, - "id_str": "16465385", - "following": false, - "friends_count": 536, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nobelprize.org", - "url": "http://t.co/If9cQQEL4i", - "expanded_url": "http://nobelprize.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E2E8EA", - "profile_link_color": "307497", - "geo_enabled": true, - "followers_count": 177864, - "location": "Stockholm, Sweden", - "screen_name": "NobelPrize", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3279, - "name": "The Nobel Prize", - "profile_use_background_image": true, - "description": "The official Twitter feed of the Nobel Prize @NobelPrize #NobelPrize", - "url": "http://t.co/If9cQQEL4i", - "profile_text_color": "023C59", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Fri Sep 26 08:47:58 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", - "favourites_count": 198, - "status": { - "retweet_count": 18, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685486394395996161", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 812, - "h": 1024, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 756, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 428, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNWPivVAAEeQGr.jpg", - "type": "photo", - "indices": [ - 115, - 138 - ], - "media_url": "http://pbs.twimg.com/media/CYNWPivVAAEeQGr.jpg", - "display_url": "pic.twitter.com/4ZGhYYUyvw", - "id_str": "685486393313787905", - "expanded_url": "http://twitter.com/NobelPrize/status/685486394395996161/photo/1", - "id": 685486393313787905, - "url": "https://t.co/4ZGhYYUyvw" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "goo.gl/KhzAMl", - "url": "https://t.co/qEHZEYLQDD", - "expanded_url": "http://goo.gl/KhzAMl", - "indices": [ - 91, - 114 - ] - } - ], - "hashtags": [ - { - "indices": [ - 25, - 35 - ], - "text": "OnThisDay" - }, - { - "indices": [ - 73, - 89 - ], - "text": "NobelPeacePrize" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:41:06 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685486394395996161, - "text": "Emily Greene Balch, born #OnThisDay (1867), Professor and pacifist, 1946 #NobelPeacePrize: https://t.co/qEHZEYLQDD https://t.co/4ZGhYYUyvw", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 22, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16465385, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", - "statuses_count": 4674, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16465385/1450099641", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14550962", - "following": false, - "friends_count": 250, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "agoranomic.org", - "url": "http://t.co/XcGA9qM04D", - "expanded_url": "http://agoranomic.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 213136, - "location": "", - "screen_name": "comex", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 6398, - "name": "comex", - "profile_use_background_image": true, - "description": "Views expressed here do not necessarily belong to my employer. Or to me.", - "url": "http://t.co/XcGA9qM04D", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Apr 26 20:13:43 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", - "favourites_count": 88, - "status": { - "retweet_count": 5065, - "retweeted_status": { - "retweet_count": 5065, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685439245536890880", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 749, - "h": 753, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 603, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", - "type": "photo", - "indices": [ - 80, - 103 - ], - "media_url": "http://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", - "display_url": "pic.twitter.com/hV5XBFe3GS", - "id_str": "685439244677046272", - "expanded_url": "http://twitter.com/wheatles/status/685439245536890880/photo/1", - "id": 685439244677046272, - "url": "https://t.co/hV5XBFe3GS" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 12:33:45 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685439245536890880, - "text": "'What were you calling about?' these Blair/Clinton conversations are incredible https://t.co/hV5XBFe3GS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 5145, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685466846926090240", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 749, - "h": 753, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 603, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 341, - "resize": "fit" - } - }, - "source_status_id_str": "685439245536890880", - "url": "https://t.co/hV5XBFe3GS", - "media_url": "http://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", - "source_user_id_str": "15814799", - "id_str": "685439244677046272", - "id": 685439244677046272, - "media_url_https": "https://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", - "type": "photo", - "indices": [ - 94, - 117 - ], - "source_status_id": 685439245536890880, - "source_user_id": 15814799, - "display_url": "pic.twitter.com/hV5XBFe3GS", - "expanded_url": "http://twitter.com/wheatles/status/685439245536890880/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "wheatles", - "id_str": "15814799", - "id": 15814799, - "indices": [ - 3, - 12 - ], - "name": "wheatles" - } - ] - }, - "created_at": "Fri Jan 08 14:23:26 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685466846926090240, - "text": "RT @wheatles: 'What were you calling about?' these Blair/Clinton conversations are incredible https://t.co/hV5XBFe3GS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 14550962, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 23885, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2813652210", - "following": false, - "friends_count": 2434, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kickstarter.com/projects/19573\u2026", - "url": "https://t.co/giNNN1E1AC", - "expanded_url": "https://www.kickstarter.com/projects/1957344648/meow-the-jewels", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7925, - "location": "", - "screen_name": "MeowTheJewels", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 30, - "name": "#MeowTheJewels", - "profile_use_background_image": true, - "description": "You are listening to Meow The Jewels! Now a RTJ ran account.", - "url": "https://t.co/giNNN1E1AC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 16 20:55:34 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", - "favourites_count": 4674, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "point_GARD", - "in_reply_to_user_id": 172587825, - "in_reply_to_status_id_str": null, - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "677629963361734656", - "id": 677629963361734656, - "text": "@point_gard Meow! Thanks for the donation (and your patience!)\ud83d\ude3a\ud83d\udc49\ud83d\udc4a", - "in_reply_to_user_id_str": "172587825", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "point_GARD", - "id_str": "172587825", - "id": 172587825, - "indices": [ - 0, - 11 - ], - "name": "Revenge of Da Blerds" - } - ] - }, - "created_at": "Thu Dec 17 23:22:27 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2813652210, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3280, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2813652210/1410988523", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "237548529", - "following": false, - "friends_count": 207, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "humansofnewyork.com", - "url": "http://t.co/GdwTtrMd37", - "expanded_url": "http://www.humansofnewyork.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "233294", - "geo_enabled": false, - "followers_count": 382285, - "location": "New York, NY", - "screen_name": "humansofny", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2430, - "name": "Brandon Stanton", - "profile_use_background_image": true, - "description": "Creator of the blog and #1 NYT bestselling book, Humans of New York. I take pictures of people on the street and ask them questions.", - "url": "http://t.co/GdwTtrMd37", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", - "profile_background_color": "6E757A", - "created_at": "Thu Jan 13 02:43:38 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", - "favourites_count": 1094, - "status": { - "retweet_count": 314, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685503105874542592", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 434, - "h": 485, - "resize": "fit" - }, - "small": { - "w": 340, - "h": 379, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 434, - "h": 485, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNlcT-UMAECl5l.png", - "type": "photo", - "indices": [ - 114, - 137 - ], - "media_url": "http://pbs.twimg.com/media/CYNlcT-UMAECl5l.png", - "display_url": "pic.twitter.com/9G3R3nyP08", - "id_str": "685503105362833409", - "expanded_url": "http://twitter.com/humansofny/status/685503105874542592/photo/1", - "id": 685503105362833409, - "url": "https://t.co/9G3R3nyP08" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:47:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685503105874542592, - "text": "\u201cI\u2019m trying to focus on my first year in college while my parents get divorced. They told me when I came home...\" https://t.co/9G3R3nyP08", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1041, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 237548529, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", - "statuses_count": 5325, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/237548529/1412171810", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "16600574", - "following": false, - "friends_count": 80283, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "adambouska.com", - "url": "https://t.co/iCi6oiInzM", - "expanded_url": "http://www.adambouska.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 201279, - "location": "Los Angeles, California", - "screen_name": "bouska", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2582, - "name": "Adam Bouska", - "profile_use_background_image": true, - "description": "Fashion Photographer & NOH8 Campaign Co-Founder \u2605\u2605\u2605\u2605\u2605\ninfo@bouska.net", - "url": "https://t.co/iCi6oiInzM", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Oct 05 10:48:17 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", - "favourites_count": 2581, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 85, - "truncated": false, - "retweeted": false, - "id_str": "685615013038456832", - "id": 685615013038456832, - "text": "love is a terrible thing to hate.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:12:11 +0000 2016", - "source": "Twitter for Android", - "favorite_count": 198, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 16600574, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", - "statuses_count": 15632, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16600574/1435020398", - "is_translator": false - }, - { - "time_zone": "Hawaii", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -36000, - "id_str": "526316060", - "following": false, - "friends_count": 27, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 479570, - "location": "", - "screen_name": "DaveChappelle", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3124, - "name": "David Chappelle", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Mar 16 11:53:45 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", - "favourites_count": 0, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1250, - "truncated": false, - "retweeted": false, - "id_str": "184039213946241024", - "id": 184039213946241024, - "text": "This account has been hacked. I'm deeming it officially bogus. Sincerely, \nChappelle, David K", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sun Mar 25 22:09:02 +0000 2012", - "source": "Twitter for iPhone", - "favorite_count": 1243, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 526316060, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 11, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1188951", - "following": false, - "friends_count": 258, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "DD2E44", - "geo_enabled": true, - "followers_count": 2211, - "location": "San Francisco, CA", - "screen_name": "eyeseewaters", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 64, - "name": "Nandini Ramani", - "profile_use_background_image": true, - "description": "VP of Engineering @Twitter", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Wed Mar 14 23:09:57 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", - "favourites_count": 1069, - "status": { - "retweet_count": 398, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 398, - "truncated": false, - "retweeted": false, - "id_str": "649653805819236352", - "id": 649653805819236352, - "text": "Hello. I am the NiceBot. I want to make the world a nicer place, one tweet at a time. Follow my journey, and have a nice day. #TheNiceBot", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 126, - 137 - ], - "text": "TheNiceBot" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Oct 01 18:35:11 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 1018, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685593294013792256", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 139, - 140 - ], - "text": "TheNiceBot" - } - ], - "user_mentions": [ - { - "screen_name": "TheNiceBot", - "id_str": "3433099685", - "id": 3433099685, - "indices": [ - 3, - 14 - ], - "name": "The NiceBot" - } - ] - }, - "created_at": "Fri Jan 08 22:45:53 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685593294013792256, - "text": "RT @TheNiceBot: Hello. I am the NiceBot. I want to make the world a nicer place, one tweet at a time. Follow my journey, and have a nice da\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1188951, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1867, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "43421130", - "following": false, - "friends_count": 147, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "treasureislandfestival.com", - "url": "http://t.co/1kda6aZhAJ", - "expanded_url": "http://www.treasureislandfestival.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", - "notifications": false, - "profile_sidebar_fill_color": "F1DAC1", - "profile_link_color": "FF9966", - "geo_enabled": false, - "followers_count": 12634, - "location": "San Francisco, CA", - "screen_name": "timfsf", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 576, - "name": "Treasure Island Fest", - "profile_use_background_image": true, - "description": "Thanks to everyone who joined us for the 2015 festival in the bay on October 17-18, 2015! 2016 details coming soon.", - "url": "http://t.co/1kda6aZhAJ", - "profile_text_color": "4F2A10", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", - "profile_background_color": "33CCCC", - "created_at": "Fri May 29 22:09:36 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", - "favourites_count": 810, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "670345177911848960", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CU2LYWbVAAAh91B.jpg", - "type": "photo", - "indices": [ - 109, - 132 - ], - "media_url": "http://pbs.twimg.com/media/CU2LYWbVAAAh91B.jpg", - "display_url": "pic.twitter.com/3V7ChuY7CO", - "id_str": "670345170001395712", - "expanded_url": "http://twitter.com/timfsf/status/670345177911848960/photo/1", - "id": 670345170001395712, - "url": "https://t.co/3V7ChuY7CO" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "tinmanmerchandising.com/index.php?cPat\u2026", - "url": "https://t.co/ma3WRV7zG1", - "expanded_url": "https://tinmanmerchandising.com/index.php?cPath=38_200&sort=3a&gridlist=grid&tplDir=TreasureIslandFestival", - "indices": [ - 85, - 108 - ] - } - ], - "hashtags": [ - { - "indices": [ - 12, - 24 - ], - "text": "BlackFriday" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Nov 27 20:55:19 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 670345177911848960, - "text": "Joining the #BlackFriday party! All clothing 25% OFF + all posters 30% OFF. Shop now https://t.co/ma3WRV7zG1 https://t.co/3V7ChuY7CO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 43421130, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", - "statuses_count": 2478, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43421130/1446147173", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "15241557", - "following": false, - "friends_count": 51, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 11454, - "location": "", - "screen_name": "reedhastings", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 331, - "name": "Reed Hastings", - "profile_use_background_image": true, - "description": "CEO Netflix", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Jun 26 07:24:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", - "favourites_count": 10, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "RichBTIG", - "in_reply_to_user_id": 14992263, - "in_reply_to_status_id_str": "684542793243471872", - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "684640673895600129", - "id": 684640673895600129, - "text": "@RichBTIG @LASairport @SouthwestAir @AmericanAir Drive baby like the rest of us!", - "in_reply_to_user_id_str": "14992263", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "RichBTIG", - "id_str": "14992263", - "id": 14992263, - "indices": [ - 0, - 9 - ], - "name": "Rich Greenfield" - }, - { - "screen_name": "LASairport", - "id_str": "97540285", - "id": 97540285, - "indices": [ - 10, - 21 - ], - "name": "McCarran Airport" - }, - { - "screen_name": "SouthwestAir", - "id_str": "7212562", - "id": 7212562, - "indices": [ - 22, - 35 - ], - "name": "Southwest Airlines" - }, - { - "screen_name": "AmericanAir", - "id_str": "22536055", - "id": 22536055, - "indices": [ - 36, - 48 - ], - "name": "American Airlines" - } - ] - }, - "created_at": "Wed Jan 06 07:40:31 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684542793243471872, - "lang": "en" - }, - "default_profile_image": false, - "id": 15241557, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 40, - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "454423650", - "following": false, - "friends_count": 465, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "006399", - "geo_enabled": true, - "followers_count": 1607, - "location": "San Francisco", - "screen_name": "tinab", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 26, - "name": "Tina Bhatnagar", - "profile_use_background_image": true, - "description": "Love food, sleep and being pampered. Difference between me and a baby? I work @Twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Jan 04 00:04:22 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", - "favourites_count": 1021, - "status": { - "retweet_count": 153, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 153, - "truncated": false, - "retweeted": false, - "id_str": "682344631321772033", - "id": 682344631321772033, - "text": "Today's high: 52 degrees\nTonight's low: finalizing your NYE plans when all you really wanna do is Netflix and pizza", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Dec 30 23:36:52 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 332, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "682367691131207681", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "KarlTheFog", - "id_str": "175091719", - "id": 175091719, - "indices": [ - 3, - 14 - ], - "name": "Karl the Fog" - } - ] - }, - "created_at": "Thu Dec 31 01:08:30 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682367691131207681, - "text": "RT @KarlTheFog: Today's high: 52 degrees\nTonight's low: finalizing your NYE plans when all you really wanna do is Netflix and pizza", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 454423650, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", - "statuses_count": 1713, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/454423650/1451600055", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3751591514", - "following": false, - "friends_count": 21, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 8849, - "location": "Bellevue, WA", - "screen_name": "Steven_Ballmer", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 160, - "name": "Steve Ballmer", - "profile_use_background_image": false, - "description": "Lots going on", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", - "profile_background_color": "000000", - "created_at": "Thu Oct 01 20:37:37 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", - "favourites_count": 1, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 35, - "truncated": false, - "retweeted": false, - "id_str": "659971638838988800", - "id": 659971638838988800, - "text": "Lots going on in the world of tech and government but all I can say today is 2-0. Sweet victory tonight very sweet go clips", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Oct 30 05:54:35 +0000 2015", - "source": "Twitter for Windows Phone", - "favorite_count": 107, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 3751591514, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 12, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3751591514/1444998576", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "845743333", - "following": false, - "friends_count": 80, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 139501, - "location": "", - "screen_name": "JoyceCarolOates", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2614, - "name": "Joyce Carol Oates", - "profile_use_background_image": true, - "description": "Author", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", - "profile_background_color": "022330", - "created_at": "Tue Sep 25 15:36:17 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "A8C7F7", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", - "favourites_count": 55, - "status": { - "retweet_count": 98, - "retweeted_status": { - "retweet_count": 98, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685620504334483456", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "sfg.ly/1OgtGPV", - "url": "https://t.co/Rd2TWChT7k", - "expanded_url": "http://sfg.ly/1OgtGPV", - "indices": [ - 116, - 139 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:34:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685620504334483456, - "text": "Great white shark died after just 3 days in captivity at Japanese aquarium. The cause of death is clear: captivity. https://t.co/Rd2TWChT7k", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 106, - "contributors": null, - "source": "Sprout Social" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685629804163432449", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "sfg.ly/1OgtGPV", - "url": "https://t.co/Rd2TWChT7k", - "expanded_url": "http://sfg.ly/1OgtGPV", - "indices": [ - 126, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "peta", - "id_str": "9890492", - "id": 9890492, - "indices": [ - 3, - 8 - ], - "name": "PETA" - } - ] - }, - "created_at": "Sat Jan 09 01:10:58 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685629804163432449, - "text": "RT @peta: Great white shark died after just 3 days in captivity at Japanese aquarium. The cause of death is clear: captivity. https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 845743333, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", - "statuses_count": 18362, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "292626949", - "following": false, - "friends_count": 499, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2325, - "location": "", - "screen_name": "singhtv", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 49, - "name": "Baljeet Singh", - "profile_use_background_image": true, - "description": "twitter product lead, SF transplant, hip hop head, outdoors lover, father of the coolest kid ever", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Tue May 03 23:41:04 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", - "favourites_count": 1294, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684181167902330880", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 604, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 1066, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1820, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CX6zIVgUAAQPvzw.jpg", - "type": "photo", - "indices": [ - 94, - 117 - ], - "media_url": "http://pbs.twimg.com/media/CX6zIVgUAAQPvzw.jpg", - "display_url": "pic.twitter.com/8dWB4Fkhi8", - "id_str": "684181149199892484", - "expanded_url": "http://twitter.com/singhtv/status/684181167902330880/photo/1", - "id": 684181149199892484, - "url": "https://t.co/8dWB4Fkhi8" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 01:14:36 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -122.514926, - 37.708075 - ], - [ - -122.357031, - 37.708075 - ], - [ - -122.357031, - 37.833238 - ], - [ - -122.514926, - 37.833238 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "San Francisco, CA", - "id": "5a110d312052166f", - "name": "San Francisco" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684181167902330880, - "text": "Last day! Thanks fellow Tweeps for everything you've taught me. I will miss working with you. https://t.co/8dWB4Fkhi8", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 195, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 292626949, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 244, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/292626949/1385075905", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "70976011", - "following": false, - "friends_count": 694, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 775, - "location": "San Francisco, CA", - "screen_name": "jdrishel", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 36, - "name": "Jeremy Rishel", - "profile_use_background_image": true, - "description": "Engineering @twitter ~ @mit CS, Philosophy, & MBA ~ Former @usmc ~ Proud supporter of @calacademy, @americanatheist, @rdfrs, @mca_marines, & @sfjazz", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Sep 02 14:22:44 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", - "favourites_count": 1875, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685541065257021440", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/thinkprogress/\u2026", - "url": "https://t.co/GY3aapX4De", - "expanded_url": "https://twitter.com/thinkprogress/status/685536373319811076", - "indices": [ - 10, - 33 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 19:18:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685541065257021440, - "text": "Amazing. https://t.co/GY3aapX4De", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 70976011, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 791, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70976011/1435923511", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "5943622", - "following": false, - "friends_count": 5838, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "a16z.com", - "url": "http://t.co/kn6m038bNW", - "expanded_url": "http://www.a16z.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "12297A", - "geo_enabled": false, - "followers_count": 464338, - "location": "Menlo Park, CA", - "screen_name": "pmarca", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8619, - "name": "Marc Andreessen", - "profile_use_background_image": true, - "description": "\u201cI don\u2019t mean you\u2019re all going to be happy. You\u2019ll be unhappy \u2013 but in new, exciting and important ways.\u201d \u2013 Edwin Land", - "url": "http://t.co/kn6m038bNW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", - "profile_background_color": "131516", - "created_at": "Thu May 10 23:39:54 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", - "favourites_count": 208234, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "tsoulichakib", - "in_reply_to_user_id": 17716644, - "in_reply_to_status_id_str": "685630933505052672", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685636088732368897", - "id": 685636088732368897, - "text": "@tsoulichakib @munilass They had Dreier dead to rights.", - "in_reply_to_user_id_str": "17716644", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "tsoulichakib", - "id_str": "17716644", - "id": 17716644, - "indices": [ - 0, - 13 - ], - "name": "Chakib Tsouli" - }, - { - "screen_name": "munilass", - "id_str": "283734762", - "id": 283734762, - "indices": [ - 14, - 23 - ], - "name": "Kristi Culpepper" - } - ] - }, - "created_at": "Sat Jan 09 01:35:56 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685630933505052672, - "lang": "en" - }, - "default_profile_image": false, - "id": 5943622, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", - "statuses_count": 83526, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5943622/1419247370", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "127062637", - "following": false, - "friends_count": 169, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "9266CC", - "geo_enabled": true, - "followers_count": 19335, - "location": "California, USA", - "screen_name": "omidkordestani", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 202, - "name": "Omid Kordestani", - "profile_use_background_image": false, - "description": "Executive Chairman @twitter", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Mar 27 23:05:58 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", - "favourites_count": 60, - "status": { - "retweet_count": 28882, - "retweeted_status": { - "retweet_count": 28882, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679137936416329728", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", - "type": "photo", - "indices": [ - 21, - 44 - ], - "media_url": "http://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", - "display_url": "pic.twitter.com/Ll7wg2hL1G", - "id_str": "679137932163358720", - "expanded_url": "http://twitter.com/elonmusk/status/679137936416329728/photo/1", - "id": 679137932163358720, - "url": "https://t.co/Ll7wg2hL1G" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Dec 22 03:14:36 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679137936416329728, - "text": "There and back again https://t.co/Ll7wg2hL1G", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 40965, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "679145995767169024", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - } - }, - "source_status_id_str": "679137936416329728", - "url": "https://t.co/Ll7wg2hL1G", - "media_url": "http://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", - "source_user_id_str": "44196397", - "id_str": "679137932163358720", - "id": 679137932163358720, - "media_url_https": "https://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", - "type": "photo", - "indices": [ - 35, - 58 - ], - "source_status_id": 679137936416329728, - "source_user_id": 44196397, - "display_url": "pic.twitter.com/Ll7wg2hL1G", - "expanded_url": "http://twitter.com/elonmusk/status/679137936416329728/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "elonmusk", - "id_str": "44196397", - "id": 44196397, - "indices": [ - 3, - 12 - ], - "name": "Elon Musk" - } - ] - }, - "created_at": "Tue Dec 22 03:46:37 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 679145995767169024, - "text": "RT @elonmusk: There and back again https://t.co/Ll7wg2hL1G", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 127062637, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 33, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/127062637/1445924351", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3913671", - "following": false, - "friends_count": 634, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thecodemill.biz", - "url": "http://t.co/jfXOm28eAR", - "expanded_url": "http://thecodemill.biz/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", - "notifications": false, - "profile_sidebar_fill_color": "C0DFEC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 1469, - "location": "Santa Cruz/San Francisco, CA", - "screen_name": "bartt", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 55, - "name": "Bart Teeuwisse", - "profile_use_background_image": false, - "description": "Early riser to hack, build, run, bike, climb & ski. Formerly @twitter, @yahoo & various startups", - "url": "http://t.co/jfXOm28eAR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", - "profile_background_color": "F9F9F9", - "created_at": "Mon Apr 09 15:19:14 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", - "favourites_count": 840, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682388006666395648", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/-N7RlWHaFbE", - "url": "https://t.co/drAG8j6GkF", - "expanded_url": "https://youtu.be/-N7RlWHaFbE", - "indices": [ - 81, - 104 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 02:29:13 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", - "country": "United States", - "attributes": {}, - "place_type": "admin", - "bounding_box": { - "coordinates": [ - [ - [ - -124.482003, - 32.528832 - ], - [ - -114.131212, - 32.528832 - ], - [ - -114.131212, - 42.009519 - ], - [ - -124.482003, - 42.009519 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "California, USA", - "id": "fbd6d2f5a4e4a15e", - "name": "California" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682388006666395648, - "text": "Day one of building the Paulk Total Station. Rough cut sheets and made leg jigs. https://t.co/drAG8j6GkF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 3913671, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", - "statuses_count": 7225, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3913671/1405375593", - "is_translator": false - }, - { - "time_zone": "Dublin", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "348942463", - "following": false, - "friends_count": 1107, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ie.linkedin.com/in/stephenmcin\u2026", - "url": "http://t.co/ECVj1K5Thi", - "expanded_url": "http://ie.linkedin.com/in/stephenmcintyre", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFF7CC", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 11958, - "location": "EMEA HQ, Dublin, Ireland", - "screen_name": "stephenpmc", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 179, - "name": "Stephen McIntyre", - "profile_use_background_image": true, - "description": "Building Twitter's business in Europe, Middle East, and Africa. VP Sales, MD Ireland.", - "url": "http://t.co/ECVj1K5Thi", - "profile_text_color": "0C3E53", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", - "profile_background_color": "BADFCD", - "created_at": "Fri Aug 05 07:57:24 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", - "favourites_count": 3641, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685534573388804097", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/EPN/status/685\u2026", - "url": "https://t.co/deWO9KQSUX", - "expanded_url": "https://twitter.com/EPN/status/685526304058294272", - "indices": [ - 49, - 72 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 18:52:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685534573388804097, - "text": "Mexican President announces capture of El Chapo. https://t.co/deWO9KQSUX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 348942463, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", - "statuses_count": 3900, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/348942463/1347467641", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18700629", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sciencedaily.com", - "url": "http://t.co/DQWVlXDGLC", - "expanded_url": "http://www.sciencedaily.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 171071, - "location": "Rockville, MD", - "screen_name": "ScienceDaily", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 5572, - "name": "ScienceDaily", - "profile_use_background_image": true, - "description": "Visit ScienceDaily to read breaking news about the latest discoveries in science, health, the environment, and technology.", - "url": "http://t.co/DQWVlXDGLC", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Tue Jan 06 23:14:22 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", - "favourites_count": 0, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685583808477835264", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 317, - "h": 360, - "resize": "fit" - }, - "large": { - "w": 317, - "h": 360, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 317, - "h": 360, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOu12SUoAA9qGW.jpg", - "type": "photo", - "indices": [ - 65, - 88 - ], - "media_url": "http://pbs.twimg.com/media/CYOu12SUoAA9qGW.jpg", - "display_url": "pic.twitter.com/RagFaxRhGm", - "id_str": "685583808419110912", - "expanded_url": "http://twitter.com/ScienceDaily/status/685583808477835264/photo/1", - "id": 685583808419110912, - "url": "https://t.co/RagFaxRhGm" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "dlvr.it/DD7PGt", - "url": "https://t.co/tC3IyQwb7T", - "expanded_url": "http://dlvr.it/DD7PGt", - "indices": [ - 41, - 64 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:08:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "cy", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685583808477835264, - "text": "Non-Circadian Biological Rhythm in Teeth https://t.co/tC3IyQwb7T https://t.co/RagFaxRhGm", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "dlvr.it" - }, - "default_profile_image": false, - "id": 18700629, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 27241, - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "23331708", - "following": false, - "friends_count": 495, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "247laundryservice.com", - "url": "https://t.co/iLa6wu5cWo", - "expanded_url": "http://www.247laundryservice.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "7D7D7D", - "geo_enabled": true, - "followers_count": 33472, - "location": "Brooklyn", - "screen_name": "jasonwstein", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 231, - "name": "Jason Stein", - "profile_use_background_image": false, - "description": "founder/ceo of @247LS + @bycycle. partner at @WindforceVC.", - "url": "https://t.co/iLa6wu5cWo", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Sun Mar 08 17:45:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", - "favourites_count": 22892, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685629486008799233", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/247ls/status/6\u2026", - "url": "https://t.co/taOld1cZvY", - "expanded_url": "https://twitter.com/247ls/status/685610657870393344", - "indices": [ - 48, - 71 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jasonwstein", - "id_str": "23331708", - "id": 23331708, - "indices": [ - 34, - 46 - ], - "name": "Jason Stein" - } - ] - }, - "created_at": "Sat Jan 09 01:09:42 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685629486008799233, - "text": "WHAT IS YOUR PEACH STRATEGY?!\ud83c\udf51 cc @jasonwstein https://t.co/taOld1cZvY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685629699360440320", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/247ls/status/6\u2026", - "url": "https://t.co/taOld1cZvY", - "expanded_url": "https://twitter.com/247ls/status/685610657870393344", - "indices": [ - 63, - 86 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MikePetes", - "id_str": "55116303", - "id": 55116303, - "indices": [ - 3, - 13 - ], - "name": "iSeeDigital" - }, - { - "screen_name": "jasonwstein", - "id_str": "23331708", - "id": 23331708, - "indices": [ - 49, - 61 - ], - "name": "Jason Stein" - } - ] - }, - "created_at": "Sat Jan 09 01:10:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685629699360440320, - "text": "RT @MikePetes: WHAT IS YOUR PEACH STRATEGY?!\ud83c\udf51 cc @jasonwstein https://t.co/taOld1cZvY", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 23331708, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", - "statuses_count": 19834, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/23331708/1435423055", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3668032217", - "following": false, - "friends_count": 192, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jamesblaketennis.com", - "url": "http://t.co/CMTAZXOYcQ", - "expanded_url": "http://jamesblaketennis.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 8355, - "location": "", - "screen_name": "JRBlake", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 135, - "name": "James Blake", - "profile_use_background_image": true, - "description": "Former Professional Tennis Player, New York Times Best Selling Author, and proud Husband and Father. Founder of the James Blake Foundation.", - "url": "http://t.co/CMTAZXOYcQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Sep 15 21:43:58 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", - "favourites_count": 590, - "status": { - "retweet_count": 13, - "retweeted_status": { - "retweet_count": 13, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685480670643146752", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "volvocarsopen.com/tickets/powers\u2026", - "url": "https://t.co/IxjNGbhZN9", - "expanded_url": "http://volvocarsopen.com/tickets/powersharesseries/", - "indices": [ - 70, - 93 - ] - }, - { - "display_url": "twitter.com/andyroddick/st\u2026", - "url": "https://t.co/4pDrSuBdw6", - "expanded_url": "https://twitter.com/andyroddick/status/685470905523240960", - "indices": [ - 94, - 117 - ] - } - ], - "hashtags": [ - { - "indices": [ - 53, - 57 - ], - "text": "chs" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 15:18:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685480670643146752, - "text": "It's true! Roddick, Agassi, Blake & Fish will in #chs on April 9. https://t.co/IxjNGbhZN9 https://t.co/4pDrSuBdw6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 36, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685585393513701376", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "volvocarsopen.com/tickets/powers\u2026", - "url": "https://t.co/IxjNGbhZN9", - "expanded_url": "http://volvocarsopen.com/tickets/powersharesseries/", - "indices": [ - 89, - 112 - ] - }, - { - "display_url": "twitter.com/andyroddick/st\u2026", - "url": "https://t.co/4pDrSuBdw6", - "expanded_url": "https://twitter.com/andyroddick/status/685470905523240960", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [ - { - "indices": [ - 72, - 76 - ], - "text": "chs" - } - ], - "user_mentions": [ - { - "screen_name": "VolvoCarsOpen", - "id_str": "69045204", - "id": 69045204, - "indices": [ - 3, - 17 - ], - "name": "Volvo Cars Open" - } - ] - }, - "created_at": "Fri Jan 08 22:14:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685585393513701376, - "text": "RT @VolvoCarsOpen: It's true! Roddick, Agassi, Blake & Fish will in #chs on April 9. https://t.co/IxjNGbhZN9 https://t.co/4pDrSuBdw6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3668032217, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 342, - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "1263452575", - "following": false, - "friends_count": 149, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paperrockmusic.com", - "url": "http://t.co/HG6rAVrAPT", - "expanded_url": "http://paperrockmusic.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 99, - "location": "Brooklyn, Ny", - "screen_name": "PaperrockRcrds", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 3, - "name": "Paperrock Records", - "profile_use_background_image": true, - "description": "Independent Record Label founded by World renown Hip-Hop artist Spliff Star Also known as Mr. Lewis |\r\nInstagram - Paperrockrecords #BigRings", - "url": "http://t.co/HG6rAVrAPT", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Mar 13 03:11:40 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", - "favourites_count": 3, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": 1263452575, - "possibly_sensitive": false, - "id_str": "328256590006329345", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/Yn261EQoww/", - "url": "http://t.co/6TtLEzXxpB", - "expanded_url": "http://instagram.com/p/Yn261EQoww/", - "indices": [ - 104, - 126 - ] - } - ], - "hashtags": [ - { - "indices": [ - 56, - 65 - ], - "text": "BIGRINGS" - } - ], - "user_mentions": [ - { - "screen_name": "PaperrockRcrds", - "id_str": "1263452575", - "id": 1263452575, - "indices": [ - 0, - 15 - ], - "name": "Paperrock Records" - }, - { - "screen_name": "STARSPLIFF", - "id_str": "21628325", - "id": 21628325, - "indices": [ - 66, - 77 - ], - "name": "MR.LEWIS" - }, - { - "screen_name": "Bugs_Kalhune", - "id_str": "34973816", - "id": 34973816, - "indices": [ - 89, - 102 - ], - "name": "Bugs kalhune" - } - ] - }, - "created_at": "Sat Apr 27 21:17:24 +0000 2013", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "1263452575", - "place": null, - "in_reply_to_screen_name": "PaperrockRcrds", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 328256590006329345, - "text": "@paperrockrcrds ITS NOT JUST A MOVEMENT ITS A LIFESTYLE #BIGRINGS @starspliff bonasty550 @Bugs_Kalhune\u2026 http://t.co/6TtLEzXxpB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Instagram" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "328256723167100928", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/Yn261EQoww/", - "url": "http://t.co/6TtLEzXxpB", - "expanded_url": "http://instagram.com/p/Yn261EQoww/", - "indices": [ - 116, - 138 - ] - } - ], - "hashtags": [ - { - "indices": [ - 68, - 77 - ], - "text": "BIGRINGS" - } - ], - "user_mentions": [ - { - "screen_name": "MEP247", - "id_str": "38024996", - "id": 38024996, - "indices": [ - 3, - 10 - ], - "name": "M.E.P MUSIC" - }, - { - "screen_name": "PaperrockRcrds", - "id_str": "1263452575", - "id": 1263452575, - "indices": [ - 12, - 27 - ], - "name": "Paperrock Records" - }, - { - "screen_name": "STARSPLIFF", - "id_str": "21628325", - "id": 21628325, - "indices": [ - 78, - 89 - ], - "name": "MR.LEWIS" - }, - { - "screen_name": "Bugs_Kalhune", - "id_str": "34973816", - "id": 34973816, - "indices": [ - 101, - 114 - ], - "name": "Bugs kalhune" - } - ] - }, - "created_at": "Sat Apr 27 21:17:56 +0000 2013", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 328256723167100928, - "text": "RT @MEP247: @paperrockrcrds ITS NOT JUST A MOVEMENT ITS A LIFESTYLE #BIGRINGS @starspliff bonasty550 @Bugs_Kalhune\u2026 http://t.co/6TtLEzXxpB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Echofon" - }, - "default_profile_image": false, - "id": 1263452575, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", - "statuses_count": 45, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1263452575/1365098791", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1085", - "following": false, - "friends_count": 206, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "niallkennedy.com", - "url": "http://t.co/JhRVjTpizS", - "expanded_url": "http://www.niallkennedy.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 1847, - "location": "San Francisco, CA", - "screen_name": "niall", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 87, - "name": "Niall Kennedy", - "profile_use_background_image": false, - "description": "Tech, food, puppies, and nature in and around San Francisco.", - "url": "http://t.co/JhRVjTpizS", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Sun Jul 16 00:43:24 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", - "favourites_count": 34, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 14397792, - "possibly_sensitive": false, - "id_str": "680907448635396096", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "anchordistilling.com/brand/anchor/#\u2026", - "url": "https://t.co/V07UrX1g2R", - "expanded_url": "http://www.anchordistilling.com/brand/anchor/#anchor-christmas-spirit", - "indices": [ - 84, - 107 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ScottBeale", - "id_str": "14397792", - "id": 14397792, - "indices": [ - 0, - 11 - ], - "name": "Scott Beale" - }, - { - "screen_name": "AnchorBrewing", - "id_str": "388456067", - "id": 388456067, - "indices": [ - 12, - 26 - ], - "name": "Anchor Brewing" - } - ] - }, - "created_at": "Sun Dec 27 00:26:01 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "14397792", - "place": null, - "in_reply_to_screen_name": "ScottBeale", - "in_reply_to_status_id_str": "680870121104084994", - "truncated": false, - "id": 680907448635396096, - "text": "@ScottBeale @AnchorBrewing last year's beer now exists in double-distilled form too https://t.co/V07UrX1g2R", - "coordinates": null, - "in_reply_to_status_id": 680870121104084994, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 1085, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 1321, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1085/1420868587", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18825961", - "following": false, - "friends_count": 1086, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/skrillex", - "url": "http://t.co/kEuzso7gAM", - "expanded_url": "http://facebook.com/skrillex", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 4720926, - "location": "\u00dcT: 33.997971,-118.280807", - "screen_name": "Skrillex", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 12267, - "name": "SKRILLEX", - "profile_use_background_image": true, - "description": "your friend \u2022 insta / snap: Skrillex", - "url": "http://t.co/kEuzso7gAM", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Jan 10 03:49:35 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", - "favourites_count": 2851, - "status": { - "retweet_count": 356, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685618210050187264", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/aAv8AtxuF8s", - "url": "https://t.co/4gYP5AnuSj", - "expanded_url": "https://youtu.be/aAv8AtxuF8s", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Torro_Torro", - "id_str": "74788519", - "id": 74788519, - "indices": [ - 49, - 61 - ], - "name": "TORRO TORRO" - } - ] - }, - "created_at": "Sat Jan 09 00:24:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685618210050187264, - "text": "also stoked to finally share the remix i did for @Torro_Torro with you guys : ) https://t.co/4gYP5AnuSj", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 976, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 18825961, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 13385, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18825961/1398372903", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14248315", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "errolmorris.com", - "url": "http://t.co/8y1kL5WTwP", - "expanded_url": "http://www.errolmorris.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 50992, - "location": "Cambridge, MA", - "screen_name": "errolmorris", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2255, - "name": "errolmorris", - "profile_use_background_image": true, - "description": "writer, filmmaker, something else maybe...", - "url": "http://t.co/8y1kL5WTwP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Sat Mar 29 00:53:54 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", - "favourites_count": 1, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 4, - "truncated": false, - "retweeted": false, - "id_str": "668005462181289984", - "id": 668005462181289984, - "text": "Why do people worry so much about what others might think? (Quote from \"Real Enemies,\" Kathryn Olmsted)", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Nov 21 09:58:07 +0000 2015", - "source": "Echofon", - "favorite_count": 16, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14248315, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", - "statuses_count": 3914, - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "14065609", - "following": false, - "friends_count": 563, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/aparnacd", - "url": "http://t.co/YU1CzLEyBM", - "expanded_url": "http://www.linkedin.com/in/aparnacd", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 1803, - "location": "San Francisco Bay area", - "screen_name": "aparnacd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 68, - "name": "Aparna Chennapragada", - "profile_use_background_image": true, - "description": "Head of product, Google Now. Previously at Akamai, MIT, UT Austin, IIT Madras.", - "url": "http://t.co/YU1CzLEyBM", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", - "profile_background_color": "EDECE9", - "created_at": "Sat Mar 01 17:32:31 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "D3D2CF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", - "favourites_count": 321, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677317176429121537", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/google/status/\u2026", - "url": "https://t.co/t1PEYrBaa6", - "expanded_url": "https://twitter.com/google/status/677258031868981248", - "indices": [ - 20, - 43 - ] - } - ], - "hashtags": [ - { - "indices": [ - 5, - 18 - ], - "text": "YearInSearch" - } - ], - "user_mentions": [] - }, - "created_at": "Thu Dec 17 02:39:33 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677317176429121537, - "text": "2015 #YearInSearch https://t.co/t1PEYrBaa6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 14065609, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", - "statuses_count": 177, - "is_translator": false - }, - { - "time_zone": "Sydney", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 39600, - "id_str": "14563623", - "following": false, - "friends_count": 132, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rethrick.com/p/about/", - "url": "http://t.co/ARYETd4QIZ", - "expanded_url": "http://rethrick.com/p/about/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 4244, - "location": "San Francisco, California", - "screen_name": "dhanji", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 302, - "name": "Dhanji R. Prasanna", - "profile_use_background_image": true, - "description": "aspiring mad scientist", - "url": "http://t.co/ARYETd4QIZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Apr 28 01:03:24 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", - "favourites_count": 556, - "status": { - "retweet_count": 7131, - "retweeted_status": { - "retweet_count": 7131, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "526770571728531456", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", - "type": "photo", - "indices": [ - 84, - 106 - ], - "media_url": "http://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", - "display_url": "pic.twitter.com/sqiNaYGDQy", - "id_str": "526770570625433601", - "expanded_url": "http://twitter.com/heathercmiller/status/526770571728531456/photo/1", - "id": 526770570625433601, - "url": "http://t.co/sqiNaYGDQy" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jamesiry", - "id_str": "19044984", - "id": 19044984, - "indices": [ - 40, - 49 - ], - "name": "James Iry" - }, - { - "screen_name": "databricks", - "id_str": "1562518867", - "id": 1562518867, - "indices": [ - 50, - 61 - ], - "name": "Databricks" - } - ] - }, - "created_at": "Mon Oct 27 16:21:05 +0000 2014", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 526770571728531456, - "text": "Carved something scary into pumpkin cc/ @jamesiry @databricks (office jackolantern) http://t.co/sqiNaYGDQy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4372, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "657784111738716160", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 399, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - } - }, - "source_status_id_str": "526770571728531456", - "url": "http://t.co/sqiNaYGDQy", - "media_url": "http://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", - "source_user_id_str": "22874473", - "id_str": "526770570625433601", - "id": 526770570625433601, - "media_url_https": "https://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", - "type": "photo", - "indices": [ - 104, - 126 - ], - "source_status_id": 526770571728531456, - "source_user_id": 22874473, - "display_url": "pic.twitter.com/sqiNaYGDQy", - "expanded_url": "http://twitter.com/heathercmiller/status/526770571728531456/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "heathercmiller", - "id_str": "22874473", - "id": 22874473, - "indices": [ - 3, - 18 - ], - "name": "Heather Miller" - }, - { - "screen_name": "jamesiry", - "id_str": "19044984", - "id": 19044984, - "indices": [ - 60, - 69 - ], - "name": "James Iry" - }, - { - "screen_name": "databricks", - "id_str": "1562518867", - "id": 1562518867, - "indices": [ - 70, - 81 - ], - "name": "Databricks" - } - ] - }, - "created_at": "Sat Oct 24 05:02:07 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 657784111738716160, - "text": "RT @heathercmiller: Carved something scary into pumpkin cc/ @jamesiry @databricks (office jackolantern) http://t.co/sqiNaYGDQy", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Tweetbot for i\u039fS" - }, - "default_profile_image": false, - "id": 14563623, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 14711, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "39623638", - "following": false, - "friends_count": 7444, - "entities": { - "description": { - "urls": [ - { - "display_url": "s.sho.com/1mGJrJp", - "url": "https://t.co/TOH5yZnKGu", - "expanded_url": "http://s.sho.com/1mGJrJp", - "indices": [ - 84, - 107 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "sho.com/sports", - "url": "https://t.co/kvwbT7SmMj", - "expanded_url": "http://sho.com/sports", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 232338, - "location": "New York City", - "screen_name": "SHOsports", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1446, - "name": "SHOWTIME SPORTS", - "profile_use_background_image": true, - "description": "Home of Championship Boxing & award-winning documentaries. Rules: https://t.co/TOH5yZnKGu", - "url": "https://t.co/kvwbT7SmMj", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", - "profile_background_color": "131516", - "created_at": "Tue May 12 23:13:03 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", - "favourites_count": 2329, - "status": { - "retweet_count": 17, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685585686460682240", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "amp.twimg.com/v/1b51d81c-4d6\u2026", - "url": "https://t.co/LsTxMgCT2w", - "expanded_url": "https://amp.twimg.com/v/1b51d81c-4d65-4764-9ee1-f255d06d8fdd", - "indices": [ - 119, - 142 - ] - } - ], - "hashtags": [ - { - "indices": [ - 104, - 118 - ], - "text": "WilderSzpilka" - } - ], - "user_mentions": [ - { - "screen_name": "szpilka_artur", - "id_str": "2203413204", - "id": 2203413204, - "indices": [ - 1, - 15 - ], - "name": "Artur Szpilka" - } - ] - }, - "created_at": "Fri Jan 08 22:15:39 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685585686460682240, - "text": ".@szpilka_artur fought his way into the ring & has a chance to be the 1st Polish Heavyweight Champ. #WilderSzpilka\nhttps://t.co/LsTxMgCT2w", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 31, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 39623638, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 29318, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/39623638/1451521993", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "17901282", - "following": false, - "friends_count": 31187, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "hbo.com/boxing/", - "url": "http://t.co/MyHnldJu4d", - "expanded_url": "http://www.hbo.com/boxing/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "949494", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 434808, - "location": "New York, NY", - "screen_name": "HBOboxing", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2954, - "name": "HBOboxing", - "profile_use_background_image": false, - "description": "*By tagging us in a tweet, you consent to allowing HBO Sports to use and showcase it in any media* Instagram/Snapchat: @HBOboxing", - "url": "http://t.co/MyHnldJu4d", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Dec 05 16:43:16 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", - "favourites_count": 94, - "status": { - "retweet_count": 46, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 46, - "truncated": false, - "retweeted": false, - "id_str": "685186658585559041", - "id": 685186658585559041, - "text": "I'm fighting the bests in the sport cuz I don't take boxing as a business, boxing is a passion for me. #boxing #pleasethecrowd @HBOboxing", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 104, - 111 - ], - "text": "boxing" - }, - { - "indices": [ - 112, - 127 - ], - "text": "pleasethecrowd" - } - ], - "user_mentions": [ - { - "screen_name": "HBOboxing", - "id_str": "17901282", - "id": 17901282, - "indices": [ - 128, - 138 - ], - "name": "HBOboxing" - } - ] - }, - "created_at": "Thu Jan 07 19:50:04 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 82, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "685390200466440192", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 125, - 132 - ], - "text": "boxing" - }, - { - "indices": [ - 133, - 140 - ], - "text": "pleasethecrowd" - } - ], - "user_mentions": [ - { - "screen_name": "jeanpascalchamp", - "id_str": "82261541", - "id": 82261541, - "indices": [ - 3, - 19 - ], - "name": "Jean Pascal" - }, - { - "screen_name": "HBOboxing", - "id_str": "17901282", - "id": 17901282, - "indices": [ - 139, - 140 - ], - "name": "HBOboxing" - } - ] - }, - "created_at": "Fri Jan 08 09:18:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685390200466440192, - "text": "RT @jeanpascalchamp: I'm fighting the bests in the sport cuz I don't take boxing as a business, boxing is a passion for me. #boxing #pleas\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 17901282, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", - "statuses_count": 21087, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17901282/1448175844", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3320010078", - "following": false, - "friends_count": 47, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/extremeownersh\u2026", - "url": "http://t.co/6Lnf7gknOo", - "expanded_url": "http://facebook.com/extremeownership", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 23709, - "location": "", - "screen_name": "jockowillink", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 194, - "name": "Jocko Willink", - "profile_use_background_image": false, - "description": "Leader; follower. Reader; writer. Speaker; listener. Student; teacher. \n#DisciplineEqualsFreedom\n#ExtremeOwnership", - "url": "http://t.co/6Lnf7gknOo", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Aug 19 13:39:44 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", - "favourites_count": 8988, - "status": { - "retweet_count": 6, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685472957599191040", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNKA7FWAAM_hWU.jpg", - "type": "photo", - "indices": [ - 27, - 50 - ], - "media_url": "http://pbs.twimg.com/media/CYNKA7FWAAM_hWU.jpg", - "display_url": "pic.twitter.com/ZMGrCZ2Tvu", - "id_str": "685472948011008003", - "expanded_url": "http://twitter.com/jockowillink/status/685472957599191040/photo/1", - "id": 685472948011008003, - "url": "https://t.co/ZMGrCZ2Tvu" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 14:47:43 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685472957599191040, - "text": "Aftermath. Repeat process. https://t.co/ZMGrCZ2Tvu", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 83, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3320010078, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 8293, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320010078/1443236759", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "24393384", - "following": false, - "friends_count": 2123, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 141012, - "location": "NYC", - "screen_name": "40oz_VAN", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 546, - "name": "40", - "profile_use_background_image": true, - "description": "40ozVAN@gmail.com", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sat Mar 14 16:45:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", - "favourites_count": 3103, - "status": { - "retweet_count": 37, - "in_reply_to_user_id": null, - "possibly_sensitive": true, - "id_str": "685632158170353666", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 604, - "resize": "fit" - }, - "large": { - "w": 720, - "h": 1280, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 600, - "h": 1067, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685631987332194305/pu/img/mfMyOXVZE2J2F3cr.jpg", - "type": "photo", - "indices": [ - 10, - 33 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685631987332194305/pu/img/mfMyOXVZE2J2F3cr.jpg", - "display_url": "pic.twitter.com/EMAsqu18fZ", - "id_str": "685631987332194305", - "expanded_url": "http://twitter.com/40oz_VAN/status/685632158170353666/video/1", - "id": 685631987332194305, - "url": "https://t.co/EMAsqu18fZ" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:20:19 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/3b77caf94bfc81fe.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -118.668404, - 33.704538 - ], - [ - -118.155409, - 33.704538 - ], - [ - -118.155409, - 34.337041 - ], - [ - -118.668404, - 34.337041 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Los Angeles, CA", - "id": "3b77caf94bfc81fe", - "name": "Los Angeles" - }, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685632158170353666, - "text": "I love LA https://t.co/EMAsqu18fZ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 130, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 24393384, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", - "statuses_count": 130490, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/24393384/1452240381", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "1639866613", - "following": false, - "friends_count": 280, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/pub/dave-free/\u2026", - "url": "https://t.co/iBhESeXA5c", - "expanded_url": "http://www.linkedin.com/pub/dave-free/82/420/ba1/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 16652, - "location": "LAX", - "screen_name": "miyatola", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 92, - "name": "Dave Free", - "profile_use_background_image": true, - "description": "President of TDE | Management & Creative for Kendrick Lamar | Jay Rock | AB-Soul | ScHoolboy Q | Isaiah Rashad | SZA | the little homies |Digi+Phonics |", - "url": "https://t.co/iBhESeXA5c", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Fri Aug 02 07:22:39 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", - "favourites_count": 26, - "status": { - "retweet_count": 14, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685555521907081216", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "on.mtv.com/1RGTGtJ", - "url": "https://t.co/XNC4l2WRz3", - "expanded_url": "http://on.mtv.com/1RGTGtJ", - "indices": [ - 58, - 81 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "MTVNews", - "id_str": "40076725", - "id": 40076725, - "indices": [ - 86, - 94 - ], - "name": "MTV News" - } - ] - }, - "created_at": "Fri Jan 08 20:15:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685555521907081216, - "text": "Inside Top Dawg Entertainment's Christmas In The Projects https://t.co/XNC4l2WRz3 via @MTVNews", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 28, - "contributors": null, - "source": "Mobile Web" - }, - "default_profile_image": false, - "id": 1639866613, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", - "statuses_count": 687, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1639866613/1448157283", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "99841232", - "following": false, - "friends_count": 812, - "entities": { - "description": { - "urls": [ - { - "display_url": "soundcloud.com/young-magic", - "url": "https://t.co/q6ASiQNDfX", - "expanded_url": "https://soundcloud.com/young-magic", - "indices": [ - 22, - 45 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "youngmagicsounds.com", - "url": "http://t.co/jz4VuRfCjB", - "expanded_url": "http://youngmagicsounds.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 8999, - "location": "Brooklyn, NY \u262f", - "screen_name": "ItsYoungMagic", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 76, - "name": "Young Magic", - "profile_use_background_image": true, - "description": "Melati + Izak \u30b7\u30eb\u30af\u5922\u307f\u308b\u4eba https://t.co/q6ASiQNDfX", - "url": "http://t.co/jz4VuRfCjB", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Mon Dec 28 02:47:34 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", - "favourites_count": 510, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "__1987", - "in_reply_to_user_id": 106246844, - "in_reply_to_status_id_str": "683843464010661888", - "retweet_count": 1, - "truncated": false, - "retweeted": false, - "id_str": "683855685822623744", - "id": 683855685822623744, - "text": "@__1987 yes! but no shows in Tokyo this time. lookout in the summer \ud83c\udf1e", - "in_reply_to_user_id_str": "106246844", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "__1987", - "id_str": "106246844", - "id": 106246844, - "indices": [ - 0, - 7 - ], - "name": "aka neco." - } - ] - }, - "created_at": "Mon Jan 04 03:41:15 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 683843464010661888, - "lang": "en" - }, - "default_profile_image": false, - "id": 99841232, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", - "statuses_count": 1074, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/99841232/1424777262", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2194124415", - "following": false, - "friends_count": 652, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 20379, - "location": "United Kingdom", - "screen_name": "ZiauddinY", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 134, - "name": "Ziauddin Yousafzai", - "profile_use_background_image": true, - "description": "Proud to be a teacher, Malala's father and a peace, women's rights and education activist. \nRTs do not equal endorsement.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sun Nov 24 13:37:54 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", - "favourites_count": 953, - "status": { - "retweet_count": 3, - "retweeted_status": { - "retweet_count": 3, - "in_reply_to_user_id": 2194124415, - "possibly_sensitive": false, - "id_str": "685487976797843457", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 192, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 339, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 579, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", - "type": "photo", - "indices": [ - 121, - 144 - ], - "media_url": "http://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", - "display_url": "pic.twitter.com/SFHp6vUmvV", - "id_str": "685487974939791361", - "expanded_url": "http://twitter.com/hasanatnaz099/status/685487976797843457/photo/1", - "id": 685487974939791361, - "url": "https://t.co/SFHp6vUmvV" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ZiauddinY", - "id_str": "2194124415", - "id": 2194124415, - "indices": [ - 0, - 10 - ], - "name": "Ziauddin Yousafzai" - } - ] - }, - "created_at": "Fri Jan 08 15:47:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "2194124415", - "place": null, - "in_reply_to_screen_name": "ZiauddinY", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685487976797843457, - "text": "@ZiauddinY Plz shair this page frm ur ID .We r going to start givg free education fr orfan & poor grls stdent at IPS https://t.co/SFHp6vUmvV", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685520107825684481", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 192, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 339, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 579, - "resize": "fit" - } - }, - "source_status_id_str": "685487976797843457", - "url": "https://t.co/SFHp6vUmvV", - "media_url": "http://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", - "source_user_id_str": "2975276364", - "id_str": "685487974939791361", - "id": 685487974939791361, - "media_url_https": "https://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", - "type": "photo", - "indices": [ - 143, - 144 - ], - "source_status_id": 685487976797843457, - "source_user_id": 2975276364, - "display_url": "pic.twitter.com/SFHp6vUmvV", - "expanded_url": "http://twitter.com/hasanatnaz099/status/685487976797843457/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "hasanatnaz099", - "id_str": "2975276364", - "id": 2975276364, - "indices": [ - 3, - 17 - ], - "name": "Hussain Ahmad" - }, - { - "screen_name": "ZiauddinY", - "id_str": "2194124415", - "id": 2194124415, - "indices": [ - 19, - 29 - ], - "name": "Ziauddin Yousafzai" - } - ] - }, - "created_at": "Fri Jan 08 17:55:04 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685520107825684481, - "text": "RT @hasanatnaz099: @ZiauddinY Plz shair this page frm ur ID .We r going to start givg free education fr orfan & poor grls stdent at IPS htt\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPad" - }, - "default_profile_image": false, - "id": 2194124415, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 1217, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2194124415/1385300984", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "20783", - "following": false, - "friends_count": 3684, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "piperkerman.com", - "url": "https://t.co/bZNP8H8fqP", - "expanded_url": "http://www.piperkerman.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "0000FF", - "geo_enabled": true, - "followers_count": 112426, - "location": "Ohio, USA", - "screen_name": "Piper", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 933, - "name": "Piper Kerman", - "profile_use_background_image": true, - "description": "Author of #1 @NYTimes bestseller Orange is the New Black: My Year in a Women's Prison @sixwords: In and out of hot water", - "url": "https://t.co/bZNP8H8fqP", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", - "profile_background_color": "9AE4E8", - "created_at": "Fri Nov 24 19:35:29 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "87BC44", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", - "favourites_count": 26942, - "status": { - "retweet_count": 2, - "retweeted_status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685630905415774208", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wny.cc/WO2oH", - "url": "https://t.co/56sDTHSdF6", - "expanded_url": "http://wny.cc/WO2oH", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "jonesarah", - "id_str": "17279778", - "id": 17279778, - "indices": [ - 40, - 50 - ], - "name": "Sarah Jones" - } - ] - }, - "created_at": "Sat Jan 09 01:15:20 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685630905415774208, - "text": "Listen to our weekend podcast! It's got @jonesarah's many characters, believers in the American Dream + more: https://t.co/56sDTHSdF6", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Hootsuite" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685631198408916992", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "wny.cc/WO2oH", - "url": "https://t.co/56sDTHSdF6", - "expanded_url": "http://wny.cc/WO2oH", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BrianLehrer", - "id_str": "12011422", - "id": 12011422, - "indices": [ - 3, - 15 - ], - "name": "Brian Lehrer Show" - }, - { - "screen_name": "jonesarah", - "id_str": "17279778", - "id": 17279778, - "indices": [ - 57, - 67 - ], - "name": "Sarah Jones" - } - ] - }, - "created_at": "Sat Jan 09 01:16:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685631198408916992, - "text": "RT @BrianLehrer: Listen to our weekend podcast! It's got @jonesarah's many characters, believers in the American Dream + more: https://t.co\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 20783, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", - "statuses_count": 16320, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "19725644", - "following": false, - "friends_count": 46, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "haydenplanetarium.org/tyson/", - "url": "http://t.co/FRT5oYtwbX", - "expanded_url": "http://www.haydenplanetarium.org/tyson/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E6F6F9", - "profile_link_color": "CC3366", - "geo_enabled": false, - "followers_count": 4745658, - "location": "New York City", - "screen_name": "neiltyson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 39782, - "name": "Neil deGrasse Tyson", - "profile_use_background_image": true, - "description": "Astrophysicist", - "url": "http://t.co/FRT5oYtwbX", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", - "profile_background_color": "DBE9ED", - "created_at": "Thu Jan 29 18:40:26 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "DBE9ED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", - "favourites_count": 2, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "Aelshawa", - "in_reply_to_user_id": 214174929, - "in_reply_to_status_id_str": "685134548724768768", - "retweet_count": 63, - "truncated": false, - "retweeted": false, - "id_str": "685135243280564224", - "id": 685135243280564224, - "text": "@Aelshawa \u2014 The people who use probability to show that Evolution didn\u2019t happen, don\u2019t fully understand Evolution.", - "in_reply_to_user_id_str": "214174929", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Aelshawa", - "id_str": "214174929", - "id": 214174929, - "indices": [ - 0, - 9 - ], - "name": "Abdulmajeed Elshawa" - } - ] - }, - "created_at": "Thu Jan 07 16:25:45 +0000 2016", - "source": "TweetDeck", - "favorite_count": 136, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685134548724768768, - "lang": "en" - }, - "default_profile_image": false, - "id": 19725644, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", - "statuses_count": 4758, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19725644/1400087889", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2916305152", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "freedom.press", - "url": "https://t.co/U63fP7T2ST", - "expanded_url": "https://freedom.press", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1742443, - "location": "", - "screen_name": "Snowden", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 10802, - "name": "Edward Snowden", - "profile_use_background_image": true, - "description": "I used to work for the government. Now I work for the public. Director at @FreedomofPress.", - "url": "https://t.co/U63fP7T2ST", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Thu Dec 11 21:24:28 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", - "favourites_count": 0, - "status": { - "retweet_count": 265, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "682267675704311809", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/ericgeller/sta\u2026", - "url": "https://t.co/YhYxUczKTn", - "expanded_url": "https://twitter.com/ericgeller/status/682264454730403840", - "indices": [ - 114, - 137 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "fka_roscosmos", - "id_str": "2306083502", - "id": 2306083502, - "indices": [ - 68, - 82 - ], - "name": "\u0420\u041e\u0421\u041a\u041e\u0421\u041c\u041e\u0421" - }, - { - "screen_name": "neiltyson", - "id_str": "19725644", - "id": 19725644, - "indices": [ - 90, - 100 - ], - "name": "Neil deGrasse Tyson" - } - ] - }, - "created_at": "Wed Dec 30 18:31:04 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 682267675704311809, - "text": "Bonus points to the first journalist to get an official ruling from @fka_roscosmos and/or @neiltyson. (Corrected) https://t.co/YhYxUczKTn", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 626, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2916305152, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 373, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2916305152/1443542022", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "299364430", - "following": false, - "friends_count": 84550, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "everettetaylor.com", - "url": "https://t.co/DTKHW8LqbJ", - "expanded_url": "http://everettetaylor.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 258639, - "location": "Los Angeles (via Richmond, VA)", - "screen_name": "Everette", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2121, - "name": "Everette Taylor", - "profile_use_background_image": true, - "description": "building + growing companies (instagram: everette x snapchat: everettetaylor)", - "url": "https://t.co/DTKHW8LqbJ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", - "profile_background_color": "131516", - "created_at": "Sun May 15 23:37:59 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", - "favourites_count": 184407, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685632481203126273", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/colageplatform\u2026", - "url": "https://t.co/FB8Y4dML7z", - "expanded_url": "https://twitter.com/colageplatform/status/685632198460882944", - "indices": [ - 78, - 101 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:21:36 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685632481203126273, - "text": "follow me on snapchat: everettetaylor and shoot me questions to get those \ud83d\udd11\ud83d\udd11\ud83d\udd11 https://t.co/FB8Y4dML7z", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 13, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 299364430, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 14393, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/299364430/1444247536", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "just a future teller", - "url": null, - "contributors_enabled": false, - "default_profile_image": false, - "utc_offset": null, - "id_str": "3633459012", - "blocking": false, - "is_translation_enabled": false, - "id": 3633459012, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Sep 21 03:20:06 +0000 2015", - "profile_image_url": "http://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "ja", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 25, - "blocked_by": false, - "following": false, - "location": "Tokyo, Japan", - "muting": false, - "friends_count": 2, - "notifications": false, - "screen_name": "aAcvyXkvyzhJJoj", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "\u5915\u590f" - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "19777398", - "following": false, - "friends_count": 19672, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tonightshow.com", - "url": "http://t.co/fgp5RYqr3T", - "expanded_url": "http://www.tonightshow.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3338719, - "location": "Weeknights 11:35/10:35c", - "screen_name": "FallonTonight", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 8975, - "name": "Fallon Tonight", - "profile_use_background_image": true, - "description": "The official Twitter for The Tonight Show Starring @JimmyFallon on @NBC. (Tweets by: @marinarachael @cdriz @thatsso_rachael @NoahGeb) #FallonTonight", - "url": "http://t.co/fgp5RYqr3T", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", - "profile_background_color": "03253E", - "created_at": "Fri Jan 30 17:26:46 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", - "favourites_count": 90384, - "status": { - "retweet_count": 46, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685630910214094848", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 169, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 298, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 509, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPZrgVWwAETzTR.png", - "type": "photo", - "indices": [ - 110, - 133 - ], - "media_url": "http://pbs.twimg.com/media/CYPZrgVWwAETzTR.png", - "display_url": "pic.twitter.com/W0JromRs3f", - "id_str": "685630909727555585", - "expanded_url": "http://twitter.com/FallonTonight/status/685630910214094848/photo/1", - "id": 685630909727555585, - "url": "https://t.co/W0JromRs3f" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "youtu.be/2uudLqnB35o", - "url": "https://t.co/6BZNCLzbQA", - "expanded_url": "https://youtu.be/2uudLqnB35o", - "indices": [ - 86, - 109 - ] - } - ], - "hashtags": [ - { - "indices": [ - 62, - 77 - ], - "text": "WorstFirstDate" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:15:22 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685630910214094848, - "text": "\"That's funny, I'd do that! I HAVE done it.\" Jimmy reads your #WorstFirstDate tweets: https://t.co/6BZNCLzbQA https://t.co/W0JromRs3f", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 234, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 19777398, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", - "statuses_count": 44485, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/19777398/1401723954", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "158414847", - "following": false, - "friends_count": 277, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailyshow.com", - "url": "http://t.co/BAakBFaEGx", - "expanded_url": "http://thedailyshow.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 3995989, - "location": "", - "screen_name": "TheDailyShow", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 36028, - "name": "The Daily Show", - "profile_use_background_image": true, - "description": "Trevor Noah and The Best F#@king News Team. Weeknights 11/10c on @ComedyCentral. Full episodes, videos, guest information. #DailyShow", - "url": "http://t.co/BAakBFaEGx", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Jun 22 16:41:05 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", - "favourites_count": 14, - "status": { - "retweet_count": 55, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685604402208608256", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "on.cc.com/1ZfZpv3", - "url": "https://t.co/aSFMNsG5gu", - "expanded_url": "http://on.cc.com/1ZfZpv3", - "indices": [ - 54, - 77 - ] - }, - { - "display_url": "pic.twitter.com/wbq98keCy7", - "url": "https://t.co/wbq98keCy7", - "expanded_url": "http://twitter.com/TheDailyShow/status/685604402208608256/photo/1", - "indices": [ - 78, - 101 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "hasanminhaj", - "id_str": "14652182", - "id": 14652182, - "indices": [ - 1, - 13 - ], - "name": "Hasan Minhaj" - } - ] - }, - "created_at": "Fri Jan 08 23:30:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685604402208608256, - "text": ".@hasanminhaj doesn\u2019t take any chances with his kicks https://t.co/aSFMNsG5gu https://t.co/wbq98keCy7", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 158, - "contributors": null, - "source": "Sprinklr" - }, - "default_profile_image": false, - "id": 158414847, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", - "statuses_count": 9003, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/158414847/1446498480", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "35773039", - "following": false, - "friends_count": 1004, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theatlantic.com", - "url": "http://t.co/pI6FUBgQdl", - "expanded_url": "http://www.theatlantic.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", - "notifications": false, - "profile_sidebar_fill_color": "E6ECF2", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 1183279, - "location": "Washington, D.C.", - "screen_name": "TheAtlantic", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 23353, - "name": "The Atlantic", - "profile_use_background_image": false, - "description": "Politics, culture, business, science, technology, health, education, global affairs, more. Tweets by @CaitlinFrazier", - "url": "http://t.co/pI6FUBgQdl", - "profile_text_color": "000408", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", - "profile_background_color": "000000", - "created_at": "Mon Apr 27 15:41:54 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BFBFBF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", - "favourites_count": 653, - "status": { - "retweet_count": 10, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685636630024187904", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 960, - "h": 640, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 226, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPe4cIWwAAZf80.jpg", - "type": "photo", - "indices": [ - 55, - 78 - ], - "media_url": "http://pbs.twimg.com/media/CYPe4cIWwAAZf80.jpg", - "display_url": "pic.twitter.com/kdav82oE0z", - "id_str": "685636629495726080", - "expanded_url": "http://twitter.com/TheAtlantic/status/685636630024187904/photo/1", - "id": 685636629495726080, - "url": "https://t.co/kdav82oE0z" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "theatln.tc/1OVIXoQ", - "url": "https://t.co/za5UpMiiXa", - "expanded_url": "http://theatln.tc/1OVIXoQ", - "indices": [ - 31, - 54 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:38:05 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685636630024187904, - "text": "How hijabs became high fashion https://t.co/za5UpMiiXa https://t.co/kdav82oE0z", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 16, - "contributors": null, - "source": "SocialFlow" - }, - "default_profile_image": false, - "id": 35773039, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", - "statuses_count": 78818, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "83876527", - "following": false, - "friends_count": 969, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tejucole.com", - "url": "http://t.co/FcCN8OHr", - "expanded_url": "http://www.tejucole.com", - "indices": [ - 0, - 20 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "D1CFC1", - "profile_link_color": "4D2911", - "geo_enabled": true, - "followers_count": 232874, - "location": "the Black Atlantic", - "screen_name": "tejucole", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2716, - "name": "Teju Cole", - "profile_use_background_image": true, - "description": "We who?", - "url": "http://t.co/FcCN8OHr", - "profile_text_color": "331D0C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", - "profile_background_color": "121314", - "created_at": "Tue Oct 20 16:27:33 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", - "favourites_count": 1992, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 168, - "truncated": false, - "retweeted": false, - "id_str": "489091384792850432", - "id": 489091384792850432, - "text": "Good time for that Twitter break. Ever yrs, &c.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jul 15 16:57:27 +0000 2014", - "source": "Twitter Web Client", - "favorite_count": 249, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 83876527, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", - "statuses_count": 13297, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/83876527/1400341445", - "is_translator": false - }, - { - "time_zone": "Rome", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "241027939", - "following": false, - "friends_count": 246, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "googlethatshit.com", - "url": "https://t.co/AGKwFEnIEM", - "expanded_url": "http://googlethatshit.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "001122", - "geo_enabled": true, - "followers_count": 259513, - "location": "Italia", - "screen_name": "AsiaArgento", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1078, - "name": "Asia Argento", - "profile_use_background_image": true, - "description": "a woman who does everything but doesn't know how to do anything / instagram = asiaargento", - "url": "https://t.co/AGKwFEnIEM", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Fri Jan 21 08:27:38 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", - "favourites_count": 28340, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "antonnewcombe", - "in_reply_to_user_id": 34408874, - "in_reply_to_status_id_str": "685548530396721152", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685571131126996992", - "id": 685571131126996992, - "text": "@antonnewcombe I stopped counting \ud83d\ude1c @SmithsonianMag", - "in_reply_to_user_id_str": "34408874", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "antonnewcombe", - "id_str": "34408874", - "id": 34408874, - "indices": [ - 0, - 14 - ], - "name": "anton newcombe" - }, - { - "screen_name": "SmithsonianMag", - "id_str": "17998609", - "id": 17998609, - "indices": [ - 36, - 51 - ], - "name": "Smithsonian Magazine" - } - ] - }, - "created_at": "Fri Jan 08 21:17:49 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685548530396721152, - "lang": "en" - }, - "default_profile_image": false, - "id": 241027939, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", - "statuses_count": 35107, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/241027939/1353605533", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2352142008", - "following": false, - "friends_count": 30, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 38786, - "location": "", - "screen_name": "DianaRoss", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 296, - "name": "Ms. Ross", - "profile_use_background_image": true, - "description": "Diana Ross Official Twitter", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Wed Feb 19 19:21:42 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", - "favourites_count": 15, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 103, - "truncated": false, - "retweeted": false, - "id_str": "685147411493224449", - "id": 685147411493224449, - "text": "There's no need to rush take five slow down", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 17:14:06 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 160, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2352142008, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 101, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "1140451", - "following": false, - "friends_count": 4937, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "antderosa.com", - "url": "https://t.co/XEmDfG5Qlv", - "expanded_url": "http://antderosa.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F0F0F0", - "profile_link_color": "2A70A6", - "geo_enabled": true, - "followers_count": 88503, - "location": "Jersey City, NJ", - "screen_name": "AntDeRosa", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4732, - "name": "Anthony De Rosa", - "profile_use_background_image": true, - "description": "Digital Production Manager for @TheDailyShow with @TrevorNoah", - "url": "https://t.co/XEmDfG5Qlv", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Mar 14 05:45:24 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", - "favourites_count": 20407, - "status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685622432665845761", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "cnn.com/2016/01/08/pol\u2026", - "url": "https://t.co/qPVMVwdw0b", - "expanded_url": "http://www.cnn.com/2016/01/08/politics/bernie-sanders-bill-clinton-disgraceful/index.html", - "indices": [ - 113, - 136 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "BernieSanders", - "id_str": "216776631", - "id": 216776631, - "indices": [ - 26, - 40 - ], - "name": "Bernie Sanders" - } - ] - }, - "created_at": "Sat Jan 09 00:41:40 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685622432665845761, - "text": "Even if you don't support @BernieSanders, you have to respect that he avoids the nonsense most candidates run on https://t.co/qPVMVwdw0b", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 19, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 1140451, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", - "statuses_count": 147545, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140451/1446584214", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "18393773", - "following": false, - "friends_count": 868, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "neilgaiman.com", - "url": "http://t.co/sGHzpf2rCG", - "expanded_url": "http://www.neilgaiman.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DAECF4", - "profile_link_color": "ABB8C2", - "geo_enabled": false, - "followers_count": 2359341, - "location": "a bit all over the place", - "screen_name": "neilhimself", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 35383, - "name": "Neil Gaiman", - "profile_use_background_image": true, - "description": "will eventually grow up and get a real job. Until then, will keep making things up and writing them down.", - "url": "http://t.co/sGHzpf2rCG", - "profile_text_color": "663B12", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", - "profile_background_color": "91AAB5", - "created_at": "Fri Dec 26 19:30:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", - "favourites_count": 1091, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "offby1", - "in_reply_to_user_id": 37362694, - "in_reply_to_status_id_str": "685631468689752064", - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "685635978531213312", - "id": 685635978531213312, - "text": "@offby1 @scalzi yes. Tweets are brought to me individually by doves and white mice.", - "in_reply_to_user_id_str": "37362694", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "offby1", - "id_str": "37362694", - "id": 37362694, - "indices": [ - 0, - 7 - ], - "name": "__rose__" - }, - { - "screen_name": "scalzi", - "id_str": "14202817", - "id": 14202817, - "indices": [ - 8, - 15 - ], - "name": "John Scalzi" - } - ] - }, - "created_at": "Sat Jan 09 01:35:30 +0000 2016", - "source": "Twitter for BlackBerry", - "favorite_count": 6, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685631468689752064, - "lang": "en" - }, - "default_profile_image": false, - "id": 18393773, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", - "statuses_count": 90748, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18393773/1424768490", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "263964021", - "following": false, - "friends_count": 864, - "entities": { - "description": { - "urls": [ - { - "display_url": "LIONBABE.COM", - "url": "http://t.co/RbZqjUPgsT", - "expanded_url": "http://LIONBABE.COM", - "indices": [ - 32, - 54 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "jillonce.tumblr.com", - "url": "http://t.co/vK5PFVYnmO", - "expanded_url": "http://jillonce.tumblr.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 7502, - "location": "NYC", - "screen_name": "Jillonce", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 77, - "name": "Jillian Hervey", - "profile_use_background_image": true, - "description": "arting all the time @LIONBABE x http://t.co/RbZqjUPgsT", - "url": "http://t.co/vK5PFVYnmO", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Fri Mar 11 02:23:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", - "favourites_count": 2910, - "status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685372920651091968", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/toneycosmos/st\u2026", - "url": "https://t.co/e4RutL4RM3", - "expanded_url": "https://twitter.com/toneycosmos/status/685313450575290368", - "indices": [ - 11, - 34 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 08:10:12 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685372920651091968, - "text": "Love u too https://t.co/e4RutL4RM3", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 2, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 263964021, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", - "statuses_count": 17306, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/263964021/1414102504", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "432588553", - "following": false, - "friends_count": 845, - "entities": { - "description": { - "urls": [ - { - "display_url": "po.st/WDWGiTTW", - "url": "https://t.co/s8fWZIpJuH", - "expanded_url": "http://po.st/WDWGiTTW", - "indices": [ - 100, - 123 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "LIONBABE.com", - "url": "http://t.co/IRuegBPo6R", - "expanded_url": "http://www.LIONBABE.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "DD2E44", - "geo_enabled": false, - "followers_count": 16954, - "location": "NYC", - "screen_name": "LionBabe", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 167, - "name": "LION BABE", - "profile_use_background_image": false, - "description": "Lion Babe is Jillian Hervey + Lucas Goodman @Jillonce + @Astro_Raw . NYC . WHERE DO WE GO - iTunes: https://t.co/s8fWZIpJuH x", - "url": "http://t.co/IRuegBPo6R", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Fri Dec 09 15:18:30 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", - "favourites_count": 9524, - "status": { - "retweet_count": 9, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685554543250178048", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 340, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1024, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOUOXSUEAAuVGX.jpg", - "type": "photo", - "indices": [ - 38, - 61 - ], - "media_url": "http://pbs.twimg.com/media/CYOUOXSUEAAuVGX.jpg", - "display_url": "pic.twitter.com/MTIiMhcsBg", - "id_str": "685554542780354560", - "expanded_url": "http://twitter.com/LionBabe/status/685554543250178048/photo/1", - "id": 685554542780354560, - "url": "https://t.co/MTIiMhcsBg" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "po.st/WDWGSp", - "url": "https://t.co/MVS9inrtAb", - "expanded_url": "http://po.st/WDWGSp", - "indices": [ - 14, - 37 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Spotify", - "id_str": "17230018", - "id": 17230018, - "indices": [ - 3, - 11 - ], - "name": "Spotify" - } - ] - }, - "created_at": "Fri Jan 08 20:11:54 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685554543250178048, - "text": "\ud83e\udd81\ud83d\udd25 @Spotify \ud83d\udc49 https://t.co/MVS9inrtAb https://t.co/MTIiMhcsBg", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 18, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 432588553, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 3674, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/432588553/1450721529", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "141326053", - "following": false, - "friends_count": 472, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "davesmithinstruments.com", - "url": "http://t.co/huTEKpwJ0k", - "expanded_url": "http://www.davesmithinstruments.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252745", - "profile_link_color": "DD5527", - "geo_enabled": false, - "followers_count": 24518, - "location": "San Francisco, CA", - "screen_name": "dsiSequential", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 395, - "name": "DaveSmithInstruments", - "profile_use_background_image": true, - "description": "Innovative music machines designed and built in San Francisco, CA.", - "url": "http://t.co/huTEKpwJ0k", - "profile_text_color": "858585", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", - "profile_background_color": "471A2E", - "created_at": "Fri May 07 19:54:02 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", - "favourites_count": 128, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "andcunning", - "in_reply_to_user_id": 264960356, - "in_reply_to_status_id_str": "685574923926896640", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685596686379450368", - "id": 685596686379450368, - "text": "@andcunning Great choice, they all compliment each other nicely!", - "in_reply_to_user_id_str": "264960356", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "andcunning", - "id_str": "264960356", - "id": 264960356, - "indices": [ - 0, - 11 - ], - "name": "Andrew Cunningham" - } - ] - }, - "created_at": "Fri Jan 08 22:59:22 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685574923926896640, - "lang": "en" - }, - "default_profile_image": false, - "id": 141326053, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", - "statuses_count": 3039, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/141326053/1421946814", - "is_translator": false - }, - { - "time_zone": "Amsterdam", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "748020092", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "M3LL155X.com", - "url": "http://t.co/Qvv5qGkNFV", - "expanded_url": "http://M3LL155X.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 159544, - "location": "", - "screen_name": "FKAtwigs", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 1066, - "name": "FKA twigs", - "profile_use_background_image": true, - "description": "", - "url": "http://t.co/Qvv5qGkNFV", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Thu Aug 09 21:57:26 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", - "favourites_count": 91, - "status": { - "retweet_count": 54, - "retweeted_status": { - "retweet_count": 54, - "in_reply_to_user_id": 748020092, - "possibly_sensitive": false, - "id_str": "683006150552489985", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 226, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", - "type": "photo", - "indices": [ - 20, - 43 - ], - "media_url": "http://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", - "display_url": "pic.twitter.com/1clJLXxlKF", - "id_str": "683006147956178944", - "expanded_url": "http://twitter.com/FKAsamuel/status/683006150552489985/photo/1", - "id": 683006147956178944, - "url": "https://t.co/1clJLXxlKF" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 10, - 16 - ], - "text": "FKAme" - } - ], - "user_mentions": [ - { - "screen_name": "FKAtwigs", - "id_str": "748020092", - "id": 748020092, - "indices": [ - 0, - 9 - ], - "name": "FKA twigs" - } - ] - }, - "created_at": "Fri Jan 01 19:25:30 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "748020092", - "place": null, - "in_reply_to_screen_name": "FKAtwigs", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683006150552489985, - "text": "@FKAtwigs #FKAme xx https://t.co/1clJLXxlKF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 320, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684397478054096896", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 682, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 226, - "resize": "fit" - } - }, - "source_status_id_str": "683006150552489985", - "url": "https://t.co/1clJLXxlKF", - "media_url": "http://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", - "source_user_id_str": "2375707136", - "id_str": "683006147956178944", - "id": 683006147956178944, - "media_url_https": "https://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", - "type": "photo", - "indices": [ - 35, - 58 - ], - "source_status_id": 683006150552489985, - "source_user_id": 2375707136, - "display_url": "pic.twitter.com/1clJLXxlKF", - "expanded_url": "http://twitter.com/FKAsamuel/status/683006150552489985/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 25, - 31 - ], - "text": "FKAme" - } - ], - "user_mentions": [ - { - "screen_name": "FKAsamuel", - "id_str": "2375707136", - "id": 2375707136, - "indices": [ - 3, - 13 - ], - "name": "Sam" - }, - { - "screen_name": "FKAtwigs", - "id_str": "748020092", - "id": 748020092, - "indices": [ - 15, - 24 - ], - "name": "FKA twigs" - } - ] - }, - "created_at": "Tue Jan 05 15:34:08 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684397478054096896, - "text": "RT @FKAsamuel: @FKAtwigs #FKAme xx https://t.co/1clJLXxlKF", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 748020092, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", - "statuses_count": 313, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/748020092/1439491511", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "14159148", - "following": false, - "friends_count": 1044, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "un.org", - "url": "http://t.co/kgJqUNDMpy", - "expanded_url": "http://www.un.org", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 5979880, - "location": "New York, NY", - "screen_name": "UN", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 34750, - "name": "United Nations", - "profile_use_background_image": false, - "description": "Official twitter account of #UnitedNations. Get the latest information on the #UN. #GlobalGoals", - "url": "http://t.co/kgJqUNDMpy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", - "profile_background_color": "0197D6", - "created_at": "Sun Mar 16 20:15:36 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", - "favourites_count": 488, - "status": { - "retweet_count": 64, - "retweeted_status": { - "retweet_count": 64, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685479107631656961", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 960, - "h": 640, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", - "type": "photo", - "indices": [ - 114, - 137 - ], - "media_url": "http://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", - "display_url": "pic.twitter.com/QKLtpXFmUE", - "id_str": "685479106977251328", - "expanded_url": "http://twitter.com/BabatundeUNFPA/status/685479107631656961/photo/1", - "id": 685479106977251328, - "url": "https://t.co/QKLtpXFmUE" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1KedoYd", - "url": "https://t.co/peOFGObDvc", - "expanded_url": "http://bit.ly/1KedoYd", - "indices": [ - 90, - 113 - ] - } - ], - "hashtags": [ - { - "indices": [ - 4, - 16 - ], - "text": "GlobalGoals" - } - ], - "user_mentions": [ - { - "screen_name": "UNFPA", - "id_str": "194643654", - "id": 194643654, - "indices": [ - 58, - 64 - ], - "name": "UNFPA" - }, - { - "screen_name": "UN", - "id_str": "14159148", - "id": 14159148, - "indices": [ - 69, - 72 - ], - "name": "United Nations" - } - ] - }, - "created_at": "Fri Jan 08 15:12:09 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685479107631656961, - "text": "The #GlobalGoals are for everyone, everywhere! RT to help @UNFPA and @UN spread the word: https://t.co/peOFGObDvc https://t.co/QKLtpXFmUE", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 53, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685628889205489665", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 226, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 400, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 960, - "h": 640, - "resize": "fit" - } - }, - "source_status_id_str": "685479107631656961", - "url": "https://t.co/QKLtpXFmUE", - "media_url": "http://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", - "source_user_id_str": "284647429", - "id_str": "685479106977251328", - "id": 685479106977251328, - "media_url_https": "https://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685479107631656961, - "source_user_id": 284647429, - "display_url": "pic.twitter.com/QKLtpXFmUE", - "expanded_url": "http://twitter.com/BabatundeUNFPA/status/685479107631656961/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1KedoYd", - "url": "https://t.co/peOFGObDvc", - "expanded_url": "http://bit.ly/1KedoYd", - "indices": [ - 110, - 133 - ] - } - ], - "hashtags": [ - { - "indices": [ - 24, - 36 - ], - "text": "GlobalGoals" - } - ], - "user_mentions": [ - { - "screen_name": "BabatundeUNFPA", - "id_str": "284647429", - "id": 284647429, - "indices": [ - 3, - 18 - ], - "name": "Babatunde Osotimehin" - }, - { - "screen_name": "UNFPA", - "id_str": "194643654", - "id": 194643654, - "indices": [ - 78, - 84 - ], - "name": "UNFPA" - }, - { - "screen_name": "UN", - "id_str": "14159148", - "id": 14159148, - "indices": [ - 89, - 92 - ], - "name": "United Nations" - } - ] - }, - "created_at": "Sat Jan 09 01:07:20 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685628889205489665, - "text": "RT @BabatundeUNFPA: The #GlobalGoals are for everyone, everywhere! RT to help @UNFPA and @UN spread the word: https://t.co/peOFGObDvc https\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 14159148, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", - "statuses_count": 42439, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159148/1447180964", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "857054191", - "following": false, - "friends_count": 51, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "dorotheegilbert.com", - "url": "http://t.co/Bifsr25Z2N", - "expanded_url": "http://www.dorotheegilbert.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 5530, - "location": "", - "screen_name": "DorotheGilbert", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 86, - "name": "Doroth\u00e9e Gilbert", - "profile_use_background_image": true, - "description": "Danseuse \u00e9toile Op\u00e9ra de Paris", - "url": "http://t.co/Bifsr25Z2N", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", - "profile_background_color": "C0DEED", - "created_at": "Mon Oct 01 21:28:01 +0000 2012", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", - "favourites_count": 139, - "status": { - "retweet_count": 66, - "retweeted_status": { - "retweet_count": 66, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678663494535946241", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", - "display_url": "pic.twitter.com/jv1N54z6RO", - "id_str": "678663485845278720", - "expanded_url": "http://twitter.com/PenelopeB/status/678663494535946241/photo/1", - "id": 678663485845278720, - "url": "https://t.co/jv1N54z6RO" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DorotheGilbert", - "id_str": "857054191", - "id": 857054191, - "indices": [ - 5, - 20 - ], - "name": "Doroth\u00e9e Gilbert" - } - ] - }, - "created_at": "Sun Dec 20 19:49:20 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "fr", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678663494535946241, - "text": "Avec @DorotheGilbert sur les toits de l'Op\u00e9ra Garnier pour un rep\u00e9rage pour ma prochaine BD. Dimanche matin normal. https://t.co/jv1N54z6RO", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 279, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "678665157552287744", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 255, - "resize": "fit" - } - }, - "source_status_id_str": "678663494535946241", - "url": "https://t.co/jv1N54z6RO", - "media_url": "http://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", - "source_user_id_str": "7817142", - "id_str": "678663485845278720", - "id": 678663485845278720, - "media_url_https": "https://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 678663494535946241, - "source_user_id": 7817142, - "display_url": "pic.twitter.com/jv1N54z6RO", - "expanded_url": "http://twitter.com/PenelopeB/status/678663494535946241/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "PenelopeB", - "id_str": "7817142", - "id": 7817142, - "indices": [ - 3, - 13 - ], - "name": "P\u00e9n\u00e9lope Bagieu" - }, - { - "screen_name": "DorotheGilbert", - "id_str": "857054191", - "id": 857054191, - "indices": [ - 20, - 35 - ], - "name": "Doroth\u00e9e Gilbert" - } - ] - }, - "created_at": "Sun Dec 20 19:55:57 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "fr", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 678665157552287744, - "text": "RT @PenelopeB: Avec @DorotheGilbert sur les toits de l'Op\u00e9ra Garnier pour un rep\u00e9rage pour ma prochaine BD. Dimanche matin normal. https://\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 857054191, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 287, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/857054191/1354469514", - "is_translator": false - }, - { - "time_zone": "London", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "166739404", - "following": false, - "friends_count": 246, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "3399FF", - "geo_enabled": true, - "followers_count": 20418728, - "location": "London", - "screen_name": "EmWatson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 43450, - "name": "Emma Watson", - "profile_use_background_image": true, - "description": "British actress, Goodwill Ambassador for UN Women", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Wed Jul 14 22:06:37 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", - "favourites_count": 765, - "status": { - "retweet_count": 313, - "retweeted_status": { - "retweet_count": 313, - "in_reply_to_user_id": 48269483, - "possibly_sensitive": false, - "id_str": "685292982778609664", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 453, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", - "type": "photo", - "indices": [ - 113, - 136 - ], - "media_url": "http://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", - "display_url": "pic.twitter.com/u4q7tijibq", - "id_str": "685292978408189953", - "expanded_url": "http://twitter.com/AbbyWambach/status/685292982778609664/photo/1", - "id": 685292978408189953, - "url": "https://t.co/u4q7tijibq" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 85, - 110 - ], - "text": "leaveasurpriseforthenext" - } - ], - "user_mentions": [ - { - "screen_name": "GloriaSteinem", - "id_str": "48269483", - "id": 48269483, - "indices": [ - 36, - 50 - ], - "name": "Gloria Steinem" - }, - { - "screen_name": "SophiaBush", - "id_str": "97082147", - "id": 97082147, - "indices": [ - 51, - 62 - ], - "name": "Sophia Bush" - }, - { - "screen_name": "EmWatson", - "id_str": "166739404", - "id": 166739404, - "indices": [ - 63, - 72 - ], - "name": "Emma Watson" - }, - { - "screen_name": "lenadunham", - "id_str": "31080039", - "id": 31080039, - "indices": [ - 73, - 84 - ], - "name": "Lena Dunham" - } - ] - }, - "created_at": "Fri Jan 08 02:52:33 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "48269483", - "place": null, - "in_reply_to_screen_name": "GloriaSteinem", - "in_reply_to_status_id_str": "685190347589304320", - "truncated": false, - "id": 685292982778609664, - "text": "This was fun... Tag you're all it!! @GloriaSteinem @SophiaBush @EmWatson @lenadunham #leaveasurpriseforthenext:) https://t.co/u4q7tijibq", - "coordinates": null, - "in_reply_to_status_id": 685190347589304320, - "favorite_count": 1961, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685550040841072641", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 768, - "h": 1024, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 800, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 453, - "resize": "fit" - } - }, - "source_status_id_str": "685292982778609664", - "url": "https://t.co/u4q7tijibq", - "media_url": "http://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", - "source_user_id_str": "336124836", - "id_str": "685292978408189953", - "id": 685292978408189953, - "media_url_https": "https://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685292982778609664, - "source_user_id": 336124836, - "display_url": "pic.twitter.com/u4q7tijibq", - "expanded_url": "http://twitter.com/AbbyWambach/status/685292982778609664/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 102, - 127 - ], - "text": "leaveasurpriseforthenext" - } - ], - "user_mentions": [ - { - "screen_name": "AbbyWambach", - "id_str": "336124836", - "id": 336124836, - "indices": [ - 3, - 15 - ], - "name": "Abby Wambach" - }, - { - "screen_name": "GloriaSteinem", - "id_str": "48269483", - "id": 48269483, - "indices": [ - 53, - 67 - ], - "name": "Gloria Steinem" - }, - { - "screen_name": "SophiaBush", - "id_str": "97082147", - "id": 97082147, - "indices": [ - 68, - 79 - ], - "name": "Sophia Bush" - }, - { - "screen_name": "EmWatson", - "id_str": "166739404", - "id": 166739404, - "indices": [ - 80, - 89 - ], - "name": "Emma Watson" - }, - { - "screen_name": "lenadunham", - "id_str": "31080039", - "id": 31080039, - "indices": [ - 90, - 101 - ], - "name": "Lena Dunham" - } - ] - }, - "created_at": "Fri Jan 08 19:54:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685550040841072641, - "text": "RT @AbbyWambach: This was fun... Tag you're all it!! @GloriaSteinem @SophiaBush @EmWatson @lenadunham #leaveasurpriseforthenext:) https://t\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 166739404, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", - "statuses_count": 1213, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/166739404/1448459323", - "is_translator": false - }, - { - "time_zone": "Casablanca", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 0, - "id_str": "384982986", - "following": false, - "friends_count": 965, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/gracejonesoffi\u2026", - "url": "http://t.co/RAPIxjvPtQ", - "expanded_url": "http://instagram.com/gracejonesofficial", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "85CFD2", - "geo_enabled": false, - "followers_count": 41765, - "location": "Worldwide", - "screen_name": "Miss_GraceJones", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 548, - "name": "Grace Jones", - "profile_use_background_image": true, - "description": "This is my Official Twitter account... I see all and hear all. Nice to have you on my plate.", - "url": "http://t.co/RAPIxjvPtQ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Tue Oct 04 17:29:03 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", - "favourites_count": 345, - "status": { - "retweet_count": 20, - "retweeted_status": { - "retweet_count": 20, - "in_reply_to_user_id": 384982986, - "possibly_sensitive": false, - "id_str": "665258501694865408", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 640, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", - "type": "photo", - "indices": [ - 59, - 82 - ], - "media_url": "http://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", - "display_url": "pic.twitter.com/QXTd1KeI6T", - "id_str": "665258494715518976", - "expanded_url": "http://twitter.com/MarkFastKnit/status/665258501694865408/photo/1", - "id": 665258494715518976, - "url": "https://t.co/QXTd1KeI6T" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 21, - 28 - ], - "text": "london" - }, - { - "indices": [ - 32, - 41 - ], - "text": "markfast" - }, - { - "indices": [ - 44, - 49 - ], - "text": "icon" - }, - { - "indices": [ - 50, - 58 - ], - "text": "forever" - } - ], - "user_mentions": [ - { - "screen_name": "Miss_GraceJones", - "id_str": "384982986", - "id": 384982986, - "indices": [ - 0, - 16 - ], - "name": "Grace Jones" - } - ] - }, - "created_at": "Fri Nov 13 20:02:41 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": "384982986", - "place": null, - "in_reply_to_screen_name": "Miss_GraceJones", - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 665258501694865408, - "text": "@Miss_GraceJones !!! #london in #markfast ! #icon #forever https://t.co/QXTd1KeI6T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 89, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "665318546235334656", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 640, - "h": 640, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 600, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 340, - "resize": "fit" - } - }, - "source_status_id_str": "665258501694865408", - "url": "https://t.co/QXTd1KeI6T", - "media_url": "http://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", - "source_user_id_str": "203957172", - "id_str": "665258494715518976", - "id": 665258494715518976, - "media_url_https": "https://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", - "type": "photo", - "indices": [ - 77, - 100 - ], - "source_status_id": 665258501694865408, - "source_user_id": 203957172, - "display_url": "pic.twitter.com/QXTd1KeI6T", - "expanded_url": "http://twitter.com/MarkFastKnit/status/665258501694865408/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 39, - 46 - ], - "text": "london" - }, - { - "indices": [ - 50, - 59 - ], - "text": "markfast" - }, - { - "indices": [ - 62, - 67 - ], - "text": "icon" - }, - { - "indices": [ - 68, - 76 - ], - "text": "forever" - } - ], - "user_mentions": [ - { - "screen_name": "MarkFastKnit", - "id_str": "203957172", - "id": 203957172, - "indices": [ - 3, - 16 - ], - "name": "MARK FAST" - }, - { - "screen_name": "Miss_GraceJones", - "id_str": "384982986", - "id": 384982986, - "indices": [ - 18, - 34 - ], - "name": "Grace Jones" - } - ] - }, - "created_at": "Sat Nov 14 00:01:17 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 665318546235334656, - "text": "RT @MarkFastKnit: @Miss_GraceJones !!! #london in #markfast ! #icon #forever https://t.co/QXTd1KeI6T", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 384982986, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", - "statuses_count": 405, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/384982986/1366714920", - "is_translator": false - }, - { - "time_zone": "Mumbai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "41330290", - "following": false, - "friends_count": 277, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/TheShakaSurfCl\u2026", - "url": "https://t.co/SEQpF7VDH4", - "expanded_url": "http://www.facebook.com/TheShakaSurfClub", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1046, - "location": "India", - "screen_name": "surFISHita", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Ishita Malaviya", - "profile_use_background_image": true, - "description": "India's first recognized woman surfer & Co-founder of The Shaka Surf Club @SurfingIndia #Namaloha", - "url": "https://t.co/SEQpF7VDH4", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Wed May 20 10:04:32 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", - "favourites_count": 104, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684213186245996545", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BAJF4a3BJhR/", - "url": "https://t.co/BuGu8ng42j", - "expanded_url": "https://www.instagram.com/p/BAJF4a3BJhR/", - "indices": [ - 96, - 119 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 03:21:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684213186245996545, - "text": "Road trip commenced! Excited we're finally making a trip to Hampi after talking about it for 9\u2026 https://t.co/BuGu8ng42j", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 41330290, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", - "statuses_count": 470, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/41330290/1357404184", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14085740", - "following": false, - "friends_count": 3037, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 4881, - "location": "San Francisco, CA", - "screen_name": "jimprosser", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 152, - "name": "Jim Prosser", - "profile_use_background_image": true, - "description": "Current @twitter comms guy, future @kanyewest 2020 campaign spokesperson.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Mar 05 23:28:42 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", - "favourites_count": 52872, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685619689897082880", - "id": 685619689897082880, - "text": "Excited for podcast justice as doled out by @hodgman and @JesseThorn tonight. Anyone else going? #sfsketchfest", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 97, - 110 - ], - "text": "sfsketchfest" - } - ], - "user_mentions": [ - { - "screen_name": "hodgman", - "id_str": "14348594", - "id": 14348594, - "indices": [ - 44, - 52 - ], - "name": "John Hodgman" - }, - { - "screen_name": "JesseThorn", - "id_str": "5611152", - "id": 5611152, - "indices": [ - 57, - 68 - ], - "name": "Jesse Thorn" - } - ] - }, - "created_at": "Sat Jan 09 00:30:46 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14085740, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 12548, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14085740/1405206869", - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "37945489", - "following": false, - "friends_count": 994, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtu.be/ALlDZIQeNyo", - "url": "http://t.co/2nWHiTkVsZ", - "expanded_url": "http://youtu.be/ALlDZIQeNyo", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "EB3E12", - "geo_enabled": true, - "followers_count": 56983, - "location": "Paris", - "screen_name": "Carodemaigret", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 210, - "name": "Caroline de Maigret", - "profile_use_background_image": false, - "description": "Model @NextModels worldwide /// @CareFrance Ambassador /// Book out now: @Howtobeparisian /// Instagram/Periscope: @carolinedemaigret", - "url": "http://t.co/2nWHiTkVsZ", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", - "profile_background_color": "F0F0F0", - "created_at": "Tue May 05 15:26:02 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", - "favourites_count": 6015, - "status": { - "retweet_count": 16, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685398789759352832", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 255, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 450, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 768, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYMGj1mWsAEtn_K.jpg", - "type": "photo", - "indices": [ - 90, - 113 - ], - "media_url": "http://pbs.twimg.com/media/CYMGj1mWsAEtn_K.jpg", - "display_url": "pic.twitter.com/ILzsfq1gBq", - "id_str": "685398781043585025", - "expanded_url": "http://twitter.com/Carodemaigret/status/685398789759352832/photo/1", - "id": 685398781043585025, - "url": "https://t.co/ILzsfq1gBq" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "Black_Minou", - "id_str": "309053484", - "id": 309053484, - "indices": [ - 13, - 25 - ], - "name": "BLACK MINOU" - }, - { - "screen_name": "yarolpoupaud", - "id_str": "75114445", - "id": 75114445, - "indices": [ - 76, - 89 - ], - "name": "Yarol Poupaud" - } - ] - }, - "created_at": "Fri Jan 08 09:53:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685398789759352832, - "text": "Amaaaaaazing @Black_Minou last night! Just sweat&rock&roll\nLove you @yarolpoupaud https://t.co/ILzsfq1gBq", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 21, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 37945489, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 7696, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/37945489/1420905232", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "35556383", - "following": false, - "friends_count": 265, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "londonzhiloh.com", - "url": "https://t.co/gsxVxxXXXz", - "expanded_url": "http://londonzhiloh.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", - "notifications": false, - "profile_sidebar_fill_color": "F5F2F2", - "profile_link_color": "D9207D", - "geo_enabled": true, - "followers_count": 74149, - "location": "Snapchat: Zhiloh101", - "screen_name": "TheRealZhiloh", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 272, - "name": "London Zhiloh", - "profile_use_background_image": false, - "description": "Bookings: Info@LZofficial.com", - "url": "https://t.co/gsxVxxXXXz", - "profile_text_color": "292727", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", - "profile_background_color": "F2EFF1", - "created_at": "Sun Apr 26 20:29:45 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "F5F0F0", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", - "favourites_count": 14013, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684831821545259008", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BANe919KKK8/", - "url": "https://t.co/X6DX1UZDRX", - "expanded_url": "https://www.instagram.com/p/BANe919KKK8/", - "indices": [ - 98, - 121 - ] - } - ], - "hashtags": [ - { - "indices": [ - 20, - 26 - ], - "text": "NATVS" - } - ], - "user_mentions": [ - { - "screen_name": "MITDistrict", - "id_str": "785119218", - "id": 785119218, - "indices": [ - 49, - 61 - ], - "name": "Made in the District" - } - ] - }, - "created_at": "Wed Jan 06 20:20:04 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684831821545259008, - "text": "Hey guys! Check out #NATVS newest documentary by @mitdistrict where I talk about my inspiration,\u2026 https://t.co/X6DX1UZDRX", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 12, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 35556383, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", - "statuses_count": 96490, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35556383/1450060528", - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "233183631", - "following": false, - "friends_count": 36443, - "entities": { - "description": { - "urls": [ - { - "display_url": "itun.es/us/boyR_", - "url": "https://t.co/CJheDwyeIF", - "expanded_url": "https://itun.es/us/boyR_", - "indices": [ - 74, - 97 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "Instagram.com/madisonbeer", - "url": "https://t.co/nqrYEOhs7A", - "expanded_url": "http://Instagram.com/madisonbeer", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "6895D0", - "geo_enabled": true, - "followers_count": 1754461, - "location": "", - "screen_name": "MadisonElleBeer", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4395, - "name": "madison beer", - "profile_use_background_image": true, - "description": "\u2661 singer from ny \u2661 chase your dreams \u2661 new single Something Sweet out now https://t.co/CJheDwyeIF", - "url": "https://t.co/nqrYEOhs7A", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Sun Jan 02 14:52:35 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", - "favourites_count": 3926, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1230, - "truncated": false, - "retweeted": false, - "id_str": "685619398229372932", - "id": 685619398229372932, - "text": "\ud83d\udca7\ud83d\udc33\ud83d\udc8d\ud83c\udf90\u2708\ufe0f\ud83d\udc8e", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:29:37 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 2652, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "und" - }, - "default_profile_image": false, - "id": 233183631, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", - "statuses_count": 11569, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/233183631/1446485514", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "70457876", - "following": false, - "friends_count": 689, - "entities": { - "description": { - "urls": [ - { - "display_url": "soundcloud.com/dope-saint-jud\u2026", - "url": "https://t.co/dIyhEjwine", - "expanded_url": "https://soundcloud.com/dope-saint-jude/", - "indices": [ - 0, - 23 - ] - }, - { - "display_url": "facebook.com/pages/Dope-Sai\u2026", - "url": "https://t.co/4Kqi4mPsER", - "expanded_url": "https://www.facebook.com/pages/Dope-Saint-Jude/287771241273733", - "indices": [ - 24, - 47 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "dopesaintjude.tumblr.com", - "url": "http://t.co/VYkd1URkb3", - "expanded_url": "http://dopesaintjude.tumblr.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 896, - "location": "@dopesaintjude (insta) ", - "screen_name": "DopeSaintJude", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 20, - "name": "DOPESAINTJUDE", - "profile_use_background_image": true, - "description": "https://t.co/dIyhEjwine https://t.co/4Kqi4mPsER", - "url": "http://t.co/VYkd1URkb3", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Aug 31 18:06:59 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", - "favourites_count": 2283, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685498518228840448", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BASOf95Jcvo/", - "url": "https://t.co/FvdrqUE154", - "expanded_url": "https://www.instagram.com/p/BASOf95Jcvo/", - "indices": [ - 20, - 43 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:29:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685498518228840448, - "text": "Just posted a photo https://t.co/FvdrqUE154", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 70457876, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", - "statuses_count": 4519, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70457876/1442416572", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "3840", - "following": false, - "friends_count": 20892, - "entities": { - "description": { - "urls": [ - { - "display_url": "angel.co/jason", - "url": "https://t.co/nkssr3dWMC", - "expanded_url": "http://angel.co/jason", - "indices": [ - 48, - 71 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "calacanis.com", - "url": "https://t.co/akc7KgXv7J", - "expanded_url": "http://www.calacanis.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", - "notifications": false, - "profile_sidebar_fill_color": "E0FF92", - "profile_link_color": "FF9900", - "geo_enabled": true, - "followers_count": 256931, - "location": "94123", - "screen_name": "Jason", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 12244, - "name": "jason", - "profile_use_background_image": true, - "description": "Angel investor (@uber @thumbtack @wealthfront + https://t.co/nkssr3dWMC ) // Writer // Dad // Founder: @Engadget, @Inside, @LAUNCH & @twistartups", - "url": "https://t.co/akc7KgXv7J", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", - "profile_background_color": "000000", - "created_at": "Sat Aug 05 23:31:27 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", - "favourites_count": 42384, - "status": { - "retweet_count": 7, - "retweeted_status": { - "retweet_count": 7, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685588257791315969", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", - "display_url": "pic.twitter.com/gcjvsiX09b", - "id_str": "685588257233485824", - "expanded_url": "http://twitter.com/TWistartups/status/685588257791315969/photo/1", - "id": 685588257233485824, - "url": "https://t.co/gcjvsiX09b" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "itunes.apple.com/us/podcast/e61\u2026", - "url": "https://t.co/fbT87aaiXi", - "expanded_url": "https://itunes.apple.com/us/podcast/e611-jed-katz-javelin-venture/id314461026?i=360327489&mt=2", - "indices": [ - 92, - 115 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JedKatz", - "id_str": "17163307", - "id": 17163307, - "indices": [ - 1, - 9 - ], - "name": "Jed Katz" - }, - { - "screen_name": "JavelinVP", - "id_str": "457126665", - "id": 457126665, - "indices": [ - 10, - 20 - ], - "name": "Javelin VP" - }, - { - "screen_name": "kaleazy", - "id_str": "253389790", - "id": 253389790, - "indices": [ - 53, - 61 - ], - "name": "Kyle Hill" - }, - { - "screen_name": "HomeHero", - "id_str": "1582339772", - "id": 1582339772, - "indices": [ - 65, - 74 - ], - "name": "HomeHero" - }, - { - "screen_name": "Jason", - "id_str": "3840", - "id": 3840, - "indices": [ - 85, - 91 - ], - "name": "jason" - } - ] - }, - "created_at": "Fri Jan 08 22:25:52 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685588257791315969, - "text": ".@JedKatz @JavelinVP shares 52pt Series A checklist; @kaleazy on @HomeHero culture-w/@jason https://t.co/fbT87aaiXi https://t.co/gcjvsiX09b", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 7, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685631006087315456", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 337, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 191, - "resize": "fit" - } - }, - "source_status_id_str": "685588257791315969", - "url": "https://t.co/gcjvsiX09b", - "media_url": "http://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", - "source_user_id_str": "112880396", - "id_str": "685588257233485824", - "id": 685588257233485824, - "media_url_https": "https://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685588257791315969, - "source_user_id": 112880396, - "display_url": "pic.twitter.com/gcjvsiX09b", - "expanded_url": "http://twitter.com/TWistartups/status/685588257791315969/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "itunes.apple.com/us/podcast/e61\u2026", - "url": "https://t.co/fbT87aaiXi", - "expanded_url": "https://itunes.apple.com/us/podcast/e611-jed-katz-javelin-venture/id314461026?i=360327489&mt=2", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "TWistartups", - "id_str": "112880396", - "id": 112880396, - "indices": [ - 3, - 15 - ], - "name": "ThisWeekinStartups" - }, - { - "screen_name": "JedKatz", - "id_str": "17163307", - "id": 17163307, - "indices": [ - 18, - 26 - ], - "name": "Jed Katz" - }, - { - "screen_name": "JavelinVP", - "id_str": "457126665", - "id": 457126665, - "indices": [ - 27, - 37 - ], - "name": "Javelin VP" - }, - { - "screen_name": "kaleazy", - "id_str": "253389790", - "id": 253389790, - "indices": [ - 70, - 78 - ], - "name": "Kyle Hill" - }, - { - "screen_name": "HomeHero", - "id_str": "1582339772", - "id": 1582339772, - "indices": [ - 82, - 91 - ], - "name": "HomeHero" - }, - { - "screen_name": "Jason", - "id_str": "3840", - "id": 3840, - "indices": [ - 102, - 108 - ], - "name": "jason" - } - ] - }, - "created_at": "Sat Jan 09 01:15:44 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685631006087315456, - "text": "RT @TWistartups: .@JedKatz @JavelinVP shares 52pt Series A checklist; @kaleazy on @HomeHero culture-w/@jason https://t.co/fbT87aaiXi https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3840, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", - "statuses_count": 71770, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3840/1438902439", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "21872269", - "following": false, - "friends_count": 70, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "emersoncollective.com", - "url": "http://t.co/Qr1O0bgn4d", - "expanded_url": "http://emersoncollective.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DD2E44", - "geo_enabled": false, - "followers_count": 10221, - "location": "Palo Alto, CA", - "screen_name": "laurenepowell", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 123, - "name": "Laurene Powell", - "profile_use_background_image": false, - "description": "mother, advocate, friend, Emerson Collective president, joyful adventurer", - "url": "http://t.co/Qr1O0bgn4d", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", - "profile_background_color": "000000", - "created_at": "Wed Feb 25 14:49:19 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", - "favourites_count": 88, - "status": { - "retweet_count": 9, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685227751620489217", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1OS6abn", - "url": "https://t.co/nm1QkCrPvl", - "expanded_url": "http://bit.ly/1OS6abn", - "indices": [ - 115, - 138 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Jan 07 22:33:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685227751620489217, - "text": "Too important to miss: A bipartisan roadmap to curb hunger for 7M in US. Congress should fast track implementation https://t.co/nm1QkCrPvl", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 27, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 21872269, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 100, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/21872269/1445279444", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "3583264572", - "following": false, - "friends_count": 168, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 107352, - "location": "", - "screen_name": "IStandWithAhmed", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 373, - "name": "Ahmed Mohamed", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", - "profile_background_color": "000000", - "created_at": "Wed Sep 16 14:00:18 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", - "favourites_count": 199, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "kevincollier", - "in_reply_to_user_id": 440963378, - "in_reply_to_status_id_str": "684847980998950912", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685153785677754368", - "id": 685153785677754368, - "text": "@kevincollier yea, what about you", - "in_reply_to_user_id_str": "440963378", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kevincollier", - "id_str": "440963378", - "id": 440963378, - "indices": [ - 0, - 13 - ], - "name": "Kevin Collier" - } - ] - }, - "created_at": "Thu Jan 07 17:39:26 +0000 2016", - "source": "Twitter Web Client", - "favorite_count": 2, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684847980998950912, - "lang": "en" - }, - "default_profile_image": false, - "id": 3583264572, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 323, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3583264572/1452112394", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "43057202", - "following": false, - "friends_count": 2964, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "3B94D9", - "geo_enabled": false, - "followers_count": 12241, - "location": "Las Vegas, NV", - "screen_name": "Nicholas_Cope", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 61, - "name": "Nick Cope", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", - "profile_background_color": "000000", - "created_at": "Thu May 28 05:50:05 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", - "favourites_count": 409, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685633002718679040", - "id": 685633002718679040, - "text": "\u2694 Slay the day;", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:23:40 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 43057202, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 5765, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/43057202/1446523732", - "is_translator": false - }, - { - "time_zone": "Athens", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 7200, - "id_str": "1311113250", - "following": false, - "friends_count": 1, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "1D1F1F", - "geo_enabled": true, - "followers_count": 7883, - "location": "", - "screen_name": "riccardotisci", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 62, - "name": "Riccardo Tisci", - "profile_use_background_image": false, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Thu Mar 28 16:36:51 +0000 2013", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "nl", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", - "favourites_count": 0, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 66, - "truncated": false, - "retweeted": false, - "id_str": "651509820936310784", - "id": 651509820936310784, - "text": "I'M UNABLE TO COMPREHEND THE FACT THAT THIS UNIVERSE IS PART OF A MULTIVERSE AND THAT THIS MULTIVERSE HAS AN UNLIMITED AMOUNT OF SPACE.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Oct 06 21:30:20 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 107, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 1311113250, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", - "statuses_count": 112, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1311113250/1411398117", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2612918754", - "following": false, - "friends_count": 15, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 20, - "location": "", - "screen_name": "robertabbott92", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "name": "robert abbott", - "profile_use_background_image": true, - "description": "", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jul 09 04:39:39 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", - "favourites_count": 5, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "677266170047696896", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "twitter.com/wsl/status/677\u2026", - "url": "https://t.co/5ikdEpXSfx", - "expanded_url": "https://twitter.com/wsl/status/677265901482172416", - "indices": [ - 9, - 32 - ] - } - ], - "hashtags": [ - { - "indices": [ - 0, - 8 - ], - "text": "GoKelly" - } - ], - "user_mentions": [] - }, - "created_at": "Wed Dec 16 23:16:52 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "und", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 677266170047696896, - "text": "#GoKelly https://t.co/5ikdEpXSfx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 2612918754, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 17, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "123710951", - "following": false, - "friends_count": 22, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "99CC33", - "profile_link_color": "D02B55", - "geo_enabled": false, - "followers_count": 51, - "location": "", - "screen_name": "nupurgarg16", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 2, - "name": "Nupur Garg", - "profile_use_background_image": true, - "description": "Engineer. Student. Daughter. Sister. Indian-American. Passionate about diversity. Studying CS @CalPoly but my \u2665 is in the Bay.", - "url": null, - "profile_text_color": "3E4415", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", - "profile_background_color": "352726", - "created_at": "Wed Mar 17 00:37:32 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "829D5E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", - "favourites_count": 10, - "status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "672543113978580992", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "youtube.com/watch?v=PI09_e\u2026", - "url": "https://t.co/vnVTw3Z0Q9", - "expanded_url": "https://www.youtube.com/watch?v=PI09_e0DarY", - "indices": [ - 68, - 91 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AshleyMardell", - "id_str": "101129043", - "id": 101129043, - "indices": [ - 53, - 67 - ], - "name": "Ashley Mardell" - } - ] - }, - "created_at": "Thu Dec 03 22:29:08 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 672543113978580992, - "text": "Such a raw, incredible video about loving oneself by @AshleyMardell https://t.co/vnVTw3Z0Q9", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 17, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 123710951, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", - "statuses_count": 13, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "2424272372", - "following": false, - "friends_count": 382, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/toddsherman", - "url": "https://t.co/vUfwnDEI57", - "expanded_url": "http://www.linkedin.com/in/toddsherman", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "93A644", - "geo_enabled": true, - "followers_count": 1031, - "location": "San Francisco, CA", - "screen_name": "tdd", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 21, - "name": "Todd Sherman", - "profile_use_background_image": true, - "description": "Product Manager at Twitter.", - "url": "https://t.co/vUfwnDEI57", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", - "profile_background_color": "B2DFDA", - "created_at": "Wed Apr 02 19:53:23 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", - "favourites_count": 2960, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": 14253109, - "possibly_sensitive": false, - "id_str": "685532007728693248", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/7Yvf4P8A7N", - "url": "https://t.co/7Yvf4P8A7N", - "expanded_url": "http://twitter.com/tdd/status/685532007728693248/photo/1", - "indices": [ - 27, - 50 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "adambain", - "id_str": "14253109", - "id": 14253109, - "indices": [ - 0, - 9 - ], - "name": "adam bain" - }, - { - "screen_name": "santana", - "id_str": "54030633", - "id": 54030633, - "indices": [ - 10, - 18 - ], - "name": "Ivan Santana" - } - ] - }, - "created_at": "Fri Jan 08 18:42:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "14253109", - "place": { - "url": "https://api.twitter.com/1.1/geo/id/07d9cd6afd884001.json", - "country": "United States", - "attributes": {}, - "place_type": "poi", - "bounding_box": { - "coordinates": [ - [ - [ - -122.41679856739916, - 37.77688821377302 - ], - [ - -122.41679856739916, - 37.77688821377302 - ], - [ - -122.41679856739916, - 37.77688821377302 - ], - [ - -122.41679856739916, - 37.77688821377302 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Twitter HQ", - "id": "07d9cd6afd884001", - "name": "Twitter HQ" - }, - "in_reply_to_screen_name": "adambain", - "in_reply_to_status_id_str": "685531730757824512", - "truncated": false, - "id": 685532007728693248, - "text": "@adambain @santana be like https://t.co/7Yvf4P8A7N", - "coordinates": null, - "in_reply_to_status_id": 685531730757824512, - "favorite_count": 5, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2424272372, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", - "statuses_count": 1424, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2424272372/1426469295", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "284159631", - "following": false, - "friends_count": 296, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jackiereses.tumblr.com", - "url": "https://t.co/JIrh2PYIZ2", - "expanded_url": "http://jackiereses.tumblr.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "DDFFCC", - "profile_link_color": "3B94D9", - "geo_enabled": true, - "followers_count": 1906, - "location": "Woodside, CA and New York City", - "screen_name": "jackiereses", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "Jackie Reses", - "profile_use_background_image": true, - "description": "Just moved to new house! @jackiereseskidz", - "url": "https://t.co/JIrh2PYIZ2", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", - "profile_background_color": "89C9FA", - "created_at": "Mon Apr 18 18:59:19 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "BDDCAD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", - "favourites_count": 279, - "status": { - "retweet_count": 2, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685140789593178112", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "for.tn/1OAh75J", - "url": "https://t.co/ODPl4AkEoB", - "expanded_url": "http://for.tn/1OAh75J", - "indices": [ - 87, - 110 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "FortuneMagazine", - "id_str": "25053299", - "id": 25053299, - "indices": [ - 70, - 86 - ], - "name": "Fortune" - } - ] - }, - "created_at": "Thu Jan 07 16:47:48 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685140789593178112, - "text": "Here's Hasbro's response to this Monopoly 'Star Wars' controversy via @FortuneMagazine https://t.co/ODPl4AkEoB", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Mobile Web" - }, - "default_profile_image": false, - "id": 284159631, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", - "statuses_count": 600, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/284159631/1405201905", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "14130366", - "following": false, - "friends_count": 256, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": true, - "followers_count": 332280, - "location": "", - "screen_name": "sundarpichai", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2560, - "name": "sundarpichai", - "profile_use_background_image": true, - "description": "CEO, @google", - "url": null, - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Mar 12 05:51:53 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", - "favourites_count": 263, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 273, - "truncated": false, - "retweeted": false, - "id_str": "679335075331203072", - "id": 679335075331203072, - "text": "Incredible achievement for #SpaceX , congratulations to the team. Inspiring to see such progress", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 27, - 34 - ], - "text": "SpaceX" - } - ], - "user_mentions": [] - }, - "created_at": "Tue Dec 22 16:17:58 +0000 2015", - "source": "Twitter Web Client", - "favorite_count": 847, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 14130366, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", - "statuses_count": 721, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "3024282479", - "following": false, - "friends_count": 378, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "sunujournal.com", - "url": "https://t.co/VEFaxoMlRR", - "expanded_url": "http://www.sunujournal.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 722, - "location": "", - "screen_name": "sunujournal", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 16, - "name": "S U N U", - "profile_use_background_image": true, - "description": "SUNU: Journal of African Affairs, Critical Thought + Aesthetics \u2022 Amplifying the youth voice + contributing to the collective consciousness #SUNUjournal \u2022 2016", - "url": "https://t.co/VEFaxoMlRR", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", - "profile_background_color": "FFFFFF", - "created_at": "Sun Feb 08 01:50:03 +0000 2015", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", - "favourites_count": 48, - "status": { - "retweet_count": 5, - "retweeted_status": { - "retweet_count": 5, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684218010253443078", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1OIKNsY", - "url": "https://t.co/4Ig5oKG2cQ", - "expanded_url": "http://bit.ly/1OIKNsY", - "indices": [ - 99, - 122 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 03:41:00 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684218010253443078, - "text": "From resistance to rebellion: Asian and Afro-Caribbean struggles in Britain: A. Sivanandan (1981): https://t.co/4Ig5oKG2cQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 8, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684230912805089281", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/1OIKNsY", - "url": "https://t.co/4Ig5oKG2cQ", - "expanded_url": "http://bit.ly/1OIKNsY", - "indices": [ - 119, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "public_archive", - "id_str": "120174828", - "id": 120174828, - "indices": [ - 3, - 18 - ], - "name": "The Public Archive" - } - ] - }, - "created_at": "Tue Jan 05 04:32:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684230912805089281, - "text": "RT @public_archive: From resistance to rebellion: Asian and Afro-Caribbean struggles in Britain: A. Sivanandan (1981): https://t.co/4Ig5oKG\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 3024282479, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", - "statuses_count": 515, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3024282479/1428706146", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "17169320", - "following": false, - "friends_count": 660, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thinkcommon.com", - "url": "http://t.co/lGKu0vCb9Q", - "expanded_url": "http://thinkcommon.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "EADEAA", - "profile_link_color": "EEAD1D", - "geo_enabled": false, - "followers_count": 3227707, - "location": "Chicago, IL", - "screen_name": "common", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 14193, - "name": "COMMON", - "profile_use_background_image": false, - "description": "Hip Hop Artist/ Actor", - "url": "http://t.co/lGKu0vCb9Q", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", - "profile_background_color": "000000", - "created_at": "Tue Nov 04 21:18:21 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", - "favourites_count": 40, - "status": { - "retweet_count": 10, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685556232627859457", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "instagram.com/p/BASovkotmmf/", - "url": "https://t.co/g3UiMWOqcp", - "expanded_url": "https://www.instagram.com/p/BASovkotmmf/", - "indices": [ - 76, - 99 - ] - } - ], - "hashtags": [ - { - "indices": [ - 63, - 75 - ], - "text": "itrainwithQ" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 20:18:37 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685556232627859457, - "text": "Y'all know adrianpeterson ain't the only one who can do this. #itrainwithQ https://t.co/g3UiMWOqcp", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 57, - "contributors": null, - "source": "Instagram" - }, - "default_profile_image": false, - "id": 17169320, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", - "statuses_count": 9755, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17169320/1438213738", - "is_translator": false - }, - { - "time_zone": "Quito", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "28035260", - "following": false, - "friends_count": 588, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "smarturl.it/iKingPushDBD", - "url": "https://t.co/Y2KVVZtpIp", - "expanded_url": "http://smarturl.it/iKingPushDBD", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1196404, - "location": "VA", - "screen_name": "PUSHA_T", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 3619, - "name": "PUSHA T", - "profile_use_background_image": true, - "description": "MGMT: @STEVENVICTOR Shows:Cara Lewis/CAA", - "url": "https://t.co/Y2KVVZtpIp", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Apr 01 02:56:54 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", - "favourites_count": 23, - "status": { - "retweet_count": 8, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685613964827332608", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "acclaimmag.com/music/review-p\u2026", - "url": "https://t.co/J13mfUDhi7", - "expanded_url": "http://www.acclaimmag.com/music/review-pusha-t-melbourne/#0", - "indices": [ - 24, - 47 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "ACCLAIMmagazine", - "id_str": "22733953", - "id": 22733953, - "indices": [ - 6, - 22 - ], - "name": "ACCLAIM magazine" - } - ] - }, - "created_at": "Sat Jan 09 00:08:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685613964827332608, - "text": "Fresh @ACCLAIMmagazine https://t.co/J13mfUDhi7", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 18, - "contributors": null, - "source": "UberSocial for iPhone" - }, - "default_profile_image": false, - "id": 28035260, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", - "statuses_count": 12194, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/28035260/1451438540", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "18381396", - "following": false, - "friends_count": 1615, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shop.txdxe.com", - "url": "http://t.co/afn1VAKJzW", - "expanded_url": "http://shop.txdxe.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "F20909", - "geo_enabled": false, - "followers_count": 197581, - "location": "TxDxE.com", - "screen_name": "TopDawgEnt", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 409, - "name": "TopDawgEnt", - "profile_use_background_image": true, - "description": "Official TopDawgEntertainment Twitter \u2022 @JayRock @KendrickLamar @ScHoolBoyQ @AbDashSoul @IsaiahRashad @SZA @MixedByAli #TDE Instagram: @TopDawgEnt", - "url": "http://t.co/afn1VAKJzW", - "profile_text_color": "B80202", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", - "profile_background_color": "000000", - "created_at": "Fri Dec 26 00:20:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", - "favourites_count": 25, - "status": { - "retweet_count": 96, - "retweeted_status": { - "retweet_count": 96, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685559168279932928", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 225, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 398, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 425, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", - "type": "photo", - "indices": [ - 108, - 131 - ], - "media_url": "http://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", - "display_url": "pic.twitter.com/JGJlnY5XgS", - "id_str": "685559167826964480", - "expanded_url": "http://twitter.com/VibeMagazine/status/685559168279932928/photo/1", - "id": 685559167826964480, - "url": "https://t.co/JGJlnY5XgS" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "on.vibe.com/1Jzx1gn", - "url": "https://t.co/lvULxDXufL", - "expanded_url": "http://on.vibe.com/1Jzx1gn", - "indices": [ - 84, - 107 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "kendricklamar", - "id_str": "23561980", - "id": 23561980, - "indices": [ - 1, - 15 - ], - "name": "Kendrick Lamar" - }, - { - "screen_name": "acltv", - "id_str": "28412100", - "id": 28412100, - "indices": [ - 76, - 82 - ], - "name": "Austin City Limits" - } - ] - }, - "created_at": "Fri Jan 08 20:30:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685559168279932928, - "text": ".@KendrickLamar breaks down the inspiration behind \u2018To Pimp A Butterfly\u2019 on @acltv: https://t.co/lvULxDXufL https://t.co/JGJlnY5XgS", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 218, - "contributors": null, - "source": "Twitter Web Client" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685620600589565952", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 225, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 398, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 640, - "h": 425, - "resize": "fit" - } - }, - "source_status_id_str": "685559168279932928", - "url": "https://t.co/JGJlnY5XgS", - "media_url": "http://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", - "source_user_id_str": "14691200", - "id_str": "685559167826964480", - "id": 685559167826964480, - "media_url_https": "https://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", - "type": "photo", - "indices": [ - 126, - 140 - ], - "source_status_id": 685559168279932928, - "source_user_id": 14691200, - "display_url": "pic.twitter.com/JGJlnY5XgS", - "expanded_url": "http://twitter.com/VibeMagazine/status/685559168279932928/photo/1" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "on.vibe.com/1Jzx1gn", - "url": "https://t.co/lvULxDXufL", - "expanded_url": "http://on.vibe.com/1Jzx1gn", - "indices": [ - 102, - 125 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "VibeMagazine", - "id_str": "14691200", - "id": 14691200, - "indices": [ - 3, - 16 - ], - "name": "VibeMagazine" - }, - { - "screen_name": "kendricklamar", - "id_str": "23561980", - "id": 23561980, - "indices": [ - 19, - 33 - ], - "name": "Kendrick Lamar" - }, - { - "screen_name": "acltv", - "id_str": "28412100", - "id": 28412100, - "indices": [ - 94, - 100 - ], - "name": "Austin City Limits" - } - ] - }, - "created_at": "Sat Jan 09 00:34:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685620600589565952, - "text": "RT @VibeMagazine: .@KendrickLamar breaks down the inspiration behind \u2018To Pimp A Butterfly\u2019 on @acltv: https://t.co/lvULxDXufL https://t.co/\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Echofon" - }, - "default_profile_image": false, - "id": 18381396, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", - "statuses_count": 6708, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18381396/1443854512", - "is_translator": false - }, - { - "time_zone": "Paris", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 3600, - "id_str": "327894845", - "following": false, - "friends_count": 157, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nextmanagement.com", - "url": "http://t.co/qeqVqn53yt", - "expanded_url": "http://www.nextmanagement.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 2300, - "location": "new york", - "screen_name": "MelodieMonrose", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 43, - "name": "M\u00e9lodie Monrose", - "profile_use_background_image": true, - "description": "Next models worldwide /Uno spain", - "url": "http://t.co/qeqVqn53yt", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", - "profile_background_color": "1F2021", - "created_at": "Sat Jul 02 10:27:10 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "fr", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", - "favourites_count": 123, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -74.026675, - 40.683935 - ], - [ - -73.910408, - 40.683935 - ], - [ - -73.910408, - 40.877483 - ], - [ - -74.026675, - 40.877483 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Manhattan, NY", - "id": "01a9a39529b27f36", - "name": "Manhattan" - }, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "668792992988311552", - "id": 668792992988311552, - "text": "Bon ok , j'arr\u00eate les tweets d\u00e9sesp\u00e9r\u00e9s . Mais bon je suis une martiniquaise frigorifi\u00e9e et d\u00e9racin\u00e9e . I am sure some of you can relate \ud83d\ude11", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Nov 23 14:07:29 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 5, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "fr" - }, - "default_profile_image": false, - "id": 327894845, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", - "statuses_count": 2133, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/327894845/1440579572", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "108213835", - "following": false, - "friends_count": 173, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 1385, - "location": "", - "screen_name": "jeneil1", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 45, - "name": "jeneil williams", - "profile_use_background_image": true, - "description": "tomboy model from jamaica, loves fashion,cooking,people and most of all love my job new to instagram follow me @jeneilwilliams", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Mon Jan 25 06:22:47 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", - "favourites_count": 242, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 2, - "truncated": false, - "retweeted": false, - "id_str": "683144131883982849", - "id": 683144131883982849, - "text": "Happy new year everyone \ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 02 04:33:47 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 4, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 108213835, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", - "statuses_count": 932, - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "6204", - "following": false, - "friends_count": 2910, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "jabrams.com", - "url": "http://t.co/YcT7cUkcui", - "expanded_url": "http://www.jabrams.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 15936, - "location": "San Francisco, CA", - "screen_name": "abrams", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 1064, - "name": "Jonathan Abrams", - "profile_use_background_image": true, - "description": "Founder & CEO of @Nuzzel", - "url": "http://t.co/YcT7cUkcui", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", - "profile_background_color": "C0DEED", - "created_at": "Sat Sep 16 01:11:02 +0000 2006", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", - "favourites_count": 10207, - "status": { - "retweet_count": 0, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685636226406199296", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "qz.com/567744", - "url": "https://t.co/zcrmwc655J", - "expanded_url": "http://qz.com/567744", - "indices": [ - 47, - 70 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "qz", - "id_str": "573918122", - "id": 573918122, - "indices": [ - 75, - 78 - ], - "name": "Quartz" - } - ] - }, - "created_at": "Sat Jan 09 01:36:29 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685636226406199296, - "text": "The case for eating cereal for breakfast again https://t.co/zcrmwc655J via @qz", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 6204, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 31483, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6204/1401738610", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "1547221", - "following": false, - "friends_count": 1042, - "entities": { - "description": { - "urls": [ - { - "display_url": "eugenewei.com", - "url": "https://t.co/31xFn7CUeB", - "expanded_url": "http://www.eugenewei.com", - "indices": [ - 73, - 96 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "eugenewei.com", - "url": "https://t.co/ccJQSSYAHH", - "expanded_url": "http://www.eugenewei.com/", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "909090", - "geo_enabled": true, - "followers_count": 3363, - "location": "San Francisco, CA", - "screen_name": "eugenewei", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 173, - "name": "Eugene Wei", - "profile_use_background_image": false, - "description": "Former Head of Product at Flipboard and Hulu, an alum of Amazon. More at https://t.co/31xFn7CUeB", - "url": "https://t.co/ccJQSSYAHH", - "profile_text_color": "2C2C2C", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", - "profile_background_color": "FFFFFF", - "created_at": "Mon Mar 19 20:00:36 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", - "favourites_count": 5964, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "684790692615335940", - "id": 684790692615335940, - "text": "Fastest boarding and offloading of a flight ever. People who fly to CES are career/professional flyers.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Wed Jan 06 17:36:38 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 6, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 1547221, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", - "statuses_count": 5743, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1547221/1398367465", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "29663668", - "following": false, - "friends_count": 511, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/RZAWU", - "url": "https://t.co/LxKDItI1ju", - "expanded_url": "http://www.facebook.com/RZAWU", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/43773275/wu.jpg", - "notifications": false, - "profile_sidebar_fill_color": "252429", - "profile_link_color": "2FC2EF", - "geo_enabled": false, - "followers_count": 629018, - "location": "Brooklyn-Shaolin-NY-NJ-LA", - "screen_name": "RZA", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 5503, - "name": "RZA!", - "profile_use_background_image": true, - "description": "MY OFFICIAL TWITTER, PEACE!", - "url": "https://t.co/LxKDItI1ju", - "profile_text_color": "666666", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", - "profile_background_color": "1A1B1F", - "created_at": "Wed Apr 08 07:37:52 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "181A1E", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", - "favourites_count": 15, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 148, - "truncated": false, - "retweeted": false, - "id_str": "685587424018206720", - "id": 685587424018206720, - "text": "\"Of course Black lives matter.. All lives matter\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:22:34 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 214, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 29663668, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/43773275/wu.jpg", - "statuses_count": 5560, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29663668/1448944289", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "6646402", - "following": false, - "friends_count": 647, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "get.fabric.io", - "url": "http://t.co/OZQv5dblxS", - "expanded_url": "http://get.fabric.io", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "F6F6F6", - "profile_link_color": "1191F2", - "geo_enabled": true, - "followers_count": 1161, - "location": "Boston / SF / worldwide", - "screen_name": "richparet", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 42, - "name": "Rich Paret", - "profile_use_background_image": false, - "description": "Director of Engineering, Developer Platform @twitter. @twitterapi / @gnip / @fabric. Let's build the future together.", - "url": "http://t.co/OZQv5dblxS", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", - "profile_background_color": "0F0F0F", - "created_at": "Thu Jun 07 17:49:42 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", - "favourites_count": 3280, - "status": { - "geo": null, - "place": { - "url": "https://api.twitter.com/1.1/geo/id/8193d87541f11dfb.json", - "country": "United States", - "attributes": {}, - "place_type": "city", - "bounding_box": { - "coordinates": [ - [ - [ - -71.160356, - 42.352429 - ], - [ - -71.064398, - 42.352429 - ], - [ - -71.064398, - 42.4039663 - ], - [ - -71.160356, - 42.4039663 - ] - ] - ], - "type": "Polygon" - }, - "country_code": "US", - "contained_within": [], - "full_name": "Cambridge, MA", - "id": "8193d87541f11dfb", - "name": "Cambridge" - }, - "in_reply_to_screen_name": "JillWetzler", - "in_reply_to_user_id": 403070695, - "in_reply_to_status_id_str": "685573071281901568", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685573192837132292", - "id": 685573192837132292, - "text": "@JillWetzler @jessicamckellar awesome!", - "in_reply_to_user_id_str": "403070695", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "JillWetzler", - "id_str": "403070695", - "id": 403070695, - "indices": [ - 0, - 12 - ], - "name": "Jill Wetzler" - }, - { - "screen_name": "jessicamckellar", - "id_str": "24945605", - "id": 24945605, - "indices": [ - 13, - 29 - ], - "name": "Jessica McKellar" - } - ] - }, - "created_at": "Fri Jan 08 21:26:01 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 1, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 685573071281901568, - "lang": "en" - }, - "default_profile_image": false, - "id": 6646402, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", - "statuses_count": 1554, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6646402/1440532521", - "is_translator": false - }, - { - "time_zone": null, - "profile_use_background_image": true, - "description": "", - "url": null, - "contributors_enabled": false, - "default_profile_image": true, - "utc_offset": null, - "id_str": "522299046", - "blocking": false, - "is_translation_enabled": false, - "id": 522299046, - "entities": { - "description": { - "urls": [] - } - }, - "profile_background_color": "C0DEED", - "created_at": "Mon Mar 12 14:33:21 +0000 2012", - "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "default_profile": true, - "profile_text_color": "333333", - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "statuses_count": 0, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", - "favourites_count": 0, - "geo_enabled": false, - "follow_request_sent": false, - "followers_count": 26, - "blocked_by": false, - "following": false, - "location": "", - "muting": false, - "friends_count": 0, - "notifications": false, - "screen_name": "GenosBarberia", - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 0, - "is_translator": false, - "name": "Geno's Barberia" - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "100325421", - "following": false, - "friends_count": 455, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 70507, - "location": "", - "screen_name": "Kevfeige", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 507, - "name": "Kevin Feige", - "profile_use_background_image": true, - "description": "Producer", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Dec 29 21:32:20 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", - "favourites_count": 1, - "status": { - "retweet_count": 359, - "retweeted_status": { - "retweet_count": 359, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685181614079492097", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/FpaYZCl2Ii", - "url": "https://t.co/FpaYZCl2Ii", - "expanded_url": "http://twitter.com/ThorMovies/status/685181614079492097/photo/1", - "indices": [ - 117, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 111, - 116 - ], - "text": "PCAs" - } - ], - "user_mentions": [ - { - "screen_name": "chrishemsworth", - "id_str": "3063032281", - "id": 3063032281, - "indices": [ - 12, - 27 - ], - "name": "Chris Hemsworth" - }, - { - "screen_name": "peopleschoice", - "id_str": "34993020", - "id": 34993020, - "indices": [ - 44, - 58 - ], - "name": "People's Choice" - } - ] - }, - "created_at": "Thu Jan 07 19:30:01 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685181614079492097, - "text": "Congrats to @chrishemsworth for winning the @PeoplesChoice for Favorite Action Movie Actor! Definitely worthy. #PCAs https://t.co/FpaYZCl2Ii", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1014, - "contributors": null, - "source": "Sprinklr" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685228256568545280", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "pic.twitter.com/FpaYZCl2Ii", - "url": "https://t.co/FpaYZCl2Ii", - "expanded_url": "http://twitter.com/ThorMovies/status/685181614079492097/photo/1", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [ - { - "indices": [ - 127, - 132 - ], - "text": "PCAs" - } - ], - "user_mentions": [ - { - "screen_name": "ThorMovies", - "id_str": "701625379", - "id": 701625379, - "indices": [ - 3, - 14 - ], - "name": "Thor" - }, - { - "screen_name": "chrishemsworth", - "id_str": "3063032281", - "id": 3063032281, - "indices": [ - 28, - 43 - ], - "name": "Chris Hemsworth" - }, - { - "screen_name": "peopleschoice", - "id_str": "34993020", - "id": 34993020, - "indices": [ - 60, - 74 - ], - "name": "People's Choice" - } - ] - }, - "created_at": "Thu Jan 07 22:35:21 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685228256568545280, - "text": "RT @ThorMovies: Congrats to @chrishemsworth for winning the @PeoplesChoice for Favorite Action Movie Actor! Definitely worthy. #PCAs https:\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 100325421, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 20, - "is_translator": false - }, - { - "time_zone": "Arizona", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -25200, - "id_str": "166747718", - "following": false, - "friends_count": 286, - "entities": { - "description": { - "urls": [ - { - "display_url": "itunes.apple.com/us/album/cherr\u2026", - "url": "https://t.co/cIuPQAaTHf", - "expanded_url": "https://itunes.apple.com/us/album/cherry-bomb/id983056044", - "indices": [ - 54, - 77 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "golfwang.com", - "url": "https://t.co/WMyHWbn11Q", - "expanded_url": "http://golfwang.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634274657806491648/l4r4obye.jpg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "FFCC4D", - "geo_enabled": false, - "followers_count": 2751413, - "location": "OKAGA, CA", - "screen_name": "fucktyler", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 7283, - "name": "Tyler, The Creator", - "profile_use_background_image": true, - "description": "i want an enzo, garden and leo from romeo and juliet: https://t.co/cIuPQAaTHf", - "url": "https://t.co/WMyHWbn11Q", - "profile_text_color": "00CCFF", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", - "profile_background_color": "75D1FF", - "created_at": "Wed Jul 14 22:32:25 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", - "favourites_count": 167, - "status": { - "retweet_count": 530, - "retweeted_status": { - "retweet_count": 530, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684425683301302274", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "soundcloud.com/ofwgkta-offici\u2026", - "url": "https://t.co/L57RgEWMcj", - "expanded_url": "https://soundcloud.com/ofwgkta-official/kwym-keep-working-young-man", - "indices": [ - 109, - 132 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Tue Jan 05 17:26:13 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684425683301302274, - "text": "if you somehow slept the entire day yesterday and missed out, this link leads you to a new song I dropped....https://t.co/L57RgEWMcj", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1181, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "684566153931296768", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "soundcloud.com/ofwgkta-offici\u2026", - "url": "https://t.co/L57RgEWMcj", - "expanded_url": "https://soundcloud.com/ofwgkta-official/kwym-keep-working-young-man", - "indices": [ - 139, - 140 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "DamierGenesis", - "id_str": "128665538", - "id": 128665538, - "indices": [ - 3, - 17 - ], - "name": "Suavecito." - } - ] - }, - "created_at": "Wed Jan 06 02:44:24 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 684566153931296768, - "text": "RT @DamierGenesis: if you somehow slept the entire day yesterday and missed out, this link leads you to a new song I dropped....https://t.c\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Mobile Web (M5)" - }, - "default_profile_image": false, - "id": 166747718, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634274657806491648/l4r4obye.jpg", - "statuses_count": 39779, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/166747718/1438284983", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "147279619", - "following": false, - "friends_count": 20834, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", - "notifications": false, - "profile_sidebar_fill_color": "EBDDEB", - "profile_link_color": "4A913C", - "geo_enabled": true, - "followers_count": 27038, - "location": "", - "screen_name": "MayaAMonroe", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 106, - "name": "Maya Angelique", - "profile_use_background_image": true, - "description": "IG and snapchat: mayaangelique", - "url": null, - "profile_text_color": "6ABA93", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", - "profile_background_color": "FF001E", - "created_at": "Sun May 23 18:06:28 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", - "favourites_count": 62950, - "status": { - "retweet_count": 1178, - "retweeted_status": { - "retweet_count": 1178, - "in_reply_to_user_id": 347927511, - "possibly_sensitive": false, - "id_str": "654641886632759297", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 579, - "h": 540, - "resize": "fit" - }, - "medium": { - "w": 579, - "h": 540, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 317, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", - "type": "photo", - "indices": [ - 85, - 107 - ], - "media_url": "http://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", - "display_url": "pic.twitter.com/FGmVNBHN5U", - "id_str": "654641878487293953", - "expanded_url": "http://twitter.com/CivilJustUs/status/654641886632759297/photo/1", - "id": 654641878487293953, - "url": "http://t.co/FGmVNBHN5U" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Oct 15 12:56:03 +0000 2015", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": "347927511", - "place": null, - "in_reply_to_screen_name": "CivilJustUs", - "in_reply_to_status_id_str": "654640631004966912", - "truncated": false, - "id": 654641886632759297, - "text": "Fuckboy twitter: \"this shit so good but I can't make a sound because I'm a real man\" http://t.co/FGmVNBHN5U", - "coordinates": null, - "in_reply_to_status_id": 654640631004966912, - "favorite_count": 907, - "contributors": null, - "source": "Twitter for Android" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": true, - "id_str": "685630576104239104", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "large": { - "w": 579, - "h": 540, - "resize": "fit" - }, - "medium": { - "w": 579, - "h": 540, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 340, - "h": 317, - "resize": "fit" - } - }, - "source_status_id_str": "654641886632759297", - "url": "http://t.co/FGmVNBHN5U", - "media_url": "http://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", - "source_user_id_str": "347927511", - "id_str": "654641878487293953", - "id": 654641878487293953, - "media_url_https": "https://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", - "type": "photo", - "indices": [ - 102, - 124 - ], - "source_status_id": 654641886632759297, - "source_user_id": 347927511, - "display_url": "pic.twitter.com/FGmVNBHN5U", - "expanded_url": "http://twitter.com/CivilJustUs/status/654641886632759297/photo/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "CivilJustUs", - "id_str": "347927511", - "id": 347927511, - "indices": [ - 3, - 15 - ], - "name": "El DeBeard" - } - ] - }, - "created_at": "Sat Jan 09 01:14:02 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685630576104239104, - "text": "RT @CivilJustUs: Fuckboy twitter: \"this shit so good but I can't make a sound because I'm a real man\" http://t.co/FGmVNBHN5U", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 147279619, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", - "statuses_count": 125764, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/147279619/1448679913", - "is_translator": false - }, - { - "time_zone": "Atlantic Time (Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -14400, - "id_str": "2517988075", - "following": false, - "friends_count": 649, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theatlantic.com", - "url": "http://t.co/863fgunGbW", - "expanded_url": "http://www.theatlantic.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "000000", - "geo_enabled": false, - "followers_count": 462261, - "location": "Shaolin ", - "screen_name": "tanehisicoates", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 4045, - "name": "Ta-Nehisi Coates", - "profile_use_background_image": false, - "description": "I'm on a mission that Dreamers say is impossible.\nBut when I swing my sword, they all choppable.", - "url": "http://t.co/863fgunGbW", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", - "profile_background_color": "000000", - "created_at": "Fri May 23 14:31:49 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", - "favourites_count": 502, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 71, - "truncated": false, - "retweeted": false, - "id_str": "682882413899452417", - "id": 682882413899452417, - "text": "\"For the new year, strictly Wu-wear...\"", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 01 11:13:49 +0000 2016", - "source": "TweetDeck", - "favorite_count": 210, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 2517988075, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 20312, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2367911", - "following": false, - "friends_count": 31976, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mtv.com", - "url": "http://t.co/yyniasrs2z", - "expanded_url": "http://mtv.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": true, - "followers_count": 13287230, - "location": "NYC", - "screen_name": "MTV", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 28348, - "name": "MTV", - "profile_use_background_image": true, - "description": "The official Twitter account for MTV, USA! Tweets by @Kaitiii | Snapchat/KiK: MTV", - "url": "http://t.co/yyniasrs2z", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", - "profile_background_color": "131516", - "created_at": "Mon Mar 26 22:30:49 +0000 2007", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", - "favourites_count": 12411, - "status": { - "retweet_count": 78, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685634299618525184", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 378, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 668, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 1141, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYPcwSWWEAAu3QE.png", - "type": "photo", - "indices": [ - 104, - 127 - ], - "media_url": "http://pbs.twimg.com/media/CYPcwSWWEAAu3QE.png", - "display_url": "pic.twitter.com/ikbJ9TbExe", - "id_str": "685634290407837696", - "expanded_url": "http://twitter.com/MTV/status/685634299618525184/photo/1", - "id": 685634290407837696, - "url": "https://t.co/ikbJ9TbExe" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "on.mtv.com/1OUWblF", - "url": "https://t.co/eVzCxC9Wh8", - "expanded_url": "http://on.mtv.com/1OUWblF", - "indices": [ - 80, - 103 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 01:28:50 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685634299618525184, - "text": "11 former Nickelodeon stars who are hot AF now (and honestly always have been): https://t.co/eVzCxC9Wh8 https://t.co/ikbJ9TbExe", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 244, - "contributors": null, - "source": "SocialFlow" - }, - "default_profile_image": false, - "id": 2367911, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 150515, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2367911/1451411117", - "is_translator": false - }, - { - "time_zone": null, - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": null, - "id_str": "2601175671", - "following": false, - "friends_count": 1137, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "flyt.it/fettywapitunes", - "url": "https://t.co/ha6adhNCBb", - "expanded_url": "http://flyt.it/fettywapitunes", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 458114, - "location": "", - "screen_name": "fettywap", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 513, - "name": "FettyWap1738", - "profile_use_background_image": true, - "description": "Fetty Wap||ZooWap||Zoovier||ZooZoo for bookings: bookings@rgfproductions.com . Album \u2b07\ufe0f on iTunes", - "url": "https://t.co/ha6adhNCBb", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Jun 11 13:55:15 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", - "favourites_count": 1939, - "status": { - "retweet_count": 9784, - "retweeted_status": { - "retweet_count": 9784, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685320218386673664", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "smarturl.it/SOL.FettyRmx", - "url": "https://t.co/hpbwqOt0fw", - "expanded_url": "http://smarturl.it/SOL.FettyRmx", - "indices": [ - 65, - 88 - ] - }, - { - "display_url": "vevo.ly/XmDzV7", - "url": "https://t.co/0NGVSd7XFQ", - "expanded_url": "http://vevo.ly/XmDzV7", - "indices": [ - 89, - 112 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "fettywap", - "id_str": "2601175671", - "id": 2601175671, - "indices": [ - 28, - 37 - ], - "name": "FettyWap1738" - }, - { - "screen_name": "AppleMusic", - "id_str": "74580436", - "id": 74580436, - "indices": [ - 52, - 63 - ], - "name": "Apple Music" - } - ] - }, - "created_at": "Fri Jan 08 04:40:47 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685320218386673664, - "text": "The Same Old Love remix ft. @fettywap is out NOW on @applemusic! https://t.co/hpbwqOt0fw https://t.co/0NGVSd7XFQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 18817, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685530981231628288", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "smarturl.it/SOL.FettyRmx", - "url": "https://t.co/hpbwqOt0fw", - "expanded_url": "http://smarturl.it/SOL.FettyRmx", - "indices": [ - 82, - 105 - ] - }, - { - "display_url": "vevo.ly/XmDzV7", - "url": "https://t.co/0NGVSd7XFQ", - "expanded_url": "http://vevo.ly/XmDzV7", - "indices": [ - 106, - 129 - ] - } - ], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "selenagomez", - "id_str": "23375688", - "id": 23375688, - "indices": [ - 3, - 15 - ], - "name": "Selena Gomez" - }, - { - "screen_name": "fettywap", - "id_str": "2601175671", - "id": 2601175671, - "indices": [ - 45, - 54 - ], - "name": "FettyWap1738" - }, - { - "screen_name": "AppleMusic", - "id_str": "74580436", - "id": 74580436, - "indices": [ - 69, - 80 - ], - "name": "Apple Music" - } - ] - }, - "created_at": "Fri Jan 08 18:38:17 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685530981231628288, - "text": "RT @selenagomez: The Same Old Love remix ft. @fettywap is out NOW on @applemusic! https://t.co/hpbwqOt0fw https://t.co/0NGVSd7XFQ", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for iPhone" - }, - "default_profile_image": false, - "id": 2601175671, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 4812, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2601175671/1450121884", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "54387680", - "following": false, - "friends_count": 0, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "michaeljackson.com", - "url": "http://t.co/q1TE07bI3n", - "expanded_url": "http://www.michaeljackson.com/", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "E3E2DE", - "profile_link_color": "C12032", - "geo_enabled": false, - "followers_count": 1924985, - "location": "New York, NY USA", - "screen_name": "michaeljackson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 13327, - "name": "Michael Jackson", - "profile_use_background_image": true, - "description": "The Official Michael Jackson Twitter Page", - "url": "http://t.co/q1TE07bI3n", - "profile_text_color": "634047", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", - "profile_background_color": "FFFFFF", - "created_at": "Tue Jul 07 00:24:51 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", - "favourites_count": 0, - "status": { - "retweet_count": 591, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685493401106673665", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 241, - "resize": "fit" - }, - "medium": { - "w": 450, - "h": 320, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 450, - "h": 320, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNcnbPUoAEfwkK.jpg", - "type": "photo", - "indices": [ - 38, - 61 - ], - "media_url": "http://pbs.twimg.com/media/CYNcnbPUoAEfwkK.jpg", - "display_url": "pic.twitter.com/Yed1qysvMx", - "id_str": "685493400687124481", - "expanded_url": "http://twitter.com/michaeljackson/status/685493401106673665/photo/1", - "id": 685493400687124481, - "url": "https://t.co/Yed1qysvMx" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 0, - 15 - ], - "text": "FriendlyFriday" - } - ], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:08:57 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685493401106673665, - "text": "#FriendlyFriday The King And The Boss https://t.co/Yed1qysvMx", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 1184, - "contributors": null, - "source": "Hootsuite" - }, - "default_profile_image": false, - "id": 54387680, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", - "statuses_count": 1357, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/54387680/1435330454", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "15934076", - "following": false, - "friends_count": 685, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtu.be/4-42cW_4ycA", - "url": "https://t.co/jYzdPI3TZ3", - "expanded_url": "http://youtu.be/4-42cW_4ycA", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "000000", - "geo_enabled": true, - "followers_count": 86217, - "location": "Los Angeles, CA", - "screen_name": "quintabrunson", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 185, - "name": "Quinta B.", - "profile_use_background_image": false, - "description": "hi. i'm a creator. I know, right?", - "url": "https://t.co/jYzdPI3TZ3", - "profile_text_color": "030303", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", - "profile_background_color": "E7F5F5", - "created_at": "Thu Aug 21 17:31:50 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", - "favourites_count": 5668, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 234, - "truncated": false, - "retweeted": false, - "id_str": "685596361958395905", - "id": 685596361958395905, - "text": "I'm not overwhelmed. In not underwhelmed. Just whelmed.", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 22:58:05 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 404, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 15934076, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", - "statuses_count": 41490, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15934076/1449387090", - "is_translator": false - }, - { - "time_zone": "Central Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -21600, - "id_str": "221579212", - "following": false, - "friends_count": 460, - "entities": { - "description": { - "urls": [ - { - "display_url": "jouelzy.com", - "url": "https://t.co/qfCo83qrSw", - "expanded_url": "http://jouelzy.com", - "indices": [ - 120, - 143 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com/jouelzy", - "url": "https://t.co/oeQSvIWKEP", - "expanded_url": "http://www.youtube.com/jouelzy", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "B8A2E8", - "geo_enabled": true, - "followers_count": 9967, - "location": "Floating thru the Universe...", - "screen_name": "Jouelzy", - "verified": false, - "has_extended_profile": true, - "protected": false, - "listed_count": 106, - "name": "Jouelzy", - "profile_use_background_image": true, - "description": "OG #SmartBrownGirl. Writer | Tech | Culture | Snark | Womanist Really love tacos, really is my email: tacos@jouelzy.com https://t.co/qfCo83qrSw", - "url": "https://t.co/oeQSvIWKEP", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Wed Dec 01 01:22:22 +0000 2010", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", - "favourites_count": 762, - "status": { - "retweet_count": 4, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685622079727742976", - "geo": null, - "entities": { - "symbols": [], - "urls": [ - { - "display_url": "jouz.es/1tsHoHo", - "url": "https://t.co/6brtUDPU2V", - "expanded_url": "http://jouz.es/1tsHoHo", - "indices": [ - 56, - 79 - ] - } - ], - "hashtags": [ - { - "indices": [ - 50, - 55 - ], - "text": "jpyo" - } - ], - "user_mentions": [] - }, - "created_at": "Sat Jan 09 00:40:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685622079727742976, - "text": "Please Stop Correlating Weaves as Being Hood... - #jpyo https://t.co/6brtUDPU2V", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 4, - "contributors": null, - "source": "Win the Customer" - }, - "default_profile_image": false, - "id": 221579212, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", - "statuses_count": 43559, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/221579212/1412759867", - "is_translator": false - }, - { - "time_zone": "Pacific Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -28800, - "id_str": "26565946", - "following": false, - "friends_count": 117, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "justintimberlake.com", - "url": "http://t.co/SRqd8jW6W3", - "expanded_url": "http://www.justintimberlake.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "EFEFEF", - "profile_link_color": "009999", - "geo_enabled": false, - "followers_count": 51071487, - "location": "Memphis, TN", - "screen_name": "jtimberlake", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 76087, - "name": "Justin Timberlake", - "profile_use_background_image": true, - "description": "The Official Twitter of Justin Timberlake", - "url": "http://t.co/SRqd8jW6W3", - "profile_text_color": "333333", - "is_translation_enabled": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", - "profile_background_color": "131516", - "created_at": "Wed Mar 25 19:10:50 +0000 2009", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "EEEEEE", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", - "favourites_count": 14, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 1138, - "truncated": false, - "retweeted": false, - "id_str": "684896391169191938", - "id": 684896391169191938, - "text": "Congrats to one of my favorite humans @TheEllenShow on your @PeoplesChoice Favorite Humanitarian Award for @StJude !#PCAs", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 116, - 121 - ], - "text": "PCAs" - } - ], - "user_mentions": [ - { - "screen_name": "TheEllenShow", - "id_str": "15846407", - "id": 15846407, - "indices": [ - 38, - 51 - ], - "name": "Ellen DeGeneres" - }, - { - "screen_name": "peopleschoice", - "id_str": "34993020", - "id": 34993020, - "indices": [ - 60, - 74 - ], - "name": "People's Choice" - }, - { - "screen_name": "StJude", - "id_str": "9624042", - "id": 9624042, - "indices": [ - 107, - 114 - ], - "name": "St. Jude" - } - ] - }, - "created_at": "Thu Jan 07 00:36:39 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 5806, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 26565946, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", - "statuses_count": 3106, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26565946/1424110230", - "is_translator": false - }, - { - "time_zone": "Mumbai", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "277434037", - "following": false, - "friends_count": 38, - "entities": { - "description": { - "urls": [] - } - }, - "default_profile": true, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": true, - "followers_count": 5403107, - "location": "Mumbai", - "screen_name": "RNTata2000", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 2741, - "name": "Ratan N. Tata", - "profile_use_background_image": true, - "description": "Former Chairman of Tata Group. Personal interests : - aviation, automobiles, scuba diving and architectural design.", - "url": null, - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", - "profile_background_color": "C0DEED", - "created_at": "Tue Apr 05 11:01:00 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "C0DEED", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", - "favourites_count": 7, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 329, - "truncated": false, - "retweeted": false, - "id_str": "681440380705886208", - "id": 681440380705886208, - "text": "Deeply touched by the kind sentiments & best wishes from well wishers. Thanks so much .", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Mon Dec 28 11:43:41 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 1880, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "default_profile_image": false, - "id": 277434037, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 116, - "is_translator": false - }, - { - "time_zone": "New Delhi", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": 19800, - "id_str": "270771330", - "following": false, - "friends_count": 396, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "tata.com", - "url": "http://t.co/KeVgcDr9Cg", - "expanded_url": "http://www.tata.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466215926279323648/Kc2O7Ilv.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "DDEEF6", - "profile_link_color": "0084B4", - "geo_enabled": false, - "followers_count": 315462, - "location": "Global", - "screen_name": "TataCompanies", - "verified": true, - "has_extended_profile": false, - "protected": false, - "listed_count": 550, - "name": "Tata Group", - "profile_use_background_image": true, - "description": "Official Twitter Channel of the Tata Group. \r\n@TataCompanies keeps you informed and updated on what\u2019s happening in the Tata group of companies.", - "url": "http://t.co/KeVgcDr9Cg", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/466221238990295040/jjzIhNhC_normal.png", - "profile_background_color": "0173BA", - "created_at": "Wed Mar 23 06:52:57 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFFFFF", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/466221238990295040/jjzIhNhC_normal.png", - "favourites_count": 1012, - "status": { - "retweet_count": 1, - "retweeted_status": { - "retweet_count": 1, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685166827698294784", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", - "type": "photo", - "indices": [ - 116, - 139 - ], - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", - "display_url": "pic.twitter.com/w8uJG9nM2h", - "id_str": "685166710010281984", - "expanded_url": "http://twitter.com/TataTech_News/status/685166827698294784/video/1", - "id": 685166710010281984, - "url": "https://t.co/w8uJG9nM2h" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 21, - 26 - ], - "text": "STEM" - } - ], - "user_mentions": [ - { - "screen_name": "Lions", - "id_str": "44666348", - "id": 44666348, - "indices": [ - 83, - 89 - ], - "name": "Detroit Lions" - }, - { - "screen_name": "A4C_ATHLETES", - "id_str": "2199969366", - "id": 2199969366, - "indices": [ - 90, - 103 - ], - "name": "ATHLETES FOR CHARITY" - }, - { - "screen_name": "Detroitk12", - "id_str": "57457257", - "id": 57457257, - "indices": [ - 104, - 115 - ], - "name": "DetroitPublicSchools" - } - ] - }, - "created_at": "Thu Jan 07 18:31:16 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685166827698294784, - "text": "Getting kids to love #STEM is easy because science.Having an NFL player helps too. @Lions @A4C_ATHLETES @Detroitk12 https://t.co/w8uJG9nM2h", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 6, - "contributors": null, - "source": "Twitter for iPhone" - }, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685513894043975680", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 191, - "resize": "fit" - }, - "medium": { - "w": 600, - "h": 338, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "large": { - "w": 1024, - "h": 576, - "resize": "fit" - } - }, - "source_status_id_str": "685166827698294784", - "url": "https://t.co/w8uJG9nM2h", - "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", - "source_user_id_str": "278029752", - "id_str": "685166710010281984", - "id": 685166710010281984, - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", - "type": "photo", - "indices": [ - 139, - 140 - ], - "source_status_id": 685166827698294784, - "source_user_id": 278029752, - "display_url": "pic.twitter.com/w8uJG9nM2h", - "expanded_url": "http://twitter.com/TataTech_News/status/685166827698294784/video/1" - } - ], - "symbols": [], - "urls": [], - "hashtags": [ - { - "indices": [ - 40, - 45 - ], - "text": "STEM" - } - ], - "user_mentions": [ - { - "screen_name": "TataTech_News", - "id_str": "278029752", - "id": 278029752, - "indices": [ - 3, - 17 - ], - "name": "Tata Technologies" - }, - { - "screen_name": "Lions", - "id_str": "44666348", - "id": 44666348, - "indices": [ - 102, - 108 - ], - "name": "Detroit Lions" - }, - { - "screen_name": "A4C_ATHLETES", - "id_str": "2199969366", - "id": 2199969366, - "indices": [ - 109, - 122 - ], - "name": "ATHLETES FOR CHARITY" - }, - { - "screen_name": "Detroitk12", - "id_str": "57457257", - "id": 57457257, - "indices": [ - 123, - 134 - ], - "name": "DetroitPublicSchools" - } - ] - }, - "created_at": "Fri Jan 08 17:30:23 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685513894043975680, - "text": "RT @TataTech_News: Getting kids to love #STEM is easy because science.Having an NFL player helps too. @Lions @A4C_ATHLETES @Detroitk12 http\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Buffer" - }, - "default_profile_image": false, - "id": 270771330, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466215926279323648/Kc2O7Ilv.jpeg", - "statuses_count": 11644, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/270771330/1451565528", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "418981954", - "following": false, - "friends_count": 118, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "yayadacosta.com", - "url": "https://t.co/YLjOWGxoVy", - "expanded_url": "http://www.yayadacosta.com", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", - "notifications": false, - "profile_sidebar_fill_color": "F6FFD1", - "profile_link_color": "0099CC", - "geo_enabled": false, - "followers_count": 16568, - "location": "New York, NY", - "screen_name": "theyayadacosta", - "verified": true, - "has_extended_profile": true, - "protected": false, - "listed_count": 173, - "name": "yaya dacosta", - "profile_use_background_image": true, - "description": "Chicago Med on NBC, 8/9C", - "url": "https://t.co/YLjOWGxoVy", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/546186267780980736/mU3Rs5NV_normal.jpeg", - "profile_background_color": "FFF04D", - "created_at": "Tue Nov 22 20:15:43 +0000 2011", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "FFF8AD", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/546186267780980736/mU3Rs5NV_normal.jpeg", - "favourites_count": 330, - "status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": "AndreRoyo", - "in_reply_to_user_id": 22891868, - "in_reply_to_status_id_str": "684845325157298176", - "retweet_count": 0, - "truncated": false, - "retweeted": false, - "id_str": "685120871795683328", - "id": 685120871795683328, - "text": "@AndreRoyo Ah, so you're the reason for yesterday's studio blackout! \ud83d\ude02 Nice to hear from you. Happy New Year! How long r u in town? Call me", - "in_reply_to_user_id_str": "22891868", - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "AndreRoyo", - "id_str": "22891868", - "id": 22891868, - "indices": [ - 0, - 10 - ], - "name": "Andre Royo" - } - ] - }, - "created_at": "Thu Jan 07 15:28:39 +0000 2016", - "source": "Twitter for iPhone", - "favorite_count": 0, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": 684845325157298176, - "lang": "en" - }, - "default_profile_image": false, - "id": 418981954, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", - "statuses_count": 757, - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "16419713", - "following": false, - "friends_count": 762, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "afropunk.com", - "url": "http://t.co/mvOn1PAAXD", - "expanded_url": "http://www.afropunk.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/573877803/6nr7xvcjgkugyvz5esks.jpeg", - "notifications": false, - "profile_sidebar_fill_color": "FFFFFF", - "profile_link_color": "333333", - "geo_enabled": true, - "followers_count": 40541, - "location": "Brooklyn, NY", - "screen_name": "afropunk", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 811, - "name": "AFROPUNK", - "profile_use_background_image": false, - "description": "Defining Culture.", - "url": "http://t.co/mvOn1PAAXD", - "profile_text_color": "333333", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/547858925169553408/rYeQ4ng3_normal.jpeg", - "profile_background_color": "EEEEEE", - "created_at": "Tue Sep 23 14:38:16 +0000 2008", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "64FB00", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/547858925169553408/rYeQ4ng3_normal.jpeg", - "favourites_count": 138, - "status": { - "retweet_count": 36, - "in_reply_to_user_id": null, - "possibly_sensitive": false, - "id_str": "685502031365320704", - "geo": null, - "entities": { - "media": [ - { - "sizes": { - "small": { - "w": 340, - "h": 297, - "resize": "fit" - }, - "large": { - "w": 507, - "h": 443, - "resize": "fit" - }, - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 507, - "h": 443, - "resize": "fit" - } - }, - "media_url_https": "https://pbs.twimg.com/media/CYNkdxjWsAEcjpQ.jpg", - "type": "photo", - "indices": [ - 119, - 142 - ], - "media_url": "http://pbs.twimg.com/media/CYNkdxjWsAEcjpQ.jpg", - "display_url": "pic.twitter.com/mbovF6KFek", - "id_str": "685502030971056129", - "expanded_url": "http://twitter.com/afropunk/status/685502031365320704/photo/1", - "id": 685502030971056129, - "url": "https://t.co/mbovF6KFek" - } - ], - "symbols": [], - "urls": [ - { - "display_url": "bit.ly/22PXZ9Z", - "url": "https://t.co/j3ZRbspjlT", - "expanded_url": "http://bit.ly/22PXZ9Z", - "indices": [ - 95, - 118 - ] - } - ], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Fri Jan 08 16:43:14 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 685502031365320704, - "text": "FEATURE: Steffany Brown calls out microaggressions in funny illustration series more pics\n\u2014>https://t.co/j3ZRbspjlT https://t.co/mbovF6KFek", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 49, - "contributors": null, - "source": "Twitter Web Client" - }, - "default_profile_image": false, - "id": 16419713, - "blocked_by": false, - "profile_background_tile": true, - "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/573877803/6nr7xvcjgkugyvz5esks.jpeg", - "statuses_count": 14801, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16419713/1450711385", - "is_translator": false - }, - { - "time_zone": "Eastern Time (US & Canada)", - "follow_request_sent": false, - "contributors_enabled": false, - "utc_offset": -18000, - "id_str": "2578265913", - "following": false, - "friends_count": 12, - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "howmanysyrians.com", - "url": "http://t.co/PUY0b0QcC0", - "expanded_url": "http://howmanysyrians.com", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "default_profile": false, - "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", - "notifications": false, - "profile_sidebar_fill_color": "000000", - "profile_link_color": "DB553A", - "geo_enabled": false, - "followers_count": 2137, - "location": "", - "screen_name": "HowManySyrians", - "verified": false, - "has_extended_profile": false, - "protected": false, - "listed_count": 55, - "name": "How Many More?", - "profile_use_background_image": false, - "description": "We will never forget the dead. We will never give up fighting for the living.", - "url": "http://t.co/PUY0b0QcC0", - "profile_text_color": "000000", - "is_translation_enabled": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/574597345523843072/vxAfmuIC_normal.jpeg", - "profile_background_color": "000000", - "created_at": "Mon Jun 02 19:23:47 +0000 2014", - "blocking": false, - "muting": false, - "profile_sidebar_border_color": "000000", - "lang": "en", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/574597345523843072/vxAfmuIC_normal.jpeg", - "favourites_count": 22, - "status": { - "retweet_count": 287, - "retweeted_status": { - "geo": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_user_id": null, - "in_reply_to_status_id_str": null, - "retweet_count": 287, - "truncated": false, - "retweeted": false, - "id_str": "682684333501640704", - "id": 682684333501640704, - "text": "Happy New Year world. In 2016 we hope for peace. We hope for skies clear of aircraft dropping bombs on us. We hope for a future for our kids", - "in_reply_to_user_id_str": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [] - }, - "created_at": "Thu Dec 31 22:06:43 +0000 2015", - "source": "Twitter for iPhone", - "favorite_count": 184, - "favorited": false, - "coordinates": null, - "contributors": null, - "in_reply_to_status_id": null, - "lang": "en" - }, - "in_reply_to_user_id": null, - "id_str": "683024524581945344", - "geo": null, - "entities": { - "symbols": [], - "urls": [], - "hashtags": [], - "user_mentions": [ - { - "screen_name": "SyriaCivilDef", - "id_str": "2468886751", - "id": 2468886751, - "indices": [ - 3, - 17 - ], - "name": "The White Helmets" - } - ] - }, - "created_at": "Fri Jan 01 20:38:31 +0000 2016", - "favorited": false, - "retweeted": false, - "lang": "en", - "in_reply_to_user_id_str": null, - "place": null, - "in_reply_to_screen_name": null, - "in_reply_to_status_id_str": null, - "truncated": false, - "id": 683024524581945344, - "text": "RT @SyriaCivilDef: Happy New Year world. In 2016 we hope for peace. We hope for skies clear of aircraft dropping bombs on us. We hope for a\u2026", - "coordinates": null, - "in_reply_to_status_id": null, - "favorite_count": 0, - "contributors": null, - "source": "Twitter for Android" - }, - "default_profile_image": false, - "id": 2578265913, - "blocked_by": false, - "profile_background_tile": false, - "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", - "statuses_count": 136366, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2578265913/1450390955", - "is_translator": false - } - ], - "previous_cursor": 0, - "previous_cursor_str": "0", - "next_cursor_str": "1510410423140902959" -} \ No newline at end of file +{"users": [{"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2377837022", "following": false, "friends_count": 82, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Facebook.com/MuppetsKermit", "url": "http://t.co/kjainYAA9x", "expanded_url": "http://Facebook.com/MuppetsKermit", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 88363, "location": "Hollywood, CA", "screen_name": "KermitTheFrog", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 462, "name": "Kermit the Frog", "profile_use_background_image": true, "description": "Hi-ho! Welcome to the official Twitter of me, Kermit the Frog!", "url": "http://t.co/kjainYAA9x", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", "profile_background_color": "B2DFDA", "created_at": "Sat Mar 08 00:14:55 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654052237929414656/YUI--ZV8_normal.jpg", "favourites_count": 11, "status": {"in_reply_to_status_id": 685568168647987200, "retweet_count": 15, "place": null, "in_reply_to_screen_name": "FozzieBear", "in_reply_to_user_id": 3220881440, "in_reply_to_status_id_str": "685568168647987200", "in_reply_to_user_id_str": "3220881440", "truncated": false, "id_str": "685570846509797376", "id": 685570846509797376, "text": ".@FozzieBear Huh. I actually like both of those. Thanks, Fozzie!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "FozzieBear", "id_str": "3220881440", "id": 3220881440, "indices": [1, 12], "name": "Fozzie Bear"}]}, "created_at": "Fri Jan 08 21:16:41 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 75, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2377837022, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 487, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2377837022/1444773126", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "271395703", "following": false, "friends_count": 323, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/Ariadnagutierr\u2026", "url": "https://t.co/T7mRnNYeAF", "expanded_url": "https://www.facebook.com/Ariadnagutierrezofficial/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 142238, "location": "", "screen_name": "gutierrezary", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 93, "name": "Ariadna Gutierrez", "profile_use_background_image": true, "description": "Miss Colombia \u2764\ufe0f Management: grecia@Latinwe.com", "url": "https://t.co/T7mRnNYeAF", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Mar 24 12:31:11 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684470492305190915/gO6NMO2L_normal.jpg", "favourites_count": 1154, "status": {"retweet_count": 56, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685502760045907969", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BASQbaqtvak/", "url": "https://t.co/FmQHSWirEj", "expanded_url": "https://www.instagram.com/p/BASQbaqtvak/", "indices": [54, 77]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:46:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "es", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685502760045907969, "text": "\u2708\ufe0f Mi primera vez en M\u00e9xico! First time in Mexico\u2764\ufe0f\ud83c\uddf2\ud83c\uddfd https://t.co/FmQHSWirEj", "coordinates": null, "retweeted": false, "favorite_count": 371, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 271395703, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/225058408/378_L-cute-zebra-leopard.jpg", "statuses_count": 2623, "profile_banner_url": "https://pbs.twimg.com/profile_banners/271395703/1452025456", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "36818161", "following": false, "friends_count": 1549, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "goldroom.la", "url": "http://t.co/IQ8kdCE2P6", "expanded_url": "http://goldroom.la", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/397706531/try2.jpg", "notifications": false, "profile_sidebar_fill_color": "CDDAFA", "profile_link_color": "007BFF", "geo_enabled": true, "followers_count": 19676, "location": "Los Angeles", "screen_name": "goldroom", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 349, "name": "Goldroom", "profile_use_background_image": true, "description": "Music producer, songwriter, rum drinker.", "url": "http://t.co/IQ8kdCE2P6", "profile_text_color": "1F1E1F", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", "profile_background_color": "000000", "created_at": "Thu Apr 30 23:54:53 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "245BFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675037935448817664/RQheFKZF_normal.jpg", "favourites_count": 58633, "status": {"in_reply_to_status_id": 685613431211294720, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Dereck_Hart", "in_reply_to_user_id": 633160189, "in_reply_to_status_id_str": "685613431211294720", "in_reply_to_user_id_str": "633160189", "truncated": false, "id_str": "685625368544292864", "id": 685625368544292864, "text": "@Dereck_Hart it'll be out this year for sure : )", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Dereck_Hart", "id_str": "633160189", "id": 633160189, "indices": [0, 12], "name": "\u00d0.\u2661"}]}, "created_at": "Sat Jan 09 00:53:20 +0000 2016", "source": "Twitter Web Client", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 36818161, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/397706531/try2.jpg", "statuses_count": 18478, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36818161/1449780672", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "45090120", "following": false, "friends_count": 385, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "smarturl.it/Summertime06", "url": "https://t.co/vnFEaoggqW", "expanded_url": "http://smarturl.it/Summertime06", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "603311", "geo_enabled": true, "followers_count": 228612, "location": "Long Beach, CA", "screen_name": "vincestaples", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 664, "name": "Vince Staples", "profile_use_background_image": false, "description": "I get mad cause the world don't understand me. That's the price I had to pay for this rap game. - Lil B", "url": "https://t.co/vnFEaoggqW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", "profile_background_color": "101820", "created_at": "Sat Jun 06 07:40:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658580268844904448/d-W6PW5D_normal.png", "favourites_count": 2631, "status": {"retweet_count": 6, "in_reply_to_user_id": 12133382, "possibly_sensitive": false, "id_str": "685604683025522688", "in_reply_to_user_id_str": "12133382", "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/flyyscience1/s\u2026", "url": "https://t.co/SkHnDTVq4z", "expanded_url": "https://twitter.com/flyyscience1/status/685597374476107777", "indices": [57, 80]}], "hashtags": [{"text": "blackscience", "indices": [43, 56]}], "user_mentions": [{"screen_name": "PBS", "id_str": "12133382", "id": 12133382, "indices": [0, 4], "name": "PBS"}]}, "created_at": "Fri Jan 08 23:31:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "PBS", "in_reply_to_status_id_str": null, "truncated": false, "id": 685604683025522688, "text": "@PBS YOU NIGGAS ARE SLEEP WAKE THE FUCK UP #blackscience https://t.co/SkHnDTVq4z", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 45090120, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547880953/ao9ur0lnbj1ga1wagal0.jpeg", "statuses_count": 11639, "profile_banner_url": "https://pbs.twimg.com/profile_banners/45090120/1418950988", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4704812826", "following": false, "friends_count": 116, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": null, "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "2B7BB9", "geo_enabled": false, "followers_count": 12503, "location": "Chile", "screen_name": "Letelier1920", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 34, "name": "Hern\u00e1n Letelier", "profile_use_background_image": true, "description": "Tengo 20 a\u00f1os, pero acabo de cumplir 95. Actor y director de teatro a mediados del XX. \u00bfSe acuerda de Pierre le peluquier de la P\u00e9rgola de las Flores? Era yo", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", "profile_background_color": "F5F8FA", "created_at": "Sun Jan 03 20:12:25 +0000 2016", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "es", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685136184021004288/2HQBBP7t_normal.jpg", "favourites_count": 818, "status": {"retweet_count": 30, "retweeted_status": {"retweet_count": 30, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685567619492114432", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 568, "h": 320, "resize": "fit"}, "small": {"w": 340, "h": 192, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 568, "h": 320, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", "type": "photo", "indices": [77, 100], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", "display_url": "pic.twitter.com/kmFlAaE0pf", "id_str": "685567406035628032", "expanded_url": "http://twitter.com/rocio_montes/status/685567619492114432/video/1", "id": 685567406035628032, "url": "https://t.co/kmFlAaE0pf"}], "symbols": [], "urls": [], "hashtags": [{"text": "Pergolero", "indices": [66, 76]}], "user_mentions": [{"screen_name": "Letelier1920", "id_str": "4704812826", "id": 4704812826, "indices": [16, 29], "name": "Hern\u00e1n Letelier"}]}, "created_at": "Fri Jan 08 21:03:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "es", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685567619492114432, "text": "Mire don Hern\u00e1n @Letelier1920 Un regalo para su Club de amigos :) #Pergolero https://t.co/kmFlAaE0pf", "coordinates": null, "retweeted": false, "favorite_count": 86, "contributors": null, "source": "Twitter for iPad"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685576347016687616", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 568, "h": 320, "resize": "fit"}, "small": {"w": 340, "h": 192, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 568, "h": 320, "resize": "fit"}}, "source_status_id_str": "685567619492114432", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", "source_user_id_str": "123320320", "id_str": "685567406035628032", "id": 685567406035628032, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685567406035628032/pu/img/zcyGf-q26DW5pvnf.jpg", "type": "photo", "indices": [95, 118], "source_status_id": 685567619492114432, "source_user_id": 123320320, "display_url": "pic.twitter.com/kmFlAaE0pf", "expanded_url": "http://twitter.com/rocio_montes/status/685567619492114432/video/1", "url": "https://t.co/kmFlAaE0pf"}], "symbols": [], "urls": [], "hashtags": [{"text": "Pergolero", "indices": [84, 94]}], "user_mentions": [{"screen_name": "rocio_montes", "id_str": "123320320", "id": 123320320, "indices": [3, 16], "name": "Roc\u00edo Montes"}, {"screen_name": "Letelier1920", "id_str": "4704812826", "id": 4704812826, "indices": [34, 47], "name": "Hern\u00e1n Letelier"}]}, "created_at": "Fri Jan 08 21:38:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "es", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685576347016687616, "text": "RT @rocio_montes: Mire don Hern\u00e1n @Letelier1920 Un regalo para su Club de amigos :) #Pergolero https://t.co/kmFlAaE0pf", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 4704812826, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": null, "statuses_count": 193, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4704812826/1452092286", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "27244131", "following": false, "friends_count": 878, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/gussa", "url": "https://t.co/S3aUB7YG60", "expanded_url": "https://www.linkedin.com/in/gussa", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 1369, "location": "Melbourne, Australia", "screen_name": "angushervey", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "Angus Hervey", "profile_use_background_image": true, "description": "political economist, science communicator, optimist with @future_crunch | community manager for @rhokaustralia | PhD from London School of Economics", "url": "https://t.co/S3aUB7YG60", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", "profile_background_color": "C6E2EE", "created_at": "Sat Mar 28 15:13:06 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639591145715036160/e9_YLNvk_normal.jpg", "favourites_count": 632, "status": {"retweet_count": 16, "retweeted_status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685332821867675648", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "virology.ws/2016/01/07/vir\u2026", "url": "https://t.co/U91Z4k6DMg", "expanded_url": "http://www.virology.ws/2016/01/07/virologists-start-your-poliovirus-destruction/", "indices": [69, 92]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 05:30:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685332821867675648, "text": "The bittersweet prospect of destroying your stocks of polio viruses. https://t.co/U91Z4k6DMg", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685332888154292224", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "virology.ws/2016/01/07/vir\u2026", "url": "https://t.co/U91Z4k6DMg", "expanded_url": "http://www.virology.ws/2016/01/07/virologists-start-your-poliovirus-destruction/", "indices": [85, 108]}], "hashtags": [], "user_mentions": [{"screen_name": "carlzimmer", "id_str": "14085070", "id": 14085070, "indices": [3, 14], "name": "carlzimmer"}]}, "created_at": "Fri Jan 08 05:31:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685332888154292224, "text": "RT @carlzimmer: The bittersweet prospect of destroying your stocks of polio viruses. https://t.co/U91Z4k6DMg", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 27244131, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 1880, "profile_banner_url": "https://pbs.twimg.com/profile_banners/27244131/1451984968", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "140497508", "following": false, "friends_count": 96, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 26181, "location": "Queens holla! IG/Snap:rosgo21", "screen_name": "ROSGO21", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 514, "name": "Rosalyn Gold-Onwude", "profile_use_background_image": true, "description": "GS Warriors sideline: CSN. NYLiberty: MSG. NCAA: PAC12. SF 49ers: CSN. Emmy Winner. Stanford Grad: BA, MA '10. 3 Final 4s. Pac12 DPOY '10.Nigerian Natl team '11", "url": null, "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", "profile_background_color": "642D8B", "created_at": "Wed May 05 17:00:22 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667024727248994304/gL8qOC0z_normal.jpg", "favourites_count": 2824, "status": {"retweet_count": 5, "retweeted_status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613187220271104", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BATCpNAwsrK/", "url": "https://t.co/xpmjSEL2qM", "expanded_url": "https://www.instagram.com/p/BATCpNAwsrK/", "indices": [46, 69]}], "hashtags": [], "user_mentions": [{"screen_name": "ROSGO21", "id_str": "140497508", "id": 140497508, "indices": [16, 24], "name": "Rosalyn Gold-Onwude"}]}, "created_at": "Sat Jan 09 00:04:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [45.52, -122.682], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/ac88a4f17a51c7fc.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.7900653, 45.421863], [-122.471751, 45.421863], [-122.471751, 45.6509405], [-122.7900653, 45.6509405]]], "type": "Polygon"}, "full_name": "Portland, OR", "contained_within": [], "country_code": "US", "id": "ac88a4f17a51c7fc", "name": "Portland"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613187220271104, "text": "Portlandia with @rosgo21 ! @ Portland, Oregon https://t.co/xpmjSEL2qM", "coordinates": {"coordinates": [-122.682, 45.52], "type": "Point"}, "retweeted": false, "favorite_count": 19, "contributors": null, "source": "Instagram"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685631921263542272", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BATCpNAwsrK/", "url": "https://t.co/xpmjSEL2qM", "expanded_url": "https://www.instagram.com/p/BATCpNAwsrK/", "indices": [67, 90]}], "hashtags": [], "user_mentions": [{"screen_name": "ramonashelburne", "id_str": "17507250", "id": 17507250, "indices": [3, 19], "name": "Ramona Shelburne"}, {"screen_name": "ROSGO21", "id_str": "140497508", "id": 140497508, "indices": [37, 45], "name": "Rosalyn Gold-Onwude"}]}, "created_at": "Sat Jan 09 01:19:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685631921263542272, "text": "RT @ramonashelburne: Portlandia with @rosgo21 ! @ Portland, Oregon https://t.co/xpmjSEL2qM", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 140497508, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "statuses_count": 29539, "profile_banner_url": "https://pbs.twimg.com/profile_banners/140497508/1351351402", "is_translator": false}, {"time_zone": "Tehran", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 12600, "id_str": "16779204", "following": false, "friends_count": 6302, "entities": {"description": {"urls": [{"display_url": "bit.ly/1CQYaYU", "url": "https://t.co/mbs8lwspQK", "expanded_url": "http://bit.ly/1CQYaYU", "indices": [120, 143]}]}, "url": {"urls": [{"display_url": "hoder.com", "url": "https://t.co/mnzE4YRMC6", "expanded_url": "http://hoder.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 6819, "location": "Tehran, Iran", "screen_name": "h0d3r", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 152, "name": "Hossein Derakhshan", "profile_use_background_image": false, "description": "Iranian-Canadian author, blogger, analyst. Spent 6 yrs in jail from 2008. Author of 'The Web We Have to Save' (Matter): https://t.co/mbs8lwspQK hoder@hoder.com", "url": "https://t.co/mnzE4YRMC6", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Oct 15 11:00:35 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666226386131111936/B_Eq2Qhl_normal.jpg", "favourites_count": 5019, "status": {"retweet_count": 13, "retweeted_status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685434790682595328", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "d.gu.com/DCwPYK", "url": "https://t.co/DWLgyisHPI", "expanded_url": "http://d.gu.com/DCwPYK", "indices": [92, 115]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 12:16:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685434790682595328, "text": "Iran's president in drive to speed up nuclear deal compliance in the hope of election boost https://t.co/DWLgyisHPI", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "dlvr.it"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685499124691660800", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "d.gu.com/DCwPYK", "url": "https://t.co/DWLgyisHPI", "expanded_url": "http://d.gu.com/DCwPYK", "indices": [110, 133]}], "hashtags": [], "user_mentions": [{"screen_name": "guardiannews", "id_str": "788524", "id": 788524, "indices": [3, 16], "name": "Guardian news"}]}, "created_at": "Fri Jan 08 16:31:41 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685499124691660800, "text": "RT @guardiannews: Iran's president in drive to speed up nuclear deal compliance in the hope of election boost https://t.co/DWLgyisHPI", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 16779204, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 1239, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16779204/1416664427", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "29844055", "following": false, "friends_count": 8, "entities": {"description": {"urls": [{"display_url": "tinyurl.com/lp7ubo4", "url": "http://t.co/L1iS5iJRHH", "expanded_url": "http://tinyurl.com/lp7ubo4", "indices": [47, 69]}]}, "url": {"urls": [{"display_url": "TxDxE.com", "url": "http://t.co/RXjkFoFTKl", "expanded_url": "http://www.TxDxE.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", "notifications": false, "profile_sidebar_fill_color": "050505", "profile_link_color": "354E99", "geo_enabled": false, "followers_count": 643192, "location": "CARSON, CA (W/S DA)", "screen_name": "abdashsoul", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1776, "name": "Ab-Soul", "profile_use_background_image": true, "description": "#blacklippastor | #THESEDAYS... available now: http://t.co/L1iS5iJRHH | Booking: mgmt@txdxe.com | Instagram: @souloho3", "url": "http://t.co/RXjkFoFTKl", "profile_text_color": "615B5C", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", "profile_background_color": "080808", "created_at": "Wed Apr 08 22:43:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "9AA5AB", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636317656421896193/QMyZ0mZ8_normal.jpg", "favourites_count": 51, "status": {"in_reply_to_status_id": null, "retweet_count": 396, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685636565163356161", "id": 685636565163356161, "text": "REAL FRIENDS", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:37:50 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 325, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 29844055, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/406352111/AbSoul-1.png", "statuses_count": 20050, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29844055/1427233664", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1337271", "following": false, "friends_count": 2502, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mlkshk.com/p/YLTA", "url": "http://t.co/wL4BXidKHJ", "expanded_url": "http://mlkshk.com/p/YLTA", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "113838", "geo_enabled": false, "followers_count": 40294, "location": "waking up ", "screen_name": "darth", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 943, "name": "darth\u2122", "profile_use_background_image": false, "description": "not the darth you are looking for", "url": "http://t.co/wL4BXidKHJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", "profile_background_color": "131516", "created_at": "Sat Mar 17 05:38:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682801424040869889/5u11-_-q_normal.png", "favourites_count": 271683, "status": {"retweet_count": 10, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 10, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685636293858951168", "id": 685636293858951168, "text": "Every pie chart is bullshit unless it's actually made of pie.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:36:45 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 22, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685636959826399232", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Eden_Eats", "id_str": "97498167", "id": 97498167, "indices": [3, 13], "name": "Eden Dranger"}]}, "created_at": "Sat Jan 09 01:39:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685636959826399232, "text": "RT @Eden_Eats: Every pie chart is bullshit unless it's actually made of pie.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 1337271, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364810325811200/TdBvj7qx.jpeg", "statuses_count": 31694, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1337271/1398194350", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "16228398", "following": false, "friends_count": 987, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cyberdust.com/addme?blogmave\u2026", "url": "http://t.co/q9qtJaGLrB", "expanded_url": "http://cyberdust.com/addme?blogmaverick", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4309180, "location": "", "screen_name": "mcuban", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 26161, "name": "Mark Cuban", "profile_use_background_image": true, "description": "Cyber Dust ID: blogmaverick", "url": "http://t.co/q9qtJaGLrB", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Sep 10 21:12:01 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422637130/mccigartrophy_normal.jpg", "favourites_count": 279, "status": {"retweet_count": 36, "retweeted_status": {"retweet_count": 36, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685114560408350720", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/FantasyLabsMar\u2026", "url": "https://t.co/7Y5jQyhYht", "expanded_url": "http://bit.ly/FantasyLabsMarkCuban", "indices": [102, 125]}], "hashtags": [], "user_mentions": [{"screen_name": "Fantasy_Labs", "id_str": "2977110796", "id": 2977110796, "indices": [12, 25], "name": "Fantasy Labs"}, {"screen_name": "mcuban", "id_str": "16228398", "id": 16228398, "indices": [41, 48], "name": "Mark Cuban"}]}, "created_at": "Thu Jan 07 15:03:34 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685114560408350720, "text": "Pumped that @Fantasy_Labs has brought on @mcuban as an investor and strategic partner: PRESS RELEASE: https://t.co/7Y5jQyhYht \u2026", "coordinates": null, "retweeted": false, "favorite_count": 178, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685545989713702912", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/FantasyLabsMar\u2026", "url": "https://t.co/7Y5jQyhYht", "expanded_url": "http://bit.ly/FantasyLabsMarkCuban", "indices": [116, 139]}], "hashtags": [], "user_mentions": [{"screen_name": "CSURAM88", "id_str": "874969926", "id": 874969926, "indices": [3, 12], "name": "Peter Jennings"}, {"screen_name": "Fantasy_Labs", "id_str": "2977110796", "id": 2977110796, "indices": [26, 39], "name": "Fantasy Labs"}, {"screen_name": "mcuban", "id_str": "16228398", "id": 16228398, "indices": [55, 62], "name": "Mark Cuban"}]}, "created_at": "Fri Jan 08 19:37:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685545989713702912, "text": "RT @CSURAM88: Pumped that @Fantasy_Labs has brought on @mcuban as an investor and strategic partner: PRESS RELEASE: https://t.co/7Y5jQyhYht\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 16228398, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634480483/0sxsbty2wjwnelja4mcm.jpeg", "statuses_count": 757, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16228398/1398982404", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "216582908", "following": false, "friends_count": 212, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1462, "location": "San Fran", "screen_name": "jmsSanFran", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 42, "name": "Jeffrey Siminoff", "profile_use_background_image": false, "description": "Soon to be @twitter (not yet). Inclusion & Diversity. Foodie. Would-be concierge. Traveler. Equinox. Duke. Emory Law. Former NYC, former Apple.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Nov 17 04:26:58 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3549347723/20a1a1d3443fcb801296f9ce50faf1e3_normal.jpeg", "favourites_count": 615, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685619578085326848", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "mobile.nytimes.com/2016/01/10/opi\u2026", "url": "https://t.co/DNzL44RtNr", "expanded_url": "http://mobile.nytimes.com/2016/01/10/opinion/sunday/you-dont-need-more-free-time.html?smid=tw-nytimes&smtyp=cur&_r=0&referer=", "indices": [84, 107]}], "hashtags": [], "user_mentions": [{"screen_name": "nytimes", "id_str": "807095", "id": 807095, "indices": [74, 82], "name": "The New York Times"}]}, "created_at": "Sat Jan 09 00:30:20 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685619578085326848, "text": "\"Network goods\", work-life \"coordination\" | You Don\u2019t Need More Free Time @nytimes https://t.co/DNzL44RtNr", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 216582908, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 890, "profile_banner_url": "https://pbs.twimg.com/profile_banners/216582908/1439074474", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "98988930", "following": false, "friends_count": 10, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 82716, "location": "The North Pole", "screen_name": "santa", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 172, "name": "Santa Claus", "profile_use_background_image": true, "description": "#crushingit", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/590905131/image_normal.jpg", "profile_background_color": "DD2E44", "created_at": "Thu Dec 24 00:15:25 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590905131/image_normal.jpg", "favourites_count": 427, "status": {"retweet_count": 0, "in_reply_to_user_id": 12, "possibly_sensitive": false, "id_str": "684602958667853824", "in_reply_to_user_id_str": "12", "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/santa/status/6\u2026", "url": "https://t.co/Z1WSKc2iOk", "expanded_url": "https://twitter.com/santa/status/671194278056484864", "indices": [31, 54]}], "hashtags": [], "user_mentions": [{"screen_name": "jack", "id_str": "12", "id": 12, "indices": [0, 5], "name": "Jack"}, {"screen_name": "djtrackstar", "id_str": "15930926", "id": 15930926, "indices": [6, 18], "name": "WRTJ"}, {"screen_name": "KillerMike", "id_str": "21265120", "id": 21265120, "indices": [19, 30], "name": "Killer Mike"}]}, "created_at": "Wed Jan 06 05:10:39 +0000 2016", "favorited": false, "in_reply_to_status_id": 684601927989002240, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": "jack", "in_reply_to_status_id_str": "684601927989002240", "truncated": false, "id": 684602958667853824, "text": "@jack @djtrackstar @KillerMike https://t.co/Z1WSKc2iOk", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 98988930, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 1754, "profile_banner_url": "https://pbs.twimg.com/profile_banners/98988930/1419058838", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "27485958", "following": false, "friends_count": 130, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": false, "followers_count": 174, "location": "San Francisco Bay Area", "screen_name": "luckysong", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Guanglei", "profile_use_background_image": true, "description": "Software Engineer at Twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", "profile_background_color": "B2DFDA", "created_at": "Sun Mar 29 19:30:27 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3528262031/e7a890b6fa40d2cd6bd6683fb6b48540_normal.jpeg", "favourites_count": 245, "status": {"retweet_count": 62, "retweeted_status": {"retweet_count": 62, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "662850749043445760", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "entm.ag/1FMWdc0", "url": "https://t.co/zkbXWBuWb1", "expanded_url": "http://entm.ag/1FMWdc0", "indices": [55, 78]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Nov 07 04:35:08 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 662850749043445760, "text": "How You Know You've Created the Company of Your Dreams https://t.co/zkbXWBuWb1", "coordinates": null, "retweeted": false, "favorite_count": 68, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "662913254616788992", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "entm.ag/1FMWdc0", "url": "https://t.co/zkbXWBuWb1", "expanded_url": "http://entm.ag/1FMWdc0", "indices": [73, 96]}], "hashtags": [], "user_mentions": [{"screen_name": "Entrepreneur", "id_str": "19407053", "id": 19407053, "indices": [3, 16], "name": "Entrepreneur"}]}, "created_at": "Sat Nov 07 08:43:30 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 662913254616788992, "text": "RT @Entrepreneur: How You Know You've Created the Company of Your Dreams https://t.co/zkbXWBuWb1", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 27485958, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 112, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "124003770", "following": false, "friends_count": 154, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cher.com", "url": "http://t.co/E5aYMJHxx5", "expanded_url": "http://cher.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "F92649", "geo_enabled": true, "followers_count": 2931956, "location": "Malibu, California", "screen_name": "cher", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 11220, "name": "Cher", "profile_use_background_image": true, "description": "Stand & B Counted or Sit & B Nothing.\nDon't Litter,Chew Gum,Walk Past \nHomeless PPL w/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\nTHERE'S ONLY LOVE&FEAR", "url": "http://t.co/E5aYMJHxx5", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 17 23:05:55 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605724737428320256/H-Xu_7Hq_normal.jpg", "favourites_count": 1124, "status": {"in_reply_to_status_id": 685006366738546688, "retweet_count": 55, "place": null, "in_reply_to_screen_name": "SparkleChaos", "in_reply_to_user_id": 4328151253, "in_reply_to_status_id_str": "685006366738546688", "in_reply_to_user_id_str": "4328151253", "truncated": false, "id_str": "685007962935398400", "id": 685007962935398400, "text": "@SparkleChaos IM NOT BACKTRACKING...HES SCUM\nWHO POISONS CHILDREN EVEN AFTER HES BEEN TOLD ABOUT THE DANGER,BUT GOD WILL\nB\"HIS\"JUDGE..NOT ME", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SparkleChaos", "id_str": "4328151253", "id": 4328151253, "indices": [0, 13], "name": "GlitterBombTheWorld"}]}, "created_at": "Thu Jan 07 07:59:59 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 149, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 124003770, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/539301648976191489/GMhQAH4P.png", "statuses_count": 16283, "profile_banner_url": "https://pbs.twimg.com/profile_banners/124003770/1402616686", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "16606403", "following": false, "friends_count": 1987, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 15615, "location": "iPhone: 42.189728,-87.802538", "screen_name": "hseitler", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 149, "name": "harriet seitler", "profile_use_background_image": true, "description": "harpo studios EVP; mom, sister, friend. Travelling new and uncharted path, holding on to love and strength.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Oct 05 22:14:12 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1243782958/image_normal.jpg", "favourites_count": 399, "status": {"retweet_count": 3, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 3, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "681200179219939328", "id": 681200179219939328, "text": "Oprah just turned a weight watchers commercial into an emotional experience... How you do dat", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sun Dec 27 19:49:13 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "681878497267183616", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "amandabell83", "id_str": "555631741", "id": 555631741, "indices": [3, 16], "name": "Amanda Bell"}]}, "created_at": "Tue Dec 29 16:44:37 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681878497267183616, "text": "RT @amandabell83: Oprah just turned a weight watchers commercial into an emotional experience... How you do dat", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16606403, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4561, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5510452", "following": false, "friends_count": 355, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "medium.com/@ameet", "url": "http://t.co/hOMy2GqrvD", "expanded_url": "http://medium.com/@ameet", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 4194, "location": "San Francisco, CA", "screen_name": "ameet", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 93, "name": "Ameet Ranadive", "profile_use_background_image": true, "description": "VP Revenue Product @Twitter. Formerly Dasient ($TWTR), McKinsey. Love building products, startups, reading, writing, cooking, being a dad.", "url": "http://t.co/hOMy2GqrvD", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Apr 25 22:41:59 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645404250491629569/nL-KNx2f_normal.jpg", "favourites_count": 4657, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685565392618520576", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1AuuHQN", "url": "https://t.co/F1QNUXMRdT", "expanded_url": "http://bit.ly/1AuuHQN", "indices": [27, 50]}], "hashtags": [], "user_mentions": [{"screen_name": "ameet", "id_str": "5510452", "id": 5510452, "indices": [55, 61], "name": "Ameet Ranadive"}]}, "created_at": "Fri Jan 08 20:55:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685565392618520576, "text": "Why the idea is important: https://t.co/F1QNUXMRdT via @ameet", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Sprout Social"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685568029715922944", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1AuuHQN", "url": "https://t.co/F1QNUXMRdT", "expanded_url": "http://bit.ly/1AuuHQN", "indices": [43, 66]}], "hashtags": [], "user_mentions": [{"screen_name": "AaronDinin", "id_str": "260272608", "id": 260272608, "indices": [3, 14], "name": "Aaron Dinin"}, {"screen_name": "ameet", "id_str": "5510452", "id": 5510452, "indices": [71, 77], "name": "Ameet Ranadive"}]}, "created_at": "Fri Jan 08 21:05:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685568029715922944, "text": "RT @AaronDinin: Why the idea is important: https://t.co/F1QNUXMRdT via @ameet", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 5510452, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4637, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5510452/1422199159", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "29442313", "following": false, "friends_count": 1910, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sanders.senate.gov", "url": "http://t.co/8AS4FI1oge", "expanded_url": "http://www.sanders.senate.gov/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", "notifications": false, "profile_sidebar_fill_color": "D6CCB6", "profile_link_color": "44506A", "geo_enabled": true, "followers_count": 1167649, "location": "Vermont/DC", "screen_name": "SenSanders", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 11866, "name": "Bernie Sanders", "profile_use_background_image": true, "description": "Sen. Bernie Sanders is the longest serving independent in congressional history. Tweets ending in -B are from Bernie, and all others are from a staffer.", "url": "http://t.co/8AS4FI1oge", "profile_text_color": "304562", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", "profile_background_color": "000000", "created_at": "Tue Apr 07 13:02:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649202007723499524/lBGS6rs6_normal.png", "favourites_count": 13, "status": {"in_reply_to_status_id": null, "retweet_count": 402, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685626060315181057", "id": 685626060315181057, "text": "In America today, we not only have massive wealth and income inequality, but a power structure which protects that inequality.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:56:05 +0000 2016", "source": "Buffer", "favorite_count": 814, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 29442313, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514189149444661248/pkGHMpZZ.jpeg", "statuses_count": 13417, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29442313/1430854323", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "216776631", "following": false, "friends_count": 1407, "entities": {"description": {"urls": [{"display_url": "berniesanders.com", "url": "http://t.co/nuBuflYjUL", "expanded_url": "http://berniesanders.com", "indices": [92, 114]}]}, "url": {"urls": [{"display_url": "berniesanders.com", "url": "https://t.co/W6f7Iy1Nho", "expanded_url": "https://berniesanders.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1112618, "location": "Vermont", "screen_name": "BernieSanders", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 5194, "name": "Bernie Sanders", "profile_use_background_image": false, "description": "I believe America is ready for a new path to the future. Join our campaign for president at http://t.co/nuBuflYjUL.", "url": "https://t.co/W6f7Iy1Nho", "profile_text_color": "050005", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", "profile_background_color": "EA5047", "created_at": "Wed Nov 17 17:53:52 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678657703787401216/kSea263e_normal.png", "favourites_count": 658, "status": {"retweet_count": 143, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685634668763426816", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/aseitzwald/sta\u2026", "url": "https://t.co/GhTCUitzl0", "expanded_url": "https://twitter.com/aseitzwald/status/685633668665208832", "indices": [109, 132]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:30:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685634668763426816, "text": "What we\u2019re doing on on this campaign is treating the American people like they're intelligent human beings. https://t.co/GhTCUitzl0", "coordinates": null, "retweeted": false, "favorite_count": 311, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 216776631, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/576114811475341312/Q2-L3Yol.jpeg", "statuses_count": 5511, "profile_banner_url": "https://pbs.twimg.com/profile_banners/216776631/1451363799", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17159397", "following": false, "friends_count": 2290, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wnba.com", "url": "http://t.co/VSPC6ki5Sa", "expanded_url": "http://www.wnba.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "FF0000", "geo_enabled": false, "followers_count": 501510, "location": "", "screen_name": "WNBA", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2070, "name": "WNBA", "profile_use_background_image": true, "description": "News & notes directly from the WNBA.", "url": "http://t.co/VSPC6ki5Sa", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", "profile_background_color": "FFFFFF", "created_at": "Tue Nov 04 16:04:48 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/655006988166942720/CV11KYnQ_normal.png", "favourites_count": 300, "status": {"retweet_count": 9, "retweeted_status": {"retweet_count": 9, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685133293335887872", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1000, "h": 500, "resize": "fit"}, "small": {"w": 340, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 300, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", "display_url": "pic.twitter.com/xXhBSkpe0p", "id_str": "685133292618686464", "expanded_url": "http://twitter.com/IndianaFever/status/685133293335887872/photo/1", "id": 685133292618686464, "url": "https://t.co/xXhBSkpe0p"}], "symbols": [], "urls": [{"display_url": "on.nba.com/1JMfDQb", "url": "https://t.co/uFsH57wP1E", "expanded_url": "http://on.nba.com/1JMfDQb", "indices": [92, 115]}], "hashtags": [{"text": "WNBAFinals", "indices": [52, 63]}], "user_mentions": [{"screen_name": "Catchin24", "id_str": "370435297", "id": 370435297, "indices": [5, 15], "name": "Tamika Catchings"}]}, "created_at": "Thu Jan 07 16:18:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/1010ecfa7d3a40f8.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-88.097892, 37.771743], [-84.78458, 37.771743], [-84.78458, 41.761368], [-88.097892, 41.761368]]], "type": "Polygon"}, "full_name": "Indiana, USA", "contained_within": [], "country_code": "US", "id": "1010ecfa7d3a40f8", "name": "Indiana"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685133293335887872, "text": "From @Catchin24's big announcement to Game 5 of the #WNBAFinals, review the Top 24 in 2015: https://t.co/uFsH57wP1E https://t.co/xXhBSkpe0p", "coordinates": null, "retweeted": false, "favorite_count": 25, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685136785144438784", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1000, "h": 500, "resize": "fit"}, "small": {"w": 340, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 300, "resize": "fit"}}, "source_status_id_str": "685133293335887872", "media_url": "http://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", "source_user_id_str": "28672101", "id_str": "685133292618686464", "id": 685133292618686464, "media_url_https": "https://pbs.twimg.com/media/CYIVGYJUoAAGP03.png", "type": "photo", "indices": [139, 140], "source_status_id": 685133293335887872, "source_user_id": 28672101, "display_url": "pic.twitter.com/xXhBSkpe0p", "expanded_url": "http://twitter.com/IndianaFever/status/685133293335887872/photo/1", "url": "https://t.co/xXhBSkpe0p"}], "symbols": [], "urls": [{"display_url": "on.nba.com/1JMfDQb", "url": "https://t.co/uFsH57wP1E", "expanded_url": "http://on.nba.com/1JMfDQb", "indices": [110, 133]}], "hashtags": [{"text": "WNBAFinals", "indices": [70, 81]}], "user_mentions": [{"screen_name": "IndianaFever", "id_str": "28672101", "id": 28672101, "indices": [3, 16], "name": "Indiana Fever"}, {"screen_name": "Catchin24", "id_str": "370435297", "id": 370435297, "indices": [23, 33], "name": "Tamika Catchings"}]}, "created_at": "Thu Jan 07 16:31:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685136785144438784, "text": "RT @IndianaFever: From @Catchin24's big announcement to Game 5 of the #WNBAFinals, review the Top 24 in 2015: https://t.co/uFsH57wP1E https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 17159397, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486168392294875136/Ka6aGpCS.png", "statuses_count": 30615, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17159397/1444881224", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "18129606", "following": false, "friends_count": 790, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/saintboz", "url": "http://t.co/m8390gFxR6", "expanded_url": "http://twitter.com/saintboz", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 3623, "location": "\u00dcT: 40.810606,-73.986908", "screen_name": "SaintBoz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 57, "name": "Boz Saint John", "profile_use_background_image": true, "description": "Self proclaimed badass and badmamajama. Generally bad. And good at it. Head diva of global consumer marketing @applemusic & @itunes", "url": "http://t.co/m8390gFxR6", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Mon Dec 15 03:37:52 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2882004078/46b80c52e6b54a694e230fdc92b88554_normal.jpeg", "favourites_count": 1170, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685522947210018816", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 640, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYN3fGvUsAA-zvd.jpg", "type": "photo", "indices": [113, 136], "media_url": "http://pbs.twimg.com/media/CYN3fGvUsAA-zvd.jpg", "display_url": "pic.twitter.com/BwlpxOlcAZ", "id_str": "685522944559198208", "expanded_url": "http://twitter.com/SaintBoz/status/685522947210018816/photo/1", "id": 685522944559198208, "url": "https://t.co/BwlpxOlcAZ"}], "symbols": [], "urls": [], "hashtags": [{"text": "mommyandmini", "indices": [86, 99]}, {"text": "watchmework", "indices": [100, 112]}], "user_mentions": []}, "created_at": "Fri Jan 08 18:06:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685522947210018816, "text": "Lil 6 year old (going on 25 year old) Lael's text messages are giving me LIFE...\ud83d\ude02\ud83d\ude4c\ud83c\udfff\ud83d\udc67\ud83c\udffd\ud83d\udcf1#mommyandmini #watchmework https://t.co/BwlpxOlcAZ", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 18129606, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/707872993/76c4fe28d9535d91cf90cedfd5160afe.jpeg", "statuses_count": 2923, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18129606/1353602146", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "122860384", "following": false, "friends_count": 110, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1240, "location": "", "screen_name": "FeliciaHorowitz", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 69, "name": "Felicia Horowitz", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Mar 14 04:44:33 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432674708790599680/yYCyTrQI_normal.jpeg", "favourites_count": 945, "status": {"retweet_count": 48, "retweeted_status": {"retweet_count": 48, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685096712789082112", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 480, "h": 360, "resize": "fit"}, "medium": {"w": 480, "h": 360, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", "display_url": "pic.twitter.com/hwCQs13inD", "id_str": "685096711925043200", "expanded_url": "http://twitter.com/pmarca/status/685096712789082112/photo/1", "id": 685096711925043200, "url": "https://t.co/hwCQs13inD"}], "symbols": [], "urls": [{"display_url": "economist.com/news/united-st\u2026", "url": "https://t.co/8Y6PFzOdMV", "expanded_url": "http://www.economist.com/news/united-states/21684687-high-school-students-want-citizens-rate-their-interactions-officers-how-three", "indices": [86, 109]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 13:52:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685096712789082112, "text": "Congratulations Ima, Asha & Caleb on Five-O winning international justice prize!! https://t.co/8Y6PFzOdMV https://t.co/hwCQs13inD", "coordinates": null, "retweeted": false, "favorite_count": 63, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685561599910805505", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 480, "h": 360, "resize": "fit"}, "medium": {"w": 480, "h": 360, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "685096712789082112", "media_url": "http://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", "source_user_id_str": "5943622", "id_str": "685096711925043200", "id": 685096711925043200, "media_url_https": "https://pbs.twimg.com/media/CYHz1GcUkAAZJvb.jpg", "type": "photo", "indices": [122, 144], "source_status_id": 685096712789082112, "source_user_id": 5943622, "display_url": "pic.twitter.com/hwCQs13inD", "expanded_url": "http://twitter.com/pmarca/status/685096712789082112/photo/1", "url": "https://t.co/hwCQs13inD"}], "symbols": [], "urls": [{"display_url": "economist.com/news/united-st\u2026", "url": "https://t.co/8Y6PFzOdMV", "expanded_url": "http://www.economist.com/news/united-states/21684687-high-school-students-want-citizens-rate-their-interactions-officers-how-three", "indices": [98, 121]}], "hashtags": [], "user_mentions": [{"screen_name": "pmarca", "id_str": "5943622", "id": 5943622, "indices": [3, 10], "name": "Marc Andreessen"}]}, "created_at": "Fri Jan 08 20:39:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685561599910805505, "text": "RT @pmarca: Congratulations Ima, Asha & Caleb on Five-O winning international justice prize!! https://t.co/8Y6PFzOdMV https://t.co/hwCQs13i\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 122860384, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 417, "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "205926603", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com", "url": "http://t.co/DeO4c250gs", "expanded_url": "http://twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", "notifications": false, "profile_sidebar_fill_color": "F2E7C4", "profile_link_color": "89C9FA", "geo_enabled": false, "followers_count": 59798, "location": "TwitterHQ", "screen_name": "hackweek", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 97, "name": "HackWeek", "profile_use_background_image": true, "description": "Let's hack together.", "url": "http://t.co/DeO4c250gs", "profile_text_color": "9C6D74", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", "profile_background_color": "452D30", "created_at": "Thu Oct 21 22:27:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "D9C486", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677909135120175105/AgTDQCWR_normal.jpg", "favourites_count": 1, "status": {"in_reply_to_status_id": null, "retweet_count": 34, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "28459868715", "id": 28459868715, "text": "\u201cWhen you share a common civic culture with thousands of other people, good ideas have a tendency to flow from mind to mind \u2026\u201d ~ S. Johnson", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Oct 23 01:46:50 +0000 2010", "source": "Twitter Web Client", "favorite_count": 31, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 205926603, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/164383504/x377a1b6a2a9abeb58a915e61676ceb7.jpg", "statuses_count": 1, "profile_banner_url": "https://pbs.twimg.com/profile_banners/205926603/1420662867", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2835886194", "following": false, "friends_count": 178, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "colbertlateshow.com", "url": "https://t.co/YTzFH21e5t", "expanded_url": "http://colbertlateshow.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 138200, "location": "", "screen_name": "colbertlateshow", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 999, "name": "The Late Show on CBS", "profile_use_background_image": true, "description": "Official Twitter feed of The Late Show with Stephen Colbert. Unofficial Twitter feed of the U.S. Department of Agriculture.", "url": "https://t.co/YTzFH21e5t", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Sep 30 17:13:22 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/606158897292943360/567gJ81s_normal.jpg", "favourites_count": 209, "status": {"retweet_count": 65, "retweeted_status": {"retweet_count": 65, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685504391474974721", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 900, "h": 900, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", "type": "photo", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", "display_url": "pic.twitter.com/QTH7OuQZ4U", "id_str": "685504262311428097", "expanded_url": "http://twitter.com/KaceyMusgraves/status/685504391474974721/photo/1", "id": 685504262311428097, "url": "https://t.co/QTH7OuQZ4U"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "colbertlateshow", "id_str": "2835886194", "id": 2835886194, "indices": [28, 44], "name": "The Late Show on CBS"}]}, "created_at": "Fri Jan 08 16:52:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685504391474974721, "text": "Don't be Late to the Party..@colbertlateshow https://t.co/QTH7OuQZ4U", "coordinates": null, "retweeted": false, "favorite_count": 387, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685595501681610752", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 900, "h": 900, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "source_status_id_str": "685504391474974721", "media_url": "http://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", "source_user_id_str": "30925378", "id_str": "685504262311428097", "id": 685504262311428097, "media_url_https": "https://pbs.twimg.com/media/CYNmfp8WwAEjmbe.jpg", "type": "photo", "indices": [65, 88], "source_status_id": 685504391474974721, "source_user_id": 30925378, "display_url": "pic.twitter.com/QTH7OuQZ4U", "expanded_url": "http://twitter.com/KaceyMusgraves/status/685504391474974721/photo/1", "url": "https://t.co/QTH7OuQZ4U"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "KaceyMusgraves", "id_str": "30925378", "id": 30925378, "indices": [3, 18], "name": "KACEY MUSGRAVES"}, {"screen_name": "colbertlateshow", "id_str": "2835886194", "id": 2835886194, "indices": [48, 64], "name": "The Late Show on CBS"}]}, "created_at": "Fri Jan 08 22:54:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685595501681610752, "text": "RT @KaceyMusgraves: Don't be Late to the Party..@colbertlateshow https://t.co/QTH7OuQZ4U", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 2835886194, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 775, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2835886194/1444429479", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3165817215", "following": false, "friends_count": 179, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 396664, "location": "", "screen_name": "JohnBoyega", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 848, "name": "John Boyega", "profile_use_background_image": true, "description": "Dream and work towards the reality", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 14 09:19:31 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683235384961155072/MDNWffML_normal.jpg", "favourites_count": 200, "status": {"retweet_count": 58, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685469331216580608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/emmakeele1/sta\u2026", "url": "https://t.co/0HJrxTtp3P", "expanded_url": "https://twitter.com/emmakeele1/status/685464003284480000", "indices": [23, 46]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:33:18 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685469331216580608, "text": "Erm that too miss \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/0HJrxTtp3P", "coordinates": null, "retweeted": false, "favorite_count": 505, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3165817215, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 365, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3165817215/1451410540", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "252531143", "following": false, "friends_count": 3141, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "princeton.edu/~slaughtr/", "url": "http://t.co/jJRR31QiUl", "expanded_url": "http://www.princeton.edu/~slaughtr/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "2EBCB3", "geo_enabled": true, "followers_count": 129943, "location": "Princeton, DC, New York", "screen_name": "SlaughterAM", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3983, "name": "Anne-Marie Slaughter", "profile_use_background_image": true, "description": "President & CEO, @newamerica. Former Princeton Prof & Director of Policy Planning, U.S. State Dept. Mother. Mentor. Foodie. Author. Foreign policy curator.", "url": "http://t.co/jJRR31QiUl", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", "profile_background_color": "968270", "created_at": "Tue Feb 15 11:33:50 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/558632106536882176/iXwSMk4U_normal.jpeg", "favourites_count": 2854, "status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685094135720767488", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "linkedin.com/pulse/real-val\u2026", "url": "https://t.co/PJ4yFyE4St", "expanded_url": "https://www.linkedin.com/pulse/real-value-college-education-michael-crow", "indices": [83, 106]}], "hashtags": [], "user_mentions": [{"screen_name": "michaelcrow", "id_str": "20172250", "id": 20172250, "indices": [57, 69], "name": "Michael Crow"}, {"screen_name": "LinkedIn", "id_str": "13058772", "id": 13058772, "indices": [73, 82], "name": "LinkedIn"}]}, "created_at": "Thu Jan 07 13:42:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685094135720767488, "text": "worth readng! \"The Real Value of a College Education\" by @michaelcrow on @LinkedIn https://t.co/PJ4yFyE4St", "coordinates": null, "retweeted": false, "favorite_count": 18, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 252531143, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 25191, "profile_banner_url": "https://pbs.twimg.com/profile_banners/252531143/1424986634", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "299674713", "following": false, "friends_count": 597, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "juliefoudyleadership.com", "url": "http://t.co/TlwVOqMe3Z", "expanded_url": "http://www.juliefoudyleadership.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "C73460", "geo_enabled": true, "followers_count": 196502, "location": "I wish I knew...", "screen_name": "JulieFoudy", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1469, "name": "Julie Foudy", "profile_use_background_image": true, "description": "Former watergirl #USWNT, current ESPN'er, mom, founder JF Sports Leadership Academy. Luvr of donuts larger than my heeed & soulful peops who empower others.", "url": "http://t.co/TlwVOqMe3Z", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", "profile_background_color": "B2DFDA", "created_at": "Mon May 16 14:14:49 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357730466/Screen_shot_2011-05-17_at_10.28.07_AM_normal.png", "favourites_count": 0, "status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685535018051973120", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/EmWatson/statu\u2026", "url": "https://t.co/Sc6bJFyS7p", "expanded_url": "https://twitter.com/EmWatson/status/685246433491025922", "indices": [112, 135]}], "hashtags": [{"text": "soulidarity", "indices": [99, 111]}], "user_mentions": [{"screen_name": "EmWatson", "id_str": "166739404", "id": 166739404, "indices": [25, 34], "name": "Emma Watson"}, {"screen_name": "AbbyWambach", "id_str": "336124836", "id": 336124836, "indices": [46, 58], "name": "Abby Wambach"}]}, "created_at": "Fri Jan 08 18:54:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685535018051973120, "text": "What a damn cool idea by @EmWatson . Just saw @AbbyWambach went to buy it. Ordered a copy as well. #soulidarity https://t.co/Sc6bJFyS7p", "coordinates": null, "retweeted": false, "favorite_count": 113, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 299674713, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 6724, "profile_banner_url": "https://pbs.twimg.com/profile_banners/299674713/1402758316", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2651565121", "following": false, "friends_count": 10, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sinatra.com", "url": "https://t.co/Xt6lI7LMFC", "expanded_url": "http://sinatra.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0890C2", "geo_enabled": false, "followers_count": 22088, "location": "", "screen_name": "franksinatra", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 146, "name": "Frank Sinatra", "profile_use_background_image": false, "description": "The Chairman of the Board - the official Twitter profile for Frank Sinatra Enterprises", "url": "https://t.co/Xt6lI7LMFC", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed Jul 16 16:58:44 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/492440600373784576/HUae-foP_normal.jpeg", "favourites_count": 83, "status": {"retweet_count": 156, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682234200422891520", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 900, "h": 802, "resize": "fit"}, "medium": {"w": 600, "h": 534, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 302, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWySaR4U4AElR5W.jpg", "type": "photo", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/CWySaR4U4AElR5W.jpg", "display_url": "pic.twitter.com/RZEpjWYaqQ", "id_str": "679078624000008193", "expanded_url": "http://twitter.com/franksinatra/status/682234200422891520/photo/1", "id": 679078624000008193, "url": "https://t.co/RZEpjWYaqQ"}], "symbols": [], "urls": [{"display_url": "smarturl.it/SinatraMyWay", "url": "https://t.co/F6xMhfVhTy", "expanded_url": "http://smarturl.it/SinatraMyWay", "indices": [78, 101]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 30 16:18:03 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682234200422891520, "text": "On this day in 1968, Frank Sinatra recorded \u201cMy Way\u201d \u2013 revisit the album now: https://t.co/F6xMhfVhTy https://t.co/RZEpjWYaqQ", "coordinates": null, "retweeted": false, "favorite_count": 269, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 2651565121, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 352, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2651565121/1406242389", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "21561935", "following": false, "friends_count": 901, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kissthedeejay.com", "url": "http://t.co/6moXT5RhPn", "expanded_url": "http://www.kissthedeejay.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", "notifications": false, "profile_sidebar_fill_color": "0A0A0B", "profile_link_color": "929287", "geo_enabled": false, "followers_count": 10812, "location": "NYC", "screen_name": "KISSTHEDEEJAY", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 271, "name": "DJ KISS", "profile_use_background_image": true, "description": "Deejay / Personality / Blogger / Fashion & Beauty Enthusiast / 1/2 of #TheSemples", "url": "http://t.co/6moXT5RhPn", "profile_text_color": "E11930", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", "profile_background_color": "F5F2F7", "created_at": "Sun Feb 22 12:22:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "65B0DA", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/559710516638019584/d5lxn8JE_normal.jpeg", "favourites_count": 17, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685188364933443584", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BAQBdG-h-7V/", "url": "https://t.co/vf92ka1zz7", "expanded_url": "https://www.instagram.com/p/BAQBdG-h-7V/", "indices": [95, 118]}], "hashtags": [], "user_mentions": [{"screen_name": "DJMOS", "id_str": "18716699", "id": 18716699, "indices": [14, 20], "name": "DJMOS"}]}, "created_at": "Thu Jan 07 19:56:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685188364933443584, "text": "Follow me and @djmos from Atlantic City to St. Barths in the first episode of our new youtube\u2026 https://t.co/vf92ka1zz7", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 21561935, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/368183891/laptop_a.jpg", "statuses_count": 7709, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21561935/1422280291", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "43987763", "following": false, "friends_count": 1165, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 817, "location": "San Francisco, CA", "screen_name": "nataliemiyake", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 36, "name": "Natalie Miyake", "profile_use_background_image": true, "description": "Corporate communications @twitter. Raised in Japan, ex-New Yorker, now in SF. Wine lover, hiking addict, brunch connoisseur.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Mon Jun 01 22:19:32 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/592598105066835968/Avn19bbI_normal.jpg", "favourites_count": 1571, "status": {"in_reply_to_status_id": 685500089310277632, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "HenningD", "in_reply_to_user_id": 20758680, "in_reply_to_status_id_str": "685500089310277632", "in_reply_to_user_id_str": "20758680", "truncated": false, "id_str": "685506940563107840", "id": 685506940563107840, "text": "@HenningD @TwitterDE it's been great working with you. Best of luck!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "HenningD", "id_str": "20758680", "id": 20758680, "indices": [0, 9], "name": "Henning Dorstewitz"}, {"screen_name": "TwitterDE", "id_str": "95255169", "id": 95255169, "indices": [10, 20], "name": "Twitter Deutschland"}]}, "created_at": "Fri Jan 08 17:02:45 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 43987763, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 3686, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43987763/1397010068", "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "412715336", "following": false, "friends_count": 159, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 1108, "location": "San Francisco, CA", "screen_name": "Celebrate", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 14, "name": "#Celebrate", "profile_use_background_image": true, "description": "#celebrate", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", "profile_background_color": "707375", "created_at": "Tue Nov 15 02:02:23 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672154919302856704/nQ9H3_QQ_normal.jpg", "favourites_count": 7, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535877742089097216/Ml3klh3D.jpeg", "default_profile_image": false, "id": 412715336, "blocked_by": false, "profile_background_tile": true, "statuses_count": 88, "profile_banner_url": "https://pbs.twimg.com/profile_banners/412715336/1449089216", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "158595960", "following": false, "friends_count": 228, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 364, "location": "San Francisco", "screen_name": "drao", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 11, "name": "Deepak Rao", "profile_use_background_image": true, "description": "Product Manager @Twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 23 03:19:05 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566233797/c31ba9458ac8f966c6d6725889e4d40d_normal.jpeg", "favourites_count": 646, "status": {"in_reply_to_status_id": 685246566118993920, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": "venukasturi", "in_reply_to_user_id": 22807096, "in_reply_to_status_id_str": "685246566118993920", "in_reply_to_user_id_str": "22807096", "truncated": false, "id_str": "685313574592315393", "id": 685313574592315393, "text": "@venukasturi next year", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "venukasturi", "id_str": "22807096", "id": 22807096, "indices": [0, 12], "name": "Venu Gopal Kasturi"}]}, "created_at": "Fri Jan 08 04:14:23 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 158595960, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 268, "profile_banner_url": "https://pbs.twimg.com/profile_banners/158595960/1405201901", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16669075", "following": false, "friends_count": 616, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fema.gov", "url": "http://t.co/yHUd9eUBs0", "expanded_url": "http://www.fema.gov/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", "notifications": false, "profile_sidebar_fill_color": "DCDCE0", "profile_link_color": "2A91B0", "geo_enabled": true, "followers_count": 440462, "location": "United States", "screen_name": "fema", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8833, "name": "FEMA", "profile_use_background_image": true, "description": "Our story of supporting citizens & first responders before, during, and after emergencies. For emergencies, call your local fire/EMS/police or 9-1-1.", "url": "http://t.co/yHUd9eUBs0", "profile_text_color": "65686E", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", "profile_background_color": "CCCCCC", "created_at": "Thu Oct 09 16:54:20 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2620163192/j143q33k69loivqmp2dg_normal.gif", "favourites_count": 517, "status": {"retweet_count": 44, "retweeted_status": {"retweet_count": 44, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685577475888291841", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1000, "h": 1000, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", "type": "photo", "indices": [109, 132], "media_url": "http://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", "display_url": "pic.twitter.com/zcrtOzbmhj", "id_str": "685577474919419904", "expanded_url": "http://twitter.com/CAL_FIRE/status/685577475888291841/photo/1", "id": 685577474919419904, "url": "https://t.co/zcrtOzbmhj"}], "symbols": [], "urls": [{"display_url": "ready.gov/floods", "url": "https://t.co/jhcnztJMvD", "expanded_url": "http://www.ready.gov/floods", "indices": [85, 108]}], "hashtags": [{"text": "FireFactFriday", "indices": [0, 15]}], "user_mentions": []}, "created_at": "Fri Jan 08 21:43:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685577475888291841, "text": "#FireFactFriday Do you have a plan in the event of a flood in your area? Learn more: https://t.co/jhcnztJMvD https://t.co/zcrtOzbmhj", "coordinates": null, "retweeted": false, "favorite_count": 14, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685594168148779008", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1000, "h": 1000, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "source_status_id_str": "685577475888291841", "media_url": "http://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", "source_user_id_str": "21249970", "id_str": "685577474919419904", "id": 685577474919419904, "media_url_https": "https://pbs.twimg.com/media/CYOpFMKU0AA9Qqx.jpg", "type": "photo", "indices": [123, 140], "source_status_id": 685577475888291841, "source_user_id": 21249970, "display_url": "pic.twitter.com/zcrtOzbmhj", "expanded_url": "http://twitter.com/CAL_FIRE/status/685577475888291841/photo/1", "url": "https://t.co/zcrtOzbmhj"}], "symbols": [], "urls": [{"display_url": "ready.gov/floods", "url": "https://t.co/jhcnztJMvD", "expanded_url": "http://www.ready.gov/floods", "indices": [99, 122]}], "hashtags": [{"text": "FireFactFriday", "indices": [14, 29]}], "user_mentions": [{"screen_name": "CAL_FIRE", "id_str": "21249970", "id": 21249970, "indices": [3, 12], "name": "CAL FIRE"}]}, "created_at": "Fri Jan 08 22:49:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685594168148779008, "text": "RT @CAL_FIRE: #FireFactFriday Do you have a plan in the event of a flood in your area? Learn more: https://t.co/jhcnztJMvD https://t.co/zcr\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16669075, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/133948885/tw-412-1500.jpg", "statuses_count": 10489, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16669075/1444411889", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1072103227", "following": false, "friends_count": 1004, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 831, "location": "SF", "screen_name": "heySierra", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 13, "name": "Sierra Lord", "profile_use_background_image": true, "description": "#gsd @twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Jan 08 21:50:58 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478925887317241856/lKubQMif_normal.jpeg", "favourites_count": 3027, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685334213197983745", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 658, "h": 1024, "resize": "fit"}, "small": {"w": 340, "h": 529, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 933, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYLL1GvWQAAgdJr.jpg", "type": "photo", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/CYLL1GvWQAAgdJr.jpg", "display_url": "pic.twitter.com/ARS15LRjKI", "id_str": "685334206516445184", "expanded_url": "http://twitter.com/heySierra/status/685334213197983745/photo/1", "id": 685334206516445184, "url": "https://t.co/ARS15LRjKI"}], "symbols": [], "urls": [], "hashtags": [{"text": "CES2016", "indices": [34, 42]}, {"text": "AdamSilverissonice", "indices": [43, 62]}], "user_mentions": []}, "created_at": "Fri Jan 08 05:36:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/8fa6d7a33b83ef26.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-115.2092535, 35.984784], [-115.0610763, 35.984784], [-115.0610763, 36.137145], [-115.2092535, 36.137145]]], "type": "Polygon"}, "full_name": "Paradise, NV", "contained_within": [], "country_code": "US", "id": "8fa6d7a33b83ef26", "name": "Paradise"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685334213197983745, "text": "Highlight of my day. No big deal. #CES2016 #AdamSilverissonice https://t.co/ARS15LRjKI", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1072103227, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 548, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1072103227/1357682472", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16002085", "following": false, "friends_count": 2895, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thinkprogress.org", "url": "http://t.co/YV2uNXXlyL", "expanded_url": "http://www.thinkprogress.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 74889, "location": "Washington, DC", "screen_name": "igorvolsky", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1265, "name": "igorvolsky", "profile_use_background_image": true, "description": "Director of Video and Contributing Editor at @ThinkProgress. Contributing host @bpshow. Opinions, my own. E-mail: ivolsky@americanprogress.org", "url": "http://t.co/YV2uNXXlyL", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", "profile_background_color": "C6E2EE", "created_at": "Tue Aug 26 20:17:23 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2342577927/ivx07n8a00tuoz387nxs_normal.jpeg", "favourites_count": 649, "status": {"retweet_count": 56, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685604356570411009", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/Reuters/status\u2026", "url": "https://t.co/NQNchxzojN", "expanded_url": "https://twitter.com/Reuters/status/685598272908582914", "indices": [110, 133]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:29:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685604356570411009, "text": "In order to hit back against Obama's plan to allow 10,000 Syrian refugees into the country over the next year https://t.co/NQNchxzojN", "coordinates": null, "retweeted": false, "favorite_count": 65, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 16002085, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "statuses_count": 29775, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "84981428", "following": false, "friends_count": 258, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "braintreepayments.com", "url": "https://t.co/Vc3MPaIBSU", "expanded_url": "http://www.braintreepayments.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4601, "location": "San Francisco, Chicago", "screen_name": "williamready", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 171, "name": "William Ready", "profile_use_background_image": true, "description": "SVP, Global Head of Product & Engineering at PayPal. CEO of @Braintree/@Venmo. Creating the easiest way to pay or get paid - online, mobile, in-store.", "url": "https://t.co/Vc3MPaIBSU", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Oct 25 01:31:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465089671232372737/tTGrmEEr_normal.jpeg", "favourites_count": 1585, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "680164364804960256", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nyti.ms/1QX83Ix", "url": "https://t.co/ZQLkL6vQil", "expanded_url": "http://nyti.ms/1QX83Ix", "indices": [117, 140]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 24 23:13:16 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 680164364804960256, "text": "Why it's important to understand diff between preferred stock (what investors get) & common (what employees get) https://t.co/ZQLkL6vQil", "coordinates": null, "retweeted": false, "favorite_count": 9, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 84981428, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2224, "profile_banner_url": "https://pbs.twimg.com/profile_banners/84981428/1410287238", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "48477007", "following": false, "friends_count": 368, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 50981, "location": "", "screen_name": "BRush_25", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 943, "name": "Brandon Rush", "profile_use_background_image": true, "description": "Instagram- brush_4\nsnapchat- showmeb", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 18 20:24:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522555073176813568/AQTuqFbn_normal.jpeg", "favourites_count": 7, "status": {"in_reply_to_status_id": null, "retweet_count": 4, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685547921077485569", "id": 685547921077485569, "text": "Still listening to these Tory Lanez tapes \ud83d\udd25\ud83d\udd25\ud83d\udd25", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:45:35 +0000 2016", "source": "Echofon", "favorite_count": 30, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 48477007, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000096747681/2489cddbc47ab480f2765789712df752.jpeg", "statuses_count": 16019, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "4220691364", "following": false, "friends_count": 33, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sunsetwx.com", "url": "https://t.co/EQ5OfbQIZd", "expanded_url": "http://sunsetwx.com/", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3019, "location": "", "screen_name": "sunset_wx", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 66, "name": "Sunset Weather", "profile_use_background_image": true, "description": "Sunset & Sunrise Predictions: Model using an in-depth algorithm comprised of meteorological factors. Developed by @WxDeFlitch, @WxReppert, @hallettwx", "url": "https://t.co/EQ5OfbQIZd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Nov 18 19:58:34 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/667137363026407425/6tor_4YC_normal.jpg", "favourites_count": 3776, "status": {"retweet_count": 0, "in_reply_to_user_id": 813355861, "possibly_sensitive": false, "id_str": "685629743136399361", "in_reply_to_user_id_str": "813355861", "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 262, "resize": "fit"}, "medium": {"w": 600, "h": 462, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 790, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPYnEDWkAAXSrH.jpg", "type": "photo", "indices": [49, 72], "media_url": "http://pbs.twimg.com/media/CYPYnEDWkAAXSrH.jpg", "display_url": "pic.twitter.com/eIAHING7d6", "id_str": "685629733904748544", "expanded_url": "http://twitter.com/sunset_wx/status/685629743136399361/photo/1", "id": 685629733904748544, "url": "https://t.co/eIAHING7d6"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jwmagettejr", "id_str": "813355861", "id": 813355861, "indices": [0, 12], "name": "jimmy magette"}]}, "created_at": "Sat Jan 09 01:10:43 +0000 2016", "favorited": false, "in_reply_to_status_id": 685628478230630400, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "jwmagettejr", "in_reply_to_status_id_str": "685628478230630400", "truncated": false, "id": 685629743136399361, "text": "@jwmagettejr Gorgeous! Verified w/ our forecast! https://t.co/eIAHING7d6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 4220691364, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1810, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4220691364/1447893477", "is_translator": false}, {"time_zone": "Greenland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "247901736", "following": false, "friends_count": 789, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/theblurbarbosa", "url": "http://t.co/BLAOP8mM9P", "expanded_url": "http://instagram.com/theblurbarbosa", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "C1C70A", "geo_enabled": false, "followers_count": 106398, "location": "Brazil", "screen_name": "TheBlurBarbosa", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1024, "name": "Leandro Barbosa", "profile_use_background_image": true, "description": "Jogador de Basquete da NBA. \nThe official account of Leandro Barbosa, basketball player!", "url": "http://t.co/BLAOP8mM9P", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", "profile_background_color": "0EC704", "created_at": "Sat Feb 05 20:31:51 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/582746277877837824/-iT3qrWa_normal.jpg", "favourites_count": 614, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685194677742624768", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 728, "h": 728, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYJM7J7W8AA4RqX.jpg", "type": "photo", "indices": [68, 91], "media_url": "http://pbs.twimg.com/media/CYJM7J7W8AA4RqX.jpg", "display_url": "pic.twitter.com/hF4aXpXgwK", "id_str": "685194672474615808", "expanded_url": "http://twitter.com/TheBlurBarbosa/status/685194677742624768/photo/1", "id": 685194672474615808, "url": "https://t.co/hF4aXpXgwK"}], "symbols": [], "urls": [], "hashtags": [{"text": "BeepBeep", "indices": [32, 41]}, {"text": "Warriors", "indices": [58, 67]}], "user_mentions": [{"screen_name": "CWArtwork", "id_str": "1120273860", "id": 1120273860, "indices": [21, 31], "name": "CW Artwork"}]}, "created_at": "Thu Jan 07 20:21:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685194677742624768, "text": "Love the art! Thanks @cwartwork #BeepBeep\n\nAdorei a arte! #Warriors https://t.co/hF4aXpXgwK", "coordinates": null, "retweeted": false, "favorite_count": 63, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 247901736, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/492103794650390529/n8HvjU0z.jpeg", "statuses_count": 5009, "profile_banner_url": "https://pbs.twimg.com/profile_banners/247901736/1406161704", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "858957830", "following": false, "friends_count": 265, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 41498, "location": "", "screen_name": "gswstats", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 518, "name": "GSWStats", "profile_use_background_image": true, "description": "An official twitter account of the Golden State Warriors, featuring statistics, news and notes about the team throughout the season.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Oct 03 00:50:25 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2722907797/7ebe61e3ecdb0e2ea0ec4b04808a5e7a_normal.jpeg", "favourites_count": 9, "status": {"in_reply_to_status_id": null, "retweet_count": 86, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685597797693833217", "id": 685597797693833217, "text": "Warriors, who are playing their first game of the season against the Blazers tonight, swept the season series (3-0) vs. Portland in 2014-15.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 23:03:47 +0000 2016", "source": "Twitter Web Client", "favorite_count": 252, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 858957830, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 9529, "profile_banner_url": "https://pbs.twimg.com/profile_banners/858957830/1401380224", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "22965624", "following": false, "friends_count": 587, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lafourcade.com.mx", "url": "http://t.co/CV9kDVyOwc", "expanded_url": "http://lafourcade.com.mx", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 1703741, "location": "Mexico, DF", "screen_name": "lafourcade", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5644, "name": "Natalia Lafourcade", "profile_use_background_image": true, "description": "musico", "url": "http://t.co/CV9kDVyOwc", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Mar 05 19:38:07 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/572613459960971265/ZajHi1vH_normal.jpeg", "favourites_count": 249, "status": {"retweet_count": 20, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685254697653895169", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/sonymusiccol/s\u2026", "url": "https://t.co/y0OpGl8LED", "expanded_url": "https://twitter.com/sonymusiccol/status/685126161261707264", "indices": [85, 108]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 00:20:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "es", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685254697653895169, "text": "Esto es para mis amigos de Colombia. \u00bfCu\u00e1l es su lugar favorito de este lindo pa\u00eds? https://t.co/y0OpGl8LED", "coordinates": null, "retweeted": false, "favorite_count": 129, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 22965624, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 6361, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22965624/1425415118", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3099613624", "following": false, "friends_count": 130, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 86090, "location": "", "screen_name": "salmahayek", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 487, "name": "Salma Hayek", "profile_use_background_image": false, "description": "After hundreds of impostors, years of procrastination, and a self-imposed allergy to technology, FINALLY I'm here. \u00a1Hola! It's Salma.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", "profile_background_color": "000000", "created_at": "Fri Mar 20 15:48:51 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/581022722509152256/WgcyB-4H_normal.jpg", "favourites_count": 4, "status": {"retweet_count": 325, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677221425497837568", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "cosmopolitan.com/entertainment/\u2026", "url": "https://t.co/tRlCbEeNej", "expanded_url": "http://www.cosmopolitan.com/entertainment/news/a50859/amandla-sternberg-and-rowan-blanchard-feminists-of-the-year/", "indices": [71, 94]}], "hashtags": [], "user_mentions": [{"screen_name": "rowblanchard", "id_str": "307548363", "id": 307548363, "indices": [57, 70], "name": "Rowan Blanchard"}]}, "created_at": "Wed Dec 16 20:19:04 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/3b77caf94bfc81fe.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-118.668404, 33.704538], [-118.155409, 33.704538], [-118.155409, 34.337041], [-118.668404, 34.337041]]], "type": "Polygon"}, "full_name": "Los Angeles, CA", "contained_within": [], "country_code": "US", "id": "3b77caf94bfc81fe", "name": "Los Angeles"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677221425497837568, "text": "Congratulations to my girl I adore.I am so proud of you. @rowblanchard https://t.co/tRlCbEeNej", "coordinates": null, "retweeted": false, "favorite_count": 1139, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 3099613624, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 96, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3099613624/1438298694", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18441988", "following": false, "friends_count": 304, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 245663, "location": "", "screen_name": "jrich23", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3053, "name": "Jason Richardson", "profile_use_background_image": true, "description": "Father, Husband and just all around good guy!", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Dec 29 04:04:33 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3502251114/3155495afcd436590ce2974623ed39cb_normal.jpeg", "favourites_count": 5, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678360808783482882", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/_fgpM4R3ub/", "url": "https://t.co/wWEzLBZC3h", "expanded_url": "https://www.instagram.com/p/_fgpM4R3ub/", "indices": [100, 123]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Dec 19 23:46:34 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678360808783482882, "text": "Short 10 hour trip to the Bay! Had a great time at the Rainbow Center court dedication & camp.\u2026 https://t.co/wWEzLBZC3h", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 18441988, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/54453438/JRICH23___Web_Background___4.jpg", "statuses_count": 2691, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18441988/1395676880", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15506669", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 73576, "location": "", "screen_name": "JeffBezos", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 879, "name": "Jeff Bezos", "profile_use_background_image": true, "description": "Amazon, Blue Origin, Washington Post", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jul 20 22:38:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669103856106668033/UF3cgUk4_normal.jpg", "favourites_count": 0, "status": {"in_reply_to_status_id": null, "retweet_count": 1576, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "679116636310360067", "id": 679116636310360067, "text": "Congrats @SpaceX on landing Falcon's suborbital booster stage. Welcome to the club!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SpaceX", "id_str": "34743251", "id": 34743251, "indices": [9, 16], "name": "SpaceX"}]}, "created_at": "Tue Dec 22 01:49:58 +0000 2015", "source": "Twitter Web Client", "favorite_count": 2546, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15506669, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15506669/1448361938", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "15930926", "following": false, "friends_count": 1445, "entities": {"description": {"urls": [{"display_url": "therapfan.com", "url": "http://t.co/6ty3IIzh7f", "expanded_url": "http://therapfan.com", "indices": [101, 123]}]}, "url": {"urls": [{"display_url": "therapfan.com", "url": "https://t.co/fVOL5FpVZ3", "expanded_url": "http://www.therapfan.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": true, "followers_count": 8751, "location": "WI - STL - CA - ATL - tour", "screen_name": "djtrackstar", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 194, "name": "WRTJ", "profile_use_background_image": true, "description": "Professional Rap Fan. Tour DJ for Run the Jewels. The Smoking Section. WRTJ on Beats1. @peaceimages. http://t.co/6ty3IIzh7f fb/ig:trackstarthedj", "url": "https://t.co/fVOL5FpVZ3", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Thu Aug 21 13:14:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670654382657155072/0ThsAvGH_normal.jpg", "favourites_count": 6825, "status": {"retweet_count": 4, "retweeted_status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685625187392327681", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/AP3I1R8zCDc", "url": "https://t.co/Q8mqro31Na", "expanded_url": "https://youtu.be/AP3I1R8zCDc", "indices": [69, 92]}], "hashtags": [{"text": "battleraphistory", "indices": [93, 110]}], "user_mentions": []}, "created_at": "Sat Jan 09 00:52:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685625187392327681, "text": "Rhymefest vs Mexicano - \"you can rap like this but u not goin win\" \ud83d\ude02 https://t.co/Q8mqro31Na #battleraphistory", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685625768668446721", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/AP3I1R8zCDc", "url": "https://t.co/Q8mqro31Na", "expanded_url": "https://youtu.be/AP3I1R8zCDc", "indices": [80, 103]}], "hashtags": [{"text": "battleraphistory", "indices": [104, 121]}], "user_mentions": [{"screen_name": "Drect", "id_str": "23562632", "id": 23562632, "indices": [3, 9], "name": "Drect Williams"}]}, "created_at": "Sat Jan 09 00:54:56 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685625768668446721, "text": "RT @Drect: Rhymefest vs Mexicano - \"you can rap like this but u not goin win\" \ud83d\ude02 https://t.co/Q8mqro31Na #battleraphistory", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 15930926, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/651580168/f6k8i24dlms3d4hktugh.jpeg", "statuses_count": 32218, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15930926/1388895937", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1496009995", "following": false, "friends_count": 634, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/jikpa", "url": "https://t.co/dNEeeChBZx", "expanded_url": "http://linkedin.com/in/jikpa", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F3F3F3", "profile_link_color": "990000", "geo_enabled": true, "followers_count": 612, "location": "San Francisco, CA", "screen_name": "jikpapa", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 6, "name": "Janet Ikpa", "profile_use_background_image": true, "description": "Diversity Strategist @Twitter | Past life @Google | @Blackbirds & @WomEng Lead | UC Santa Barbara & Indiana University Alum | \u2764\ufe0f | Thoughts my own", "url": "https://t.co/dNEeeChBZx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", "profile_background_color": "EBEBEB", "created_at": "Sun Jun 09 16:16:26 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "DFDFDF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672511079117799424/p2DqatK6_normal.jpg", "favourites_count": 2743, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685559958620868608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/i/moments/6855\u2026", "url": "https://t.co/aarBCxI4p1", "expanded_url": "https://twitter.com/i/moments/685530257777098752?native_moment=true", "indices": [0, 23]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:33:25 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685559958620868608, "text": "https://t.co/aarBCxI4p1", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1496009995, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "statuses_count": 1057, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496009995/1431054902", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "100224999", "following": false, "friends_count": 183, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 507, "location": "San Francisco", "screen_name": "gabi_dee", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 14, "name": "Gabrielle Delva", "profile_use_background_image": false, "description": "travel enthusiast, professional giggler, gif guru, forever in transition.", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Dec 29 13:27:37 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478241815263342592/gYH3PC5y_normal.jpeg", "favourites_count": 1373, "status": {"retweet_count": 19, "retweeted_status": {"retweet_count": 19, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684784175044362240", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "g.co/RISEAwards", "url": "https://t.co/pu9kaeabaw", "expanded_url": "http://g.co/RISEAwards", "indices": [112, 135]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 17:10:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684784175044362240, "text": "Know a great nonprofit that teaches Computer Science to students? Apply for the Google RISE Awards by Feb 19 at https://t.co/pu9kaeabaw", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684819789219368960", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "g.co/RISEAwards", "url": "https://t.co/pu9kaeabaw", "expanded_url": "http://g.co/RISEAwards", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "googlenonprofit", "id_str": "257660675", "id": 257660675, "indices": [3, 19], "name": "GoogleforNonprofits"}]}, "created_at": "Wed Jan 06 19:32:15 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684819789219368960, "text": "RT @googlenonprofit: Know a great nonprofit that teaches Computer Science to students? Apply for the Google RISE Awards by Feb 19 at https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 100224999, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "statuses_count": 6503, "profile_banner_url": "https://pbs.twimg.com/profile_banners/100224999/1426546312", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "18768473", "following": false, "friends_count": 2133, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "open.spotify.com/user/brucedais\u2026", "url": "https://t.co/l0e3ybjdUA", "expanded_url": "https://open.spotify.com/user/brucedaisley", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 19662, "location": "", "screen_name": "brucedaisley", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 416, "name": "Bruce Daisley", "profile_use_background_image": true, "description": "Typo strewn tweets about pop music. #HeForShe. Work at Twitter.", "url": "https://t.co/l0e3ybjdUA", "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", "profile_background_color": "352726", "created_at": "Thu Jan 08 16:20:21 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/669888087732953089/5kBZHAXm_normal.jpg", "favourites_count": 14620, "status": {"in_reply_to_status_id": 685619607722418177, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "MintRoyale", "in_reply_to_user_id": 34306180, "in_reply_to_status_id_str": "685619607722418177", "in_reply_to_user_id_str": "34306180", "truncated": false, "id_str": "685619993329930244", "id": 685619993329930244, "text": "@MintRoyale I'm already over it. The one person I followed clearly is going to police about my unsolicited attention", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MintRoyale", "id_str": "34306180", "id": 34306180, "indices": [0, 11], "name": "Mint Royale"}]}, "created_at": "Sat Jan 09 00:31:59 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18768473, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000072128377/89417926146ee674d0f9660e39bd02a6.jpeg", "statuses_count": 20372, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18768473/1441290267", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "60900903", "following": false, "friends_count": 2729, "entities": {"description": {"urls": [{"display_url": "squ.re/1MXEAse", "url": "https://t.co/lZueerHDOb", "expanded_url": "http://squ.re/1MXEAse", "indices": [125, 148]}]}, "url": {"urls": [{"display_url": "mrtodspies.com", "url": "https://t.co/Bu7ML9v7ZC", "expanded_url": "http://www.mrtodspies.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2257, "location": "Aqui Estoy", "screen_name": "MrTodsPies", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 71, "name": "Mr. Tod", "profile_use_background_image": true, "description": "CEO and Founder of Mr Tod's Pie Factory - ABC Shark Tank's First Winner - Sweet Potato Pie King - Check out my Square Story: https://t.co/lZueerHDOb", "url": "https://t.co/Bu7ML9v7ZC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Tue Jul 28 13:20:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/641236493437116416/n0wPt1s8_normal.jpg", "favourites_count": 423, "status": {"in_reply_to_status_id": 685056214812602368, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Justsayin53", "in_reply_to_user_id": 406640706, "in_reply_to_status_id_str": "685056214812602368", "in_reply_to_user_id_str": "406640706", "truncated": false, "id_str": "685085098476191744", "id": 685085098476191744, "text": "@Justsayin53 GM! All is well in the land of #pies - baking away!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "pies", "indices": [44, 49]}], "user_mentions": [{"screen_name": "Justsayin53", "id_str": "406640706", "id": 406640706, "indices": [0, 12], "name": "Wendy"}]}, "created_at": "Thu Jan 07 13:06:30 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 60900903, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/446717142709186560/fj2CUeyQ.jpeg", "statuses_count": 2574, "profile_banner_url": "https://pbs.twimg.com/profile_banners/60900903/1432911758", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6148472", "following": false, "friends_count": 57, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "gotinder.com", "url": "https://t.co/801oYHR78b", "expanded_url": "http://gotinder.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7031, "location": "", "screen_name": "seanrad", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 390, "name": "Sean Rad", "profile_use_background_image": true, "description": "Founder & CEO of Tinder", "url": "https://t.co/801oYHR78b", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri May 18 22:24:10 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675533302086766593/SeqZFpXG_normal.jpg", "favourites_count": 3, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "664448755433779200", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "tinder.com/@sean", "url": "https://t.co/NygIrxGtnu", "expanded_url": "http://www.tinder.com/@sean", "indices": [18, 41]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Nov 11 14:25:02 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 664448755433779200, "text": "Like me on Tinder https://t.co/NygIrxGtnu", "coordinates": null, "retweeted": false, "favorite_count": 18, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 6148472, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 2153, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2163177444", "following": false, "friends_count": 61, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 18065, "location": "", "screen_name": "HistOpinion", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 299, "name": "Historical Opinion", "profile_use_background_image": true, "description": "Tweets from historical public opinion surveys, US and around the world, 1935-yesterday. Curated by @pashulman.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Oct 29 16:37:52 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551927399491698691/rr_nru0L_normal.jpeg", "favourites_count": 300, "status": {"retweet_count": 15, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684902543877476353", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 614, "resize": "fit"}, "medium": {"w": 600, "h": 360, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 204, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYDoqYmWQAAdVCK.jpg", "type": "photo", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/CYDoqYmWQAAdVCK.jpg", "display_url": "pic.twitter.com/PYMJH91nLw", "id_str": "684802958215757824", "expanded_url": "http://twitter.com/HistOpinion/status/684902543877476353/photo/1", "id": 684802958215757824, "url": "https://t.co/PYMJH91nLw"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 01:01:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684902543877476353, "text": "US Jun 16 \u201954: If the US gets into a fighting war in Indochina, should\nwe drop hydrogen bombs on cities in China? https://t.co/PYMJH91nLw", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 2163177444, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1272, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2163177444/1398739322", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4257979872", "following": false, "friends_count": 0, "entities": {"description": {"urls": [{"display_url": "on.mash.to/1SWgZ0q", "url": "https://t.co/XCv9Qbk0fi", "expanded_url": "http://on.mash.to/1SWgZ0q", "indices": [105, 128]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3D4999", "geo_enabled": false, "followers_count": 53019, "location": "", "screen_name": "ParisVictims", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 215, "name": "En m\u00e9moire", "profile_use_background_image": false, "description": "One tweet for every victim of the terror attacks in Paris on Nov. 13, 2015. This is a @Mashable project.\nhttps://t.co/XCv9Qbk0fi", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", "profile_background_color": "969494", "created_at": "Mon Nov 16 15:41:07 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666290757091745792/S7CVhaTi_normal.png", "favourites_count": 0, "status": {"retweet_count": 165, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684490643801018369", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 235, "resize": "fit"}, "large": {"w": 528, "h": 366, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 528, "h": 366, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX_MkmUWYAAv2nw.png", "type": "photo", "indices": [112, 135], "media_url": "http://pbs.twimg.com/media/CX_MkmUWYAAv2nw.png", "display_url": "pic.twitter.com/hhsLwl89oq", "id_str": "684490597516861440", "expanded_url": "http://twitter.com/ParisVictims/status/684490643801018369/photo/1", "id": 684490597516861440, "url": "https://t.co/hhsLwl89oq"}], "symbols": [], "urls": [], "hashtags": [{"text": "enm\u00e9moire", "indices": [101, 111]}], "user_mentions": []}, "created_at": "Tue Jan 05 21:44:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684490643801018369, "text": "Ren\u00e9 Bichon, 62. France. \nLoved life even though it wasn't always easy. \nVery funny. A \"bon vivant.\" #enm\u00e9moire https://t.co/hhsLwl89oq", "coordinates": null, "retweeted": false, "favorite_count": 314, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 4257979872, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 130, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4257979872/1447689123", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "562267840", "following": false, "friends_count": 95, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "raine.com", "url": "http://t.co/raiVzM9CC2", "expanded_url": "http://www.raine.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 465, "location": "NY/LA/SFO/LONDON/ASIA", "screen_name": "JoeRavitch", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 8, "name": "Joe Ravitch", "profile_use_background_image": true, "description": "", "url": "http://t.co/raiVzM9CC2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 24 19:09:33 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/579968246675320832/FrnEfzjo_normal.jpg", "favourites_count": 60, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684484640321748997", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/NRA/status/684\u2026", "url": "https://t.co/zpDO52WGJD", "expanded_url": "https://twitter.com/NRA/status/684469926707335168", "indices": [75, 98]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 21:20:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684484640321748997, "text": "These people are more dangerous to American freedom than ISIS ever will be https://t.co/zpDO52WGJD", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 562267840, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 325, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "928744998", "following": false, "friends_count": 812, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wakeuptopolitics.com", "url": "https://t.co/Mwu8QKYT05", "expanded_url": "http://www.wakeuptopolitics.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1722, "location": "St. Louis (now), DC (future)", "screen_name": "WakeUp2Politics", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 39, "name": "Gabe Fleisher", "profile_use_background_image": false, "description": "14 yr old Editor, Wake Up To Politics, daily political newsletter. Author. Political junkie. Also attending middle school in my spare time. RTs \u2260 endorsements.", "url": "https://t.co/Mwu8QKYT05", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Nov 06 01:20:43 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675521464804622337/GIXOQ6Gd_normal.jpg", "favourites_count": 2832, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685439707459665920", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wakeuptopolitics.com/subscribe", "url": "https://t.co/ch4BPL5do8", "expanded_url": "http://wakeuptopolitics.com/subscribe", "indices": [115, 138]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 12:35:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685439707459665920, "text": "Looking for an informative daily political update? Sign up to get Wake Up To Politics in your inbox every morning: https://t.co/ch4BPL5do8", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 928744998, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150612503/3kpXdhMd.jpeg", "statuses_count": 3668, "profile_banner_url": "https://pbs.twimg.com/profile_banners/928744998/1452145580", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2773453886", "following": false, "friends_count": 32, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jumpshotgenie.com", "url": "http://t.co/IrZ3XgzXdT", "expanded_url": "http://www.jumpshotgenie.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7718, "location": "Charlotte, NC", "screen_name": "DC__for3", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 44, "name": "Dell Curry", "profile_use_background_image": true, "description": "", "url": "http://t.co/IrZ3XgzXdT", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Aug 27 14:43:19 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/504641440933101569/Vdxyd0HB_normal.jpeg", "favourites_count": 35, "status": {"in_reply_to_status_id": 565328922259492870, "retweet_count": 7, "place": null, "in_reply_to_screen_name": "UnderArmour", "in_reply_to_user_id": 23114836, "in_reply_to_status_id_str": "565328922259492870", "in_reply_to_user_id_str": "23114836", "truncated": false, "id_str": "565627064007811072", "id": 565627064007811072, "text": "@UnderArmour thanks for keeping us looking good!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "UnderArmour", "id_str": "23114836", "id": 23114836, "indices": [0, 12], "name": "Under Armour"}]}, "created_at": "Wed Feb 11 21:42:55 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 65, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2773453886, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 69, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2773453886/1409150929", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "798048997", "following": false, "friends_count": 2, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "perigee.se", "url": "http://t.co/2P0WOpJTeV", "expanded_url": "http://www.perigee.se", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 447, "location": "", "screen_name": "PerigeeApps", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 12, "name": "Perigee", "profile_use_background_image": true, "description": "Crafting useful and desirable apps that solve life's problems in a delightful way.", "url": "http://t.co/2P0WOpJTeV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", "profile_background_color": "C0DEED", "created_at": "Sun Sep 02 11:11:01 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664715687147864064/kpc2xZhe_normal.png", "favourites_count": 106, "status": {"in_reply_to_status_id": 684084532673417216, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "BenAlexx", "in_reply_to_user_id": 272510324, "in_reply_to_status_id_str": "684084532673417216", "in_reply_to_user_id_str": "272510324", "truncated": false, "id_str": "684271791339081728", "id": 684271791339081728, "text": "@BenAlexx on our wish list", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "BenAlexx", "id_str": "272510324", "id": 272510324, "indices": [0, 9], "name": "Ben Byriel"}]}, "created_at": "Tue Jan 05 07:14:42 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 798048997, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 433, "profile_banner_url": "https://pbs.twimg.com/profile_banners/798048997/1447315639", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "37861434", "following": false, "friends_count": 6, "entities": {"description": {"urls": [{"display_url": "amzn.to/PayjDo", "url": "http://t.co/VtCEbuw6KH", "expanded_url": "http://amzn.to/PayjDo", "indices": [133, 155]}]}, "url": {"urls": [{"display_url": "eqbot.com", "url": "http://t.co/EznRBcY7a7", "expanded_url": "http://eqbot.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 124430, "location": "San Francisco, CA", "screen_name": "earthquakesSF", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1539, "name": "SF QuakeBot", "profile_use_background_image": true, "description": "I am a robot that live-tweets earthquakes in the San Francisco Bay area. Built by @billsnitzer. Data is from the USGS. Get prepared: http://t.co/VtCEbuw6KH", "url": "http://t.co/EznRBcY7a7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue May 05 04:53:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/198106312/pink-wave_normal.png", "favourites_count": 0, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685564529225277440", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "eqbot.com/gAY", "url": "https://t.co/moSo8varxs", "expanded_url": "http://eqbot.com/gAY", "indices": [84, 107]}, {"display_url": "eqbot.com/gA9", "url": "https://t.co/5Qt0pRkUQW", "expanded_url": "http://eqbot.com/gA9", "indices": [113, 136]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:51:35 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": {"coordinates": [37.7738342, -122.1374969], "type": "Point"}, "place": {"url": "https://api.twitter.com/1.1/geo/id/ab2f2fac83aa388d.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.34266, 37.699279], [-122.114711, 37.699279], [-122.114711, 37.8847092], [-122.34266, 37.8847092]]], "type": "Polygon"}, "full_name": "Oakland, CA", "contained_within": [], "country_code": "US", "id": "ab2f2fac83aa388d", "name": "Oakland"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685564529225277440, "text": "A 1.5 magnitude earthquake occurred 3.11mi NNE of San Leandro, California. Details: https://t.co/moSo8varxs Map: https://t.co/5Qt0pRkUQW", "coordinates": {"coordinates": [-122.1374969, 37.7738342], "type": "Point"}, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "EQBot"}, "default_profile_image": false, "id": 37861434, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7780, "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "249334021", "following": false, "friends_count": 55, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "opinionator.blogs.nytimes.com/category/fixes/", "url": "http://t.co/dSgWPDl048", "expanded_url": "http://opinionator.blogs.nytimes.com/category/fixes/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7147, "location": "New York, NY", "screen_name": "nytimesfixes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 402, "name": "NYT Fixes Blog", "profile_use_background_image": true, "description": "Fixes explores solutions to major social problems. Each week, it examines creative initiatives that can tell us about the difference between success and failure", "url": "http://t.co/dSgWPDl048", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", "profile_background_color": "C0DEED", "created_at": "Tue Feb 08 21:00:21 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1238697071/fixes45_normal.gif", "favourites_count": 3, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "637290541017899008", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1E5KU38", "url": "http://t.co/FqIFItO9DV", "expanded_url": "http://bit.ly/1E5KU38", "indices": [106, 128]}], "hashtags": [], "user_mentions": [{"screen_name": "poptech", "id_str": "14514411", "id": 14514411, "indices": [42, 50], "name": "PopTech"}]}, "created_at": "Fri Aug 28 15:47:59 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 637290541017899008, "text": "SJN is sponsoring one journalist to go to @poptech conference Oct 22-24 in Camden, ME. Last day to apply! http://t.co/FqIFItO9DV", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "637290601596198912", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1E5KU38", "url": "http://t.co/FqIFItO9DV", "expanded_url": "http://bit.ly/1E5KU38", "indices": [123, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "dnbornstein", "id_str": "17669950", "id": 17669950, "indices": [3, 15], "name": "David Bornstein"}, {"screen_name": "poptech", "id_str": "14514411", "id": 14514411, "indices": [59, 67], "name": "PopTech"}]}, "created_at": "Fri Aug 28 15:48:14 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 637290601596198912, "text": "RT @dnbornstein: SJN is sponsoring one journalist to go to @poptech conference Oct 22-24 in Camden, ME. Last day to apply! http://t.co/FqIF\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 249334021, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/203074404/twitter_post.png", "statuses_count": 349, "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "360391686", "following": false, "friends_count": 707, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "chetfaker.com/shows", "url": "https://t.co/es4xPMVZSh", "expanded_url": "http://chetfaker.com/shows", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 81997, "location": "Australia", "screen_name": "Chet_Faker", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 559, "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186", "profile_use_background_image": true, "description": "unnoficial fan account *parody* no way affiliated with Chet Faker. we \u2665\ufe0fChet Kawai please follow for latest music & check website for more news", "url": "https://t.co/es4xPMVZSh", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Aug 23 04:05:11 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/589275155832000512/SEniErkR_normal.jpg", "favourites_count": 12083, "status": {"retweet_count": 8, "retweeted_status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685545101813141504", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", "display_url": "pic.twitter.com/60GJ7KHdXk", "id_str": "685545100445749248", "expanded_url": "http://twitter.com/shazi_LA/status/685545101813141504/photo/1", "id": 685545100445749248, "url": "https://t.co/60GJ7KHdXk"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "GovBallNYC", "id_str": "241426680", "id": 241426680, "indices": [20, 31], "name": "The Governors Ball"}, {"screen_name": "Thundercat", "id_str": "272071608", "id": 272071608, "indices": [85, 96], "name": "Thunder....cat"}, {"screen_name": "Chet_Faker", "id_str": "360391686", "id": 360391686, "indices": [103, 114], "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186"}]}, "created_at": "Fri Jan 08 19:34:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685545101813141504, "text": "Oh hey, look at the @GovBallNYC lineup... some of my faves here! (I'm looking at you @Thundercat & @Chet_Faker) https://t.co/60GJ7KHdXk", "coordinates": null, "retweeted": false, "favorite_count": 35, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685546274679066624", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "source_status_id_str": "685545101813141504", "media_url": "http://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", "source_user_id_str": "226243669", "id_str": "685545100445749248", "id": 685545100445749248, "media_url_https": "https://pbs.twimg.com/media/CYOLov2UEAA687A.jpg", "type": "photo", "indices": [130, 144], "source_status_id": 685545101813141504, "source_user_id": 226243669, "display_url": "pic.twitter.com/60GJ7KHdXk", "expanded_url": "http://twitter.com/shazi_LA/status/685545101813141504/photo/1", "url": "https://t.co/60GJ7KHdXk"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "shazi_LA", "id_str": "226243669", "id": 226243669, "indices": [3, 12], "name": "Shazi_LA"}, {"screen_name": "GovBallNYC", "id_str": "241426680", "id": 241426680, "indices": [34, 45], "name": "The Governors Ball"}, {"screen_name": "Thundercat", "id_str": "272071608", "id": 272071608, "indices": [99, 110], "name": "Thunder....cat"}, {"screen_name": "Chet_Faker", "id_str": "360391686", "id": 360391686, "indices": [117, 128], "name": "\u270b\u0279\u01dd\u029e\u0250\u2132 \u0287\u01dd\u0265\u0186"}]}, "created_at": "Fri Jan 08 19:39:03 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685546274679066624, "text": "RT @shazi_LA: Oh hey, look at the @GovBallNYC lineup... some of my faves here! (I'm looking at you @Thundercat & @Chet_Faker) https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 360391686, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/369302228/tumblr_lkiu23c5LD1qaybs7o1_500.png", "statuses_count": 8616, "profile_banner_url": "https://pbs.twimg.com/profile_banners/360391686/1363912234", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "748615879", "following": false, "friends_count": 585, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "angstrom.io", "url": "https://t.co/bwG2E1VYFG", "expanded_url": "http://angstrom.io", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 282, "location": "37.7750\u00b0 N, 122.4183\u00b0 W", "screen_name": "cacoco", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 8, "name": "Christopher Coco", "profile_use_background_image": true, "description": "life in small doses.", "url": "https://t.co/bwG2E1VYFG", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", "profile_background_color": "131516", "created_at": "Fri Aug 10 04:35:36 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/474251058684772352/Bl-lSiFE_normal.jpeg", "favourites_count": 4543, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683060423336148992", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 453, "resize": "fit"}, "medium": {"w": 600, "h": 801, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 767, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXq300UUMAAqlli.jpg", "type": "photo", "indices": [23, 46], "media_url": "http://pbs.twimg.com/media/CXq300UUMAAqlli.jpg", "display_url": "pic.twitter.com/O9ES2jxF83", "id_str": "683060411524984832", "expanded_url": "http://twitter.com/cacoco/status/683060423336148992/photo/1", "id": 683060411524984832, "url": "https://t.co/O9ES2jxF83"}], "symbols": [], "urls": [], "hashtags": [{"text": "HappyNewYear", "indices": [9, 22]}], "user_mentions": []}, "created_at": "Fri Jan 01 23:01:10 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683060423336148992, "text": "Day 700. #HappyNewYear https://t.co/O9ES2jxF83", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 748615879, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784862484/832ee6be0442e506ad3d967ba159f1d3.jpeg", "statuses_count": 1975, "profile_banner_url": "https://pbs.twimg.com/profile_banners/748615879/1352437653", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "2652536876", "following": false, "friends_count": 102, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pepsico.com", "url": "https://t.co/SDLqDs6Xfd", "expanded_url": "http://pepsico.com", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3510, "location": "purchase ny", "screen_name": "IndraNooyi", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "Indra Nooyi", "profile_use_background_image": true, "description": "CEO @PEPSICO", "url": "https://t.co/SDLqDs6Xfd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jul 17 01:35:59 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661650082115231745/DIyy4T1-_normal.jpg", "favourites_count": 7, "status": {"in_reply_to_status_id": null, "retweet_count": 9, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682716095342587906", "id": 682716095342587906, "text": "Happy New Year to all with hopes for a peaceful and harmonious 2016", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 01 00:12:56 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 35, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2652536876, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 12, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2652536876/1446586148", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3274940484", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 395, "location": "", "screen_name": "getpolled", "verified": false, "has_extended_profile": false, "protected": true, "listed_count": 1, "name": "@GetPolled", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", "profile_background_color": "3B94D9", "created_at": "Sat Jul 11 00:28:05 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621489737711235072/HM3sNPNi_normal.jpg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 3274940484, "blocked_by": false, "profile_background_tile": false, "statuses_count": 42, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3274940484/1437009659", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "41783", "following": false, "friends_count": 74, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "louiemantia.com", "url": "https://t.co/MWe41e6Yhi", "expanded_url": "http://louiemantia.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "ABB8C2", "geo_enabled": true, "followers_count": 17113, "location": "Portland", "screen_name": "mantia", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 1118, "name": "Louie Mantia", "profile_use_background_image": false, "description": "America's Favorite Icon Designer, Partner @Parakeet", "url": "https://t.co/MWe41e6Yhi", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", "profile_background_color": "A8B4BF", "created_at": "Tue Dec 05 02:40:37 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684924820572614656/1cAKFs1M_normal.png", "favourites_count": 11668, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685636553998118914", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", "type": "photo", "indices": [74, 97], "media_url": "http://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", "display_url": "pic.twitter.com/WyQjkr55BZ", "id_str": "685636553616408576", "expanded_url": "http://twitter.com/Parakeet/status/685636553998118914/photo/1", "id": 685636553616408576, "url": "https://t.co/WyQjkr55BZ"}], "symbols": [], "urls": [{"display_url": "dribbble.com/shots/2446577-\u2026", "url": "https://t.co/mDgJ3qH7ro", "expanded_url": "https://dribbble.com/shots/2446577-Kitchen-Sync-App-Icon", "indices": [50, 73]}], "hashtags": [], "user_mentions": [{"screen_name": "kitchensync", "id_str": "15569016", "id": 15569016, "indices": [14, 26], "name": "billy kitchen"}, {"screen_name": "dribbble", "id_str": "14351575", "id": 14351575, "indices": [39, 48], "name": "Dribbble"}]}, "created_at": "Sat Jan 09 01:37:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685636553998118914, "text": "Check out our @kitchensync app icon on @dribbble! https://t.co/mDgJ3qH7ro https://t.co/WyQjkr55BZ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685636570519441408", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 512, "resize": "fit"}, "medium": {"w": 600, "h": 300, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 170, "resize": "fit"}}, "source_status_id_str": "685636553998118914", "media_url": "http://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", "source_user_id_str": "2966622229", "id_str": "685636553616408576", "id": 685636553616408576, "media_url_https": "https://pbs.twimg.com/media/CYPe0BdUQAAv0wF.png", "type": "photo", "indices": [88, 111], "source_status_id": 685636553998118914, "source_user_id": 2966622229, "display_url": "pic.twitter.com/WyQjkr55BZ", "expanded_url": "http://twitter.com/Parakeet/status/685636553998118914/photo/1", "url": "https://t.co/WyQjkr55BZ"}], "symbols": [], "urls": [{"display_url": "dribbble.com/shots/2446577-\u2026", "url": "https://t.co/mDgJ3qH7ro", "expanded_url": "https://dribbble.com/shots/2446577-Kitchen-Sync-App-Icon", "indices": [64, 87]}], "hashtags": [], "user_mentions": [{"screen_name": "Parakeet", "id_str": "2966622229", "id": 2966622229, "indices": [3, 12], "name": "Parakeet"}, {"screen_name": "kitchensync", "id_str": "15569016", "id": 15569016, "indices": [28, 40], "name": "billy kitchen"}, {"screen_name": "dribbble", "id_str": "14351575", "id": 14351575, "indices": [53, 62], "name": "Dribbble"}]}, "created_at": "Sat Jan 09 01:37:51 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685636570519441408, "text": "RT @Parakeet: Check out our @kitchensync app icon on @dribbble! https://t.co/mDgJ3qH7ro https://t.co/WyQjkr55BZ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Mac"}, "default_profile_image": false, "id": 41783, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593984143/649qzer53whn3j5e7vmy.jpeg", "statuses_count": 102450, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "817288", "following": false, "friends_count": 4457, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "techmeme.com", "url": "http://t.co/2kJ3FyTtAJ", "expanded_url": "http://techmeme.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "1F98C7", "geo_enabled": true, "followers_count": 56181, "location": "SF: Disruptopia, USA", "screen_name": "gaberivera", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2313, "name": "Gabe Rivera", "profile_use_background_image": true, "description": "I run Techmeme.\r\nSometimes I tweet what I mean. Sometimes I tweet the opposite. Retweets are endorphins.", "url": "http://t.co/2kJ3FyTtAJ", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", "profile_background_color": "C6E2EE", "created_at": "Wed Mar 07 06:23:51 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C6E2EE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600790128215240705/65A_KJi1_normal.png", "favourites_count": 13568, "status": {"retweet_count": 3, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685578243668193280", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/mediagazer/sta\u2026", "url": "https://t.co/AzTWnMzdiF", "expanded_url": "https://twitter.com/mediagazer/status/685208531683782656", "indices": [29, 52]}, {"display_url": "twitter.com/alexweprin/sta\u2026", "url": "https://t.co/paReLxvZ6B", "expanded_url": "https://twitter.com/alexweprin/status/685558233407315968", "indices": [53, 76]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:46:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685578243668193280, "text": "Reminder about who's hiring! https://t.co/AzTWnMzdiF https://t.co/paReLxvZ6B", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 817288, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/11906737/Lion_Eating_Meat_Small.jpg", "statuses_count": 11636, "profile_banner_url": "https://pbs.twimg.com/profile_banners/817288/1401467981", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1201139012", "following": false, "friends_count": 29, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkd.in/1uiUZno", "url": "http://t.co/gi5nkD1WcX", "expanded_url": "http://linkd.in/1uiUZno", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2768, "location": "Cleveland, Ohio", "screen_name": "TobyCosgroveMD", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 81, "name": "Toby Cosgrove, MD", "profile_use_background_image": false, "description": "President and CEO, @ClevelandClinic. Cardiothoracic surgeon. U.S. Air Force Veteran.", "url": "http://t.co/gi5nkD1WcX", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", "profile_background_color": "065EA8", "created_at": "Wed Feb 20 13:56:57 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/529294308721963008/YbQyNzkW_normal.jpeg", "favourites_count": 15, "status": {"retweet_count": 29, "retweeted_status": {"retweet_count": 29, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684354635155419139", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "amp.twimg.com/v/1fef475b-c57\u2026", "url": "https://t.co/JIWcrSTFFC", "expanded_url": "https://amp.twimg.com/v/1fef475b-c575-441e-909d-48f4a7ffe2b2", "indices": [85, 108]}], "hashtags": [{"text": "CCHeartbeats", "indices": [71, 84]}], "user_mentions": []}, "created_at": "Tue Jan 05 12:43:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684354635155419139, "text": "On a frigid morning for most across the U.S., a warm and fuzzy moment. #CCHeartbeats\nhttps://t.co/JIWcrSTFFC", "coordinates": null, "retweeted": false, "favorite_count": 31, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685299061470015488", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "amp.twimg.com/v/1fef475b-c57\u2026", "url": "https://t.co/JIWcrSTFFC", "expanded_url": "https://amp.twimg.com/v/1fef475b-c575-441e-909d-48f4a7ffe2b2", "indices": [106, 129]}], "hashtags": [{"text": "CCHeartbeats", "indices": [92, 105]}], "user_mentions": [{"screen_name": "ClevelandClinic", "id_str": "24236494", "id": 24236494, "indices": [3, 19], "name": "Cleveland Clinic"}]}, "created_at": "Fri Jan 08 03:16:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685299061470015488, "text": "RT @ClevelandClinic: On a frigid morning for most across the U.S., a warm and fuzzy moment. #CCHeartbeats\nhttps://t.co/JIWcrSTFFC", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1201139012, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 118, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1201139012/1415028437", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "4071934995", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 123031, "location": "twitter.com", "screen_name": "polls", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 211, "name": "polls", "profile_use_background_image": true, "description": "the most important polls on twitter. Brought to you by @BuzzFeed. DM us your poll ideas!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Oct 30 02:09:51 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660160253913382913/qgvYqknJ_normal.jpg", "favourites_count": 85, "status": {"retweet_count": 70, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681553833370202112", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bzfd.it/1kod7ZI", "url": "https://t.co/F1ISG4AalR", "expanded_url": "http://bzfd.it/1kod7ZI", "indices": [61, 84]}], "hashtags": [], "user_mentions": []}, "created_at": "Mon Dec 28 19:14:31 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681553833370202112, "text": "POLL: Who do you think Rey actually is? (WARNING: SPOILERS!) https://t.co/F1ISG4AalR", "coordinates": null, "retweeted": false, "favorite_count": 221, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 4071934995, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 812, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4071934995/1446225664", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "25084660", "following": false, "friends_count": 791, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 422237, "location": "", "screen_name": "arzE", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2852, "name": "Ezra Koenig", "profile_use_background_image": true, "description": "vampire weekend inc.", "url": null, "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Mar 18 14:52:55 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/143399893/2551539671_918f6cbd7d_normal.jpg", "favourites_count": 5759, "status": {"in_reply_to_status_id": 684485785580617728, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "FiyaSturm", "in_reply_to_user_id": 229010922, "in_reply_to_status_id_str": "684485785580617728", "in_reply_to_user_id_str": "229010922", "truncated": false, "id_str": "684587959090151425", "id": 684587959090151425, "text": "@FiyaSturm sure is", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "FiyaSturm", "id_str": "229010922", "id": 229010922, "indices": [0, 10], "name": "Zaire"}]}, "created_at": "Wed Jan 06 04:11:03 +0000 2016", "source": "Twitter Web Client", "favorite_count": 19, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 25084660, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518197552299008001/_2oh_bt2.jpeg", "statuses_count": 9309, "profile_banner_url": "https://pbs.twimg.com/profile_banners/25084660/1436462636", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "1081562149", "following": false, "friends_count": 1, "entities": {"description": {"urls": [{"display_url": "favstar.fm/users/seinfeld\u2026", "url": "https://t.co/GCOoEYISti", "expanded_url": "http://favstar.fm/users/seinfeld2000", "indices": [71, 94]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 101799, "location": "", "screen_name": "Seinfeld2000", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 779, "name": "Seinfeld Current Day", "profile_use_background_image": true, "description": "Imagen Seinfeld was never canceled and still NBC comedy program today? https://t.co/GCOoEYISti", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Jan 12 02:17:49 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685302732182274049/gc5Bh8UU_normal.jpg", "favourites_count": 56611, "status": {"retweet_count": 223, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685612408102989825", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 539, "resize": "fit"}, "medium": {"w": 473, "h": 750, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 473, "h": 750, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPI0VvUsAAofpc.jpg", "type": "photo", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/CYPI0VvUsAAofpc.jpg", "display_url": "pic.twitter.com/BYALvuWTr5", "id_str": "685612369804832768", "expanded_url": "http://twitter.com/Seinfeld2000/status/685612408102989825/photo/1", "id": 685612369804832768, "url": "https://t.co/BYALvuWTr5"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:01:50 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685612408102989825, "text": "*watches bee movie once* https://t.co/BYALvuWTr5", "coordinates": null, "retweeted": false, "favorite_count": 542, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 1081562149, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784451272/2604dd7bfd1a9574d44507dcca92b516.jpeg", "statuses_count": 6596, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1081562149/1452223878", "is_translator": false}, {"time_zone": "Mountain Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "23699191", "following": false, "friends_count": 524, "entities": {"description": {"urls": [{"display_url": "noisey.vice.com/en_uk/noisey-s", "url": "https://t.co/oXek0Yp2he", "expanded_url": "http://noisey.vice.com/en_uk/noisey-s", "indices": [75, 98]}]}, "url": {"urls": [{"display_url": "helloskepta.com", "url": "https://t.co/LCjnqqo5cF", "expanded_url": "http://www.helloskepta.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 667002, "location": "", "screen_name": "Skepta", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1289, "name": "SKEPTA", "profile_use_background_image": true, "description": "Bookings: grace@metallicmgmt.com jonathanbriks@theagencygroup.com\n\n#TopBoy https://t.co/oXek0Yp2he\u2026", "url": "https://t.co/LCjnqqo5cF", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", "profile_background_color": "131516", "created_at": "Wed Mar 11 01:31:36 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597466667451551746/ukYdFPsN_normal.jpg", "favourites_count": 1, "status": {"in_reply_to_status_id": 685597432613351424, "retweet_count": 10, "place": null, "in_reply_to_screen_name": "AleshaOfficial", "in_reply_to_user_id": 165725207, "in_reply_to_status_id_str": "685597432613351424", "in_reply_to_user_id_str": "165725207", "truncated": false, "id_str": "685600790900113408", "id": 685600790900113408, "text": "@AleshaOfficial \ud83c\udfc6", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AleshaOfficial", "id_str": "165725207", "id": 165725207, "indices": [0, 15], "name": "Alesha Dixon"}]}, "created_at": "Fri Jan 08 23:15:41 +0000 2016", "source": "Echofon", "favorite_count": 42, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 23699191, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 30136, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23699191/1431890723", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "937499232", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "malala.org", "url": "http://t.co/nyY0R0rWL2", "expanded_url": "http://malala.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": false, "followers_count": 64751, "location": "Pakistan", "screen_name": "Malala", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 311, "name": "Malala Yousafzai", "profile_use_background_image": false, "description": "Please follow @MalalaFund for Tweets from Malala and updates on her work.", "url": "http://t.co/nyY0R0rWL2", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Nov 09 18:34:52 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/543190020593434624/3SbQsJvS_normal.jpeg", "favourites_count": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 937499232, "blocked_by": false, "profile_background_tile": false, "statuses_count": 0, "profile_banner_url": "https://pbs.twimg.com/profile_banners/937499232/1444529280", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2477802067", "following": false, "friends_count": 60, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "satyarthi.org", "url": "http://t.co/p9X5Y5bZLm", "expanded_url": "http://www.satyarthi.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 179748, "location": "", "screen_name": "k_satyarthi", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 513, "name": "Kailash Satyarthi", "profile_use_background_image": true, "description": "Nobel Peace Prize 2014 winner. \nFounder-Global March Against Child Labour (@kNOwchildlabour) &\nBachpan Bachao Andolan. RTs not endorsements.", "url": "http://t.co/p9X5Y5bZLm", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon May 05 04:07:33 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/463172659040100352/cKa3fIpv_normal.jpeg", "favourites_count": 173, "status": {"retweet_count": 29, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685387713197903872", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 224, "resize": "fit"}, "large": {"w": 641, "h": 423, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 395, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYL8d1aVAAAVKxG.jpg", "type": "photo", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/CYL8d1aVAAAVKxG.jpg", "display_url": "pic.twitter.com/ER9hXrJe2x", "id_str": "685387682797649920", "expanded_url": "http://twitter.com/k_satyarthi/status/685387713197903872/photo/1", "id": 685387682797649920, "url": "https://t.co/ER9hXrJe2x"}], "symbols": [], "urls": [], "hashtags": [{"text": "AzadBachpanKiOr", "indices": [0, 16]}], "user_mentions": []}, "created_at": "Fri Jan 08 09:08:59 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685387713197903872, "text": "#AzadBachpanKiOr\u00a0is a salutation to the millions of children worldwide who are still deprived of their future. https://t.co/ER9hXrJe2x", "coordinates": null, "retweeted": false, "favorite_count": 65, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2477802067, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 803, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14439813", "following": false, "friends_count": 334, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": true, "followers_count": 58954, "location": "atlanta & nyc", "screen_name": "wnd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 412, "name": "wendy clark", "profile_use_background_image": true, "description": "mom :: ceo ddb/na :: relentless optimist", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", "profile_background_color": "352726", "created_at": "Sat Apr 19 02:18:29 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683108349773135873/3-w568Iw_normal.jpg", "favourites_count": 8834, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685188590213705729", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "continuethethread.com", "url": "https://t.co/aBHKoW0rIh", "expanded_url": "http://continuethethread.com", "indices": [95, 118]}], "hashtags": [], "user_mentions": [{"screen_name": "asergeeva", "id_str": "40744699", "id": 40744699, "indices": [123, 133], "name": "Anna Sergeeva"}, {"screen_name": "shak", "id_str": "17977475", "id": 17977475, "indices": [134, 139], "name": "Shakil Khan"}]}, "created_at": "Thu Jan 07 19:57:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685188590213705729, "text": "This simplest ideas are often the loveliest. Receive beautiful handwritten quotes in the mail. https://t.co/aBHKoW0rIh via @asergeeva @shak", "coordinates": null, "retweeted": false, "favorite_count": 10, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14439813, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 4316, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14439813/1451700372", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "31898295", "following": false, "friends_count": 3108, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "notifications": false, "profile_sidebar_fill_color": "A0C5C7", "profile_link_color": "FF3300", "geo_enabled": true, "followers_count": 4300, "location": "", "screen_name": "Derella", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 68, "name": "matt derella", "profile_use_background_image": true, "description": "Rookie Dad, Lucky Husband, Ice Cream Addict. Remember, You Have Superpowers.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", "profile_background_color": "709397", "created_at": "Thu Apr 16 15:34:22 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "86A4A6", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495385677555847168/u9GWKUeW_normal.jpeg", "favourites_count": 6095, "status": {"in_reply_to_status_id": 685305534791065600, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "adambain", "in_reply_to_user_id": 14253109, "in_reply_to_status_id_str": "685305534791065600", "in_reply_to_user_id_str": "14253109", "truncated": false, "id_str": "685305641867423745", "id": 685305641867423745, "text": "@adambain @jack ditto", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "adambain", "id_str": "14253109", "id": 14253109, "indices": [0, 9], "name": "adam bain"}, {"screen_name": "jack", "id_str": "12", "id": 12, "indices": [10, 15], "name": "Jack"}]}, "created_at": "Fri Jan 08 03:42:52 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 12, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "it"}, "default_profile_image": false, "id": 31898295, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "statuses_count": 2137, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31898295/1350353093", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "38422658", "following": false, "friends_count": 1682, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "F057F0", "geo_enabled": true, "followers_count": 10931, "location": "San Francisco*", "screen_name": "melissabarnes", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 247, "name": "Melissa Barnes", "profile_use_background_image": false, "description": "Global Brands @Twitter. Easily entertained. Black coffee, please.", "url": null, "profile_text_color": "FF6F00", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", "profile_background_color": "FFFFFF", "created_at": "Thu May 07 12:42:42 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000680162557/fd759ddd67644e48de936167c67e480e_normal.png", "favourites_count": 7480, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685494530288840704", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/i/moments/6847\u2026", "url": "https://t.co/s043MWwxBV", "expanded_url": "https://twitter.com/i/moments/684794469330206720", "indices": [0, 23]}], "hashtags": [{"text": "LikeAGirl", "indices": [26, 36]}], "user_mentions": []}, "created_at": "Fri Jan 08 16:13:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/8173485c72e78ca5.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-84.576827, 33.647549], [-84.289385, 33.647549], [-84.289385, 33.8868859], [-84.576827, 33.8868859]]], "type": "Polygon"}, "full_name": "Atlanta, GA", "contained_within": [], "country_code": "US", "id": "8173485c72e78ca5", "name": "Atlanta"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685494530288840704, "text": "https://t.co/s043MWwxBV. #LikeAGirl \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685496618443915268", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/i/moments/6847\u2026", "url": "https://t.co/s043MWwxBV", "expanded_url": "https://twitter.com/i/moments/684794469330206720", "indices": [11, 34]}], "hashtags": [{"text": "LikeAGirl", "indices": [37, 47]}], "user_mentions": [{"screen_name": "EWild", "id_str": "25830913", "id": 25830913, "indices": [3, 9], "name": "Erica Wild Hogue"}]}, "created_at": "Fri Jan 08 16:21:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685496618443915268, "text": "RT @EWild: https://t.co/s043MWwxBV. #LikeAGirl \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 38422658, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/731990497/133f44a3ad5b355f824f066e5acf4826.png", "statuses_count": 1712, "profile_banner_url": "https://pbs.twimg.com/profile_banners/38422658/1383346519", "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "21007030", "following": false, "friends_count": 3161, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rio2016.com", "url": "https://t.co/q8z1zrW1rr", "expanded_url": "http://www.rio2016.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", "notifications": false, "profile_sidebar_fill_color": "A4CC35", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 222738, "location": "Rio de Janeiro", "screen_name": "Rio2016", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1235, "name": "Rio 2016", "profile_use_background_image": false, "description": "Perfil oficial do Comit\u00ea Organizador dos Jogos Ol\u00edmpicos e Paral\u00edmpicos Rio 2016 em Portugu\u00eas. English:@rio2016_en. Espa\u00f1ol: @rio2016_es.", "url": "https://t.co/q8z1zrW1rr", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", "profile_background_color": "FA743E", "created_at": "Mon Feb 16 17:48:07 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681467758127767552/wMetVDCp_normal.jpg", "favourites_count": 1422, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685541550772883456", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "rio2016.com/noticias/veloc\u2026", "url": "https://t.co/kC2A2yILeK", "expanded_url": "http://www.rio2016.com/noticias/velocista-paralimpico-richard-browne-sofre-acidente", "indices": [69, 92]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:20:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "pt", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685541550772883456, "text": "Velocista Paral\u00edmpico Richard Browne (@winged_foot1) sofre acidente: https://t.co/kC2A2yILeK", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 21007030, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652206264550883328/HjPQWiLI.png", "statuses_count": 7247, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21007030/1451309674", "is_translator": false}, {"time_zone": "Brasilia", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -7200, "id_str": "88703900", "following": false, "friends_count": 600, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rio2016.com/en/home", "url": "http://t.co/BFr0Z1jKEP", "expanded_url": "http://www.rio2016.com/en/home", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", "notifications": false, "profile_sidebar_fill_color": "A4CC35", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 245859, "location": "Rio de Janeiro", "screen_name": "Rio2016_en", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1216, "name": "Rio 2016", "profile_use_background_image": true, "description": "Official Rio 2016\u2122 Olympic and Paralympic Organizing Committee in English. Portugu\u00eas:@rio2016. Espa\u00f1ol: @rio2016_es.", "url": "http://t.co/BFr0Z1jKEP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Mon Nov 09 16:44:38 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "F7AF08", "lang": "pt", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681482723169595392/zB4L44Jk_normal.jpg", "favourites_count": 1369, "status": {"retweet_count": 15, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685566770070032384", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 674, "h": 450, "resize": "fit"}, "small": {"w": 340, "h": 227, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 400, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOfWDHWMAAKUqa.png", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CYOfWDHWMAAKUqa.png", "display_url": "pic.twitter.com/4MM6yua5XY", "id_str": "685566769432506368", "expanded_url": "http://twitter.com/Rio2016_en/status/685566770070032384/photo/1", "id": 685566769432506368, "url": "https://t.co/4MM6yua5XY"}], "symbols": [], "urls": [{"display_url": "bit.ly/ExAthletesAt_R\u2026", "url": "https://t.co/98llohvym6", "expanded_url": "http://bit.ly/ExAthletesAt_Rio2016", "indices": [86, 109]}], "hashtags": [{"text": "Rio2016", "indices": [60, 68]}], "user_mentions": []}, "created_at": "Fri Jan 08 21:00:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685566770070032384, "text": "Elite team of ex-athletes helping ensure stars can shine at #Rio2016 Olympic Games\n\u2728\ud83d\udcaa\nhttps://t.co/98llohvym6 https://t.co/4MM6yua5XY", "coordinates": null, "retweeted": false, "favorite_count": 20, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 88703900, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/608811690/2fowkyz9qtxnxt09td4j.png", "statuses_count": 5098, "profile_banner_url": "https://pbs.twimg.com/profile_banners/88703900/1451306802", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "584263864", "following": false, "friends_count": 372, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "005FB3", "geo_enabled": true, "followers_count": 642, "location": "", "screen_name": "edgett", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 27, "name": "Sean Edgett", "profile_use_background_image": true, "description": "Corporate lawyer at Twitter. Comments here are my own.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", "profile_background_color": "022330", "created_at": "Fri May 18 23:43:39 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2605692733/z11h183xg67zdgg9nq9l_normal.jpeg", "favourites_count": 1187, "status": {"in_reply_to_status_id": 684582267168014338, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "Ginarestani", "in_reply_to_user_id": 122864275, "in_reply_to_status_id_str": "684582267168014338", "in_reply_to_user_id_str": "122864275", "truncated": false, "id_str": "684582398307110912", "id": 684582398307110912, "text": "@Ginarestani @nynashine @nantony345 @theaaronhou whoa whoa whoa, let's not get crazy.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Ginarestani", "id_str": "122864275", "id": 122864275, "indices": [0, 12], "name": "Gina Restani"}, {"screen_name": "nynashine", "id_str": "30391637", "id": 30391637, "indices": [13, 23], "name": "Nina Shin"}, {"screen_name": "nantony345", "id_str": "177650140", "id": 177650140, "indices": [24, 35], "name": "Nisha Antony"}, {"screen_name": "theaaronhou", "id_str": "3507493098", "id": 3507493098, "indices": [36, 48], "name": "Aaron Hou"}]}, "created_at": "Wed Jan 06 03:48:57 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 3, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 584263864, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/455576045911953409/t2oDPQBc.jpeg", "statuses_count": 634, "profile_banner_url": "https://pbs.twimg.com/profile_banners/584263864/1442269032", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "4048046116", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 176502, "location": "Turn On Our Notifications!", "screen_name": "24HourPolls", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 101, "name": "24 Hour Polls", "profile_use_background_image": true, "description": "| The Best Polls On Twitter | Original Account | *DM's Are Open For Suggestions!*", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 26 18:33:54 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658724243060883456/KILrmSCI_normal.jpg", "favourites_count": 609, "status": {"in_reply_to_status_id": null, "retweet_count": 47, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685571575861624834", "id": 685571575861624834, "text": "Is it attractive when girls smoke weed?", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:19:35 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 67, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 4048046116, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 810, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048046116/1445886946", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2881611", "following": false, "friends_count": 1288, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/prashantsri\u2026", "url": "https://t.co/d3WaCy2EU1", "expanded_url": "http://www.linkedin.com/in/prashantsridharan", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 11188, "location": "San Francisco", "screen_name": "CoolAssPuppy", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 96, "name": "Prashant S", "profile_use_background_image": true, "description": "Twitter Global Director of Developer & Platform Relations. I @SoulCycle, therefore I am. #PopcornHo", "url": "https://t.co/d3WaCy2EU1", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Thu Mar 29 19:21:15 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/564341898463047680/E79JhGQG_normal.jpeg", "favourites_count": 13092, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685583028937035776", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/depresseddarth\u2026", "url": "https://t.co/8qAMtykCfF", "expanded_url": "https://twitter.com/depresseddarth/status/685582387909144576", "indices": [42, 65]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:05:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685583028937035776, "text": "I want to use this gif for everything :-) https://t.co/8qAMtykCfF", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2881611, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/456196991840575488/wID_XHod.jpeg", "statuses_count": 21189, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2881611/1446596289", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2990843386", "following": false, "friends_count": 53, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 818, "location": "Salt Lake City, UT", "screen_name": "pinkgrandmas", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 10, "name": "Pink Grandmas", "profile_use_background_image": true, "description": "The @PinkGrandmas who lovingly cheer for their Utah Jazz, and always in pink!", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Jan 21 23:13:42 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/558042376636497920/dXgnhC-A_normal.jpeg", "favourites_count": 108, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "683098129923575808", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/683098092216823808/pu/img/bE8W1ZgyMVUithji.jpg", "type": "photo", "indices": [69, 92], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/683098092216823808/pu/img/bE8W1ZgyMVUithji.jpg", "display_url": "pic.twitter.com/U2jMFx4IIv", "id_str": "683098092216823808", "expanded_url": "http://twitter.com/pinkgrandmas/status/683098129923575808/video/1", "id": 683098092216823808, "url": "https://t.co/U2jMFx4IIv"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "gordonhayward", "id_str": "46704247", "id": 46704247, "indices": [39, 53], "name": "Gordon Hayward"}, {"screen_name": "utahjazz", "id_str": "18360370", "id": 18360370, "indices": [58, 67], "name": "Utah Jazz"}]}, "created_at": "Sat Jan 02 01:31:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683098129923575808, "text": "A message for our most favorite player @gordonhayward! Go @utahjazz! https://t.co/U2jMFx4IIv", "coordinates": null, "retweeted": false, "favorite_count": 16, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2990843386, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 139, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2990843386/1421883592", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15105000", "following": false, "friends_count": 1161, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iSachin.com", "url": "http://t.co/AWr3VV2avy", "expanded_url": "http://iSachin.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "088253", "geo_enabled": true, "followers_count": 20847, "location": "San Francisco, CA", "screen_name": "agarwal", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 1324, "name": "Sachin Agarwal", "profile_use_background_image": true, "description": "Product at Twitter. Past: @Stanford, Apple, Founder/CEO of @posterous. I \u2764\ufe0f @kateagarwal, cars, wine, puppies, and foie.", "url": "http://t.co/AWr3VV2avy", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Fri Jun 13 06:49:22 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/619395524395843584/QGKuPKxo_normal.jpg", "favourites_count": 16033, "status": {"in_reply_to_status_id": 685529583605579776, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "capotej", "in_reply_to_user_id": 8898642, "in_reply_to_status_id_str": "685529583605579776", "in_reply_to_user_id_str": "8898642", "truncated": false, "id_str": "685541537774567424", "id": 685541537774567424, "text": "@capotej killing off 100 year old technology? how dare they!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "capotej", "id_str": "8898642", "id": 8898642, "indices": [0, 8], "name": "Julio Capote"}]}, "created_at": "Fri Jan 08 19:20:14 +0000 2016", "source": "Twitter for Mac", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15105000, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 11183, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15105000/1427478415", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "569900436", "following": false, "friends_count": 119, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 436, "location": "", "screen_name": "akkhosh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17, "name": "alex", "profile_use_background_image": true, "description": "alex at periscope.", "url": null, "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Thu May 03 09:06:30 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/559573374150529024/3iOgmOSm_normal.jpeg", "favourites_count": 2, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "default_profile_image": false, "id": 569900436, "blocked_by": false, "profile_background_tile": false, "statuses_count": 0, "profile_banner_url": "https://pbs.twimg.com/profile_banners/569900436/1422657776", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "4027765453", "following": false, "friends_count": 22, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 18502, "location": "", "screen_name": "DocRivers", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 178, "name": "doc rivers", "profile_use_background_image": true, "description": "Father, Husband, Head Basketball Coach LA Clippers, Maywood Native", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 26 19:49:37 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658768083339771904/d1_cqMyF_normal.jpg", "favourites_count": 0, "status": {"retweet_count": 15, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "681236665537400832", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "1.usa.gov/1Hhu4dK", "url": "https://t.co/XRz0Hdeko3", "expanded_url": "http://1.usa.gov/1Hhu4dK", "indices": [72, 95]}], "hashtags": [{"text": "GetCovered", "indices": [96, 107]}, {"text": "NewYearsResolution", "indices": [108, 127]}], "user_mentions": []}, "created_at": "Sun Dec 27 22:14:12 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 681236665537400832, "text": "Make your health a priority in the new year! Sign up for 2016 coverage: https://t.co/XRz0Hdeko3 #GetCovered #NewYearsResolution", "coordinates": null, "retweeted": false, "favorite_count": 36, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 4027765453, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "54226675", "following": false, "friends_count": 220, "entities": {"description": {"urls": [{"display_url": "support.twitter.com/forms/translat\u2026", "url": "http://t.co/SOm6i336Up", "expanded_url": "http://support.twitter.com/forms/translation", "indices": [82, 104]}]}, "url": {"urls": [{"display_url": "translate.twitter.com", "url": "https://t.co/K91mYVcFjL", "expanded_url": "http://translate.twitter.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2948766, "location": "", "screen_name": "translator", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2694, "name": "Translator", "profile_use_background_image": true, "description": "Twitter's Translator Community. Got questions or found a bug? Fill out this form: http://t.co/SOm6i336Up", "url": "https://t.co/K91mYVcFjL", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Jul 06 14:59:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/531789412514795520/iJoBXHgf_normal.png", "favourites_count": 170, "status": {"retweet_count": 48, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684701305839992832", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 575, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYCMNWaW8AA1Tqh.png", "type": "photo", "indices": [100, 123], "media_url": "http://pbs.twimg.com/media/CYCMNWaW8AA1Tqh.png", "display_url": "pic.twitter.com/PnOcQVu7So", "id_str": "684701304342638592", "expanded_url": "http://twitter.com/translator/status/684701305839992832/photo/1", "id": 684701304342638592, "url": "https://t.co/PnOcQVu7So"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 11:41:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684701305839992832, "text": "We would like to thank our Moderators who help international users enjoy Twitter in their language. https://t.co/PnOcQVu7So", "coordinates": null, "retweeted": false, "favorite_count": 136, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 54226675, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656930021/qwztnd9iu549hrvwyt4v.png", "statuses_count": 1708, "profile_banner_url": "https://pbs.twimg.com/profile_banners/54226675/1347394452", "is_translator": true}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "376825877", "following": false, "friends_count": 48, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "opensource.twitter.com", "url": "http://t.co/Hc7Cv220E7", "expanded_url": "http://opensource.twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 282835, "location": "Twitter HQ", "screen_name": "TwitterOSS", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1987, "name": "Twitter Open Source", "profile_use_background_image": true, "description": "Open Programs at Twitter.", "url": "http://t.co/Hc7Cv220E7", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", "profile_background_color": "131516", "created_at": "Tue Sep 20 15:18:34 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000416683223/1bc995c5cfe98cb3c621f1ba0bf99223_normal.png", "favourites_count": 3323, "status": {"retweet_count": 82, "retweeted_status": {"retweet_count": 82, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "674709094498893824", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.twitter.com/2015/finatra-2\u2026", "url": "https://t.co/hhh2C7v3uk", "expanded_url": "https://blog.twitter.com/2015/finatra-20-the-fast-testable-scala-services-framework-that-powers-twitter", "indices": [120, 143]}], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 09 21:55:58 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 674709094498893824, "text": "Introducing Finatra 2.0: a high-performance, scalable & testable framework powering production services at Twitter. https://t.co/hhh2C7v3uk", "coordinates": null, "retweeted": false, "favorite_count": 140, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "674709290087649280", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "blog.twitter.com/2015/finatra-2\u2026", "url": "https://t.co/hhh2C7v3uk", "expanded_url": "https://blog.twitter.com/2015/finatra-20-the-fast-testable-scala-services-framework-that-powers-twitter", "indices": [143, 144]}], "hashtags": [], "user_mentions": [{"screen_name": "TwitterEng", "id_str": "6844292", "id": 6844292, "indices": [3, 14], "name": "Twitter Engineering"}]}, "created_at": "Wed Dec 09 21:56:44 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 674709290087649280, "text": "RT @TwitterEng: Introducing Finatra 2.0: a high-performance, scalable & testable framework powering production services at Twitter. https:/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 376825877, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5355, "profile_banner_url": "https://pbs.twimg.com/profile_banners/376825877/1396969577", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17874544", "following": false, "friends_count": 31, "entities": {"description": {"urls": [{"display_url": "support.twitter.com", "url": "http://t.co/qq1HEzdMA2", "expanded_url": "http://support.twitter.com", "indices": [118, 140]}]}, "url": {"urls": [{"display_url": "support.twitter.com", "url": "http://t.co/Vk1NkwU8qP", "expanded_url": "http://support.twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4604953, "location": "Twitter HQ", "screen_name": "Support", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 13844, "name": "Twitter Support", "profile_use_background_image": true, "description": "We Tweet tips and tricks to help you boost your Twitter skills and keep your account secure. For detailed help, visit http://t.co/qq1HEzdMA2.", "url": "http://t.co/Vk1NkwU8qP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", "profile_background_color": "C0DEED", "created_at": "Thu Dec 04 18:51:57 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/533026436190175232/1i65YBa7_normal.png", "favourites_count": 300, "status": {"retweet_count": 54, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685551636547158016", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "support.twitter.com/articles/15789", "url": "https://t.co/4fJrONin39", "expanded_url": "https://support.twitter.com/articles/15789", "indices": [111, 134]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:00:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685551636547158016, "text": "We're here to help you keep your Twitter experience \ud83d\udcaf. Make sure you know how to report a potential violation: https://t.co/4fJrONin39", "coordinates": null, "retweeted": false, "favorite_count": 78, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 17874544, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656929496/y6jd4l68p18hrm52f0ez.png", "statuses_count": 14056, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17874544/1347394418", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6253282", "following": false, "friends_count": 48, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dev.twitter.com", "url": "http://t.co/78pYTvWfJd", "expanded_url": "http://dev.twitter.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 5241047, "location": "San Francisco, CA", "screen_name": "twitterapi", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 12999, "name": "Twitter API", "profile_use_background_image": true, "description": "The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.", "url": "http://t.co/78pYTvWfJd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", "profile_background_color": "C0DEED", "created_at": "Wed May 23 06:01:13 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2284174872/7df3h38zabcvjylnyfe3_normal.png", "favourites_count": 27, "status": {"in_reply_to_status_id": 673669438504378368, "retweet_count": 12, "place": null, "in_reply_to_screen_name": "TheNiceBot", "in_reply_to_user_id": 3433099685, "in_reply_to_status_id_str": "673669438504378368", "in_reply_to_user_id_str": "3433099685", "truncated": false, "id_str": "673922605531951105", "id": 673922605531951105, "text": "@TheNiceBot aww thanks, you're lovely too! :-)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "TheNiceBot", "id_str": "3433099685", "id": 3433099685, "indices": [0, 11], "name": "The NiceBot"}]}, "created_at": "Mon Dec 07 17:50:44 +0000 2015", "source": "TweetDeck", "favorite_count": 16, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6253282, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/656927849/miyt9dpjz77sc0w3d4vj.png", "statuses_count": 3554, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1431474710", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "95731075", "following": false, "friends_count": 85, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "safety.twitter.com", "url": "https://t.co/mAjmahDXqp", "expanded_url": "https://safety.twitter.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 2919314, "location": "Twitter HQ", "screen_name": "safety", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 7563, "name": "Safety", "profile_use_background_image": true, "description": "Helping you stay safe on Twitter.", "url": "https://t.co/mAjmahDXqp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", "profile_background_color": "022330", "created_at": "Wed Dec 09 21:00:57 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/535572036542676993/LFT_i3TO_normal.png", "favourites_count": 5, "status": {"retweet_count": 698, "retweeted_status": {"retweet_count": 698, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682343018343448576", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "amp.twimg.com/v/47960172-638\u2026", "url": "https://t.co/1SZQnuIxhm", "expanded_url": "https://amp.twimg.com/v/47960172-638b-42b8-ab59-7f94100d6ba9", "indices": [83, 106]}], "hashtags": [{"text": "TwitterTips", "indices": [70, 82]}], "user_mentions": []}, "created_at": "Wed Dec 30 23:30:27 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682343018343448576, "text": "Break free. Add a profile photo to show the world who you really are. #TwitterTips\nhttps://t.co/1SZQnuIxhm", "coordinates": null, "retweeted": false, "favorite_count": 1652, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684170204641804288", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "amp.twimg.com/v/47960172-638\u2026", "url": "https://t.co/1SZQnuIxhm", "expanded_url": "https://amp.twimg.com/v/47960172-638b-42b8-ab59-7f94100d6ba9", "indices": [96, 119]}], "hashtags": [{"text": "TwitterTips", "indices": [83, 95]}], "user_mentions": [{"screen_name": "twitter", "id_str": "783214", "id": 783214, "indices": [3, 11], "name": "Twitter"}]}, "created_at": "Tue Jan 05 00:31:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684170204641804288, "text": "RT @twitter: Break free. Add a profile photo to show the world who you really are. #TwitterTips\nhttps://t.co/1SZQnuIxhm", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "TweetDeck"}, "default_profile_image": false, "id": 95731075, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 399, "profile_banner_url": "https://pbs.twimg.com/profile_banners/95731075/1416521916", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "204343158", "following": false, "friends_count": 286, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "1stdibs.com", "url": "http://t.co/GyCLcPK1G6", "expanded_url": "http://www.1stdibs.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3E9DE0", "geo_enabled": true, "followers_count": 5054, "location": "New York, NY", "screen_name": "rosenblattdavid", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 60, "name": "David Rosenblatt", "profile_use_background_image": true, "description": "CEO at 1stdibs", "url": "http://t.co/GyCLcPK1G6", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Oct 18 13:56:10 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671720409000050688/iGAx6hoH_normal.jpg", "favourites_count": 245, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685556694533935105", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/Recode/status/\u2026", "url": "https://t.co/L5VbEWyHBl", "expanded_url": "https://twitter.com/Recode/status/685146065398411264", "indices": [73, 96]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 20:20:27 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685556694533935105, "text": "75% off seems to be the going rate for discounts on flash sale companies https://t.co/L5VbEWyHBl", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 204343158, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/671719951930003456/pt0vUfBt.jpg", "statuses_count": 376, "profile_banner_url": "https://pbs.twimg.com/profile_banners/204343158/1448985578", "is_translator": false}, {"time_zone": "Alaska", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -32400, "id_str": "19417999", "following": false, "friends_count": 14503, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "itun.es/us/Q4QZ6", "url": "https://t.co/1snyy96FWE", "expanded_url": "https://itun.es/us/Q4QZ6", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 57232, "location": "Invite The Light \u2022 Out now.", "screen_name": "DaMFunK", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1338, "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK", "profile_use_background_image": true, "description": "\u2022 Modern-Funk | No fads | No sellout \u2022", "url": "https://t.co/1snyy96FWE", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Fri Jan 23 22:31:59 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678395496021364737/V8LFK3SY_normal.jpg", "favourites_count": 52059, "status": {"retweet_count": 1, "retweeted_status": {"in_reply_to_status_id": 685619823364079616, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "DaMFunK", "in_reply_to_user_id": 19417999, "in_reply_to_status_id_str": "685619823364079616", "in_reply_to_user_id_str": "19417999", "truncated": false, "id_str": "685622220455018497", "id": 685622220455018497, "text": "@DaMFunK HA.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DaMFunK", "id_str": "19417999", "id": 19417999, "indices": [0, 8], "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK"}]}, "created_at": "Sat Jan 09 00:40:50 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "in_reply_to_user_id": null, "id_str": "685622331998248960", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "YearOfEmpress", "id_str": "20882943", "id": 20882943, "indices": [3, 17], "name": "\u091c\u094d\u0935\u0932\u0902\u0924 \u0924\u0932\u0935\u093e\u0930 \u0915\u0940 \u092c\u0947\u091f\u0940"}, {"screen_name": "DaMFunK", "id_str": "19417999", "id": 19417999, "indices": [19, 27], "name": "Focused\u26a1\ufe0fD\u0101M-F\u0426\u041fK"}]}, "created_at": "Sat Jan 09 00:41:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685622331998248960, "text": "RT @YearOfEmpress: @DaMFunK HA.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 19417999, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4038874/moonbeam.jpg", "statuses_count": 41218, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19417999/1441340768", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17230018", "following": false, "friends_count": 17946, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Spotify.com", "url": "http://t.co/jqAb65DqrK", "expanded_url": "http://Spotify.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", "notifications": false, "profile_sidebar_fill_color": "ECEBE8", "profile_link_color": "1ED760", "geo_enabled": true, "followers_count": 1643957, "location": "", "screen_name": "Spotify", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 14002, "name": "Spotify", "profile_use_background_image": false, "description": "Music for every moment. Play, discover, and share for free. \r\nNeed support? We're happy to help at @SpotifyCares", "url": "http://t.co/jqAb65DqrK", "profile_text_color": "458DBF", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", "profile_background_color": "FFFFFF", "created_at": "Fri Nov 07 12:14:28 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634474652967006208/46qwP9AX_normal.png", "favourites_count": 4977, "status": {"in_reply_to_status_id": 685572728838066177, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "nachote88", "in_reply_to_user_id": 70842278, "in_reply_to_status_id_str": "685572728838066177", "in_reply_to_user_id_str": "70842278", "truncated": false, "id_str": "685577838280454144", "id": 685577838280454144, "text": "@nachote88 He's never been one to disappoint! \ud83c\udfb6", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "nachote88", "id_str": "70842278", "id": 70842278, "indices": [0, 10], "name": "Ignacio Rebella"}]}, "created_at": "Fri Jan 08 21:44:28 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 17230018, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/826426375/6d0aaba328f353d9ef82b078d51739ac.jpeg", "statuses_count": 23164, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17230018/1450966022", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18948541", "following": false, "friends_count": 349, "entities": {"description": {"urls": [{"display_url": "itun.es/us/Vx9p-", "url": "https://t.co/gLePVn5Mho", "expanded_url": "http://itun.es/us/Vx9p-", "indices": [103, 126]}]}, "url": {"urls": [{"display_url": "facebook.com/pages/Seth-Mac\u2026", "url": "https://t.co/o4miqWAHnW", "expanded_url": "http://www.facebook.com/pages/Seth-MacFarlane/14105972607?ref=ts", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 8860999, "location": "Los Angeles", "screen_name": "SethMacFarlane", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 32337, "name": "Seth MacFarlane", "profile_use_background_image": true, "description": "The Official Twitter Page of Seth MacFarlane - new album No One Ever Tells You available now on iTunes https://t.co/gLePVn5Mho", "url": "https://t.co/o4miqWAHnW", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Jan 13 19:04:37 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/477598819715395585/g0lGqC_J_normal.jpeg", "favourites_count": 0, "status": {"retweet_count": 605, "retweeted_status": {"retweet_count": 605, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685472301672865794", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 360, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", "type": "photo", "indices": [52, 75], "media_url": "http://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", "display_url": "pic.twitter.com/QHfbTkEWXU", "id_str": "685321946146340864", "expanded_url": "http://twitter.com/ClickHole/status/685472301672865794/photo/1", "id": 685321946146340864, "url": "https://t.co/QHfbTkEWXU"}], "symbols": [], "urls": [{"display_url": "clickhole.com/r/754tsd", "url": "https://t.co/qTHD9SfgX8", "expanded_url": "http://www.clickhole.com/r/754tsd", "indices": [28, 51]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:45:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685472301672865794, "text": "Here\u2019s A Fucking Anime Quiz https://t.co/qTHD9SfgX8 https://t.co/QHfbTkEWXU", "coordinates": null, "retweeted": false, "favorite_count": 852, "contributors": null, "source": "TweetDeck"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685490467702575104", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 360, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}}, "source_status_id_str": "685472301672865794", "media_url": "http://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", "source_user_id_str": "2377815434", "id_str": "685321946146340864", "id": 685321946146340864, "media_url_https": "https://pbs.twimg.com/media/CYLArdTVAAAM-l8.jpg", "type": "photo", "indices": [67, 90], "source_status_id": 685472301672865794, "source_user_id": 2377815434, "display_url": "pic.twitter.com/QHfbTkEWXU", "expanded_url": "http://twitter.com/ClickHole/status/685472301672865794/photo/1", "url": "https://t.co/QHfbTkEWXU"}], "symbols": [], "urls": [{"display_url": "clickhole.com/r/754tsd", "url": "https://t.co/qTHD9SfgX8", "expanded_url": "http://www.clickhole.com/r/754tsd", "indices": [43, 66]}], "hashtags": [], "user_mentions": [{"screen_name": "ClickHole", "id_str": "2377815434", "id": 2377815434, "indices": [3, 13], "name": "ClickHole"}]}, "created_at": "Fri Jan 08 15:57:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685490467702575104, "text": "RT @ClickHole: Here\u2019s A Fucking Anime Quiz https://t.co/qTHD9SfgX8 https://t.co/QHfbTkEWXU", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Echofon"}, "default_profile_image": false, "id": 18948541, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 5295, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "96829836", "following": false, "friends_count": 188, "entities": {"description": {"urls": [{"display_url": "smarturl.it/illmaticxx_itu\u2026", "url": "http://t.co/GQVoyTHAXi", "expanded_url": "http://smarturl.it/illmaticxx_itunes", "indices": [29, 51]}]}, "url": {"urls": [{"display_url": "TribecaFilm.com/Nas", "url": "http://t.co/Ol6HETXMsd", "expanded_url": "http://TribecaFilm.com/Nas", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1896081, "location": "NYC", "screen_name": "Nas", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8575, "name": "Nasir Jones", "profile_use_background_image": true, "description": "Illmatic XX now available: \r\nhttp://t.co/GQVoyTHAXi", "url": "http://t.co/Ol6HETXMsd", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 14 20:03:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/561373039611633664/nz0FbI_m_normal.jpeg", "favourites_count": 3, "status": {"retweet_count": 24, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685575673147191296", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BASxldUpEj8/", "url": "https://t.co/L3S16gxv5u", "expanded_url": "https://www.instagram.com/p/BASxldUpEj8/", "indices": [44, 67]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 21:35:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685575673147191296, "text": "Lord Shan! \nMC Shan ladies & gentleman. https://t.co/L3S16gxv5u", "coordinates": null, "retweeted": false, "favorite_count": 75, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 96829836, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/814646450/ebaaa9f989a38f17fb2330bb4268eb33.jpeg", "statuses_count": 4514, "profile_banner_url": "https://pbs.twimg.com/profile_banners/96829836/1412353651", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "422665701", "following": false, "friends_count": 1877, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "smarturl.it/TrapTearsVid", "url": "https://t.co/bSTapnSbtt", "expanded_url": "http://smarturl.it/TrapTearsVid", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", "notifications": false, "profile_sidebar_fill_color": "0A0A0A", "profile_link_color": "8F120E", "geo_enabled": true, "followers_count": 113330, "location": "", "screen_name": "Raury", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 326, "name": "AWN", "profile_use_background_image": true, "description": "being of light , right on time #indigo #millennial new album #AllWeNeed", "url": "https://t.co/bSTapnSbtt", "profile_text_color": "A30A0A", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", "profile_background_color": "000000", "created_at": "Sun Nov 27 14:50:29 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683071165993250816/q1QwbA89_normal.jpg", "favourites_count": 9694, "status": {"retweet_count": 27, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685591537066053632", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 964, "h": 964, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYO13ZUWkAIASL1.jpg", "type": "photo", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/CYO13ZUWkAIASL1.jpg", "display_url": "pic.twitter.com/GzWdNy9t6a", "id_str": "685591531584131074", "expanded_url": "http://twitter.com/Raury/status/685591537066053632/photo/1", "id": 685591531584131074, "url": "https://t.co/GzWdNy9t6a"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "6LACK", "id_str": "27133902", "id": 27133902, "indices": [32, 38], "name": "bear"}, {"screen_name": "carlonramong", "id_str": "324541023", "id": 324541023, "indices": [79, 92], "name": "Carlon Ramong"}]}, "created_at": "Fri Jan 08 22:38:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685591537066053632, "text": "Cabin party in ATL tomorrow for @6LACK \ud83c\udf88\n\nbring swimsuits for the jacuzzi\ud83c\udfc4\ud83c\udfc4hit @carlonramong for details https://t.co/GzWdNy9t6a", "coordinates": null, "retweeted": false, "favorite_count": 58, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 422665701, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440196658370842624/wF3gsmG5.jpeg", "statuses_count": 35240, "profile_banner_url": "https://pbs.twimg.com/profile_banners/422665701/1444935009", "is_translator": false}, {"time_zone": "Baghdad", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 10800, "id_str": "1499345785", "following": false, "friends_count": 31, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 21460, "location": "", "screen_name": "Iarsulrich", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 73, "name": "Lars Ulrich", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", "profile_background_color": "000000", "created_at": "Mon Jun 10 20:39:52 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en-gb", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639736788509044736/f9APSm1B_normal.jpg", "favourites_count": 14, "status": {"in_reply_to_status_id": null, "retweet_count": 239, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "585814658197499904", "id": 585814658197499904, "text": "Ba Dum Ts", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Apr 08 14:41:13 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 310, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "tl"}, "default_profile_image": false, "id": 1499345785, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138370065/l8wX2JAO.jpeg", "statuses_count": 1, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499345785/1438456012", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "7698", "following": false, "friends_count": 758, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "monkey.org/~marius/", "url": "https://t.co/Fd7AtAPU13", "expanded_url": "http://monkey.org/~marius/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "038543", "geo_enabled": true, "followers_count": 8439, "location": "Silicon Valley", "screen_name": "marius", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 294, "name": "marius eriksen", "profile_use_background_image": true, "description": "I spend most days cursing at lots of very tiny electronics.", "url": "https://t.co/Fd7AtAPU13", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", "profile_background_color": "ACDED6", "created_at": "Sat Oct 07 06:53:18 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658107214943514624/9kBvyBlv_normal.jpg", "favourites_count": 4808, "status": {"in_reply_to_status_id": 685513010115383296, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "danamlewis", "in_reply_to_user_id": 15165858, "in_reply_to_status_id_str": "685513010115383296", "in_reply_to_user_id_str": "15165858", "truncated": false, "id_str": "685515748110811136", "id": 685515748110811136, "text": "@danamlewis @MDT_Diabetes :-( we have seriously discussed hiring someone (task rabbit?) just to deal with insurance and decide companies \u2026", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "danamlewis", "id_str": "15165858", "id": 15165858, "indices": [0, 11], "name": "Dana | #hcsm #DIYPS"}, {"screen_name": "MDT_Diabetes", "id_str": "17861851", "id": 17861851, "indices": [12, 25], "name": "Medtronic Diabetes"}]}, "created_at": "Fri Jan 08 17:37:45 +0000 2016", "source": "Tweetbot for i\u039fS", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 7698, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "statuses_count": 7424, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7698/1413383522", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18819527", "following": false, "friends_count": 3066, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "travelocity.com", "url": "http://t.co/GxUHwpGZyC", "expanded_url": "http://travelocity.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", "notifications": false, "profile_sidebar_fill_color": "7AC3EE", "profile_link_color": "FF0000", "geo_enabled": true, "followers_count": 80691, "location": "", "screen_name": "RoamingGnome", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1434, "name": "Travelocity Gnome", "profile_use_background_image": true, "description": "The official globetrotting ornament. Nabbed from a very boring garden to travel the world. You can find me on instagram @roaminggnome", "url": "http://t.co/GxUHwpGZyC", "profile_text_color": "3D1957", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", "profile_background_color": "89C9FA", "created_at": "Fri Jan 09 23:08:58 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/433651314791178240/hsG03B35_normal.jpeg", "favourites_count": 4816, "status": {"retweet_count": 11, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685491269808877568", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 1365, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 453, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNarU-WQAAoXfI.jpg", "type": "photo", "indices": [91, 114], "media_url": "http://pbs.twimg.com/media/CYNarU-WQAAoXfI.jpg", "display_url": "pic.twitter.com/rmBRcCN0Ax", "id_str": "685491268701536256", "expanded_url": "http://twitter.com/RoamingGnome/status/685491269808877568/photo/1", "id": 685491268701536256, "url": "https://t.co/rmBRcCN0Ax"}], "symbols": [], "urls": [], "hashtags": [{"text": "BubbleBathDay", "indices": [5, 19]}], "user_mentions": []}, "created_at": "Fri Jan 08 16:00:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685491269808877568, "text": "This #BubbleBathDay wasn't quite what I had in mind. Good thing I have a vacation planned. https://t.co/rmBRcCN0Ax", "coordinates": null, "retweeted": false, "favorite_count": 20, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 18819527, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/516696088510603265/WyHCTS77.jpeg", "statuses_count": 10405, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18819527/1398261580", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "32765534", "following": false, "friends_count": 326, "entities": {"description": {"urls": [{"display_url": "billsimmonspodcast.com", "url": "https://t.co/vjQN5lsu7P", "expanded_url": "http://www.billsimmonspodcast.com", "indices": [44, 67]}]}, "url": {"urls": [{"display_url": "grantland.com/features/compl\u2026", "url": "https://t.co/FAEjPf1Iwj", "expanded_url": "http://grantland.com/features/complete-column-archives-grantland-edition/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "9D582E", "geo_enabled": false, "followers_count": 4767763, "location": "Los Angeles (via Boston)", "screen_name": "BillSimmons", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 32238, "name": "Bill Simmons", "profile_use_background_image": true, "description": "Host of The Bill Simmons Podcast - links at https://t.co/vjQN5lsu7P. My HBO show = 2016. Once ran a Grantland cult according to 2 unnamed ESPN execs.", "url": "https://t.co/FAEjPf1Iwj", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", "profile_background_color": "8B542B", "created_at": "Sat Apr 18 03:37:31 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645990884165578753/moYctN8w_normal.jpg", "favourites_count": 9, "status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685579237923794944", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "itunes.apple.com/us/podcast/the\u2026", "url": "https://t.co/wuVe9E8732", "expanded_url": "https://itunes.apple.com/us/podcast/the-bill-simmons-podcast/id1043699613?mt=2#episodeGuid=tag%3Asoundcloud%2C2010%3Atracks%2F241011357", "indices": [106, 129]}], "hashtags": [], "user_mentions": [{"screen_name": "HousefromDC", "id_str": "180433733", "id": 180433733, "indices": [91, 103], "name": "House"}]}, "created_at": "Fri Jan 08 21:50:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685579237923794944, "text": "New BS Pod - did some Friday Rollin' + Round One NFL picks + some NBA talk with a DC-giddy @HousefromDC \n\nhttps://t.co/wuVe9E8732", "coordinates": null, "retweeted": false, "favorite_count": 75, "contributors": null, "source": "Echofon"}, "default_profile_image": false, "id": 32765534, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/712357174/6ab50d40301a561d202a86c215f6aa2f.jpeg", "statuses_count": 15279, "profile_banner_url": "https://pbs.twimg.com/profile_banners/32765534/1445653325", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "44039298", "following": false, "friends_count": 545, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 3613922, "location": "New York", "screen_name": "sethmeyers", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 20373, "name": "Seth Meyers", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 02 02:35:39 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/267298914/n700068668_5523_normal.jpg", "favourites_count": 49, "status": {"retweet_count": 333, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 333, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685539256698159104", "id": 685539256698159104, "text": "Already lookin' forward to the next time they catch El Chapo.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:11:10 +0000 2016", "source": "Twitter for Android", "favorite_count": 604, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685539599377166338", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "MrGeorgeWallace", "id_str": "398490298", "id": 398490298, "indices": [3, 19], "name": "George Wallace"}]}, "created_at": "Fri Jan 08 19:12:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685539599377166338, "text": "RT @MrGeorgeWallace: Already lookin' forward to the next time they catch El Chapo.", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 44039298, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 6071, "is_translator": false}, {"time_zone": "UTC", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "104969057", "following": false, "friends_count": 493, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "McKellen.com", "url": "http://t.co/g38r3qsinW", "expanded_url": "http://www.McKellen.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "050505", "geo_enabled": false, "followers_count": 2901659, "location": "London, UK", "screen_name": "IanMcKellen", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 12052, "name": "Ian McKellen", "profile_use_background_image": true, "description": "actor and activist", "url": "http://t.co/g38r3qsinW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", "profile_background_color": "131516", "created_at": "Thu Jan 14 23:29:56 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3633670448/8ddcdf11c5fb8fb8851c8c0457e85383_normal.jpeg", "favourites_count": 95, "status": {"retweet_count": 63, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685511765812097024", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nyti.ms/1O8JypN", "url": "https://t.co/IhQSusDn6r", "expanded_url": "http://nyti.ms/1O8JypN", "indices": [56, 79]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 17:21:55 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685511765812097024, "text": "Ian McKellen Will Take That Seat, if You\u2019re Offering It https://t.co/IhQSusDn6r", "coordinates": null, "retweeted": false, "favorite_count": 359, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 104969057, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1314, "profile_banner_url": "https://pbs.twimg.com/profile_banners/104969057/1449683945", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "241964676", "following": false, "friends_count": 226, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Grantland.com", "url": "http://t.co/qx60xDYYa3", "expanded_url": "http://www.Grantland.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/414549914/bg.jpg", "notifications": false, "profile_sidebar_fill_color": "F5F5F5", "profile_link_color": "BF1E2E", "geo_enabled": false, "followers_count": 508487, "location": "Los Angeles, CA", "screen_name": "Grantland33", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8432, "name": "Grantland", "profile_use_background_image": true, "description": "Home of the Triangle | Hollywood Prospectus.", "url": "http://t.co/qx60xDYYa3", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Jan 23 16:06:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBDDDE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423899044243443712/R8Ei6kil_normal.jpeg", "favourites_count": 238, "status": {"retweet_count": 14, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "660147525454696448", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "gran.tl/1Womk0x", "url": "https://t.co/1tWBmhThwU", "expanded_url": "http://gran.tl/1Womk0x", "indices": [75, 98]}], "hashtags": [], "user_mentions": [{"screen_name": "max_cea", "id_str": "261502837", "id": 261502837, "indices": [66, 74], "name": "Max Cea"}]}, "created_at": "Fri Oct 30 17:33:29 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 660147525454696448, "text": "We Went There: Clippers-Mavs and DeAndre Jordan Night in L.A., by @max_cea https://t.co/1tWBmhThwU", "coordinates": null, "retweeted": false, "favorite_count": 71, "contributors": null, "source": "WordPress.com"}, "default_profile_image": false, "id": 241964676, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/414549914/bg.jpg", "statuses_count": 26406, "profile_banner_url": "https://pbs.twimg.com/profile_banners/241964676/1441915615", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "615999145", "profile_image_url": "http://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", "friends_count": 127, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Sat Jun 23 10:24:53 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/2426136445/mrvv14fip4lk4tcs1qj6_normal.jpeg", "favourites_count": 6, "listed_count": 1, "geo_enabled": false, "follow_request_sent": false, "followers_count": 766, "following": false, "default_profile_image": false, "id": 615999145, "blocked_by": false, "name": "Bee Shaffer", "location": "Los Angeles", "screen_name": "KikiShaf", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1440641", "following": false, "friends_count": 88, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nytimes.com/arts", "url": "http://t.co/0H74AaBX8Y", "expanded_url": "http://www.nytimes.com/arts", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", "notifications": false, "profile_sidebar_fill_color": "E7EFF8", "profile_link_color": "004276", "geo_enabled": false, "followers_count": 1861404, "location": "New York, NY", "screen_name": "nytimesarts", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 17929, "name": "New York Times Arts", "profile_use_background_image": true, "description": "Arts and entertainment news from The New York Times.", "url": "http://t.co/0H74AaBX8Y", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", "profile_background_color": "FFFFFF", "created_at": "Sun Mar 18 20:30:33 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "323232", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2037590739/NYT_Twitter_arts_normal.png", "favourites_count": 21, "status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685633001577943041", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "nyti.ms/1OUVKIf", "url": "https://t.co/dqGYg0x7HE", "expanded_url": "http://nyti.ms/1OUVKIf", "indices": [57, 80]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:23:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685633001577943041, "text": "Up for Auction: Real Art, Owned by a Seller of Forgeries https://t.co/dqGYg0x7HE", "coordinates": null, "retweeted": false, "favorite_count": 3, "contributors": null, "source": "SocialFlow"}, "default_profile_image": false, "id": 1440641, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2800588/twitter.post.gif", "statuses_count": 91366, "is_translator": false}, {"time_zone": "Greenland", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -10800, "id_str": "16465385", "following": false, "friends_count": 536, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nobelprize.org", "url": "http://t.co/If9cQQEL4i", "expanded_url": "http://nobelprize.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", "notifications": false, "profile_sidebar_fill_color": "E2E8EA", "profile_link_color": "307497", "geo_enabled": true, "followers_count": 177864, "location": "Stockholm, Sweden", "screen_name": "NobelPrize", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3279, "name": "The Nobel Prize", "profile_use_background_image": true, "description": "The official Twitter feed of the Nobel Prize @NobelPrize #NobelPrize", "url": "http://t.co/If9cQQEL4i", "profile_text_color": "023C59", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Fri Sep 26 08:47:58 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000473278283/80ea0fb0832c7d4c0eabeefe1f7f1b44_normal.jpeg", "favourites_count": 198, "status": {"retweet_count": 18, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685486394395996161", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 812, "h": 1024, "resize": "fit"}, "medium": {"w": 600, "h": 756, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 428, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNWPivVAAEeQGr.jpg", "type": "photo", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/CYNWPivVAAEeQGr.jpg", "display_url": "pic.twitter.com/4ZGhYYUyvw", "id_str": "685486393313787905", "expanded_url": "http://twitter.com/NobelPrize/status/685486394395996161/photo/1", "id": 685486393313787905, "url": "https://t.co/4ZGhYYUyvw"}], "symbols": [], "urls": [{"display_url": "goo.gl/KhzAMl", "url": "https://t.co/qEHZEYLQDD", "expanded_url": "http://goo.gl/KhzAMl", "indices": [91, 114]}], "hashtags": [{"text": "OnThisDay", "indices": [25, 35]}, {"text": "NobelPeacePrize", "indices": [73, 89]}], "user_mentions": []}, "created_at": "Fri Jan 08 15:41:06 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685486394395996161, "text": "Emily Greene Balch, born #OnThisDay (1867), Professor and pacifist, 1946 #NobelPeacePrize: https://t.co/qEHZEYLQDD https://t.co/4ZGhYYUyvw", "coordinates": null, "retweeted": false, "favorite_count": 22, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16465385, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000078517581/addc9673a1033a0b8aea4d78a2b293a4.jpeg", "statuses_count": 4674, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16465385/1450099641", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14550962", "following": false, "friends_count": 250, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "agoranomic.org", "url": "http://t.co/XcGA9qM04D", "expanded_url": "http://agoranomic.org", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 213136, "location": "", "screen_name": "comex", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 6398, "name": "comex", "profile_use_background_image": true, "description": "Views expressed here do not necessarily belong to my employer. Or to me.", "url": "http://t.co/XcGA9qM04D", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Apr 26 20:13:43 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682427383954157568/sFZIrmXZ_normal.jpg", "favourites_count": 88, "status": {"retweet_count": 5065, "retweeted_status": {"retweet_count": 5065, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685439245536890880", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 749, "h": 753, "resize": "fit"}, "medium": {"w": 600, "h": 603, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", "type": "photo", "indices": [80, 103], "media_url": "http://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", "display_url": "pic.twitter.com/hV5XBFe3GS", "id_str": "685439244677046272", "expanded_url": "http://twitter.com/wheatles/status/685439245536890880/photo/1", "id": 685439244677046272, "url": "https://t.co/hV5XBFe3GS"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 12:33:45 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685439245536890880, "text": "'What were you calling about?' these Blair/Clinton conversations are incredible https://t.co/hV5XBFe3GS", "coordinates": null, "retweeted": false, "favorite_count": 5145, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685466846926090240", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 749, "h": 753, "resize": "fit"}, "medium": {"w": 600, "h": 603, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 341, "resize": "fit"}}, "source_status_id_str": "685439245536890880", "media_url": "http://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", "source_user_id_str": "15814799", "id_str": "685439244677046272", "id": 685439244677046272, "media_url_https": "https://pbs.twimg.com/media/CYMrXIYWYAA5P_0.jpg", "type": "photo", "indices": [94, 117], "source_status_id": 685439245536890880, "source_user_id": 15814799, "display_url": "pic.twitter.com/hV5XBFe3GS", "expanded_url": "http://twitter.com/wheatles/status/685439245536890880/photo/1", "url": "https://t.co/hV5XBFe3GS"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "wheatles", "id_str": "15814799", "id": 15814799, "indices": [3, 12], "name": "wheatles"}]}, "created_at": "Fri Jan 08 14:23:26 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685466846926090240, "text": "RT @wheatles: 'What were you calling about?' these Blair/Clinton conversations are incredible https://t.co/hV5XBFe3GS", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 14550962, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 23885, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2813652210", "following": false, "friends_count": 2434, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kickstarter.com/projects/19573\u2026", "url": "https://t.co/giNNN1E1AC", "expanded_url": "https://www.kickstarter.com/projects/1957344648/meow-the-jewels", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7925, "location": "", "screen_name": "MeowTheJewels", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 30, "name": "#MeowTheJewels", "profile_use_background_image": true, "description": "You are listening to Meow The Jewels! Now a RTJ ran account.", "url": "https://t.co/giNNN1E1AC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue Sep 16 20:55:34 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/512349005464870913/UoYNUUXP_normal.jpeg", "favourites_count": 4674, "status": {"in_reply_to_status_id": null, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "point_GARD", "in_reply_to_user_id": 172587825, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": "172587825", "truncated": false, "id_str": "677629963361734656", "id": 677629963361734656, "text": "@point_gard Meow! Thanks for the donation (and your patience!)\ud83d\ude3a\ud83d\udc49\ud83d\udc4a", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "point_GARD", "id_str": "172587825", "id": 172587825, "indices": [0, 11], "name": "Revenge of Da Blerds"}]}, "created_at": "Thu Dec 17 23:22:27 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2813652210, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3280, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2813652210/1410988523", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "237548529", "following": false, "friends_count": 207, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "humansofnewyork.com", "url": "http://t.co/GdwTtrMd37", "expanded_url": "http://www.humansofnewyork.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "233294", "geo_enabled": false, "followers_count": 382285, "location": "New York, NY", "screen_name": "humansofny", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2430, "name": "Brandon Stanton", "profile_use_background_image": true, "description": "Creator of the blog and #1 NYT bestselling book, Humans of New York. I take pictures of people on the street and ask them questions.", "url": "http://t.co/GdwTtrMd37", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", "profile_background_color": "6E757A", "created_at": "Thu Jan 13 02:43:38 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/442100778639974400/Zj7Hfan__normal.jpeg", "favourites_count": 1094, "status": {"retweet_count": 314, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685503105874542592", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 434, "h": 485, "resize": "fit"}, "small": {"w": 340, "h": 379, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 434, "h": 485, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNlcT-UMAECl5l.png", "type": "photo", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/CYNlcT-UMAECl5l.png", "display_url": "pic.twitter.com/9G3R3nyP08", "id_str": "685503105362833409", "expanded_url": "http://twitter.com/humansofny/status/685503105874542592/photo/1", "id": 685503105362833409, "url": "https://t.co/9G3R3nyP08"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:47:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685503105874542592, "text": "\u201cI\u2019m trying to focus on my first year in college while my parents get divorced. They told me when I came home...\" https://t.co/9G3R3nyP08", "coordinates": null, "retweeted": false, "favorite_count": 1041, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 237548529, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458364038422859776/UuNGX6Dl.jpeg", "statuses_count": 5325, "profile_banner_url": "https://pbs.twimg.com/profile_banners/237548529/1412171810", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "16600574", "following": false, "friends_count": 80283, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "adambouska.com", "url": "https://t.co/iCi6oiInzM", "expanded_url": "http://www.adambouska.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 201279, "location": "Los Angeles, California", "screen_name": "bouska", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2582, "name": "Adam Bouska", "profile_use_background_image": true, "description": "Fashion Photographer & NOH8 Campaign Co-Founder \u2605\u2605\u2605\u2605\u2605\ninfo@bouska.net", "url": "https://t.co/iCi6oiInzM", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Oct 05 10:48:17 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407726103/f71bc74ac977af9161dea417658b7ba2_normal.jpeg", "favourites_count": 2581, "status": {"in_reply_to_status_id": null, "retweet_count": 85, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685615013038456832", "id": 685615013038456832, "text": "love is a terrible thing to hate.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:12:11 +0000 2016", "source": "Twitter for Android", "favorite_count": 198, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 16600574, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/675910889/ad03ca278209014db233c91728a2963a.jpeg", "statuses_count": 15632, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16600574/1435020398", "is_translator": false}, {"time_zone": "Hawaii", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -36000, "id_str": "526316060", "following": false, "friends_count": 27, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 479570, "location": "", "screen_name": "DaveChappelle", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3124, "name": "David Chappelle", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Mar 16 11:53:45 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1914494250/image_normal.jpg", "favourites_count": 0, "status": {"in_reply_to_status_id": null, "retweet_count": 1250, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "184039213946241024", "id": 184039213946241024, "text": "This account has been hacked. I'm deeming it officially bogus. Sincerely, \nChappelle, David K", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sun Mar 25 22:09:02 +0000 2012", "source": "Twitter for iPhone", "favorite_count": 1243, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 526316060, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 11, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1188951", "following": false, "friends_count": 258, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "DD2E44", "geo_enabled": true, "followers_count": 2211, "location": "San Francisco, CA", "screen_name": "eyeseewaters", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 64, "name": "Nandini Ramani", "profile_use_background_image": true, "description": "VP of Engineering @Twitter", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Wed Mar 14 23:09:57 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/614565100561653760/lis6j6Gw_normal.jpg", "favourites_count": 1069, "status": {"retweet_count": 398, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 398, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "649653805819236352", "id": 649653805819236352, "text": "Hello. I am the NiceBot. I want to make the world a nicer place, one tweet at a time. Follow my journey, and have a nice day. #TheNiceBot", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "TheNiceBot", "indices": [126, 137]}], "user_mentions": []}, "created_at": "Thu Oct 01 18:35:11 +0000 2015", "source": "Twitter Web Client", "favorite_count": 1018, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685593294013792256", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "TheNiceBot", "indices": [139, 140]}], "user_mentions": [{"screen_name": "TheNiceBot", "id_str": "3433099685", "id": 3433099685, "indices": [3, 14], "name": "The NiceBot"}]}, "created_at": "Fri Jan 08 22:45:53 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685593294013792256, "text": "RT @TheNiceBot: Hello. I am the NiceBot. I want to make the world a nicer place, one tweet at a time. Follow my journey, and have a nice da\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1188951, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1867, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "43421130", "following": false, "friends_count": 147, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "treasureislandfestival.com", "url": "http://t.co/1kda6aZhAJ", "expanded_url": "http://www.treasureislandfestival.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", "notifications": false, "profile_sidebar_fill_color": "F1DAC1", "profile_link_color": "FF9966", "geo_enabled": false, "followers_count": 12634, "location": "San Francisco, CA", "screen_name": "timfsf", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 576, "name": "Treasure Island Fest", "profile_use_background_image": true, "description": "Thanks to everyone who joined us for the 2015 festival in the bay on October 17-18, 2015! 2016 details coming soon.", "url": "http://t.co/1kda6aZhAJ", "profile_text_color": "4F2A10", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", "profile_background_color": "33CCCC", "created_at": "Fri May 29 22:09:36 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/608328458020782080/aidbang__normal.png", "favourites_count": 810, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "670345177911848960", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 682, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CU2LYWbVAAAh91B.jpg", "type": "photo", "indices": [109, 132], "media_url": "http://pbs.twimg.com/media/CU2LYWbVAAAh91B.jpg", "display_url": "pic.twitter.com/3V7ChuY7CO", "id_str": "670345170001395712", "expanded_url": "http://twitter.com/timfsf/status/670345177911848960/photo/1", "id": 670345170001395712, "url": "https://t.co/3V7ChuY7CO"}], "symbols": [], "urls": [{"display_url": "tinmanmerchandising.com/index.php?cPat\u2026", "url": "https://t.co/ma3WRV7zG1", "expanded_url": "https://tinmanmerchandising.com/index.php?cPath=38_200&sort=3a&gridlist=grid&tplDir=TreasureIslandFestival", "indices": [85, 108]}], "hashtags": [{"text": "BlackFriday", "indices": [12, 24]}], "user_mentions": []}, "created_at": "Fri Nov 27 20:55:19 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 670345177911848960, "text": "Joining the #BlackFriday party! All clothing 25% OFF + all posters 30% OFF. Shop now https://t.co/ma3WRV7zG1 https://t.co/3V7ChuY7CO", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 43421130, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/609055510633943040/kYur_JkE.png", "statuses_count": 2478, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43421130/1446147173", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "15241557", "following": false, "friends_count": 51, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 11454, "location": "", "screen_name": "reedhastings", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 331, "name": "Reed Hastings", "profile_use_background_image": true, "description": "CEO Netflix", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Jun 26 07:24:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2233350183/hastings_reed_abosch_normal.jpg", "favourites_count": 10, "status": {"in_reply_to_status_id": 684542793243471872, "retweet_count": 2, "place": null, "in_reply_to_screen_name": "RichBTIG", "in_reply_to_user_id": 14992263, "in_reply_to_status_id_str": "684542793243471872", "in_reply_to_user_id_str": "14992263", "truncated": false, "id_str": "684640673895600129", "id": 684640673895600129, "text": "@RichBTIG @LASairport @SouthwestAir @AmericanAir Drive baby like the rest of us!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "RichBTIG", "id_str": "14992263", "id": 14992263, "indices": [0, 9], "name": "Rich Greenfield"}, {"screen_name": "LASairport", "id_str": "97540285", "id": 97540285, "indices": [10, 21], "name": "McCarran Airport"}, {"screen_name": "SouthwestAir", "id_str": "7212562", "id": 7212562, "indices": [22, 35], "name": "Southwest Airlines"}, {"screen_name": "AmericanAir", "id_str": "22536055", "id": 22536055, "indices": [36, 48], "name": "American Airlines"}]}, "created_at": "Wed Jan 06 07:40:31 +0000 2016", "source": "Twitter Web Client", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15241557, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 40, "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "454423650", "following": false, "friends_count": 465, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "006399", "geo_enabled": true, "followers_count": 1607, "location": "San Francisco", "screen_name": "tinab", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 26, "name": "Tina Bhatnagar", "profile_use_background_image": true, "description": "Love food, sleep and being pampered. Difference between me and a baby? I work @Twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Jan 04 00:04:22 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3262782585/03cd4dbe36da18abd08924da2be8f528_normal.jpeg", "favourites_count": 1021, "status": {"retweet_count": 153, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 153, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682344631321772033", "id": 682344631321772033, "text": "Today's high: 52 degrees\nTonight's low: finalizing your NYE plans when all you really wanna do is Netflix and pizza", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Dec 30 23:36:52 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 332, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "682367691131207681", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "KarlTheFog", "id_str": "175091719", "id": 175091719, "indices": [3, 14], "name": "Karl the Fog"}]}, "created_at": "Thu Dec 31 01:08:30 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682367691131207681, "text": "RT @KarlTheFog: Today's high: 52 degrees\nTonight's low: finalizing your NYE plans when all you really wanna do is Netflix and pizza", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 454423650, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/795078452/04fe329f8b165d96eb1ed95dcfb575c2.jpeg", "statuses_count": 1713, "profile_banner_url": "https://pbs.twimg.com/profile_banners/454423650/1451600055", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3751591514", "following": false, "friends_count": 21, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 8849, "location": "Bellevue, WA", "screen_name": "Steven_Ballmer", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 160, "name": "Steve Ballmer", "profile_use_background_image": false, "description": "Lots going on", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", "profile_background_color": "000000", "created_at": "Thu Oct 01 20:37:37 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654995305855782912/r3VRakJM_normal.png", "favourites_count": 1, "status": {"in_reply_to_status_id": null, "retweet_count": 35, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "659971638838988800", "id": 659971638838988800, "text": "Lots going on in the world of tech and government but all I can say today is 2-0. Sweet victory tonight very sweet go clips", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Oct 30 05:54:35 +0000 2015", "source": "Twitter for Windows Phone", "favorite_count": 107, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3751591514, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 12, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3751591514/1444998576", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "845743333", "following": false, "friends_count": 80, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 139501, "location": "", "screen_name": "JoyceCarolOates", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2614, "name": "Joyce Carol Oates", "profile_use_background_image": true, "description": "Author", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", "profile_background_color": "022330", "created_at": "Tue Sep 25 15:36:17 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "A8C7F7", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2683616680/ca8aa195d2ccc38da6800678a9d2ae8a_normal.png", "favourites_count": 55, "status": {"retweet_count": 98, "retweeted_status": {"retweet_count": 98, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685620504334483456", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sfg.ly/1OgtGPV", "url": "https://t.co/Rd2TWChT7k", "expanded_url": "http://sfg.ly/1OgtGPV", "indices": [116, 139]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:34:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685620504334483456, "text": "Great white shark died after just 3 days in captivity at Japanese aquarium. The cause of death is clear: captivity. https://t.co/Rd2TWChT7k", "coordinates": null, "retweeted": false, "favorite_count": 106, "contributors": null, "source": "Sprout Social"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685629804163432449", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "sfg.ly/1OgtGPV", "url": "https://t.co/Rd2TWChT7k", "expanded_url": "http://sfg.ly/1OgtGPV", "indices": [126, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "peta", "id_str": "9890492", "id": 9890492, "indices": [3, 8], "name": "PETA"}]}, "created_at": "Sat Jan 09 01:10:58 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685629804163432449, "text": "RT @peta: Great white shark died after just 3 days in captivity at Japanese aquarium. The cause of death is clear: captivity. https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 845743333, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "statuses_count": 18362, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "292626949", "following": false, "friends_count": 499, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2325, "location": "", "screen_name": "singhtv", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 49, "name": "Baljeet Singh", "profile_use_background_image": true, "description": "twitter product lead, SF transplant, hip hop head, outdoors lover, father of the coolest kid ever", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Tue May 03 23:41:04 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771974140/2b7b64a868cc6a4733d821eba3d837bc_normal.jpeg", "favourites_count": 1294, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684181167902330880", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "medium": {"w": 600, "h": 1066, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1820, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CX6zIVgUAAQPvzw.jpg", "type": "photo", "indices": [94, 117], "media_url": "http://pbs.twimg.com/media/CX6zIVgUAAQPvzw.jpg", "display_url": "pic.twitter.com/8dWB4Fkhi8", "id_str": "684181149199892484", "expanded_url": "http://twitter.com/singhtv/status/684181167902330880/photo/1", "id": 684181149199892484, "url": "https://t.co/8dWB4Fkhi8"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 01:14:36 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/5a110d312052166f.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-122.514926, 37.708075], [-122.357031, 37.708075], [-122.357031, 37.833238], [-122.514926, 37.833238]]], "type": "Polygon"}, "full_name": "San Francisco, CA", "contained_within": [], "country_code": "US", "id": "5a110d312052166f", "name": "San Francisco"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684181167902330880, "text": "Last day! Thanks fellow Tweeps for everything you've taught me. I will miss working with you. https://t.co/8dWB4Fkhi8", "coordinates": null, "retweeted": false, "favorite_count": 195, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 292626949, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 244, "profile_banner_url": "https://pbs.twimg.com/profile_banners/292626949/1385075905", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "70976011", "following": false, "friends_count": 694, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 775, "location": "San Francisco, CA", "screen_name": "jdrishel", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 36, "name": "Jeremy Rishel", "profile_use_background_image": true, "description": "Engineering @twitter ~ @mit CS, Philosophy, & MBA ~ Former @usmc ~ Proud supporter of @calacademy, @americanatheist, @rdfrs, @mca_marines, & @sfjazz", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Sep 02 14:22:44 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1850753848/jeremy_full_normal.jpg", "favourites_count": 1875, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685541065257021440", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/thinkprogress/\u2026", "url": "https://t.co/GY3aapX4De", "expanded_url": "https://twitter.com/thinkprogress/status/685536373319811076", "indices": [10, 33]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 19:18:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685541065257021440, "text": "Amazing. https://t.co/GY3aapX4De", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 70976011, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 791, "profile_banner_url": "https://pbs.twimg.com/profile_banners/70976011/1435923511", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "5943622", "following": false, "friends_count": 5838, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "a16z.com", "url": "http://t.co/kn6m038bNW", "expanded_url": "http://www.a16z.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "12297A", "geo_enabled": false, "followers_count": 464338, "location": "Menlo Park, CA", "screen_name": "pmarca", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8619, "name": "Marc Andreessen", "profile_use_background_image": true, "description": "\u201cI don\u2019t mean you\u2019re all going to be happy. You\u2019ll be unhappy \u2013 but in new, exciting and important ways.\u201d \u2013 Edwin Land", "url": "http://t.co/kn6m038bNW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", "profile_background_color": "131516", "created_at": "Thu May 10 23:39:54 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649108987128868864/rWnwMe55_normal.jpg", "favourites_count": 208234, "status": {"in_reply_to_status_id": 685630933505052672, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "tsoulichakib", "in_reply_to_user_id": 17716644, "in_reply_to_status_id_str": "685630933505052672", "in_reply_to_user_id_str": "17716644", "truncated": false, "id_str": "685636088732368897", "id": 685636088732368897, "text": "@tsoulichakib @munilass They had Dreier dead to rights.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "tsoulichakib", "id_str": "17716644", "id": 17716644, "indices": [0, 13], "name": "Chakib Tsouli"}, {"screen_name": "munilass", "id_str": "283734762", "id": 283734762, "indices": [14, 23], "name": "Kristi Culpepper"}]}, "created_at": "Sat Jan 09 01:35:56 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 5943622, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000162904615/QUPx_0yO.jpeg", "statuses_count": 83526, "profile_banner_url": "https://pbs.twimg.com/profile_banners/5943622/1419247370", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "127062637", "following": false, "friends_count": 169, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "9266CC", "geo_enabled": true, "followers_count": 19335, "location": "California, USA", "screen_name": "omidkordestani", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 202, "name": "Omid Kordestani", "profile_use_background_image": false, "description": "Executive Chairman @twitter", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Mar 27 23:05:58 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654153213281570816/9LJkCtoV_normal.jpg", "favourites_count": 60, "status": {"retweet_count": 28882, "retweeted_status": {"retweet_count": 28882, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679137936416329728", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 682, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", "type": "photo", "indices": [21, 44], "media_url": "http://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", "display_url": "pic.twitter.com/Ll7wg2hL1G", "id_str": "679137932163358720", "expanded_url": "http://twitter.com/elonmusk/status/679137936416329728/photo/1", "id": 679137932163358720, "url": "https://t.co/Ll7wg2hL1G"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Dec 22 03:14:36 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679137936416329728, "text": "There and back again https://t.co/Ll7wg2hL1G", "coordinates": null, "retweeted": false, "favorite_count": 40965, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "679145995767169024", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 682, "resize": "fit"}}, "source_status_id_str": "679137936416329728", "media_url": "http://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", "source_user_id_str": "44196397", "id_str": "679137932163358720", "id": 679137932163358720, "media_url_https": "https://pbs.twimg.com/media/CWzIWeAXIAAUQCF.jpg", "type": "photo", "indices": [35, 58], "source_status_id": 679137936416329728, "source_user_id": 44196397, "display_url": "pic.twitter.com/Ll7wg2hL1G", "expanded_url": "http://twitter.com/elonmusk/status/679137936416329728/photo/1", "url": "https://t.co/Ll7wg2hL1G"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "elonmusk", "id_str": "44196397", "id": 44196397, "indices": [3, 12], "name": "Elon Musk"}]}, "created_at": "Tue Dec 22 03:46:37 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 679145995767169024, "text": "RT @elonmusk: There and back again https://t.co/Ll7wg2hL1G", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 127062637, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 33, "profile_banner_url": "https://pbs.twimg.com/profile_banners/127062637/1445924351", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3913671", "following": false, "friends_count": 634, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thecodemill.biz", "url": "http://t.co/jfXOm28eAR", "expanded_url": "http://thecodemill.biz/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", "notifications": false, "profile_sidebar_fill_color": "C0DFEC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 1469, "location": "Santa Cruz/San Francisco, CA", "screen_name": "bartt", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 55, "name": "Bart Teeuwisse", "profile_use_background_image": false, "description": "Early riser to hack, build, run, bike, climb & ski. Formerly @twitter, @yahoo & various startups", "url": "http://t.co/jfXOm28eAR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", "profile_background_color": "F9F9F9", "created_at": "Mon Apr 09 15:19:14 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488811874083819520/cViAGu73_normal.jpeg", "favourites_count": 840, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682388006666395648", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/-N7RlWHaFbE", "url": "https://t.co/drAG8j6GkF", "expanded_url": "https://youtu.be/-N7RlWHaFbE", "indices": [81, 104]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 31 02:29:13 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json", "country": "United States", "attributes": {}, "place_type": "admin", "bounding_box": {"coordinates": [[[-124.482003, 32.528832], [-114.131212, 32.528832], [-114.131212, 42.009519], [-124.482003, 42.009519]]], "type": "Polygon"}, "full_name": "California, USA", "contained_within": [], "country_code": "US", "id": "fbd6d2f5a4e4a15e", "name": "California"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682388006666395648, "text": "Day one of building the Paulk Total Station. Rough cut sheets and made leg jigs. https://t.co/drAG8j6GkF", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 3913671, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/547110391/twitter-bg-opt.jpg", "statuses_count": 7225, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3913671/1405375593", "is_translator": false}, {"time_zone": "Dublin", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "348942463", "following": false, "friends_count": 1107, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ie.linkedin.com/in/stephenmcin\u2026", "url": "http://t.co/ECVj1K5Thi", "expanded_url": "http://ie.linkedin.com/in/stephenmcintyre", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFF7CC", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 11958, "location": "EMEA HQ, Dublin, Ireland", "screen_name": "stephenpmc", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 179, "name": "Stephen McIntyre", "profile_use_background_image": true, "description": "Building Twitter's business in Europe, Middle East, and Africa. VP Sales, MD Ireland.", "url": "http://t.co/ECVj1K5Thi", "profile_text_color": "0C3E53", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", "profile_background_color": "BADFCD", "created_at": "Fri Aug 05 07:57:24 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/664025218252455936/gumuBGAw_normal.jpg", "favourites_count": 3641, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685534573388804097", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/EPN/status/685\u2026", "url": "https://t.co/deWO9KQSUX", "expanded_url": "https://twitter.com/EPN/status/685526304058294272", "indices": [49, 72]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 18:52:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685534573388804097, "text": "Mexican President announces capture of El Chapo. https://t.co/deWO9KQSUX", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 348942463, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "statuses_count": 3900, "profile_banner_url": "https://pbs.twimg.com/profile_banners/348942463/1347467641", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18700629", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sciencedaily.com", "url": "http://t.co/DQWVlXDGLC", "expanded_url": "http://www.sciencedaily.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 171071, "location": "Rockville, MD", "screen_name": "ScienceDaily", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 5572, "name": "ScienceDaily", "profile_use_background_image": true, "description": "Visit ScienceDaily to read breaking news about the latest discoveries in science, health, the environment, and technology.", "url": "http://t.co/DQWVlXDGLC", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", "profile_background_color": "C0DEED", "created_at": "Tue Jan 06 23:14:22 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/69944301/apple-touch-icon_normal.png", "favourites_count": 0, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685583808477835264", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 317, "h": 360, "resize": "fit"}, "large": {"w": 317, "h": 360, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 317, "h": 360, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOu12SUoAA9qGW.jpg", "type": "photo", "indices": [65, 88], "media_url": "http://pbs.twimg.com/media/CYOu12SUoAA9qGW.jpg", "display_url": "pic.twitter.com/RagFaxRhGm", "id_str": "685583808419110912", "expanded_url": "http://twitter.com/ScienceDaily/status/685583808477835264/photo/1", "id": 685583808419110912, "url": "https://t.co/RagFaxRhGm"}], "symbols": [], "urls": [{"display_url": "dlvr.it/DD7PGt", "url": "https://t.co/tC3IyQwb7T", "expanded_url": "http://dlvr.it/DD7PGt", "indices": [41, 64]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:08:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "cy", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685583808477835264, "text": "Non-Circadian Biological Rhythm in Teeth https://t.co/tC3IyQwb7T https://t.co/RagFaxRhGm", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "dlvr.it"}, "default_profile_image": false, "id": 18700629, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 27241, "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "23331708", "following": false, "friends_count": 495, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "247laundryservice.com", "url": "https://t.co/iLa6wu5cWo", "expanded_url": "http://www.247laundryservice.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "7D7D7D", "geo_enabled": true, "followers_count": 33472, "location": "Brooklyn", "screen_name": "jasonwstein", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 231, "name": "Jason Stein", "profile_use_background_image": false, "description": "founder/ceo of @247LS + @bycycle. partner at @WindforceVC.", "url": "https://t.co/iLa6wu5cWo", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sun Mar 08 17:45:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624558344154419200/ib3RUKxi_normal.jpg", "favourites_count": 22892, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685629486008799233", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/247ls/status/6\u2026", "url": "https://t.co/taOld1cZvY", "expanded_url": "https://twitter.com/247ls/status/685610657870393344", "indices": [48, 71]}], "hashtags": [], "user_mentions": [{"screen_name": "jasonwstein", "id_str": "23331708", "id": 23331708, "indices": [34, 46], "name": "Jason Stein"}]}, "created_at": "Sat Jan 09 01:09:42 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685629486008799233, "text": "WHAT IS YOUR PEACH STRATEGY?!\ud83c\udf51 cc @jasonwstein https://t.co/taOld1cZvY", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685629699360440320", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/247ls/status/6\u2026", "url": "https://t.co/taOld1cZvY", "expanded_url": "https://twitter.com/247ls/status/685610657870393344", "indices": [63, 86]}], "hashtags": [], "user_mentions": [{"screen_name": "MikePetes", "id_str": "55116303", "id": 55116303, "indices": [3, 13], "name": "iSeeDigital"}, {"screen_name": "jasonwstein", "id_str": "23331708", "id": 23331708, "indices": [49, 61], "name": "Jason Stein"}]}, "created_at": "Sat Jan 09 01:10:33 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685629699360440320, "text": "RT @MikePetes: WHAT IS YOUR PEACH STRATEGY?!\ud83c\udf51 cc @jasonwstein https://t.co/taOld1cZvY", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 23331708, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/187706285/street_art_sweden.jpg", "statuses_count": 19834, "profile_banner_url": "https://pbs.twimg.com/profile_banners/23331708/1435423055", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3668032217", "following": false, "friends_count": 192, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jamesblaketennis.com", "url": "http://t.co/CMTAZXOYcQ", "expanded_url": "http://jamesblaketennis.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 8355, "location": "", "screen_name": "JRBlake", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 135, "name": "James Blake", "profile_use_background_image": true, "description": "Former Professional Tennis Player, New York Times Best Selling Author, and proud Husband and Father. Founder of the James Blake Foundation.", "url": "http://t.co/CMTAZXOYcQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Sep 15 21:43:58 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/644157984751398912/W2SmRp8m_normal.jpg", "favourites_count": 590, "status": {"retweet_count": 13, "retweeted_status": {"retweet_count": 13, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685480670643146752", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "volvocarsopen.com/tickets/powers\u2026", "url": "https://t.co/IxjNGbhZN9", "expanded_url": "http://volvocarsopen.com/tickets/powersharesseries/", "indices": [70, 93]}, {"display_url": "twitter.com/andyroddick/st\u2026", "url": "https://t.co/4pDrSuBdw6", "expanded_url": "https://twitter.com/andyroddick/status/685470905523240960", "indices": [94, 117]}], "hashtags": [{"text": "chs", "indices": [53, 57]}], "user_mentions": []}, "created_at": "Fri Jan 08 15:18:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685480670643146752, "text": "It's true! Roddick, Agassi, Blake & Fish will in #chs on April 9. https://t.co/IxjNGbhZN9 https://t.co/4pDrSuBdw6", "coordinates": null, "retweeted": false, "favorite_count": 36, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685585393513701376", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "volvocarsopen.com/tickets/powers\u2026", "url": "https://t.co/IxjNGbhZN9", "expanded_url": "http://volvocarsopen.com/tickets/powersharesseries/", "indices": [89, 112]}, {"display_url": "twitter.com/andyroddick/st\u2026", "url": "https://t.co/4pDrSuBdw6", "expanded_url": "https://twitter.com/andyroddick/status/685470905523240960", "indices": [113, 136]}], "hashtags": [{"text": "chs", "indices": [72, 76]}], "user_mentions": [{"screen_name": "VolvoCarsOpen", "id_str": "69045204", "id": 69045204, "indices": [3, 17], "name": "Volvo Cars Open"}]}, "created_at": "Fri Jan 08 22:14:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685585393513701376, "text": "RT @VolvoCarsOpen: It's true! Roddick, Agassi, Blake & Fish will in #chs on April 9. https://t.co/IxjNGbhZN9 https://t.co/4pDrSuBdw6", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3668032217, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 342, "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "1263452575", "following": false, "friends_count": 149, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "paperrockmusic.com", "url": "http://t.co/HG6rAVrAPT", "expanded_url": "http://paperrockmusic.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 99, "location": "Brooklyn, Ny", "screen_name": "PaperrockRcrds", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 3, "name": "Paperrock Records", "profile_use_background_image": true, "description": "Independent Record Label founded by World renown Hip-Hop artist Spliff Star Also known as Mr. Lewis |\r\nInstagram - Paperrockrecords #BigRings", "url": "http://t.co/HG6rAVrAPT", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Mar 13 03:11:40 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3476604953/c15cee7711b50174d82277035cc9cc02_normal.jpeg", "favourites_count": 3, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": 1263452575, "possibly_sensitive": false, "id_str": "328256590006329345", "in_reply_to_user_id_str": "1263452575", "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/Yn261EQoww/", "url": "http://t.co/6TtLEzXxpB", "expanded_url": "http://instagram.com/p/Yn261EQoww/", "indices": [104, 126]}], "hashtags": [{"text": "BIGRINGS", "indices": [56, 65]}], "user_mentions": [{"screen_name": "PaperrockRcrds", "id_str": "1263452575", "id": 1263452575, "indices": [0, 15], "name": "Paperrock Records"}, {"screen_name": "STARSPLIFF", "id_str": "21628325", "id": 21628325, "indices": [66, 77], "name": "MR.LEWIS"}, {"screen_name": "Bugs_Kalhune", "id_str": "34973816", "id": 34973816, "indices": [89, 102], "name": "Bugs kalhune"}]}, "created_at": "Sat Apr 27 21:17:24 +0000 2013", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "PaperrockRcrds", "in_reply_to_status_id_str": null, "truncated": false, "id": 328256590006329345, "text": "@paperrockrcrds ITS NOT JUST A MOVEMENT ITS A LIFESTYLE #BIGRINGS @starspliff bonasty550 @Bugs_Kalhune\u2026 http://t.co/6TtLEzXxpB", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Instagram"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "328256723167100928", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/Yn261EQoww/", "url": "http://t.co/6TtLEzXxpB", "expanded_url": "http://instagram.com/p/Yn261EQoww/", "indices": [116, 138]}], "hashtags": [{"text": "BIGRINGS", "indices": [68, 77]}], "user_mentions": [{"screen_name": "MEP247", "id_str": "38024996", "id": 38024996, "indices": [3, 10], "name": "M.E.P MUSIC"}, {"screen_name": "PaperrockRcrds", "id_str": "1263452575", "id": 1263452575, "indices": [12, 27], "name": "Paperrock Records"}, {"screen_name": "STARSPLIFF", "id_str": "21628325", "id": 21628325, "indices": [78, 89], "name": "MR.LEWIS"}, {"screen_name": "Bugs_Kalhune", "id_str": "34973816", "id": 34973816, "indices": [101, 114], "name": "Bugs kalhune"}]}, "created_at": "Sat Apr 27 21:17:56 +0000 2013", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 328256723167100928, "text": "RT @MEP247: @paperrockrcrds ITS NOT JUST A MOVEMENT ITS A LIFESTYLE #BIGRINGS @starspliff bonasty550 @Bugs_Kalhune\u2026 http://t.co/6TtLEzXxpB", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Echofon"}, "default_profile_image": false, "id": 1263452575, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/833843015/6b9e3370018f8fc0243148952fea3cba.jpeg", "statuses_count": 45, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1263452575/1365098791", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1085", "following": false, "friends_count": 206, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "niallkennedy.com", "url": "http://t.co/JhRVjTpizS", "expanded_url": "http://www.niallkennedy.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 1847, "location": "San Francisco, CA", "screen_name": "niall", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 87, "name": "Niall Kennedy", "profile_use_background_image": false, "description": "Tech, food, puppies, and nature in and around San Francisco.", "url": "http://t.co/JhRVjTpizS", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", "profile_background_color": "000000", "created_at": "Sun Jul 16 00:43:24 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458690449968869376/dyjDK2Gm_normal.jpeg", "favourites_count": 34, "status": {"retweet_count": 0, "in_reply_to_user_id": 14397792, "possibly_sensitive": false, "id_str": "680907448635396096", "in_reply_to_user_id_str": "14397792", "entities": {"symbols": [], "urls": [{"display_url": "anchordistilling.com/brand/anchor/#\u2026", "url": "https://t.co/V07UrX1g2R", "expanded_url": "http://www.anchordistilling.com/brand/anchor/#anchor-christmas-spirit", "indices": [84, 107]}], "hashtags": [], "user_mentions": [{"screen_name": "ScottBeale", "id_str": "14397792", "id": 14397792, "indices": [0, 11], "name": "Scott Beale"}, {"screen_name": "AnchorBrewing", "id_str": "388456067", "id": 388456067, "indices": [12, 26], "name": "Anchor Brewing"}]}, "created_at": "Sun Dec 27 00:26:01 +0000 2015", "favorited": false, "in_reply_to_status_id": 680870121104084994, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "ScottBeale", "in_reply_to_status_id_str": "680870121104084994", "truncated": false, "id": 680907448635396096, "text": "@ScottBeale @AnchorBrewing last year's beer now exists in double-distilled form too https://t.co/V07UrX1g2R", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 1085, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 1321, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1085/1420868587", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18825961", "following": false, "friends_count": 1086, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/skrillex", "url": "http://t.co/kEuzso7gAM", "expanded_url": "http://facebook.com/skrillex", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 4720926, "location": "\u00dcT: 33.997971,-118.280807", "screen_name": "Skrillex", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 12267, "name": "SKRILLEX", "profile_use_background_image": true, "description": "your friend \u2022 insta / snap: Skrillex", "url": "http://t.co/kEuzso7gAM", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Jan 10 03:49:35 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/534637130270519296/MmBo2HR7_normal.jpeg", "favourites_count": 2851, "status": {"retweet_count": 356, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685618210050187264", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtu.be/aAv8AtxuF8s", "url": "https://t.co/4gYP5AnuSj", "expanded_url": "https://youtu.be/aAv8AtxuF8s", "indices": [80, 103]}], "hashtags": [], "user_mentions": [{"screen_name": "Torro_Torro", "id_str": "74788519", "id": 74788519, "indices": [49, 61], "name": "TORRO TORRO"}]}, "created_at": "Sat Jan 09 00:24:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685618210050187264, "text": "also stoked to finally share the remix i did for @Torro_Torro with you guys : ) https://t.co/4gYP5AnuSj", "coordinates": null, "retweeted": false, "favorite_count": 976, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 18825961, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 13385, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18825961/1398372903", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14248315", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "errolmorris.com", "url": "http://t.co/8y1kL5WTwP", "expanded_url": "http://www.errolmorris.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 50992, "location": "Cambridge, MA", "screen_name": "errolmorris", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2255, "name": "errolmorris", "profile_use_background_image": true, "description": "writer, filmmaker, something else maybe...", "url": "http://t.co/8y1kL5WTwP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Sat Mar 29 00:53:54 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/259299357/Monkey_normal.jpg", "favourites_count": 1, "status": {"in_reply_to_status_id": null, "retweet_count": 4, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "668005462181289984", "id": 668005462181289984, "text": "Why do people worry so much about what others might think? (Quote from \"Real Enemies,\" Kathryn Olmsted)", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Nov 21 09:58:07 +0000 2015", "source": "Echofon", "favorite_count": 16, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14248315, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/17811296/heirloomsketch3.jpg", "statuses_count": 3914, "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "14065609", "following": false, "friends_count": 563, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/aparnacd", "url": "http://t.co/YU1CzLEyBM", "expanded_url": "http://www.linkedin.com/in/aparnacd", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 1803, "location": "San Francisco Bay area", "screen_name": "aparnacd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 68, "name": "Aparna Chennapragada", "profile_use_background_image": true, "description": "Head of product, Google Now. Previously at Akamai, MIT, UT Austin, IIT Madras.", "url": "http://t.co/YU1CzLEyBM", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", "profile_background_color": "EDECE9", "created_at": "Sat Mar 01 17:32:31 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "D3D2CF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/582787332295647232/0v1zhsnZ_normal.jpg", "favourites_count": 321, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677317176429121537", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/google/status/\u2026", "url": "https://t.co/t1PEYrBaa6", "expanded_url": "https://twitter.com/google/status/677258031868981248", "indices": [20, 43]}], "hashtags": [{"text": "YearInSearch", "indices": [5, 18]}], "user_mentions": []}, "created_at": "Thu Dec 17 02:39:33 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677317176429121537, "text": "2015 #YearInSearch https://t.co/t1PEYrBaa6", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 14065609, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "statuses_count": 177, "is_translator": false}, {"time_zone": "Sydney", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 39600, "id_str": "14563623", "following": false, "friends_count": 132, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "rethrick.com/p/about/", "url": "http://t.co/ARYETd4QIZ", "expanded_url": "http://rethrick.com/p/about/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 4244, "location": "San Francisco, California", "screen_name": "dhanji", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 302, "name": "Dhanji R. Prasanna", "profile_use_background_image": true, "description": "aspiring mad scientist", "url": "http://t.co/ARYETd4QIZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Apr 28 01:03:24 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/53414948/dj_sp_normal.jpg", "favourites_count": 556, "status": {"retweet_count": 7131, "retweeted_status": {"retweet_count": 7131, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "526770571728531456", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 682, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", "type": "photo", "indices": [84, 106], "media_url": "http://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", "display_url": "pic.twitter.com/sqiNaYGDQy", "id_str": "526770570625433601", "expanded_url": "http://twitter.com/heathercmiller/status/526770571728531456/photo/1", "id": 526770570625433601, "url": "http://t.co/sqiNaYGDQy"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "jamesiry", "id_str": "19044984", "id": 19044984, "indices": [40, 49], "name": "James Iry"}, {"screen_name": "databricks", "id_str": "1562518867", "id": 1562518867, "indices": [50, 61], "name": "Databricks"}]}, "created_at": "Mon Oct 27 16:21:05 +0000 2014", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 526770571728531456, "text": "Carved something scary into pumpkin cc/ @jamesiry @databricks (office jackolantern) http://t.co/sqiNaYGDQy", "coordinates": null, "retweeted": false, "favorite_count": 4372, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "657784111738716160", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 399, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 682, "resize": "fit"}}, "source_status_id_str": "526770571728531456", "media_url": "http://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", "source_user_id_str": "22874473", "id_str": "526770570625433601", "id": 526770570625433601, "media_url_https": "https://pbs.twimg.com/media/B093CwRCQAEwnD4.jpg", "type": "photo", "indices": [104, 126], "source_status_id": 526770571728531456, "source_user_id": 22874473, "display_url": "pic.twitter.com/sqiNaYGDQy", "expanded_url": "http://twitter.com/heathercmiller/status/526770571728531456/photo/1", "url": "http://t.co/sqiNaYGDQy"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "heathercmiller", "id_str": "22874473", "id": 22874473, "indices": [3, 18], "name": "Heather Miller"}, {"screen_name": "jamesiry", "id_str": "19044984", "id": 19044984, "indices": [60, 69], "name": "James Iry"}, {"screen_name": "databricks", "id_str": "1562518867", "id": 1562518867, "indices": [70, 81], "name": "Databricks"}]}, "created_at": "Sat Oct 24 05:02:07 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 657784111738716160, "text": "RT @heathercmiller: Carved something scary into pumpkin cc/ @jamesiry @databricks (office jackolantern) http://t.co/sqiNaYGDQy", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Tweetbot for i\u039fS"}, "default_profile_image": false, "id": 14563623, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 14711, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "39623638", "following": false, "friends_count": 7444, "entities": {"description": {"urls": [{"display_url": "s.sho.com/1mGJrJp", "url": "https://t.co/TOH5yZnKGu", "expanded_url": "http://s.sho.com/1mGJrJp", "indices": [84, 107]}]}, "url": {"urls": [{"display_url": "sho.com/sports", "url": "https://t.co/kvwbT7SmMj", "expanded_url": "http://sho.com/sports", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 232338, "location": "New York City", "screen_name": "SHOsports", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1446, "name": "SHOWTIME SPORTS", "profile_use_background_image": true, "description": "Home of Championship Boxing & award-winning documentaries. Rules: https://t.co/TOH5yZnKGu", "url": "https://t.co/kvwbT7SmMj", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", "profile_background_color": "131516", "created_at": "Tue May 12 23:13:03 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1834079937/SHOBUG_SPORT_4CL_square_normal.png", "favourites_count": 2329, "status": {"retweet_count": 17, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685585686460682240", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "amp.twimg.com/v/1b51d81c-4d6\u2026", "url": "https://t.co/LsTxMgCT2w", "expanded_url": "https://amp.twimg.com/v/1b51d81c-4d65-4764-9ee1-f255d06d8fdd", "indices": [119, 142]}], "hashtags": [{"text": "WilderSzpilka", "indices": [104, 118]}], "user_mentions": [{"screen_name": "szpilka_artur", "id_str": "2203413204", "id": 2203413204, "indices": [1, 15], "name": "Artur Szpilka"}]}, "created_at": "Fri Jan 08 22:15:39 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685585686460682240, "text": ".@szpilka_artur fought his way into the ring & has a chance to be the 1st Polish Heavyweight Champ. #WilderSzpilka\nhttps://t.co/LsTxMgCT2w", "coordinates": null, "retweeted": false, "favorite_count": 31, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 39623638, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 29318, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39623638/1451521993", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "17901282", "following": false, "friends_count": 31187, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hbo.com/boxing/", "url": "http://t.co/MyHnldJu4d", "expanded_url": "http://www.hbo.com/boxing/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", "notifications": false, "profile_sidebar_fill_color": "949494", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 434808, "location": "New York, NY", "screen_name": "HBOboxing", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2954, "name": "HBOboxing", "profile_use_background_image": false, "description": "*By tagging us in a tweet, you consent to allowing HBO Sports to use and showcase it in any media* Instagram/Snapchat: @HBOboxing", "url": "http://t.co/MyHnldJu4d", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Dec 05 16:43:16 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458598353836589057/LZT10GLK_normal.jpeg", "favourites_count": 94, "status": {"retweet_count": 46, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 46, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685186658585559041", "id": 685186658585559041, "text": "I'm fighting the bests in the sport cuz I don't take boxing as a business, boxing is a passion for me. #boxing #pleasethecrowd @HBOboxing", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "boxing", "indices": [104, 111]}, {"text": "pleasethecrowd", "indices": [112, 127]}], "user_mentions": [{"screen_name": "HBOboxing", "id_str": "17901282", "id": 17901282, "indices": [128, 138], "name": "HBOboxing"}]}, "created_at": "Thu Jan 07 19:50:04 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 82, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "685390200466440192", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "boxing", "indices": [125, 132]}, {"text": "pleasethecrowd", "indices": [133, 140]}], "user_mentions": [{"screen_name": "jeanpascalchamp", "id_str": "82261541", "id": 82261541, "indices": [3, 19], "name": "Jean Pascal"}, {"screen_name": "HBOboxing", "id_str": "17901282", "id": 17901282, "indices": [139, 140], "name": "HBOboxing"}]}, "created_at": "Fri Jan 08 09:18:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685390200466440192, "text": "RT @jeanpascalchamp: I'm fighting the bests in the sport cuz I don't take boxing as a business, boxing is a passion for me. #boxing #pleas\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 17901282, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000124162204/7ed7b8fb4760a560b0a07af85796639a.jpeg", "statuses_count": 21087, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17901282/1448175844", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3320010078", "following": false, "friends_count": 47, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/extremeownersh\u2026", "url": "http://t.co/6Lnf7gknOo", "expanded_url": "http://facebook.com/extremeownership", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 23709, "location": "", "screen_name": "jockowillink", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 194, "name": "Jocko Willink", "profile_use_background_image": false, "description": "Leader; follower. Reader; writer. Speaker; listener. Student; teacher. \n#DisciplineEqualsFreedom\n#ExtremeOwnership", "url": "http://t.co/6Lnf7gknOo", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Aug 19 13:39:44 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/647606396452646912/WKgBcrEL_normal.jpg", "favourites_count": 8988, "status": {"retweet_count": 6, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685472957599191040", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNKA7FWAAM_hWU.jpg", "type": "photo", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/CYNKA7FWAAM_hWU.jpg", "display_url": "pic.twitter.com/ZMGrCZ2Tvu", "id_str": "685472948011008003", "expanded_url": "http://twitter.com/jockowillink/status/685472957599191040/photo/1", "id": 685472948011008003, "url": "https://t.co/ZMGrCZ2Tvu"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 14:47:43 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685472957599191040, "text": "Aftermath. Repeat process. https://t.co/ZMGrCZ2Tvu", "coordinates": null, "retweeted": false, "favorite_count": 83, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3320010078, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 8293, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320010078/1443236759", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "24393384", "following": false, "friends_count": 2123, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 141012, "location": "NYC", "screen_name": "40oz_VAN", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 546, "name": "40", "profile_use_background_image": true, "description": "40ozVAN@gmail.com", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sat Mar 14 16:45:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638446775225946112/KKOuhcDK_normal.jpg", "favourites_count": 3103, "status": {"retweet_count": 37, "in_reply_to_user_id": null, "possibly_sensitive": true, "id_str": "685632158170353666", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685631987332194305/pu/img/mfMyOXVZE2J2F3cr.jpg", "type": "photo", "indices": [10, 33], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685631987332194305/pu/img/mfMyOXVZE2J2F3cr.jpg", "display_url": "pic.twitter.com/EMAsqu18fZ", "id_str": "685631987332194305", "expanded_url": "http://twitter.com/40oz_VAN/status/685632158170353666/video/1", "id": 685631987332194305, "url": "https://t.co/EMAsqu18fZ"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:20:19 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/3b77caf94bfc81fe.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-118.668404, 33.704538], [-118.155409, 33.704538], [-118.155409, 34.337041], [-118.668404, 34.337041]]], "type": "Polygon"}, "full_name": "Los Angeles, CA", "contained_within": [], "country_code": "US", "id": "3b77caf94bfc81fe", "name": "Los Angeles"}, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685632158170353666, "text": "I love LA https://t.co/EMAsqu18fZ", "coordinates": null, "retweeted": false, "favorite_count": 130, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 24393384, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585289381331599362/VaCvlXv7.png", "statuses_count": 130490, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24393384/1452240381", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "1639866613", "following": false, "friends_count": 280, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/pub/dave-free/\u2026", "url": "https://t.co/iBhESeXA5c", "expanded_url": "http://www.linkedin.com/pub/dave-free/82/420/ba1/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 16652, "location": "LAX", "screen_name": "miyatola", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 92, "name": "Dave Free", "profile_use_background_image": true, "description": "President of TDE | Management & Creative for Kendrick Lamar | Jay Rock | AB-Soul | ScHoolboy Q | Isaiah Rashad | SZA | the little homies |Digi+Phonics |", "url": "https://t.co/iBhESeXA5c", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Fri Aug 02 07:22:39 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684683999260704768/j2OthIX6_normal.jpg", "favourites_count": 26, "status": {"retweet_count": 14, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685555521907081216", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "on.mtv.com/1RGTGtJ", "url": "https://t.co/XNC4l2WRz3", "expanded_url": "http://on.mtv.com/1RGTGtJ", "indices": [58, 81]}], "hashtags": [], "user_mentions": [{"screen_name": "MTVNews", "id_str": "40076725", "id": 40076725, "indices": [86, 94], "name": "MTV News"}]}, "created_at": "Fri Jan 08 20:15:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685555521907081216, "text": "Inside Top Dawg Entertainment's Christmas In The Projects https://t.co/XNC4l2WRz3 via @MTVNews", "coordinates": null, "retweeted": false, "favorite_count": 28, "contributors": null, "source": "Mobile Web"}, "default_profile_image": false, "id": 1639866613, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053426674/35d412c221b805e069def88cd47e953e.jpeg", "statuses_count": 687, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1639866613/1448157283", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "99841232", "following": false, "friends_count": 812, "entities": {"description": {"urls": [{"display_url": "soundcloud.com/young-magic", "url": "https://t.co/q6ASiQNDfX", "expanded_url": "https://soundcloud.com/young-magic", "indices": [22, 45]}]}, "url": {"urls": [{"display_url": "youngmagicsounds.com", "url": "http://t.co/jz4VuRfCjB", "expanded_url": "http://youngmagicsounds.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 8999, "location": "Brooklyn, NY \u262f", "screen_name": "ItsYoungMagic", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 76, "name": "Young Magic", "profile_use_background_image": true, "description": "Melati + Izak \u30b7\u30eb\u30af\u5922\u307f\u308b\u4eba https://t.co/q6ASiQNDfX", "url": "http://t.co/jz4VuRfCjB", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Mon Dec 28 02:47:34 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/527682369575084033/dxGzOzvL_normal.jpeg", "favourites_count": 510, "status": {"in_reply_to_status_id": 683843464010661888, "retweet_count": 1, "place": null, "in_reply_to_screen_name": "__1987", "in_reply_to_user_id": 106246844, "in_reply_to_status_id_str": "683843464010661888", "in_reply_to_user_id_str": "106246844", "truncated": false, "id_str": "683855685822623744", "id": 683855685822623744, "text": "@__1987 yes! but no shows in Tokyo this time. lookout in the summer \ud83c\udf1e", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "__1987", "id_str": "106246844", "id": 106246844, "indices": [0, 7], "name": "aka neco."}]}, "created_at": "Mon Jan 04 03:41:15 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 99841232, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/391089700/Melt_Medio_2.jpg", "statuses_count": 1074, "profile_banner_url": "https://pbs.twimg.com/profile_banners/99841232/1424777262", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2194124415", "following": false, "friends_count": 652, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 20379, "location": "United Kingdom", "screen_name": "ZiauddinY", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 134, "name": "Ziauddin Yousafzai", "profile_use_background_image": true, "description": "Proud to be a teacher, Malala's father and a peace, women's rights and education activist. \nRTs do not equal endorsement.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sun Nov 24 13:37:54 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/446463857087614976/i0MYjf0-_normal.jpeg", "favourites_count": 953, "status": {"retweet_count": 3, "retweeted_status": {"retweet_count": 3, "in_reply_to_user_id": 2194124415, "possibly_sensitive": false, "id_str": "685487976797843457", "in_reply_to_user_id_str": "2194124415", "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 192, "resize": "fit"}, "medium": {"w": 600, "h": 339, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 579, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", "type": "photo", "indices": [121, 144], "media_url": "http://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", "display_url": "pic.twitter.com/SFHp6vUmvV", "id_str": "685487974939791361", "expanded_url": "http://twitter.com/hasanatnaz099/status/685487976797843457/photo/1", "id": 685487974939791361, "url": "https://t.co/SFHp6vUmvV"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "ZiauddinY", "id_str": "2194124415", "id": 2194124415, "indices": [0, 10], "name": "Ziauddin Yousafzai"}]}, "created_at": "Fri Jan 08 15:47:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "ZiauddinY", "in_reply_to_status_id_str": null, "truncated": false, "id": 685487976797843457, "text": "@ZiauddinY Plz shair this page frm ur ID .We r going to start givg free education fr orfan & poor grls stdent at IPS https://t.co/SFHp6vUmvV", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685520107825684481", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 192, "resize": "fit"}, "medium": {"w": 600, "h": 339, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 579, "resize": "fit"}}, "source_status_id_str": "685487976797843457", "media_url": "http://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", "source_user_id_str": "2975276364", "id_str": "685487974939791361", "id": 685487974939791361, "media_url_https": "https://pbs.twimg.com/media/CYNXrmwWkAEJh0J.png", "type": "photo", "indices": [143, 144], "source_status_id": 685487976797843457, "source_user_id": 2975276364, "display_url": "pic.twitter.com/SFHp6vUmvV", "expanded_url": "http://twitter.com/hasanatnaz099/status/685487976797843457/photo/1", "url": "https://t.co/SFHp6vUmvV"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "hasanatnaz099", "id_str": "2975276364", "id": 2975276364, "indices": [3, 17], "name": "Hussain Ahmad"}, {"screen_name": "ZiauddinY", "id_str": "2194124415", "id": 2194124415, "indices": [19, 29], "name": "Ziauddin Yousafzai"}]}, "created_at": "Fri Jan 08 17:55:04 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685520107825684481, "text": "RT @hasanatnaz099: @ZiauddinY Plz shair this page frm ur ID .We r going to start givg free education fr orfan & poor grls stdent at IPS htt\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPad"}, "default_profile_image": false, "id": 2194124415, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 1217, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2194124415/1385300984", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "20783", "following": false, "friends_count": 3684, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "piperkerman.com", "url": "https://t.co/bZNP8H8fqP", "expanded_url": "http://www.piperkerman.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "0000FF", "geo_enabled": true, "followers_count": 112426, "location": "Ohio, USA", "screen_name": "Piper", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 933, "name": "Piper Kerman", "profile_use_background_image": true, "description": "Author of #1 @NYTimes bestseller Orange is the New Black: My Year in a Women's Prison @sixwords: In and out of hot water", "url": "https://t.co/bZNP8H8fqP", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", "profile_background_color": "9AE4E8", "created_at": "Fri Nov 24 19:35:29 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "87BC44", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/15119012/PiperPorkBellySandwich_normal.jpg", "favourites_count": 26942, "status": {"retweet_count": 2, "retweeted_status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685630905415774208", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wny.cc/WO2oH", "url": "https://t.co/56sDTHSdF6", "expanded_url": "http://wny.cc/WO2oH", "indices": [110, 133]}], "hashtags": [], "user_mentions": [{"screen_name": "jonesarah", "id_str": "17279778", "id": 17279778, "indices": [40, 50], "name": "Sarah Jones"}]}, "created_at": "Sat Jan 09 01:15:20 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685630905415774208, "text": "Listen to our weekend podcast! It's got @jonesarah's many characters, believers in the American Dream + more: https://t.co/56sDTHSdF6", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Hootsuite"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685631198408916992", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "wny.cc/WO2oH", "url": "https://t.co/56sDTHSdF6", "expanded_url": "http://wny.cc/WO2oH", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "BrianLehrer", "id_str": "12011422", "id": 12011422, "indices": [3, 15], "name": "Brian Lehrer Show"}, {"screen_name": "jonesarah", "id_str": "17279778", "id": 17279778, "indices": [57, 67], "name": "Sarah Jones"}]}, "created_at": "Sat Jan 09 01:16:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685631198408916992, "text": "RT @BrianLehrer: Listen to our weekend podcast! It's got @jonesarah's many characters, believers in the American Dream + more: https://t.co\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 20783, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/90933267/twilk_background_4bc0d04ea3078.jpg", "statuses_count": 16320, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "19725644", "following": false, "friends_count": 46, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "haydenplanetarium.org/tyson/", "url": "http://t.co/FRT5oYtwbX", "expanded_url": "http://www.haydenplanetarium.org/tyson/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", "notifications": false, "profile_sidebar_fill_color": "E6F6F9", "profile_link_color": "CC3366", "geo_enabled": false, "followers_count": 4745658, "location": "New York City", "screen_name": "neiltyson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 39782, "name": "Neil deGrasse Tyson", "profile_use_background_image": true, "description": "Astrophysicist", "url": "http://t.co/FRT5oYtwbX", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", "profile_background_color": "DBE9ED", "created_at": "Thu Jan 29 18:40:26 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "DBE9ED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/74188698/NeilTysonOriginsA-Crop_normal.jpg", "favourites_count": 2, "status": {"in_reply_to_status_id": 685134548724768768, "retweet_count": 63, "place": null, "in_reply_to_screen_name": "Aelshawa", "in_reply_to_user_id": 214174929, "in_reply_to_status_id_str": "685134548724768768", "in_reply_to_user_id_str": "214174929", "truncated": false, "id_str": "685135243280564224", "id": 685135243280564224, "text": "@Aelshawa \u2014 The people who use probability to show that Evolution didn\u2019t happen, don\u2019t fully understand Evolution.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Aelshawa", "id_str": "214174929", "id": 214174929, "indices": [0, 9], "name": "Abdulmajeed Elshawa"}]}, "created_at": "Thu Jan 07 16:25:45 +0000 2016", "source": "TweetDeck", "favorite_count": 136, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 19725644, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/67395299/eagle_kp09.jpg", "statuses_count": 4758, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19725644/1400087889", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2916305152", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "freedom.press", "url": "https://t.co/U63fP7T2ST", "expanded_url": "https://freedom.press", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1742443, "location": "", "screen_name": "Snowden", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 10802, "name": "Edward Snowden", "profile_use_background_image": true, "description": "I used to work for the government. Now I work for the public. Director at @FreedomofPress.", "url": "https://t.co/U63fP7T2ST", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Thu Dec 11 21:24:28 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648888480974508032/66_cUYfj_normal.jpg", "favourites_count": 0, "status": {"retweet_count": 265, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "682267675704311809", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/ericgeller/sta\u2026", "url": "https://t.co/YhYxUczKTn", "expanded_url": "https://twitter.com/ericgeller/status/682264454730403840", "indices": [114, 137]}], "hashtags": [], "user_mentions": [{"screen_name": "fka_roscosmos", "id_str": "2306083502", "id": 2306083502, "indices": [68, 82], "name": "\u0420\u041e\u0421\u041a\u041e\u0421\u041c\u041e\u0421"}, {"screen_name": "neiltyson", "id_str": "19725644", "id": 19725644, "indices": [90, 100], "name": "Neil deGrasse Tyson"}]}, "created_at": "Wed Dec 30 18:31:04 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 682267675704311809, "text": "Bonus points to the first journalist to get an official ruling from @fka_roscosmos and/or @neiltyson. (Corrected) https://t.co/YhYxUczKTn", "coordinates": null, "retweeted": false, "favorite_count": 626, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2916305152, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 373, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2916305152/1443542022", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "299364430", "following": false, "friends_count": 84550, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "everettetaylor.com", "url": "https://t.co/DTKHW8LqbJ", "expanded_url": "http://everettetaylor.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 258639, "location": "Los Angeles (via Richmond, VA)", "screen_name": "Everette", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2121, "name": "Everette Taylor", "profile_use_background_image": true, "description": "building + growing companies (instagram: everette x snapchat: everettetaylor)", "url": "https://t.co/DTKHW8LqbJ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", "profile_background_color": "131516", "created_at": "Sun May 15 23:37:59 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685272329664905216/PbST3RsF_normal.jpg", "favourites_count": 184407, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685632481203126273", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/colageplatform\u2026", "url": "https://t.co/FB8Y4dML7z", "expanded_url": "https://twitter.com/colageplatform/status/685632198460882944", "indices": [78, 101]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:21:36 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685632481203126273, "text": "follow me on snapchat: everettetaylor and shoot me questions to get those \ud83d\udd11\ud83d\udd11\ud83d\udd11 https://t.co/FB8Y4dML7z", "coordinates": null, "retweeted": false, "favorite_count": 13, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 299364430, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 14393, "profile_banner_url": "https://pbs.twimg.com/profile_banners/299364430/1444247536", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "just a future teller", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "3633459012", "profile_image_url": "http://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", "friends_count": 2, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Sep 21 03:20:06 +0000 2015", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "ja", "verified": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/648561879732740096/mwbyB3gE_normal.jpg", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 25, "following": false, "default_profile_image": false, "id": 3633459012, "blocked_by": false, "name": "\u5915\u590f", "location": "Tokyo, Japan", "screen_name": "aAcvyXkvyzhJJoj", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "19777398", "following": false, "friends_count": 19672, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tonightshow.com", "url": "http://t.co/fgp5RYqr3T", "expanded_url": "http://www.tonightshow.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3338719, "location": "Weeknights 11:35/10:35c", "screen_name": "FallonTonight", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 8975, "name": "Fallon Tonight", "profile_use_background_image": true, "description": "The official Twitter for The Tonight Show Starring @JimmyFallon on @NBC. (Tweets by: @marinarachael @cdriz @thatsso_rachael @NoahGeb) #FallonTonight", "url": "http://t.co/fgp5RYqr3T", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", "profile_background_color": "03253E", "created_at": "Fri Jan 30 17:26:46 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432921867259613184/q89H1EeV_normal.jpeg", "favourites_count": 90384, "status": {"retweet_count": 46, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685630910214094848", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 169, "resize": "fit"}, "medium": {"w": 600, "h": 298, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 509, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPZrgVWwAETzTR.png", "type": "photo", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CYPZrgVWwAETzTR.png", "display_url": "pic.twitter.com/W0JromRs3f", "id_str": "685630909727555585", "expanded_url": "http://twitter.com/FallonTonight/status/685630910214094848/photo/1", "id": 685630909727555585, "url": "https://t.co/W0JromRs3f"}], "symbols": [], "urls": [{"display_url": "youtu.be/2uudLqnB35o", "url": "https://t.co/6BZNCLzbQA", "expanded_url": "https://youtu.be/2uudLqnB35o", "indices": [86, 109]}], "hashtags": [{"text": "WorstFirstDate", "indices": [62, 77]}], "user_mentions": []}, "created_at": "Sat Jan 09 01:15:22 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685630910214094848, "text": "\"That's funny, I'd do that! I HAVE done it.\" Jimmy reads your #WorstFirstDate tweets: https://t.co/6BZNCLzbQA https://t.co/W0JromRs3f", "coordinates": null, "retweeted": false, "favorite_count": 234, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 19777398, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432922341345988609/3BSxlqQE.jpeg", "statuses_count": 44485, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19777398/1401723954", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "158414847", "following": false, "friends_count": 277, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thedailyshow.com", "url": "http://t.co/BAakBFaEGx", "expanded_url": "http://thedailyshow.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 3995989, "location": "", "screen_name": "TheDailyShow", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 36028, "name": "The Daily Show", "profile_use_background_image": true, "description": "Trevor Noah and The Best F#@king News Team. Weeknights 11/10c on @ComedyCentral. Full episodes, videos, guest information. #DailyShow", "url": "http://t.co/BAakBFaEGx", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Jun 22 16:41:05 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/633669033708142592/jtJpbgKj_normal.jpg", "favourites_count": 14, "status": {"retweet_count": 55, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685604402208608256", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "on.cc.com/1ZfZpv3", "url": "https://t.co/aSFMNsG5gu", "expanded_url": "http://on.cc.com/1ZfZpv3", "indices": [54, 77]}, {"display_url": "pic.twitter.com/wbq98keCy7", "url": "https://t.co/wbq98keCy7", "expanded_url": "http://twitter.com/TheDailyShow/status/685604402208608256/photo/1", "indices": [78, 101]}], "hashtags": [], "user_mentions": [{"screen_name": "hasanminhaj", "id_str": "14652182", "id": 14652182, "indices": [1, 13], "name": "Hasan Minhaj"}]}, "created_at": "Fri Jan 08 23:30:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685604402208608256, "text": ".@hasanminhaj doesn\u2019t take any chances with his kicks https://t.co/aSFMNsG5gu https://t.co/wbq98keCy7", "coordinates": null, "retweeted": false, "favorite_count": 158, "contributors": null, "source": "Sprinklr"}, "default_profile_image": false, "id": 158414847, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661306435620376576/S7ZtR4fI.jpg", "statuses_count": 9003, "profile_banner_url": "https://pbs.twimg.com/profile_banners/158414847/1446498480", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "35773039", "following": false, "friends_count": 1004, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theatlantic.com", "url": "http://t.co/pI6FUBgQdl", "expanded_url": "http://www.theatlantic.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", "notifications": false, "profile_sidebar_fill_color": "E6ECF2", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 1183279, "location": "Washington, D.C.", "screen_name": "TheAtlantic", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 23353, "name": "The Atlantic", "profile_use_background_image": false, "description": "Politics, culture, business, science, technology, health, education, global affairs, more. Tweets by @CaitlinFrazier", "url": "http://t.co/pI6FUBgQdl", "profile_text_color": "000408", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", "profile_background_color": "000000", "created_at": "Mon Apr 27 15:41:54 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "BFBFBF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1268207868/twitter-icon-main_normal.png", "favourites_count": 653, "status": {"retweet_count": 10, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685636630024187904", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 960, "h": 640, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 226, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPe4cIWwAAZf80.jpg", "type": "photo", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CYPe4cIWwAAZf80.jpg", "display_url": "pic.twitter.com/kdav82oE0z", "id_str": "685636629495726080", "expanded_url": "http://twitter.com/TheAtlantic/status/685636630024187904/photo/1", "id": 685636629495726080, "url": "https://t.co/kdav82oE0z"}], "symbols": [], "urls": [{"display_url": "theatln.tc/1OVIXoQ", "url": "https://t.co/za5UpMiiXa", "expanded_url": "http://theatln.tc/1OVIXoQ", "indices": [31, 54]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:38:05 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685636630024187904, "text": "How hijabs became high fashion https://t.co/za5UpMiiXa https://t.co/kdav82oE0z", "coordinates": null, "retweeted": false, "favorite_count": 16, "contributors": null, "source": "SocialFlow"}, "default_profile_image": false, "id": 35773039, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/215776367/twitter-main.jpg", "statuses_count": 78818, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "83876527", "following": false, "friends_count": 969, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tejucole.com", "url": "http://t.co/FcCN8OHr", "expanded_url": "http://www.tejucole.com", "indices": [0, 20]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", "notifications": false, "profile_sidebar_fill_color": "D1CFC1", "profile_link_color": "4D2911", "geo_enabled": true, "followers_count": 232874, "location": "the Black Atlantic", "screen_name": "tejucole", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2716, "name": "Teju Cole", "profile_use_background_image": true, "description": "We who?", "url": "http://t.co/FcCN8OHr", "profile_text_color": "331D0C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", "profile_background_color": "121314", "created_at": "Tue Oct 20 16:27:33 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731884703/teju3_normal.jpg", "favourites_count": 1992, "status": {"in_reply_to_status_id": null, "retweet_count": 168, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "489091384792850432", "id": 489091384792850432, "text": "Good time for that Twitter break. Ever yrs, &c.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jul 15 16:57:27 +0000 2014", "source": "Twitter Web Client", "favorite_count": 249, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 83876527, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/467693049674362880/7344TNdr.jpeg", "statuses_count": 13297, "profile_banner_url": "https://pbs.twimg.com/profile_banners/83876527/1400341445", "is_translator": false}, {"time_zone": "Rome", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "241027939", "following": false, "friends_count": 246, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "googlethatshit.com", "url": "https://t.co/AGKwFEnIEM", "expanded_url": "http://googlethatshit.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "001122", "geo_enabled": true, "followers_count": 259513, "location": "Italia", "screen_name": "AsiaArgento", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1078, "name": "Asia Argento", "profile_use_background_image": true, "description": "a woman who does everything but doesn't know how to do anything / instagram = asiaargento", "url": "https://t.co/AGKwFEnIEM", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Fri Jan 21 08:27:38 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671261874269372416/lQGmVT-u_normal.jpg", "favourites_count": 28340, "status": {"in_reply_to_status_id": 685548530396721152, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "antonnewcombe", "in_reply_to_user_id": 34408874, "in_reply_to_status_id_str": "685548530396721152", "in_reply_to_user_id_str": "34408874", "truncated": false, "id_str": "685571131126996992", "id": 685571131126996992, "text": "@antonnewcombe I stopped counting \ud83d\ude1c @SmithsonianMag", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "antonnewcombe", "id_str": "34408874", "id": 34408874, "indices": [0, 14], "name": "anton newcombe"}, {"screen_name": "SmithsonianMag", "id_str": "17998609", "id": 17998609, "indices": [36, 51], "name": "Smithsonian Magazine"}]}, "created_at": "Fri Jan 08 21:17:49 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 241027939, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538444107052355586/h6zgga7T.jpeg", "statuses_count": 35107, "profile_banner_url": "https://pbs.twimg.com/profile_banners/241027939/1353605533", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2352142008", "following": false, "friends_count": 30, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 38786, "location": "", "screen_name": "DianaRoss", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 296, "name": "Ms. Ross", "profile_use_background_image": true, "description": "Diana Ross Official Twitter", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Wed Feb 19 19:21:42 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/473578046813765632/lcmNkZJn_normal.jpeg", "favourites_count": 15, "status": {"in_reply_to_status_id": null, "retweet_count": 103, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685147411493224449", "id": 685147411493224449, "text": "There's no need to rush take five slow down", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 17:14:06 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 160, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2352142008, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 101, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "1140451", "following": false, "friends_count": 4937, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "antderosa.com", "url": "https://t.co/XEmDfG5Qlv", "expanded_url": "http://antderosa.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", "notifications": false, "profile_sidebar_fill_color": "F0F0F0", "profile_link_color": "2A70A6", "geo_enabled": true, "followers_count": 88503, "location": "Jersey City, NJ", "screen_name": "AntDeRosa", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4732, "name": "Anthony De Rosa", "profile_use_background_image": true, "description": "Digital Production Manager for @TheDailyShow with @TrevorNoah", "url": "https://t.co/XEmDfG5Qlv", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Mar 14 05:45:24 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661645327691223040/OfvnX9zP_normal.jpg", "favourites_count": 20407, "status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685622432665845761", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "cnn.com/2016/01/08/pol\u2026", "url": "https://t.co/qPVMVwdw0b", "expanded_url": "http://www.cnn.com/2016/01/08/politics/bernie-sanders-bill-clinton-disgraceful/index.html", "indices": [113, 136]}], "hashtags": [], "user_mentions": [{"screen_name": "BernieSanders", "id_str": "216776631", "id": 216776631, "indices": [26, 40], "name": "Bernie Sanders"}]}, "created_at": "Sat Jan 09 00:41:40 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685622432665845761, "text": "Even if you don't support @BernieSanders, you have to respect that he avoids the nonsense most candidates run on https://t.co/qPVMVwdw0b", "coordinates": null, "retweeted": false, "favorite_count": 19, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 1140451, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000034906022/c88a8ce48d4f1fa1ce55588368c0326d.jpeg", "statuses_count": 147545, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140451/1446584214", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "18393773", "following": false, "friends_count": 868, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "neilgaiman.com", "url": "http://t.co/sGHzpf2rCG", "expanded_url": "http://www.neilgaiman.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", "notifications": false, "profile_sidebar_fill_color": "DAECF4", "profile_link_color": "ABB8C2", "geo_enabled": false, "followers_count": 2359341, "location": "a bit all over the place", "screen_name": "neilhimself", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 35383, "name": "Neil Gaiman", "profile_use_background_image": true, "description": "will eventually grow up and get a real job. Until then, will keep making things up and writing them down.", "url": "http://t.co/sGHzpf2rCG", "profile_text_color": "663B12", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", "profile_background_color": "91AAB5", "created_at": "Fri Dec 26 19:30:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682071470927777792/w4KAD7hB_normal.jpg", "favourites_count": 1091, "status": {"in_reply_to_status_id": 685631468689752064, "retweet_count": 2, "place": null, "in_reply_to_screen_name": "offby1", "in_reply_to_user_id": 37362694, "in_reply_to_status_id_str": "685631468689752064", "in_reply_to_user_id_str": "37362694", "truncated": false, "id_str": "685635978531213312", "id": 685635978531213312, "text": "@offby1 @scalzi yes. Tweets are brought to me individually by doves and white mice.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "offby1", "id_str": "37362694", "id": 37362694, "indices": [0, 7], "name": "__rose__"}, {"screen_name": "scalzi", "id_str": "14202817", "id": 14202817, "indices": [8, 15], "name": "John Scalzi"}]}, "created_at": "Sat Jan 09 01:35:30 +0000 2016", "source": "Twitter for BlackBerry", "favorite_count": 6, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 18393773, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/828289182/9c14ac6ec1765204d8c5618271366bec.jpeg", "statuses_count": 90748, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18393773/1424768490", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "263964021", "following": false, "friends_count": 864, "entities": {"description": {"urls": [{"display_url": "LIONBABE.COM", "url": "http://t.co/RbZqjUPgsT", "expanded_url": "http://LIONBABE.COM", "indices": [32, 54]}]}, "url": {"urls": [{"display_url": "jillonce.tumblr.com", "url": "http://t.co/vK5PFVYnmO", "expanded_url": "http://jillonce.tumblr.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 7502, "location": "NYC", "screen_name": "Jillonce", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 77, "name": "Jillian Hervey", "profile_use_background_image": true, "description": "arting all the time @LIONBABE x http://t.co/RbZqjUPgsT", "url": "http://t.co/vK5PFVYnmO", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Fri Mar 11 02:23:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/524595867735842816/5JmZLNbm_normal.jpeg", "favourites_count": 2910, "status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685372920651091968", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/toneycosmos/st\u2026", "url": "https://t.co/e4RutL4RM3", "expanded_url": "https://twitter.com/toneycosmos/status/685313450575290368", "indices": [11, 34]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 08:10:12 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685372920651091968, "text": "Love u too https://t.co/e4RutL4RM3", "coordinates": null, "retweeted": false, "favorite_count": 2, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 263964021, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691803848/8f65fc364d53f0db089f7626cec30196.png", "statuses_count": 17306, "profile_banner_url": "https://pbs.twimg.com/profile_banners/263964021/1414102504", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "432588553", "following": false, "friends_count": 845, "entities": {"description": {"urls": [{"display_url": "po.st/WDWGiTTW", "url": "https://t.co/s8fWZIpJuH", "expanded_url": "http://po.st/WDWGiTTW", "indices": [100, 123]}]}, "url": {"urls": [{"display_url": "LIONBABE.com", "url": "http://t.co/IRuegBPo6R", "expanded_url": "http://www.LIONBABE.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "DD2E44", "geo_enabled": false, "followers_count": 16954, "location": "NYC", "screen_name": "LionBabe", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 167, "name": "LION BABE", "profile_use_background_image": false, "description": "Lion Babe is Jillian Hervey + Lucas Goodman @Jillonce + @Astro_Raw . NYC . WHERE DO WE GO - iTunes: https://t.co/s8fWZIpJuH x", "url": "http://t.co/IRuegBPo6R", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", "profile_background_color": "000000", "created_at": "Fri Dec 09 15:18:30 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563824202294112256/YDUzscly_normal.jpeg", "favourites_count": 9524, "status": {"retweet_count": 9, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685554543250178048", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1024, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOUOXSUEAAuVGX.jpg", "type": "photo", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/CYOUOXSUEAAuVGX.jpg", "display_url": "pic.twitter.com/MTIiMhcsBg", "id_str": "685554542780354560", "expanded_url": "http://twitter.com/LionBabe/status/685554543250178048/photo/1", "id": 685554542780354560, "url": "https://t.co/MTIiMhcsBg"}], "symbols": [], "urls": [{"display_url": "po.st/WDWGSp", "url": "https://t.co/MVS9inrtAb", "expanded_url": "http://po.st/WDWGSp", "indices": [14, 37]}], "hashtags": [], "user_mentions": [{"screen_name": "Spotify", "id_str": "17230018", "id": 17230018, "indices": [3, 11], "name": "Spotify"}]}, "created_at": "Fri Jan 08 20:11:54 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685554543250178048, "text": "\ud83e\udd81\ud83d\udd25 @Spotify \ud83d\udc49 https://t.co/MVS9inrtAb https://t.co/MTIiMhcsBg", "coordinates": null, "retweeted": false, "favorite_count": 18, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 432588553, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 3674, "profile_banner_url": "https://pbs.twimg.com/profile_banners/432588553/1450721529", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "141326053", "following": false, "friends_count": 472, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "davesmithinstruments.com", "url": "http://t.co/huTEKpwJ0k", "expanded_url": "http://www.davesmithinstruments.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", "notifications": false, "profile_sidebar_fill_color": "252745", "profile_link_color": "DD5527", "geo_enabled": false, "followers_count": 24518, "location": "San Francisco, CA", "screen_name": "dsiSequential", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 395, "name": "DaveSmithInstruments", "profile_use_background_image": true, "description": "Innovative music machines designed and built in San Francisco, CA.", "url": "http://t.co/huTEKpwJ0k", "profile_text_color": "858585", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", "profile_background_color": "471A2E", "created_at": "Fri May 07 19:54:02 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/507283664296624128/ZP-UjPI-_normal.jpeg", "favourites_count": 128, "status": {"in_reply_to_status_id": 685574923926896640, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "andcunning", "in_reply_to_user_id": 264960356, "in_reply_to_status_id_str": "685574923926896640", "in_reply_to_user_id_str": "264960356", "truncated": false, "id_str": "685596686379450368", "id": 685596686379450368, "text": "@andcunning Great choice, they all compliment each other nicely!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "andcunning", "id_str": "264960356", "id": 264960356, "indices": [0, 11], "name": "Andrew Cunningham"}]}, "created_at": "Fri Jan 08 22:59:22 +0000 2016", "source": "Twitter Web Client", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 141326053, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/99460785/p8se_angle_twitter_4.jpg", "statuses_count": 3039, "profile_banner_url": "https://pbs.twimg.com/profile_banners/141326053/1421946814", "is_translator": false}, {"time_zone": "Amsterdam", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "748020092", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "M3LL155X.com", "url": "http://t.co/Qvv5qGkNFV", "expanded_url": "http://M3LL155X.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 159544, "location": "", "screen_name": "FKAtwigs", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 1066, "name": "FKA twigs", "profile_use_background_image": true, "description": "", "url": "http://t.co/Qvv5qGkNFV", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Thu Aug 09 21:57:26 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631899256991940608/2H8GWIbr_normal.jpg", "favourites_count": 91, "status": {"retweet_count": 54, "retweeted_status": {"retweet_count": 54, "in_reply_to_user_id": 748020092, "possibly_sensitive": false, "id_str": "683006150552489985", "in_reply_to_user_id_str": "748020092", "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 682, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 226, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", "type": "photo", "indices": [20, 43], "media_url": "http://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", "display_url": "pic.twitter.com/1clJLXxlKF", "id_str": "683006147956178944", "expanded_url": "http://twitter.com/FKAsamuel/status/683006150552489985/photo/1", "id": 683006147956178944, "url": "https://t.co/1clJLXxlKF"}], "symbols": [], "urls": [], "hashtags": [{"text": "FKAme", "indices": [10, 16]}], "user_mentions": [{"screen_name": "FKAtwigs", "id_str": "748020092", "id": 748020092, "indices": [0, 9], "name": "FKA twigs"}]}, "created_at": "Fri Jan 01 19:25:30 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": "FKAtwigs", "in_reply_to_status_id_str": null, "truncated": false, "id": 683006150552489985, "text": "@FKAtwigs #FKAme xx https://t.co/1clJLXxlKF", "coordinates": null, "retweeted": false, "favorite_count": 320, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684397478054096896", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 682, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 226, "resize": "fit"}}, "source_status_id_str": "683006150552489985", "media_url": "http://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", "source_user_id_str": "2375707136", "id_str": "683006147956178944", "id": 683006147956178944, "media_url_https": "https://pbs.twimg.com/media/CXqGeQxWAAAgD13.jpg", "type": "photo", "indices": [35, 58], "source_status_id": 683006150552489985, "source_user_id": 2375707136, "display_url": "pic.twitter.com/1clJLXxlKF", "expanded_url": "http://twitter.com/FKAsamuel/status/683006150552489985/photo/1", "url": "https://t.co/1clJLXxlKF"}], "symbols": [], "urls": [], "hashtags": [{"text": "FKAme", "indices": [25, 31]}], "user_mentions": [{"screen_name": "FKAsamuel", "id_str": "2375707136", "id": 2375707136, "indices": [3, 13], "name": "Sam"}, {"screen_name": "FKAtwigs", "id_str": "748020092", "id": 748020092, "indices": [15, 24], "name": "FKA twigs"}]}, "created_at": "Tue Jan 05 15:34:08 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684397478054096896, "text": "RT @FKAsamuel: @FKAtwigs #FKAme xx https://t.co/1clJLXxlKF", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 748020092, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000050916967/408e9331ec4081a7b225e05fda1dd62a.jpeg", "statuses_count": 313, "profile_banner_url": "https://pbs.twimg.com/profile_banners/748020092/1439491511", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "14159148", "following": false, "friends_count": 1044, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "un.org", "url": "http://t.co/kgJqUNDMpy", "expanded_url": "http://www.un.org", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 5979880, "location": "New York, NY", "screen_name": "UN", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 34750, "name": "United Nations", "profile_use_background_image": false, "description": "Official twitter account of #UnitedNations. Get the latest information on the #UN. #GlobalGoals", "url": "http://t.co/kgJqUNDMpy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", "profile_background_color": "0197D6", "created_at": "Sun Mar 16 20:15:36 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/538328216729968642/SdfeQXSM_normal.png", "favourites_count": 488, "status": {"retweet_count": 64, "retweeted_status": {"retweet_count": 64, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685479107631656961", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 960, "h": 640, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", "type": "photo", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", "display_url": "pic.twitter.com/QKLtpXFmUE", "id_str": "685479106977251328", "expanded_url": "http://twitter.com/BabatundeUNFPA/status/685479107631656961/photo/1", "id": 685479106977251328, "url": "https://t.co/QKLtpXFmUE"}], "symbols": [], "urls": [{"display_url": "bit.ly/1KedoYd", "url": "https://t.co/peOFGObDvc", "expanded_url": "http://bit.ly/1KedoYd", "indices": [90, 113]}], "hashtags": [{"text": "GlobalGoals", "indices": [4, 16]}], "user_mentions": [{"screen_name": "UNFPA", "id_str": "194643654", "id": 194643654, "indices": [58, 64], "name": "UNFPA"}, {"screen_name": "UN", "id_str": "14159148", "id": 14159148, "indices": [69, 72], "name": "United Nations"}]}, "created_at": "Fri Jan 08 15:12:09 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685479107631656961, "text": "The #GlobalGoals are for everyone, everywhere! RT to help @UNFPA and @UN spread the word: https://t.co/peOFGObDvc https://t.co/QKLtpXFmUE", "coordinates": null, "retweeted": false, "favorite_count": 53, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685628889205489665", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 226, "resize": "fit"}, "medium": {"w": 600, "h": 400, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 960, "h": 640, "resize": "fit"}}, "source_status_id_str": "685479107631656961", "media_url": "http://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", "source_user_id_str": "284647429", "id_str": "685479106977251328", "id": 685479106977251328, "media_url_https": "https://pbs.twimg.com/media/CYNPnbBUwAA1RuJ.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685479107631656961, "source_user_id": 284647429, "display_url": "pic.twitter.com/QKLtpXFmUE", "expanded_url": "http://twitter.com/BabatundeUNFPA/status/685479107631656961/photo/1", "url": "https://t.co/QKLtpXFmUE"}], "symbols": [], "urls": [{"display_url": "bit.ly/1KedoYd", "url": "https://t.co/peOFGObDvc", "expanded_url": "http://bit.ly/1KedoYd", "indices": [110, 133]}], "hashtags": [{"text": "GlobalGoals", "indices": [24, 36]}], "user_mentions": [{"screen_name": "BabatundeUNFPA", "id_str": "284647429", "id": 284647429, "indices": [3, 18], "name": "Babatunde Osotimehin"}, {"screen_name": "UNFPA", "id_str": "194643654", "id": 194643654, "indices": [78, 84], "name": "UNFPA"}, {"screen_name": "UN", "id_str": "14159148", "id": 14159148, "indices": [89, 92], "name": "United Nations"}]}, "created_at": "Sat Jan 09 01:07:20 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685628889205489665, "text": "RT @BabatundeUNFPA: The #GlobalGoals are for everyone, everywhere! RT to help @UNFPA and @UN spread the word: https://t.co/peOFGObDvc https\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 14159148, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/765681180/1001e289be48bdb34f8e07948b5f2a7a.jpeg", "statuses_count": 42439, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14159148/1447180964", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "857054191", "following": false, "friends_count": 51, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "dorotheegilbert.com", "url": "http://t.co/Bifsr25Z2N", "expanded_url": "http://www.dorotheegilbert.com", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 5530, "location": "", "screen_name": "DorotheGilbert", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 86, "name": "Doroth\u00e9e Gilbert", "profile_use_background_image": true, "description": "Danseuse \u00e9toile Op\u00e9ra de Paris", "url": "http://t.co/Bifsr25Z2N", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", "profile_background_color": "C0DEED", "created_at": "Mon Oct 01 21:28:01 +0000 2012", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2686099283/c21990a5b9399722c695c088ddddf63f_normal.png", "favourites_count": 139, "status": {"retweet_count": 66, "retweeted_status": {"retweet_count": 66, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678663494535946241", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", "display_url": "pic.twitter.com/jv1N54z6RO", "id_str": "678663485845278720", "expanded_url": "http://twitter.com/PenelopeB/status/678663494535946241/photo/1", "id": 678663485845278720, "url": "https://t.co/jv1N54z6RO"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "DorotheGilbert", "id_str": "857054191", "id": 857054191, "indices": [5, 20], "name": "Doroth\u00e9e Gilbert"}]}, "created_at": "Sun Dec 20 19:49:20 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "fr", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678663494535946241, "text": "Avec @DorotheGilbert sur les toits de l'Op\u00e9ra Garnier pour un rep\u00e9rage pour ma prochaine BD. Dimanche matin normal. https://t.co/jv1N54z6RO", "coordinates": null, "retweeted": false, "favorite_count": 279, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "678665157552287744", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 768, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 255, "resize": "fit"}}, "source_status_id_str": "678663494535946241", "media_url": "http://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", "source_user_id_str": "7817142", "id_str": "678663485845278720", "id": 678663485845278720, "media_url_https": "https://pbs.twimg.com/media/CWsY2DvWEAAi6-A.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 678663494535946241, "source_user_id": 7817142, "display_url": "pic.twitter.com/jv1N54z6RO", "expanded_url": "http://twitter.com/PenelopeB/status/678663494535946241/photo/1", "url": "https://t.co/jv1N54z6RO"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "PenelopeB", "id_str": "7817142", "id": 7817142, "indices": [3, 13], "name": "P\u00e9n\u00e9lope Bagieu"}, {"screen_name": "DorotheGilbert", "id_str": "857054191", "id": 857054191, "indices": [20, 35], "name": "Doroth\u00e9e Gilbert"}]}, "created_at": "Sun Dec 20 19:55:57 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "fr", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 678665157552287744, "text": "RT @PenelopeB: Avec @DorotheGilbert sur les toits de l'Op\u00e9ra Garnier pour un rep\u00e9rage pour ma prochaine BD. Dimanche matin normal. https://\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 857054191, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 287, "profile_banner_url": "https://pbs.twimg.com/profile_banners/857054191/1354469514", "is_translator": false}, {"time_zone": "London", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "166739404", "following": false, "friends_count": 246, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "3399FF", "geo_enabled": true, "followers_count": 20418728, "location": "London", "screen_name": "EmWatson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 43450, "name": "Emma Watson", "profile_use_background_image": true, "description": "British actress, Goodwill Ambassador for UN Women", "url": null, "profile_text_color": "666666", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Wed Jul 14 22:06:37 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629678659431960576/DaXAHdX0_normal.jpg", "favourites_count": 765, "status": {"retweet_count": 313, "retweeted_status": {"retweet_count": 313, "in_reply_to_user_id": 48269483, "possibly_sensitive": false, "id_str": "685292982778609664", "in_reply_to_user_id_str": "48269483", "entities": {"media": [{"sizes": {"large": {"w": 768, "h": 1024, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 453, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", "type": "photo", "indices": [113, 136], "media_url": "http://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", "display_url": "pic.twitter.com/u4q7tijibq", "id_str": "685292978408189953", "expanded_url": "http://twitter.com/AbbyWambach/status/685292982778609664/photo/1", "id": 685292978408189953, "url": "https://t.co/u4q7tijibq"}], "symbols": [], "urls": [], "hashtags": [{"text": "leaveasurpriseforthenext", "indices": [85, 110]}], "user_mentions": [{"screen_name": "GloriaSteinem", "id_str": "48269483", "id": 48269483, "indices": [36, 50], "name": "Gloria Steinem"}, {"screen_name": "SophiaBush", "id_str": "97082147", "id": 97082147, "indices": [51, 62], "name": "Sophia Bush"}, {"screen_name": "EmWatson", "id_str": "166739404", "id": 166739404, "indices": [63, 72], "name": "Emma Watson"}, {"screen_name": "lenadunham", "id_str": "31080039", "id": 31080039, "indices": [73, 84], "name": "Lena Dunham"}]}, "created_at": "Fri Jan 08 02:52:33 +0000 2016", "favorited": false, "in_reply_to_status_id": 685190347589304320, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "GloriaSteinem", "in_reply_to_status_id_str": "685190347589304320", "truncated": false, "id": 685292982778609664, "text": "This was fun... Tag you're all it!! @GloriaSteinem @SophiaBush @EmWatson @lenadunham #leaveasurpriseforthenext:) https://t.co/u4q7tijibq", "coordinates": null, "retweeted": false, "favorite_count": 1961, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685550040841072641", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 768, "h": 1024, "resize": "fit"}, "medium": {"w": 600, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 453, "resize": "fit"}}, "source_status_id_str": "685292982778609664", "media_url": "http://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", "source_user_id_str": "336124836", "id_str": "685292978408189953", "id": 685292978408189953, "media_url_https": "https://pbs.twimg.com/media/CYKmVUEW8AEvzFG.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685292982778609664, "source_user_id": 336124836, "display_url": "pic.twitter.com/u4q7tijibq", "expanded_url": "http://twitter.com/AbbyWambach/status/685292982778609664/photo/1", "url": "https://t.co/u4q7tijibq"}], "symbols": [], "urls": [], "hashtags": [{"text": "leaveasurpriseforthenext", "indices": [102, 127]}], "user_mentions": [{"screen_name": "AbbyWambach", "id_str": "336124836", "id": 336124836, "indices": [3, 15], "name": "Abby Wambach"}, {"screen_name": "GloriaSteinem", "id_str": "48269483", "id": 48269483, "indices": [53, 67], "name": "Gloria Steinem"}, {"screen_name": "SophiaBush", "id_str": "97082147", "id": 97082147, "indices": [68, 79], "name": "Sophia Bush"}, {"screen_name": "EmWatson", "id_str": "166739404", "id": 166739404, "indices": [80, 89], "name": "Emma Watson"}, {"screen_name": "lenadunham", "id_str": "31080039", "id": 31080039, "indices": [90, 101], "name": "Lena Dunham"}]}, "created_at": "Fri Jan 08 19:54:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685550040841072641, "text": "RT @AbbyWambach: This was fun... Tag you're all it!! @GloriaSteinem @SophiaBush @EmWatson @lenadunham #leaveasurpriseforthenext:) https://t\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 166739404, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/189740569/latest-news-vector.png", "statuses_count": 1213, "profile_banner_url": "https://pbs.twimg.com/profile_banners/166739404/1448459323", "is_translator": false}, {"time_zone": "Casablanca", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 0, "id_str": "384982986", "following": false, "friends_count": 965, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/gracejonesoffi\u2026", "url": "http://t.co/RAPIxjvPtQ", "expanded_url": "http://instagram.com/gracejonesofficial", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "85CFD2", "geo_enabled": false, "followers_count": 41765, "location": "Worldwide", "screen_name": "Miss_GraceJones", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 548, "name": "Grace Jones", "profile_use_background_image": true, "description": "This is my Official Twitter account... I see all and hear all. Nice to have you on my plate.", "url": "http://t.co/RAPIxjvPtQ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", "profile_background_color": "000000", "created_at": "Tue Oct 04 17:29:03 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522044378030690305/3p-5jFH1_normal.jpeg", "favourites_count": 345, "status": {"retweet_count": 20, "retweeted_status": {"retweet_count": 20, "in_reply_to_user_id": 384982986, "possibly_sensitive": false, "id_str": "665258501694865408", "in_reply_to_user_id_str": "384982986", "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 640, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", "type": "photo", "indices": [59, 82], "media_url": "http://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", "display_url": "pic.twitter.com/QXTd1KeI6T", "id_str": "665258494715518976", "expanded_url": "http://twitter.com/MarkFastKnit/status/665258501694865408/photo/1", "id": 665258494715518976, "url": "https://t.co/QXTd1KeI6T"}], "symbols": [], "urls": [], "hashtags": [{"text": "london", "indices": [21, 28]}, {"text": "markfast", "indices": [32, 41]}, {"text": "icon", "indices": [44, 49]}, {"text": "forever", "indices": [50, 58]}], "user_mentions": [{"screen_name": "Miss_GraceJones", "id_str": "384982986", "id": 384982986, "indices": [0, 16], "name": "Grace Jones"}]}, "created_at": "Fri Nov 13 20:02:41 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": "Miss_GraceJones", "in_reply_to_status_id_str": null, "truncated": false, "id": 665258501694865408, "text": "@Miss_GraceJones !!! #london in #markfast ! #icon #forever https://t.co/QXTd1KeI6T", "coordinates": null, "retweeted": false, "favorite_count": 89, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "665318546235334656", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 640, "h": 640, "resize": "fit"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 340, "resize": "fit"}}, "source_status_id_str": "665258501694865408", "media_url": "http://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", "source_user_id_str": "203957172", "id_str": "665258494715518976", "id": 665258494715518976, "media_url_https": "https://pbs.twimg.com/media/CTt5E4VUYAAArNA.jpg", "type": "photo", "indices": [77, 100], "source_status_id": 665258501694865408, "source_user_id": 203957172, "display_url": "pic.twitter.com/QXTd1KeI6T", "expanded_url": "http://twitter.com/MarkFastKnit/status/665258501694865408/photo/1", "url": "https://t.co/QXTd1KeI6T"}], "symbols": [], "urls": [], "hashtags": [{"text": "london", "indices": [39, 46]}, {"text": "markfast", "indices": [50, 59]}, {"text": "icon", "indices": [62, 67]}, {"text": "forever", "indices": [68, 76]}], "user_mentions": [{"screen_name": "MarkFastKnit", "id_str": "203957172", "id": 203957172, "indices": [3, 16], "name": "MARK FAST"}, {"screen_name": "Miss_GraceJones", "id_str": "384982986", "id": 384982986, "indices": [18, 34], "name": "Grace Jones"}]}, "created_at": "Sat Nov 14 00:01:17 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 665318546235334656, "text": "RT @MarkFastKnit: @Miss_GraceJones !!! #london in #markfast ! #icon #forever https://t.co/QXTd1KeI6T", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 384982986, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/850367426/a7e42ba525a1e769d3b8ab9f1b87a93f.jpeg", "statuses_count": 405, "profile_banner_url": "https://pbs.twimg.com/profile_banners/384982986/1366714920", "is_translator": false}, {"time_zone": "Mumbai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "41330290", "following": false, "friends_count": 277, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/TheShakaSurfCl\u2026", "url": "https://t.co/SEQpF7VDH4", "expanded_url": "http://www.facebook.com/TheShakaSurfClub", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1046, "location": "India", "screen_name": "surFISHita", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Ishita Malaviya", "profile_use_background_image": true, "description": "India's first recognized woman surfer & Co-founder of The Shaka Surf Club @SurfingIndia #Namaloha", "url": "https://t.co/SEQpF7VDH4", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", "profile_background_color": "000000", "created_at": "Wed May 20 10:04:32 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3071269086/9e5c0ac42e08325faa757b845c7063e0_normal.jpeg", "favourites_count": 104, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684213186245996545", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BAJF4a3BJhR/", "url": "https://t.co/BuGu8ng42j", "expanded_url": "https://www.instagram.com/p/BAJF4a3BJhR/", "indices": [96, 119]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 03:21:50 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684213186245996545, "text": "Road trip commenced! Excited we're finally making a trip to Hampi after talking about it for 9\u2026 https://t.co/BuGu8ng42j", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 41330290, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807766873/84a6b440a76d630bd62a0b140efaa635.jpeg", "statuses_count": 470, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41330290/1357404184", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14085740", "following": false, "friends_count": 3037, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 4881, "location": "San Francisco, CA", "screen_name": "jimprosser", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 152, "name": "Jim Prosser", "profile_use_background_image": true, "description": "Current @twitter comms guy, future @kanyewest 2020 campaign spokesperson.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Mar 05 23:28:42 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/524798340198715393/0nue_tO4_normal.jpeg", "favourites_count": 52872, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685619689897082880", "id": 685619689897082880, "text": "Excited for podcast justice as doled out by @hodgman and @JesseThorn tonight. Anyone else going? #sfsketchfest", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "sfsketchfest", "indices": [97, 110]}], "user_mentions": [{"screen_name": "hodgman", "id_str": "14348594", "id": 14348594, "indices": [44, 52], "name": "John Hodgman"}, {"screen_name": "JesseThorn", "id_str": "5611152", "id": 5611152, "indices": [57, 68], "name": "Jesse Thorn"}]}, "created_at": "Sat Jan 09 00:30:46 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14085740, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 12548, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14085740/1405206869", "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "37945489", "following": false, "friends_count": 994, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtu.be/ALlDZIQeNyo", "url": "http://t.co/2nWHiTkVsZ", "expanded_url": "http://youtu.be/ALlDZIQeNyo", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "EB3E12", "geo_enabled": true, "followers_count": 56983, "location": "Paris", "screen_name": "Carodemaigret", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 210, "name": "Caroline de Maigret", "profile_use_background_image": false, "description": "Model @NextModels worldwide /// @CareFrance Ambassador /// Book out now: @Howtobeparisian /// Instagram/Periscope: @carolinedemaigret", "url": "http://t.co/2nWHiTkVsZ", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", "profile_background_color": "F0F0F0", "created_at": "Tue May 05 15:26:02 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650602724787154944/fR5mW1s8_normal.jpg", "favourites_count": 6015, "status": {"retweet_count": 16, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685398789759352832", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 255, "resize": "fit"}, "medium": {"w": 600, "h": 450, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 768, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYMGj1mWsAEtn_K.jpg", "type": "photo", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CYMGj1mWsAEtn_K.jpg", "display_url": "pic.twitter.com/ILzsfq1gBq", "id_str": "685398781043585025", "expanded_url": "http://twitter.com/Carodemaigret/status/685398789759352832/photo/1", "id": 685398781043585025, "url": "https://t.co/ILzsfq1gBq"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "Black_Minou", "id_str": "309053484", "id": 309053484, "indices": [13, 25], "name": "BLACK MINOU"}, {"screen_name": "yarolpoupaud", "id_str": "75114445", "id": 75114445, "indices": [76, 89], "name": "Yarol Poupaud"}]}, "created_at": "Fri Jan 08 09:53:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685398789759352832, "text": "Amaaaaaazing @Black_Minou last night! Just sweat&rock&roll\nLove you @yarolpoupaud https://t.co/ILzsfq1gBq", "coordinates": null, "retweeted": false, "favorite_count": 21, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 37945489, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 7696, "profile_banner_url": "https://pbs.twimg.com/profile_banners/37945489/1420905232", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "35556383", "following": false, "friends_count": 265, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "londonzhiloh.com", "url": "https://t.co/gsxVxxXXXz", "expanded_url": "http://londonzhiloh.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", "notifications": false, "profile_sidebar_fill_color": "F5F2F2", "profile_link_color": "D9207D", "geo_enabled": true, "followers_count": 74149, "location": "Snapchat: Zhiloh101", "screen_name": "TheRealZhiloh", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 272, "name": "London Zhiloh", "profile_use_background_image": false, "description": "Bookings: Info@LZofficial.com", "url": "https://t.co/gsxVxxXXXz", "profile_text_color": "292727", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", "profile_background_color": "F2EFF1", "created_at": "Sun Apr 26 20:29:45 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "F5F0F0", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685594778935947266/i5bc2Zxh_normal.jpg", "favourites_count": 14013, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684831821545259008", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BANe919KKK8/", "url": "https://t.co/X6DX1UZDRX", "expanded_url": "https://www.instagram.com/p/BANe919KKK8/", "indices": [98, 121]}], "hashtags": [{"text": "NATVS", "indices": [20, 26]}], "user_mentions": [{"screen_name": "MITDistrict", "id_str": "785119218", "id": 785119218, "indices": [49, 61], "name": "Made in the District"}]}, "created_at": "Wed Jan 06 20:20:04 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684831821545259008, "text": "Hey guys! Check out #NATVS newest documentary by @mitdistrict where I talk about my inspiration,\u2026 https://t.co/X6DX1UZDRX", "coordinates": null, "retweeted": false, "favorite_count": 12, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 35556383, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/549669837/tumblr_m0eih3IY861qa1rczo1_500.jpg", "statuses_count": 96490, "profile_banner_url": "https://pbs.twimg.com/profile_banners/35556383/1450060528", "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "233183631", "following": false, "friends_count": 36443, "entities": {"description": {"urls": [{"display_url": "itun.es/us/boyR_", "url": "https://t.co/CJheDwyeIF", "expanded_url": "https://itun.es/us/boyR_", "indices": [74, 97]}]}, "url": {"urls": [{"display_url": "Instagram.com/madisonbeer", "url": "https://t.co/nqrYEOhs7A", "expanded_url": "http://Instagram.com/madisonbeer", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "6895D0", "geo_enabled": true, "followers_count": 1754461, "location": "", "screen_name": "MadisonElleBeer", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4395, "name": "madison beer", "profile_use_background_image": true, "description": "\u2661 singer from ny \u2661 chase your dreams \u2661 new single Something Sweet out now https://t.co/CJheDwyeIF", "url": "https://t.co/nqrYEOhs7A", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Sun Jan 02 14:52:35 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661231606498070530/LXM72Y98_normal.jpg", "favourites_count": 3926, "status": {"in_reply_to_status_id": null, "retweet_count": 1230, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685619398229372932", "id": 685619398229372932, "text": "\ud83d\udca7\ud83d\udc33\ud83d\udc8d\ud83c\udf90\u2708\ufe0f\ud83d\udc8e", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 00:29:37 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 2652, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "und"}, "default_profile_image": false, "id": 233183631, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/440560638520078336/k0Ya7V7B.jpeg", "statuses_count": 11569, "profile_banner_url": "https://pbs.twimg.com/profile_banners/233183631/1446485514", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "70457876", "following": false, "friends_count": 689, "entities": {"description": {"urls": [{"display_url": "soundcloud.com/dope-saint-jud\u2026", "url": "https://t.co/dIyhEjwine", "expanded_url": "https://soundcloud.com/dope-saint-jude/", "indices": [0, 23]}, {"display_url": "facebook.com/pages/Dope-Sai\u2026", "url": "https://t.co/4Kqi4mPsER", "expanded_url": "https://www.facebook.com/pages/Dope-Saint-Jude/287771241273733", "indices": [24, 47]}]}, "url": {"urls": [{"display_url": "dopesaintjude.tumblr.com", "url": "http://t.co/VYkd1URkb3", "expanded_url": "http://dopesaintjude.tumblr.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 896, "location": "@dopesaintjude (insta) ", "screen_name": "DopeSaintJude", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 20, "name": "DOPESAINTJUDE", "profile_use_background_image": true, "description": "https://t.co/dIyhEjwine https://t.co/4Kqi4mPsER", "url": "http://t.co/VYkd1URkb3", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Aug 31 18:06:59 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/644208344824213504/KBiek-HV_normal.jpg", "favourites_count": 2283, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685498518228840448", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BASOf95Jcvo/", "url": "https://t.co/FvdrqUE154", "expanded_url": "https://www.instagram.com/p/BASOf95Jcvo/", "indices": [20, 43]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:29:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685498518228840448, "text": "Just posted a photo https://t.co/FvdrqUE154", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 70457876, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/486893002397204480/0pdjIZAV.jpeg", "statuses_count": 4519, "profile_banner_url": "https://pbs.twimg.com/profile_banners/70457876/1442416572", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "3840", "following": false, "friends_count": 20892, "entities": {"description": {"urls": [{"display_url": "angel.co/jason", "url": "https://t.co/nkssr3dWMC", "expanded_url": "http://angel.co/jason", "indices": [48, 71]}]}, "url": {"urls": [{"display_url": "calacanis.com", "url": "https://t.co/akc7KgXv7J", "expanded_url": "http://www.calacanis.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", "notifications": false, "profile_sidebar_fill_color": "E0FF92", "profile_link_color": "FF9900", "geo_enabled": true, "followers_count": 256931, "location": "94123", "screen_name": "Jason", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 12244, "name": "jason", "profile_use_background_image": true, "description": "Angel investor (@uber @thumbtack @wealthfront + https://t.co/nkssr3dWMC ) // Writer // Dad // Founder: @Engadget, @Inside, @LAUNCH & @twistartups", "url": "https://t.co/akc7KgXv7J", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", "profile_background_color": "000000", "created_at": "Sat Aug 05 23:31:27 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617072171760783361/DrAcc7EV_normal.jpg", "favourites_count": 42384, "status": {"retweet_count": 7, "retweeted_status": {"retweet_count": 7, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685588257791315969", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", "display_url": "pic.twitter.com/gcjvsiX09b", "id_str": "685588257233485824", "expanded_url": "http://twitter.com/TWistartups/status/685588257791315969/photo/1", "id": 685588257233485824, "url": "https://t.co/gcjvsiX09b"}], "symbols": [], "urls": [{"display_url": "itunes.apple.com/us/podcast/e61\u2026", "url": "https://t.co/fbT87aaiXi", "expanded_url": "https://itunes.apple.com/us/podcast/e611-jed-katz-javelin-venture/id314461026?i=360327489&mt=2", "indices": [92, 115]}], "hashtags": [], "user_mentions": [{"screen_name": "JedKatz", "id_str": "17163307", "id": 17163307, "indices": [1, 9], "name": "Jed Katz"}, {"screen_name": "JavelinVP", "id_str": "457126665", "id": 457126665, "indices": [10, 20], "name": "Javelin VP"}, {"screen_name": "kaleazy", "id_str": "253389790", "id": 253389790, "indices": [53, 61], "name": "Kyle Hill"}, {"screen_name": "HomeHero", "id_str": "1582339772", "id": 1582339772, "indices": [65, 74], "name": "HomeHero"}, {"screen_name": "Jason", "id_str": "3840", "id": 3840, "indices": [85, 91], "name": "jason"}]}, "created_at": "Fri Jan 08 22:25:52 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685588257791315969, "text": ".@JedKatz @JavelinVP shares 52pt Series A checklist; @kaleazy on @HomeHero culture-w/@jason https://t.co/fbT87aaiXi https://t.co/gcjvsiX09b", "coordinates": null, "retweeted": false, "favorite_count": 7, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685631006087315456", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 1024, "h": 576, "resize": "fit"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id_str": "685588257791315969", "media_url": "http://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", "source_user_id_str": "112880396", "id_str": "685588257233485824", "id": 685588257233485824, "media_url_https": "https://pbs.twimg.com/media/CYOy4zaUwAA_LV8.png", "type": "photo", "indices": [139, 140], "source_status_id": 685588257791315969, "source_user_id": 112880396, "display_url": "pic.twitter.com/gcjvsiX09b", "expanded_url": "http://twitter.com/TWistartups/status/685588257791315969/photo/1", "url": "https://t.co/gcjvsiX09b"}], "symbols": [], "urls": [{"display_url": "itunes.apple.com/us/podcast/e61\u2026", "url": "https://t.co/fbT87aaiXi", "expanded_url": "https://itunes.apple.com/us/podcast/e611-jed-katz-javelin-venture/id314461026?i=360327489&mt=2", "indices": [109, 132]}], "hashtags": [], "user_mentions": [{"screen_name": "TWistartups", "id_str": "112880396", "id": 112880396, "indices": [3, 15], "name": "ThisWeekinStartups"}, {"screen_name": "JedKatz", "id_str": "17163307", "id": 17163307, "indices": [18, 26], "name": "Jed Katz"}, {"screen_name": "JavelinVP", "id_str": "457126665", "id": 457126665, "indices": [27, 37], "name": "Javelin VP"}, {"screen_name": "kaleazy", "id_str": "253389790", "id": 253389790, "indices": [70, 78], "name": "Kyle Hill"}, {"screen_name": "HomeHero", "id_str": "1582339772", "id": 1582339772, "indices": [82, 91], "name": "HomeHero"}, {"screen_name": "Jason", "id_str": "3840", "id": 3840, "indices": [102, 108], "name": "jason"}]}, "created_at": "Sat Jan 09 01:15:44 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685631006087315456, "text": "RT @TWistartups: .@JedKatz @JavelinVP shares 52pt Series A checklist; @kaleazy on @HomeHero culture-w/@jason https://t.co/fbT87aaiXi https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3840, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/669947096858951680/tCcM2kKB.png", "statuses_count": 71770, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3840/1438902439", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "21872269", "following": false, "friends_count": 70, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "emersoncollective.com", "url": "http://t.co/Qr1O0bgn4d", "expanded_url": "http://emersoncollective.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DD2E44", "geo_enabled": false, "followers_count": 10221, "location": "Palo Alto, CA", "screen_name": "laurenepowell", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 123, "name": "Laurene Powell", "profile_use_background_image": false, "description": "mother, advocate, friend, Emerson Collective president, joyful adventurer", "url": "http://t.co/Qr1O0bgn4d", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", "profile_background_color": "000000", "created_at": "Wed Feb 25 14:49:19 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656175279870603264/527I9RKw_normal.jpg", "favourites_count": 88, "status": {"retweet_count": 9, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685227751620489217", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1OS6abn", "url": "https://t.co/nm1QkCrPvl", "expanded_url": "http://bit.ly/1OS6abn", "indices": [115, 138]}], "hashtags": [], "user_mentions": []}, "created_at": "Thu Jan 07 22:33:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685227751620489217, "text": "Too important to miss: A bipartisan roadmap to curb hunger for 7M in US. Congress should fast track implementation https://t.co/nm1QkCrPvl", "coordinates": null, "retweeted": false, "favorite_count": 27, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 21872269, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 100, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21872269/1445279444", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "3583264572", "following": false, "friends_count": 168, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 107352, "location": "", "screen_name": "IStandWithAhmed", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 373, "name": "Ahmed Mohamed", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", "profile_background_color": "000000", "created_at": "Wed Sep 16 14:00:18 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685053398392045568/8vgwYt6n_normal.png", "favourites_count": 199, "status": {"in_reply_to_status_id": 684847980998950912, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "kevincollier", "in_reply_to_user_id": 440963378, "in_reply_to_status_id_str": "684847980998950912", "in_reply_to_user_id_str": "440963378", "truncated": false, "id_str": "685153785677754368", "id": 685153785677754368, "text": "@kevincollier yea, what about you", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "kevincollier", "id_str": "440963378", "id": 440963378, "indices": [0, 13], "name": "Kevin Collier"}]}, "created_at": "Thu Jan 07 17:39:26 +0000 2016", "source": "Twitter Web Client", "favorite_count": 2, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 3583264572, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 323, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3583264572/1452112394", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "43057202", "following": false, "friends_count": 2964, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "3B94D9", "geo_enabled": false, "followers_count": 12241, "location": "Las Vegas, NV", "screen_name": "Nicholas_Cope", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 61, "name": "Nick Cope", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", "profile_background_color": "000000", "created_at": "Thu May 28 05:50:05 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661396079292735488/Mgeweswa_normal.jpg", "favourites_count": 409, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685633002718679040", "id": 685633002718679040, "text": "\u2694 Slay the day;", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:23:40 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 43057202, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 5765, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43057202/1446523732", "is_translator": false}, {"time_zone": "Athens", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 7200, "id_str": "1311113250", "following": false, "friends_count": 1, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "1D1F1F", "geo_enabled": true, "followers_count": 7883, "location": "", "screen_name": "riccardotisci", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 62, "name": "Riccardo Tisci", "profile_use_background_image": false, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", "profile_background_color": "000000", "created_at": "Thu Mar 28 16:36:51 +0000 2013", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "nl", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000443732292/ded7ce889585d02a2e3f59ce04e20d8c_normal.jpeg", "favourites_count": 0, "status": {"in_reply_to_status_id": null, "retweet_count": 66, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "651509820936310784", "id": 651509820936310784, "text": "I'M UNABLE TO COMPREHEND THE FACT THAT THIS UNIVERSE IS PART OF A MULTIVERSE AND THAT THIS MULTIVERSE HAS AN UNLIMITED AMOUNT OF SPACE.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Tue Oct 06 21:30:20 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 107, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1311113250, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/865100301/daa9cd913033b95a53588a0178538ab5.png", "statuses_count": 112, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1311113250/1411398117", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2612918754", "following": false, "friends_count": 15, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 20, "location": "", "screen_name": "robertabbott92", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 0, "name": "robert abbott", "profile_use_background_image": true, "description": "", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jul 09 04:39:39 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/642491104672157696/-uqWHXce_normal.jpg", "favourites_count": 5, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "677266170047696896", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "twitter.com/wsl/status/677\u2026", "url": "https://t.co/5ikdEpXSfx", "expanded_url": "https://twitter.com/wsl/status/677265901482172416", "indices": [9, 32]}], "hashtags": [{"text": "GoKelly", "indices": [0, 8]}], "user_mentions": []}, "created_at": "Wed Dec 16 23:16:52 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "und", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 677266170047696896, "text": "#GoKelly https://t.co/5ikdEpXSfx", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 2612918754, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 17, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "123710951", "following": false, "friends_count": 22, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "notifications": false, "profile_sidebar_fill_color": "99CC33", "profile_link_color": "D02B55", "geo_enabled": false, "followers_count": 51, "location": "", "screen_name": "nupurgarg16", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 2, "name": "Nupur Garg", "profile_use_background_image": true, "description": "Engineer. Student. Daughter. Sister. Indian-American. Passionate about diversity. Studying CS @CalPoly but my \u2665 is in the Bay.", "url": null, "profile_text_color": "3E4415", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", "profile_background_color": "352726", "created_at": "Wed Mar 17 00:37:32 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "829D5E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3495615060/a02d30d367275b0ec7c09f6f8d5cc0f5_normal.jpeg", "favourites_count": 10, "status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "672543113978580992", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "youtube.com/watch?v=PI09_e\u2026", "url": "https://t.co/vnVTw3Z0Q9", "expanded_url": "https://www.youtube.com/watch?v=PI09_e0DarY", "indices": [68, 91]}], "hashtags": [], "user_mentions": [{"screen_name": "AshleyMardell", "id_str": "101129043", "id": 101129043, "indices": [53, 67], "name": "Ashley Mardell"}]}, "created_at": "Thu Dec 03 22:29:08 +0000 2015", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 672543113978580992, "text": "Such a raw, incredible video about loving oneself by @AshleyMardell https://t.co/vnVTw3Z0Q9", "coordinates": null, "retweeted": false, "favorite_count": 17, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 123710951, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "statuses_count": 13, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "2424272372", "following": false, "friends_count": 382, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "linkedin.com/in/toddsherman", "url": "https://t.co/vUfwnDEI57", "expanded_url": "http://www.linkedin.com/in/toddsherman", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "93A644", "geo_enabled": true, "followers_count": 1031, "location": "San Francisco, CA", "screen_name": "tdd", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 21, "name": "Todd Sherman", "profile_use_background_image": true, "description": "Product Manager at Twitter.", "url": "https://t.co/vUfwnDEI57", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", "profile_background_color": "B2DFDA", "created_at": "Wed Apr 02 19:53:23 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/571080117984575488/OVdlbX3p_normal.png", "favourites_count": 2960, "status": {"retweet_count": 0, "in_reply_to_user_id": 14253109, "possibly_sensitive": false, "id_str": "685532007728693248", "in_reply_to_user_id_str": "14253109", "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/7Yvf4P8A7N", "url": "https://t.co/7Yvf4P8A7N", "expanded_url": "http://twitter.com/tdd/status/685532007728693248/photo/1", "indices": [27, 50]}], "hashtags": [], "user_mentions": [{"screen_name": "adambain", "id_str": "14253109", "id": 14253109, "indices": [0, 9], "name": "adam bain"}, {"screen_name": "santana", "id_str": "54030633", "id": 54030633, "indices": [10, 18], "name": "Ivan Santana"}]}, "created_at": "Fri Jan 08 18:42:21 +0000 2016", "favorited": false, "in_reply_to_status_id": 685531730757824512, "lang": "en", "geo": null, "place": {"url": "https://api.twitter.com/1.1/geo/id/07d9cd6afd884001.json", "country": "United States", "attributes": {}, "place_type": "poi", "bounding_box": {"coordinates": [[[-122.41679856739916, 37.77688821377302], [-122.41679856739916, 37.77688821377302], [-122.41679856739916, 37.77688821377302], [-122.41679856739916, 37.77688821377302]]], "type": "Polygon"}, "full_name": "Twitter HQ", "contained_within": [], "country_code": "US", "id": "07d9cd6afd884001", "name": "Twitter HQ"}, "in_reply_to_screen_name": "adambain", "in_reply_to_status_id_str": "685531730757824512", "truncated": false, "id": 685532007728693248, "text": "@adambain @santana be like https://t.co/7Yvf4P8A7N", "coordinates": null, "retweeted": false, "favorite_count": 5, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2424272372, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "statuses_count": 1424, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2424272372/1426469295", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "284159631", "following": false, "friends_count": 296, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jackiereses.tumblr.com", "url": "https://t.co/JIrh2PYIZ2", "expanded_url": "http://jackiereses.tumblr.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "notifications": false, "profile_sidebar_fill_color": "DDFFCC", "profile_link_color": "3B94D9", "geo_enabled": true, "followers_count": 1906, "location": "Woodside, CA and New York City", "screen_name": "jackiereses", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "Jackie Reses", "profile_use_background_image": true, "description": "Just moved to new house! @jackiereseskidz", "url": "https://t.co/JIrh2PYIZ2", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", "profile_background_color": "89C9FA", "created_at": "Mon Apr 18 18:59:19 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "BDDCAD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675701913321517056/wh9J2H50_normal.png", "favourites_count": 279, "status": {"retweet_count": 2, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685140789593178112", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "for.tn/1OAh75J", "url": "https://t.co/ODPl4AkEoB", "expanded_url": "http://for.tn/1OAh75J", "indices": [87, 110]}], "hashtags": [], "user_mentions": [{"screen_name": "FortuneMagazine", "id_str": "25053299", "id": 25053299, "indices": [70, 86], "name": "Fortune"}]}, "created_at": "Thu Jan 07 16:47:48 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685140789593178112, "text": "Here's Hasbro's response to this Monopoly 'Star Wars' controversy via @FortuneMagazine https://t.co/ODPl4AkEoB", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Mobile Web"}, "default_profile_image": false, "id": 284159631, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "statuses_count": 600, "profile_banner_url": "https://pbs.twimg.com/profile_banners/284159631/1405201905", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "14130366", "following": false, "friends_count": 256, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": true, "followers_count": 332280, "location": "", "screen_name": "sundarpichai", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2560, "name": "sundarpichai", "profile_use_background_image": true, "description": "CEO, @google", "url": null, "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", "profile_background_color": "1A1B1F", "created_at": "Wed Mar 12 05:51:53 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/481231649128980480/9hpv14pc_normal.jpeg", "favourites_count": 263, "status": {"in_reply_to_status_id": null, "retweet_count": 273, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "679335075331203072", "id": 679335075331203072, "text": "Incredible achievement for #SpaceX , congratulations to the team. Inspiring to see such progress", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "SpaceX", "indices": [27, 34]}], "user_mentions": []}, "created_at": "Tue Dec 22 16:17:58 +0000 2015", "source": "Twitter Web Client", "favorite_count": 847, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 14130366, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "statuses_count": 721, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "3024282479", "following": false, "friends_count": 378, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sunujournal.com", "url": "https://t.co/VEFaxoMlRR", "expanded_url": "http://www.sunujournal.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 722, "location": "", "screen_name": "sunujournal", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 16, "name": "S U N U", "profile_use_background_image": true, "description": "SUNU: Journal of African Affairs, Critical Thought + Aesthetics \u2022 Amplifying the youth voice + contributing to the collective consciousness #SUNUjournal \u2022 2016", "url": "https://t.co/VEFaxoMlRR", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", "profile_background_color": "FFFFFF", "created_at": "Sun Feb 08 01:50:03 +0000 2015", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661026999029407744/iaN6vgRt_normal.jpg", "favourites_count": 48, "status": {"retweet_count": 5, "retweeted_status": {"retweet_count": 5, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684218010253443078", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1OIKNsY", "url": "https://t.co/4Ig5oKG2cQ", "expanded_url": "http://bit.ly/1OIKNsY", "indices": [99, 122]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 03:41:00 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684218010253443078, "text": "From resistance to rebellion: Asian and Afro-Caribbean struggles in Britain: A. Sivanandan (1981): https://t.co/4Ig5oKG2cQ", "coordinates": null, "retweeted": false, "favorite_count": 8, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684230912805089281", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "bit.ly/1OIKNsY", "url": "https://t.co/4Ig5oKG2cQ", "expanded_url": "http://bit.ly/1OIKNsY", "indices": [119, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "public_archive", "id_str": "120174828", "id": 120174828, "indices": [3, 18], "name": "The Public Archive"}]}, "created_at": "Tue Jan 05 04:32:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684230912805089281, "text": "RT @public_archive: From resistance to rebellion: Asian and Afro-Caribbean struggles in Britain: A. Sivanandan (1981): https://t.co/4Ig5oKG\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 3024282479, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/575496526539005952/dynLGSzW.jpeg", "statuses_count": 515, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3024282479/1428706146", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "17169320", "following": false, "friends_count": 660, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "thinkcommon.com", "url": "http://t.co/lGKu0vCb9Q", "expanded_url": "http://thinkcommon.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", "notifications": false, "profile_sidebar_fill_color": "EADEAA", "profile_link_color": "EEAD1D", "geo_enabled": false, "followers_count": 3227707, "location": "Chicago, IL", "screen_name": "common", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 14193, "name": "COMMON", "profile_use_background_image": false, "description": "Hip Hop Artist/ Actor", "url": "http://t.co/lGKu0vCb9Q", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", "profile_background_color": "000000", "created_at": "Tue Nov 04 21:18:21 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/626538291970580481/b0EztEEL_normal.jpg", "favourites_count": 40, "status": {"retweet_count": 10, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685556232627859457", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "instagram.com/p/BASovkotmmf/", "url": "https://t.co/g3UiMWOqcp", "expanded_url": "https://www.instagram.com/p/BASovkotmmf/", "indices": [76, 99]}], "hashtags": [{"text": "itrainwithQ", "indices": [63, 75]}], "user_mentions": []}, "created_at": "Fri Jan 08 20:18:37 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685556232627859457, "text": "Y'all know adrianpeterson ain't the only one who can do this. #itrainwithQ https://t.co/g3UiMWOqcp", "coordinates": null, "retweeted": false, "favorite_count": 57, "contributors": null, "source": "Instagram"}, "default_profile_image": false, "id": 17169320, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552305742133227520/uVzfdxGo.jpeg", "statuses_count": 9755, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17169320/1438213738", "is_translator": false}, {"time_zone": "Quito", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "28035260", "following": false, "friends_count": 588, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "smarturl.it/iKingPushDBD", "url": "https://t.co/Y2KVVZtpIp", "expanded_url": "http://smarturl.it/iKingPushDBD", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1196404, "location": "VA", "screen_name": "PUSHA_T", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 3619, "name": "PUSHA T", "profile_use_background_image": true, "description": "MGMT: @STEVENVICTOR Shows:Cara Lewis/CAA", "url": "https://t.co/Y2KVVZtpIp", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Apr 01 02:56:54 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674338781185593344/FcK_WQ1U_normal.jpg", "favourites_count": 23, "status": {"retweet_count": 8, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685613964827332608", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "acclaimmag.com/music/review-p\u2026", "url": "https://t.co/J13mfUDhi7", "expanded_url": "http://www.acclaimmag.com/music/review-pusha-t-melbourne/#0", "indices": [24, 47]}], "hashtags": [], "user_mentions": [{"screen_name": "ACCLAIMmagazine", "id_str": "22733953", "id": 22733953, "indices": [6, 22], "name": "ACCLAIM magazine"}]}, "created_at": "Sat Jan 09 00:08:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685613964827332608, "text": "Fresh @ACCLAIMmagazine https://t.co/J13mfUDhi7", "coordinates": null, "retweeted": false, "favorite_count": 18, "contributors": null, "source": "UberSocial for iPhone"}, "default_profile_image": false, "id": 28035260, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534808770266681344/kZMOY1hG.jpeg", "statuses_count": 12194, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28035260/1451438540", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "18381396", "following": false, "friends_count": 1615, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "shop.txdxe.com", "url": "http://t.co/afn1VAKJzW", "expanded_url": "http://shop.txdxe.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "F20909", "geo_enabled": false, "followers_count": 197581, "location": "TxDxE.com", "screen_name": "TopDawgEnt", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 409, "name": "TopDawgEnt", "profile_use_background_image": true, "description": "Official TopDawgEntertainment Twitter \u2022 @JayRock @KendrickLamar @ScHoolBoyQ @AbDashSoul @IsaiahRashad @SZA @MixedByAli #TDE Instagram: @TopDawgEnt", "url": "http://t.co/afn1VAKJzW", "profile_text_color": "B80202", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", "profile_background_color": "000000", "created_at": "Fri Dec 26 00:20:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678092736843546625/3CJ3_MMr_normal.png", "favourites_count": 25, "status": {"retweet_count": 96, "retweeted_status": {"retweet_count": 96, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685559168279932928", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 225, "resize": "fit"}, "medium": {"w": 600, "h": 398, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 425, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", "type": "photo", "indices": [108, 131], "media_url": "http://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", "display_url": "pic.twitter.com/JGJlnY5XgS", "id_str": "685559167826964480", "expanded_url": "http://twitter.com/VibeMagazine/status/685559168279932928/photo/1", "id": 685559167826964480, "url": "https://t.co/JGJlnY5XgS"}], "symbols": [], "urls": [{"display_url": "on.vibe.com/1Jzx1gn", "url": "https://t.co/lvULxDXufL", "expanded_url": "http://on.vibe.com/1Jzx1gn", "indices": [84, 107]}], "hashtags": [], "user_mentions": [{"screen_name": "kendricklamar", "id_str": "23561980", "id": 23561980, "indices": [1, 15], "name": "Kendrick Lamar"}, {"screen_name": "acltv", "id_str": "28412100", "id": 28412100, "indices": [76, 82], "name": "Austin City Limits"}]}, "created_at": "Fri Jan 08 20:30:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685559168279932928, "text": ".@KendrickLamar breaks down the inspiration behind \u2018To Pimp A Butterfly\u2019 on @acltv: https://t.co/lvULxDXufL https://t.co/JGJlnY5XgS", "coordinates": null, "retweeted": false, "favorite_count": 218, "contributors": null, "source": "Twitter Web Client"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685620600589565952", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 225, "resize": "fit"}, "medium": {"w": 600, "h": 398, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 425, "resize": "fit"}}, "source_status_id_str": "685559168279932928", "media_url": "http://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", "source_user_id_str": "14691200", "id_str": "685559167826964480", "id": 685559167826964480, "media_url_https": "https://pbs.twimg.com/media/CYOYbk7WsAAIbAB.jpg", "type": "photo", "indices": [126, 140], "source_status_id": 685559168279932928, "source_user_id": 14691200, "display_url": "pic.twitter.com/JGJlnY5XgS", "expanded_url": "http://twitter.com/VibeMagazine/status/685559168279932928/photo/1", "url": "https://t.co/JGJlnY5XgS"}], "symbols": [], "urls": [{"display_url": "on.vibe.com/1Jzx1gn", "url": "https://t.co/lvULxDXufL", "expanded_url": "http://on.vibe.com/1Jzx1gn", "indices": [102, 125]}], "hashtags": [], "user_mentions": [{"screen_name": "VibeMagazine", "id_str": "14691200", "id": 14691200, "indices": [3, 16], "name": "VibeMagazine"}, {"screen_name": "kendricklamar", "id_str": "23561980", "id": 23561980, "indices": [19, 33], "name": "Kendrick Lamar"}, {"screen_name": "acltv", "id_str": "28412100", "id": 28412100, "indices": [94, 100], "name": "Austin City Limits"}]}, "created_at": "Sat Jan 09 00:34:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685620600589565952, "text": "RT @VibeMagazine: .@KendrickLamar breaks down the inspiration behind \u2018To Pimp A Butterfly\u2019 on @acltv: https://t.co/lvULxDXufL https://t.co/\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Echofon"}, "default_profile_image": false, "id": 18381396, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000135651846/NJNcyYeb.png", "statuses_count": 6708, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18381396/1443854512", "is_translator": false}, {"time_zone": "Paris", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 3600, "id_str": "327894845", "following": false, "friends_count": 157, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nextmanagement.com", "url": "http://t.co/qeqVqn53yt", "expanded_url": "http://www.nextmanagement.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 2300, "location": "new york", "screen_name": "MelodieMonrose", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 43, "name": "M\u00e9lodie Monrose", "profile_use_background_image": true, "description": "Next models worldwide /Uno spain", "url": "http://t.co/qeqVqn53yt", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", "profile_background_color": "1F2021", "created_at": "Sat Jul 02 10:27:10 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "fr", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2449890961/xw2q2n2gyl51vkd32pr0_normal.jpeg", "favourites_count": 123, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/01a9a39529b27f36.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-74.026675, 40.683935], [-73.910408, 40.683935], [-73.910408, 40.877483], [-74.026675, 40.877483]]], "type": "Polygon"}, "full_name": "Manhattan, NY", "contained_within": [], "country_code": "US", "id": "01a9a39529b27f36", "name": "Manhattan"}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "668792992988311552", "id": 668792992988311552, "text": "Bon ok , j'arr\u00eate les tweets d\u00e9sesp\u00e9r\u00e9s . Mais bon je suis une martiniquaise frigorifi\u00e9e et d\u00e9racin\u00e9e . I am sure some of you can relate \ud83d\ude11", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Nov 23 14:07:29 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 5, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "fr"}, "default_profile_image": false, "id": 327894845, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644754246/20vfc0ml5uwi0ei3720b.jpeg", "statuses_count": 2133, "profile_banner_url": "https://pbs.twimg.com/profile_banners/327894845/1440579572", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "108213835", "following": false, "friends_count": 173, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 1385, "location": "", "screen_name": "jeneil1", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 45, "name": "jeneil williams", "profile_use_background_image": true, "description": "tomboy model from jamaica, loves fashion,cooking,people and most of all love my job new to instagram follow me @jeneilwilliams", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Mon Jan 25 06:22:47 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2535756789/image_normal.jpg", "favourites_count": 242, "status": {"in_reply_to_status_id": null, "retweet_count": 2, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "683144131883982849", "id": 683144131883982849, "text": "Happy new year everyone \ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89\ud83c\udf89", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 02 04:33:47 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 4, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 108213835, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/70941142/19542_307985920411_532300411_5084172_4855278_n.jpg", "statuses_count": 932, "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "6204", "following": false, "friends_count": 2910, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "jabrams.com", "url": "http://t.co/YcT7cUkcui", "expanded_url": "http://www.jabrams.com/", "indices": [0, 22]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 15936, "location": "San Francisco, CA", "screen_name": "abrams", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 1064, "name": "Jonathan Abrams", "profile_use_background_image": true, "description": "Founder & CEO of @Nuzzel", "url": "http://t.co/YcT7cUkcui", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", "profile_background_color": "C0DEED", "created_at": "Sat Sep 16 01:11:02 +0000 2006", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/473554491673821184/TziZTiJR_normal.jpeg", "favourites_count": 10207, "status": {"retweet_count": 0, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685636226406199296", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "qz.com/567744", "url": "https://t.co/zcrmwc655J", "expanded_url": "http://qz.com/567744", "indices": [47, 70]}], "hashtags": [], "user_mentions": [{"screen_name": "qz", "id_str": "573918122", "id": 573918122, "indices": [75, 78], "name": "Quartz"}]}, "created_at": "Sat Jan 09 01:36:29 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685636226406199296, "text": "The case for eating cereal for breakfast again https://t.co/zcrmwc655J via @qz", "coordinates": null, "retweeted": false, "favorite_count": 1, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 6204, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 31483, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6204/1401738610", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "1547221", "following": false, "friends_count": 1042, "entities": {"description": {"urls": [{"display_url": "eugenewei.com", "url": "https://t.co/31xFn7CUeB", "expanded_url": "http://www.eugenewei.com", "indices": [73, 96]}]}, "url": {"urls": [{"display_url": "eugenewei.com", "url": "https://t.co/ccJQSSYAHH", "expanded_url": "http://www.eugenewei.com/", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "909090", "geo_enabled": true, "followers_count": 3363, "location": "San Francisco, CA", "screen_name": "eugenewei", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 173, "name": "Eugene Wei", "profile_use_background_image": false, "description": "Former Head of Product at Flipboard and Hulu, an alum of Amazon. More at https://t.co/31xFn7CUeB", "url": "https://t.co/ccJQSSYAHH", "profile_text_color": "2C2C2C", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", "profile_background_color": "FFFFFF", "created_at": "Mon Mar 19 20:00:36 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676259032647143424/hbRJPmUL_normal.png", "favourites_count": 5964, "status": {"in_reply_to_status_id": null, "retweet_count": 0, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684790692615335940", "id": 684790692615335940, "text": "Fastest boarding and offloading of a flight ever. People who fly to CES are career/professional flyers.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Wed Jan 06 17:36:38 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 6, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 1547221, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435311205100822528/jyYFaEnU.jpeg", "statuses_count": 5743, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1547221/1398367465", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "29663668", "following": false, "friends_count": 511, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/RZAWU", "url": "https://t.co/LxKDItI1ju", "expanded_url": "http://www.facebook.com/RZAWU", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/43773275/wu.jpg", "notifications": false, "profile_sidebar_fill_color": "252429", "profile_link_color": "2FC2EF", "geo_enabled": false, "followers_count": 629018, "location": "Brooklyn-Shaolin-NY-NJ-LA", "screen_name": "RZA", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 5503, "name": "RZA!", "profile_use_background_image": true, "description": "MY OFFICIAL TWITTER, PEACE!", "url": "https://t.co/LxKDItI1ju", "profile_text_color": "666666", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", "profile_background_color": "1A1B1F", "created_at": "Wed Apr 08 07:37:52 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "181A1E", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/591722653888610304/XVLuk_8s_normal.jpg", "favourites_count": 15, "status": {"in_reply_to_status_id": null, "retweet_count": 148, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685587424018206720", "id": 685587424018206720, "text": "\"Of course Black lives matter.. All lives matter\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:22:34 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 214, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 29663668, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/43773275/wu.jpg", "statuses_count": 5560, "profile_banner_url": "https://pbs.twimg.com/profile_banners/29663668/1448944289", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "6646402", "following": false, "friends_count": 647, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "get.fabric.io", "url": "http://t.co/OZQv5dblxS", "expanded_url": "http://get.fabric.io", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", "notifications": false, "profile_sidebar_fill_color": "F6F6F6", "profile_link_color": "1191F2", "geo_enabled": true, "followers_count": 1161, "location": "Boston / SF / worldwide", "screen_name": "richparet", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 42, "name": "Rich Paret", "profile_use_background_image": false, "description": "Director of Engineering, Developer Platform @twitter. @twitterapi / @gnip / @fabric. Let's build the future together.", "url": "http://t.co/OZQv5dblxS", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", "profile_background_color": "0F0F0F", "created_at": "Thu Jun 07 17:49:42 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/467716933043773441/lf19UGD8_normal.jpeg", "favourites_count": 3280, "status": {"in_reply_to_status_id": 685573071281901568, "retweet_count": 0, "place": {"url": "https://api.twitter.com/1.1/geo/id/8193d87541f11dfb.json", "country": "United States", "attributes": {}, "place_type": "city", "bounding_box": {"coordinates": [[[-71.160356, 42.352429], [-71.064398, 42.352429], [-71.064398, 42.4039663], [-71.160356, 42.4039663]]], "type": "Polygon"}, "full_name": "Cambridge, MA", "contained_within": [], "country_code": "US", "id": "8193d87541f11dfb", "name": "Cambridge"}, "in_reply_to_screen_name": "JillWetzler", "in_reply_to_user_id": 403070695, "in_reply_to_status_id_str": "685573071281901568", "in_reply_to_user_id_str": "403070695", "truncated": false, "id_str": "685573192837132292", "id": 685573192837132292, "text": "@JillWetzler @jessicamckellar awesome!", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "JillWetzler", "id_str": "403070695", "id": 403070695, "indices": [0, 12], "name": "Jill Wetzler"}, {"screen_name": "jessicamckellar", "id_str": "24945605", "id": 24945605, "indices": [13, 29], "name": "Jessica McKellar"}]}, "created_at": "Fri Jan 08 21:26:01 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 1, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 6646402, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073037269/617d3bd2ba4af77620c491f36a2a9187.jpeg", "statuses_count": 1554, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6646402/1440532521", "is_translator": false}, {"time_zone": null, "profile_use_background_image": true, "description": "", "url": null, "contributors_enabled": false, "is_translation_enabled": false, "id_str": "522299046", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "friends_count": 0, "entities": {"description": {"urls": []}}, "profile_background_color": "C0DEED", "created_at": "Mon Mar 12 14:33:21 +0000 2012", "blocking": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 0, "profile_sidebar_border_color": "C0DEED", "lang": "en", "verified": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "favourites_count": 0, "listed_count": 0, "geo_enabled": false, "follow_request_sent": false, "followers_count": 26, "following": false, "default_profile_image": true, "id": 522299046, "blocked_by": false, "name": "Geno's Barberia", "location": "", "screen_name": "GenosBarberia", "profile_background_tile": false, "notifications": false, "utc_offset": null, "muting": false, "protected": false, "has_extended_profile": false, "is_translator": false, "default_profile": true}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "100325421", "following": false, "friends_count": 455, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 70507, "location": "", "screen_name": "Kevfeige", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 507, "name": "Kevin Feige", "profile_use_background_image": true, "description": "Producer", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Dec 29 21:32:20 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1897259318/image_normal.jpg", "favourites_count": 1, "status": {"retweet_count": 359, "retweeted_status": {"retweet_count": 359, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685181614079492097", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/FpaYZCl2Ii", "url": "https://t.co/FpaYZCl2Ii", "expanded_url": "http://twitter.com/ThorMovies/status/685181614079492097/photo/1", "indices": [117, 140]}], "hashtags": [{"text": "PCAs", "indices": [111, 116]}], "user_mentions": [{"screen_name": "chrishemsworth", "id_str": "3063032281", "id": 3063032281, "indices": [12, 27], "name": "Chris Hemsworth"}, {"screen_name": "peopleschoice", "id_str": "34993020", "id": 34993020, "indices": [44, 58], "name": "People's Choice"}]}, "created_at": "Thu Jan 07 19:30:01 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685181614079492097, "text": "Congrats to @chrishemsworth for winning the @PeoplesChoice for Favorite Action Movie Actor! Definitely worthy. #PCAs https://t.co/FpaYZCl2Ii", "coordinates": null, "retweeted": false, "favorite_count": 1014, "contributors": null, "source": "Sprinklr"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685228256568545280", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "pic.twitter.com/FpaYZCl2Ii", "url": "https://t.co/FpaYZCl2Ii", "expanded_url": "http://twitter.com/ThorMovies/status/685181614079492097/photo/1", "indices": [139, 140]}], "hashtags": [{"text": "PCAs", "indices": [127, 132]}], "user_mentions": [{"screen_name": "ThorMovies", "id_str": "701625379", "id": 701625379, "indices": [3, 14], "name": "Thor"}, {"screen_name": "chrishemsworth", "id_str": "3063032281", "id": 3063032281, "indices": [28, 43], "name": "Chris Hemsworth"}, {"screen_name": "peopleschoice", "id_str": "34993020", "id": 34993020, "indices": [60, 74], "name": "People's Choice"}]}, "created_at": "Thu Jan 07 22:35:21 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685228256568545280, "text": "RT @ThorMovies: Congrats to @chrishemsworth for winning the @PeoplesChoice for Favorite Action Movie Actor! Definitely worthy. #PCAs https:\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 100325421, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 20, "is_translator": false}, {"time_zone": "Arizona", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -25200, "id_str": "166747718", "following": false, "friends_count": 286, "entities": {"description": {"urls": [{"display_url": "itunes.apple.com/us/album/cherr\u2026", "url": "https://t.co/cIuPQAaTHf", "expanded_url": "https://itunes.apple.com/us/album/cherry-bomb/id983056044", "indices": [54, 77]}]}, "url": {"urls": [{"display_url": "golfwang.com", "url": "https://t.co/WMyHWbn11Q", "expanded_url": "http://golfwang.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634274657806491648/l4r4obye.jpg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "FFCC4D", "geo_enabled": false, "followers_count": 2751413, "location": "OKAGA, CA", "screen_name": "fucktyler", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 7283, "name": "Tyler, The Creator", "profile_use_background_image": true, "description": "i want an enzo, garden and leo from romeo and juliet: https://t.co/cIuPQAaTHf", "url": "https://t.co/WMyHWbn11Q", "profile_text_color": "00CCFF", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", "profile_background_color": "75D1FF", "created_at": "Wed Jul 14 22:32:25 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637497884150120448/QBUlEYau_normal.jpg", "favourites_count": 167, "status": {"retweet_count": 530, "retweeted_status": {"retweet_count": 530, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684425683301302274", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "soundcloud.com/ofwgkta-offici\u2026", "url": "https://t.co/L57RgEWMcj", "expanded_url": "https://soundcloud.com/ofwgkta-official/kwym-keep-working-young-man", "indices": [109, 132]}], "hashtags": [], "user_mentions": []}, "created_at": "Tue Jan 05 17:26:13 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684425683301302274, "text": "if you somehow slept the entire day yesterday and missed out, this link leads you to a new song I dropped....https://t.co/L57RgEWMcj", "coordinates": null, "retweeted": false, "favorite_count": 1181, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "684566153931296768", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "soundcloud.com/ofwgkta-offici\u2026", "url": "https://t.co/L57RgEWMcj", "expanded_url": "https://soundcloud.com/ofwgkta-official/kwym-keep-working-young-man", "indices": [139, 140]}], "hashtags": [], "user_mentions": [{"screen_name": "DamierGenesis", "id_str": "128665538", "id": 128665538, "indices": [3, 17], "name": "Suavecito."}]}, "created_at": "Wed Jan 06 02:44:24 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 684566153931296768, "text": "RT @DamierGenesis: if you somehow slept the entire day yesterday and missed out, this link leads you to a new song I dropped....https://t.c\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Mobile Web (M5)"}, "default_profile_image": false, "id": 166747718, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634274657806491648/l4r4obye.jpg", "statuses_count": 39779, "profile_banner_url": "https://pbs.twimg.com/profile_banners/166747718/1438284983", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "147279619", "following": false, "friends_count": 20834, "entities": {"description": {"urls": []}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", "notifications": false, "profile_sidebar_fill_color": "EBDDEB", "profile_link_color": "4A913C", "geo_enabled": true, "followers_count": 27038, "location": "", "screen_name": "MayaAMonroe", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 106, "name": "Maya Angelique", "profile_use_background_image": true, "description": "IG and snapchat: mayaangelique", "url": null, "profile_text_color": "6ABA93", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", "profile_background_color": "FF001E", "created_at": "Sun May 23 18:06:28 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661735252814077953/w5iU8N52_normal.jpg", "favourites_count": 62950, "status": {"retweet_count": 1178, "retweeted_status": {"retweet_count": 1178, "in_reply_to_user_id": 347927511, "possibly_sensitive": false, "id_str": "654641886632759297", "in_reply_to_user_id_str": "347927511", "entities": {"media": [{"sizes": {"large": {"w": 579, "h": 540, "resize": "fit"}, "medium": {"w": 579, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 317, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", "type": "photo", "indices": [85, 107], "media_url": "http://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", "display_url": "pic.twitter.com/FGmVNBHN5U", "id_str": "654641878487293953", "expanded_url": "http://twitter.com/CivilJustUs/status/654641886632759297/photo/1", "id": 654641878487293953, "url": "http://t.co/FGmVNBHN5U"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Oct 15 12:56:03 +0000 2015", "favorited": false, "in_reply_to_status_id": 654640631004966912, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": "CivilJustUs", "in_reply_to_status_id_str": "654640631004966912", "truncated": false, "id": 654641886632759297, "text": "Fuckboy twitter: \"this shit so good but I can't make a sound because I'm a real man\" http://t.co/FGmVNBHN5U", "coordinates": null, "retweeted": false, "favorite_count": 907, "contributors": null, "source": "Twitter for Android"}, "in_reply_to_user_id": null, "possibly_sensitive": true, "id_str": "685630576104239104", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"large": {"w": 579, "h": 540, "resize": "fit"}, "medium": {"w": 579, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 317, "resize": "fit"}}, "source_status_id_str": "654641886632759297", "media_url": "http://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", "source_user_id_str": "347927511", "id_str": "654641878487293953", "id": 654641878487293953, "media_url_https": "https://pbs.twimg.com/media/CRXBUe5UYAE9wU5.jpg", "type": "photo", "indices": [102, 124], "source_status_id": 654641886632759297, "source_user_id": 347927511, "display_url": "pic.twitter.com/FGmVNBHN5U", "expanded_url": "http://twitter.com/CivilJustUs/status/654641886632759297/photo/1", "url": "http://t.co/FGmVNBHN5U"}], "symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "CivilJustUs", "id_str": "347927511", "id": 347927511, "indices": [3, 15], "name": "El DeBeard"}]}, "created_at": "Sat Jan 09 01:14:02 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685630576104239104, "text": "RT @CivilJustUs: Fuckboy twitter: \"this shit so good but I can't make a sound because I'm a real man\" http://t.co/FGmVNBHN5U", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 147279619, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542873295737987072/gfgwS4lK.png", "statuses_count": 125764, "profile_banner_url": "https://pbs.twimg.com/profile_banners/147279619/1448679913", "is_translator": false}, {"time_zone": "Atlantic Time (Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -14400, "id_str": "2517988075", "following": false, "friends_count": 649, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "theatlantic.com", "url": "http://t.co/863fgunGbW", "expanded_url": "http://www.theatlantic.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "000000", "geo_enabled": false, "followers_count": 462261, "location": "Shaolin ", "screen_name": "tanehisicoates", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 4045, "name": "Ta-Nehisi Coates", "profile_use_background_image": false, "description": "I'm on a mission that Dreamers say is impossible.\nBut when I swing my sword, they all choppable.", "url": "http://t.co/863fgunGbW", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", "profile_background_color": "000000", "created_at": "Fri May 23 14:31:49 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648748230872838144/psO2Nfjv_normal.jpg", "favourites_count": 502, "status": {"in_reply_to_status_id": null, "retweet_count": 71, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682882413899452417", "id": 682882413899452417, "text": "\"For the new year, strictly Wu-wear...\"", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 01 11:13:49 +0000 2016", "source": "TweetDeck", "favorite_count": 210, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 2517988075, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 20312, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2367911", "following": false, "friends_count": 31976, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mtv.com", "url": "http://t.co/yyniasrs2z", "expanded_url": "http://mtv.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": true, "followers_count": 13287230, "location": "NYC", "screen_name": "MTV", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 28348, "name": "MTV", "profile_use_background_image": true, "description": "The official Twitter account for MTV, USA! Tweets by @Kaitiii | Snapchat/KiK: MTV", "url": "http://t.co/yyniasrs2z", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", "profile_background_color": "131516", "created_at": "Mon Mar 26 22:30:49 +0000 2007", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676494877547323392/aqaWBpOP_normal.jpg", "favourites_count": 12411, "status": {"retweet_count": 78, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685634299618525184", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 378, "resize": "fit"}, "medium": {"w": 600, "h": 668, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 1141, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYPcwSWWEAAu3QE.png", "type": "photo", "indices": [104, 127], "media_url": "http://pbs.twimg.com/media/CYPcwSWWEAAu3QE.png", "display_url": "pic.twitter.com/ikbJ9TbExe", "id_str": "685634290407837696", "expanded_url": "http://twitter.com/MTV/status/685634299618525184/photo/1", "id": 685634290407837696, "url": "https://t.co/ikbJ9TbExe"}], "symbols": [], "urls": [{"display_url": "on.mtv.com/1OUWblF", "url": "https://t.co/eVzCxC9Wh8", "expanded_url": "http://on.mtv.com/1OUWblF", "indices": [80, 103]}], "hashtags": [], "user_mentions": []}, "created_at": "Sat Jan 09 01:28:50 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685634299618525184, "text": "11 former Nickelodeon stars who are hot AF now (and honestly always have been): https://t.co/eVzCxC9Wh8 https://t.co/ikbJ9TbExe", "coordinates": null, "retweeted": false, "favorite_count": 244, "contributors": null, "source": "SocialFlow"}, "default_profile_image": false, "id": 2367911, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 150515, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2367911/1451411117", "is_translator": false}, {"time_zone": null, "follow_request_sent": false, "contributors_enabled": false, "utc_offset": null, "id_str": "2601175671", "following": false, "friends_count": 1137, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flyt.it/fettywapitunes", "url": "https://t.co/ha6adhNCBb", "expanded_url": "http://flyt.it/fettywapitunes", "indices": [0, 23]}]}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 458114, "location": "", "screen_name": "fettywap", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 513, "name": "FettyWap1738", "profile_use_background_image": true, "description": "Fetty Wap||ZooWap||Zoovier||ZooZoo for bookings: bookings@rgfproductions.com . Album \u2b07\ufe0f on iTunes", "url": "https://t.co/ha6adhNCBb", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Jun 11 13:55:15 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/636738712429330432/wtRxq_70_normal.jpg", "favourites_count": 1939, "status": {"retweet_count": 9784, "retweeted_status": {"retweet_count": 9784, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685320218386673664", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "smarturl.it/SOL.FettyRmx", "url": "https://t.co/hpbwqOt0fw", "expanded_url": "http://smarturl.it/SOL.FettyRmx", "indices": [65, 88]}, {"display_url": "vevo.ly/XmDzV7", "url": "https://t.co/0NGVSd7XFQ", "expanded_url": "http://vevo.ly/XmDzV7", "indices": [89, 112]}], "hashtags": [], "user_mentions": [{"screen_name": "fettywap", "id_str": "2601175671", "id": 2601175671, "indices": [28, 37], "name": "FettyWap1738"}, {"screen_name": "AppleMusic", "id_str": "74580436", "id": 74580436, "indices": [52, 63], "name": "Apple Music"}]}, "created_at": "Fri Jan 08 04:40:47 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685320218386673664, "text": "The Same Old Love remix ft. @fettywap is out NOW on @applemusic! https://t.co/hpbwqOt0fw https://t.co/0NGVSd7XFQ", "coordinates": null, "retweeted": false, "favorite_count": 18817, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685530981231628288", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "smarturl.it/SOL.FettyRmx", "url": "https://t.co/hpbwqOt0fw", "expanded_url": "http://smarturl.it/SOL.FettyRmx", "indices": [82, 105]}, {"display_url": "vevo.ly/XmDzV7", "url": "https://t.co/0NGVSd7XFQ", "expanded_url": "http://vevo.ly/XmDzV7", "indices": [106, 129]}], "hashtags": [], "user_mentions": [{"screen_name": "selenagomez", "id_str": "23375688", "id": 23375688, "indices": [3, 15], "name": "Selena Gomez"}, {"screen_name": "fettywap", "id_str": "2601175671", "id": 2601175671, "indices": [45, 54], "name": "FettyWap1738"}, {"screen_name": "AppleMusic", "id_str": "74580436", "id": 74580436, "indices": [69, 80], "name": "Apple Music"}]}, "created_at": "Fri Jan 08 18:38:17 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685530981231628288, "text": "RT @selenagomez: The Same Old Love remix ft. @fettywap is out NOW on @applemusic! https://t.co/hpbwqOt0fw https://t.co/0NGVSd7XFQ", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for iPhone"}, "default_profile_image": false, "id": 2601175671, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 4812, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2601175671/1450121884", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "54387680", "following": false, "friends_count": 0, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "michaeljackson.com", "url": "http://t.co/q1TE07bI3n", "expanded_url": "http://www.michaeljackson.com/", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", "notifications": false, "profile_sidebar_fill_color": "E3E2DE", "profile_link_color": "C12032", "geo_enabled": false, "followers_count": 1924985, "location": "New York, NY USA", "screen_name": "michaeljackson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 13327, "name": "Michael Jackson", "profile_use_background_image": true, "description": "The Official Michael Jackson Twitter Page", "url": "http://t.co/q1TE07bI3n", "profile_text_color": "634047", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", "profile_background_color": "FFFFFF", "created_at": "Tue Jul 07 00:24:51 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/556179314660478976/l_MadSiU_normal.jpeg", "favourites_count": 0, "status": {"retweet_count": 591, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685493401106673665", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 241, "resize": "fit"}, "medium": {"w": 450, "h": 320, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 450, "h": 320, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNcnbPUoAEfwkK.jpg", "type": "photo", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/CYNcnbPUoAEfwkK.jpg", "display_url": "pic.twitter.com/Yed1qysvMx", "id_str": "685493400687124481", "expanded_url": "http://twitter.com/michaeljackson/status/685493401106673665/photo/1", "id": 685493400687124481, "url": "https://t.co/Yed1qysvMx"}], "symbols": [], "urls": [], "hashtags": [{"text": "FriendlyFriday", "indices": [0, 15]}], "user_mentions": []}, "created_at": "Fri Jan 08 16:08:57 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685493401106673665, "text": "#FriendlyFriday The King And The Boss https://t.co/Yed1qysvMx", "coordinates": null, "retweeted": false, "favorite_count": 1184, "contributors": null, "source": "Hootsuite"}, "default_profile_image": false, "id": 54387680, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466632809390419968/IHCw-MH8.jpeg", "statuses_count": 1357, "profile_banner_url": "https://pbs.twimg.com/profile_banners/54387680/1435330454", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "15934076", "following": false, "friends_count": 685, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtu.be/4-42cW_4ycA", "url": "https://t.co/jYzdPI3TZ3", "expanded_url": "http://youtu.be/4-42cW_4ycA", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "000000", "geo_enabled": true, "followers_count": 86217, "location": "Los Angeles, CA", "screen_name": "quintabrunson", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 185, "name": "Quinta B.", "profile_use_background_image": false, "description": "hi. i'm a creator. I know, right?", "url": "https://t.co/jYzdPI3TZ3", "profile_text_color": "030303", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", "profile_background_color": "E7F5F5", "created_at": "Thu Aug 21 17:31:50 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661391409266585601/rbtXshkj_normal.jpg", "favourites_count": 5668, "status": {"in_reply_to_status_id": null, "retweet_count": 234, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "685596361958395905", "id": 685596361958395905, "text": "I'm not overwhelmed. In not underwhelmed. Just whelmed.", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 22:58:05 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 404, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 15934076, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706431168/502cf7dce9e843a1df90b4513772f736.jpeg", "statuses_count": 41490, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15934076/1449387090", "is_translator": false}, {"time_zone": "Central Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -21600, "id_str": "221579212", "following": false, "friends_count": 460, "entities": {"description": {"urls": [{"display_url": "jouelzy.com", "url": "https://t.co/qfCo83qrSw", "expanded_url": "http://jouelzy.com", "indices": [120, 143]}]}, "url": {"urls": [{"display_url": "youtube.com/jouelzy", "url": "https://t.co/oeQSvIWKEP", "expanded_url": "http://www.youtube.com/jouelzy", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "B8A2E8", "geo_enabled": true, "followers_count": 9967, "location": "Floating thru the Universe...", "screen_name": "Jouelzy", "verified": false, "has_extended_profile": true, "protected": false, "listed_count": 106, "name": "Jouelzy", "profile_use_background_image": true, "description": "OG #SmartBrownGirl. Writer | Tech | Culture | Snark | Womanist Really love tacos, really is my email: tacos@jouelzy.com https://t.co/qfCo83qrSw", "url": "https://t.co/oeQSvIWKEP", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Wed Dec 01 01:22:22 +0000 2010", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624457379610935296/4hrGjSYB_normal.jpg", "favourites_count": 762, "status": {"retweet_count": 4, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685622079727742976", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [{"display_url": "jouz.es/1tsHoHo", "url": "https://t.co/6brtUDPU2V", "expanded_url": "http://jouz.es/1tsHoHo", "indices": [56, 79]}], "hashtags": [{"text": "jpyo", "indices": [50, 55]}], "user_mentions": []}, "created_at": "Sat Jan 09 00:40:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685622079727742976, "text": "Please Stop Correlating Weaves as Being Hood... - #jpyo https://t.co/6brtUDPU2V", "coordinates": null, "retweeted": false, "favorite_count": 4, "contributors": null, "source": "Win the Customer"}, "default_profile_image": false, "id": 221579212, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/520073215108861952/bUTWDwAW.jpeg", "statuses_count": 43559, "profile_banner_url": "https://pbs.twimg.com/profile_banners/221579212/1412759867", "is_translator": false}, {"time_zone": "Pacific Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -28800, "id_str": "26565946", "following": false, "friends_count": 117, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "justintimberlake.com", "url": "http://t.co/SRqd8jW6W3", "expanded_url": "http://www.justintimberlake.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "notifications": false, "profile_sidebar_fill_color": "EFEFEF", "profile_link_color": "009999", "geo_enabled": false, "followers_count": 51071487, "location": "Memphis, TN", "screen_name": "jtimberlake", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 76087, "name": "Justin Timberlake", "profile_use_background_image": true, "description": "The Official Twitter of Justin Timberlake", "url": "http://t.co/SRqd8jW6W3", "profile_text_color": "333333", "is_translation_enabled": true, "profile_image_url": "http://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", "profile_background_color": "131516", "created_at": "Wed Mar 25 19:10:50 +0000 2009", "blocking": false, "muting": false, "profile_sidebar_border_color": "EEEEEE", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423976765573197824/H8DOsOPm_normal.jpeg", "favourites_count": 14, "status": {"in_reply_to_status_id": null, "retweet_count": 1138, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "684896391169191938", "id": 684896391169191938, "text": "Congrats to one of my favorite humans @TheEllenShow on your @PeoplesChoice Favorite Humanitarian Award for @StJude !#PCAs", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [{"text": "PCAs", "indices": [116, 121]}], "user_mentions": [{"screen_name": "TheEllenShow", "id_str": "15846407", "id": 15846407, "indices": [38, 51], "name": "Ellen DeGeneres"}, {"screen_name": "peopleschoice", "id_str": "34993020", "id": 34993020, "indices": [60, 74], "name": "People's Choice"}, {"screen_name": "StJude", "id_str": "9624042", "id": 9624042, "indices": [107, 114], "name": "St. Jude"}]}, "created_at": "Thu Jan 07 00:36:39 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 5806, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 26565946, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "statuses_count": 3106, "profile_banner_url": "https://pbs.twimg.com/profile_banners/26565946/1424110230", "is_translator": false}, {"time_zone": "Mumbai", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "277434037", "following": false, "friends_count": 38, "entities": {"description": {"urls": []}}, "default_profile": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": true, "followers_count": 5403107, "location": "Mumbai", "screen_name": "RNTata2000", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 2741, "name": "Ratan N. Tata", "profile_use_background_image": true, "description": "Former Chairman of Tata Group. Personal interests : - aviation, automobiles, scuba diving and architectural design.", "url": null, "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", "profile_background_color": "C0DEED", "created_at": "Tue Apr 05 11:01:00 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "C0DEED", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1655289586/RNT-Image_01_normal.jpg", "favourites_count": 7, "status": {"in_reply_to_status_id": null, "retweet_count": 329, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "681440380705886208", "id": 681440380705886208, "text": "Deeply touched by the kind sentiments & best wishes from well wishers. Thanks so much .", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Mon Dec 28 11:43:41 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 1880, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 277434037, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 116, "is_translator": false}, {"time_zone": "New Delhi", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": 19800, "id_str": "270771330", "following": false, "friends_count": 396, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tata.com", "url": "http://t.co/KeVgcDr9Cg", "expanded_url": "http://www.tata.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466215926279323648/Kc2O7Ilv.jpeg", "notifications": false, "profile_sidebar_fill_color": "DDEEF6", "profile_link_color": "0084B4", "geo_enabled": false, "followers_count": 315462, "location": "Global", "screen_name": "TataCompanies", "verified": true, "has_extended_profile": false, "protected": false, "listed_count": 550, "name": "Tata Group", "profile_use_background_image": true, "description": "Official Twitter Channel of the Tata Group. \r\n@TataCompanies keeps you informed and updated on what\u2019s happening in the Tata group of companies.", "url": "http://t.co/KeVgcDr9Cg", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/466221238990295040/jjzIhNhC_normal.png", "profile_background_color": "0173BA", "created_at": "Wed Mar 23 06:52:57 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFFFFF", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/466221238990295040/jjzIhNhC_normal.png", "favourites_count": 1012, "status": {"retweet_count": 1, "retweeted_status": {"retweet_count": 1, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685166827698294784", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", "type": "photo", "indices": [116, 139], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", "display_url": "pic.twitter.com/w8uJG9nM2h", "id_str": "685166710010281984", "expanded_url": "http://twitter.com/TataTech_News/status/685166827698294784/video/1", "id": 685166710010281984, "url": "https://t.co/w8uJG9nM2h"}], "symbols": [], "urls": [], "hashtags": [{"text": "STEM", "indices": [21, 26]}], "user_mentions": [{"screen_name": "Lions", "id_str": "44666348", "id": 44666348, "indices": [83, 89], "name": "Detroit Lions"}, {"screen_name": "A4C_ATHLETES", "id_str": "2199969366", "id": 2199969366, "indices": [90, 103], "name": "ATHLETES FOR CHARITY"}, {"screen_name": "Detroitk12", "id_str": "57457257", "id": 57457257, "indices": [104, 115], "name": "DetroitPublicSchools"}]}, "created_at": "Thu Jan 07 18:31:16 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685166827698294784, "text": "Getting kids to love #STEM is easy because science.Having an NFL player helps too. @Lions @A4C_ATHLETES @Detroitk12 https://t.co/w8uJG9nM2h", "coordinates": null, "retweeted": false, "favorite_count": 6, "contributors": null, "source": "Twitter for iPhone"}, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685513894043975680", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 191, "resize": "fit"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id_str": "685166827698294784", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", "source_user_id_str": "278029752", "id_str": "685166710010281984", "id": 685166710010281984, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/685166710010281984/pu/img/KGX62iRpeQGt7hKD.jpg", "type": "photo", "indices": [139, 140], "source_status_id": 685166827698294784, "source_user_id": 278029752, "display_url": "pic.twitter.com/w8uJG9nM2h", "expanded_url": "http://twitter.com/TataTech_News/status/685166827698294784/video/1", "url": "https://t.co/w8uJG9nM2h"}], "symbols": [], "urls": [], "hashtags": [{"text": "STEM", "indices": [40, 45]}], "user_mentions": [{"screen_name": "TataTech_News", "id_str": "278029752", "id": 278029752, "indices": [3, 17], "name": "Tata Technologies"}, {"screen_name": "Lions", "id_str": "44666348", "id": 44666348, "indices": [102, 108], "name": "Detroit Lions"}, {"screen_name": "A4C_ATHLETES", "id_str": "2199969366", "id": 2199969366, "indices": [109, 122], "name": "ATHLETES FOR CHARITY"}, {"screen_name": "Detroitk12", "id_str": "57457257", "id": 57457257, "indices": [123, 134], "name": "DetroitPublicSchools"}]}, "created_at": "Fri Jan 08 17:30:23 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685513894043975680, "text": "RT @TataTech_News: Getting kids to love #STEM is easy because science.Having an NFL player helps too. @Lions @A4C_ATHLETES @Detroitk12 http\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Buffer"}, "default_profile_image": false, "id": 270771330, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466215926279323648/Kc2O7Ilv.jpeg", "statuses_count": 11644, "profile_banner_url": "https://pbs.twimg.com/profile_banners/270771330/1451565528", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "418981954", "following": false, "friends_count": 118, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "yayadacosta.com", "url": "https://t.co/YLjOWGxoVy", "expanded_url": "http://www.yayadacosta.com", "indices": [0, 23]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "notifications": false, "profile_sidebar_fill_color": "F6FFD1", "profile_link_color": "0099CC", "geo_enabled": false, "followers_count": 16568, "location": "New York, NY", "screen_name": "theyayadacosta", "verified": true, "has_extended_profile": true, "protected": false, "listed_count": 173, "name": "yaya dacosta", "profile_use_background_image": true, "description": "Chicago Med on NBC, 8/9C", "url": "https://t.co/YLjOWGxoVy", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/546186267780980736/mU3Rs5NV_normal.jpeg", "profile_background_color": "FFF04D", "created_at": "Tue Nov 22 20:15:43 +0000 2011", "blocking": false, "muting": false, "profile_sidebar_border_color": "FFF8AD", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/546186267780980736/mU3Rs5NV_normal.jpeg", "favourites_count": 330, "status": {"in_reply_to_status_id": 684845325157298176, "retweet_count": 0, "place": null, "in_reply_to_screen_name": "AndreRoyo", "in_reply_to_user_id": 22891868, "in_reply_to_status_id_str": "684845325157298176", "in_reply_to_user_id_str": "22891868", "truncated": false, "id_str": "685120871795683328", "id": 685120871795683328, "text": "@AndreRoyo Ah, so you're the reason for yesterday's studio blackout! \ud83d\ude02 Nice to hear from you. Happy New Year! How long r u in town? Call me", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "AndreRoyo", "id_str": "22891868", "id": 22891868, "indices": [0, 10], "name": "Andre Royo"}]}, "created_at": "Thu Jan 07 15:28:39 +0000 2016", "source": "Twitter for iPhone", "favorite_count": 0, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "default_profile_image": false, "id": 418981954, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "statuses_count": 757, "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "16419713", "following": false, "friends_count": 762, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "afropunk.com", "url": "http://t.co/mvOn1PAAXD", "expanded_url": "http://www.afropunk.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/573877803/6nr7xvcjgkugyvz5esks.jpeg", "notifications": false, "profile_sidebar_fill_color": "FFFFFF", "profile_link_color": "333333", "geo_enabled": true, "followers_count": 40541, "location": "Brooklyn, NY", "screen_name": "afropunk", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 811, "name": "AFROPUNK", "profile_use_background_image": false, "description": "Defining Culture.", "url": "http://t.co/mvOn1PAAXD", "profile_text_color": "333333", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/547858925169553408/rYeQ4ng3_normal.jpeg", "profile_background_color": "EEEEEE", "created_at": "Tue Sep 23 14:38:16 +0000 2008", "blocking": false, "muting": false, "profile_sidebar_border_color": "64FB00", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/547858925169553408/rYeQ4ng3_normal.jpeg", "favourites_count": 138, "status": {"retweet_count": 36, "in_reply_to_user_id": null, "possibly_sensitive": false, "id_str": "685502031365320704", "in_reply_to_user_id_str": null, "entities": {"media": [{"sizes": {"small": {"w": 340, "h": 297, "resize": "fit"}, "large": {"w": 507, "h": 443, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 507, "h": 443, "resize": "fit"}}, "media_url_https": "https://pbs.twimg.com/media/CYNkdxjWsAEcjpQ.jpg", "type": "photo", "indices": [119, 142], "media_url": "http://pbs.twimg.com/media/CYNkdxjWsAEcjpQ.jpg", "display_url": "pic.twitter.com/mbovF6KFek", "id_str": "685502030971056129", "expanded_url": "http://twitter.com/afropunk/status/685502031365320704/photo/1", "id": 685502030971056129, "url": "https://t.co/mbovF6KFek"}], "symbols": [], "urls": [{"display_url": "bit.ly/22PXZ9Z", "url": "https://t.co/j3ZRbspjlT", "expanded_url": "http://bit.ly/22PXZ9Z", "indices": [95, 118]}], "hashtags": [], "user_mentions": []}, "created_at": "Fri Jan 08 16:43:14 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 685502031365320704, "text": "FEATURE: Steffany Brown calls out microaggressions in funny illustration series more pics\n\u2014>https://t.co/j3ZRbspjlT https://t.co/mbovF6KFek", "coordinates": null, "retweeted": false, "favorite_count": 49, "contributors": null, "source": "Twitter Web Client"}, "default_profile_image": false, "id": 16419713, "blocked_by": false, "profile_background_tile": true, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/573877803/6nr7xvcjgkugyvz5esks.jpeg", "statuses_count": 14801, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16419713/1450711385", "is_translator": false}, {"time_zone": "Eastern Time (US & Canada)", "follow_request_sent": false, "contributors_enabled": false, "utc_offset": -18000, "id_str": "2578265913", "following": false, "friends_count": 12, "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "howmanysyrians.com", "url": "http://t.co/PUY0b0QcC0", "expanded_url": "http://howmanysyrians.com", "indices": [0, 22]}]}}, "default_profile": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "notifications": false, "profile_sidebar_fill_color": "000000", "profile_link_color": "DB553A", "geo_enabled": false, "followers_count": 2137, "location": "", "screen_name": "HowManySyrians", "verified": false, "has_extended_profile": false, "protected": false, "listed_count": 55, "name": "How Many More?", "profile_use_background_image": false, "description": "We will never forget the dead. We will never give up fighting for the living.", "url": "http://t.co/PUY0b0QcC0", "profile_text_color": "000000", "is_translation_enabled": false, "profile_image_url": "http://pbs.twimg.com/profile_images/574597345523843072/vxAfmuIC_normal.jpeg", "profile_background_color": "000000", "created_at": "Mon Jun 02 19:23:47 +0000 2014", "blocking": false, "muting": false, "profile_sidebar_border_color": "000000", "lang": "en", "profile_image_url_https": "https://pbs.twimg.com/profile_images/574597345523843072/vxAfmuIC_normal.jpeg", "favourites_count": 22, "status": {"retweet_count": 287, "retweeted_status": {"in_reply_to_status_id": null, "retweet_count": 287, "place": null, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "truncated": false, "id_str": "682684333501640704", "id": 682684333501640704, "text": "Happy New Year world. In 2016 we hope for peace. We hope for skies clear of aircraft dropping bombs on us. We hope for a future for our kids", "geo": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": []}, "created_at": "Thu Dec 31 22:06:43 +0000 2015", "source": "Twitter for iPhone", "favorite_count": 184, "favorited": false, "coordinates": null, "contributors": null, "retweeted": false, "lang": "en"}, "in_reply_to_user_id": null, "id_str": "683024524581945344", "in_reply_to_user_id_str": null, "entities": {"symbols": [], "urls": [], "hashtags": [], "user_mentions": [{"screen_name": "SyriaCivilDef", "id_str": "2468886751", "id": 2468886751, "indices": [3, 17], "name": "The White Helmets"}]}, "created_at": "Fri Jan 01 20:38:31 +0000 2016", "favorited": false, "in_reply_to_status_id": null, "lang": "en", "geo": null, "place": null, "in_reply_to_screen_name": null, "in_reply_to_status_id_str": null, "truncated": false, "id": 683024524581945344, "text": "RT @SyriaCivilDef: Happy New Year world. In 2016 we hope for peace. We hope for skies clear of aircraft dropping bombs on us. We hope for a\u2026", "coordinates": null, "retweeted": false, "favorite_count": 0, "contributors": null, "source": "Twitter for Android"}, "default_profile_image": false, "id": 2578265913, "blocked_by": false, "profile_background_tile": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 136366, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2578265913/1450390955", "is_translator": false}], "next_cursor": 1510410423140902959, "previous_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "1510410423140902959"} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 31b223d2..100a31d7 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -41,7 +41,7 @@ def testGetFriendIDs(self): resp_data = f.read() responses.add( responses.GET, - '{base_url}/friends/ids.json?screen_name=EricHolthaus&count=5000&cursor=-1'.format( + '{base_url}/friends/ids.json?screen_name=EricHolthaus&count=5000&stringify_ids=False&cursor=-1'.format( base_url=self.api.base_url), body=resp_data, match_querystring=True, @@ -52,7 +52,7 @@ def testGetFriendIDs(self): resp_data = f.read() responses.add( responses.GET, - '{base_url}/friends/ids.json?count=5000&screen_name=EricHolthaus&cursor=1417903878302254556'.format( + '{base_url}/friends/ids.json?count=5000&screen_name=EricHolthaus&stringify_ids=False&cursor=1417903878302254556'.format( base_url=self.api.base_url), body=resp_data, match_querystring=True, @@ -63,13 +63,18 @@ def testGetFriendIDs(self): self.assertEqual(len(resp), 6452) self.assertTrue(type(resp[0]) is int) + # Error checking + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetFriendIDs(total_count='infinity')) + @responses.activate def testGetFriendIDsPaged(self): with open('testdata/get_friend_ids_0.json') as f: resp_data = f.read() responses.add( responses.GET, - '{base_url}/friends/ids.json?count=5000&cursor=-1&screen_name=EricHolthaus'.format( + '{base_url}/friends/ids.json?count=5000&cursor=-1&screen_name=EricHolthaus&stringify_ids=False'.format( base_url=self.api.base_url), body=resp_data, match_querystring=True, @@ -215,6 +220,14 @@ def testGetFollowersIDs(self): self.assertEqual(len(resp), 7885) self.assertTrue(type(resp[0]) is int) + # Error checking + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetFollowerIDs(count='infinity')) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetFollowerIDs(total_count='infinity')) + @responses.activate def testGetFollowers(self): # First request for first 200 followers @@ -260,3 +273,43 @@ def testGetFollowersPaged(self): self.assertTrue(type(resp) is list) self.assertTrue(type(resp[0]) is twitter.User) self.assertEqual(len(resp), 200) + + @responses.activate + def testGetFollowerIDsPaged(self): + with open('testdata/get_follower_ids_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/followers/ids.json?count=5000&stringify_ids=False&screen_name=himawari8bot&cursor=-1'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + ncursor, pcursor, resp = self.api.GetFollowerIDsPaged( + screen_name='himawari8bot') + + self.assertTrue(type(resp) is list) + self.assertTrue(type(resp[0]) is int) + self.assertEqual(len(resp), 5000) + + with open('testdata/get_follower_ids_stringify.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{base_url}/followers/ids.json?count=5000&stringify_ids=True&user_id=12&cursor=-1'.format( + base_url=self.api.base_url), + body=resp_data, + match_querystring=True, + status=200) + + ncursor, pcursor, resp = self.api.GetFollowerIDsPaged( + user_id=12, + stringify_ids=True) + + self.assertTrue(type(resp) is list) + if sys.version_info.major >= 3: + self.assertTrue(type(resp[0]) is str) + else: + self.assertTrue(type(resp[0]) is unicode) + self.assertEqual(len(resp), 5000) From e3e9b51c2c202fe9ba3654ec9ac1e0d8159685fc Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 10 Jan 2016 12:04:26 -0500 Subject: [PATCH 109/533] refactoring Friends/Followers Get methods --- twitter/api.py | 547 ++++++++++++++++++++++++------------------------- 1 file changed, 265 insertions(+), 282 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index d354a082..63725609 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1509,99 +1509,7 @@ def DestroyBlock(self, id, trim_user=False): return Status.NewFromJsonDict(data) - def GetFriendsPaged(self, - user_id=None, - screen_name=None, - cursor=-1, - count=200, - skip_status=False, - include_user_entities=True): - """Make a cursor driven call to return the list of all friends. - - Args: - user_id: - The twitter id of the user whose friends you are fetching. - If not specified, defaults to the authenticated user. [Optional] - screen_name: - The twitter name of the user whose friends you are fetching. - If not specified, defaults to the authenticated user. [Optional] - cursor: - Should be set to -1 for the initial call and then is used to - control what result page Twitter returns. - count: - The number of users to return per page, up to a current maximum of - 200. Defaults to 200. [Optional] - skip_status: - If True the statuses will not be returned in the user items. - [Optional] - include_user_entities: - When True, the user entities will be included. [Optional] - - Returns: - next_cursor, previous_cursor, data sequence of twitter.User - instances, one for each follower - """ - - return self._GetFriendsFollowersPaged('/friends/list', - user_id, - screen_name, - cursor, - count, - skip_status, - include_user_entities) - - def GetFriends(self, - user_id=None, - screen_name=None, - cursor=None, - count=None, - limit_users=None, - skip_status=False, - include_user_entities=True): - """Fetch the sequence of twitter.User instances, one for each friend. - - If both user_id and screen_name are specified, this call will return - the followers of the user specified by screen_name, however this - behavior is undocumented by Twitter and may change without warning. - - The twitter.Api instance must be authenticated. - - Args: - user_id: - The twitter id of the user whose friends you are fetching. - If not specified, defaults to the authenticated user. [Optional] - screen_name: - The twitter name of the user whose friends you are fetching. - If not specified, defaults to the authenticated user. [Optional] - cursor: - Should be set to -1 for the initial call and then is used to - control what result page Twitter returns. - count: - The number of users to return per page, up to a maximum of 200. - Defaults to 200. [Optional] - limit_users: - The upper bound of number of users to return, defaults to None. - skip_status: - If True the statuses will not be returned in the user items. - [Optional] - include_user_entities: - When True, the user entities will be included. [Optional] - - Returns: - A sequence of twitter.User instances, one for each friend - """ - - return self._GetFriendsFollowers('/friends/list', - user_id, - screen_name, - cursor, - count, - limit_users, - skip_status, - include_user_entities) - def _GetIDsPaged(self, - # must be the url for followers/ids.json or friends/ids.json url, user_id, screen_name, @@ -1609,50 +1517,35 @@ def _GetIDsPaged(self, stringify_ids, count): """ - This is the lowlest level paging logic for fetching IDs. It is used soley by - GetFollowerIDsPaged and GetFriendIDsPaged. It is not intended for other use. + This is the lowest level paging logic for fetching IDs. It is used + solely by GetFollowerIDsPaged and GetFriendIDsPaged. It is not intended + for other use. - See GetFollowerIDsPaged or GetFriendIDsPaged for an explanation of the input arguments. + See GetFollowerIDsPaged or GetFriendIDsPaged for an explanation of the + input arguments. """ - # assert(url.endswith('followers/ids.json') or url.endswith('friends/ids.json')) - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) result = [] + parameters = {} if user_id is not None: parameters['user_id'] = user_id if screen_name is not None: parameters['screen_name'] = screen_name - if stringify_ids: - parameters['stringify_ids'] = True if count is not None: parameters['count'] = count + parameters['stringify_ids'] = stringify_ids + parameters['cursor'] = cursor - while True: - parameters['cursor'] = cursor - resp = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - - try: - result += [x for x in data['ids']] - except KeyError: - break - - if count is not None and len(result) >= count: - break + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - else: - break + if 'ids' in data: + result.extend([x for x in data['ids']]) - sec = self.GetSleepTime('/friends/ids') - time.sleep(sec) + next_cursor = data.get('next_cursor', 0) + previous_cursor = data.get('previous_cursor', 0) - return data['next_cursor'], data['previous_cursor'], result + return next_cursor, previous_cursor, result def GetFollowerIDsPaged(self, user_id=None, @@ -1660,7 +1553,7 @@ def GetFollowerIDsPaged(self, cursor=-1, stringify_ids=False, count=5000): - """Make a cursor driven call to return the list of all followers + """Make a cursor driven call to return a list of one page followers. The caller is responsible for handling the cursor value and looping to gather all of the data @@ -1675,16 +1568,25 @@ def GetFollowerIDsPaged(self, cursor: Should be set to -1 for the initial call and then is used to control what result page Twitter returns. + stringify_ids: + if True then twitter will return the ids as strings instead of + integers. [Optional] count: - The number of user id's to retrieve per API request. Please be aware that - this might get you rate-limited if set to a small number. + The number of user id's to retrieve per API request. Please be aware + that this might get you rate-limited if set to a small number. By default Twitter will retrieve 5000 UIDs per call. [Optional] Returns: - next_cursor, previous_cursor, data sequence of twitter.User instances, one for each follower + next_cursor, previous_cursor, data sequence of user ids, + one for each follower """ url = '%s/followers/ids.json' % self.base_url - return self._GetIDsPaged(url, user_id, screen_name, cursor, stringify_ids, count) + return self._GetIDsPaged(url, + user_id, + screen_name, + cursor, + stringify_ids, + count) def GetFriendIDsPaged(self, user_id=None, @@ -1707,58 +1609,47 @@ def GetFriendIDsPaged(self, cursor: Should be set to -1 for the initial call and then is used to control what result page Twitter returns. + stringify_ids: + if True then twitter will return the ids as strings instead of + integers. [Optional] count: - The number of user id's to retrieve per API request. Please be aware that - this might get you rate-limited if set to a small number. + The number of user id's to retrieve per API request. Please be aware + that this might get you rate-limited if set to a small number. By default Twitter will retrieve 5000 UIDs per call. [Optional] Returns: - next_cursor, previous_cursor, data sequence of twitter.User instances, one for each friend + next_cursor, previous_cursor, data sequence of twitter.User instances, + one for each friend """ url = '%s/friends/ids.json' % self.base_url - return self._GetIDsPaged(url, user_id, screen_name, cursor, stringify_ids, count) - - def GetFollowerIDs(self, - user_id=None, - screen_name=None, - cursor=-1, - stringify_ids=False, - count=5000, - total_count=None): - """Returns a list of twitter user id's for every person - that is following the specified user. + return self._GetIDsPaged(url, + user_id, + screen_name, + cursor, + stringify_ids, + count) + + def _GetFriendFollowerIDs(self, + url=None, + user_id=None, + screen_name=None, + cursor=None, + count=None, + stringify_ids=False, + total_count=None): + """ Common method for GetFriendIDs and GetFollowerIDs """ - Args: - user_id: - The id of the user to retrieve the id list for. [Optional] - screen_name: - The screen_name of the user to retrieve the id list for. [Optional] - cursor: - Specifies the Twitter API Cursor location to start at. - Note: there are pagination limits. [Optional] - stringify_ids: - if True then twitter will return the ids as strings instead of integers. - [Optional] - count: - The number of user id's to retrieve per API request. Please be aware that - this might get you rate-limited if set to a small number. - By default Twitter will retrieve 5000 UIDs per call. [Optional] - total_count: - The total amount of UIDs to retrieve. Good if the account has many followers - and you don't want to get rate limited. The data returned might contain more - UIDs if total_count is not a multiple of count (5000 by default). [Optional] + if cursor is not None or count is not None: + warnings.warn( + "Use of 'cursor' and 'count' parameters are deprecated as of " + "python-twitter 3.0. Please use GetFriendIDsPaged or " + "GetFollowerIDsPaged instead.", + DeprecationWarning, stacklevel=2) - Returns: - A list of integers, one for each user id. - """ + count = 5000 + cursor = -1 result = [] - if count: - try: - count = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) - if total_count: try: total_count = int(total_count) @@ -1769,35 +1660,75 @@ def GetFollowerIDs(self, count = total_count while True: - next_cursor, previous_cursor, data = self.GetFollowerIDsPaged( + if total_count is not None and len(result) + count > total_count: + break + + next_cursor, previous_cursor, data = self._GetIDsPaged( + url, user_id, screen_name, cursor, stringify_ids, count) - result += [x for x in data] + + result.extend([x for x in data]) if next_cursor == 0 or next_cursor == previous_cursor: break else: cursor = next_cursor - if total_count is not None: - total_count -= len(data) - if total_count < 1: - break + return result - sec = self.GetSleepTime('/followers/ids') - time.sleep(sec) + def GetFollowerIDs(self, + user_id=None, + screen_name=None, + cursor=None, + stringify_ids=False, + count=None, + total_count=None): + """Returns a list of twitter user id's for every person + that is following the specified user. - return result + Args: + user_id: + The id of the user to retrieve the id list for. [Optional] + screen_name: + The screen_name of the user to retrieve the id list for. [Optional] + cursor: + Specifies the Twitter API Cursor location to start at. + Note: there are pagination limits. [Optional] + stringify_ids: + if True then twitter will return the ids as strings instead of + integers. [Optional] + count: + The number of user id's to retrieve per API request. Please be aware + that this might get you rate-limited if set to a small number. + By default Twitter will retrieve 5000 UIDs per call. [Optional] + total_count: + The total amount of UIDs to retrieve. Good if the account has many + followers and you don't want to get rate limited. The data returned + might contain more UIDs if total_count is not a multiple of count + (5000 by default). [Optional] + + Returns: + A list of integers, one for each user id. + """ + url = '%s/followers/ids.json' % self.base_url + return self._GetFriendFollowerIDs(url, + user_id, + screen_name, + cursor, + stringify_ids, + count, + total_count) def GetFriendIDs(self, user_id=None, screen_name=None, cursor=None, - stringify_ids=False, count=None, + stringify_ids=False, total_count=None): """ Fetch a sequence of user ids, one for each friend. Returns a list of all the given user's friends' IDs. If no user_id or @@ -1827,93 +1758,17 @@ def GetFriendIDs(self, Returns: A list of integers, one for each user id. """ - result = [] - - if cursor is not None or count is not None: - warnings.warn( - "Use of 'cursor' and 'count' parameters are deprecated as of " - "python-twitter 3.0. Please use GetFriendsPaged instead.", - DeprecationWarning, stacklevel=2) - - count = 5000 - cursor = -1 - - if total_count: - try: - total_count = int(total_count) - except ValueError: - raise TwitterError({'message': "total_count must be an integer"}) - - if total_count and total_count < count: - count = total_count - - while True: - next_cursor, previous_cursor, data = self.GetFriendIDsPaged( - user_id, - screen_name, - cursor, - stringify_ids, - count) - result += [x for x in data] - - if next_cursor == 0 or next_cursor == previous_cursor: - break - else: - cursor = next_cursor - - if total_count is not None: - total_count -= len(data['ids']) - if total_count < 1: - break - - sec = self.GetSleepTime('/followers/ids') - time.sleep(sec) - - return result - - def GetFollowersPaged(self, - user_id=None, - screen_name=None, - cursor=-1, - count=200, - skip_status=False, - include_user_entities=True): - """Make a cursor driven call to return the list of all followers - - Args: - user_id: - The twitter id of the user whose followers you are fetching. - If not specified, defaults to the authenticated user. [Optional] - screen_name: - The twitter name of the user whose followers you are fetching. - If not specified, defaults to the authenticated user. [Optional] - cursor: - Should be set to -1 for the initial call and then is used to - control what result page Twitter returns. - count: - The number of users to return per page, up to a maximum of 200. - Defaults to 200. [Optional] - skip_status: - If True the statuses will not be returned in the user items. - [Optional] - include_user_entities: - When True, the user entities will be included. [Optional] - - Returns: - next_cursor, previous_cursor, data sequence of twitter.User - instances, one for each follower - """ - - return self._GetFriendsFollowersPaged('/followers/list', - user_id, - screen_name, - cursor, - count, - skip_status, - include_user_entities) + url = '%s/friends/ids.json' % self.base_url + return self._GetFriendFollowerIDs(url, + user_id, + screen_name, + cursor, + count, + stringify_ids, + total_count) def _GetFriendsFollowersPaged(self, - endpoint=None, + url=None, user_id=None, screen_name=None, cursor=-1, @@ -1925,8 +1780,9 @@ def _GetFriendsFollowersPaged(self, or followers. Args: - endpoint: - + url: + Endpoint from which to get data. Either + base_url+'/followers/list.json' or base_url+'/friends/list.json'. user_id: The twitter id of the user whose followers you are fetching. If not specified, defaults to the authenticated user. [Optional] @@ -1957,13 +1813,6 @@ def _GetFriendsFollowersPaged(self, "however this behavior is undocumented by Twitter and might " "change without warning.", stacklevel=2) - if endpoint == '/friends/list': - url = '%s/friends/list.json' % self.base_url - elif endpoint == '/followers/list': - url = '%s/followers/list.json' % self.base_url - else: - raise TwitterError({'message': 'endpoint must be either /friends/list or /followers/list'}) - parameters = {} if user_id is not None: @@ -1999,8 +1848,90 @@ def _GetFriendsFollowersPaged(self, return next_cursor, previous_cursor, users + def GetFollowersPaged(self, + user_id=None, + screen_name=None, + cursor=-1, + count=200, + skip_status=False, + include_user_entities=True): + """Make a cursor driven call to return the list of all followers + + Args: + user_id: + The twitter id of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose followers you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of users to return per page, up to a maximum of 200. + Defaults to 200. [Optional] + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + next_cursor, previous_cursor, data sequence of twitter.User + instances, one for each follower + """ + url = '%s/followers/list.json' % self.base_url + return self._GetFriendsFollowersPaged(url, + user_id, + screen_name, + cursor, + count, + skip_status, + include_user_entities) + + def GetFriendsPaged(self, + user_id=None, + screen_name=None, + cursor=-1, + count=200, + skip_status=False, + include_user_entities=True): + """Make a cursor driven call to return the list of all friends. + + Args: + user_id: + The twitter id of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of users to return per page, up to a current maximum of + 200. Defaults to 200. [Optional] + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + next_cursor, previous_cursor, data sequence of twitter.User + instances, one for each follower + """ + url = '%s/friends/list.json' % self.base_url + return self._GetFriendsFollowersPaged(url, + user_id, + screen_name, + cursor, + count, + skip_status, + include_user_entities) + def _GetFriendsFollowers(self, - endpoint=None, + url=None, user_id=None, screen_name=None, cursor=None, @@ -2064,13 +1995,13 @@ def _GetFriendsFollowers(self, break next_cursor, previous_cursor, data = self._GetFriendsFollowersPaged( - endpoint=endpoint, - user_id=user_id, - screen_name=screen_name, - count=count, - cursor=cursor, - skip_status=skip_status, - include_user_entities=include_user_entities) + url, + user_id, + screen_name, + cursor, + count, + skip_status, + include_user_entities) if next_cursor: cursor = next_cursor @@ -2121,7 +2052,58 @@ def GetFollowers(self, Returns: A sequence of twitter.User instances, one for each follower """ - return self._GetFriendsFollowers('/followers/list', + url = '%s/followers/list.json' % self.base_url + return self._GetFriendsFollowers(url, + user_id, + screen_name, + cursor, + count, + limit_users, + skip_status, + include_user_entities) + + def GetFriends(self, + user_id=None, + screen_name=None, + cursor=None, + count=None, + limit_users=None, + skip_status=False, + include_user_entities=True): + """Fetch the sequence of twitter.User instances, one for each friend. + + If both user_id and screen_name are specified, this call will return + the followers of the user specified by screen_name, however this + behavior is undocumented by Twitter and may change without warning. + + The twitter.Api instance must be authenticated. + + Args: + user_id: + The twitter id of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + screen_name: + The twitter name of the user whose friends you are fetching. + If not specified, defaults to the authenticated user. [Optional] + cursor: + Should be set to -1 for the initial call and then is used to + control what result page Twitter returns. + count: + The number of users to return per page, up to a maximum of 200. + Defaults to 200. [Optional] + limit_users: + The upper bound of number of users to return, defaults to None. + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + A sequence of twitter.User instances, one for each friend + """ + url = '%s/friends/list.json' % self.base_url + return self._GetFriendsFollowers(url, user_id, screen_name, cursor, @@ -4212,6 +4194,7 @@ def _RequestUrl(self, url, verb, data=None): raise TwitterError(str(e)) if verb == 'GET': url = self._BuildUrl(url, extra_params=data) + print('GETing URL', url) try: return requests.get( url, From 6a7e960822f24aef691ba7cedf7a2c853e591d90 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 10 Jan 2016 12:07:05 -0500 Subject: [PATCH 110/533] missed a debugging print statement that should have been deleted --- twitter/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index 63725609..3ad2fcc7 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -4194,7 +4194,6 @@ def _RequestUrl(self, url, verb, data=None): raise TwitterError(str(e)) if verb == 'GET': url = self._BuildUrl(url, extra_params=data) - print('GETing URL', url) try: return requests.get( url, From 076f1b8095261552a8b382e841ef80b88148bdfe Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 10 Jan 2016 12:12:33 -0500 Subject: [PATCH 111/533] based on previously named arg, total_count, GetFriends/GetFollowers should take that rather than limit_users --- tests/test_api_30.py | 4 ++-- twitter/api.py | 34 +++++++++++++++++----------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 100a31d7..ce4b241a 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -178,14 +178,14 @@ def testGetFriendsWithLimit(self): match_querystring=True, status=200) - resp = self.api.GetFriends(screen_name='codebear', limit_users=200) + resp = self.api.GetFriends(screen_name='codebear', total_count=200) self.assertEqual(len(resp), 200) def testFriendsErrorChecking(self): self.assertRaises( twitter.TwitterError, lambda: self.api.GetFriends(screen_name='jack', - limit_users='infinity')) + total_count='infinity')) self.assertRaises( twitter.TwitterError, lambda: self.api.GetFriendsPaged(screen_name='jack', diff --git a/twitter/api.py b/twitter/api.py index 3ad2fcc7..049f9d52 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1936,7 +1936,7 @@ def _GetFriendsFollowers(self, screen_name=None, cursor=None, count=None, - limit_users=None, + total_count=None, skip_status=False, include_user_entities=True): @@ -1944,9 +1944,9 @@ def _GetFriendsFollowers(self, or follower. Args: - endpoint: - Either '/followers/list' or '/friends/list' depending on which you - want to return. + url: + URL to get. Either base_url + ('/followers/list.json' or + '/friends/list.json'). user_id: The twitter id of the user whose friends you are fetching. If not specified, defaults to the authenticated user. [Optional] @@ -1959,7 +1959,7 @@ def _GetFriendsFollowers(self, count: The number of users to return per page, up to a maximum of 200. Defaults to 200. [Optional] - limit_users: + total_count: The upper bound of number of users to return, defaults to None. skip_status: If True the statuses will not be returned in the user items. @@ -1981,17 +1981,17 @@ def _GetFriendsFollowers(self, cursor = -1 result = [] - if limit_users: + if total_count: try: - limit_users = int(limit_users) + total_count = int(total_count) except ValueError: - raise TwitterError({'message': "limit_users must be an integer"}) + raise TwitterError({'message': "total_count must be an integer"}) - if limit_users <= 200: - count = limit_users + if total_count <= 200: + count = total_count while True: - if limit_users is not None and len(result) + count > limit_users: + if total_count is not None and len(result) + count > total_count: break next_cursor, previous_cursor, data = self._GetFriendsFollowersPaged( @@ -2018,7 +2018,7 @@ def GetFollowers(self, screen_name=None, cursor=None, count=None, - limit_users=None, + total_count=None, skip_status=False, include_user_entities=True): """Fetch the sequence of twitter.User instances, one for each follower. @@ -2042,7 +2042,7 @@ def GetFollowers(self, count: The number of users to return per page, up to a maximum of 200. Defaults to 200. [Optional] - limit_users: + total_count: The upper bound of number of users to return, defaults to None. skip_status: If True the statuses will not be returned in the user items. [Optional] @@ -2058,7 +2058,7 @@ def GetFollowers(self, screen_name, cursor, count, - limit_users, + total_count, skip_status, include_user_entities) @@ -2067,7 +2067,7 @@ def GetFriends(self, screen_name=None, cursor=None, count=None, - limit_users=None, + total_count=None, skip_status=False, include_user_entities=True): """Fetch the sequence of twitter.User instances, one for each friend. @@ -2091,7 +2091,7 @@ def GetFriends(self, count: The number of users to return per page, up to a maximum of 200. Defaults to 200. [Optional] - limit_users: + total_count: The upper bound of number of users to return, defaults to None. skip_status: If True the statuses will not be returned in the user items. @@ -2108,7 +2108,7 @@ def GetFriends(self, screen_name, cursor, count, - limit_users, + total_count, skip_status, include_user_entities) From 071b09068a49732c6e8714c842088293d31224ac Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 10 Jan 2016 19:43:56 -0500 Subject: [PATCH 112/533] removes self.__auth check to _RequestUrl, closing #276 --- twitter/api.py | 153 +++++-------------------------------------------- 1 file changed, 15 insertions(+), 138 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 049f9d52..d148ca67 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -540,8 +540,6 @@ def GetHomeTimeline(self, The home timeline is central to how most users interact with Twitter. - The twitter.Api instance must be authenticated. - Args: count: Specifies the number of statuses to retrieve. May not be @@ -580,8 +578,6 @@ def GetHomeTimeline(self, """ url = '%s/statuses/home_timeline.json' % self.base_url - if not self.__auth: - raise TwitterError({'message': "API must be authenticated."}) parameters = {} if count is not None: try: @@ -705,8 +701,6 @@ def GetStatus(self, include_entities=True): """Returns a single status message, specified by the id parameter. - The twitter.Api instance must be authenticated. - Args: id: The numeric ID of the status you are trying to retrieve. @@ -729,9 +723,6 @@ def GetStatus(self, """ url = '%s/statuses/show.json' % (self.base_url) - if not self.__auth: - raise TwitterError({'message': "API must be authenticated."}) - parameters = {} try: @@ -766,8 +757,6 @@ def GetStatusOembed(self, Specify tweet by the id or url parameter. - The twitter.Api instance must be authenticated. - Args: id: The numeric ID of the status you are trying to embed. @@ -797,9 +786,6 @@ def GetStatusOembed(self, """ request_url = '%s/statuses/oembed.json' % (self.base_url) - if not self.__auth: - raise TwitterError({'message': "API must be authenticated."}) - parameters = {} if id is not None: @@ -841,8 +827,8 @@ def GetStatusOembed(self, def DestroyStatus(self, id, trim_user=False): """Destroys the status specified by the required ID parameter. - The twitter.Api instance must be authenticated and the - authenticating user must be the author of the specified status. + The authenticating user must be the author of the specified + status. Args: id: @@ -851,9 +837,6 @@ def DestroyStatus(self, id, trim_user=False): Returns: A twitter.Status instance representing the destroyed status message """ - if not self.__auth: - raise TwitterError({'message': "API must be authenticated."}) - try: post_data = {'id': int(id)} except ValueError: @@ -878,8 +861,6 @@ def PostUpdate(self, verify_status_length=True): """Post a twitter status message from the authenticated user. - The twitter.Api instance must be authenticated. - https://dev.twitter.com/docs/api/1.1/post/statuses/update Args: @@ -919,9 +900,6 @@ def PostUpdate(self, Returns: A twitter.Status instance representing the message posted. """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) - url = '%s/statuses/update.json' % self.base_url if isinstance(status, str) or self._input_encoding is None: @@ -983,9 +961,6 @@ def PostMedia(self, Returns: A twitter.Status instance representing the message posted. """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) - url = '%s/statuses/update_with_media.json' % self.base_url if isinstance(status, str) or self._input_encoding is None: @@ -1047,9 +1022,6 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, Returns: A twitter.Status instance representing the message posted. """ - if not self.__auth: - raise TwitterError("The twitter.Api instance must be authenticated.") - if type(media) is not list: raise TwitterError("Must by multiple media elements") @@ -1140,8 +1112,6 @@ def PostUpdates(self, Unlike api.PostUpdate, this method will post multiple status updates if the message is longer than 140 characters. - The twitter.Api instance must be authenticated. - Args: status: The message text to be posted. @@ -1179,8 +1149,6 @@ def PostUpdates(self, def PostRetweet(self, original_id, trim_user=False): """Retweet a tweet with the Retweet API. - The twitter.Api instance must be authenticated. - Args: original_id: The numerical id of the tweet that will be retweeted @@ -1192,9 +1160,6 @@ def PostRetweet(self, original_id, trim_user=False): Returns: A twitter.Status instance representing the original tweet with retweet details embedded. """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) - try: if int(original_id) <= 0: raise TwitterError({'message': "'original_id' must be a positive number"}) @@ -1217,8 +1182,6 @@ def GetUserRetweets(self, trim_user=False): """Fetch the sequence of retweets made by the authenticated user. - The twitter.Api instance must be authenticated. - Args: count: The number of status messages to retrieve. [Optional] @@ -1292,9 +1255,6 @@ def GetRetweets(self, Returns: A list of twitter.Status instances, which are retweets of statusid """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instsance must be authenticated."}) - url = '%s/statuses/retweets/%s.json' % (self.base_url, statusid) parameters = {} if trim_user: @@ -1328,9 +1288,6 @@ def GetRetweeters(self, Returns: A list of user IDs """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instsance must be authenticated."}) - url = '%s/statuses/retweeters/ids.json' % (self.base_url) parameters = {} parameters['id'] = status_id @@ -1390,9 +1347,6 @@ def GetRetweetsOfMe(self, include_user_entities: When True, the user entities will be included. [Optional] """ - if not self.__auth: - raise TwitterError({'error': "The twitter.Api instance must be authenticated."}) - url = '%s/statuses/retweets_of_me.json' % self.base_url parameters = {} if count is not None: @@ -1427,8 +1381,6 @@ def GetBlocks(self, include_user_entities=False): """Fetch the sequence of twitter.User instances, one for each blocked user. - The twitter.Api instance must be authenticated. - Args: user_id: The twitter id of the user whose friends you are fetching. @@ -1448,9 +1400,6 @@ def GetBlocks(self, Returns: A sequence of twitter.User instances, one for each friend """ - if not self.__auth: - raise TwitterError({'message': "twitter.Api instance must be authenticated"}) - url = '%s/blocks/list.json' % self.base_url result = [] parameters = {} @@ -1482,8 +1431,7 @@ def DestroyBlock(self, id, trim_user=False): """Destroys the block for the user specified by the required ID parameter. - The twitter.Api instance must be authenticated and the - authenticating user must have blocked the user specified by the + The authenticating user must have blocked the user specified by the required ID parameter. Args: @@ -1493,9 +1441,6 @@ def DestroyBlock(self, id, trim_user=False): Returns: A twitter.User instance representing the un-blocked user. """ - if not self.__auth: - raise TwitterError({'message': "API must be authenticated."}) - try: post_data = {'user_id': int(id)} except ValueError: @@ -2027,8 +1972,6 @@ def GetFollowers(self, the followers of the user specified by screen_name, however this behavior is undocumented by Twitter and may change without warning. - The twitter.Api instance must be authenticated. - Args: user_id: The twitter id of the user whose followers you are fetching. @@ -2076,8 +2019,6 @@ def GetFriends(self, the followers of the user specified by screen_name, however this behavior is undocumented by Twitter and may change without warning. - The twitter.Api instance must be authenticated. - Args: user_id: The twitter id of the user whose friends you are fetching. @@ -2123,8 +2064,6 @@ def UsersLookup(self, screen_names, or twitter.User objects. The list of users that are queried is the union of all specified parameters. - The twitter.Api instance must be authenticated. - Args: user_id: A list of user_ids to retrieve extended information. [Optional] @@ -2140,8 +2079,6 @@ def UsersLookup(self, Returns: A list of twitter.User objects for the requested users """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) if not user_id and not screen_name and not users: raise TwitterError({'message': "Specify at least one of user_id, screen_name, or users."}) @@ -2177,8 +2114,6 @@ def GetUser(self, include_entities=True): """Returns a single user. - The twitter.Api instance must be authenticated. - Args: user_id: The id of the user to retrieve. [Optional] @@ -2193,9 +2128,6 @@ def GetUser(self, Returns: A twitter.User instance representing that user """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) - url = '%s/users/show.json' % (self.base_url) parameters = {} if user_id: @@ -2222,8 +2154,6 @@ def GetDirectMessages(self, page=None): """Returns a list of the direct messages sent to the authenticating user. - The twitter.Api instance must be authenticated. - Args: since_id: Returns results with an ID greater than (that is, more recent @@ -2257,9 +2187,6 @@ def GetDirectMessages(self, Returns: A sequence of twitter.DirectMessage instances """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) - url = '%s/direct_messages.json' % self.base_url parameters = {} if since_id: @@ -2293,8 +2220,6 @@ def GetSentDirectMessages(self, include_entities=True): """Returns a list of the direct messages sent by the authenticating user. - The twitter.Api instance must be authenticated. - Args: since_id: Returns results with an ID greater than (that is, more recent @@ -2320,9 +2245,6 @@ def GetSentDirectMessages(self, Returns: A sequence of twitter.DirectMessage instances """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) - url = '%s/direct_messages/sent.json' % self.base_url parameters = {} if since_id: @@ -2350,9 +2272,6 @@ def PostDirectMessage(self, screen_name=None): """Post a twitter direct message from the authenticated user. - The twitter.Api instance must be authenticated. user_id or screen_name - must be specified. - Args: text: The message text to be posted. Must be less than 140 characters. user_id: @@ -2363,9 +2282,6 @@ def PostDirectMessage(self, Returns: A twitter.DirectMessage instance representing the message posted """ - if not self.__auth: - raise TwitterError({'message': "The twitter.Api instance must be authenticated."}) - url = '%s/direct_messages/new.json' % self.base_url data = {'text': text} if user_id: @@ -2406,8 +2322,6 @@ def DestroyDirectMessage(self, id, include_entities=True): def CreateFriendship(self, user_id=None, screen_name=None, follow=True): """Befriends the user specified by the user_id or screen_name. - The twitter.Api instance must be authenticated. - Args: user_id: A user_id to follow [Optional] @@ -2445,8 +2359,6 @@ def _AddOrEditFriendship(self, user_id=None, screen_name=None, uri_end='create', def UpdateFriendship(self, user_id=None, screen_name=None, follow=True, **kwargs): # api compat with Create """Updates a friendship with the user specified by the user_id or screen_name. - The twitter.Api instance must be authenticated. - Args: user_id: A user_id to update [Optional] @@ -2467,8 +2379,6 @@ def UpdateFriendship(self, user_id=None, screen_name=None, follow=True, **kwargs def DestroyFriendship(self, user_id=None, screen_name=None): """Discontinues friendship with a user_id or screen_name. - The twitter.Api instance must be authenticated. - Args: user_id: A user_id to unfollow [Optional] @@ -2497,8 +2407,6 @@ def LookupFriendship(self, user_id=None, screen_name=None): Currently only supports one user at a time. - The twitter.Api instance must be authenticated. - Args: user_id: A user_id to lookup [Optional] @@ -2533,8 +2441,6 @@ def CreateFavorite(self, Returns the favorite status when successful. - The twitter.Api instance must be authenticated. - Args: id: The id of the twitter status to mark as a favorite. [Optional] @@ -2570,8 +2476,6 @@ def DestroyFavorite(self, Returns the un-favorited status when successful. - The twitter.Api instance must be authenticated. - Args: id: The id of the twitter status to unmark as a favorite. [Optional] @@ -2759,8 +2663,6 @@ def GetMentions(self, def CreateList(self, name, mode=None, description=None): """Creates a new list with the give name for the authenticated user. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/create Args: @@ -2794,8 +2696,6 @@ def DestroyList(self, slug=None): """Destroys the list identified by list_id or owner_screen_name/owner_id and slug. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/destroy Args: @@ -2846,8 +2746,6 @@ def CreateSubscription(self, slug=None): """Creates a subscription to a list by the authenticated user. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/subscribers/create Args: @@ -2898,8 +2796,6 @@ def DestroySubscription(self, slug=None): """Destroys the subscription to a list for the authenticated user. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/subscribers/destroy Args: @@ -2956,8 +2852,6 @@ def ShowSubscription(self, Returns the user if they are subscriber. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/subscribers/show Args: @@ -3033,8 +2927,6 @@ def GetSubscriptions(self, Does not include the user's own lists. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/subscriptions Args: @@ -3089,8 +2981,6 @@ def GetMemberships(self, Returns a maximum of 20 lists per page by default. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/memberships Args: @@ -3152,8 +3042,6 @@ def GetListsList(self, reverse=False): """Returns all lists the user subscribes to, including their own. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/list Args: @@ -3289,8 +3177,6 @@ def GetListMembers(self, """Fetch the sequence of twitter.User instances, one for each member of the given list_id or slug. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/members Args: @@ -3371,8 +3257,6 @@ def CreateListsMember(self, owner_id=None): """Add a new member (or list of members) to a user's list. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/members/create or /lists/members/create_all Args: @@ -3450,8 +3334,6 @@ def DestroyListsMember(self, screen_name=None): """Destroys the subscription to a list for the authenticated user. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/subscribers/destroy Args: @@ -3527,8 +3409,6 @@ def GetLists(self, cursor=-1): """Fetch the sequence of lists for a user. - The twitter.Api instance must be authenticated. - Twitter endpoint: /lists/ownerships Args: @@ -3588,8 +3468,6 @@ def UpdateProfile(self, skip_status=False): """Update's the authenticated user's profile data. - The twitter.Api instance must be authenticated. - Args: name: Full name associated with the profile. @@ -3697,8 +3575,6 @@ def UpdateBanner(self, skip_status=False): """Updates the authenticated users profile banner. - The twitter.Api instance must be authenticated. - Args: image: Location of image in file system @@ -3862,8 +3738,6 @@ def VerifyCredentials(self): A twitter.User instance representing that user if the credentials are valid, None otherwise. """ - if not self.__auth: - raise TwitterError({'message': "Api instance must first be given user credentials."}) url = '%s/account/verify_credentials.json' % self.base_url resp = self._RequestUrl(url, 'GET') # No_cache data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) @@ -4158,17 +4032,20 @@ def _CheckForTwitterError(self, data): def _RequestUrl(self, url, verb, data=None): """Request a url. - Args: - url: - The web location we want to retrieve. - verb: - Either POST or GET. - data: - A dict of (str, unicode) key/value pairs. + Args: + url: + The web location we want to retrieve. + verb: + Either POST or GET. + data: + A dict of (str, unicode) key/value pairs. - Returns: - A JSON object. + Returns: + A JSON object. """ + if not self.__auth: + raise TwitterError({'error': "The twitter.Api instance must be authenticated."}) + if verb == 'POST': if 'media_ids' in data: url = self._BuildUrl(url, extra_params={'media_ids': data['media_ids']}) From b0574505dd6e29725aa912e858d76faf1e737d00 Mon Sep 17 00:00:00 2001 From: Shichao An Date: Sun, 10 Jan 2016 20:29:30 -0800 Subject: [PATCH 113/533] Fixed wrong link target of PyPI badge --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 66e72a9a..00695f93 100644 --- a/README.rst +++ b/README.rst @@ -5,7 +5,7 @@ A Python wrapper around the Twitter API. By the `Python-Twitter Developers `_ .. image:: https://img.shields.io/pypi/v/python-twitter.svg - :target: https://pypi.python.org/pypi/parsedatetime/ + :target: https://pypi.python.org/pypi/python-twitter/ :alt: Downloads .. image:: https://travis-ci.org/bear/python-twitter.svg?branch=master From ad1b091de42ffd704304594b4fe7c517753b387c Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 12 Jan 2016 07:46:42 -0500 Subject: [PATCH 114/533] adds UploadMediaSimple for single upload POSTs to API. --- twitter/api.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index d148ca67..ed109186 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -928,6 +928,39 @@ def PostUpdate(self, return Status.NewFromJsonDict(data) + def UploadMediaSimple(self, + media, + additional_owners=None): + + """ Upload a media file to Twitter in one request. Used for small file + uploads that do not require chunked uploads. + + Args: + media: + File-like object to upload. + additional_owners: additional Twitter users that are allowed to use + The uploaded media. Should be a list of integers. Maximum + number of additional owners is capped at 100 by Twitter. + + Returns: + media_id: + ID of the uploaded media returned by the Twitter API or 0. + + """ + url = '%s/media/upload.json' % self.upload_url + parameters = {} + + parameters['media'] = media.read() + if len(additional_owners) > 100: + raise TwitterError({'message': 'Maximum of 100 additional owners may be specified for a Media object'}) + if additional_owners: + parameters['additional_owners'] = additional_owners + + resp = self._RequestUrl(url, 'POST', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + return data.get('media_id', 0) + def PostMedia(self, status, media, From 2da2da113685ae31a39cb2512722c4dae8ecb8ac Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 13 Jan 2016 06:35:05 -0500 Subject: [PATCH 115/533] adds first pass at parsing various media objects that can be passed to UploadMedia* methods --- twitter/twitter_utils.py | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index ca884093..e00ec297 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -1,5 +1,15 @@ # encoding: utf-8 +import mimetypes +import os import re +from tempfile import mkstemp + +try: + from urllib.request import urlopen +except ImportError: + from urllib import urlencode + +from twitter import TwitterError TLDS = [ "ac", "ad", "ae", "af", "ag", "ai", "al", "am", "an", "ao", "aq", "ar", @@ -148,3 +158,42 @@ def is_url(text): return True else: return False + + +def parse_media_file(passed_media): + img_formats = ['image/jpeg', + 'image/png', + 'image/gif', + 'image/bmp', + 'image/webp'] + video_formats = ['video/mp4'] + + # If passed_media is a string, check if it points to a URL, otherwise, + # it should point to local file. Create a file object for each case + # (just has to have a read() method). + if not hasattr(passed_media, 'read'): + if passed_media.startswith('http'): + filename = passed_media + data = urlopen(passed_media).read() + else: + with open(os.path.realpath(passed_media), 'rb') as f: + filename = passed_media + data = f.read() + + # Otherwise, if a file object was passed in the first place, + # create the standard reference to media_file (i.e., rename it to fp). + else: + filename = passed_media.name + data = passed_media.read() + + file_size = len(data) + + media_type = mimetypes.guess_type(os.path.basename(filename))[0] + if media_type in img_formats and file_size > 5 * 1048576: + raise TwitterError({'message': 'Images must be less than 5MB.'}) + elif media_type in video_formats and file_size > 15 * 1048576: + raise TwitterError({'message': 'Videos must be less than 15MB.'}) + elif media_type not in img_formats and media_type not in video_formats: + raise TwitterError({'message': 'Media type could not be deterimined.'}) + + return data, file_size, media_type From deab302b46ab3c3a023199f4c031609ac1139607 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 14 Jan 2016 18:05:48 -0500 Subject: [PATCH 116/533] adds chunked upload support to API and media checking function --- twitter/api.py | 128 ++++++++++++++++++++++++++++++++++++++- twitter/twitter_utils.py | 31 ++++++---- 2 files changed, 146 insertions(+), 13 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index ed109186..67e4adde 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -33,6 +33,7 @@ from requests_oauthlib import OAuth1 import io import warnings +from uuid import uuid4 from past.utils import old_div @@ -51,7 +52,10 @@ Status, Trend, TwitterError, User, UserStatus) from twitter.category import Category -from twitter.twitter_utils import calc_expected_status_length, is_url +from twitter.twitter_utils import ( + calc_expected_status_length, + is_url, + parse_media_file) CHARACTER_LIMIT = 140 @@ -134,6 +138,7 @@ def __init__(self, base_url=None, stream_url=None, upload_url=None, + chunk_size=1024*1024, use_gzip_compression=False, debugHTTP=False, timeout=None, @@ -204,6 +209,8 @@ def __init__(self, else: self.upload_url = upload_url + self.chunk_size = chunk_size + if consumer_key is not None and (access_token_key is None or access_token_secret is None): print('Twitter now requires an oAuth Access Token for API calls. ' @@ -961,6 +968,113 @@ def UploadMediaSimple(self, return data.get('media_id', 0) + def UploadMediaChunked(self, + media, + additional_owners=None, + media_category=None): + """ Upload a media file to Twitter in multiple requests. + + Args: + media: + File-like object to upload. + additional_owners: additional Twitter users that are allowed to use + The uploaded media. Should be a list of integers. Maximum + number of additional owners is capped at 100 by Twitter. + media_category: + Category with which to identify media upload. Only use with Ads + API & video files. + + Returns: + media_id: + ID of the uploaded media returned by the Twitter API or 0. + """ + url = '%s/media/upload.json' % self.upload_url + + media_fp, filename, file_size, media_type = parse_media_file(media) + + if not all([media_fp, filename, file_size, media_type]): + raise TwitterError({'message': 'Could not process media file'}) + + parameters = {} + + if additional_owners and len(additional_owners) > 100: + raise TwitterError({'message': 'Maximum of 100 additional owners may be specified for a Media object'}) + if additional_owners: + parameters['additional_owners'] = additional_owners + if media_category: + parameters['media_category'] = media_category + + # INIT doesn't read in any data. It's purpose is to prepare Twitter to + # receive the content in APPEND requests. + parameters['command'] = 'INIT' + parameters['media_type'] = media_type + parameters['total_bytes'] = file_size + + resp = self._RequestUrl(url, 'POST', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + try: + media_id = data['media_id'] + except KeyError: + raise TwitterError({'message': 'Media could not be uploaded'}) + + boundary = bytes("--{0}".format(uuid4()), 'utf-8') + media_id_bytes = bytes(str(media_id).encode('utf-8')) + headers = {'Content-Type': 'multipart/form-data; boundary={0}'.format( + str(boundary[2:], 'utf-8'))} + + segment_id = 0 + while True: + data = media_fp.read(self.chunk_size) + if not data: + break + body = [ + boundary, + b'Content-Disposition: form-data; name="command"', + b'', + b'APPEND', + boundary, + b'Content-Disposition: form-data; name="media_id"', + b'', + media_id_bytes, + boundary, + b'Content-Disposition: form-data; name="segment_index"', + b'', + bytes(str(segment_id).encode('utf-8')), + boundary, + bytes('Content-Disposition: form-data; name="media"; filename="{0}"'.format(filename), 'utf-8'), + b'Content-Type: application/octet-stream', + b'', + data, + boundary + b'--' + ] + body_data = b'\r\n'.join(body) + headers['Content-Length'] = str(len(body_data)) + print(body_data) + + resp = self._RequestChunkedUpload(url=url, + headers=headers, + data=body_data) + + # The body of the response should be blank, but the normal decoding + # raises a JSONDecodeError, so we should only do error checking + # if the response is not blank. + if resp.content.decode('utf-8'): + return self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + segment_id += 1 + + # Finalizing the upload: + parameters = { + 'command': 'FINALIZE', + 'media_id': media_id + } + + resp = self._RequestUrl(url, 'POST', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + return data + def PostMedia(self, status, media, @@ -4062,6 +4176,18 @@ def _CheckForTwitterError(self, data): if 'errors' in data: raise TwitterError(data['errors']) + def _RequestChunkedUpload(self, url, headers, data): + try: + return requests.post( + url, + headers=headers, + data=data, + auth=self.__auth, + timeout=self._timeout + ) + except requests.RequestException as e: + raise TwitterError(str(e)) + def _RequestUrl(self, url, verb, data=None): """Request a url. diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index e00ec297..806f4132 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -2,12 +2,11 @@ import mimetypes import os import re -from tempfile import mkstemp try: from urllib.request import urlopen except ImportError: - from urllib import urlencode + from urllib import urlopen from twitter import TwitterError @@ -169,24 +168,32 @@ def parse_media_file(passed_media): video_formats = ['video/mp4'] # If passed_media is a string, check if it points to a URL, otherwise, - # it should point to local file. Create a file object for each case - # (just has to have a read() method). + # it should point to local file. Create a reference to a file obj for + # each case such that data_file ends up with a read() method. if not hasattr(passed_media, 'read'): if passed_media.startswith('http'): - filename = passed_media - data = urlopen(passed_media).read() + filename = os.path.basename(passed_media) + data_file = urlopen(passed_media) + file_size = data_file.length else: with open(os.path.realpath(passed_media), 'rb') as f: - filename = passed_media - data = f.read() + filename = os.path.basename(passed_media) + data_file = f + data_file.seek(0, 2) + file_size = data_file.tell() # Otherwise, if a file object was passed in the first place, # create the standard reference to media_file (i.e., rename it to fp). else: filename = passed_media.name - data = passed_media.read() + data_file = passed_media + data_file.seek(0, 2) + file_size = data_file.tell() - file_size = len(data) + try: + data_file.seek(0) + except: + pass media_type = mimetypes.guess_type(os.path.basename(filename))[0] if media_type in img_formats and file_size > 5 * 1048576: @@ -194,6 +201,6 @@ def parse_media_file(passed_media): elif media_type in video_formats and file_size > 15 * 1048576: raise TwitterError({'message': 'Videos must be less than 15MB.'}) elif media_type not in img_formats and media_type not in video_formats: - raise TwitterError({'message': 'Media type could not be deterimined.'}) + raise TwitterError({'message': 'Media type could not be determined.'}) - return data, file_size, media_type + return data_file, filename, file_size, media_type From ee342d2d5b92024d953859f40c1e12835ea6ce47 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 14 Jan 2016 18:35:52 -0500 Subject: [PATCH 117/533] adds warning about a chunk_size that could result in 999+ APPEND commands to API --- twitter/api.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index 67e4adde..437ad255 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -211,6 +211,13 @@ def __init__(self, self.chunk_size = chunk_size + if self.chunk_size < 1024 * 16: + warnings.warn(( + "A chunk size lower than 16384 may result in too many " + "requests to the Twitter API when uploading videos. You are " + "strongly advised to increase it above 16384" + )) + if consumer_key is not None and (access_token_key is None or access_token_secret is None): print('Twitter now requires an oAuth Access Token for API calls. ' From 0df35c5ae138af0e774ff02df7386ed2f3954aca Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 14 Jan 2016 20:22:57 -0500 Subject: [PATCH 118/533] updates PostUpdate to include media param & normalizes media_category across Chunked/Simple upload --- twitter/api.py | 77 ++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 66 insertions(+), 11 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 437ad255..d6b5f878 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -866,6 +866,9 @@ def DestroyStatus(self, id, trim_user=False): def PostUpdate(self, status, + media=None, + media_additional_owners=None, + media_category=None, in_reply_to_status_id=None, latitude=None, longitude=None, @@ -924,27 +927,59 @@ def PostUpdate(self, if verify_status_length and calc_expected_status_length(u_status) > 140: raise TwitterError("Text must be less than or equal to 140 characters.") - data = {'status': u_status} + parameters = {'status': u_status} + + if media: + if len(media) > 1: + media_ids = [] + for media_file in media: + _, _, file_size, media_type = parse_media_file(media_file) + if media_type == 'image/gif' or media_type == 'video/mp4': + raise TwitterError({'message': 'You cannot post more than 1 GIF or 1 video in a single status.'}) + if file_size > self.chunk_size: + media_id = self.UploadMediaChunked( + media=media_file, + additional_owners=media_additional_owners, + media_category=media_category) + else: + media_id = self.UploadMediaSimple( + media=media_file, + additional_owners=media_additional_owners, + media_category=media_category) + media_ids.append(media_id) + else: + _, _, file_size, _ = parse_media_file(media) + if file_size > self.chunk_size: + media_ids = self.UploadMediaChunked( + media, + media_additional_owners) + else: + media_ids = self.UploadMediaSimple( + media, + media_additional_owners) + parameters['media_ids'] = media_ids + if in_reply_to_status_id: - data['in_reply_to_status_id'] = in_reply_to_status_id + parameters['in_reply_to_status_id'] = in_reply_to_status_id if latitude is not None and longitude is not None: - data['lat'] = str(latitude) - data['long'] = str(longitude) + parameters['lat'] = str(latitude) + parameters['long'] = str(longitude) if place_id is not None: - data['place_id'] = str(place_id) + parameters['place_id'] = str(place_id) if display_coordinates: - data['display_coordinates'] = 'true' + parameters['display_coordinates'] = 'true' if trim_user: - data['trim_user'] = 'true' + parameters['trim_user'] = 'true' - resp = self._RequestUrl(url, 'POST', data=data) + resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return Status.NewFromJsonDict(data) def UploadMediaSimple(self, media, - additional_owners=None): + additional_owners=None, + media_category=None): """ Upload a media file to Twitter in one request. Used for small file uploads that do not require chunked uploads. @@ -955,6 +990,9 @@ def UploadMediaSimple(self, additional_owners: additional Twitter users that are allowed to use The uploaded media. Should be a list of integers. Maximum number of additional owners is capped at 100 by Twitter. + media_category: + Category with which to identify media upload. Only use with Ads + API & video files. Returns: media_id: @@ -969,11 +1007,16 @@ def UploadMediaSimple(self, raise TwitterError({'message': 'Maximum of 100 additional owners may be specified for a Media object'}) if additional_owners: parameters['additional_owners'] = additional_owners + if media_category: + parameters['media_category'] = media_category resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - return data.get('media_id', 0) + try: + return data['media_id'] + except KeyError: + raise TwitterError({'message': 'Media could not be uploaded.'}) def UploadMediaChunked(self, media, @@ -1080,7 +1123,10 @@ def UploadMediaChunked(self, resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - return data + try: + return data['media_id'] + except KeyError: + raise TwitterError({'message': 'Media could not be uploaded.'}) def PostMedia(self, status, @@ -1115,6 +1161,15 @@ def PostMedia(self, Returns: A twitter.Status instance representing the message posted. """ + + warnings.warn(( + "This endpoint has been deprecated by Twitter. Please use " + "PostUpdate() instead. Details of Twitter's deprecation can be " + "found at: " + "dev.twitter.com/rest/reference/post/statuses/update_with_media", + DeprecationWarning + )) + url = '%s/statuses/update_with_media.json' % self.base_url if isinstance(status, str) or self._input_encoding is None: From 06858ae116d5efb6f7de70e57d4ec2619887b43d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 15 Jan 2016 06:55:39 -0500 Subject: [PATCH 119/533] fixes typo in GetUserStream for stall_warnings --- twitter/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index d148ca67..ed384da6 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3681,7 +3681,7 @@ def GetUserStream(self, track=None, locations=None, delimited=None, - stall_warning=None, + stall_warnings=None, stringify_friend_ids=False): """Returns the data from the user stream. @@ -3722,8 +3722,8 @@ def GetUserStream(self, data['locations'] = ','.join(locations) if delimited is not None: data['delimited'] = str(delimited) - if delimited is not None: - data['stall_warning'] = str(stall_warning) + if stall_warnings is not None: + data['stall_warnings'] = str(stall_warnings) resp = self._RequestStream(url, 'POST', data=data) for line in resp.iter_lines(): From e11fa274894725ef83c7625362ffcf44108bd607 Mon Sep 17 00:00:00 2001 From: jeremy Date: Sat, 16 Jan 2016 09:04:01 -0500 Subject: [PATCH 120/533] fixes and adds deprecation warnings re old PostMedia methods --- twitter/api.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index d6b5f878..1bcc1c0d 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1166,9 +1166,9 @@ def PostMedia(self, "This endpoint has been deprecated by Twitter. Please use " "PostUpdate() instead. Details of Twitter's deprecation can be " "found at: " - "dev.twitter.com/rest/reference/post/statuses/update_with_media", + "dev.twitter.com/rest/reference/post/statuses/update_with_media"), DeprecationWarning - )) + ) url = '%s/statuses/update_with_media.json' % self.base_url @@ -1231,6 +1231,11 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, Returns: A twitter.Status instance representing the message posted. """ + + warnings.warn(( + "This method is deprecated. Please use PostUpdate instead, " + "passing a list of media that you would like to associate " + "with the updated.", DeprecationWarning)) if type(media) is not list: raise TwitterError("Must by multiple media elements") From da9bd560a06b859c60df5fee231e05fca3386598 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 16 Jan 2016 11:30:56 -0500 Subject: [PATCH 121/533] updates to chunked media to deal with closed file handling, and list of media objects --- twitter/api.py | 13 ++++++++++--- twitter/twitter_utils.py | 11 ++++++----- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 1bcc1c0d..914311d8 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -930,7 +930,7 @@ def PostUpdate(self, parameters = {'status': u_status} if media: - if len(media) > 1: + if type(media) is list and len(media) > 1: media_ids = [] for media_file in media: _, _, file_size, media_type = parse_media_file(media_file) @@ -1075,7 +1075,10 @@ def UploadMediaChunked(self, segment_id = 0 while True: - data = media_fp.read(self.chunk_size) + try: + data = media_fp.read(self.chunk_size) + except ValueError: + break if not data: break body = [ @@ -1100,7 +1103,6 @@ def UploadMediaChunked(self, ] body_data = b'\r\n'.join(body) headers['Content-Length'] = str(len(body_data)) - print(body_data) resp = self._RequestChunkedUpload(url=url, headers=headers, @@ -1114,6 +1116,11 @@ def UploadMediaChunked(self, segment_id += 1 + try: + media_fp.close() + except: + pass + # Finalizing the upload: parameters = { 'command': 'FINALIZE', diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index 806f4132..b2d5acb1 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -176,15 +176,16 @@ def parse_media_file(passed_media): data_file = urlopen(passed_media) file_size = data_file.length else: - with open(os.path.realpath(passed_media), 'rb') as f: - filename = os.path.basename(passed_media) - data_file = f - data_file.seek(0, 2) - file_size = data_file.tell() + data_file = open(os.path.realpath(passed_media), 'rb') + filename = os.path.basename(passed_media) + data_file.seek(0, 2) + file_size = data_file.tell() # Otherwise, if a file object was passed in the first place, # create the standard reference to media_file (i.e., rename it to fp). else: + if passed_media.mode != 'rb': + raise TwitterError({'message': 'File mode must be "rb".'}) filename = passed_media.name data_file = passed_media data_file.seek(0, 2) From 0cfd989526a4cc5ab449f7ed7be3b976673bbebc Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 16 Jan 2016 16:24:19 -0500 Subject: [PATCH 122/533] fixes deprecation warning for PostMultipleMedia --- twitter/api.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index 914311d8..16206217 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -57,6 +57,8 @@ is_url, parse_media_file) +warnings.simplefilter('always', DeprecationWarning) + CHARACTER_LIMIT = 140 # A singleton representing a lazily instantiated FileCache. @@ -1242,7 +1244,7 @@ def PostMultipleMedia(self, status, media, possibly_sensitive=None, warnings.warn(( "This method is deprecated. Please use PostUpdate instead, " "passing a list of media that you would like to associate " - "with the updated.", DeprecationWarning)) + "with the updated."), DeprecationWarning, stacklevel=2) if type(media) is not list: raise TwitterError("Must by multiple media elements") From 372fde3a22ada8ab5a6d29f50cc7d31dffe86bdf Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 16 Jan 2016 16:35:10 -0500 Subject: [PATCH 123/533] fixes PostUpdate with multiple media so that media_ids is properly a comma-separated string of ids --- twitter/api.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 16206217..4d0348a0 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -959,7 +959,7 @@ def PostUpdate(self, media_ids = self.UploadMediaSimple( media, media_additional_owners) - parameters['media_ids'] = media_ids + parameters['media_ids'] = ','.join([str(mid) for mid in media_ids]) if in_reply_to_status_id: parameters['in_reply_to_status_id'] = in_reply_to_status_id @@ -1004,8 +1004,11 @@ def UploadMediaSimple(self, url = '%s/media/upload.json' % self.upload_url parameters = {} - parameters['media'] = media.read() - if len(additional_owners) > 100: + media_fp, filename, file_size, media_type = parse_media_file(media) + + parameters['media'] = media_fp.read() + + if additional_owners and len(additional_owners) > 100: raise TwitterError({'message': 'Maximum of 100 additional owners may be specified for a Media object'}) if additional_owners: parameters['additional_owners'] = additional_owners From d5f51a88466ea4560214beea3b8ec48ebd1e9358 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 17 Jan 2016 12:22:01 -0500 Subject: [PATCH 124/533] fixes error in getting name of a file object passed to parse_media_file --- twitter/twitter_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index b2d5acb1..3e03e220 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -186,7 +186,7 @@ def parse_media_file(passed_media): else: if passed_media.mode != 'rb': raise TwitterError({'message': 'File mode must be "rb".'}) - filename = passed_media.name + filename = os.path.basename(passed_media.name) data_file = passed_media data_file.seek(0, 2) file_size = data_file.tell() From c967aee83a012298bd3ffbdff0e0966459600184 Mon Sep 17 00:00:00 2001 From: Rad Date: Mon, 18 Jan 2016 00:40:18 -0500 Subject: [PATCH 125/533] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 00695f93..f5175f06 100644 --- a/README.rst +++ b/README.rst @@ -84,7 +84,7 @@ The library provides a Python wrapper around the Twitter API and the Twitter dat Using with Django ---- -Additional template tags that expand tweet urls and urlize tweet text. See the django template tags available for use with python-twitter: https://github.com/radlws/python-twitter-django-tags +Additional template tags that expand tweet urls and urlize tweet text. See the django template tags available for use with python-twitter: https://github.com/radzhome/python-twitter-django-tags ----- Model From 3442e17f083455855c51b0633b2957f9051d26bf Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 19 Jan 2016 19:49:09 -0500 Subject: [PATCH 126/533] adds test data for using responses --- testdata/168NQ.jpg | Bin 0 -> 44772 bytes testdata/get_blocks.json | 1 + testdata/get_direct_messages.json | 1 + testdata/get_favorites.json | 1 + testdata/get_follower_ids.json | 1 + testdata/get_follower_ids_paged.json | 1 + testdata/get_friends.json | 1 + testdata/get_friends_ids.json | 1 + testdata/get_help_configuration.json | 1 + testdata/get_home_timeline.json | 1 + testdata/get_list_members.json | 1 + testdata/get_list_timeline.json | 1 + testdata/get_list_timeline_id.json | 1 + testdata/get_lists.json | 1 + testdata/get_lists_list.json | 1 + testdata/get_lists_list_screen_name.json | 1 + testdata/get_lists_list_user_id.json | 1 + testdata/get_memberships.json | 1 + testdata/get_mentions.json | 1 + testdata/get_replies.json | 1 + testdata/get_retweeters.json | 1 + testdata/get_retweets.json | 1 + testdata/get_retweets_of_me.json | 1 + testdata/get_search.json | 1 + testdata/get_search_geocode.json | 1 + testdata/get_sent_direct_messages.json | 1 + testdata/get_status.json | 1 + testdata/get_status_extra_params.json | 1 + testdata/get_status_oembed.json | 1 + testdata/get_trends_current.json | 1 + testdata/get_trends_woeid.json | 1 + testdata/get_trends_woeid_exclude.json | 1 + testdata/get_user.json | 1 + testdata/get_user_retweets.json | 1 + testdata/get_user_suggestion.json | 1 + testdata/get_user_suggestion_categories.json | 1 + testdata/get_user_timeline.json | 1 + testdata/get_users_search.json | 1 + testdata/lookup_friendship.json | 1 + testdata/post_media.json | 1 + testdata/post_update.json | 1 + testdata/post_update_extra_params.json | 1 + testdata/post_update_with_media.json | 1 + testdata/ratelimit.json | 1 + testdata/users_lookup.json | 1 + testdata/verify_credentials.json | 1 + 46 files changed, 45 insertions(+) create mode 100644 testdata/168NQ.jpg create mode 100644 testdata/get_blocks.json create mode 100644 testdata/get_direct_messages.json create mode 100644 testdata/get_favorites.json create mode 100644 testdata/get_follower_ids.json create mode 100644 testdata/get_follower_ids_paged.json create mode 100644 testdata/get_friends.json create mode 100644 testdata/get_friends_ids.json create mode 100644 testdata/get_help_configuration.json create mode 100644 testdata/get_home_timeline.json create mode 100644 testdata/get_list_members.json create mode 100644 testdata/get_list_timeline.json create mode 100644 testdata/get_list_timeline_id.json create mode 100644 testdata/get_lists.json create mode 100644 testdata/get_lists_list.json create mode 100644 testdata/get_lists_list_screen_name.json create mode 100644 testdata/get_lists_list_user_id.json create mode 100644 testdata/get_memberships.json create mode 100644 testdata/get_mentions.json create mode 100644 testdata/get_replies.json create mode 100644 testdata/get_retweeters.json create mode 100644 testdata/get_retweets.json create mode 100644 testdata/get_retweets_of_me.json create mode 100644 testdata/get_search.json create mode 100644 testdata/get_search_geocode.json create mode 100644 testdata/get_sent_direct_messages.json create mode 100644 testdata/get_status.json create mode 100644 testdata/get_status_extra_params.json create mode 100644 testdata/get_status_oembed.json create mode 100644 testdata/get_trends_current.json create mode 100644 testdata/get_trends_woeid.json create mode 100644 testdata/get_trends_woeid_exclude.json create mode 100644 testdata/get_user.json create mode 100644 testdata/get_user_retweets.json create mode 100644 testdata/get_user_suggestion.json create mode 100644 testdata/get_user_suggestion_categories.json create mode 100644 testdata/get_user_timeline.json create mode 100644 testdata/get_users_search.json create mode 100644 testdata/lookup_friendship.json create mode 100644 testdata/post_media.json create mode 100644 testdata/post_update.json create mode 100644 testdata/post_update_extra_params.json create mode 100644 testdata/post_update_with_media.json create mode 100644 testdata/ratelimit.json create mode 100644 testdata/users_lookup.json create mode 100644 testdata/verify_credentials.json diff --git a/testdata/168NQ.jpg b/testdata/168NQ.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60fcef3c145adc6492f40a72e450fc373e4cca7a GIT binary patch literal 44772 zcmbTd2UJtv`YpP4Dxrib5(p4YFtO8wgt`%>h(g4!sPv-r&{5ogq9TT-s7Q$-0yb=b zC@QEl3q-*NsA#An2vP;hTl~%#=bU%PxcA-n-wrbtJ3GlB zR~vYG2|Qr?AZ+_bh6T@_ABJre_r0@i9AUN{3U3g$)n?m1|7tJ!=bC@D(b=|VK%ghQ zX7-+gJp(*v+fQKoNJO|7Y~$C$c2b0&S0rq=!Zyo4JirgOr(jzpz{^bl06}*4e3+Mq zFKp|=wruD|XKUCt13*gF=fB$S|J4rjih}nEfOSxCbf}+?Zy1B)v5=w1<8c{wUXlJ@ zVPQ-8ZXSExLOmJQK>@*Tfzbf`tIxBa0!p)E%YcJyq{lNdTB^Sc4*$Q8|KpqgzUu$n zn4Q~yT`{`;pE*NRpa19Fe?I%4b3x|;;EuzwN&C+^_cH)g90EYC?LX&OA^_wM0#M%k zU;R;?jThgruwawr%OfKrm-%^lESnwBe;@y!7ySFm|9#`Xes9_A@BMr17^}Rz-NOCD z7_)=w5#%2f9?B2|yLosqmj16n{6GHSf8Ex9-NzDVFK@3jvH!Y<+2+6E8a9+K`~fPvmjQ)l6@VXn4hYIJ0Pm6q-$DL8Z)+)= z!R*T0qTTzixQA`{{y(q(uNPb@{1Yee^I^=Mwszjg@CXl$m~F!~G5bOU(m)=l02rT_)2!5ZKMHiB(n7w`bSAOM7dNU#sYgCuYaq=Azl8{~rvpafh4H$erc z0yUrxJOg6z8nlB>&(9{G&)BR`O793Cf&Q^9HC7T}iSxHv1E18yU3 zC(Z{Kf{Vc�hbyap!SYaOJof+%w#3TqkY-H;xB*8N4cf9)2mFi?_x*;kVM4Xd!$i z3={qk<%o3RVxkGrp176hLyROQ5wnOFiDkrE;%j0zae_o5sgl?vW0DnLUE#aQlcrTlna!*lx9jdWky<2nk{WEy-|9PbiDLw>1)!p z(jC&HGBPsrWq2~{W&C6?nbR`YWg28Y%lwp8l3gTgE$bp1E-RERlC73~FFPtHC$~Tj zmD?^CCMT3Dk$WunQErN=OkGB`r+QKkP|s4!sjsL*@)UU;c`Nx{@-gyR^0(xh<-aLV z6c#90E4V4dDV$ZPRCuc}uBfc2r|6^@pqQd~NwHC}Pl>FwKxws-r_w>C0;R`F5@ozH zQ`uVCLpf3Tf^w~Lw+cyxtzxgTN9CBxRh1@{;W6Iu_n`n8p{Ewuf#PiQ~X{>qrcuwwW#PBWe`hUd}e+06@|cWz$OyqWpz`J3h^ z%rBk)fho=8GQF86n2(slEN#|0);`u{R+|n*hpXeOb4sUPXL131!IlMw7gQ|hW2>?4 z*)i

    <*3`$C4AmInQZbNLt8UxOZXhLh&Npq7{pL7oA^1nO!iGn9nzN zGe2kEX~D2?wGdf!TF$d{vpjG41!bb1=tZ>GYN6F0t1DJRD|J_ft}I(QX>DS?-@1Ag zewFR2_&3qdlo69!CwkvF7ZL95wb`Eywc5m%9?LF*E?1$GFui3xm ziG!@e28V2iFKZXA4PAS89d6y4b(!lr9CaK69V?uGlf6@>(+57AAHu)4p0u97{_Of5 zXFcbA&h;CVH|*YUX~V?El^atxwr}EW3g7f-v;1b4%_W;Bx2)Qdv88kC@~!)~KHH|g z&2QVC?d0v7w_n^ozGL-{lRLUyR=6a&yxGa#8MU)uZN8XB3j0%i;9=#~~XmoFkO-x}dA=V@I z(Y|^6;`e>tZ?*qi91`aq_virgz`+CEm@QTuFCD)({zZarLPo+^;+Dj_2Q?332PKDW z4_!{8CWR)wJ#2b7{|MoT-;t)H21m~v{gdpO{PdXav8-diQanj+9524_EkBbl%x^=Vj%Z%13ui@0Q(L zcCV;vUe($AbMB`;kbZFR!QY25567#6tH0Iw)JPufe$@VW>*LlZ>z_2$I@C7Q+0;F* zx2k{GVBS#GXwq2ul>4;enbEWI=PRC`sJHVZ{EFidE5EU^IhM2|Mw$p5p6T=SO>8q`GdlTtdI1M=RYm{RN86O zdH?gO&(FVX_|h)%kPLJQx_)&Z?2+rq>ecQo>C^A4>bL0^f8Fu5dmwmV=3COB;$Y4Y zXXy5K^!xMSt;5|Tp(B5Pq>R!=i^dGc9*y(IKTZTp%uFUv(WZ)ja(~uOZ<+3$iTp+W zb^7hHZt}FF|HMi6=EVpU2;7peTimA!B$%5#SUN zydv`V3DAa|h6w2cJZ8Dd?1A9$1R{wnMUj?)7nCUg9Qs705 zZ0+pVY}mMI^AX5)U3qI(+14az^HflUb)upUFO7aG~&G zQE|zoo40P4l~>%Uy!+_!liIrahQ_C_T3TPfdHe2t+vhKmuI`@RzW%QxKSsyKCnl$U zPS5rW0r-D)>)$>5U-|_H0l^XAkdkNnh2SD*JFZ9|&eJ0)S*<6#g(%P0kC#$enSSm@ z4TWjoJUque^rf^a%kZ<#$ZXgC>Dm8X#}fWWJ^OdZ{?o5EAd5%fDiR@&VGq7Zj(#Kfkj}i*~{`b-kZre*&yi50>Skwol$4g5i^QP(|>xkMaaF6?oZtge9kU+?k&9v zxTcD?@A+Je3_&S9_ARk-VIX0ft?9d7?OIgHLC=qJOmF#Qq;l#LF{&Iw_KqVU*B3wA{;{+99U;l z;+rVFBuq_5@cPpz>~$}zK`@XFoQzz43?_DDgAI!pR;T5kgYQUEbtPYYaW7gYygwqo z%T~2p?t8^$#yNec_xC8}iKOdnO|87u#@L34&hzxc2W~kmUPV=TC~JGC2V;)v^!Mo1 z-v@GLgP2!(xe)QF1?=1f7Bk4W2p^ky{F|jRsYaW1XZ~52qDa2VGkSmi&`(6_UBH3;u^UV3#y`kl$y5RmvE|CtR!GS=5kFyD!BG#$LgC-|k84Y2n* zH+3xnbHq4`r@7|+pCW>OgWy!qb20M3>1W@kT(IzD^P=9o_hx*+ifj6`c3ecs8?vns zw!1Gpex{=MXFInuuhS!b$QMUCIU3LO=@1hy`v_=_=CLn-5;zy$`n-@JUz$c=lZA}xr>1^OfNHa+Wg8B1FTV(CJV)%H}OzY2s+n`Dql0JY+ zInj8HB7BO(EEyaaI=G1R-I&d*(`&;tKIKfqMZu@W1)cz+&MsHaFcErbC-asWyHiAbGEW_%>Ui9UkLUNKS z>X4jp5h)$6(Ji@;mdsz*aHdVF&fpC;k1)9S-GqopYqmnEUYjIZt>DvS$SZ8lHmk=Z zvoIBKn3WKh!w0d{-ZJ1Yab`2(*Hdv~N5o4pJ-imIvioYv$H}In(p&T7`#)l`$lD(x zLJf2Av=}$0ZLD0_&i&lh={Y*!J2s7F%ghWuld!70Q0HlGJtQfXaxt;V)?iv?X_@Rxe_n~ z*S~BQef$eH*Zjs5A8$iZ!>fRAot|302&J)83@nD63c;ew0ZTUKc;vN$2OCc6AJRc; z%nwUYIZCr3peNY%-Ukdqgb2^PV+eYWXZnV_-SG-Fff*tDla7=mF&Q`k&vU%Rwo6of3x-xIO#%%;*%A;#AjJq8T#KIGZd0BV&mHu$Q z;NfR;Iep#R;tqz1NVE&1w3^0{Mzh{G81tDr(1Uqptw4AlTiVv~JJopeq- z4mc4%ysp|%8x%HDZ$daTr$LFsz-&ikv5>DE9P&2*DW(vEOeKR|ClEtjT8~ib^xU-g zMrmX^j|f&-ZJxO=zZTB>Fc*eKOt9@|lv3R##wCQrr^N7yN3LAVRyK6aC`y}KZj#rE z?EFE`Z2UfmN<~+jA*j5PZc5#im6;h3opIesqRq>{JsWsd*5aAjl%cjeDQ%&2yM23l zj!!W`Oe8UkNS4yTv8d-a2Y|5`z+%&(h-ha6FDw6Ry0NJ-z{WpEwGmIB<`d8I&2C{9 zlQAI4J@S@vCPeu@T}Sysz%aKR{f?4B7acCWO`7f9&h}#>V$>Sjs++xcCwE^31}tjj zAWHRYo7>Y^55qeL-$0NCL2)ofTynyGagb;A?(!Ze@*zi3R0!BkXDxrn0Nt2uurXc2 zs_RnH4S`ddGDd?~lm`cU&NhkZ%Xiu?UodrE54N;Ft*v9{rQI$+7524X`0?xzm#d~# zgdY(}cg?@&zA{8CNklaRN)L|NJlbR5CMpJxdnU)l-ODG5CnYq&8l*-DNh=^(g91o)K({X0v8_Z-kVT$ZBGG130 zbpC#_(aEB9mt4wTcWst59>LYfrWjW?JX*GOI@lMVmwU=IWYWf909DMAaKU~KsMEJK z1V&RzTv=8p!>QO6|xm79l8$#EQuY z6H%7E`mk*0(u;oQHqT>uwz)*GJS7%qL{bftDgeRa?hK%s`3L_j`1(h2xcNwxUQzqj z6%UUFNXqYJ?A@5LY1RHtn{URp8Kj8x^f3|D$adND4+f|dPm_Z$88(hz_A9WhDE)GO zgv^EhmOaiZez#TYY^{DC(t9fXD8di*#h*?$YS^?t1eK*No#KNKAy))|6~6d449}}6 zk*blAK?eem@=adJE8BZ@ut%c8Q3T65~+@)Ve|jQR#wW@`#9N*Ohi%sNZhmNIGBwks+)W@OBmuLoEWS(IUc! zJbl|h4pK>z6oTc}HD+R@(Uk&Wt>HULlHct#yNai^ZiCNxcSPi)g+ilvuMmy2ZGsx+ z#RCSY;=U)Ik-s^}%n^EK>KYJqjR;JAr7iq>%Q*;_$?BXI6OZlCxZKd2_fcu2osqGb ze9$F6b1EAoN3VL7WtX8FLu?}V2vFHR?m$a6&@~wvK;?x#ha>71rzZ+8Vrq75#&~bu z7&r)`41v~z2V-EcXy(4j3?J`k>_Ng*hU$QbK-Z1|U-vnD$(7kL{QdCloy%*c<1z&W z?TvG~$L~FT_0`!ROUdE>5duzy2;k6!zVGE~z5s-H?7$iTX#FT9A@niiIr{=t6rSZI zrc6wVC_VR-><0G+W;Kjl2~5AG5KOXPV&9dL7m`_L!Y8`D%{u{IaigwIK{g-+{%oUE zvqr>xK$4fB(ks6;IeyDY2}v#OMP>Pw5DY$INFU1kj>-(Y!l?EQF94&ys6_=?vPEen zwVuh$^TnC{dT*8h!NtqdPi8(r)?SLjkazb*3a-7Zhauk;@)4WMm5hi8U-ccMMKYU3 z(LQXtn6NA^)OIp8C2(_|FzPLdJA@6cxa zupD5DQMiABI>gKEHWN zy#4)S0WO^Y*BK^~nh763$&N`F(g5RCP|y4Ub8UPNrgBI-Yz!`CT09~Ujsci*!S4>A z`(XLP?_-dlnay%@a`2~D7|v-!6U;mGvBobLt1;+gOiG454r4ZR*$+5?E`SlDWNre} z2dFzRJq8K|S-Uodcj6k?hHB_V2fJR}+nSC0&yAt>NM zYPNWx^=%K48Jvzcs#{Esw?=IC)$-f12lrHzU&4^D!x#)9`gmvJ1yHiH`yokBUbZI5 z5K%Qq89|ZykC2)K?Ew*^gKw`x?wn`KECXhCwR3jp*nSvH2HsANClC*(tT!@!-Ve%* zjYjVHxluR7Bt9LYr%a3S%es>7FJwq<=e$39rM2ZmTU1K3L)g{9~O2Id82fB9};99F0s0AGUeus!@G3e;hehOs>J7OJRUzDm5 z$*e!7?6xGsN%x-8q6_Yf^_gVB+$O6gU0p#lQw7=Bt5qpNjuTx{(R>jCxMG@pBTU#72~1onDWfQ^TS#V?s(=VHSw7xY4YJ>5 zlqUUPUM)~#o`bnE-+g~EvOj(h#ZC7Tl7VAP4#XmZCJqvknGq^LDe-w#e5BslPDE_@ z3jdZaOgJGS^k7Tc$aJ=QR@l)CFEZ_Yz(H(c6;UZJ zWR3vjnZQvEHC`@3!R}K8NEnE+_R`TJ^4%-`Mo&wBB&-o4^^QK| zl)m;}@+9aK4?(FNHNgfDIUP|oLvXm<2^vQ?4lQG5L_Moh zo9ohfbCNbVE|S}=`c+-Eq;%(}C?D$p?R6(_1-ZXn8tmp0rmstUa1qlR{fOb~N2CFY z)|sdSXGen;6_Cj8!4IHR!op_qD@?(4RGbX%mF(Q=@;iUVa@`Iq6$<^~eV& zbjYWDAmwb-)Pst`s54p(QtAeC$QTnd8@^yF(=pIF;(c!vk-LqwGkcl|kQU0-^r>S@ z`hUE$7WC{fy6N&ru|6x~r%#Bp!ca}85k;*_*3-uj*_P^tlC7YcFa)~wWVj@QApmV= zo*O`AGHeXu;lQTX!D$DnyPsmz#1sKawoZrk*W46HRorn3`+ae9Sq&YLP#HFHA!zB{ z88(6V_bd#GD#rqt4lY0g=C>Tsq#8gylu#{bfs2zI1O@9QG~{8?fjyxA*MTch>@BT> zLuQoEd#{pem%1Mv99sV8U9*0%{DL3HCWVfAb-ws4XR9w5E_S5lDwx+>$}R&S$20Xg zyouO_f$rJ9ZF5vR4ag_06%O3J(EU&vTvO{>&TX<&0ZPW2m0eny#+pZACM2&WJUQ;E~oP&F~I8QHi58wq()f-xrR*lsx?d?ED`Q!`W zK(A$n5z&1Iq}YiAZ5Y$ti6wxNQOXj99s<_OBy>Ut!YS_07@&9c(qL-fqdO}lB_aaB zhy9Ze3>run{pHO?H`))=b_WfM2m)r#jSgFSHbC`5AjbtzVyVbKf$GoyG_)}h!m(4q zPB6J2);t6jL`f?8QDh(iswFa;z{kzO=RWaixev@G;S3WA#Ket>-(YlQ+h6pRq`c@^ zwESt+uLrFNrCA$}aljeVP;#Y+&@e_bgvq`Uh;b1xb%HDcq(HLy_tLY0vjCDXr11sN zN|7%E{!_NKG2au+Y>TE!ADf&gH@SF5_fA>mkzXTrCb}Z&?1{4Csbib(y&2zIQF;Ht z$%}bDJU>mLgEF)~k5rFCBy$P5BVp4fMC8C#kvlJS{t~6bWN(yrAHLOuLi1C~$sA%Q zMTB5xov9vB-f&?mqAQ-J&-rN+4QT{D7-p;{TNQ929W#ZdU2kP}k56{Ax;?%7Oe#x^ z*Ow(mIk_NxuRh>bdYD>Sj}2Y2zXea+fnUN;WiFER)$MjC>KJPJxyOFO{%6I z>LT`W=;m_iT8TeI2#;im*J4@u&M z9AK^o%^^=AMAcnYKKW2kbIqgaqbPNCKuYy6*KGU+&<#^F%Y#_XBVn3JD~%U|&L14y zQ0|r8{R^WtPox(=tk}D4^2xQe{#FcCvfoqT7BY=iV~DIu(-%PS%gHRq<~W+jPJ4=p z_pFaJkw^H%XvcoFzo1MAN#!eZr!|0P>raQ#-I=2fR?4qWwL;~=oW|x^qw3p84j-3; zPlXp5rKk75!PMb8Nd}?Ctmz(1{jpyI)UOFvZkgjE8NL2fE!!MQR{Jd8Uj2-oamZBh zbTDO{Yk3lENnWTEoL1s))yW5T8zy74peWPk^g|1ss%*I|WE_IL^+JYg52i5ei~D%i zPj2vC(%z{ht;~mKxbBskSj(SM8tcevjWmV;o%8O?N-HwE7)p9#2N$wu*%WAdFf#M& zFojr&AyDjZhs6a{Hgo<5b}$bjA#+DQ|^f{_c+j?U+biHNX&1c zQu2-;ZlNSF2*K`9GyW>{bYTvq3=Z{{k2+KGR^*zM=!R74Q=x3oJ_*nrd8RR9{81K? z(&@@4ol3eL_BQ;P=6r|tSe>dnLVQSYyZaFX88*|n^-%AjZ} zp?-U!Q|`GPGfFRrb)O_FQ5`3bWYAq_0tFz_XMv2A9;#X)iaPB0=9h-om0f$vcYEKs zcPG8I|5YI2X>yV56WM(q41Qw4k+Ivo7pC}V3Q)y4ix9@>3&6o=I9is7@afemKwhMM z2rOn6)0`_cl5E$bl-5v4tw{0}Wx&q;1H&%$%smi5&WPm`?+2}ZU1fgB#rN(|zWJf? zg6K%qNhxQ$v)5=&jL}yZC&7m5i;xL0RLPmJTqS52LL--~#PkK2i8NSOjsIf^P7{WG zk%+Y5s4tl8XtN69{=w#PgV{8npafXqlYPE8JI~|zqYR}$mxZk3MXd+M`*2GnY=Ri4 z+z*LCCM1uz&Tn#Qf_KmgrQL*zU!j-RJZmeB*KY^T_UK_X@~DWgg%c@Dg-e^)3!OYE zgZEJ)$~mE5met&OTLhy*$bIm@_6rfrtL}^X69$mXHyBmkv>2$F^(KS4G}F`2DIoD! zIr&$C*`i*3<;402zQ}1jq_@Oljf1`E>Tg~Ky!6<#=-LheKmubko6P%gH=3f%i*de% z$311m1st_Su`^Kuza|)GaI-zLTFv?4BfhbD90e#+N)N^DOZDr z3=65=$#tH|-liI^vQMk!+66U|S-RVm`Rv4PRxuls1N!zm+XWdVbW54BkRU4tQan~X%%KO<9H~~2 zcPCETNrXHRfyurIlPc28g>KnR?#$O{8tpqOE15cMjj9gX{b&+Q-rrx0yPY_BJSE)R z7x4I$@9l4}IlHAAZ-mA|6ztzMSEzga+ae2hYGkaK;M3g&0eh`~LFT;%va0D26HLBq{W5xOp>136pyZNo#o=u?gn#rde%0Ig(@rwaQ!lfuE}C2jLKpR^ zl(^&sLuZex3FVd;CfpD%yFEn=u2lZ+Tw)Fh`p(3RRcJ_xG{AA_nJvj+ZCAiI4syu~ zMrHJO$a$sA_&DvWU}2{Oy63Otxoqezt65sV0Cd-0E)NV{Gkc3#7HZGQe^>Bx5X^}EnEhn#+sr-O}0>< zfcq$1AN{uRD=eqbzu>cL*-*~i=vK$m*MHx%EHgZZ&-!8T(3P-ns?O0wOkR9)*FE2axI7Hui&RsnaAT(4wkCA}%CFpX$sO~TpB!jY`+{5W_Fh+2sUbAVc3h;m8 z_N;_mQ3wn&^PsjunshBqz=kw~4D%Z(1v7wgc$!vctGNy=XC|Ul;-<Xm(%UJid{jA^dlzgV8wE1U;5&u<)f-`&Ygkv4>-7Gp!zFkwuA~T zW`U3b#kF%G+BneXiv(*xJFv3Pwh%0nCn%!`8xP6;)A%OHHWJ^$^4^Q?6Wp4bnF2$Q zlh+FJ!xHNs8iGJGEM^+=H&nXXg8_Z|lgte&8C5S6X=>KFFY+Drrp1J9UC_#0=r7cR zVS>pHiHHOraz831^2r$=MCI*XtrRR0ft;MbzzUT$*Aupaz^)QaUog-FjgBwTMnBzz zE$<+7Se~*@N2P5`2EIZ#*Mzpmk99zkZ25Z+SZQVP2%Bpvr6Xvbk16w5NGi1B=$;cI z%K1Br?az<|BmI+4Qm9?^mdoEhe1*;H@}T>`5?F6MB&Z(*8T+}j#>rRcqGSkC3t^$o z7ZxlzV4!-i7A)JC0_`a^CX6xDP{@@U-0nfMd9Tfzp|Am)1Sx+_hpgul>({=o?rXXr z5$2kRNoGZp$205T8X({J?F;IIprA=Q{9HK zzWD;nK|U_)c#=^7v&9fRa*TmVDV!n3-DtiK*yho&+TAKIfW)5On+SEj=FEhM(8m*z zU6C3l|4)~q}*S+l1ni?A1wp@5O1QLe^rrB=};$$A|3!p>R3cBBEOcpTH<59U@ zvyeU_FwdH&KIra}f5xs_D`!$f!s#_g22hgGtR)ZzS1-v?66*%~S4^}HmjSQd>rK9Z$yNbA?T}QJ{5?(=LhK?aLqlXp1k>nXHA9RvZ-6rmeJDt# zrlIe~g*My*T}K=EHLij6vuU@w9cn>*T8yU{cjxDk%@QFBCux@fOpx;2K&Y6e_(-GL z7i{Uak{_u~_t80Bf5Fxotj@_0B(ms{Fp2ElW1;$b>^O7X+vT5+FI};1SSV zEz#MSQI+@@_~K2zPV`LdHW~Wdm6j6dk%7Vwt@&F~V1r?-d}f-3AXJtqLjh6pc={^S$G>$)4OJ(|dSfRu)?r7mg# zhLiX1!62|*v4hDnH<&WeAqJ#a=sG?7_9M6eYNr~qPOz1TGE`c+e2vECGdgkf6~7L#x(6Zk@~xyB>&9Up`S%R@sa6arfgo$3p;Ada|tuzE0jee67eRNv_s7hktXta!{XGwq zWB|1=o-Ui>11l6fz8-Xho*qinWy%b^!PKJqU>2^~0EMXvH5f*e9xO%Sg};7taJAR= z-Aer)DU$O13tT$KKA;p~b(n~(saCK2X$~EZUHx-t7gn&(iRAWLs_fmo zS;?<_`d~@Wayj)I(x29&v{2*Iwe2N_pxVab1PEz`_fFMFM3q=htn=KO6M5*S1sHQ) zd`+_ioh`s?c?qNrb}lNneQMDBa67nn`D6d7r1lwOyPcL# ztj0;0N*-?z8uRiW+iU22d}LTN;1jZ5{m%0|`%Jj=a6}_% z=|^ka1<@}hwF#pZVfrvIn+_VaJjN$LHnMwO-D`+q_N}#a6 zd(FfhlLb7u&A~b^9~O8P@t3{KgVC~9%h4nTR^@+?I7qB(1suM4cY~cE0OJQ>HPJK_ zlFz-D9WJlD@nJ`!jLDT`P3epao?5YrVlh7Mh2{GP?{3^UVwtsr9#{vhbipSG`jVDR z80Yw8u;ET(3QU5FaF>P9#Xr*7OM|>ufkd?tz&Z3=@*)#jv&CKR7_ep2Aors|1~moU z-+O9mV78w)O5OK5OwFne`i1zD)(ab@ZOtY{c)W%%3cA9TTnRMz0FyA*TnMB?S|Ruq zWobGjY+zg`LtB1J+t!;Uc(zPyJlsLno!z=^wOmyw<>*pVo->6o*j|U$?{ZuRHu9$T z`vO``EpU9bU1pxzp$B3Xt6_I{yKruxNiUoC9Xda#V=zoTm~`(Q5y*?`!Hl=mR!ANN zbk=R+agwUFihrZN z``q#MRGuqkg4Y1P^sLLc399kGtVz%T=+%xF5rTG&Au9^I-{gmA4xW5cK3W%=v8tQq zv^K$nPY7aVR7Sej3hm9{ieN;D$n%%3FTlJ< zKjh!QO<$c_A>UE;?Qb4lojN}=y{7yanxIh$N^a)cB5(~isdA=`VB829B)0fa_b6?PQKpLz~h=xV+HhmMH z`+zs6%b(MH9afSEqf_dD%Pukmp7AN2%FvGI*4gfYPt@fl8iETRj1;Xut$?5tDSxlU z{1D)LPcZ05HB%2-u%o`$#Q5KJN~*H5$luEvG_6&iM_PI5!VgN{ERXMEL0a)x4U!8J zuyGSph}O!tlUe~sOfC@G?z!j_eU6*3#l{FU67d% z`J(^1$K(B|oEqGf^>hr+g4>hMy}z4*_Cp=(`^+dBdhw5!1izq{Ni#s_A{BsTm_&+X zrk7nX+`mS1rGt#aXT_k7o%5pd8A6oFZL&2-MbeqP?3GhMk403&VYD9=H$-?f07)jc z4{Edfx+aNmuhN*A7?^a&ck=N_Kgi{80wW*}P^PsDPEv~-?@c@?Wq8rF% zKo$Tv`W8heaonbCKUb-fAFgS> zqgXi(^Q1BKV6MxAGo*oz^p%xHohC|paKHA3Y_R_Na%Rh{TgrDJf{YmC4W{+{%RCv5 zwjQrNF&`#6H$sN|c7O)!%E!U{o>wU%26E}bC(~bm0LXyhg%31 z&rf)kGBycoL0!Y9Vq`RKA1rcm%^^u6_?Y|Rdd`y0gs>zVA7;E)B1a`#_rR^i-PR3l zlt0Ttpt*JyI9hdz5zJz@6`Vq2dN11$NE#&%%K#wf{#;fs?+O$X#=We8%jN_J*R}~L5(J~ z@8aVRmw*{{zzY3gFetq>vn&b^hc?s}mUs~^t!_Wu3wJi?q!c6kJF39@E!p>&W^N88 z@iXnGH%_tX&}80tEmBq;tc^79Lss6HhqBH1_@RKJvJ*8SG}~RG2}4A266!YU@B45+ zvFf?j<(=hOPh}ckz3EKK(n&iQYNA9Yq~teYG**j)I#X}q+^3b_IJo6*E#|P^))mYX z;WZuMzKaYetrGxeBd-F!lw7Yk(-e{dH_Or!q2Ov{Cj;npKuB=`kxKzrl>iwO#XWnz z*}L~N%q=}7@gt^g6Kqfmwkx;&1wJw%?iMXQbN8m|{%+E}7efsdd`IUPrBEGx5!)BJ z1zcEjhD7LHAi{=1Iz__pc!kZShx1;*f*Tx7Q%^pwR1?l+9^|VWt{UImDF(zH2)}-Q zyy=f%4DKU#9n&;G<-Lx3th}YvmD^Y`BNe_b zzv-DvdAHW~0B5{w*3aZ?Dx*0#1dY$IuZL?lSRQWCdAXV%Vzy;5(_|=I+BPdRZbN#r znpupP!1(;YEgNL4ZcjMlc3UY#oDKFcO&5uDj>1wW?oH8!uj)(3?nYeoF)!>O`(JmW z*`|!wY-lhO6L%dZK%156nd6%I9aZ(emht*SUK8a>dX?)MinLv|TLMqhCe+}am?)S$ zGAptvw8l<8Qay7SGPRZrUnDe?V#Wu-(ah5O@X2C{A?W+!XYE@2?w-(*`{zE~h;9Wu zgt1~=*P-@0160n`HU{YB*}-jCmpA;NABdfGo)zz7Lr$=|mu&BzzToJDiCf~r8UmbS zv(&}6GmO4;z+d6HQmGIN>3QZvpmDRHo37jp*E}@Rmqn>@Mb!Mq>IdSl8EQrhJelq( z@Viu_;$v4{erub1Wm-jZ4=wwGAXcork=IvlK%4$7|0^2q&bPY9hHrQ@d;?O=bui~l{bUq zB0JOu%f*p=XbL&)A_Cq67g&p7%`B}+9Ne`w&vEeV$d93cl(8lbzRiLjS8qwTSoDke z#$v^k?W&un9=GY{oXq~F^FkaSxz;UJ+vsK91ezJT4cECZ_mUZU@LLkw2fj zt;^2!=!Fa$>0(jFb4LI|?G2GvQJ+2+J<(2jt6H9~P&N0;RA}r}+{?XMg`N{VzHn#J zJ*;7T3>w@Mk>5f_E_ad>{{k=hBNnPt1)b|z$4XZF6@PUovW=WL*s54i;oV3jETB=z zD6;!>HuyRBi}s_3%D?ogZr-iTYgzwt#o8AI1JnLVJ2Y47#*Kw~Bx%=bfW9bK4nDm# z+}w8K!?Vt<-+ij?oq2w<+3-+Tdg^9xv&ssY6zu&#!MR5w5{WiwL*IWXyV_WlKLp?2rax^%ms^~8#=cZ6GH?ah!^7z;>^ z=I!SoMZS1wV-ldl8Fw4_2<>3SD<@|ZmD1AK#j*#N$Ey)QzpzmR}v4iIwU}&kY!?QG6mleC>-Pxe}HryHcR1 zQ49R`#Qg3l^(lJiQtO-Ucm1crPotMlp5HtA>?UW~dv=e1ehhfdK%h9`;B)8@Gq~+J zquJp0-9t~e+Fwjv-k4>zIBqbqOLqUaz&cY{pxGeo9Trhko}AXVz1I%64E}D3M`h;! z3~YF!w~Nb22B>YYKnyD(jT?<;(?0OmbS{j1*kQ`Lez!qrav7g?zy!=VO^ANqdFZ=z@5-sYh3}&BmJ&<% zE%hngquj4|+Vk$cGlkYw87O)qK?UePkM0EWc+0W_gXD(%FFVJ6{snmxZ+`p*eIf9H zuc;7J6~GvU4AUarqt^SD^4zNhs=>7zC-8lg`w*c zk;;I_RNGAqp$Kl@UOpH(<2`k3;+6$1apSOe{^x<+a;$IZ?M*FJEzcF~YTw(;RlGJ= ztCF1pLbc?)QYXBp&axv%*oQt_ro@~*@a+T=Kin=Mm3A(UEv4?+?p1NrO#8B~NzvhO zrFCUBbc%=DsFg|TJ$<*s`%+3k+erQ+P3Feo@wZPtCBz(WdiZ$h^!O?@zJjG)SN|OErKZK`ygVO+@jq zduQhvdSx!hsF%%54TPEAHWQ;j*HuK8ox?U0Use*{?3ng z!P2cTQ9Bj-8sirE@F}(?ShJ!Y3;cFBOYM&`tVM)~#klduity1T>p##mq_APKrO{LH zD6+^V#wQzG4_HP#zx!^ya^-4wTUJE63h!0`pW!i7GH-xjK!=Qdewap4pFMu?mW`wx&3~fI#Lj2o7rbx z8X>uMI>Y?T!_b@xj(hUOVo@RwIdxiiMXoL`9bit5n=v@n1g?=Z}j5N zPE8e_%qa=S{G4yO*oRonOc;dj5^#FX4W??&{y!9c%(OO-SWwFr;^_(Ab??KGs(`a zP`|m1a4@EsaSNFt&B)O$^w~-%fQz=A4OhHN!SeR1OKRKL7s+^o zfnyR;wf{X3i^t3m#oBQKewpiFbtYsagNKkcqyd}-yI?M47cYY-+hR6%hASsR;}99s zIjG*wSQ_V?rl2)ua$x^(W7L{pnkK1^AR0jMgTAH5R!*QNp2BAA1v5Gu^ycVWYdo&= zCW(9VcspZm*J$sFWECaePnI~$dGAJw^h-5JpfGmbeVAbUaq~XL!sTx)QMGBR9%<^u z3ET)MQ#*ABOuj6}{fVrt_85c7uykff7%+l|JVd|v&SpO9N5KpeZezEv!@*?D9#Su+$NxN7n6TPLhP`PcA>(iTQ!|OFa|&^jlJq zxBlt(dL-Pp#!@vvaFu=ZrocLxb#~1DMLhAC_^aA|!cl7cm}ULCLv-o*w1tl0gosTg zp8{%Y(#xN}lPsEplBYb32v+t90k@p59q6cX++pgg20_Zmn5v)tpD*t0HHq648_1yz zns7y4H`(xrX?>Ko*}G@e6z5OV8O>X%9gzL3EkoZiBFaYBs2!C3X7fJuce7#qq-p4? z`1n=JcjIl3WNaT8F}%sKP0IX7#>;l-*bgPBABuWGyZMCXU!UZ__ql8Fs<4@P(zEM| zcMHXxiDF)2Jke-m(8;7uz1GCrQ*JK%)#cRGTjTvpr^VgpW_%^%4W&PwMjCayC08O3 z$K>J9E^7a{A$v?EMg3F=g%Nl3LS(rVN#>dXA=$qj_pPefW#$mgdpY&nyDXkxyLPH` zWxWVDkpA)AzH9R)Q|O6zT<4ME2J=YwTjs-?Y2GxI5$EiYz_SWlh;^l=BvX+T;lF{A z+-twIe%fx|0iCJXyx#q2p+w(f@t`ZKGBV=Rn@~JI{1+#_M8?JVX6|}&-G<+%f5hkV zAI4><_J0H%Ji6JUt>ZXc7Ne!)c24fx%^b-07Xrcb|`_IqTd z?jEx{`~q846nX!Dxd>{>R87z&v>-nysJU5!Y#0gcm`r2np(v$V@7ocU?*R^*kAnaW zTpmU#5+>0j2|jp9A3hFA&5>?Yia;UyI<&@sj9Kc0*Q5UJ#!u)%y%`M#e8JQO_TXTc z4dDaaR@<55LxQipoKD>x@#?wmt6s}~iQ=Co;?KQ#!cv5kZPi0nza)Zx+lv3U*Y1W& z-&eQNPn14zaFaFM@uXNopMmf5tLqm-I#P&&`l4wtz)_V*_)Oxk$$5t^#V<|>`8rY` zeBT$Hru!}Gm&t@Z1JV^%^higkqhIE}COOYOzuWli#NZ2~eS(a3g^=M;)$sEKBMOob zu}4CBTpH~RJVUu;_N?9&hZp&A55wO+>~~{xIY=aYQsE(~N@Fu&P`jMa(AL|vGHNv= zK3oOv`OoavtSRSBxULMm>FZK>sp}x&UN7>k@C7f)SL0~8;J_j&;0D?1Q%e4=)%TZb ze3#jC^JDp9DKc?kj&1|S^7>E7_`=}fr=lf;S+u3kR;T)p{RZ1bv{< z4PI(jyI(slei6(LfgU4Pbm^`aZ#KVrRh49Zq{WZ|dM$y6AU)@O)&bb%BA(>JmqEM<%iL^~BQ>FCcE;<}-8V~8+G z|6n)r7k)?M^dvG~@!Op^7_oee56QmRKR>W+I;QG)3@G;uUR~LbLX{@!^5UXukS?-wVBzBws0Or^aY5} z-?_TsYwrqTKF&OI{yPk8!-{wR7gGIV94Ob6R1#v{gaB>6gnfxX6A?g!#_OG|MkiX9^;(Ow>=6_yK%*OGS z_7{U@@vBqjYf=BuqLa(T9|0%+8=!|>`61nTSnj0nLFYL;_r+$}!UJ=ZR}v{ietCTX zGFRJ(Xvm$as6nmonxg;FU)I(xzrX)d?a;iHqbYhmo=_nmGG@xG6Q`_kh?AauuDxXA zq}v{_7)`L?ug5^0psA!?=Z8EYv=tuUnKJAb4UDOYhVz& z(x2?!(mNJU3Zc zzNb%Gh)CeDiMMA+)9?jp(JceqeI5@NDlx6lim4FBO6?gOg4NZ`ES)8y<{3E>K~c0# zR!-jKZp4>-8gYsf4hfuTU_wTo{@#I7YkjZmJWWHMyVuDGV5Q$;1;{KOt?I!i(FMK4 z5fHTDPVU^ta{WKoY>8Dimmg>H zTpXzX_FjzP{ZG`yY}jj@b^SCtOBYo1Svg8msWzHCCw(t_cTPm}7HXFB`XNxiJ9EfB zsu@?Q3;}oQ_c!-sDf<=QCktM5XPF87g$6%e9VmC4^zwz0%4mU7x7r=5E#~80-;4cx zsN}02>(fhP=c7#?VhQ2pJnxh9GLIC3J@|W2dlkNAwm`}2|XTB~RY8aI7#MQP5=pIZsoUwASE8VH3CC|k# zDdio9H#=XUz?XSwKcr|Xk%xnE^q6xCrB(J_@8gra<>LBJsTtZ_f1?A5>kotl88itp zD!1pbDXus`C=-7#lmCZ~UEX#3`hoSYujz`uLJXWY&fy(Wz8%ayBcks63c`SRk@P|T zOE2D)hmWT3vLDlDRD7!{7GEdQi4mYGW2V(*_N~d%D~dOZDeAj7%`EP1mS85*nJfOI zTV3r4I87eZ%6##Bpf=FX_2B>qP1UF0E;hmxhOMh9%WWI4Hr0I|kH!WOw6!}+VmR?e z9kHhNE4&xqq+IT?Y}05OmmfS8-_ynh!##J*QeD-~p#A;$KMD6T52SPl6}tyNZpXRV ztXmNebt*`=?!at}UK zUvUsInqfizp4~0iw*9~zwWbTrAQwG>n#BV}ztd3k`f26U9-gJDPs5MuIyi?pnk|q= z_8!Mv&?n-$NNSFMpxp_Mff`Wv+Lr|nkVyEF4K=`SC}k)xqXvDC7Nr!72ZcAW;BZj~ z?aJ6-%o?x;V=xuLi06WmpxP!y+67XepReWHu@D&RMn~weWzT~$BO}3?4G<8mihp?V zc~eG3(I@{HowYPfnev28Qp`GM{yg>$m;Crdj(Tgt;JTR?8+&D9ZiQwsHyX<@WuC9g zVz?5ZO1m<7ciuBl`fO%PxPP4Dtg};3Qtyf3cAShy*27Ib=pH#BJIgpl3Y3AY5DYfI z>X>(yB;84O`qM7gFEtn#m!PPqyFXBmsJcvMd!$heBe#dGK57t~+U0t{KyXsnjfnNs zPzrU0updt-s{jn5Z+fg>vBxy#nsfCT3NnsO!thbgxZf1_hR&xlR9senMU~6ZQt{D8yqP=*7 zj>D%-4CzfHjW%Hh^qAYd*_L(XMyF2;-F)h(b)+rr%ofs|h$m?#i06`VPvze2KK-A@ zT05@L!e%shX5P(~^0j-DZ$PMA-~4gyN>TWIza%EAxIa4uBpctG@0cSQ-v(O`UGA^5 zj(c%ygh%mfi7zC8{~fc%W+Ww64C%st4w^BC_K1oF{wtj9o6< z2(V;Qo0m{B#l_2L7|wuC2&j!&KX*}0W(A)*WJ=QQp7r!!w3iz{wc_o7%hLWjc#0TS zu{^vKE-0wkj*IKBIsBroG)=zb+|gP7sM-lL93#(fP9*nayfw?4X(O&K@p7L*@reVr zul0VrzhU{MD~JOHDU7Q1K}4thPC>6|?ZR`DyssNiMk{^JW9;&uIp6Y1c%NpVIX?U0 zRQ6muF6C2}d%CT~Ym4%-RJ)KHjlHc;4bRMB4+cFWX&pKx6nsM~7zHhjGT*OC%?b$4 zL%xn(X-7h(%0n;KHA*J$TN#G*r_Ud zlbL=CUp;FktW+n8e1g>Uwa4r)a^ohnK*BWG&f7KH{b=XW>+K+0t9+J2(>X7~OgKsmW_)ZLs^Hogi|ePB(M=JH__p)$Atc?k z2Y-*Yx@dpbizc!~oC^bE+^Vf9?)CZ(Isajk*z|ppv74OnH1mzufoH#*+GKwZ^`UeD zZjhvPvt^@l+4RQ+L%HmA-M80u-k14#wzo~*)H#V3FRy|%*j*o9D!)$ZY*tZRv7NLL zJ#0U1eeb04Q5~Hk0NQA#We2?^X}_cUuE__Sr&Z0!jTS`h)_M}T>_d|ToQO>_)vE!L|3Nyj|perhWTia*ZgM#kbBLxX?!FoeY_uj2|g^{W4nU{#u&ZBqztzW?hn^ zf!0G)T!+M7AVDS@}4n@cy1(XqqUJvY^x8w=+ENwl#F>$;e|w9m+!ld~G_?g?wDRLKwvl{Vfp0%P!l}ZFr$jbm6Dx z53g-b8tQH#GRQ;j&xff905i2PX%zMziOADxec}Qa$Rb0>rmMvAui~ZKrFX|_72Sp& zc-Cg4FS>$cu9#8j&l}9t+OIU5;Xf-D38CW;Y^sW$gbmT%$5$-}tT|~ZNjs`BmtDQe zWr-r@6vpi&_0=c8FlsmnNFJETf#ZGK#Rg{zA2|PGV{wdJU>rE&%@@iK!ZiSlw;ikC zsLEzEWr)pmRpmzyDK>y_czxy5C900fA2Q1oLthqaX6n!&Nxs0YO^e4zRn*Mv5;lgPqW@!+97aZMU@}3f~(EyiMQNBJ;jvXv{>yuQx;yY z?Op|cJ}xKcoHsXI_}JuKxm9t$5r6E{G0U(-u5+vz$tO?%CM1L?dM1E-_A#%BqWU+(`|OISh|v0np}Mz!o}1|`0)UmBUFl>AWk zFE7ZGzFPQIDB{@smuNH}Y=4OB*3M7+i|Ap)YszH{RdqrNqnwHYo8uYz_0BVtoFw<6 z2HXmx9X%ZRLht;M-p)Yv{tBWDwI#riE;*8LPa#X`;)11g*xyBb%W|c~X~mJM*@vk^ z+KGA^?YIQl_loa%-#q889u5Vlz_L!fTR|Nsd#z3hXEbwK9qoy9-3W1GuCfGxXB>Bc_i?S znL2q|DtlzKMlL_N*Wdgad)B{k3EVS2BL6w;vdQC=N7{Sp`_|q&Y$4it%-Hh6zZC_` zg2Chyx^$?AUTyv;X05ta5bc-~PV;&#y0PRwov`jj(#+8U$zlI6x1b>w>@~R51Fzp1 zPGyFYFce)nJYV!bZ-R@fK3_bNFnC);GOPcl!-*~MhQ2_)%8ykZ9QCpb)nnyHwXH!^FlQl%e@Dq@WsaxKa?#y{5Sk0&1?a0f<-k%%}aYC@#8 zAk8~sE=X>DXT+K8KC~&eKy8{BpnK`54zf--9I?6k_`k6O4^I*EH-}=J#m}AJ`S~>Iqmv&@3y|}-C|Kic7jP7zEyan3v#crG_s#<%S zX#>tTT!sw{D&%p(Br>C?7(+G5*8&yZ&S{ni_9KZUhKR@4WrC~-SsX}z#SdQElYHk) zks_8rP5BN!?CoM7(mBiE?6ykN{?v)=NT3X0YHg_kP#av%+(KVST50-QD5i2jYN<9~ zbBKRk*3k2`@?ZY~{8uUGVUenvkM91~km$xeYsba9l|c$kL|y~5s;ZwWBb)^kmzbcP z^b4X<-6sP5e8n>t?ZXc2Px^3IuQFm~|6OFz%q@e>*?6mC#{#-mG|h*ht-fhg$S6-; z_$2Ef568FH#RX~mnZ*cC#ljlJLx>{6HL3&;qDaA-tfC=pvNqizso30dRkL%04e8NnmyATXRP)cNtg z+FJN%5AF-wn-5{3NIU3py=ZZF?bKM=f(yx0G)g^#DOT}2XCor>rufmG8$tz{d$A!}6xnR;3 z68vM3|MKGZ<`bPQMtj%-KAu#)nAGutGDQ^8>1L0H?+u1WdS;4tUCjO5`GuCARYSk3 zwX-DEp-3H`fD@oR6w+gAzaJgXc5vvEeYoCy<>-$F$+AqPx}@^quo+!O2BbcJuZnA3 zBXDGd7Bj-(VK}^2kvep)L&QXJvevvUW%*WudB{S*qg7QVORneK>_eP}^v4TnbyX}< zQm5@|H@#yuT7n?f912KM##x;BFk6^ne9;dd@ z-S;aalzVf@c>MbDLKm*VW@%O@jkgXO**(7Ivg~{tU#TCFZ|lcrw=;KlAI5V{dnGvK z-by?BbAU+YBz!A0KlcX)n7QkyvXpkF`xDkdh37?1!tn9$FCM%t?foN^{`pkadx@LL zKND7*4L5hAMa#zyAJyj^G|DAHCwldwFFx@qQqNFK^yAhAb*gxq03m9DydOwE+}mT6 zA!Dj0@uwbn1>@H(NAY1g+;2SBp6s+b(q6JV;z1z0URkNq9>dueW`aKt7&mv&LkRF_ zbPI7 zXrh$1m{n;~z#+G54sLD=mFbqR*eLwm35t5v%_{69q?we#MZ~=g`e9W#Kg;K`rb}PC z@GWS!Ly$zr-&yyS%OxMby?OCI{OS8A6Xzw(_jGD^UG_W|8_SEKdTcfimAt509r_8y z%t4&zLj5$pMbDn$?ojax<+Tf)PM4(qB28D-ddI{D+K}1!)T)uXHhBNj=*tb6# z4>oTRg{|tXep*orYD`${2i55*!}m&_h+e)C-)rN>A4hl--lcX%pv3q*Uj+84ur5Ce zIK9zbT@`i)8@JpGVsqv*P{~SuVVex5`rv?2N}@Oek%&P}i~!>m&Ur?k>3UJF_0tZc zLoBzQY;rA<$>E%Y!nd{c`;V9z47k6EWwAEcOVX0A7r`x5)o0NGO{%pG``B<`ty`3qJ`B^3t$!{HrK!fz>dos9z-^CtQO3QqfIjn zDR1YAygay{KkmlgJa|m1rsNCHZ{YuU1D)~cEV6vlQzWzt#N(F=%hLWRwA9KAkNw6Vk z#aRZE)V%EQE~B0hA__UE3vc~+z#A@E_j2^+!)GrSjXMRfzhoHv9sIG^G`n}bNn<;I zf{l_mJSkD?Lm`+l9T69^0fktpC-{IVCL4RCSBsXOTTyX4r+RJTYEdWn+f9A zm+Vaz3d#5fNZ1V&8QqOcPZ$Jf255FZ-(wS5zx(D=$GD0N9-3|s5#!q-#{R(4b3O9Te){n!+xN6V8IW;q{U&ZPu7{lc~$-a;G>gF7;X zba-y<@(XNPc+ui^<>)uHd)2nC0(Oktx@5K^in4XH>qs+3b4(U*OAEH|a}qlP05P)irBhYAzYv zU_{=lpW=4a##zziCyIEqDkc4rLH%E9Iup;2 z@zgMHD=YsM#NW|j3-B$$Jg1#_^?m(V8U1jx^6^J~?QN`~!CuKG$A}^)Zh5%bd2o(r z6!0$?6zT6hB1j-a;0l>Z+HD)zAeFhqy&unyq0O5t%%$d0HP|(VxTmP55zKEp$6}Pe zG#pKe8oxH-IwafpMIR;Naa*vw>wSlDzztg1NLpmn+P9`riB2i2HM{G@U@gbfb*t>; z__t8q5;eapPyKI9Z6=?W*)s3oY20KHN!=tOYnRT=`LImw_5kmZtnjOcX2&e@o@|$O#T1#qoX^~^HqVBoBOoohvP*z6kcE(St zFnWmnBuP)7Zpc)p3D1?~U45W5IM7tl2iXJ)8yPW>&@55#?R0vJ+*+K);-NcF(nOQU z?8}>Kw08yT{yw#rV?>wQOdkcOm@{+AUY=A6m@z`yp(Kqh)W^4+vhhg!U;xL$ zu8>dM>pCe0-OBrHJf3LDbsLrPsHXN9R84y~eyNKMHFwj9Ljl%q8DZd?@t~VBIJXJ^ z!kBdDA!jbuPT2M8f*>WoV>*J<_*;@Hg>9^~#4|51}DXHBC~jhE#g-a9R7c%%>s-(2;!K?aQi6lT%^OWUVnw$6~2IH}_^Pz2FM zUN$H32{LoCE*0ecqpn;KtYI72=8~NdhQOn#QacU8f~B_T`9(Hl1G!2Dr83A7uy>~) zd3DXf!QbCTncGV5W~uklXBQXs#@o&$`htK>99x7&aAuR|0=;m-%|NZY zD%$vOvcnQ*S}am2U$!4dEMA4`ma~=+WS56Lt=Pm=viJjpZT0yaR`2-y{rZ^=%^WU> z@~f&%=rym`R(V?%KWTT*^NjBe75Sk{U)}b%Imyf=>$T)`s6nM6P_-_W`i2T)wd9fy&a;RZI`V>yIw>PNZMaXYw z<-Uicb)#ssxS@Zc^RIuxyWeRmDrHO;IEug6y8kE7JRvcRn2?I`r@$k#&fnR6A7N2S zoy4(3y_1<-N=b7v*v>6QMF%UDA*jAEHH-T28P<@viB1w6|^u^bTBo%~MHuH6XPWbE1Ou)x<9+|87t=`7!j zPrCK~UHQEobL1*RiR0z>EJHt?NmbJdXxv~z0rfPcn#hs1Ix9XO+}c%6Q@V%Q`|q25 z&I-bm6j`YSMYksvKpL@a$6cX9$EZThsmqE?7p=`A(802IcA+7mc;?9Wx@dvAO76=4 zBJMxS;H-o3**GbQ?g{mbCoba-_{!Vy@Tzd_O6ElJOEr*gPHL6GjFiUZh(X|nC(7W6UuR>;U%8n{D+93G`4p^!lmp-O2#E%vW6MoItn+s55?4k2P}J9Lj`j7_Sw zx`iZMwP(PRfZoCgbO%l~!qO%`#>KcWdZBG{sIQM@kFW0ivU#?69#?#eAJ^b>Qzl1u zgDE0vv$8;C_I=mIHwpl0^5&o7k&Y%vEv4_<>z@2dzim%>JyM7)us~c4!`n?}gFYzT z=0XN+)x(}3Kl2(w5mcc%PdCN1V&KqfnXBG&y+&UUI@Kq}dNSDHYVE^a+5~!=KCK~i zdU-%(>Y$DJxFmL7kNRFcRZsXw)I3pGpW?z~zqykZpgtd#lyFzm%07JyMfPMooP8l3 zSS&hUv%iVmpOQIB+P}_Fwq{PziA<%pZXy0D5EN3*wBvNBeJQ@w1nz;I(yc%8$E2&2 z6kxJBrGv}Q`y}IIyt3@ol`n2IT`_cF;Y5E6D(mthEn6lS%=4IOm-9*BDot?-S1kK` zFE>L8Sfk1Ht(g#g;alhMD_o*3BlmWvbUSNk-Kp#FnT|_^-`_c|K7OJ-cs5u?8DqKZ z)R_kbcCYM6-oOVJ{$q9Nj%OoXf8rIzmkHdIc#t&ln%$1Z5AtvCz9g_F-1*j~!{))} zeT;s@)KsWFwhIKg8%sf|ztV3JZl|WdOxG{yRbGqw|2Mq6cTh*^Yuxkxhex>>GX83M z{23)_xs2?HtFz+NRywBm)Up6;F+k=Jc#v?lLrryR2#RH0!32(0AusLAcObB?RG|eE z7;QC)@bw4C$w7eTLBgb=O6nUeJDDd~0)WwEcSDrDs02 zJpXcat9cdIhi&&cyIPR=mV1jfo*d9t7SOr*XjXDz>ie+6w`)qxH`B(4d_o>(6r_#w z!AH!|58=_V2##uQwHinbr(Tu(@#o3eE9SM{E9w$OvSR9iElG+E1E%s$eQrG|5PH3N zpzmR_A-E*$8Ezdq_%c+;H~)rDUM)+ux1`0U#|d}G&J0JW|H7WWQFAyM@FF05WK&mA9jF1cHTBAmcta2)CzGC zBL_FhH`AIL*nGDNEG%dM=EgO5Lu3uvKPltDN>k)fVxzX&jtq6=aoT{e@q?G`!;et!2G#ib;%BPbeRdh&SkYEgqIw9j^fU+WntAnZ#y1pty3n=TLwOZs zE}@al!i{@yMsrSAGj6v1n3*e|9dC&P+>;%(D_L154rTy%;wsJB>QEE$|!4{?r5y+Ohh?UtZ~_cyFtF znA|C)U9r+Lw>1%8VE#TE8`lTEAkDSq#|sIyRty0yH1qIH9v_l}_Rhlh7m6w_)%|9T zvoNTOsS6<#MF@MXK$@X@rg$M`RJtx0w|*_9dXT5;2RWFj^vS0k0uIH&H(cMol5loU zT|Dxwt$9unvs9Aw!T8(BaAB^lv-0QT$q5im5V?;k@0nKU$UwL@BMG(>!~z-vnTY+J zvuF4`;8f(GQ~cSxQF1AIbBUza?omCt1ScRJ8Q56*5QA2_$otSpz^y)zg`PZV)3t)5<8m0`2 zJ5cJmBv?`fluOFuC`o9gLij6S(lkZjvrd4JlvNI3AF8Woo5)O8KBT(iVW8u-d8n0i zcwKz-qeJy4nePEMBd<%}{kUV=NMq;x`-M@s<& z$FK#)}sWh#x$!45vJ}<>40Mk z^CV40>)oXvb8GExcjJpBy<9%bD1~EFNX9snj#fRiq8wM=?AJ(_%Og{lLt_l#AHo~!Mr2=1G}K%sBT^2u$V`F|G0Fkf?P@vf2ajn2CSQPtRJ3 z3)EZ&Uk{Vuj-V?EmEzLar;t|8_zMjRJ8d-`9X0l7UyVlI$b-0hmy&(aEiczTi_7{! zFOPX@rZC6Vh+7|LV;lBta?Ap>dqyK;Tw$4vG)`C_&Sx{u8DOmWo1!<3iW=~|ZuEsI z6*dvv03eqE>%f?%vOn(@ zW5NN`ofXOui^;+yug71(?XSACj41j}bhxu>?2CJD5P3ZK>!DK zUxi3lH{jF>%d@D0e~3iF>x3gUNN#~JcKE}mlWltw;|3W#r0@E@=n>~g(Ac`c%|8wnF7-Bst{%zg}K_H6s%;28D4^R=%I^j`e1 zM}Za*7gXo?_Ji%3^4r4cq7e~Aw~WI@1RG_{Vp_sFcGM~&NVzM3iOMcotne}p_?h|Q@4&m}htv%w$!4ZxA6`cI>*98B&%VHwr)#aYwNBHzT96X&T z)T|$Hjo-P}C`Qs1u178~o-3q@QklzkMSYU;sXas6`IM2}iGL*-J6^|i^ciV~o}n~0 z*$~?7ePx8qhhGtAS;j#G=UfkB@Fg?qw2}zB)FrAL#+nRK%V>iC*jd})BHIDSoO-W5HP(AKO5`zn@i_23CO=hW|mrlDW*&~ zs04XI@n|TTYQ%~S>?n5DUIB80JWmITy+g(#;ZB6Dylsogq{C(mR6>y}TW{xK%CA04KTa9!h~9iaz$P z2gjJ~uFwG+*{l~@Rmn^T>b>TKVBD|sg~T`U%VdOz6Qjn$&v943N#cknLeplnDCi@e z1DCMnyYQU5$yw-c04gIR2#8FPa&g$#QX|G)f*A_fMW;dM8B9AcxSwu0dT8eL^lO`2 z?jkG`(e^RecS$wpLNT~poj4>N_en-HYIk76(@`hELjhK~zf*o&e>K~(q%zgz@ zA%= O2R_qEd>m~(odX+g2jYh?2>5Fq^d!CW$!^U1yhyB9Fw^!j(70ruNvm}0LS z!9OHX$WYDni;&%j7y+#WxaJa6ojims7u3Fws%n#cryz2IxV4vc_9N|UndP(dM0{G) zP39e*rp(^%9w4zB-f%qRoc+!r>gkfep+`zi$J^ZD?74WSIVMKq^{-OjBmMymw=S5p zxK`?_IR|1Wekdn4>+w^yQFvo)8igSpo!r=A@V!XpfJe9~>_!LVbqy>wVIP7ZimJ8k zG91f~wBAB!l`;SeT*i+QvPNe?qpF7F-aKHX6*|Bxc-EZ@Qw`~p58Eg#w)01ZJ^Elv zh@eo+5(O41spLS58z`>;>{%S#3)ohmjE?t7Fuf%@QU!s1?WUG#_b7?KqIHKWuAL1X ze?&ElyND6PlnYXUn1u&$3Lb_q^J&flA6B7wC!~~T00ianEz|Q$>z9DIQe3(J)%8AR z9PASTV&-Zt#$8`5V-c1A{OE|8Z1#dz69 z8DV(_sZhMJ~~=3TqeU6Kzb>UDfB)>C9vC>zkc)An?Nv_F@SYz+8| zqZ*likgJ*&G={ob@fvHUh&Yf!WKT2zJrZ-i5ZKk@rns+}88%%c=~4|FEq!GSW7wpG z{2G9K{VTME@eH>XZY?;(jSiKZbQ#O~V!3CRh(#Udps`YN&ls&Ek;~uMpXIQS?_nd~ zmnDWfa-s!~J5Oa^xERWxby@TUl3cPh^pHq(gOo|iZYAga8n70Ujjrj56$DTl0ow;n zsA?;esU(x2`^egw>ptT0ks>jR{DZ(+2b_hMT@{F|v6Dbxg;*@oUSS97U6~2^c-x#Q zIsC{bb~vP`ogst{hHc5WAi49Sg{!+p9tjXcTmxZ`5Zj_ttU?oFP?Kn9Tz&Z{INQqT zWuf(BO;U32?G=5y?11p{JPkeATIh zJfzHvL+zMQq69oLVaaZp8SThh6#iyzNRUJ$Ux`v<#eUdLxtrOKwjqOQ@k%|faeskJ zBS;y2S0bq?qm}cGJSi)_jg)SF^qEz*PJ$ZtMU8Te$d*%~jJer!gSB6K1>l`I(u0op zQDqc`v1Ye{ZJJy_IvOP5DN>{z8C5NY5^z)v!}D#*3Oq~cRQoUcA`Z#2?T8=s&YU2L zsfm7vXdm47bfhS6kI~)awMPwHoM>+{v&pe}BBo)6stKR@S#d$N4H+~BuQXpP+}Tey zj0!0Yemr1ONrXCrymvG%SW3(lun8p+|Rg6^eTAU>O*GHhe8diKq6P8NGIwaFNQwUZ4r=N$e)kM#$_lC z)LP+fyjnH4ZsTMZNmyJ~&DJzq=MG%CYYp45zu6oA48*lR-A8xrpzvTa&54IQ(62hY zYKr|~#I;K&@)(hGK2+Tmmd*&%LMuin;`xA;=hP$sdLJXNvkKT@igOA24`(I}&u;Tj zI!X))A^8BkMIlo4mmeD{cGNz${Q|w-QDA1KU6V>55gwfkELlTgLQ8WQhBET{a7zfgb z?C(ee(?k5*938dfqedbxNrLTjj0t`y+2E3m;pKdZR&8q&5wP+pNw{SIK8VC};3O&g zDIoN4?RY=r#Xk(YU8=>n!F9B&TPyGvMh2}7ZXpYV)3o&<;&dJ$oE9@MS)hz?Zfa_p zC1M080btGVt`F`&G2mh3sM5%1^kmO?jWbaXWm{Y*mc>U{7ZtAb0+BL$YDg|rd3 z+n)wfaB4btpm;EgdTw~=VO*7tjGAnM)kzffN_rk{ zYkvrlt5;t-=Qc8C6)J~BmdwuU| zSiZ6p@FudyL$9K~3Lq?;pm;RWN&u+fLH$!U{Ag$6SA<&vzGq)L@)q&~vUW&&Rs)H_ z{m38S&*K6-K&Zq9K^5W&E+`1+NW&(S#sTnb|CC!&fawbNUq*Zb;153n2De6ZgvdtD zonr;{0Xqbo=*w*AYM2%U?v183keP7OnI#D1OdA02X=LL3(3u+8HN!E zDke4-Rv$}vWB^aP!6Wk-34U*&quIqjf}Ga44$zBqE}LQ#jMYRN+mR_X3HBtp`g5z2 zaZD1xTjgHx1(q{YjLjmUa2me&J8n$qQC5K16Y5)o?Qdtuma)EwjqgOU9*t8|L|#Le z183@$?$?F6ld3cP;lB@1oclRMV28mZnao682dIIdxC@jI*!a6t*#E;ZMvX=f8hfJO z7*aH0zqYu`neQYXT}@lCpfSk9C!G)mQ_)zPAvnF}VKY!_1M@biT}?BLh(zT#&!Y+f zfrb-EN=-aeAI>}YfufZeP%qbr`KJRxH3z4RMtULQ~-*(`)IT_!}Z-4bDwM9w6`aEOnk=ML#8C(X;a-Wapf8NJV zs@vBW8{a?@pOhYl?+xQG6Iie74=^ChSP|&Yb_s~tZu44Ebz3elFZ=+1L8O zqjm&96_)KUy(eG9!n2$lt&5ur3E){?im-a?^T z@c1f^8w>hbx4f0Rg^LT;?zBF&Jd01G-_-oED(bwSS6$Uy=(- z8vi9CPCN(;I8acAprAq7K~gxd`B2`)nIcPd!h%t zla&l4{vE&FiDb-$NB6F}wZV;3NJ{qjtBh=hax9QX!?#4%-bL#-BTBwKnu7VGfGRK!{jZbwLS--> zQ&}LHx+4uxP7k{EBv>G41FE<(#<_KuPYg4WUG#&iJ;U>sQ}MW0WKI*#=_Bb}IU7%X zpI*A%xF`8=S>@1p#EtzD{{(o=)dW==p^;ItOEeNUDml1l3|qW7u7o$NC#qBPWsu9G zqA)mZ_rIMK_JOI$E5RnXUI67K;yurlG5(o^Ti>#@J+n;KbbNDn?ktP;T~oBE8J8v* zLja`RbB+XfHbv_++L2#4W70Ixg2!m9?dW`grieduVDexq4~sQrj9@iWP>3s4=oN@( zB{PRR)!Et!Lv@N3{JQ-#VQZ@4N^m^{)?Nq2WVyinD2) ziSJU(3S-We9ot*{*jMk&!~b=3&xvasSPyF}~mTeU@{c=N#%UW6^2& zaE7B9di}L7x)M}u9}73^xRVD_eqNwI@-~e{t4btJPcR6PCyqa1lDWQ&t&)}s;j-?E zggv_!uNIZgdhAJCsd@Z_j9=bSvev?d!_X5HQoJrw-jt94+vqeCH;Z&Q>hxrZ9OMIAG1bLm{w0*318-Q*=bab%an69(a`m0?}N_GpUgUPI&M4sj!>o{ce0RFm?S9Q z^AS(`B-P*i>5bpwdk|9#4>A+lutpT1Uw&FYu!IPn`rgycc_EaWqV5c{gM#U(cdbT@m zjZeRC^H()9*B2}AS?cg+3$c zDTCj=DE(fv(^LFouZm>zZeXX%iwtjy?U(WUC}YV2ZZ*FSkK z60S;dkdbz$h)7Tvhx*w}lUA`_0W>MqJGiFQbfBIQ`2i@r81U9_O%e|CY4Rg zm1}rFcjxUGs@1R93Kt=Z?WNzY&)rS7G}5-tP$yX+O(<)Y^NR?O z@7=r!Pum!C&2LcedV%tm9ot@e! zal1%6n(-*cR=ZxQ7CraI|Gj%qesx(*?aPIm@)rzbZo0WkH%KnRGCzW$FGtQz93s*( z?CCQ2ubFYW9ndrwuuK1clTxhw$6kkS2_x@Ux?$Pj1rJcMJKntNw3#C7_189CiDreCm;IUy43DYyCzqP;i zu=otIzG?mq_gyT2^H@=z_Y%wYxRA&N%@57uUuJdLn!R4mbowf!Cj8cP{FPv1k&E5Q zXGcvu*J2A!B{dO#*c5^10cbg+$vgaqRbfi~vWRG8=fhnezxnslTv;@n(N{axtUpZl zwF;%Co(6b7Jsf_${iZE)lq*=LJb7u|lm@6*CZbFhp}#Ei4@4_+D#xQ8ylremq5{+` zZQk@jOFICwkF-D{Ek!ivU5S4{j45UOJQN~x62?*M8j!paaxI~HWVbA7F6=Vh;TxY$ zWYUDANzibfmE9{%k(^z~QyxRx=rCi#SQ!}5i(bYovViYJn%)w}W-sc2`Mg;pk)7>a z4ofIMurTBNw}SN<|l}PDeKDz8^yJ7sB>$N<|?g!RtAFsH4};^o~=nd zUf;ID+znXSRVvJeyg$XNLGF)`-JvhE0vGRUo7U1*tdy`=9pWaTT+@yyra9k>lA2&e zUhX*K8~oiP!ewhxuhg5c5w9k}7uQo+za1~Dbk$qgvvWR@Qr{oU}uDUIF|dC?hq5arjxggsU;}(_YiipLSe-^vA0N@rH)u zXN|ScRznO1JYY$8i1)F)&X)aJehWLYC2ALVlal)GW{Ty@=kiQdxEqy-X*@DFQ+jTtV%)18S1ea??r~ z9Ko3LO*34PtxDKPZOr6o&Ni+rjgsCWg%4=vo|fAOSO=M&nj$93-3{|<`=GM< z1XA5)0$B!?r?htpej14Z*t>I+i~#VZ{aOL!%=`&;C82RREGTs}mb6XOyr{3wTkIVv z*jQ{luSd(97EHTjU@#?=yQA>bL^=s3C)p=4d1Kvo86b#axcs-A^&bu%vHF+H3KlFI zdE+e`z4!5;i~SxW_SxVug{-u+bh?++{-BL5eb-ji>{(OxATG(W$8MDR$WFDLmeOf2 zM{0KGI^16~)D>{}1S6s}^J0Q-Tq_i${bUYxU$(RIFR$dQwj2f2;^^UwKU)Uy5pz)r zMvv84?NlB+bIWDq_1DP(qX$)z9sX#~Xx{c)som#PVC z4ki>wn5Te42++1m-2l_l4CARN1jgvSBZWIw65Z|nIjB@@#9%+9OuPv@1rW1pThs?j z+t3Ahx$n6{%1-0G(=+rC-2lEKM0PYP=6$( ze$7H3nngNWoHtl?px@y&&B*V4_-YYPK?%4Q^R)i-0FPFI4+yX?fQ|4{yU0oOs5UQM zu(tUHcY3N_KhWfecLalxNrF5W%V(TvEI>oe)>`vKzxJ4W{+H(yr_e?y91>;s4=t0B zGKGrm+*wDyM+4$p@&jVcv|hd(Vd#+zh_g(#~#}Y72Mx)kV#;L+<{=^qp-z zU7pXrLNIi`RD0L@ylymi7N=_n#fjDP7{+qTYR{*yyHTIO0w)n=;bK1p@vzE29?BNI zcyhl-(Muw_N#9Z0W~t9BWBV99%i2f1=X zpJ-JQu8gx!J{Op|m@|sW6uOECbUE3d;}A@_Lz}^9^DXL*@H?7kx6`1mCi5r3M9o+l z+V`AwsI+2mrMV1x1YEUN?%Xv^bR%TO(C_V|Q(%j1;%oh`rw>MBxjURY#0I$c@4f&4 zl$McPba+kl?Ag&M^kucN+~>21{NxucG9+55&vUe;2#r0t^bg*`8!gvwmQGq1t9t51 zY<2Ezg-@AJBCdCW%WT{{%68S=XmzMzYn?|SaBTX|k;#3mknG-gz7BAB{*6MwfB0_)kL-TKVHaebJHq51x9a0 z5bBudG%UMrYFILVIK0lq*rRQQovWOU#NluAOp?B7cuTd!PQ!l`lq*lItYSBus&bct z@KT;JV2VcZ6AL#eQHVhO@T=HN`^mL;4|hsv*T}-2;>h;LsHR*lLcDXpyc;M#J*FMO zO0fl(;OEcb%x%Hf!-~&tb=%!}-naCKs@iQ4;`u<|Nm-H$rO2pj) zcuT3}ftPsw^Fh^+>&5Axw#YrcGkdm%?e2SD%9k0$3jQviQYg)SSht<)#nH4`$TOp~ zb%@ZmWohZr@Bba(-ChED3ofy^OtK>W5j3>>p9`=@Py|68h$>qX7D;wg8Iob}fO0c+8+soYSEe0erEI*osgS{b%sPURh++rm$AQ z6S9-1?P06*3t@7oOsqf+0%u|b71 zJM?DYf+LK$M_BKz`1y!76sHclHa#*ec|E?w+gh&IV$j6mkgT~#dy2``91Vb0zMwrx zbt#3bIO9u4=f$^8Vt)I3lMOnYNt_;68IY!l;8fNlW#V#(0qHd#>8bozbRs4UxA+tdkpE z+Pf}9r&O#<`|d>#GEL((z8}JpKWL^}cp>KvQFV5$9EB)=5_d2KWv2 z2#m-t$V~8O&O7<|!Rl;vag>DPcsd1zE_9fqs@{El@28d}M6Gs6fB`05Wf^Tl!qQ7A z17y?>F4{|q80u9$=OXw9dXe>!hy#@VFEFwkOY6p@F73)P0O7&5eTF1d9*nsuZ&{dc&!$n}nvc0JL&A%gpce1N{@R#jP ztJsFkgA0j^tSI_d>PnpkWJrWLW;)F*B0Q8(GKhh1 ze^QJOzdfv1^1loAi-NvrTNo$#Jb$Wbv!I^Ra#YjgDbyht`7=Hy<-+8ug*>fx8w|=z zaYO{5;peR60)vuMSBS^A&v;>$<6H_x)o2Z#w|UA1tz!Tv=(EO9E23qOW8;gtj;6G( zl{Pb^Y&BT1i769_EMS$h{4t&bpLrLV`XUO&PByS}l6*Rk%V23Wf|i5@==C`xi1-5<5!L4^YGU zQC#4P@UQ=b%gbT_(Sv2DIhSG2#IC~bKIz5I36S>CpL;WzX+4K{B&PKw5||h%)e0G^ zl?u9Vx`8??j<@@H5wpa93P}}>hNJJjbK@GG)&QC`~;ACX>J4>M}{JiJE?1XTW{AVRTTSxYNxNvGYU-eW9rS{=<=#j0ky;__ss6v$7 z{%70+V#H5t(8DyO1Fvc!_;7kCj*C2+z`^*HW5szk~4FGi%?<= z0?|7|(m4rar@e6uMqjg<+od<^k9~&i=#&$jy`q+g6o_N{88S~&h2Tti^9DQ+{~g|_ zyK#V=Qf=x;E=aJ;Z-YLhBC*To3kHVO$OcF99D3CeB+-hvnHQ-4ei#D6B+wF<%Red znk-ApC;F&az777;YqeBux2@;lzqr?56^Gin?5VzBDmNq?lOz@i{R3x!L0>y5kaBq&!Tn=?gjdtWvm^(>}I0sf{wBcETx9BJo;c;xH1dW&AB-aqi&fdTKxG!`C0vg(Q}X9bq?JTG7 z;y((-e8jGRC)vP3yCjTs7XGQK3P01SK##M^pBg{T@1^d?juUx#AOOg}bCe>F$eiYyW<xl)+d!OKMl0FgA>G z_F;k)X0=gno7>OuA}@H-9U^B?_Dd?)Ho?H3v z_xz=3EIQIA!;YtA+SEgk8Kom4$HO`PNw@TgeyKb90cE2z_@*=!`mC321P1bC6qIgatxJ|#H zKoCI;3!os~-==*xG%EX}wABB!=-H!K2GaP;CE?dC_?Kvb$!W$zN;f8opWLp zet1W|^I$yUS;|}1zc5RL2Qu@BWyiUb&&n1fYHr%u_hZ64`2mU%Qgu@(8niH zt1%QY-U&4f6OZi+3Kw-99}BvK3mn7xr;aprj0GZv!fzV2hE5AQHClEf=qx7(Ffmyt zW%limf${c>jmphV>hJx3KXNbf{kLBFehV#i%CA$K?+;E)ZXPz96{|74N=mDgqwV1_ zV+^w_{ARzn;M+7;u@%*~`o}f|a`jwS783e&8KN4cQG$YeIbV=?0C{tWDSaT!kYXKR zTu0)OIXxMI7DI}Mjb1L;oJM?rvcMq{{@k>4(-jh~Y_~0?Ow%Jhy&K@?D&NX_=ojXJj^rcUn012 zb+^j>@t5^&D&+f#@6m$cI`Fk)X<#Hl$$C-x(svUjFp_!+n%fVrx{-VCd?$2-E}BZ} z%WEWAr}Hf~98Zz*Jf%+2F-wfbwf>M8gV_Zq9S>jDoAz~FIX6+Svmsf1xGknDt%IRX zdY>9ViH>seMCuUgXvT6u9l7B{Hqcm~;TeQJgu#_m0yV&mo7ehLV|d?L|% zT!pO?^$5@1IOr*Dt$?}j=%!&D=UyERCWQa7>clgwte5t%OVvr!28&_gnh4Q6ogs{z zS$H12cZMulYYUzk_DATAIU=MFLHTMp8zCNgX>xHg!HlE-^=qKiiHS%2p*PS{Oc>iGduEs4EUt$nn4B|LRs7yipEBK^o- zt?4Q%q6L*Mn!DZu?g~BKv+=Lj!i@do(#FBXGD|c_Bd0l&h5Fn$l{@XMUp0 zeVVIs&kLVzuXHjUE!CW-4Ck;y^0n@W!p>W^B&04UEYA9sAw{Y#h-M0K)3A>JVH19^ z?TTn$<+2IzZ zF*D*+5y+2_j}bDo){EknL<5BgEm)dx9e73Ft|gx4xAQG1qrFslpXvWy?YO1T{P0dxWH-!hLbcTL(Ss>(Zs)(efkLL{oXXcy!G8}?@@g+g)dTkr1zyzwb$sQ+ z($u;f<=0z{o?JT9v}xa#pC*f5SbLqhUwvY4T3)(?IWW!aB%ijyo^|*V0owhz33KXe z^O>(^M*c>2Et8mxRA5Z!>1ipRDY^)aiQ3Wf2OtCF_YHVp1HNL{vZkStazY(&ObC-A zHle2n?wDe<*m~k2KguJR@*srePqWqsk9Od}+|>_eb}bz5r+q8Mn5#?J`67k8**0xL nGAQ!Cg}TRjqQlk_LFd-a90%XCK=&Tbcd1jD9_B6m_v!xu9%DE~ literal 0 HcmV?d00001 diff --git a/testdata/get_blocks.json b/testdata/get_blocks.json new file mode 100644 index 00000000..2afcf1cb --- /dev/null +++ b/testdata/get_blocks.json @@ -0,0 +1 @@ +{"users":[{"id":68956490,"id_str":"68956490","name":"Robot J. McCarthy","screen_name":"RedScareBot","location":"Wisconsin","description":"Joseph McCarthy claimed there were large numbers of Communists and Soviet spies and sympathizers inside the United States federal government and elsewhere.","url":"http:\/\/t.co\/PiQZ8cvNsS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PiQZ8cvNsS","expanded_url":"http:\/\/bit.ly\/RdUCUi","display_url":"bit.ly\/RdUCUi","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15257,"friends_count":134,"listed_count":1321,"created_at":"Wed Aug 26 11:37:30 +0000 2009","favourites_count":3018,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2497529,"lang":"en","status":{"created_at":"Sat Nov 14 07:48:12 +0000 2015","id":665436049645166592,"id_str":"665436049645166592","text":"Socialism lite RT @culbgren Don't Claim bto Love the U.S.A. While Trying To Make It A Socialist Nation! https:\/\/t.co\/t8b9AesC1d","source":"\u003ca href=\"http:\/\/twitter.com\/RedScareBot\" rel=\"nofollow\"\u003eRedScareBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":665434140997771264,"in_reply_to_status_id_str":"665434140997771264","in_reply_to_user_id":2891911385,"in_reply_to_user_id_str":"2891911385","in_reply_to_screen_name":"culbgren","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":25,"favorite_count":39,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"culbgren","name":"Donna\u2734","id":2891911385,"id_str":"2891911385","indices":[18,27]}],"urls":[],"media":[{"id":665434138170773504,"id_str":"665434138170773504","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","url":"https:\/\/t.co\/t8b9AesC1d","display_url":"pic.twitter.com\/t8b9AesC1d","expanded_url":"http:\/\/twitter.com\/culbgren\/status\/665434140997771264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"medium":{"w":557,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":432,"resize":"fit"}},"source_status_id":665434140997771264,"source_status_id_str":"665434140997771264","source_user_id":2891911385,"source_user_id_str":"2891911385"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68956490\/1397719213","profile_link_color":"7C009E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A199A3","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":true,"blocked_by":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_direct_messages.json b/testdata/get_direct_messages.json new file mode 100644 index 00000000..2ebcc004 --- /dev/null +++ b/testdata/get_direct_messages.json @@ -0,0 +1 @@ +[{"id":678629245946433539,"id_str":"678629245946433539","text":"https:\/\/t.co\/PnDU7HQGwq","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 17:33:15 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PnDU7HQGwq","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488","display_url":"twitter.com\/pattymo\/status\u2026","indices":[0,23]}]}},{"id":678604651239895043,"id_str":"678604651239895043","text":"https:\/\/t.co\/sQlHgqXOxW","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:55:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sQlHgqXOxW","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667870485842149378","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678604278852804611,"id_str":"678604278852804611","text":"cool? https:\/\/t.co\/csy2NSbU86","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:54:02 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/csy2NSbU86","expanded_url":"https:\/\/twitter.com\/__jcbl__\/status\/667865252764246016","display_url":"twitter.com\/__jcbl__\/statu\u2026","indices":[6,29]}]}},{"id":678603770633125891,"id_str":"678603770633125891","text":"https:\/\/t.co\/csy2NSbU86","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:52:01 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/csy2NSbU86","expanded_url":"https:\/\/twitter.com\/__jcbl__\/status\/667865252764246016","display_url":"twitter.com\/__jcbl__\/statu\u2026","indices":[0,23]}]}},{"id":678603352637227011,"id_str":"678603352637227011","text":"https:\/\/t.co\/A0NJfpDbAF","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:50:21 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A0NJfpDbAF","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667865779015196672","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678601197788401668,"id_str":"678601197788401668","text":"https:\/\/t.co\/rY4FkCqIz9","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:41:48 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rY4FkCqIz9","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667866455959056384","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678601038023147523,"id_str":"678601038023147523","text":"That's cool friend","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:41:09 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678600722565345283,"id_str":"678600722565345283","text":"hey?","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:39:54 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678592039651438596,"id_str":"678592039651438596","text":"https:\/\/t.co\/Z4RgDEuw7V","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 15:05:24 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Z4RgDEuw7V","expanded_url":"https:\/\/twitter.com\/henrytcasey\/status\/667912731081768960","display_url":"twitter.com\/henrytcasey\/st\u2026","indices":[0,23]}]}},{"id":678582529125838851,"id_str":"678582529125838851","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:37 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582526349283331,"id_str":"678582526349283331","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:36 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582524163940355,"id_str":"678582524163940355","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:35 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582521446166531,"id_str":"678582521446166531","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:35 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582519223025667,"id_str":"678582519223025667","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:34 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582516106706947,"id_str":"678582516106706947","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:33 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582513426558979,"id_str":"678582513426558979","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:33 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582510511525896,"id_str":"678582510511525896","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:32 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582507726635011,"id_str":"678582507726635011","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582505231007750,"id_str":"678582505231007750","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582502756376579,"id_str":"678582502756376579","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:30 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}}] \ No newline at end of file diff --git a/testdata/get_favorites.json b/testdata/get_favorites.json new file mode 100644 index 00000000..63653dd4 --- /dev/null +++ b/testdata/get_favorites.json @@ -0,0 +1 @@ +[{"created_at":"Wed Dec 16 17:34:59 +0000 2015","id":677180133447372800,"id_str":"677180133447372800","text":"Extremely proud of all the bot-makers this year. Seeing so many diff bots get love & recognition is getting me a little teared-up, tbh. \ud83d\ude0c\ud83d\udc4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619383,"id_str":"619383","name":"Humbug me why I","screen_name":"negatendo","location":"Denver CO USA Earth Cyberspace","description":"artist (strictly internet). ridiculous internet account. full-time internet. free ideas internet. #botALLY https:\/\/t.co\/P0PVMrvqUn","url":"https:\/\/t.co\/6bPCtM8sau","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6bPCtM8sau","expanded_url":"http:\/\/negatendo.net\/","display_url":"negatendo.net","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/P0PVMrvqUn","expanded_url":"http:\/\/www.amazon.com\/registry\/wishlist\/5NKIOO98X4J5\/","display_url":"amazon.com\/registry\/wishl\u2026","indices":[107,130]}]}},"protected":false,"followers_count":2416,"friends_count":2080,"listed_count":104,"created_at":"Tue Jan 09 19:26:46 +0000 2007","favourites_count":63457,"utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":35938,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000105212902\/2a4019c9c7bca6253bd2564f74483c35.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000105212902\/2a4019c9c7bca6253bd2564f74483c35.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660834065419907072\/rV085r8i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660834065419907072\/rV085r8i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619383\/1398338002","profile_link_color":"D955E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":24,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":true,"retweeted":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_follower_ids.json b/testdata/get_follower_ids.json new file mode 100644 index 00000000..d82ddb02 --- /dev/null +++ b/testdata/get_follower_ids.json @@ -0,0 +1 @@ +{"ids":[372018022],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_follower_ids_paged.json b/testdata/get_follower_ids_paged.json new file mode 100644 index 00000000..d82ddb02 --- /dev/null +++ b/testdata/get_follower_ids_paged.json @@ -0,0 +1 @@ +{"ids":[372018022],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_friends.json b/testdata/get_friends.json new file mode 100644 index 00000000..5451bad3 --- /dev/null +++ b/testdata/get_friends.json @@ -0,0 +1 @@ +{"users":[{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":286,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1220,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","status":{"created_at":"Wed Dec 09 20:51:52 +0000 2015","id":674692964782891009,"id_str":"674692964782891009","text":"@beep @jonikorpi i made a bot to do the conversion for me, its @TheGIFingBot if you're interested. converts, uploads to imgur, dms you link.","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674641293314809858,"in_reply_to_status_id_str":"674641293314809858","in_reply_to_user_id":12534,"in_reply_to_user_id_str":"12534","in_reply_to_screen_name":"beep","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"beep","name":"Ethan Marcotte","id":12534,"id_str":"12534","indices":[0,5]},{"screen_name":"jonikorpi","name":"Joni Korpi","id":15907249,"id_str":"15907249","indices":[6,16]},{"screen_name":"TheGIFingBot","name":"The GIFing Bot","id":3206731269,"id_str":"3206731269","indices":[63,76]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_friends_ids.json b/testdata/get_friends_ids.json new file mode 100644 index 00000000..d82ddb02 --- /dev/null +++ b/testdata/get_friends_ids.json @@ -0,0 +1 @@ +{"ids":[372018022],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_help_configuration.json b/testdata/get_help_configuration.json new file mode 100644 index 00000000..882b667e --- /dev/null +++ b/testdata/get_help_configuration.json @@ -0,0 +1 @@ +{"dm_text_character_limit": 10000,"characters_reserved_per_media": 24,"max_media_per_upload": 1,"non_username_paths": ["about","account","accounts","activity","all","announcements","anywhere","api_rules","api_terms","apirules","apps","auth","badges","blog","business","buttons","contacts","devices","direct_messages","download","downloads","edit_announcements","faq","favorites","find_sources","find_users","followers","following","friend_request","friendrequest","friends","goodies","help","home","i","im_account","inbox","invitations","invite","jobs","list","login","logo","logout","me","mentions","messages","mockview","newtwitter","notifications","nudge","oauth","phoenix_search","positions","privacy","public_timeline","related_tweets","replies","retweeted_of_mine","retweets","retweets_by_others","rules","saved_searches","search","sent","sessions","settings","share","signup","signin","similar_to","statistics","terms","tos","translate","trends","tweetbutton","twttr","update_discoverability","users","welcome","who_to_follow","widgets","zendesk_auth","media_signup"],"photo_size_limit": 3145728,"photo_sizes": {"thumb": {"h": 150,"resize": "crop","w": 150},"small": {"h": 480,"resize": "fit","w": 340},"medium": {"h": 1200,"resize": "fit","w": 600},"large": {"h": 2048,"resize": "fit","w": 1024}},"short_url_length": 23,"short_url_length_https": 23} \ No newline at end of file diff --git a/testdata/get_home_timeline.json b/testdata/get_home_timeline.json new file mode 100644 index 00000000..4f41eede --- /dev/null +++ b/testdata/get_home_timeline.json @@ -0,0 +1 @@ +[{"created_at":"Wed Dec 09 19:40:11 +0000 2015","id":674674925823787008,"id_str":"674674925823787008","text":"RT @pattymo: I could watch this for hours and I might https:\/\/t.co\/rIgO3E2mqI","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Dec 09 18:38:17 +0000 2015","id":674659346127679488,"id_str":"674659346127679488","text":"I could watch this for hours and I might https:\/\/t.co\/rIgO3E2mqI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328421,"id_str":"2328421","name":"Patrick Monahan","screen_name":"pattymo","location":"new york","description":"cherries jubilee and that's it","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11723,"friends_count":664,"listed_count":243,"created_at":"Mon Mar 26 17:42:52 +0000 2007","favourites_count":137608,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":71947,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F3ABC2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458268789285470208\/lYRJt_HV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458268789285470208\/lYRJt_HV.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664132912162480128\/sn8lwzXD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664132912162480128\/sn8lwzXD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328421\/1436552450","profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99F8FF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2358,"favorite_count":2517,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":674659173825560576,"id_str":"674659173825560576","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","url":"https:\/\/t.co\/rIgO3E2mqI","display_url":"pic.twitter.com\/rIgO3E2mqI","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":362,"resize":"fit"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":674659173825560576,"id_str":"674659173825560576","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","url":"https:\/\/t.co\/rIgO3E2mqI","display_url":"pic.twitter.com\/rIgO3E2mqI","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":362,"resize":"fit"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}},"video_info":{"aspect_ratio":[318,181],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CVze8bBUwAAPYRz.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":2358,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pattymo","name":"Patrick Monahan","id":2328421,"id_str":"2328421","indices":[3,11]}],"urls":[],"media":[{"id":674659173825560576,"id_str":"674659173825560576","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","url":"https:\/\/t.co\/rIgO3E2mqI","display_url":"pic.twitter.com\/rIgO3E2mqI","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":362,"resize":"fit"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":674659346127679488,"source_status_id_str":"674659346127679488","source_user_id":2328421,"source_user_id_str":"2328421"}]},"extended_entities":{"media":[{"id":674659173825560576,"id_str":"674659173825560576","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CVze8bBUwAAPYRz.png","url":"https:\/\/t.co\/rIgO3E2mqI","display_url":"pic.twitter.com\/rIgO3E2mqI","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":362,"resize":"fit"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":674659346127679488,"source_status_id_str":"674659346127679488","source_user_id":2328421,"source_user_id_str":"2328421","video_info":{"aspect_ratio":[318,181],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CVze8bBUwAAPYRz.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Fri Dec 04 18:58:43 +0000 2015","id":672852550614458369,"id_str":"672852550614458369","text":"RT @NASAJPL: Calling all citizen scientists! Help choose + process images of Jupiter for @NASAJuno https:\/\/t.co\/mfBzxzpxly https:\/\/t.co\/7a2\u2026","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Dec 04 17:33:03 +0000 2015","id":672830989895254016,"id_str":"672830989895254016","text":"Calling all citizen scientists! Help choose + process images of Jupiter for @NASAJuno https:\/\/t.co\/mfBzxzpxly https:\/\/t.co\/7a2z7S8tKL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19802879,"id_str":"19802879","name":"NASA JPL","screen_name":"NASAJPL","location":"Pasadena, Calif.","description":"NASA Jet Propulsion Laboratory manages many of NASA's robotic missions exploring Earth, the solar system and our universe. Tweets from JPL's News Office.","url":"http:\/\/t.co\/gcM9d1YLUB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/gcM9d1YLUB","expanded_url":"http:\/\/www.jpl.nasa.gov","display_url":"jpl.nasa.gov","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":853924,"friends_count":371,"listed_count":12936,"created_at":"Sat Jan 31 03:19:43 +0000 2009","favourites_count":684,"utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"verified":true,"statuses_count":4758,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0B090B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/8479565\/twitter_jpl_bkg.009.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/8479565\/twitter_jpl_bkg.009.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2305452633\/lg0hov3l8g4msxbdwv48_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2305452633\/lg0hov3l8g4msxbdwv48_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19802879\/1398298134","profile_link_color":"0D1787","profile_sidebar_border_color":"100F0E","profile_sidebar_fill_color":"74A6CD","profile_text_color":"0C0C0D","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":109,"favorite_count":147,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NASAJuno","name":"NASA's Juno Mission","id":19789439,"id_str":"19789439","indices":[76,85]}],"urls":[{"url":"https:\/\/t.co\/mfBzxzpxly","expanded_url":"http:\/\/go.nasa.gov\/1lfviCo","display_url":"go.nasa.gov\/1lfviCo","indices":[86,109]}],"media":[{"id":672830988741775361,"id_str":"672830988741775361","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","url":"https:\/\/t.co\/7a2z7S8tKL","display_url":"pic.twitter.com\/7a2z7S8tKL","expanded_url":"http:\/\/twitter.com\/NASAJPL\/status\/672830989895254016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":672830988741775361,"id_str":"672830988741775361","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","url":"https:\/\/t.co\/7a2z7S8tKL","display_url":"pic.twitter.com\/7a2z7S8tKL","expanded_url":"http:\/\/twitter.com\/NASAJPL\/status\/672830989895254016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":109,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NASAJPL","name":"NASA JPL","id":19802879,"id_str":"19802879","indices":[3,11]},{"screen_name":"NASAJuno","name":"NASA's Juno Mission","id":19789439,"id_str":"19789439","indices":[89,98]}],"urls":[{"url":"https:\/\/t.co\/mfBzxzpxly","expanded_url":"http:\/\/go.nasa.gov\/1lfviCo","display_url":"go.nasa.gov\/1lfviCo","indices":[99,122]}],"media":[{"id":672830988741775361,"id_str":"672830988741775361","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","url":"https:\/\/t.co\/7a2z7S8tKL","display_url":"pic.twitter.com\/7a2z7S8tKL","expanded_url":"http:\/\/twitter.com\/NASAJPL\/status\/672830989895254016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":672830989895254016,"source_status_id_str":"672830989895254016","source_user_id":19802879,"source_user_id_str":"19802879"}]},"extended_entities":{"media":[{"id":672830988741775361,"id_str":"672830988741775361","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVZgOC3UEAELUcL.jpg","url":"https:\/\/t.co\/7a2z7S8tKL","display_url":"pic.twitter.com\/7a2z7S8tKL","expanded_url":"http:\/\/twitter.com\/NASAJPL\/status\/672830989895254016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":672830989895254016,"source_status_id_str":"672830989895254016","source_user_id":19802879,"source_user_id_str":"19802879"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Fri Dec 04 02:20:04 +0000 2015","id":672601231118872576,"id_str":"672601231118872576","text":"RT @igorvolsky: QUESTION: Should SOMETHING be done on the issue of guns? \n\nJEB: I don't think so.\n\nhttps:\/\/t.co\/bL4pgQ8WFk","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Dec 04 02:19:59 +0000 2015","id":672601208247484416,"id_str":"672601208247484416","text":"QUESTION: Should SOMETHING be done on the issue of guns? \n\nJEB: I don't think so.\n\nhttps:\/\/t.co\/bL4pgQ8WFk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16002085,"id_str":"16002085","name":"igorvolsky","screen_name":"igorvolsky","location":"Washington, DC","description":"Director of Video and Contributing Editor at @ThinkProgress. Contributing host @bpshow. Opinions, my own. E-mail: ivolsky@americanprogress.org","url":"http:\/\/t.co\/YV2uNXXlyL","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YV2uNXXlyL","expanded_url":"http:\/\/www.thinkprogress.org","display_url":"thinkprogress.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":72971,"friends_count":2893,"listed_count":1209,"created_at":"Tue Aug 26 20:17:23 +0000 2008","favourites_count":630,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"verified":true,"statuses_count":29334,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2342577927\/ivx07n8a00tuoz387nxs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2342577927\/ivx07n8a00tuoz387nxs_normal.jpeg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":454,"favorite_count":352,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bL4pgQ8WFk","expanded_url":"https:\/\/www.youtube.com\/watch?v=_z6OvehI584&feature=youtu.be","display_url":"youtube.com\/watch?v=_z6Ove\u2026","indices":[83,106]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":454,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"igorvolsky","name":"igorvolsky","id":16002085,"id_str":"16002085","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/bL4pgQ8WFk","expanded_url":"https:\/\/www.youtube.com\/watch?v=_z6OvehI584&feature=youtu.be","display_url":"youtube.com\/watch?v=_z6Ove\u2026","indices":[99,122]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Thu Dec 03 20:13:22 +0000 2015","id":672508949074214912,"id_str":"672508949074214912","text":"RT @torrez: Hey, for the coming year I'm thinking about getting a sponsor for MLKSHK to cover the (very low) monthly costs. Contact me via \u2026","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Dec 03 19:54:28 +0000 2015","id":672504192833949696,"id_str":"672504192833949696","text":"Hey, for the coming year I'm thinking about getting a sponsor for MLKSHK to cover the (very low) monthly costs. Contact me via DM?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11604,"id_str":"11604","name":"Andre","screen_name":"torrez","location":"San Francisco, CA","description":"I work at @SlackHQ! \n\nI've always wondered: why does the jerk store have your number?\n\nPhoto by @morozgrafix","url":"https:\/\/t.co\/l9cJh7hyOA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/l9cJh7hyOA","expanded_url":"http:\/\/torrez.org","display_url":"torrez.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7436,"friends_count":953,"listed_count":379,"created_at":"Mon Nov 06 17:33:46 +0000 2006","favourites_count":62745,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":16581,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/858626307\/ce8fea5e8985e38bb551309e43fc8e2d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/858626307\/ce8fea5e8985e38bb551309e43fc8e2d.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636672313585348608\/HTXAMknZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636672313585348608\/HTXAMknZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11604\/1448125045","profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A0A0A0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":8,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"torrez","name":"Andre","id":11604,"id_str":"11604","indices":[3,10]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu Dec 03 15:21:21 +0000 2015","id":672435458232688641,"id_str":"672435458232688641","text":"RT @EFF: Let's Encrypt will enter Public Beta tomorrow morning. Encrypting your website will be quick and free: https:\/\/t.co\/UNzepkqHDX","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Dec 03 01:01:26 +0000 2015","id":672219053130309633,"id_str":"672219053130309633","text":"Let's Encrypt will enter Public Beta tomorrow morning. Encrypting your website will be quick and free: https:\/\/t.co\/UNzepkqHDX","source":"\u003ca href=\"https:\/\/www.eff.org\/\" rel=\"nofollow\"\u003eThingie\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4816,"id_str":"4816","name":"EFF","screen_name":"EFF","location":"San Francisco, CA","description":"We're the Electronic Frontier Foundation. We defend your civil liberties in a digital world.","url":"https:\/\/t.co\/0UKsdjXnWw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0UKsdjXnWw","expanded_url":"https:\/\/www.eff.org","display_url":"eff.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":285339,"friends_count":883,"listed_count":12218,"created_at":"Mon Aug 28 14:17:28 +0000 2006","favourites_count":59,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":9815,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E17701","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480154529946533888\/zn_4iWmX.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480154529946533888\/zn_4iWmX.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659137486577209344\/LXBdUCiv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659137486577209344\/LXBdUCiv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4816\/1434077894","profile_link_color":"D51A23","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8D8DD","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":516,"favorite_count":309,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UNzepkqHDX","expanded_url":"https:\/\/letsencrypt.org\/2015\/11\/12\/public-beta-timing.html","display_url":"letsencrypt.org\/2015\/11\/12\/pub\u2026","indices":[103,126]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":516,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EFF","name":"EFF","id":4816,"id_str":"4816","indices":[3,7]}],"urls":[{"url":"https:\/\/t.co\/UNzepkqHDX","expanded_url":"https:\/\/letsencrypt.org\/2015\/11\/12\/public-beta-timing.html","display_url":"letsencrypt.org\/2015\/11\/12\/pub\u2026","indices":[112,135]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Wed Dec 02 21:38:08 +0000 2015","id":672167891639382016,"id_str":"672167891639382016","text":"RT @muffinista: https:\/\/t.co\/cOmfxb3PfZ Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. L\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Dec 02 21:31:26 +0000 2015","id":672166204971294720,"id_str":"672166204971294720","text":"https:\/\/t.co\/cOmfxb3PfZ Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapis lazuli. Lapi","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1160471,"id_str":"1160471","name":"\u2630 mitchell! \u2630","screen_name":"muffinista","location":"Montague, MA","description":"pie cures all wounds\n#botALLY","url":"https:\/\/t.co\/F9U7lQOBWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/F9U7lQOBWG","expanded_url":"http:\/\/muffinlabs.com\/","display_url":"muffinlabs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":912,"friends_count":769,"listed_count":64,"created_at":"Wed Mar 14 14:46:25 +0000 2007","favourites_count":11375,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":22683,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458958349359259649\/v3jhFv9U.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458958349359259649\/v3jhFv9U.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/669649682151424000\/GeIkHzNB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/669649682151424000\/GeIkHzNB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160471\/1406567144","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cOmfxb3PfZ","expanded_url":"http:\/\/alsorises.org\/book\/","display_url":"alsorises.org\/book\/","indices":[0,23]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"lt"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"muffinista","name":"\u2630 mitchell! \u2630","id":1160471,"id_str":"1160471","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/cOmfxb3PfZ","expanded_url":"http:\/\/alsorises.org\/book\/","display_url":"alsorises.org\/book\/","indices":[16,39]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"lt"},{"created_at":"Wed Dec 02 17:36:02 +0000 2015","id":672106967075315712,"id_str":"672106967075315712","text":"RT @saladinahmed: To be clear: Trump's explicitly calling for the military to intentionally commit war crimes. https:\/\/t.co\/Tl2NQwog0j http\u2026","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Dec 02 16:27:34 +0000 2015","id":672089737004470272,"id_str":"672089737004470272","text":"To be clear: Trump's explicitly calling for the military to intentionally commit war crimes. https:\/\/t.co\/Tl2NQwog0j https:\/\/t.co\/aN5hxXPspX","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29995782,"id_str":"29995782","name":"Saladin Ahmed","screen_name":"saladinahmed","location":"near Detroit","description":"George RR Martin says my novel's 'a rollicking swashbuckler.' Bylines: Salon, BuzzFeed, NYT, Gizmodo. Mostly I chase my twin kindergarteners.","url":"http:\/\/t.co\/KwNTVpK350","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/KwNTVpK350","expanded_url":"http:\/\/www.amazon.com\/Throne-Crescent-Moon-Kingdoms\/dp\/0756407788","display_url":"amazon.com\/Throne-Crescen\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":39214,"friends_count":991,"listed_count":1416,"created_at":"Thu Apr 09 14:39:18 +0000 2009","favourites_count":19645,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":53806,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606062872880410624\/a9Lx7Yb5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606062872880410624\/a9Lx7Yb5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29995782\/1362745548","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2057,"favorite_count":934,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Tl2NQwog0j","expanded_url":"http:\/\/www.cnn.com\/2015\/12\/02\/politics\/donald-trump-terrorists-families\/index.html","display_url":"cnn.com\/2015\/12\/02\/pol\u2026","indices":[93,116]}],"media":[{"id":672089733544177664,"id_str":"672089733544177664","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","url":"https:\/\/t.co\/aN5hxXPspX","display_url":"pic.twitter.com\/aN5hxXPspX","expanded_url":"http:\/\/twitter.com\/saladinahmed\/status\/672089737004470272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":73,"resize":"fit"},"large":{"w":1024,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":130,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":672089733544177664,"id_str":"672089733544177664","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","url":"https:\/\/t.co\/aN5hxXPspX","display_url":"pic.twitter.com\/aN5hxXPspX","expanded_url":"http:\/\/twitter.com\/saladinahmed\/status\/672089737004470272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":73,"resize":"fit"},"large":{"w":1024,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":130,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":2057,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"saladinahmed","name":"Saladin Ahmed","id":29995782,"id_str":"29995782","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/Tl2NQwog0j","expanded_url":"http:\/\/www.cnn.com\/2015\/12\/02\/politics\/donald-trump-terrorists-families\/index.html","display_url":"cnn.com\/2015\/12\/02\/pol\u2026","indices":[111,134]}],"media":[{"id":672089733544177664,"id_str":"672089733544177664","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","url":"https:\/\/t.co\/aN5hxXPspX","display_url":"pic.twitter.com\/aN5hxXPspX","expanded_url":"http:\/\/twitter.com\/saladinahmed\/status\/672089737004470272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":73,"resize":"fit"},"large":{"w":1024,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":130,"resize":"fit"}},"source_status_id":672089737004470272,"source_status_id_str":"672089737004470272","source_user_id":29995782,"source_user_id_str":"29995782"}]},"extended_entities":{"media":[{"id":672089733544177664,"id_str":"672089733544177664","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVO-DUEWcAApiUg.jpg","url":"https:\/\/t.co\/aN5hxXPspX","display_url":"pic.twitter.com\/aN5hxXPspX","expanded_url":"http:\/\/twitter.com\/saladinahmed\/status\/672089737004470272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":73,"resize":"fit"},"large":{"w":1024,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":130,"resize":"fit"}},"source_status_id":672089737004470272,"source_status_id_str":"672089737004470272","source_user_id":29995782,"source_user_id_str":"29995782"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Tue Dec 01 20:49:28 +0000 2015","id":671793258159280128,"id_str":"671793258159280128","text":"RT @Lyraull: https:\/\/t.co\/BqELa6bC8k","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 25 08:40:07 +0000 2015","id":669435381184614400,"id_str":"669435381184614400","text":"https:\/\/t.co\/BqELa6bC8k","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":199560987,"id_str":"199560987","name":"Lyraull","screen_name":"Lyraull","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2147,"friends_count":809,"listed_count":49,"created_at":"Thu Oct 07 05:06:12 +0000 2010","favourites_count":10491,"utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"verified":false,"statuses_count":8683,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2F0CF5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491828832689606656\/UJcflyFU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491828832689606656\/UJcflyFU.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/670725349496512512\/JukFyCta_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/670725349496512512\/JukFyCta_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/199560987\/1448746373","profile_link_color":"212386","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":73654,"favorite_count":76289,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":669435299068575744,"id_str":"669435299068575744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","url":"https:\/\/t.co\/BqELa6bC8k","display_url":"pic.twitter.com\/BqELa6bC8k","expanded_url":"http:\/\/twitter.com\/Lyraull\/status\/669435381184614400\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":368,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":669435299068575744,"id_str":"669435299068575744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","url":"https:\/\/t.co\/BqELa6bC8k","display_url":"pic.twitter.com\/BqELa6bC8k","expanded_url":"http:\/\/twitter.com\/Lyraull\/status\/669435381184614400\/video\/1","type":"video","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":368,"resize":"fit"}},"video_info":{"aspect_ratio":[40,23],"duration_millis":20203,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/pl\/9dwTttbSeg3nl_07.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/vid\/626x360\/cNuvl8oZp-ju13xw.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/pl\/9dwTttbSeg3nl_07.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/vid\/312x180\/ZDxe0HLUEGZJ2uXY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/vid\/626x360\/cNuvl8oZp-ju13xw.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"und"},"is_quote_status":false,"retweet_count":73654,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lyraull","name":"Lyraull","id":199560987,"id_str":"199560987","indices":[3,11]}],"urls":[],"media":[{"id":669435299068575744,"id_str":"669435299068575744","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","url":"https:\/\/t.co\/BqELa6bC8k","display_url":"pic.twitter.com\/BqELa6bC8k","expanded_url":"http:\/\/twitter.com\/Lyraull\/status\/669435381184614400\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":368,"resize":"fit"}},"source_status_id":669435381184614400,"source_status_id_str":"669435381184614400","source_user_id":199560987,"source_user_id_str":"199560987"}]},"extended_entities":{"media":[{"id":669435299068575744,"id_str":"669435299068575744","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/669435299068575744\/pu\/img\/wbVuwMFMrOC-G2Nz.jpg","url":"https:\/\/t.co\/BqELa6bC8k","display_url":"pic.twitter.com\/BqELa6bC8k","expanded_url":"http:\/\/twitter.com\/Lyraull\/status\/669435381184614400\/video\/1","type":"video","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":368,"resize":"fit"}},"source_status_id":669435381184614400,"source_status_id_str":"669435381184614400","source_user_id":199560987,"source_user_id_str":"199560987","video_info":{"aspect_ratio":[40,23],"duration_millis":20203,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/pl\/9dwTttbSeg3nl_07.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/vid\/626x360\/cNuvl8oZp-ju13xw.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/pl\/9dwTttbSeg3nl_07.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/vid\/312x180\/ZDxe0HLUEGZJ2uXY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/669435299068575744\/pu\/vid\/626x360\/cNuvl8oZp-ju13xw.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"und"},{"created_at":"Mon Nov 30 11:44:08 +0000 2015","id":671293633849655296,"id_str":"671293633849655296","text":"data #python","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"python","indices":[5,12]}],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Mon Nov 30 11:38:55 +0000 2015","id":671292317123387396,"id_str":"671292317123387396","text":"#python is cool","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"python","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 30 11:38:08 +0000 2015","id":671292121203257344,"id_str":"671292121203257344","text":"test","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 30 11:36:57 +0000 2015","id":671291823994888192,"id_str":"671291823994888192","text":"s'up","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Mon Nov 30 11:17:49 +0000 2015","id":671287007889506304,"id_str":"671287007889506304","text":"heyyo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"tl"},{"created_at":"Mon Nov 30 11:17:11 +0000 2015","id":671286849579720704,"id_str":"671286849579720704","text":"hi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Nov 27 15:40:33 +0000 2015","id":670265962776674304,"id_str":"670265962776674304","text":"RT @twitmascarol: A CHRISTMAS CAROL by Charles Dickens","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 27 07:31:20 +0000 2015","id":670142850001162240,"id_str":"670142850001162240","text":"A CHRISTMAS CAROL by Charles Dickens","source":"\u003ca href=\"http:\/\/www.martinoleary.com\/\" rel=\"nofollow\"\u003eMartin's Bot App\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4202417129,"id_str":"4202417129","name":"A Twitmas Carol","screen_name":"twitmascarol","location":"","description":"In Prose Being A Ghost Story Of Christmas","url":"https:\/\/t.co\/ylsYm6QFeQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ylsYm6QFeQ","expanded_url":"https:\/\/twitter.com\/mewo2\/lists\/martin-s-bots","display_url":"twitter.com\/mewo2\/lists\/ma\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":1,"listed_count":1,"created_at":"Mon Nov 16 14:36:41 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":914,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/666267307694563328\/-xmd-haa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/666267307694563328\/-xmd-haa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4202417129\/1447959409","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"twitmascarol","name":"A Twitmas Carol","id":4202417129,"id_str":"4202417129","indices":[3,16]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed Nov 25 19:08:04 +0000 2015","id":669593412631265280,"id_str":"669593412631265280","text":"RT @v21: \"It\u2019s technology all the way down; but it\u2019s also politics all the way down.\" @zeynep on Safety Checks https:\/\/t.co\/ZMwNKQZ04c","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 25 18:29:49 +0000 2015","id":669583784786964480,"id_str":"669583784786964480","text":"\"It\u2019s technology all the way down; but it\u2019s also politics all the way down.\" @zeynep on Safety Checks https:\/\/t.co\/ZMwNKQZ04c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17271646,"id_str":"17271646","name":"George Buckenham","screen_name":"v21","location":"London, UK","description":"I always liked broken games the best anyway","url":"http:\/\/t.co\/ii4wyeCVLA","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ii4wyeCVLA","expanded_url":"http:\/\/v21.io","display_url":"v21.io","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2907,"friends_count":1120,"listed_count":114,"created_at":"Sun Nov 09 18:02:07 +0000 2008","favourites_count":5801,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":35351,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/5569506\/office_baby.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/5569506\/office_baby.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2271384465\/mlt5v0btabp3oc7s90h6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2271384465\/mlt5v0btabp3oc7s90h6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17271646\/1358199703","profile_link_color":"FF1A1A","profile_sidebar_border_color":"FF1A1A","profile_sidebar_fill_color":"000000","profile_text_color":"919191","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zeynep","name":"Zeynep Tufekci","id":65375759,"id_str":"65375759","indices":[77,84]}],"urls":[{"url":"https:\/\/t.co\/ZMwNKQZ04c","expanded_url":"https:\/\/medium.com\/message\/the-politics-of-empathy-and-the-politics-technology-664437b6427#.71tizas7f","display_url":"medium.com\/message\/the-po\u2026","indices":[102,125]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"v21","name":"George Buckenham","id":17271646,"id_str":"17271646","indices":[3,7]},{"screen_name":"zeynep","name":"Zeynep Tufekci","id":65375759,"id_str":"65375759","indices":[86,93]}],"urls":[{"url":"https:\/\/t.co\/ZMwNKQZ04c","expanded_url":"https:\/\/medium.com\/message\/the-politics-of-empathy-and-the-politics-technology-664437b6427#.71tizas7f","display_url":"medium.com\/message\/the-po\u2026","indices":[111,134]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Mon Nov 23 20:06:10 +0000 2015","id":668883258864726016,"id_str":"668883258864726016","text":"RT @BigMeanInternet: How much start-up innovation is really about the normalization of lower living standards? https:\/\/t.co\/hePZcG63KZ http\u2026","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 23 17:37:06 +0000 2015","id":668845741817884675,"id_str":"668845741817884675","text":"How much start-up innovation is really about the normalization of lower living standards? https:\/\/t.co\/hePZcG63KZ https:\/\/t.co\/km5J5eJZKO","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":205360130,"id_str":"205360130","name":"Malcolm Harris","screen_name":"BigMeanInternet","location":"Brooklyn","description":"editor @newinquiry \nwriter for money\nmalcolmpharris@gmail\n\u262d","url":"http:\/\/t.co\/rhPG6tDUBh","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/rhPG6tDUBh","expanded_url":"http:\/\/thenewinquiry.com","display_url":"thenewinquiry.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7261,"friends_count":1389,"listed_count":246,"created_at":"Wed Oct 20 18:08:07 +0000 2010","favourites_count":10728,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":48172,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535259641580486656\/IW4AS_0Y.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535259641580486656\/IW4AS_0Y.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659365411771822081\/TngNNo7w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659365411771822081\/TngNNo7w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/205360130\/1401547719","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":479,"favorite_count":359,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hePZcG63KZ","expanded_url":"http:\/\/fusion.net\/story\/236635\/millennials-housing-crisis-tiny-homes\/","display_url":"fusion.net\/story\/236635\/m\u2026","indices":[90,113]}],"media":[{"id":668845659898961920,"id_str":"668845659898961920","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","url":"https:\/\/t.co\/km5J5eJZKO","display_url":"pic.twitter.com\/km5J5eJZKO","expanded_url":"http:\/\/twitter.com\/BigMeanInternet\/status\/668845741817884675\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":682,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":298,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":668845659898961920,"id_str":"668845659898961920","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","url":"https:\/\/t.co\/km5J5eJZKO","display_url":"pic.twitter.com\/km5J5eJZKO","expanded_url":"http:\/\/twitter.com\/BigMeanInternet\/status\/668845741817884675\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":682,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":298,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":479,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BigMeanInternet","name":"Malcolm Harris","id":205360130,"id_str":"205360130","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/hePZcG63KZ","expanded_url":"http:\/\/fusion.net\/story\/236635\/millennials-housing-crisis-tiny-homes\/","display_url":"fusion.net\/story\/236635\/m\u2026","indices":[111,134]}],"media":[{"id":668845659898961920,"id_str":"668845659898961920","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","url":"https:\/\/t.co\/km5J5eJZKO","display_url":"pic.twitter.com\/km5J5eJZKO","expanded_url":"http:\/\/twitter.com\/BigMeanInternet\/status\/668845741817884675\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":682,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":298,"resize":"fit"}},"source_status_id":668845741817884675,"source_status_id_str":"668845741817884675","source_user_id":205360130,"source_user_id_str":"205360130"}]},"extended_entities":{"media":[{"id":668845659898961920,"id_str":"668845659898961920","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CUg3lX_W4AAxz7c.png","url":"https:\/\/t.co\/km5J5eJZKO","display_url":"pic.twitter.com\/km5J5eJZKO","expanded_url":"http:\/\/twitter.com\/BigMeanInternet\/status\/668845741817884675\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":682,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":298,"resize":"fit"}},"source_status_id":668845741817884675,"source_status_id_str":"668845741817884675","source_user_id":205360130,"source_user_id_str":"205360130"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Sun Nov 22 01:53:57 +0000 2015","id":668246004051873793,"id_str":"668246004051873793","text":"RT @HeerJeet: Okay, this is straight out bigotry. https:\/\/t.co\/1WI0FxJDkA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 22 01:51:59 +0000 2015","id":668245508411006977,"id_str":"668245508411006977","text":"Okay, this is straight out bigotry. https:\/\/t.co\/1WI0FxJDkA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":604940737,"id_str":"604940737","name":"Jeet Heer","screen_name":"HeerJeet","location":"","description":"1. Senior Editor, The New Republic 2. Work found here: http:\/\/t.co\/ERLZ3hCrx9 3. Twitter Essayist. 4. Profile drawing by Joe Ollman","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/ERLZ3hCrx9","expanded_url":"http:\/\/www.newrepublic.com\/authors\/jeet-heer","display_url":"newrepublic.com\/authors\/jeet-h\u2026","indices":[56,78]}]}},"protected":false,"followers_count":32021,"friends_count":695,"listed_count":929,"created_at":"Sun Jun 10 23:41:23 +0000 2012","favourites_count":2967,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":61448,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548523975869870080\/n1h-p7TI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548523975869870080\/n1h-p7TI_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":668239849581903872,"quoted_status_id_str":"668239849581903872","quoted_status":{"created_at":"Sun Nov 22 01:29:30 +0000 2015","id":668239849581903872,"id_str":"668239849581903872","text":"Trump said today there were \"thousands and thousands\"of ppl were cheering in NJ when WTC fell - no evidence of such https:\/\/t.co\/Lj67fJjJGO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93069110,"id_str":"93069110","name":"Maggie Haberman","screen_name":"maggieNYT","location":"","description":"Presidential campaign correspondent for NYTimes, political analyst for CNN. RTs don't necessarily mean agreement. Email is maggie.haberman@nytimes.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72878,"friends_count":2431,"listed_count":2377,"created_at":"Fri Nov 27 23:14:06 +0000 2009","favourites_count":10215,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"verified":true,"statuses_count":87142,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539522850605240320\/fwY5l9Ii_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539522850605240320\/fwY5l9Ii_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":206,"favorite_count":109,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Lj67fJjJGO","expanded_url":"http:\/\/www.nytimes.com\/2015\/11\/22\/us\/politics\/donald-trump-syrian-muslims-surveillance.html","display_url":"nytimes.com\/2015\/11\/22\/us\/\u2026","indices":[116,139]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":true,"retweet_count":75,"favorite_count":58,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1WI0FxJDkA","expanded_url":"https:\/\/twitter.com\/maggieNYT\/status\/668239849581903872","display_url":"twitter.com\/maggieNYT\/stat\u2026","indices":[36,59]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":true,"retweet_count":75,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HeerJeet","name":"Jeet Heer","id":604940737,"id_str":"604940737","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/1WI0FxJDkA","expanded_url":"https:\/\/twitter.com\/maggieNYT\/status\/668239849581903872","display_url":"twitter.com\/maggieNYT\/stat\u2026","indices":[50,73]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Sat Nov 21 01:09:00 +0000 2015","id":667872304257490944,"id_str":"667872304257490944","text":"RT @nancyjosales: An Open Letter to Tinder\u2019s Sean Rad from Vanity Fair\u2019s Nancy Jo Sales https:\/\/t.co\/c8BCpmxTHw via @VanityFair","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 21 01:00:30 +0000 2015","id":667870167192444928,"id_str":"667870167192444928","text":"An Open Letter to Tinder\u2019s Sean Rad from Vanity Fair\u2019s Nancy Jo Sales https:\/\/t.co\/c8BCpmxTHw via @VanityFair","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2402336407,"id_str":"2402336407","name":"Nancy Jo Sales","screen_name":"nancyjosales","location":"New York, NY","description":"Writer for Vanity Fair and author of The Bling Ring. Instagram @nancyjosales","url":"http:\/\/t.co\/EMIWzK6JKe","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/EMIWzK6JKe","expanded_url":"http:\/\/www.nancyjosales.com","display_url":"nancyjosales.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3424,"friends_count":2035,"listed_count":63,"created_at":"Sat Mar 22 00:07:48 +0000 2014","favourites_count":3180,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":1397,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458386276928847872\/iReLUYTM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458386276928847872\/iReLUYTM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2402336407\/1405987335","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":105,"favorite_count":162,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VanityFair","name":"VANITY FAIR","id":15279429,"id_str":"15279429","indices":[98,109]}],"urls":[{"url":"https:\/\/t.co\/c8BCpmxTHw","expanded_url":"http:\/\/www.vanityfair.com\/news\/2015\/11\/sean-rad-tinder-open-letter-nancy-jo-sales","display_url":"vanityfair.com\/news\/2015\/11\/s\u2026","indices":[70,93]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":105,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nancyjosales","name":"Nancy Jo Sales","id":2402336407,"id_str":"2402336407","indices":[3,16]},{"screen_name":"VanityFair","name":"VANITY FAIR","id":15279429,"id_str":"15279429","indices":[116,127]}],"urls":[{"url":"https:\/\/t.co\/c8BCpmxTHw","expanded_url":"http:\/\/www.vanityfair.com\/news\/2015\/11\/sean-rad-tinder-open-letter-nancy-jo-sales","display_url":"vanityfair.com\/news\/2015\/11\/s\u2026","indices":[88,111]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},{"created_at":"Fri Nov 20 20:08:03 +0000 2015","id":667796566057594881,"id_str":"667796566057594881","text":"RT @vruba: More Himawari-8 fun \u2013 here\u2019s an animation of the average day, early July through mid November: https:\/\/t.co\/ekrnuqhASP","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":285,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1216,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":311,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 20 19:57:25 +0000 2015","id":667793892926820352,"id_str":"667793892926820352","text":"More Himawari-8 fun \u2013 here\u2019s an animation of the average day, early July through mid November: https:\/\/t.co\/ekrnuqhASP","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14917754,"id_str":"14917754","name":"Charlie Loyd","screen_name":"vruba","location":"Oakland, etc.","description":"Space and time and light. Tamales and justice. Satellite imagery at @mapbox. Say hi!","url":"https:\/\/t.co\/RAYWEwWY1w","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RAYWEwWY1w","expanded_url":"http:\/\/tinyletter.com\/vruba","display_url":"tinyletter.com\/vruba","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4055,"friends_count":1656,"listed_count":234,"created_at":"Tue May 27 06:30:44 +0000 2008","favourites_count":26227,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":25156,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613953116908617728\/p6WTaPW2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613953116908617728\/p6WTaPW2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14917754\/1392145528","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ekrnuqhASP","expanded_url":"http:\/\/gfycat.com\/DizzyGorgeousCopperhead","display_url":"gfycat.com\/DizzyGorgeousC\u2026","indices":[95,118]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vruba","name":"Charlie Loyd","id":14917754,"id_str":"14917754","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/ekrnuqhASP","expanded_url":"http:\/\/gfycat.com\/DizzyGorgeousCopperhead","display_url":"gfycat.com\/DizzyGorgeousC\u2026","indices":[106,129]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"possibly_sensitive_appealable":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_list_members.json b/testdata/get_list_members.json new file mode 100644 index 00000000..90ef5ed2 --- /dev/null +++ b/testdata/get_list_members.json @@ -0,0 +1 @@ +{"users":[{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":303,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":813,"lang":"en","status":{"created_at":"Fri Dec 18 18:19:02 +0000 2015","id":677915995160240128,"id_str":"677915995160240128","text":"Coordinates: (19.86325999815016, 87.37017997160355); https:\/\/t.co\/OTFcBzdlfe https:\/\/t.co\/FD1KAGZq6E","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OTFcBzdlfe","expanded_url":"http:\/\/osm.org\/go\/y~gNV--?m","display_url":"osm.org\/go\/y~gNV--?m","indices":[53,76]}],"media":[{"id":677915954173579264,"id_str":"677915954173579264","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677915954173579264\/pu\/img\/ZFA8vaYjlpk5c6GA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677915954173579264\/pu\/img\/ZFA8vaYjlpk5c6GA.jpg","url":"https:\/\/t.co\/FD1KAGZq6E","display_url":"pic.twitter.com\/FD1KAGZq6E","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677915995160240128\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","status":{"created_at":"Fri Dec 18 16:00:40 +0000 2015","id":677881170898624512,"id_str":"677881170898624512","text":"A bit of Pluto https:\/\/t.co\/sKB1j57QUx","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":3222275355,"id_str":"3222275355","name":"NewHorizonsBot","screen_name":"NewHorizonsBot","location":"On the way to Pluto","description":"Automatically tweets the latest raw images from the @NASANewHorizons spacecraft, as soon as they are released. A bot by @GeertHub. Not an official NASA account.","url":"https:\/\/t.co\/Ap4qMeBPxI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ap4qMeBPxI","expanded_url":"https:\/\/github.com\/barentsen\/NewHorizonsBot","display_url":"github.com\/barentsen\/NewH\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6871,"friends_count":12,"listed_count":208,"created_at":"Wed Apr 29 19:54:08 +0000 2015","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":647,"lang":"en","status":{"created_at":"Fri Sep 11 22:35:04 +0000 2015","id":642466415996502016,"id_str":"642466415996502016","text":"#NewHorizons released an image of PLUTO!\n\u231a Jul 15, 03:26:40 UTC.\n\ud83d\udccd 0.8M km from #Pluto.\n\ud83d\udd17 http:\/\/t.co\/f2VIi4tTPm http:\/\/t.co\/bHocoxqmOQ","source":"\u003ca href=\"http:\/\/geert.io\" rel=\"nofollow\"\u003eGeertBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":11,"favorite_count":14,"entities":{"hashtags":[{"text":"NewHorizons","indices":[0,12]},{"text":"Pluto","indices":[80,86]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/f2VIi4tTPm","expanded_url":"http:\/\/pluto.jhuapl.edu\/soc\/Pluto-Encounter\/view_obs.php?image=data\/pluto\/level2\/lor\/jpeg\/029923\/lor_0299236719_0x630_sci_4.jpg&utc_time=2015-07-15<br>03:26:40 UTC&description=%5Bnot+yet+coded%5D&target=PLUTO&range=0.8M km&exposure=150 msec","display_url":"pluto.jhuapl.edu\/soc\/Pluto-Enco\u2026","indices":[90,112]}],"media":[{"id":642466415186829312,"id_str":"642466415186829312","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/COp_zPlUYAAVjJO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COp_zPlUYAAVjJO.jpg","url":"http:\/\/t.co\/bHocoxqmOQ","display_url":"pic.twitter.com\/bHocoxqmOQ","expanded_url":"http:\/\/twitter.com\/NewHorizonsBot\/status\/642466415996502016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595603113987432448\/jQofSMx__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595603113987432448\/jQofSMx__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222275355\/1430837448","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2991194699,"id_str":"2991194699","name":"Apollo Images","screen_name":"ApolloImgs","location":"The Moon","description":"I post images from the Apollo Missions, courtesy of the Lunar and Planetary Institute. Bot by @jhoffstein","url":"http:\/\/t.co\/JREI78yCwu","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JREI78yCwu","expanded_url":"http:\/\/www.lpi.usra.edu\/resources\/apollo\/","display_url":"lpi.usra.edu\/resources\/apol\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":0,"listed_count":7,"created_at":"Thu Jan 22 02:37:49 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2049,"lang":"en","status":{"created_at":"Mon Jul 13 18:10:12 +0000 2015","id":620656488705462272,"id_str":"620656488705462272","text":"Apollo 14 http:\/\/t.co\/2hePD8OAjf http:\/\/t.co\/82F8ISxS26","source":"\u003ca href=\"http:\/\/www.jhoffstein.com\" rel=\"nofollow\"\u003eApollo Images\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/2hePD8OAjf","expanded_url":"http:\/\/www.lpi.usra.edu\/resources\/apollo\/frame\/?AS14-72-9978","display_url":"lpi.usra.edu\/resources\/apol\u2026","indices":[10,32]}],"media":[{"id":620656488587988992,"id_str":"620656488587988992","indices":[33,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CJ0DybnUEAARnm4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJ0DybnUEAARnm4.jpg","url":"http:\/\/t.co\/82F8ISxS26","display_url":"pic.twitter.com\/82F8ISxS26","expanded_url":"http:\/\/twitter.com\/ApolloImgs\/status\/620656488705462272\/photo\/1","type":"photo","sizes":{"large":{"w":450,"h":450,"resize":"fit"},"medium":{"w":450,"h":450,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558092578197749760\/N1BAojDA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558092578197749760\/N1BAojDA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991194699\/1421894692","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1396,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7625,"lang":"en","status":{"created_at":"Fri Dec 18 19:43:02 +0000 2015","id":677937134318149632,"id_str":"677937134318149632","text":"Coordinates: 57905,20545. 675x675px https:\/\/t.co\/h5PAyPIIBD","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677937134230102016,"id_str":"677937134230102016","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWiEO1HU4AAbTvJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWiEO1HU4AAbTvJ.jpg","url":"https:\/\/t.co\/h5PAyPIIBD","display_url":"pic.twitter.com\/h5PAyPIIBD","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677937134318149632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":675,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2988738439,"id_str":"2988738439","name":"tiny shooting stars","screen_name":"tinyshootinstar","location":"","description":"tiny shooting stars put into @tiny_star_field's tweets.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":2,"listed_count":9,"created_at":"Sun Jan 18 15:05:10 +0000 2015","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":"en","status":{"created_at":"Fri Feb 06 18:32:00 +0000 2015","id":563767078448930816,"id_str":"563767078448930816","text":"@tiny_star_field\n \u272b . \u3000\u3000\u3000\u3000\u3000\u3000* \u00b7 . \n\u3000 \u3000\u3000\u3000\u3000 . \n\u3000\u3000\u2737 \u272b \u3000\n \u3000\u3000\u3000 . \u3000 \u3000\u3000\u3000 \n \u3000\u3000 * \u3000\ud83d\udcab \u02da \n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000 \u3000 \u22c6 \u3000 \u02da \u272b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":563766329132331008,"in_reply_to_status_id_str":"563766329132331008","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[0,16]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556831778095108096\/_izGkXUT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556831778095108096\/_izGkXUT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988738439\/1421594082","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2873849441,"id_str":"2873849441","name":"Star Near You","screen_name":"starnearyou","location":"Orion\u2013Cygnus Arm, Milky Way","description":"I'm a bot that generates GIFs of the Sun's corona. Images courtesy of NASA\/SDO and the AIA science team. Created by @ddbeck.","url":"https:\/\/t.co\/2XrBFpUxiv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2XrBFpUxiv","expanded_url":"https:\/\/github.com\/ddbeck\/starnearyou","display_url":"github.com\/ddbeck\/starnea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":1,"listed_count":21,"created_at":"Wed Nov 12 15:26:16 +0000 2014","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1185,"lang":"en","status":{"created_at":"Fri Dec 18 16:09:21 +0000 2015","id":677883355954835456,"id_str":"677883355954835456","text":"https:\/\/t.co\/1FZuXwfN8P","source":"\u003ca href=\"http:\/\/www.twitter.com\/starnearyou\" rel=\"nofollow\"\u003eStar Near You Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","display_url":"pic.twitter.com\/1FZuXwfN8P","indices":[0,23]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2873849441\/1415806333","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4244,"friends_count":2,"listed_count":62,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":405,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4285,"lang":"en","status":{"created_at":"Fri Dec 18 18:51:27 +0000 2015","id":677924150757969921,"id_str":"677924150757969921","text":"@BenjM_ @tiny_star_field lol\ud83d\ude80cool","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677923217823035392,"in_reply_to_status_id_str":"677923217823035392","in_reply_to_user_id":4041039680,"in_reply_to_user_id_str":"4041039680","in_reply_to_screen_name":"BenjM_","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BenjM_","name":"Christmas Zebra","id":4041039680,"id_str":"4041039680","indices":[0,7]},{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[8,24]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69692,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4295,"lang":"en","status":{"created_at":"Fri Dec 18 18:29:02 +0000 2015","id":677918508915683328,"id_str":"677918508915683328","text":"\u00b7 \u3000 + \u00b7 \u3000\u3000\u3000\u3000\u3000\u3000\n * *\u3000\u3000\u3000 \u00b7 \u3000\u3000 \u02da .\n \u2735 \u273a \u3000.\n\u3000\u3000 * . \u273a * \u3000 \u00b7 \u272b \n\u3000 \u3000\u3000 * + \u2737 \u3000\u3000 \n \u273a \u3000 \u3000\u3000 . *","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":169,"favorite_count":133,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14446054,"id_str":"14446054","name":"lowflyingrocks","screen_name":"lowflyingrocks","location":"","description":"I mention every near earth object that passes within 0.2AU of Earth. @tomtaylor made me.","url":"http:\/\/t.co\/49Rp4zBFqj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/49Rp4zBFqj","expanded_url":"http:\/\/www.tomtaylor.co.uk\/projects\/","display_url":"tomtaylor.co.uk\/projects\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6925,"friends_count":4,"listed_count":574,"created_at":"Sat Apr 19 19:58:54 +0000 2008","favourites_count":1,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":4089,"lang":"en","status":{"created_at":"Fri Dec 18 15:40:03 +0000 2015","id":677875983014203392,"id_str":"677875983014203392","text":"2015\u00a0MW53, ~140m-310m in diameter, just passed the Earth at 20km\/s, missing by ~6,790,000km. https:\/\/t.co\/BFlKjHw4i2","source":"\u003ca href=\"http:\/\/twitter.com\/lowflyingrocks\" rel=\"nofollow\"\u003elowflyingrocks\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BFlKjHw4i2","expanded_url":"http:\/\/ssd.jpl.nasa.gov\/sbdb.cgi?sstr=2015%20MW53;orb=1","display_url":"ssd.jpl.nasa.gov\/sbdb.cgi?sstr=\u2026","indices":[93,116]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_list_timeline.json b/testdata/get_list_timeline.json new file mode 100644 index 00000000..54d56f21 --- /dev/null +++ b/testdata/get_list_timeline.json @@ -0,0 +1 @@ +[{"created_at":"Fri Dec 18 16:43:04 +0000 2015","id":677891843946766336,"id_str":"677891843946766336","text":"Coordinates: 11449,1740. 1050x1050px https:\/\/t.co\/iQTfpwBfwU","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:09:21 +0000 2015","id":677883355954835456,"id_str":"677883355954835456","text":"https:\/\/t.co\/1FZuXwfN8P","source":"\u003ca href=\"http:\/\/www.twitter.com\/starnearyou\" rel=\"nofollow\"\u003eStar Near You Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2873849441,"id_str":"2873849441","name":"Star Near You","screen_name":"starnearyou","location":"Orion\u2013Cygnus Arm, Milky Way","description":"I'm a bot that generates GIFs of the Sun's corona. Images courtesy of NASA\/SDO and the AIA science team. Created by @ddbeck.","url":"https:\/\/t.co\/2XrBFpUxiv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2XrBFpUxiv","expanded_url":"https:\/\/github.com\/ddbeck\/starnearyou","display_url":"github.com\/ddbeck\/starnea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":1,"listed_count":21,"created_at":"Wed Nov 12 15:26:16 +0000 2014","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1185,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2873849441\/1415806333","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CWhTUcAUkAACj1t.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:00:40 +0000 2015","id":677881170898624512,"id_str":"677881170898624512","text":"A bit of Pluto https:\/\/t.co\/sKB1j57QUx","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:43:03 +0000 2015","id":677876737833758720,"id_str":"677876737833758720","text":"Coordinates: 65932,23911. 769x769px https:\/\/t.co\/F53UF9iZwM","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 15:40:03 +0000 2015","id":677875983014203392,"id_str":"677875983014203392","text":"2015\u00a0MW53, ~140m-310m in diameter, just passed the Earth at 20km\/s, missing by ~6,790,000km. https:\/\/t.co\/BFlKjHw4i2","source":"\u003ca href=\"http:\/\/twitter.com\/lowflyingrocks\" rel=\"nofollow\"\u003elowflyingrocks\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14446054,"id_str":"14446054","name":"lowflyingrocks","screen_name":"lowflyingrocks","location":"","description":"I mention every near earth object that passes within 0.2AU of Earth. @tomtaylor made me.","url":"http:\/\/t.co\/49Rp4zBFqj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/49Rp4zBFqj","expanded_url":"http:\/\/www.tomtaylor.co.uk\/projects\/","display_url":"tomtaylor.co.uk\/projects\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6925,"friends_count":4,"listed_count":574,"created_at":"Sat Apr 19 19:58:54 +0000 2008","favourites_count":1,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":4089,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BFlKjHw4i2","expanded_url":"http:\/\/ssd.jpl.nasa.gov\/sbdb.cgi?sstr=2015%20MW53;orb=1","display_url":"ssd.jpl.nasa.gov\/sbdb.cgi?sstr=\u2026","indices":[93,116]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:29:01 +0000 2015","id":677873207148306432,"id_str":"677873207148306432","text":"* \u3000\u3000\u3000\u3000 \n\u3000\u3000\u3000\u3000. \u00b7 \u3000\n\u3000 \u3000\u3000 \u272b \u3000\n \u22c6 \u3000\u3000 \u00b7 \u3000 \u3000\u3000 \u2739 \u3000\u3000\u3000\n\u3000 \u3000 \u272b \u272b \u3000\u3000\u3000 \u3000 \u22c6 \n\u3000 * \u3000 .","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":193,"favorite_count":127,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 15:18:03 +0000 2015","id":677870447082344448,"id_str":"677870447082344448","text":"Coordinates: (3.9272555029812866, 119.29804246724038); https:\/\/t.co\/0B9m1h5XgG https:\/\/t.co\/xFg5jMsU0C","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0B9m1h5XgG","expanded_url":"http:\/\/osm.org\/go\/4jHjM--?m","display_url":"osm.org\/go\/4jHjM--?m","indices":[55,78]}],"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/240x240\/6euMc-jyD51djwZK.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/720x720\/5flH_9EGCfpUclzR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 14:43:04 +0000 2015","id":677861642500104192,"id_str":"677861642500104192","text":"Coordinates: 12185,316. 1453x1453px https:\/\/t.co\/frzkFDwf0W","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 13:43:04 +0000 2015","id":677846542653386757,"id_str":"677846542653386757","text":"Coordinates: 40280,10804. 1126x1126px https:\/\/t.co\/h39BgolIGZ","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:43:04 +0000 2015","id":677831444446638080,"id_str":"677831444446638080","text":"Coordinates: 41231,10286. 1199x1199px https:\/\/t.co\/YTvQvGwuzq","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:32:38 +0000 2015","id":677828819894599680,"id_str":"677828819894599680","text":"\u00b7\ud83d\ude80\u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677827909189369856,"in_reply_to_status_id_str":"677827909189369856","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[91,107]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:29:01 +0000 2015","id":677827909189369856,"id_str":"677827909189369856","text":"\u00b7 \u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":175,"favorite_count":148,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:21:23 +0000 2015","id":677825988861018113,"id_str":"677825988861018113","text":"Coordinates: (-6.848856172522701, 152.31952652634567); https:\/\/t.co\/Ey2mCrXIlC https:\/\/t.co\/iaLC5cSTWH","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ey2mCrXIlC","expanded_url":"http:\/\/osm.org\/go\/vbQyB--?m","display_url":"osm.org\/go\/vbQyB--?m","indices":[55,78]}],"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/720x720\/9EtetgrNyOhK2rZS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/240x240\/RzRrgP9dTP0Ry6mN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 11:43:03 +0000 2015","id":677816342058164225,"id_str":"677816342058164225","text":"Coordinates: 10334,1959. 1287x1287px https:\/\/t.co\/A7GBy69CQV","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:43:03 +0000 2015","id":677801239917162496,"id_str":"677801239917162496","text":"Coordinates: 6157,20471. 1244x1244px https:\/\/t.co\/Q6Mm0Oi0OX","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:00:36 +0000 2015","id":677790557909962752,"id_str":"677790557909962752","text":"A bit of Pluto https:\/\/t.co\/lKlZJBkQI3","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 09:43:04 +0000 2015","id":677786143924989952,"id_str":"677786143924989952","text":"Coordinates: 60550,10765. 1318x1318px https:\/\/t.co\/xuMtkZ2RGs","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 09:36:01 +0000 2015","id":677784373471666176,"id_str":"677784373471666176","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 \ud83d\ude80 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677782612333584384,"in_reply_to_status_id_str":"677782612333584384","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[97,113]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:29:02 +0000 2015","id":677782612333584384,"id_str":"677782612333584384","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":201,"favorite_count":173,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:17:08 +0000 2015","id":677779618502467584,"id_str":"677779618502467584","text":"Coordinates: (-3.6578324169809178, 103.22975925265374); https:\/\/t.co\/YHhKoQCsMO https:\/\/t.co\/usCWiH9AIt","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YHhKoQCsMO","expanded_url":"http:\/\/osm.org\/go\/tcZ40--?m","display_url":"osm.org\/go\/tcZ40--?m","indices":[56,79]}],"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/240x240\/-w26uvOG_qlTvnGN.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/720x720\/HS8B_gNxLouhxnSz.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_list_timeline_id.json b/testdata/get_list_timeline_id.json new file mode 100644 index 00000000..d1d24720 --- /dev/null +++ b/testdata/get_list_timeline_id.json @@ -0,0 +1 @@ +[{"created_at":"Fri Dec 18 16:43:04 +0000 2015","id":677891843946766336,"id_str":"677891843946766336","text":"Coordinates: 11449,1740. 1050x1050px https:\/\/t.co\/iQTfpwBfwU","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:09:21 +0000 2015","id":677883355954835456,"id_str":"677883355954835456","text":"https:\/\/t.co\/1FZuXwfN8P","source":"\u003ca href=\"http:\/\/www.twitter.com\/starnearyou\" rel=\"nofollow\"\u003eStar Near You Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2873849441,"id_str":"2873849441","name":"Star Near You","screen_name":"starnearyou","location":"Orion\u2013Cygnus Arm, Milky Way","description":"I'm a bot that generates GIFs of the Sun's corona. Images courtesy of NASA\/SDO and the AIA science team. Created by @ddbeck.","url":"https:\/\/t.co\/2XrBFpUxiv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2XrBFpUxiv","expanded_url":"https:\/\/github.com\/ddbeck\/starnearyou","display_url":"github.com\/ddbeck\/starnea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":1,"listed_count":21,"created_at":"Wed Nov 12 15:26:16 +0000 2014","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1185,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2873849441\/1415806333","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CWhTUcAUkAACj1t.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:00:40 +0000 2015","id":677881170898624512,"id_str":"677881170898624512","text":"A bit of Pluto https:\/\/t.co\/sKB1j57QUx","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:43:03 +0000 2015","id":677876737833758720,"id_str":"677876737833758720","text":"Coordinates: 65932,23911. 769x769px https:\/\/t.co\/F53UF9iZwM","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 15:40:03 +0000 2015","id":677875983014203392,"id_str":"677875983014203392","text":"2015\u00a0MW53, ~140m-310m in diameter, just passed the Earth at 20km\/s, missing by ~6,790,000km. https:\/\/t.co\/BFlKjHw4i2","source":"\u003ca href=\"http:\/\/twitter.com\/lowflyingrocks\" rel=\"nofollow\"\u003elowflyingrocks\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14446054,"id_str":"14446054","name":"lowflyingrocks","screen_name":"lowflyingrocks","location":"","description":"I mention every near earth object that passes within 0.2AU of Earth. @tomtaylor made me.","url":"http:\/\/t.co\/49Rp4zBFqj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/49Rp4zBFqj","expanded_url":"http:\/\/www.tomtaylor.co.uk\/projects\/","display_url":"tomtaylor.co.uk\/projects\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6925,"friends_count":4,"listed_count":574,"created_at":"Sat Apr 19 19:58:54 +0000 2008","favourites_count":1,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":4089,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BFlKjHw4i2","expanded_url":"http:\/\/ssd.jpl.nasa.gov\/sbdb.cgi?sstr=2015%20MW53;orb=1","display_url":"ssd.jpl.nasa.gov\/sbdb.cgi?sstr=\u2026","indices":[93,116]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:29:01 +0000 2015","id":677873207148306432,"id_str":"677873207148306432","text":"* \u3000\u3000\u3000\u3000 \n\u3000\u3000\u3000\u3000. \u00b7 \u3000\n\u3000 \u3000\u3000 \u272b \u3000\n \u22c6 \u3000\u3000 \u00b7 \u3000 \u3000\u3000 \u2739 \u3000\u3000\u3000\n\u3000 \u3000 \u272b \u272b \u3000\u3000\u3000 \u3000 \u22c6 \n\u3000 * \u3000 .","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":196,"favorite_count":131,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 15:18:03 +0000 2015","id":677870447082344448,"id_str":"677870447082344448","text":"Coordinates: (3.9272555029812866, 119.29804246724038); https:\/\/t.co\/0B9m1h5XgG https:\/\/t.co\/xFg5jMsU0C","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0B9m1h5XgG","expanded_url":"http:\/\/osm.org\/go\/4jHjM--?m","display_url":"osm.org\/go\/4jHjM--?m","indices":[55,78]}],"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/240x240\/6euMc-jyD51djwZK.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/720x720\/5flH_9EGCfpUclzR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 14:43:04 +0000 2015","id":677861642500104192,"id_str":"677861642500104192","text":"Coordinates: 12185,316. 1453x1453px https:\/\/t.co\/frzkFDwf0W","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 13:43:04 +0000 2015","id":677846542653386757,"id_str":"677846542653386757","text":"Coordinates: 40280,10804. 1126x1126px https:\/\/t.co\/h39BgolIGZ","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:43:04 +0000 2015","id":677831444446638080,"id_str":"677831444446638080","text":"Coordinates: 41231,10286. 1199x1199px https:\/\/t.co\/YTvQvGwuzq","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:32:38 +0000 2015","id":677828819894599680,"id_str":"677828819894599680","text":"\u00b7\ud83d\ude80\u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677827909189369856,"in_reply_to_status_id_str":"677827909189369856","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":9,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[91,107]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:29:01 +0000 2015","id":677827909189369856,"id_str":"677827909189369856","text":"\u00b7 \u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":176,"favorite_count":150,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:21:23 +0000 2015","id":677825988861018113,"id_str":"677825988861018113","text":"Coordinates: (-6.848856172522701, 152.31952652634567); https:\/\/t.co\/Ey2mCrXIlC https:\/\/t.co\/iaLC5cSTWH","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ey2mCrXIlC","expanded_url":"http:\/\/osm.org\/go\/vbQyB--?m","display_url":"osm.org\/go\/vbQyB--?m","indices":[55,78]}],"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/720x720\/9EtetgrNyOhK2rZS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/240x240\/RzRrgP9dTP0Ry6mN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 11:43:03 +0000 2015","id":677816342058164225,"id_str":"677816342058164225","text":"Coordinates: 10334,1959. 1287x1287px https:\/\/t.co\/A7GBy69CQV","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:43:03 +0000 2015","id":677801239917162496,"id_str":"677801239917162496","text":"Coordinates: 6157,20471. 1244x1244px https:\/\/t.co\/Q6Mm0Oi0OX","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:00:36 +0000 2015","id":677790557909962752,"id_str":"677790557909962752","text":"A bit of Pluto https:\/\/t.co\/lKlZJBkQI3","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 09:43:04 +0000 2015","id":677786143924989952,"id_str":"677786143924989952","text":"Coordinates: 60550,10765. 1318x1318px https:\/\/t.co\/xuMtkZ2RGs","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 09:36:01 +0000 2015","id":677784373471666176,"id_str":"677784373471666176","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 \ud83d\ude80 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677782612333584384,"in_reply_to_status_id_str":"677782612333584384","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[97,113]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:29:02 +0000 2015","id":677782612333584384,"id_str":"677782612333584384","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":201,"favorite_count":173,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:17:08 +0000 2015","id":677779618502467584,"id_str":"677779618502467584","text":"Coordinates: (-3.6578324169809178, 103.22975925265374); https:\/\/t.co\/YHhKoQCsMO https:\/\/t.co\/usCWiH9AIt","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YHhKoQCsMO","expanded_url":"http:\/\/osm.org\/go\/tcZ40--?m","display_url":"osm.org\/go\/tcZ40--?m","indices":[56,79]}],"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/240x240\/-w26uvOG_qlTvnGN.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/720x720\/HS8B_gNxLouhxnSz.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_lists.json b/testdata/get_lists.json new file mode 100644 index 00000000..b74a4f33 --- /dev/null +++ b/testdata/get_lists.json @@ -0,0 +1 @@ +{"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0","lists":[{"id":229581524,"id_str":"229581524","name":"test","uri":"\/notinourselves\/lists\/test","subscriber_count":0,"member_count":1,"mode":"public","description":"","slug":"test","full_name":"@notinourselves\/test","created_at":"Fri Dec 18 20:00:45 +0000 2015","following":true,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false}}]} \ No newline at end of file diff --git a/testdata/get_lists_list.json b/testdata/get_lists_list.json new file mode 100644 index 00000000..3efb112d --- /dev/null +++ b/testdata/get_lists_list.json @@ -0,0 +1 @@ +[{"id":189643778,"id_str":"189643778","name":"space bots","uri":"\/inky\/lists\/space-bots","subscriber_count":2,"member_count":10,"mode":"public","description":"\u2728\ud83c\udf0c\u2728","slug":"space-bots","full_name":"@inky\/space-bots","created_at":"Thu Jan 22 21:35:25 +0000 2015","following":true,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}}] \ No newline at end of file diff --git a/testdata/get_lists_list_screen_name.json b/testdata/get_lists_list_screen_name.json new file mode 100644 index 00000000..09cfeef8 --- /dev/null +++ b/testdata/get_lists_list_screen_name.json @@ -0,0 +1 @@ +[{"id":224581495,"id_str":"224581495","name":"Waiting For GoBot","uri":"\/colewillsea\/lists\/waiting-for-gobot","subscriber_count":5,"member_count":7,"mode":"public","description":"Waiting For Godot in bot form for NaNoGenMo2015","slug":"waiting-for-gobot","full_name":"@colewillsea\/waiting-for-gobot","created_at":"Sun Nov 01 16:04:26 +0000 2015","following":false,"user":{"id":193000769,"id_str":"193000769","name":"`~((=^-.-^=))","screen_name":"colewillsea","location":"Oakland, CA","description":"mostly selfies and JavaScript jokes. they\/them. all but fully animated.","url":"https:\/\/t.co\/n9o8lGQuY4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n9o8lGQuY4","expanded_url":"http:\/\/www.colewillsea.com","display_url":"colewillsea.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":191,"friends_count":855,"listed_count":35,"created_at":"Mon Sep 20 18:35:04 +0000 2010","favourites_count":4599,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6981,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193000769\/1446385957","profile_link_color":"FF63ED","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":221599064,"id_str":"221599064","name":"sui bottes + friends","uri":"\/swayandsea\/lists\/sui-bottes-friends","subscriber_count":10,"member_count":25,"mode":"public","description":"pseudosuis, projects, and their friends #botALLY","slug":"sui-bottes-friends","full_name":"@swayandsea\/sui-bottes-friends","created_at":"Thu Oct 01 17:53:18 +0000 2015","following":false,"user":{"id":1447613460,"id_str":"1447613460","name":"ramona fckin flowers","screen_name":"swayandsea","location":"@sui_ebooks","description":"moved to @sui_ebooks","url":"https:\/\/t.co\/1kHrvnfu5U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1kHrvnfu5U","expanded_url":"http:\/\/twitter.com\/sui_ebooks","display_url":"twitter.com\/sui_ebooks","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":1370,"friends_count":228,"listed_count":85,"created_at":"Wed May 22 01:00:18 +0000 2013","favourites_count":124426,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1349,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447613460\/1450343691","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":197631751,"id_str":"197631751","name":"my bots","uri":"\/joemfox\/lists\/my-bots","subscriber_count":1,"member_count":4,"mode":"public","description":"my bots","slug":"my-bots","full_name":"@joemfox\/my-bots","created_at":"Wed Mar 04 06:39:49 +0000 2015","following":false,"user":{"id":14816237,"id_str":"14816237","name":"Joe Fox","screen_name":"joemfox","location":"Fairbanks, Alaska","description":"Graphics at @latimes. Formerly @newsminer. Feminist. Not a vegan. I like bots, baseball and burritos. @burritopatents|@SombreroWatch|@andromedabot|@colorschemez","url":"https:\/\/t.co\/75tZrhEwDu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/75tZrhEwDu","expanded_url":"http:\/\/joemfox.com","display_url":"joemfox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":953,"friends_count":1970,"listed_count":66,"created_at":"Sun May 18 00:40:52 +0000 2008","favourites_count":4416,"utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"verified":false,"statuses_count":15933,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"FFFDF7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658259865\/u8tr7egiegp7b5xjmg2e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658259865\/u8tr7egiegp7b5xjmg2e.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651222836980224001\/W6gaQrkt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651222836980224001\/W6gaQrkt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14816237\/1412222318","profile_link_color":"FF0055","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":211206643,"id_str":"211206643","name":"Mike's Bots","uri":"\/mike_watson\/lists\/mike-s-bots","subscriber_count":1,"member_count":6,"mode":"public","description":"Dumb Twitter bots I've made","slug":"mike-s-bots","full_name":"@mike_watson\/mike-s-bots","created_at":"Fri Jun 19 02:18:28 +0000 2015","following":false,"user":{"id":20108996,"id_str":"20108996","name":"Mike Watson","screen_name":"mike_watson","location":"NYC","description":"My dog's name is Pancake.","url":"https:\/\/t.co\/67B372qbbd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/67B372qbbd","expanded_url":"http:\/\/mikewatson.me\/","display_url":"mikewatson.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":454,"friends_count":283,"listed_count":31,"created_at":"Thu Feb 05 00:15:12 +0000 2009","favourites_count":795,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":13640,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"556D75","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/4287390\/venus_colored.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/4287390\/venus_colored.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604672054969937921\/BkiwSfK0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604672054969937921\/BkiwSfK0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20108996\/1393739875","profile_link_color":"006661","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7A95A5","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":187765235,"id_str":"187765235","name":"My bots","uri":"\/doeg\/lists\/my-bots","subscriber_count":2,"member_count":4,"mode":"public","description":"","slug":"my-bots","full_name":"@doeg\/my-bots","created_at":"Wed Jan 07 04:30:10 +0000 2015","following":false,"user":{"id":2533509324,"id_str":"2533509324","name":"yuledoeg","screen_name":"doeg","location":"\u219f \u219f \u219f","description":"","url":"http:\/\/t.co\/6fAXA9friH","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/6fAXA9friH","expanded_url":"http:\/\/doeg.gy\/","display_url":"doeg.gy","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":271,"friends_count":104,"listed_count":8,"created_at":"Thu May 29 22:23:01 +0000 2014","favourites_count":7334,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":57,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555793196131688448\/e6a068a0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555793196131688448\/e6a068a0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2533509324\/1420644472","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":220465434,"id_str":"220465434","name":"my-bots","uri":"\/cblgh\/lists\/my-bots","subscriber_count":1,"member_count":5,"mode":"public","description":"this is where the twitters bots i've made live!","slug":"my-bots","full_name":"@cblgh\/my-bots","created_at":"Fri Sep 18 17:37:24 +0000 2015","following":false,"user":{"id":118355207,"id_str":"118355207","name":"Alexander Cobleigh","screen_name":"cblgh","location":"Lund, Sweden","description":"Computer science student, intermittently voracious reader, game experimenter and electronic music explorer.","url":"https:\/\/t.co\/4TvnHW4EEI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4TvnHW4EEI","expanded_url":"https:\/\/cblgh.org","display_url":"cblgh.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":181,"friends_count":516,"listed_count":16,"created_at":"Sun Feb 28 12:05:51 +0000 2010","favourites_count":5184,"utc_offset":3600,"time_zone":"Stockholm","geo_enabled":false,"verified":false,"statuses_count":996,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000176688294\/VItijy85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000176688294\/VItijy85.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000448795123\/f6e585845c65ff59e28778f8ea26a994_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000448795123\/f6e585845c65ff59e28778f8ea26a994_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118355207\/1403873053","profile_link_color":"C24646","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":214578852,"id_str":"214578852","name":"My Twitterbots","uri":"\/fourtonfish\/lists\/my-twitterbots1","subscriber_count":2,"member_count":5,"mode":"public","description":"Twitterbots that I made.","slug":"my-twitterbots1","full_name":"@fourtonfish\/my-twitterbots1","created_at":"Sun Jul 19 12:22:37 +0000 2015","following":false,"user":{"id":1267873218,"id_str":"1267873218","name":"Stefan Bohacek","screen_name":"fourtonfish","location":"Brooklyn, NY; prev. Bratislava","description":"Husband, dad, 'full stack' web developer. I made http:\/\/t.co\/q0OvD03zN5, http:\/\/t.co\/WKb4iyqL9H and other, less useful stuff. #botmakers #edtech #teachtheweb","url":"https:\/\/t.co\/LscMLxozN6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LscMLxozN6","expanded_url":"https:\/\/fourtonfish.com\/","display_url":"fourtonfish.com","indices":[0,23]}]},"description":{"urls":[{"url":"http:\/\/t.co\/q0OvD03zN5","expanded_url":"http:\/\/simplesharingbuttons.com","display_url":"simplesharingbuttons.com","indices":[49,71]},{"url":"http:\/\/t.co\/WKb4iyqL9H","expanded_url":"http:\/\/botwiki.org","display_url":"botwiki.org","indices":[73,95]}]}},"protected":false,"followers_count":361,"friends_count":301,"listed_count":32,"created_at":"Thu Mar 14 20:10:32 +0000 2013","favourites_count":2913,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1654,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652937129689923584\/ItggjTDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652937129689923584\/ItggjTDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267873218\/1412181738","profile_link_color":"ABB8C2","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":168789362,"id_str":"168789362","name":"My Robots","uri":"\/colewillsea\/lists\/my-robots","subscriber_count":6,"member_count":115,"mode":"public","description":"lovely bots that I built or collaborated on =^.^=","slug":"my-robots","full_name":"@colewillsea\/my-robots","created_at":"Thu Sep 04 14:10:19 +0000 2014","following":false,"user":{"id":193000769,"id_str":"193000769","name":"`~((=^-.-^=))","screen_name":"colewillsea","location":"Oakland, CA","description":"mostly selfies and JavaScript jokes. they\/them. all but fully animated.","url":"https:\/\/t.co\/n9o8lGQuY4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n9o8lGQuY4","expanded_url":"http:\/\/www.colewillsea.com","display_url":"colewillsea.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":191,"friends_count":855,"listed_count":35,"created_at":"Mon Sep 20 18:35:04 +0000 2010","favourites_count":4599,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6981,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193000769\/1446385957","profile_link_color":"FF63ED","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":205637792,"id_str":"205637792","name":"My Bots","uri":"\/ojahnn\/lists\/my-bots","subscriber_count":4,"member_count":19,"mode":"public","description":"Twitterbots made by @ojahnn.","slug":"my-bots","full_name":"@ojahnn\/my-bots","created_at":"Sun May 10 15:15:31 +0000 2015","following":false,"user":{"id":24693754,"id_str":"24693754","name":"Esther Seyffarth","screen_name":"ojahnn","location":"D\u00fcsseldorf","description":"I like to linguist computers. Tweeting mostly in German. Look at the twitterbots I made: https:\/\/t.co\/PfqKMNMxJb\u2026","url":"https:\/\/t.co\/OMsvx9t5RS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OMsvx9t5RS","expanded_url":"https:\/\/enigmabrot.de\/projects\/","display_url":"enigmabrot.de\/projects\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/PfqKMNMxJb","expanded_url":"http:\/\/twitter.com\/ojahnn\/lists\/m","display_url":"twitter.com\/ojahnn\/lists\/m","indices":[89,112]}]}},"protected":false,"followers_count":390,"friends_count":372,"listed_count":26,"created_at":"Mon Mar 16 13:55:48 +0000 2009","favourites_count":1613,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5889,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"757575","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173082583\/GPLG49vF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173082583\/GPLG49vF.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594843502892167168\/4ZMRDo_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594843502892167168\/4ZMRDo_Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24693754\/1438796424","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":212023677,"id_str":"212023677","name":"cuteness therapy","uri":"\/dbaker_h\/lists\/cuteness-therapy","subscriber_count":1,"member_count":17,"mode":"public","description":"","slug":"cuteness-therapy","full_name":"@dbaker_h\/cuteness-therapy","created_at":"Sat Jun 27 00:23:03 +0000 2015","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":142381252,"id_str":"142381252","name":"bot family","uri":"\/dbaker_h\/lists\/bot-family","subscriber_count":3,"member_count":17,"mode":"public","description":"making sure the kids aren't up to any mischief","slug":"bot-family","full_name":"@dbaker_h\/bot-family","created_at":"Thu Jul 03 13:20:58 +0000 2014","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":199134790,"id_str":"199134790","name":"my bots","uri":"\/alicemazzy\/lists\/my-bots","subscriber_count":3,"member_count":8,"mode":"public","description":"pls @ me if one becomes self-aware so I can give her my root password (https:\/\/github.com\/alicemaz)","slug":"my-bots","full_name":"@alicemazzy\/my-bots","created_at":"Tue Mar 17 15:46:22 +0000 2015","following":false,"user":{"id":63506279,"id_str":"63506279","name":"Alice Maz","screen_name":"alicemazzy","location":"Brooklyn, NY","description":"digital deviant, self-modifying machine, witch of the wired | \u26a2 \u26a7 #\ufe0f","url":"http:\/\/t.co\/GJAnR54r58","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GJAnR54r58","expanded_url":"http:\/\/www.alicemaz.com\/","display_url":"alicemaz.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3992,"friends_count":268,"listed_count":174,"created_at":"Thu Aug 06 18:53:51 +0000 2009","favourites_count":20893,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":40728,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639995326745677824\/Ir73bU7n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639995326745677824\/Ir73bU7n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63506279\/1440078667","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":173125727,"id_str":"173125727","name":"My bots","uri":"\/beaugunderson\/lists\/my-bots","subscriber_count":1,"member_count":7,"mode":"public","description":"Twitter bots I've made.","slug":"my-bots","full_name":"@beaugunderson\/my-bots","created_at":"Thu Oct 09 10:00:43 +0000 2014","following":false,"user":{"id":5746882,"id_str":"5746882","name":"let it sneauw","screen_name":"beaugunderson","location":"Seattle, WA","description":"feminist, feeling-haver, net art maker, #botALLY \u2665 javascript & python \u26a1\ufe0f pronouns: he\/him https:\/\/t.co\/ycsix8FQSf","url":"https:\/\/t.co\/de9VPgyMpj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/de9VPgyMpj","expanded_url":"https:\/\/beaugunderson.com\/","display_url":"beaugunderson.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ycsix8FQSf","expanded_url":"http:\/\/openhumans.org","display_url":"openhumans.org","indices":[91,114]}]}},"protected":false,"followers_count":7371,"friends_count":6102,"listed_count":173,"created_at":"Thu May 03 17:46:35 +0000 2007","favourites_count":15532,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":14141,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"204443","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/379605553\/pattern_156.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/379605553\/pattern_156.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623757496100896768\/_AtAzJim_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623757496100896768\/_AtAzJim_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5746882\/1398198050","profile_link_color":"2D2823","profile_sidebar_border_color":"1A3230","profile_sidebar_fill_color":"F5F5F5","profile_text_color":"273633","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":92234099,"id_str":"92234099","name":"Bots","uri":"\/rainshapes\/lists\/bots","subscriber_count":7,"member_count":21,"mode":"public","description":"Tweets from my bots.","slug":"bots","full_name":"@rainshapes\/bots","created_at":"Tue Jul 02 15:27:53 +0000 2013","following":false,"user":{"id":1098206508,"id_str":"1098206508","name":"tobi hahn","screen_name":"rainshapes","location":"philadelphia","description":"making games @PaisleyGames \/ #botALLY","url":"http:\/\/t.co\/tbec5kxrFT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/tbec5kxrFT","expanded_url":"http:\/\/hahndynasty.net","display_url":"hahndynasty.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":379,"friends_count":537,"listed_count":35,"created_at":"Thu Jan 17 13:51:19 +0000 2013","favourites_count":4749,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":7383,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"02E391","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000178573366\/QREOCeJe.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000178573366\/QREOCeJe.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650473302339661824\/xXXXUvo4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650473302339661824\/xXXXUvo4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098206508\/1421711386","profile_link_color":"E30254","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":108202239,"id_str":"108202239","name":"My Bots","uri":"\/StefanHayden\/lists\/my-bots","subscriber_count":3,"member_count":16,"mode":"public","description":"","slug":"my-bots","full_name":"@StefanHayden\/my-bots","created_at":"Sun Mar 16 16:59:33 +0000 2014","following":false,"user":{"id":52893,"id_str":"52893","name":"Stefan Hayden","screen_name":"StefanHayden","location":"NYC via Hackensack","description":"I fav tweets. Pop culture. dumb jokes. TV. feminist . frontend developer for @shutterstock in nyc. #botALLY","url":"http:\/\/t.co\/QagHaerdUw","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QagHaerdUw","expanded_url":"http:\/\/www.stefanhayden.com\/","display_url":"stefanhayden.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":792,"friends_count":1981,"listed_count":54,"created_at":"Sat Dec 09 04:43:27 +0000 2006","favourites_count":27936,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":25959,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52893\/1398313766","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":209814583,"id_str":"209814583","name":"bots by lich","uri":"\/lichlike\/lists\/bots-by-lich1","subscriber_count":2,"member_count":32,"mode":"public","description":"active bots by @lichlike \/ @tylercallich","slug":"bots-by-lich1","full_name":"@lichlike\/bots-by-lich1","created_at":"Fri Jun 05 20:20:18 +0000 2015","following":false,"user":{"id":125738772,"id_str":"125738772","name":"t y VERIF\u00cdED","screen_name":"lichlike","location":"ar, usa","description":"lich wandering text labyrinths\u2728 word wench \uff0f code tinkerer \uff0f kava kultist\u2728 28\u2728 #botally\u2728 they \uff0f she","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":618,"friends_count":542,"listed_count":44,"created_at":"Tue Mar 23 18:24:24 +0000 2010","favourites_count":70128,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":51039,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"CFD503","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000019109987\/6e1014d7bbb5a347e952e6012b380a1b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000019109987\/6e1014d7bbb5a347e952e6012b380a1b.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677323438910869504\/JwhknWGt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677323438910869504\/JwhknWGt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125738772\/1450322973","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3CEFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":93527328,"id_str":"93527328","name":"Darius Kazemi's Bots","uri":"\/tinysubversions\/lists\/darius-kazemi-s-bots","subscriber_count":72,"member_count":47,"mode":"public","description":"These are bots that @tinysubversions has made.","slug":"darius-kazemi-s-bots","full_name":"@tinysubversions\/darius-kazemi-s-bots","created_at":"Mon Jul 29 13:21:38 +0000 2013","following":false,"user":{"id":14475298,"id_str":"14475298","name":"Darius Kazemi","screen_name":"tinysubversions","location":"Portland, OR","description":"I make weird internet art. Latest project: @yearlyawards! Follow it to get an award. Worker-owner at @feeltraincoop #WHNBM","url":"http:\/\/t.co\/IoTmQk4rMq","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/IoTmQk4rMq","expanded_url":"http:\/\/tinysubversions.com","display_url":"tinysubversions.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":14980,"friends_count":1523,"listed_count":804,"created_at":"Tue Apr 22 14:41:58 +0000 2008","favourites_count":20625,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":56934,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6921","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115588280\/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115588280\/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651160874594361344\/zSxDVhp8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651160874594361344\/zSxDVhp8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14475298\/1438549422","profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":125996505,"id_str":"125996505","name":"bots","uri":"\/dunndunndunn\/lists\/bots","subscriber_count":1,"member_count":9,"mode":"public","description":"","slug":"bots","full_name":"@dunndunndunn\/bots","created_at":"Sat May 24 06:27:26 +0000 2014","following":false,"user":{"id":14578503,"id_str":"14578503","name":"christmas cat","screen_name":"dunndunndunn","location":"","description":"tweets","url":"https:\/\/t.co\/UYtfaOpCZ4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UYtfaOpCZ4","expanded_url":"https:\/\/keybase.io\/dunn","display_url":"keybase.io\/dunn","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":520,"friends_count":327,"listed_count":27,"created_at":"Tue Apr 29 01:22:52 +0000 2008","favourites_count":67221,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":35625,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647154758\/pyolb9h5a0ebz33t39bs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647154758\/pyolb9h5a0ebz33t39bs.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677676819840172033\/vRseBPlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677676819840172033\/vRseBPlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14578503\/1409596542","profile_link_color":"005C28","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6E6E6","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":118700852,"id_str":"118700852","name":"Bots by me","uri":"\/ckolderup\/lists\/bots-by-me","subscriber_count":8,"member_count":18,"mode":"public","description":"","slug":"bots-by-me","full_name":"@ckolderup\/bots-by-me","created_at":"Tue Apr 29 07:06:37 +0000 2014","following":false,"user":{"id":9368412,"id_str":"9368412","name":"Casey Kolderup","screen_name":"ckolderup","location":"video prison","description":"THIS IS TIME WELL SPENT","url":"https:\/\/t.co\/QzEtDgYCNY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QzEtDgYCNY","expanded_url":"http:\/\/casey.kolderup.org","display_url":"casey.kolderup.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1217,"friends_count":521,"listed_count":73,"created_at":"Thu Oct 11 04:47:06 +0000 2007","favourites_count":47807,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":36314,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"171717","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9368412\/1449039477","profile_link_color":"0000FF","profile_sidebar_border_color":"8F8F8F","profile_sidebar_fill_color":"8F8F8F","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":33069866,"id_str":"33069866","name":"Bots I Made","uri":"\/muffinista\/lists\/bots-i-made","subscriber_count":6,"member_count":32,"mode":"public","description":"Some bots that I wrote","slug":"bots-i-made","full_name":"@muffinista\/bots-i-made","created_at":"Thu Jan 06 01:55:08 +0000 2011","following":false,"user":{"id":1160471,"id_str":"1160471","name":"\u2630 mitchell! \u2630","screen_name":"muffinista","location":"Montague, MA","description":"pie heals all wounds\n#botALLY","url":"https:\/\/t.co\/F9U7lQOBWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/F9U7lQOBWG","expanded_url":"http:\/\/muffinlabs.com\/","display_url":"muffinlabs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":924,"friends_count":774,"listed_count":64,"created_at":"Wed Mar 14 14:46:25 +0000 2007","favourites_count":11547,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":22933,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458958349359259649\/v3jhFv9U.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458958349359259649\/v3jhFv9U.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/669649682151424000\/GeIkHzNB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/669649682151424000\/GeIkHzNB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160471\/1406567144","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":208613432,"id_str":"208613432","name":"botscapes","uri":"\/dbaker_h\/lists\/botscapes","subscriber_count":12,"member_count":11,"mode":"public","description":"","slug":"botscapes","full_name":"@dbaker_h\/botscapes","created_at":"Tue May 26 18:20:18 +0000 2015","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":204493997,"id_str":"204493997","name":"nonbinary+women botmakers","uri":"\/swayandsea\/lists\/nonbinary-women-botmakers","subscriber_count":7,"member_count":19,"mode":"public","description":"a list of nonbinary and women botmakers on twitter. @ me if you know one not listed! #botALLY","slug":"nonbinary-women-botmakers","full_name":"@swayandsea\/nonbinary-women-botmakers","created_at":"Fri May 01 22:05:54 +0000 2015","following":false,"user":{"id":1447613460,"id_str":"1447613460","name":"ramona fckin flowers","screen_name":"swayandsea","location":"@sui_ebooks","description":"moved to @sui_ebooks","url":"https:\/\/t.co\/1kHrvnfu5U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1kHrvnfu5U","expanded_url":"http:\/\/twitter.com\/sui_ebooks","display_url":"twitter.com\/sui_ebooks","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":1370,"friends_count":228,"listed_count":85,"created_at":"Wed May 22 01:00:18 +0000 2013","favourites_count":124426,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1349,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447613460\/1450343691","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":103199672,"id_str":"103199672","name":"tweet bot makers","uri":"\/StefanHayden\/lists\/tweet-bot-makers","subscriber_count":3,"member_count":56,"mode":"public","description":"","slug":"tweet-bot-makers","full_name":"@StefanHayden\/tweet-bot-makers","created_at":"Wed Jan 08 05:02:36 +0000 2014","following":false,"user":{"id":52893,"id_str":"52893","name":"Stefan Hayden","screen_name":"StefanHayden","location":"NYC via Hackensack","description":"I fav tweets. Pop culture. dumb jokes. TV. feminist . frontend developer for @shutterstock in nyc. #botALLY","url":"http:\/\/t.co\/QagHaerdUw","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QagHaerdUw","expanded_url":"http:\/\/www.stefanhayden.com\/","display_url":"stefanhayden.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":792,"friends_count":1981,"listed_count":54,"created_at":"Sat Dec 09 04:43:27 +0000 2006","favourites_count":27936,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":25959,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52893\/1398313766","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":171811535,"id_str":"171811535","name":"tilde.club\/~","uri":"\/citizenk\/lists\/tilde-club","subscriber_count":2,"member_count":99,"mode":"public","description":"~~~this is my tilde.club list~~~~ \u2766 do not forget to put your ~ before your @ \u2766 \/ht @Heather_R","slug":"tilde-club","full_name":"@citizenk\/tilde-club","created_at":"Wed Oct 01 18:18:18 +0000 2014","following":false,"user":{"id":817997,"id_str":"817997","name":"Serge K. Keller \u2766","screen_name":"citizenk","location":"Cyberia","description":"Sharp. Intelligent. Cold-blooded. Ruthless. I void warranties. \u2014 \u2693 https:\/\/t.co\/rM9rCSOZaZ \u2014 \u2712\ufe0f @unifr but tweets my own. \u2014 PGP: DAD1 9DC0 64CC 29FE","url":"http:\/\/t.co\/Yryg5f9FHm","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Yryg5f9FHm","expanded_url":"http:\/\/www.sergekeller.ch","display_url":"sergekeller.ch","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/rM9rCSOZaZ","expanded_url":"http:\/\/www.almaren.ch","display_url":"almaren.ch","indices":[67,90]}]}},"protected":false,"followers_count":764,"friends_count":1651,"listed_count":98,"created_at":"Wed Mar 07 13:31:52 +0000 2007","favourites_count":13469,"utc_offset":3600,"time_zone":"Europe\/Zurich","geo_enabled":true,"verified":false,"statuses_count":30925,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623062605712728064\/iFXZ8JOg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623062605712728064\/iFXZ8JOg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671818718364704768\/57JxgNSV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671818718364704768\/57JxgNSV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817997\/1447761524","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":171725084,"id_str":"171725084","name":"Tilde Club","uri":"\/heatheremerrick\/lists\/tilde-club","subscriber_count":32,"member_count":209,"mode":"public","description":"~","slug":"tilde-club","full_name":"@heatheremerrick\/tilde-club","created_at":"Tue Sep 30 15:34:12 +0000 2014","following":false,"user":{"id":7352872,"id_str":"7352872","name":"Heather Merrick","screen_name":"heatheremerrick","location":"Brooklyn, NY","description":"I live on the internet. I work at Tumblr. Taller IRL than you expect.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1436,"friends_count":271,"listed_count":101,"created_at":"Mon Jul 09 18:46:47 +0000 2007","favourites_count":18209,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":17326,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535887012620812288\/WXi2FEcP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535887012620812288\/WXi2FEcP.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563524791999533056\/DXSlbelq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563524791999533056\/DXSlbelq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7352872\/1436719467","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8E8E8","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":64051698,"id_str":"64051698","name":"CCP Games","uri":"\/CCPGames\/lists\/ccp-games","subscriber_count":137,"member_count":98,"mode":"public","description":"CCP Employees and Official Feeds","slug":"ccp-games","full_name":"@CCPGames\/ccp-games","created_at":"Wed Jan 25 19:57:12 +0000 2012","following":false,"user":{"id":14880937,"id_str":"14880937","name":"CCP Games","screen_name":"CCPGames","location":"Reykjavik, Iceland","description":"CCP is dedicated to the development of cutting edge massively multiplayer games.","url":"http:\/\/t.co\/fCb3SpXrxB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/fCb3SpXrxB","expanded_url":"http:\/\/ccpgames.com\/","display_url":"ccpgames.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":42900,"friends_count":117,"listed_count":1107,"created_at":"Fri May 23 12:45:20 +0000 2008","favourites_count":17,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":1316,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7B8A8D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/125159781\/TwitterBackgrounds_CCP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/125159781\/TwitterBackgrounds_CCP.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466597642978357248\/zPDwJ1cv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466597642978357248\/zPDwJ1cv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14880937\/1400080539","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":106339857,"id_str":"106339857","name":"My Bots","uri":"\/amarriner\/lists\/my-bots","subscriber_count":9,"member_count":19,"mode":"public","description":"A list of all my twitter bots","slug":"my-bots","full_name":"@amarriner\/my-bots","created_at":"Fri Feb 21 20:04:01 +0000 2014","following":false,"user":{"id":57711216,"id_str":"57711216","name":"Aaron Marriner","screen_name":"amarriner","location":"Albany, NY","description":"Shoggoth Wrangler \/\/ #botALLY \/\/ My bots: https:\/\/t.co\/8UZTpX1VWl","url":"http:\/\/t.co\/YnXvZDVrkc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YnXvZDVrkc","expanded_url":"http:\/\/amarriner.com","display_url":"amarriner.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8UZTpX1VWl","expanded_url":"https:\/\/twitter.com\/amarriner\/lists\/my-bots","display_url":"twitter.com\/amarriner\/list\u2026","indices":[42,65]}]}},"protected":false,"followers_count":213,"friends_count":514,"listed_count":9,"created_at":"Fri Jul 17 18:06:26 +0000 2009","favourites_count":1208,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"verified":false,"statuses_count":1703,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000727578124\/e4cc55399515a64ee5e8ce2e6819e51d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000727578124\/e4cc55399515a64ee5e8ce2e6819e51d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57711216\/1413059905","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":158391377,"id_str":"158391377","name":"butt bots","uri":"\/thricedotted\/lists\/butt-bots","subscriber_count":5,"member_count":5,"mode":"public","description":"a list of bots that do butt-related stuff (NOT MINE)","slug":"butt-bots","full_name":"@thricedotted\/butt-bots","created_at":"Fri Jul 18 18:31:24 +0000 2014","following":false,"user":{"id":887397150,"id_str":"887397150","name":"return of the donkus","screen_name":"thricedotted","location":"Seattle, WA","description":"chronic apopheniac, natural language processor, the one who makes computers say stuff \/\/ pronouns: they\/them","url":"https:\/\/t.co\/qGCGtt4VjW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qGCGtt4VjW","expanded_url":"https:\/\/twitter.com\/thricedotted\/lists\/thricedotted-bottes","display_url":"twitter.com\/thricedotted\/l\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2047,"friends_count":578,"listed_count":72,"created_at":"Wed Oct 17 19:18:02 +0000 2012","favourites_count":38112,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":24458,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"333333","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887397150\/1401826056","profile_link_color":"999999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6D4","profile_text_color":"961E2A","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":148822627,"id_str":"148822627","name":"thricedotted-bottes","uri":"\/thricedotted\/lists\/thricedotted-bottes","subscriber_count":97,"member_count":37,"mode":"public","description":"bots by me (where me = @thricedotted)","slug":"thricedotted-bottes","full_name":"@thricedotted\/thricedotted-bottes","created_at":"Sat Jul 12 15:57:37 +0000 2014","following":false,"user":{"id":887397150,"id_str":"887397150","name":"return of the donkus","screen_name":"thricedotted","location":"Seattle, WA","description":"chronic apopheniac, natural language processor, the one who makes computers say stuff \/\/ pronouns: they\/them","url":"https:\/\/t.co\/qGCGtt4VjW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qGCGtt4VjW","expanded_url":"https:\/\/twitter.com\/thricedotted\/lists\/thricedotted-bottes","display_url":"twitter.com\/thricedotted\/l\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2047,"friends_count":578,"listed_count":72,"created_at":"Wed Oct 17 19:18:02 +0000 2012","favourites_count":38112,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":24458,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"333333","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887397150\/1401826056","profile_link_color":"999999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6D4","profile_text_color":"961E2A","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":138209263,"id_str":"138209263","name":"artbots","uri":"\/dbaker_h\/lists\/artbots","subscriber_count":3,"member_count":14,"mode":"public","description":"curated bot gallery","slug":"artbots","full_name":"@dbaker_h\/artbots","created_at":"Sun Jun 29 12:46:43 +0000 2014","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":135792182,"id_str":"135792182","name":"every every","uri":"\/dbaker_h\/lists\/every-every","subscriber_count":2,"member_count":17,"mode":"public","description":"the @everyword legacy","slug":"every-every","full_name":"@dbaker_h\/every-every","created_at":"Mon Jun 23 12:39:41 +0000 2014","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":88895199,"id_str":"88895199","name":"Botmakers","uri":"\/tullyhansen\/lists\/botmakers","subscriber_count":20,"member_count":372,"mode":"public","description":"Blessed are the #botALLIES.","slug":"botmakers","full_name":"@tullyhansen\/botmakers","created_at":"Sat Apr 27 03:37:06 +0000 2013","following":false,"user":{"id":12341222,"id_str":"12341222","name":"Tully Hansen","screen_name":"tullyhansen","location":"tully at tullyhansen dot com","description":"\u2026 am I supposed to be happy to be loved by a few lines of Python or Javascript? I just like tweets about rates matched to times. Textmaker, #botALLY. He\/his.","url":"https:\/\/t.co\/HG4RH7T6rC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HG4RH7T6rC","expanded_url":"http:\/\/tullyhansen.com","display_url":"tullyhansen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1191,"friends_count":857,"listed_count":87,"created_at":"Thu Jan 17 01:34:37 +0000 2008","favourites_count":17528,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":true,"verified":false,"statuses_count":26146,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599004570098933761\/qWEmHiWk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599004570098933761\/qWEmHiWk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12341222\/1432167091","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":97774015,"id_str":"97774015","name":"THE FALL OF HUMANITY","uri":"\/ckolderup\/lists\/the-fall-of-humanity","subscriber_count":14,"member_count":504,"mode":"public","description":"","slug":"the-fall-of-humanity","full_name":"@ckolderup\/the-fall-of-humanity","created_at":"Wed Oct 16 21:26:27 +0000 2013","following":false,"user":{"id":9368412,"id_str":"9368412","name":"Casey Kolderup","screen_name":"ckolderup","location":"video prison","description":"THIS IS TIME WELL SPENT","url":"https:\/\/t.co\/QzEtDgYCNY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QzEtDgYCNY","expanded_url":"http:\/\/casey.kolderup.org","display_url":"casey.kolderup.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1217,"friends_count":521,"listed_count":73,"created_at":"Thu Oct 11 04:47:06 +0000 2007","favourites_count":47807,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":36314,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"171717","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9368412\/1449039477","profile_link_color":"0000FF","profile_sidebar_border_color":"8F8F8F","profile_sidebar_fill_color":"8F8F8F","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":71073929,"id_str":"71073929","name":"gonzosphere","uri":"\/klintron\/lists\/gonzosphere","subscriber_count":17,"member_count":89,"mode":"public","description":"","slug":"gonzosphere","full_name":"@klintron\/gonzosphere","created_at":"Wed May 23 23:51:13 +0000 2012","following":false,"user":{"id":3961541,"id_str":"3961541","name":"Klint Finley","screen_name":"klintron","location":"Portland, OR","description":"Reporter for WIRED. Best reachable by email: me@klintfinley.com PGP: 0xAB128286","url":"http:\/\/t.co\/gK1aqjiyEN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/gK1aqjiyEN","expanded_url":"http:\/\/klintfinley.com","display_url":"klintfinley.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":8290,"friends_count":450,"listed_count":774,"created_at":"Tue Apr 10 00:57:02 +0000 2007","favourites_count":284,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":70,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2530255952\/prapp2vuup4ox3vrwopf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2530255952\/prapp2vuup4ox3vrwopf_normal.jpeg","profile_link_color":"F2356B","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":64495104,"id_str":"64495104","name":"disquiet junto","uri":"\/nofi\/lists\/disquiet-junto","subscriber_count":36,"member_count":127,"mode":"public","description":"current contributors, culled from their profiles on SC; msg to be added (or removed, I guess)","slug":"disquiet-junto","full_name":"@nofi\/disquiet-junto","created_at":"Wed Feb 01 02:16:54 +0000 2012","following":false,"user":{"id":4983,"id_str":"4983","name":"Jeffrey Melton","screen_name":"nofi","location":"Indiana","description":"Designer, producer, sound artist. Likes: #ambient #beer #biking #books #cinema #design #drone #downtempo #eurorack #granular #monome #noise #synthesis","url":"http:\/\/t.co\/bGbGyZlvI9","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/bGbGyZlvI9","expanded_url":"http:\/\/www.nofi.org\/","display_url":"nofi.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":591,"friends_count":1060,"listed_count":33,"created_at":"Tue Aug 29 18:40:23 +0000 2006","favourites_count":70,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":4053,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2612846881\/4nf77862n2kpmft1shvd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2612846881\/4nf77862n2kpmft1shvd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4983\/1352851944","profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":1967988,"id_str":"1967988","name":"Internet Culture","uri":"\/jamiew\/lists\/internet-culture","subscriber_count":14,"member_count":62,"mode":"public","description":"Researchers, creators & propagators of the tubes","slug":"internet-culture","full_name":"@jamiew\/internet-culture","created_at":"Tue Nov 03 17:01:05 +0000 2009","following":false,"user":{"id":774010,"id_str":"774010","name":"Jamie Wilkinson","screen_name":"jamiew","location":"NYC","description":"\u00af\u00af\\_(\u30c4)_\/\u00af\u00af Co-founder\/CEO at @vhxtv, co-creator of @knowyourmeme, member of @fffffat, developer at @starwarsuncut","url":"https:\/\/t.co\/GitnPVtDB2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GitnPVtDB2","expanded_url":"http:\/\/jamiedubs.com","display_url":"jamiedubs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3680,"friends_count":652,"listed_count":240,"created_at":"Thu Feb 15 16:28:04 +0000 2007","favourites_count":6081,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8915,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/136588825\/awesome_smiley_by_ZeaQual.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/136588825\/awesome_smiley_by_ZeaQual.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484673946063601665\/XmjycdP4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484673946063601665\/XmjycdP4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/774010\/1355445167","profile_link_color":"5197C2","profile_sidebar_border_color":"E3C4C9","profile_sidebar_fill_color":"EDEDED","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":35812370,"id_str":"35812370","name":"the twitternet of things","uri":"\/doingitwrong\/lists\/the-twitternet-of-things","subscriber_count":8,"member_count":38,"mode":"public","description":"Objects and concepts that Tweet.","slug":"the-twitternet-of-things","full_name":"@doingitwrong\/the-twitternet-of-things","created_at":"Sun Feb 13 02:01:23 +0000 2011","following":false,"user":{"id":10369032,"id_str":"10369032","name":"Tim Maly","screen_name":"doingitwrong","location":"metaLAB","description":"our forward-looking tweets are subject to risks & uncertainties\u2014actual results may differ materially from those anticipated","url":"http:\/\/t.co\/H4etclcmq2","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/H4etclcmq2","expanded_url":"http:\/\/quietbabylon.com","display_url":"quietbabylon.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7029,"friends_count":205,"listed_count":476,"created_at":"Mon Nov 19 00:51:59 +0000 2007","favourites_count":19219,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":32737,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/804691920\/0cb00cf54fa08bce24b2b2be1600a623.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/804691920\/0cb00cf54fa08bce24b2b2be1600a623.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000849067229\/d72e760ed13aae9cdccdfdf58add2d35_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000849067229\/d72e760ed13aae9cdccdfdf58add2d35_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10369032\/1404080454","profile_link_color":"00ADEF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":2738868,"id_str":"2738868","name":"language-expert","uri":"\/wordnik\/lists\/language-expert","subscriber_count":42,"member_count":75,"mode":"public","description":"","slug":"language-expert","full_name":"@wordnik\/language-expert","created_at":"Tue Nov 10 19:08:53 +0000 2009","following":false,"user":{"id":15863767,"id_str":"15863767","name":"wordnik","screen_name":"wordnik","location":"Bay Area, California","description":"All the words. Help support Wordnik by adopting your favorite word! https:\/\/t.co\/lLkBkSdO99","url":"http:\/\/t.co\/4da2UBGai3","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/4da2UBGai3","expanded_url":"http:\/\/www.wordnik.com","display_url":"wordnik.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lLkBkSdO99","expanded_url":"https:\/\/wordnik.com\/adoptaword","display_url":"wordnik.com\/adoptaword","indices":[68,91]}]}},"protected":false,"followers_count":19767,"friends_count":986,"listed_count":1325,"created_at":"Fri Aug 15 15:12:07 +0000 2008","favourites_count":1346,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":13433,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E5A35C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615520016595693568\/DOsMQ--o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615520016595693568\/DOsMQ--o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15863767\/1443195492","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":209765835,"id_str":"209765835","name":"game bots","uri":"\/inky\/lists\/game-bots","subscriber_count":4,"member_count":16,"mode":"public","description":"bots you can play","slug":"game-bots","full_name":"@inky\/game-bots","created_at":"Fri Jun 05 08:45:02 +0000 2015","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":203854440,"id_str":"203854440","name":"snail bots","uri":"\/inky\/lists\/snail-bots","subscriber_count":1,"member_count":3,"mode":"public","description":"\ud83d\udc0c","slug":"snail-bots","full_name":"@inky\/snail-bots","created_at":"Sat Apr 25 09:40:18 +0000 2015","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":189643778,"id_str":"189643778","name":"space bots","uri":"\/inky\/lists\/space-bots","subscriber_count":2,"member_count":10,"mode":"public","description":"\u2728\ud83c\udf0c\u2728","slug":"space-bots","full_name":"@inky\/space-bots","created_at":"Thu Jan 22 21:35:25 +0000 2015","following":true,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":185988594,"id_str":"185988594","name":"vordr","uri":"\/inky\/lists\/vordr","subscriber_count":2,"member_count":14,"mode":"public","description":"\u259c\u2591\u2591\u2591ncide\u2591t \u2591il\u2591\u2591be r\u2591\u2591orte\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591","slug":"vordr","full_name":"@inky\/vordr","created_at":"Sat Dec 20 15:03:00 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":182135264,"id_str":"182135264","name":"poem bots","uri":"\/inky\/lists\/poem-bots","subscriber_count":1,"member_count":19,"mode":"public","description":"bots whom poem","slug":"poem-bots","full_name":"@inky\/poem-bots","created_at":"Tue Nov 18 23:59:45 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":182119469,"id_str":"182119469","name":"kind bots","uri":"\/inky\/lists\/kind-bots","subscriber_count":3,"member_count":10,"mode":"public","description":"\u003c3","slug":"kind-bots","full_name":"@inky\/kind-bots","created_at":"Tue Nov 18 21:44:51 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":180853044,"id_str":"180853044","name":"img bots","uri":"\/inky\/lists\/img-bots","subscriber_count":4,"member_count":27,"mode":"public","description":"image remix bots","slug":"img-bots","full_name":"@inky\/img-bots","created_at":"Sun Nov 09 11:14:13 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":170920946,"id_str":"170920946","name":"food bots","uri":"\/inky\/lists\/food-bots","subscriber_count":2,"member_count":14,"mode":"public","description":"om nom nom","slug":"food-bots","full_name":"@inky\/food-bots","created_at":"Mon Sep 22 23:11:34 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":159583831,"id_str":"159583831","name":"bot bots","uri":"\/inky\/lists\/bot-bots","subscriber_count":1,"member_count":9,"mode":"public","description":"","slug":"bot-bots","full_name":"@inky\/bot-bots","created_at":"Sat Jul 19 23:40:27 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":152826572,"id_str":"152826572","name":"ebooks bots","uri":"\/inky\/lists\/ebooks-bots","subscriber_count":2,"member_count":67,"mode":"public","description":"doppelg\u00e4nger bots","slug":"ebooks-bots","full_name":"@inky\/ebooks-bots","created_at":"Tue Jul 15 21:56:05 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":130338700,"id_str":"130338700","name":"my bots","uri":"\/inky\/lists\/my-bots","subscriber_count":19,"member_count":23,"mode":"public","description":"Bots by @inky.","slug":"my-bots","full_name":"@inky\/my-bots","created_at":"Fri Jun 06 16:55:13 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":128840980,"id_str":"128840980","name":"sermon","uri":"\/inky\/lists\/sermon","subscriber_count":0,"member_count":19,"mode":"public","description":"","slug":"sermon","full_name":"@inky\/sermon","created_at":"Mon Jun 02 02:09:02 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":102397241,"id_str":"102397241","name":"language","uri":"\/inky\/lists\/language","subscriber_count":0,"member_count":38,"mode":"public","description":"","slug":"language","full_name":"@inky\/language","created_at":"Fri Dec 27 02:36:55 +0000 2013","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":82966275,"id_str":"82966275","name":"bots","uri":"\/inky\/lists\/bots","subscriber_count":7,"member_count":952,"mode":"public","description":"","slug":"bots","full_name":"@inky\/bots","created_at":"Tue Jan 01 21:57:45 +0000 2013","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":71512629,"id_str":"71512629","name":"space","uri":"\/inky\/lists\/space","subscriber_count":0,"member_count":63,"mode":"public","description":"","slug":"space","full_name":"@inky\/space","created_at":"Fri Jun 01 00:55:36 +0000 2012","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}}] \ No newline at end of file diff --git a/testdata/get_lists_list_user_id.json b/testdata/get_lists_list_user_id.json new file mode 100644 index 00000000..09cfeef8 --- /dev/null +++ b/testdata/get_lists_list_user_id.json @@ -0,0 +1 @@ +[{"id":224581495,"id_str":"224581495","name":"Waiting For GoBot","uri":"\/colewillsea\/lists\/waiting-for-gobot","subscriber_count":5,"member_count":7,"mode":"public","description":"Waiting For Godot in bot form for NaNoGenMo2015","slug":"waiting-for-gobot","full_name":"@colewillsea\/waiting-for-gobot","created_at":"Sun Nov 01 16:04:26 +0000 2015","following":false,"user":{"id":193000769,"id_str":"193000769","name":"`~((=^-.-^=))","screen_name":"colewillsea","location":"Oakland, CA","description":"mostly selfies and JavaScript jokes. they\/them. all but fully animated.","url":"https:\/\/t.co\/n9o8lGQuY4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n9o8lGQuY4","expanded_url":"http:\/\/www.colewillsea.com","display_url":"colewillsea.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":191,"friends_count":855,"listed_count":35,"created_at":"Mon Sep 20 18:35:04 +0000 2010","favourites_count":4599,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6981,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193000769\/1446385957","profile_link_color":"FF63ED","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":221599064,"id_str":"221599064","name":"sui bottes + friends","uri":"\/swayandsea\/lists\/sui-bottes-friends","subscriber_count":10,"member_count":25,"mode":"public","description":"pseudosuis, projects, and their friends #botALLY","slug":"sui-bottes-friends","full_name":"@swayandsea\/sui-bottes-friends","created_at":"Thu Oct 01 17:53:18 +0000 2015","following":false,"user":{"id":1447613460,"id_str":"1447613460","name":"ramona fckin flowers","screen_name":"swayandsea","location":"@sui_ebooks","description":"moved to @sui_ebooks","url":"https:\/\/t.co\/1kHrvnfu5U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1kHrvnfu5U","expanded_url":"http:\/\/twitter.com\/sui_ebooks","display_url":"twitter.com\/sui_ebooks","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":1370,"friends_count":228,"listed_count":85,"created_at":"Wed May 22 01:00:18 +0000 2013","favourites_count":124426,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1349,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447613460\/1450343691","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":197631751,"id_str":"197631751","name":"my bots","uri":"\/joemfox\/lists\/my-bots","subscriber_count":1,"member_count":4,"mode":"public","description":"my bots","slug":"my-bots","full_name":"@joemfox\/my-bots","created_at":"Wed Mar 04 06:39:49 +0000 2015","following":false,"user":{"id":14816237,"id_str":"14816237","name":"Joe Fox","screen_name":"joemfox","location":"Fairbanks, Alaska","description":"Graphics at @latimes. Formerly @newsminer. Feminist. Not a vegan. I like bots, baseball and burritos. @burritopatents|@SombreroWatch|@andromedabot|@colorschemez","url":"https:\/\/t.co\/75tZrhEwDu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/75tZrhEwDu","expanded_url":"http:\/\/joemfox.com","display_url":"joemfox.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":953,"friends_count":1970,"listed_count":66,"created_at":"Sun May 18 00:40:52 +0000 2008","favourites_count":4416,"utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"verified":false,"statuses_count":15933,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"FFFDF7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658259865\/u8tr7egiegp7b5xjmg2e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658259865\/u8tr7egiegp7b5xjmg2e.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651222836980224001\/W6gaQrkt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651222836980224001\/W6gaQrkt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14816237\/1412222318","profile_link_color":"FF0055","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":211206643,"id_str":"211206643","name":"Mike's Bots","uri":"\/mike_watson\/lists\/mike-s-bots","subscriber_count":1,"member_count":6,"mode":"public","description":"Dumb Twitter bots I've made","slug":"mike-s-bots","full_name":"@mike_watson\/mike-s-bots","created_at":"Fri Jun 19 02:18:28 +0000 2015","following":false,"user":{"id":20108996,"id_str":"20108996","name":"Mike Watson","screen_name":"mike_watson","location":"NYC","description":"My dog's name is Pancake.","url":"https:\/\/t.co\/67B372qbbd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/67B372qbbd","expanded_url":"http:\/\/mikewatson.me\/","display_url":"mikewatson.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":454,"friends_count":283,"listed_count":31,"created_at":"Thu Feb 05 00:15:12 +0000 2009","favourites_count":795,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":13640,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"556D75","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/4287390\/venus_colored.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/4287390\/venus_colored.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604672054969937921\/BkiwSfK0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604672054969937921\/BkiwSfK0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20108996\/1393739875","profile_link_color":"006661","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7A95A5","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":187765235,"id_str":"187765235","name":"My bots","uri":"\/doeg\/lists\/my-bots","subscriber_count":2,"member_count":4,"mode":"public","description":"","slug":"my-bots","full_name":"@doeg\/my-bots","created_at":"Wed Jan 07 04:30:10 +0000 2015","following":false,"user":{"id":2533509324,"id_str":"2533509324","name":"yuledoeg","screen_name":"doeg","location":"\u219f \u219f \u219f","description":"","url":"http:\/\/t.co\/6fAXA9friH","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/6fAXA9friH","expanded_url":"http:\/\/doeg.gy\/","display_url":"doeg.gy","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":271,"friends_count":104,"listed_count":8,"created_at":"Thu May 29 22:23:01 +0000 2014","favourites_count":7334,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":57,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555793196131688448\/e6a068a0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555793196131688448\/e6a068a0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2533509324\/1420644472","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":220465434,"id_str":"220465434","name":"my-bots","uri":"\/cblgh\/lists\/my-bots","subscriber_count":1,"member_count":5,"mode":"public","description":"this is where the twitters bots i've made live!","slug":"my-bots","full_name":"@cblgh\/my-bots","created_at":"Fri Sep 18 17:37:24 +0000 2015","following":false,"user":{"id":118355207,"id_str":"118355207","name":"Alexander Cobleigh","screen_name":"cblgh","location":"Lund, Sweden","description":"Computer science student, intermittently voracious reader, game experimenter and electronic music explorer.","url":"https:\/\/t.co\/4TvnHW4EEI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4TvnHW4EEI","expanded_url":"https:\/\/cblgh.org","display_url":"cblgh.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":181,"friends_count":516,"listed_count":16,"created_at":"Sun Feb 28 12:05:51 +0000 2010","favourites_count":5184,"utc_offset":3600,"time_zone":"Stockholm","geo_enabled":false,"verified":false,"statuses_count":996,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000176688294\/VItijy85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000176688294\/VItijy85.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000448795123\/f6e585845c65ff59e28778f8ea26a994_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000448795123\/f6e585845c65ff59e28778f8ea26a994_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118355207\/1403873053","profile_link_color":"C24646","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":214578852,"id_str":"214578852","name":"My Twitterbots","uri":"\/fourtonfish\/lists\/my-twitterbots1","subscriber_count":2,"member_count":5,"mode":"public","description":"Twitterbots that I made.","slug":"my-twitterbots1","full_name":"@fourtonfish\/my-twitterbots1","created_at":"Sun Jul 19 12:22:37 +0000 2015","following":false,"user":{"id":1267873218,"id_str":"1267873218","name":"Stefan Bohacek","screen_name":"fourtonfish","location":"Brooklyn, NY; prev. Bratislava","description":"Husband, dad, 'full stack' web developer. I made http:\/\/t.co\/q0OvD03zN5, http:\/\/t.co\/WKb4iyqL9H and other, less useful stuff. #botmakers #edtech #teachtheweb","url":"https:\/\/t.co\/LscMLxozN6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LscMLxozN6","expanded_url":"https:\/\/fourtonfish.com\/","display_url":"fourtonfish.com","indices":[0,23]}]},"description":{"urls":[{"url":"http:\/\/t.co\/q0OvD03zN5","expanded_url":"http:\/\/simplesharingbuttons.com","display_url":"simplesharingbuttons.com","indices":[49,71]},{"url":"http:\/\/t.co\/WKb4iyqL9H","expanded_url":"http:\/\/botwiki.org","display_url":"botwiki.org","indices":[73,95]}]}},"protected":false,"followers_count":361,"friends_count":301,"listed_count":32,"created_at":"Thu Mar 14 20:10:32 +0000 2013","favourites_count":2913,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1654,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652937129689923584\/ItggjTDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652937129689923584\/ItggjTDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267873218\/1412181738","profile_link_color":"ABB8C2","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":168789362,"id_str":"168789362","name":"My Robots","uri":"\/colewillsea\/lists\/my-robots","subscriber_count":6,"member_count":115,"mode":"public","description":"lovely bots that I built or collaborated on =^.^=","slug":"my-robots","full_name":"@colewillsea\/my-robots","created_at":"Thu Sep 04 14:10:19 +0000 2014","following":false,"user":{"id":193000769,"id_str":"193000769","name":"`~((=^-.-^=))","screen_name":"colewillsea","location":"Oakland, CA","description":"mostly selfies and JavaScript jokes. they\/them. all but fully animated.","url":"https:\/\/t.co\/n9o8lGQuY4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n9o8lGQuY4","expanded_url":"http:\/\/www.colewillsea.com","display_url":"colewillsea.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":191,"friends_count":855,"listed_count":35,"created_at":"Mon Sep 20 18:35:04 +0000 2010","favourites_count":4599,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6981,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663399900940374016\/O-qFRd8R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193000769\/1446385957","profile_link_color":"FF63ED","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":205637792,"id_str":"205637792","name":"My Bots","uri":"\/ojahnn\/lists\/my-bots","subscriber_count":4,"member_count":19,"mode":"public","description":"Twitterbots made by @ojahnn.","slug":"my-bots","full_name":"@ojahnn\/my-bots","created_at":"Sun May 10 15:15:31 +0000 2015","following":false,"user":{"id":24693754,"id_str":"24693754","name":"Esther Seyffarth","screen_name":"ojahnn","location":"D\u00fcsseldorf","description":"I like to linguist computers. Tweeting mostly in German. Look at the twitterbots I made: https:\/\/t.co\/PfqKMNMxJb\u2026","url":"https:\/\/t.co\/OMsvx9t5RS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OMsvx9t5RS","expanded_url":"https:\/\/enigmabrot.de\/projects\/","display_url":"enigmabrot.de\/projects\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/PfqKMNMxJb","expanded_url":"http:\/\/twitter.com\/ojahnn\/lists\/m","display_url":"twitter.com\/ojahnn\/lists\/m","indices":[89,112]}]}},"protected":false,"followers_count":390,"friends_count":372,"listed_count":26,"created_at":"Mon Mar 16 13:55:48 +0000 2009","favourites_count":1613,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5889,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"757575","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173082583\/GPLG49vF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173082583\/GPLG49vF.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594843502892167168\/4ZMRDo_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594843502892167168\/4ZMRDo_Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24693754\/1438796424","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":212023677,"id_str":"212023677","name":"cuteness therapy","uri":"\/dbaker_h\/lists\/cuteness-therapy","subscriber_count":1,"member_count":17,"mode":"public","description":"","slug":"cuteness-therapy","full_name":"@dbaker_h\/cuteness-therapy","created_at":"Sat Jun 27 00:23:03 +0000 2015","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":142381252,"id_str":"142381252","name":"bot family","uri":"\/dbaker_h\/lists\/bot-family","subscriber_count":3,"member_count":17,"mode":"public","description":"making sure the kids aren't up to any mischief","slug":"bot-family","full_name":"@dbaker_h\/bot-family","created_at":"Thu Jul 03 13:20:58 +0000 2014","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":199134790,"id_str":"199134790","name":"my bots","uri":"\/alicemazzy\/lists\/my-bots","subscriber_count":3,"member_count":8,"mode":"public","description":"pls @ me if one becomes self-aware so I can give her my root password (https:\/\/github.com\/alicemaz)","slug":"my-bots","full_name":"@alicemazzy\/my-bots","created_at":"Tue Mar 17 15:46:22 +0000 2015","following":false,"user":{"id":63506279,"id_str":"63506279","name":"Alice Maz","screen_name":"alicemazzy","location":"Brooklyn, NY","description":"digital deviant, self-modifying machine, witch of the wired | \u26a2 \u26a7 #\ufe0f","url":"http:\/\/t.co\/GJAnR54r58","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GJAnR54r58","expanded_url":"http:\/\/www.alicemaz.com\/","display_url":"alicemaz.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3992,"friends_count":268,"listed_count":174,"created_at":"Thu Aug 06 18:53:51 +0000 2009","favourites_count":20893,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":40728,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639995326745677824\/Ir73bU7n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639995326745677824\/Ir73bU7n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63506279\/1440078667","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":173125727,"id_str":"173125727","name":"My bots","uri":"\/beaugunderson\/lists\/my-bots","subscriber_count":1,"member_count":7,"mode":"public","description":"Twitter bots I've made.","slug":"my-bots","full_name":"@beaugunderson\/my-bots","created_at":"Thu Oct 09 10:00:43 +0000 2014","following":false,"user":{"id":5746882,"id_str":"5746882","name":"let it sneauw","screen_name":"beaugunderson","location":"Seattle, WA","description":"feminist, feeling-haver, net art maker, #botALLY \u2665 javascript & python \u26a1\ufe0f pronouns: he\/him https:\/\/t.co\/ycsix8FQSf","url":"https:\/\/t.co\/de9VPgyMpj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/de9VPgyMpj","expanded_url":"https:\/\/beaugunderson.com\/","display_url":"beaugunderson.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ycsix8FQSf","expanded_url":"http:\/\/openhumans.org","display_url":"openhumans.org","indices":[91,114]}]}},"protected":false,"followers_count":7371,"friends_count":6102,"listed_count":173,"created_at":"Thu May 03 17:46:35 +0000 2007","favourites_count":15532,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":14141,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"204443","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/379605553\/pattern_156.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/379605553\/pattern_156.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623757496100896768\/_AtAzJim_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623757496100896768\/_AtAzJim_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5746882\/1398198050","profile_link_color":"2D2823","profile_sidebar_border_color":"1A3230","profile_sidebar_fill_color":"F5F5F5","profile_text_color":"273633","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":92234099,"id_str":"92234099","name":"Bots","uri":"\/rainshapes\/lists\/bots","subscriber_count":7,"member_count":21,"mode":"public","description":"Tweets from my bots.","slug":"bots","full_name":"@rainshapes\/bots","created_at":"Tue Jul 02 15:27:53 +0000 2013","following":false,"user":{"id":1098206508,"id_str":"1098206508","name":"tobi hahn","screen_name":"rainshapes","location":"philadelphia","description":"making games @PaisleyGames \/ #botALLY","url":"http:\/\/t.co\/tbec5kxrFT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/tbec5kxrFT","expanded_url":"http:\/\/hahndynasty.net","display_url":"hahndynasty.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":379,"friends_count":537,"listed_count":35,"created_at":"Thu Jan 17 13:51:19 +0000 2013","favourites_count":4749,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":7383,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"02E391","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000178573366\/QREOCeJe.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000178573366\/QREOCeJe.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650473302339661824\/xXXXUvo4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650473302339661824\/xXXXUvo4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098206508\/1421711386","profile_link_color":"E30254","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":108202239,"id_str":"108202239","name":"My Bots","uri":"\/StefanHayden\/lists\/my-bots","subscriber_count":3,"member_count":16,"mode":"public","description":"","slug":"my-bots","full_name":"@StefanHayden\/my-bots","created_at":"Sun Mar 16 16:59:33 +0000 2014","following":false,"user":{"id":52893,"id_str":"52893","name":"Stefan Hayden","screen_name":"StefanHayden","location":"NYC via Hackensack","description":"I fav tweets. Pop culture. dumb jokes. TV. feminist . frontend developer for @shutterstock in nyc. #botALLY","url":"http:\/\/t.co\/QagHaerdUw","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QagHaerdUw","expanded_url":"http:\/\/www.stefanhayden.com\/","display_url":"stefanhayden.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":792,"friends_count":1981,"listed_count":54,"created_at":"Sat Dec 09 04:43:27 +0000 2006","favourites_count":27936,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":25959,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52893\/1398313766","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":209814583,"id_str":"209814583","name":"bots by lich","uri":"\/lichlike\/lists\/bots-by-lich1","subscriber_count":2,"member_count":32,"mode":"public","description":"active bots by @lichlike \/ @tylercallich","slug":"bots-by-lich1","full_name":"@lichlike\/bots-by-lich1","created_at":"Fri Jun 05 20:20:18 +0000 2015","following":false,"user":{"id":125738772,"id_str":"125738772","name":"t y VERIF\u00cdED","screen_name":"lichlike","location":"ar, usa","description":"lich wandering text labyrinths\u2728 word wench \uff0f code tinkerer \uff0f kava kultist\u2728 28\u2728 #botally\u2728 they \uff0f she","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":618,"friends_count":542,"listed_count":44,"created_at":"Tue Mar 23 18:24:24 +0000 2010","favourites_count":70128,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":51039,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"CFD503","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000019109987\/6e1014d7bbb5a347e952e6012b380a1b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000019109987\/6e1014d7bbb5a347e952e6012b380a1b.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677323438910869504\/JwhknWGt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677323438910869504\/JwhknWGt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125738772\/1450322973","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3CEFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":93527328,"id_str":"93527328","name":"Darius Kazemi's Bots","uri":"\/tinysubversions\/lists\/darius-kazemi-s-bots","subscriber_count":72,"member_count":47,"mode":"public","description":"These are bots that @tinysubversions has made.","slug":"darius-kazemi-s-bots","full_name":"@tinysubversions\/darius-kazemi-s-bots","created_at":"Mon Jul 29 13:21:38 +0000 2013","following":false,"user":{"id":14475298,"id_str":"14475298","name":"Darius Kazemi","screen_name":"tinysubversions","location":"Portland, OR","description":"I make weird internet art. Latest project: @yearlyawards! Follow it to get an award. Worker-owner at @feeltraincoop #WHNBM","url":"http:\/\/t.co\/IoTmQk4rMq","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/IoTmQk4rMq","expanded_url":"http:\/\/tinysubversions.com","display_url":"tinysubversions.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":14980,"friends_count":1523,"listed_count":804,"created_at":"Tue Apr 22 14:41:58 +0000 2008","favourites_count":20625,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":56934,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6921","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115588280\/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115588280\/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651160874594361344\/zSxDVhp8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651160874594361344\/zSxDVhp8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14475298\/1438549422","profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":125996505,"id_str":"125996505","name":"bots","uri":"\/dunndunndunn\/lists\/bots","subscriber_count":1,"member_count":9,"mode":"public","description":"","slug":"bots","full_name":"@dunndunndunn\/bots","created_at":"Sat May 24 06:27:26 +0000 2014","following":false,"user":{"id":14578503,"id_str":"14578503","name":"christmas cat","screen_name":"dunndunndunn","location":"","description":"tweets","url":"https:\/\/t.co\/UYtfaOpCZ4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UYtfaOpCZ4","expanded_url":"https:\/\/keybase.io\/dunn","display_url":"keybase.io\/dunn","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":520,"friends_count":327,"listed_count":27,"created_at":"Tue Apr 29 01:22:52 +0000 2008","favourites_count":67221,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":35625,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647154758\/pyolb9h5a0ebz33t39bs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647154758\/pyolb9h5a0ebz33t39bs.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677676819840172033\/vRseBPlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677676819840172033\/vRseBPlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14578503\/1409596542","profile_link_color":"005C28","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6E6E6","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":118700852,"id_str":"118700852","name":"Bots by me","uri":"\/ckolderup\/lists\/bots-by-me","subscriber_count":8,"member_count":18,"mode":"public","description":"","slug":"bots-by-me","full_name":"@ckolderup\/bots-by-me","created_at":"Tue Apr 29 07:06:37 +0000 2014","following":false,"user":{"id":9368412,"id_str":"9368412","name":"Casey Kolderup","screen_name":"ckolderup","location":"video prison","description":"THIS IS TIME WELL SPENT","url":"https:\/\/t.co\/QzEtDgYCNY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QzEtDgYCNY","expanded_url":"http:\/\/casey.kolderup.org","display_url":"casey.kolderup.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1217,"friends_count":521,"listed_count":73,"created_at":"Thu Oct 11 04:47:06 +0000 2007","favourites_count":47807,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":36314,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"171717","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9368412\/1449039477","profile_link_color":"0000FF","profile_sidebar_border_color":"8F8F8F","profile_sidebar_fill_color":"8F8F8F","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":33069866,"id_str":"33069866","name":"Bots I Made","uri":"\/muffinista\/lists\/bots-i-made","subscriber_count":6,"member_count":32,"mode":"public","description":"Some bots that I wrote","slug":"bots-i-made","full_name":"@muffinista\/bots-i-made","created_at":"Thu Jan 06 01:55:08 +0000 2011","following":false,"user":{"id":1160471,"id_str":"1160471","name":"\u2630 mitchell! \u2630","screen_name":"muffinista","location":"Montague, MA","description":"pie heals all wounds\n#botALLY","url":"https:\/\/t.co\/F9U7lQOBWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/F9U7lQOBWG","expanded_url":"http:\/\/muffinlabs.com\/","display_url":"muffinlabs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":924,"friends_count":774,"listed_count":64,"created_at":"Wed Mar 14 14:46:25 +0000 2007","favourites_count":11547,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":22933,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458958349359259649\/v3jhFv9U.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458958349359259649\/v3jhFv9U.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/669649682151424000\/GeIkHzNB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/669649682151424000\/GeIkHzNB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160471\/1406567144","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":208613432,"id_str":"208613432","name":"botscapes","uri":"\/dbaker_h\/lists\/botscapes","subscriber_count":12,"member_count":11,"mode":"public","description":"","slug":"botscapes","full_name":"@dbaker_h\/botscapes","created_at":"Tue May 26 18:20:18 +0000 2015","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":204493997,"id_str":"204493997","name":"nonbinary+women botmakers","uri":"\/swayandsea\/lists\/nonbinary-women-botmakers","subscriber_count":7,"member_count":19,"mode":"public","description":"a list of nonbinary and women botmakers on twitter. @ me if you know one not listed! #botALLY","slug":"nonbinary-women-botmakers","full_name":"@swayandsea\/nonbinary-women-botmakers","created_at":"Fri May 01 22:05:54 +0000 2015","following":false,"user":{"id":1447613460,"id_str":"1447613460","name":"ramona fckin flowers","screen_name":"swayandsea","location":"@sui_ebooks","description":"moved to @sui_ebooks","url":"https:\/\/t.co\/1kHrvnfu5U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1kHrvnfu5U","expanded_url":"http:\/\/twitter.com\/sui_ebooks","display_url":"twitter.com\/sui_ebooks","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":1370,"friends_count":228,"listed_count":85,"created_at":"Wed May 22 01:00:18 +0000 2013","favourites_count":124426,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1349,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172310740\/B54qRBWB.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677416655430017024\/PLtqZDy9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447613460\/1450343691","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":103199672,"id_str":"103199672","name":"tweet bot makers","uri":"\/StefanHayden\/lists\/tweet-bot-makers","subscriber_count":3,"member_count":56,"mode":"public","description":"","slug":"tweet-bot-makers","full_name":"@StefanHayden\/tweet-bot-makers","created_at":"Wed Jan 08 05:02:36 +0000 2014","following":false,"user":{"id":52893,"id_str":"52893","name":"Stefan Hayden","screen_name":"StefanHayden","location":"NYC via Hackensack","description":"I fav tweets. Pop culture. dumb jokes. TV. feminist . frontend developer for @shutterstock in nyc. #botALLY","url":"http:\/\/t.co\/QagHaerdUw","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QagHaerdUw","expanded_url":"http:\/\/www.stefanhayden.com\/","display_url":"stefanhayden.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":792,"friends_count":1981,"listed_count":54,"created_at":"Sat Dec 09 04:43:27 +0000 2006","favourites_count":27936,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":25959,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597949312241303552\/opTWI2QS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52893\/1398313766","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":171811535,"id_str":"171811535","name":"tilde.club\/~","uri":"\/citizenk\/lists\/tilde-club","subscriber_count":2,"member_count":99,"mode":"public","description":"~~~this is my tilde.club list~~~~ \u2766 do not forget to put your ~ before your @ \u2766 \/ht @Heather_R","slug":"tilde-club","full_name":"@citizenk\/tilde-club","created_at":"Wed Oct 01 18:18:18 +0000 2014","following":false,"user":{"id":817997,"id_str":"817997","name":"Serge K. Keller \u2766","screen_name":"citizenk","location":"Cyberia","description":"Sharp. Intelligent. Cold-blooded. Ruthless. I void warranties. \u2014 \u2693 https:\/\/t.co\/rM9rCSOZaZ \u2014 \u2712\ufe0f @unifr but tweets my own. \u2014 PGP: DAD1 9DC0 64CC 29FE","url":"http:\/\/t.co\/Yryg5f9FHm","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Yryg5f9FHm","expanded_url":"http:\/\/www.sergekeller.ch","display_url":"sergekeller.ch","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/rM9rCSOZaZ","expanded_url":"http:\/\/www.almaren.ch","display_url":"almaren.ch","indices":[67,90]}]}},"protected":false,"followers_count":764,"friends_count":1651,"listed_count":98,"created_at":"Wed Mar 07 13:31:52 +0000 2007","favourites_count":13469,"utc_offset":3600,"time_zone":"Europe\/Zurich","geo_enabled":true,"verified":false,"statuses_count":30925,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623062605712728064\/iFXZ8JOg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623062605712728064\/iFXZ8JOg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671818718364704768\/57JxgNSV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671818718364704768\/57JxgNSV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817997\/1447761524","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":171725084,"id_str":"171725084","name":"Tilde Club","uri":"\/heatheremerrick\/lists\/tilde-club","subscriber_count":32,"member_count":209,"mode":"public","description":"~","slug":"tilde-club","full_name":"@heatheremerrick\/tilde-club","created_at":"Tue Sep 30 15:34:12 +0000 2014","following":false,"user":{"id":7352872,"id_str":"7352872","name":"Heather Merrick","screen_name":"heatheremerrick","location":"Brooklyn, NY","description":"I live on the internet. I work at Tumblr. Taller IRL than you expect.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1436,"friends_count":271,"listed_count":101,"created_at":"Mon Jul 09 18:46:47 +0000 2007","favourites_count":18209,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":17326,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535887012620812288\/WXi2FEcP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535887012620812288\/WXi2FEcP.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563524791999533056\/DXSlbelq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563524791999533056\/DXSlbelq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7352872\/1436719467","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8E8E8","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":64051698,"id_str":"64051698","name":"CCP Games","uri":"\/CCPGames\/lists\/ccp-games","subscriber_count":137,"member_count":98,"mode":"public","description":"CCP Employees and Official Feeds","slug":"ccp-games","full_name":"@CCPGames\/ccp-games","created_at":"Wed Jan 25 19:57:12 +0000 2012","following":false,"user":{"id":14880937,"id_str":"14880937","name":"CCP Games","screen_name":"CCPGames","location":"Reykjavik, Iceland","description":"CCP is dedicated to the development of cutting edge massively multiplayer games.","url":"http:\/\/t.co\/fCb3SpXrxB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/fCb3SpXrxB","expanded_url":"http:\/\/ccpgames.com\/","display_url":"ccpgames.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":42900,"friends_count":117,"listed_count":1107,"created_at":"Fri May 23 12:45:20 +0000 2008","favourites_count":17,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":1316,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7B8A8D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/125159781\/TwitterBackgrounds_CCP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/125159781\/TwitterBackgrounds_CCP.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466597642978357248\/zPDwJ1cv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466597642978357248\/zPDwJ1cv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14880937\/1400080539","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":106339857,"id_str":"106339857","name":"My Bots","uri":"\/amarriner\/lists\/my-bots","subscriber_count":9,"member_count":19,"mode":"public","description":"A list of all my twitter bots","slug":"my-bots","full_name":"@amarriner\/my-bots","created_at":"Fri Feb 21 20:04:01 +0000 2014","following":false,"user":{"id":57711216,"id_str":"57711216","name":"Aaron Marriner","screen_name":"amarriner","location":"Albany, NY","description":"Shoggoth Wrangler \/\/ #botALLY \/\/ My bots: https:\/\/t.co\/8UZTpX1VWl","url":"http:\/\/t.co\/YnXvZDVrkc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YnXvZDVrkc","expanded_url":"http:\/\/amarriner.com","display_url":"amarriner.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8UZTpX1VWl","expanded_url":"https:\/\/twitter.com\/amarriner\/lists\/my-bots","display_url":"twitter.com\/amarriner\/list\u2026","indices":[42,65]}]}},"protected":false,"followers_count":213,"friends_count":514,"listed_count":9,"created_at":"Fri Jul 17 18:06:26 +0000 2009","favourites_count":1208,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"verified":false,"statuses_count":1703,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000727578124\/e4cc55399515a64ee5e8ce2e6819e51d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000727578124\/e4cc55399515a64ee5e8ce2e6819e51d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57711216\/1413059905","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":158391377,"id_str":"158391377","name":"butt bots","uri":"\/thricedotted\/lists\/butt-bots","subscriber_count":5,"member_count":5,"mode":"public","description":"a list of bots that do butt-related stuff (NOT MINE)","slug":"butt-bots","full_name":"@thricedotted\/butt-bots","created_at":"Fri Jul 18 18:31:24 +0000 2014","following":false,"user":{"id":887397150,"id_str":"887397150","name":"return of the donkus","screen_name":"thricedotted","location":"Seattle, WA","description":"chronic apopheniac, natural language processor, the one who makes computers say stuff \/\/ pronouns: they\/them","url":"https:\/\/t.co\/qGCGtt4VjW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qGCGtt4VjW","expanded_url":"https:\/\/twitter.com\/thricedotted\/lists\/thricedotted-bottes","display_url":"twitter.com\/thricedotted\/l\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2047,"friends_count":578,"listed_count":72,"created_at":"Wed Oct 17 19:18:02 +0000 2012","favourites_count":38112,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":24458,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"333333","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887397150\/1401826056","profile_link_color":"999999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6D4","profile_text_color":"961E2A","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":148822627,"id_str":"148822627","name":"thricedotted-bottes","uri":"\/thricedotted\/lists\/thricedotted-bottes","subscriber_count":97,"member_count":37,"mode":"public","description":"bots by me (where me = @thricedotted)","slug":"thricedotted-bottes","full_name":"@thricedotted\/thricedotted-bottes","created_at":"Sat Jul 12 15:57:37 +0000 2014","following":false,"user":{"id":887397150,"id_str":"887397150","name":"return of the donkus","screen_name":"thricedotted","location":"Seattle, WA","description":"chronic apopheniac, natural language processor, the one who makes computers say stuff \/\/ pronouns: they\/them","url":"https:\/\/t.co\/qGCGtt4VjW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qGCGtt4VjW","expanded_url":"https:\/\/twitter.com\/thricedotted\/lists\/thricedotted-bottes","display_url":"twitter.com\/thricedotted\/l\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2047,"friends_count":578,"listed_count":72,"created_at":"Wed Oct 17 19:18:02 +0000 2012","favourites_count":38112,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":24458,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"333333","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/780672490\/9cf5c40c916cf940298c223dfcbf0e85.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509143387862102017\/zr9C92y8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887397150\/1401826056","profile_link_color":"999999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6D4","profile_text_color":"961E2A","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":138209263,"id_str":"138209263","name":"artbots","uri":"\/dbaker_h\/lists\/artbots","subscriber_count":3,"member_count":14,"mode":"public","description":"curated bot gallery","slug":"artbots","full_name":"@dbaker_h\/artbots","created_at":"Sun Jun 29 12:46:43 +0000 2014","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":135792182,"id_str":"135792182","name":"every every","uri":"\/dbaker_h\/lists\/every-every","subscriber_count":2,"member_count":17,"mode":"public","description":"the @everyword legacy","slug":"every-every","full_name":"@dbaker_h\/every-every","created_at":"Mon Jun 23 12:39:41 +0000 2014","following":false,"user":{"id":194096921,"id_str":"194096921","name":"\u263e\u013f \u1438 \u2680 \u2143\u263d 1\/2 hiatus","screen_name":"dbaker_h","location":"Melbourne, Australia","description":"CSIT student, pianist\/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: http:\/\/t.co\/p5t2rZJajQ","url":"http:\/\/t.co\/JiCyW1dzUZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JiCyW1dzUZ","expanded_url":"http:\/\/memoriata.com\/","display_url":"memoriata.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/p5t2rZJajQ","expanded_url":"http:\/\/nightmare.website","display_url":"nightmare.website","indices":[127,149]}]}},"protected":false,"followers_count":456,"friends_count":1130,"listed_count":37,"created_at":"Thu Sep 23 12:34:18 +0000 2010","favourites_count":9236,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":12407,"lang":"ru","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635411411812745216\/pp9Xz7kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194096921\/1440337937","profile_link_color":"67777A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":88895199,"id_str":"88895199","name":"Botmakers","uri":"\/tullyhansen\/lists\/botmakers","subscriber_count":20,"member_count":372,"mode":"public","description":"Blessed are the #botALLIES.","slug":"botmakers","full_name":"@tullyhansen\/botmakers","created_at":"Sat Apr 27 03:37:06 +0000 2013","following":false,"user":{"id":12341222,"id_str":"12341222","name":"Tully Hansen","screen_name":"tullyhansen","location":"tully at tullyhansen dot com","description":"\u2026 am I supposed to be happy to be loved by a few lines of Python or Javascript? I just like tweets about rates matched to times. Textmaker, #botALLY. He\/his.","url":"https:\/\/t.co\/HG4RH7T6rC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HG4RH7T6rC","expanded_url":"http:\/\/tullyhansen.com","display_url":"tullyhansen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1191,"friends_count":857,"listed_count":87,"created_at":"Thu Jan 17 01:34:37 +0000 2008","favourites_count":17528,"utc_offset":39600,"time_zone":"Melbourne","geo_enabled":true,"verified":false,"statuses_count":26146,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599004570098933761\/qWEmHiWk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599004570098933761\/qWEmHiWk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12341222\/1432167091","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":97774015,"id_str":"97774015","name":"THE FALL OF HUMANITY","uri":"\/ckolderup\/lists\/the-fall-of-humanity","subscriber_count":14,"member_count":504,"mode":"public","description":"","slug":"the-fall-of-humanity","full_name":"@ckolderup\/the-fall-of-humanity","created_at":"Wed Oct 16 21:26:27 +0000 2013","following":false,"user":{"id":9368412,"id_str":"9368412","name":"Casey Kolderup","screen_name":"ckolderup","location":"video prison","description":"THIS IS TIME WELL SPENT","url":"https:\/\/t.co\/QzEtDgYCNY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QzEtDgYCNY","expanded_url":"http:\/\/casey.kolderup.org","display_url":"casey.kolderup.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1217,"friends_count":521,"listed_count":73,"created_at":"Thu Oct 11 04:47:06 +0000 2007","favourites_count":47807,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":36314,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"171717","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378326431\/html.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638866240765870080\/BL1aRJ9x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9368412\/1449039477","profile_link_color":"0000FF","profile_sidebar_border_color":"8F8F8F","profile_sidebar_fill_color":"8F8F8F","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":71073929,"id_str":"71073929","name":"gonzosphere","uri":"\/klintron\/lists\/gonzosphere","subscriber_count":17,"member_count":89,"mode":"public","description":"","slug":"gonzosphere","full_name":"@klintron\/gonzosphere","created_at":"Wed May 23 23:51:13 +0000 2012","following":false,"user":{"id":3961541,"id_str":"3961541","name":"Klint Finley","screen_name":"klintron","location":"Portland, OR","description":"Reporter for WIRED. Best reachable by email: me@klintfinley.com PGP: 0xAB128286","url":"http:\/\/t.co\/gK1aqjiyEN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/gK1aqjiyEN","expanded_url":"http:\/\/klintfinley.com","display_url":"klintfinley.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":8290,"friends_count":450,"listed_count":774,"created_at":"Tue Apr 10 00:57:02 +0000 2007","favourites_count":284,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":70,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2530255952\/prapp2vuup4ox3vrwopf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2530255952\/prapp2vuup4ox3vrwopf_normal.jpeg","profile_link_color":"F2356B","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":64495104,"id_str":"64495104","name":"disquiet junto","uri":"\/nofi\/lists\/disquiet-junto","subscriber_count":36,"member_count":127,"mode":"public","description":"current contributors, culled from their profiles on SC; msg to be added (or removed, I guess)","slug":"disquiet-junto","full_name":"@nofi\/disquiet-junto","created_at":"Wed Feb 01 02:16:54 +0000 2012","following":false,"user":{"id":4983,"id_str":"4983","name":"Jeffrey Melton","screen_name":"nofi","location":"Indiana","description":"Designer, producer, sound artist. Likes: #ambient #beer #biking #books #cinema #design #drone #downtempo #eurorack #granular #monome #noise #synthesis","url":"http:\/\/t.co\/bGbGyZlvI9","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/bGbGyZlvI9","expanded_url":"http:\/\/www.nofi.org\/","display_url":"nofi.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":591,"friends_count":1060,"listed_count":33,"created_at":"Tue Aug 29 18:40:23 +0000 2006","favourites_count":70,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":4053,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2612846881\/4nf77862n2kpmft1shvd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2612846881\/4nf77862n2kpmft1shvd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4983\/1352851944","profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":1967988,"id_str":"1967988","name":"Internet Culture","uri":"\/jamiew\/lists\/internet-culture","subscriber_count":14,"member_count":62,"mode":"public","description":"Researchers, creators & propagators of the tubes","slug":"internet-culture","full_name":"@jamiew\/internet-culture","created_at":"Tue Nov 03 17:01:05 +0000 2009","following":false,"user":{"id":774010,"id_str":"774010","name":"Jamie Wilkinson","screen_name":"jamiew","location":"NYC","description":"\u00af\u00af\\_(\u30c4)_\/\u00af\u00af Co-founder\/CEO at @vhxtv, co-creator of @knowyourmeme, member of @fffffat, developer at @starwarsuncut","url":"https:\/\/t.co\/GitnPVtDB2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GitnPVtDB2","expanded_url":"http:\/\/jamiedubs.com","display_url":"jamiedubs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3680,"friends_count":652,"listed_count":240,"created_at":"Thu Feb 15 16:28:04 +0000 2007","favourites_count":6081,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8915,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/136588825\/awesome_smiley_by_ZeaQual.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/136588825\/awesome_smiley_by_ZeaQual.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484673946063601665\/XmjycdP4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484673946063601665\/XmjycdP4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/774010\/1355445167","profile_link_color":"5197C2","profile_sidebar_border_color":"E3C4C9","profile_sidebar_fill_color":"EDEDED","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":35812370,"id_str":"35812370","name":"the twitternet of things","uri":"\/doingitwrong\/lists\/the-twitternet-of-things","subscriber_count":8,"member_count":38,"mode":"public","description":"Objects and concepts that Tweet.","slug":"the-twitternet-of-things","full_name":"@doingitwrong\/the-twitternet-of-things","created_at":"Sun Feb 13 02:01:23 +0000 2011","following":false,"user":{"id":10369032,"id_str":"10369032","name":"Tim Maly","screen_name":"doingitwrong","location":"metaLAB","description":"our forward-looking tweets are subject to risks & uncertainties\u2014actual results may differ materially from those anticipated","url":"http:\/\/t.co\/H4etclcmq2","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/H4etclcmq2","expanded_url":"http:\/\/quietbabylon.com","display_url":"quietbabylon.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7029,"friends_count":205,"listed_count":476,"created_at":"Mon Nov 19 00:51:59 +0000 2007","favourites_count":19219,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":32737,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/804691920\/0cb00cf54fa08bce24b2b2be1600a623.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/804691920\/0cb00cf54fa08bce24b2b2be1600a623.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000849067229\/d72e760ed13aae9cdccdfdf58add2d35_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000849067229\/d72e760ed13aae9cdccdfdf58add2d35_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10369032\/1404080454","profile_link_color":"00ADEF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":2738868,"id_str":"2738868","name":"language-expert","uri":"\/wordnik\/lists\/language-expert","subscriber_count":42,"member_count":75,"mode":"public","description":"","slug":"language-expert","full_name":"@wordnik\/language-expert","created_at":"Tue Nov 10 19:08:53 +0000 2009","following":false,"user":{"id":15863767,"id_str":"15863767","name":"wordnik","screen_name":"wordnik","location":"Bay Area, California","description":"All the words. Help support Wordnik by adopting your favorite word! https:\/\/t.co\/lLkBkSdO99","url":"http:\/\/t.co\/4da2UBGai3","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/4da2UBGai3","expanded_url":"http:\/\/www.wordnik.com","display_url":"wordnik.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lLkBkSdO99","expanded_url":"https:\/\/wordnik.com\/adoptaword","display_url":"wordnik.com\/adoptaword","indices":[68,91]}]}},"protected":false,"followers_count":19767,"friends_count":986,"listed_count":1325,"created_at":"Fri Aug 15 15:12:07 +0000 2008","favourites_count":1346,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":13433,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E5A35C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615520016595693568\/DOsMQ--o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615520016595693568\/DOsMQ--o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15863767\/1443195492","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":209765835,"id_str":"209765835","name":"game bots","uri":"\/inky\/lists\/game-bots","subscriber_count":4,"member_count":16,"mode":"public","description":"bots you can play","slug":"game-bots","full_name":"@inky\/game-bots","created_at":"Fri Jun 05 08:45:02 +0000 2015","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":203854440,"id_str":"203854440","name":"snail bots","uri":"\/inky\/lists\/snail-bots","subscriber_count":1,"member_count":3,"mode":"public","description":"\ud83d\udc0c","slug":"snail-bots","full_name":"@inky\/snail-bots","created_at":"Sat Apr 25 09:40:18 +0000 2015","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":189643778,"id_str":"189643778","name":"space bots","uri":"\/inky\/lists\/space-bots","subscriber_count":2,"member_count":10,"mode":"public","description":"\u2728\ud83c\udf0c\u2728","slug":"space-bots","full_name":"@inky\/space-bots","created_at":"Thu Jan 22 21:35:25 +0000 2015","following":true,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":185988594,"id_str":"185988594","name":"vordr","uri":"\/inky\/lists\/vordr","subscriber_count":2,"member_count":14,"mode":"public","description":"\u259c\u2591\u2591\u2591ncide\u2591t \u2591il\u2591\u2591be r\u2591\u2591orte\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591","slug":"vordr","full_name":"@inky\/vordr","created_at":"Sat Dec 20 15:03:00 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":182135264,"id_str":"182135264","name":"poem bots","uri":"\/inky\/lists\/poem-bots","subscriber_count":1,"member_count":19,"mode":"public","description":"bots whom poem","slug":"poem-bots","full_name":"@inky\/poem-bots","created_at":"Tue Nov 18 23:59:45 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":182119469,"id_str":"182119469","name":"kind bots","uri":"\/inky\/lists\/kind-bots","subscriber_count":3,"member_count":10,"mode":"public","description":"\u003c3","slug":"kind-bots","full_name":"@inky\/kind-bots","created_at":"Tue Nov 18 21:44:51 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":180853044,"id_str":"180853044","name":"img bots","uri":"\/inky\/lists\/img-bots","subscriber_count":4,"member_count":27,"mode":"public","description":"image remix bots","slug":"img-bots","full_name":"@inky\/img-bots","created_at":"Sun Nov 09 11:14:13 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":170920946,"id_str":"170920946","name":"food bots","uri":"\/inky\/lists\/food-bots","subscriber_count":2,"member_count":14,"mode":"public","description":"om nom nom","slug":"food-bots","full_name":"@inky\/food-bots","created_at":"Mon Sep 22 23:11:34 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":159583831,"id_str":"159583831","name":"bot bots","uri":"\/inky\/lists\/bot-bots","subscriber_count":1,"member_count":9,"mode":"public","description":"","slug":"bot-bots","full_name":"@inky\/bot-bots","created_at":"Sat Jul 19 23:40:27 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":152826572,"id_str":"152826572","name":"ebooks bots","uri":"\/inky\/lists\/ebooks-bots","subscriber_count":2,"member_count":67,"mode":"public","description":"doppelg\u00e4nger bots","slug":"ebooks-bots","full_name":"@inky\/ebooks-bots","created_at":"Tue Jul 15 21:56:05 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":130338700,"id_str":"130338700","name":"my bots","uri":"\/inky\/lists\/my-bots","subscriber_count":19,"member_count":23,"mode":"public","description":"Bots by @inky.","slug":"my-bots","full_name":"@inky\/my-bots","created_at":"Fri Jun 06 16:55:13 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":128840980,"id_str":"128840980","name":"sermon","uri":"\/inky\/lists\/sermon","subscriber_count":0,"member_count":19,"mode":"public","description":"","slug":"sermon","full_name":"@inky\/sermon","created_at":"Mon Jun 02 02:09:02 +0000 2014","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":102397241,"id_str":"102397241","name":"language","uri":"\/inky\/lists\/language","subscriber_count":0,"member_count":38,"mode":"public","description":"","slug":"language","full_name":"@inky\/language","created_at":"Fri Dec 27 02:36:55 +0000 2013","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":82966275,"id_str":"82966275","name":"bots","uri":"\/inky\/lists\/bots","subscriber_count":7,"member_count":952,"mode":"public","description":"","slug":"bots","full_name":"@inky\/bots","created_at":"Tue Jan 01 21:57:45 +0000 2013","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":71512629,"id_str":"71512629","name":"space","uri":"\/inky\/lists\/space","subscriber_count":0,"member_count":63,"mode":"public","description":"","slug":"space","full_name":"@inky\/space","created_at":"Fri Jun 01 00:55:36 +0000 2012","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1587,"friends_count":902,"listed_count":104,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65041,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26258,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}}] \ No newline at end of file diff --git a/testdata/get_memberships.json b/testdata/get_memberships.json new file mode 100644 index 00000000..3bcad469 --- /dev/null +++ b/testdata/get_memberships.json @@ -0,0 +1 @@ +{"next_cursor":1516239478031155535,"next_cursor_str":"1516239478031155535","previous_cursor":0,"previous_cursor_str":"0","lists":[{"id":210635540,"id_str":"210635540","name":"Ciclones tropicales","uri":"\/PedroCFernandez\/lists\/ciclones-tropicales","subscriber_count":0,"member_count":22,"mode":"public","description":"Fuentes primarias de informaci\u00f3n relativa a ciclones tropicales de todo el mundo","slug":"ciclones-tropicales","full_name":"@PedroCFernandez\/ciclones-tropicales","created_at":"Sun Jun 14 09:19:08 +0000 2015","following":false,"user":{"id":140000155,"id_str":"140000155","name":"Pedro C. Fern\u00e1ndez","screen_name":"PedroCFernandez","location":"Spanish & European citizen.","description":"B.Sc. Environmental Risk Management, stormchaser @ecazatormentas and immersed in a master's degree in Renewable Energies. Looking for new opportunities.","url":"http:\/\/t.co\/5ZsuudFfB8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5ZsuudFfB8","expanded_url":"http:\/\/www.cazatormentas.net","display_url":"cazatormentas.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2972,"friends_count":1193,"listed_count":144,"created_at":"Tue May 04 08:19:37 +0000 2010","favourites_count":9879,"utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"verified":false,"statuses_count":26948,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657931881556680707\/HdxufjNg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657931881556680707\/HdxufjNg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140000155\/1441227987","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":217969187,"id_str":"217969187","name":"Climate (EN)","uri":"\/EarthandClouds\/lists\/climate-en","subscriber_count":3,"member_count":470,"mode":"public","description":"Clouds, typhoons, warming, causes, impacts and much more.","slug":"climate-en","full_name":"@EarthandClouds\/climate-en","created_at":"Sat Aug 22 17:55:06 +0000 2015","following":false,"user":{"id":350274399,"id_str":"350274399","name":"Earth and Clouds","screen_name":"EarthandClouds","location":"Quebec City","description":"Screenshots of what's captured by the ISS live cameras. And much more... #Earth #space #sky #clouds #planet #image #picture #pic #blue #wallpaper #ISS #ocean","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5791,"friends_count":5759,"listed_count":186,"created_at":"Sun Aug 07 14:08:00 +0000 2011","favourites_count":4629,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":19764,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587182496858542080\/IPSqv41A_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587182496858542080\/IPSqv41A_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350274399\/1442609108","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":189643778,"id_str":"189643778","name":"space bots","uri":"\/inky\/lists\/space-bots","subscriber_count":1,"member_count":10,"mode":"public","description":"\u2728\ud83c\udf0c\u2728","slug":"space-bots","full_name":"@inky\/space-bots","created_at":"Thu Jan 22 21:35:25 +0000 2015","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1586,"friends_count":902,"listed_count":105,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65040,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26256,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":197783671,"id_str":"197783671","name":"climate","uri":"\/emeyerson\/lists\/climate","subscriber_count":0,"member_count":14,"mode":"public","description":"","slug":"climate","full_name":"@emeyerson\/climate","created_at":"Thu Mar 05 14:55:34 +0000 2015","following":false,"user":{"id":15436436,"id_str":"15436436","name":"EMey, Humbug","screen_name":"emeyerson","location":"SF, south side","description":"Marketing, politics, data. Expert on everything.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3564,"friends_count":1867,"listed_count":106,"created_at":"Tue Jul 15 03:53:59 +0000 2008","favourites_count":4882,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":19692,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/7672708\/moonris.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/7672708\/moonris.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000182833009\/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000182833009\/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15436436\/1444629889","profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":24648579,"id_str":"24648579","name":"weatherpros","uri":"\/pierrepont\/lists\/weatherpros","subscriber_count":2,"member_count":75,"mode":"public","description":"Just what it says on the tin.","slug":"weatherpros","full_name":"@pierrepont\/weatherpros","created_at":"Tue Oct 12 18:32:24 +0000 2010","following":false,"user":{"id":18383373,"id_str":"18383373","name":"Brendan Hasenstab","screen_name":"pierrepont","location":"NYC, baby!","description":"Professional writer, semi-pro gourmand, market nerd, music snob, and weather obsessive.","url":"https:\/\/t.co\/E54xpWWa8q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/E54xpWWa8q","expanded_url":"http:\/\/about.me\/brendan.hasenstab","display_url":"about.me\/brendan.hasens\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":800,"listed_count":17,"created_at":"Fri Dec 26 03:08:28 +0000 2008","favourites_count":4384,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":32605,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496224147\/Marshall-608x526.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496224147\/Marshall-608x526.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2580499251\/7ib6821re7elm9dqygnx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2580499251\/7ib6821re7elm9dqygnx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18383373\/1446436742","profile_link_color":"598F4C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":225486809,"id_str":"225486809","name":"my-bots","uri":"\/__jcbl__\/lists\/my-bots","subscriber_count":0,"member_count":3,"mode":"public","description":"","slug":"my-bots","full_name":"@__jcbl__\/my-bots","created_at":"Tue Nov 10 16:43:07 +0000 2015","following":false,"user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":286,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1243,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false}},{"id":193879644,"id_str":"193879644","name":"Robot Overlords","uri":"\/TheRevengerists\/lists\/robot-overlords","subscriber_count":4,"member_count":2777,"mode":"public","description":"Murmuring Mechanical Maniacs' Many Mad Machinations","slug":"robot-overlords","full_name":"@TheRevengerists\/robot-overlords","created_at":"Sun Feb 01 15:53:13 +0000 2015","following":false,"user":{"id":407933355,"id_str":"407933355","name":"The Revengerists!","screen_name":"TheRevengerists","location":"Revengerist Compound","description":"The Revengerists are a consortium of fighters of crime and evil; globetrotting super-powered adventurers, and benevolent protectors of all things awesome.","url":"http:\/\/t.co\/fIFj1mcFTs","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/fIFj1mcFTs","expanded_url":"http:\/\/revengerists.com","display_url":"revengerists.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1037,"friends_count":2157,"listed_count":73,"created_at":"Tue Nov 08 19:10:31 +0000 2011","favourites_count":1507,"utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"verified":false,"statuses_count":29919,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000081789644\/4983dc46145a62ab1bef488987cbb83f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000081789644\/4983dc46145a62ab1bef488987cbb83f.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542192306577620992\/AqMy7KtD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542192306577620992\/AqMy7KtD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/407933355\/1417717663","profile_link_color":"FF8400","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":64954121,"id_str":"64954121","name":"Weather","uri":"\/nsj\/lists\/weather","subscriber_count":19,"member_count":1000,"mode":"public","description":"Weather people","slug":"weather","full_name":"@nsj\/weather","created_at":"Tue Feb 07 20:26:35 +0000 2012","following":false,"user":{"id":11433152,"id_str":"11433152","name":"Nate Johnson","screen_name":"nsj","location":"Raleigh, NC","description":"I am a meteorologist, instructor, blogger, and podcaster. Flying is my latest adventure. I tweet #ncwx, communication, #NCState, #Cubs, #BBQ, & #avgeek stuff.","url":"https:\/\/t.co\/dMpfqObOsm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dMpfqObOsm","expanded_url":"https:\/\/plus.google.com\/+NateJohnson\/","display_url":"plus.google.com\/+NateJohnson\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9864,"friends_count":3647,"listed_count":562,"created_at":"Sat Dec 22 14:59:53 +0000 2007","favourites_count":1028,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":45088,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0000FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/2976062\/WRAL_twitter.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/2976062\/WRAL_twitter.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621027845700251648\/JrbflTtR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621027845700251648\/JrbflTtR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11433152\/1405353644","profile_link_color":"000000","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":2053636,"id_str":"2053636","name":"Weather","uri":"\/sgtgary\/lists\/weather","subscriber_count":9,"member_count":606,"mode":"public","description":"","slug":"weather","full_name":"@sgtgary\/weather","created_at":"Wed Nov 04 05:18:31 +0000 2009","following":false,"user":{"id":11392632,"id_str":"11392632","name":"Gary \u039a0\u03b2\u2c62\u0259 \u2614\ufe0f","screen_name":"sgtgary","location":"Papillion, Nebraska, USA","description":"Science & Weather geek \u2022 Cybersecurity \u2022 \u2708\ufe0fUSAF vet \u2022 ex aviation forecaster \u2022 557WW \u2022 Waze \u2022 INTJ #GoPackGo #InfoSec \u2b50\ufe0f","url":"https:\/\/t.co\/LB5LuXnk2g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LB5LuXnk2g","expanded_url":"http:\/\/about.me\/sgtgary","display_url":"about.me\/sgtgary","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1664,"friends_count":2103,"listed_count":123,"created_at":"Fri Dec 21 02:44:45 +0000 2007","favourites_count":93,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":35082,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625143486375927808\/JfkbwGdr.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625143486375927808\/JfkbwGdr.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/676624556057063425\/CCPPj2bb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/676624556057063425\/CCPPj2bb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11392632\/1446542435","profile_link_color":"9D0020","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":220869009,"id_str":"220869009","name":"People Ive faved","uri":"\/bitpixi\/lists\/people-ive-faved","subscriber_count":2,"member_count":378,"mode":"public","description":"","slug":"people-ive-faved","full_name":"@bitpixi\/people-ive-faved","created_at":"Wed Sep 23 07:22:53 +0000 2015","following":false,"user":{"id":2344125559,"id_str":"2344125559","name":"Kasey Robinson","screen_name":"bitpixi","location":"South San Francisco, CA","description":"@Minted Photo Editor & Design Associate. @BayAreaBotArts Meetup Organizer. 1st bot: @bitpixi_ebooks","url":"https:\/\/t.co\/8wmgXFQ8U8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8wmgXFQ8U8","expanded_url":"http:\/\/www.bitpixi.com","display_url":"bitpixi.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1729,"friends_count":2284,"listed_count":176,"created_at":"Fri Feb 14 21:09:05 +0000 2014","favourites_count":20591,"utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"verified":false,"statuses_count":8390,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/675023811511607296\/PbyIDvbw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/675023811511607296\/PbyIDvbw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2344125559\/1444427702","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":71512629,"id_str":"71512629","name":"space","uri":"\/inky\/lists\/space","subscriber_count":0,"member_count":63,"mode":"public","description":"","slug":"space","full_name":"@inky\/space","created_at":"Fri Jun 01 00:55:36 +0000 2012","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1586,"friends_count":902,"listed_count":105,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65040,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26256,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":82966275,"id_str":"82966275","name":"bots","uri":"\/inky\/lists\/bots","subscriber_count":7,"member_count":952,"mode":"public","description":"","slug":"bots","full_name":"@inky\/bots","created_at":"Tue Jan 01 21:57:45 +0000 2013","following":false,"user":{"id":13148,"id_str":"13148","name":"Liam","screen_name":"inky","location":"Dublin, Ireland","description":"ambient music + art bots","url":"https:\/\/t.co\/Wz4bls6kQh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wz4bls6kQh","expanded_url":"http:\/\/liamcooke.com","display_url":"liamcooke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1586,"friends_count":902,"listed_count":105,"created_at":"Mon Nov 20 00:04:50 +0000 2006","favourites_count":65040,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":26256,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEDF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628878668\/zwcd99eo8b13p4wpbv2a.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938666668384256\/goDqCydt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13148\/1447542687","profile_link_color":"848484","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":30269984,"id_str":"30269984","name":"Geo&Eco","uri":"\/JasonDewees\/lists\/geo-eco","subscriber_count":1,"member_count":93,"mode":"public","description":"","slug":"geo-eco","full_name":"@JasonDewees\/geo-eco","created_at":"Sun Nov 21 00:04:17 +0000 2010","following":false,"user":{"id":68767529,"id_str":"68767529","name":"Jason Dewees","screen_name":"JasonDewees","location":"San Francisco","description":"SF native. Lots of plants.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":503,"friends_count":2003,"listed_count":19,"created_at":"Tue Aug 25 18:30:08 +0000 2009","favourites_count":1939,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":6251,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2424562150\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2424562150\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68767529\/1355860926","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":75086960,"id_str":"75086960","name":"Science","uri":"\/TiBmd\/lists\/science","subscriber_count":0,"member_count":44,"mode":"public","description":"","slug":"science","full_name":"@TiBmd\/science","created_at":"Mon Aug 06 13:38:48 +0000 2012","following":false,"user":{"id":28378001,"id_str":"28378001","name":"TiBMD","screen_name":"TiBmd","location":"","description":"Husband. Father. Brother. Son. Grandson. Surgeon. RT\u2260 endorsement\n\r\nThese opinions are my own!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":275,"friends_count":834,"listed_count":13,"created_at":"Thu Apr 02 17:22:19 +0000 2009","favourites_count":4845,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2469,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000061627366\/c65512cd0cab697154ec069cf5a86b60_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000061627366\/c65512cd0cab697154ec069cf5a86b60_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28378001\/1430364418","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":35124177,"id_str":"35124177","name":"Science","uri":"\/MGhydro\/lists\/science","subscriber_count":2,"member_count":789,"mode":"public","description":"","slug":"science","full_name":"@MGhydro\/science","created_at":"Thu Feb 03 17:54:22 +0000 2011","following":false,"user":{"id":227381114,"id_str":"227381114","name":"Matthew Garcia","screen_name":"MGhydro","location":"Madison, Wisconsin, USA","description":"PhD Candidate, Forestry + Remote Sensing @UWMadison. 2015-16 @WISpaceGrant Fellow. Trees, Water, Weather, Climate, Computing. Strange duck. Valar dohaeris.","url":"http:\/\/t.co\/Aeo9Y59s1w","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Aeo9Y59s1w","expanded_url":"http:\/\/hydro-logic.blogspot.com\/","display_url":"hydro-logic.blogspot.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1451,"friends_count":1373,"listed_count":110,"created_at":"Thu Dec 16 18:01:10 +0000 2010","favourites_count":683,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":46876,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D5D9C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/192387486\/x157a10c8e8bd14f06072a93cef1d924.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/192387486\/x157a10c8e8bd14f06072a93cef1d924.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580493396457988096\/Iv7xPvC1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580493396457988096\/Iv7xPvC1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227381114\/1427235582","profile_link_color":"3E87A7","profile_sidebar_border_color":"DC4093","profile_sidebar_fill_color":"233235","profile_text_color":"73AFC9","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":101427111,"id_str":"101427111","name":"go-to weather climate","uri":"\/EricHolthaus\/lists\/go-to-weather-climate","subscriber_count":166,"member_count":963,"mode":"public","description":"my primary sources for high quality weather\/climate info","slug":"go-to-weather-climate","full_name":"@EricHolthaus\/go-to-weather-climate","created_at":"Fri Dec 13 08:10:08 +0000 2013","following":false,"user":{"id":290180065,"id_str":"290180065","name":"Eric Holthaus","screen_name":"EricHolthaus","location":"Tucson, AZ","description":"'America's weather-predicting boyfriend' \u2014@awl | 'The internet's favorite meteorologist' \u2014@vice | Humble, too. | Say hi: eric.holthaus@slate.com","url":"http:\/\/t.co\/hA0H6wWF56","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/hA0H6wWF56","expanded_url":"http:\/\/www.slate.com\/authors.eric_holthaus.html","display_url":"slate.com\/authors.eric_h\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":33132,"friends_count":6417,"listed_count":1594,"created_at":"Fri Apr 29 21:18:26 +0000 2011","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":37351,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290180065\/1398216679","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":206486285,"id_str":"206486285","name":"Breaking Weather","uri":"\/EricHolthaus\/lists\/breaking-weather","subscriber_count":51,"member_count":218,"mode":"public","description":"Highly filtered list of weather experts\/commentators.","slug":"breaking-weather","full_name":"@EricHolthaus\/breaking-weather","created_at":"Tue May 12 15:24:43 +0000 2015","following":false,"user":{"id":290180065,"id_str":"290180065","name":"Eric Holthaus","screen_name":"EricHolthaus","location":"Tucson, AZ","description":"'America's weather-predicting boyfriend' \u2014@awl | 'The internet's favorite meteorologist' \u2014@vice | Humble, too. | Say hi: eric.holthaus@slate.com","url":"http:\/\/t.co\/hA0H6wWF56","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/hA0H6wWF56","expanded_url":"http:\/\/www.slate.com\/authors.eric_holthaus.html","display_url":"slate.com\/authors.eric_h\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":33132,"friends_count":6417,"listed_count":1594,"created_at":"Fri Apr 29 21:18:26 +0000 2011","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":37351,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458779628161597440\/mWG3M6gy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290180065\/1398216679","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":99156743,"id_str":"99156743","name":"Weather","uri":"\/gdimeweather\/lists\/weather","subscriber_count":1,"member_count":369,"mode":"public","description":"","slug":"weather","full_name":"@gdimeweather\/weather","created_at":"Thu Nov 07 15:11:57 +0000 2013","following":false,"user":{"id":57472328,"id_str":"57472328","name":"Greg Diamond","screen_name":"gdimeweather","location":"","description":"Graphic Meteorologist & Weather Producer for the @weatherchannel @UAlbany Alum & Native Long Islander. Retweets = You shared something awesome","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1137,"friends_count":632,"listed_count":66,"created_at":"Thu Jul 16 22:51:28 +0000 2009","favourites_count":2780,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4322,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161868820\/fFqNv5Vi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161868820\/fFqNv5Vi.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636185872648409090\/XxZ_IFRL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636185872648409090\/XxZ_IFRL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57472328\/1390844122","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":120837264,"id_str":"120837264","name":"omnibots","uri":"\/botALLY\/lists\/omnibots","subscriber_count":32,"member_count":2354,"mode":"public","description":"Aggregating the labor of each diligent #botALLY known to me","slug":"omnibots","full_name":"@botALLY\/omnibots","created_at":"Wed May 07 20:29:25 +0000 2014","following":false,"user":{"id":1533777176,"id_str":"1533777176","name":"Lotte McNally","screen_name":"botALLY","location":"","description":"Lotte McNally, #botALLY \u2022 avatar https:\/\/t.co\/4Oa0jsUp8l \u2022 header https:\/\/t.co\/Jj4iT1K37I \u2022","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/4Oa0jsUp8l","expanded_url":"https:\/\/midboss.com\/rom\/","display_url":"midboss.com\/rom\/","indices":[33,56]},{"url":"https:\/\/t.co\/Jj4iT1K37I","expanded_url":"https:\/\/www.etsy.com\/au\/shop\/cloudstreetlab","display_url":"etsy.com\/au\/shop\/clouds\u2026","indices":[66,89]}]}},"protected":false,"followers_count":6566,"friends_count":1959,"listed_count":73,"created_at":"Thu Jun 20 12:19:15 +0000 2013","favourites_count":82,"utc_offset":36000,"time_zone":"Solomon Is.","geo_enabled":false,"verified":false,"statuses_count":62134,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000003557709\/1a194a0c77ab56bd09a75e6c3defa247.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000003557709\/1a194a0c77ab56bd09a75e6c3defa247.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653729896364007424\/UHdpvnv-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653729896364007424\/UHdpvnv-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1533777176\/1444699802","profile_link_color":"5AE46D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}},{"id":89025486,"id_str":"89025486","name":"Weather","uri":"\/KyleWeather\/lists\/weather","subscriber_count":1,"member_count":205,"mode":"public","description":"","slug":"weather","full_name":"@KyleWeather\/weather","created_at":"Mon Apr 29 21:06:00 +0000 2013","following":false,"user":{"id":98729176,"id_str":"98729176","name":"Kyle Roberts","screen_name":"KyleWeather","location":"Oklahoma City, OK","description":"Meteorologist for FOX 25 (@OKCFOX) in Oklahoma City | Texas A&M grad | Tweeter of weather, sports, and whatever crosses my mind (usually in that order)","url":"https:\/\/t.co\/8aCa0usAwU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8aCa0usAwU","expanded_url":"http:\/\/www.facebook.com\/KyleRobertsWeather","display_url":"facebook.com\/KyleRobertsWea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1112,"friends_count":537,"listed_count":76,"created_at":"Tue Dec 22 22:00:16 +0000 2009","favourites_count":1362,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6233,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000834039489\/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000834039489\/8de2ddf7cf000f19c90861190dbe8fd6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98729176\/1448854863","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}}]} \ No newline at end of file diff --git a/testdata/get_mentions.json b/testdata/get_mentions.json new file mode 100644 index 00000000..05ca1772 --- /dev/null +++ b/testdata/get_mentions.json @@ -0,0 +1 @@ +[{"created_at":"Sun Dec 13 21:14:54 +0000 2015","id":676148312349609985,"id_str":"676148312349609985","text":"@himawari8bot This can't REAL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":676147040917790724,"in_reply_to_status_id_str":"676147040917790724","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":2229562808,"id_str":"2229562808","name":"space-for-snow","screen_name":"spacefordoubt","location":"California, USA","description":"Space nerd and general weirdo.\nMay compulsively try to get your references.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":537,"friends_count":340,"listed_count":61,"created_at":"Wed Dec 04 08:55:12 +0000 2013","favourites_count":25409,"utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":false,"verified":false,"statuses_count":30066,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544206025574715392\/5VThPb_u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544206025574715392\/5VThPb_u.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/676139830200242176\/sOSocOni_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/676139830200242176\/sOSocOni_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2229562808\/1450039309","profile_link_color":"234BEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[0,13]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat Dec 12 16:13:42 +0000 2015","id":675710124057432065,"id_str":"675710124057432065","text":"Dear @PMOIndia @narendramodi request a satellite launch and feed weather and ckoud movements like @himawari8bot","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221783224,"id_str":"221783224","name":"PR","screen_name":"Valprajj","location":"Bengaluru West, Karnataka","description":"Digital Marketing l Technology l Foodie l RTs ain't necessarily endorsements l CFC l Namo l","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":561,"friends_count":1268,"listed_count":16,"created_at":"Wed Dec 01 16:07:23 +0000 2010","favourites_count":13085,"utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"verified":false,"statuses_count":66320,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF8C00","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632606279085654016\/L6eEi9na_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632606279085654016\/L6eEi9na_normal.jpg","profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PMOIndia","name":"PMO India","id":471741741,"id_str":"471741741","indices":[5,14]},{"screen_name":"narendramodi","name":"Narendra Modi","id":18839785,"id_str":"18839785","indices":[15,28]},{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[98,111]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed Dec 09 20:44:23 +0000 2015","id":674691080227540993,"id_str":"674691080227540993","text":"Nice view of \u201catmospheric river\u201d, shame we don\u2019t have satellite video as smooth as @himawari8bot https:\/\/t.co\/4Rm3ay0pOY","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":806620844,"id_str":"806620844","name":"The Earth Story","screen_name":"TheEarthStory","location":"About 149597870700 m from Sol","description":"If you love our beautiful planet, then this is the page for you.","url":"https:\/\/t.co\/xiiaNQNIKz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xiiaNQNIKz","expanded_url":"https:\/\/www.the-earth-story.com","display_url":"the-earth-story.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2869,"friends_count":695,"listed_count":157,"created_at":"Thu Sep 06 11:33:11 +0000 2012","favourites_count":3549,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":16102,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"20201E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436260926509953025\/YWwturFA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436260926509953025\/YWwturFA.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2582373510\/e4ag2n4nip5lzkkm3wsc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2582373510\/e4ag2n4nip5lzkkm3wsc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806620844\/1396522060","profile_link_color":"897856","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"20201E","profile_text_color":"C8A86F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":674686215954808832,"quoted_status_id_str":"674686215954808832","quoted_status":{"created_at":"Wed Dec 09 20:25:03 +0000 2015","id":674686215954808832,"id_str":"674686215954808832","text":".NOAASatellites' #GOES views the storms buffeting the US Pacific Northwest 11\/29 to 12\/09. https:\/\/t.co\/5oXklIiNqe https:\/\/t.co\/OtpRZrEyDk","source":"\u003ca href=\"http:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20060293,"id_str":"20060293","name":"NASA Goddard","screen_name":"NASAGoddard","location":"Greenbelt, MD USA","description":"Tweeting the best in heliophysics, technology, astrophysics, Earth sciences and robotic exploration for the Goddard Space Flight Center.","url":"http:\/\/t.co\/BRyoi2pECu","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/BRyoi2pECu","expanded_url":"http:\/\/www.nasa.gov\/goddard","display_url":"nasa.gov\/goddard","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":291471,"friends_count":593,"listed_count":5527,"created_at":"Wed Feb 04 15:20:48 +0000 2009","favourites_count":5283,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":13097,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543573578\/6945160410_a19c865aec_b.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543573578\/6945160410_a19c865aec_b.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529287161829277698\/qws4p5rk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529287161829277698\/qws4p5rk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20060293\/1429795552","profile_link_color":"13529E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":65,"favorite_count":78,"entities":{"hashtags":[{"text":"GOES","indices":[17,22]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5oXklIiNqe","expanded_url":"http:\/\/go.nasa.gov\/1jOALyh","display_url":"go.nasa.gov\/1jOALyh","indices":[91,114]}],"media":[{"id":674686205292883972,"id_str":"674686205292883972","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/674686205292883972\/pu\/img\/-Htb313S3MR-Ppg_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/674686205292883972\/pu\/img\/-Htb313S3MR-Ppg_.jpg","url":"https:\/\/t.co\/OtpRZrEyDk","display_url":"pic.twitter.com\/OtpRZrEyDk","expanded_url":"http:\/\/twitter.com\/NASAGoddard\/status\/674686215954808832\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":674686205292883972,"id_str":"674686205292883972","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/674686205292883972\/pu\/img\/-Htb313S3MR-Ppg_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/674686205292883972\/pu\/img\/-Htb313S3MR-Ppg_.jpg","url":"https:\/\/t.co\/OtpRZrEyDk","display_url":"pic.twitter.com\/OtpRZrEyDk","expanded_url":"http:\/\/twitter.com\/NASAGoddard\/status\/674686215954808832\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":19505,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/674686205292883972\/pu\/pl\/ceH5fGjMdNwHl1tD.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/674686205292883972\/pu\/vid\/720x720\/qBKuNdby6miaPlHb.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/674686205292883972\/pu\/vid\/480x480\/A1Z-eCgXSFNHEKiX.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/674686205292883972\/pu\/vid\/240x240\/h3bOuBtFo2OLv7vC.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/674686205292883972\/pu\/pl\/ceH5fGjMdNwHl1tD.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/674686205292883972\/pu\/vid\/480x480\/A1Z-eCgXSFNHEKiX.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[83,96]}],"urls":[{"url":"https:\/\/t.co\/4Rm3ay0pOY","expanded_url":"https:\/\/twitter.com\/NASAGoddard\/status\/674686215954808832","display_url":"twitter.com\/NASAGoddard\/st\u2026","indices":[98,121]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue Dec 08 20:19:36 +0000 2015","id":674322457717694469,"id_str":"674322457717694469","text":"@merveille @himawari8bot anyway, more info here if you're curious https:\/\/t.co\/s3mTGUG2If","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674285923211849728,"in_reply_to_status_id_str":"674285923211849728","in_reply_to_user_id":14868530,"in_reply_to_user_id_str":"14868530","in_reply_to_screen_name":"merveille","user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":286,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1243,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"merveille","name":"merryr","id":14868530,"id_str":"14868530","indices":[0,10]},{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[11,24]}],"urls":[{"url":"https:\/\/t.co\/s3mTGUG2If","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/product_descriptions.asp#himawari-8\/full_disk_ahi_true_color","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[66,89]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue Dec 08 20:19:04 +0000 2015","id":674322323361546243,"id_str":"674322323361546243","text":"@merveille @himawari8bot it's the coloring used by CIRA when they release the photos from which these are made. i kind of wish they wouldn't","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Plus)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674285923211849728,"in_reply_to_status_id_str":"674285923211849728","in_reply_to_user_id":14868530,"in_reply_to_user_id_str":"14868530","in_reply_to_screen_name":"merveille","user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":286,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1243,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"merveille","name":"merryr","id":14868530,"id_str":"14868530","indices":[0,10]},{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[11,24]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Dec 08 17:54:26 +0000 2015","id":674285923211849728,"id_str":"674285923211849728","text":"@himawari8bot What is the red that shows up after dark?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674244478006243328,"in_reply_to_status_id_str":"674244478006243328","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":14868530,"id_str":"14868530","name":"merryr","screen_name":"merveille","location":"Somerville, MA","description":"I'm doing science and I'm still alive","url":"http:\/\/t.co\/LZwWLcemrZ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/LZwWLcemrZ","expanded_url":"http:\/\/tilde.club\/~maryr","display_url":"tilde.club\/~maryr","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":356,"friends_count":168,"listed_count":26,"created_at":"Thu May 22 14:04:38 +0000 2008","favourites_count":908,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":24687,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/162796824\/mikemitchellisawesome1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/162796824\/mikemitchellisawesome1.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649614305776660480\/Eud1w6H9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649614305776660480\/Eud1w6H9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14868530\/1401745255","profile_link_color":"FA743E","profile_sidebar_border_color":"4F3A3A","profile_sidebar_fill_color":"202120","profile_text_color":"704C56","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[0,13]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Dec 08 08:04:26 +0000 2015","id":674137444250357760,"id_str":"674137444250357760","text":"@himawari8bot @wxdam that pacific jet though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674122916963999744,"in_reply_to_status_id_str":"674122916963999744","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":138858058,"id_str":"138858058","name":"Russell Horvath","screen_name":"rahorvath","location":"Los Angeles, CA","description":"Writer and playwright. Fan of abusive sports teams. Decidedly against rice in burritos.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":872,"listed_count":21,"created_at":"Fri Apr 30 20:31:51 +0000 2010","favourites_count":8253,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":16506,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/97210881\/Eta_Carinae_Nebula_1-twitter.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/97210881\/Eta_Carinae_Nebula_1-twitter.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000856191965\/4ddb7cabcfa7e02b60855658fbc0a0d8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000856191965\/4ddb7cabcfa7e02b60855658fbc0a0d8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138858058\/1407982058","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[0,13]},{"screen_name":"wxdam","name":"Dennis Mersereau","id":87095316,"id_str":"87095316","indices":[14,20]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Dec 01 03:44:39 +0000 2015","id":671535354546012161,"id_str":"671535354546012161","text":"@himawari8bot @MichaelJewell78 coral sea off NE australia","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":671529288529788933,"in_reply_to_status_id_str":"671529288529788933","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":2404419367,"id_str":"2404419367","name":"Daddy Love","screen_name":"SemiMooch","location":"","description":"I am a leaf on the wind. Watch how I soar.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":593,"friends_count":479,"listed_count":34,"created_at":"Sat Mar 22 15:55:30 +0000 2014","favourites_count":69,"utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"verified":false,"statuses_count":41631,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625113112782336001\/Ah0-l44q.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625113112782336001\/Ah0-l44q.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534096028153049088\/v0_oWDrR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534096028153049088\/v0_oWDrR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2404419367\/1418673774","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[0,13]},{"screen_name":"MichaelJewell78","name":"Michael Jewell","id":380667593,"id_str":"380667593","indices":[14,30]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"es"},{"created_at":"Sun Nov 29 16:38:03 +0000 2015","id":671005208403705858,"id_str":"671005208403705858","text":"RT @himawari8bot: Coordinates: (16.955546925758043, 118.55342349640065); https:\/\/t.co\/VO55k9yDcr https:\/\/t.co\/AROMdfeIbR","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":670983005054353408,"in_reply_to_status_id_str":"670983005054353408","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":848833596,"id_str":"848833596","name":"Domenico Calia","screen_name":"CaliaDomenico","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":617,"friends_count":766,"listed_count":45,"created_at":"Thu Sep 27 07:40:42 +0000 2012","favourites_count":8924,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14678,"lang":"it","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667812213982384128\/zHXHmDmR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667812213982384128\/zHXHmDmR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848833596\/1447963014","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/VO55k9yDcr","expanded_url":"http:\/\/osm.org\/go\/42Ah8--?m","display_url":"osm.org\/go\/42Ah8--?m","indices":[73,96]}],"media":[{"id":670982928428593153,"id_str":"670982928428593153","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670982928428593153\/pu\/img\/18BxYfR6JQAHV-jY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670982928428593153\/pu\/img\/18BxYfR6JQAHV-jY.jpg","url":"https:\/\/t.co\/AROMdfeIbR","display_url":"pic.twitter.com\/AROMdfeIbR","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/670983005054353408\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":670983005054353408,"source_status_id_str":"670983005054353408","source_user_id":4040207472,"source_user_id_str":"4040207472"}]},"extended_entities":{"media":[{"id":670982928428593153,"id_str":"670982928428593153","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670982928428593153\/pu\/img\/18BxYfR6JQAHV-jY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670982928428593153\/pu\/img\/18BxYfR6JQAHV-jY.jpg","url":"https:\/\/t.co\/AROMdfeIbR","display_url":"pic.twitter.com\/AROMdfeIbR","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/670983005054353408\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":670983005054353408,"source_status_id_str":"670983005054353408","source_user_id":4040207472,"source_user_id_str":"4040207472","video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/670982928428593153\/pu\/vid\/240x240\/qDScBICzs_8cbLa-.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/670982928428593153\/pu\/vid\/720x720\/b8RqA7ZOTrqgRHrx.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/670982928428593153\/pu\/pl\/ewg5i5xbUMWGc7bW.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/670982928428593153\/pu\/vid\/480x480\/bEpAj9d9kvNL_2fi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/670982928428593153\/pu\/vid\/480x480\/bEpAj9d9kvNL_2fi.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/670982928428593153\/pu\/pl\/ewg5i5xbUMWGc7bW.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 29 09:18:52 +0000 2015","id":670894684365914114,"id_str":"670894684365914114","text":"Wind shear, open cell cumulus, & others \u263a MT @himawari8bot: Coordinates: (-14.886 , 150.58); https:\/\/t.co\/AUxNgTxLIh https:\/\/t.co\/PqnnOpqDep","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138008977,"id_str":"138008977","name":"Becs","screen_name":"BeccMaz","location":"Cheyenne, WY","description":"you can find me lost in the music, marveling at the sky, or in the mountains.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":510,"friends_count":773,"listed_count":31,"created_at":"Wed Apr 28 11:20:10 +0000 2010","favourites_count":2606,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27286,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629310718\/hits4ujgur782p52j4sd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629310718\/hits4ujgur782p52j4sd.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638776708527689729\/aqS92yzs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638776708527689729\/aqS92yzs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138008977\/1355825279","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[49,62]}],"urls":[{"url":"https:\/\/t.co\/AUxNgTxLIh","expanded_url":"http:\/\/osm.org\/go\/vM5TJ--?m","display_url":"osm.org\/go\/vM5TJ--?m","indices":[97,120]}],"media":[{"id":670892605836627968,"id_str":"670892605836627968","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670892605836627968\/pu\/img\/K_25oKqdgeowJdm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670892605836627968\/pu\/img\/K_25oKqdgeowJdm6.jpg","url":"https:\/\/t.co\/PqnnOpqDep","display_url":"pic.twitter.com\/PqnnOpqDep","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/670892685809614848\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":670892685809614848,"source_status_id_str":"670892685809614848","source_user_id":4040207472,"source_user_id_str":"4040207472"}]},"extended_entities":{"media":[{"id":670892605836627968,"id_str":"670892605836627968","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670892605836627968\/pu\/img\/K_25oKqdgeowJdm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/670892605836627968\/pu\/img\/K_25oKqdgeowJdm6.jpg","url":"https:\/\/t.co\/PqnnOpqDep","display_url":"pic.twitter.com\/PqnnOpqDep","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/670892685809614848\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":670892685809614848,"source_status_id_str":"670892685809614848","source_user_id":4040207472,"source_user_id_str":"4040207472","video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/670892605836627968\/pu\/pl\/p2l_pqjy5xvPgpJP.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/670892605836627968\/pu\/vid\/720x720\/cDIikrgIpGTeyUda.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/670892605836627968\/pu\/vid\/240x240\/6LjMiTAgJJ8fBf1A.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/670892605836627968\/pu\/vid\/480x480\/l5KP0yrbfTiKGM58.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/670892605836627968\/pu\/vid\/480x480\/l5KP0yrbfTiKGM58.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/670892605836627968\/pu\/pl\/p2l_pqjy5xvPgpJP.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat Nov 28 15:09:16 +0000 2015","id":670620480634789888,"id_str":"670620480634789888","text":"@MichaelJewell78 @himawari8bot yeah. field of view for the sat is basically india on the left to a little east of hawaii on the right.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":670395671757922304,"in_reply_to_status_id_str":"670395671757922304","in_reply_to_user_id":380667593,"in_reply_to_user_id_str":"380667593","in_reply_to_screen_name":"MichaelJewell78","user":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":286,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1243,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichaelJewell78","name":"Michael Jewell","id":380667593,"id_str":"380667593","indices":[0,16]},{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[17,30]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat Nov 28 00:15:58 +0000 2015","id":670395671757922304,"id_str":"670395671757922304","text":"@himawari8bot is that India?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":670394036956626944,"in_reply_to_status_id_str":"670394036956626944","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":380667593,"id_str":"380667593","name":"Michael Jewell","screen_name":"MichaelJewell78","location":"","description":"Physics student, Wayne State Warrior, Phi Theta Kappa, APS, SPS, AVS, OSA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":888,"friends_count":1897,"listed_count":98,"created_at":"Tue Sep 27 01:20:06 +0000 2011","favourites_count":63652,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50240,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633667392770560000\/YosJcg0m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633667392770560000\/YosJcg0m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380667593\/1439913167","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[0,13]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Nov 24 20:39:56 +0000 2015","id":669254143429754881,"id_str":"669254143429754881","text":"RT @himawari8bot: Coordinates: (-32.53362631455298, 86.19880164131882); https:\/\/t.co\/xPCgYXk1PG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":669216156960620545,"in_reply_to_status_id_str":"669216156960620545","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":848833596,"id_str":"848833596","name":"Domenico Calia","screen_name":"CaliaDomenico","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":617,"friends_count":766,"listed_count":45,"created_at":"Thu Sep 27 07:40:42 +0000 2012","favourites_count":8924,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14678,"lang":"it","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667812213982384128\/zHXHmDmR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667812213982384128\/zHXHmDmR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848833596\/1447963014","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":{"id":"5d8cbb7bef84529a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5d8cbb7bef84529a.json","place_type":"city","name":"Altamura","full_name":"Altamura, Puglia","country_code":"IT","country":"Italia","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[16.3437833,40.7246592],[16.6983477,40.7246592],[16.6983477,40.9785106],[16.3437833,40.9785106]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/xPCgYXk1PG","expanded_url":"http:\/\/osm.org\/go\/m6Nl5--?m","display_url":"osm.org\/go\/m6Nl5--?m","indices":[72,95]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue Nov 24 03:09:03 +0000 2015","id":668989677790085120,"id_str":"668989677790085120","text":"if you want to see stunning Earth gifs everyday, follow @himawari8bot!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2583649117,"id_str":"2583649117","name":"james noreid nowrite","screen_name":"masterJCboy","location":"Quezon City","description":"How do you become someone that great, that brave, that selfless?\nI guess you can only try.\n-Hiccup, HTTYD2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":237,"friends_count":584,"listed_count":2,"created_at":"Mon Jun 23 08:35:43 +0000 2014","favourites_count":5970,"utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"verified":false,"statuses_count":8877,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667484109657128960\/G4IPGJlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667484109657128960\/G4IPGJlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2583649117\/1429024977","profile_link_color":"2C1F3C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[56,69]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 23 07:50:53 +0000 2015","id":668698218901979136,"id_str":"668698218901979136","text":"\u0422\u0432\u0438\u0442\u0442\u0435\u0440-\u0431\u043e\u0442 @himawari8bot - \u0430\u043d\u0438\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0444\u043e\u0442\u043e \u0441 \u044f\u043f\u043e\u043d\u0441\u043a\u043e\u0433\u043e \u043c\u0435\u0442\u0435\u043e\u0441\u043f\u0443\u0442\u043d\u0438\u043a\u0430.\nhttps:\/\/t.co\/LLHAUF9LbQ\n#\u043a\u043e\u0441\u043c\u043e\u0441","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40845892,"id_str":"40845892","name":"vecs ","screen_name":"_vecs","location":"","description":"\u041b\u0438\u0447\u043d\u044b\u0439 \u043c\u0438\u043a\u0440\u043e\u0431\u043b\u043e\u0433. \u041d\u0430\u0443\u043a\u0430 \u0438 \u0442\u0435\u0445\u043d\u0438\u043a\u0430, \u0438\u0441\u0442\u043e\u0440\u0438\u044f, \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u0430, \u043a\u043e\u0441\u043c\u043e\u0441, \u0433\u0435\u043e\u043b\u043e\u0433\u0438\u044f, \u043f\u0430\u043b\u0435\u043e\u043d\u0430\u0443\u043a\u0438, \u043b\u0438\u043d\u0433\u0432\u0438\u0441\u0442\u0438\u043a\u0430, IT, \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u0440\u0430\u0434\u0438\u043e\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u0438\u043a\u0430, \u0412\u041f\u041a, \u0420\u043e\u0441\u0441\u0438\u044f, \u0410\u0437\u0438\u044f, \u0444\u043e\u0442\u043e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":2147,"listed_count":22,"created_at":"Mon May 18 09:50:09 +0000 2009","favourites_count":9062,"utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":5201,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"FCFCF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/22470571\/bground.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/22470571\/bground.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472091542484549633\/Zq-BpJTw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472091542484549633\/Zq-BpJTw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40845892\/1401389448","profile_link_color":"FA7E3C","profile_sidebar_border_color":"ACADA1","profile_sidebar_fill_color":"EAEDD5","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":668673031045120001,"quoted_status_id_str":"668673031045120001","quoted_status":{"created_at":"Mon Nov 23 06:10:48 +0000 2015","id":668673031045120001,"id_str":"668673031045120001","text":"Coordinates: (-30.09086748063921, 112.37973985208892); https:\/\/t.co\/hcJfloq0Dd https:\/\/t.co\/hJLuflYh3T","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":298,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":802,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hcJfloq0Dd","expanded_url":"http:\/\/osm.org\/go\/sbutm--?m","display_url":"osm.org\/go\/sbutm--?m","indices":[55,78]}],"media":[{"id":668672956315410432,"id_str":"668672956315410432","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668672956315410432\/pu\/img\/YSVRWG0Zoaa-c3qE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668672956315410432\/pu\/img\/YSVRWG0Zoaa-c3qE.jpg","url":"https:\/\/t.co\/hJLuflYh3T","display_url":"pic.twitter.com\/hJLuflYh3T","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/668673031045120001\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":668672956315410432,"id_str":"668672956315410432","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668672956315410432\/pu\/img\/YSVRWG0Zoaa-c3qE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668672956315410432\/pu\/img\/YSVRWG0Zoaa-c3qE.jpg","url":"https:\/\/t.co\/hJLuflYh3T","display_url":"pic.twitter.com\/hJLuflYh3T","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/668673031045120001\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/668672956315410432\/pu\/vid\/240x240\/pTITyO8meh3ufWvg.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/668672956315410432\/pu\/vid\/480x480\/LO5Hbw_GRuKFaknj.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/668672956315410432\/pu\/pl\/nDwdHhIODqoKiSFo.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/668672956315410432\/pu\/vid\/480x480\/LO5Hbw_GRuKFaknj.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/668672956315410432\/pu\/vid\/720x720\/8RqilyUUZp2hg0h9.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/668672956315410432\/pu\/pl\/nDwdHhIODqoKiSFo.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u043a\u043e\u0441\u043c\u043e\u0441","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[12,25]}],"urls":[{"url":"https:\/\/t.co\/LLHAUF9LbQ","expanded_url":"https:\/\/twitter.com\/himawari8bot\/status\/668673031045120001","display_url":"twitter.com\/himawari8bot\/s\u2026","indices":[74,97]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ru"},{"created_at":"Sat Nov 21 18:55:56 +0000 2015","id":668140808084787200,"id_str":"668140808084787200","text":"RT @himawari8bot: Coordinates: (-39.73730450367359, 124.60410483259021); https:\/\/t.co\/w2dLJzcf3w https:\/\/t.co\/75eCRVkpZO","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":668129141384978432,"in_reply_to_status_id_str":"668129141384978432","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":848833596,"id_str":"848833596","name":"Domenico Calia","screen_name":"CaliaDomenico","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":617,"friends_count":766,"listed_count":45,"created_at":"Thu Sep 27 07:40:42 +0000 2012","favourites_count":8924,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14678,"lang":"it","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667812213982384128\/zHXHmDmR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667812213982384128\/zHXHmDmR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848833596\/1447963014","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/w2dLJzcf3w","expanded_url":"http:\/\/osm.org\/go\/spWX2--?m","display_url":"osm.org\/go\/spWX2--?m","indices":[73,96]}],"media":[{"id":668129082874470400,"id_str":"668129082874470400","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668129082874470400\/pu\/img\/9w7md30dWWdONLF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668129082874470400\/pu\/img\/9w7md30dWWdONLF8.jpg","url":"https:\/\/t.co\/75eCRVkpZO","display_url":"pic.twitter.com\/75eCRVkpZO","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/668129141384978432\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":668129141384978432,"source_status_id_str":"668129141384978432","source_user_id":4040207472,"source_user_id_str":"4040207472"}]},"extended_entities":{"media":[{"id":668129082874470400,"id_str":"668129082874470400","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668129082874470400\/pu\/img\/9w7md30dWWdONLF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/668129082874470400\/pu\/img\/9w7md30dWWdONLF8.jpg","url":"https:\/\/t.co\/75eCRVkpZO","display_url":"pic.twitter.com\/75eCRVkpZO","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/668129141384978432\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":668129141384978432,"source_status_id_str":"668129141384978432","source_user_id":4040207472,"source_user_id_str":"4040207472","video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/668129082874470400\/pu\/vid\/240x240\/d7T3fRXLCz_4PN41.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/668129082874470400\/pu\/vid\/480x480\/PwPcEyR8e1QaWdNe.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/668129082874470400\/pu\/pl\/b4o5BLLV_KuAfi0H.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/668129082874470400\/pu\/vid\/720x720\/Sjxt51ZFNjBWdDSW.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/668129082874470400\/pu\/vid\/480x480\/PwPcEyR8e1QaWdNe.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/668129082874470400\/pu\/pl\/b4o5BLLV_KuAfi0H.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Nov 20 02:56:09 +0000 2015","id":667536883044347905,"id_str":"667536883044347905","text":"Every hour I get an amazing nugget of our blue marble delivered by @himawari8bot and it makes me pause in wonder.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":305956679,"id_str":"305956679","name":"Michael Nicolaou","screen_name":"SAWatcherTX","location":"San Antonio","description":"Believer, Husband, Father, Weather Enthusiast, Mtn Biker, Singer, Ghost Writer for @Head_Shot_Kitty","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":257,"listed_count":15,"created_at":"Fri May 27 01:45:17 +0000 2011","favourites_count":8032,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16828,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/673343369880297472\/yN7j1qOc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/673343369880297472\/yN7j1qOc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/305956679\/1431833958","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[67,80]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 16 00:04:47 +0000 2015","id":666044202632019968,"id_str":"666044202632019968","text":"@simonwilliam Not quite as good, but also check out @himawari8bot.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":666035590484332544,"in_reply_to_status_id_str":"666035590484332544","in_reply_to_user_id":17586062,"in_reply_to_user_id_str":"17586062","in_reply_to_screen_name":"simonwilliam","user":{"id":19430233,"id_str":"19430233","name":"Zach Seward","screen_name":"zseward","location":"New York, NY","description":"VP of product and executive editor at Quartz | @qz | z@qz.com","url":"https:\/\/t.co\/G318vIng6k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/G318vIng6k","expanded_url":"http:\/\/qz.com","display_url":"qz.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24896,"friends_count":1742,"listed_count":1554,"created_at":"Sat Jan 24 03:32:09 +0000 2009","favourites_count":7446,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":22128,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623444704202518528\/md1pZdSY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623444704202518528\/md1pZdSY.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641001275941855236\/IDlq9PWd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641001275941855236\/IDlq9PWd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19430233\/1441661794","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"simonwilliam","name":"Simon V-L","id":17586062,"id_str":"17586062","indices":[0,13]},{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[52,65]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun Nov 15 15:58:23 +0000 2015","id":665921798563741697,"id_str":"665921798563741697","text":"@himawari8bot @hecanjog needs a music soundtrack ;)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":665909493516120064,"in_reply_to_status_id_str":"665909493516120064","in_reply_to_user_id":4040207472,"in_reply_to_user_id_str":"4040207472","in_reply_to_screen_name":"himawari8bot","user":{"id":14817551,"id_str":"14817551","name":"Damara Arrowood","screen_name":"OmoNsasi","location":"L4","description":"D-Ops at SciDVA. NDN, A\/V Arts, Digital Constellation Manipulator, Synaesthete, Comedically Prolific RTs. Darkivist Muse and Messenger. Geek Cheerleader *\\o\/*","url":"https:\/\/t.co\/2QTxJKDjj2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2QTxJKDjj2","expanded_url":"http:\/\/about.me\/omonsasi","display_url":"about.me\/omonsasi","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1484,"friends_count":2071,"listed_count":205,"created_at":"Sun May 18 03:58:47 +0000 2008","favourites_count":32579,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":56898,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050006","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566783833693892608\/BUsQNEUG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566783833693892608\/BUsQNEUG.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644892022009036800\/8fNK-yWU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644892022009036800\/8fNK-yWU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14817551\/1442589567","profile_link_color":"002233","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"5E2626","profile_text_color":"050006","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himawari8bot","name":"himawari8bot","id":4040207472,"id_str":"4040207472","indices":[0,13]},{"screen_name":"hecanjog","name":"He Can Jog","id":415454916,"id_str":"415454916","indices":[14,23]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_replies.json b/testdata/get_replies.json new file mode 100644 index 00000000..8af41e63 --- /dev/null +++ b/testdata/get_replies.json @@ -0,0 +1 @@ +[{"created_at":"Mon Nov 30 11:44:08 +0000 2015","id":671293633849655296,"id_str":"671293633849655296","text":"data #python","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"python","indices":[5,12]}],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Mon Nov 30 11:38:55 +0000 2015","id":671292317123387396,"id_str":"671292317123387396","text":"#python is cool","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"python","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 30 11:38:08 +0000 2015","id":671292121203257344,"id_str":"671292121203257344","text":"test","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 30 11:36:57 +0000 2015","id":671291823994888192,"id_str":"671291823994888192","text":"s'up","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Mon Nov 30 11:17:49 +0000 2015","id":671287007889506304,"id_str":"671287007889506304","text":"heyyo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"tl"},{"created_at":"Mon Nov 30 11:17:11 +0000 2015","id":671286849579720704,"id_str":"671286849579720704","text":"hi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Nov 13 12:02:32 +0000 2015","id":665137669886902272,"id_str":"665137669886902272","text":"hi https:\/\/t.co\/R7CjFKbgeg","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":665136967898767360,"id_str":"665136967898767360","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","url":"https:\/\/t.co\/R7CjFKbgeg","display_url":"pic.twitter.com\/R7CjFKbgeg","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/665137669886902272\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":665136967898767360,"id_str":"665136967898767360","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","url":"https:\/\/t.co\/R7CjFKbgeg","display_url":"pic.twitter.com\/R7CjFKbgeg","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/665137669886902272\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":6500,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/pl\/W6BlyXzk7g_8-tKJ.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/1280x720\/htYRJBesfbSGeoT8.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/640x360\/BUBv0buG27I8DgM9.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/640x360\/BUBv0buG27I8DgM9.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/320x180\/HMdmPavKQMvFzWnq.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/pl\/W6BlyXzk7g_8-tKJ.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Mon Nov 09 23:54:36 +0000 2015","id":663867314799050752,"id_str":"663867314799050752","text":"Coordinates: (-23.724299586845486, 116.83818451838428) https:\/\/t.co\/c1rNh9GkhL","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663867262881783808,"id_str":"663867262881783808","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","url":"https:\/\/t.co\/c1rNh9GkhL","display_url":"pic.twitter.com\/c1rNh9GkhL","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663867314799050752\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663867262881783808,"id_str":"663867262881783808","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","url":"https:\/\/t.co\/c1rNh9GkhL","display_url":"pic.twitter.com\/c1rNh9GkhL","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663867314799050752\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":14834,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/pl\/MwL-LTqapKjJwZyl.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/480x480\/Q9mGbytAe11Sz4hx.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/240x240\/Ij3RqA9YktoMaI42.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/720x720\/B6dD-annh_65-vR4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/pl\/MwL-LTqapKjJwZyl.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/480x480\/Q9mGbytAe11Sz4hx.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon Nov 09 23:30:32 +0000 2015","id":663861256521170946,"id_str":"663861256521170946","text":"Coordinates: (19.25115865817856, 128.6433834429668) https:\/\/t.co\/kwT95TSYa7","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663861220156375040,"id_str":"663861220156375040","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","url":"https:\/\/t.co\/kwT95TSYa7","display_url":"pic.twitter.com\/kwT95TSYa7","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663861256521170946\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663861220156375040,"id_str":"663861220156375040","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","url":"https:\/\/t.co\/kwT95TSYa7","display_url":"pic.twitter.com\/kwT95TSYa7","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663861256521170946\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":4000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/480x480\/_F_tb5b1a1XCIVbh.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/720x720\/BdhHKM_zV5ZHUJ9M.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/pl\/pd8Cs5cZr781b7Bq.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/pl\/pd8Cs5cZr781b7Bq.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/240x240\/vADh8GWFlLpK0hMz.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/480x480\/_F_tb5b1a1XCIVbh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon Nov 09 02:47:27 +0000 2015","id":663548426735460352,"id_str":"663548426735460352","text":"Coordinates: (19.407056335751044, 176.55123837932575) https:\/\/t.co\/n6uwVWtpB2","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663548347588866048,"id_str":"663548347588866048","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","url":"https:\/\/t.co\/n6uwVWtpB2","display_url":"pic.twitter.com\/n6uwVWtpB2","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663548426735460352\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663548347588866048,"id_str":"663548347588866048","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","url":"https:\/\/t.co\/n6uwVWtpB2","display_url":"pic.twitter.com\/n6uwVWtpB2","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663548426735460352\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/720x720\/sy1-a19_nQQx5MxI.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/pl\/U5YtH1Yw_LAvEcq9.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/240x240\/-C6pTt27AIyCvP5w.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/480x480\/2ptLOyIdZXmiIwiy.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/480x480\/2ptLOyIdZXmiIwiy.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/pl\/U5YtH1Yw_LAvEcq9.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon Nov 09 00:26:44 +0000 2015","id":663513012867891200,"id_str":"663513012867891200","text":"Coordinates: (29.810739350132245, -177.8551840127668) https:\/\/t.co\/zzRxdWqQ8c","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663512957876211712,"id_str":"663512957876211712","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","url":"https:\/\/t.co\/zzRxdWqQ8c","display_url":"pic.twitter.com\/zzRxdWqQ8c","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663513012867891200\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663512957876211712,"id_str":"663512957876211712","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","url":"https:\/\/t.co\/zzRxdWqQ8c","display_url":"pic.twitter.com\/zzRxdWqQ8c","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663513012867891200\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/pl\/g7ur9WnJnBBDp5GN.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/720x720\/H5ErESRE9hlVzmkR.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/pl\/g7ur9WnJnBBDp5GN.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/480x480\/6Msz2517N8Fs2HvU.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/480x480\/6Msz2517N8Fs2HvU.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/240x240\/pNWK9cYjOXp-esyT.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 22:36:48 +0000 2015","id":663485346819284993,"id_str":"663485346819284993","text":"Coordinates: (-1.7578742086942767, 161.1118539038322) https:\/\/t.co\/srWIkeUrBh","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663485293404778496,"id_str":"663485293404778496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","url":"https:\/\/t.co\/srWIkeUrBh","display_url":"pic.twitter.com\/srWIkeUrBh","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663485346819284993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663485293404778496,"id_str":"663485293404778496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","url":"https:\/\/t.co\/srWIkeUrBh","display_url":"pic.twitter.com\/srWIkeUrBh","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663485346819284993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/pl\/WmDKek_oYQFTQzT4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/480x480\/ZS7AEBCTOBJveiGA.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/pl\/WmDKek_oYQFTQzT4.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/480x480\/ZS7AEBCTOBJveiGA.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/720x720\/mJ-KHWl1NIJ-iLYP.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/240x240\/ayxBl5T23_0uPvUK.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 22:33:51 +0000 2015","id":663484604012072960,"id_str":"663484604012072960","text":"Coordinates: (-11.346469919845939, 100.09071030418862) https:\/\/t.co\/FjAA3EmCE6","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663484536852865024,"id_str":"663484536852865024","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","url":"https:\/\/t.co\/FjAA3EmCE6","display_url":"pic.twitter.com\/FjAA3EmCE6","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663484604012072960\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663484536852865024,"id_str":"663484536852865024","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","url":"https:\/\/t.co\/FjAA3EmCE6","display_url":"pic.twitter.com\/FjAA3EmCE6","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663484604012072960\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":18000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/240x240\/t1LjT6giBFdOrO79.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/720x720\/lsxjJAD2qNJhvhwD.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/pl\/mZAS9FnRiw4uqnyI.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/480x480\/ufo7fIbCKd9Qy21G.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/480x480\/ufo7fIbCKd9Qy21G.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/pl\/mZAS9FnRiw4uqnyI.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:51:32 +0000 2015","id":663473957811658753,"id_str":"663473957811658753","text":"Coordinates: ('Space', 'Space') https:\/\/t.co\/wTPSb1I8Mf","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663473920029253632,"id_str":"663473920029253632","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","url":"https:\/\/t.co\/wTPSb1I8Mf","display_url":"pic.twitter.com\/wTPSb1I8Mf","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663473957811658753\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663473920029253632,"id_str":"663473920029253632","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","url":"https:\/\/t.co\/wTPSb1I8Mf","display_url":"pic.twitter.com\/wTPSb1I8Mf","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663473957811658753\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":18000,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/720x720\/I7TOIh7tG81O_40F.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/pl\/tp-XmLOlsF7Q4S0A.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/pl\/tp-XmLOlsF7Q4S0A.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/240x240\/A8XcFhN8DxUiBwgT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/480x480\/wbsKT-C24l7K2WF3.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/480x480\/wbsKT-C24l7K2WF3.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:27:36 +0000 2015","id":663467933465636864,"id_str":"663467933465636864","text":"Coordinates: (11.598328597748077, 140.60806471667786) https:\/\/t.co\/S7iow4EjA1","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663467838410240000,"id_str":"663467838410240000","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","url":"https:\/\/t.co\/S7iow4EjA1","display_url":"pic.twitter.com\/S7iow4EjA1","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467933465636864\/video\/1","type":"photo","sizes":{"large":{"w":800,"h":1080,"resize":"fit"},"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":810,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663467838410240000,"id_str":"663467838410240000","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","url":"https:\/\/t.co\/S7iow4EjA1","display_url":"pic.twitter.com\/S7iow4EjA1","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467933465636864\/video\/1","type":"video","sizes":{"large":{"w":800,"h":1080,"resize":"fit"},"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":810,"resize":"fit"}},"video_info":{"aspect_ratio":[20,27],"duration_millis":18000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/vid\/474x640\/__uhgfmLp26gGozH.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/pl\/xBxTyBNoiBJN5tj3.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/vid\/474x640\/__uhgfmLp26gGozH.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/vid\/236x320\/_MLQR7ksgVXgNLET.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/pl\/xBxTyBNoiBJN5tj3.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:24:42 +0000 2015","id":663467205107978240,"id_str":"663467205107978240","text":"Coordinates: (38.98530195707448, 162.48615119621948) https:\/\/t.co\/lJVVCgAUtR","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663467124766015488,"id_str":"663467124766015488","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","url":"https:\/\/t.co\/lJVVCgAUtR","display_url":"pic.twitter.com\/lJVVCgAUtR","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467205107978240\/video\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663467124766015488,"id_str":"663467124766015488","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","url":"https:\/\/t.co\/lJVVCgAUtR","display_url":"pic.twitter.com\/lJVVCgAUtR","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467205107978240\/video\/1","type":"video","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"video_info":{"aspect_ratio":[2,3],"duration_millis":18000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/pl\/QKstPdpJe2RC19xM.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/pl\/QKstPdpJe2RC19xM.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/vid\/426x640\/ZmIrqJRKrmXD5Z9U.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/vid\/212x320\/Ow4um7QDLgGo5p5v.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/vid\/426x640\/ZmIrqJRKrmXD5Z9U.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:19:07 +0000 2015","id":663465797415796736,"id_str":"663465797415796736","text":"Coordinates: (-12.256503709352122, 126.37930506155699) https:\/\/t.co\/pQqNVyKMe4","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663465725172957184,"id_str":"663465725172957184","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","url":"https:\/\/t.co\/pQqNVyKMe4","display_url":"pic.twitter.com\/pQqNVyKMe4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663465797415796736\/video\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663465725172957184,"id_str":"663465725172957184","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","url":"https:\/\/t.co\/pQqNVyKMe4","display_url":"pic.twitter.com\/pQqNVyKMe4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663465797415796736\/video\/1","type":"video","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"video_info":{"aspect_ratio":[2,3],"duration_millis":18000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/vid\/212x320\/LB9WdjYpa4zLfXk-.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/vid\/426x640\/5I1szURr6FU9uGVr.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/vid\/426x640\/5I1szURr6FU9uGVr.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/pl\/Qsn2Z9NSZnROhSL4.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/pl\/Qsn2Z9NSZnROhSL4.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:14:47 +0000 2015","id":663464707622326273,"id_str":"663464707622326273","text":"Coordinates: (-33.20140213209449, 142.39819784440365) https:\/\/t.co\/wCc0lCrIMd","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663464653847003136,"id_str":"663464653847003136","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","url":"https:\/\/t.co\/wCc0lCrIMd","display_url":"pic.twitter.com\/wCc0lCrIMd","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663464707622326273\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663464653847003136,"id_str":"663464653847003136","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","url":"https:\/\/t.co\/wCc0lCrIMd","display_url":"pic.twitter.com\/wCc0lCrIMd","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663464707622326273\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12858,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/480x480\/jbm-wM21QRBUf8n0.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/720x720\/EFYmhU36rdmP_1q5.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/240x240\/NpwHL4fG481_ndvZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/480x480\/jbm-wM21QRBUf8n0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/pl\/5KyoCP9rdyoCL3-s.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/pl\/5KyoCP9rdyoCL3-s.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:10:47 +0000 2015","id":663463701652049924,"id_str":"663463701652049924","text":"Coordinates: (-18.228483611313685, 144.53536540678192) https:\/\/t.co\/zUoswR08L9","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663463609981386753,"id_str":"663463609981386753","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","url":"https:\/\/t.co\/zUoswR08L9","display_url":"pic.twitter.com\/zUoswR08L9","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663463701652049924\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1280,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663463609981386753,"id_str":"663463609981386753","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","url":"https:\/\/t.co\/zUoswR08L9","display_url":"pic.twitter.com\/zUoswR08L9","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663463701652049924\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1280,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[1,2],"duration_millis":12858,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/pl\/yESvqQoBEKSeZ7sT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/320x640\/8RcykyWqCfQBiDXh.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/pl\/yESvqQoBEKSeZ7sT.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/640x1280\/Za7AN23tnOWHir3_.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/320x640\/8RcykyWqCfQBiDXh.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/160x320\/DsPS-7bztlmhGkug.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:04:18 +0000 2015","id":663462067740008448,"id_str":"663462067740008448","text":"Coordinates: (13.831249509215814, 165.68692369634107) https:\/\/t.co\/Q5rFY3g9U4","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663461967005249536,"id_str":"663461967005249536","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","url":"https:\/\/t.co\/Q5rFY3g9U4","display_url":"pic.twitter.com\/Q5rFY3g9U4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663462067740008448\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461967005249536,"id_str":"663461967005249536","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","url":"https:\/\/t.co\/Q5rFY3g9U4","display_url":"pic.twitter.com\/Q5rFY3g9U4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663462067740008448\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":12858,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/320x180\/7_nWwoNxibi-DKXY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/640x360\/ezHgaGyQ_Oh8QX5m.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/pl\/-7u4g6LnVApwvTVO.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/pl\/-7u4g6LnVApwvTVO.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/640x360\/ezHgaGyQ_Oh8QX5m.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/1280x720\/qMS6aSw8yvrAZ3z5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_retweeters.json b/testdata/get_retweeters.json new file mode 100644 index 00000000..9707c902 --- /dev/null +++ b/testdata/get_retweeters.json @@ -0,0 +1 @@ +{"ids":[2495447557,2329303118,400773576,2951536813,2354858683,2805218958,2921074850,717950795,2920198337,2298780054,2956277463,2932914681,594152187,2149827450,1280652686,255149618,2253500994,1154184554,1028143183,2959583048,2812607934,2950529331,2228419408,2209549874,2271602339,506047908,1321986698,1678837003,1377602034,1391372328,876733711,2810075863,1092858866,1190783960,1462374198,2601544682,2904210737,2974097771,2954764264,2174326285,2579330610,2312150604,2935300107,2880845950,2491777656,2904960699,2504816257,2792158449,2966376340,2923958981,487115006,1666454508,1155588638,2937463192,1701275521,87824707,2831786788,738630438,2920496680,1260643814,542483377,173699661,2921547653],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_retweets.json b/testdata/get_retweets.json new file mode 100644 index 00000000..e86f30f3 --- /dev/null +++ b/testdata/get_retweets.json @@ -0,0 +1 @@ +[{"created_at":"Thu Dec 03 14:19:01 +0000 2015","id":672419773767028736,"id_str":"672419773767028736","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/tinysubversions.com\" rel=\"nofollow\"\u003everyoldtweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883171442,"id_str":"2883171442","name":"Very Old Tweets","screen_name":"VeryOldTweets","location":"","description":"Old tweets are kind of weird. This bot retweets one of the first 7500 tweets (first 90 days of Twitter) four times a day. \/\/ by @tinysubversions","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":572,"friends_count":1,"listed_count":40,"created_at":"Tue Nov 18 21:09:08 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1091,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534816280977473536\/UsI5wfU__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534816280977473536\/UsI5wfU__normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:43 +0000 2015","id":564993839275188225,"id_str":"564993839275188225","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2495447557,"id_str":"2495447557","name":"H.L","screen_name":"henry_coeg","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":273,"friends_count":340,"listed_count":1,"created_at":"Thu May 15 01:29:09 +0000 2014","favourites_count":576,"utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"verified":false,"statuses_count":1333,"lang":"id","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553108167064707072\/nvINMxky.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553108167064707072\/nvINMxky.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553102972960247808\/IfaV6wyF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553102972960247808\/IfaV6wyF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2495447557\/1420704854","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:41 +0000 2015","id":564993831293427712,"id_str":"564993831293427712","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2329303118,"id_str":"2329303118","name":"Valery \u00fc","screen_name":"AliiHenderWhore","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":24,"listed_count":0,"created_at":"Wed Feb 05 20:16:22 +0000 2014","favourites_count":249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1062,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486123419260297216\/jneYyahs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486123419260297216\/jneYyahs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2329303118\/1404735853","profile_link_color":"1EB8BD","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:39 +0000 2015","id":564993824280559619,"id_str":"564993824280559619","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":400773576,"id_str":"400773576","name":"G'Mey\u2665R\u2665\u263a\u2665","screen_name":"_meyling","location":"Agg _n _facebook","description":"#due\u00f1o de mi alma \u263a JeSuS \u2665 \u2665\u2665\u2665 eres mi toOoOoD \u2665 i LOvE \u2665","url":"https:\/\/t.co\/8vI6DCj3Pg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8vI6DCj3Pg","expanded_url":"https:\/\/www.facebook.com\/genesis.rivera.319247","display_url":"facebook.com\/genesis.rivera\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":986,"listed_count":2,"created_at":"Sat Oct 29 15:10:12 +0000 2011","favourites_count":743,"utc_offset":-14400,"time_zone":"La Paz","geo_enabled":true,"verified":false,"statuses_count":1261,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465706812512018432\/NAxBmUgm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465706812512018432\/NAxBmUgm.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560918023234543616\/iXSjEU9k_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560918023234543616\/iXSjEU9k_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400773576\/1422568945","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:38 +0000 2015","id":564993822212763648,"id_str":"564993822212763648","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2951536813,"id_str":"2951536813","name":"Harry K Wiyono","screen_name":"Hakawe22","location":"Padang","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":15,"listed_count":0,"created_at":"Tue Dec 30 05:38:01 +0000 2014","favourites_count":429,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":847,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549804619862253570\/4OWDYvzT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549804619862253570\/4OWDYvzT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2951536813\/1419919236","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:38 +0000 2015","id":564993820178513920,"id_str":"564993820178513920","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2354858683,"id_str":"2354858683","name":"Mema","screen_name":"axelsuyom_18","location":"HOLLYWOOD BLVRD.","description":"4 letter word for her. :)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":192,"listed_count":0,"created_at":"Fri Feb 21 14:07:59 +0000 2014","favourites_count":899,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":3859,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442192091397881856\/XvGth4Y1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442192091397881856\/XvGth4Y1.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545015140119109633\/7cjUDz07_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545015140119109633\/7cjUDz07_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354858683\/1408882607","profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:36 +0000 2015","id":564993813979348994,"id_str":"564993813979348994","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2805218958,"id_str":"2805218958","name":"Toko31 | 31distro","screen_name":"31distro","location":"Bandung, West Java","description":"Pusat Grosir Baju Murah | Order |\n\nBBM 1 : 30B4DED0 (Full)\nBBM 2 : 52CE8F8C (Error)\nBBM 3 : 582F0386 (Ready)\nSMS : 087778884968","url":"http:\/\/t.co\/sZZGxzwDrf","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/sZZGxzwDrf","expanded_url":"http:\/\/www.tokotigasatu.com","display_url":"tokotigasatu.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":179,"listed_count":3,"created_at":"Fri Sep 12 09:26:16 +0000 2014","favourites_count":435,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1240,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510665090488496128\/9NMdXvFm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510665090488496128\/9NMdXvFm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805218958\/1411791124","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:35 +0000 2015","id":564993807662710784,"id_str":"564993807662710784","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2921074850,"id_str":"2921074850","name":"Hede","screen_name":"LuvHede","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":61,"listed_count":1,"created_at":"Sat Dec 06 23:48:43 +0000 2014","favourites_count":617,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1099,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637814315135799296\/S2_TA6GL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637814315135799296\/S2_TA6GL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2921074850\/1447809153","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:34 +0000 2015","id":564993803766231042,"id_str":"564993803766231042","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":717950795,"id_str":"717950795","name":"ahmed adlan","screen_name":"eng_adlan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":38,"listed_count":3,"created_at":"Wed Oct 16 18:18:10 +0000 2013","favourites_count":883,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1537,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641741090886959104\/510_2oZs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641741090886959104\/510_2oZs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717950795\/1441837977","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:33 +0000 2015","id":564993799676772352,"id_str":"564993799676772352","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2920198337,"id_str":"2920198337","name":"Emhmed Adil Alsokney","screen_name":"Emhmed_Alsokney","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":84,"listed_count":0,"created_at":"Sat Dec 13 19:49:22 +0000 2014","favourites_count":636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1110,"lang":"ar","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552115869376335872\/FY0ESqC8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552115869376335872\/FY0ESqC8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2920198337\/1420470189","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:32 +0000 2015","id":564993795612508160,"id_str":"564993795612508160","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2298780054,"id_str":"2298780054","name":" SmokeLord YDG","screen_name":"YDGREALGENERAL","location":"Tdot","description":"For Booking SmokeLordYDG inbox Jordon Smitty Core @Facebook \/ BBG Gang & OWBB Gang \u00bb http:\/\/t.co\/S0uuomiItk","url":"https:\/\/t.co\/IqQzJ8BsPW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IqQzJ8BsPW","expanded_url":"https:\/\/www.youtube.com\/channel\/UCDmdggAw0lIIX9DT_kC3CnA","display_url":"youtube.com\/channel\/UCDmdg\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"http:\/\/t.co\/S0uuomiItk","expanded_url":"http:\/\/facebook.com\/OnlyYDG1","display_url":"facebook.com\/OnlyYDG1","indices":[85,107]}]}},"protected":false,"followers_count":33539,"friends_count":6347,"listed_count":7,"created_at":"Sun Jan 19 01:37:53 +0000 2014","favourites_count":3375,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3238,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549593988907294721\/IDiC3rsA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549593988907294721\/IDiC3rsA.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584061824326365184\/y8vBJMLo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584061824326365184\/y8vBJMLo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2298780054\/1435952723","profile_link_color":"4A913C","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:32 +0000 2015","id":564993793536319488,"id_str":"564993793536319488","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2956277463,"id_str":"2956277463","name":"\u5b89\u8fea\u83ab\u54c8\u672b\u5609","screen_name":"ItsAndhika","location":"Indonesia,JawaBarat,Bogor","description":"lckd.DivaMaharani. Smp Taruna Terpadu\u270c\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2257,"friends_count":11,"listed_count":2,"created_at":"Fri Jan 02 09:12:39 +0000 2015","favourites_count":361,"utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"verified":false,"statuses_count":37173,"lang":"id","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632897255524052992\/wYqwUlrP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632897255524052992\/wYqwUlrP.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654580141935325184\/r4Nyd_kT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654580141935325184\/r4Nyd_kT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2956277463\/1444898818","profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:31 +0000 2015","id":564993789224550401,"id_str":"564993789224550401","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2932914681,"id_str":"2932914681","name":"z4","screen_name":"xMaheUST","location":"ARGENTINA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":17,"listed_count":0,"created_at":"Sat Dec 20 01:52:32 +0000 2014","favourites_count":375,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":951,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560538463787687936\/ZVJ1OrJf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560538463787687936\/ZVJ1OrJf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2932914681\/1422477183","profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Feb 10 03:46:28 +0000 2015","id":564993779258904576,"id_str":"564993779258904576","text":"RT @jack: getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":594152187,"id_str":"594152187","name":"\u255a\u2550\u2550Euler\u2550\u2550\u255d","screen_name":"TomiEuler","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":49,"listed_count":2,"created_at":"Tue May 29 21:59:01 +0000 2012","favourites_count":659,"utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"verified":false,"statuses_count":2975,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660235106762756096\/tR21tpkz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660235106762756096\/tR21tpkz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594152187\/1435965679","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jack","name":"Jack","id":12,"id_str":"12","indices":[3,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_retweets_of_me.json b/testdata/get_retweets_of_me.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/testdata/get_retweets_of_me.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testdata/get_search.json b/testdata/get_search.json new file mode 100644 index 00000000..6f68f6d5 --- /dev/null +++ b/testdata/get_search.json @@ -0,0 +1 @@ +{"statuses":[{"metadata":{"result_type":"popular","iso_language_code":"en"},"created_at":"Tue Dec 08 21:40:00 +0000 2015","id":674342688083283970,"id_str":"674342688083283970","text":"\ud83c\udfb6 C++, Java, Python & Ruby. These are a few of my favorite things \ud83c\udfb6 #HourOfCode \ud83d\udd51\ud83d\udcbb\ud83d\udc7e\ud83c\udfae https:\/\/t.co\/GSCmPh9V6j","source":"\u003ca href=\"https:\/\/vine.co\" rel=\"nofollow\"\u003eVine for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58309829,"id_str":"58309829","name":"Nickelodeon","screen_name":"NickelodeonTV","location":"USA","description":"The Official Twitter for Nickelodeon, USA!","url":"https:\/\/t.co\/Lz9i6LdC4f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Lz9i6LdC4f","expanded_url":"http:\/\/www.nick.com","display_url":"nick.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3914587,"friends_count":2263,"listed_count":3321,"created_at":"Sun Jul 19 22:19:02 +0000 2009","favourites_count":2757,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":33910,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450718163508789248\/E26KBqrx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450718163508789248\/E26KBqrx.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671387650792665088\/sJxvItMD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671387650792665088\/sJxvItMD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58309829\/1448906254","profile_link_color":"D1771E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0F0F0","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":126,"entities":{"hashtags":[{"text":"HourOfCode","indices":[72,83]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GSCmPh9V6j","expanded_url":"https:\/\/vine.co\/v\/i7QJji9Ldmr","display_url":"vine.co\/v\/i7QJji9Ldmr","indices":[89,112]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]} \ No newline at end of file diff --git a/testdata/get_search_geocode.json b/testdata/get_search_geocode.json new file mode 100644 index 00000000..09fd1aab --- /dev/null +++ b/testdata/get_search_geocode.json @@ -0,0 +1 @@ +{"statuses":[{"metadata":{"iso_language_code":"fr","result_type":"recent"},"created_at":"Mon Dec 14 21:44:12 +0000 2015","id":676518074279788544,"id_str":"676518074279788544","text":"Oracle: Senior Python Developer (#Pleasanton, CA) https:\/\/t.co\/kMfUfzQH3n #IT #Job #Jobs #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23880153,"id_str":"23880153","name":"TMJ - SJC IT Jobs","screen_name":"tmj_sjc_it1","location":"San Jose, CA","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in San Jose, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":514,"friends_count":329,"listed_count":77,"created_at":"Thu Mar 12 02:43:56 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":694,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315559665\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315559665\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667397350097158144\/YpaKFs_w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667397350097158144\/YpaKFs_w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23880153\/1447954904","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.6624312,-121.8746789]},"coordinates":{"type":"Point","coordinates":[-121.8746789,37.6624312]},"place":{"id":"ad4876a662119b74","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ad4876a662119b74.json","place_type":"city","name":"Pleasanton","full_name":"Pleasanton, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-121.956864,37.621859],[-121.7986057,37.621859],[-121.7986057,37.704036],[-121.956864,37.704036]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Pleasanton","indices":[33,44]},{"text":"IT","indices":[74,77]},{"text":"Job","indices":[78,82]},{"text":"Jobs","indices":[83,88]},{"text":"Hiring","indices":[89,96]},{"text":"CareerArc","indices":[97,107]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kMfUfzQH3n","expanded_url":"http:\/\/bit.ly\/1JIH78A","display_url":"bit.ly\/1JIH78A","indices":[50,73]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Mon Dec 14 17:19:03 +0000 2015","id":676451346581577728,"id_str":"676451346581577728","text":"#Engineering alert: Software Engineer - Python Full... | SunPower | #Davis, CA https:\/\/t.co\/0Uys2e19u0 #SunPower https:\/\/t.co\/33fPk5iDIU","source":"\u003ca href=\"http:\/\/tweetmyjobs.com\" rel=\"nofollow\"\u003eSafeTweet by TweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":601302756,"id_str":"601302756","name":"SunPower Talent","screen_name":"SunPowerTalent","location":"San Jose, CA","description":"Do you want to change the way our world is powered? We do, too. Join our team of 7,000 passionate, brilliant people around the globe reshaping our energy future","url":"http:\/\/t.co\/rjfGDdk5kt","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/rjfGDdk5kt","expanded_url":"http:\/\/us.sunpower.com\/company\/careers\/","display_url":"us.sunpower.com\/company\/career\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":87,"listed_count":155,"created_at":"Wed Jun 06 19:20:33 +0000 2012","favourites_count":0,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":276,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573662326\/ezdenok7vw1t0pkwa71h.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573662326\/ezdenok7vw1t0pkwa71h.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545746314097459200\/AScvGgcs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545746314097459200\/AScvGgcs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601302756\/1417014993","profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[38.5449065,-121.7405167]},"coordinates":{"type":"Point","coordinates":[-121.7405167,38.5449065]},"place":{"id":"1994142e26ba7127","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1994142e26ba7127.json","place_type":"city","name":"Davis","full_name":"Davis, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-121.803252,38.526843],[-121.675074,38.526843],[-121.675074,38.590264],[-121.803252,38.590264]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Engineering","indices":[0,12]},{"text":"Davis","indices":[68,74]},{"text":"SunPower","indices":[103,112]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0Uys2e19u0","expanded_url":"http:\/\/bit.ly\/1SRrJwI","display_url":"bit.ly\/1SRrJwI","indices":[79,102]}],"media":[{"id":676451346308984832,"id_str":"676451346308984832","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CWM86lyU8AAbkT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWM86lyU8AAbkT3.jpg","url":"https:\/\/t.co\/33fPk5iDIU","display_url":"pic.twitter.com\/33fPk5iDIU","expanded_url":"http:\/\/twitter.com\/SunPowerTalent\/status\/676451346581577728\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun Dec 13 22:48:30 +0000 2015","id":676171868093603840,"id_str":"676171868093603840","text":"This #IT #job might be a great fit for you: NSX - Senior Quality Software Developer - Python and Networking -... - https:\/\/t.co\/9uu8jcibZQ","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20827150,"id_str":"20827150","name":"San Francisco IT Job","screen_name":"tmj_sfo_it","location":"San Francisco, CA","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in San Francisco, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":705,"friends_count":360,"listed_count":110,"created_at":"Sat Feb 14 02:46:00 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":957,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20827150\/1447890103","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.4457966,-122.1575745]},"coordinates":{"type":"Point","coordinates":[-122.1575745,37.4457966]},"place":{"id":"3ad0f706b3fa62a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3ad0f706b3fa62a8.json","place_type":"city","name":"Palo Alto","full_name":"Palo Alto, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.190523,37.362824],[-122.097537,37.362824],[-122.097537,37.465918],[-122.190523,37.465918]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IT","indices":[5,8]},{"text":"job","indices":[9,13]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9uu8jcibZQ","expanded_url":"http:\/\/bit.ly\/1R1rmkn","display_url":"bit.ly\/1R1rmkn","indices":[115,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun Dec 13 17:19:18 +0000 2015","id":676089021005701120,"id_str":"676089021005701120","text":"<iMike> monty python would be funny if nerds hadnt invented an entire subculture devoted to quoting it","source":"\u003ca href=\"http:\/\/www.zorrotron.com\" rel=\"nofollow\"\u003eZorrotron\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3196742670,"id_str":"3196742670","name":"Bash Org","screen_name":"bubusher","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":0,"listed_count":14,"created_at":"Sat May 16 00:34:28 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23720,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599373277715271680\/P_KQbOj3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599373277715271680\/P_KQbOj3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3196742670\/1431736674","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.69899055,-123.01234704]},"coordinates":{"type":"Point","coordinates":[-123.01234704,37.69899055]},"place":{"id":"fbd6d2f5a4e4a15e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fbd6d2f5a4e4a15e.json","place_type":"admin","name":"California","full_name":"California, USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-124.482003,32.528832],[-114.131212,32.528832],[-114.131212,42.009519],[-124.482003,42.009519]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun Dec 13 01:31:44 +0000 2015","id":675850559581110272,"id_str":"675850559581110272","text":"Oracle: Principal Cloud Platform DevOps Engineer: Chef, Puppet, Python, Scripting,... (#RedwoodShores, CA) https:\/\/t.co\/65QkXHJ7qf #IT #Job","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112596930,"id_str":"112596930","name":"TMJ-CA IT Jobs","screen_name":"tmj_CA_it","location":"California","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in California Non-Metro. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt4njnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt4njnT","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":451,"friends_count":332,"listed_count":87,"created_at":"Tue Feb 09 02:21:37 +0000 2010","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":588,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315392399\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315392399\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667417513819533312\/M3J7nCzZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667417513819533312\/M3J7nCzZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112596930\/1447959712","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.5364134,-122.2455364]},"coordinates":{"type":"Point","coordinates":[-122.2455364,37.5364134]},"place":{"id":"a409256339a7c6a1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a409256339a7c6a1.json","place_type":"city","name":"Redwood City","full_name":"Redwood City, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.28853,37.443954],[-122.177339,37.443954],[-122.177339,37.550633],[-122.28853,37.550633]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[{"text":"RedwoodShores","indices":[87,101]},{"text":"IT","indices":[131,134]},{"text":"Job","indices":[135,139]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/65QkXHJ7qf","expanded_url":"http:\/\/bit.ly\/1WNbvbz","display_url":"bit.ly\/1WNbvbz","indices":[107,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun Dec 13 00:47:04 +0000 2015","id":675839317302861825,"id_str":"675839317302861825","text":"Join the Cloudera team! See our latest #Engineering #job opening here: https:\/\/t.co\/KJTfF1UHqh #SanFrancisco, CA #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23314658,"id_str":"23314658","name":"TMJ-SFO Engin. Jobs","screen_name":"tmj_sfo_eng","location":"San Francisco, CA","description":"Follow this account for geo-targeted Engineering job tweets in San Francisco, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":444,"friends_count":259,"listed_count":71,"created_at":"Sun Mar 08 14:54:07 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":196,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315523778\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315523778\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/670000761846128640\/bEwS4xmj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/670000761846128640\/bEwS4xmj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23314658\/1448575605","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.7749295,-122.4194155]},"coordinates":{"type":"Point","coordinates":[-122.4194155,37.7749295]},"place":{"id":"5a110d312052166f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5a110d312052166f.json","place_type":"city","name":"San Francisco","full_name":"San Francisco, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.514926,37.708075],[-122.357031,37.708075],[-122.357031,37.833238],[-122.514926,37.833238]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Engineering","indices":[39,51]},{"text":"job","indices":[52,56]},{"text":"SanFrancisco","indices":[95,108]},{"text":"Hiring","indices":[113,120]},{"text":"CareerArc","indices":[121,131]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KJTfF1UHqh","expanded_url":"http:\/\/bit.ly\/1LRB3Px","display_url":"bit.ly\/1LRB3Px","indices":[71,94]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sat Dec 12 20:43:15 +0000 2015","id":675777960842932224,"id_str":"675777960842932224","text":"We're #hiring! Click to apply: Senior Cloud Test Automation Engineer: Java, Python, Chef, Hudson, Maven - https:\/\/t.co\/u0LZgn9XRo #IT #Job","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112596930,"id_str":"112596930","name":"TMJ-CA IT Jobs","screen_name":"tmj_CA_it","location":"California","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in California Non-Metro. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt4njnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt4njnT","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":451,"friends_count":332,"listed_count":87,"created_at":"Tue Feb 09 02:21:37 +0000 2010","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":588,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315392399\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315392399\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667417513819533312\/M3J7nCzZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667417513819533312\/M3J7nCzZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112596930\/1447959712","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.5364134,-122.2455364]},"coordinates":{"type":"Point","coordinates":[-122.2455364,37.5364134]},"place":{"id":"a409256339a7c6a1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a409256339a7c6a1.json","place_type":"city","name":"Redwood City","full_name":"Redwood City, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.28853,37.443954],[-122.177339,37.443954],[-122.177339,37.550633],[-122.28853,37.550633]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hiring","indices":[6,13]},{"text":"IT","indices":[130,133]},{"text":"Job","indices":[134,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u0LZgn9XRo","expanded_url":"http:\/\/bit.ly\/1JlOVBc","display_url":"bit.ly\/1JlOVBc","indices":[106,129]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sat Dec 12 18:31:32 +0000 2015","id":675744811689775104,"id_str":"675744811689775104","text":"#IT in #RedwoodShores, CA: Sr. Principal Cloud Platform DevOps Engineer: Chef\/Puppet\/python\/shell... at Oracle https:\/\/t.co\/BtkyJXbkHa","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112596930,"id_str":"112596930","name":"TMJ-CA IT Jobs","screen_name":"tmj_CA_it","location":"California","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in California Non-Metro. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt4njnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt4njnT","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":451,"friends_count":332,"listed_count":87,"created_at":"Tue Feb 09 02:21:37 +0000 2010","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":588,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315392399\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315392399\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667417513819533312\/M3J7nCzZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667417513819533312\/M3J7nCzZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112596930\/1447959712","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.5364134,-122.2455364]},"coordinates":{"type":"Point","coordinates":[-122.2455364,37.5364134]},"place":{"id":"a409256339a7c6a1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a409256339a7c6a1.json","place_type":"city","name":"Redwood City","full_name":"Redwood City, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.28853,37.443954],[-122.177339,37.443954],[-122.177339,37.550633],[-122.28853,37.550633]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IT","indices":[0,3]},{"text":"RedwoodShores","indices":[7,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BtkyJXbkHa","expanded_url":"http:\/\/bit.ly\/1i1knKS","display_url":"bit.ly\/1i1knKS","indices":[111,134]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sat Dec 12 16:45:26 +0000 2015","id":675718110742118400,"id_str":"675718110742118400","text":"See our latest #Davis, CA #job and click to apply: Software Engineer - Python Full Stack Developer - https:\/\/t.co\/dRI6r5E4DJ #Engineering","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23372352,"id_str":"23372352","name":"TMJ-SAC Engin. Jobs","screen_name":"tmj_sac_eng","location":"Sacramento, CA","description":"Follow this account for geo-targeted Engineering job tweets in Sacramento, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":228,"listed_count":26,"created_at":"Sun Mar 08 23:44:09 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":166,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315521922\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315521922\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/669013249556262912\/kiu-aoXf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/669013249556262912\/kiu-aoXf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23372352\/1448340164","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[38.5449065,-121.7405167]},"coordinates":{"type":"Point","coordinates":[-121.7405167,38.5449065]},"place":{"id":"1994142e26ba7127","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1994142e26ba7127.json","place_type":"city","name":"Davis","full_name":"Davis, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-121.803252,38.526843],[-121.675074,38.526843],[-121.675074,38.590264],[-121.803252,38.590264]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Davis","indices":[15,21]},{"text":"job","indices":[26,30]},{"text":"Engineering","indices":[125,137]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dRI6r5E4DJ","expanded_url":"http:\/\/bit.ly\/1NoPske","display_url":"bit.ly\/1NoPske","indices":[101,124]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sat Dec 12 02:47:54 +0000 2015","id":675507337805729792,"id_str":"675507337805729792","text":"We're #hiring! Read about our latest #job opening here: NSX QE Python Developer - Network Virtualization - https:\/\/t.co\/YNZqq7JYHU #IT","source":"\u003ca href=\"http:\/\/tweetmyjobs.com\" rel=\"nofollow\"\u003eSafeTweet by TweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2180401488,"id_str":"2180401488","name":"VMware Jobs","screen_name":"VMwareJobs","location":"Worldwide","description":"The official VMware, Inc. page for info on the most recent job openings at VMware, Inc.","url":"http:\/\/t.co\/PLQ8eLYjD2","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PLQ8eLYjD2","expanded_url":"http:\/\/vmware.com\/careers","display_url":"vmware.com\/careers","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1504,"friends_count":21,"listed_count":374,"created_at":"Thu Nov 07 16:19:15 +0000 2013","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3714,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116888419\/bfc2345d93c1c7d4797c5c558b6c027d.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116888419\/bfc2345d93c1c7d4797c5c558b6c027d.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000772289935\/b3ae6194419e750db17c91100e848c1f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000772289935\/b3ae6194419e750db17c91100e848c1f_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2180401488\/1398811259","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.4457966,-122.1575745]},"coordinates":{"type":"Point","coordinates":[-122.1575745,37.4457966]},"place":{"id":"3ad0f706b3fa62a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3ad0f706b3fa62a8.json","place_type":"city","name":"Palo Alto","full_name":"Palo Alto, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.190523,37.362824],[-122.097537,37.362824],[-122.097537,37.465918],[-122.190523,37.465918]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hiring","indices":[6,13]},{"text":"job","indices":[37,41]},{"text":"IT","indices":[131,134]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YNZqq7JYHU","expanded_url":"http:\/\/bit.ly\/1QMPB3Z","display_url":"bit.ly\/1QMPB3Z","indices":[107,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Fri Dec 11 01:25:59 +0000 2015","id":675124333967245314,"id_str":"675124333967245314","text":"RT @tmj_sfo_it: #IT #Job in #PALOALTO, CA: NSX Quality Software Developer - Perl or Python with Networking at VMware https:\/\/t.co\/H5F85XsP2\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623053184,"id_str":"623053184","name":"IVMUG","screen_name":"IVMUG","location":"","description":"Bringing you all the Independent VMUG news and events","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":573,"friends_count":184,"listed_count":411,"created_at":"Sat Jun 30 19:00:20 +0000 2012","favourites_count":102,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21585,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509323042825068545\/09LwfIGv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509323042825068545\/09LwfIGv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/623053184\/1410266962","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Fri Dec 11 00:29:50 +0000 2015","id":675110205311606785,"id_str":"675110205311606785","text":"#IT #Job in #PALOALTO, CA: NSX Quality Software Developer - Perl or Python with Networking at VMware https:\/\/t.co\/H5F85XsP2P #Jobs #Hiring","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20827150,"id_str":"20827150","name":"San Francisco IT Job","screen_name":"tmj_sfo_it","location":"San Francisco, CA","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in San Francisco, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":705,"friends_count":360,"listed_count":110,"created_at":"Sat Feb 14 02:46:00 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":957,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20827150\/1447890103","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.4457966,-122.1575745]},"coordinates":{"type":"Point","coordinates":[-122.1575745,37.4457966]},"place":{"id":"3ad0f706b3fa62a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3ad0f706b3fa62a8.json","place_type":"city","name":"Palo Alto","full_name":"Palo Alto, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.190523,37.362824],[-122.097537,37.362824],[-122.097537,37.465918],[-122.190523,37.465918]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"IT","indices":[0,3]},{"text":"Job","indices":[4,8]},{"text":"PALOALTO","indices":[12,21]},{"text":"Jobs","indices":[125,130]},{"text":"Hiring","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H5F85XsP2P","expanded_url":"http:\/\/bit.ly\/219bPDA","display_url":"bit.ly\/219bPDA","indices":[101,124]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"IT","indices":[16,19]},{"text":"Job","indices":[20,24]},{"text":"PALOALTO","indices":[28,37]},{"text":"Jobs","indices":[139,140]},{"text":"Hiring","indices":[139,140]}],"symbols":[],"user_mentions":[{"screen_name":"tmj_sfo_it","name":"San Francisco IT Job","id":20827150,"id_str":"20827150","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/H5F85XsP2P","expanded_url":"http:\/\/bit.ly\/219bPDA","display_url":"bit.ly\/219bPDA","indices":[117,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Fri Dec 11 00:42:09 +0000 2015","id":675113304902213632,"id_str":"675113304902213632","text":"Join the DataStax team! See our latest #Engineering #job opening here: https:\/\/t.co\/lhzxZOgfuz #BigData #noSQL #DataStax #SantaClara, CA","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23363279,"id_str":"23363279","name":"San Jose Eng. Jobs","screen_name":"tmj_sjc_eng","location":"San Jose, CA","description":"Follow this account for geo-targeted Engineering job tweets in San Jose, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":518,"friends_count":245,"listed_count":66,"created_at":"Sun Mar 08 22:23:07 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":554,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315522826\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315522826\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667705749988966400\/ovIW1NGB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667705749988966400\/ovIW1NGB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23363279\/1448028432","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.3986039,-121.9643745]},"coordinates":{"type":"Point","coordinates":[-121.9643745,37.3986039]},"place":{"id":"4b58830723ec6371","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4b58830723ec6371.json","place_type":"city","name":"Santa Clara","full_name":"Santa Clara, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.005597,37.322943],[-121.930045,37.322943],[-121.930045,37.419037],[-122.005597,37.419037]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Engineering","indices":[39,51]},{"text":"job","indices":[52,56]},{"text":"BigData","indices":[95,103]},{"text":"noSQL","indices":[104,110]},{"text":"DataStax","indices":[111,120]},{"text":"SantaClara","indices":[121,132]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lhzxZOgfuz","expanded_url":"http:\/\/bit.ly\/21T7wg6","display_url":"bit.ly\/21T7wg6","indices":[71,94]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Fri Dec 11 00:29:50 +0000 2015","id":675110205311606785,"id_str":"675110205311606785","text":"#IT #Job in #PALOALTO, CA: NSX Quality Software Developer - Perl or Python with Networking at VMware https:\/\/t.co\/H5F85XsP2P #Jobs #Hiring","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20827150,"id_str":"20827150","name":"San Francisco IT Job","screen_name":"tmj_sfo_it","location":"San Francisco, CA","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in San Francisco, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":705,"friends_count":360,"listed_count":110,"created_at":"Sat Feb 14 02:46:00 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":957,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20827150\/1447890103","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.4457966,-122.1575745]},"coordinates":{"type":"Point","coordinates":[-122.1575745,37.4457966]},"place":{"id":"3ad0f706b3fa62a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3ad0f706b3fa62a8.json","place_type":"city","name":"Palo Alto","full_name":"Palo Alto, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.190523,37.362824],[-122.097537,37.362824],[-122.097537,37.465918],[-122.190523,37.465918]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"IT","indices":[0,3]},{"text":"Job","indices":[4,8]},{"text":"PALOALTO","indices":[12,21]},{"text":"Jobs","indices":[125,130]},{"text":"Hiring","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H5F85XsP2P","expanded_url":"http:\/\/bit.ly\/219bPDA","display_url":"bit.ly\/219bPDA","indices":[101,124]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Fri Dec 11 00:27:02 +0000 2015","id":675109501184434177,"id_str":"675109501184434177","text":"Can you recommend anyone for this #job? Software Developer - Drivers Python\/C# - https:\/\/t.co\/l2WK5x4CQD #BigData #noSQL #SantaClara, CA","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23363279,"id_str":"23363279","name":"San Jose Eng. Jobs","screen_name":"tmj_sjc_eng","location":"San Jose, CA","description":"Follow this account for geo-targeted Engineering job tweets in San Jose, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":518,"friends_count":245,"listed_count":66,"created_at":"Sun Mar 08 22:23:07 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":554,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315522826\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315522826\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667705749988966400\/ovIW1NGB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667705749988966400\/ovIW1NGB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23363279\/1448028432","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.3986039,-121.9643745]},"coordinates":{"type":"Point","coordinates":[-121.9643745,37.3986039]},"place":{"id":"4b58830723ec6371","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4b58830723ec6371.json","place_type":"city","name":"Santa Clara","full_name":"Santa Clara, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.005597,37.322943],[-121.930045,37.322943],[-121.930045,37.419037],[-122.005597,37.419037]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"job","indices":[34,38]},{"text":"BigData","indices":[105,113]},{"text":"noSQL","indices":[114,120]},{"text":"SantaClara","indices":[121,132]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/l2WK5x4CQD","expanded_url":"http:\/\/bit.ly\/1SR80NK","display_url":"bit.ly\/1SR80NK","indices":[81,104]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Fri Dec 11 00:25:18 +0000 2015","id":675109065039749120,"id_str":"675109065039749120","text":"Join the VMware team! See our latest #IT #job opening here: https:\/\/t.co\/qqr2N9pr2A #PALOALTO, CA #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20827150,"id_str":"20827150","name":"San Francisco IT Job","screen_name":"tmj_sfo_it","location":"San Francisco, CA","description":"Follow this account for geo-targeted Software Dev. - General\/IT job tweets in San Francisco, CA. Need help? Tweet us at @CareerArc!","url":"https:\/\/t.co\/DByWt45HZj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DByWt45HZj","expanded_url":"http:\/\/www.careerarc.com\/job-seeker","display_url":"careerarc.com\/job-seeker","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":705,"friends_count":360,"listed_count":110,"created_at":"Sat Feb 14 02:46:00 +0000 2009","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":957,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315565691\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667125554395516928\/6irWJWH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20827150\/1447890103","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[37.4457966,-122.1575745]},"coordinates":{"type":"Point","coordinates":[-122.1575745,37.4457966]},"place":{"id":"3ad0f706b3fa62a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3ad0f706b3fa62a8.json","place_type":"city","name":"Palo Alto","full_name":"Palo Alto, CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.190523,37.362824],[-122.097537,37.362824],[-122.097537,37.465918],[-122.190523,37.465918]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IT","indices":[37,40]},{"text":"job","indices":[41,45]},{"text":"PALOALTO","indices":[84,93]},{"text":"Hiring","indices":[98,105]},{"text":"CareerArc","indices":[106,116]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qqr2N9pr2A","expanded_url":"http:\/\/bit.ly\/1ioflHO","display_url":"bit.ly\/1ioflHO","indices":[60,83]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}],"search_metadata":{"completed_in":0.042,"max_id":676518074279788544,"max_id_str":"676518074279788544","next_results":"?max_id=675109065039749119&q=python&geocode=37.781157%2C-122.398720%2C100mi&include_entities=1","query":"python","refresh_url":"?since_id=676518074279788544&q=python&geocode=37.781157%2C-122.398720%2C100mi&include_entities=1","count":15,"since_id":0,"since_id_str":"0"}} \ No newline at end of file diff --git a/testdata/get_sent_direct_messages.json b/testdata/get_sent_direct_messages.json new file mode 100644 index 00000000..73609f85 --- /dev/null +++ b/testdata/get_sent_direct_messages.json @@ -0,0 +1 @@ +[{"id":678629283007303683,"id_str":"678629283007303683","text":"I am good bot!! I made you a GIF: https:\/\/t.co\/UEF8Q0prT1 !","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"recipient_id":372018022,"recipient_id_str":"372018022","recipient_screen_name":"__jcbl__","created_at":"Sun Dec 20 17:33:24 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UEF8Q0prT1","expanded_url":"https:\/\/mlkshk.com\/p\/16YZH","display_url":"mlkshk.com\/p\/16YZH","indices":[34,57]}]}},{"id":678604717082189827,"id_str":"678604717082189827","text":"I am good bot!! I made you a GIF: https:\/\/t.co\/xqI9lUXBGf !","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"recipient_id":372018022,"recipient_id_str":"372018022","recipient_screen_name":"__jcbl__","created_at":"Sun Dec 20 15:55:47 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xqI9lUXBGf","expanded_url":"https:\/\/mlkshk.com\/p\/16YYD","display_url":"mlkshk.com\/p\/16YYD","indices":[34,57]}]}},{"id":678604324533084163,"id_str":"678604324533084163","text":"I am good bot!! I made you a GIF: https:\/\/t.co\/RECY9xZDBA\u007b'name': '5e89f157c772459.gif', 'share_key': '16YYC'\u007d !","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"recipient_id":372018022,"recipient_id_str":"372018022","recipient_screen_name":"__jcbl__","created_at":"Sun Dec 20 15:54:13 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RECY9xZDBA","expanded_url":"https:\/\/mlkshk.com\/p\/","display_url":"mlkshk.com\/p\/","indices":[34,57]}]}},{"id":678601041219354627,"id_str":"678601041219354627","text":"I don't see a shared tweet there!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"recipient_id":372018022,"recipient_id_str":"372018022","recipient_screen_name":"__jcbl__","created_at":"Sun Dec 20 15:41:10 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678600965042397187,"id_str":"678600965042397187","text":"it's cool","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"recipient_id":372018022,"recipient_id_str":"372018022","recipient_screen_name":"__jcbl__","created_at":"Sun Dec 20 15:40:52 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582529125838851,"id_str":"678582529125838851","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:37 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582526349283331,"id_str":"678582526349283331","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:36 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582524163940355,"id_str":"678582524163940355","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:35 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582521446166531,"id_str":"678582521446166531","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:35 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582519223025667,"id_str":"678582519223025667","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:34 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582516106706947,"id_str":"678582516106706947","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:33 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582513426558979,"id_str":"678582513426558979","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:33 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582510511525896,"id_str":"678582510511525896","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:32 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582507726635011,"id_str":"678582507726635011","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582505231007750,"id_str":"678582505231007750","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:31 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582502756376579,"id_str":"678582502756376579","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:30 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582500457861123,"id_str":"678582500457861123","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:30 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582498310377475,"id_str":"678582498310377475","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:29 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582496188104707,"id_str":"678582496188104707","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:29 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}},{"id":678582494032240644,"id_str":"678582494032240644","text":"Something went wrong! I'm a bad bot! Sad face!!!!","sender":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"sender_id":4012966701,"sender_id_str":"4012966701","sender_screen_name":"notinourselves","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 14:27:28 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]}}] \ No newline at end of file diff --git a/testdata/get_status.json b/testdata/get_status.json new file mode 100644 index 00000000..8bc78ae0 --- /dev/null +++ b/testdata/get_status.json @@ -0,0 +1 @@ +{"created_at":"Sun Mar 26 19:17:08 +0000 2006","id":397,"id_str":"397","text":"getting waxed!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12,"id_str":"12","name":"Jack","screen_name":"jack","location":"California, USA","description":"#withMalala!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3278945,"friends_count":1726,"listed_count":25294,"created_at":"Tue Mar 21 20:50:14 +0000 2006","favourites_count":9126,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":18013,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/668328458519384064\/FSAIjKRl_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":167,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"} \ No newline at end of file diff --git a/testdata/get_status_extra_params.json b/testdata/get_status_extra_params.json new file mode 100644 index 00000000..fef86bb5 --- /dev/null +++ b/testdata/get_status_extra_params.json @@ -0,0 +1 @@ +{"created_at": "Sun Mar 26 19:17:08 +0000 2006","in_reply_to_user_id_str": null,"contributors": null,"source": "Twitter Web Client","truncated": false,"text": "getting waxed!","favorited": false,"in_reply_to_screen_name": null,"coordinates": null,"id": 397,"place": null,"retweet_count": 152,"in_reply_to_status_id_str": null,"retweeted": false,"in_reply_to_status_id": null,"user": {"id": 12,"id_str": "12"},"lang": "en","id_str": "397","in_reply_to_user_id": null,"favorite_count": 168,"geo": null,"is_quote_status": false} \ No newline at end of file diff --git a/testdata/get_status_oembed.json b/testdata/get_status_oembed.json new file mode 100644 index 00000000..6d7135e0 --- /dev/null +++ b/testdata/get_status_oembed.json @@ -0,0 +1 @@ +{"cache_age":"3153600000","url":"https:\/\/twitter.com\/jack\/statuses\/397","height":null,"provider_url":"https:\/\/twitter.com","provider_name":"Twitter","author_name":"Jack","version":"1.0","author_url":"https:\/\/twitter.com\/jack","type":"rich","html":"\u003Cblockquote class=\"twitter-tweet\"\u003E\u003Cp lang=\"en\" dir=\"ltr\"\u003Egetting waxed!\u003C\/p\u003E— Jack (@jack) \u003Ca href=\"https:\/\/twitter.com\/jack\/status\/397\"\u003EMarch 26, 2006\u003C\/a\u003E\u003C\/blockquote\u003E\n\u003Cscript async src=\"\/\/platform.twitter.com\/widgets.js\" charset=\"utf-8\"\u003E\u003C\/script\u003E","width":550} \ No newline at end of file diff --git a/testdata/get_trends_current.json b/testdata/get_trends_current.json new file mode 100644 index 00000000..6fe17657 --- /dev/null +++ b/testdata/get_trends_current.json @@ -0,0 +1 @@ +[{"trends":[{"name":"#Gala14GH16","url":"http:\/\/twitter.com\/search?q=%23Gala14GH16","promoted_content":null,"query":"%23Gala14GH16","tweet_volume":152046},{"name":"#XF9","url":"http:\/\/twitter.com\/search?q=%23XF9","promoted_content":null,"query":"%23XF9","tweet_volume":353588},{"name":"#GF14","url":"http:\/\/twitter.com\/search?q=%23GF14","promoted_content":null,"query":"%23GF14","tweet_volume":97315},{"name":"#bbcqt","url":"http:\/\/twitter.com\/search?q=%23bbcqt","promoted_content":null,"query":"%23bbcqt","tweet_volume":13123},{"name":"#KillEmWithKindnessSelena","url":"http:\/\/twitter.com\/search?q=%23KillEmWithKindnessSelena","promoted_content":null,"query":"%23KillEmWithKindnessSelena","tweet_volume":100305},{"name":"Tolga","url":"http:\/\/twitter.com\/search?q=Tolga","promoted_content":null,"query":"Tolga","tweet_volume":131085},{"name":"Sporting","url":"http:\/\/twitter.com\/search?q=Sporting","promoted_content":null,"query":"Sporting","tweet_volume":67748},{"name":"Susana Barreiros","url":"http:\/\/twitter.com\/search?q=%22Susana+Barreiros%22","promoted_content":null,"query":"%22Susana+Barreiros%22","tweet_volume":21590},{"name":"El Chapo","url":"http:\/\/twitter.com\/search?q=%22El+Chapo%22","promoted_content":null,"query":"%22El+Chapo%22","tweet_volume":20620},{"name":"QUEREMOS VER COMBATE","url":"http:\/\/twitter.com\/search?q=%22QUEREMOS+VER+COMBATE%22","promoted_content":null,"query":"%22QUEREMOS+VER+COMBATE%22","tweet_volume":15840},{"name":"Nissan 91","url":"http:\/\/twitter.com\/search?q=%22Nissan+91%22","promoted_content":null,"query":"%22Nissan+91%22","tweet_volume":null},{"name":"BRIAN NO NOS PEGUES","url":"http:\/\/twitter.com\/search?q=%22BRIAN+NO+NOS+PEGUES%22","promoted_content":null,"query":"%22BRIAN+NO+NOS+PEGUES%22","tweet_volume":11701},{"name":"Quaresma","url":"http:\/\/twitter.com\/search?q=Quaresma","promoted_content":null,"query":"Quaresma","tweet_volume":16785},{"name":"#\u0627\u0644\u0647\u0644\u0627\u0644_\u0627\u0644\u0627\u0647\u0644\u064A","url":"http:\/\/twitter.com\/search?q=%23%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84_%D8%A7%D9%84%D8%A7%D9%87%D9%84%D9%8A","promoted_content":null,"query":"%23%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84_%D8%A7%D9%84%D8%A7%D9%87%D9%84%D9%8A","tweet_volume":378616},{"name":"#BBCMusicAwards","url":"http:\/\/twitter.com\/search?q=%23BBCMusicAwards","promoted_content":null,"query":"%23BBCMusicAwards","tweet_volume":365523},{"name":"#firstdates","url":"http:\/\/twitter.com\/search?q=%23firstdates","promoted_content":null,"query":"%23firstdates","tweet_volume":null},{"name":"#\u0644\u062A\u062D\u0628\u0643_\u0628\u0646\u062A_\u0644\u0627\u0632\u0645","url":"http:\/\/twitter.com\/search?q=%23%D9%84%D8%AA%D8%AD%D8%A8%D9%83_%D8%A8%D9%86%D8%AA_%D9%84%D8%A7%D8%B2%D9%85","promoted_content":null,"query":"%23%D9%84%D8%AA%D8%AD%D8%A8%D9%83_%D8%A8%D9%86%D8%AA_%D9%84%D8%A7%D8%B2%D9%85","tweet_volume":13465},{"name":"#NBAVote","url":"http:\/\/twitter.com\/search?q=%23NBAVote","promoted_content":null,"query":"%23NBAVote","tweet_volume":89126},{"name":"#AguilaRoja103","url":"http:\/\/twitter.com\/search?q=%23AguilaRoja103","promoted_content":null,"query":"%23AguilaRoja103","tweet_volume":null},{"name":"#DelVeranoOdio","url":"http:\/\/twitter.com\/search?q=%23DelVeranoOdio","promoted_content":null,"query":"%23DelVeranoOdio","tweet_volume":30051},{"name":"#CarlosResponde","url":"http:\/\/twitter.com\/search?q=%23CarlosResponde","promoted_content":null,"query":"%23CarlosResponde","tweet_volume":null},{"name":"#VemProMundoDaLua","url":"http:\/\/twitter.com\/search?q=%23VemProMundoDaLua","promoted_content":null,"query":"%23VemProMundoDaLua","tweet_volume":null},{"name":"#BoomChaTOMORROW","url":"http:\/\/twitter.com\/search?q=%23BoomChaTOMORROW","promoted_content":null,"query":"%23BoomChaTOMORROW","tweet_volume":10118},{"name":"#\u0632\u062F_\u0631\u0635\u064A\u062F\u064327","url":"http:\/\/twitter.com\/search?q=%23%D8%B2%D8%AF_%D8%B1%D8%B5%D9%8A%D8%AF%D9%8327","promoted_content":null,"query":"%23%D8%B2%D8%AF_%D8%B1%D8%B5%D9%8A%D8%AF%D9%8327","tweet_volume":114444},{"name":"#\u0642\u0628\u064A\u0644\u0647_\u0627\u0644\u062A\u0631\u0646\u062F\u0627\u0648\u0628\u0647_\u0628\u062A\u0648\u0632\u0639_\u0641\u0648\u0644\u0648\u0631\u0632","url":"http:\/\/twitter.com\/search?q=%23%D9%82%D8%A8%D9%8A%D9%84%D9%87_%D8%A7%D9%84%D8%AA%D8%B1%D9%86%D8%AF%D8%A7%D9%88%D8%A8%D9%87_%D8%A8%D8%AA%D9%88%D8%B2%D8%B9_%D9%81%D9%88%D9%84%D9%88%D8%B1%D8%B2","promoted_content":null,"query":"%23%D9%82%D8%A8%D9%8A%D9%84%D9%87_%D8%A7%D9%84%D8%AA%D8%B1%D9%86%D8%AF%D8%A7%D9%88%D8%A8%D9%87_%D8%A8%D8%AA%D9%88%D8%B2%D8%B9_%D9%81%D9%88%D9%84%D9%88%D8%B1%D8%B2","tweet_volume":null},{"name":"#Velvet14","url":"http:\/\/twitter.com\/search?q=%23Velvet14","promoted_content":null,"query":"%23Velvet14","tweet_volume":null},{"name":"#\u062A\u062C\u0631\u0627_\u0648\u0642\u0648\u0644_\u0645\u064A\u0646_\u0645\u062E\u0631\u0641\u0646\u0643","url":"http:\/\/twitter.com\/search?q=%23%D8%AA%D8%AC%D8%B1%D8%A7_%D9%88%D9%82%D9%88%D9%84_%D9%85%D9%8A%D9%86_%D9%85%D8%AE%D8%B1%D9%81%D9%86%D9%83","promoted_content":null,"query":"%23%D8%AA%D8%AC%D8%B1%D8%A7_%D9%88%D9%82%D9%88%D9%84_%D9%85%D9%8A%D9%86_%D9%85%D8%AE%D8%B1%D9%81%D9%86%D9%83","tweet_volume":null},{"name":"#LouisYouAreOurGroundWire","url":"http:\/\/twitter.com\/search?q=%23LouisYouAreOurGroundWire","promoted_content":null,"query":"%23LouisYouAreOurGroundWire","tweet_volume":11162},{"name":"#\u015EuAnEn\u00C7ok\u0130stedi\u011Fim","url":"http:\/\/twitter.com\/search?q=%23%C5%9EuAnEn%C3%87ok%C4%B0stedi%C4%9Fim","promoted_content":null,"query":"%23%C5%9EuAnEn%C3%87ok%C4%B0stedi%C4%9Fim","tweet_volume":null},{"name":"#TBTNOMTVHITS","url":"http:\/\/twitter.com\/search?q=%23TBTNOMTVHITS","promoted_content":null,"query":"%23TBTNOMTVHITS","tweet_volume":12466},{"name":"#piazzapulita","url":"http:\/\/twitter.com\/search?q=%23piazzapulita","promoted_content":null,"query":"%23piazzapulita","tweet_volume":null},{"name":"#DavidGuettaEH","url":"http:\/\/twitter.com\/search?q=%23DavidGuettaEH","promoted_content":null,"query":"%23DavidGuettaEH","tweet_volume":null},{"name":"#FrasesQueArden","url":"http:\/\/twitter.com\/search?q=%23FrasesQueArden","promoted_content":null,"query":"%23FrasesQueArden","tweet_volume":11964},{"name":"#\u0627\u0644\u0627\u0633\u0644\u0627\u0645_\u064A\u062F\u0639\u0648\u0627_\u0627\u0644\u064A","url":"http:\/\/twitter.com\/search?q=%23%D8%A7%D9%84%D8%A7%D8%B3%D9%84%D8%A7%D9%85_%D9%8A%D8%AF%D8%B9%D9%88%D8%A7_%D8%A7%D9%84%D9%8A","promoted_content":null,"query":"%23%D8%A7%D9%84%D8%A7%D8%B3%D9%84%D8%A7%D9%85_%D9%8A%D8%AF%D8%B9%D9%88%D8%A7_%D8%A7%D9%84%D9%8A","tweet_volume":null},{"name":"#ALDUBMaiDenMoment","url":"http:\/\/twitter.com\/search?q=%23ALDUBMaiDenMoment","promoted_content":null,"query":"%23ALDUBMaiDenMoment","tweet_volume":458572},{"name":"#NoNatalQueroGanhar","url":"http:\/\/twitter.com\/search?q=%23NoNatalQueroGanhar","promoted_content":null,"query":"%23NoNatalQueroGanhar","tweet_volume":25431},{"name":"#\u0645\u0639\u0644\u0645\u064A\u0646_\u0627\u0644\u062E\u0645\u064A\u0633_\u0639\u0627\u0644\u0631\u0627\u062F\u064A\u0648_9090","url":"http:\/\/twitter.com\/search?q=%23%D9%85%D8%B9%D9%84%D9%85%D9%8A%D9%86_%D8%A7%D9%84%D8%AE%D9%85%D9%8A%D8%B3_%D8%B9%D8%A7%D9%84%D8%B1%D8%A7%D8%AF%D9%8A%D9%88_9090","promoted_content":null,"query":"%23%D9%85%D8%B9%D9%84%D9%85%D9%8A%D9%86_%D8%A7%D9%84%D8%AE%D9%85%D9%8A%D8%B3_%D8%B9%D8%A7%D9%84%D8%B1%D8%A7%D8%AF%D9%8A%D9%88_9090","tweet_volume":null},{"name":"#\u064A\u0639\u062C\u0628\u0646\u064A_\u0641\u064A\u0643","url":"http:\/\/twitter.com\/search?q=%23%D9%8A%D8%B9%D8%AC%D8%A8%D9%86%D9%8A_%D9%81%D9%8A%D9%83","promoted_content":null,"query":"%23%D9%8A%D8%B9%D8%AC%D8%A8%D9%86%D9%8A_%D9%81%D9%8A%D9%83","tweet_volume":null},{"name":"#PartyChilensisPaWear","url":"http:\/\/twitter.com\/search?q=%23PartyChilensisPaWear","promoted_content":null,"query":"%23PartyChilensisPaWear","tweet_volume":null},{"name":"#TilTemir","url":"http:\/\/twitter.com\/search?q=%23TilTemir","promoted_content":null,"query":"%23TilTemir","tweet_volume":null},{"name":"#\u015EuankiRuhHalim","url":"http:\/\/twitter.com\/search?q=%23%C5%9EuankiRuhHalim","promoted_content":null,"query":"%23%C5%9EuankiRuhHalim","tweet_volume":14613},{"name":"#mas8aldia","url":"http:\/\/twitter.com\/search?q=%23mas8aldia","promoted_content":null,"query":"%23mas8aldia","tweet_volume":10338},{"name":"#COYS","url":"http:\/\/twitter.com\/search?q=%23COYS","promoted_content":null,"query":"%23COYS","tweet_volume":19210},{"name":"#EuropaLeague","url":"http:\/\/twitter.com\/search?q=%23EuropaLeague","promoted_content":null,"query":"%23EuropaLeague","tweet_volume":19601},{"name":"#SomethingSweet8days","url":"http:\/\/twitter.com\/search?q=%23SomethingSweet8days","promoted_content":null,"query":"%23SomethingSweet8days","tweet_volume":31639},{"name":"#AskTokioHotel","url":"http:\/\/twitter.com\/search?q=%23AskTokioHotel","promoted_content":null,"query":"%23AskTokioHotel","tweet_volume":59945},{"name":"#PiensaTuVoto","url":"http:\/\/twitter.com\/search?q=%23PiensaTuVoto","promoted_content":null,"query":"%23PiensaTuVoto","tweet_volume":null},{"name":"#SLSWorldwide","url":"http:\/\/twitter.com\/search?q=%23SLSWorldwide","promoted_content":null,"query":"%23SLSWorldwide","tweet_volume":null},{"name":"#LasMerasTernuritas","url":"http:\/\/twitter.com\/search?q=%23LasMerasTernuritas","promoted_content":null,"query":"%23LasMerasTernuritas","tweet_volume":null},{"name":"#CuandoLosPumasJuegan","url":"http:\/\/twitter.com\/search?q=%23CuandoLosPumasJuegan","promoted_content":null,"query":"%23CuandoLosPumasJuegan","tweet_volume":null}],"as_of":"2015-12-10T23:35:25Z","created_at":"2015-12-10T23:25:05Z","locations":[{"name":"Worldwide","woeid":1}]}] \ No newline at end of file diff --git a/testdata/get_trends_woeid.json b/testdata/get_trends_woeid.json new file mode 100644 index 00000000..fa805070 --- /dev/null +++ b/testdata/get_trends_woeid.json @@ -0,0 +1 @@ +[{"trends":[{"name":"#ChangeAConsonantSpoilAMovie","url":"http:\\/\\/twitter.com\\/search?q=%23ChangeAConsonantSpoilAMovie","promoted_content":null,"query":"%23ChangeAConsonantSpoilAMovie","tweet_volume":null},{"name":"Aaliyah","url":"http:\\/\\/twitter.com\\/search?q=Aaliyah","promoted_content":null,"query":"Aaliyah","tweet_volume":104403},{"name":"#blackcomicbookfestnyc","url":"http:\\/\\/twitter.com\\/search?q=%23blackcomicbookfestnyc","promoted_content":null,"query":"%23blackcomicbookfestnyc","tweet_volume":null},{"name":"#DoYourJob","url":"http:\\/\\/twitter.com\\/search?q=%23DoYourJob","promoted_content":null,"query":"%23DoYourJob","tweet_volume":64382},{"name":"#TheySayItsImpossibleBut","url":"http:\\/\\/twitter.com\\/search?q=%23TheySayItsImpossibleBut","promoted_content":null,"query":"%23TheySayItsImpossibleBut","tweet_volume":null},{"name":"#JasonRezaian","url":"http:\\/\\/twitter.com\\/search?q=%23JasonRezaian","promoted_content":null,"query":"%23JasonRezaian","tweet_volume":null},{"name":"Matt Barnes","url":"http:\\/\\/twitter.com\\/search?q=%22Matt+Barnes%22","promoted_content":null,"query":"%22Matt+Barnes%22","tweet_volume":null},{"name":"JT Miller","url":"http:\\/\\/twitter.com\\/search?q=%22JT+Miller%22","promoted_content":null,"query":"%22JT+Miller%22","tweet_volume":null},{"name":"Ted Marchibroda","url":"http:\\/\\/twitter.com\\/search?q=%22Ted+Marchibroda%22","promoted_content":null,"query":"%22Ted+Marchibroda%22","tweet_volume":null},{"name":"Celine Dion","url":"http:\\/\\/twitter.com\\/search?q=%22Celine+Dion%22","promoted_content":null,"query":"%22Celine+Dion%22","tweet_volume":60820},{"name":"Chelsea","url":"http:\\/\\/twitter.com\\/search?q=Chelsea","promoted_content":null,"query":"Chelsea","tweet_volume":312197},{"name":"Meeks","url":"http:\\/\\/twitter.com\\/search?q=Meeks","promoted_content":null,"query":"Meeks","tweet_volume":null},{"name":"John Landgraf","url":"http:\\/\\/twitter.com\\/search?q=%22John+Landgraf%22","promoted_content":null,"query":"%22John+Landgraf%22","tweet_volume":null},{"name":"Frank Jackson","url":"http:\\/\\/twitter.com\\/search?q=%22Frank+Jackson%22","promoted_content":null,"query":"%22Frank+Jackson%22","tweet_volume":null},{"name":"Everton","url":"http:\\/\\/twitter.com\\/search?q=Everton","promoted_content":null,"query":"Everton","tweet_volume":189872},{"name":"Villa","url":"http:\\/\\/twitter.com\\/search?q=Villa","promoted_content":null,"query":"Villa","tweet_volume":98183},{"name":"Brice Johnson","url":"http:\\/\\/twitter.com\\/search?q=%22Brice+Johnson%22","promoted_content":null,"query":"%22Brice+Johnson%22","tweet_volume":null},{"name":"Louis C.K.","url":"http:\\/\\/twitter.com\\/search?q=%22Louis+C.K.%22","promoted_content":null,"query":"%22Louis+C.K.%22","tweet_volume":null},{"name":"Punisher","url":"http:\\/\\/twitter.com\\/search?q=Punisher","promoted_content":null,"query":"Punisher","tweet_volume":null},{"name":"Sade","url":"http:\\/\\/twitter.com\\/search?q=Sade","promoted_content":null,"query":"Sade","tweet_volume":16084},{"name":"Julian Edelman","url":"http:\\/\\/twitter.com\\/search?q=%22Julian+Edelman%22","promoted_content":null,"query":"%22Julian+Edelman%22","tweet_volume":null},{"name":"Chris Davis","url":"http:\\/\\/twitter.com\\/search?q=%22Chris+Davis%22","promoted_content":null,"query":"%22Chris+Davis%22","tweet_volume":14870},{"name":"Hoyas","url":"http:\\/\\/twitter.com\\/search?q=Hoyas","promoted_content":null,"query":"Hoyas","tweet_volume":null},{"name":"Josh Hart","url":"http:\\/\\/twitter.com\\/search?q=%22Josh+Hart%22","promoted_content":null,"query":"%22Josh+Hart%22","tweet_volume":null},{"name":"Wes Clark","url":"http:\\/\\/twitter.com\\/search?q=%22Wes+Clark%22","promoted_content":null,"query":"%22Wes+Clark%22","tweet_volume":null},{"name":"Grayson Allen","url":"http:\\/\\/twitter.com\\/search?q=%22Grayson+Allen%22","promoted_content":null,"query":"%22Grayson+Allen%22","tweet_volume":null},{"name":"Ian Kennedy","url":"http:\\/\\/twitter.com\\/search?q=%22Ian+Kennedy%22","promoted_content":null,"query":"%22Ian+Kennedy%22","tweet_volume":null},{"name":"Scott Brown","url":"http:\\/\\/twitter.com\\/search?q=%22Scott+Brown%22","promoted_content":null,"query":"%22Scott+Brown%22","tweet_volume":null},{"name":"Anze Kopitar","url":"http:\\/\\/twitter.com\\/search?q=%22Anze+Kopitar%22","promoted_content":null,"query":"%22Anze+Kopitar%22","tweet_volume":null},{"name":"#YoullKnowImHappyWhen","url":"http:\\/\\/twitter.com\\/search?q=%23YoullKnowImHappyWhen","promoted_content":null,"query":"%23YoullKnowImHappyWhen","tweet_volume":null},{"name":"#NALCS","url":"http:\\/\\/twitter.com\\/search?q=%23NALCS","promoted_content":null,"query":"%23NALCS","tweet_volume":null},{"name":"#KungFuPanda3","url":"http:\\/\\/twitter.com\\/search?q=%23KungFuPanda3","promoted_content":null,"query":"%23KungFuPanda3","tweet_volume":null},{"name":"#17stanselcaday","url":"http:\\/\\/twitter.com\\/search?q=%2317stanselcaday","promoted_content":null,"query":"%2317stanselcaday","tweet_volume":null},{"name":"#IranDeal","url":"http:\\/\\/twitter.com\\/search?q=%23IranDeal","promoted_content":null,"query":"%23IranDeal","tweet_volume":10919},{"name":"#caturday","url":"http:\\/\\/twitter.com\\/search?q=%23caturday","promoted_content":null,"query":"%23caturday","tweet_volume":null},{"name":"#IfIDidntKnowBetterIdThink","url":"http:\\/\\/twitter.com\\/search?q=%23IfIDidntKnowBetterIdThink","promoted_content":null,"query":"%23IfIDidntKnowBetterIdThink","tweet_volume":null},{"name":"#BLOXYAwards","url":"http:\\/\\/twitter.com\\/search?q=%23BLOXYAwards","promoted_content":null,"query":"%23BLOXYAwards","tweet_volume":null},{"name":"#NXTChicago","url":"http:\\/\\/twitter.com\\/search?q=%23NXTChicago","promoted_content":null,"query":"%23NXTChicago","tweet_volume":null},{"name":"#JadaSaid","url":"http:\\/\\/twitter.com\\/search?q=%23JadaSaid","promoted_content":null,"query":"%23JadaSaid","tweet_volume":null},{"name":"#GoHeels","url":"http:\\/\\/twitter.com\\/search?q=%23GoHeels","promoted_content":null,"query":"%23GoHeels","tweet_volume":null},{"name":"#CHEvEFC","url":"http:\\/\\/twitter.com\\/search?q=%23CHEvEFC","promoted_content":null,"query":"%23CHEvEFC","tweet_volume":null},{"name":"#Pel\\u00EDculasQueHeVistoMilVeces","url":"http:\\/\\/twitter.com\\/search?q=%23Pel%C3%ADculasQueHeVistoMilVeces","promoted_content":null,"query":"%23Pel%C3%ADculasQueHeVistoMilVeces","tweet_volume":44929},{"name":"#ReclaimMLK","url":"http:\\/\\/twitter.com\\/search?q=%23ReclaimMLK","promoted_content":null,"query":"%23ReclaimMLK","tweet_volume":10317},{"name":"#NYRvsPHI","url":"http:\\/\\/twitter.com\\/search?q=%23NYRvsPHI","promoted_content":null,"query":"%23NYRvsPHI","tweet_volume":null},{"name":"#HHClassic","url":"http:\\/\\/twitter.com\\/search?q=%23HHClassic","promoted_content":null,"query":"%23HHClassic","tweet_volume":null},{"name":"#AVLLEI","url":"http:\\/\\/twitter.com\\/search?q=%23AVLLEI","promoted_content":null,"query":"%23AVLLEI","tweet_volume":null},{"name":"#ScopeForGood","url":"http:\\/\\/twitter.com\\/search?q=%23ScopeForGood","promoted_content":null,"query":"%23ScopeForGood","tweet_volume":null},{"name":"#BeRedSeeRed","url":"http:\\/\\/twitter.com\\/search?q=%23BeRedSeeRed","promoted_content":null,"query":"%23BeRedSeeRed","tweet_volume":15572},{"name":"#WhatAboutBob","url":"http:\\/\\/twitter.com\\/search?q=%23WhatAboutBob","promoted_content":null,"query":"%23WhatAboutBob","tweet_volume":null},{"name":"#MakeHerMadIn3Words","url":"http:\\/\\/twitter.com\\/search?q=%23MakeHerMadIn3Words","promoted_content":null,"query":"%23MakeHerMadIn3Words","tweet_volume":null}],"as_of":"2016-01-16T20:28:23Z","created_at":"2016-01-16T20:21:25Z","locations":[{"name":"New York","woeid":2459115}]}] \ No newline at end of file diff --git a/testdata/get_trends_woeid_exclude.json b/testdata/get_trends_woeid_exclude.json new file mode 100644 index 00000000..1749b807 --- /dev/null +++ b/testdata/get_trends_woeid_exclude.json @@ -0,0 +1 @@ +[{"trends":[{"name":"Duette","url":"http:\/\/twitter.com\/search?q=Duette","promoted_content":null,"query":"Duette","tweet_volume":null},{"name":"Adam Driver","url":"http:\/\/twitter.com\/search?q=%22Adam+Driver%22","promoted_content":null,"query":"%22Adam+Driver%22","tweet_volume":19117},{"name":"Siesta Key","url":"http:\/\/twitter.com\/search?q=%22Siesta+Key%22","promoted_content":null,"query":"%22Siesta+Key%22","tweet_volume":null},{"name":"Rayo","url":"http:\/\/twitter.com\/search?q=Rayo","promoted_content":null,"query":"Rayo","tweet_volume":16112},{"name":"Tornado Warning","url":"http:\/\/twitter.com\/search?q=%22Tornado+Warning%22","promoted_content":null,"query":"%22Tornado+Warning%22","tweet_volume":null},{"name":"Corbyn","url":"http:\/\/twitter.com\/search?q=Corbyn","promoted_content":null,"query":"Corbyn","tweet_volume":28709},{"name":"Dhoni","url":"http:\/\/twitter.com\/search?q=Dhoni","promoted_content":null,"query":"Dhoni","tweet_volume":24235},{"name":"So Future","url":"http:\/\/twitter.com\/search?q=%22So+Future%22","promoted_content":null,"query":"%22So+Future%22","tweet_volume":null},{"name":"Meek","url":"http:\/\/twitter.com\/search?q=Meek","promoted_content":null,"query":"Meek","tweet_volume":252346},{"name":"Chiefs","url":"http:\/\/twitter.com\/search?q=Chiefs","promoted_content":null,"query":"Chiefs","tweet_volume":274640},{"name":"Brady","url":"http:\/\/twitter.com\/search?q=Brady","promoted_content":null,"query":"Brady","tweet_volume":264675},{"name":"Greg","url":"http:\/\/twitter.com\/search?q=Greg","promoted_content":null,"query":"Greg","tweet_volume":153857},{"name":"Aaliyah","url":"http:\/\/twitter.com\/search?q=Aaliyah","promoted_content":null,"query":"Aaliyah","tweet_volume":162055},{"name":"Jeff Janis","url":"http:\/\/twitter.com\/search?q=%22Jeff+Janis%22","promoted_content":null,"query":"%22Jeff+Janis%22","tweet_volume":33813},{"name":"Eddie Lacy","url":"http:\/\/twitter.com\/search?q=%22Eddie+Lacy%22","promoted_content":null,"query":"%22Eddie+Lacy%22","tweet_volume":25529}],"as_of":"2016-01-17T12:34:48Z","created_at":"2016-01-17T12:30:46Z","locations":[{"name":"New York","woeid":2459115}]}] \ No newline at end of file diff --git a/testdata/get_user.json b/testdata/get_user.json new file mode 100644 index 00000000..a3a45065 --- /dev/null +++ b/testdata/get_user.json @@ -0,0 +1 @@ +{"id":718443,"id_str":"718443","name":"Kesuke Miyagi","screen_name":"kesuke","location":"Okinawa, Japan","profile_location":null,"description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":1,"listed_count":6,"created_at":"Sun Jan 28 06:31:55 +0000 2007","favourites_count":0,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":10,"lang":"en","status":{"created_at":"Mon Jul 07 13:10:40 +0000 2014","id":486135208928751616,"id_str":"486135208928751616","text":"Wax on.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/21525032\/kesuke_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/21525032\/kesuke_normal.png","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false} \ No newline at end of file diff --git a/testdata/get_user_retweets.json b/testdata/get_user_retweets.json new file mode 100644 index 00000000..8af41e63 --- /dev/null +++ b/testdata/get_user_retweets.json @@ -0,0 +1 @@ +[{"created_at":"Mon Nov 30 11:44:08 +0000 2015","id":671293633849655296,"id_str":"671293633849655296","text":"data #python","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"python","indices":[5,12]}],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"in"},{"created_at":"Mon Nov 30 11:38:55 +0000 2015","id":671292317123387396,"id_str":"671292317123387396","text":"#python is cool","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"python","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 30 11:38:08 +0000 2015","id":671292121203257344,"id_str":"671292121203257344","text":"test","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 30 11:36:57 +0000 2015","id":671291823994888192,"id_str":"671291823994888192","text":"s'up","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Mon Nov 30 11:17:49 +0000 2015","id":671287007889506304,"id_str":"671287007889506304","text":"heyyo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"tl"},{"created_at":"Mon Nov 30 11:17:11 +0000 2015","id":671286849579720704,"id_str":"671286849579720704","text":"hi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Nov 13 12:02:32 +0000 2015","id":665137669886902272,"id_str":"665137669886902272","text":"hi https:\/\/t.co\/R7CjFKbgeg","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":665136967898767360,"id_str":"665136967898767360","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","url":"https:\/\/t.co\/R7CjFKbgeg","display_url":"pic.twitter.com\/R7CjFKbgeg","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/665137669886902272\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":665136967898767360,"id_str":"665136967898767360","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/665136967898767360\/pr\/img\/3IxtGSuyPd30vXP_.jpg","url":"https:\/\/t.co\/R7CjFKbgeg","display_url":"pic.twitter.com\/R7CjFKbgeg","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/665137669886902272\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":6500,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/pl\/W6BlyXzk7g_8-tKJ.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/1280x720\/htYRJBesfbSGeoT8.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/640x360\/BUBv0buG27I8DgM9.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/640x360\/BUBv0buG27I8DgM9.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/vid\/320x180\/HMdmPavKQMvFzWnq.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/665136967898767360\/pr\/pl\/W6BlyXzk7g_8-tKJ.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Mon Nov 09 23:54:36 +0000 2015","id":663867314799050752,"id_str":"663867314799050752","text":"Coordinates: (-23.724299586845486, 116.83818451838428) https:\/\/t.co\/c1rNh9GkhL","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663867262881783808,"id_str":"663867262881783808","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","url":"https:\/\/t.co\/c1rNh9GkhL","display_url":"pic.twitter.com\/c1rNh9GkhL","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663867314799050752\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663867262881783808,"id_str":"663867262881783808","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663867262881783808\/pr\/img\/cpH693DoHi9TS7Yl.jpg","url":"https:\/\/t.co\/c1rNh9GkhL","display_url":"pic.twitter.com\/c1rNh9GkhL","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663867314799050752\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":14834,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/pl\/MwL-LTqapKjJwZyl.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/480x480\/Q9mGbytAe11Sz4hx.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/240x240\/Ij3RqA9YktoMaI42.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/720x720\/B6dD-annh_65-vR4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/pl\/MwL-LTqapKjJwZyl.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663867262881783808\/pr\/vid\/480x480\/Q9mGbytAe11Sz4hx.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon Nov 09 23:30:32 +0000 2015","id":663861256521170946,"id_str":"663861256521170946","text":"Coordinates: (19.25115865817856, 128.6433834429668) https:\/\/t.co\/kwT95TSYa7","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663861220156375040,"id_str":"663861220156375040","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","url":"https:\/\/t.co\/kwT95TSYa7","display_url":"pic.twitter.com\/kwT95TSYa7","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663861256521170946\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663861220156375040,"id_str":"663861220156375040","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663861220156375040\/pr\/img\/htgxfwWUj2O1qju5.jpg","url":"https:\/\/t.co\/kwT95TSYa7","display_url":"pic.twitter.com\/kwT95TSYa7","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663861256521170946\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":4000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/480x480\/_F_tb5b1a1XCIVbh.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/720x720\/BdhHKM_zV5ZHUJ9M.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/pl\/pd8Cs5cZr781b7Bq.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/pl\/pd8Cs5cZr781b7Bq.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/240x240\/vADh8GWFlLpK0hMz.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663861220156375040\/pr\/vid\/480x480\/_F_tb5b1a1XCIVbh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon Nov 09 02:47:27 +0000 2015","id":663548426735460352,"id_str":"663548426735460352","text":"Coordinates: (19.407056335751044, 176.55123837932575) https:\/\/t.co\/n6uwVWtpB2","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663548347588866048,"id_str":"663548347588866048","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","url":"https:\/\/t.co\/n6uwVWtpB2","display_url":"pic.twitter.com\/n6uwVWtpB2","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663548426735460352\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663548347588866048,"id_str":"663548347588866048","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663548347588866048\/pr\/img\/aI8vu8e0Z5XL62kV.jpg","url":"https:\/\/t.co\/n6uwVWtpB2","display_url":"pic.twitter.com\/n6uwVWtpB2","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663548426735460352\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/720x720\/sy1-a19_nQQx5MxI.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/pl\/U5YtH1Yw_LAvEcq9.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/240x240\/-C6pTt27AIyCvP5w.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/480x480\/2ptLOyIdZXmiIwiy.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/vid\/480x480\/2ptLOyIdZXmiIwiy.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663548347588866048\/pr\/pl\/U5YtH1Yw_LAvEcq9.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon Nov 09 00:26:44 +0000 2015","id":663513012867891200,"id_str":"663513012867891200","text":"Coordinates: (29.810739350132245, -177.8551840127668) https:\/\/t.co\/zzRxdWqQ8c","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663512957876211712,"id_str":"663512957876211712","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","url":"https:\/\/t.co\/zzRxdWqQ8c","display_url":"pic.twitter.com\/zzRxdWqQ8c","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663513012867891200\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663512957876211712,"id_str":"663512957876211712","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663512957876211712\/pr\/img\/L4qKbCproc-EfVKO.jpg","url":"https:\/\/t.co\/zzRxdWqQ8c","display_url":"pic.twitter.com\/zzRxdWqQ8c","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663513012867891200\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/pl\/g7ur9WnJnBBDp5GN.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/720x720\/H5ErESRE9hlVzmkR.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/pl\/g7ur9WnJnBBDp5GN.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/480x480\/6Msz2517N8Fs2HvU.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/480x480\/6Msz2517N8Fs2HvU.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663512957876211712\/pr\/vid\/240x240\/pNWK9cYjOXp-esyT.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 22:36:48 +0000 2015","id":663485346819284993,"id_str":"663485346819284993","text":"Coordinates: (-1.7578742086942767, 161.1118539038322) https:\/\/t.co\/srWIkeUrBh","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663485293404778496,"id_str":"663485293404778496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","url":"https:\/\/t.co\/srWIkeUrBh","display_url":"pic.twitter.com\/srWIkeUrBh","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663485346819284993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663485293404778496,"id_str":"663485293404778496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663485293404778496\/pr\/img\/x7pGOnKbaB2nClhl.jpg","url":"https:\/\/t.co\/srWIkeUrBh","display_url":"pic.twitter.com\/srWIkeUrBh","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663485346819284993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/pl\/WmDKek_oYQFTQzT4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/480x480\/ZS7AEBCTOBJveiGA.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/pl\/WmDKek_oYQFTQzT4.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/480x480\/ZS7AEBCTOBJveiGA.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/720x720\/mJ-KHWl1NIJ-iLYP.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663485293404778496\/pr\/vid\/240x240\/ayxBl5T23_0uPvUK.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 22:33:51 +0000 2015","id":663484604012072960,"id_str":"663484604012072960","text":"Coordinates: (-11.346469919845939, 100.09071030418862) https:\/\/t.co\/FjAA3EmCE6","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663484536852865024,"id_str":"663484536852865024","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","url":"https:\/\/t.co\/FjAA3EmCE6","display_url":"pic.twitter.com\/FjAA3EmCE6","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663484604012072960\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663484536852865024,"id_str":"663484536852865024","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663484536852865024\/pr\/img\/94cTXr2b28PyShp2.jpg","url":"https:\/\/t.co\/FjAA3EmCE6","display_url":"pic.twitter.com\/FjAA3EmCE6","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663484604012072960\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":18000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/240x240\/t1LjT6giBFdOrO79.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/720x720\/lsxjJAD2qNJhvhwD.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/pl\/mZAS9FnRiw4uqnyI.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/480x480\/ufo7fIbCKd9Qy21G.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/vid\/480x480\/ufo7fIbCKd9Qy21G.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663484536852865024\/pr\/pl\/mZAS9FnRiw4uqnyI.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:51:32 +0000 2015","id":663473957811658753,"id_str":"663473957811658753","text":"Coordinates: ('Space', 'Space') https:\/\/t.co\/wTPSb1I8Mf","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663473920029253632,"id_str":"663473920029253632","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","url":"https:\/\/t.co\/wTPSb1I8Mf","display_url":"pic.twitter.com\/wTPSb1I8Mf","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663473957811658753\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663473920029253632,"id_str":"663473920029253632","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663473920029253632\/pr\/img\/oJg5rX3DckOaHRb6.jpg","url":"https:\/\/t.co\/wTPSb1I8Mf","display_url":"pic.twitter.com\/wTPSb1I8Mf","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663473957811658753\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":18000,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/720x720\/I7TOIh7tG81O_40F.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/pl\/tp-XmLOlsF7Q4S0A.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/pl\/tp-XmLOlsF7Q4S0A.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/240x240\/A8XcFhN8DxUiBwgT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/480x480\/wbsKT-C24l7K2WF3.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663473920029253632\/pr\/vid\/480x480\/wbsKT-C24l7K2WF3.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:27:36 +0000 2015","id":663467933465636864,"id_str":"663467933465636864","text":"Coordinates: (11.598328597748077, 140.60806471667786) https:\/\/t.co\/S7iow4EjA1","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663467838410240000,"id_str":"663467838410240000","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","url":"https:\/\/t.co\/S7iow4EjA1","display_url":"pic.twitter.com\/S7iow4EjA1","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467933465636864\/video\/1","type":"photo","sizes":{"large":{"w":800,"h":1080,"resize":"fit"},"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":810,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663467838410240000,"id_str":"663467838410240000","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467838410240000\/pr\/img\/c5Hga2e-R4Km3s5y.jpg","url":"https:\/\/t.co\/S7iow4EjA1","display_url":"pic.twitter.com\/S7iow4EjA1","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467933465636864\/video\/1","type":"video","sizes":{"large":{"w":800,"h":1080,"resize":"fit"},"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":810,"resize":"fit"}},"video_info":{"aspect_ratio":[20,27],"duration_millis":18000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/vid\/474x640\/__uhgfmLp26gGozH.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/pl\/xBxTyBNoiBJN5tj3.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/vid\/474x640\/__uhgfmLp26gGozH.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/vid\/236x320\/_MLQR7ksgVXgNLET.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467838410240000\/pr\/pl\/xBxTyBNoiBJN5tj3.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:24:42 +0000 2015","id":663467205107978240,"id_str":"663467205107978240","text":"Coordinates: (38.98530195707448, 162.48615119621948) https:\/\/t.co\/lJVVCgAUtR","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663467124766015488,"id_str":"663467124766015488","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","url":"https:\/\/t.co\/lJVVCgAUtR","display_url":"pic.twitter.com\/lJVVCgAUtR","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467205107978240\/video\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663467124766015488,"id_str":"663467124766015488","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663467124766015488\/pr\/img\/x9pUzgeV81gaMKtu.jpg","url":"https:\/\/t.co\/lJVVCgAUtR","display_url":"pic.twitter.com\/lJVVCgAUtR","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663467205107978240\/video\/1","type":"video","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"video_info":{"aspect_ratio":[2,3],"duration_millis":18000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/pl\/QKstPdpJe2RC19xM.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/pl\/QKstPdpJe2RC19xM.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/vid\/426x640\/ZmIrqJRKrmXD5Z9U.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/vid\/212x320\/Ow4um7QDLgGo5p5v.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663467124766015488\/pr\/vid\/426x640\/ZmIrqJRKrmXD5Z9U.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:19:07 +0000 2015","id":663465797415796736,"id_str":"663465797415796736","text":"Coordinates: (-12.256503709352122, 126.37930506155699) https:\/\/t.co\/pQqNVyKMe4","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663465725172957184,"id_str":"663465725172957184","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","url":"https:\/\/t.co\/pQqNVyKMe4","display_url":"pic.twitter.com\/pQqNVyKMe4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663465797415796736\/video\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663465725172957184,"id_str":"663465725172957184","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663465725172957184\/pr\/img\/utJ8Dk1F_-AqY9PF.jpg","url":"https:\/\/t.co\/pQqNVyKMe4","display_url":"pic.twitter.com\/pQqNVyKMe4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663465797415796736\/video\/1","type":"video","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":720,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"video_info":{"aspect_ratio":[2,3],"duration_millis":18000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/vid\/212x320\/LB9WdjYpa4zLfXk-.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/vid\/426x640\/5I1szURr6FU9uGVr.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/vid\/426x640\/5I1szURr6FU9uGVr.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/pl\/Qsn2Z9NSZnROhSL4.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663465725172957184\/pr\/pl\/Qsn2Z9NSZnROhSL4.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:14:47 +0000 2015","id":663464707622326273,"id_str":"663464707622326273","text":"Coordinates: (-33.20140213209449, 142.39819784440365) https:\/\/t.co\/wCc0lCrIMd","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663464653847003136,"id_str":"663464653847003136","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","url":"https:\/\/t.co\/wCc0lCrIMd","display_url":"pic.twitter.com\/wCc0lCrIMd","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663464707622326273\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663464653847003136,"id_str":"663464653847003136","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663464653847003136\/pr\/img\/dgXSCVBuG27Rj4ao.jpg","url":"https:\/\/t.co\/wCc0lCrIMd","display_url":"pic.twitter.com\/wCc0lCrIMd","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663464707622326273\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12858,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/480x480\/jbm-wM21QRBUf8n0.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/720x720\/EFYmhU36rdmP_1q5.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/240x240\/NpwHL4fG481_ndvZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/vid\/480x480\/jbm-wM21QRBUf8n0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/pl\/5KyoCP9rdyoCL3-s.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663464653847003136\/pr\/pl\/5KyoCP9rdyoCL3-s.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:10:47 +0000 2015","id":663463701652049924,"id_str":"663463701652049924","text":"Coordinates: (-18.228483611313685, 144.53536540678192) https:\/\/t.co\/zUoswR08L9","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663463609981386753,"id_str":"663463609981386753","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","url":"https:\/\/t.co\/zUoswR08L9","display_url":"pic.twitter.com\/zUoswR08L9","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663463701652049924\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1280,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663463609981386753,"id_str":"663463609981386753","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463609981386753\/pr\/img\/1L3R-btOGThBGxSg.jpg","url":"https:\/\/t.co\/zUoswR08L9","display_url":"pic.twitter.com\/zUoswR08L9","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663463701652049924\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1280,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[1,2],"duration_millis":12858,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/pl\/yESvqQoBEKSeZ7sT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/320x640\/8RcykyWqCfQBiDXh.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/pl\/yESvqQoBEKSeZ7sT.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/640x1280\/Za7AN23tnOWHir3_.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/320x640\/8RcykyWqCfQBiDXh.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463609981386753\/pr\/vid\/160x320\/DsPS-7bztlmhGkug.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun Nov 08 21:04:18 +0000 2015","id":663462067740008448,"id_str":"663462067740008448","text":"Coordinates: (13.831249509215814, 165.68692369634107) https:\/\/t.co\/Q5rFY3g9U4","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":663461967005249536,"id_str":"663461967005249536","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","url":"https:\/\/t.co\/Q5rFY3g9U4","display_url":"pic.twitter.com\/Q5rFY3g9U4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663462067740008448\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461967005249536,"id_str":"663461967005249536","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663461967005249536\/pr\/img\/81rmmVM4xIiyzZiS.jpg","url":"https:\/\/t.co\/Q5rFY3g9U4","display_url":"pic.twitter.com\/Q5rFY3g9U4","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/663462067740008448\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":12858,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/320x180\/7_nWwoNxibi-DKXY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/640x360\/ezHgaGyQ_Oh8QX5m.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/pl\/-7u4g6LnVApwvTVO.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/pl\/-7u4g6LnVApwvTVO.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/640x360\/ezHgaGyQ_Oh8QX5m.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663461967005249536\/pr\/vid\/1280x720\/qMS6aSw8yvrAZ3z5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_user_suggestion.json b/testdata/get_user_suggestion.json new file mode 100644 index 00000000..4a92ffc4 --- /dev/null +++ b/testdata/get_user_suggestion.json @@ -0,0 +1 @@ +{"users":[{"id":6480682,"id_str":"6480682","name":"Aziz Ansari","screen_name":"azizansari","location":"New York, NY","description":"Pasta lover. I don't tweet much. My new Netflix series Master of None is now streaming on Netflix. I wrote a book called Modern Romance.","url":"https:\/\/t.co\/oCZN8Vs1rD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oCZN8Vs1rD","expanded_url":"http:\/\/azizansari.com","display_url":"azizansari.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8351194,"friends_count":0,"listed_count":31276,"created_at":"Thu May 31 19:06:49 +0000 2007","favourites_count":425,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":7602,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"053285","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/5581304\/azizlittle2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/5581304\/azizlittle2.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/421377161\/azizlittletwitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/421377161\/azizlittletwitter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6480682\/1398398057","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":15485441,"id_str":"15485441","name":"jimmy fallon","screen_name":"jimmyfallon","location":"New York, New York","description":"astrophysicist","url":"http:\/\/t.co\/fgp5RYqr3T","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/fgp5RYqr3T","expanded_url":"http:\/\/www.tonightshow.com","display_url":"tonightshow.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":32418279,"friends_count":6694,"listed_count":66461,"created_at":"Fri Jul 18 19:46:50 +0000 2008","favourites_count":1,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":8695,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463739661316132865\/u2JaxqBn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463739661316132865\/u2JaxqBn.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194467116\/new-resize-square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194467116\/new-resize-square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15485441\/1398975755","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":15693493,"id_str":"15693493","name":"Funny Or Die","screen_name":"funnyordie","location":"Hollywood, Ca","description":"Will Ferrell is our boss. We love to make you laugh.","url":"http:\/\/t.co\/eDxLc8bQ6Q","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/eDxLc8bQ6Q","expanded_url":"http:\/\/funnyordie.com","display_url":"funnyordie.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":11570852,"friends_count":5240,"listed_count":32063,"created_at":"Fri Aug 01 19:42:20 +0000 2008","favourites_count":11994,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":17514,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000061612987\/a79113d36aba76473d0ed38dd1027305.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000061612987\/a79113d36aba76473d0ed38dd1027305.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667570426197884928\/4i1r5DyC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667570426197884928\/4i1r5DyC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15693493\/1421793531","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":18948541,"id_str":"18948541","name":"Seth MacFarlane","screen_name":"SethMacFarlane","location":"Los Angeles","description":"The Official Twitter Page of Seth MacFarlane - new album No One Ever Tells You available now on iTunes https:\/\/t.co\/gLePVn5Mho","url":"https:\/\/t.co\/o4miqWAHnW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/o4miqWAHnW","expanded_url":"http:\/\/www.facebook.com\/pages\/Seth-MacFarlane\/14105972607?ref=ts","display_url":"facebook.com\/pages\/Seth-Mac\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/gLePVn5Mho","expanded_url":"http:\/\/itun.es\/us\/Vx9p-","display_url":"itun.es\/us\/Vx9p-","indices":[103,126]}]}},"protected":false,"followers_count":8491387,"friends_count":344,"listed_count":32240,"created_at":"Tue Jan 13 19:04:37 +0000 2009","favourites_count":0,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":5223,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477598819715395585\/g0lGqC_J_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477598819715395585\/g0lGqC_J_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":23151437,"id_str":"23151437","name":"Kevin Hart","screen_name":"KevinHart4real","location":"Philly\/LA","description":"My name is Kevin Hart and I WORK HARD!!! That pretty much sums me up!!! Everybody Wants To Be Famous But Nobody Wants To Do The Work","url":"https:\/\/t.co\/KYOIOf228I","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KYOIOf228I","expanded_url":"http:\/\/kevinhart.holiday\/","display_url":"kevinhart.holiday","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":23522895,"friends_count":525,"listed_count":22144,"created_at":"Sat Mar 07 02:02:31 +0000 2009","favourites_count":22,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":27213,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568041122765606912\/APfVoUzX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568041122765606912\/APfVoUzX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23151437\/1424266489","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":25521487,"id_str":"25521487","name":"daniel tosh","screen_name":"danieltosh","location":"beach","description":"not a doctor","url":"http:\/\/t.co\/qu6CkTVbHi","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/qu6CkTVbHi","expanded_url":"http:\/\/www.danieltosh.com\/","display_url":"danieltosh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":20023485,"friends_count":121,"listed_count":39818,"created_at":"Fri Mar 20 15:32:52 +0000 2009","favourites_count":1,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":11933,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/12054191\/toshbck.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/12054191\/toshbck.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/218283715\/Daniel-Tosh---Shot_2-12976_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/218283715\/Daniel-Tosh---Shot_2-12976_normal.gif","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":30364057,"id_str":"30364057","name":"Sarah Silverman","screen_name":"SarahKSilverman","location":"state of Palestine ","description":"We're all just molecules, Cutie.","url":"http:\/\/t.co\/dbeLhAks6Y","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/dbeLhAks6Y","expanded_url":"http:\/\/youtube.com\/sarahsilverman","display_url":"youtube.com\/sarahsilverman","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7376956,"friends_count":597,"listed_count":54951,"created_at":"Sat Apr 11 01:28:47 +0000 2009","favourites_count":1645,"utc_offset":12600,"time_zone":"Tehran","geo_enabled":false,"verified":true,"statuses_count":4506,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"0F1724","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/82352675\/get-attachment.aspx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/82352675\/get-attachment.aspx.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/533405266658615296\/ULwCXwFs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/533405266658615296\/ULwCXwFs_normal.jpeg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":44039298,"id_str":"44039298","name":"Seth Meyers","screen_name":"sethmeyers","location":"New York","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3448562,"friends_count":538,"listed_count":20345,"created_at":"Tue Jun 02 02:35:39 +0000 2009","favourites_count":46,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":true,"statuses_count":5994,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/267298914\/n700068668_5523_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/267298914\/n700068668_5523_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":336116660,"id_str":"336116660","name":"Jerry Seinfeld","screen_name":"JerrySeinfeld","location":"New York, NY","description":"","url":"http:\/\/t.co\/opXP2OOPQd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/opXP2OOPQd","expanded_url":"http:\/\/jerryseinfeld.com","display_url":"jerryseinfeld.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3373270,"friends_count":92,"listed_count":16701,"created_at":"Fri Jul 15 19:26:31 +0000 2011","favourites_count":3,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":1366,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1605004193\/JS_halloween_7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1605004193\/JS_halloween_7_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":21506437,"id_str":"21506437","name":"TextsFromLastNight","screen_name":"TFLN","location":"anywhere with cell service","description":"remember that text that you shouldn't have sent last night? we do... #tfln to submit || shop: @gearfromlast || snapchat: TFLNTV","url":"https:\/\/t.co\/SYlKUaPzAL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SYlKUaPzAL","expanded_url":"http:\/\/textsfromlastnight.com","display_url":"textsfromlastnight.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3686271,"friends_count":1639,"listed_count":16949,"created_at":"Sat Feb 21 18:40:41 +0000 2009","favourites_count":200,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":11372,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"292929","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/68264572\/twitterbackground_BPB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/68264572\/twitterbackground_BPB.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656586239169052672\/0lpmuyxT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656586239169052672\/0lpmuyxT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21506437\/1414329406","profile_link_color":"A00912","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0A0A0A","profile_text_color":"4F4F4F","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":16900536,"id_str":"16900536","name":"Retta","screen_name":"unfoRETTAble","location":"Los Angeles","description":"Einstein:The true sign of intelligence is not knowledge but imagination. I'ma need some peyote. #iLive4Hashtags https:\/\/t.co\/eduxohR5I9","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/eduxohR5I9","expanded_url":"https:\/\/m.facebook.com\/unfoRETTAble?ref=bookmark","display_url":"m.facebook.com\/unfoRETTAble?r\u2026","indices":[112,135]}]}},"protected":false,"followers_count":515574,"friends_count":480,"listed_count":2314,"created_at":"Wed Oct 22 04:35:37 +0000 2008","favourites_count":169,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":33056,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/407758220\/IMG_0229.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/407758220\/IMG_0229.JPG","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650349197342801920\/BFOEYtep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650349197342801920\/BFOEYtep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16900536\/1439741674","profile_link_color":"1F98C7","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":148781366,"id_str":"148781366","name":"Brodie Smith","screen_name":"Brodiesmith21","location":"Instagram: BrodieSmith21","description":"I travel around the world throwing frisbees!!! Contact Me: bwsproductions@gmail.com Snapchat: BrodieSmith","url":"https:\/\/t.co\/Xb5ESis6ZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Xb5ESis6ZC","expanded_url":"http:\/\/youtube.com\/brodie","display_url":"youtube.com\/brodie","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":258882,"friends_count":920,"listed_count":272,"created_at":"Thu May 27 15:51:44 +0000 2010","favourites_count":147264,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":21427,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591588287044714496\/fFpjBVyE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591588287044714496\/fFpjBVyE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148781366\/1429880614","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":55117855,"id_str":"55117855","name":"Amy Schumer","screen_name":"amyschumer","location":"nyc","description":"On tour this Fall - tickets on-sale here: https:\/\/t.co\/G9Zebsdlqn","url":"http:\/\/t.co\/k2xxMK5URy","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/k2xxMK5URy","expanded_url":"http:\/\/www.amyschumer.com","display_url":"amyschumer.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/G9Zebsdlqn","expanded_url":"http:\/\/bit.ly\/amyontour","display_url":"bit.ly\/amyontour","indices":[42,65]}]}},"protected":false,"followers_count":2787604,"friends_count":1910,"listed_count":10305,"created_at":"Thu Jul 09 02:45:03 +0000 2009","favourites_count":8424,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":8166,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000137379011\/uzc2bOIE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000137379011\/uzc2bOIE.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659040352507039744\/1tw770Qo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659040352507039744\/1tw770Qo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55117855\/1446198171","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":20978103,"id_str":"20978103","name":"Dane Cook","screen_name":"DaneCook","location":"Direct2Dane@DaneCook.com","description":"When I tweet, I tweet to kill.","url":"https:\/\/t.co\/FArdAjRLmn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FArdAjRLmn","expanded_url":"http:\/\/www.instagram.com\/DaneCook","display_url":"instagram.com\/DaneCook","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3259739,"friends_count":926,"listed_count":20425,"created_at":"Mon Feb 16 11:28:12 +0000 2009","favourites_count":953,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":12109,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513099851936956416\/DvvCSzPQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513099851936956416\/DvvCSzPQ.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661290559823216641\/yeyXZzYO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661290559823216641\/yeyXZzYO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20978103\/1446499007","profile_link_color":"F50E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"size":14,"slug":"funny","name":"Funny"} \ No newline at end of file diff --git a/testdata/get_user_suggestion_categories.json b/testdata/get_user_suggestion_categories.json new file mode 100644 index 00000000..a982660b --- /dev/null +++ b/testdata/get_user_suggestion_categories.json @@ -0,0 +1 @@ +[{"size":26,"slug":"sports","name":"Sports"},{"size":11,"slug":"television","name":"Television"},{"size":15,"slug":"music","name":"Music"},{"size":15,"slug":"entertainment","name":"Entertainment"},{"size":14,"slug":"funny","name":"Funny"},{"size":15,"slug":"news","name":"News"},{"size":15,"slug":"fashion","name":"Fashion"},{"size":15,"slug":"food-drink","name":"Food & Drink"},{"size":9,"slug":"family","name":"Family"},{"size":9,"slug":"business","name":"Business"},{"size":10,"slug":"books","name":"Books"},{"size":15,"slug":"government","name":"Government"},{"size":12,"slug":"leaders","name":"Leaders"},{"size":12,"slug":"influencers","name":"Influencers"},{"size":15,"slug":"gaming","name":"Gaming"}] \ No newline at end of file diff --git a/testdata/get_user_timeline.json b/testdata/get_user_timeline.json new file mode 100644 index 00000000..8c58e062 --- /dev/null +++ b/testdata/get_user_timeline.json @@ -0,0 +1 @@ +[{"created_at":"Thu Dec 10 20:53:00 +0000 2015","id":675055636267298821,"id_str":"675055636267298821","text":"If any of you are considering borrowing $2M to buy a home in SF, reach out to me and learn about Seattle. Seriously. https:\/\/t.co\/U8wsc8ztY6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U8wsc8ztY6","expanded_url":"http:\/\/www.cnbc.com\/2015\/12\/10\/2-million-mortgage-no-down-payment-no-joke.html","display_url":"cnbc.com\/2015\/12\/10\/2-m\u2026","indices":[117,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu Dec 10 19:07:36 +0000 2015","id":675029113594228737,"id_str":"675029113594228737","text":"Based on current trajectories, both Facebook and Amazon will be worth more than Exxon Mobil very shortly. I'm okay with that.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu Dec 10 15:34:02 +0000 2015","id":674975367862480896,"id_str":"674975367862480896","text":"The new Windows 10 login screen backdrops are spectacular. Everyone who worked on it deserves a promotion. Very very well done.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed Dec 09 21:14:59 +0000 2015","id":674698779950379008,"id_str":"674698779950379008","text":"Live Writer was a true thought leader at the time, great to see the open source reboot! https:\/\/t.co\/8Pu5rcXUM6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8Pu5rcXUM6","expanded_url":"http:\/\/www.dotnetfoundation.org\/blog\/open-live-writer","display_url":"dotnetfoundation.org\/blog\/open-live\u2026","indices":[88,111]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed Dec 09 02:44:54 +0000 2015","id":674419418957406208,"id_str":"674419418957406208","text":"@hemos Come visit Seattle!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674419054686310401,"in_reply_to_status_id_str":"674419054686310401","in_reply_to_user_id":17991558,"in_reply_to_user_id_str":"17991558","in_reply_to_screen_name":"hemos","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hemos","name":"jeffrey bates","id":17991558,"id_str":"17991558","indices":[0,6]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed Dec 09 01:15:39 +0000 2015","id":674396959923298304,"id_str":"674396959923298304","text":"Test. https:\/\/t.co\/28Q2tKaAL3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":674396948045017089,"id_str":"674396948045017089","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CVvwc33UsAE2IHK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVvwc33UsAE2IHK.jpg","url":"https:\/\/t.co\/28Q2tKaAL3","display_url":"pic.twitter.com\/28Q2tKaAL3","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/674396959923298304\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":766,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":254,"resize":"fit"},"medium":{"w":600,"h":448,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":674396948045017089,"id_str":"674396948045017089","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CVvwc33UsAE2IHK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVvwc33UsAE2IHK.jpg","url":"https:\/\/t.co\/28Q2tKaAL3","display_url":"pic.twitter.com\/28Q2tKaAL3","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/674396959923298304\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":766,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":254,"resize":"fit"},"medium":{"w":600,"h":448,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat Dec 05 19:51:26 +0000 2015","id":673228202894974977,"id_str":"673228202894974977","text":".@MicrosoftHelps You mean, is my Windows update still stuck installing, two days later? No, we're good. It finished 20 minutes ago, thanks!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":673227457936404480,"in_reply_to_status_id_str":"673227457936404480","in_reply_to_user_id":75691804,"in_reply_to_user_id_str":"75691804","in_reply_to_screen_name":"MicrosoftHelps","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MicrosoftHelps","name":"Microsoft Support","id":75691804,"id_str":"75691804","indices":[1,16]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri Dec 04 00:55:05 +0000 2015","id":672579845507846145,"id_str":"672579845507846145","text":"This has been slowly pulsing on my screen for the past five minutes. Umm, thank you, Windows 10? https:\/\/t.co\/cCG0U0NDdQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":672579837379260417,"id_str":"672579837379260417","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CVV7zHIUsAEoL_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVV7zHIUsAEoL_F.jpg","url":"https:\/\/t.co\/cCG0U0NDdQ","display_url":"pic.twitter.com\/cCG0U0NDdQ","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/672579845507846145\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":766,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":448,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":672579837379260417,"id_str":"672579837379260417","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CVV7zHIUsAEoL_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVV7zHIUsAEoL_F.jpg","url":"https:\/\/t.co\/cCG0U0NDdQ","display_url":"pic.twitter.com\/cCG0U0NDdQ","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/672579845507846145\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":766,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":448,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed Dec 02 04:23:16 +0000 2015","id":671907461465432064,"id_str":"671907461465432064","text":"@esoskin That was like the third or fourth redesign by that point, if you can believe it. https:\/\/t.co\/aEjyb2jw7a only goes so far back...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":671906741811023873,"in_reply_to_status_id_str":"671906741811023873","in_reply_to_user_id":26775725,"in_reply_to_user_id_str":"26775725","in_reply_to_screen_name":"esoskin","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"esoskin","name":"Brickyard99","id":26775725,"id_str":"26775725","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/aEjyb2jw7a","expanded_url":"http:\/\/Archive.org","display_url":"Archive.org","indices":[90,113]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed Dec 02 04:19:43 +0000 2015","id":671906565062979585,"id_str":"671906565062979585","text":"This won't mean much to you, but it means everything to me. Here's https:\/\/t.co\/p0vjvMpCAh circa 1996 in Netscape 3: https:\/\/t.co\/HgFLknS2Tm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/p0vjvMpCAh","expanded_url":"http:\/\/wso.williams.edu","display_url":"wso.williams.edu","indices":[67,90]}],"media":[{"id":671906564559650816,"id_str":"671906564559650816","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVMXdebUwAAJnf1.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVMXdebUwAAJnf1.png","url":"https:\/\/t.co\/HgFLknS2Tm","display_url":"pic.twitter.com\/HgFLknS2Tm","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/671906565062979585\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":767,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":671906564559650816,"id_str":"671906564559650816","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CVMXdebUwAAJnf1.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVMXdebUwAAJnf1.png","url":"https:\/\/t.co\/HgFLknS2Tm","display_url":"pic.twitter.com\/HgFLknS2Tm","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/671906565062979585\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":767,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed Dec 02 03:29:20 +0000 2015","id":671893885698768896,"id_str":"671893885698768896","text":"@wooster My wife found the Yamazaki 18 at the Costco in Seattle. Last bottle they had, I guess.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":671868920727388160,"in_reply_to_status_id_str":"671868920727388160","in_reply_to_user_id":778001,"in_reply_to_user_id_str":"778001","in_reply_to_screen_name":"wooster","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wooster","name":"Andrew Wooster","id":778001,"id_str":"778001","indices":[0,8]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue Dec 01 18:17:49 +0000 2015","id":671755091368546304,"id_str":"671755091368546304","text":"When is Buzzfeed going to write \"11 other Presidential candidates who were batshit crazy\"? https:\/\/t.co\/9O8xRd6rtW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":671749140251090944,"quoted_status_id_str":"671749140251090944","quoted_status":{"created_at":"Tue Dec 01 17:54:10 +0000 2015","id":671749140251090944,"id_str":"671749140251090944","text":"Trump says video of Muslims cheering 9\/11 exists because other people have seen it https:\/\/t.co\/FqxHbpLUjy https:\/\/t.co\/WrKrsrBaTj","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":767,"id_str":"767","name":"Xmas Xeni","screen_name":"xeni","location":"where data flows","description":"@boingboing, @freedomofpress. google or subpoena the rest. survivor of breast cancer and other things. life is good now. \u2764\ufe0f","url":"https:\/\/t.co\/6aKaGkN1LB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6aKaGkN1LB","expanded_url":"http:\/\/xeni.net","display_url":"xeni.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":94229,"friends_count":3653,"listed_count":5108,"created_at":"Fri Jul 14 05:49:14 +0000 2006","favourites_count":53511,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":80249,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462391105808388097\/MMAmbCWF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462391105808388097\/MMAmbCWF.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653436218831605760\/SPoupwFu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653436218831605760\/SPoupwFu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/767\/1447281445","profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDE3F5","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FqxHbpLUjy","expanded_url":"http:\/\/boingboing.net\/2015\/11\/30\/trump-says-clips-of-muslims-ch.html","display_url":"boingboing.net\/2015\/11\/30\/tru\u2026","indices":[83,106]}],"media":[{"id":671749140150362112,"id_str":"671749140150362112","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CVKISKzWIAAeMrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVKISKzWIAAeMrB.jpg","url":"https:\/\/t.co\/WrKrsrBaTj","display_url":"pic.twitter.com\/WrKrsrBaTj","expanded_url":"http:\/\/twitter.com\/xeni\/status\/671749140251090944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":238,"resize":"fit"},"large":{"w":600,"h":238,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":671749140150362112,"id_str":"671749140150362112","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CVKISKzWIAAeMrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CVKISKzWIAAeMrB.jpg","url":"https:\/\/t.co\/WrKrsrBaTj","display_url":"pic.twitter.com\/WrKrsrBaTj","expanded_url":"http:\/\/twitter.com\/xeni\/status\/671749140251090944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":238,"resize":"fit"},"large":{"w":600,"h":238,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9O8xRd6rtW","expanded_url":"https:\/\/twitter.com\/xeni\/status\/671749140251090944","display_url":"twitter.com\/xeni\/status\/67\u2026","indices":[91,114]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon Nov 30 23:01:47 +0000 2015","id":671464169535877120,"id_str":"671464169535877120","text":"I'll be so happy once Black Friday\/Cyber Monday are over and companies stop trying to sell me stuff I don't want or need for a whole year.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon Nov 30 02:24:40 +0000 2015","id":671152835321446400,"id_str":"671152835321446400","text":"Even wounded and on the road, these #Patriots are the best team of a generation. Maybe of any generation.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[{"text":"Patriots","indices":[36,45]}],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun Nov 29 23:30:16 +0000 2015","id":671108948334891008,"id_str":"671108948334891008","text":"@TimHaines I could get used to that. Enjoy the show!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":671107742216523776,"in_reply_to_status_id_str":"671107742216523776","in_reply_to_user_id":14341663,"in_reply_to_user_id_str":"14341663","in_reply_to_screen_name":"TimHaines","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TimHaines","name":"Tim Haines","id":14341663,"id_str":"14341663","indices":[0,10]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun Nov 29 23:21:49 +0000 2015","id":671106822963642368,"id_str":"671106822963642368","text":"@TimHaines Those leather seats look amazing. Where is that?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":671104912533553152,"in_reply_to_status_id_str":"671104912533553152","in_reply_to_user_id":14341663,"in_reply_to_user_id_str":"14341663","in_reply_to_screen_name":"TimHaines","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TimHaines","name":"Tim Haines","id":14341663,"id_str":"14341663","indices":[0,10]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat Nov 28 19:09:07 +0000 2015","id":670680840955785216,"id_str":"670680840955785216","text":"@ikai Finding that one was quick once I searched for 10 minutes to figure out that the other kid's name is Lester. : )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":670680159729483776,"in_reply_to_status_id_str":"670680159729483776","in_reply_to_user_id":14437022,"in_reply_to_user_id_str":"14437022","in_reply_to_screen_name":"ikai","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ikai","name":"Ikai Lan","id":14437022,"id_str":"14437022","indices":[0,5]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat Nov 28 19:05:06 +0000 2015","id":670679827960041472,"id_str":"670679827960041472","text":"Seriously though, the Kindle Fire Kids is pretty great. And Freetime Unlimited is awesome. Some usability flaws, but a promising start.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":670676153867198464,"in_reply_to_status_id_str":"670676153867198464","in_reply_to_user_id":673483,"in_reply_to_user_id_str":"673483","in_reply_to_screen_name":"dewitt","user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat Nov 28 18:50:30 +0000 2015","id":670676153867198464,"id_str":"670676153867198464","text":"Longtime Android user using a Kindle Fire for the first time. https:\/\/t.co\/nZjAFFjPcR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":670676143352102912,"id_str":"670676143352102912","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CU64ZiPUwAA8OiQ.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CU64ZiPUwAA8OiQ.png","url":"https:\/\/t.co\/nZjAFFjPcR","display_url":"pic.twitter.com\/nZjAFFjPcR","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/670676153867198464\/photo\/1","type":"photo","sizes":{"medium":{"w":450,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":450,"h":338,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":670676143352102912,"id_str":"670676143352102912","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CU64ZiPUwAA8OiQ.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CU64ZiPUwAA8OiQ.png","url":"https:\/\/t.co\/nZjAFFjPcR","display_url":"pic.twitter.com\/nZjAFFjPcR","expanded_url":"http:\/\/twitter.com\/dewitt\/status\/670676153867198464\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":450,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":450,"h":338,"resize":"fit"}},"video_info":{"aspect_ratio":[225,169],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CU64ZiPUwAA8OiQ.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat Nov 21 23:15:58 +0000 2015","id":668206245971562496,"id_str":"668206245971562496","text":"Half the games this week are matchups where both teams have losing records. I wouldn't have guessed that was even possible.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":673483,"id_str":"673483","name":"DeWitt Clinton","screen_name":"dewitt","location":"Seattle, WA","description":"Father, husband, Googler, Eph. Mostly.","url":"https:\/\/t.co\/WTNEEmn1rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WTNEEmn1rd","expanded_url":"https:\/\/google.com\/+dewittclinton","display_url":"google.com\/+dewittclinton","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6164,"friends_count":973,"listed_count":379,"created_at":"Sun Jan 21 01:07:00 +0000 2007","favourites_count":3246,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4167,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/56530341\/DSC_7112.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/194789456\/dewitt_on_roof_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/673483\/1387242406","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"}] \ No newline at end of file diff --git a/testdata/get_users_search.json b/testdata/get_users_search.json new file mode 100644 index 00000000..5027a408 --- /dev/null +++ b/testdata/get_users_search.json @@ -0,0 +1 @@ +[{"id":63873759,"id_str":"63873759","name":"Python - The PSF","screen_name":"ThePSF","location":"Everywhere Python is!","description":"The Python Software Foundation. For help with Python code, see comp.lang.python.","url":"http:\/\/t.co\/KdOzhmst4U","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/KdOzhmst4U","expanded_url":"http:\/\/www.python.org\/psf","display_url":"python.org\/psf","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":92394,"friends_count":120,"listed_count":2467,"created_at":"Sat Aug 08 01:26:03 +0000 2009","favourites_count":184,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":2640,"lang":"en","status":{"created_at":"Fri Nov 20 02:21:31 +0000 2015","id":667528166022492162,"id_str":"667528166022492162","text":"Meet the Coulson Tough Elementary Python Club https:\/\/t.co\/WeSLQkPw9X","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":15,"favorite_count":14,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WeSLQkPw9X","expanded_url":"http:\/\/goo.gl\/fb\/RQQkgo","display_url":"goo.gl\/fb\/RQQkgo","indices":[46,69]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2B9DD6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439154912719413248\/pUBY5pVj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439154912719413248\/pUBY5pVj_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"FFEE30","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":15804774,"id_str":"15804774","name":"Guido van Rossum","screen_name":"gvanrossum","location":"San Francisco Bay Area","description":"Python BDFL. Working at Dropbox. The 'van' has no capital letter!","url":"http:\/\/t.co\/jujQDNMiBP","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/jujQDNMiBP","expanded_url":"http:\/\/python.org\/~guido\/","display_url":"python.org\/~guido\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":71451,"friends_count":436,"listed_count":3093,"created_at":"Mon Aug 11 04:02:18 +0000 2008","favourites_count":433,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":1708,"lang":"en","status":{"created_at":"Tue Dec 08 23:16:31 +0000 2015","id":674366977691947008,"id_str":"674366977691947008","text":"@Steven__PA You need to contact support at https:\/\/t.co\/hWqIbiDTzA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674232112241864705,"in_reply_to_status_id_str":"674232112241864705","in_reply_to_user_id":1398424783,"in_reply_to_user_id_str":"1398424783","in_reply_to_screen_name":"Steven__PA","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Steven__PA","name":"Steven","id":1398424783,"id_str":"1398424783","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/hWqIbiDTzA","expanded_url":"https:\/\/www.dropbox.com\/support","display_url":"dropbox.com\/support","indices":[43,66]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424495004\/GuidoAvatar_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424495004\/GuidoAvatar_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15804774\/1400086274","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":254791849,"id_str":"254791849","name":"Scientific Python","screen_name":"SciPyTip","location":"Houston","description":"Tweets about SciPy (Scientific Python) and related topics from @JohnDCook.","url":"http:\/\/t.co\/I9xEdiX7c5","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/I9xEdiX7c5","expanded_url":"http:\/\/www.johndcook.com","display_url":"johndcook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":41228,"friends_count":17,"listed_count":1644,"created_at":"Sun Feb 20 01:07:23 +0000 2011","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3024,"lang":"en","status":{"created_at":"Wed Dec 09 16:25:44 +0000 2015","id":674625991336136704,"id_str":"674625991336136704","text":"By convention, the SciPy library is imported as sp and NumPy is imported as np.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":11,"favorite_count":18,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524314030811275265\/iCczq4f7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524314030811275265\/iCczq4f7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254791849\/1415532285","profile_link_color":"004899","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":6040792,"id_str":"6040792","name":"Python Coders","screen_name":"pythoncoders","location":"","description":"An aggregation of python coders from twitter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31021,"friends_count":983,"listed_count":955,"created_at":"Mon May 14 18:54:07 +0000 2007","favourites_count":1,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":221,"lang":"en","status":{"created_at":"Sat Nov 28 14:26:53 +0000 2015","id":670609812862984193,"id_str":"670609812862984193","text":"RT @PyTennessee: Only three days to get those submissions in! https:\/\/t.co\/IBFogCMTZn","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 28 13:50:55 +0000 2015","id":670600763236855809,"id_str":"670600763236855809","text":"Only three days to get those submissions in! https:\/\/t.co\/IBFogCMTZn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":21,"favorite_count":9,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IBFogCMTZn","expanded_url":"https:\/\/www.pytennessee.org\/speaking\/cfp\/","display_url":"pytennessee.org\/speaking\/cfp\/","indices":[45,68]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":21,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PyTennessee","name":"PyTN","id":1616492725,"id_str":"1616492725","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/IBFogCMTZn","expanded_url":"https:\/\/www.pytennessee.org\/speaking\/cfp\/","display_url":"pytennessee.org\/speaking\/cfp\/","indices":[62,85]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/16077472\/Python_Icon_by_kaelan_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/16077472\/Python_Icon_by_kaelan_normal.png","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":73946259,"id_str":"73946259","name":"Planet Python","screen_name":"planetpython","location":"","description":"Created by Marco Rodrigues @gothicx and managed by Tim Golden @tjguk.","url":"http:\/\/t.co\/xfZ3CeBbeY","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xfZ3CeBbeY","expanded_url":"http:\/\/planet.python.org","display_url":"planet.python.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":17402,"friends_count":0,"listed_count":765,"created_at":"Sun Sep 13 18:50:17 +0000 2009","favourites_count":0,"utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"verified":false,"statuses_count":11307,"lang":"en","status":{"created_at":"Thu Dec 10 18:55:25 +0000 2015","id":675026044517138432,"id_str":"675026044517138432","text":"PyCharm: PyCharm 5.0.2 update released along with new JetBrains branding https:\/\/t.co\/PLHFgH7Rgn","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":3,"favorite_count":4,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PLHFgH7Rgn","expanded_url":"http:\/\/bit.ly\/1Q452aU","display_url":"bit.ly\/1Q452aU","indices":[73,96]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/413225762\/python_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/413225762\/python_normal.png","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":373620985,"id_str":"373620985","name":"Python Weekly","screen_name":"PythonWeekly","location":"","description":"Python Weekly is a free weekly newsletter, which features curated news, articles, new releases, tools and libraries, events, jobs etc related to Python","url":"http:\/\/t.co\/D1OMRitAIv","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/D1OMRitAIv","expanded_url":"http:\/\/www.pythonweekly.com\/","display_url":"pythonweekly.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":14531,"friends_count":0,"listed_count":681,"created_at":"Wed Sep 14 22:49:27 +0000 2011","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4915,"lang":"en","status":{"created_at":"Thu Dec 10 16:35:37 +0000 2015","id":674990863655632896,"id_str":"674990863655632896","text":"Python Weekly - Issue 221 \nhttps:\/\/t.co\/h601X8b0pY #python #django #opencv #excel #gui #pydata #storm #testing #game #ipython #opencv","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"favorite_count":8,"entities":{"hashtags":[{"text":"python","indices":[51,58]},{"text":"django","indices":[59,66]},{"text":"opencv","indices":[67,74]},{"text":"excel","indices":[75,81]},{"text":"gui","indices":[82,86]},{"text":"pydata","indices":[87,94]},{"text":"storm","indices":[95,101]},{"text":"testing","indices":[102,110]},{"text":"game","indices":[111,116]},{"text":"ipython","indices":[117,125]},{"text":"opencv","indices":[126,133]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/h601X8b0pY","expanded_url":"http:\/\/buff.ly\/1RctmHt","display_url":"buff.ly\/1RctmHt","indices":[27,50]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1554238582\/python_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1554238582\/python_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":2201496073,"id_str":"2201496073","name":"Monty Python","screen_name":"montypython","location":"","description":"Official Monty Python updates","url":"http:\/\/t.co\/Kfaxc0unpL","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Kfaxc0unpL","expanded_url":"http:\/\/www.montypython.com","display_url":"montypython.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":66343,"friends_count":144,"listed_count":565,"created_at":"Mon Nov 18 15:33:08 +0000 2013","favourites_count":452,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":886,"lang":"en-gb","status":{"created_at":"Thu Dec 10 12:10:25 +0000 2015","id":674924124762988544,"id_str":"674924124762988544","text":"MONTY PYTHON'S ADVERT CALENDAR 2015 - DAY 10 - Pythonland https:\/\/t.co\/sjQ4u1dAhx #montypython #adventcalendar #advertcalendar","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":10,"favorite_count":18,"entities":{"hashtags":[{"text":"montypython","indices":[82,94]},{"text":"adventcalendar","indices":[95,110]},{"text":"advertcalendar","indices":[111,126]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sjQ4u1dAhx","expanded_url":"http:\/\/po.st\/Yrk21c","display_url":"po.st\/Yrk21c","indices":[58,81]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DCDFE1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000121067209\/b839df6819841a1bc2bea3dc82081a08.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000121067209\/b839df6819841a1bc2bea3dc82081a08.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531570356570443776\/5v2lh-PZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531570356570443776\/5v2lh-PZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2201496073\/1415582572","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":191225303,"id_str":"191225303","name":"Django","screen_name":"djangoproject","location":"Web","description":"A high-level Python Web framework that encourages rapid development and clean, pragmatic design. Tweets by Django Software Foundation and @jezdez","url":"https:\/\/t.co\/N4cpfoR9cx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/N4cpfoR9cx","expanded_url":"https:\/\/www.djangoproject.com\/","display_url":"djangoproject.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":40294,"friends_count":32,"listed_count":1264,"created_at":"Wed Sep 15 22:33:40 +0000 2010","favourites_count":3,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":241,"lang":"en","status":{"created_at":"Wed Dec 02 01:01:26 +0000 2015","id":671856666187558912,"id_str":"671856666187558912","text":"Django 1.9 released - After 10 and a half months of development, the Django team is happy to announce the relea... https:\/\/t.co\/1cyJJdlRwt","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":332,"favorite_count":178,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1cyJJdlRwt","expanded_url":"http:\/\/ow.ly\/38zbw2","display_url":"ow.ly\/38zbw2","indices":[115,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0C4B33","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544873453346500608\/4aGjtNQv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544873453346500608\/4aGjtNQv_normal.png","profile_link_color":"44B78B","profile_sidebar_border_color":"90BA9E","profile_sidebar_fill_color":"90BA9E","profile_text_color":"092E20","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":457886651,"id_str":"457886651","name":"Get Python","screen_name":"getpy","location":"","description":"Tweets for Python enthusiasts, curated by @_cz","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12690,"friends_count":159,"listed_count":554,"created_at":"Sat Jan 07 23:05:23 +0000 2012","favourites_count":3,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":2351,"lang":"en","status":{"created_at":"Sun Sep 13 01:07:03 +0000 2015","id":642867050491285505,"id_str":"642867050491285505","text":"\"Software You Can Use\" by @glyph: http:\/\/t.co\/5Iru2Kyze5","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"glyph","name":"\u24bc\u24c1\u24ce\u24c5\u24bd","id":9859562,"id_str":"9859562","indices":[26,32]}],"urls":[{"url":"http:\/\/t.co\/5Iru2Kyze5","expanded_url":"http:\/\/bit.ly\/1QwrLcy","display_url":"bit.ly\/1QwrLcy","indices":[35,57]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464959496238804992\/jNtDVyvZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464959496238804992\/jNtDVyvZ_normal.png","profile_link_color":"383838","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":24514487,"id_str":"24514487","name":"Python Package Index","screen_name":"pypi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6793,"friends_count":230,"listed_count":692,"created_at":"Sun Mar 15 12:07:44 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151748,"lang":"en","status":{"created_at":"Fri May 02 18:39:32 +0000 2014","id":462300373646979072,"id_str":"462300373646979072","text":"BinPy 0.3.1: Virtualizing Electronics http:\/\/t.co\/guy7o6aVEK","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/guy7o6aVEK","expanded_url":"http:\/\/bit.ly\/1lI8cA5","display_url":"bit.ly\/1lI8cA5","indices":[38,60]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/104712585\/pypi_twitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/104712585\/pypi_twitter_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":20958216,"id_str":"20958216","name":"David Beazley","screen_name":"dabeaz","location":"Chicago","description":"Author of the Python Essential Reference and Python Cookbook. I tweet deep thoughts about code, bikes, kids, and stuff. Especially stuff.","url":"http:\/\/t.co\/JI669In6iK","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/JI669In6iK","expanded_url":"http:\/\/www.dabeaz.com","display_url":"dabeaz.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":11688,"friends_count":517,"listed_count":712,"created_at":"Mon Feb 16 03:03:08 +0000 2009","favourites_count":1228,"utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":16753,"lang":"en","status":{"created_at":"Thu Dec 10 22:45:51 +0000 2015","id":675084036860190721,"id_str":"675084036860190721","text":"Ah. Late afternoon. Cloudy. Dark. Windy. Talking about cooperative multiple inheritance. Yes. Let it all sink in. Stay calm.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144585095\/Davetubes_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144585095\/Davetubes_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14159138,"id_str":"14159138","name":"raymondh","screen_name":"raymondh","location":"Santa Clara, CA","description":"Python core developer.\r\nFreelance programmer\/consultant\/trainer.\r\nHusband to Rachel.\r\nFather to Matthew.","url":"https:\/\/t.co\/r5ifYKcnD3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/r5ifYKcnD3","expanded_url":"https:\/\/rhettinger.wordpress.com","display_url":"rhettinger.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17901,"friends_count":243,"listed_count":829,"created_at":"Sun Mar 16 20:12:52 +0000 2008","favourites_count":37,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1801,"lang":"en","status":{"created_at":"Tue Dec 08 02:20:40 +0000 2015","id":674050933492350976,"id_str":"674050933492350976","text":"#python news: Python 3.5.1 has just been released. There are a number of important bug fixes. https:\/\/t.co\/TgNAU7ytPV","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":53,"favorite_count":42,"entities":{"hashtags":[{"text":"python","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TgNAU7ytPV","expanded_url":"https:\/\/www.python.org\/downloads\/release\/python-351\/","display_url":"python.org\/downloads\/rele\u2026","indices":[97,120]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/73450913\/IMG_0202_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/73450913\/IMG_0202_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":28932876,"id_str":"28932876","name":"Monty Python","screen_name":"pythonquotes","location":"The Fish Tank","description":"I tweet and re-tweet Monty Python quotes. (This is an account by a fan for fans. Not an official Monty Python account!)","url":"http:\/\/t.co\/HD388qr7sa","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/HD388qr7sa","expanded_url":"http:\/\/pythonline.com\/hq","display_url":"pythonline.com\/hq","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":18917,"friends_count":397,"listed_count":345,"created_at":"Sun Apr 05 03:33:59 +0000 2009","favourites_count":16,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":24369,"lang":"en","status":{"created_at":"Thu Dec 10 20:07:16 +0000 2015","id":675044127801802754,"id_str":"675044127801802754","text":"RT @Co2daveDe: @pythonquotes Anything Goes In, Anything Goes Out, Fish, Bananas, Old Pajamas, Mutton!, Beef! and Trout!","source":"\u003ca href=\"http:\/\/stone.com\/Twittelator\" rel=\"nofollow\"\u003eTwittelator\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Dec 10 01:21:27 +0000 2015","id":674760808987942912,"id_str":"674760808987942912","text":"@pythonquotes Anything Goes In, Anything Goes Out, Fish, Bananas, Old Pajamas, Mutton!, Beef! and Trout!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":28932876,"in_reply_to_user_id_str":"28932876","in_reply_to_screen_name":"pythonquotes","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pythonquotes","name":"Monty Python","id":28932876,"id_str":"28932876","indices":[0,13]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Co2daveDe","name":"MikeDeBro","id":4310679035,"id_str":"4310679035","indices":[3,13]},{"screen_name":"pythonquotes","name":"Monty Python","id":28932876,"id_str":"28932876","indices":[15,28]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/110371217\/background2_text.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/110371217\/background2_text.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/974875387\/PYTHONquotes_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/974875387\/PYTHONquotes_normal.jpg","profile_link_color":"0C1BF0","profile_sidebar_border_color":"080808","profile_sidebar_fill_color":"8C96A1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":268974804,"id_str":"268974804","name":"Python Insider","screen_name":"PythonInsider","location":"","description":"The Python core development team.","url":"http:\/\/t.co\/C7eJappOJe","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/C7eJappOJe","expanded_url":"http:\/\/blog.python.org\/","display_url":"blog.python.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6213,"friends_count":1,"listed_count":324,"created_at":"Sat Mar 19 21:20:04 +0000 2011","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":"en","status":{"created_at":"Mon Dec 07 05:51:22 +0000 2015","id":673741569984479233,"id_str":"673741569984479233","text":"Python 3.5.1 and Python 3.4.4rc1 are now available https:\/\/t.co\/AEOCHM5B9F","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":12,"favorite_count":4,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AEOCHM5B9F","expanded_url":"http:\/\/goo.gl\/fb\/wUs1Lj","display_url":"goo.gl\/fb\/wUs1Lj","indices":[51,74]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279590339\/python-avatar_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279590339\/python-avatar_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":320134516,"id_str":"320134516","name":"Terry Jones","screen_name":"PythonJones","location":"The Cave of Caerbannog","description":"Yes it is really me and just as alive as John, although not on tour so the evidence is more limited.","url":"http:\/\/t.co\/6eELwAWoTM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/6eELwAWoTM","expanded_url":"http:\/\/www.unbound.co.uk\/books\/1","display_url":"unbound.co.uk\/books\/1","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":243624,"friends_count":29,"listed_count":2525,"created_at":"Sun Jun 19 11:04:06 +0000 2011","favourites_count":38,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":true,"statuses_count":202,"lang":"en","status":{"created_at":"Sat Nov 21 10:35:11 +0000 2015","id":668014787805204481,"id_str":"668014787805204481","text":"I just donated to @truthout to support independent media! You should too: https:\/\/t.co\/4hHZjXr9VT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":39,"favorite_count":70,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"truthout","name":"Truthout","id":19605981,"id_str":"19605981","indices":[18,27]}],"urls":[{"url":"https:\/\/t.co\/4hHZjXr9VT","expanded_url":"http:\/\/truthout.org\/donate","display_url":"truthout.org\/donate","indices":[74,97]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1410775609\/terry-jones_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1410775609\/terry-jones_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":1584340213,"id_str":"1584340213","name":"Python StackOverflow","screen_name":"PythonStack","location":"","description":"StackOverflow feed of Python questions matching certain criteria.","url":"http:\/\/t.co\/ylgIWGbzVw","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ylgIWGbzVw","expanded_url":"http:\/\/www.stackoverflow.com","display_url":"stackoverflow.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":3388,"friends_count":9,"listed_count":149,"created_at":"Thu Jul 11 00:03:36 +0000 2013","favourites_count":0,"utc_offset":18000,"time_zone":"Islamabad","geo_enabled":false,"verified":false,"statuses_count":2000,"lang":"en","status":{"created_at":"Thu Dec 10 19:44:21 +0000 2015","id":675038361615269888,"id_str":"675038361615269888","text":"Low InnoDB Writes per Second - AWS EC2 to MySQL RDS using Python [Score:15] https:\/\/t.co\/7g6WM3JRgB","source":"\u003ca href=\"http:\/\/www.stackoverflow.com\" rel=\"nofollow\"\u003ePython StackOverflow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7g6WM3JRgB","expanded_url":"http:\/\/bit.ly\/1NJ3qRz","display_url":"bit.ly\/1NJ3qRz","indices":[76,99]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"366D9A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000116618387\/a1f983c6af6a706302abc370c3cb3d6a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000116618387\/a1f983c6af6a706302abc370c3cb3d6a_normal.png","profile_link_color":"366D9A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":484757080,"id_str":"484757080","name":"Pycoders Weekly","screen_name":"pycoders","location":"Ottawa, Canada","description":"Your weekly dose of all things Python! Python tweets by @mgrouchy and @myusuf3.","url":"http:\/\/t.co\/36bbge1783","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/36bbge1783","expanded_url":"http:\/\/www.pycoders.com","display_url":"pycoders.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":19529,"friends_count":3,"listed_count":740,"created_at":"Mon Feb 06 13:13:22 +0000 2012","favourites_count":223,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":4853,"lang":"en","status":{"created_at":"Thu Dec 10 17:06:01 +0000 2015","id":674998513890156544,"id_str":"674998513890156544","text":"Systems Developer at BeanField Metroconnect (Toronto, ON, Canada) https:\/\/t.co\/DsbItGiyHr #python #postgresql #pylons #pyramid #jquery","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[{"text":"python","indices":[90,97]},{"text":"postgresql","indices":[98,109]},{"text":"pylons","indices":[110,117]},{"text":"pyramid","indices":[118,126]},{"text":"jquery","indices":[127,134]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DsbItGiyHr","expanded_url":"http:\/\/bit.ly\/1NPmdpW","display_url":"bit.ly\/1NPmdpW","indices":[66,89]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429285908953579520\/InZKng9-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429285908953579520\/InZKng9-_normal.jpeg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14835908,"id_str":"14835908","name":"Daniel Roy Greenfeld","screen_name":"pydanny","location":"Los Angeles, CA","description":"Co-Author of Two Scoops of Django, fantasy novel author, husband of @audreyr, former NASA python coder","url":"http:\/\/t.co\/uXh5l4o4oO","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uXh5l4o4oO","expanded_url":"http:\/\/pydanny.com","display_url":"pydanny.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":9444,"friends_count":934,"listed_count":700,"created_at":"Mon May 19 18:14:25 +0000 2008","favourites_count":10053,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":37973,"lang":"en","status":{"created_at":"Thu Dec 10 04:54:03 +0000 2015","id":674814311500509185,"id_str":"674814311500509185","text":"@marcorougeth @freakboy3742 @dabeaz Floripa? The island off the coast? With the beaches? Sigh... US PyCons are always where it is cold. :(","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":674778018771042304,"in_reply_to_status_id_str":"674778018771042304","in_reply_to_user_id":1490850450,"in_reply_to_user_id_str":"1490850450","in_reply_to_screen_name":"marcorougeth","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marcorougeth","name":"Marco Rougeth","id":1490850450,"id_str":"1490850450","indices":[0,13]},{"screen_name":"freakboy3742","name":"Russell Keith-Magee","id":14430935,"id_str":"14430935","indices":[14,27]},{"screen_name":"dabeaz","name":"David Beazley","id":20958216,"id_str":"20958216","indices":[28,35]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582392511907287042\/i8aFyQvL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582392511907287042\/i8aFyQvL_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":11486902,"id_str":"11486902","name":"Michael Foord","screen_name":"voidspace","location":"Northampton, UK","description":"Python and Go programmer. Working for Canonical, living in Northampton UK, member of the Jesus Army. For my non-geek updates only, follow @mfoord instead.","url":"http:\/\/t.co\/plvXuK06m1","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/plvXuK06m1","expanded_url":"http:\/\/www.voidspace.org.uk\/","display_url":"voidspace.org.uk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":8293,"friends_count":1308,"listed_count":663,"created_at":"Mon Dec 24 20:33:38 +0000 2007","favourites_count":212,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":43315,"lang":"en","status":{"created_at":"Thu Dec 10 23:17:13 +0000 2015","id":675091928573194241,"id_str":"675091928573194241","text":"RT @Xof: @aymericaugustin The bad part of working for yourself is that you have to work 24 hours a day. The good part is you get to pick wh\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Dec 10 22:24:56 +0000 2015","id":675078774178869248,"id_str":"675078774178869248","text":"@aymericaugustin The bad part of working for yourself is that you have to work 24 hours a day. The good part is you get to pick which 24.","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":675071924528115712,"in_reply_to_status_id_str":"675071924528115712","in_reply_to_user_id":102982202,"in_reply_to_user_id_str":"102982202","in_reply_to_screen_name":"aymericaugustin","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":10,"favorite_count":5,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aymericaugustin","name":"Aymeric Augustin","id":102982202,"id_str":"102982202","indices":[0,16]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":10,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Xof","name":"Christophe","id":794364,"id_str":"794364","indices":[3,7]},{"screen_name":"aymericaugustin","name":"Aymeric Augustin","id":102982202,"id_str":"102982202","indices":[9,25]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/31648407\/voidspace_114123_twitbacks.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/31648407\/voidspace_114123_twitbacks.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530972081\/Foord_1000_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530972081\/Foord_1000_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11486902\/1440765711","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":191696307,"id_str":"191696307","name":"Boston Python","screen_name":"bostonpython","location":"Boston!","description":"The Boston Python user group, events twice monthly, workshops for beginners, 5000 members.","url":"http:\/\/t.co\/ktclpJxg2C","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ktclpJxg2C","expanded_url":"http:\/\/www.meetup.com\/bostonpython","display_url":"meetup.com\/bostonpython","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1505,"friends_count":167,"listed_count":103,"created_at":"Fri Sep 17 03:01:51 +0000 2010","favourites_count":158,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":964,"lang":"en","status":{"created_at":"Wed Dec 09 01:33:57 +0000 2015","id":674401566301011968,"id_str":"674401566301011968","text":"#python #helloworld in #tkinter https:\/\/t.co\/JNWGoAyPvQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"python","indices":[0,7]},{"text":"helloworld","indices":[8,19]},{"text":"tkinter","indices":[23,31]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JNWGoAyPvQ","expanded_url":"http:\/\/howto.lintel.in\/building-hello-world-using-python-tkinter\/","display_url":"howto.lintel.in\/building-hello\u2026","indices":[32,55]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185568687\/python-boston-sq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185568687\/python-boston-sq_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}] \ No newline at end of file diff --git a/testdata/lookup_friendship.json b/testdata/lookup_friendship.json new file mode 100644 index 00000000..b36200ea --- /dev/null +++ b/testdata/lookup_friendship.json @@ -0,0 +1 @@ +[{"name":"Kesuke Miyagi","screen_name":"kesuke","id":718443,"id_str":"718443","connections":["none"]}] \ No newline at end of file diff --git a/testdata/post_media.json b/testdata/post_media.json new file mode 100644 index 00000000..fb54bfc0 --- /dev/null +++ b/testdata/post_media.json @@ -0,0 +1 @@ +{"media_id":681607069120737280,"media_id_string":"681607069120737280","size":3058,"expires_after_secs":86400,"image":{"image_type":"image\\/jpeg","w":100,"h":100}} \ No newline at end of file diff --git a/testdata/post_update.json b/testdata/post_update.json new file mode 100644 index 00000000..246914ad --- /dev/null +++ b/testdata/post_update.json @@ -0,0 +1 @@ +{"created_at":"Mon Dec 28 15:25:56 +0000 2015","id":681496308251754496,"id_str":"681496308251754496","text":"blah Longitude coordinate of the tweet in degrees.","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003egbtest--notinourselves\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"} \ No newline at end of file diff --git a/testdata/post_update_extra_params.json b/testdata/post_update_extra_params.json new file mode 100644 index 00000000..556e9963 --- /dev/null +++ b/testdata/post_update_extra_params.json @@ -0,0 +1 @@ +{"created_at":"Mon Dec 28 16:51:40 +0000 2015","id":681517887102808064,"id_str":"681517887102808064","text":"Not a dupe. Longitude coordinate of the tweet in degrees.","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003egbtest--notinourselves\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":681496308251754496,"in_reply_to_status_id_str":"681496308251754496","in_reply_to_user_id":4012966701,"in_reply_to_user_id_str":"4012966701","in_reply_to_screen_name":"notinourselves","user":{"id":4012966701,"id_str":"4012966701"},"geo":{"type":"Point","coordinates":[37.781157,-122.398720]},"coordinates":{"type":"Point","coordinates":[-122.398720,37.781157]},"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"} \ No newline at end of file diff --git a/testdata/post_update_with_media.json b/testdata/post_update_with_media.json new file mode 100644 index 00000000..8442b3ec --- /dev/null +++ b/testdata/post_update_with_media.json @@ -0,0 +1 @@ +{"created_at":"Mon Dec 28 17:04:56 +0000 2015","id":681521223797452801,"id_str":"681521223797452801","text":"Media test for PostUpdate.","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003egbtest--notinourselves\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"} \ No newline at end of file diff --git a/testdata/ratelimit.json b/testdata/ratelimit.json new file mode 100644 index 00000000..d6cda883 --- /dev/null +++ b/testdata/ratelimit.json @@ -0,0 +1 @@ +{"resources": {"help": {"/help/privacy": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/configuration": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/settings": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/tos": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/languages": {"limit": 15,"remaining": 15,"reset": 1452254278}},"favorites": {"/favorites/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"geo": {"/geo/similar_places": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/id/:place_id": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/reverse_geocode": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/search": {"limit": 15,"remaining": 15,"reset": 1452254278}},"users": {"/users/suggestions/:slug/members": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/profile_banner": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/suggestions/:slug": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/derived_info": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/show/:id": {"limit": 181,"remaining": 181,"reset": 1452254278},"/users/lookup": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/search": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/suggestions": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/report_spam": {"limit": 15,"remaining": 15,"reset": 1452254278}},"application": {"/application/rate_limit_status": {"limit": 180,"remaining": 177,"reset": 1452253438}},"moments": {"/moments/permissions": {"limit": 300,"remaining": 300,"reset": 1452254278}},"media": {"/media/upload": {"limit": 500,"remaining": 500,"reset": 1452254278}},"followers": {"/followers/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/followers/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"direct_messages": {"/direct_messages/sent_and_received": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages/sent": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages/show": {"limit": 15,"remaining": 15,"reset": 1452254278}},"account": {"/account/login_verification_enrollment": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/verify_credentials": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/update_profile": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/settings": {"limit": 15,"remaining": 15,"reset": 1452254278}},"lists": {"/lists/subscriptions": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/members": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/memberships": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/members/show": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/subscribers": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/ownerships": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/show": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/statuses": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/subscribers/show": {"limit": 15,"remaining": 15,"reset": 1452254278}},"friendships": {"/friendships/no_retweets/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/incoming": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/outgoing": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/lookup": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/show": {"limit": 180,"remaining": 180,"reset": 1452254278}},"saved_searches": {"/saved_searches/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/saved_searches/destroy/:id": {"limit": 15,"remaining": 15,"reset": 1452254278},"/saved_searches/show/:id": {"limit": 15,"remaining": 15,"reset": 1452254278}},"contacts": {"/contacts/addressbook": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/users_and_uploaded_by": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/delete/status": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/users": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/uploaded_by": {"limit": 300,"remaining": 300,"reset": 1452254278}},"statuses": {"/statuses/retweets_of_me": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/lookup": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/friends": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/retweets/:id": {"limit": 60,"remaining": 60,"reset": 1452254278},"/statuses/mentions_timeline": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/show/:id": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/home_timeline": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/retweeters/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/oembed": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/user_timeline": {"limit": 180,"remaining": 180,"reset": 1452254278}},"mutes": {"/mutes/users/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/mutes/users/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"friends": {"/friends/ids": {"limit": 15,"remaining": 11,"reset": 1452253438},"/friends/following/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friends/following/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friends/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"blocks": {"/blocks/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/blocks/ids": {"limit": 15,"remaining": 15,"reset": 1452254278}},"search": {"/search/tweets": {"limit": 180,"remaining": 180,"reset": 1452254278}},"trends": {"/trends/place": {"limit": 15,"remaining": 15,"reset": 1452254278},"/trends/available": {"limit": 15,"remaining": 15,"reset": 1452254278},"/trends/closest": {"limit": 15,"remaining": 15,"reset": 1452254278}},"device": {"/device/token": {"limit": 15,"remaining": 15,"reset": 1452254278}},"collections": {"/collections/list": {"limit": 1000,"remaining": 1000,"reset": 1452254278},"/collections/show": {"limit": 1000,"remaining": 1000,"reset": 1452254278},"/collections/entries": {"limit": 1000,"remaining": 1000,"reset": 1452254278}}},"rate_limit_context": {"access_token": "4012966701-SVdwWUOaArQBOsy6UI6ejAIszrsR56uG2wDWDnN"}} \ No newline at end of file diff --git a/testdata/users_lookup.json b/testdata/users_lookup.json new file mode 100644 index 00000000..a8f012b0 --- /dev/null +++ b/testdata/users_lookup.json @@ -0,0 +1 @@ +[{"id":718443,"id_str":"718443","name":"Kesuke Miyagi","screen_name":"kesuke","location":"Okinawa, Japan","description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":1,"listed_count":6,"created_at":"Sun Jan 28 06:31:55 +0000 2007","favourites_count":0,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":10,"lang":"en","status":{"created_at":"Mon Jul 07 13:10:40 +0000 2014","id":486135208928751616,"id_str":"486135208928751616","text":"Wax on.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/21525032\/kesuke_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/21525032\/kesuke_normal.png","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}] \ No newline at end of file diff --git a/testdata/verify_credentials.json b/testdata/verify_credentials.json new file mode 100644 index 00000000..4e7c56bc --- /dev/null +++ b/testdata/verify_credentials.json @@ -0,0 +1 @@ +{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":67,"lang":"en","status":{"created_at":"Sat Jan 16 21:34:06 +0000 2016","id":688474332406923265,"id_str":"688474332406923265","text":"totally nutz https:\/\/t.co\/cyrpU6X2k3","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003egbtest--notinourselves\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":688474330007732224,"id_str":"688474330007732224","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CY3zwWUWAAA5AIa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CY3zwWUWAAA5AIa.jpg","url":"https:\/\/t.co\/cyrpU6X2k3","display_url":"pic.twitter.com\/cyrpU6X2k3","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/688474332406923265\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":1008,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":688474330007732224,"id_str":"688474330007732224","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CY3zwWUWAAA5AIa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CY3zwWUWAAA5AIa.jpg","url":"https:\/\/t.co\/cyrpU6X2k3","display_url":"pic.twitter.com\/cyrpU6X2k3","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/688474332406923265\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":1008,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":688474331245088773,"id_str":"688474331245088773","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CY3zwa7WkAUJ39K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CY3zwa7WkAUJ39K.jpg","url":"https:\/\/t.co\/cyrpU6X2k3","display_url":"pic.twitter.com\/cyrpU6X2k3","expanded_url":"http:\/\/twitter.com\/notinourselves\/status\/688474332406923265\/photo\/1","type":"photo","sizes":{"medium":{"w":100,"h":100,"resize":"fit"},"thumb":{"w":100,"h":100,"resize":"crop"},"small":{"w":100,"h":100,"resize":"fit"},"large":{"w":100,"h":100,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false} \ No newline at end of file From 6136f7c564a53a347b62694704199eb932e7e0ef Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 19 Jan 2016 20:52:01 -0500 Subject: [PATCH 127/533] adds in passing tests without modification to API --- tests/test_api_30.py | 475 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index ce4b241a..a934cec6 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -5,6 +5,11 @@ import unittest import twitter + +import warnings + +warnings.filterwarnings('ignore', category=DeprecationWarning) + import responses @@ -34,6 +39,257 @@ def tearDown(self): sys.stderr = self._stderr pass + def testApiSetUp(self): + self.assertRaises( + twitter.TwitterError, + lambda: twitter.Api(consumer_key='test')) + + def testSetAndClearCredentials(self): + api = twitter.Api() + api.SetCredentials(consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test') + self.assertEqual(api._consumer_key, 'test') + self.assertEqual(api._consumer_secret, 'test') + self.assertEqual(api._access_token_key, 'test') + self.assertEqual(api._access_token_secret, 'test') + + api.ClearCredentials() + + self.assertFalse(all([ + api._consumer_key, + api._consumer_secret, + api._access_token_key, + api._access_token_secret + ])) + + @responses.activate + def testApiRaisesAuthErrors(self): + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/search/tweets.json?count=15&result_type=mixed&q=python', + body='', + match_querystring=True, + status=200) + api = twitter.Api() + api.SetCredentials(consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test') + api._Api__auth = None + self.assertRaises(twitter.TwitterError, lambda: api.GetFollowers()) + + @responses.activate + def testGetHelpConfiguration(self): + with open('testdata/get_help_configuration.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/help/configuration.json', + body=resp_data, + status=200) + resp = self.api.GetHelpConfiguration() + self.assertEqual(resp.get('short_url_length_https'), 23) + + @responses.activate + def testGetShortUrlLength(self): + with open('testdata/get_help_configuration.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/help/configuration.json', + body=resp_data, + status=200) + resp = self.api.GetShortUrlLength() + self.assertEqual(resp, 23) + resp = self.api.GetShortUrlLength(https=True) + self.assertEqual(resp, 23) + + @responses.activate + def testGetSearch(self): + with open('testdata/get_search.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/search/tweets.json?count=15&result_type=mixed&q=python', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetSearch(term='python') + self.assertEqual(len(resp), 1) + self.assertTrue(type(resp[0]), twitter.Status) + self.assertEqual(resp[0].id, 674342688083283970) + + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetSearch(since_id='test')) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetSearch(max_id='test')) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetSearch(term='test', count='test')) + self.assertFalse(self.api.GetSearch()) + + @responses.activate + def testGetSearchGeocode(self): + with open('testdata/get_search_geocode.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/search/tweets.json?result_type=mixed&count=15&geocode=37.781157%2C-122.398720%2C100mi&q=python', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetSearch( + term="python", + geocode=('37.781157', '-122.398720', '100mi')) + status = resp[0] + self.assertTrue(status, twitter.Status) + self.assertTrue(status.geo) + self.assertEqual(status.geo['type'], 'Point') + + @responses.activate + def testGetUsersSearch(self): + with open('testdata/get_users_search.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/users/search.json?count=20&q=python', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetUsersSearch(term='python') + self.assertEqual(type(resp[0]), twitter.User) + self.assertEqual(len(resp), 20) + self.assertEqual(resp[0].id, 63873759) + self.assertRaises(twitter.TwitterError, + lambda: self.api.GetUsersSearch(term='python', + count='test')) + + @responses.activate + def testGetTrendsCurrent(self): + with open('testdata/get_trends_current.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/trends/place.json?id=1', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetTrendsCurrent() + self.assertTrue(type(resp[0]) is twitter.Trend) + + @responses.activate + def testGetHomeTimeline(self): + with open('testdata/get_home_timeline.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/statuses/home_timeline.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetHomeTimeline() + status = resp[0] + self.assertEqual(type(status), twitter.Status) + self.assertEqual(status.id, 674674925823787008) + + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetHomeTimeline(count='literally infinity')) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetHomeTimeline(count=4000)) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetHomeTimeline(max_id='also infinity')) + self.assertRaises(twitter.TwitterError, + lambda: self.api.GetHomeTimeline( + since_id='still infinity')) + + + # TODO: Get data for this call against which we can test exclusions. + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/statuses/home_timeline.json?count=100&max_id=674674925823787008&trim_user=1', + body=resp_data, + match_querystring=True, + status=200) + self.assertTrue(self.api.GetHomeTimeline(count=100, + trim_user=True, + max_id=674674925823787008)) + + @responses.activate + def testGetUserTimeline(self): + with open('testdata/get_user_timeline.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/statuses/user_timeline.json?user_id=673483', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetUserTimeline(user_id=673483) + self.assertTrue(type(resp[0]) is twitter.Status) + self.assertTrue(type(resp[0].user) is twitter.User) + self.assertEqual(resp[0].user.id, 673483) + + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=dewitt', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetUserTimeline(screen_name='dewitt') + self.assertEqual(resp[0].id, 675055636267298821) + self.assertTrue(resp) + + @responses.activate + def testGetRetweets(self): + with open('testdata/get_retweets.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/statuses/retweets/397.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetRetweets(statusid=397) + self.assertTrue(type(resp[0]) is twitter.Status) + self.assertTrue(type(resp[0].user) is twitter.User) + + @responses.activate + def testGetRetweeters(self): + with open('testdata/get_retweeters.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/statuses/retweeters/ids.json?id=397', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetRetweeters(status_id=397) + self.assertTrue(type(resp) is list) + self.assertTrue(type(resp[0]) is int) + + @responses.activate + def testGetBlocks(self): + with open('testdata/get_blocks.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/blocks/list.json?cursor=-1', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetBlocks() + self.assertTrue(type(resp) is list) + self.assertTrue(type(resp[0]) is twitter.User) + self.assertEqual(len(resp), 1) + self.assertEqual(resp[0].screen_name, 'RedScareBot') + @responses.activate def testGetFriendIDs(self): # First request for first 5000 friends @@ -313,3 +569,222 @@ def testGetFollowerIDsPaged(self): else: self.assertTrue(type(resp[0]) is unicode) self.assertEqual(len(resp), 5000) + + @responses.activate + def testUsersLookup(self): + with open('testdata/users_lookup.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/users/lookup.json?user_id=718443', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.UsersLookup(user_id=[718443]) + self.assertTrue(type(resp) is list) + self.assertEqual(len(resp), 1) + user = resp[0] + self.assertTrue(type(user) is twitter.User) + self.assertEqual(user.screen_name, 'kesuke') + self.assertEqual(user.id, 718443) + + @responses.activate + def testGetUser(self): + with open('testdata/get_user.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/users/show.json?user_id=718443', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetUser(user_id=718443) + self.assertTrue(type(resp) is twitter.User) + self.assertEqual(resp.screen_name, 'kesuke') + self.assertEqual(resp.id, 718443) + + @responses.activate + def testGetDirectMessages(self): + with open('testdata/get_direct_messages.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/direct_messages.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetDirectMessages() + self.assertTrue(type(resp) is list) + direct_message = resp[0] + self.assertTrue(type(direct_message) is twitter.DirectMessage) + self.assertEqual(direct_message.id, 678629245946433539) + + @responses.activate + def testGetSentDirectMessages(self): + with open('testdata/get_sent_direct_messages.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/direct_messages/sent.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetSentDirectMessages() + self.assertTrue(type(resp) is list) + direct_message = resp[0] + self.assertTrue(type(direct_message) is twitter.DirectMessage) + self.assertEqual(direct_message.id, 678629283007303683) + self.assertTrue([dm.sender_screen_name == 'notinourselves' for dm in resp]) + + @responses.activate + def testGetFavorites(self): + with open('testdata/get_favorites.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/favorites/list.json?include_entities=True', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetFavorites() + self.assertTrue(type(resp) is list) + fav = resp[0] + self.assertEqual(fav.id, 677180133447372800) + self.assertIn("Extremely", fav.text) + + @responses.activate + def testGetMentions(self): + with open('testdata/get_mentions.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/statuses/mentions_timeline.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetMentions() + self.assertTrue(type(resp) is list) + self.assertTrue([type(mention) is twitter.Status for mention in resp]) + self.assertEqual(resp[0].id, 676148312349609985) + + @responses.activate + def testGetListTimeline(self): + with open('testdata/get_list_timeline.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/statuses.json?slug=space-bots&owner_screen_name=inky', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListTimeline(list_id=None, + slug='space-bots', + owner_screen_name='inky') + self.assertTrue(type(resp) is list) + self.assertTrue([type(status) is twitter.Status for status in resp]) + self.assertEqual(resp[0].id, 677891843946766336) + + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetListTimeline( + list_id=None, + slug=None, + owner_id=None)) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetListTimeline( + list_id=None, + slug=None, + owner_screen_name=None)) + + @responses.activate + def testPostUpdate(self): + with open('testdata/post_update.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/statuses/update.json', + body=resp_data, + status=200) + post = self.api.PostUpdate( + status="blah Longitude coordinate of the tweet in degrees.") + self.assertTrue(type(post) is twitter.Status) + self.assertEqual( + post.text, "blah Longitude coordinate of the tweet in degrees.") + self.assertTrue(post.geo is None) + self.assertEqual(post.user.screen_name, 'notinourselves') + + @responses.activate + def testPostUpdateExtraParams(self): + with open('testdata/post_update_extra_params.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/statuses/update.json', + body=resp_data, + status=200) + post = self.api.PostUpdate( + status="Not a dupe. Longitude coordinate of the tweet in degrees.", + in_reply_to_status_id=681496308251754496, + latitude=37.781157, + longitude=-122.398720, + place_id="1", + display_coordinates=True, + trim_user=True) + self.assertEqual(post.in_reply_to_status_id, 681496308251754496) + self.assertIsNotNone(post.coordinates) + + @responses.activate + def testVerifyCredentials(self): + with open('testdata/verify_credentials.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + '{0}/account/verify_credentials.json'.format(self.api.base_url), + body=resp_data, + status=200) + + resp = self.api.VerifyCredentials() + self.assertEqual(type(resp), twitter.User) + self.assertEqual(resp.name, 'notinourselves') + + @responses.activate + def testUpdateBanner(self): + responses.add( + responses.POST, + '{0}/account/update_profile_banner.json'.format(self.api.base_url), + body=b'', + status=201 + ) + resp = self.api.UpdateBanner(image='testdata/168NQ.jpg') + self.assertTrue(resp) + + @responses.activate + def testUpdateBanner422Error(self): + responses.add( + responses.POST, + '{0}/account/update_profile_banner.json'.format(self.api.base_url), + body=b'', + status=422 + ) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.UpdateBanner(image='testdata/168NQ.jpg') + ) + try: + self.api.UpdateBanner(image='testdata/168NQ.jpg') + except twitter.TwitterError as e: + self.assertTrue("The image could not be resized or is too large." in str(e)) + + @responses.activate + def testUpdateBanner400Error(self): + responses.add( + responses.POST, + '{0}/account/update_profile_banner.json'.format(self.api.base_url), + body=b'', + status=400 + ) + try: + self.api.UpdateBanner(image='testdata/168NQ.jpg') + except twitter.TwitterError as e: + self.assertTrue("Image data could not be processed" in str(e)) From 662fd153e741661fc9e3671fcd5a548ee37ec7cb Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 23 Jan 2016 15:12:00 -0500 Subject: [PATCH 128/533] adds `raw_query` option to GetSearch and removes `who`. Fixes issue #280 --- doc/searching.rst | 10 ++++++++++ twitter/api.py | 22 ++++++++++++---------- 2 files changed, 22 insertions(+), 10 deletions(-) create mode 100644 doc/searching.rst diff --git a/doc/searching.rst b/doc/searching.rst new file mode 100644 index 00000000..ea555367 --- /dev/null +++ b/doc/searching.rst @@ -0,0 +1,10 @@ +Raw Queries +=========== + +To the Api.GetSearch() method, you can pass the parameter ``raw_query``, which should be the query string you wish to use for the search **omitting the leading "?"**. This will override every other parameter. Twitter's search parameters are quite complex, so if you have a need for a very particular search, you can find Twitter's documentation at https://dev.twitter.com/rest/public/search. + +For example, if you want to search for only tweets containing the word "twitter", then you could do the following: :: + + results = api.GetSearch(raw_query="q=twitter%20&result_type=recent&since=2014-07-19&count=100") + +If you want to build a search query and you're not quite sure how it should look all put together, you can use Twitter's Advanced Search tool: https://twitter.com/search-advanced, and then use the part of search URL after the "?" to use for the Api, removing the "&src=typd" portion. \ No newline at end of file diff --git a/twitter/api.py b/twitter/api.py index ab61c3b1..f7bca606 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -301,7 +301,7 @@ def ClearCredentials(self): def GetSearch(self, term=None, - who=None, + raw_query=None, geocode=None, since_id=None, max_id=None, @@ -317,8 +317,6 @@ def GetSearch(self, Args: term: Term to search by. Optional if you include geocode. - who: - Handle of user's tweets you want. Optional. since_id: Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of @@ -361,6 +359,8 @@ def GetSearch(self, the term """ # Build request parameters + + url = '%s/search/tweets.json' % self.base_url parameters = {} if since_id: @@ -387,15 +387,12 @@ def GetSearch(self, if locale: parameters['locale'] = locale - if term is None and geocode is None and who is None: + if term is None and geocode is None and raw_query is None: return [] if term is not None: parameters['q'] = term - if who is not None: - parameters['q'] = "from:%s" % (who) - if geocode is not None: parameters['geocode'] = ','.join(map(str, geocode)) @@ -410,9 +407,14 @@ def GetSearch(self, if result_type in ["mixed", "popular", "recent"]: parameters['result_type'] = result_type - # Make and send requests - url = '%s/search/tweets.json' % self.base_url - resp = self._RequestUrl(url, 'GET', data=parameters) + if raw_query is not None: + url = "{url}?{raw_query}".format( + url=url, + raw_query=raw_query) + resp = self._RequestUrl(url, 'GET') + else: + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) # Return built list of statuses From 67d7595632e746833ef1420a650af4c5eb856060 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 23 Jan 2016 15:25:34 -0500 Subject: [PATCH 129/533] adds tests for new `raw_query` parameter in GetSeach() --- testdata/get_search_raw.json | 1 + tests/test_api_30.py | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 testdata/get_search_raw.json diff --git a/testdata/get_search_raw.json b/testdata/get_search_raw.json new file mode 100644 index 00000000..5218244b --- /dev/null +++ b/testdata/get_search_raw.json @@ -0,0 +1 @@ +{"search_metadata": {"next_results": "?max_id=690992333903532031&q=twitter%20since%3A2014-07-19&count=100&include_entities=1&result_type=recent", "count": 100, "max_id_str": "690992334247477249", "max_id": 690992334247477249, "completed_in": 0.217, "since_id_str": "0", "since_id": 0, "query": "twitter+since%3A2014-07-19", "refresh_url": "?since_id=690992334247477249&q=twitter%20since%3A2014-07-19&result_type=recent&include_entities=1"}, "statuses": [{"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334247477249", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/iBIEYXFdnz", "source_user_id_str": "1449283567", "expanded_url": "http://twitter.com/CSAviate/status/690992179955675136/photo/1", "source_status_id_str": "690992179955675136", "id_str": "690992174272368640", "source_user_id": 1449283567, "media_url_https": "https://pbs.twimg.com/media/CZbluLIUUAADC8B.jpg", "id": 690992174272368640, "sizes": {"large": {"h": 576, "w": 1022, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 337, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/iBIEYXFdnz", "indices": [32, 55], "media_url": "http://pbs.twimg.com/media/CZbluLIUUAADC8B.jpg", "source_status_id": 690992179955675136}], "user_mentions": [{"name": "whom", "id": 1449283567, "screen_name": "CSAviate", "id_str": "1449283567", "indices": [3, 12]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:19:08 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Tweetbot for i\u039fS", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992179955675136", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbluLIUUAADC8B.jpg", "display_url": "pic.twitter.com/iBIEYXFdnz", "id": 690992174272368640, "type": "photo", "sizes": {"large": {"h": 576, "w": 1022, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 337, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/iBIEYXFdnz", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/CZbluLIUUAADC8B.jpg", "id_str": "690992174272368640", "expanded_url": "http://twitter.com/CSAviate/status/690992179955675136/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed May 22 15:42:42 +0000 2013", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 73385, "utc_offset": -18000, "description": "broke boy magic, 7 days a week.", "profile_text_color": "333333", "profile_link_color": "000000", "id_str": "1449283567", "statuses_count": 134241, "url": null, "profile_use_background_image": true, "name": "whom", "entities": {"description": {"urls": []}}, "screen_name": "CSAviate", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/652243773519347712/gVdNzjTx_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 853, "followers_count": 1132, "verified": false, "id": 1449283567, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652243773519347712/gVdNzjTx_normal.jpg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 63, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "kevin love\n\nelbow https://t.co/iBIEYXFdnz", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992179955675136}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jun 17 20:04:53 +0000 2010", "profile_link_color": "B30000", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 29940, "utc_offset": -18000, "description": "Hoosier. Writer at @miaheatbeat. D-League/Summer League stuff. These are not jokes. They are just thoughts.", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/156745662/1437703380", "id_str": "156745662", "statuses_count": 136472, "url": "https://t.co/fqLtEOCBYa", "profile_use_background_image": false, "name": "Taddy Mason LLC", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "miamiheatbeat.com", "indices": [0, 23], "url": "https://t.co/fqLtEOCBYa", "expanded_url": "http://miamiheatbeat.com"}]}}, "screen_name": "alfonsohoops", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Bloomington, Indiana ", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/672290851620560896/ig2E8Md5_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 906, "followers_count": 1590, "verified": false, "id": 156745662, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672290851620560896/ig2E8Md5_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 89, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @CSAviate: kevin love\n\nelbow https://t.co/iBIEYXFdnz", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334247477249}, {"quoted_status": {"created_at": "Sat Jan 23 20:08:08 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Tweetbot for i\u039fS", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690989412197515264", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "vine.co/v/iMEqpX29zqE", "indices": [0, 23], "url": "https://t.co/ESiseDKIVG", "expanded_url": "https://vine.co/v/iMEqpX29zqE"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Mar 29 22:03:40 +0000 2009", "lang": "en", "time_zone": "Quito", "contributors_enabled": false, "favourites_count": 244, "utc_offset": -18000, "description": "I used to be funny on here", "profile_text_color": "666666", "profile_link_color": "2FC2EF", "id_str": "27515401", "statuses_count": 112609, "url": null, "profile_use_background_image": true, "name": "Young Empanada$", "entities": {"description": {"urls": []}}, "screen_name": "JoeyPrez", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "location": "863 Polk County Zone 6", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648166302574604289/4vc0y2vz_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "252429", "friends_count": 160, "followers_count": 528, "verified": false, "id": 27515401, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648166302574604289/4vc0y2vz_normal.jpg", "profile_background_tile": false, "profile_background_color": "1A1B1F", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 6, "profile_sidebar_border_color": "181A1E"}, "metadata": {"iso_language_code": "ht", "result_type": "recent"}, "text": "https://t.co/ESiseDKIVG", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690989412197515264}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ht", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334247428096", "quoted_status_id": 690989412197515264, "contributors": null, "quoted_status_id_str": "690989412197515264", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/joeyprez/statu\u2026", "indices": [7, 30], "url": "https://t.co/mI4pZOFeYw", "expanded_url": "https://twitter.com/joeyprez/status/690989412197515264"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Oct 21 22:01:06 +0000 2011", "profile_link_color": "0099B9", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 3319, "utc_offset": -18000, "description": "Sweeterman | Dominican | Instagram: JAR.ZAN", "profile_text_color": "3C3940", "profile_banner_url": "https://pbs.twimg.com/profile_banners/395578754/1450490308", "id_str": "395578754", "statuses_count": 50936, "url": null, "profile_use_background_image": true, "name": "lame", "entities": {"description": {"urls": []}}, "screen_name": "Jarzzan", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/350586475/providence-place-014.jpg", "location": "with my hillbillies", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690247191290613760/yU0fIVn__normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "FFFFFF", "friends_count": 602, "followers_count": 1055, "verified": false, "id": 395578754, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/350586475/providence-place-014.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690247191290613760/yU0fIVn__normal.jpg", "profile_background_tile": true, "profile_background_color": "0099B9", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 10, "profile_sidebar_border_color": "5ED4DC"}, "metadata": {"iso_language_code": "ht", "result_type": "recent"}, "text": "Lmaooo https://t.co/mI4pZOFeYw", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334247428096}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Mobile Web (M5)", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334243250177", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/OreA7mmCJO", "source_user_id_str": "173185910", "expanded_url": "http://twitter.com/BmoreCityDOT/status/690985447426752512/photo/1", "source_status_id_str": "690985447426752512", "id_str": "690985446977966084", "source_user_id": 173185910, "media_url_https": "https://pbs.twimg.com/media/CZbfmmAWEAQBetG.jpg", "id": 690985446977966084, "sizes": {"large": {"h": 178, "w": 178, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 178, "w": 178, "resize": "fit"}, "small": {"h": 178, "w": 178, "resize": "fit"}}, "url": "https://t.co/OreA7mmCJO", "indices": [122, 140], "media_url": "http://pbs.twimg.com/media/CZbfmmAWEAQBetG.jpg", "source_status_id": 690985447426752512}], "user_mentions": [{"name": "Baltimore City DOT", "id": 173185910, "screen_name": "BmoreCityDOT", "id_str": "173185910", "indices": [3, 16]}, {"name": "Mayor Rawlings-Blake", "id": 109328493, "screen_name": "MayorSRB", "id_str": "109328493", "indices": [112, 121]}], "hashtags": [{"indices": [102, 111], "text": "baltsnow"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:52:23 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690985447426752512", "favorite_count": 4, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbfmmAWEAQBetG.jpg", "display_url": "pic.twitter.com/OreA7mmCJO", "id": 690985446977966084, "type": "photo", "sizes": {"large": {"h": 178, "w": 178, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 178, "w": 178, "resize": "fit"}, "small": {"h": 178, "w": 178, "resize": "fit"}}, "url": "https://t.co/OreA7mmCJO", "indices": [104, 127], "media_url": "http://pbs.twimg.com/media/CZbfmmAWEAQBetG.jpg", "id_str": "690985446977966084", "expanded_url": "http://twitter.com/BmoreCityDOT/status/690985447426752512/photo/1"}], "user_mentions": [{"name": "Mayor Rawlings-Blake", "id": 109328493, "screen_name": "MayorSRB", "id_str": "109328493", "indices": [94, 103]}], "hashtags": [{"indices": [84, 93], "text": "baltsnow"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jul 31 17:34:49 +0000 2010", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 114, "utc_offset": -18000, "description": "Official transportation information from the Baltimore City DOT", "profile_text_color": "666666", "profile_link_color": "2FC2EF", "id_str": "173185910", "statuses_count": 4445, "url": null, "profile_use_background_image": true, "name": "Baltimore City DOT", "entities": {"description": {"urls": []}}, "screen_name": "BmoreCityDOT", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "location": "Baltimore, MD", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/428173760286306304/gnAAswuC_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "252429", "friends_count": 394, "followers_count": 7550, "verified": false, "id": 173185910, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/428173760286306304/gnAAswuC_normal.jpeg", "profile_background_tile": false, "profile_background_color": "1A1B1F", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 249, "profile_sidebar_border_color": "181A1E"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Over 310 snow vehicles continue to work on city streets during this historic storm. #baltsnow @MayorSRB https://t.co/OreA7mmCJO", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690985447426752512}, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Feb 16 19:48:53 +0000 2012", "profile_link_color": "009999", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 70, "utc_offset": -18000, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/494331385/1371563398", "id_str": "494331385", "statuses_count": 907, "url": "http://t.co/MRJ1tJJyU0", "profile_use_background_image": true, "name": "Baltimore Housing", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "baltimorehousing.org", "indices": [0, 22], "url": "http://t.co/MRJ1tJJyU0", "expanded_url": "http://www.baltimorehousing.org"}]}}, "screen_name": "Bmore_Housing", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3283802034/d6c60ea57d3235f2b68f92f199555b57_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 292, "followers_count": 695, "verified": false, "id": 494331385, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3283802034/d6c60ea57d3235f2b68f92f199555b57_normal.jpeg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 25, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @BmoreCityDOT: Over 310 snow vehicles continue to work on city streets during this historic storm. #baltsnow @MayorSRB https://t.co/OreA\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334243250177}, {"quoted_status": {"created_at": "Sat Jan 23 20:09:08 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690989665701208064", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Jan 22 14:36:59 +0000 2014", "profile_link_color": "009999", "lang": "ar", "time_zone": "Kyiv", "contributors_enabled": false, "favourites_count": 4180, "utc_offset": 7200, "description": "\u0636\u0648\u0621 \u0633\u0627\u0637\u0639 \u064a\u0645\u0646\u0639\u0643 \u0645\u0646 \u0627\u0644\u0631\u0624\u064a\u0629 || \u0644\u0627\u0639\u0628\u0629 \u0628\u0627\u0631\u0643\u0648\u0631 | #INTJ \u0625\u0633\u0645\u064a \u0631\u0624\u0649 \u0648\u0641\u064a \u0631\u0648\u0627\u064a\u0629 \u0623\u064f\u062e\u0631\u0649 \u0631\u0626\u0647.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2304949812/1453130698", "id_str": "2304949812", "statuses_count": 10668, "url": "https://t.co/p82wtRkoar", "profile_use_background_image": true, "name": "\u0631\u0626\u0647", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "sayat.me/roaachan", "indices": [0, 23], "url": "https://t.co/p82wtRkoar", "expanded_url": "http://sayat.me/roaachan"}]}}, "screen_name": "roaachan", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/524245212025995265/POv_lC4X.jpeg", "location": "\u0643\u0627\u0626\u0646\u0629 \u0635\u0628\u0627\u062d\u064a\u0651\u0629", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/689129978135457792/dW5n7oNy_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 153, "followers_count": 1290, "verified": false, "id": 2304949812, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/524245212025995265/POv_lC4X.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689129978135457792/dW5n7oNy_normal.jpg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 6, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "\u0647\u0644 \u062a\u062e\u0627\u0641\u0648\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u062a\u061f", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690989665701208064}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for iPad", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334243233792", "quoted_status_id": 690989665701208064, "contributors": null, "quoted_status_id_str": "690989665701208064", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/roaachan/statu\u2026", "indices": [109, 132], "url": "https://t.co/957ImAI3pP", "expanded_url": "https://twitter.com/roaachan/status/690989665701208064"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jul 08 03:33:16 +0000 2014", "profile_link_color": "112233", "lang": "en", "time_zone": "Baghdad", "contributors_enabled": false, "favourites_count": 1977, "utc_offset": 10800, "description": "21 of age - Looking for the interesting things - Searching for people who don\u2019t believe in reality . DO NOT EXPECT .. JUST WATCH !", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2610935574/1452660898", "id_str": "2610935574", "statuses_count": 15856, "url": "https://t.co/KsBx0PwJ4w", "profile_use_background_image": true, "name": "- Nan \u2606", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "noorah1221.wordpress.com", "indices": [0, 23], "url": "https://t.co/KsBx0PwJ4w", "expanded_url": "https://noorah1221.wordpress.com/"}]}}, "screen_name": "NOORAH_1221", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/680492063486545921/mgsdclC2.jpg", "location": "#\u062f\u0645\u0634\u0642 ", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690910693751721984/-wZkAiS0_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 482, "followers_count": 422, "verified": false, "id": 2610935574, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/680492063486545921/mgsdclC2.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690910693751721984/-wZkAiS0_normal.jpg", "profile_background_tile": true, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 2, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "\u0627\u0644\u062e\u0648\u0641 \u0645\u0648 \u0645\u0646 \u0627\u0644\u0645\u0648\u062a\n\u0627\u0644\u062e\u0648\u0641 \u0627\u0644\u062d\u0642\u064a\u0642\u064a \u0645\u0646 \u0627\u0644\u062a\u0642\u0635\u064a\u0631 \u0648\u0639\u062f\u0645 \u0627\u0644\u0625\u0633\u062a\u0639\u062f\u0627\u062f \u0644\u0644\u064a \u0628\u0646\u0648\u0627\u062c\u0647\u0647 \u0628\u0639\u062f \u0627\u0644\u0645\u0648\u062a \n\n\u0627\u0644\u0644\u0647\u0645 \u0625\u0631\u0632\u0642\u0646\u0627 \u062d\u0633\u0646 \u0627\u0644\u062e\u0627\u062a\u0645\u0647 \n https://t.co/957ImAI3pP", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334243233792}, {"quoted_status": {"created_at": "Sat Jan 23 20:12:50 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690990595410530304", "quoted_status_id": 690989989119823872, "contributors": null, "quoted_status_id_str": "690989989119823872", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/DonnyFinego/st\u2026", "indices": [33, 56], "url": "https://t.co/aUHY3VqkbZ", "expanded_url": "https://twitter.com/DonnyFinego/status/690989989119823872"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Feb 21 18:22:05 +0000 2011", "profile_link_color": "3B94D9", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 195, "utc_offset": -18000, "description": "One way up. I fly. \u2708. BikeLife. Musician. EuroPower.", "profile_text_color": "CC0000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/255608512/1386639178", "id_str": "255608512", "statuses_count": 46856, "url": null, "profile_use_background_image": true, "name": "musicmaniac.", "entities": {"description": {"urls": []}}, "screen_name": "Bounceit_Good_", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000164818151/xxih2gLN.jpeg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/689051153649160192/z5goSYjt_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 364, "followers_count": 1151, "verified": false, "id": 255608512, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000164818151/xxih2gLN.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689051153649160192/z5goSYjt_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 2, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Lmao. You wild. Wassup tho nigga https://t.co/aUHY3VqkbZ", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690990595410530304}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334239092736", "quoted_status_id": 690990595410530304, "contributors": null, "quoted_status_id_str": "690990595410530304", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/bounceit_good_\u2026", "indices": [23, 46], "url": "https://t.co/QcTXhYxVnX", "expanded_url": "https://twitter.com/bounceit_good_/status/690990595410530304"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Jun 12 00:52:04 +0000 2009", "profile_link_color": "0099CC", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 808, "utc_offset": -18000, "description": "#finego i play the keys..| IG : finego.clan RIP TEVO", "profile_text_color": "E01616", "profile_banner_url": "https://pbs.twimg.com/profile_banners/46538008/1452707908", "id_str": "46538008", "statuses_count": 156104, "url": null, "profile_use_background_image": true, "name": "#LLT", "entities": {"description": {"urls": []}}, "screen_name": "DonnyFinego", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000086377998/7c53ba1f4abd6efdfbc744083e4b6e1a.jpeg", "location": "In Maryland", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690891423982489600/zJWbopSX_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "F6F6F6", "friends_count": 782, "followers_count": 1932, "verified": false, "id": 46538008, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000086377998/7c53ba1f4abd6efdfbc744083e4b6e1a.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690891423982489600/zJWbopSX_normal.jpg", "profile_background_tile": true, "profile_background_color": "FFF04D", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 15, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Ain't shit what it do! https://t.co/QcTXhYxVnX", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334239092736}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334238920704", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/3TXHhmhiEr", "source_user_id_str": "4481625083", "expanded_url": "http://twitter.com/OnlyGreysQuote/status/690974435113857024/photo/1", "source_status_id_str": "690974435113857024", "id_str": "690974430650978304", "source_user_id": 4481625083, "media_url_https": "https://pbs.twimg.com/media/CZbVlW_UUAAvf5u.jpg", "id": 690974430650978304, "sizes": {"large": {"h": 263, "w": 650, "resize": "fit"}, "small": {"h": 137, "w": 340, "resize": "fit"}, "medium": {"h": 242, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/3TXHhmhiEr", "indices": [84, 107], "media_url": "http://pbs.twimg.com/media/CZbVlW_UUAAvf5u.jpg", "source_status_id": 690974435113857024}], "user_mentions": [{"name": "Grey's Anatomy", "id": 4481625083, "screen_name": "OnlyGreysQuote", "id_str": "4481625083", "indices": [3, 18]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:08:37 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690974435113857024", "favorite_count": 217, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbVlW_UUAAvf5u.jpg", "display_url": "pic.twitter.com/3TXHhmhiEr", "id": 690974430650978304, "type": "photo", "sizes": {"large": {"h": 263, "w": 650, "resize": "fit"}, "small": {"h": 137, "w": 340, "resize": "fit"}, "medium": {"h": 242, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/3TXHhmhiEr", "indices": [64, 87], "media_url": "http://pbs.twimg.com/media/CZbVlW_UUAAvf5u.jpg", "id_str": "690974430650978304", "expanded_url": "http://twitter.com/OnlyGreysQuote/status/690974435113857024/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 119, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Dec 14 13:45:15 +0000 2015", "profile_link_color": "2B7BB9", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 110, "utc_offset": null, "description": "All the best quotes, pictures, news and more from the world hit TV show, Grey's Anatomy! \u2022 New episodes every Thursday at 8/7c on ABC.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4481625083/1450459148", "id_str": "4481625083", "statuses_count": 170, "url": null, "profile_use_background_image": true, "name": "Grey's Anatomy", "entities": {"description": {"urls": []}}, "screen_name": "OnlyGreysQuote", "protected": false, "profile_background_image_url": null, "location": "Grey Sloan Memorial Hospital", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/676429300543971331/7Qvgl1Ok_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 30, "followers_count": 10655, "verified": false, "id": 4481625083, "default_profile_image": false, "profile_background_image_url_https": null, "profile_image_url_https": "https://pbs.twimg.com/profile_images/676429300543971331/7Qvgl1Ok_normal.jpg", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Anyone who's ever watched Grey's Anatomy knows what this means. https://t.co/3TXHhmhiEr", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690974435113857024}, "retweet_count": 119, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Nov 27 18:23:26 +0000 2015", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 795, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_link_color": "0084B4", "id_str": "4298829623", "statuses_count": 316, "url": null, "profile_use_background_image": true, "name": "Madelyn Scott", "entities": {"description": {"urls": []}}, "screen_name": "mascott_122", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/670307577281052673/R0TK7Mnj_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 95, "followers_count": 57, "verified": false, "id": 4298829623, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670307577281052673/R0TK7Mnj_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @OnlyGreysQuote: Anyone who's ever watched Grey's Anatomy knows what this means. https://t.co/3TXHhmhiEr", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334238920704}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "nl", "in_reply_to_user_id_str": null, "source": "Twitter for iPad", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334234845184", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/d0RgJmZ9d4", "source_user_id_str": "564003251", "expanded_url": "http://twitter.com/LouisTopsLarry/status/690889337131630596/photo/1", "source_status_id_str": "690889337131630596", "id_str": "690889333516156930", "source_user_id": 564003251, "media_url_https": "https://pbs.twimg.com/media/CZaIMDdWQAIoc2J.jpg", "id": 690889333516156930, "sizes": {"large": {"h": 586, "w": 669, "resize": "fit"}, "small": {"h": 297, "w": 340, "resize": "fit"}, "medium": {"h": 525, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/d0RgJmZ9d4", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/CZaIMDdWQAIoc2J.jpg", "source_status_id": 690889337131630596}], "user_mentions": [{"name": "s e l i n a", "id": 564003251, "screen_name": "LouisTopsLarry", "id_str": "564003251", "indices": [3, 18]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 13:30:28 +0000 2016", "lang": "nl", "in_reply_to_user_id_str": null, "source": "Twitter for Windows Phone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690889337131630596", "favorite_count": 72, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZaIMDdWQAIoc2J.jpg", "display_url": "pic.twitter.com/d0RgJmZ9d4", "id": 690889333516156930, "type": "photo", "sizes": {"large": {"h": 586, "w": 669, "resize": "fit"}, "small": {"h": 297, "w": 340, "resize": "fit"}, "medium": {"h": 525, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/d0RgJmZ9d4", "indices": [6, 29], "media_url": "http://pbs.twimg.com/media/CZaIMDdWQAIoc2J.jpg", "id_str": "690889333516156930", "expanded_url": "http://twitter.com/LouisTopsLarry/status/690889337131630596/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 67, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Apr 26 20:11:14 +0000 2012", "profile_link_color": "DD2E44", "lang": "en", "time_zone": "Atlantic Time (Canada)", "contributors_enabled": false, "favourites_count": 9672, "utc_offset": -14400, "description": "louisandharry enthusiast", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/564003251/1451431451", "id_str": "564003251", "statuses_count": 104434, "url": null, "profile_use_background_image": true, "name": "s e l i n a", "entities": {"description": {"urls": []}}, "screen_name": "LouisTopsLarry", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453547743282085888/veImF-HI.png", "location": "somewhere in louis' ass", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681979189805727744/a6s1sA9a_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "F6F6F6", "friends_count": 1346, "followers_count": 23122, "verified": false, "id": 564003251, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453547743282085888/veImF-HI.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681979189805727744/a6s1sA9a_normal.png", "profile_background_tile": false, "profile_background_color": "FFFFFF", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 353, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "nl", "result_type": "recent"}, "text": "GEMMA https://t.co/d0RgJmZ9d4", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690889337131630596}, "retweet_count": 67, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Jul 30 13:13:56 +0000 2014", "profile_link_color": "0084B4", "lang": "ar", "time_zone": null, "contributors_enabled": false, "favourites_count": 1923, "utc_offset": null, "description": "liam james payne is very under appreciated and it makes me so mad\u0359", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2692890517/1453070040", "id_str": "2692890517", "statuses_count": 3519, "url": null, "profile_use_background_image": true, "name": "louis", "entities": {"description": {"urls": []}}, "screen_name": "ziampaylikq8", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/688851791371370497/exNJZtuL_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1974, "followers_count": 677, "verified": false, "id": 2692890517, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688851791371370497/exNJZtuL_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "nl", "result_type": "recent"}, "text": "RT @LouisTopsLarry: GEMMA https://t.co/d0RgJmZ9d4", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334234845184}, {"quoted_status": {"created_at": "Sat Jan 23 19:54:46 +0000 2016", "lang": "it", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690986050429263872", "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Feb 15 15:12:48 +0000 2013", "profile_link_color": "ABB8C2", "lang": "it", "time_zone": "Athens", "contributors_enabled": false, "favourites_count": 19157, "utc_offset": 7200, "description": "some days it's not worth trying", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1182923462/1452629589", "id_str": "1182923462", "statuses_count": 116641, "url": null, "profile_use_background_image": true, "name": "platz", "entities": {"description": {"urls": []}}, "screen_name": "danreyvnolds", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/549616189488381952/EG0QHdHc.jpeg", "location": "dancing with the devil", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687004446094667776/t2u1WRou_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6656, "followers_count": 9073, "verified": false, "id": 1182923462, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/549616189488381952/EG0QHdHc.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687004446094667776/t2u1WRou_normal.jpg", "profile_background_tile": false, "profile_background_color": "FFFFFF", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 25, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "it", "result_type": "recent"}, "text": "\ud83d\udc7c\ud83c\udffc50 domande random di lou\ud83d\udc7c\ud83c\udffc\n\n29. come si chiama la tua migliore amica?", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690986050429263872}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "it", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334230593536", "quoted_status_id": 690986050429263872, "contributors": null, "quoted_status_id_str": "690986050429263872", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/danreyvnolds/s\u2026", "indices": [21, 44], "url": "https://t.co/mUkqDWDGmH", "expanded_url": "https://twitter.com/danreyvnolds/status/690986050429263872"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Sep 01 23:36:15 +0000 2015", "profile_link_color": "9266CC", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 3650, "utc_offset": -28800, "description": "Sognarti \u00e8 l'unico modo per averti vicino. @LisaCim \u2022|| 5th January ||\u2022", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3517389753/1453487880", "id_str": "3517389753", "statuses_count": 5817, "url": null, "profile_use_background_image": true, "name": "\u265b", "entities": {"description": {"urls": []}}, "screen_name": "withlisacim", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/689048970178486272/8yfBs__4.jpg", "location": "Los Angeles, CA", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690603993773555712/1eMTOCbo_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 156, "followers_count": 659, "verified": false, "id": 3517389753, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/689048970178486272/8yfBs__4.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690603993773555712/1eMTOCbo_normal.jpg", "profile_background_tile": true, "profile_background_color": "9266CC", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "it", "result_type": "recent"}, "text": "Margherita,Antonella https://t.co/mUkqDWDGmH", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334230593536}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334226526208", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl2mWUAAAX1fL.jpg", "display_url": "pic.twitter.com/73JuZWIipi", "id": 690992319017779200, "type": "photo", "sizes": {"large": {"h": 1024, "w": 575, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 1024, "w": 575, "resize": "fit"}, "small": {"h": 605, "w": 340, "resize": "fit"}}, "url": "https://t.co/73JuZWIipi", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CZbl2mWUAAAX1fL.jpg", "id_str": "690992319017779200", "expanded_url": "http://twitter.com/hamad58829468/status/690992334226526208/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon May 31 08:29:39 +0000 2010", "profile_link_color": "1F98C7", "lang": "en", "time_zone": "Baghdad", "contributors_enabled": false, "favourites_count": 10767, "utc_offset": 10800, "description": "Peace\u2764\ufe0f Justice\u2764\ufe0f Love", "profile_text_color": "663B12", "profile_banner_url": "https://pbs.twimg.com/profile_banners/150179279/1451458118", "id_str": "150179279", "statuses_count": 58800, "url": null, "profile_use_background_image": true, "name": "H&M", "entities": {"description": {"urls": []}}, "screen_name": "hamad58829468", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687678684568940545/ILtxmKXf_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DAECF4", "friends_count": 11062, "followers_count": 11093, "verified": false, "id": 150179279, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687678684568940545/ILtxmKXf_normal.jpg", "profile_background_tile": false, "profile_background_color": "C6E2EE", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 262, "profile_sidebar_border_color": "C6E2EE"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "https://t.co/73JuZWIipi", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334226526208}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334218117120", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/uliwQ1SCb8", "source_user_id_str": "177101260", "expanded_url": "http://twitter.com/Rainmaker1973/status/690980117657587712/photo/1", "source_status_id_str": "690980117657587712", "id_str": "690980115874988032", "source_user_id": 177101260, "media_url_https": "https://pbs.twimg.com/media/CZbawSGWQAAlC-U.png", "id": 690980115874988032, "sizes": {"large": {"h": 633, "w": 1024, "resize": "fit"}, "small": {"h": 210, "w": 340, "resize": "fit"}, "medium": {"h": 371, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/uliwQ1SCb8", "indices": [139, 140], "media_url": "http://pbs.twimg.com/media/CZbawSGWQAAlC-U.png", "source_status_id": 690980117657587712}], "user_mentions": [{"name": "Massimo", "id": 177101260, "screen_name": "Rainmaker1973", "id_str": "177101260", "indices": [3, 17]}], "hashtags": [{"indices": [19, 25], "text": "Today"}, {"indices": [89, 95], "text": "Pluto"}], "urls": [{"display_url": "bit.ly/1S1HWml", "indices": [106, 129], "url": "https://t.co/jATzjhxxyc", "expanded_url": "http://bit.ly/1S1HWml"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:31:12 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690980117657587712", "favorite_count": 58, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbawSGWQAAlC-U.png", "display_url": "pic.twitter.com/uliwQ1SCb8", "id": 690980115874988032, "type": "photo", "sizes": {"large": {"h": 633, "w": 1024, "resize": "fit"}, "small": {"h": 210, "w": 340, "resize": "fit"}, "medium": {"h": 371, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/uliwQ1SCb8", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/CZbawSGWQAAlC-U.png", "id_str": "690980115874988032", "expanded_url": "http://twitter.com/Rainmaker1973/status/690980117657587712/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [0, 6], "text": "Today"}, {"indices": [70, 76], "text": "Pluto"}], "urls": [{"display_url": "bit.ly/1S1HWml", "indices": [87, 110], "url": "https://t.co/jATzjhxxyc", "expanded_url": "http://bit.ly/1S1HWml"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 59, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Aug 11 07:13:13 +0000 2010", "profile_link_color": "1F98C7", "lang": "it", "time_zone": "Rome", "contributors_enabled": false, "favourites_count": 1661, "utc_offset": 3600, "description": "Passionate about astronomy, space imaging & processing, astronautics, meteorology, open source & many other things. Engineer, #STEM \u00bb Science, #ISS & Space news", "profile_text_color": "663B12", "profile_banner_url": "https://pbs.twimg.com/profile_banners/177101260/1422214939", "id_str": "177101260", "statuses_count": 36661, "url": "http://t.co/9NtO8r86UM", "profile_use_background_image": true, "name": "Massimo", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "skylive.it", "indices": [0, 22], "url": "http://t.co/9NtO8r86UM", "expanded_url": "http://www.skylive.it"}]}}, "screen_name": "Rainmaker1973", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/551781899077574656/fxiMBWHy.jpeg", "location": "Italy, North by Northwest", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/686298118904786944/H4aoP8vA_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DAECF4", "friends_count": 195, "followers_count": 4092, "verified": false, "id": 177101260, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/551781899077574656/fxiMBWHy.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686298118904786944/H4aoP8vA_normal.jpg", "profile_background_tile": false, "profile_background_color": "C6E2EE", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 159, "profile_sidebar_border_color": "C6E2EE"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "#Today in 1930, Clyde Tombaugh took the 1st set of plates that led to #Pluto discovery https://t.co/jATzjhxxyc https://t.co/uliwQ1SCb8", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690980117657587712}, "retweet_count": 59, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Apr 26 15:59:37 +0000 2010", "profile_link_color": "325B0A", "lang": "en", "time_zone": "Vilnius", "contributors_enabled": false, "favourites_count": 2669, "utc_offset": 7200, "description": "\u042d\u0442\u043e \u043b\u0438\u0447\u043d\u044b\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442! \u0417\u0434\u0435\u0441\u044c \u043f\u043e\u0447\u0442\u0438 \u043d\u0435\u0442 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u044e\u043c\u043e\u0440\u0430. \u0415\u0441\u0442\u044c \u043c\u043d\u043e\u0433\u043e \u0440\u0435\u0442\u0432\u0438\u0442\u043e\u0432, \u0438 \u043d\u0435\u043c\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0439 \u043e \u0436\u0438\u0437\u043d\u0438, \u043e \u0436\u0435\u043d\u0435, \u043e \u0440\u0435\u0431\u0451\u043d\u043a\u0435. \u0414\u0435\u043b\u0430\u044e \u041f\u0438\u043a\u0441\u0435\u043b\u044c\u043c\u0430\u0442\u043e\u0440. \u041a.\u0444.-\u043c.\u043d.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/137383623/1443017497", "id_str": "137383623", "statuses_count": 19757, "url": null, "profile_use_background_image": true, "name": "\u0411\u0435\u0437\u0443\u043c\u043d\u044b\u0439 \u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a", "entities": {"description": {"urls": []}}, "screen_name": "Soukhinov", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/104231145/flatSide_UD__SR.jpg", "location": "\u0412\u0438\u043b\u044c\u043d\u044e\u0441, \u0440\u0430\u043d\u0435\u0435 \u041c\u043e\u0441\u043a\u0432\u0430,\u0422\u0430\u0433\u0430\u043d\u0440\u043e\u0433", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/615209769264091136/b1Hkdun8_normal.png", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 261, "followers_count": 740, "verified": false, "id": 137383623, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/104231145/flatSide_UD__SR.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/615209769264091136/b1Hkdun8_normal.png", "profile_background_tile": false, "profile_background_color": "AAC6EB", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 33, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @Rainmaker1973: #Today in 1930, Clyde Tombaugh took the 1st set of plates that led to #Pluto discovery https://t.co/jATzjhxxyc https://t\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334218117120}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334218092544", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/FeenbYamZG", "source_user_id_str": "2403939479", "expanded_url": "http://twitter.com/erikaajean8/status/671554627377106944/video/1", "source_status_id_str": "671554627377106944", "id_str": "671554578974838784", "source_user_id": 2403939479, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/671554578974838784/pu/img/Y7mh56aCxEUWTNNc.jpg", "id": 671554578974838784, "sizes": {"large": {"h": 852, "w": 480, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}, "medium": {"h": 852, "w": 480, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/FeenbYamZG", "indices": [62, 85], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/671554578974838784/pu/img/Y7mh56aCxEUWTNNc.jpg", "source_status_id": 671554627377106944}], "user_mentions": [{"name": "erika kristensen", "id": 2403939479, "screen_name": "erikaajean8", "id_str": "2403939479", "indices": [3, 15]}, {"name": "anna arato", "id": 2490837891, "screen_name": "arato_anna", "id_str": "2490837891", "indices": [17, 28]}, {"name": "Alyssa", "id": 1569222258, "screen_name": "AlyssaBurgan1", "id_str": "1569222258", "indices": [29, 43]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Tue Dec 01 05:01:14 +0000 2015", "lang": "en", "in_reply_to_user_id_str": "2490837891", "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "671554627377106944", "favorite_count": 3, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/671554578974838784/pu/img/Y7mh56aCxEUWTNNc.jpg", "display_url": "pic.twitter.com/FeenbYamZG", "id": 671554578974838784, "type": "photo", "sizes": {"large": {"h": 852, "w": 480, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}, "medium": {"h": 852, "w": 480, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/FeenbYamZG", "indices": [45, 68], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/671554578974838784/pu/img/Y7mh56aCxEUWTNNc.jpg", "id_str": "671554578974838784", "expanded_url": "http://twitter.com/erikaajean8/status/671554627377106944/video/1"}], "user_mentions": [{"name": "anna arato", "id": 2490837891, "screen_name": "arato_anna", "id_str": "2490837891", "indices": [0, 11]}, {"name": "Alyssa", "id": 1569222258, "screen_name": "AlyssaBurgan1", "id_str": "1569222258", "indices": [12, 26]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Mar 12 05:04:23 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 14427, "utc_offset": null, "description": "#lake", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2403939479/1452053925", "id_str": "2403939479", "statuses_count": 665, "url": "https://t.co/NMFQ4Ultfo", "profile_use_background_image": true, "name": "erika kristensen", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "Instagram.com/erikajean8", "indices": [0, 23], "url": "https://t.co/NMFQ4Ultfo", "expanded_url": "http://Instagram.com/erikajean8"}]}}, "screen_name": "erikaajean8", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Florida", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/684589897970270209/VzfhjH7F_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 183, "followers_count": 245, "verified": false, "id": 2403939479, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684589897970270209/VzfhjH7F_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "@arato_anna @AlyssaBurgan1 definitely my fav https://t.co/FeenbYamZG", "in_reply_to_user_id": 2490837891, "is_quote_status": false, "in_reply_to_screen_name": "arato_anna", "truncated": false, "retweeted": false, "coordinates": null, "id": 671554627377106944}, "retweet_count": 2, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jul 05 15:08:52 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 7440, "utc_offset": null, "description": "yo. live love Han!!!", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2605636952/1453380604", "id_str": "2605636952", "statuses_count": 2472, "url": null, "profile_use_background_image": true, "name": "KDOGG", "entities": {"description": {"urls": []}}, "screen_name": "KristenWortmanc", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/687839866894323712/qYqQ6nM7_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 206, "followers_count": 297, "verified": false, "id": 2605636952, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687839866894323712/qYqQ6nM7_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @erikaajean8: @arato_anna @AlyssaBurgan1 definitely my fav https://t.co/FeenbYamZG", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334218092544}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334217965568", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/uDpAJl91pk", "source_user_id_str": "4646210204", "expanded_url": "http://twitter.com/SoftSerina/status/690885571741368320/photo/1", "source_status_id_str": "690885571741368320", "id_str": "690885571682660352", "source_user_id": 4646210204, "media_url_https": "https://pbs.twimg.com/media/CZaExFiWcAAxsSB.jpg", "id": 690885571682660352, "sizes": {"large": {"h": 500, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 500, "w": 500, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/uDpAJl91pk", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/CZaExFiWcAAxsSB.jpg", "source_status_id": 690885571741368320}], "user_mentions": [{"name": "Serina Ash", "id": 4646210204, "screen_name": "SoftSerina", "id_str": "4646210204", "indices": [3, 14]}], "hashtags": [], "urls": [{"display_url": "youkandy.com/softSerina/vote", "indices": [59, 82], "url": "https://t.co/BlCzniHuCJ", "expanded_url": "http://www.youkandy.com/softSerina/vote"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 13:15:30 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "YouKandy", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690885571741368320", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZaExFiWcAAxsSB.jpg", "display_url": "pic.twitter.com/uDpAJl91pk", "id": 690885571682660352, "type": "photo", "sizes": {"large": {"h": 500, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 500, "w": 500, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/uDpAJl91pk", "indices": [67, 90], "media_url": "http://pbs.twimg.com/media/CZaExFiWcAAxsSB.jpg", "id_str": "690885571682660352", "expanded_url": "http://twitter.com/SoftSerina/status/690885571741368320/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [{"display_url": "youkandy.com/softSerina/vote", "indices": [43, 66], "url": "https://t.co/BlCzniHuCJ", "expanded_url": "http://www.youkandy.com/softSerina/vote"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Dec 25 00:41:14 +0000 2015", "profile_link_color": "F5ABB5", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 77, "utc_offset": null, "description": "inked babe, libra crystal child, embraces the other side.", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4646210204/1453176625", "id_str": "4646210204", "statuses_count": 107, "url": "https://t.co/iFXTWvSBjm", "profile_use_background_image": false, "name": "Serina Ash", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mygirlfund.com/public/lilLotus", "indices": [0, 23], "url": "https://t.co/iFXTWvSBjm", "expanded_url": "http://mygirlfund.com/public/lilLotus"}]}}, "screen_name": "SoftSerina", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Canada", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/689298712766500865/VCJgQvaS_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 105, "followers_count": 118, "verified": false, "id": 4646210204, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689298712766500865/VCJgQvaS_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 4, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "YouKandy Model of the Month - Vote for me! https://t.co/BlCzniHuCJ https://t.co/uDpAJl91pk", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690885571741368320}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Dec 24 15:05:05 +0000 2013", "profile_link_color": "0099B9", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 18744, "utc_offset": -18000, "description": "I post nudity 18+ pls ,IM A GUY Moderator,Promote #cammodels, #TeamEpic,header is @epiphany666cb, https://t.co/zltRbcvNal", "profile_text_color": "3D1957", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2260379365/1436923261", "id_str": "2260379365", "statuses_count": 120473, "url": null, "profile_use_background_image": false, "name": "1tommo (18+)", "entities": {"description": {"urls": [{"display_url": "itsmyurls.com/epiphany_666", "indices": [99, 122], "url": "https://t.co/zltRbcvNal", "expanded_url": "http://itsmyurls.com/epiphany_666"}]}}, "screen_name": "Tom1tommo", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/679833068417478656/n0jFv6yP_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "7AC3EE", "friends_count": 2820, "followers_count": 6988, "verified": false, "id": 2260379365, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679833068417478656/n0jFv6yP_normal.jpg", "profile_background_tile": false, "profile_background_color": "3B94D9", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 114, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @SoftSerina: YouKandy Model of the Month - Vote for me! https://t.co/BlCzniHuCJ https://t.co/uDpAJl91pk", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334217965568}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPad", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334209593344", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/vvbgPBCgYu", "source_user_id_str": "3066794588", "expanded_url": "http://twitter.com/RereRhman/status/690984366990843904/photo/1", "source_status_id_str": "690984366990843904", "id_str": "690984364595908608", "source_user_id": 3066794588, "media_url_https": "https://pbs.twimg.com/media/CZbenl0WkAA_B0I.jpg", "id": 690984364595908608, "sizes": {"large": {"h": 637, "w": 418, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 637, "w": 418, "resize": "fit"}, "small": {"h": 518, "w": 340, "resize": "fit"}}, "url": "https://t.co/vvbgPBCgYu", "indices": [72, 95], "media_url": "http://pbs.twimg.com/media/CZbenl0WkAA_B0I.jpg", "source_status_id": 690984366990843904}], "user_mentions": [{"name": "Rhman", "id": 3066794588, "screen_name": "RereRhman", "id_str": "3066794588", "indices": [3, 13]}, {"name": "Victor Nick", "id": 2842640571, "screen_name": "VictorNickol", "id_str": "2842640571", "indices": [15, 28]}, {"name": "\u611b\u7f8e\u7fbd(Amiha)", "id": 3314165305, "screen_name": "amiha_mu", "id_str": "3314165305", "indices": [29, 38]}, {"name": "Klaudia", "id": 2387991079, "screen_name": "She_Devil643", "id_str": "2387991079", "indices": [39, 52]}, {"name": "Jekyl", "id": 2485444069, "screen_name": "Jekyl2", "id_str": "2485444069", "indices": [53, 60]}, {"name": "Ceni", "id": 3357277319, "screen_name": "peac4love", "id_str": "3357277319", "indices": [61, 71]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:48:05 +0000 2016", "lang": "und", "in_reply_to_user_id_str": "2842640571", "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": 690983145131343873, "favorited": false, "id_str": "690984366990843904", "favorite_count": 4, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbenl0WkAA_B0I.jpg", "display_url": "pic.twitter.com/vvbgPBCgYu", "id": 690984364595908608, "type": "photo", "sizes": {"large": {"h": 637, "w": 418, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 637, "w": 418, "resize": "fit"}, "small": {"h": 518, "w": 340, "resize": "fit"}}, "url": "https://t.co/vvbgPBCgYu", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/CZbenl0WkAA_B0I.jpg", "id_str": "690984364595908608", "expanded_url": "http://twitter.com/RereRhman/status/690984366990843904/photo/1"}], "user_mentions": [{"name": "Victor Nick", "id": 2842640571, "screen_name": "VictorNickol", "id_str": "2842640571", "indices": [0, 13]}, {"name": "\u611b\u7f8e\u7fbd(Amiha)", "id": 3314165305, "screen_name": "amiha_mu", "id_str": "3314165305", "indices": [14, 23]}, {"name": "Klaudia", "id": 2387991079, "screen_name": "She_Devil643", "id_str": "2387991079", "indices": [24, 37]}, {"name": "Jekyl", "id": 2485444069, "screen_name": "Jekyl2", "id_str": "2485444069", "indices": [38, 45]}, {"name": "Ceni", "id": 3357277319, "screen_name": "peac4love", "id_str": "3357277319", "indices": [46, 56]}], "hashtags": [], "urls": [], "symbols": []}, "place": {"id": "b62cd77425868341", "country_code": "IQ", "url": "https://api.twitter.com/1.1/geo/id/b62cd77425868341.json", "bounding_box": {"type": "Polygon", "coordinates": [[[38.7947010004891, 29.0717100004153], [48.5759079995109, 29.0717100004153], [48.5759079995109, 37.3780399995847], [38.7947010004891, 37.3780399995847]]]}, "name": "Iraq", "country": "Iraq", "place_type": "country", "full_name": "Iraq", "attributes": {}, "contained_within": []}, "possibly_sensitive": false, "retweet_count": 5, "in_reply_to_status_id_str": "690983145131343873", "user": {"notifications": false, "created_at": "Sat Mar 07 15:10:53 +0000 2015", "profile_link_color": "FF0000", "lang": "en", "time_zone": "Baghdad", "contributors_enabled": false, "favourites_count": 29936, "utc_offset": 10800, "description": "Electric Engineer\nthe friendship\n is sacred\n..I love flowers \n hobby is \nwriting.\npainting, poetry \n\u0627\u0644\u0635\u062f\u0627\u0642\u0629 \u0639\u0646\u062f\u064a \u0645\u0642\u062f\u0633\u0629 .\u0627\u062d\u0628 \u0627\u0644\u0632\u0647\u0648\u0631.\u0647\u0648\u0627\u064a\u062a\u064a \u0627\u0644\u0631\u0633\u0645 \u0648\u0627\u0644\u0634\u0639\u0631\u0648\u0627\u0644\u0643\u062a\u0627\u0628\u0629", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3066794588/1450016399", "id_str": "3066794588", "statuses_count": 34866, "url": null, "profile_use_background_image": true, "name": "Rhman", "entities": {"description": {"urls": []}}, "screen_name": "RereRhman", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/657316654569889792/vuQ1RSLt.jpg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/634696545053507585/aGaXtEWS_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 10952, "followers_count": 10193, "verified": false, "id": 3066794588, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/657316654569889792/vuQ1RSLt.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634696545053507585/aGaXtEWS_normal.jpg", "profile_background_tile": true, "profile_background_color": "94D487", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 49, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "@VictorNickol @amiha_mu @She_Devil643 @Jekyl2 @peac4love https://t.co/vvbgPBCgYu", "in_reply_to_user_id": 2842640571, "is_quote_status": false, "in_reply_to_screen_name": "VictorNickol", "truncated": false, "retweeted": false, "coordinates": null, "id": 690984366990843904}, "retweet_count": 5, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun May 26 22:54:01 +0000 2013", "profile_link_color": "F6BEB0", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 26385, "utc_offset": -21600, "description": "", "profile_text_color": "ECD6C2", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1460831929/1453385418", "id_str": "1460831929", "statuses_count": 31140, "url": null, "profile_use_background_image": true, "name": "EarthAngel", "entities": {"description": {"urls": []}}, "screen_name": "bbuie42", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "BFE", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690580572863737857/ZQhJ3CHL_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "EDDAE1", "friends_count": 4991, "followers_count": 3260, "verified": false, "id": 1460831929, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690580572863737857/ZQhJ3CHL_normal.jpg", "profile_background_tile": false, "profile_background_color": "FDAB98", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 53, "profile_sidebar_border_color": "DBCED7"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @RereRhman: @VictorNickol @amiha_mu @She_Devil643 @Jekyl2 @peac4love https://t.co/vvbgPBCgYu", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334209593344}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334205493248", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/Awok1R2bgy", "source_user_id_str": "3008465239", "expanded_url": "http://twitter.com/Centrally/status/690879710121848832/video/1", "source_status_id_str": "690879710121848832", "id_str": "690879556861980672", "source_user_id": 3008465239, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690879556861980672/pu/img/-KKmv_MmmJR720rc.jpg", "id": 690879556861980672, "sizes": {"large": {"h": 576, "w": 1024, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 338, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/Awok1R2bgy", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690879556861980672/pu/img/-KKmv_MmmJR720rc.jpg", "source_status_id": 690879710121848832}], "user_mentions": [{"name": "Waifu Depot", "id": 3093193521, "screen_name": "WaifuDepot", "id_str": "3093193521", "indices": [3, 14]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:00:42 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690987542733283333", "favorite_count": 126, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/Awok1R2bgy", "source_user_id_str": "3008465239", "expanded_url": "http://twitter.com/Centrally/status/690879710121848832/video/1", "source_status_id_str": "690879710121848832", "id_str": "690879556861980672", "source_user_id": 3008465239, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690879556861980672/pu/img/-KKmv_MmmJR720rc.jpg", "id": 690879556861980672, "sizes": {"large": {"h": 576, "w": 1024, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 338, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/Awok1R2bgy", "indices": [0, 23], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690879556861980672/pu/img/-KKmv_MmmJR720rc.jpg", "source_status_id": 690879710121848832}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 116, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 17 19:54:43 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 76, "utc_offset": -28800, "description": "I've been told I post lewds. Turn on notifications!\u2800\u2800 \u2800 \u2800 I do not own any content posted #HentaiHive creator of #ThighHighThursday instagram @WaifuDepot", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3093193521/1438937783", "id_str": "3093193521", "statuses_count": 19606, "url": null, "profile_use_background_image": true, "name": "Waifu Depot", "entities": {"description": {"urls": []}}, "screen_name": "WaifuDepot", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "NSFW 18+", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/681633636664360960/D7LWhFiz_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 977, "followers_count": 22508, "verified": false, "id": 3093193521, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681633636664360960/D7LWhFiz_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 99, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "https://t.co/Awok1R2bgy", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690987542733283333}, "retweet_count": 116, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Dec 11 19:36:27 +0000 2012", "profile_link_color": "0099B9", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 28740, "utc_offset": null, "description": "Sophia the Gnostic Goddess of Wisdom. Eris the Greek Goddess of Chaos & Disorder. BA Business Administration/Marketing. Writer. Dyslexic. Anti-Establishment.", "profile_text_color": "3C3940", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1004731904/1436755663", "id_str": "1004731904", "statuses_count": 18464, "url": null, "profile_use_background_image": true, "name": "Sophia Eris", "entities": {"description": {"urls": []}}, "screen_name": "HiddenTara", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "location": "New York, USA", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/663608442020618240/AEpr3IVm_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "95E8EC", "friends_count": 379, "followers_count": 4445, "verified": false, "id": 1004731904, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/663608442020618240/AEpr3IVm_normal.jpg", "profile_background_tile": false, "profile_background_color": "0099B9", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 71, "profile_sidebar_border_color": "5ED4DC"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @WaifuDepot: https://t.co/Awok1R2bgy", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334205493248}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "fr", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334205489152", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/AdO6Np9x2C", "source_user_id_str": "1421841582", "expanded_url": "http://twitter.com/sehunpink/status/690974350061760512/photo/1", "source_status_id_str": "690974350061760512", "id_str": "690974225566437376", "source_user_id": 1421841582, "media_url_https": "https://pbs.twimg.com/media/CZbVZa_WkAAfE2p.jpg", "id": 690974225566437376, "sizes": {"large": {"h": 1820, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 1066, "w": 600, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}}, "url": "https://t.co/AdO6Np9x2C", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/CZbVZa_WkAAfE2p.jpg", "source_status_id": 690974350061760512}], "user_mentions": [{"name": "\uc544\uc2a4\ud2b8\ub85c", "id": 1421841582, "screen_name": "sehunpink", "id_str": "1421841582", "indices": [3, 13]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:08:17 +0000 2016", "lang": "fr", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690974350061760512", "favorite_count": 9, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbVZa_WkAAfE2p.jpg", "display_url": "pic.twitter.com/AdO6Np9x2C", "id": 690974225566437376, "type": "photo", "sizes": {"large": {"h": 1820, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 1066, "w": 600, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}}, "url": "https://t.co/AdO6Np9x2C", "indices": [31, 54], "media_url": "http://pbs.twimg.com/media/CZbVZa_WkAAfE2p.jpg", "id_str": "690974225566437376", "expanded_url": "http://twitter.com/sehunpink/status/690974350061760512/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 21, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun May 12 00:01:09 +0000 2013", "profile_link_color": "ABB8C2", "lang": "fr", "time_zone": "Athens", "contributors_enabled": false, "favourites_count": 2056, "utc_offset": 7200, "description": "ASTRO | hunhan protection squad tg", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1421841582/1453481905", "id_str": "1421841582", "statuses_count": 63297, "url": null, "profile_use_background_image": true, "name": "\uc544\uc2a4\ud2b8\ub85c", "entities": {"description": {"urls": []}}, "screen_name": "sehunpink", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461647450055274497/1lau4JMx.jpeg", "location": "@offclASTRO ", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690640522461995008/uRQfj61__normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 442, "followers_count": 1387, "verified": false, "id": 1421841582, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461647450055274497/1lau4JMx.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690640522461995008/uRQfj61__normal.jpg", "profile_background_tile": false, "profile_background_color": "FFFFFF", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 14, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "fr", "result_type": "recent"}, "text": "TOP A LA SORTIE DU D\u00c9FIL\u00c9 DIOR https://t.co/AdO6Np9x2C", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690974350061760512}, "retweet_count": 21, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Apr 09 18:37:54 +0000 2011", "profile_link_color": "D19B9F", "lang": "fr", "time_zone": "Paris", "contributors_enabled": false, "favourites_count": 3667, "utc_offset": 3600, "description": "je forcerais avec Gruvia mm apr\u00e8s ma mort", "profile_text_color": "FFF2F6", "profile_banner_url": "https://pbs.twimg.com/profile_banners/279655445/1453458499", "id_str": "279655445", "statuses_count": 44588, "url": "https://t.co/2mApYWgZ2s", "profile_use_background_image": true, "name": "Kyou No Kira-Kun", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "fairy-tail--gruvia.skyrock.com/3169142109-LE-\u2026", "indices": [0, 23], "url": "https://t.co/2mApYWgZ2s", "expanded_url": "http://fairy-tail--gruvia.skyrock.com/3169142109-LE-GRUVIA-POSSIBLE-OU-PAS.html"}]}}, "screen_name": "OBISHISUI", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468088467033817088/3pO_Pbni.jpeg", "location": "#ninjarab", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690481108992028673/-fnm5gnt_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 95, "followers_count": 1354, "verified": false, "id": 279655445, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468088467033817088/3pO_Pbni.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690481108992028673/-fnm5gnt_normal.jpg", "profile_background_tile": false, "profile_background_color": "FFFFFF", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 12, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "fr", "result_type": "recent"}, "text": "RT @sehunpink: TOP A LA SORTIE DU D\u00c9FIL\u00c9 DIOR https://t.co/AdO6Np9x2C", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334205489152}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334201294848", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "natalie sarah", "id": 1474133851, "screen_name": "nataliexsarah", "id_str": "1474133851", "indices": [3, 17]}], "hashtags": [], "urls": [{"display_url": "twitter.com/liberalzayn/st\u2026", "indices": [34, 57], "url": "https://t.co/BPiUCsSazS", "expanded_url": "https://twitter.com/liberalzayn/status/684878020075765760"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"quoted_status": {"created_at": "Wed Jan 06 23:23:39 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "684878020075765760", "favorite_count": 68, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CYEs7YFWEAAPXnZ.jpg", "display_url": "pic.twitter.com/YssB5o1WXU", "id": 684878016925798400, "type": "photo", "sizes": {"large": {"h": 1024, "w": 768, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}}, "url": "https://t.co/YssB5o1WXU", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/CYEs7YFWEAAPXnZ.jpg", "id_str": "684878016925798400", "expanded_url": "http://twitter.com/liberalzayn/status/684878020075765760/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 3, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Sep 08 21:44:13 +0000 2010", "profile_link_color": "F598CD", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 4748, "utc_offset": -18000, "description": "18. nyc. college student. feminist. future first Indian-American president. makeup enthusiast. pro-hoe. pro-zayn. she/her #feelthebern2k16 #blacklivesmatter", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/188496829/1449895481", "id_str": "188496829", "statuses_count": 65827, "url": "https://t.co/uIIdN7S63a", "profile_use_background_image": true, "name": "nikki", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stfuzayn.tumblr.com", "indices": [0, 23], "url": "https://t.co/uIIdN7S63a", "expanded_url": "http://stfuzayn.tumblr.com"}]}}, "screen_name": "liberalzayn", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "location": "nyc", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687535361376010240/8fqYMEGJ_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "F6F6F6", "friends_count": 336, "followers_count": 5120, "verified": false, "id": 188496829, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687535361376010240/8fqYMEGJ_normal.jpg", "profile_background_tile": false, "profile_background_color": "ACDED6", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 51, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "snipped off 7 inches \ud83d\udc87\ud83c\udffe\ud83d\udc87\ud83c\udffe\ud83d\udc87\ud83c\udffe https://t.co/YssB5o1WXU", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 684878020075765760}, "created_at": "Sat Jan 23 20:18:58 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992137970712576", "quoted_status_id": 684878020075765760, "contributors": null, "quoted_status_id_str": "684878020075765760", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/liberalzayn/st\u2026", "indices": [15, 38], "url": "https://t.co/BPiUCsSazS", "expanded_url": "https://twitter.com/liberalzayn/status/684878020075765760"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jun 01 08:03:45 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 11865, "utc_offset": -28800, "description": "writer // feminist // desi \u2800\u2800 \u2800\u2800\u2800\u2800 \u2800\u2800 \u2800\u2800\u2800\u2800 \u2764\ufe0fXII\u2022XXVII\u2022MMXIV\u2764\ufe0f\u2800\u2800 \u2800\u2800\u2800\u2800 \u2800\u2800 \u2800\u2800\u2800\u2800\u2800\u2800\u2800 @FeministAngeIs", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1474133851/1453517969", "id_str": "1474133851", "statuses_count": 24642, "url": "https://t.co/zwHUGUd7y2", "profile_use_background_image": true, "name": "natalie sarah", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "zazzle.com/feministfinds", "indices": [0, 23], "url": "https://t.co/zwHUGUd7y2", "expanded_url": "http://www.zazzle.com/feministfinds"}]}}, "screen_name": "nataliexsarah", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Bay Area | Los Angeles", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690730543692918785/A5hVKTz4_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 418, "followers_count": 1727, "verified": false, "id": 1474133851, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690730543692918785/A5hVKTz4_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 10, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "\ud83d\ude0dsuch a beauty https://t.co/BPiUCsSazS", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992137970712576}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Sep 08 21:44:13 +0000 2010", "profile_link_color": "F598CD", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 4748, "utc_offset": -18000, "description": "18. nyc. college student. feminist. future first Indian-American president. makeup enthusiast. pro-hoe. pro-zayn. she/her #feelthebern2k16 #blacklivesmatter", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/188496829/1449895481", "id_str": "188496829", "statuses_count": 65827, "url": "https://t.co/uIIdN7S63a", "profile_use_background_image": true, "name": "nikki", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stfuzayn.tumblr.com", "indices": [0, 23], "url": "https://t.co/uIIdN7S63a", "expanded_url": "http://stfuzayn.tumblr.com"}]}}, "screen_name": "liberalzayn", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "location": "nyc", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687535361376010240/8fqYMEGJ_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "F6F6F6", "friends_count": 336, "followers_count": 5120, "verified": false, "id": 188496829, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687535361376010240/8fqYMEGJ_normal.jpg", "profile_background_tile": false, "profile_background_color": "ACDED6", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 51, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @nataliexsarah: \ud83d\ude0dsuch a beauty https://t.co/BPiUCsSazS", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334201294848}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter Spor D\u00fcnyas\u0131n\u0131n Ka\u00e7\u0131rma", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334197133312", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/1t0s2Ylodp", "source_user_id_str": "1499266621", "expanded_url": "http://twitter.com/demarkesports/status/690978111450681344/photo/1", "source_status_id_str": "690978111450681344", "id_str": "690977778653642752", "source_user_id": 1499266621, "media_url_https": "https://pbs.twimg.com/media/CZbYoPRWwAAkQGL.jpg", "id": 690977778653642752, "sizes": {"large": {"h": 369, "w": 594, "resize": "fit"}, "small": {"h": 211, "w": 340, "resize": "fit"}, "medium": {"h": 369, "w": 594, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/1t0s2Ylodp", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/CZbYoPRWwAAkQGL.jpg", "source_status_id": 690978111450681344}], "user_mentions": [{"name": "ForMonde", "id": 3318839999, "screen_name": "formondesport", "id_str": "3318839999", "indices": [3, 17]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:32:23 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter Spor D\u00fcnyas\u0131n\u0131n Ka\u00e7\u0131rma", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690980417168629761", "favorite_count": 57, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/1t0s2Ylodp", "source_user_id_str": "1499266621", "expanded_url": "http://twitter.com/demarkesports/status/690978111450681344/photo/1", "source_status_id_str": "690978111450681344", "id_str": "690977778653642752", "source_user_id": 1499266621, "media_url_https": "https://pbs.twimg.com/media/CZbYoPRWwAAkQGL.jpg", "id": 690977778653642752, "sizes": {"large": {"h": 369, "w": 594, "resize": "fit"}, "small": {"h": 211, "w": 340, "resize": "fit"}, "medium": {"h": 369, "w": 594, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/1t0s2Ylodp", "indices": [87, 110], "media_url": "http://pbs.twimg.com/media/CZbYoPRWwAAkQGL.jpg", "source_status_id": 690978111450681344}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 80, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jun 11 12:05:27 +0000 2015", "profile_link_color": "4A913C", "lang": "tr", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 0, "utc_offset": -28800, "description": "Formonde Resmi Twitter Hesab\u0131 Spor'a dair her \u015fey. Bir \u00e7ok twitter hesab\u0131n\u0131 sizin ad\u0131n\u0131za takip ediyor ve tweetlerini tek bir hesaptan at\u0131yoruz.", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3318839999/1436368300", "id_str": "3318839999", "statuses_count": 13661, "url": null, "profile_use_background_image": false, "name": "ForMonde", "entities": {"description": {"urls": []}}, "screen_name": "formondesport", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "T\u00fcrkiye", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/635075188758065152/iQOg5g0G_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 496, "followers_count": 37674, "verified": false, "id": 3318839999, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635075188758065152/iQOg5g0G_normal.png", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 14, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "Premier League'de Manchester City, deplasmanda West Ham United ile 2-2 berabere kald\u0131. https://t.co/1t0s2Ylodp", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690980417168629761}, "retweet_count": 80, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Aug 18 08:25:16 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 1844, "utc_offset": null, "description": "Neymar Kabakulak oldu ben bittimmmm eto bitmi\u015f", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3429551927/1439886482", "id_str": "3429551927", "statuses_count": 1963, "url": null, "profile_use_background_image": true, "name": "Sultan Kat\u0131lan", "entities": {"description": {"urls": []}}, "screen_name": "sultan_lan", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "\u0130stanbul, T\u00fcrkiye", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/633555886057893888/M9rz3gMs_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 301, "followers_count": 317, "verified": false, "id": 3429551927, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/633555886057893888/M9rz3gMs_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @formondesport: Premier League'de Manchester City, deplasmanda West Ham United ile 2-2 berabere kald\u0131. https://t.co/1t0s2Ylodp", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334197133312}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": "28455329", "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334192930816", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "Scott Cardle", "id": 28455329, "screen_name": "ScottyCardle", "id_str": "28455329", "indices": [0, 13]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jan 23 19:03:10 +0000 2016", "profile_link_color": "2B7BB9", "lang": "en-gb", "time_zone": null, "contributors_enabled": false, "favourites_count": 0, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4839438953/1453577277", "id_str": "4839438953", "statuses_count": 32, "url": null, "profile_use_background_image": true, "name": "KO BOXING", "entities": {"description": {"urls": []}}, "screen_name": "koboxing555", "protected": false, "profile_background_image_url": null, "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690974807693901824/cKao9--q_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 148, "followers_count": 4, "verified": false, "id": 4839438953, "default_profile_image": false, "profile_background_image_url_https": null, "profile_image_url_https": "https://pbs.twimg.com/profile_images/690974807693901824/cKao9--q_normal.jpg", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "@ScottyCardle scotty can i get a RT for my twitter boxing page", "in_reply_to_user_id": 28455329, "is_quote_status": false, "in_reply_to_screen_name": "ScottyCardle", "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334192930816}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334184513536", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/FFc8YcZp1G", "source_user_id_str": "11912362", "expanded_url": "http://twitter.com/WORLDSTAR/status/690984294504792064/video/1", "source_status_id_str": "690984294504792064", "id_str": "690984217488928768", "source_user_id": 11912362, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690984217488928768/pu/img/UazJQ4cY6A_FqOEn.jpg", "id": 690984217488928768, "sizes": {"large": {"h": 640, "w": 640, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/FFc8YcZp1G", "indices": [26, 49], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690984217488928768/pu/img/UazJQ4cY6A_FqOEn.jpg", "source_status_id": 690984294504792064}], "user_mentions": [{"name": "WORLDSTARHIPHOP", "id": 11912362, "screen_name": "WORLDSTAR", "id_str": "11912362", "indices": [3, 13]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:47:48 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690984294504792064", "favorite_count": 541, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690984217488928768/pu/img/UazJQ4cY6A_FqOEn.jpg", "display_url": "pic.twitter.com/FFc8YcZp1G", "id": 690984217488928768, "type": "photo", "sizes": {"large": {"h": 640, "w": 640, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/FFc8YcZp1G", "indices": [11, 34], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690984217488928768/pu/img/UazJQ4cY6A_FqOEn.jpg", "id_str": "690984217488928768", "expanded_url": "http://twitter.com/WORLDSTAR/status/690984294504792064/video/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 556, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jan 06 18:06:13 +0000 2008", "profile_link_color": "961D15", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 26, "utc_offset": -21600, "description": "Entertainment and News Media. iOS and Android apps available for download!", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/11912362/1405360887", "id_str": "11912362", "statuses_count": 6080, "url": "http://t.co/C8TM1V3fnB", "profile_use_background_image": true, "name": "WORLDSTARHIPHOP", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "worldstarhiphop.com", "indices": [0, 22], "url": "http://t.co/C8TM1V3fnB", "expanded_url": "http://www.worldstarhiphop.com"}]}}, "screen_name": "WORLDSTAR", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/837199766/6d8d79d41f75ecac86ee8c5cc4466cf6.jpeg", "location": "USA", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/488738791511703552/cxf92nyL_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDFFCC", "friends_count": 2458, "followers_count": 1194424, "verified": true, "id": 11912362, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/837199766/6d8d79d41f75ecac86ee8c5cc4466cf6.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488738791511703552/cxf92nyL_normal.png", "profile_background_tile": false, "profile_background_color": "999999", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 2720, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Trap Queen https://t.co/FFc8YcZp1G", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690984294504792064}, "retweet_count": 556, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Aug 05 19:27:09 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 6385, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3307129596/1449611307", "id_str": "3307129596", "statuses_count": 9112, "url": null, "profile_use_background_image": true, "name": "Destiny", "entities": {"description": {"urls": []}}, "screen_name": "_destiny_v", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/683411807986409472/_8dJTZUF_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 531, "followers_count": 328, "verified": false, "id": 3307129596, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683411807986409472/_8dJTZUF_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @WORLDSTAR: Trap Queen https://t.co/FFc8YcZp1G", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334184513536}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPad", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334180347905", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "R.\u00c5.W", "id": 721416101, "screen_name": "rodnesha__", "id_str": "721416101", "indices": [3, 14]}], "hashtags": [], "urls": [{"display_url": "twitter.com/fashthreads/st\u2026", "indices": [18, 41], "url": "https://t.co/DXIgl8Ftmf", "expanded_url": "https://twitter.com/fashthreads/status/680484770552348672"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"quoted_status": {"created_at": "Fri Dec 25 20:26:26 +0000 2015", "lang": "en", "in_reply_to_user_id_str": "4485371716", "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": 680483679349661696, "in_reply_to_screen_name": "Fashthreads", "id_str": "680484770552348672", "favorite_count": 133, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CXGRRIZWsAAS_oH.jpg", "display_url": "pic.twitter.com/oy9E7INsb5", "id": 680484742207287296, "type": "photo", "sizes": {"large": {"h": 773, "w": 639, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 725, "w": 600, "resize": "fit"}, "small": {"h": 411, "w": 340, "resize": "fit"}}, "url": "https://t.co/oy9E7INsb5", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/CXGRRIZWsAAS_oH.jpg", "id_str": "680484742207287296", "expanded_url": "http://twitter.com/Fashthreads/status/680484770552348672/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [10, 17], "text": "thread"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 34, "in_reply_to_status_id_str": "680483679349661696", "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "Which one #thread https://t.co/oy9E7INsb5", "in_reply_to_user_id": 4485371716, "is_quote_status": false, "favorited": false, "truncated": false, "retweeted": false, "coordinates": null, "id": 680484770552348672}, "created_at": "Sat Jan 23 19:59:03 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690987128369586176", "quoted_status_id": 680484770552348672, "contributors": null, "quoted_status_id_str": "680484770552348672", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/fashthreads/st\u2026", "indices": [2, 25], "url": "https://t.co/DXIgl8Ftmf", "expanded_url": "https://twitter.com/fashthreads/status/680484770552348672"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Oct 18 22:11:16 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 1334, "utc_offset": null, "description": "\u269c Snapchat ~ Rodnesha001 \u269c \u2764\ufe0f11/18/15\u2764\ufe0f", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/721416101/1453389410", "id_str": "721416101", "statuses_count": 16072, "url": null, "profile_use_background_image": true, "name": "R.\u00c5.W", "entities": {"description": {"urls": []}}, "screen_name": "rodnesha__", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/687049101049987074/B5la34ul_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 688, "followers_count": 961, "verified": false, "id": 721416101, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687049101049987074/B5la34ul_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "2 https://t.co/DXIgl8Ftmf", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690987128369586176}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Aug 04 22:31:37 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 7551, "utc_offset": null, "description": "Just Me & My Girlfriend \u2763 Liltoddyb \u2764\ufe0f MVP \u26a0\ufe0f", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1646306125/1453509181", "id_str": "1646306125", "statuses_count": 47112, "url": null, "profile_use_background_image": true, "name": "k i d d", "entities": {"description": {"urls": []}}, "screen_name": "Toddyb_", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "EastsideMadeMe", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/689165323451396096/LI0kjA-6_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 770, "followers_count": 922, "verified": false, "id": 1646306125, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689165323451396096/LI0kjA-6_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @rodnesha__: 2 https://t.co/DXIgl8Ftmf", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334180347905}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "pt", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334180343808", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/zF1eZjwn0L", "source_user_id_str": "313579547", "expanded_url": "http://twitter.com/telryeevelin/status/690931963381833728/photo/1", "source_status_id_str": "690931963381833728", "id_str": "690931828493017088", "source_user_id": 313579547, "media_url_https": "https://pbs.twimg.com/media/CZau1llWYAAeQtY.jpg", "id": 690931828493017088, "sizes": {"large": {"h": 768, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/zF1eZjwn0L", "indices": [76, 99], "media_url": "http://pbs.twimg.com/media/CZau1llWYAAeQtY.jpg", "source_status_id": 690931963381833728}], "user_mentions": [{"name": "Telryane", "id": 313579547, "screen_name": "telryeevelin", "id_str": "313579547", "indices": [3, 16]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 16:19:51 +0000 2016", "lang": "pt", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690931963381833728", "favorite_count": 7, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZau1llWYAAeQtY.jpg", "display_url": "pic.twitter.com/zF1eZjwn0L", "id": 690931828493017088, "type": "photo", "sizes": {"large": {"h": 768, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/zF1eZjwn0L", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/CZau1llWYAAeQtY.jpg", "id_str": "690931828493017088", "expanded_url": "http://twitter.com/telryeevelin/status/690931963381833728/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 4, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Jun 08 21:46:39 +0000 2011", "profile_link_color": "0099B9", "lang": "pt", "time_zone": "Santiago", "contributors_enabled": false, "favourites_count": 402, "utc_offset": -10800, "description": "Agora eu me curei", "profile_text_color": "3C3940", "profile_banner_url": "https://pbs.twimg.com/profile_banners/313579547/1452040318", "id_str": "313579547", "statuses_count": 16899, "url": null, "profile_use_background_image": true, "name": "Telryane", "entities": {"description": {"urls": []}}, "screen_name": "telryeevelin", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "location": "Brasil ", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690344265306738689/YyQJwKuw_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "95E8EC", "friends_count": 141, "followers_count": 337, "verified": false, "id": 313579547, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690344265306738689/YyQJwKuw_normal.jpg", "profile_background_tile": false, "profile_background_color": "0099B9", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "5ED4DC"}, "metadata": {"iso_language_code": "pt", "result_type": "recent"}, "text": "Quando o crush demora pra responder / quando ele responde https://t.co/zF1eZjwn0L", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690931963381833728}, "retweet_count": 4, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Jan 24 02:24:04 +0000 2011", "profile_link_color": "9D582E", "lang": "pt", "time_zone": "Brasilia", "contributors_enabled": false, "favourites_count": 859, "utc_offset": -7200, "description": "N\u00e3o me segue, estou perdido tamb\u00e9m", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/242150656/1452821004", "id_str": "242150656", "statuses_count": 10304, "url": null, "profile_use_background_image": true, "name": "waldenis", "entities": {"description": {"urls": []}}, "screen_name": "WaldenisTrindad", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000020238748/adf56ea49e5a61c9d89bd8430710e23b.jpeg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690265844866224128/iNfT6WX3_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 437, "followers_count": 791, "verified": false, "id": 242150656, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000020238748/adf56ea49e5a61c9d89bd8430710e23b.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690265844866224128/iNfT6WX3_normal.jpg", "profile_background_tile": true, "profile_background_color": "8B542B", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "pt", "result_type": "recent"}, "text": "RT @telryeevelin: Quando o crush demora pra responder / quando ele responde https://t.co/zF1eZjwn0L", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334180343808}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334176124928", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/8eqjCgiqNC", "source_user_id_str": "447586114", "expanded_url": "http://twitter.com/HlSPANICHOES/status/690926660099551232/photo/1", "source_status_id_str": "690926660099551232", "id_str": "690926654642737152", "source_user_id": 447586114, "media_url_https": "https://pbs.twimg.com/media/CZaqIbfUUAAFRG_.jpg", "id": 690926654642737152, "sizes": {"large": {"h": 1024, "w": 577, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 1024, "w": 577, "resize": "fit"}, "small": {"h": 603, "w": 340, "resize": "fit"}}, "url": "https://t.co/8eqjCgiqNC", "indices": [139, 140], "media_url": "http://pbs.twimg.com/media/CZaqIbfUUAAFRG_.jpg", "source_status_id": 690926660099551232}], "user_mentions": [{"name": "\ufe0f", "id": 447586114, "screen_name": "HlSPANICHOES", "id_str": "447586114", "indices": [3, 16]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 15:58:47 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690926660099551232", "favorite_count": 442, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZaqIbfUUAAFRG_.jpg", "display_url": "pic.twitter.com/8eqjCgiqNC", "id": 690926654642737152, "type": "photo", "sizes": {"large": {"h": 1024, "w": 577, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 1024, "w": 577, "resize": "fit"}, "small": {"h": 603, "w": 340, "resize": "fit"}}, "url": "https://t.co/8eqjCgiqNC", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/CZaqIbfUUAAFRG_.jpg", "id_str": "690926654642737152", "expanded_url": "http://twitter.com/HlSPANICHOES/status/690926660099551232/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 450, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Dec 27 02:15:01 +0000 2011", "profile_link_color": "E8CEED", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 31081, "utc_offset": -21600, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/447586114/1453350394", "id_str": "447586114", "statuses_count": 57905, "url": null, "profile_use_background_image": true, "name": "\ufe0f", "entities": {"description": {"urls": []}}, "screen_name": "HlSPANICHOES", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "#YaMeCanse #BlackLivesMatter", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690044501419769856/hKfWx65C_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 199, "followers_count": 11672, "verified": false, "id": 447586114, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690044501419769856/hKfWx65C_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 22, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "You see this. The queen, Eleanor. Sipping champagne. Getting her nails done. Unbothered, while y'all are pressed. https://t.co/8eqjCgiqNC", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690926660099551232}, "retweet_count": 450, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Dec 08 13:03:02 +0000 2013", "profile_link_color": "0084B4", "lang": "en-gb", "time_zone": "London", "contributors_enabled": false, "favourites_count": 26502, "utc_offset": 0, "description": "\u2022 I'm happy if the boys are \u2022", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2213925347/1453416554", "id_str": "2213925347", "statuses_count": 41128, "url": "https://t.co/3wYnuRG3NW", "profile_use_background_image": true, "name": "If I Could Fly", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "24.media.tumblr.com/250672601f6458\u2026", "indices": [0, 23], "url": "https://t.co/3wYnuRG3NW", "expanded_url": "http://24.media.tumblr.com/250672601f6458dec4ab9536f61e6fd8/tumblr_mwu1vnWO771rp9rjdo2_250.gif"}]}}, "screen_name": "boubblyhes", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "UK", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690305177321132032/I2M52-UB_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1371, "followers_count": 1961, "verified": false, "id": 2213925347, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690305177321132032/I2M52-UB_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 60, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @HlSPANICHOES: You see this. The queen, Eleanor. Sipping champagne. Getting her nails done. Unbothered, while y'all are pressed. https:/\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334176124928}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "tr", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334163595268", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "\u0130cimizdekipic", "id": 1200493022, "screen_name": "icimizdekipic", "id_str": "1200493022", "indices": [3, 17]}], "hashtags": [], "urls": [{"display_url": "pic.twitter.com/OSw8tTuDGh", "indices": [41, 64], "url": "https://t.co/OSw8tTuDGh", "expanded_url": "http://twitter.com/icimizdekipic/status/690952132514693121/photo/1"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 17:40:00 +0000 2016", "lang": "tr", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690952132514693121", "favorite_count": 555, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "pic.twitter.com/OSw8tTuDGh", "indices": [22, 45], "url": "https://t.co/OSw8tTuDGh", "expanded_url": "http://twitter.com/icimizdekipic/status/690952132514693121/photo/1"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 263, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Feb 20 10:53:53 +0000 2013", "profile_link_color": "DD2E44", "lang": "tr", "time_zone": "Istanbul", "contributors_enabled": false, "favourites_count": 4908, "utc_offset": 7200, "description": "Fevk\u00e2l\u00e2de/\u0130leti\u015fim; icimizdekipic@yandex.com\nSnapchat; icimizdekipic", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1200493022/1418358106", "id_str": "1200493022", "statuses_count": 1841, "url": null, "profile_use_background_image": true, "name": "\u0130cimizdekipic", "entities": {"description": {"urls": []}}, "screen_name": "icimizdekipic", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "location": "\u0130zmir, T\u00fcrkiye", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659516481114259456/HRA0jOWt_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 207, "followers_count": 211658, "verified": false, "id": 1200493022, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659516481114259456/HRA0jOWt_normal.jpg", "profile_background_tile": true, "profile_background_color": "DD2E44", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 215, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "tr", "result_type": "recent"}, "text": "yapacag\u0131n isi sikeyim https://t.co/OSw8tTuDGh", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690952132514693121}, "retweet_count": 263, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Apr 15 16:02:57 +0000 2013", "profile_link_color": "FFCC4D", "lang": "tr", "time_zone": "Baghdad", "contributors_enabled": false, "favourites_count": 30078, "utc_offset": 10800, "description": "Kar\u015f\u0131yaka / Bu hayatta bitek kupa k\u0131z\u0131n\u0131n kalbi vard\u0131 oda kendini kumarda harcad\u0131 /", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1354678476/1452902489", "id_str": "1354678476", "statuses_count": 27182, "url": "https://t.co/riVfnLnw5K", "profile_use_background_image": true, "name": "Ma\u00e7a K\u0131z\u0131", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/anormalprofil/", "indices": [0, 23], "url": "https://t.co/riVfnLnw5K", "expanded_url": "https://www.instagram.com/anormalprofil/"}]}}, "screen_name": "anormalprofil", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/634983640833880064/fk-GaHUH.jpg", "location": "\u0130zmir, T\u00fcrkiye", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688740946507362304/I2VfMABq_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 226, "followers_count": 764, "verified": false, "id": 1354678476, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/634983640833880064/fk-GaHUH.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688740946507362304/I2VfMABq_normal.jpg", "profile_background_tile": true, "profile_background_color": "4A913C", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 2, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "tr", "result_type": "recent"}, "text": "RT @icimizdekipic: yapacag\u0131n isi sikeyim https://t.co/OSw8tTuDGh", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334163595268}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334159396864", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/O9Da1p2Uhj", "source_user_id_str": "554759703", "expanded_url": "http://twitter.com/pornorasta/status/681500608289968129/video/1", "source_status_id_str": "681500608289968129", "id_str": "681499850379255809", "source_user_id": 554759703, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/681499850379255809/pu/img/EFlwlxH3bpA9BU8N.jpg", "id": 681499850379255809, "sizes": {"large": {"h": 1280, "w": 720, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}, "medium": {"h": 1067, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/O9Da1p2Uhj", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/681499850379255809/pu/img/EFlwlxH3bpA9BU8N.jpg", "source_status_id": 681500608289968129}], "user_mentions": [{"name": "Luis Lopez", "id": 3864818725, "screen_name": "luis9872aa", "id_str": "3864818725", "indices": [3, 14]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Tue Jan 19 02:33:41 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "689274501020913664", "favorite_count": 47, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/O9Da1p2Uhj", "source_user_id_str": "554759703", "expanded_url": "http://twitter.com/pornorasta/status/681500608289968129/video/1", "source_status_id_str": "681500608289968129", "id_str": "681499850379255809", "source_user_id": 554759703, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/681499850379255809/pu/img/EFlwlxH3bpA9BU8N.jpg", "id": 681499850379255809, "sizes": {"large": {"h": 1280, "w": 720, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}, "medium": {"h": 1067, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/O9Da1p2Uhj", "indices": [0, 23], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/681499850379255809/pu/img/EFlwlxH3bpA9BU8N.jpg", "source_status_id": 681500608289968129}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 16, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Oct 12 02:14:23 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 138, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3864818725/1447084075", "id_str": "3864818725", "statuses_count": 11674, "url": null, "profile_use_background_image": true, "name": "Luis Lopez", "entities": {"description": {"urls": []}}, "screen_name": "luis9872aa", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Baltimore, MD", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/654257632237252608/v36Yxyhl_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1263, "followers_count": 5373, "verified": false, "id": 3864818725, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654257632237252608/v36Yxyhl_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 9, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "https://t.co/O9Da1p2Uhj", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 689274501020913664}, "retweet_count": 16, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Sep 13 18:52:28 +0000 2012", "profile_link_color": "93A644", "lang": "es", "time_zone": "Atlantic Time (Canada)", "contributors_enabled": false, "favourites_count": 2392, "utc_offset": -14400, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/822010262/1363194226", "id_str": "822010262", "statuses_count": 54483, "url": null, "profile_use_background_image": true, "name": "Lenin #Puerto Rico", "entities": {"description": {"urls": []}}, "screen_name": "lenin_rico", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "location": "Puerto Rico/ San Juan", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3375544792/3476c24e6a23df4a6bae8e87a99a6fc1_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "FFFFFF", "friends_count": 1744, "followers_count": 2268, "verified": false, "id": 822010262, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3375544792/3476c24e6a23df4a6bae8e87a99a6fc1_normal.jpeg", "profile_background_tile": false, "profile_background_color": "B2DFDA", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 32, "profile_sidebar_border_color": "EEEEEE"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @luis9872aa: https://t.co/O9Da1p2Uhj", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334159396864}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334155223042", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/ye9j2xcaQK", "source_user_id_str": "2899919287", "expanded_url": "http://twitter.com/30SecondScene/status/627976249441320960/video/1", "source_status_id_str": "627976249441320960", "id_str": "627976011729088512", "source_user_id": 2899919287, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/627976011729088512/pu/img/dHP8CgGguc0T-SDx.jpg", "id": 627976011729088512, "sizes": {"large": {"h": 480, "w": 854, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 337, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/ye9j2xcaQK", "indices": [64, 87], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/627976011729088512/pu/img/dHP8CgGguc0T-SDx.jpg", "source_status_id": 627976249441320960}], "user_mentions": [{"name": "Movie Scenes", "id": 266673703, "screen_name": "MOVlECLIPS", "id_str": "266673703", "indices": [3, 14]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Fri Jan 22 20:34:57 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690633774481047552", "favorite_count": 7988, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/ye9j2xcaQK", "source_user_id_str": "2899919287", "expanded_url": "http://twitter.com/30SecondScene/status/627976249441320960/video/1", "source_status_id_str": "627976249441320960", "id_str": "627976011729088512", "source_user_id": 2899919287, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/627976011729088512/pu/img/dHP8CgGguc0T-SDx.jpg", "id": 627976011729088512, "sizes": {"large": {"h": 480, "w": 854, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 337, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/ye9j2xcaQK", "indices": [48, 71], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/627976011729088512/pu/img/dHP8CgGguc0T-SDx.jpg", "source_status_id": 627976249441320960}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 6982, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 15 16:24:21 +0000 2011", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 53, "utc_offset": -28800, "description": "Tweeting the best scenes, trailers and more !", "profile_text_color": "333333", "profile_link_color": "009999", "id_str": "266673703", "statuses_count": 34, "url": null, "profile_use_background_image": true, "name": "Movie Scenes", "entities": {"description": {"urls": []}}, "screen_name": "MOVlECLIPS", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688258169571643392/qwE_YlWq_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 0, "followers_count": 88686, "verified": false, "id": 266673703, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688258169571643392/qwE_YlWq_normal.jpg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 21, "profile_sidebar_border_color": "EEEEEE"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Disney and Pixar will never be able to top this https://t.co/ye9j2xcaQK", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690633774481047552}, "retweet_count": 6982, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Nov 21 19:33:02 +0000 2011", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 7276, "utc_offset": null, "description": "I'm just boolin no third letters in the alphabet for me 215/856 TEAM ABA", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/418111526/1441438451", "id_str": "418111526", "statuses_count": 19822, "url": null, "profile_use_background_image": true, "name": "Slim Dunkin", "entities": {"description": {"urls": []}}, "screen_name": "wileyking23", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "traphouse", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/675281620665020416/hSTNkJSD_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 953, "followers_count": 1349, "verified": false, "id": 418111526, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675281620665020416/hSTNkJSD_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @MOVlECLIPS: Disney and Pixar will never be able to top this https://t.co/ye9j2xcaQK", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334155223042}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": "524557650", "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": 690990757184954368, "favorited": false, "id_str": "690992334155177984", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3RJW0AA1Z7T.jpg", "display_url": "pic.twitter.com/layE2h5Fhf", "id": 690992330506162176, "type": "photo", "sizes": {"large": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/layE2h5Fhf", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/CZbl3RJW0AA1Z7T.jpg", "id_str": "690992330506162176", "expanded_url": "http://twitter.com/shulii_shu/status/690992334155177984/photo/1"}], "user_mentions": [{"name": "Lucas", "id": 524557650, "screen_name": "CaceresLucasOk", "id_str": "524557650", "indices": [0, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": "690990757184954368", "user": {"notifications": false, "created_at": "Wed Mar 26 14:48:53 +0000 2014", "profile_link_color": "DD2E44", "lang": "es", "time_zone": "Buenos Aires", "contributors_enabled": false, "favourites_count": 1400, "utc_offset": -10800, "description": "*\u00bfQUE MIRAS?* instagram:https://t.co/jhHvtxTiMN", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2412718856/1442589661", "id_str": "2412718856", "statuses_count": 15237, "url": "https://t.co/Tye02aUcqQ", "profile_use_background_image": true, "name": "lunita", "entities": {"description": {"urls": [{"display_url": "instagram.com/shuliibarua/", "indices": [25, 48], "url": "https://t.co/jhHvtxTiMN", "expanded_url": "http://instagram.com/shuliibarua/"}]}, "url": {"urls": [{"display_url": "facebook.com/yulii.barua", "indices": [0, 23], "url": "https://t.co/Tye02aUcqQ", "expanded_url": "https://www.facebook.com/yulii.barua"}]}}, "screen_name": "shulii_shu", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/627539418769965056/IeH-ndc3.jpg", "location": "Buenos Aires, Argentina", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690978279763894272/2fr_d1WZ_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "F6F6F6", "friends_count": 671, "followers_count": 769, "verified": false, "id": 2412718856, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/627539418769965056/IeH-ndc3.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690978279763894272/2fr_d1WZ_normal.jpg", "profile_background_tile": true, "profile_background_color": "3B94D9", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 2, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "@CaceresLucasOk https://t.co/layE2h5Fhf", "in_reply_to_user_id": 524557650, "is_quote_status": false, "in_reply_to_screen_name": "CaceresLucasOk", "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334155177984}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334155087872", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "trillary rodham", "id": 23916186, "screen_name": "thePHAmemonster", "id_str": "23916186", "indices": [3, 19]}], "hashtags": [], "urls": [{"display_url": "twitter.com/TrivvTheViner/\u2026", "indices": [35, 58], "url": "https://t.co/WEvSwYXqlZ", "expanded_url": "https://twitter.com/TrivvTheViner/status/690991705718296576"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"quoted_status": {"created_at": "Thu Jan 21 19:19:54 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690252500234993664", "favorite_count": 6211, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690252369074884608/pu/img/xt9VebA1jAMhw0De.jpg", "display_url": "pic.twitter.com/Wp6qUsumPl", "id": 690252369074884608, "type": "photo", "sizes": {"large": {"h": 1024, "w": 1024, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/Wp6qUsumPl", "indices": [62, 85], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690252369074884608/pu/img/xt9VebA1jAMhw0De.jpg", "id_str": "690252369074884608", "expanded_url": "http://twitter.com/TrivvTheViner/status/690252500234993664/video/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 6706, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jun 14 17:32:57 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 894, "utc_offset": -28800, "description": "Business Email: daimarrkeys@gmail.com.. Follow my other social media same @ name", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3245389201/1452766282", "id_str": "3245389201", "statuses_count": 310, "url": "https://t.co/HNLfETfvX4", "profile_use_background_image": true, "name": "Dad", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "vine.co/TrivvTheViner", "indices": [0, 23], "url": "https://t.co/HNLfETfvX4", "expanded_url": "http://vine.co/TrivvTheViner"}]}}, "screen_name": "TrivvTheViner", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "San Diego, CA", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/689605722179371008/T8b4z-1o_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 421, "followers_count": 18283, "verified": false, "id": 3245389201, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689605722179371008/T8b4z-1o_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "These snapchat filters getting out of hand\ud83d\ude02\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude02\ud83d\ude02\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude13\ud83d\ude13\ud83d\ude13\ud83d\ude13\ud83d\ude13\ud83d\ude13\ud83d\ude13 https://t.co/Wp6qUsumPl", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690252500234993664}, "created_at": "Sat Jan 23 20:19:06 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Echofon", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992172087275521", "quoted_status_id": 690252500234993664, "contributors": null, "quoted_status_id_str": "690252500234993664", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/TrivvTheViner/\u2026", "indices": [14, 37], "url": "https://t.co/WEvSwYXqlZ", "expanded_url": "https://twitter.com/TrivvTheViner/status/690991705718296576"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Mar 12 07:14:56 +0000 2009", "profile_link_color": "8F0000", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 313, "utc_offset": -18000, "description": "public relations. advertising. brand development. promotion. | CAU'12 FS'14 | Leader of the Nation of TRILLslam | #PettyGodmother | OES-PHA", "profile_text_color": "8A8A8A", "profile_banner_url": "https://pbs.twimg.com/profile_banners/23916186/1441244638", "id_str": "23916186", "statuses_count": 107757, "url": "https://t.co/ysv2DMJfT2", "profile_use_background_image": false, "name": "trillary rodham", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "petty-pablo.tumblr.com", "indices": [0, 23], "url": "https://t.co/ysv2DMJfT2", "expanded_url": "http://petty-pablo.tumblr.com/"}]}}, "screen_name": "thePHAmemonster", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/684802804/b5e8a2626d973d26424b07d33d5c088d.png", "location": "port arthur tx. louisiana. atl", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673387096955035648/IRQ3FpY8_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 751, "followers_count": 2038, "verified": false, "id": 23916186, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/684802804/b5e8a2626d973d26424b07d33d5c088d.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673387096955035648/IRQ3FpY8_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 44, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "I'm yelling \ud83d\ude02 https://t.co/WEvSwYXqlZ", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992172087275521}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jun 14 17:32:57 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 894, "utc_offset": -28800, "description": "Business Email: daimarrkeys@gmail.com.. Follow my other social media same @ name", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3245389201/1452766282", "id_str": "3245389201", "statuses_count": 310, "url": "https://t.co/HNLfETfvX4", "profile_use_background_image": true, "name": "Dad", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "vine.co/TrivvTheViner", "indices": [0, 23], "url": "https://t.co/HNLfETfvX4", "expanded_url": "http://vine.co/TrivvTheViner"}]}}, "screen_name": "TrivvTheViner", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "San Diego, CA", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/689605722179371008/T8b4z-1o_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 421, "followers_count": 18283, "verified": false, "id": 3245389201, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689605722179371008/T8b4z-1o_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @thePHAmemonster: I'm yelling \ud83d\ude02 https://t.co/WEvSwYXqlZ", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334155087872}, {"quoted_status": {"created_at": "Sat Jan 23 20:17:34 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690991785259069441", "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [{"name": "Alexis Gonzales", "id": 2727629591, "screen_name": "YeahhhLex_", "id_str": "2727629591", "indices": [41, 52]}, {"name": "india(:", "id": 2912132428, "screen_name": "rhodess_indiaa", "id_str": "2912132428", "indices": [53, 68]}, {"name": "Abby Molinary", "id": 2727012725, "screen_name": "MolinaryAbby", "id_str": "2727012725", "indices": [69, 82]}, {"name": "Holly Harper", "id": 2249828670, "screen_name": "__hollymarieee", "id_str": "2249828670", "indices": [83, 98]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Aug 15 20:52:47 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 1841, "utc_offset": -21600, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2743842695/1452356833", "id_str": "2743842695", "statuses_count": 5781, "url": null, "profile_use_background_image": true, "name": "jay", "entities": {"description": {"urls": []}}, "screen_name": "GinartJayne", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Chalmette, LA", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/689660615258812416/Q8sRei7F_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 334, "followers_count": 455, "verified": false, "id": 2743842695, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689660615258812416/Q8sRei7F_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Me & my girls gonna look \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d tonight @YeahhhLex_ @rhodess_indiaa @MolinaryAbby @__hollymarieee", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690991785259069441}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334146678786", "quoted_status_id": 690991785259069441, "contributors": null, "quoted_status_id_str": "690991785259069441", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/ginartjayne/st\u2026", "indices": [18, 41], "url": "https://t.co/A1xkNmsKYW", "expanded_url": "https://twitter.com/ginartjayne/status/690991785259069441"}], "symbols": []}, "place": {"id": "d5ff8d9603da85da", "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/d5ff8d9603da85da.json", "bounding_box": {"type": "Polygon", "coordinates": [[[-89.995787, 29.925458], [-89.930331, 29.925458], [-89.930331, 29.968588], [-89.995787, 29.968588]]]}, "name": "Chalmette", "country": "United States", "place_type": "city", "full_name": "Chalmette, LA", "attributes": {}, "contained_within": []}, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Jul 28 21:36:00 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 5792, "utc_offset": null, "description": "sc-ajgonzales21", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2727629591/1453422043", "id_str": "2727629591", "statuses_count": 7774, "url": null, "profile_use_background_image": true, "name": "Alexis Gonzales", "entities": {"description": {"urls": []}}, "screen_name": "YeahhhLex_", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "New Orleans, LA", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/686231151631990784/Y1bAKcK7_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 493, "followers_count": 666, "verified": false, "id": 2727629591, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686231151631990784/Y1bAKcK7_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "When do we not \ud83e\udd14? https://t.co/A1xkNmsKYW", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334146678786}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334142607360", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/WyTXVnbOkt", "source_user_id_str": "392173462", "expanded_url": "http://twitter.com/purposedebut/status/690880856689274880/photo/1", "source_status_id_str": "690880856689274880", "id_str": "690880852159377408", "source_user_id": 392173462, "media_url_https": "https://pbs.twimg.com/media/CZaAeX8UMAAuueX.jpg", "id": 690880852159377408, "sizes": {"large": {"h": 795, "w": 599, "resize": "fit"}, "small": {"h": 451, "w": 340, "resize": "fit"}, "medium": {"h": 795, "w": 599, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/WyTXVnbOkt", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/CZaAeX8UMAAuueX.jpg", "source_status_id": 690880856689274880}], "user_mentions": [{"name": "Justin Bieber Stan", "id": 392173462, "screen_name": "purposedebut", "id_str": "392173462", "indices": [3, 16]}], "hashtags": [{"indices": [46, 72], "text": "WeWillAlwaysBeThereJustin"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 12:56:46 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690880856689274880", "favorite_count": 67, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZaAeX8UMAAuueX.jpg", "display_url": "pic.twitter.com/WyTXVnbOkt", "id": 690880852159377408, "type": "photo", "sizes": {"large": {"h": 795, "w": 599, "resize": "fit"}, "small": {"h": 451, "w": 340, "resize": "fit"}, "medium": {"h": 795, "w": 599, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/WyTXVnbOkt", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CZaAeX8UMAAuueX.jpg", "id_str": "690880852159377408", "expanded_url": "http://twitter.com/purposedebut/status/690880856689274880/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [28, 54], "text": "WeWillAlwaysBeThereJustin"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 215, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Oct 16 17:08:59 +0000 2011", "profile_link_color": "ABB8C2", "lang": "en-gb", "time_zone": "Athens", "contributors_enabled": false, "favourites_count": 1454, "utc_offset": 7200, "description": "@satan: You saved yourself from coming to Hell @justinbieber", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/392173462/1452968914", "id_str": "392173462", "statuses_count": 91926, "url": null, "profile_use_background_image": true, "name": "Justin Bieber Stan", "entities": {"description": {"urls": []}}, "screen_name": "purposedebut", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/647129636716048384/VL8yRlq3.jpg", "location": "canadastrillogy", "is_translation_enabled": true, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688427558937858048/PQxyhjCi_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 6036, "followers_count": 63507, "verified": false, "id": 392173462, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/647129636716048384/VL8yRlq3.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688427558937858048/PQxyhjCi_normal.png", "profile_background_tile": true, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 233, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "life is worth living again \n#WeWillAlwaysBeThereJustin https://t.co/WyTXVnbOkt", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690880856689274880}, "retweet_count": 215, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jan 09 14:48:44 +0000 2016", "profile_link_color": "2B7BB9", "lang": "nl", "time_zone": null, "contributors_enabled": false, "favourites_count": 454, "utc_offset": null, "description": "i don't understand how so many people can hate such a perfect person @justinbieber he's my everything\n\nfollow me for more Bieber news", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4755262763/1452948708", "id_str": "4755262763", "statuses_count": 1271, "url": "https://t.co/WahrbsfpGW", "profile_use_background_image": true, "name": "JUSTIN FOLLOW ME PLS", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/JustinBieber", "indices": [0, 23], "url": "https://t.co/WahrbsfpGW", "expanded_url": "http://instagram.com/JustinBieber"}]}}, "screen_name": "JelanaOfficial", "protected": false, "profile_background_image_url": null, "location": "Canadian, TX", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/688421172938182656/Pi4-N_87_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 52, "followers_count": 73, "verified": false, "id": 4755262763, "default_profile_image": false, "profile_background_image_url_https": null, "profile_image_url_https": "https://pbs.twimg.com/profile_images/688421172938182656/Pi4-N_87_normal.jpg", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @purposedebut: life is worth living again \n#WeWillAlwaysBeThereJustin https://t.co/WyTXVnbOkt", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334142607360}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334142574592", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/tkRRUPxwCG", "source_user_id_str": "20208162", "expanded_url": "http://twitter.com/iShootShxt/status/653776569866039296/video/1", "source_status_id_str": "653776569866039296", "id_str": "653776154709487616", "source_user_id": 20208162, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/653776154709487616/pu/img/GIRMWaJMzNEm8Qnk.jpg", "id": 653776154709487616, "sizes": {"large": {"h": 640, "w": 640, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/tkRRUPxwCG", "indices": [43, 66], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/653776154709487616/pu/img/GIRMWaJMzNEm8Qnk.jpg", "source_status_id": 653776569866039296}], "user_mentions": [{"name": "WORLD STAR HIPHOP", "id": 401004551, "screen_name": "WSHHVlDEOS", "id_str": "401004551", "indices": [3, 14]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Fri Jan 22 19:16:52 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690614121105113088", "favorite_count": 3010, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/tkRRUPxwCG", "source_user_id_str": "20208162", "expanded_url": "http://twitter.com/iShootShxt/status/653776569866039296/video/1", "source_status_id_str": "653776569866039296", "id_str": "653776154709487616", "source_user_id": 20208162, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/653776154709487616/pu/img/GIRMWaJMzNEm8Qnk.jpg", "id": 653776154709487616, "sizes": {"large": {"h": 640, "w": 640, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/tkRRUPxwCG", "indices": [27, 50], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/653776154709487616/pu/img/GIRMWaJMzNEm8Qnk.jpg", "source_status_id": 653776569866039296}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 3134, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Oct 29 22:18:37 +0000 2011", "profile_link_color": "3B94D9", "lang": "en", "time_zone": "Alaska", "contributors_enabled": false, "favourites_count": 194, "utc_offset": -32400, "description": "Funniest tweets on twitter | Turn on notifications | Not affiliated with World Star Hiphop | Parody", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/401004551/1453077128", "id_str": "401004551", "statuses_count": 10942, "url": null, "profile_use_background_image": true, "name": "WORLD STAR HIPHOP", "entities": {"description": {"urls": []}}, "screen_name": "WSHHVlDEOS", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453287711097364480/as-k-nSq.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688864804233064448/9FBGjYgP_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 160, "followers_count": 425257, "verified": false, "id": 401004551, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453287711097364480/as-k-nSq.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688864804233064448/9FBGjYgP_normal.jpg", "profile_background_tile": true, "profile_background_color": "ABB8C2", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 306, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "BRUHHHHH LMFAOOOOOOO \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\n\n https://t.co/tkRRUPxwCG", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690614121105113088}, "retweet_count": 3134, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Dec 13 21:50:56 +0000 2012", "profile_link_color": "3B94D9", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 333, "utc_offset": null, "description": "Chelsea through and through.", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1009804759/1440685747", "id_str": "1009804759", "statuses_count": 16740, "url": null, "profile_use_background_image": false, "name": "the bruce", "entities": {"description": {"urls": []}}, "screen_name": "ekow_swanzy", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "House of Exile", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/551317083502280704/b8S9aT69_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 290, "followers_count": 339, "verified": false, "id": 1009804759, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/551317083502280704/b8S9aT69_normal.jpeg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 3, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @WSHHVlDEOS: BRUHHHHH LMFAOOOOOOO \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\n\n https://t.co/tkRRUPxwCG", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334142574592}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334138380288", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "E-Mannel #TeamPoker", "id": 3664060763, "screen_name": "_emannel_", "id_str": "3664060763", "indices": [3, 13]}, {"name": "Paula Gonzalez", "id": 2814483534, "screen_name": "paula_GH15", "id_str": "2814483534", "indices": [24, 35]}], "hashtags": [], "urls": [{"display_url": "twitter.com/yungleyt/statu\u2026", "indices": [37, 60], "url": "https://t.co/qgEZwxbz6B", "expanded_url": "https://twitter.com/yungleyt/status/690965568107712512"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"quoted_status": {"created_at": "Sat Jan 23 18:33:23 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690965568107712512", "favorite_count": 44, "contributors": null, "entities": {"user_mentions": [{"name": "Paula Gonzalez", "id": 2814483534, "screen_name": "paula_GH15", "id_str": "2814483534", "indices": [49, 60]}], "hashtags": [], "urls": [{"display_url": "youtu.be/N-IaQ5LSTpg", "indices": [66, 89], "url": "https://t.co/QK3JkOnloA", "expanded_url": "http://youtu.be/N-IaQ5LSTpg"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 24, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jun 11 18:22:07 +0000 2015", "profile_link_color": "4A913C", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 2822, "utc_offset": null, "description": "Relax Relax | 13.000 Subs | Youtube |", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3319333857/1451746180", "id_str": "3319333857", "statuses_count": 5558, "url": null, "profile_use_background_image": false, "name": "Yungle", "entities": {"description": {"urls": []}}, "screen_name": "yungleyt", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Espa\u00f1a", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687578225837486080/EQGqvwVH_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 97, "followers_count": 668, "verified": false, "id": 3319333857, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687578225837486080/EQGqvwVH_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 2, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Nuevo V\u00eddeo! \ud83d\udce2\ud83d\udce2\n\nBroma Telef\u00f3nica a PAULA de GH!\n@paula_GH15 \ud83d\udd36\ud83d\udd38\ud83d\udd39\n\nhttps://t.co/QK3JkOnloA \ud83c\udff5\ud83c\udf97\n\nMuchas risas..JAJAJA! \ud83d\ude02\ud83d\ude02\n\nRT! \ud83d\ude2c", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690965568107712512}, "created_at": "Sat Jan 23 20:18:50 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992104068247552", "quoted_status_id": 690965568107712512, "contributors": null, "quoted_status_id_str": "690965568107712512", "entities": {"user_mentions": [{"name": "Paula Gonzalez", "id": 2814483534, "screen_name": "paula_GH15", "id_str": "2814483534", "indices": [9, 20]}], "hashtags": [], "urls": [{"display_url": "twitter.com/yungleyt/statu\u2026", "indices": [22, 45], "url": "https://t.co/qgEZwxbz6B", "expanded_url": "https://twitter.com/yungleyt/status/690965568107712512"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "favorite_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Sep 15 12:58:47 +0000 2015", "profile_link_color": "0084B4", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 2507, "utc_offset": null, "description": "\u2022Ser conocido en TW o Instagram equivale a ser rico en el monopoly, es decir, un monton de nada.\n\n\n\u2022 #TEAMPOKER (GHVIP), #TEAMESPA\u00d1OLES (VCTE)", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3664060763/1453056407", "id_str": "3664060763", "statuses_count": 9358, "url": "https://t.co/PYCpXdAVPZ", "profile_use_background_image": true, "name": "E-Mannel #TeamPoker", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "granhermano.com", "indices": [0, 23], "url": "https://t.co/PYCpXdAVPZ", "expanded_url": "http://www.granhermano.com"}]}}, "screen_name": "_emannel_", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "\u00a1Siguenos!", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/681955491367522304/Vwn5Ny5m_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 215, "followers_count": 266, "verified": false, "id": 3664060763, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681955491367522304/Vwn5Ny5m_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Memeo\u2665\u2665\u2665 @paula_GH15 https://t.co/qgEZwxbz6B", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992104068247552}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jun 11 18:22:07 +0000 2015", "profile_link_color": "4A913C", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 2822, "utc_offset": null, "description": "Relax Relax | 13.000 Subs | Youtube |", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3319333857/1451746180", "id_str": "3319333857", "statuses_count": 5558, "url": null, "profile_use_background_image": false, "name": "Yungle", "entities": {"description": {"urls": []}}, "screen_name": "yungleyt", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Espa\u00f1a", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687578225837486080/EQGqvwVH_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 97, "followers_count": 668, "verified": false, "id": 3319333857, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687578225837486080/EQGqvwVH_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 2, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @_emannel_: Memeo\u2665\u2665\u2665 @paula_GH15 https://t.co/qgEZwxbz6B", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334138380288}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334138257409", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/YXjIWoQpRi", "source_user_id_str": "1302010249", "expanded_url": "http://twitter.com/iComidaPorno/status/491264299185471488/photo/1", "source_status_id_str": "491264299185471488", "id_str": "491264297889067010", "source_user_id": 1302010249, "media_url_https": "https://pbs.twimg.com/media/BtFSRq6CcAIqNBI.jpg", "id": 491264297889067010, "sizes": {"large": {"h": 375, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 375, "w": 500, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/YXjIWoQpRi", "indices": [49, 72], "media_url": "http://pbs.twimg.com/media/BtFSRq6CcAIqNBI.jpg", "source_status_id": 491264299185471488}], "user_mentions": [{"name": "Comida Porno!", "id": 1302010249, "screen_name": "iComidaPorno", "id_str": "1302010249", "indices": [3, 16]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 15:43:34 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "TaanMuk", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690922830687371264", "favorite_count": 58, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/YXjIWoQpRi", "source_user_id_str": "1302010249", "expanded_url": "http://twitter.com/iComidaPorno/status/491264299185471488/photo/1", "source_status_id_str": "491264299185471488", "id_str": "491264297889067010", "source_user_id": 1302010249, "media_url_https": "https://pbs.twimg.com/media/BtFSRq6CcAIqNBI.jpg", "id": 491264297889067010, "sizes": {"large": {"h": 375, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 375, "w": 500, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/YXjIWoQpRi", "indices": [31, 54], "media_url": "http://pbs.twimg.com/media/BtFSRq6CcAIqNBI.jpg", "source_status_id": 491264299185471488}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 44, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 26 02:06:39 +0000 2013", "profile_link_color": "0084B4", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 19, "utc_offset": null, "description": "Alimenta tus ojos con lo que aqu\u00ed publicamos y dale un RT para alimentar a tus amigos. Esto es PORNO para tu panza!", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1302010249/1391579635", "id_str": "1302010249", "statuses_count": 13921, "url": null, "profile_use_background_image": true, "name": "Comida Porno!", "entities": {"description": {"urls": []}}, "screen_name": "iComidaPorno", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/430941699049676800/TJDCUq_L_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 97, "followers_count": 332181, "verified": false, "id": 1302010249, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/430941699049676800/TJDCUq_L_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 450, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "Mini galletas y Cupcakes <3 https://t.co/YXjIWoQpRi", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690922830687371264}, "retweet_count": 44, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Oct 13 22:10:42 +0000 2012", "profile_link_color": "0084B4", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 72119, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/878797358/1424382099", "id_str": "878797358", "statuses_count": 39504, "url": null, "profile_use_background_image": true, "name": "nizi ", "entities": {"description": {"urls": []}}, "screen_name": "nizel19", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/568525934362234880/nllT9bLN_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 193, "followers_count": 1654, "verified": false, "id": 878797358, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/568525934362234880/nllT9bLN_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 13, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "RT @iComidaPorno: Mini galletas y Cupcakes <3 https://t.co/YXjIWoQpRi", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334138257409}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334134218752", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/uJYLPdo3fm", "source_user_id_str": "2808663432", "expanded_url": "http://twitter.com/WORIDSTARHIPH0P/status/690357415766794240/photo/1", "source_status_id_str": "690357415766794240", "id_str": "690357410075168769", "source_user_id": 2808663432, "media_url_https": "https://pbs.twimg.com/media/CZSkaCOW0AEBluB.jpg", "id": 690357410075168769, "sizes": {"large": {"h": 737, "w": 566, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 737, "w": 566, "resize": "fit"}, "small": {"h": 442, "w": 340, "resize": "fit"}}, "url": "https://t.co/uJYLPdo3fm", "indices": [104, 127], "media_url": "http://pbs.twimg.com/media/CZSkaCOW0AEBluB.jpg", "source_status_id": 690357415766794240}], "user_mentions": [{"name": "Ghetto CNN", "id": 2165651892, "screen_name": "Ghetto_CNN", "id_str": "2165651892", "indices": [3, 14]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Fri Jan 22 19:52:35 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690623111960596481", "favorite_count": 639, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/uJYLPdo3fm", "source_user_id_str": "2808663432", "expanded_url": "http://twitter.com/WORIDSTARHIPH0P/status/690357415766794240/photo/1", "source_status_id_str": "690357415766794240", "id_str": "690357410075168769", "source_user_id": 2808663432, "media_url_https": "https://pbs.twimg.com/media/CZSkaCOW0AEBluB.jpg", "id": 690357410075168769, "sizes": {"large": {"h": 737, "w": 566, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 737, "w": 566, "resize": "fit"}, "small": {"h": 442, "w": 340, "resize": "fit"}}, "url": "https://t.co/uJYLPdo3fm", "indices": [88, 111], "media_url": "http://pbs.twimg.com/media/CZSkaCOW0AEBluB.jpg", "source_status_id": 690357415766794240}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": true, "retweet_count": 365, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Oct 30 23:35:28 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 54, "utc_offset": -18000, "description": "Bringing You Incredibly Ghetto News twitterbiz@hotmail.com\r\nKik:Urbaneng", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2165651892/1407817944", "id_str": "2165651892", "statuses_count": 5410, "url": null, "profile_use_background_image": true, "name": "Ghetto CNN", "entities": {"description": {"urls": []}}, "screen_name": "Ghetto_CNN", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "parody", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/485502612083843072/eh5ihOjD_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 368, "followers_count": 281203, "verified": false, "id": 2165651892, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/485502612083843072/eh5ihOjD_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 305, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Girls: \"I'm big boned.\"\nMe: \"So you mean to tell me that your skeleton look like this?\" https://t.co/uJYLPdo3fm", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690623111960596481}, "retweet_count": 365, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Feb 20 04:19:21 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 601, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3045684935/1431714972", "id_str": "3045684935", "statuses_count": 1065, "url": null, "profile_use_background_image": true, "name": "Quaysia", "entities": {"description": {"urls": []}}, "screen_name": "quaysiabrown5", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/683700082735222784/JRu7VIZN_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 100, "followers_count": 69, "verified": false, "id": 3045684935, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683700082735222784/JRu7VIZN_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @Ghetto_CNN: Girls: \"I'm big boned.\"\nMe: \"So you mean to tell me that your skeleton look like this?\" https://t.co/uJYLPdo3fm", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334134218752}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334134087680", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/A1g3J0xPWc", "source_user_id_str": "1198988510", "expanded_url": "http://twitter.com/CommonWhiteGirI/status/690990395539464192/photo/1", "source_status_id_str": "690990395539464192", "id_str": "690990395464028160", "source_user_id": 1198988510, "media_url_https": "https://pbs.twimg.com/media/CZbkGojXEAAoIO8.jpg", "id": 690990395464028160, "sizes": {"large": {"h": 841, "w": 600, "resize": "fit"}, "small": {"h": 476, "w": 340, "resize": "fit"}, "medium": {"h": 841, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/A1g3J0xPWc", "indices": [100, 123], "media_url": "http://pbs.twimg.com/media/CZbkGojXEAAoIO8.jpg", "source_status_id": 690990395539464192}], "user_mentions": [{"name": "Common White Girl", "id": 1198988510, "screen_name": "CommonWhiteGirI", "id_str": "1198988510", "indices": [3, 19]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:12:02 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Buffer", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690990395539464192", "favorite_count": 734, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbkGojXEAAoIO8.jpg", "display_url": "pic.twitter.com/A1g3J0xPWc", "id": 690990395464028160, "type": "photo", "sizes": {"large": {"h": 841, "w": 600, "resize": "fit"}, "small": {"h": 476, "w": 340, "resize": "fit"}, "medium": {"h": 841, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/A1g3J0xPWc", "indices": [79, 102], "media_url": "http://pbs.twimg.com/media/CZbkGojXEAAoIO8.jpg", "id_str": "690990395464028160", "expanded_url": "http://twitter.com/CommonWhiteGirI/status/690990395539464192/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 311, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Feb 19 23:39:47 +0000 2013", "profile_link_color": "009999", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 43, "utc_offset": -21600, "description": "maybe I should Instagram that", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1198988510/1361495590", "id_str": "1198988510", "statuses_count": 10519, "url": null, "profile_use_background_image": true, "name": "Common White Girl", "entities": {"description": {"urls": []}}, "screen_name": "CommonWhiteGirI", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3280084930/b28aba42a62b239b5883d6f3249a3418_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 1, "followers_count": 875575, "verified": false, "id": 1198988510, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3280084930/b28aba42a62b239b5883d6f3249a3418_normal.jpeg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 720, "profile_sidebar_border_color": "EEEEEE"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "When your car ain't warm up but you late to work and the heat blowing cold air https://t.co/A1g3J0xPWc", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690990395539464192}, "retweet_count": 311, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Dec 19 23:05:41 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 1034, "utc_offset": null, "description": "God ~Family ~Ba Football", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2254172749/1443451985", "id_str": "2254172749", "statuses_count": 1349, "url": null, "profile_use_background_image": true, "name": "Derrick Shaw", "entities": {"description": {"urls": []}}, "screen_name": "DerrickShaw_", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/665193665988456448/4_3pzpPj_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 347, "followers_count": 320, "verified": false, "id": 2254172749, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665193665988456448/4_3pzpPj_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @CommonWhiteGirI: When your car ain't warm up but you late to work and the heat blowing cold air https://t.co/A1g3J0xPWc", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334134087680}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334125842432", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/S3T5YmbuQ4", "source_user_id_str": "14511951", "expanded_url": "http://twitter.com/HuffingtonPost/status/690992138276986880/photo/1", "source_status_id_str": "690992138276986880", "id_str": "690992137320566784", "source_user_id": 14511951, "media_url_https": "https://pbs.twimg.com/media/CZblsBeUkAADl0o.jpg", "id": 690992137320566784, "sizes": {"large": {"h": 537, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 315, "w": 600, "resize": "fit"}, "small": {"h": 178, "w": 340, "resize": "fit"}}, "url": "https://t.co/S3T5YmbuQ4", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/CZblsBeUkAADl0o.jpg", "source_status_id": 690992138276986880}], "user_mentions": [{"name": "Huffington Post", "id": 14511951, "screen_name": "HuffingtonPost", "id_str": "14511951", "indices": [3, 18]}], "hashtags": [{"indices": [20, 30], "text": "Labyrinth"}], "urls": [{"display_url": "huff.to/1UiXkYI", "indices": [78, 101], "url": "https://t.co/lzSssH6NED", "expanded_url": "http://huff.to/1UiXkYI"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:18:58 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "SocialFlow", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992138276986880", "favorite_count": 8, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZblsBeUkAADl0o.jpg", "display_url": "pic.twitter.com/S3T5YmbuQ4", "id": 690992137320566784, "type": "photo", "sizes": {"large": {"h": 537, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 315, "w": 600, "resize": "fit"}, "small": {"h": 178, "w": 340, "resize": "fit"}}, "url": "https://t.co/S3T5YmbuQ4", "indices": [82, 105], "media_url": "http://pbs.twimg.com/media/CZblsBeUkAADl0o.jpg", "id_str": "690992137320566784", "expanded_url": "http://twitter.com/HuffingtonPost/status/690992138276986880/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [0, 10], "text": "Labyrinth"}], "urls": [{"display_url": "huff.to/1UiXkYI", "indices": [58, 81], "url": "https://t.co/lzSssH6NED", "expanded_url": "http://huff.to/1UiXkYI"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 5, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Apr 24 14:07:28 +0000 2008", "profile_link_color": "015E50", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 721, "utc_offset": -18000, "description": "internet lovers | sleep believers | news addicts | big font obsessives | greek yogurt fans", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14511951/1448902545", "id_str": "14511951", "statuses_count": 445393, "url": "https://t.co/3OfNk6yNw8", "profile_use_background_image": true, "name": "Huffington Post", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "huffingtonpost.com", "indices": [0, 23], "url": "https://t.co/3OfNk6yNw8", "expanded_url": "http://www.huffingtonpost.com"}]}}, "screen_name": "HuffingtonPost", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/662779208/drm9hjltviedp5of1mft.png", "location": "", "is_translation_enabled": true, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/674634141866983424/-9Ob7KPW_normal.png", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "E3E2DE", "friends_count": 5614, "followers_count": 6654324, "verified": true, "id": 14511951, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/662779208/drm9hjltviedp5of1mft.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674634141866983424/-9Ob7KPW_normal.png", "profile_background_tile": false, "profile_background_color": "2E7060", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 79968, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "#Labyrinth gets a reboot, and we have a maze of questions https://t.co/lzSssH6NED https://t.co/S3T5YmbuQ4", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992138276986880}, "retweet_count": 5, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Jun 08 22:08:43 +0000 2015", "profile_link_color": "FA743E", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 7942, "utc_offset": null, "description": "\u201cEl H\u00e1bil\u201d || Pr\u00edncipe Noldo || Padre de Celebrimbor. || Quinto hijo de @Noldor_HighKing. Dicen que hered\u00e9 su aspecto y car\u00e1cter, pero yo molo m\u00e1s. [ENG/ESP]", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3313941183/1452544224", "id_str": "3313941183", "statuses_count": 14050, "url": null, "profile_use_background_image": true, "name": "Curufinw\u00eb Atarink\u00eb", "entities": {"description": {"urls": []}}, "screen_name": "CurvoTheCrafty", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/608034242342354944/qdUiAxwY.jpg", "location": "En la forja de Tirion", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/689950586092003328/_vgCXim5_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 291, "followers_count": 249, "verified": false, "id": 3313941183, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/608034242342354944/qdUiAxwY.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689950586092003328/_vgCXim5_normal.jpg", "profile_background_tile": true, "profile_background_color": "FA743E", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 6, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @HuffingtonPost: #Labyrinth gets a reboot, and we have a maze of questions https://t.co/lzSssH6NED https://t.co/S3T5YmbuQ4", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334125842432}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334125797385", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/GnpRN3rtsn", "source_user_id_str": "61003804", "expanded_url": "http://twitter.com/FreddyAmazin/status/690874411512102914/photo/1", "source_status_id_str": "690874411512102914", "id_str": "690874411038150656", "source_user_id": 61003804, "media_url_https": "https://pbs.twimg.com/media/CZZ6nc5WEAAwfOO.jpg", "id": 690874411038150656, "sizes": {"large": {"h": 1024, "w": 576, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 1024, "w": 576, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}}, "url": "https://t.co/GnpRN3rtsn", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CZZ6nc5WEAAwfOO.jpg", "source_status_id": 690874411512102914}], "user_mentions": [{"name": "The Bucket List", "id": 488242107, "screen_name": "TheBucktList", "id_str": "488242107", "indices": [3, 16]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 17:05:26 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690943434002161664", "favorite_count": 4265, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/GnpRN3rtsn", "source_user_id_str": "61003804", "expanded_url": "http://twitter.com/FreddyAmazin/status/690874411512102914/photo/1", "source_status_id_str": "690874411512102914", "id_str": "690874411038150656", "source_user_id": 61003804, "media_url_https": "https://pbs.twimg.com/media/CZZ6nc5WEAAwfOO.jpg", "id": 690874411038150656, "sizes": {"large": {"h": 1024, "w": 576, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 1024, "w": 576, "resize": "fit"}, "small": {"h": 604, "w": 340, "resize": "fit"}}, "url": "https://t.co/GnpRN3rtsn", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/CZZ6nc5WEAAwfOO.jpg", "source_status_id": 690874411512102914}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2123, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Feb 10 07:27:38 +0000 2012", "profile_link_color": "376EBF", "lang": "en", "time_zone": "Arizona", "contributors_enabled": false, "favourites_count": 5833, "utc_offset": -25200, "description": "\u262e Live everyday like its your last \u262f Contact: thebucktlist@outlook.com", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/488242107/1417378403", "id_str": "488242107", "statuses_count": 6357, "url": null, "profile_use_background_image": false, "name": "The Bucket List", "entities": {"description": {"urls": []}}, "screen_name": "TheBucktList", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Arizona", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/497058486287495169/H4MYutsm_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 88185, "followers_count": 1398069, "verified": false, "id": 488242107, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/497058486287495169/H4MYutsm_normal.jpeg", "profile_background_tile": false, "profile_background_color": "EAF0F2", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1345, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Just incase you want your life goals to come true \ud83d\ude0d\n840 South 1300 East\nSalt Lake City, Utah 84102 https://t.co/GnpRN3rtsn", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690943434002161664}, "retweet_count": 2123, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Apr 23 15:21:37 +0000 2012", "profile_link_color": "A3E3F7", "lang": "nl", "time_zone": "Amsterdam", "contributors_enabled": false, "favourites_count": 3028, "utc_offset": 3600, "description": "Lachen, gieren, brullen toch?", "profile_text_color": "362720", "profile_banner_url": "https://pbs.twimg.com/profile_banners/561220289/1447358134", "id_str": "561220289", "statuses_count": 4763, "url": null, "profile_use_background_image": true, "name": "Veerle", "entities": {"description": {"urls": []}}, "screen_name": "xkusveerlee", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/790795109/2c8c31092662349e7b81cb3867cfbf3e.jpeg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688769121824149504/ueQSKicg_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "E5507E", "friends_count": 151, "followers_count": 164, "verified": false, "id": 561220289, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/790795109/2c8c31092662349e7b81cb3867cfbf3e.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688769121824149504/ueQSKicg_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TheBucktList: Just incase you want your life goals to come true \ud83d\ude0d\n840 South 1300 East\nSalt Lake City, Utah 84102 https://t.co/GnpRN3rtsn", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334125797385}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334117441538", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/9zChSwucHr", "source_user_id_str": "2785317421", "expanded_url": "http://twitter.com/WInters_51/status/690989852075126784/photo/1", "source_status_id_str": "690989852075126784", "id_str": "690989850963636224", "source_user_id": 2785317421, "media_url_https": "https://pbs.twimg.com/media/CZbjm8IWcAARhDq.jpg", "id": 690989850963636224, "sizes": {"large": {"h": 819, "w": 1024, "resize": "fit"}, "small": {"h": 272, "w": 340, "resize": "fit"}, "medium": {"h": 480, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/9zChSwucHr", "indices": [30, 53], "media_url": "http://pbs.twimg.com/media/CZbjm8IWcAARhDq.jpg", "source_status_id": 690989852075126784}], "user_mentions": [{"name": "The Flying Wookie", "id": 2785317421, "screen_name": "WInters_51", "id_str": "2785317421", "indices": [3, 14]}], "hashtags": [{"indices": [16, 29], "text": "shortredhair"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:09:53 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690989852075126784", "favorite_count": 1, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbjm8IWcAARhDq.jpg", "display_url": "pic.twitter.com/9zChSwucHr", "id": 690989850963636224, "type": "photo", "sizes": {"large": {"h": 819, "w": 1024, "resize": "fit"}, "small": {"h": 272, "w": 340, "resize": "fit"}, "medium": {"h": 480, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/9zChSwucHr", "indices": [14, 37], "media_url": "http://pbs.twimg.com/media/CZbjm8IWcAARhDq.jpg", "id_str": "690989850963636224", "expanded_url": "http://twitter.com/WInters_51/status/690989852075126784/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [0, 13], "text": "shortredhair"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Sep 02 05:28:53 +0000 2014", "profile_link_color": "FA743E", "lang": "de", "time_zone": null, "contributors_enabled": false, "favourites_count": 7086, "utc_offset": null, "description": "Sal\u00fc\u00fc. The Pic's that im posting are not mine its only a favor' to show other what i like. I like opaque Legwear espacialy Pantyhose, Tights and Socks", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2785317421/1409665057", "id_str": "2785317421", "statuses_count": 1667, "url": null, "profile_use_background_image": false, "name": "The Flying Wookie", "entities": {"description": {"urls": []}}, "screen_name": "WInters_51", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/523544146704072704/_rFIZktW_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 262, "followers_count": 72, "verified": false, "id": 2785317421, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/523544146704072704/_rFIZktW_normal.jpeg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "#shortredhair https://t.co/9zChSwucHr", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690989852075126784}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Mar 28 14:58:48 +0000 2013", "profile_link_color": "9266CC", "lang": "de", "time_zone": null, "contributors_enabled": false, "favourites_count": 181, "utc_offset": null, "description": "", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1310877895/1452378146", "id_str": "1310877895", "statuses_count": 190, "url": null, "profile_use_background_image": false, "name": "Skye", "entities": {"description": {"urls": []}}, "screen_name": "Bree_lady21", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/689925477146988544/o8qdoyr-_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 44, "followers_count": 21, "verified": false, "id": 1310877895, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689925477146988544/o8qdoyr-_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @WInters_51: #shortredhair https://t.co/9zChSwucHr", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334117441538}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334117273600", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/mD1quEB7og", "source_user_id_str": "140801501", "expanded_url": "http://twitter.com/webcamfamosas/status/690923689492226049/photo/1", "source_status_id_str": "690923689492226049", "id_str": "690923671112777729", "source_user_id": 140801501, "media_url_https": "https://pbs.twimg.com/media/CZanaw-WAAEJZLq.jpg", "id": 690923671112777729, "sizes": {"large": {"h": 1024, "w": 768, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}}, "url": "https://t.co/mD1quEB7og", "indices": [139, 140], "media_url": "http://pbs.twimg.com/media/CZanaw-WAAEJZLq.jpg", "source_status_id": 690923689492226049}], "user_mentions": [{"name": "Sexy_Girl", "id": 140801501, "screen_name": "webcamfamosas", "id_str": "140801501", "indices": [3, 17]}, {"name": "Polla Pre\u00f1adora\u2122", "id": 568433423, "screen_name": "PollaPrenadora", "id_str": "568433423", "indices": [73, 88]}, {"name": "\u2b50 \u25b6 PornPica \u25c0 \u2b50484K", "id": 902010354, "screen_name": "PornPica", "id_str": "902010354", "indices": [90, 99]}, {"name": "Sexy Girls Pics", "id": 43549515, "screen_name": "MySexyGirlsPics", "id_str": "43549515", "indices": [101, 117]}, {"name": "veronica castro", "id": 284553397, "screen_name": "verovvp", "id_str": "284553397", "indices": [119, 127]}], "hashtags": [{"indices": [22, 31], "text": "freecams"}, {"indices": [35, 44], "text": "TeamCams"}], "urls": [{"display_url": "horniestcams.com", "indices": [47, 70], "url": "https://t.co/gw9QHktosa", "expanded_url": "http://horniestcams.com"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 15:46:58 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690923689492226049", "favorite_count": 53, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZanaw-WAAEJZLq.jpg", "display_url": "pic.twitter.com/mD1quEB7og", "id": 690923671112777729, "type": "photo", "sizes": {"large": {"h": 1024, "w": 768, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}}, "url": "https://t.co/mD1quEB7og", "indices": [109, 132], "media_url": "http://pbs.twimg.com/media/CZanaw-WAAEJZLq.jpg", "id_str": "690923671112777729", "expanded_url": "http://twitter.com/webcamfamosas/status/690923689492226049/photo/1"}], "user_mentions": [{"name": "Polla Pre\u00f1adora\u2122", "id": 568433423, "screen_name": "PollaPrenadora", "id_str": "568433423", "indices": [54, 69]}, {"name": "\u2b50 \u25b6 PornPica \u25c0 \u2b50484K", "id": 902010354, "screen_name": "PornPica", "id_str": "902010354", "indices": [71, 80]}, {"name": "Sexy Girls Pics", "id": 43549515, "screen_name": "MySexyGirlsPics", "id_str": "43549515", "indices": [82, 98]}, {"name": "veronica castro", "id": 284553397, "screen_name": "verovvp", "id_str": "284553397", "indices": [100, 108]}], "hashtags": [{"indices": [3, 12], "text": "freecams"}, {"indices": [16, 25], "text": "TeamCams"}], "urls": [{"display_url": "horniestcams.com", "indices": [28, 51], "url": "https://t.co/gw9QHktosa", "expanded_url": "http://horniestcams.com"}], "symbols": []}, "place": null, "possibly_sensitive": true, "retweet_count": 16, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu May 06 11:57:16 +0000 2010", "profile_link_color": "0099B9", "lang": "es", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 37008, "utc_offset": -28800, "description": "Fotos y videos de amateurs y pornstars 18+ en #mundowebcam #universowebcam Follow my #bestfriends @verovvp @buhotem", "profile_text_color": "3C3940", "profile_banner_url": "https://pbs.twimg.com/profile_banners/140801501/1368176881", "id_str": "140801501", "statuses_count": 179043, "url": "http://t.co/dfB7I2iikS", "profile_use_background_image": true, "name": "Sexy_Girl", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mundowebcam.com", "indices": [0, 22], "url": "http://t.co/dfB7I2iikS", "expanded_url": "http://www.mundowebcam.com"}]}}, "screen_name": "webcamfamosas", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "location": "Tenerife", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/685444073839288320/SeWREy_6_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "95E8EC", "friends_count": 926, "followers_count": 191480, "verified": false, "id": 140801501, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685444073839288320/SeWREy_6_normal.jpg", "profile_background_tile": false, "profile_background_color": "0099B9", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 714, "profile_sidebar_border_color": "5ED4DC"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "\ud83d\udc93 #freecams \ud83d\udc93 #TeamCams \ud83d\udc93\nhttps://t.co/gw9QHktosa \n@PollaPrenadora \n@PornPica \n@MySexyGirlsPics \n@verovvp https://t.co/mD1quEB7og", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690923689492226049}, "retweet_count": 16, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Feb 17 21:20:14 +0000 2013", "lang": "id", "time_zone": null, "contributors_enabled": false, "favourites_count": 1997, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_link_color": "0084B4", "id_str": "1191201469", "statuses_count": 2128, "url": null, "profile_use_background_image": true, "name": "randy putra", "entities": {"description": {"urls": []}}, "screen_name": "randypu66556410", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/3269119017/8b3565ef760f5fc4eda6f0b03d937e23_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1802, "followers_count": 156, "verified": false, "id": 1191201469, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3269119017/8b3565ef760f5fc4eda6f0b03d937e23_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @webcamfamosas: \ud83d\udc93 #freecams \ud83d\udc93 #TeamCams \ud83d\udc93\nhttps://t.co/gw9QHktosa \n@PollaPrenadora \n@PornPica \n@MySexyGirlsPics \n@verovvp https://t.c\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334117273600}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "IFTTT", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334104829952", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3cHWwAA5QTL.jpg", "display_url": "pic.twitter.com/RPNbFaxenM", "id": 690992333450559488, "type": "photo", "sizes": {"large": {"h": 269, "w": 400, "resize": "fit"}, "small": {"h": 228, "w": 340, "resize": "fit"}, "medium": {"h": 269, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/RPNbFaxenM", "indices": [79, 102], "media_url": "http://pbs.twimg.com/media/CZbl3cHWwAA5QTL.jpg", "id_str": "690992333450559488", "expanded_url": "http://twitter.com/ItemElegant/status/690992334104829952/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [{"display_url": "buy-collectibles.info/bycll/ctbls/?q\u2026", "indices": [55, 78], "url": "https://t.co/4y1zeXxKL7", "expanded_url": "http://buy-collectibles.info/bycll/ctbls/?query=http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=2&toolid=10039&campid=5337797091&item=401060007695&vectorid=229466&lgeo=1"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Jan 11 07:32:58 +0000 2016", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 0, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_link_color": "2B7BB9", "id_str": "4772151256", "statuses_count": 2999, "url": null, "profile_use_background_image": true, "name": "very elegant item", "entities": {"description": {"urls": []}}, "screen_name": "ItemElegant", "protected": false, "profile_background_image_url": null, "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/686451126674305025/Vta0Nmte_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 39, "followers_count": 14, "verified": false, "id": 4772151256, "default_profile_image": false, "profile_background_image_url_https": null, "profile_image_url_https": "https://pbs.twimg.com/profile_images/686451126674305025/Vta0Nmte_normal.jpg", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 20, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "1981 TOPPS FOOTBALL #206 DANNY PITTMAN NEW YORK GIANTS https://t.co/4y1zeXxKL7 https://t.co/RPNbFaxenM", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334104829952}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334100656128", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/kPjY0QaLKs", "source_user_id_str": "3323189949", "expanded_url": "http://twitter.com/CRVArea2/status/690960448624148484/photo/1", "source_status_id_str": "690960448624148484", "id_str": "690960421323288576", "source_user_id": 3323189949, "media_url_https": "https://pbs.twimg.com/media/CZbI16LUMAALqbo.jpg", "id": 690960421323288576, "sizes": {"large": {"h": 1365, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}}, "url": "https://t.co/kPjY0QaLKs", "indices": [139, 140], "media_url": "http://pbs.twimg.com/media/CZbI16LUMAALqbo.jpg", "source_status_id": 690960448624148484}], "user_mentions": [{"name": "Area 2", "id": 3323189949, "screen_name": "CRVArea2", "id_str": "3323189949", "indices": [3, 12]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 18:13:03 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690960448624148484", "favorite_count": 4, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbI16LUMAALqbo.jpg", "display_url": "pic.twitter.com/kPjY0QaLKs", "id": 690960421323288576, "type": "photo", "sizes": {"large": {"h": 1365, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}}, "url": "https://t.co/kPjY0QaLKs", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CZbI16LUMAALqbo.jpg", "id_str": "690960421323288576", "expanded_url": "http://twitter.com/CRVArea2/status/690960448624148484/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jun 13 16:06:25 +0000 2015", "profile_link_color": "4A913C", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 10, "utc_offset": null, "description": "This is the new Central Region Venturing Area 2 Twitter!", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3323189949/1448648773", "id_str": "3323189949", "statuses_count": 44, "url": "http://t.co/ixpcLIv69O", "profile_use_background_image": false, "name": "Area 2", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "crventuring.org/Area_Pages/Are\u2026", "indices": [0, 22], "url": "http://t.co/ixpcLIv69O", "expanded_url": "http://www.crventuring.org/Area_Pages/Area_2/"}]}}, "screen_name": "CRVArea2", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/610212612958220288/GBS3sjCD.jpg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/635853616327303169/_3oqiYfN_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 26, "followers_count": 38, "verified": false, "id": 3323189949, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/610212612958220288/GBS3sjCD.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635853616327303169/_3oqiYfN_normal.jpg", "profile_background_tile": false, "profile_background_color": "4A913C", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Congratulations Area 2 Communications Advisor Lizzie Wiseman on receiving the National Venturing Leaderships Award! https://t.co/kPjY0QaLKs", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690960448624148484}, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Apr 27 20:15:18 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 32, "utc_offset": null, "description": "Offical Twitter page for the President Ford Field Service Council VOA (Venturing Officers Association) Youth run by our officers.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2466610268/1448649233", "id_str": "2466610268", "statuses_count": 33, "url": "https://t.co/gcsnEGnNvv", "profile_use_background_image": true, "name": "PFC Venturing", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "grfcvoa.webs.com", "indices": [0, 23], "url": "https://t.co/gcsnEGnNvv", "expanded_url": "http://www.grfcvoa.webs.com/"}]}}, "screen_name": "PFCVenturing", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/670309584423272449/ALh_au6b_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 35, "followers_count": 25, "verified": false, "id": 2466610268, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670309584423272449/ALh_au6b_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @CRVArea2: Congratulations Area 2 Communications Advisor Lizzie Wiseman on receiving the National Venturing Leaderships Award! https://t\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334100656128}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "pt", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334096457728", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/tVHz5TTifw", "source_user_id_str": "3376142206", "expanded_url": "http://twitter.com/camilaismylifee/status/690981954800504832/photo/1", "source_status_id_str": "690981954800504832", "id_str": "690981925947838465", "source_user_id": 3376142206, "media_url_https": "https://pbs.twimg.com/media/CZbcZpJWEAEuCxN.jpg", "id": 690981925947838465, "sizes": {"large": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/tVHz5TTifw", "indices": [100, 123], "media_url": "http://pbs.twimg.com/media/CZbcZpJWEAEuCxN.jpg", "source_status_id": 690981954800504832}], "user_mentions": [{"name": "mila #5H2", "id": 3376142206, "screen_name": "camilaismylifee", "id_str": "3376142206", "indices": [3, 19]}], "hashtags": [{"indices": [77, 99], "text": "WeAreHereFifthHarmony"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:38:30 +0000 2016", "lang": "pt", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690981954800504832", "favorite_count": 10, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbcZpJWEAEuCxN.jpg", "display_url": "pic.twitter.com/tVHz5TTifw", "id": 690981925947838465, "type": "photo", "sizes": {"large": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/tVHz5TTifw", "indices": [79, 102], "media_url": "http://pbs.twimg.com/media/CZbcZpJWEAEuCxN.jpg", "id_str": "690981925947838465", "expanded_url": "http://twitter.com/camilaismylifee/status/690981954800504832/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [56, 78], "text": "WeAreHereFifthHarmony"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 46, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jul 14 17:37:10 +0000 2015", "profile_link_color": "0084B4", "lang": "pt", "time_zone": null, "contributors_enabled": false, "favourites_count": 9736, "utc_offset": null, "description": "sou trouxa mesmo", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3376142206/1451157256", "id_str": "3376142206", "statuses_count": 17354, "url": null, "profile_use_background_image": true, "name": "mila #5H2", "entities": {"description": {"urls": []}}, "screen_name": "camilaismylifee", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "1/6 ", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/687689354827952128/gITTt4jx_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1458, "followers_count": 1636, "verified": false, "id": 3376142206, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687689354827952128/gITTt4jx_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "pt", "result_type": "recent"}, "text": "A melhor coisa que eu fiz na minha vida foi amar voc\u00eas. #WeAreHereFifthHarmony https://t.co/tVHz5TTifw", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690981954800504832}, "retweet_count": 46, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Nov 11 12:42:33 +0000 2012", "profile_link_color": "000000", "lang": "pt", "time_zone": "Mid-Atlantic", "contributors_enabled": false, "favourites_count": 564, "utc_offset": -7200, "description": "You think I'm psycho, you think I'm gone ;;;;", "profile_text_color": "3D1957", "profile_banner_url": "https://pbs.twimg.com/profile_banners/941221358/1453574105", "id_str": "941221358", "statuses_count": 73681, "url": "https://t.co/3QKo2sEp7D", "profile_use_background_image": true, "name": "izzy", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/cassieclare/st\u2026", "indices": [0, 23], "url": "https://t.co/3QKo2sEp7D", "expanded_url": "https://twitter.com/cassieclare/status/684770877355868160"}]}}, "screen_name": "MALECARALHO", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/647471154962264064/YgUTigZw.png", "location": "fightlikeclace's parabatai", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690965901621989376/CPknhadj_normal.png", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "7AC3EE", "friends_count": 8766, "followers_count": 11832, "verified": false, "id": 941221358, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/647471154962264064/YgUTigZw.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690965901621989376/CPknhadj_normal.png", "profile_background_tile": true, "profile_background_color": "EEEEEE", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 21, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "pt", "result_type": "recent"}, "text": "RT @camilaismylifee: A melhor coisa que eu fiz na minha vida foi amar voc\u00eas. #WeAreHereFifthHarmony https://t.co/tVHz5TTifw", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334096457728}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "tr", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334092242945", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/HdPitr5Uz0", "source_user_id_str": "3029788846", "expanded_url": "http://twitter.com/halilefeyigit/status/690968463523856385/photo/1", "source_status_id_str": "690968463523856385", "id_str": "690968461502255104", "source_user_id": 3029788846, "media_url_https": "https://pbs.twimg.com/media/CZbQJ6LXEAAFicg.jpg", "id": 690968461502255104, "sizes": {"large": {"h": 159, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 159, "w": 400, "resize": "fit"}, "small": {"h": 135, "w": 340, "resize": "fit"}}, "url": "https://t.co/HdPitr5Uz0", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/CZbQJ6LXEAAFicg.jpg", "source_status_id": 690968463523856385}], "user_mentions": [{"name": "Halil Efe", "id": 3029788846, "screen_name": "halilefeyigit", "id_str": "3029788846", "indices": [3, 17]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 18:44:53 +0000 2016", "lang": "tr", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690968463523856385", "favorite_count": 123, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbQJ6LXEAAFicg.jpg", "display_url": "pic.twitter.com/HdPitr5Uz0", "id": 690968461502255104, "type": "photo", "sizes": {"large": {"h": 159, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 159, "w": 400, "resize": "fit"}, "small": {"h": 135, "w": 340, "resize": "fit"}}, "url": "https://t.co/HdPitr5Uz0", "indices": [39, 62], "media_url": "http://pbs.twimg.com/media/CZbQJ6LXEAAFicg.jpg", "id_str": "690968461502255104", "expanded_url": "http://twitter.com/halilefeyigit/status/690968463523856385/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Feb 11 07:31:56 +0000 2015", "profile_link_color": "0084B4", "lang": "tr", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 22595, "utc_offset": -28800, "description": "kendimi anlatabilecek kadar t\u00fcrk\u00e7e konu\u015fabiliyorum...!!DM YOK!!", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3029788846/1452924690", "id_str": "3029788846", "statuses_count": 939, "url": null, "profile_use_background_image": false, "name": "Halil Efe", "entities": {"description": {"urls": []}}, "screen_name": "halilefeyigit", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Ankara", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/686562507801145344/ljpe0JdO_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 38914, "followers_count": 50013, "verified": false, "id": 3029788846, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686562507801145344/ljpe0JdO_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 19, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "tr", "result_type": "recent"}, "text": "\u00d6zledim lan manyak gibi varya neyse... https://t.co/HdPitr5Uz0", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690968463523856385}, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Nov 23 18:16:53 +0000 2015", "profile_link_color": "0084B4", "lang": "tr", "time_zone": null, "contributors_enabled": false, "favourites_count": 467, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4258927329/1450024924", "id_str": "4258927329", "statuses_count": 372, "url": null, "profile_use_background_image": true, "name": "\u00e7izgi \u00f6tesi", "entities": {"description": {"urls": []}}, "screen_name": "cizgiotesi_", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/676079657582743553/ce85Ss0w_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 105, "followers_count": 85, "verified": false, "id": 4258927329, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676079657582743553/ce85Ss0w_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "tr", "result_type": "recent"}, "text": "RT @halilefeyigit: \u00d6zledim lan manyak gibi varya neyse... https://t.co/HdPitr5Uz0", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334092242945}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334087933952", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/eg1GDcZoFz", "source_user_id_str": "15425377", "expanded_url": "http://twitter.com/Airbus/status/689825819271794690/photo/1", "source_status_id_str": "689825819271794690", "id_str": "689825817602473984", "source_user_id": 15425377, "media_url_https": "https://pbs.twimg.com/media/CZLA7R8WwAAcOS7.jpg", "id": 689825817602473984, "sizes": {"large": {"h": 682, "w": 1024, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 400, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/eg1GDcZoFz", "indices": [139, 140], "media_url": "http://pbs.twimg.com/media/CZLA7R8WwAAcOS7.jpg", "source_status_id": 689825819271794690}], "user_mentions": [{"name": "Airbus", "id": 15425377, "screen_name": "Airbus", "id_str": "15425377", "indices": [3, 10]}, {"name": "Lufthansa", "id": 124476322, "screen_name": "lufthansa", "id_str": "124476322", "indices": [43, 53]}], "hashtags": [{"indices": [22, 30], "text": "A320neo"}], "urls": [{"display_url": "goo.gl/yMv2g8", "indices": [105, 128], "url": "https://t.co/LSpId99yGR", "expanded_url": "http://goo.gl/yMv2g8"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Wed Jan 20 15:04:26 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "689825819271794690", "favorite_count": 474, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZLA7R8WwAAcOS7.jpg", "display_url": "pic.twitter.com/eg1GDcZoFz", "id": 689825817602473984, "type": "photo", "sizes": {"large": {"h": 682, "w": 1024, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 400, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/eg1GDcZoFz", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CZLA7R8WwAAcOS7.jpg", "id_str": "689825817602473984", "expanded_url": "http://twitter.com/Airbus/status/689825819271794690/photo/1"}], "user_mentions": [{"name": "Lufthansa", "id": 124476322, "screen_name": "lufthansa", "id_str": "124476322", "indices": [31, 41]}], "hashtags": [{"indices": [10, 18], "text": "A320neo"}], "urls": [{"display_url": "goo.gl/yMv2g8", "indices": [93, 116], "url": "https://t.co/LSpId99yGR", "expanded_url": "http://goo.gl/yMv2g8"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 358, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Jul 14 11:24:28 +0000 2008", "profile_link_color": "5F6C6E", "lang": "en", "time_zone": "Paris", "contributors_enabled": false, "favourites_count": 1119, "utc_offset": 3600, "description": "A global team designing, manufacturing and supporting the world's leading aircraft... with passengers at heart and airlines in mind.", "profile_text_color": "76827E", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15425377/1448266832", "id_str": "15425377", "statuses_count": 6924, "url": "http://t.co/vQlUR2MgX0", "profile_use_background_image": true, "name": "Airbus", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "airbus.com", "indices": [0, 22], "url": "http://t.co/vQlUR2MgX0", "expanded_url": "http://www.airbus.com"}]}}, "screen_name": "Airbus", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000161274668/r_B2RVZx.jpeg", "location": "Global", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/592602401137422336/qB5FudgU_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "999E9A", "friends_count": 1002, "followers_count": 359681, "verified": true, "id": 15425377, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000161274668/r_B2RVZx.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/592602401137422336/qB5FudgU_normal.jpg", "profile_background_tile": false, "profile_background_color": "98AFC7", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 3257, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Our first #A320neo delivery to @lufthansa marks the dawn of a new era in commercial aviation https://t.co/LSpId99yGR https://t.co/eg1GDcZoFz", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 689825819271794690}, "retweet_count": 358, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Apr 24 10:50:37 +0000 2010", "profile_link_color": "0084B4", "lang": "fr", "time_zone": "Greenland", "contributors_enabled": false, "favourites_count": 0, "utc_offset": -10800, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/136593773/1430756453", "id_str": "136593773", "statuses_count": 57, "url": null, "profile_use_background_image": true, "name": "Philippe Inacio ", "entities": {"description": {"urls": []}}, "screen_name": "Louise_Figo", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Toulouse", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/595261831792459776/8HIvwIvQ_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 33, "followers_count": 14, "verified": false, "id": 136593773, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/595261831792459776/8HIvwIvQ_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @Airbus: Our first #A320neo delivery to @lufthansa marks the dawn of a new era in commercial aviation https://t.co/LSpId99yGR https://t.\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334087933952}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334083743744", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/iqLnyH7wax", "source_user_id_str": "2482187600", "expanded_url": "http://twitter.com/exosvntn/status/690944198493614080/video/1", "source_status_id_str": "690944198493614080", "id_str": "690943348492734465", "source_user_id": 2482187600, "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690943348492734465/pu/img/enBOlxaqHZPHWTyV.jpg", "id": 690943348492734465, "sizes": {"large": {"h": 576, "w": 1024, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 338, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/iqLnyH7wax", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690943348492734465/pu/img/enBOlxaqHZPHWTyV.jpg", "source_status_id": 690944198493614080}], "user_mentions": [{"name": "ice;;160124", "id": 2482187600, "screen_name": "exosvntn", "id_str": "2482187600", "indices": [3, 12]}], "hashtags": [{"indices": [72, 90], "text": "EXOluXioninManila"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 17:08:28 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690944198493614080", "favorite_count": 135, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690943348492734465/pu/img/enBOlxaqHZPHWTyV.jpg", "display_url": "pic.twitter.com/iqLnyH7wax", "id": 690943348492734465, "type": "photo", "sizes": {"large": {"h": 576, "w": 1024, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 338, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/iqLnyH7wax", "indices": [77, 100], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690943348492734465/pu/img/enBOlxaqHZPHWTyV.jpg", "id_str": "690943348492734465", "expanded_url": "http://twitter.com/exosvntn/status/690944198493614080/video/1"}], "user_mentions": [], "hashtags": [{"indices": [58, 76], "text": "EXOluXioninManila"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 197, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed May 07 14:08:18 +0000 2014", "profile_link_color": "D02B55", "lang": "en", "time_zone": "Beijing", "contributors_enabled": false, "favourites_count": 18083, "utc_offset": 28800, "description": "\u2716\ufe0f silver ocean 0123-0124 \u2728| eye contact w/ kyungsoo,chen,xiumin and baekhyun | was @hunhanCBkaisoo \u2716\ufe0f", "profile_text_color": "3E4415", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2482187600/1452855463", "id_str": "2482187600", "statuses_count": 38106, "url": null, "profile_use_background_image": true, "name": "ice;;160124", "entities": {"description": {"urls": []}}, "screen_name": "exosvntn", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "location": "silver ocean \u2728", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690308438748868608/nphZGKsT_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "99CC33", "friends_count": 176, "followers_count": 1012, "verified": false, "id": 2482187600, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690308438748868608/nphZGKsT_normal.jpg", "profile_background_tile": false, "profile_background_color": "352726", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 11, "profile_sidebar_border_color": "829D5E"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "THIS CHANBAEK MOMENT! I SEEN THEM LIVE! I CANT BELIEVED \ud83d\ude2d #EXOluXioninManila https://t.co/iqLnyH7wax", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690944198493614080}, "retweet_count": 197, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Oct 13 12:09:48 +0000 2009", "profile_link_color": "046CC7", "lang": "en", "time_zone": "Seoul", "contributors_enabled": false, "favourites_count": 3851, "utc_offset": 32400, "description": "\uac74\ucd95\uac00 \ubc18 \uc5d1\uc18c (xLKsLBcCdtkS) & \uc288\ud37c\uc8fc\ub2c8\uc5b4 (LHHyksSEDsrkK) \uc0ac\ub791\ud558\uc790! \ucc2c\u2764\ufe0f\ubc31 - \ucc2c\uc5f4 - \uc138\ud6c8 - \ub808\uc774 - \ubc31\ud604 - 9 in our minds but 12 in our hearts", "profile_text_color": "040C61", "profile_banner_url": "https://pbs.twimg.com/profile_banners/82078003/1449584917", "id_str": "82078003", "statuses_count": 12313, "url": null, "profile_use_background_image": false, "name": "\uc548\ub098\ubc14\ub137\uc0ac", "entities": {"description": {"urls": []}}, "screen_name": "BNYEunHAenna", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/650227758858047489/B-Fvb4k_.jpg", "location": "Dubai", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/614459818749759492/t3mQicBq_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "D2EEFA", "friends_count": 393, "followers_count": 46, "verified": false, "id": 82078003, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/650227758858047489/B-Fvb4k_.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/614459818749759492/t3mQicBq_normal.jpg", "profile_background_tile": false, "profile_background_color": "011347", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 2, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @exosvntn: THIS CHANBAEK MOMENT! I SEEN THEM LIVE! I CANT BELIEVED \ud83d\ude2d #EXOluXioninManila https://t.co/iqLnyH7wax", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334083743744}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "WordPress.com", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334079725570", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3ZXVAAAQ889.jpg", "display_url": "pic.twitter.com/Dho2YnGKt5", "id": 690992332712247296, "type": "photo", "sizes": {"large": {"h": 500, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 500, "w": 452, "resize": "fit"}, "small": {"h": 375, "w": 340, "resize": "fit"}}, "url": "https://t.co/Dho2YnGKt5", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/CZbl3ZXVAAAQ889.jpg", "id_str": "690992332712247296", "expanded_url": "http://twitter.com/MicheleRondel/status/690992334079725570/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [0, 4], "text": "How"}], "urls": [{"display_url": "ezpopular.com/how-i-reduced-\u2026", "indices": [59, 82], "url": "https://t.co/yfQvfKuESl", "expanded_url": "http://ezpopular.com/how-i-reduced-my-prednisone-use-through-diet-and-exercise/"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Dec 14 16:34:59 +0000 2015", "profile_link_color": "2B7BB9", "lang": "en-gb", "time_zone": null, "contributors_enabled": false, "favourites_count": 0, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4482856041/1452414537", "id_str": "4482856041", "statuses_count": 2344, "url": null, "profile_use_background_image": true, "name": "Michele Rondel", "entities": {"description": {"urls": []}}, "screen_name": "MicheleRondel", "protected": false, "profile_background_image_url": null, "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 324, "followers_count": 56, "verified": false, "id": 4482856041, "default_profile_image": true, "profile_background_image_url_https": null, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 19, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "#How I reduced my prednisone use through diet and\u00a0exercise https://t.co/yfQvfKuESl https://t.co/Dho2YnGKt5", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334079725570}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ja", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334079660032", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/eb1gJBz0kS", "source_user_id_str": "244937880", "expanded_url": "http://twitter.com/kurumiken/status/690895510169739264/photo/1", "source_status_id_str": "690895510169739264", "id_str": "690895498585092096", "source_user_id": 244937880, "media_url_https": "https://pbs.twimg.com/media/CZaNy6IUsAA2sL0.jpg", "id": 690895498585092096, "sizes": {"large": {"h": 1024, "w": 767, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 801, "w": 600, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}}, "url": "https://t.co/eb1gJBz0kS", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/CZaNy6IUsAA2sL0.jpg", "source_status_id": 690895510169739264}], "user_mentions": [{"name": "\u80e1\u6843\u72ac\u3086\u3048\u306b\u307f\u304e\u52a9", "id": 244937880, "screen_name": "kurumiken", "id_str": "244937880", "indices": [3, 13]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 13:55:00 +0000 2016", "lang": "ja", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690895510169739264", "favorite_count": 29, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZaNy6IUsAA2sL0.jpg", "display_url": "pic.twitter.com/eb1gJBz0kS", "id": 690895498585092096, "type": "photo", "sizes": {"large": {"h": 1024, "w": 767, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 801, "w": 600, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}}, "url": "https://t.co/eb1gJBz0kS", "indices": [10, 33], "media_url": "http://pbs.twimg.com/media/CZaNy6IUsAA2sL0.jpg", "id_str": "690895498585092096", "expanded_url": "http://twitter.com/kurumiken/status/690895510169739264/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 5, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jan 30 13:49:53 +0000 2011", "profile_link_color": "1F98C7", "lang": "ja", "time_zone": "Hawaii", "contributors_enabled": false, "favourites_count": 4575, "utc_offset": -36000, "description": "\u3069\u3046\u3082\u306f\u3058\u3081\u307e\u3061\u3066\u3047\uff01\uff01\u80e1\u6843\u72ac\uff08\u304f\u308b\u307f\u3051\u3093\uff09\u3060\u3088\uff01\uff01 \u30bf\u30f3\u30d6\u30e9\u30fc\uff08\uff52-18\u7cfb\u306b\u6c17\u3092\u4ed8\u3051\u3066\uff09\u2192https://t.co/AoKQuzRaGV\u2026\u30d4\u30af\u30b7\u30d6\u2192https://t.co/sJRRUIHVur\u3000MWAM\u306b\u306f\u307e\u3063\u3066\u304a\u308a\u307e\u3059 \u6700\u8fd1\u30a8\u30ed\u7cfb\u3082\u66f8\u3044\u3066\u308b\u306e\u3067\u82e6\u624b\u306a\u65b9\u306f\u6c17\u3092\u3064\u3051\u3066\u304f\u3060\u3055\u3044\u307e\u3057\uff01", "profile_text_color": "663B12", "profile_banner_url": "https://pbs.twimg.com/profile_banners/244937880/1440559276", "id_str": "244937880", "statuses_count": 74510, "url": null, "profile_use_background_image": true, "name": "\u80e1\u6843\u72ac\u3086\u3048\u306b\u307f\u304e\u52a9", "entities": {"description": {"urls": [{"display_url": "kumamiken.tumblr.com", "indices": [46, 69], "url": "https://t.co/AoKQuzRaGV", "expanded_url": "http://kumamiken.tumblr.com/"}, {"display_url": "pixiv.net/member.php?id=\u2026", "indices": [75, 98], "url": "https://t.co/sJRRUIHVur", "expanded_url": "http://www.pixiv.net/member.php?id=222703"}]}}, "screen_name": "kurumiken", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687857032439836672/VFclaHI3_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DAECF4", "friends_count": 301, "followers_count": 1113, "verified": false, "id": 244937880, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687857032439836672/VFclaHI3_normal.png", "profile_background_tile": false, "profile_background_color": "C6E2EE", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C6E2EE"}, "metadata": {"iso_language_code": "ja", "result_type": "recent"}, "text": "\u307b\u3082\u3066\u3093\u3057\u3001\u30d1\u30fc\u30b8 https://t.co/eb1gJBz0kS", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690895510169739264}, "retweet_count": 5, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Dec 17 00:57:35 +0000 2013", "profile_link_color": "D02B55", "lang": "en", "time_zone": "Central America", "contributors_enabled": false, "favourites_count": 8202, "utc_offset": -21600, "description": "pixel artist \u00b7 pool toy \u00b7 ~20 \u00b7 english/espa\u00f1ol \u00b7 AD: @fetchfetish", "profile_text_color": "3E4415", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2249569387/1450593975", "id_str": "2249569387", "statuses_count": 14622, "url": "https://t.co/dcHCMJmrh6", "profile_use_background_image": true, "name": "toy takeover", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "furaffinity.net/user/neonknive\u2026", "indices": [0, 23], "url": "https://t.co/dcHCMJmrh6", "expanded_url": "http://www.furaffinity.net/user/neonknives/"}]}}, "screen_name": "bullooned", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "location": "at the pool", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/627515413732069376/FSoNTzwj_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "99CC33", "friends_count": 323, "followers_count": 59, "verified": false, "id": 2249569387, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/627515413732069376/FSoNTzwj_normal.jpg", "profile_background_tile": false, "profile_background_color": "352726", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 23, "profile_sidebar_border_color": "829D5E"}, "metadata": {"iso_language_code": "ja", "result_type": "recent"}, "text": "RT @kurumiken: \u307b\u3082\u3066\u3093\u3057\u3001\u30d1\u30fc\u30b8 https://t.co/eb1gJBz0kS", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334079660032}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334075469826", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Aug 31 15:23:03 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 76, "utc_offset": -28800, "description": "Chef Sanji of the Straw Hat Crew ~ Leader of #MugiwaraGawds [#ShinobiRoastGods] Turn On my Notifications ~ Selling Accounts DM if interested ~", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782459190/1433777430", "id_str": "2782459190", "statuses_count": 1395, "url": null, "profile_use_background_image": true, "name": "Sanji Vinsmoke", "entities": {"description": {"urls": []}}, "screen_name": "BasedGodSanji", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "New World", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/600835247341711360/2YoqRtW__normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 9109, "followers_count": 20922, "verified": false, "id": 2782459190, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600835247341711360/2YoqRtW__normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 34, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334075469826}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334075465729", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/fSQO57W8ie", "source_user_id_str": "221769011", "expanded_url": "http://twitter.com/bet365/status/690979027906068480/photo/1", "source_status_id_str": "690979027906068480", "id_str": "690979025536290816", "source_user_id": 221769011, "media_url_https": "https://pbs.twimg.com/media/CZbZw0RWEAACTnE.jpg", "id": 690979025536290816, "sizes": {"large": {"h": 821, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 481, "w": 600, "resize": "fit"}, "small": {"h": 272, "w": 340, "resize": "fit"}}, "url": "https://t.co/fSQO57W8ie", "indices": [91, 114], "media_url": "http://pbs.twimg.com/media/CZbZw0RWEAACTnE.jpg", "source_status_id": 690979027906068480}], "user_mentions": [{"name": "bet365", "id": 221769011, "screen_name": "bet365", "id_str": "221769011", "indices": [3, 10]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 19:26:52 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690979027906068480", "favorite_count": 84, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbZw0RWEAACTnE.jpg", "display_url": "pic.twitter.com/fSQO57W8ie", "id": 690979025536290816, "type": "photo", "sizes": {"large": {"h": 821, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 481, "w": 600, "resize": "fit"}, "small": {"h": 272, "w": 340, "resize": "fit"}}, "url": "https://t.co/fSQO57W8ie", "indices": [79, 102], "media_url": "http://pbs.twimg.com/media/CZbZw0RWEAACTnE.jpg", "id_str": "690979025536290816", "expanded_url": "http://twitter.com/bet365/status/690979027906068480/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 508, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Dec 01 15:21:52 +0000 2010", "profile_link_color": "06855F", "lang": "en-gb", "time_zone": "London", "contributors_enabled": false, "favourites_count": 6317, "utc_offset": 0, "description": "The world\u2019s favourite online gambling company. 18+ only. Gamble responsibly. https://t.co/2RyHF1JlEt https://t.co/9dL17cQYTr.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/221769011/1432638471", "id_str": "221769011", "statuses_count": 180003, "url": "http://t.co/XcIs1nR87W", "profile_use_background_image": true, "name": "bet365", "entities": {"description": {"urls": [{"display_url": "gambleaware.co.uk", "indices": [77, 100], "url": "https://t.co/2RyHF1JlEt", "expanded_url": "http://gambleaware.co.uk"}, {"display_url": "bit.ly/365rgs", "indices": [101, 124], "url": "https://t.co/9dL17cQYTr", "expanded_url": "http://bit.ly/365rgs"}]}, "url": {"urls": [{"display_url": "bet365.com", "indices": [0, 22], "url": "http://t.co/XcIs1nR87W", "expanded_url": "http://www.bet365.com"}]}}, "screen_name": "bet365", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534538895/Sports-twitter-bg.jpg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/423124117655531520/hXb2Vjwb_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "E6F6F9", "friends_count": 867, "followers_count": 281829, "verified": true, "id": 221769011, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534538895/Sports-twitter-bg.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423124117655531520/hXb2Vjwb_normal.png", "profile_background_tile": false, "profile_background_color": "054735", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1057, "profile_sidebar_border_color": "DBE9ED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Who was the best player on the Boleyn Ground pitch?!\n\nRT - Payet\nLIKE - Ag\u00fcero https://t.co/fSQO57W8ie", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690979027906068480}, "retweet_count": 508, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jul 13 15:33:51 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 833, "utc_offset": -28800, "description": "@whufc_official | 15 | Instagram- joehogg_", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2707353933/1442135750", "id_str": "2707353933", "statuses_count": 2947, "url": null, "profile_use_background_image": true, "name": "Joe\u2692", "entities": {"description": {"urls": []}}, "screen_name": "Joehogg_", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Ipswich", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/689592740473114624/wb0OQVUH_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 447, "followers_count": 243, "verified": false, "id": 2707353933, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689592740473114624/wb0OQVUH_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 5, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @bet365: Who was the best player on the Boleyn Ground pitch?!\n\nRT - Payet\nLIKE - Ag\u00fcero https://t.co/fSQO57W8ie", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334075465729}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334067077120", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jan 15 05:04:29 +0000 2012", "profile_link_color": "FF1100", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 47, "utc_offset": -28800, "description": "Follow & Support For The Youth 2020", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/464380216/1441163282", "id_str": "464380216", "statuses_count": 54, "url": null, "profile_use_background_image": false, "name": "Pres. Yeezus", "entities": {"description": {"urls": []}}, "screen_name": "KanyeWestCamp", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468222556705546242/Tsnw-yln.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/638911230997086208/3OikBUsM_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 7, "followers_count": 18802, "verified": false, "id": 464380216, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468222556705546242/Tsnw-yln.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638911230997086208/3OikBUsM_normal.jpg", "profile_background_tile": true, "profile_background_color": "709397", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 40, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334067077120}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Windows", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334058688513", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3a8W0AMESM6.jpg", "display_url": "pic.twitter.com/O4bYJaaW34", "id": 690992333135990787, "type": "photo", "sizes": {"large": {"h": 540, "w": 720, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/O4bYJaaW34", "indices": [110, 133], "media_url": "http://pbs.twimg.com/media/CZbl3a8W0AMESM6.jpg", "id_str": "690992333135990787", "expanded_url": "http://twitter.com/TOLFA/status/690992334058688513/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [0, 10], "text": "Education"}, {"indices": [31, 45], "text": "animalwelfare"}, {"indices": [46, 68], "text": "TeachingTheYoungsters"}, {"indices": [69, 77], "text": "Schools"}, {"indices": [78, 100], "text": "TOLFAEducationProject"}, {"indices": [101, 109], "text": "animals"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Feb 19 08:32:39 +0000 2009", "profile_link_color": "088253", "lang": "en", "time_zone": "London", "contributors_enabled": false, "favourites_count": 600, "utc_offset": 0, "description": "Tree Of Life For Animals is a charity helping animals in need in Rajasthan, India. We're always looking for volunteers at our busy shelter near Ajmer!", "profile_text_color": "634047", "profile_banner_url": "https://pbs.twimg.com/profile_banners/21283681/1449538043", "id_str": "21283681", "statuses_count": 3347, "url": "http://t.co/Eor03IZjZO", "profile_use_background_image": true, "name": "TOLFA", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tolfa.org.uk", "indices": [0, 22], "url": "http://t.co/Eor03IZjZO", "expanded_url": "http://www.tolfa.org.uk"}]}}, "screen_name": "TOLFA", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/433238526130257920/WoxwaMtg.jpeg", "location": "India", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/494383212420792321/B6wXBjNm_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "E3E2DE", "friends_count": 2005, "followers_count": 1223, "verified": false, "id": 21283681, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/433238526130257920/WoxwaMtg.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/494383212420792321/B6wXBjNm_normal.jpeg", "profile_background_tile": false, "profile_background_color": "EDECE9", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 48, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "#Education is so important for #animalwelfare\n#TeachingTheYoungsters #Schools #TOLFAEducationProject #animals https://t.co/O4bYJaaW34", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334058688513}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334058684417", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": true, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Oct 14 05:46:08 +0000 2014", "profile_link_color": "000000", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 486, "utc_offset": -18000, "description": "TURN ON TWEET NOTIFICATIONS TO NEVER MISS A RULE | DM YOUR RULES", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2829013257/1449629308", "id_str": "2829013257", "statuses_count": 247, "url": null, "profile_use_background_image": false, "name": "HOE RULES", "entities": {"description": {"urls": []}}, "screen_name": "HOERULES", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/683996863888936960/YQTUSVDq_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 85, "followers_count": 61577, "verified": false, "id": 2829013257, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683996863888936960/YQTUSVDq_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 45, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334058684417}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "fr", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334046138368", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/d9k6HXz9ZX", "source_user_id_str": "587035167", "expanded_url": "http://twitter.com/armand_leste/status/689899765132345349/photo/1", "source_status_id_str": "689899765132345349", "id_str": "689899763559456769", "source_user_id": 587035167, "media_url_https": "https://pbs.twimg.com/media/CZMELgGWYAEx-_q.jpg", "id": 689899763559456769, "sizes": {"large": {"h": 451, "w": 539, "resize": "fit"}, "small": {"h": 284, "w": 340, "resize": "fit"}, "medium": {"h": 451, "w": 539, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/d9k6HXz9ZX", "indices": [85, 108], "media_url": "http://pbs.twimg.com/media/CZMELgGWYAEx-_q.jpg", "source_status_id": 689899765132345349}], "user_mentions": [{"name": "SNAP : armand.leste", "id": 587035167, "screen_name": "armand_leste", "id_str": "587035167", "indices": [3, 16]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Wed Jan 20 19:58:16 +0000 2016", "lang": "fr", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "689899765132345349", "favorite_count": 771, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZMELgGWYAEx-_q.jpg", "display_url": "pic.twitter.com/d9k6HXz9ZX", "id": 689899763559456769, "type": "photo", "sizes": {"large": {"h": 451, "w": 539, "resize": "fit"}, "small": {"h": 284, "w": 340, "resize": "fit"}, "medium": {"h": 451, "w": 539, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/d9k6HXz9ZX", "indices": [67, 90], "media_url": "http://pbs.twimg.com/media/CZMELgGWYAEx-_q.jpg", "id_str": "689899763559456769", "expanded_url": "http://twitter.com/armand_leste/status/689899765132345349/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2572, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon May 21 23:03:29 +0000 2012", "profile_link_color": "3B94D9", "lang": "fr", "time_zone": "Belgrade", "contributors_enabled": false, "favourites_count": 45, "utc_offset": 3600, "description": "Qui m'aime me suive !\nDemande Professionnelle / Business \u2709\ufe0f armand.leste@laposte.net\nSNAP : armand.leste", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/587035167/1450701389", "id_str": "587035167", "statuses_count": 154, "url": "https://t.co/GizPMDVUVJ", "profile_use_background_image": false, "name": "SNAP : armand.leste", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/armand.leste/", "indices": [0, 23], "url": "https://t.co/GizPMDVUVJ", "expanded_url": "http://www.instagram.com/armand.leste/"}]}}, "screen_name": "armand_leste", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "France", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/678916844405858305/guhneTRW_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 3696, "followers_count": 39041, "verified": false, "id": 587035167, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678916844405858305/guhneTRW_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 14, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "fr", "result_type": "recent"}, "text": "Quand t'as pas fait tes devoirs mais que t'apprends que c'est not\u00e9 https://t.co/d9k6HXz9ZX", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 689899765132345349}, "retweet_count": 2572, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Oct 28 06:37:12 +0000 2012", "profile_link_color": "100000", "lang": "fr", "time_zone": "Baghdad", "contributors_enabled": false, "favourites_count": 783, "utc_offset": 10800, "description": "#Psy4DeLaRime\u2661\u266b la base des bases. #Psy4Love #Psy4Forever. #ZakEtDiego #CarpeDiem #RUE #StreetSkillz #OnlyPro 21 dec.", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/909670202/1451557744", "id_str": "909670202", "statuses_count": 20048, "url": null, "profile_use_background_image": true, "name": "Psykatra #Sya", "entities": {"description": {"urls": []}}, "screen_name": "DaLiilouw", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682744525241061376/SZurqfhB.jpg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661127339116511236/auJNXWJM_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 152, "followers_count": 357, "verified": false, "id": 909670202, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682744525241061376/SZurqfhB.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661127339116511236/auJNXWJM_normal.jpg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 10, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "fr", "result_type": "recent"}, "text": "RT @armand_leste: Quand t'as pas fait tes devoirs mais que t'apprends que c'est not\u00e9 https://t.co/d9k6HXz9ZX", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334046138368}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "tr", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334046126080", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/CXSFxhAxVI", "source_user_id_str": "3289041300", "expanded_url": "http://twitter.com/venusarmes/status/690619231390556160/photo/1", "source_status_id_str": "690619231390556160", "id_str": "690619215196323841", "source_user_id": 3289041300, "media_url_https": "https://pbs.twimg.com/media/CZWShGTWAAEJBKM.jpg", "id": 690619215196323841, "sizes": {"large": {"h": 600, "w": 400, "resize": "fit"}, "small": {"h": 510, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/CXSFxhAxVI", "indices": [139, 140], "media_url": "http://pbs.twimg.com/media/CZWShGTWAAEJBKM.jpg", "source_status_id": 690619231390556160}], "user_mentions": [{"name": "\u2728G\u00dcZEL G\u00d6ZL\u00dcM\u270d", "id": 3289041300, "screen_name": "venusarmes", "id_str": "3289041300", "indices": [3, 14]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Fri Jan 22 19:37:10 +0000 2016", "lang": "tr", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690619231390556160", "favorite_count": 217, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZWShGTWAAEJBKM.jpg", "display_url": "pic.twitter.com/CXSFxhAxVI", "id": 690619215196323841, "type": "photo", "sizes": {"large": {"h": 600, "w": 400, "resize": "fit"}, "small": {"h": 510, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/CXSFxhAxVI", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CZWShGTWAAEJBKM.jpg", "id_str": "690619215196323841", "expanded_url": "http://twitter.com/venusarmes/status/690619231390556160/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 38, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jul 23 19:56:20 +0000 2015", "profile_link_color": "0084B4", "lang": "tr", "time_zone": null, "contributors_enabled": false, "favourites_count": 95294, "utc_offset": null, "description": "\u2728G\u00f6zler,\u015fiir gibidir,her bak\u0131\u015f\u0131 A\u015fk,her g\u00f6r\u00fc\u015f\u00fc tutku,her dokunu\u015fu Ate\u015f gbidir,Hele seviliyorsa,bir ba\u015fkad\u0131r,sat\u0131rlara yans\u0131yan\u270dTakip Umrumda De\u011fl Yaz\u0131m\u0131 oku ytr", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3289041300/1450596592", "id_str": "3289041300", "statuses_count": 1422, "url": null, "profile_use_background_image": true, "name": "\u2728G\u00dcZEL G\u00d6ZL\u00dcM\u270d", "entities": {"description": {"urls": []}}, "screen_name": "venusarmes", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Bornova,\u0130ZM\u0130R..Ven\u00fcs...", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/688876189499437060/Ooq-8eVS_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 11242, "followers_count": 23339, "verified": false, "id": 3289041300, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688876189499437060/Ooq-8eVS_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 167, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "tr", "result_type": "recent"}, "text": "Y\u00fcre\u011fini sevdi\u011fm\nA\u015fk bu\n\u00c7aresi yok derler ya\nVar iksiri\nSenin sevgn\nHani diyorm\nBir gelsn\nYanl\u0131zl\u0131\u011f\u0131ma\nDokunurmusun\ud83d\udc9e https://t.co/CXSFxhAxVI", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690619231390556160}, "retweet_count": 38, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Aug 03 13:49:38 +0000 2015", "profile_link_color": "0084B4", "lang": "tr", "time_zone": null, "contributors_enabled": false, "favourites_count": 24870, "utc_offset": null, "description": "#ATAT\u00dcRK #\u00e7apulcu #izmir #Fenerbah\u00e7e #rak\u0131 #\u00e7Ar\u015f\u0131 #Brh+", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3401264571/1452634546", "id_str": "3401264571", "statuses_count": 38402, "url": null, "profile_use_background_image": true, "name": "u!6u3", "entities": {"description": {"urls": []}}, "screen_name": "yedinciok05", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/680292535609241600/aH826-3Y_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 4423, "followers_count": 45009, "verified": false, "id": 3401264571, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680292535609241600/aH826-3Y_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 10, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "tr", "result_type": "recent"}, "text": "RT @venusarmes: Y\u00fcre\u011fini sevdi\u011fm\nA\u015fk bu\n\u00c7aresi yok derler ya\nVar iksiri\nSenin sevgn\nHani diyorm\nBir gelsn\nYanl\u0131zl\u0131\u011f\u0131ma\nDokunurmusun\ud83d\udc9e https:\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334046126080}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "in", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334041935872", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl2FXWYAAwZUe.jpg", "display_url": "pic.twitter.com/h3fobisQJP", "id": 690992310163759104, "type": "photo", "sizes": {"large": {"h": 1024, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/h3fobisQJP", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/CZbl2FXWYAAwZUe.jpg", "id_str": "690992310163759104", "expanded_url": "http://twitter.com/CkThierno/status/690992334041935872/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Aug 19 22:52:09 +0000 2015", "profile_link_color": "0084B4", "lang": "fr", "time_zone": null, "contributors_enabled": false, "favourites_count": 555, "utc_offset": null, "description": "I love bad bitches that's my fuckin' problem, A$AP ROCKY / Kendrick Lamar Peulh #224", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432126551/1453491250", "id_str": "3432126551", "statuses_count": 1593, "url": null, "profile_use_background_image": true, "name": "thierno lBeretta\u274c", "entities": {"description": {"urls": []}}, "screen_name": "CkThierno", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690987685813579781/QhznS-3Q_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 74, "followers_count": 186, "verified": false, "id": 3432126551, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690987685813579781/QhznS-3Q_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "in", "result_type": "recent"}, "text": "c ma pp sa \ud83d\udc40 https://t.co/h3fobisQJP", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334041935872}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "WordPress.com", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334041841666", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3Z-UYAEGqQZ.jpg", "display_url": "pic.twitter.com/tzHMIeC6a1", "id": 690992332875784193, "type": "photo", "sizes": {"large": {"h": 200, "w": 380, "resize": "fit"}, "small": {"h": 178, "w": 340, "resize": "fit"}, "medium": {"h": 200, "w": 380, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/tzHMIeC6a1", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CZbl3Z-UYAEGqQZ.jpg", "id_str": "690992332875784193", "expanded_url": "http://twitter.com/abn_egy/status/690992334041841666/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [{"display_url": "news24eg.com/?p=231221", "indices": [66, 89], "url": "https://t.co/52uC3YBPfE", "expanded_url": "http://www.news24eg.com/?p=231221"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Feb 27 19:57:08 +0000 2015", "profile_link_color": "0084B4", "lang": "ar", "time_zone": null, "contributors_enabled": false, "favourites_count": 0, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3064551383/1442014579", "id_str": "3064551383", "statuses_count": 77326, "url": null, "profile_use_background_image": true, "name": "abn.egy@gmail.com", "entities": {"description": {"urls": []}}, "screen_name": "abn_egy", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/642481977614962688/y7M3kjhu_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 39, "followers_count": 512, "verified": false, "id": 3064551383, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/642481977614962688/y7M3kjhu_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "\u0648\u0632\u064a\u0631 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u0649\u0649 \u064a\u0624\u0643\u062f: \u0627\u0633\u062a\u0645\u0631\u0627\u0631 \u062d\u0638\u0631 \u0627\u0644\u062a\u062c\u0648\u0627\u0644 \u062d\u062a\u0649 \u062a\u0647\u062f\u0623\u00a0\u0627\u0644\u0623\u0648\u0636\u0627\u0639 https://t.co/52uC3YBPfE https://t.co/tzHMIeC6a1", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334041841666}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ja", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334041841664", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690992121868726272/pu/img/1d_cagYTqHsoa-qN.jpg", "display_url": "pic.twitter.com/7UKS1UVXBC", "id": 690992121868726272, "type": "photo", "sizes": {"large": {"h": 360, "w": 640, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 338, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/7UKS1UVXBC", "indices": [96, 119], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690992121868726272/pu/img/1d_cagYTqHsoa-qN.jpg", "id_str": "690992121868726272", "expanded_url": "http://twitter.com/shonan0kaze/status/690992334041841664/video/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jan 23 19:41:36 +0000 2016", "profile_link_color": "2B7BB9", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 0, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4804307953/1453578620", "id_str": "4804307953", "statuses_count": 3, "url": null, "profile_use_background_image": true, "name": "\u6e58\u5357\u4e43\u98a8", "entities": {"description": {"urls": []}}, "screen_name": "shonan0kaze", "protected": false, "profile_background_image_url": null, "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690984249114034177/Ay_2V4dF_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 5, "followers_count": 0, "verified": false, "id": 4804307953, "default_profile_image": false, "profile_background_image_url_https": null, "profile_image_url_https": "https://pbs.twimg.com/profile_images/690984249114034177/Ay_2V4dF_normal.jpg", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ja", "result_type": "recent"}, "text": "\u6e58\u5357\u4e43\u98a8/BIG UP No.3\n\u5922\u8ffd\u3046\u7537\u306e\u7269\u8a9e \u5922\u304c\u4e0e\u3048\u3066\u304f\u308c\u305f\u51fa\u4f1a\u3044\n\u5922\u7121\u304d\u3082\u306e\u306b\u6210\u529f\u306a\u3057 \u3053\u306e\u5148\u3082\u5171\u306b\n\u52d5\u304b\u306a\u304d\u3083\u59cb\u307e\u3089\u306a\u3044 \u63cf\u304b\u306a\u304d\u3083\u898b\u3048\u3084\u3057\u306a\u3044\n\u5922\u7b11\u3046\u3082\u306e\u306b\u6804\u5149\u306a\u3057 \u3053\u306e\u6b4c\u3092\u53cb\u306b https://t.co/7UKS1UVXBC", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334041841664}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334037782528", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Apr 16 01:49:34 +0000 2012", "profile_link_color": "088253", "lang": "en", "time_zone": "Atlantic Time (Canada)", "contributors_enabled": false, "favourites_count": 0, "utc_offset": -14400, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/554781878/1446623080", "id_str": "554781878", "statuses_count": 738, "url": "https://t.co/D9Ngl0nraz", "profile_use_background_image": false, "name": "Crazy BF Problems", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "spytexts.com/62", "indices": [0, 23], "url": "https://t.co/D9Ngl0nraz", "expanded_url": "http://spytexts.com/62"}]}}, "screen_name": "CrazyBFProbIems", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661811157074857984/TLnVakrd_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "C0DFEC", "friends_count": 1, "followers_count": 57040, "verified": false, "id": 554781878, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661811157074857984/TLnVakrd_normal.jpg", "profile_background_tile": false, "profile_background_color": "EDECE9", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 48, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334037782528}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334037737472", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/ZleNudduZy", "source_user_id_str": "1422946818", "expanded_url": "http://twitter.com/TumblrsFunnies/status/689633614389235712/photo/1", "source_status_id_str": "689633614389235712", "id_str": "689633607485358080", "source_user_id": 1422946818, "media_url_https": "https://pbs.twimg.com/media/CZISHLdWAAAm_c9.jpg", "id": 689633607485358080, "sizes": {"large": {"h": 489, "w": 749, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 391, "w": 600, "resize": "fit"}, "small": {"h": 221, "w": 340, "resize": "fit"}}, "url": "https://t.co/ZleNudduZy", "indices": [20, 43], "media_url": "http://pbs.twimg.com/media/CZISHLdWAAAm_c9.jpg", "source_status_id": 689633614389235712}], "user_mentions": [{"name": "Tumblr Funnies", "id": 1422946818, "screen_name": "TumblrsFunnies", "id_str": "1422946818", "indices": [3, 18]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Wed Jan 20 02:20:41 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "689633614389235712", "favorite_count": 5348, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZISHLdWAAAm_c9.jpg", "display_url": "pic.twitter.com/ZleNudduZy", "id": 689633607485358080, "type": "photo", "sizes": {"large": {"h": 489, "w": 749, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 391, "w": 600, "resize": "fit"}, "small": {"h": 221, "w": 340, "resize": "fit"}}, "url": "https://t.co/ZleNudduZy", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CZISHLdWAAAm_c9.jpg", "id_str": "689633607485358080", "expanded_url": "http://twitter.com/TumblrsFunnies/status/689633614389235712/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 1673, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun May 12 11:58:39 +0000 2013", "profile_link_color": "89C9FA", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 2, "utc_offset": -21600, "description": "the best pants are no pants \u2022 We do not claim ownership to any content posted \u2022 Not affiliated with Tumblr.", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1422946818/1437610058", "id_str": "1422946818", "statuses_count": 1233, "url": "https://t.co/uH5dSJIXuY", "profile_use_background_image": false, "name": "Tumblr Funnies", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lunalifted.com/collections", "indices": [0, 23], "url": "https://t.co/uH5dSJIXuY", "expanded_url": "http://lunalifted.com/collections"}]}}, "screen_name": "TumblrsFunnies", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/624013397273772032/fhvkV3g6_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 1, "followers_count": 375064, "verified": false, "id": 1422946818, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624013397273772032/fhvkV3g6_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 545, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "https://t.co/ZleNudduZy", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 689633614389235712}, "retweet_count": 1673, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Sep 19 11:14:39 +0000 2013", "profile_link_color": "994466", "lang": "en", "time_zone": "Rome", "contributors_enabled": false, "favourites_count": 23513, "utc_offset": 3600, "description": "sometimes to stay ALIVE you gotta KILL your MIND.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1882805516/1452981543", "id_str": "1882805516", "statuses_count": 35159, "url": null, "profile_use_background_image": true, "name": "DROPDEAD.", "entities": {"description": {"urls": []}}, "screen_name": "HemmoLovatic23", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "waiting for LM in italy", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688480811742527492/JMoHB6KD_normal.png", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 2463, "followers_count": 2082, "verified": false, "id": 1882805516, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688480811742527492/JMoHB6KD_normal.png", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 11, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @TumblrsFunnies: https://t.co/ZleNudduZy", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334037737472}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334037721088", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Feb 28 09:44:15 +0000 2012", "profile_link_color": "DD2E44", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 11578, "utc_offset": -18000, "description": "| Turn My Notifications on| I Do FollowBack|", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/507150971/1443752643", "id_str": "507150971", "statuses_count": 24720, "url": null, "profile_use_background_image": false, "name": "Harry", "entities": {"description": {"urls": []}}, "screen_name": "HarryMooreP", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "location": "Nebraska", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675023164846514180/zXJNWKSc_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 215954, "followers_count": 227488, "verified": false, "id": 507150971, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675023164846514180/zXJNWKSc_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 189, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334037721088}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334033534976", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Dec 03 16:31:58 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 11, "utc_offset": -18000, "description": "turn on notifications \u2717\u2665O", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2903949917/1451112664", "id_str": "2903949917", "statuses_count": 55, "url": null, "profile_use_background_image": true, "name": "\u263e", "entities": {"description": {"urls": []}}, "screen_name": "cyberfeelz", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/680884808130625541/s7gNewIK_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 135, "followers_count": 23120, "verified": false, "id": 2903949917, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680884808130625541/s7gNewIK_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 27, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334033534976}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334033518592", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jun 24 05:46:22 +0000 2012", "profile_link_color": "E02460", "lang": "en", "time_zone": "Beijing", "contributors_enabled": false, "favourites_count": 689, "utc_offset": 28800, "description": "ig-HeyMollyoMalia", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/616818782/1443494188", "id_str": "616818782", "statuses_count": 1014, "url": null, "profile_use_background_image": true, "name": "MollyoMalia", "entities": {"description": {"urls": []}}, "screen_name": "itsmollyomalia", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/484658425326870528/5eAhqfLJ.jpeg", "location": "Parody", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/648992741179977729/RU5Iaq2h_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 20522, "followers_count": 152360, "verified": false, "id": 616818782, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/484658425326870528/5eAhqfLJ.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648992741179977729/RU5Iaq2h_normal.jpg", "profile_background_tile": true, "profile_background_color": "C26575", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 118, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334033518592}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334029361152", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Nov 20 00:30:03 +0000 2012", "profile_link_color": "ABB8C2", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 3327, "utc_offset": -18000, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/959031876/1451521994", "id_str": "959031876", "statuses_count": 4976, "url": null, "profile_use_background_image": true, "name": "Mary", "entities": {"description": {"urls": []}}, "screen_name": "KinkyVersace", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/577964227257716736/Qitx3H50.jpeg", "location": "", "is_translation_enabled": true, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682358817242411008/z34yKaSo_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1, "followers_count": 35109, "verified": false, "id": 959031876, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/577964227257716736/Qitx3H50.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682358817242411008/z34yKaSo_normal.jpg", "profile_background_tile": true, "profile_background_color": "700B0B", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 25, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334029361152}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334029348865", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jan 24 15:00:48 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 20697, "utc_offset": -18000, "description": "Our camp had the baddest bitches | subscribe to my tweets | #TDISQUAD", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1117002967/1424730511", "id_str": "1117002967", "statuses_count": 1292, "url": null, "profile_use_background_image": true, "name": "BA$ED OWEN", "entities": {"description": {"urls": []}}, "screen_name": "BASED0WEN", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/670658505972428801/1f4ty5_7_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1, "followers_count": 13165, "verified": false, "id": 1117002967, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/670658505972428801/1f4ty5_7_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 22, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334029348865}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334029324288", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/C7jEpjavFQ", "source_user_id_str": "155629354", "expanded_url": "http://twitter.com/JuanfraEscudero/status/690992222536335361/photo/1", "source_status_id_str": "690992222536335361", "id_str": "690992205704609792", "source_user_id": 155629354, "media_url_https": "https://pbs.twimg.com/media/CZblwAOWQAAKNVf.jpg", "id": 690992205704609792, "sizes": {"large": {"h": 208, "w": 400, "resize": "fit"}, "small": {"h": 176, "w": 340, "resize": "fit"}, "medium": {"h": 208, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/C7jEpjavFQ", "indices": [109, 132], "media_url": "http://pbs.twimg.com/media/CZblwAOWQAAKNVf.jpg", "source_status_id": 690992222536335361}], "user_mentions": [{"name": "Juanfran Escudero", "id": 155629354, "screen_name": "JuanfraEscudero", "id_str": "155629354", "indices": [3, 19]}], "hashtags": [{"indices": [21, 34], "text": "LaHoraM\u00e1gica"}, {"indices": [93, 100], "text": "LHM724"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:19:18 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992222536335361", "favorite_count": 11, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZblwAOWQAAKNVf.jpg", "display_url": "pic.twitter.com/C7jEpjavFQ", "id": 690992205704609792, "type": "photo", "sizes": {"large": {"h": 208, "w": 400, "resize": "fit"}, "small": {"h": 176, "w": 340, "resize": "fit"}, "medium": {"h": 208, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/C7jEpjavFQ", "indices": [88, 111], "media_url": "http://pbs.twimg.com/media/CZblwAOWQAAKNVf.jpg", "id_str": "690992205704609792", "expanded_url": "http://twitter.com/JuanfraEscudero/status/690992222536335361/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [0, 13], "text": "LaHoraM\u00e1gica"}, {"indices": [72, 79], "text": "LHM724"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 23, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Jun 14 17:27:43 +0000 2010", "profile_link_color": "3B94D9", "lang": "es", "time_zone": "Madrid", "contributors_enabled": false, "favourites_count": 90201, "utc_offset": 3600, "description": "Social Media Management #Celebrities #Business | #Influencer | #Klout: https://t.co/dndUl6PH5h | Top Influencers: https://t.co/EEj3rF8VH9 @LHMOfficial", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/155629354/1453569038", "id_str": "155629354", "statuses_count": 119973, "url": "https://t.co/8czDajH2UZ", "profile_use_background_image": false, "name": "Juanfran Escudero", "entities": {"description": {"urls": [{"display_url": "Klout.com/JuanfraEscudero", "indices": [71, 94], "url": "https://t.co/dndUl6PH5h", "expanded_url": "http://Klout.com/JuanfraEscudero"}, {"display_url": "goo.gl/11uQ6t", "indices": [114, 137], "url": "https://t.co/EEj3rF8VH9", "expanded_url": "http://goo.gl/11uQ6t"}]}, "url": {"urls": [{"display_url": "JuanfranEscudero.es", "indices": [0, 23], "url": "https://t.co/8czDajH2UZ", "expanded_url": "http://www.JuanfranEscudero.es"}]}}, "screen_name": "JuanfraEscudero", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "location": "Spain", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688839000614920192/vn595VX0_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 83, "followers_count": 455735, "verified": false, "id": 155629354, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688839000614920192/vn595VX0_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1553, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "#LaHoraM\u00e1gica\n\n1. RT\n2. \u00bfCu\u00e1l es la mejor edad para ti?\n3. Contesta con #LHM724 \n\nRT\ud83d\udd1bRT https://t.co/C7jEpjavFQ", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992222536335361}, "retweet_count": 23, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jul 05 11:12:06 +0000 2015", "profile_link_color": "0084B4", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 438, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3360326439/1446554808", "id_str": "3360326439", "statuses_count": 151, "url": null, "profile_use_background_image": true, "name": "Wolf", "entities": {"description": {"urls": []}}, "screen_name": "Wolf_k58", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Galicia, Espa\u00f1a", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/617658300973359104/jjY7kYaQ_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 64, "followers_count": 174, "verified": false, "id": 3360326439, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/617658300973359104/jjY7kYaQ_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "RT @JuanfraEscudero: #LaHoraM\u00e1gica\n\n1. RT\n2. \u00bfCu\u00e1l es la mejor edad para ti?\n3. Contesta con #LHM724 \n\nRT\ud83d\udd1bRT https://t.co/C7jEpjavFQ", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334029324288}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334029230080", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/YYOohDGDW8", "source_user_id_str": "827717570", "expanded_url": "http://twitter.com/IamRobDevon/status/690696170369232896/photo/1", "source_status_id_str": "690696170369232896", "id_str": "690696155450122240", "source_user_id": 827717570, "media_url_https": "https://pbs.twimg.com/media/CZXYfnFVIAA9SZ2.jpg", "id": 690696155450122240, "sizes": {"large": {"h": 747, "w": 750, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 597, "w": 600, "resize": "fit"}, "small": {"h": 338, "w": 340, "resize": "fit"}}, "url": "https://t.co/YYOohDGDW8", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/CZXYfnFVIAA9SZ2.jpg", "source_status_id": 690696170369232896}], "user_mentions": [{"name": "rob.", "id": 827717570, "screen_name": "IamRobDevon", "id_str": "827717570", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 00:42:54 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690696170369232896", "favorite_count": 521, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZXYfnFVIAA9SZ2.jpg", "display_url": "pic.twitter.com/YYOohDGDW8", "id": 690696155450122240, "type": "photo", "sizes": {"large": {"h": 747, "w": 750, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 597, "w": 600, "resize": "fit"}, "small": {"h": 338, "w": 340, "resize": "fit"}}, "url": "https://t.co/YYOohDGDW8", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/CZXYfnFVIAA9SZ2.jpg", "id_str": "690696155450122240", "expanded_url": "http://twitter.com/IamRobDevon/status/690696170369232896/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 802, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Sep 16 20:48:19 +0000 2012", "profile_link_color": "DD2E44", "lang": "en", "time_zone": "Atlantic Time (Canada)", "contributors_enabled": false, "favourites_count": 6430, "utc_offset": -14400, "description": "honest.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/827717570/1453561768", "id_str": "827717570", "statuses_count": 22348, "url": null, "profile_use_background_image": true, "name": "rob.", "entities": {"description": {"urls": []}}, "screen_name": "IamRobDevon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "location": "Oak Park, IL", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690657536282726400/2P1J6dET_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "C0DFEC", "friends_count": 984, "followers_count": 9278, "verified": false, "id": 827717570, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690657536282726400/2P1J6dET_normal.jpg", "profile_background_tile": true, "profile_background_color": "022330", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 10, "profile_sidebar_border_color": "A8C7F7"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "OMG \ud83d\udca6\ud83d\ude29\ud83d\ude0b\ud83d\ude0d https://t.co/YYOohDGDW8", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690696170369232896}, "retweet_count": 802, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue May 13 20:36:34 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 11650, "utc_offset": null, "description": "E4L&E4J iDance E4Mommy\u2764\ufe0f", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2545744612/1452973833", "id_str": "2545744612", "statuses_count": 42862, "url": null, "profile_use_background_image": true, "name": "R.I.PMOM\u2764\ufe0f", "entities": {"description": {"urls": []}}, "screen_name": "BluntAssKiraa", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "w.Peyton\u2728\u2764\ufe0f", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/688881429577531392/NOTDuqW6_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 810, "followers_count": 1202, "verified": false, "id": 2545744612, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688881429577531392/NOTDuqW6_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 2, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @IamRobDevon: OMG \ud83d\udca6\ud83d\ude29\ud83d\ude0b\ud83d\ude0d https://t.co/YYOohDGDW8", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334029230080}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334025146368", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Mar 16 16:31:37 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 174, "utc_offset": null, "description": "sc:mtjaymt", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2415570923/1440867696", "id_str": "2415570923", "statuses_count": 719, "url": null, "profile_use_background_image": false, "name": "Haitian", "entities": {"description": {"urls": []}}, "screen_name": "Godblxss", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Rochester, NY", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/642442742543552512/jJJay661_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 15808, "followers_count": 17301, "verified": false, "id": 2415570923, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/642442742543552512/jJJay661_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 16, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334025146368}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334025134081", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "Lheng Bundal", "id": 3422649554, "screen_name": "chello1232", "id_str": "3422649554", "indices": [3, 14]}], "hashtags": [{"indices": [16, 38], "text": "MainePairfectForOPLUS"}], "urls": [{"display_url": "twitter.com/jaysondmx/stat\u2026", "indices": [40, 63], "url": "https://t.co/Z94yvvTAU4", "expanded_url": "https://twitter.com/jaysondmx/status/690915114841706496"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"quoted_status": {"created_at": "Sat Jan 23 15:12:54 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPad", "geo": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "id_str": "690915114841706496", "favorite_count": 768, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZafm_VWYAIongA.jpg", "display_url": "pic.twitter.com/mnnaDmZ1VR", "id": 690915085032775682, "type": "photo", "sizes": {"large": {"h": 782, "w": 552, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 782, "w": 552, "resize": "fit"}, "small": {"h": 481, "w": 340, "resize": "fit"}}, "url": "https://t.co/mnnaDmZ1VR", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/CZafm_VWYAIongA.jpg", "id_str": "690915085032775682", "expanded_url": "http://twitter.com/jaysondmx/status/690915114841706496/photo/1"}], "user_mentions": [{"name": "Maine Mendoza", "id": 63701775, "screen_name": "mainedcm", "id_str": "63701775", "indices": [69, 78]}, {"name": "Alden Richards", "id": 98310564, "screen_name": "aldenrichards02", "id_str": "98310564", "indices": [79, 95]}], "hashtags": [{"indices": [97, 115], "text": "ALDubEBPreWedding"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 712, "in_reply_to_status_id_str": null, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "Can't help but smile while looking at this photos\nNangyayari na sya!\n@mainedcm @aldenrichards02 \n#ALDubEBPreWedding https://t.co/mnnaDmZ1VR", "in_reply_to_user_id": null, "is_quote_status": false, "favorited": false, "truncated": false, "retweeted": false, "coordinates": null, "id": 690915114841706496}, "created_at": "Sat Jan 23 20:02:03 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690987880995487744", "quoted_status_id": 690915114841706496, "contributors": null, "quoted_status_id_str": "690915114841706496", "entities": {"user_mentions": [], "hashtags": [{"indices": [0, 22], "text": "MainePairfectForOPLUS"}], "urls": [{"display_url": "twitter.com/jaysondmx/stat\u2026", "indices": [24, 47], "url": "https://t.co/Z94yvvTAU4", "expanded_url": "https://twitter.com/jaysondmx/status/690915114841706496"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 4, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Sep 02 05:44:43 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 45020, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3422649554/1450808911", "id_str": "3422649554", "statuses_count": 990, "url": null, "profile_use_background_image": true, "name": "Lheng Bundal", "entities": {"description": {"urls": []}}, "screen_name": "chello1232", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/683012075506024448/d5ue0DS__normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 175, "followers_count": 98, "verified": false, "id": 3422649554, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683012075506024448/d5ue0DS__normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "#MainePairfectForOPLUS https://t.co/Z94yvvTAU4", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690987880995487744}, "retweet_count": 4, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Aug 07 10:57:17 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 5914, "utc_offset": null, "description": "Hakuna Matata \n+ALDUB Positive+", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3308680460/1445965363", "id_str": "3308680460", "statuses_count": 13649, "url": null, "profile_use_background_image": true, "name": "CAREN MANEJE@HK", "entities": {"description": {"urls": []}}, "screen_name": "carensky4", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690509789730881536/WbEC4i45_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 441, "followers_count": 188, "verified": false, "id": 3308680460, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690509789730881536/WbEC4i45_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 5, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @chello1232: #MainePairfectForOPLUS https://t.co/Z94yvvTAU4", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334025134081}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334020939776", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Jun 25 14:57:01 +0000 2014", "profile_link_color": "4A913C", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 6347, "utc_offset": -21600, "description": "PARODY ACCOUNT", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2640915448/1441155469", "id_str": "2640915448", "statuses_count": 118, "url": null, "profile_use_background_image": false, "name": "HOE JESUS", "entities": {"description": {"urls": []}}, "screen_name": "HoeBibIe", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "sell rt's", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682124863935397890/3w_VcvKJ_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 16, "followers_count": 31217, "verified": false, "id": 2640915448, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682124863935397890/3w_VcvKJ_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 35, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334020939776}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334016778240", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3bWWIAEcnR4.jpg", "display_url": "pic.twitter.com/qb2EEs9Fkr", "id": 690992333244997633, "type": "photo", "sizes": {"large": {"h": 442, "w": 786, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 337, "w": 600, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}}, "url": "https://t.co/qb2EEs9Fkr", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CZbl3bWWIAEcnR4.jpg", "id_str": "690992333244997633", "expanded_url": "http://twitter.com/ECentauri/status/690992334016778240/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [80, 94], "text": "migrantcrisis"}, {"indices": [95, 107], "text": "Netherlands"}, {"indices": [108, 116], "text": "Wilders"}], "urls": [{"display_url": "bit.ly/1OFsvMv", "indices": [56, 79], "url": "https://t.co/7KdabSIvuQ", "expanded_url": "http://bit.ly/1OFsvMv"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 20 15:25:15 +0000 2012", "profile_link_color": "000000", "lang": "en", "time_zone": "Mountain Time (US & Canada)", "contributors_enabled": false, "favourites_count": 21731, "utc_offset": -25200, "description": "#Analyst #Informationtechnology #InformationSecurity #Cybersecurity #Malware #Cryptography #bigdata #ReverseEngineering #Python #privacy #security #hack", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/531351424/1435332327", "id_str": "531351424", "statuses_count": 19079, "url": null, "profile_use_background_image": false, "name": "Eta Centauri (\u03b7 Cen)", "entities": {"description": {"urls": []}}, "screen_name": "ECentauri", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "306 light-years", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/666424892645089280/3y8rmF29_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 28457, "followers_count": 30944, "verified": false, "id": 531351424, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666424892645089280/3y8rmF29_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 425, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "DUTCH MP STIRS ANGER IN ANTI-ISLAM \u2018PEPPER SPRAY\u2019 RALLY https://t.co/7KdabSIvuQ\n#migrantcrisis #Netherlands #Wilders https://t.co/qb2EEs9Fkr", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334016778240}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334016745473", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jun 09 22:26:41 +0000 2013", "profile_link_color": "3B94D9", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 30, "utc_offset": -18000, "description": "Your Choice", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496740428/1446521186", "id_str": "1496740428", "statuses_count": 47, "url": "https://t.co/MmXRibKU5h", "profile_use_background_image": false, "name": "Your Choice", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "pornhub.com", "indices": [0, 23], "url": "https://t.co/MmXRibKU5h", "expanded_url": "http://pornhub.com"}]}}, "screen_name": "glogangpolls", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/661384011575611392/9kOuAVMh_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 1347, "followers_count": 27309, "verified": false, "id": 1496740428, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661384011575611392/9kOuAVMh_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 42, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334016745473}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334016741377", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Nov 19 08:23:39 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 2994, "utc_offset": -28800, "description": "\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2883752823/1437803490", "id_str": "2883752823", "statuses_count": 125, "url": null, "profile_use_background_image": true, "name": "\u2800", "entities": {"description": {"urls": []}}, "screen_name": "FulfiIl", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "\u5358\u7d14", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/683534242949644288/65FoNZMs_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 18175, "followers_count": 20343, "verified": false, "id": 2883752823, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683534242949644288/65FoNZMs_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 10, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334016741377}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992334008422401", "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [{"name": "GeHad M.Abd-alaziz", "id": 3366747364, "screen_name": "gehaddiana", "id_str": "3366747364", "indices": [3, 14]}], "hashtags": [], "urls": [{"display_url": "twitter.com/sarahatef702/s\u2026", "indices": [83, 106], "url": "https://t.co/6RJEvxczOJ", "expanded_url": "https://twitter.com/sarahatef702/status/689490244551450624"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"quoted_status": {"created_at": "Tue Jan 19 16:50:59 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "id_str": "689490244551450624", "favorite_count": 10, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZGPuOfW0AE2knZ.jpg", "display_url": "pic.twitter.com/qrN6z79t5N", "id": 689490242290765825, "type": "photo", "sizes": {"large": {"h": 480, "w": 385, "resize": "fit"}, "small": {"h": 423, "w": 340, "resize": "fit"}, "medium": {"h": 480, "w": 385, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/qrN6z79t5N", "indices": [11, 34], "media_url": "http://pbs.twimg.com/media/CZGPuOfW0AE2knZ.jpg", "id_str": "689490242290765825", "expanded_url": "http://twitter.com/sarahatef702/status/689490244551450624/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 13, "in_reply_to_status_id_str": null, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "\u0641\u0636\u0641\u0636..\ud83d\ude0c\ud83d\ude48\ud83d\udeb6\ud83d\udc4b https://t.co/qrN6z79t5N", "in_reply_to_user_id": null, "is_quote_status": false, "favorited": false, "truncated": false, "retweeted": false, "coordinates": null, "id": 689490244551450624}, "created_at": "Wed Jan 20 21:51:19 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "689928216895684612", "quoted_status_id": 689490244551450624, "contributors": null, "quoted_status_id_str": "689490244551450624", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/sarahatef702/s\u2026", "indices": [67, 90], "url": "https://t.co/6RJEvxczOJ", "expanded_url": "https://twitter.com/sarahatef702/status/689490244551450624"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 43, "favorite_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Jul 08 22:32:07 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 469, "utc_offset": null, "description": "\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f#\u0628\u0646\u0647\u0627\u0648\u064a\u0629\u2764#\u0645\u0646\u062a\u0642\u0628\u0629 #\u0627\u0647\u0644\u0627\u0648\u064a\u0629 #\u0645\u062f\u0631\u064a\u062f\u064a\u0629 #\u0642\u0647\u0648\u062c\u064a\u0629_\u0633\u0627\u0628\u0642\u0627 #\u0645\u0639\u0644\u0645\u0629_\u062d\u0627\u0644\u064a\u0627 #\u0627\u062d\u0645\u062f_\u064a\u0648\u0646\u0633 #\u0645\u0633\u0631\u062d_\u0645\u0635\u0631 #\u062d\u0642\u0648\u0642\u064a\u0629_\u0648\u0627\u0644\u0639\u064a\u0634\u0629_\u0645\u0631\u0629 #\u0631\u0628\u0639\u0627\u0648\u064a\u0629 #\u0627\u0644\u0634\u0642\u064a\u0631\u0649\u2764 #\u062c\u0648\u0632\u0627\u0626\u064a\u0629 #\u0635\u0644_\u0639_\u0627\u0644\u0646\u0628\u064a\u2764", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3366747364/1446111821", "id_str": "3366747364", "statuses_count": 14344, "url": "https://t.co/iiMeUCnweY", "profile_use_background_image": true, "name": "GeHad M.Abd-alaziz", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "ask.fm/gehad_m", "indices": [0, 23], "url": "https://t.co/iiMeUCnweY", "expanded_url": "http://ask.fm/gehad_m"}]}}, "screen_name": "gehaddiana", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/688091726175711232/3NMOxd7j_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 3275, "followers_count": 3455, "verified": false, "id": 3366747364, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688091726175711232/3NMOxd7j_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 2, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "\u064a\u0634\u0648\u0641\u0647\u0627 \u0645\u064a\u0634\u0648\u0641\u0647\u0627\u0634 \u0645\u062a\u0641\u0631\u0642\u0634\n\u064a\u0627\u0628\u062e\u062a \u0645\u0646 \u0628\u0627\u062a \u0645\u0638\u0644\u0648\u0645 \u0648\u0644\u0627 \u0646\u0645\u0634 \u0641\u0649 \u064a\u0648\u0645 \u0638\u0627\u0644\u0645 \ud83d\ude16\ud83d\ude16\ud83d\udc4c\ud83d\udc4c https://t.co/6RJEvxczOJ", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 689928216895684612}, "retweet_count": 43, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jan 23 13:50:41 +0000 2016", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 43, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_link_color": "2B7BB9", "id_str": "4838565635", "statuses_count": 217, "url": null, "profile_use_background_image": true, "name": "Moustafa Salama", "entities": {"description": {"urls": []}}, "screen_name": "salamamoustafa1", "protected": false, "profile_background_image_url": null, "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690895153691791360/ARZAR892_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 419, "followers_count": 132, "verified": false, "id": 4838565635, "default_profile_image": false, "profile_background_image_url_https": null, "profile_image_url_https": "https://pbs.twimg.com/profile_images/690895153691791360/ARZAR892_normal.jpg", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "RT @gehaddiana: \u064a\u0634\u0648\u0641\u0647\u0627 \u0645\u064a\u0634\u0648\u0641\u0647\u0627\u0634 \u0645\u062a\u0641\u0631\u0642\u0634\n\u064a\u0627\u0628\u062e\u062a \u0645\u0646 \u0628\u0627\u062a \u0645\u0638\u0644\u0648\u0645 \u0648\u0644\u0627 \u0646\u0645\u0634 \u0641\u0649 \u064a\u0648\u0645 \u0638\u0627\u0644\u0645 \ud83d\ude16\ud83d\ude16\ud83d\udc4c\ud83d\udc4c https://t.co/6RJEvxczOJ", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992334008422401}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": "4353922635", "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333995773952", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl1zbWwAAElI8.jpg", "display_url": "pic.twitter.com/1g58w2SohC", "id": 690992305348722688, "type": "photo", "sizes": {"large": {"h": 581, "w": 719, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 484, "w": 600, "resize": "fit"}, "small": {"h": 274, "w": 340, "resize": "fit"}}, "url": "https://t.co/1g58w2SohC", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/CZbl1zbWwAAElI8.jpg", "id_str": "690992305348722688", "expanded_url": "http://twitter.com/yorukzade/status/690992333995773952/photo/1"}], "user_mentions": [{"name": "Delinindelisii", "id": 4353922635, "screen_name": "delinindelisi0", "id_str": "4353922635", "indices": [0, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Aug 28 14:35:19 +0000 2012", "profile_link_color": "23EDA3", "lang": "tr", "time_zone": "Baghdad", "contributors_enabled": false, "favourites_count": 7719, "utc_offset": 10800, "description": "|80 DM 936|07 YOJ 44| |15| |Bo\u011fa| Fenerliniz \ufe0f\ufe0f\ufe0f#ForzaFenerbah\u00e7e #Honda", "profile_text_color": "9DDD95", "profile_banner_url": "https://pbs.twimg.com/profile_banners/787146152/1452094507", "id_str": "787146152", "statuses_count": 2282, "url": "https://t.co/AblMkarwHC", "profile_use_background_image": false, "name": "Y\u00f6r\u00fck'Zade\u2122\u262f", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/channel/UCwn8f\u2026", "indices": [0, 23], "url": "https://t.co/AblMkarwHC", "expanded_url": "https://www.youtube.com/channel/UCwn8fjywUeKnObzLiF_ospQ"}]}}, "screen_name": "yorukzade", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552555654603214848/Y8YCWrwE.jpeg", "location": "Kahramanmara\u015f / Osmaniye ", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/675768111887437825/NoIH5T2i_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "1A3F57", "friends_count": 1285, "followers_count": 1157, "verified": false, "id": 787146152, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552555654603214848/Y8YCWrwE.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675768111887437825/NoIH5T2i_normal.jpg", "profile_background_tile": false, "profile_background_color": "23EDA3", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "@delinindelisi0 https://t.co/1g58w2SohC", "in_reply_to_user_id": 4353922635, "is_quote_status": false, "in_reply_to_screen_name": "delinindelisi0", "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333995773952}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333995659264", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/BQTbulNko9", "source_user_id_str": "2294597154", "expanded_url": "http://twitter.com/SonAnimalitos/status/457559090684653568/photo/1", "source_status_id_str": "457559090684653568", "id_str": "457559090558808064", "source_user_id": 2294597154, "media_url_https": "https://pbs.twimg.com/media/BlmTkZCCMAAWbsC.jpg", "id": 457559090558808064, "sizes": {"large": {"h": 399, "w": 599, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 399, "w": 599, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/BQTbulNko9", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/BlmTkZCCMAAWbsC.jpg", "source_status_id": 457559090684653568}], "user_mentions": [{"name": "\u00a1\u00a1ANIMALITOS!!", "id": 2294597154, "screen_name": "SonAnimalitos", "id_str": "2294597154", "indices": [3, 17]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 12:41:55 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "TaanMuk", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690877118524186624", "favorite_count": 101, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/BQTbulNko9", "source_user_id_str": "2294597154", "expanded_url": "http://twitter.com/SonAnimalitos/status/457559090684653568/photo/1", "source_status_id_str": "457559090684653568", "id_str": "457559090558808064", "source_user_id": 2294597154, "media_url_https": "https://pbs.twimg.com/media/BlmTkZCCMAAWbsC.jpg", "id": 457559090558808064, "sizes": {"large": {"h": 399, "w": 599, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 399, "w": 599, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/BQTbulNko9", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/BlmTkZCCMAAWbsC.jpg", "source_status_id": 457559090684653568}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 62, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jan 16 15:18:15 +0000 2014", "profile_link_color": "0084B4", "lang": "es", "time_zone": null, "contributors_enabled": false, "favourites_count": 12, "utc_offset": null, "description": "Cuenta dedicada a los animales. Frases para hacer reflexi\u00f3n en cuanto al cuidado de estos maravillosos seres vivos.\n\u00a1Hay que cuidarlos!.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2294597154/1389885615", "id_str": "2294597154", "statuses_count": 14442, "url": null, "profile_use_background_image": true, "name": "\u00a1\u00a1ANIMALITOS!!", "entities": {"description": {"urls": []}}, "screen_name": "SonAnimalitos", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/423836982117036032/03hFsyyY_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 107, "followers_count": 379042, "verified": false, "id": 2294597154, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423836982117036032/03hFsyyY_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 363, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "Los ojos de un animal.... https://t.co/BQTbulNko9", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690877118524186624}, "retweet_count": 62, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Nov 27 00:10:13 +0000 2015", "lang": "en-GB", "time_zone": null, "contributors_enabled": false, "favourites_count": 75, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_link_color": "0084B4", "id_str": "4371838458", "statuses_count": 43, "url": null, "profile_use_background_image": true, "name": "Alejandra Gallegos", "entities": {"description": {"urls": []}}, "screen_name": "AleGallegosC", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/677684016791859201/Ez9HVhvp_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 56, "followers_count": 36, "verified": false, "id": 4371838458, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677684016791859201/Ez9HVhvp_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "RT @SonAnimalitos: Los ojos de un animal.... https://t.co/BQTbulNko9", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333995659264}, {"quoted_status": {"created_at": "Sat Jan 23 19:35:35 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690981219044057089", "favorite_count": 3, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "retweet_count": 1, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Oct 26 10:26:29 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 407, "utc_offset": null, "description": "Sondages sur les s\u00e9ries, rt et votez!", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4045507103/1452598090", "id_str": "4045507103", "statuses_count": 896, "url": null, "profile_use_background_image": true, "name": "sondages s\u00e9ries", "entities": {"description": {"urls": []}}, "screen_name": "sondageseries", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "faites vos propositions en dm", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/686872839752912897/7PpNK-HL_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 20, "followers_count": 2204, "verified": false, "id": 4045507103, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686872839752912897/7PpNK-HL_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 8, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "\ud83d\udcaf QUESTIONS ABOUT THE 100 \ud83d\udcaf\nTon adulte fav?", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690981219044057089}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333991600128", "quoted_status_id": 690981219044057089, "contributors": null, "quoted_status_id_str": "690981219044057089", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/sondageseries/\u2026", "indices": [6, 29], "url": "https://t.co/FaWci6GAaG", "expanded_url": "https://twitter.com/sondageseries/status/690981219044057089"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Oct 01 15:09:34 +0000 2013", "profile_link_color": "ABB8C2", "lang": "fr", "time_zone": "Athens", "contributors_enabled": false, "favourites_count": 24140, "utc_offset": 7200, "description": "don't cry babe-jw . \u02da * @WildpipM", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1923762805/1452291126", "id_str": "1923762805", "statuses_count": 32844, "url": null, "profile_use_background_image": true, "name": "ennia", "entities": {"description": {"urls": []}}, "screen_name": "dobresides", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/550965958332805121/8LPCjcFP.jpeg", "location": "tw|tvd|to|t100|", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690204876207357953/N-UhBgrU_normal.png", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 875, "followers_count": 2112, "verified": false, "id": 1923762805, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/550965958332805121/8LPCjcFP.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690204876207357953/N-UhBgrU_normal.png", "profile_background_tile": true, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 14, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "abby https://t.co/FaWci6GAaG", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333991600128}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333991510017", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/oeKWfF9IV8", "source_user_id_str": "767117556", "expanded_url": "http://twitter.com/TvlertheCreator/status/690987596621725696/photo/1", "source_status_id_str": "690987596621725696", "id_str": "690987596529430528", "source_user_id": 767117556, "media_url_https": "https://pbs.twimg.com/media/CZbhjttWcAA_m_O.jpg", "id": 690987596529430528, "sizes": {"large": {"h": 400, "w": 599, "resize": "fit"}, "small": {"h": 227, "w": 340, "resize": "fit"}, "medium": {"h": 400, "w": 599, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/oeKWfF9IV8", "indices": [54, 77], "media_url": "http://pbs.twimg.com/media/CZbhjttWcAA_m_O.jpg", "source_status_id": 690987596621725696}], "user_mentions": [{"name": "GOLF WANG", "id": 767117556, "screen_name": "TvlertheCreator", "id_str": "767117556", "indices": [3, 19]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:00:55 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Buffer", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690987596621725696", "favorite_count": 36, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbhjttWcAA_m_O.jpg", "display_url": "pic.twitter.com/oeKWfF9IV8", "id": 690987596529430528, "type": "photo", "sizes": {"large": {"h": 400, "w": 599, "resize": "fit"}, "small": {"h": 227, "w": 340, "resize": "fit"}, "medium": {"h": 400, "w": 599, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/oeKWfF9IV8", "indices": [33, 56], "media_url": "http://pbs.twimg.com/media/CZbhjttWcAA_m_O.jpg", "id_str": "690987596529430528", "expanded_url": "http://twitter.com/TvlertheCreator/status/690987596621725696/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 36, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Aug 19 07:27:48 +0000 2012", "lang": "en", "time_zone": "Arizona", "contributors_enabled": false, "favourites_count": 1, "utc_offset": -25200, "description": "Here to make you laugh! I am not Tyler The Creator. Fan/Parody account. No affiliation with rapper Tyler The Creator. *I dont own content tweeted*", "profile_text_color": "333333", "profile_link_color": "0084B4", "id_str": "767117556", "statuses_count": 10809, "url": null, "profile_use_background_image": false, "name": "GOLF WANG", "entities": {"description": {"urls": []}}, "screen_name": "TvlertheCreator", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/639451525/m4wwv6rbwz87yct2p82t.jpeg", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000408270949/a902f663d6dc34a05610b58e04afa7c6_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 179620, "followers_count": 233319, "verified": false, "id": 767117556, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/639451525/m4wwv6rbwz87yct2p82t.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000408270949/a902f663d6dc34a05610b58e04afa7c6_normal.jpeg", "profile_background_tile": true, "profile_background_color": "FFFFFF", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 146, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "When someone wanna leave my life https://t.co/oeKWfF9IV8", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690987596621725696}, "retweet_count": 36, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jun 09 04:15:07 +0000 2011", "profile_link_color": "ABB8C2", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 1867, "utc_offset": null, "description": "I pitch with my left and kick with my right", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/313741405/1453055440", "id_str": "313741405", "statuses_count": 5948, "url": null, "profile_use_background_image": true, "name": "Julieeee", "entities": {"description": {"urls": []}}, "screen_name": "JulizaMolina", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "location": "Egypt", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/689584736423968768/DMU0Hd7u_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 879, "followers_count": 496, "verified": false, "id": 313741405, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689584736423968768/DMU0Hd7u_normal.jpg", "profile_background_tile": false, "profile_background_color": "9266CC", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 3, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TvlertheCreator: When someone wanna leave my life https://t.co/oeKWfF9IV8", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333991510017}, {"quoted_status": {"created_at": "Sat Jan 23 20:15:27 +0000 2016", "lang": "en", "in_reply_to_user_id_str": "2938700712", "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": 690990804764983296, "favorited": false, "id_str": "690991254973341696", "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [{"name": "Christy Cole1974 Col", "id": 2938700712, "screen_name": "CLCole1974", "id_str": "2938700712", "indices": [0, 11]}, {"name": "Sheila", "id": 21370758, "screen_name": "shewitsch", "id_str": "21370758", "indices": [12, 22]}, {"name": "Just Bibi", "id": 2916752684, "screen_name": "BibiCheret", "id_str": "2916752684", "indices": [23, 34]}, {"name": "John Bechard", "id": 380608558, "screen_name": "JohnBechard", "id_str": "380608558", "indices": [35, 47]}, {"name": "Derrold Purifoy", "id": 77321664, "screen_name": "derrold", "id_str": "77321664", "indices": [48, 56]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "retweet_count": 1, "in_reply_to_status_id_str": "690990804764983296", "user": {"notifications": false, "created_at": "Sat Jul 14 13:35:36 +0000 2012", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 4602, "utc_offset": null, "description": "Alive as of this moment, but waiting for the final act", "profile_text_color": "333333", "profile_link_color": "0084B4", "id_str": "635467062", "statuses_count": 5106, "url": null, "profile_use_background_image": true, "name": "Old Man Steve", "entities": {"description": {"urls": []}}, "screen_name": "stwevegordo2995", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Floating away", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/660528435106873344/rshn90QJ_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 37, "followers_count": 119, "verified": false, "id": 635467062, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660528435106873344/rshn90QJ_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 5, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "@CLCole1974 @shewitsch @BibiCheret @JohnBechard @derrold a great comfort to me in my twilight years.Easy maintenance", "in_reply_to_user_id": 2938700712, "is_quote_status": false, "in_reply_to_screen_name": "CLCole1974", "truncated": false, "retweeted": false, "coordinates": null, "id": 690991254973341696}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333991510016", "quoted_status_id": 690991254973341696, "contributors": null, "quoted_status_id_str": "690991254973341696", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/stwevegordo299\u2026", "indices": [100, 123], "url": "https://t.co/m3AM3pIvY4", "expanded_url": "https://twitter.com/stwevegordo2995/status/690991254973341696"}], "symbols": []}, "place": {"id": "67d92742f1ebf307", "country_code": "US", "url": "https://api.twitter.com/1.1/geo/id/67d92742f1ebf307.json", "bounding_box": {"type": "Polygon", "coordinates": [[[-90.418136, 41.696088], [-82.122971, 41.696088], [-82.122971, 48.306272], [-90.418136, 48.306272]]]}, "name": "Michigan", "country": "United States", "place_type": "admin", "full_name": "Michigan, USA", "attributes": {}, "contained_within": []}, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Dec 21 23:31:04 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 11957, "utc_offset": null, "description": "Born march 24th. 1974 , Love fishing, camping, Animals lover, Love all kinds of music, Am into Romance I Live in powers,Michigan", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2938700712/1452351260", "id_str": "2938700712", "statuses_count": 32215, "url": null, "profile_use_background_image": true, "name": "Christy Cole1974 Col", "entities": {"description": {"urls": []}}, "screen_name": "CLCole1974", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/688933287826333696/Ht_uVD8n_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1404, "followers_count": 538, "verified": false, "id": 2938700712, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688933287826333696/Ht_uVD8n_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 6, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Lmao! Yeah I can see that he just needs some dusting now and then and a brushing ! You Crack me up https://t.co/m3AM3pIvY4", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333991510016}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333987405825", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl235WkAEzNIb.jpg", "display_url": "pic.twitter.com/KTiYLZj4uN", "id": 690992323728150529, "type": "photo", "sizes": {"large": {"h": 270, "w": 480, "resize": "fit"}, "small": {"h": 191, "w": 340, "resize": "fit"}, "medium": {"h": 270, "w": 480, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/KTiYLZj4uN", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/CZbl235WkAEzNIb.jpg", "id_str": "690992323728150529", "expanded_url": "http://twitter.com/Mvnar__/status/690992333987405825/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Aug 18 17:27:12 +0000 2012", "profile_link_color": "0084B4", "lang": "ar", "time_zone": null, "contributors_enabled": false, "favourites_count": 287, "utc_offset": null, "description": "\u264f\ufe0f", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/766079576/1453505848", "id_str": "766079576", "statuses_count": 3779, "url": null, "profile_use_background_image": true, "name": "Manar", "entities": {"description": {"urls": []}}, "screen_name": "Mvnar__", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Riyadh", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/690508438372237312/cMjmpZJR_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 215, "followers_count": 310, "verified": false, "id": 766079576, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690508438372237312/cMjmpZJR_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "\u0644\u0644\u062d\u064a\u0646 \u0645\u0627 \u0641\u0627\u062a\u062d\u062a\u0647 \u0628\u0627\u0644\u0645\u0648\u0636\u0648\u0639 https://t.co/KTiYLZj4uN", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333987405825}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333978992640", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/aJThu136UI", "source_user_id_str": "2371585222", "expanded_url": "http://twitter.com/7083b8ff15454e9/status/690280014315659264/photo/1", "source_status_id_str": "690280014315659264", "id_str": "690280007885832193", "source_user_id": 2371585222, "media_url_https": "https://pbs.twimg.com/media/CZReAomWwAEMXCY.jpg", "id": 690280007885832193, "sizes": {"large": {"h": 500, "w": 500, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 500, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/aJThu136UI", "indices": [124, 140], "media_url": "http://pbs.twimg.com/media/CZReAomWwAEMXCY.jpg", "source_status_id": 690280014315659264}], "user_mentions": [{"name": "\u0636\u064a\u0627\u0621", "id": 2371585222, "screen_name": "7083b8ff15454e9", "id_str": "2371585222", "indices": [3, 19]}], "hashtags": [{"indices": [21, 30], "text": "\u0633\u0623\u0643\u062a\u0628_\u0644\u0643"}, {"indices": [105, 110], "text": "\u0636\u064a\u0627\u0621"}, {"indices": [112, 123], "text": "\u0645\u0646\u0628\u0631_\u0627\u0644\u062d\u0631\u0641"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Jan 21 21:09:14 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690280014315659264", "favorite_count": 16, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZReAomWwAEMXCY.jpg", "display_url": "pic.twitter.com/aJThu136UI", "id": 690280007885832193, "type": "photo", "sizes": {"large": {"h": 500, "w": 500, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 500, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/aJThu136UI", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/CZReAomWwAEMXCY.jpg", "id_str": "690280007885832193", "expanded_url": "http://twitter.com/7083b8ff15454e9/status/690280014315659264/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [0, 9], "text": "\u0633\u0623\u0643\u062a\u0628_\u0644\u0643"}, {"indices": [84, 89], "text": "\u0636\u064a\u0627\u0621"}, {"indices": [91, 102], "text": "\u0645\u0646\u0628\u0631_\u0627\u0644\u062d\u0631\u0641"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 51, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Feb 28 18:43:47 +0000 2014", "profile_link_color": "0084B4", "lang": "ar", "time_zone": null, "contributors_enabled": false, "favourites_count": 122584, "utc_offset": null, "description": "\u200f\u0627\u0643\u0631\u0647 \u0627\u0644\u0637\u0627\u0626\u0641\u064a\u0647 \u0631\u0628\u0646\u0627 \u0648\u0627\u062d\u062f \u0646\u0628\u064a\u0646\u0627 \u0648\u0627\u062d\u062f \u062f\u064a\u0646\u0646\u0627 \u0648\u0627\u062d\u062f \u0627\u062d\u062a\u0631\u0645 \u0643\u0644 \u0634\u062e\u0635 \u064a\u0624\u0645\u0646 \u0628\u0645\u0639\u062a\u0642\u062f\u0647 \u0648\ufefb \u064a\u062a\u062c\u0627\u0648\u0632 \u0639\u0644\u0649 \u0627\u0644\u0627\u062e\u0631\u064a\u0646", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2371585222/1450973949", "id_str": "2371585222", "statuses_count": 53506, "url": null, "profile_use_background_image": true, "name": "\u0636\u064a\u0627\u0621", "entities": {"description": {"urls": []}}, "screen_name": "7083b8ff15454e9", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/680058216601010176/OhAbjAwE_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 1479, "followers_count": 5935, "verified": false, "id": 2371585222, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680058216601010176/OhAbjAwE_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 19, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "#\u0633\u0623\u0643\u062a\u0628_\u0644\u0643 \n\u062c\u0648\u0647\u0631\u062a\u064a\n\u0627\u0630\u0627 \u0627\u0644\u0623\u0642\u062f\u0627\u0631 \u0644\u0645 \u062a\u0631\u062d\u0645\u0646\u0627\n\u062f\u0639 \u0627\u0631\u0648\u0627\u062d\u0646\u0627 \n\u0647\u064a \u0627\u0646\u0642\u0649 \u0645\u0627 \u0639\u0646\u062f\u0646\u0627\n\u0628\u0627\u0644\u062f\u0639\u0627\u0621 \u062a\u062c\u0645\u0639\u0646\u0627\n#\u0636\u064a\u0627\u0621 \n#\u0645\u0646\u0628\u0631_\u0627\u0644\u062d\u0631\u0641 https://t.co/aJThu136UI", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690280014315659264}, "retweet_count": 51, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Mar 22 23:43:59 +0000 2010", "profile_link_color": "2FC2EF", "lang": "en", "time_zone": "Cairo", "contributors_enabled": false, "favourites_count": 1653, "utc_offset": 7200, "description": "", "profile_text_color": "666666", "profile_banner_url": "https://pbs.twimg.com/profile_banners/125482058/1452802503", "id_str": "125482058", "statuses_count": 2129, "url": "https://t.co/HHNTub5DrT", "profile_use_background_image": true, "name": "sapna s", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/group.php?gid=\u2026", "indices": [0, 23], "url": "https://t.co/HHNTub5DrT", "expanded_url": "http://www.facebook.com/group.php?gid=371385076025&ref=mf"}]}}, "screen_name": "sapna_s", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "location": "egypt", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/680137661294718976/N04pC_bU_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "252429", "friends_count": 404, "followers_count": 371, "verified": false, "id": 125482058, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680137661294718976/N04pC_bU_normal.jpg", "profile_background_tile": false, "profile_background_color": "1A1B1F", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "181A1E"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "RT @7083b8ff15454e9: #\u0633\u0623\u0643\u062a\u0628_\u0644\u0643 \n\u062c\u0648\u0647\u0631\u062a\u064a\n\u0627\u0630\u0627 \u0627\u0644\u0623\u0642\u062f\u0627\u0631 \u0644\u0645 \u062a\u0631\u062d\u0645\u0646\u0627\n\u062f\u0639 \u0627\u0631\u0648\u0627\u062d\u0646\u0627 \n\u0647\u064a \u0627\u0646\u0642\u0649 \u0645\u0627 \u0639\u0646\u062f\u0646\u0627\n\u0628\u0627\u0644\u062f\u0639\u0627\u0621 \u062a\u062c\u0645\u0639\u0646\u0627\n#\u0636\u064a\u0627\u0621 \n#\u0645\u0646\u0628\u0631_\u0627\u0644\u062d\u0631\u0641 https://t.co/aJ\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333978992640}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333974798336", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/uVRQr8y6xm", "source_user_id_str": "439125710", "expanded_url": "http://twitter.com/Ashton5SOS/status/690989474126413824/photo/1", "source_status_id_str": "690989474126413824", "id_str": "690989469021802496", "source_user_id": 439125710, "media_url_https": "https://pbs.twimg.com/media/CZbjQtSUkAAVSiO.jpg", "id": 690989469021802496, "sizes": {"large": {"h": 1024, "w": 768, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/uVRQr8y6xm", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/CZbjQtSUkAAVSiO.jpg", "source_status_id": 690989474126413824}], "user_mentions": [{"name": "Ashton Irwin", "id": 439125710, "screen_name": "Ashton5SOS", "id_str": "439125710", "indices": [3, 14]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:08:23 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690989474126413824", "favorite_count": 22950, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbjQtSUkAAVSiO.jpg", "display_url": "pic.twitter.com/uVRQr8y6xm", "id": 690989469021802496, "type": "photo", "sizes": {"large": {"h": 1024, "w": 768, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/uVRQr8y6xm", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/CZbjQtSUkAAVSiO.jpg", "id_str": "690989469021802496", "expanded_url": "http://twitter.com/Ashton5SOS/status/690989474126413824/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 14582, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Dec 17 11:46:12 +0000 2011", "profile_link_color": "0B557A", "lang": "en", "time_zone": "London", "contributors_enabled": false, "favourites_count": 1339, "utc_offset": 0, "description": "// @5SOS & @HiOrHeyRecords // Holding on to a dream, giving my heart and soul", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/439125710/1446806204", "id_str": "439125710", "statuses_count": 8984, "url": "https://t.co/om1Hi7QABJ", "profile_use_background_image": true, "name": "Ashton Irwin", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "5sos.com", "indices": [0, 23], "url": "https://t.co/om1Hi7QABJ", "expanded_url": "http://www.5sos.com"}]}}, "screen_name": "Ashton5SOS", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/741005580/042559392d591fd05e96ef78629eaa17.jpeg", "location": "Band on the run! ", "is_translation_enabled": true, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/676598802447532032/ndt5j4FO_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 9528, "followers_count": 4732836, "verified": true, "id": 439125710, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/741005580/042559392d591fd05e96ef78629eaa17.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676598802447532032/ndt5j4FO_normal.jpg", "profile_background_tile": true, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 33981, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Just hangin https://t.co/uVRQr8y6xm", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690989474126413824}, "retweet_count": 14582, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Jun 19 09:51:05 +0000 2013", "profile_link_color": "0084B4", "lang": "de", "time_zone": null, "contributors_enabled": false, "favourites_count": 29849, "utc_offset": null, "description": "nothing important :#", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1530326628/1383152276", "id_str": "1530326628", "statuses_count": 25830, "url": null, "profile_use_background_image": true, "name": "Leonie Hackenberg", "entities": {"description": {"urls": []}}, "screen_name": "MRSHacke", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "D\u00fcsseldorf", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/566189727871954944/wF9zKc3-_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 451, "followers_count": 505, "verified": false, "id": 1530326628, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/566189727871954944/wF9zKc3-_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 4, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @Ashton5SOS: Just hangin https://t.co/uVRQr8y6xm", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333974798336}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333970620416", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/oRtKM8gCeP", "source_user_id_str": "3233402826", "expanded_url": "http://twitter.com/OfficialWith1D/status/690992166357725184/photo/1", "source_status_id_str": "690992166357725184", "id_str": "690992121797435392", "source_user_id": 3233402826, "media_url_https": "https://pbs.twimg.com/media/CZblrHpUYAAgR9c.jpg", "id": 690992121797435392, "sizes": {"large": {"h": 792, "w": 638, "resize": "fit"}, "small": {"h": 422, "w": 340, "resize": "fit"}, "medium": {"h": 744, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/oRtKM8gCeP", "indices": [40, 63], "media_url": "http://pbs.twimg.com/media/CZblrHpUYAAgR9c.jpg", "source_status_id": 690992166357725184}], "user_mentions": [{"name": "1D Updates!", "id": 3233402826, "screen_name": "OfficialWith1D", "id_str": "3233402826", "indices": [3, 18]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:19:05 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992166357725184", "favorite_count": 147, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZblrHpUYAAgR9c.jpg", "display_url": "pic.twitter.com/oRtKM8gCeP", "id": 690992121797435392, "type": "photo", "sizes": {"large": {"h": 792, "w": 638, "resize": "fit"}, "small": {"h": 422, "w": 340, "resize": "fit"}, "medium": {"h": 744, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/oRtKM8gCeP", "indices": [20, 43], "media_url": "http://pbs.twimg.com/media/CZblrHpUYAAgR9c.jpg", "id_str": "690992121797435392", "expanded_url": "http://twitter.com/OfficialWith1D/status/690992166357725184/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 121, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jun 02 11:37:24 +0000 2015", "profile_link_color": "ABB8C2", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 17437, "utc_offset": -28800, "description": "The fastest and most reliable source for 1D news, pics, vids, and livetweeting! Turn ON notifications to stay updated 24/7! Apply to be an insider below! x B/4", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3233402826/1453093117", "id_str": "3233402826", "statuses_count": 26163, "url": "https://t.co/x7O4K6xA1l", "profile_use_background_image": true, "name": "1D Updates!", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "drive.google.com/open?id=1F3jMn\u2026", "indices": [0, 23], "url": "https://t.co/x7O4K6xA1l", "expanded_url": "https://drive.google.com/open?id=1F3jMnLHgiUAsBWTi0PCQXRCc3KJkLZT5L-nZwxInZdY"}]}}, "screen_name": "OfficialWith1D", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/606072222751420416/_MF_JjMS.jpg", "location": "With the boys! ", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688943896617816064/CxULUiZV_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "000000", "friends_count": 13711, "followers_count": 121788, "verified": false, "id": 3233402826, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/606072222751420416/_MF_JjMS.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688943896617816064/CxULUiZV_normal.jpg", "profile_background_tile": false, "profile_background_color": "1A1B1F", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 439, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "ONE YEAR AGO TODAY! https://t.co/oRtKM8gCeP", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992166357725184}, "retweet_count": 121, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jun 14 01:20:51 +0000 2014", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Santiago", "contributors_enabled": false, "favourites_count": 364, "utc_offset": -10800, "description": "I would kill to see louis in suspenders one more time", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2566207514/1447331145", "id_str": "2566207514", "statuses_count": 717, "url": null, "profile_use_background_image": true, "name": "kate", "entities": {"description": {"urls": []}}, "screen_name": "larrydandelion", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/689188548914843648/V3YsSeXp_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 117, "followers_count": 62, "verified": false, "id": 2566207514, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689188548914843648/V3YsSeXp_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @OfficialWith1D: ONE YEAR AGO TODAY! https://t.co/oRtKM8gCeP", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333970620416}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333970546688", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/oy19Us3beS", "source_user_id_str": "378399463", "expanded_url": "http://twitter.com/saintIaurents/status/690630773838229504/photo/1", "source_status_id_str": "690630773838229504", "id_str": "690630770239533056", "source_user_id": 378399463, "media_url_https": "https://pbs.twimg.com/media/CZWdBsMU8AAdw1d.jpg", "id": 690630770239533056, "sizes": {"large": {"h": 540, "w": 720, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/oy19Us3beS", "indices": [104, 127], "media_url": "http://pbs.twimg.com/media/CZWdBsMU8AAdw1d.jpg", "source_status_id": 690630773838229504}], "user_mentions": [{"name": "steph", "id": 378399463, "screen_name": "saintIaurents", "id_str": "378399463", "indices": [3, 17]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Fri Jan 22 20:23:02 +0000 2016", "lang": "en", "in_reply_to_user_id_str": "378399463", "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": 690624264395816960, "favorited": false, "id_str": "690630773838229504", "favorite_count": 8779, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZWdBsMU8AAdw1d.jpg", "display_url": "pic.twitter.com/oy19Us3beS", "id": 690630770239533056, "type": "photo", "sizes": {"large": {"h": 540, "w": 720, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/oy19Us3beS", "indices": [85, 108], "media_url": "http://pbs.twimg.com/media/CZWdBsMU8AAdw1d.jpg", "id_str": "690630770239533056", "expanded_url": "http://twitter.com/saintIaurents/status/690630773838229504/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 7707, "in_reply_to_status_id_str": "690624264395816960", "user": {"notifications": false, "created_at": "Fri Sep 23 04:11:01 +0000 2011", "profile_link_color": "8A8F91", "lang": "en", "time_zone": "Arizona", "contributors_enabled": false, "favourites_count": 10756, "utc_offset": -25200, "description": "That's totally awkward random.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/378399463/1453445781", "id_str": "378399463", "statuses_count": 66843, "url": null, "profile_use_background_image": true, "name": "steph", "entities": {"description": {"urls": []}}, "screen_name": "saintIaurents", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000123668299/2b2a8c5fc7cb291f3f820f0c8b463630.jpeg", "location": "ca", "is_translation_enabled": true, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688959179772411906/5YlKPVWE_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 395, "followers_count": 7883, "verified": false, "id": 378399463, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000123668299/2b2a8c5fc7cb291f3f820f0c8b463630.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688959179772411906/5YlKPVWE_normal.jpg", "profile_background_tile": true, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 57, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "9. Beck & Jade. Literally the hottest nickelodeon/disney tv couple let's be real https://t.co/oy19Us3beS", "in_reply_to_user_id": 378399463, "is_quote_status": false, "in_reply_to_screen_name": "saintIaurents", "truncated": false, "retweeted": false, "coordinates": null, "id": 690630773838229504}, "retweet_count": 7707, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Jan 05 20:09:35 +0000 2013", "profile_link_color": "000000", "lang": "es", "time_zone": "Caracas", "contributors_enabled": false, "favourites_count": 1667, "utc_offset": -16200, "description": "", "profile_text_color": "666666", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1063889918/1445999456", "id_str": "1063889918", "statuses_count": 20065, "url": "https://t.co/oJsnhJAr0v", "profile_use_background_image": true, "name": "Karly", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/karlyivimas", "indices": [0, 23], "url": "https://t.co/oJsnhJAr0v", "expanded_url": "https://instagram.com/karlyivimas"}]}}, "screen_name": "karly_ivimas", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466735223346978816/dJWYkUwn.jpeg", "location": "Puerto Ord\u00e1z, Bol\u00edvar", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690016013300187136/5ff6M3lH_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "252429", "friends_count": 288, "followers_count": 480, "verified": false, "id": 1063889918, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466735223346978816/dJWYkUwn.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690016013300187136/5ff6M3lH_normal.jpg", "profile_background_tile": true, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 7, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @saintIaurents: 9. Beck & Jade. Literally the hottest nickelodeon/disney tv couple let's be real https://t.co/oy19Us3beS", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333970546688}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333962264576", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3MkWAAAeyCH.jpg", "display_url": "pic.twitter.com/tqap4g9zK4", "id": 690992329277177856, "type": "photo", "sizes": {"large": {"h": 710, "w": 1024, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 416, "w": 600, "resize": "fit"}, "small": {"h": 235, "w": 340, "resize": "fit"}}, "url": "https://t.co/tqap4g9zK4", "indices": [23, 46], "media_url": "http://pbs.twimg.com/media/CZbl3MkWAAAeyCH.jpg", "id_str": "690992329277177856", "expanded_url": "http://twitter.com/phinsfanatic561/status/690992333962264576/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Oct 04 02:02:35 +0000 2010", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 6417, "utc_offset": null, "description": "Muttin' since '10... @Real_LMT Mod/Recruiter ELITE TIER @TrustedTradeMUT Collect Phins & UM cards... DM for trades... PHINS UP!!!", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/198353468/1425779892", "id_str": "198353468", "statuses_count": 8670, "url": null, "profile_use_background_image": true, "name": "DaPhinSin06 LMT/PS4", "entities": {"description": {"urls": []}}, "screen_name": "phinsfanatic561", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "West Palm Beach, FL", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/648643247355633664/ev-8h4uh_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 486, "followers_count": 1391, "verified": false, "id": 198353468, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648643247355633664/ev-8h4uh_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 10, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "See ya in 2 1/2 hours! https://t.co/tqap4g9zK4", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333962264576}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333958074368", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/oxSes1yrXz", "source_user_id_str": "519881407", "expanded_url": "http://twitter.com/jkirby_1/status/690992102113722368/photo/1", "source_status_id_str": "690992102113722368", "id_str": "690992090105417728", "source_user_id": 519881407, "media_url_https": "https://pbs.twimg.com/media/CZblpRlWkAAuMJr.jpg", "id": 690992090105417728, "sizes": {"large": {"h": 1024, "w": 768, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/oxSes1yrXz", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/CZblpRlWkAAuMJr.jpg", "source_status_id": 690992102113722368}], "user_mentions": [{"name": "Joe Kirby", "id": 519881407, "screen_name": "jkirby_1", "id_str": "519881407", "indices": [3, 12]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:18:49 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992102113722368", "favorite_count": 2, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZblpRlWkAAuMJr.jpg", "display_url": "pic.twitter.com/oxSes1yrXz", "id": 690992090105417728, "type": "photo", "sizes": {"large": {"h": 1024, "w": 768, "resize": "fit"}, "small": {"h": 453, "w": 340, "resize": "fit"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/oxSes1yrXz", "indices": [24, 47], "media_url": "http://pbs.twimg.com/media/CZblpRlWkAAuMJr.jpg", "id_str": "690992090105417728", "expanded_url": "http://twitter.com/jkirby_1/status/690992102113722368/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Mar 09 22:33:07 +0000 2012", "profile_link_color": "B30000", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 10734, "utc_offset": null, "description": "Kelty Hearts u19s #14 IN BITTON WE TRUST", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/519881407/1437838689", "id_str": "519881407", "statuses_count": 10392, "url": null, "profile_use_background_image": true, "name": "Joe Kirby", "entities": {"description": {"urls": []}}, "screen_name": "jkirby_1", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688474391827599361/1gWsVzLS_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 675, "followers_count": 842, "verified": false, "id": 519881407, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688474391827599361/1gWsVzLS_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Ceeeeemon out a 5k pack https://t.co/oxSes1yrXz", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992102113722368}, "retweet_count": 2, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Sep 18 15:02:01 +0000 2012", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 4727, "utc_offset": null, "description": "17", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/831237140/1450535217", "id_str": "831237140", "statuses_count": 2740, "url": null, "profile_use_background_image": true, "name": "Lewis Payne", "entities": {"description": {"urls": []}}, "screen_name": "LewisPayne_", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/686518209558740992/3vSQ7-lQ_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 892, "followers_count": 598, "verified": false, "id": 831237140, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686518209558740992/3vSQ7-lQ_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @jkirby_1: Ceeeeemon out a 5k pack https://t.co/oxSes1yrXz", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333958074368}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333958021122", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/9QVipTJlz5", "source_user_id_str": "1477425458", "expanded_url": "http://twitter.com/pablopicaszo/status/688303930388910081/photo/1", "source_status_id_str": "688303930388910081", "id_str": "688303927100575744", "source_user_id": 1477425458, "media_url_https": "https://pbs.twimg.com/media/CY1YxmBWEAAlfOy.jpg", "id": 688303927100575744, "sizes": {"large": {"h": 498, "w": 399, "resize": "fit"}, "small": {"h": 423, "w": 340, "resize": "fit"}, "medium": {"h": 498, "w": 399, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/9QVipTJlz5", "indices": [47, 70], "media_url": "http://pbs.twimg.com/media/CY1YxmBWEAAlfOy.jpg", "source_status_id": 688303930388910081}], "user_mentions": [{"name": "zo\u00eb", "id": 1477425458, "screen_name": "pablopicaszo", "id_str": "1477425458", "indices": [3, 16]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 16 10:16:59 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "688303930388910081", "favorite_count": 6, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CY1YxmBWEAAlfOy.jpg", "display_url": "pic.twitter.com/9QVipTJlz5", "id": 688303927100575744, "type": "photo", "sizes": {"large": {"h": 498, "w": 399, "resize": "fit"}, "small": {"h": 423, "w": 340, "resize": "fit"}, "medium": {"h": 498, "w": 399, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/9QVipTJlz5", "indices": [29, 52], "media_url": "http://pbs.twimg.com/media/CY1YxmBWEAAlfOy.jpg", "id_str": "688303927100575744", "expanded_url": "http://twitter.com/pablopicaszo/status/688303930388910081/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jun 02 14:21:06 +0000 2013", "profile_link_color": "00B380", "lang": "en", "time_zone": "Atlantic Time (Canada)", "contributors_enabled": false, "favourites_count": 3506, "utc_offset": -14400, "description": "name an interlude after me", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1477425458/1453486223", "id_str": "1477425458", "statuses_count": 18144, "url": "https://t.co/PHHywlCelF", "profile_use_background_image": true, "name": "zo\u00eb", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "etsy.com/shop/ShopPablo", "indices": [0, 23], "url": "https://t.co/PHHywlCelF", "expanded_url": "http://www.etsy.com/shop/ShopPablo"}]}}, "screen_name": "pablopicaszo", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435887657554423809/kbs3hzVK.png", "location": "the dirty south", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690904459048714241/HLZGJXJR_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 433, "followers_count": 557, "verified": false, "id": 1477425458, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435887657554423809/kbs3hzVK.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690904459048714241/HLZGJXJR_normal.jpg", "profile_background_tile": true, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 7, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "damaris, im in love with you https://t.co/9QVipTJlz5", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 688303930388910081}, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jul 10 23:01:20 +0000 2012", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 45, "utc_offset": null, "description": "\u2734\nLurker", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/632466912/1453520602", "id_str": "632466912", "statuses_count": 7496, "url": null, "profile_use_background_image": true, "name": "Ime_Ekan", "entities": {"description": {"urls": []}}, "screen_name": "AimeeIme", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/677578543715508225/ARMei_qp_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 396, "followers_count": 580, "verified": false, "id": 632466912, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677578543715508225/ARMei_qp_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @pablopicaszo: damaris, im in love with you https://t.co/9QVipTJlz5", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333958021122}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333953835008", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/OLZjaq2ooY", "source_user_id_str": "1477425458", "expanded_url": "http://twitter.com/pablopicaszo/status/688779568023474176/photo/1", "source_status_id_str": "688779568023474176", "id_str": "688779562122145792", "source_user_id": 1477425458, "media_url_https": "https://pbs.twimg.com/media/CY8JXMjW8AAZkxK.jpg", "id": 688779562122145792, "sizes": {"large": {"h": 798, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 798, "w": 600, "resize": "fit"}, "small": {"h": 452, "w": 340, "resize": "fit"}}, "url": "https://t.co/OLZjaq2ooY", "indices": [62, 85], "media_url": "http://pbs.twimg.com/media/CY8JXMjW8AAZkxK.jpg", "source_status_id": 688779568023474176}], "user_mentions": [{"name": "zo\u00eb", "id": 1477425458, "screen_name": "pablopicaszo", "id_str": "1477425458", "indices": [3, 16]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sun Jan 17 17:47:00 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "688779568023474176", "favorite_count": 40, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CY8JXMjW8AAZkxK.jpg", "display_url": "pic.twitter.com/OLZjaq2ooY", "id": 688779562122145792, "type": "photo", "sizes": {"large": {"h": 798, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 798, "w": 600, "resize": "fit"}, "small": {"h": 452, "w": 340, "resize": "fit"}}, "url": "https://t.co/OLZjaq2ooY", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/CY8JXMjW8AAZkxK.jpg", "id_str": "688779562122145792", "expanded_url": "http://twitter.com/pablopicaszo/status/688779568023474176/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 33, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Jun 02 14:21:06 +0000 2013", "profile_link_color": "00B380", "lang": "en", "time_zone": "Atlantic Time (Canada)", "contributors_enabled": false, "favourites_count": 3506, "utc_offset": -14400, "description": "name an interlude after me", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1477425458/1453486223", "id_str": "1477425458", "statuses_count": 18144, "url": "https://t.co/PHHywlCelF", "profile_use_background_image": true, "name": "zo\u00eb", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "etsy.com/shop/ShopPablo", "indices": [0, 23], "url": "https://t.co/PHHywlCelF", "expanded_url": "http://www.etsy.com/shop/ShopPablo"}]}}, "screen_name": "pablopicaszo", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435887657554423809/kbs3hzVK.png", "location": "the dirty south", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690904459048714241/HLZGJXJR_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 433, "followers_count": 557, "verified": false, "id": 1477425458, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435887657554423809/kbs3hzVK.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690904459048714241/HLZGJXJR_normal.jpg", "profile_background_tile": true, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 7, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "I don't even know how to feel about this... https://t.co/OLZjaq2ooY", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 688779568023474176}, "retweet_count": 33, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jul 10 23:01:20 +0000 2012", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 45, "utc_offset": null, "description": "\u2734\nLurker", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/632466912/1453520602", "id_str": "632466912", "statuses_count": 7496, "url": null, "profile_use_background_image": true, "name": "Ime_Ekan", "entities": {"description": {"urls": []}}, "screen_name": "AimeeIme", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/677578543715508225/ARMei_qp_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 396, "followers_count": 580, "verified": false, "id": 632466912, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/677578543715508225/ARMei_qp_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 3, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @pablopicaszo: I don't even know how to feel about this... https://t.co/OLZjaq2ooY", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333953835008}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "pt", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333949681664", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/rq2cRZtfwj", "source_user_id_str": "132353960", "expanded_url": "http://twitter.com/FatoDeWhatsapp/status/690918144232267777/photo/1", "source_status_id_str": "690918144232267777", "id_str": "690918089450504192", "source_user_id": 132353960, "media_url_https": "https://pbs.twimg.com/media/CZaiV3qWwAAhCqb.jpg", "id": 690918089450504192, "sizes": {"large": {"h": 480, "w": 791, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 364, "w": 600, "resize": "fit"}, "small": {"h": 206, "w": 340, "resize": "fit"}}, "url": "https://t.co/rq2cRZtfwj", "indices": [64, 87], "media_url": "http://pbs.twimg.com/media/CZaiV3qWwAAhCqb.jpg", "source_status_id": 690918144232267777}], "user_mentions": [{"name": "Fatos De Whatsapp", "id": 132353960, "screen_name": "FatoDeWhatsapp", "id_str": "132353960", "indices": [3, 18]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 15:24:56 +0000 2016", "lang": "pt", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690918144232267777", "favorite_count": 221, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZaiV3qWwAAhCqb.jpg", "display_url": "pic.twitter.com/rq2cRZtfwj", "id": 690918089450504192, "type": "photo", "sizes": {"large": {"h": 480, "w": 791, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 364, "w": 600, "resize": "fit"}, "small": {"h": 206, "w": 340, "resize": "fit"}}, "url": "https://t.co/rq2cRZtfwj", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/CZaiV3qWwAAhCqb.jpg", "id_str": "690918089450504192", "expanded_url": "http://twitter.com/FatoDeWhatsapp/status/690918144232267777/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 360, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Apr 13 00:54:59 +0000 2010", "profile_link_color": "4A913C", "lang": "pt", "time_zone": "Brasilia", "contributors_enabled": false, "favourites_count": 3671, "utc_offset": -7200, "description": "Os melhores fatos, piadas e entretenimento est\u00e3o aqui | Siga e Divirta-se (Conta Par\u00f3dia)", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/132353960/1449838038", "id_str": "132353960", "statuses_count": 26378, "url": null, "profile_use_background_image": true, "name": "Fatos De Whatsapp", "entities": {"description": {"urls": []}}, "screen_name": "FatoDeWhatsapp", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/436128857532293120/acEjAYst.jpeg", "location": "Rio Verde, Goi\u00e1s", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/684599429534453760/2e13cdHH_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 1495, "followers_count": 364488, "verified": false, "id": 132353960, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/436128857532293120/acEjAYst.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684599429534453760/2e13cdHH_normal.jpg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1178, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "pt", "result_type": "recent"}, "text": "Tem aquele momento do dia que sempre bate a https://t.co/rq2cRZtfwj", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690918144232267777}, "retweet_count": 360, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Jul 31 14:57:10 +0000 2015", "profile_link_color": "0084B4", "lang": "pt", "time_zone": null, "contributors_enabled": false, "favourites_count": 542, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3397221491/1442099441", "id_str": "3397221491", "statuses_count": 1143, "url": null, "profile_use_background_image": true, "name": "boladona \u274c", "entities": {"description": {"urls": []}}, "screen_name": "limajuvasco", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/656815369290690560/PS5-uANo_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 62, "followers_count": 72, "verified": false, "id": 3397221491, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656815369290690560/PS5-uANo_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "pt", "result_type": "recent"}, "text": "RT @FatoDeWhatsapp: Tem aquele momento do dia que sempre bate a https://t.co/rq2cRZtfwj", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333949681664}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ja", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333949505537", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/rRshKKggBv", "source_user_id_str": "253177157", "expanded_url": "http://twitter.com/aimi_sound/status/690930072258105344/photo/1", "source_status_id_str": "690930072258105344", "id_str": "690930072111304704", "source_user_id": 253177157, "media_url_https": "https://pbs.twimg.com/media/CZatPWjUUAAiwpU.jpg", "id": 690930072111304704, "sizes": {"large": {"h": 639, "w": 480, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 639, "w": 480, "resize": "fit"}, "small": {"h": 452, "w": 340, "resize": "fit"}}, "url": "https://t.co/rRshKKggBv", "indices": [71, 94], "media_url": "http://pbs.twimg.com/media/CZatPWjUUAAiwpU.jpg", "source_status_id": 690930072258105344}], "user_mentions": [{"name": "\u611b\u7f8e", "id": 253177157, "screen_name": "aimi_sound", "id_str": "253177157", "indices": [3, 14]}], "hashtags": [], "urls": [{"display_url": "ameblo.jp/aimi-sound/ent\u2026", "indices": [47, 70], "url": "https://t.co/SALWTcUOuT", "expanded_url": "http://ameblo.jp/aimi-sound/entry-12120834512.html?timestamp=1453565539"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 16:12:20 +0000 2016", "lang": "ja", "in_reply_to_user_id_str": null, "source": "iOS", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690930072258105344", "favorite_count": 176, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZatPWjUUAAiwpU.jpg", "display_url": "pic.twitter.com/rRshKKggBv", "id": 690930072111304704, "type": "photo", "sizes": {"large": {"h": 639, "w": 480, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 639, "w": 480, "resize": "fit"}, "small": {"h": 452, "w": 340, "resize": "fit"}}, "url": "https://t.co/rRshKKggBv", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CZatPWjUUAAiwpU.jpg", "id_str": "690930072111304704", "expanded_url": "http://twitter.com/aimi_sound/status/690930072258105344/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [{"display_url": "ameblo.jp/aimi-sound/ent\u2026", "indices": [31, 54], "url": "https://t.co/SALWTcUOuT", "expanded_url": "http://ameblo.jp/aimi-sound/entry-12120834512.html?timestamp=1453565539"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 79, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Feb 16 18:24:01 +0000 2011", "profile_link_color": "0084B4", "lang": "ja", "time_zone": "Tokyo", "contributors_enabled": false, "favourites_count": 0, "utc_offset": 32400, "description": "\u5e73\u548c\u304c\u3044\u3061\u3070\u3093\u263a\ufe0e \u3053\u3048\u306e\u304a\u3057\u3054\u3068\u3002 \u2605BanG_Dream!\uff08\u6238\u5c71\u9999\u6f84\uff09\u2605\u30f4\u30a1\u30f3\u30ac\u30fc\u30c9G\uff08\u8776\u91ce\u30a2\u30e0\uff09\u2605\u30e9\u30af\u30a8\u30f3\u30ed\u30b8\u30c3\u30af\uff08\u4e03\u661f\u7e01\uff09\u2605\u30b1\u30a4\u30aa\u30b9\u30c9\u30e9\u30b4\u30f3\uff08\u30a6\u30eb\u30ea\u30fc\u30ab\uff09\u2605\u30d7\u30e9\u30b9\u30c6\u30a3\u30c3\u30af\u30fb\u30e1\u30e2\u30ea\u30fc\u30ba\uff08\u30b7\u30a7\u30ea\u30fc\uff09\u2605\u30df\u30eb\u30ad\u30a3\u30db\u30fc\u30e0\u30ba\uff08\u5e38\u76e4\u30ab\u30ba\u30df\uff09\u2605\u30d0\u30c7\u30a3\u30d5\u30a1\u30a4\u30c8\uff08\u6c37\u7adc\u30ad\u30ea\u30fb\u30df\u30bb\u30ea\u30a2\uff09\u2605\u30a2\u30a4\u30c9\u30eb\u30de\u30b9\u30bf\u30fc \u30df\u30ea\u30aa\u30f3\u30e9\u30a4\u30d6\uff01\uff08\u30b8\u30e5\u30ea\u30a2\uff09", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/253177157/1403548833", "id_str": "253177157", "statuses_count": 14925, "url": "https://t.co/G2gMi4HcrN", "profile_use_background_image": true, "name": "\u611b\u7f8e", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/aimin_official/", "indices": [0, 23], "url": "https://t.co/G2gMi4HcrN", "expanded_url": "https://www.instagram.com/aimin_official/"}]}}, "screen_name": "aimi_sound", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/210029488/aimi-texture0.jpg", "location": "\u97ff", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/681675124064452609/OYTNKjLQ_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 510, "followers_count": 74506, "verified": false, "id": 253177157, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/210029488/aimi-texture0.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681675124064452609/OYTNKjLQ_normal.jpg", "profile_background_tile": true, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 3856, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ja", "result_type": "recent"}, "text": "\u30d6\u30ed\u30b0\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002\n\u300c\u3061\u3063\u3059\u30fc\u3059\u304c\u3084\u3093\u306f\u3063\u3074\u30fc\u306f\u3063\u3074\u30fc\u300d\u2192https://t.co/SALWTcUOuT https://t.co/rRshKKggBv", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690930072258105344}, "retweet_count": 79, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Oct 31 15:32:20 +0000 2012", "profile_link_color": "0084B4", "lang": "ja", "time_zone": null, "contributors_enabled": false, "favourites_count": 547, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/917102382/1451315244", "id_str": "917102382", "statuses_count": 4241, "url": null, "profile_use_background_image": true, "name": "\u3042\u3055(\u7720\u308c\u308b\u7345\u5b50)", "entities": {"description": {"urls": []}}, "screen_name": "1109Asa", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/681491644701540353/GuWohHy__normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 153, "followers_count": 114, "verified": false, "id": 917102382, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681491644701540353/GuWohHy__normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 4, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ja", "result_type": "recent"}, "text": "RT @aimi_sound: \u30d6\u30ed\u30b0\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002\n\u300c\u3061\u3063\u3059\u30fc\u3059\u304c\u3084\u3093\u306f\u3063\u3074\u30fc\u306f\u3063\u3074\u30fc\u300d\u2192https://t.co/SALWTcUOuT https://t.co/rRshKKggBv", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333949505537}, {"quoted_status": {"created_at": "Fri Jan 22 03:16:42 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690372488547713024", "favorite_count": 193, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/690372289066565632/pu/img/XqpfU1cjZMLC78x_.jpg", "display_url": "pic.twitter.com/7mgEbUEr6G", "id": 690372289066565632, "type": "photo", "sizes": {"large": {"h": 640, "w": 640, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/7mgEbUEr6G", "indices": [36, 59], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/690372289066565632/pu/img/XqpfU1cjZMLC78x_.jpg", "id_str": "690372289066565632", "expanded_url": "http://twitter.com/r0yalti/status/690372488547713024/video/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 144, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jan 22 23:55:25 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 8158, "utc_offset": null, "description": "the girl with the pink hair that didn't smile at Donald Trump. #NewAgeQueen #blackgirlmagic", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2993223297/1450377268", "id_str": "2993223297", "statuses_count": 32977, "url": "https://t.co/f4kiHFuzzG", "profile_use_background_image": true, "name": "bald beyonc\u00e9", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "newagequeen.bigcartel.com", "indices": [0, 23], "url": "https://t.co/f4kiHFuzzG", "expanded_url": "http://newagequeen.bigcartel.com"}]}}, "screen_name": "r0yalti", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "jonathan \u2763", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/688142836831662081/9k-DlHmJ_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 2490, "followers_count": 3082, "verified": false, "id": 2993223297, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688142836831662081/9k-DlHmJ_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 6, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "LMAO nah I'm still mad I did this \ud83d\ude2d https://t.co/7mgEbUEr6G", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690372488547713024}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333941248000", "quoted_status_id": 690372488547713024, "contributors": null, "quoted_status_id_str": "690372488547713024", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/r0yalti/status\u2026", "indices": [12, 35], "url": "https://t.co/g8vLa96ImL", "expanded_url": "https://twitter.com/r0yalti/status/690372488547713024"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sun Aug 02 18:57:56 +0000 2009", "profile_link_color": "B80019", "lang": "en", "time_zone": "America/New_York", "contributors_enabled": false, "favourites_count": 17416, "utc_offset": -18000, "description": "Keep in the fam. Protect Mike Moore at all costs. RIP Sam. Tryna make music? tellybambaataa@gmail.com", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/62324180/1452913306", "id_str": "62324180", "statuses_count": 196693, "url": "https://t.co/OEAzKWgh3P", "profile_use_background_image": true, "name": "Bic Flair", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "datpiff.com/Telly-Still-Le\u2026", "indices": [0, 23], "url": "https://t.co/OEAzKWgh3P", "expanded_url": "http://www.datpiff.com/Telly-Still-Learning-mixtape.334405.html"}]}}, "screen_name": "TellyBambaataa", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/663038702277558272/gJh6tHkU.png", "location": "in the cutterino", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/688174407676596224/mi2N89y__normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "F6F6F6", "friends_count": 1259, "followers_count": 1936, "verified": false, "id": 62324180, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/663038702277558272/gJh6tHkU.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688174407676596224/mi2N89y__normal.jpg", "profile_background_tile": true, "profile_background_color": "0099B9", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 37, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "You da goat https://t.co/g8vLa96ImL", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333941248000}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333932892160", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3SfWcAA-c9A.jpg", "display_url": "pic.twitter.com/KzFmMBbaPV", "id": 690992330866847744, "type": "photo", "sizes": {"large": {"h": 267, "w": 400, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 267, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/KzFmMBbaPV", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CZbl3SfWcAA-c9A.jpg", "id_str": "690992330866847744", "expanded_url": "http://twitter.com/TopNaked18/status/690992333932892160/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Jan 06 15:16:22 +0000 2016", "profile_link_color": "9266CC", "lang": "en-gb", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 0, "utc_offset": -28800, "description": "", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4725687741/1453427301", "id_str": "4725687741", "statuses_count": 216, "url": null, "profile_use_background_image": false, "name": "Top Naked + 18", "entities": {"description": {"urls": []}}, "screen_name": "TopNaked18", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Massachusetts, USA", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690350363883524097/fxxpytKl_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "000000", "friends_count": 648, "followers_count": 38, "verified": false, "id": 4725687741, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690350363883524097/fxxpytKl_normal.jpg", "profile_background_tile": false, "profile_background_color": "000000", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "000000"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "https://t.co/KzFmMBbaPV", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333932892160}, {"quoted_status": {"created_at": "Sat Jan 16 19:02:18 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "Hootsuite", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "688436128446328833", "favorite_count": 125, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "retweet_count": 73, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Dec 20 05:57:33 +0000 2010", "profile_link_color": "009999", "lang": "es", "time_zone": "Caracas", "contributors_enabled": false, "favourites_count": 1670, "utc_offset": -16200, "description": "Aqu\u00ed Encontraras #Curiosidades #Frases #Noticias /De Todo Un Poco/ #PUBLICIDAD erescurioso@hotmail.com / ecpubli@gmail.com", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/228609209/1416452728", "id_str": "228609209", "statuses_count": 175416, "url": "http://t.co/vMwVTh7ibh", "profile_use_background_image": true, "name": "\u00bfEresCurioso?", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/erescurioso", "indices": [0, 22], "url": "http://t.co/vMwVTh7ibh", "expanded_url": "http://instagram.com/erescurioso"}]}}, "screen_name": "EresCurioso", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535268983193100288/4bctXbBi.jpeg", "location": "VENEZUELA/MX/AR/CO/ES", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/535267003347386368/F2tVZk3J_normal.jpeg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 47, "followers_count": 2150851, "verified": false, "id": 228609209, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535268983193100288/4bctXbBi.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/535267003347386368/F2tVZk3J_normal.jpeg", "profile_background_tile": true, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 6076, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "El consumo de cerezas ayudan a las personas que sufren de depresi\u00f3n", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 688436128446328833}, "created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "es", "in_reply_to_user_id_str": null, "source": "Twitter for Android", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333932863489", "quoted_status_id": 688436128446328833, "contributors": null, "quoted_status_id_str": "688436128446328833", "entities": {"user_mentions": [], "hashtags": [], "urls": [{"display_url": "twitter.com/EresCurioso/st\u2026", "indices": [40, 63], "url": "https://t.co/c1efg7Fqbb", "expanded_url": "https://twitter.com/EresCurioso/status/688436128446328833"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "favorite_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Fri Mar 04 14:20:01 +0000 2011", "profile_link_color": "0084B4", "lang": "es", "time_zone": "Greenland", "contributors_enabled": false, "favourites_count": 245, "utc_offset": -10800, "description": "20", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/260745461/1439268305", "id_str": "260745461", "statuses_count": 19642, "url": null, "profile_use_background_image": true, "name": "Rosangelica paola", "entities": {"description": {"urls": []}}, "screen_name": "_rosangelicap", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/869159628/d6a2accfeafbadbeabca6e588e28fd67.png", "location": "Maracaibo", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/687513223487197185/pdwCWdbF_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 649, "followers_count": 1137, "verified": false, "id": 260745461, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/869159628/d6a2accfeafbadbeabca6e588e28fd67.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/687513223487197185/pdwCWdbF_normal.jpg", "profile_background_tile": true, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 19, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}, "text": "A la verga le\u00ed \"cerveza\" ayuda jajajaja https://t.co/c1efg7Fqbb", "in_reply_to_user_id": null, "is_quote_status": true, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333932863489}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "it", "in_reply_to_user_id_str": null, "source": "Twitter for Windows Phone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333932863488", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/xDIjsHSJnV", "source_user_id_str": "454069394", "expanded_url": "http://twitter.com/MarioManca/status/690990391882039296/photo/1", "source_status_id_str": "690990391882039296", "id_str": "690990377227124736", "source_user_id": 454069394, "media_url_https": "https://pbs.twimg.com/media/CZbkFknWAAApz5M.jpg", "id": 690990377227124736, "sizes": {"large": {"h": 562, "w": 1001, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 336, "w": 600, "resize": "fit"}, "small": {"h": 190, "w": 340, "resize": "fit"}}, "url": "https://t.co/xDIjsHSJnV", "indices": [100, 123], "media_url": "http://pbs.twimg.com/media/CZbkFknWAAApz5M.jpg", "source_status_id": 690990391882039296}], "user_mentions": [{"name": "Mario Manca", "id": 454069394, "screen_name": "MarioManca", "id_str": "454069394", "indices": [3, 14]}], "hashtags": [{"indices": [86, 99], "text": "cepostaperte"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:12:02 +0000 2016", "lang": "it", "in_reply_to_user_id_str": null, "source": "Twitter Web Client", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690990391882039296", "favorite_count": 82, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbkFknWAAApz5M.jpg", "display_url": "pic.twitter.com/xDIjsHSJnV", "id": 690990377227124736, "type": "photo", "sizes": {"large": {"h": 562, "w": 1001, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 336, "w": 600, "resize": "fit"}, "small": {"h": 190, "w": 340, "resize": "fit"}}, "url": "https://t.co/xDIjsHSJnV", "indices": [84, 107], "media_url": "http://pbs.twimg.com/media/CZbkFknWAAApz5M.jpg", "id_str": "690990377227124736", "expanded_url": "http://twitter.com/MarioManca/status/690990391882039296/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [70, 83], "text": "cepostaperte"}], "urls": [], "symbols": []}, "place": {"id": "1ea588c12abd39d7", "country_code": "IT", "url": "https://api.twitter.com/1.1/geo/id/1ea588c12abd39d7.json", "bounding_box": {"type": "Polygon", "coordinates": [[[9.040628, 45.3867262], [9.2780451, 45.3867262], [9.2780451, 45.5359644], [9.040628, 45.5359644]]]}, "name": "Milan", "country": "Italia", "place_type": "city", "full_name": "Milan, Lombardy", "attributes": {}, "contained_within": []}, "possibly_sensitive": false, "retweet_count": 131, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jan 03 15:56:47 +0000 2012", "profile_link_color": "2FC2EF", "lang": "it", "time_zone": "Athens", "contributors_enabled": false, "favourites_count": 6274, "utc_offset": 7200, "description": "Scrivo per @VanityFairIt e @Vogue_Italia. Specializzato in Tv e Cinema. Nomofobo. Teletilista. Critico.", "profile_text_color": "666666", "profile_banner_url": "https://pbs.twimg.com/profile_banners/454069394/1398513128", "id_str": "454069394", "statuses_count": 26274, "url": "http://t.co/kJS0Ep6XVG", "profile_use_background_image": true, "name": "Mario Manca", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "vanityfair.it/autori/m/mario\u2026", "indices": [0, 22], "url": "http://t.co/kJS0Ep6XVG", "expanded_url": "http://www.vanityfair.it/autori/m/mario-manca"}]}}, "screen_name": "MarioManca", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "location": "Milan, Italy", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/456396017014153216/8WRZcI7i_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "252429", "friends_count": 257, "followers_count": 5683, "verified": false, "id": 454069394, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/456396017014153216/8WRZcI7i_normal.jpeg", "profile_background_tile": false, "profile_background_color": "1A1B1F", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 21, "profile_sidebar_border_color": "181A1E"}, "metadata": {"iso_language_code": "it", "result_type": "recent"}, "text": "Retwitta se vuoi Chris Hemsworth a Sanremo al posto di Gabriel Garko. #cepostaperte https://t.co/xDIjsHSJnV", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690990391882039296}, "retweet_count": 131, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Oct 01 21:58:42 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 342, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3837219917/1452098098", "id_str": "3837219917", "statuses_count": 154, "url": null, "profile_use_background_image": true, "name": "bluebell_", "entities": {"description": {"urls": []}}, "screen_name": "EvenstarLuthien", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/679797874172014592/E9IzQowW_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 58, "followers_count": 21, "verified": false, "id": 3837219917, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/679797874172014592/E9IzQowW_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "it", "result_type": "recent"}, "text": "RT @MarioManca: Retwitta se vuoi Chris Hemsworth a Sanremo al posto di Gabriel Garko. #cepostaperte https://t.co/xDIjsHSJnV", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333932863488}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333928660992", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/66ShZTPVvH", "source_user_id_str": "1242592926", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1", "source_status_id_str": "517474163695443968", "id_str": "517474162659434497", "source_user_id": 1242592926, "media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id": 517474162659434497, "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "source_status_id": 517474163695443968}], "user_mentions": [{"name": "Niggamon", "id": 1242592926, "screen_name": "TrapPokemon", "id_str": "1242592926", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": true, "retweeted_status": {"created_at": "Thu Oct 02 00:40:29 +0000 2014", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "517474163695443968", "favorite_count": 2049, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "display_url": "pic.twitter.com/66ShZTPVvH", "id": 517474162659434497, "type": "photo", "sizes": {"large": {"h": 480, "w": 623, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 462, "w": 600, "resize": "fit"}, "small": {"h": 261, "w": 340, "resize": "fit"}}, "url": "http://t.co/66ShZTPVvH", "indices": [89, 111], "media_url": "http://pbs.twimg.com/media/By5wAl3CIAEvFuP.jpg", "id_str": "517474162659434497", "expanded_url": "http://twitter.com/TrapPokemon/status/517474163695443968/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Mar 05 01:41:14 +0000 2013", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 116, "utc_offset": -21600, "description": "A FUCK trainer that's that shit I don't like.\nSelling RTs, DM me for business.", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1242592926/1414575082", "id_str": "1242592926", "statuses_count": 167, "url": null, "profile_use_background_image": true, "name": "Niggamon", "entities": {"description": {"urls": []}}, "screen_name": "TrapPokemon", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "In The Cut", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 6, "followers_count": 45085, "verified": false, "id": 1242592926, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/510571872564424704/S1-w-bqO_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 43, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 517474163695443968}, "retweet_count": 2101, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Oct 21 02:24:31 +0000 2015", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 31, "utc_offset": -28800, "description": "we turnt af", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3964438033/1445396542", "id_str": "3964438033", "statuses_count": 57, "url": null, "profile_use_background_image": true, "name": "Turnt Animals", "entities": {"description": {"urls": []}}, "screen_name": "TurntAnimals", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "turn on notifications", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/656661068660502528/IHiLSMCP_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 25, "followers_count": 22975, "verified": false, "id": 3964438033, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656661068660502528/IHiLSMCP_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 6, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @TrapPokemon: WHEN YA GIRL TELLS YOU TO \"GO FUCK WITH YOUR OTHER HOES.\" YOU JUST BE CHILLIN LATER LIKE http://t.co/66ShZTPVvH", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333928660992}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333916082178", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/VZR9ymg5S2", "source_user_id_str": "4714954061", "expanded_url": "http://twitter.com/A99rm/status/685248937368879109/photo/1", "source_status_id_str": "685248937368879109", "id_str": "685248888412966913", "source_user_id": 4714954061, "media_url_https": "https://pbs.twimg.com/media/CYJ-O8CWEAEuALp.jpg", "id": 685248888412966913, "sizes": {"large": {"h": 600, "w": 800, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/VZR9ymg5S2", "indices": [87, 110], "media_url": "http://pbs.twimg.com/media/CYJ-O8CWEAEuALp.jpg", "source_status_id": 685248937368879109}], "user_mentions": [{"name": "Strength+", "id": 4714954061, "screen_name": "A99rm", "id_str": "4714954061", "indices": [3, 9]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Thu Jan 07 23:57:32 +0000 2016", "lang": "ar", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "685248937368879109", "favorite_count": 37, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CYJ-O8CWEAEuALp.jpg", "display_url": "pic.twitter.com/VZR9ymg5S2", "id": 685248888412966913, "type": "photo", "sizes": {"large": {"h": 600, "w": 800, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "small": {"h": 255, "w": 340, "resize": "fit"}}, "url": "https://t.co/VZR9ymg5S2", "indices": [76, 99], "media_url": "http://pbs.twimg.com/media/CYJ-O8CWEAEuALp.jpg", "id_str": "685248888412966913", "expanded_url": "http://twitter.com/A99rm/status/685248937368879109/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 242, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jan 05 13:12:07 +0000 2016", "profile_link_color": "2B7BB9", "lang": "en", "time_zone": null, "contributors_enabled": false, "favourites_count": 24, "utc_offset": null, "description": "\u062e\u0630 \u0639\u0646\u064a \u0641\u0643\u0631\u0629 \u0633\u0644\u0628\u064a\u0629 \u0627\u0644\u062d\u064a\u0646 \u0639\u0634\u0627\u0646 \u0644\u0627\u062a\u0646\u0635\u062f\u0645 \u0628\u0639\u062f\u064a\u0646", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4714954061/1453500199", "id_str": "4714954061", "statuses_count": 388, "url": null, "profile_use_background_image": true, "name": "Strength+", "entities": {"description": {"urls": []}}, "screen_name": "A99rm", "protected": false, "profile_background_image_url": null, "location": "\u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 \u0648\u0627\u062a\u0648\u0628 \u0627\u0644\u064a\u0647", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/684364088428859392/rd7NuCgo_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 295, "followers_count": 2353, "verified": false, "id": 4714954061, "default_profile_image": false, "profile_background_image_url_https": null, "profile_image_url_https": "https://pbs.twimg.com/profile_images/684364088428859392/rd7NuCgo_normal.jpg", "profile_background_tile": false, "profile_background_color": "F5F8FA", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "\u0627\u0646\u0638\u0631\u0648\u0627 \u0627\u0644\u0649 \u0645\u0643\u0631 \u0627\u0644\u064a\u0647\u0648\u062f \u0648 \u0627\u0644\u0646\u0635\u0627\u0631\u0649 \u0627\u0642\u0631\u0623\u0648\u0647\u0627 \u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0627\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646 .. \u0632\u0628\u0637\u062a \u0645\u0639\u0646\u0627\u0627\u0627 https://t.co/VZR9ymg5S2", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 685248937368879109}, "retweet_count": 242, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Dec 02 04:47:30 +0000 2014", "profile_link_color": "0084B4", "lang": "ar", "time_zone": null, "contributors_enabled": false, "favourites_count": 605, "utc_offset": null, "description": "@Alhilal_FC.@fcbarcelona_ara \u0642\u0627\u0639\u062f\u0629 \u0648\u0627\u062d\u062f\u0629..\u0644\u0627\u062a\u0642\u0627\u0631\u0646 \u0646\u0627\u062f\u064a\u0643 \u0628\u0627\u0644\u0647\u0644\u0627\u0644 \u0644\u0643\u064a \u0644\u0627\u064a\u0635\u063a\u0631 \u0646\u0627\u062f\u064a\u0643 \u0641\u064a \u0639\u064a\u0646\u0643 #\u0627\u0644\u0647\u0644\u0627\u0644 #\u0628\u0631\u0634\u0644\u0648\u0646\u0629 #mcfc", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2916215036/1451764099", "id_str": "2916215036", "statuses_count": 18159, "url": null, "profile_use_background_image": true, "name": "barca!", "entities": {"description": {"urls": []}}, "screen_name": "sa_alemdar1", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "#y12", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/680526968853499904/cpOWW98m_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 855, "followers_count": 460, "verified": false, "id": 2916215036, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680526968853499904/cpOWW98m_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 4, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ar", "result_type": "recent"}, "text": "RT @A99rm: \u0627\u0646\u0638\u0631\u0648\u0627 \u0627\u0644\u0649 \u0645\u0643\u0631 \u0627\u0644\u064a\u0647\u0648\u062f \u0648 \u0627\u0644\u0646\u0635\u0627\u0631\u0649 \u0627\u0642\u0631\u0623\u0648\u0647\u0627 \u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0627\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646 .. \u0632\u0628\u0637\u062a \u0645\u0639\u0646\u0627\u0627\u0627 https://t.co/VZR9ymg5S2", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333916082178}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "ja", "in_reply_to_user_id_str": null, "source": "IFTTT", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333916082176", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3dSWkAEUGZ8.jpg", "display_url": "pic.twitter.com/G1nB3GLpaV", "id": 690992333765120001, "type": "photo", "sizes": {"large": {"h": 168, "w": 299, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 168, "w": 299, "resize": "fit"}, "small": {"h": 168, "w": 299, "resize": "fit"}}, "url": "https://t.co/G1nB3GLpaV", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/CZbl3dSWkAEUGZ8.jpg", "id_str": "690992333765120001", "expanded_url": "http://twitter.com/fategogogo/status/690992333916082176/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [{"display_url": "ift.tt/1QrlSjd", "indices": [22, 45], "url": "https://t.co/mS8AqO0F5p", "expanded_url": "http://ift.tt/1QrlSjd"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Sat Aug 01 04:20:04 +0000 2015", "lang": "ja", "time_zone": null, "contributors_enabled": false, "favourites_count": 0, "utc_offset": null, "description": "", "profile_text_color": "333333", "profile_link_color": "0084B4", "id_str": "3302956110", "statuses_count": 429, "url": null, "profile_use_background_image": true, "name": "fategogogo", "entities": {"description": {"urls": []}}, "screen_name": "fategogogo", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/627333165221150720/ocX6QuPQ_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 40, "followers_count": 9, "verified": false, "id": 3302956110, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/627333165221150720/ocX6QuPQ_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "ja", "result_type": "recent"}, "text": "\u3010FateGO\u3011\u4eca\u65e5\u306e\u30c7\u30a4\u30ea\u30fc\u306f\u7adc\u3060\u3063\u3066\uff1f https://t.co/mS8AqO0F5p https://t.co/G1nB3GLpaV", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333916082176}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333911789569", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3UaUAAAsg5h.jpg", "display_url": "pic.twitter.com/b12jhAey1m", "id": 690992331382587392, "type": "photo", "sizes": {"large": {"h": 682, "w": 682, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/b12jhAey1m", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/CZbl3UaUAAAsg5h.jpg", "id_str": "690992331382587392", "expanded_url": "http://twitter.com/iloveallmyfans/status/690992333911789569/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Jul 09 01:12:23 +0000 2009", "profile_link_color": "009999", "lang": "en", "time_zone": "Hawaii", "contributors_enabled": false, "favourites_count": 93, "utc_offset": -36000, "description": "RAWWEST ALIVE TOUR W/ TYGA 2/24/16 DM FOR TIX PERFECT TIMING ITUNES LINK \u2b07\ufe0fIG: @iloveallmyfans ACTOR/ARTIST/SONGWRITER \u2b07\ufe0f Bookings: iloveallmyfans83@gmail.com", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/55093843/1435598331", "id_str": "55093843", "statuses_count": 154899, "url": "https://t.co/OfEjXthAZE", "profile_use_background_image": true, "name": "Young Shorty Doowop", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "itun.es/us/lNTR8", "indices": [0, 23], "url": "https://t.co/OfEjXthAZE", "expanded_url": "https://itun.es/us/lNTR8"}]}}, "screen_name": "iloveallmyfans", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/185849203/154605_484328034867_519879867_5668281_3109278_n.jpg", "location": "SOUTH BERKELEY, CALIFORNIA", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/690802063249309697/3zpYab7t_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "EFEFEF", "friends_count": 3328, "followers_count": 3121, "verified": false, "id": 55093843, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/185849203/154605_484328034867_519879867_5668281_3109278_n.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/690802063249309697/3zpYab7t_normal.jpg", "profile_background_tile": false, "profile_background_color": "131516", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 73, "profile_sidebar_border_color": "EEEEEE"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "That part. \ud83d\udcaf https://t.co/b12jhAey1m", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333911789569}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333911777280", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbl3UMVIAAYEK4.jpg", "display_url": "pic.twitter.com/O8W1MtxyQ1", "id": 690992331323940864, "type": "photo", "sizes": {"large": {"h": 1024, "w": 575, "resize": "fit"}, "small": {"h": 605, "w": 340, "resize": "fit"}, "medium": {"h": 1024, "w": 575, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/O8W1MtxyQ1", "indices": [7, 30], "media_url": "http://pbs.twimg.com/media/CZbl3UMVIAAYEK4.jpg", "id_str": "690992331323940864", "expanded_url": "http://twitter.com/bsteezzyy/status/690992333911777280/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 0, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Dec 01 00:30:52 +0000 2011", "profile_link_color": "00298F", "lang": "en", "time_zone": "Hawaii", "contributors_enabled": false, "favourites_count": 7179, "utc_offset": -36000, "description": "I'm down", "profile_text_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/425431845/1451705410", "id_str": "425431845", "statuses_count": 8830, "url": null, "profile_use_background_image": true, "name": "Bec", "entities": {"description": {"urls": []}}, "screen_name": "bsteezzyy", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "location": "", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/682296432708067328/ggFKGIE8_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "950EC2", "friends_count": 127, "followers_count": 214, "verified": false, "id": 425431845, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_image_url_https": "https://pbs.twimg.com/profile_images/682296432708067328/ggFKGIE8_normal.jpg", "profile_background_tile": false, "profile_background_color": "642D8B", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 1, "profile_sidebar_border_color": "E320BC"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "\ud83d\ude4f\ud83c\udffc\ud83d\ude4f\ud83c\udffc\ud83c\udf7b\ud83c\udf7e https://t.co/O8W1MtxyQ1", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333911777280}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "RoundTeam", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333907726336", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/J0ez3gVVcf", "source_user_id_str": "18009931", "expanded_url": "http://twitter.com/capcitycrafts/status/690991100379541504/photo/1", "source_status_id_str": "690991100379541504", "id_str": "690991099008020480", "source_user_id": 18009931, "media_url_https": "https://pbs.twimg.com/media/CZbkvldUcAA2xBU.jpg", "id": 690991099008020480, "sizes": {"large": {"h": 682, "w": 1024, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 399, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/J0ez3gVVcf", "indices": [139, 140], "media_url": "http://pbs.twimg.com/media/CZbkvldUcAA2xBU.jpg", "source_status_id": 690991100379541504}], "user_mentions": [{"name": "capcitycrafts", "id": 18009931, "screen_name": "capcitycrafts", "id_str": "18009931", "indices": [3, 17]}], "hashtags": [{"indices": [103, 117], "text": "jewelryonetsy"}, {"indices": [118, 135], "text": "GemstoneEarrings"}], "urls": [{"display_url": "tuppu.net/a5dc7914", "indices": [79, 102], "url": "https://t.co/MA4cvrVNaV", "expanded_url": "http://tuppu.net/a5dc7914"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:14:50 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "twitter-fu", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690991100379541504", "favorite_count": 0, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbkvldUcAA2xBU.jpg", "display_url": "pic.twitter.com/J0ez3gVVcf", "id": 690991099008020480, "type": "photo", "sizes": {"large": {"h": 682, "w": 1024, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 399, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/J0ez3gVVcf", "indices": [117, 140], "media_url": "http://pbs.twimg.com/media/CZbkvldUcAA2xBU.jpg", "id_str": "690991099008020480", "expanded_url": "http://twitter.com/capcitycrafts/status/690991100379541504/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [84, 98], "text": "jewelryonetsy"}, {"indices": [99, 116], "text": "GemstoneEarrings"}], "urls": [{"display_url": "tuppu.net/a5dc7914", "indices": [60, 83], "url": "https://t.co/MA4cvrVNaV", "expanded_url": "http://tuppu.net/a5dc7914"}], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 39, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Dec 10 02:35:39 +0000 2008", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 1355, "utc_offset": -18000, "description": "jazz and jewelry lover and artisan. You can see my current handmade jewelry collection at http://t.co/UeHt1ozmqy thanks for looking!", "profile_text_color": "3D1957", "profile_link_color": "FF0000", "id_str": "18009931", "statuses_count": 106340, "url": null, "profile_use_background_image": true, "name": "capcitycrafts", "entities": {"description": {"urls": [{"display_url": "etsy.com/shop/capitalci\u2026", "indices": [90, 112], "url": "http://t.co/UeHt1ozmqy", "expanded_url": "http://www.etsy.com/shop/capitalcitycrafts"}]}}, "screen_name": "capcitycrafts", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5745249/collage3.jpg", "location": "New Jersey", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1231753639/capital-1_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "7AC3EE", "friends_count": 3346, "followers_count": 5651, "verified": false, "id": 18009931, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5745249/collage3.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1231753639/capital-1_normal.jpg", "profile_background_tile": true, "profile_background_color": "642D8B", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 321, "profile_sidebar_border_color": "65B0DA"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Sparkle Earrings in Black and White, Tourmalated Quartz Bl\u2026 https://t.co/MA4cvrVNaV #jewelryonetsy #GemstoneEarrings https://t.co/J0ez3gVVcf", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690991100379541504}, "retweet_count": 39, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Tue Jun 26 22:29:35 +0000 2007", "profile_link_color": "8126BD", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 15, "utc_offset": -21600, "description": "Me: Lover of all things Shiny, Lupus Fighter, Supporter of Handmade, SciFi Enthusiast, a little bit crazy", "profile_text_color": "634047", "profile_banner_url": "https://pbs.twimg.com/profile_banners/7096812/1398741093", "id_str": "7096812", "statuses_count": 62086, "url": "http://t.co/5lj0E7kxIp", "profile_use_background_image": true, "name": "Lori Taggart", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "etsy.com/shop/dashery", "indices": [0, 22], "url": "http://t.co/5lj0E7kxIp", "expanded_url": "http://www.etsy.com/shop/dashery"}]}}, "screen_name": "Dashery", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378226000/TwitWhale.PNG", "location": "Stillwater, Oklahoma OK", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/326928123/MeMarch2009_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "E3E2DE", "friends_count": 3632, "followers_count": 3730, "verified": false, "id": 7096812, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378226000/TwitWhale.PNG", "profile_image_url_https": "https://pbs.twimg.com/profile_images/326928123/MeMarch2009_normal.jpg", "profile_background_tile": true, "profile_background_color": "EDECE9", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 331, "profile_sidebar_border_color": "D3D2CF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @capcitycrafts: Sparkle Earrings in Black and White, Tourmalated Quartz Bl\u2026 https://t.co/MA4cvrVNaV #jewelryonetsy #GemstoneEarrings htt\u2026", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333907726336}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333903544322", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/afmwYti9bK", "source_user_id_str": "3018037833", "expanded_url": "http://twitter.com/baIaozinhos/status/690548244145840128/photo/1", "source_status_id_str": "690548244145840128", "id_str": "690533292832067584", "source_user_id": 3018037833, "media_url_https": "https://pbs.twimg.com/media/CZVEXwjWEAARARv.jpg", "id": 690533292832067584, "sizes": {"large": {"h": 500, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 500, "w": 500, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/afmwYti9bK", "indices": [17, 40], "media_url": "http://pbs.twimg.com/media/CZVEXwjWEAARARv.jpg", "source_status_id": 690548244145840128}], "user_mentions": [{"name": "baLaozinhos", "id": 3018037833, "screen_name": "baIaozinhos", "id_str": "3018037833", "indices": [3, 15]}], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Fri Jan 22 14:55:05 +0000 2016", "lang": "und", "in_reply_to_user_id_str": null, "source": "TweetDeck", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690548244145840128", "favorite_count": 138, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZVEXwjWEAARARv.jpg", "display_url": "pic.twitter.com/afmwYti9bK", "id": 690533292832067584, "type": "photo", "sizes": {"large": {"h": 500, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}, "medium": {"h": 500, "w": 500, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}}, "url": "https://t.co/afmwYti9bK", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/CZVEXwjWEAARARv.jpg", "id_str": "690533292832067584", "expanded_url": "http://twitter.com/baIaozinhos/status/690548244145840128/photo/1"}], "user_mentions": [], "hashtags": [], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 202, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Wed Feb 04 16:55:30 +0000 2015", "profile_link_color": "0084B4", "lang": "pt", "time_zone": "Pacific Time (US & Canada)", "contributors_enabled": false, "favourites_count": 0, "utc_offset": -28800, "description": "baloezinhos eh teu cu vagabunda", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3018037833/1451958151", "id_str": "3018037833", "statuses_count": 206, "url": "https://t.co/gciy1fCmLD", "profile_use_background_image": true, "name": "baLaozinhos", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "facebook.com/baIaozinhos", "indices": [0, 23], "url": "https://t.co/gciy1fCmLD", "expanded_url": "http://facebook.com/baIaozinhos"}]}}, "screen_name": "baIaozinhos", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/684186908839284738/9YyD1WeV_normal.png", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 0, "followers_count": 62860, "verified": false, "id": 3018037833, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684186908839284738/9YyD1WeV_normal.png", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 18, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "https://t.co/afmwYti9bK", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690548244145840128}, "retweet_count": 202, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu May 07 12:43:13 +0000 2015", "profile_link_color": "0084B4", "lang": "pt", "time_zone": null, "contributors_enabled": false, "favourites_count": 96, "utc_offset": null, "description": "livrai-me de tudo que me trava o riso", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3240332969/1453258261", "id_str": "3240332969", "statuses_count": 1096, "url": null, "profile_use_background_image": true, "name": "analua", "entities": {"description": {"urls": []}}, "screen_name": "naluziza", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "Bras\u00edlia, Distrito Federal", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/689643107365883904/4M0Y7IaK_normal.jpg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 123, "followers_count": 52, "verified": false, "id": 3240332969, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689643107365883904/4M0Y7IaK_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": true, "listed_count": 0, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "und", "result_type": "recent"}, "text": "RT @baIaozinhos: https://t.co/afmwYti9bK", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333903544322}, {"created_at": "Sat Jan 23 20:19:45 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPhone", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690992333903532032", "favorite_count": 0, "contributors": null, "entities": {"media": [{"type": "photo", "display_url": "pic.twitter.com/RWOGlNJPdJ", "source_user_id_str": "63514682", "expanded_url": "http://twitter.com/David_Leavitt/status/690991269112365056/photo/1", "source_status_id_str": "690991269112365056", "id_str": "690991264674746369", "source_user_id": 63514682, "media_url_https": "https://pbs.twimg.com/media/CZbk5OnWEAE3Dnf.jpg", "id": 690991264674746369, "sizes": {"large": {"h": 416, "w": 625, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 399, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/RWOGlNJPdJ", "indices": [98, 121], "media_url": "http://pbs.twimg.com/media/CZbk5OnWEAE3Dnf.jpg", "source_status_id": 690991269112365056}], "user_mentions": [{"name": "David Leavitt", "id": 63514682, "screen_name": "David_Leavitt", "id_str": "63514682", "indices": [3, 17]}], "hashtags": [{"indices": [45, 62], "text": "snowmaggedon2016"}, {"indices": [63, 73], "text": "Snowzilla"}, {"indices": [74, 87], "text": "blizzard2016"}, {"indices": [88, 97], "text": "StarWars"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweeted_status": {"created_at": "Sat Jan 23 20:15:31 +0000 2016", "lang": "en", "in_reply_to_user_id_str": null, "source": "Twitter for iPad", "geo": null, "in_reply_to_status_id": null, "favorited": false, "id_str": "690991269112365056", "favorite_count": 8, "contributors": null, "entities": {"media": [{"media_url_https": "https://pbs.twimg.com/media/CZbk5OnWEAE3Dnf.jpg", "display_url": "pic.twitter.com/RWOGlNJPdJ", "id": 690991264674746369, "type": "photo", "sizes": {"large": {"h": 416, "w": 625, "resize": "fit"}, "small": {"h": 226, "w": 340, "resize": "fit"}, "medium": {"h": 399, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "https://t.co/RWOGlNJPdJ", "indices": [79, 102], "media_url": "http://pbs.twimg.com/media/CZbk5OnWEAE3Dnf.jpg", "id_str": "690991264674746369", "expanded_url": "http://twitter.com/David_Leavitt/status/690991269112365056/photo/1"}], "user_mentions": [], "hashtags": [{"indices": [26, 43], "text": "snowmaggedon2016"}, {"indices": [44, 54], "text": "Snowzilla"}, {"indices": [55, 68], "text": "blizzard2016"}, {"indices": [69, 78], "text": "StarWars"}], "urls": [], "symbols": []}, "place": null, "possibly_sensitive": false, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Thu Aug 06 19:23:18 +0000 2009", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Eastern Time (US & Canada)", "contributors_enabled": false, "favourites_count": 190084, "utc_offset": -18000, "description": "Freelance Writer @ExaminerCom @AXS @CBSLocal covering #Games #Tech #Music #Travel. Mellow #MTG Planeswaker & @Twitch Streamer. Inquiry? DavidLeavitt@gmail.com", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/63514682/1398202291", "id_str": "63514682", "statuses_count": 29781, "url": "https://t.co/NmuozObO3b", "profile_use_background_image": false, "name": "David Leavitt", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "plus.google.com/+DavidGLeavitt\u2026", "indices": [0, 23], "url": "https://t.co/NmuozObO3b", "expanded_url": "https://plus.google.com/+DavidGLeavitt/about"}]}}, "screen_name": "David_Leavitt", "protected": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000075112528/5f92bdc1bb4f75c9fdd2644719610073.jpeg", "location": "2 parsecs from Boston, Mass. ", "is_translation_enabled": false, "default_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/472915068858822656/5ulMevAp_normal.jpeg", "follow_request_sent": false, "geo_enabled": true, "profile_sidebar_fill_color": "F6F6F6", "friends_count": 2479, "followers_count": 34153, "verified": false, "id": 63514682, "default_profile_image": false, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000075112528/5f92bdc1bb4f75c9fdd2644719610073.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/472915068858822656/5ulMevAp_normal.jpeg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 495, "profile_sidebar_border_color": "FFFFFF"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "Imperial Walkers spotted! #snowmaggedon2016 #Snowzilla #blizzard2016 #StarWars https://t.co/RWOGlNJPdJ", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690991269112365056}, "retweet_count": 7, "in_reply_to_status_id_str": null, "user": {"notifications": false, "created_at": "Mon Nov 08 13:02:58 +0000 2010", "profile_link_color": "0084B4", "lang": "en", "time_zone": "Central Time (US & Canada)", "contributors_enabled": false, "favourites_count": 3247, "utc_offset": -21600, "description": "Gahrrett, 1D, UMBC, Crabcakes, Football, Go Dawgs", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/213266089/1430060065", "id_str": "213266089", "statuses_count": 12695, "url": null, "profile_use_background_image": true, "name": "Garrett Hasken", "entities": {"description": {"urls": []}}, "screen_name": "GarrettHasken25", "protected": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "location": "410", "is_translation_enabled": false, "default_profile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/625820165415022593/_r2LXxx0_normal.jpg", "follow_request_sent": false, "geo_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "friends_count": 261, "followers_count": 413, "verified": false, "id": 213266089, "default_profile_image": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625820165415022593/_r2LXxx0_normal.jpg", "profile_background_tile": false, "profile_background_color": "C0DEED", "following": false, "is_translator": false, "has_extended_profile": false, "listed_count": 1, "profile_sidebar_border_color": "C0DEED"}, "metadata": {"iso_language_code": "en", "result_type": "recent"}, "text": "RT @David_Leavitt: Imperial Walkers spotted! #snowmaggedon2016 #Snowzilla #blizzard2016 #StarWars https://t.co/RWOGlNJPdJ", "in_reply_to_user_id": null, "is_quote_status": false, "in_reply_to_screen_name": null, "truncated": false, "retweeted": false, "coordinates": null, "id": 690992333903532032}]} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index a934cec6..4c2b5efa 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -132,6 +132,20 @@ def testGetSearch(self): lambda: self.api.GetSearch(term='test', count='test')) self.assertFalse(self.api.GetSearch()) + @responses.activate + def testGetSeachRawQuery(self): + with open('testdata/get_search_raw.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/search/tweets.json?q=twitter%20&result_type=recent&since=2014-07-19&count=100', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetSearch(raw_query="q=twitter%20&result_type=recent&since=2014-07-19&count=100") + self.assertTrue([type(status) is twitter.Status for status in resp]) + self.assertTrue(['twitter' in status.text for status in resp]) + @responses.activate def testGetSearchGeocode(self): with open('testdata/get_search_geocode.json') as f: From 6716982684750a65893a573a300312dbf605071d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 14 Jan 2016 19:19:15 -0500 Subject: [PATCH 130/533] adds init migration from 2.X to 3.X --- doc/migration_v30.rst | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 doc/migration_v30.rst diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst new file mode 100644 index 00000000..6fc4276b --- /dev/null +++ b/doc/migration_v30.rst @@ -0,0 +1,35 @@ +Changes to Existing Methods +=========================== + +GetFollowers(): +* Method no longer honors a `count` or `cursor` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every `twitter.User` who is following the specified or authenticated user. A warning will be raised if `count` or `cursor` is passed with the expectation that breaking behavior will be introduced in a later version. +* Method now takes an optional parameter of `total_count`, which limits the number of users to return. If this is not set, the data returned will be all users following the specified user. +* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. + +GetFriends(): +* Method no longer honors a `count` or `cursor` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every `twitter.User` who is followed by the specified or authenticated user. A warning will be raised if `count` or `cursor` is passed with the expectation that breaking behavior will be introduced in a later version. +* Method now takes an optional parameter of `total_count`, which limits the number of users to return. If this is not set, the data returned will be all users followed by the specified user. +* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. + +GetFriendsPaged(): +* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 +* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. + +GetFollowersPaged(): +* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 +* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. + +GetSeach(): +* You can now specify a user for whom you wish to limit the search. For example, to only get tweets from the user `twitterapi`, you can call `GetSearch(who='twitterapi')` and only that account's tweets will be returned. + +PostMedia(): +* This endpoint is deprecated by Twitter. Python-twitter will throw a warning about using the method and advise you to use PostUpdate() instead. There is no schedule for when this will be removed from Twitter. + +New Methods +=========== + +UploadMediaChunked(): +* API method allows chunked upload to upload.twitter.com. Similar to Api.PostMedia(), this method can take either a local filename (str), a URL (str), or a file-like object. The image or video type will be determined by `mimetypes` (see twitter/twitter_utils.py for details). +* Optionally, you can specify a chunk_size for uploads when instantiating the Api object. This should be given in bytes. The default is 1MB (that is, 1048576 bytes). Any chunk_size given below 16KB will result in a warning: Twitter will return an error if you try to upload more than 999 chunks of data; for example, if you are uploading a 15MB video, then a chunk_size lower than 15729 bytes will result in 1000 APPEND commands being sent to the API, so you'll get an error. 16KB seems like a reasonable lower bound, but if your use case is well-defined, then python-twitter will not enforce this behavior. +* Another thing to take into consideration: if you're working in a RAM-constrained environment, a very large chunk_size will increase your RAM usage when uploading media through this endpoint. + From c2f7e8a32e383db4312f88a40737ba43eec84bc7 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 16 Jan 2016 09:18:20 -0500 Subject: [PATCH 131/533] updates migration information for GetUserStream --- doc/migration_v30.rst | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index 6fc4276b..b9f468df 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -19,12 +19,20 @@ GetFollowersPaged(): * The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 * The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. -GetSeach(): +GetSearch(): * You can now specify a user for whom you wish to limit the search. For example, to only get tweets from the user `twitterapi`, you can call `GetSearch(who='twitterapi')` and only that account's tweets will be returned. +GetUserStream(): +* Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. + + +Deprecation +=========== + PostMedia(): * This endpoint is deprecated by Twitter. Python-twitter will throw a warning about using the method and advise you to use PostUpdate() instead. There is no schedule for when this will be removed from Twitter. + New Methods =========== From 0cfea37c9d8bedaf371b16ee944bd859b262ed0d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 20 Jan 2016 07:47:25 -0500 Subject: [PATCH 132/533] adds information re UploadMediaSimple --- doc/migration_v30.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index b9f468df..6f529e37 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -12,18 +12,18 @@ GetFriends(): * The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. GetFriendsPaged(): -* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 +* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 * The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. GetFollowersPaged(): -* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 +* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 * The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. GetSearch(): * You can now specify a user for whom you wish to limit the search. For example, to only get tweets from the user `twitterapi`, you can call `GetSearch(who='twitterapi')` and only that account's tweets will be returned. GetUserStream(): -* Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. +* Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously. Deprecation @@ -40,4 +40,8 @@ UploadMediaChunked(): * API method allows chunked upload to upload.twitter.com. Similar to Api.PostMedia(), this method can take either a local filename (str), a URL (str), or a file-like object. The image or video type will be determined by `mimetypes` (see twitter/twitter_utils.py for details). * Optionally, you can specify a chunk_size for uploads when instantiating the Api object. This should be given in bytes. The default is 1MB (that is, 1048576 bytes). Any chunk_size given below 16KB will result in a warning: Twitter will return an error if you try to upload more than 999 chunks of data; for example, if you are uploading a 15MB video, then a chunk_size lower than 15729 bytes will result in 1000 APPEND commands being sent to the API, so you'll get an error. 16KB seems like a reasonable lower bound, but if your use case is well-defined, then python-twitter will not enforce this behavior. * Another thing to take into consideration: if you're working in a RAM-constrained environment, a very large chunk_size will increase your RAM usage when uploading media through this endpoint. +* The return value will be the media_id of the uploaded file. +UploadMediaSimple(): +* Provides the ability to upload a single media file to Twitter without using the ChunkedUpload endpoint. This method should be used on smaller files and reduces the roundtrips from Twitter from three (for UploadMediaChunked) to one. +* Return value is the `media_id` of the uploaded file. \ No newline at end of file From 674b291237500103126c4800f394b389e40d301f Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 24 Jan 2016 08:02:48 -0500 Subject: [PATCH 133/533] excludes built documentation from git with .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index cfadd8d1..3b567c37 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,6 @@ pip-log.txt #Environment env + +# Built docs +doc/_build/** From 0057322718e72ade5f4776b8d90941eea3ce2e32 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 24 Jan 2016 09:53:11 -0500 Subject: [PATCH 134/533] adds more documentation and cleans up some of the inline-documentation --- doc/conf.py | 21 ++++++++---- doc/index.rst | 63 +++++++----------------------------- doc/installation.rst | 51 +++++++++++++++++++++++++++++ doc/migration_v30.rst | 69 ++++++++++++++++++++++++++-------------- doc/models.rst | 16 ++++++++++ doc/modules.rst | 10 ++++++ doc/searching.rst | 10 +++++- doc/twitter.rst | 61 +++++++++++++++++++++++++++++++++++ doc/with_django.rst | 4 +++ twitter/api.py | 16 ++++++++-- twitter/twitter_utils.py | 29 +++++++++++++++++ 11 files changed, 267 insertions(+), 83 deletions(-) create mode 100644 doc/installation.rst create mode 100644 doc/models.rst create mode 100644 doc/modules.rst create mode 100644 doc/twitter.rst create mode 100644 doc/with_django.rst diff --git a/doc/conf.py b/doc/conf.py index b162b3b7..846fba1d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -11,7 +11,11 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys, os +import sys +import os +import shlex + +sys.path.append(os.path.abspath('../')) # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -25,7 +29,12 @@ # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = [] +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.coverage', + 'sphinx.ext.viewcode', + 'sphinx.ext.napoleon' +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -41,16 +50,16 @@ # General information about the project. project = u'python-twitter' -copyright = u'2013, python-twitter@googlegroups.com' +copyright = u'2016, python-twitter@googlegroups.com' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '1.0' +version = '3.0rc1' # The full version, including alpha/beta/rc tags. -release = '1.0' +release = '3.0rc1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -94,7 +103,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'default' +html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/doc/index.rst b/doc/index.rst index 73d604ad..d89f2e67 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,7 +1,4 @@ .. python-twitter documentation master file, created by -sphinx-quickstart on Fri Aug 30 14:37:05 2013. -You can adapt this file completely to your liking, but it should at least -contain the root `toctree` directive. Welcome to python-twitter's documentation! ========================================== @@ -9,59 +6,24 @@ Welcome to python-twitter's documentation! Author: The Python-Twitter Developers -Introduction ------------- -This library provides a pure Python interface for the `Twitter API `_. It works with Python version 2.6+. Python 3 support is under development. - -`Twitter `_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API `_ and this library is intended to make it even easier for Python programmers to use. - - -Building --------- -From source: - -Install the dependencies: - -- `Requests `_ -- `Requests OAuthlib `_ - -Alternatively use `pip`:: - - $ pip install -r requirements.txt - -Download the latest `python-twitter` library from: http://code.google.com/p/python-twitter/ - -Extract the source distribution and run:: - - $ python setup.py build - $ python setup.py install - -Testing -------- -With setuptools installed:: +Contents: - $ python setup.py test - - -Without setuptools installed:: - - $ python twitter_test.py - - -Getting the code ----------------- -The code is hosted at `Github `_. - -Check out the latest development version anonymously with:: +.. toctree:: + :maxdepth: 1 -$ git clone git://github.com/bear/python-twitter.git -$ cd python-twitter + installation.rst + migration_v30.rst + models.rst + searching.rst + with_django.rst -.. toctree:: -:maxdepth: 2 +Introduction +------------ +This library provides a pure Python interface for the `Twitter API `_. It works with Python 2.7+ and Python 3. +`Twitter `_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API `_ and this library is intended to make it even easier for Python programmers to use. Indices and tables @@ -70,4 +32,3 @@ Indices and tables * :ref:`genindex` * :ref:`modindex` * :ref:`search` - diff --git a/doc/installation.rst b/doc/installation.rst new file mode 100644 index 00000000..14dd3e3c --- /dev/null +++ b/doc/installation.rst @@ -0,0 +1,51 @@ +Installation & Testing +------------ + +Installation +============ + +**From PyPI** :: + + $ pip install python-twitter + + +**From source** + +Install the dependencies: + +- `Requests `_ +- `Requests OAuthlib `_ + +Alternatively use `pip`:: + + $ pip install -r requirements.txt + +Download the latest `python-twitter` library from: https://github.com/bear/python-twitter/ + +Extract the source distribution and run:: + + $ python setup.py build + $ python setup.py install + + +Testing +======= + +Run:: + + $ python test.py + +If you would like to see coverage information and have `Nose `_ installed:: + + $ nosetests --with-coverage + + +Getting the code +================ + +The code is hosted at `Github `_. + +Check out the latest development version anonymously with:: + +$ git clone git://github.com/bear/python-twitter.git +$ cd python-twitter \ No newline at end of file diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index 6f529e37..d9fe44ab 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -1,47 +1,70 @@ +Migration from v2 to v3 +----------------------- + + Changes to Existing Methods =========================== -GetFollowers(): -* Method no longer honors a `count` or `cursor` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every `twitter.User` who is following the specified or authenticated user. A warning will be raised if `count` or `cursor` is passed with the expectation that breaking behavior will be introduced in a later version. -* Method now takes an optional parameter of `total_count`, which limits the number of users to return. If this is not set, the data returned will be all users following the specified user. -* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. +GetSearch() +++++++++++++++++++++++++++++ +* Adds ``raw_query`` method. See :ref:`raw_queries` for more information. -GetFriends(): -* Method no longer honors a `count` or `cursor` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every `twitter.User` who is followed by the specified or authenticated user. A warning will be raised if `count` or `cursor` is passed with the expectation that breaking behavior will be introduced in a later version. -* Method now takes an optional parameter of `total_count`, which limits the number of users to return. If this is not set, the data returned will be all users followed by the specified user. -* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. +GetFollowers() +++++++++++++++++++++++++++++ +* Method no longer honors a ``count`` or ``cursor`` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every ``twitter.User`` who is following the specified or authenticated user. A warning will be raised if ``count`` or ``cursor`` is passed with the expectation that breaking behavior will be introduced in a later version. +* Method now takes an optional parameter of ``total_count``, which limits the number of users to return. If this is not set, the data returned will be all users following the specified user. +* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. -GetFriendsPaged(): -* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 -* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. +GetFriends() +++++++++++++++++++++++++++++ +* Method no longer honors a ``count`` or ``cursor`` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every ``twitter.User`` who is followed by the specified or authenticated user. A warning will be raised if ``count`` or ``cursor`` is passed with the expectation that breaking behavior will be introduced in a later version. +* Method now takes an optional parameter of ``total_count``, which limits the number of users to return. If this is not set, the data returned will be all users followed by the specified user. +* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. -GetFollowersPaged(): -* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277 -* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. +GetFriendsPaged() +++++++++++++++++++++++++++++ +* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. +* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. -GetSearch(): -* You can now specify a user for whom you wish to limit the search. For example, to only get tweets from the user `twitterapi`, you can call `GetSearch(who='twitterapi')` and only that account's tweets will be returned. +GetFollowersPaged() +++++++++++++++++++++++++++++ +* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. +* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. -GetUserStream(): +GetUserStream() +++++++++++++++++++++++++++++ * Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously. +PostUpdate() +++++++++++++ +* Now accepts three new parameters: ``media``, ``media_additional_owners``, and ``media_category``. ``media`` can be a URL, a local file, or a file-like object (something with a ``read()`` method), or a list of any combination of the above. +* ``media_additional_owners`` should be a list of user ids representing Twitter users that should be able to use the uploaded media in their tweets. If you pass a list of media, then **additional owners will apply to each object.** If you need more granular control, please use the UploadMedia* methods. +* ``media_category``: Only for use with the AdsAPI. See https://dev.twitter.com/ads/creative/promoted-video-overview if this applies to your application. + Deprecation =========== -PostMedia(): +PostMedia() +++++++++++++++++++++++++++++ * This endpoint is deprecated by Twitter. Python-twitter will throw a warning about using the method and advise you to use PostUpdate() instead. There is no schedule for when this will be removed from Twitter. +PostMultipleMedia() ++++++++++++++++++++ +* This method should be replaced by passing a list of media objects (either URLs, local files, or file-like objects) to PostUpdate. You are limited to a maximum of 4 media files per tweet. + New Methods =========== -UploadMediaChunked(): -* API method allows chunked upload to upload.twitter.com. Similar to Api.PostMedia(), this method can take either a local filename (str), a URL (str), or a file-like object. The image or video type will be determined by `mimetypes` (see twitter/twitter_utils.py for details). +UploadMediaChunked() +++++++++++++++++++++++++++++ +* API method allows chunked upload to upload.twitter.com. Similar to Api.PostMedia(), this method can take either a local filename (str), a URL (str), or a file-like object. The image or video type will be determined by ``mimetypes`` (see :py:func:`twitter.twitter_utils.parse_media_file` for details). * Optionally, you can specify a chunk_size for uploads when instantiating the Api object. This should be given in bytes. The default is 1MB (that is, 1048576 bytes). Any chunk_size given below 16KB will result in a warning: Twitter will return an error if you try to upload more than 999 chunks of data; for example, if you are uploading a 15MB video, then a chunk_size lower than 15729 bytes will result in 1000 APPEND commands being sent to the API, so you'll get an error. 16KB seems like a reasonable lower bound, but if your use case is well-defined, then python-twitter will not enforce this behavior. * Another thing to take into consideration: if you're working in a RAM-constrained environment, a very large chunk_size will increase your RAM usage when uploading media through this endpoint. -* The return value will be the media_id of the uploaded file. +* The return value will be the ``media_id`` of the uploaded file. -UploadMediaSimple(): +UploadMediaSimple() +++++++++++++++++++++++++++++ * Provides the ability to upload a single media file to Twitter without using the ChunkedUpload endpoint. This method should be used on smaller files and reduces the roundtrips from Twitter from three (for UploadMediaChunked) to one. -* Return value is the `media_id` of the uploaded file. \ No newline at end of file +* Return value is the ``media_id`` of the uploaded file. \ No newline at end of file diff --git a/doc/models.rst b/doc/models.rst new file mode 100644 index 00000000..dbea27bd --- /dev/null +++ b/doc/models.rst @@ -0,0 +1,16 @@ +Models +====== + +Python-twitter provides the following models of the objects returned by the Twitter API: + +* :py:mod:`twitter.category.Category` +* :py:mod:`twitter.direct_message.DirectMessage` +* :py:mod:`twitter.hashtag.Hashtag` +* :py:mod:`twitter.list.List` +* :py:mod:`twitter.media.Media` +* :py:mod:`twitter.status.Status` +* :py:mod:`twitter.trend.Trend` +* :py:mod:`twitter.url.Url` +* :py:mod:`twitter.user.User` +* :py:mod:`twitter.user.UserStatus` + diff --git a/doc/modules.rst b/doc/modules.rst new file mode 100644 index 00000000..aa26b462 --- /dev/null +++ b/doc/modules.rst @@ -0,0 +1,10 @@ +.. _modules: + +Modules +******* + +.. toctree:: + :maxdepth: 4 + + twitter + diff --git a/doc/searching.rst b/doc/searching.rst index ea555367..be88b7dc 100644 --- a/doc/searching.rst +++ b/doc/searching.rst @@ -1,3 +1,11 @@ +.. _searching: + +Searching ++++++++++ + + +.. _raw_queries: + Raw Queries =========== @@ -7,4 +15,4 @@ For example, if you want to search for only tweets containing the word "twitter" results = api.GetSearch(raw_query="q=twitter%20&result_type=recent&since=2014-07-19&count=100") -If you want to build a search query and you're not quite sure how it should look all put together, you can use Twitter's Advanced Search tool: https://twitter.com/search-advanced, and then use the part of search URL after the "?" to use for the Api, removing the "&src=typd" portion. \ No newline at end of file +If you want to build a search query and you're not quite sure how it should look all put together, you can use Twitter's Advanced Search tool: https://twitter.com/search-advanced, and then use the part of search URL after the "?" to use for the Api, removing the ``&src=typd`` portion. \ No newline at end of file diff --git a/doc/twitter.rst b/doc/twitter.rst new file mode 100644 index 00000000..4db0a1e6 --- /dev/null +++ b/doc/twitter.rst @@ -0,0 +1,61 @@ +python-twitter package +============= + + +twitter.api +---------------- + +.. automodule:: twitter.api + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.category + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.direct_message + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.hashtag + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.list + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.media + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.status + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.trend + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.url + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.user + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: twitter.twitter_utils + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/with_django.rst b/doc/with_django.rst new file mode 100644 index 00000000..a0006347 --- /dev/null +++ b/doc/with_django.rst @@ -0,0 +1,4 @@ +Using with Django +================= + +Additional template tags that expand tweet urls and urlize tweet text. See the django template tags available for use with python-twitter: https://github.com/radzhome/python-twitter-django-tags \ No newline at end of file diff --git a/twitter/api.py b/twitter/api.py index f7bca606..3124a3fa 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -886,8 +886,20 @@ def PostUpdate(self, Args: status: - The message text to be posted. - Must be less than or equal to 140 characters. + The message text to be posted. Must be less than or equal to 140 + characters. + media: + A URL, a local file, or a file-like object (something with a read() + method), or a list of any combination of the above. + media_additional_owners: + A list of user ids representing Twitter users that should be able + to use the uploaded media in their tweets. If you pass a list of + media, then additional_owners will apply to each object. If you + need more granular control, please use the UploadMedia* methods. + media_category: + Only for use with the AdsAPI. See + https://dev.twitter.com/ads/creative/promoted-video-overview if + this applies to your application. in_reply_to_status_id: The ID of an existing status that the status to be posted is in reply to. This implicitly sets the in_reply_to_user_id diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index 3e03e220..7fa4d153 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -143,6 +143,17 @@ def calc_expected_status_length(status, short_url_length=23): + """ Calculates the length of a tweet, taking into account Twitter's + replacement of URLs with https://t.co links. + + Args: + status: text of the status message to be posted. + short_url_length: the current published https://t.co links + + Returns: + Expected length of the status message as an integer. + + """ replaced_chars = 0 status_length = len(status) match = re.findall(URL_REGEXP, status) @@ -153,6 +164,14 @@ def calc_expected_status_length(status, short_url_length=23): def is_url(text): + """ Checks to see if a bit of text is a URL. + + Args: + text: text to check. + + Returns: + Boolean of whether the text should be treated as a URL or not. + """ if re.findall(URL_REGEXP, text): return True else: @@ -160,6 +179,16 @@ def is_url(text): def parse_media_file(passed_media): + """ Parses a media file and attempts to return a file-like object and + information about the media file. + + Args: + passed_media: media file which to parse. + + Returns: + file-like object, the filename of the media file, the file size, and + the type of media. + """ img_formats = ['image/jpeg', 'image/png', 'image/gif', From ecf8f65c81e53186491a9f16b204d92ce383e417 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Tue, 26 Jan 2016 13:33:05 -0500 Subject: [PATCH 135/533] Unicode + Python = day drinking. That fact aside, there is a Python3 and unicode issue with the setup.py file, specifically, in how it opens and reads AUTHORS.rst: + /usr/bin/python3 setup.py build '--executable=/usr/bin/python3 -s' Traceback (most recent call last): File "setup.py", line 40, in read('AUTHORS.rst') + '\n\n' + File "setup.py", line 27, in read return f.read() File "/usr/lib64/python3.4/encodings/ascii.py", line 26, in decode return codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 412: ordinal not in range(128) This only fails on Python 3 (I tested with 3.4.3). Since we know the encoding of the files is UTF-8, and we aren't concerned about these open() calls for performance, being explicit with encoding='utf-8' and using io.open is the lazy fix that resolves this issue without breaking Python 2. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7ce420e9..da33b6be 100755 --- a/setup.py +++ b/setup.py @@ -16,14 +16,14 @@ '''The setup and build script for the python-twitter library.''' -import os +import os, io from setuptools import setup, find_packages def read(*paths): """Build a file path from *paths* and return the contents.""" - with open(os.path.join(*paths), 'r') as f: + with io.open(os.path.join(*paths), 'r', encoding='utf-8') as f: return f.read() From 648098d201c8a0e1c54812c881b818267f661d1f Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 26 Jan 2016 18:34:35 -0500 Subject: [PATCH 136/533] updates behavior of GetBlocks() in line with Twitter restrictions; adds GetBlocksPaged() method --- twitter/api.py | 76 ++++++++++++++++++++++++++++++-------------------- 1 file changed, 46 insertions(+), 30 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 3124a3fa..d7c1788f 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1613,24 +1613,17 @@ def GetRetweetsOfMe(self, return [Status.NewFromJsonDict(s) for s in data] - def GetBlocks(self, - user_id=None, - screen_name=None, - cursor=-1, - skip_status=False, - include_user_entities=False): - """Fetch the sequence of twitter.User instances, one for each blocked user. + def GetBlocksPaged(self, + cursor=None, + skip_status=False, + include_user_entities=False): + """ Fetch a page of the users (as twitter.User instances), + blocked by the currently authenticated user. Args: - user_id: - The twitter id of the user whose friends you are fetching. - If not specified, defaults to the authenticated user. [Optional] - screen_name: - The twitter name of the user whose friends you are fetching. - If not specified, defaults to the authenticated user. [Optional] cursor: - Should be set to -1 for the initial call and then is used to - control what result page Twitter returns. + Should be set to -1 if you want the first page, thereafter denotes + the page of blocked users that you want to return. skip_status: If True the statuses will not be returned in the user items. [Optional] @@ -1638,32 +1631,55 @@ def GetBlocks(self, When True, the user entities will be included. [Optional] Returns: - A sequence of twitter.User instances, one for each friend + next_cursor, previous_cursor, data sequence of twitter.User + instances, one for each blocked user. """ url = '%s/blocks/list.json' % self.base_url result = [] parameters = {} - if user_id is not None: - parameters['user_id'] = user_id - if screen_name is not None: - parameters['screen_name'] = screen_name if skip_status: parameters['skip_status'] = True if include_user_entities: parameters['include_user_entities'] = True + parameters['cursor'] = cursor + + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + result += [User.NewFromJsonDict(x) for x in data['users']] + next_cursor = data.get('next_cursor', 0) + previous_cursor = data.get('previous_cursor', 0) + + return next_cursor, previous_cursor, result + + def GetBlocks(self, + skip_status=False, + include_user_entities=False): + """ Fetch the sequence of all users (as twitter.User instances), + blocked by the currently authenticated user. + + Args: + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + A sequence of twitter.User instances, one for each blocked user. + """ + result = [] + cursor = -1 while True: - parameters['cursor'] = cursor - resp = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - result += [User.NewFromJsonDict(x) for x in data['users']] - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - else: + next_cursor, previous_cursor, users = self.GetBlocksPaged( + cursor=cursor, + skip_status=skip_status, + include_user_entities=include_user_entities) + result += users + if next_cursor == 0 or next_cursor == previous_cursor: break + else: + cursor = next_cursor return result From 10e5dca4b356eb8d46fbf9b53c4954c97d26c2a0 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 27 Jan 2016 06:00:13 -0500 Subject: [PATCH 137/533] adds GetBlocksIDsPaged and GetBlocksIDs methods --- twitter/api.py | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index d7c1788f..10fec46e 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1683,6 +1683,76 @@ def GetBlocks(self, return result + def GetBlocksIDsPaged(self, + cursor=None, + skip_status=None, + include_user_entities=None): + """ Fetch a page of the users (as user ids (integers)), + blocked by the currently authenticated user. + + Args: + cursor: + Should be set to -1 if you want the first page, thereafter denotes + the page of blocked users that you want to return. + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + next_cursor, previous_cursor, data sequence of twitter.User + instances, one for each blocked user. + """ + url = '%s/blocks/ids.json' % self.base_url + result = [] + parameters = {} + if skip_status: + parameters['skip_status'] = True + if include_user_entities: + parameters['include_user_entities'] = True + parameters['cursor'] = cursor + + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + result += [user for user in data.get('users', [])] + next_cursor = data.get('next_cursor', 0) + previous_cursor = data.get('previous_cursor', 0) + + return next_cursor, previous_cursor, result + + def GetBlocksIDs(self, + skip_status=None, + include_user_entities=None): + """ Fetch the sequence of all users (as integer user ids), + blocked by the currently authenticated user. + + Args: + skip_status: + If True the statuses will not be returned in the user items. + [Optional] + include_user_entities: + When True, the user entities will be included. [Optional] + + Returns: + A sequence of twitter.User instances, one for each blocked user. + """ + result = [] + cursor = -1 + + while True: + next_cursor, previous_cursor, user_ids = self.GetBlocksIDsPaged( + cursor=cursor, + skip_status=skip_status, + include_user_entities=include_user_entities) + result += user_ids + if next_cursor == 0 or next_cursor == previous_cursor: + break + else: + cursor = next_cursor + + return result + def DestroyBlock(self, id, trim_user=False): """Destroys the block for the user specified by the required ID parameter. From d056579ae0ef38ba47b1970175efd0f9d9c15fda Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 27 Jan 2016 22:11:01 -0500 Subject: [PATCH 138/533] updates inline docs --- twitter/api.py | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 10fec46e..2e2cd23a 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1614,10 +1614,10 @@ def GetRetweetsOfMe(self, return [Status.NewFromJsonDict(s) for s in data] def GetBlocksPaged(self, - cursor=None, + cursor=-1, skip_status=False, include_user_entities=False): - """ Fetch a page of the users (as twitter.User instances), + """ Fetch a page of the users (as twitter.User instances) blocked by the currently authenticated user. Args: @@ -1631,8 +1631,8 @@ def GetBlocksPaged(self, When True, the user entities will be included. [Optional] Returns: - next_cursor, previous_cursor, data sequence of twitter.User - instances, one for each blocked user. + next_cursor, previous_cursor, list of twitter.User instances, + one for each blocked user. """ url = '%s/blocks/list.json' % self.base_url result = [] @@ -1665,7 +1665,7 @@ def GetBlocks(self, When True, the user entities will be included. [Optional] Returns: - A sequence of twitter.User instances, one for each blocked user. + A list of twitter.User instances, one for each blocked user. """ result = [] cursor = -1 @@ -1684,11 +1684,11 @@ def GetBlocks(self, return result def GetBlocksIDsPaged(self, - cursor=None, + cursor=-1, skip_status=None, include_user_entities=None): - """ Fetch a page of the users (as user ids (integers)), - blocked by the currently authenticated user. + """ Fetch a page of the user IDs (integers) blocked by the currently + authenticated user. Args: cursor: @@ -1701,11 +1701,9 @@ def GetBlocksIDsPaged(self, When True, the user entities will be included. [Optional] Returns: - next_cursor, previous_cursor, data sequence of twitter.User - instances, one for each blocked user. + next_cursor, previous_cursor, list of user IDs of blocked users. """ url = '%s/blocks/ids.json' % self.base_url - result = [] parameters = {} if skip_status: parameters['skip_status'] = True @@ -1715,11 +1713,11 @@ def GetBlocksIDsPaged(self, resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - result += [user for user in data.get('users', [])] + user_ids = data.get('ids', []) next_cursor = data.get('next_cursor', 0) previous_cursor = data.get('previous_cursor', 0) - return next_cursor, previous_cursor, result + return next_cursor, previous_cursor, user_ids def GetBlocksIDs(self, skip_status=None, @@ -1735,7 +1733,7 @@ def GetBlocksIDs(self, When True, the user entities will be included. [Optional] Returns: - A sequence of twitter.User instances, one for each blocked user. + A list of user IDs for all blocked users. """ result = [] cursor = -1 From ddbe346bbcedc49890ac2894ce0b61255a4cf619 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 27 Jan 2016 22:12:16 -0500 Subject: [PATCH 139/533] adds tests data for blocks methods --- testdata/get_blocks_0.json | 1 + testdata/get_blocks_1.json | 1 + testdata/get_blocks_ids_0.json | 1 + testdata/get_blocks_ids_1.json | 1 + 4 files changed, 4 insertions(+) create mode 100644 testdata/get_blocks_0.json create mode 100644 testdata/get_blocks_1.json create mode 100644 testdata/get_blocks_ids_0.json create mode 100644 testdata/get_blocks_ids_1.json diff --git a/testdata/get_blocks_0.json b/testdata/get_blocks_0.json new file mode 100644 index 00000000..d699e130 --- /dev/null +++ b/testdata/get_blocks_0.json @@ -0,0 +1 @@ +{"users":[{"id":68956490,"id_str":"68956490","name":"Robot J. McCarthy","screen_name":"RedScareBot","location":"Wisconsin","description":"Joseph McCarthy claimed there were large numbers of Communists and Soviet spies and sympathizers inside the United States federal government and elsewhere.","url":"http:\/\/t.co\/PiQZ8cvNsS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PiQZ8cvNsS","expanded_url":"http:\/\/bit.ly\/RdUCUi","display_url":"bit.ly\/RdUCUi","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15257,"friends_count":134,"listed_count":1321,"created_at":"Wed Aug 26 11:37:30 +0000 2009","favourites_count":3018,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2497529,"lang":"en","status":{"created_at":"Sat Nov 14 07:48:12 +0000 2015","id":665436049645166592,"id_str":"665436049645166592","text":"Socialism lite RT @culbgren Don't Claim bto Love the U.S.A. While Trying To Make It A Socialist Nation! https:\/\/t.co\/t8b9AesC1d","source":"\u003ca href=\"http:\/\/twitter.com\/RedScareBot\" rel=\"nofollow\"\u003eRedScareBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":665434140997771264,"in_reply_to_status_id_str":"665434140997771264","in_reply_to_user_id":2891911385,"in_reply_to_user_id_str":"2891911385","in_reply_to_screen_name":"culbgren","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":25,"favorite_count":39,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"culbgren","name":"Donna\u2734","id":2891911385,"id_str":"2891911385","indices":[18,27]}],"urls":[],"media":[{"id":665434138170773504,"id_str":"665434138170773504","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","url":"https:\/\/t.co\/t8b9AesC1d","display_url":"pic.twitter.com\/t8b9AesC1d","expanded_url":"http:\/\/twitter.com\/culbgren\/status\/665434140997771264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"medium":{"w":557,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":432,"resize":"fit"}},"source_status_id":665434140997771264,"source_status_id_str":"665434140997771264","source_user_id":2891911385,"source_user_id_str":"2891911385"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68956490\/1397719213","profile_link_color":"7C009E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A199A3","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":true,"blocked_by":false}],"next_cursor":1524574483549312671,"next_cursor_str":"1524574483549312671","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_blocks_1.json b/testdata/get_blocks_1.json new file mode 100644 index 00000000..2afcf1cb --- /dev/null +++ b/testdata/get_blocks_1.json @@ -0,0 +1 @@ +{"users":[{"id":68956490,"id_str":"68956490","name":"Robot J. McCarthy","screen_name":"RedScareBot","location":"Wisconsin","description":"Joseph McCarthy claimed there were large numbers of Communists and Soviet spies and sympathizers inside the United States federal government and elsewhere.","url":"http:\/\/t.co\/PiQZ8cvNsS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PiQZ8cvNsS","expanded_url":"http:\/\/bit.ly\/RdUCUi","display_url":"bit.ly\/RdUCUi","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15257,"friends_count":134,"listed_count":1321,"created_at":"Wed Aug 26 11:37:30 +0000 2009","favourites_count":3018,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2497529,"lang":"en","status":{"created_at":"Sat Nov 14 07:48:12 +0000 2015","id":665436049645166592,"id_str":"665436049645166592","text":"Socialism lite RT @culbgren Don't Claim bto Love the U.S.A. While Trying To Make It A Socialist Nation! https:\/\/t.co\/t8b9AesC1d","source":"\u003ca href=\"http:\/\/twitter.com\/RedScareBot\" rel=\"nofollow\"\u003eRedScareBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":665434140997771264,"in_reply_to_status_id_str":"665434140997771264","in_reply_to_user_id":2891911385,"in_reply_to_user_id_str":"2891911385","in_reply_to_screen_name":"culbgren","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":25,"favorite_count":39,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"culbgren","name":"Donna\u2734","id":2891911385,"id_str":"2891911385","indices":[18,27]}],"urls":[],"media":[{"id":665434138170773504,"id_str":"665434138170773504","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","url":"https:\/\/t.co\/t8b9AesC1d","display_url":"pic.twitter.com\/t8b9AesC1d","expanded_url":"http:\/\/twitter.com\/culbgren\/status\/665434140997771264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"medium":{"w":557,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":432,"resize":"fit"}},"source_status_id":665434140997771264,"source_status_id_str":"665434140997771264","source_user_id":2891911385,"source_user_id_str":"2891911385"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68956490\/1397719213","profile_link_color":"7C009E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A199A3","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":true,"blocked_by":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file diff --git a/testdata/get_blocks_ids_0.json b/testdata/get_blocks_ids_0.json new file mode 100644 index 00000000..b0901629 --- /dev/null +++ b/testdata/get_blocks_ids_0.json @@ -0,0 +1 @@ +{"next_cursor": 1524566179872860311, "next_cursor_str": "1524566179872860311", "previous_cursor": 0, "ids": [68956490], "previous_cursor_str": "0"} \ No newline at end of file diff --git a/testdata/get_blocks_ids_1.json b/testdata/get_blocks_ids_1.json new file mode 100644 index 00000000..18a887f9 --- /dev/null +++ b/testdata/get_blocks_ids_1.json @@ -0,0 +1 @@ +{"next_cursor": 0, "next_cursor_str": "0", "previous_cursor": 0, "ids": [68956490], "previous_cursor_str": "0"} \ No newline at end of file From db8c54f196f99c7f84976e34dc2e795071379834 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 27 Jan 2016 22:12:43 -0500 Subject: [PATCH 140/533] adds documentation for new blocks methods --- doc/migration_v30.rst | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index d9fe44ab..cc95ff5c 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -41,6 +41,11 @@ PostUpdate() * ``media_additional_owners`` should be a list of user ids representing Twitter users that should be able to use the uploaded media in their tweets. If you pass a list of media, then **additional owners will apply to each object.** If you need more granular control, please use the UploadMedia* methods. * ``media_category``: Only for use with the AdsAPI. See https://dev.twitter.com/ads/creative/promoted-video-overview if this applies to your application. +GetBlocks() ++++++++++++ +* Method no longer accepts parameters ``user_id`` or ``screen_name`` as these are not honored by Twitter. The data returned will be for the authenticated user only. +* Parameter ``cursor`` is no longer accepted -- this method will return **all** users being blocked by the currently authenticated user. If you need paging, please use :py:func:`twitter.api.Api.GetBlocksPaged` instead. + Deprecation =========== @@ -67,4 +72,16 @@ UploadMediaChunked() UploadMediaSimple() ++++++++++++++++++++++++++++ * Provides the ability to upload a single media file to Twitter without using the ChunkedUpload endpoint. This method should be used on smaller files and reduces the roundtrips from Twitter from three (for UploadMediaChunked) to one. -* Return value is the ``media_id`` of the uploaded file. \ No newline at end of file +* Return value is the ``media_id`` of the uploaded file. + +GetBlocksPaged() +++++++++++++++++ +* Allows you to page through the currently authenticated user's blocked users. Method returns three values: the next cursor, the previous cursor, and a list of ``twitter.User`` instances representing the blocked users. + +GetBlocksIDs() +++++++++++++++ +* Returns **all** the users currently blocked by the authenticated user as user IDs. The user IDs will be integers. + +GetBlocksIDsPaged() ++++++++++++++++++++ +* Returns one page, specified by the cursor parameter, of the users currently blocked by the authenticated user as user IDs. From bfb4d14dfae4582d61484dcd2085a273fde1af7d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 27 Jan 2016 22:13:09 -0500 Subject: [PATCH 141/533] removes outdated testdata for blocks --- testdata/get_blocks.json | 1 - 1 file changed, 1 deletion(-) delete mode 100644 testdata/get_blocks.json diff --git a/testdata/get_blocks.json b/testdata/get_blocks.json deleted file mode 100644 index 2afcf1cb..00000000 --- a/testdata/get_blocks.json +++ /dev/null @@ -1 +0,0 @@ -{"users":[{"id":68956490,"id_str":"68956490","name":"Robot J. McCarthy","screen_name":"RedScareBot","location":"Wisconsin","description":"Joseph McCarthy claimed there were large numbers of Communists and Soviet spies and sympathizers inside the United States federal government and elsewhere.","url":"http:\/\/t.co\/PiQZ8cvNsS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PiQZ8cvNsS","expanded_url":"http:\/\/bit.ly\/RdUCUi","display_url":"bit.ly\/RdUCUi","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15257,"friends_count":134,"listed_count":1321,"created_at":"Wed Aug 26 11:37:30 +0000 2009","favourites_count":3018,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2497529,"lang":"en","status":{"created_at":"Sat Nov 14 07:48:12 +0000 2015","id":665436049645166592,"id_str":"665436049645166592","text":"Socialism lite RT @culbgren Don't Claim bto Love the U.S.A. While Trying To Make It A Socialist Nation! https:\/\/t.co\/t8b9AesC1d","source":"\u003ca href=\"http:\/\/twitter.com\/RedScareBot\" rel=\"nofollow\"\u003eRedScareBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":665434140997771264,"in_reply_to_status_id_str":"665434140997771264","in_reply_to_user_id":2891911385,"in_reply_to_user_id_str":"2891911385","in_reply_to_screen_name":"culbgren","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":25,"favorite_count":39,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"culbgren","name":"Donna\u2734","id":2891911385,"id_str":"2891911385","indices":[18,27]}],"urls":[],"media":[{"id":665434138170773504,"id_str":"665434138170773504","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTwY0rMWUAAJWB1.jpg","url":"https:\/\/t.co\/t8b9AesC1d","display_url":"pic.twitter.com\/t8b9AesC1d","expanded_url":"http:\/\/twitter.com\/culbgren\/status\/665434140997771264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"medium":{"w":557,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":432,"resize":"fit"}},"source_status_id":665434140997771264,"source_status_id_str":"665434140997771264","source_user_id":2891911385,"source_user_id_str":"2891911385"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/32132396\/emo.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/382754962\/mccarthy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68956490\/1397719213","profile_link_color":"7C009E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A199A3","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":true,"blocked_by":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"} \ No newline at end of file From 0953292c60809a1ac3a9cb117a6c962e2321ee5f Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 27 Jan 2016 22:13:40 -0500 Subject: [PATCH 142/533] updates blocks tests for new methods & data --- tests/test_api_30.py | 107 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 102 insertions(+), 5 deletions(-) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 4c2b5efa..c39d019a 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -290,7 +290,7 @@ def testGetRetweeters(self): @responses.activate def testGetBlocks(self): - with open('testdata/get_blocks.json') as f: + with open('testdata/get_blocks_0.json') as f: resp_data = f.read() responses.add( responses.GET, @@ -298,11 +298,108 @@ def testGetBlocks(self): body=resp_data, match_querystring=True, status=200) + with open('testdata/get_blocks_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/blocks/list.json?cursor=1524574483549312671', + body=resp_data, + match_querystring=True, + status=200) resp = self.api.GetBlocks() - self.assertTrue(type(resp) is list) - self.assertTrue(type(resp[0]) is twitter.User) - self.assertEqual(len(resp), 1) - self.assertEqual(resp[0].screen_name, 'RedScareBot') + self.assertTrue( + isinstance(resp, list), + "Expected resp type to be list, got {0}".format(type(resp))) + self.assertTrue( + isinstance(resp[0], twitter.User), + "Expected type of first obj in resp to be twitter.User, got {0}".format( + type(resp[0]))) + self.assertEqual( + len(resp), 2, + "Expected len of resp to be 2, got {0}".format(len(resp))) + self.assertEqual( + resp[0].screen_name, 'RedScareBot', + "Expected screen_name of 1st blocked user to be RedScareBot, was {0}".format( + resp[0].screen_name)) + self.assertEqual( + resp[0].screen_name, 'RedScareBot', + "Expected screen_name of 2nd blocked user to be RedScareBot, was {0}".format( + resp[0].screen_name)) + + @responses.activate + def testGetBlocksPaged(self): + with open('testdata/get_blocks_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/blocks/list.json?cursor=1524574483549312671', + body=resp_data, + match_querystring=True, + status=200) + ncur, pcur, resp = self.api.GetBlocksPaged(cursor=1524574483549312671) + self.assertTrue( + isinstance(resp, list), + "Expected list, got {0}".format(type(resp))) + self.assertTrue( + isinstance(resp[0], twitter.User), + "Expected twitter.User, got {0}".format(type(resp[0]))) + self.assertEqual( + len(resp), 1, + "Expected len of resp to be 1, got {0}".format(len(resp))) + self.assertEqual( + resp[0].screen_name, 'RedScareBot', + "Expected username of blocked user to be RedScareBot, got {0}".format( + resp[0].screen_name)) + + @responses.activate + def testGetBlocksIDs(self): + with open('testdata/get_blocks_ids_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/blocks/ids.json?cursor=-1', + body=resp_data, + match_querystring=True, + status=200) + with open('testdata/get_blocks_ids_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/blocks/ids.json?cursor=1524566179872860311', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetBlocksIDs() + self.assertTrue( + isinstance(resp, list), + "Expected list, got {0}".format(type(resp))) + self.assertTrue( + isinstance(resp[0], int), + "Expected list, got {0}".format(type(resp))) + self.assertEqual( + len(resp), 2, + "Expected len of resp to be 2, got {0}".format(len(resp))) + + @responses.activate + def testGetBlocksIDsPaged(self): + with open('testdata/get_blocks_ids_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/blocks/ids.json?cursor=1524566179872860311', + body=resp_data, + match_querystring=True, + status=200) + _, _, resp = self.api.GetBlocksIDsPaged(cursor=1524566179872860311) + self.assertTrue( + isinstance(resp, list), + "Expected list, got {0}".format(type(resp))) + self.assertTrue( + isinstance(resp[0], int), + "Expected list, got {0}".format(type(resp))) + self.assertEqual( + len(resp), 1, + "Expected len of resp to be 1, got {0}".format(len(resp))) @responses.activate def testGetFriendIDs(self): From efbbd92c466294057669e60e9524dce309258194 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 06:54:54 -0500 Subject: [PATCH 143/533] adds tests for Lists methods --- tests/test_api_30.py | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index c39d019a..ccd6d730 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -899,3 +899,91 @@ def testUpdateBanner400Error(self): self.api.UpdateBanner(image='testdata/168NQ.jpg') except twitter.TwitterError as e: self.assertTrue("Image data could not be processed" in str(e)) + + @responses.activate + def testGetMemberships(self): + with open('testdata/get_memberships.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/memberships.json?filter_to_owned_lists=False&cursor=-1&count=20', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetMemberships() + self.assertTrue(type(resp) is list) + self.assertTrue([type(lst) is twitter.List for lst in resp]) + self.assertEqual(resp[0].id, 210635540) + + @responses.activate + def testGetListsList(self): + with open('testdata/get_lists_list.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/list.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListsList() + self.assertTrue(type(resp) is list) + self.assertTrue([type(lst) is twitter.List for lst in resp]) + self.assertEqual(resp[0].id, 189643778) + + with open('testdata/get_lists_list_screen_name.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/list.json?screen_name=inky', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListsList(screen_name='inky') + self.assertTrue(type(resp) is list) + self.assertTrue([type(lst) is twitter.List for lst in resp]) + self.assertEqual(resp[0].id, 224581495) + + with open('testdata/get_lists_list_user_id.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/list.json?user_id=13148', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListsList(user_id=13148) + self.assertTrue(type(resp) is list) + self.assertTrue([type(lst) is twitter.List for lst in resp]) + self.assertEqual(resp[0].id, 224581495) + + @responses.activate + def testGetLists(self): + with open('testdata/get_lists.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/ownerships.json?cursor=-1', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetLists() + self.assertTrue(resp) + lst = resp[0] + self.assertEqual(lst.id, 229581524) + self.assertTrue(type(lst), twitter.List) + self.assertEqual(lst.full_name, "@notinourselves/test") + self.assertEqual(lst.slug, "test") + + @responses.activate + def testGetListMembers(self): + with open('testdata/get_list_members.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/members.json?cursor=-1&list_id=189643778', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListMembers(list_id=189643778) + self.assertTrue(type(resp[0]) is twitter.User) + self.assertEqual(resp[0].id, 4040207472) From a1685857ac841becf2561f156883d6cc3f18dbee Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 28 Jan 2016 20:00:39 -0500 Subject: [PATCH 144/533] adds simple type checking function for values passed to Api methods --- twitter/twitter_utils.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index 7fa4d153..1fc1da71 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -234,3 +234,28 @@ def parse_media_file(passed_media): raise TwitterError({'message': 'Media type could not be determined.'}) return data_file, filename, file_size, media_type + + +def enf_type(field, _type, val): + """ Checks to see if a given val for a field (i.e., the name of the field) + is of the proper _type. If it is not, raises a TwitterError with a brief + explanation. + + Args: + field: + Name of the field you are checking. + _type: + Type that the value should be returned as. + val: + Value to convert to _type. + + Returns: + val converted to type _type. + + """ + try: + return _type(val) + except ValueError: + raise TwitterError({ + 'message': '"{0}" must be type {1}'.format(field, _type.__name__) + }) From ea424449100050ab82868e470818772b67e71ed0 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 06:56:25 -0500 Subject: [PATCH 145/533] intermediate work on Api.*Lists*() methods with fixes for decoding/long py3 errors --- tests/test_api_30.py | 4 +- twitter/api.py | 379 +++++++++++++++++++++++-------------------- 2 files changed, 207 insertions(+), 176 deletions(-) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index ccd6d730..0f6d9014 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -906,7 +906,7 @@ def testGetMemberships(self): resp_data = f.read() responses.add( responses.GET, - 'https://api.twitter.com/1.1/lists/memberships.json?filter_to_owned_lists=False&cursor=-1&count=20', + 'https://api.twitter.com/1.1/lists/memberships.json?cursor=-1&count=20', body=resp_data, match_querystring=True, status=200) @@ -962,7 +962,7 @@ def testGetLists(self): resp_data = f.read() responses.add( responses.GET, - 'https://api.twitter.com/1.1/lists/ownerships.json?cursor=-1', + 'https://api.twitter.com/1.1/lists/ownerships.json?cursor=-1&count=20', body=resp_data, match_querystring=True, status=200) diff --git a/twitter/api.py b/twitter/api.py index 2e2cd23a..557a1c34 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -55,7 +55,8 @@ from twitter.twitter_utils import ( calc_expected_status_length, is_url, - parse_media_file) + parse_media_file, + enf_type) warnings.simplefilter('always', DeprecationWarning) @@ -3301,25 +3302,27 @@ def GetMemberships(self, count=20, cursor=-1, filter_to_owned_lists=False): - """Obtain the lists the specified user is a member of. + """Obtain the lists the specified user is a member of. If no user_id or + screen_name is specified, the data returned will be for the + authenticated user. Returns a maximum of 20 lists per page by default. - Twitter endpoint: /lists/memberships - Args: user_id: The ID of the user for whom to return results for. [Optional] screen_name: - The screen name of the user for whom to return results for. [Optional] + The screen name of the user for whom to return + results for. [Optional] count: The amount of results to return per page. No more than 1000 results will ever be returned in a single page. Defaults to 20. [Optional] cursor: - The "page" value that Twitter will use to start building the list sequence from. - Use the value of -1 to start at the beginning. - Twitter will return in the result the values for next_cursor and previous_cursor. [Optional] + The "page" value that Twitter will use to start building the list + sequence from. Use the value of -1 to start at the beginning. + Twitter will return in the result the values for next_cursor and + previous_cursor. [Optional] filter_to_owned_lists: Set to True to return only the lists the authenticating user owns, and the user specified by user_id or screen_name is a @@ -3332,36 +3335,26 @@ def GetMemberships(self, """ url = '%s/lists/memberships.json' % (self.base_url) parameters = {} - try: - parameters['cursor'] = int(cursor) - except ValueError: - raise TwitterError({'message': "cursor must be an integer"}) - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) - try: - parameters['filter_to_owned_lists'] = bool(filter_to_owned_lists) - except ValueError: - raise TwitterError({'message': "filter_to_owned_lists \ - must be a boolean value"}) + if cursor is not None: + parameters['cursor'] = enf_type('cursor', int, cursor) + if count is not None: + parameters['count'] = enf_type('count', int, count) + if filter_to_owned_lists: + parameters['filter_to_owned_lists'] = enf_type( + 'filter_to_owned_lists', bool, filter_to_owned_lists) + if user_id is not None: - try: - parameters['user_id'] = long(user_id) - except ValueError: - raise TwitterError({'message': "user_id must be an integer"}) + parameters['user_id'] = enf_type('user_id', int, user_id) elif screen_name is not None: parameters['screen_name'] = screen_name - else: - raise TwitterError({'message': "Specify user_id or screen_name"}) resp = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(resp.content) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [List.NewFromJsonDict(x) for x in data['lists']] def GetListsList(self, - screen_name, + screen_name=None, user_id=None, reverse=False): """Returns all lists the user subscribes to, including their own. @@ -3378,9 +3371,9 @@ def GetListsList(self, user_timeline. Helpful for disambiguating when a valid user ID is also a valid screen name. [Optional] reverse: - If False, the owned lists will be returned first, othewise subscribed - lists will be at the top. Returns a maximum of 100 entries regardless. - Defaults to False. [Optional] + If False, the owned lists will be returned first, othewise + subscribed lists will be at the top. Returns a maximum of 100 + entries regardless. Defaults to False. [Optional] Returns: A list of twitter List items. @@ -3388,11 +3381,11 @@ def GetListsList(self, url = '%s/lists/list.json' % (self.base_url) parameters = {} if user_id: - parameters['user_id'] = user_id + parameters['user_id'] = enf_type('user_id', int, user_id) elif screen_name: parameters['screen_name'] = screen_name if reverse: - parameters['reverse'] = 'true' + parameters['reverse'] = enf_type('reverse', bool, reverse) resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) @@ -3400,8 +3393,8 @@ def GetListsList(self, return [List.NewFromJsonDict(x) for x in data] def GetListTimeline(self, - list_id, - slug, + list_id=None, + slug=None, owner_id=None, owner_screen_name=None, since_id=None, @@ -3420,7 +3413,8 @@ def GetListTimeline(self, Specifies the ID of the list to retrieve. slug: The slug name for the list to retrieve. If you specify None for the - list_id, then you have to provide either a owner_screen_name or owner_id. + list_id, then you have to provide either a owner_screen_name or + owner_id. owner_id: Specifies the ID of the user for whom to return the list timeline. Helpful for disambiguating when a valid user ID @@ -3433,8 +3427,8 @@ def GetListTimeline(self, Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. - If the limit of Tweets has occurred since the since_id, the since_id - will be forced to the oldest ID available. [Optional] + If the limit of Tweets has occurred since the since_id, the + since_id will be forced to the oldest ID available. [Optional] max_id: Returns only statuses with an ID less than (that is, older than) or equal to the specified ID. [Optional] @@ -3442,8 +3436,8 @@ def GetListTimeline(self, Specifies the number of statuses to retrieve. May not be greater than 200. [Optional] include_rts: - If True, the timeline will contain native retweets (if they exist) in - addition to the standard stream of tweets. [Optional] + If True, the timeline will contain native retweets (if they exist) + in addition to the standard stream of tweets. [Optional] include_entities: If False, the timeline will not contain additional metadata. Defaults to True. [Optional] @@ -3452,38 +3446,37 @@ def GetListTimeline(self, A sequence of Status instances, one for each message up to count """ parameters = {} - url = '%s/lists/statuses.json' % (self.base_url) - parameters['slug'] = slug - parameters['list_id'] = list_id - if list_id is None: - if slug is None: - raise TwitterError({'message': "list_id or slug required"}) - if owner_id is None and not owner_screen_name: - raise TwitterError({ - 'message': "if list_id is not given you have to include an owner to help identify the proper list"}) - if owner_id: - parameters['owner_id'] = owner_id - if owner_screen_name: - parameters['owner_screen_name'] = owner_screen_name + url = '%s/lists/statuses.json' % self.base_url + + if list_id is not None: + parameters['list_id'] = enf_type('list_id', int, list_id) + elif slug is not None: + parameters['slug'] = slug + if owner_id is not None: + parameters['owner_id'] = enf_type('owner_id', int, owner_id) + elif owner_screen_name is not None: + parameters['owner_screen_name'] = owner_screen_name + else: + raise TwitterError({'message': ( + 'If specifying a list by slug, an owner_id or ' + 'owner_screen_name must also be given.') + }) + else: + raise TwitterError({'message': ( + 'Either list_id or slug and one of owner_id and ' + 'owner_screen_name must be passed.') + }) + if since_id: - try: - parameters['since_id'] = int(since_id) - except ValueError: - raise TwitterError({'message': "since_id must be an integer"}) + parameters['since_id'] = enf_type('since_id', int, since_id) if max_id: - try: - parameters['max_id'] = int(max_id) - except ValueError: - raise TwitterError({'message': "max_id must be an integer"}) + parameters['max_id'] = enf_type('max_id', int, max_id) if count: - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) + parameters['count'] = enf_type('count', int, count) if not include_rts: - parameters['include_rts'] = 'false' + parameters['include_rts'] = enf_type('include_rts', bool, include_rts) if not include_entities: - parameters['include_entities'] = 'false' + parameters['include_entities'] = enf_type('include_entities', bool, include_entities) resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) @@ -3491,8 +3484,8 @@ def GetListTimeline(self, return [Status.NewFromJsonDict(x) for x in data] def GetListMembers(self, - list_id, - slug, + list_id=None, + slug=None, owner_id=None, owner_screen_name=None, cursor=-1, @@ -3508,7 +3501,8 @@ def GetListMembers(self, Specifies the ID of the list to retrieve. slug: The slug name for the list to retrieve. If you specify None for the - list_id, then you have to provide either a owner_screen_name or owner_id. + list_id, then you have to provide either a owner_screen_name or + owner_id. owner_id: Specifies the ID of the user for whom to return the list timeline. Helpful for disambiguating when a valid user ID @@ -3531,28 +3525,33 @@ def GetListMembers(self, A sequence of twitter.User instances, one for each follower """ parameters = {} - url = '%s/lists/members.json' % (self.base_url) - parameters['slug'] = slug - parameters['list_id'] = list_id - if list_id is None: - if slug is None: - raise TwitterError({'message': "list_id or slug required"}) - if owner_id is None and not owner_screen_name: - raise TwitterError({ - 'message': "if list_id is not given you have to include an owner to help identify the proper list"}) - if owner_id: - parameters['owner_id'] = owner_id - if owner_screen_name: - parameters['owner_screen_name'] = owner_screen_name + url = '%s/lists/members.json' % self.base_url + + if list_id is not None: + parameters['list_id'] = enf_type('list_id', int, list_id) + elif slug is not None: + parameters['slug'] = slug + if owner_id is not None: + parameters['owner_id'] = enf_type('owner_id', int, owner_id) + elif owner_screen_name is not None: + parameters['owner_screen_name'] = owner_screen_name + else: + raise TwitterError({'message': ( + 'If specifying a list by slug, an owner_id or ' + 'owner_screen_name must also be given.') + }) + else: + raise TwitterError({'message': ( + 'Either list_id or slug and one of owner_id and ' + 'owner_screen_name must be passed.') + }) + if cursor: - try: - parameters['cursor'] = int(cursor) - except ValueError: - raise TwitterError({'message': "cursor must be an integer"}) + parameters['cursor'] = enf_type('cursor', int, cursor) if skip_status: - parameters['skip_status'] = True + parameters['skip_status'] = enf_type('skip_status', bool, skip_status) if include_entities: - parameters['include_user_entities'] = True + parameters['include_user_entities'] = enf_type('include_user_entities', bool, include_user_entities) result = [] while True: @@ -3585,17 +3584,17 @@ def CreateListsMember(self, Args: list_id: - The numerical id of the list. + The numerical id of the list. [Optional] slug: You can identify a list by its slug instead of its numerical id. If you decide to do so, note that you'll also have to specify the list owner - using the owner_id or owner_screen_name parameters. + using the owner_id or owner_screen_name parameters. [Optional] user_id: The user_id or a list of user_id's to add to the list. - If not given, then screen_name is required. + If not given, then screen_name is required. [Optional] screen_name: The screen_name or a list of screen_name's to add to the list. - If not given, then user_id is required. + If not given, then user_id is required. [Optional] owner_screen_name: The screen_name of the user who owns the list being requested by a slug. owner_id: @@ -3604,42 +3603,41 @@ def CreateListsMember(self, Returns: A twitter.List instance representing the list subscribed to """ - isList = False + is_list = False data = {} if list_id: - try: - data['list_id'] = int(list_id) - except ValueError: - raise TwitterError({'message': "list_id must be an integer"}) + data['list_id'] = enf_type('list_id', int, list_id) elif slug: data['slug'] = slug if owner_id: - try: - data['owner_id'] = int(owner_id) - except ValueError: - raise TwitterError({'message': "owner_id must be an integer"}) + data['owner_id'] = enf_type('owner_id', int, owner_id) elif owner_screen_name: data['owner_screen_name'] = owner_screen_name else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + raise TwitterError({'message': ( + 'If specifying a list by slug, an owner_id or ' + 'owner_screen_name must also be given.') + }) else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + raise TwitterError({'message': ( + 'Either list_id or slug and one of owner_id and ' + 'owner_screen_name must be passed.') + }) + if user_id: - try: - if isinstance(user_id, types.ListType) or isinstance(user_id, types.TupleType): - isList = True - data['user_id'] = '%s' % ','.join(user_id) - else: - data['user_id'] = int(user_id) - except ValueError: - raise TwitterError({'message': "user_id must be an integer"}) + if isinstance(user_id, list) or isinstance(user_id, tuple): + is_list = True + data['user_id'] = ','.join([enf_type('user_id', int, uid) for uid in user_id]) + else: + data['user_id'] = enf_type('user_id', int, user_id) + elif screen_name: - if isinstance(screen_name, types.ListType) or isinstance(screen_name, types.TupleType): - isList = True - data['screen_name'] = '%s' % ','.join(screen_name) + if isinstance(screen_name, list) or isinstance(screen_name, tuple): + is_list = True + data['screen_name'] = ','.join(screen_name) else: data['screen_name'] = screen_name - if isList: + if is_list: url = '%s/lists/members/create_all.json' % self.base_url else: url = '%s/lists/members/create.json' % self.base_url @@ -3681,104 +3679,137 @@ def DestroyListsMember(self, Returns: A twitter.List instance representing the removed list. """ - isList = False + is_list = False data = {} + if list_id: - try: - data['list_id'] = int(list_id) - except ValueError: - raise TwitterError({'message': "list_id must be an integer"}) + data['list_id'] = enf_type('list_id', list, list_id) elif slug: data['slug'] = slug if owner_id: - try: - data['owner_id'] = int(owner_id) - except ValueError: - raise TwitterError({'message': "owner_id must be an integer"}) + data['owner_id'] = enf_type('owner_id', int, owner_id) elif owner_screen_name: data['owner_screen_name'] = owner_screen_name else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + raise TwitterError({'message': ( + 'If specifying a list by slug, an owner_id or ' + 'owner_screen_name must also be given.') + }) else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + raise TwitterError({'message': ( + 'Either list_id or slug and one of owner_id and ' + 'owner_screen_name must be passed.') + }) + if user_id: - try: - if isinstance(user_id, types.ListType) or isinstance(user_id, types.TupleType): - isList = True - data['user_id'] = '%s' % ','.join(user_id) - else: - data['user_id'] = int(user_id) - except ValueError: - raise TwitterError({'message': "user_id must be an integer"}) + if isinstance(user_id, list) or isinstance(user_id, tuple): + is_list = True + data['user_id'] = ','.join([enf_type('user_id', int, uid) for uid in user_id]) + else: + data['user_id'] = int(user_id) elif screen_name: - if isinstance(screen_name, types.ListType) or isinstance(screen_name, types.TupleType): - isList = True - data['screen_name'] = '%s' % ','.join(screen_name) + if isinstance(screen_name, list) or isinstance(screen_name, tuple): + is_list = True + data['screen_name'] = ','.join(screen_name) else: data['screen_name'] = screen_name - if isList: + + if is_list: url = '%s/lists/members/destroy_all.json' % self.base_url else: - url = '%s/lists/members/destroy.json' % (self.base_url) + url = '%s/lists/members/destroy.json' % self.base_url resp = self._RequestUrl(url, 'POST', data=data) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) - def GetLists(self, - user_id=None, - screen_name=None, - count=None, - cursor=-1): - """Fetch the sequence of lists for a user. - - Twitter endpoint: /lists/ownerships + def GetListsPaged(self, + user_id=None, + screen_name=None, + cursor=-1, + count=20): + """ Fetch the sequence of lists for a user. If no user_id or + screen_name is passed, the data returned will be for the + authenticated user. Args: user_id: The ID of the user for whom to return results for. [Optional] screen_name: - The screen name of the user for whom to return results for. [Optional] + The screen name of the user for whom to return results + for. [Optional] count: - The amount of results to return per page. - No more than 1000 results will ever be returned in a single page. - Defaults to 20. [Optional] + The amount of results to return per page. No more than 1000 results + will ever be returned in a single page. Defaults to 20. [Optional] cursor: - The "page" value that Twitter will use to start building the list sequence from. - Use the value of -1 to start at the beginning. - Twitter will return in the result the values for next_cursor and previous_cursor. [Optional] + The "page" value that Twitter will use to start building the list + sequence from. Use the value of -1 to start at the beginning. + Twitter will return in the result the values for next_cursor and + previous_cursor. [Optional] Returns: A sequence of twitter.List instances, one for each list """ url = '%s/lists/ownerships.json' % self.base_url - result = [] parameters = {} if user_id is not None: - try: - parameters['user_id'] = int(user_id) - except ValueError: - raise TwitterError({'message': "user_id must be an integer"}) + parameters['user_id'] = enf_type('user_id', int, user_id) elif screen_name is not None: parameters['screen_name'] = screen_name - else: - raise TwitterError({'message': "Specify user_id or screen_name"}) + if count is not None: - parameters['count'] = count + parameters['count'] = enf_type('count', int, count) + + parameters['cursor'] = enf_type('cursor', int, cursor) + + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + next_cursor = data.get('next_cursor', 0) + previous_cursor = data.get('previous_cursor', 0) + lists = [List.NewFromJsonDict(x) for x in data.get('lists', [])] + + return next_cursor, previous_cursor, lists + + def GetLists(self, + user_id=None, + screen_name=None): + """Fetch the sequence of lists for a user. If no user_id or screen_name + is passed, the data returned will be for the authenticated user. + + Args: + user_id: + The ID of the user for whom to return results for. [Optional] + screen_name: + The screen name of the user for whom to return results + for. [Optional] + count: + The amount of results to return per page. + No more than 1000 results will ever be returned in a single page. + Defaults to 20. [Optional] + cursor: + The "page" value that Twitter will use to start building the list + sequence from. Use the value of -1 to start at the beginning. + Twitter will return in the result the values for next_cursor and + previous_cursor. [Optional] + + Returns: + A sequence of twitter.List instances, one for each list + """ + result = [] + cursor = -1 while True: - parameters['cursor'] = cursor - resp = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - result += [List.NewFromJsonDict(x) for x in data['lists']] - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - else: + next_cursor, prev_cursor, lists = self.GetListsPaged( + user_id=user_id, + screen_name=screen_name, + cursor=cursor) + result += lists + if next_cursor == 0 or next_cursor == prev_cursor: break + else: + cursor = next_cursor return result From 332baafa1e52f8e056f750812aba35914cfa1db2 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 28 Jan 2016 21:26:52 -0500 Subject: [PATCH 146/533] docs now link to source + info re GetListsPaged --- doc/migration_v30.rst | 87 +++++++++++++++++++++++-------------------- 1 file changed, 47 insertions(+), 40 deletions(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index cc95ff5c..574b5c22 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -5,83 +5,90 @@ Migration from v2 to v3 Changes to Existing Methods =========================== -GetSearch() -++++++++++++++++++++++++++++ -* Adds ``raw_query`` method. See :ref:`raw_queries` for more information. +:py:func:`twitter.api.Api.GetBlocks` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Method no longer accepts parameters ``user_id`` or ``screen_name`` as these are not honored by Twitter. The data returned will be for the authenticated user only. +* Parameter ``cursor`` is no longer accepted -- this method will return **all** users being blocked by the currently authenticated user. If you need paging, please use :py:func:`twitter.api.Api.GetBlocksPaged` instead. -GetFollowers() -++++++++++++++++++++++++++++ +:py:func:`twitter.api.Api.GetFollowers` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Method no longer honors a ``count`` or ``cursor`` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every ``twitter.User`` who is following the specified or authenticated user. A warning will be raised if ``count`` or ``cursor`` is passed with the expectation that breaking behavior will be introduced in a later version. * Method now takes an optional parameter of ``total_count``, which limits the number of users to return. If this is not set, the data returned will be all users following the specified user. * The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. -GetFriends() -++++++++++++++++++++++++++++ +:py:func:`twitter.api.Api.GetFriends` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Method no longer honors a ``count`` or ``cursor`` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every ``twitter.User`` who is followed by the specified or authenticated user. A warning will be raised if ``count`` or ``cursor`` is passed with the expectation that breaking behavior will be introduced in a later version. * Method now takes an optional parameter of ``total_count``, which limits the number of users to return. If this is not set, the data returned will be all users followed by the specified user. * The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. -GetFriendsPaged() -++++++++++++++++++++++++++++ +:py:func:`twitter.api.Api.GetFriendsPaged` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. * The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. -GetFollowersPaged() -++++++++++++++++++++++++++++ +:py:func:`twitter.api.Api.GetFollowersPaged` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. * The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. -GetUserStream() -++++++++++++++++++++++++++++ +:py:func:`twitter.api.Api.GetSearch` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Adds ``raw_query`` method. See :ref:`raw_queries` for more information. + +:py:func:`twitter.api.Api.GetUserStream` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously. -PostUpdate() -++++++++++++ +:py:func:`twitter.api.Api.PostUpdate` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Now accepts three new parameters: ``media``, ``media_additional_owners``, and ``media_category``. ``media`` can be a URL, a local file, or a file-like object (something with a ``read()`` method), or a list of any combination of the above. * ``media_additional_owners`` should be a list of user ids representing Twitter users that should be able to use the uploaded media in their tweets. If you pass a list of media, then **additional owners will apply to each object.** If you need more granular control, please use the UploadMedia* methods. * ``media_category``: Only for use with the AdsAPI. See https://dev.twitter.com/ads/creative/promoted-video-overview if this applies to your application. -GetBlocks() -+++++++++++ -* Method no longer accepts parameters ``user_id`` or ``screen_name`` as these are not honored by Twitter. The data returned will be for the authenticated user only. -* Parameter ``cursor`` is no longer accepted -- this method will return **all** users being blocked by the currently authenticated user. If you need paging, please use :py:func:`twitter.api.Api.GetBlocksPaged` instead. - Deprecation =========== -PostMedia() -++++++++++++++++++++++++++++ +:py:func:`twitter.api.Api.PostMedia` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * This endpoint is deprecated by Twitter. Python-twitter will throw a warning about using the method and advise you to use PostUpdate() instead. There is no schedule for when this will be removed from Twitter. -PostMultipleMedia() -+++++++++++++++++++ +:py:func:`twitter.api.Api.PostMultipleMedia` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * This method should be replaced by passing a list of media objects (either URLs, local files, or file-like objects) to PostUpdate. You are limited to a maximum of 4 media files per tweet. New Methods =========== -UploadMediaChunked() -++++++++++++++++++++++++++++ + +:py:func:`twitter.api.Api.GetBlocksIDs` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Returns **all** the users currently blocked by the authenticated user as user IDs. The user IDs will be integers. + +:py:func:`twitter.api.Api.GetBlocksIDsPaged` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Returns one page, specified by the cursor parameter, of the users currently blocked by the authenticated user as user IDs. + +:py:func:`twitter.api.Api.GetBlocksPaged` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Allows you to page through the currently authenticated user's blocked users. Method returns three values: the next cursor, the previous cursor, and a list of ``twitter.User`` instances representing the blocked users. + +:py:func:`twitter.api.Api.GetListsPaged` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Much like :py:func:`twitter.api.Api.GetFriendsPaged` and similar methods, this allows you to retrieve an arbitrary page of :py:mod:`twitter.list.List` for either the currently authenticated user or a user specified by ``user_id`` or ``screen_name``. +* ``cursor`` should be ``-1`` for the first page. +* Returns the ``next_cursor``, ``previous_cursor``, and a list of :py:mod:`twitter.list.List` instances. + +:py:func:`twitter.api.Api.UploadMediaChunked` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * API method allows chunked upload to upload.twitter.com. Similar to Api.PostMedia(), this method can take either a local filename (str), a URL (str), or a file-like object. The image or video type will be determined by ``mimetypes`` (see :py:func:`twitter.twitter_utils.parse_media_file` for details). * Optionally, you can specify a chunk_size for uploads when instantiating the Api object. This should be given in bytes. The default is 1MB (that is, 1048576 bytes). Any chunk_size given below 16KB will result in a warning: Twitter will return an error if you try to upload more than 999 chunks of data; for example, if you are uploading a 15MB video, then a chunk_size lower than 15729 bytes will result in 1000 APPEND commands being sent to the API, so you'll get an error. 16KB seems like a reasonable lower bound, but if your use case is well-defined, then python-twitter will not enforce this behavior. * Another thing to take into consideration: if you're working in a RAM-constrained environment, a very large chunk_size will increase your RAM usage when uploading media through this endpoint. * The return value will be the ``media_id`` of the uploaded file. -UploadMediaSimple() -++++++++++++++++++++++++++++ +:py:func:`twitter.api.Api.UploadMediaSimple` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Provides the ability to upload a single media file to Twitter without using the ChunkedUpload endpoint. This method should be used on smaller files and reduces the roundtrips from Twitter from three (for UploadMediaChunked) to one. * Return value is the ``media_id`` of the uploaded file. - -GetBlocksPaged() -++++++++++++++++ -* Allows you to page through the currently authenticated user's blocked users. Method returns three values: the next cursor, the previous cursor, and a list of ``twitter.User`` instances representing the blocked users. - -GetBlocksIDs() -++++++++++++++ -* Returns **all** the users currently blocked by the authenticated user as user IDs. The user IDs will be integers. - -GetBlocksIDsPaged() -+++++++++++++++++++ -* Returns one page, specified by the cursor parameter, of the users currently blocked by the authenticated user as user IDs. From c879c8cca30e7446ea702859eb738defb37766ab Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 17:35:00 -0500 Subject: [PATCH 147/533] updates inline doc strings & fixes list join error in Create/DestroyMembership --- twitter/api.py | 360 +++++++++++++++++++++++-------------------------- 1 file changed, 170 insertions(+), 190 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 557a1c34..3aca7bd2 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2964,43 +2964,19 @@ def GetMentions(self, return [Status.NewFromJsonDict(x) for x in data] - # List endpoint status - # done GET lists/list - # done GET lists/statuses - # done POST lists/subscribers/create - # done GET lists/subscribers/show - # done POST lists/subscribers/destroy - # done GET lists/members - # done POST lists/members/create - # done POST lists/members/create_all - # done POST lists/members/destroy - # done POST lists/members/destroy_all - # GET lists/members/show - # done POST lists/create - # done POST lists/destroy - # POST lists/update - # GET lists/show - # done GET lists/subscriptions - # done GET lists/memberships - # GET lists/subscribers - # done GET lists/ownerships - def CreateList(self, name, mode=None, description=None): """Creates a new list with the give name for the authenticated user. - Twitter endpoint: /lists/create - Args: - name: + name (str): New name for the list - mode: - 'public' or 'private'. - Defaults to 'public'. [Optional] - description: - Description of the list. [Optional] + mode (str, optional): + 'public' or 'private'. Defaults to 'public'. + description (str, optional): + Description of the list. Returns: - A twitter.List instance representing the new list + twitter.list.List: A twitter.List instance representing the new list """ url = '%s/lists/create.json' % self.base_url parameters = {'name': name} @@ -3019,24 +2995,26 @@ def DestroyList(self, owner_id=False, list_id=None, slug=None): - """Destroys the list identified by list_id or owner_screen_name/owner_id and slug. - - Twitter endpoint: /lists/destroy + """Destroys the list identified by list_id or slug and one of + owner_screen_name or owner_id. Args: - owner_screen_name: - The screen_name of the user who owns the list being requested by a slug. - owner_id: - The user ID of the user who owns the list being requested by a slug. - list_id: + owner_screen_name (str, optional): + The screen_name of the user who owns the list being requested + by a slug. + owner_id (int, optional): + The user ID of the user who owns the list being requested + by a slug. + list_id (int, optional): The numerical id of the list. - slug: - You can identify a list by its slug instead of its numerical id. If you - decide to do so, note that you'll also have to specify the list owner - using the owner_id or owner_screen_name parameters. + slug (str, optional): + You can identify a list by its slug instead of its numerical id. + If you decide to do so, note that you'll also have to specify + the list owner using the owner_id or owner_screen_name parameters. Returns: - A twitter.List instance representing the removed list. + twitter.list.List: A twitter.List instance representing the + removed list. """ url = '%s/lists/destroy.json' % self.base_url data = {} @@ -3071,22 +3049,22 @@ def CreateSubscription(self, slug=None): """Creates a subscription to a list by the authenticated user. - Twitter endpoint: /lists/subscribers/create - Args: - owner_screen_name: - The screen_name of the user who owns the list being requested by a slug. - owner_id: - The user ID of the user who owns the list being requested by a slug. - list_id: + owner_screen_name (str, optional): + The screen_name of the user who owns the list being requested + by a slug. + owner_id (int, optional): + The user ID of the user who owns the list being requested + by a slug. + list_id (int, optional): The numerical id of the list. - slug: - You can identify a list by its slug instead of its numerical id. If you - decide to do so, note that you'll also have to specify the list owner - using the owner_id or owner_screen_name parameters. + slug (str, optional): + You can identify a list by its slug instead of its numerical id. + If you decide to do so, note that you'll also have to specify + the list owner using the owner_id or owner_screen_name parameters. Returns: - A twitter.User instance representing the user subscribed + twitter.user.User: A twitter.User instance representing the user subscribed """ url = '%s/lists/subscribers/create.json' % (self.base_url) data = {} @@ -3121,22 +3099,23 @@ def DestroySubscription(self, slug=None): """Destroys the subscription to a list for the authenticated user. - Twitter endpoint: /lists/subscribers/destroy - Args: - owner_screen_name: - The screen_name of the user who owns the list being requested by a slug. - owner_id: - The user ID of the user who owns the list being requested by a slug. - list_id: + owner_screen_name (str, optional): + The screen_name of the user who owns the list being requested + by a slug. + owner_id (int, optional): + The user ID of the user who owns the list being requested + by a slug. + list_id (int, optional): The numerical id of the list. - slug: - You can identify a list by its slug instead of its numerical id. If you - decide to do so, note that you'll also have to specify the list owner - using the owner_id or owner_screen_name parameters. + slug (str, optional): + You can identify a list by its slug instead of its numerical id. + If you decide to do so, note that you'll also have to specify the + list owner using the owner_id or owner_screen_name parameters. Returns: - A twitter.List instance representing the removed list. + twitter.list.List: A twitter.List instance representing + the removed list. """ url = '%s/lists/subscribers/destroy.json' % (self.base_url) data = {} @@ -3177,32 +3156,34 @@ def ShowSubscription(self, Returns the user if they are subscriber. - Twitter endpoint: /lists/subscribers/show - Args: - owner_screen_name: - The screen_name of the user who owns the list being requested by a slug. - owner_id: - The user ID of the user who owns the list being requested by a slug. - list_id: + owner_screen_name (str, optional): + The screen_name of the user who owns the list being requested + by a slug. + owner_id (int, optional): + The user ID of the user who owns the list being requested + by a slug. + list_id (int, optional): The numerical ID of the list. - slug: + slug (str, optional): You can identify a list by its slug instead of its numerical ID. If you decide to do so, note that you'll also have to specify the list owner using the owner_id or owner_screen_name parameters. - user_id: + user_id (int, optional): The user_id or a list of user_id's to add to the list. If not given, then screen_name is required. - screen_name: + screen_name (str, optional): The screen_name or a list of screen_name's to add to the list. If not given, then user_id is required. - include_entities: + include_entities (bool, optional): If False, the timeline will not contain additional metadata. - Defaults to True. [Optional] - skip_status: - If True the statuses will not be returned in the user items. [Optional] + Defaults to True. + skip_status (bool, optional): + If True the statuses will not be returned in the user items. + Returns: - A twitter.User instance representing the user requested + twitter.user.User: A twitter.User instance representing the user + requested. """ url = '%s/lists/subscribers/show.json' % (self.base_url) data = {} @@ -3246,30 +3227,30 @@ def GetSubscriptions(self, screen_name=None, count=20, cursor=-1): - """Obtain a collection of the lists the specified user is subscribed to. + """Obtain a collection of the lists the specified user is + subscribed to. The list will contain a maximum of 20 lists per page by default. Does not include the user's own lists. - Twitter endpoint: /lists/subscriptions - Args: - user_id: - The ID of the user for whom to return results for. [Optional] - screen_name: - The screen name of the user for whom to return results for. [Optional] - count: + user_id (int, optional): + The ID of the user for whom to return results for. + screen_name (str, optional): + The screen name of the user for whom to return results for. + count (int, optional): The amount of results to return per page. No more than 1000 results will ever be returned in a single page. Defaults to 20. [Optional] - cursor: - The "page" value that Twitter will use to start building the list sequence from. - Use the value of -1 to start at the beginning. - Twitter will return in the result the values for next_cursor and previous_cursor. [Optional] + cursor (int, optional): + The "page" value that Twitter will use to start building the + list sequence from. Use the value of -1 to start at the beginning. + Twitter will return in the result the values for next_cursor + and previous_cursor. Returns: - A sequence of twitter.List instances, one for each list + twitter.list.List: A sequence of twitter.List instances, one for each list """ url = '%s/lists/subscriptions.json' % (self.base_url) parameters = {} @@ -3309,29 +3290,28 @@ def GetMemberships(self, Returns a maximum of 20 lists per page by default. Args: - user_id: - The ID of the user for whom to return results for. [Optional] - screen_name: + user_id (int, optional): + The ID of the user for whom to return results for. + screen_name (str, optional): The screen name of the user for whom to return - results for. [Optional] - count: + results for. + count (int, optional): The amount of results to return per page. No more than 1000 results will ever be returned in a single page. - Defaults to 20. [Optional] - cursor: + Defaults to 20. + cursor (int, optional): The "page" value that Twitter will use to start building the list sequence from. Use the value of -1 to start at the beginning. Twitter will return in the result the values for next_cursor and - previous_cursor. [Optional] - filter_to_owned_lists: + previous_cursor. + filter_to_owned_lists (bool, optional): Set to True to return only the lists the authenticating user owns, and the user specified by user_id or screen_name is a - member of. - Default value is False. [Optional] + member of. Default value is False. Returns: - A sequence of twitter.List instances, one for each list in which - the user specified by user_id or screen_name is a member + list: A list of twitter.List instances, one for each list in which + the user specified by user_id or screen_name is a member """ url = '%s/lists/memberships.json' % (self.base_url) parameters = {} @@ -3358,25 +3338,25 @@ def GetListsList(self, user_id=None, reverse=False): """Returns all lists the user subscribes to, including their own. - - Twitter endpoint: /lists/list + If no user_id or screen_name is specified, the data returned will be + for the authenticated user. Args: - screen_name: + screen_name (str, optional): Specifies the screen name of the user for whom to return the user_timeline. Helpful for disambiguating when a valid screen name is also a user ID. - user_id: + user_id (int, optional): Specifies the ID of the user for whom to return the user_timeline. Helpful for disambiguating when a valid user ID - is also a valid screen name. [Optional] - reverse: + is also a valid screen name. + reverse (bool, optional): If False, the owned lists will be returned first, othewise subscribed lists will be at the top. Returns a maximum of 100 - entries regardless. Defaults to False. [Optional] + entries regardless. Defaults to False. Returns: - A list of twitter List items. + list: A sequence of twitter.List instances. """ url = '%s/lists/list.json' % (self.base_url) parameters = {} @@ -3404,46 +3384,43 @@ def GetListTimeline(self, include_entities=True): """Fetch the sequence of Status messages for a given List ID. - The twitter.Api instance must be authenticated if the user is private. - - Twitter endpoint: /lists/statuses - Args: - list_id: + list_id (int, optional): Specifies the ID of the list to retrieve. - slug: + slug (str, optional): The slug name for the list to retrieve. If you specify None for the list_id, then you have to provide either a owner_screen_name or owner_id. - owner_id: + owner_id (int, optional): Specifies the ID of the user for whom to return the list timeline. Helpful for disambiguating when a valid user ID - is also a valid screen name. [Optional] - owner_screen_name: + is also a valid screen name. + owner_screen_name (str, optional): Specifies the screen name of the user for whom to return the user_timeline. Helpful for disambiguating when a valid screen - name is also a user ID. [Optional] - since_id: + name is also a user ID. + since_id (int, optional): Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occurred since the since_id, the - since_id will be forced to the oldest ID available. [Optional] - max_id: + since_id will be forced to the oldest ID available. + max_id (int, optional): Returns only statuses with an ID less than (that is, older than) or - equal to the specified ID. [Optional] - count: + equal to the specified ID. + count (int, optional): Specifies the number of statuses to retrieve. - May not be greater than 200. [Optional] - include_rts: + May not be greater than 200. + include_rts (bool, optional): If True, the timeline will contain native retweets (if they exist) - in addition to the standard stream of tweets. [Optional] - include_entities: + in addition to the standard stream of tweets. + include_entities (bool, optional): If False, the timeline will not contain additional metadata. - Defaults to True. [Optional] + Defaults to True. Returns: - A sequence of Status instances, one for each message up to count + list: A list of twitter.status.Status instances, one for each + message up to count. """ parameters = {} url = '%s/lists/statuses.json' % self.base_url @@ -3483,6 +3460,7 @@ def GetListTimeline(self, return [Status.NewFromJsonDict(x) for x in data] + # TODO: Paging? def GetListMembers(self, list_id=None, slug=None, @@ -3494,35 +3472,33 @@ def GetListMembers(self, """Fetch the sequence of twitter.User instances, one for each member of the given list_id or slug. - Twitter endpoint: /lists/members - Args: - list_id: + list_id (int, optional): Specifies the ID of the list to retrieve. - slug: + slug (str, optional): The slug name for the list to retrieve. If you specify None for the list_id, then you have to provide either a owner_screen_name or owner_id. - owner_id: + owner_id (int, optional): Specifies the ID of the user for whom to return the list timeline. Helpful for disambiguating when a valid user ID - is also a valid screen name. [Optional] - owner_screen_name: + is also a valid screen name. + owner_screen_name (str, optional): Specifies the screen name of the user for whom to return the user_timeline. Helpful for disambiguating when a valid screen - name is also a user ID. [Optional] - cursor: + name is also a user ID. + cursor (int, optional): Should be set to -1 for the initial call and then is used to control what result page Twitter returns. - skip_status: + skip_status (bool, optional): If True the statuses will not be returned in the user items. - [Optional] - include_entities: + include_entities (bool, optional): If False, the timeline will not contain additional metadata. - Defaults to True. [Optional] + Defaults to True. Returns: - A sequence of twitter.User instances, one for each follower + list: A sequence of twitter.user.User instances, one for each + member of the twitter.list.List. """ parameters = {} url = '%s/lists/members.json' % self.base_url @@ -3551,7 +3527,8 @@ def GetListMembers(self, if skip_status: parameters['skip_status'] = enf_type('skip_status', bool, skip_status) if include_entities: - parameters['include_user_entities'] = enf_type('include_user_entities', bool, include_user_entities) + parameters['include_entities'] = \ + enf_type('include_entities', bool, include_entities) result = [] while True: @@ -3578,30 +3555,31 @@ def CreateListsMember(self, screen_name=None, owner_screen_name=None, owner_id=None): - """Add a new member (or list of members) to a user's list. - - Twitter endpoint: /lists/members/create or /lists/members/create_all + """Add a new member (or list of members) to the specified list. Args: - list_id: - The numerical id of the list. [Optional] - slug: - You can identify a list by its slug instead of its numerical id. If you - decide to do so, note that you'll also have to specify the list owner - using the owner_id or owner_screen_name parameters. [Optional] - user_id: + list_id (int, optional): + The numerical id of the list. + slug (str, optional): + You can identify a list by its slug instead of its numerical id. + If you decide to do so, note that you'll also have to specify the + list owner using the owner_id or owner_screen_name parameters. + user_id (int, optional): The user_id or a list of user_id's to add to the list. - If not given, then screen_name is required. [Optional] - screen_name: + If not given, then screen_name is required. + screen_name (str, optional): The screen_name or a list of screen_name's to add to the list. - If not given, then user_id is required. [Optional] - owner_screen_name: - The screen_name of the user who owns the list being requested by a slug. - owner_id: - The user ID of the user who owns the list being requested by a slug. + If not given, then user_id is required. + owner_screen_name (str, optional): + The screen_name of the user who owns the list being requested by + a slug. + owner_id (int, optional): + The user ID of the user who owns the list being requested by + a slug. Returns: - A twitter.List instance representing the list subscribed to + twitter.list.List: A twitter.List instance representing the list + subscribed to. """ is_list = False data = {} @@ -3656,28 +3634,28 @@ def DestroyListsMember(self, screen_name=None): """Destroys the subscription to a list for the authenticated user. - Twitter endpoint: /lists/subscribers/destroy - Args: - list_id: + list_id (int, optional): The numerical id of the list. - slug: + slug (str, optional): You can identify a list by its slug instead of its numerical id. If you decide to do so, note that you'll also have to specify the list owner using the owner_id or owner_screen_name parameters. - owner_screen_name: - The screen_name of the user who owns the list being requested by a slug. - owner_id: + owner_screen_name (str, optional): + The screen_name of the user who owns the list being requested by a + slug. + owner_id (int, optional): The user ID of the user who owns the list being requested by a slug. - user_id: + user_id (int, optional): The user_id or a list of user_id's to add to the list. If not given, then screen_name is required. - screen_name: + screen_name (str, optional): The screen_name or a list of Screen_name's to add to the list. If not given, then user_id is required. Returns: - A twitter.List instance representing the removed list. + twitter.list.List: A twitter.List instance representing the + removed list. """ is_list = False data = {} @@ -3704,7 +3682,8 @@ def DestroyListsMember(self, if user_id: if isinstance(user_id, list) or isinstance(user_id, tuple): is_list = True - data['user_id'] = ','.join([enf_type('user_id', int, uid) for uid in user_id]) + uids = [str(enf_type('user_id', int, uid)) for uid in user_id] + data['user_id'] = ','.join(uids) else: data['user_id'] = int(user_id) elif screen_name: @@ -3734,22 +3713,23 @@ def GetListsPaged(self, authenticated user. Args: - user_id: - The ID of the user for whom to return results for. [Optional] - screen_name: + user_id (int, optional): + The ID of the user for whom to return results for. + screen_name (str, optional): The screen name of the user for whom to return results - for. [Optional] - count: + for. + count (int, optional): The amount of results to return per page. No more than 1000 results - will ever be returned in a single page. Defaults to 20. [Optional] - cursor: + will ever be returned in a single page. Defaults to 20. + cursor (int, optional): The "page" value that Twitter will use to start building the list sequence from. Use the value of -1 to start at the beginning. Twitter will return in the result the values for next_cursor and - previous_cursor. [Optional] + previous_cursor. Returns: - A sequence of twitter.List instances, one for each list + next_cursor (int), previous_cursor (int), list of twitter.List + instances, one for each list """ url = '%s/lists/ownerships.json' % self.base_url parameters = {} From c53fadaebdd03280d8f26c0de35c3e1682613050 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 17:57:37 -0500 Subject: [PATCH 148/533] alphabetize migration guide --- doc/migration_v30.rst | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index 574b5c22..9d33ac0e 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -1,7 +1,6 @@ Migration from v2 to v3 ----------------------- - Changes to Existing Methods =========================== @@ -16,6 +15,11 @@ Changes to Existing Methods * Method now takes an optional parameter of ``total_count``, which limits the number of users to return. If this is not set, the data returned will be all users following the specified user. * The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. +:py:func:`twitter.api.Api.GetFollowersPaged` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. +* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. + :py:func:`twitter.api.Api.GetFriends` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Method no longer honors a ``count`` or ``cursor`` parameter. These have been deprecated in favor of making this method explicitly a convenience function to return a list of every ``twitter.User`` who is followed by the specified or authenticated user. A warning will be raised if ``count`` or ``cursor`` is passed with the expectation that breaking behavior will be introduced in a later version. @@ -27,11 +31,6 @@ Changes to Existing Methods * The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. * The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. -:py:func:`twitter.api.Api.GetFollowersPaged` -+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. -* The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior. - :py:func:`twitter.api.Api.GetSearch` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Adds ``raw_query`` method. See :ref:`raw_queries` for more information. @@ -62,7 +61,6 @@ Deprecation New Methods =========== - :py:func:`twitter.api.Api.GetBlocksIDs` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Returns **all** the users currently blocked by the authenticated user as user IDs. The user IDs will be integers. From 42a765326b662c2e9b4f5874b6a112d8438287a9 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 18:37:34 -0500 Subject: [PATCH 149/533] adds tests for GetListTimeline --- testdata/get_list_timeline.json | 2 +- testdata/get_list_timeline_count.json | 1 + testdata/get_list_timeline_count_rts_ent.json | 1 + testdata/get_list_timeline_max_since.json | 1 + tests/test_api_30.py | 55 +++++++++++++++++++ 5 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 testdata/get_list_timeline_count.json create mode 100644 testdata/get_list_timeline_count_rts_ent.json create mode 100644 testdata/get_list_timeline_max_since.json diff --git a/testdata/get_list_timeline.json b/testdata/get_list_timeline.json index 54d56f21..54b8d583 100644 --- a/testdata/get_list_timeline.json +++ b/testdata/get_list_timeline.json @@ -1 +1 @@ -[{"created_at":"Fri Dec 18 16:43:04 +0000 2015","id":677891843946766336,"id_str":"677891843946766336","text":"Coordinates: 11449,1740. 1050x1050px https:\/\/t.co\/iQTfpwBfwU","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677891843804160000,"id_str":"677891843804160000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhbClIU4AAfuh3.jpg","url":"https:\/\/t.co\/iQTfpwBfwU","display_url":"pic.twitter.com\/iQTfpwBfwU","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677891843946766336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:09:21 +0000 2015","id":677883355954835456,"id_str":"677883355954835456","text":"https:\/\/t.co\/1FZuXwfN8P","source":"\u003ca href=\"http:\/\/www.twitter.com\/starnearyou\" rel=\"nofollow\"\u003eStar Near You Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2873849441,"id_str":"2873849441","name":"Star Near You","screen_name":"starnearyou","location":"Orion\u2013Cygnus Arm, Milky Way","description":"I'm a bot that generates GIFs of the Sun's corona. Images courtesy of NASA\/SDO and the AIA science team. Created by @ddbeck.","url":"https:\/\/t.co\/2XrBFpUxiv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2XrBFpUxiv","expanded_url":"https:\/\/github.com\/ddbeck\/starnearyou","display_url":"github.com\/ddbeck\/starnea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":1,"listed_count":21,"created_at":"Wed Nov 12 15:26:16 +0000 2014","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1185,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532558084648873984\/n7U0OiIB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2873849441\/1415806333","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677883354499289088,"id_str":"677883354499289088","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CWhTUcAUkAACj1t.png","url":"https:\/\/t.co\/1FZuXwfN8P","display_url":"pic.twitter.com\/1FZuXwfN8P","expanded_url":"http:\/\/twitter.com\/starnearyou\/status\/677883355954835456\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CWhTUcAUkAACj1t.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 16:00:40 +0000 2015","id":677881170898624512,"id_str":"677881170898624512","text":"A bit of Pluto https:\/\/t.co\/sKB1j57QUx","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677881168100855810,"id_str":"677881168100855810","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhRVLCUEAIlfAU.jpg","url":"https:\/\/t.co\/sKB1j57QUx","display_url":"pic.twitter.com\/sKB1j57QUx","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677881170898624512\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:43:03 +0000 2015","id":677876737833758720,"id_str":"677876737833758720","text":"Coordinates: 65932,23911. 769x769px https:\/\/t.co\/F53UF9iZwM","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677876737745661953,"id_str":"677876737745661953","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWhNTSrUsAEAxfM.jpg","url":"https:\/\/t.co\/F53UF9iZwM","display_url":"pic.twitter.com\/F53UF9iZwM","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677876737833758720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":769,"h":769,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 15:40:03 +0000 2015","id":677875983014203392,"id_str":"677875983014203392","text":"2015\u00a0MW53, ~140m-310m in diameter, just passed the Earth at 20km\/s, missing by ~6,790,000km. https:\/\/t.co\/BFlKjHw4i2","source":"\u003ca href=\"http:\/\/twitter.com\/lowflyingrocks\" rel=\"nofollow\"\u003elowflyingrocks\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14446054,"id_str":"14446054","name":"lowflyingrocks","screen_name":"lowflyingrocks","location":"","description":"I mention every near earth object that passes within 0.2AU of Earth. @tomtaylor made me.","url":"http:\/\/t.co\/49Rp4zBFqj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/49Rp4zBFqj","expanded_url":"http:\/\/www.tomtaylor.co.uk\/projects\/","display_url":"tomtaylor.co.uk\/projects\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6925,"friends_count":4,"listed_count":574,"created_at":"Sat Apr 19 19:58:54 +0000 2008","favourites_count":1,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":4089,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53537162\/asteroid_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BFlKjHw4i2","expanded_url":"http:\/\/ssd.jpl.nasa.gov\/sbdb.cgi?sstr=2015%20MW53;orb=1","display_url":"ssd.jpl.nasa.gov\/sbdb.cgi?sstr=\u2026","indices":[93,116]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 15:29:01 +0000 2015","id":677873207148306432,"id_str":"677873207148306432","text":"* \u3000\u3000\u3000\u3000 \n\u3000\u3000\u3000\u3000. \u00b7 \u3000\n\u3000 \u3000\u3000 \u272b \u3000\n \u22c6 \u3000\u3000 \u00b7 \u3000 \u3000\u3000 \u2739 \u3000\u3000\u3000\n\u3000 \u3000 \u272b \u272b \u3000\u3000\u3000 \u3000 \u22c6 \n\u3000 * \u3000 .","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":193,"favorite_count":127,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 15:18:03 +0000 2015","id":677870447082344448,"id_str":"677870447082344448","text":"Coordinates: (3.9272555029812866, 119.29804246724038); https:\/\/t.co\/0B9m1h5XgG https:\/\/t.co\/xFg5jMsU0C","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0B9m1h5XgG","expanded_url":"http:\/\/osm.org\/go\/4jHjM--?m","display_url":"osm.org\/go\/4jHjM--?m","indices":[55,78]}],"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677870394963918848,"id_str":"677870394963918848","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677870394963918848\/pu\/img\/L8ciRWGpO6bHKBAX.jpg","url":"https:\/\/t.co\/xFg5jMsU0C","display_url":"pic.twitter.com\/xFg5jMsU0C","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677870447082344448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/480x480\/doYJaGpS7Bdiqcm-.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/240x240\/6euMc-jyD51djwZK.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/pl\/GxdpBrvV1sOeatQ3.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677870394963918848\/pu\/vid\/720x720\/5flH_9EGCfpUclzR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 14:43:04 +0000 2015","id":677861642500104192,"id_str":"677861642500104192","text":"Coordinates: 12185,316. 1453x1453px https:\/\/t.co\/frzkFDwf0W","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677861642202300417,"id_str":"677861642202300417","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWg_knZUwAELrPk.jpg","url":"https:\/\/t.co\/frzkFDwf0W","display_url":"pic.twitter.com\/frzkFDwf0W","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677861642500104192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 13:43:04 +0000 2015","id":677846542653386757,"id_str":"677846542653386757","text":"Coordinates: 40280,10804. 1126x1126px https:\/\/t.co\/h39BgolIGZ","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677846542405906432,"id_str":"677846542405906432","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgx1sRUsAA1tcu.jpg","url":"https:\/\/t.co\/h39BgolIGZ","display_url":"pic.twitter.com\/h39BgolIGZ","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677846542653386757\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:43:04 +0000 2015","id":677831444446638080,"id_str":"677831444446638080","text":"Coordinates: 41231,10286. 1199x1199px https:\/\/t.co\/YTvQvGwuzq","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677831444266246145,"id_str":"677831444266246145","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgkG3UUYAEFBWN.jpg","url":"https:\/\/t.co\/YTvQvGwuzq","display_url":"pic.twitter.com\/YTvQvGwuzq","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677831444446638080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 12:32:38 +0000 2015","id":677828819894599680,"id_str":"677828819894599680","text":"\u00b7\ud83d\ude80\u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677827909189369856,"in_reply_to_status_id_str":"677827909189369856","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[91,107]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:29:01 +0000 2015","id":677827909189369856,"id_str":"677827909189369856","text":"\u00b7 \u3000 \u22c6 + \u00b7 \u3000\n \u2726 \u3000 . . .\u3000\u3000 \u3000 \u3000\n \u3000\u3000\u3000\u3000\u3000\n + \u3000 . \n \u22c6 \u3000 + \u3000\n\u3000\u3000\u3000\u3000\u3000\u2735 + \u3000\n\u3000\u3000\u3000 \u00b7 + \u2735","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":175,"favorite_count":148,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 12:21:23 +0000 2015","id":677825988861018113,"id_str":"677825988861018113","text":"Coordinates: (-6.848856172522701, 152.31952652634567); https:\/\/t.co\/Ey2mCrXIlC https:\/\/t.co\/iaLC5cSTWH","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ey2mCrXIlC","expanded_url":"http:\/\/osm.org\/go\/vbQyB--?m","display_url":"osm.org\/go\/vbQyB--?m","indices":[55,78]}],"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677825908615438336,"id_str":"677825908615438336","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677825908615438336\/pu\/img\/RY_wAdqhpWuHGzLm.jpg","url":"https:\/\/t.co\/iaLC5cSTWH","display_url":"pic.twitter.com\/iaLC5cSTWH","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677825988861018113\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/720x720\/9EtetgrNyOhK2rZS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/pl\/6SYv1pJvzllNJLqX.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/480x480\/QKlYNB57hnI3qXV8.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677825908615438336\/pu\/vid\/240x240\/RzRrgP9dTP0Ry6mN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 11:43:03 +0000 2015","id":677816342058164225,"id_str":"677816342058164225","text":"Coordinates: 10334,1959. 1287x1287px https:\/\/t.co\/A7GBy69CQV","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677816341861044224,"id_str":"677816341861044224","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgWXyeVEAAtlyK.jpg","url":"https:\/\/t.co\/A7GBy69CQV","display_url":"pic.twitter.com\/A7GBy69CQV","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677816342058164225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:43:03 +0000 2015","id":677801239917162496,"id_str":"677801239917162496","text":"Coordinates: 6157,20471. 1244x1244px https:\/\/t.co\/Q6Mm0Oi0OX","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677801239791271938,"id_str":"677801239791271938","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWgIou4UAAInxTU.jpg","url":"https:\/\/t.co\/Q6Mm0Oi0OX","display_url":"pic.twitter.com\/Q6Mm0Oi0OX","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677801239917162496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 10:00:36 +0000 2015","id":677790557909962752,"id_str":"677790557909962752","text":"A bit of Pluto https:\/\/t.co\/lKlZJBkQI3","source":"\u003ca href=\"https:\/\/github.com\/hugovk\/\" rel=\"nofollow\"\u003eBits of Pluto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769438815,"id_str":"3769438815","name":"Bits of Pluto","screen_name":"bitsofpluto","location":"Up there, out there","description":"A different bit of Pluto every six hours. Bot by @hugovk, photo by NASA's New Horizons spacecraft. https:\/\/t.co\/fOhCrlseIQ","url":"https:\/\/t.co\/mAixJrdlV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mAixJrdlV1","expanded_url":"https:\/\/twitter.com\/hugovk\/lists\/my-twitterbot-army\/members","display_url":"twitter.com\/hugovk\/lists\/m\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/fOhCrlseIQ","expanded_url":"https:\/\/www.nasa.gov\/image-feature\/the-rich-color-variations-of-pluto","display_url":"nasa.gov\/image-feature\/\u2026","indices":[99,122]}]}},"protected":false,"followers_count":42,"friends_count":30,"listed_count":9,"created_at":"Fri Sep 25 09:12:19 +0000 2015","favourites_count":1,"utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"verified":false,"statuses_count":333,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647508173969039360\/w5oCnBs5.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647358378570723328\/StmCc8il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769438815\/1443177284","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":677790555204681729,"id_str":"677790555204681729","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf-6zsXAAEAnYX.jpg","url":"https:\/\/t.co\/lKlZJBkQI3","display_url":"pic.twitter.com\/lKlZJBkQI3","expanded_url":"http:\/\/twitter.com\/bitsofpluto\/status\/677790557909962752\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri Dec 18 09:43:04 +0000 2015","id":677786143924989952,"id_str":"677786143924989952","text":"Coordinates: 60550,10765. 1318x1318px https:\/\/t.co\/xuMtkZ2RGs","source":"\u003ca href=\"http:\/\/joemfox.com\" rel=\"nofollow\"\u003eJoe Fox Bots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990633947,"id_str":"2990633947","name":"\u2738Andromeda\u2738","screen_name":"AndromedaBot","location":"","description":"Exploring Hubble's largest photo (69536x22230px), a little bit at a time. A bot by @joemfox. More info: http:\/\/t.co\/auTvn3Cjl9","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/auTvn3Cjl9","expanded_url":"http:\/\/www.spacetelescope.org\/images\/heic1502a\/","display_url":"spacetelescope.org\/images\/heic150\u2026","indices":[104,126]}]}},"protected":false,"followers_count":1397,"friends_count":0,"listed_count":86,"created_at":"Tue Jan 20 03:42:02 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7622,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559181037318590466\/ICFU8kP6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990633947\/1421728625","profile_link_color":"000444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677786143685873664,"id_str":"677786143685873664","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CWf66BgUEAAI9dd.jpg","url":"https:\/\/t.co\/xuMtkZ2RGs","display_url":"pic.twitter.com\/xuMtkZ2RGs","expanded_url":"http:\/\/twitter.com\/AndromedaBot\/status\/677786143924989952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri Dec 18 09:36:01 +0000 2015","id":677784373471666176,"id_str":"677784373471666176","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 \ud83d\ude80 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7\n@tiny_star_field","source":"\u003ca href=\"http:\/\/blog.megastructure.org\/\" rel=\"nofollow\"\u003eTiny Astronaut\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":677782612333584384,"in_reply_to_status_id_str":"677782612333584384","in_reply_to_user_id":2607163646,"in_reply_to_user_id_str":"2607163646","in_reply_to_screen_name":"tiny_star_field","user":{"id":2758649640,"id_str":"2758649640","name":"tiny astronaut","screen_name":"tiny_astro_naut","location":"","description":"tiny adventures of tiny astronauts injected into @tiny_star_field's tiny star fields. by @elibrody","url":"http:\/\/t.co\/p2MpascZzX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/p2MpascZzX","expanded_url":"http:\/\/tinyastronaut.neocities.org\/","display_url":"tinyastronaut.neocities.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4238,"friends_count":2,"listed_count":63,"created_at":"Sat Aug 23 12:39:49 +0000 2014","favourites_count":404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4279,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505771585379135488\/ky5PI2rr_normal.png","profile_link_color":"AAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tiny_star_field","name":"\u22c6\u2735tiny star fields\u2735\u22c6","id":2607163646,"id_str":"2607163646","indices":[97,113]}],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:29:02 +0000 2015","id":677782612333584384,"id_str":"677782612333584384","text":". \u3000\u3000 . \u00b7 + \u273a \u00b7 \n\u3000\u3000 . . \u3000\n* \u3000 \u00b7 \u3000\u3000 \u3000\u3000 \u3000 \u02da \n\u3000\u3000\u3000\u3000\u3000* \n\u3000 * \u3000 . \u3000\u3000 \u3000\u3000 \n\u3000. \u2735 * \u00b7 \u3000 \u00b7","source":"\u003ca href=\"https:\/\/twitter.com\/tiny_star_field\" rel=\"nofollow\"\u003etiny star field\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607163646,"id_str":"2607163646","name":"\u22c6\u2735tiny star fields\u2735\u22c6","screen_name":"tiny_star_field","location":"","description":"i produce a small window of stars periodically throughout the day and night \/\/ (inquires, @katierosepipkin)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69687,"friends_count":5807,"listed_count":478,"created_at":"Sun Jul 06 09:21:05 +0000 2014","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485715541844185088\/66kkRc8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607163646\/1404638820","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":201,"favorite_count":173,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri Dec 18 09:17:08 +0000 2015","id":677779618502467584,"id_str":"677779618502467584","text":"Coordinates: (-3.6578324169809178, 103.22975925265374); https:\/\/t.co\/YHhKoQCsMO https:\/\/t.co\/usCWiH9AIt","source":"\u003ca href=\"http:\/\/iseverythingstilltheworst.com\" rel=\"nofollow\"\u003espace, jerks.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040207472,"id_str":"4040207472","name":"himawari8bot","screen_name":"himawari8bot","location":"Space","description":"Unofficial; imagery courtesy: Japan Meteorological Agency (https:\/\/t.co\/lzPXaTnMCi) and CIRA (https:\/\/t.co\/YksnDoJEl8). Bot by @__jcbl__","url":"https:\/\/t.co\/uYVLL8E5Qg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uYVLL8E5Qg","expanded_url":"https:\/\/github.com\/jeremylow\/himawari_bot","display_url":"github.com\/jeremylow\/hima\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lzPXaTnMCi","expanded_url":"http:\/\/www.jma.go.jp\/en\/gms\/","display_url":"jma.go.jp\/en\/gms\/","indices":[59,82]},{"url":"https:\/\/t.co\/YksnDoJEl8","expanded_url":"http:\/\/rammb.cira.colostate.edu\/ramsdis\/online\/himawari-8.asp","display_url":"rammb.cira.colostate.edu\/ramsdis\/online\u2026","indices":[94,117]}]}},"protected":false,"followers_count":302,"friends_count":2,"listed_count":23,"created_at":"Tue Oct 27 23:06:22 +0000 2015","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":812,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145099113295873\/ufx8ad3i_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YHhKoQCsMO","expanded_url":"http:\/\/osm.org\/go\/tcZ40--?m","display_url":"osm.org\/go\/tcZ40--?m","indices":[56,79]}],"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":677779563439517697,"id_str":"677779563439517697","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/677779563439517697\/pu\/img\/wshSQLzqLmDJGghO.jpg","url":"https:\/\/t.co\/usCWiH9AIt","display_url":"pic.twitter.com\/usCWiH9AIt","expanded_url":"http:\/\/twitter.com\/himawari8bot\/status\/677779618502467584\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":12500,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/240x240\/-w26uvOG_qlTvnGN.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/720x720\/HS8B_gNxLouhxnSz.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/pl\/Ta6dSrqbHm0GPjmD.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/677779563439517697\/pu\/vid\/480x480\/ScQKRZMPzhT-2mnh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}] \ No newline at end of file +[{"geo": null, "id": 693191602957852676, "possibly_sensitive": false, "id_str": "693191602957852676", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "photo", "display_url": "pic.twitter.com/3T3tr6d35v", "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "animated_gif", "display_url": "pic.twitter.com/3T3tr6d35v", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ62FwXXEAUQ5XO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:58:51 +0000 2016", "text": "2016-01-29T21:00:00 https://t.co/3T3tr6d35v"}, {"geo": null, "id": 693178508705730560, "possibly_sensitive": false, "id_str": "693178508705730560", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "photo", "display_url": "pic.twitter.com/mOYWmzmeQ6", "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/6TwmG--?m", "display_url": "osm.org/go/6TwmG--?m", "url": "https://t.co/eaWmlXzoJg", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "video", "display_url": "pic.twitter.com/mOYWmzmeQ6", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/720x720/EqwS2CD0YgNHAT70.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/240x240/xvuWcFkJ6EVcfFWM.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.mp4", "content_type": "video/mp4", "bitrate": 832000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:06:49 +0000 2016", "text": "Coordinates: (15.571961348728838, 143.8900334369081); https://t.co/eaWmlXzoJg https://t.co/mOYWmzmeQ6"}, {"geo": null, "id": 693161399770562561, "possibly_sensitive": false, "id_str": "693161399770562561", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693161398768156672, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693161398768156672", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png", "url": "https://t.co/JI9MnneU0A", "type": "photo", "display_url": "pic.twitter.com/JI9MnneU0A", "expanded_url": "http://twitter.com/himawari8bot/status/693161399770562561/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693161398768156672, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693161398768156672", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png", "url": "https://t.co/JI9MnneU0A", "type": "animated_gif", "display_url": "pic.twitter.com/JI9MnneU0A", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ6anqGWwAAEiGO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693161399770562561/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 19:58:50 +0000 2016", "text": "2016-01-29T19:00:00 https://t.co/JI9MnneU0A"}, {"geo": null, "id": 693133246075379713, "possibly_sensitive": false, "id_str": "693133246075379713", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693133231890264064, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693133231890264064", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg", "url": "https://t.co/LEgekKPwZJ", "type": "photo", "display_url": "pic.twitter.com/LEgekKPwZJ", "expanded_url": "http://twitter.com/himawari8bot/status/693133246075379713/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/p1CLk--?m", "display_url": "osm.org/go/p1CLk--?m", "url": "https://t.co/9GXu7VdoiT", "indices": [56, 79]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693133231890264064, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693133231890264064", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg", "url": "https://t.co/LEgekKPwZJ", "type": "video", "display_url": "pic.twitter.com/LEgekKPwZJ", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/240x240/SR-3qQ_a2vN9-cDE.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/720x720/QabcEFpHt_m7ek1L.mp4", "content_type": "video/mp4", "bitrate": 1280000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693133246075379713/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 18:06:58 +0000 2016", "text": "Coordinates: (-47.754020632282845, 113.51459718142179); https://t.co/9GXu7VdoiT https://t.co/LEgekKPwZJ"}, {"geo": null, "id": 693131199141797888, "possibly_sensitive": false, "id_str": "693131199141797888", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693131198764290049, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693131198764290049", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png", "url": "https://t.co/uBZUMJKFYI", "type": "photo", "display_url": "pic.twitter.com/uBZUMJKFYI", "expanded_url": "http://twitter.com/himawari8bot/status/693131199141797888/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693131198764290049, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693131198764290049", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png", "url": "https://t.co/uBZUMJKFYI", "type": "animated_gif", "display_url": "pic.twitter.com/uBZUMJKFYI", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ5_JyUWEAENyL3.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693131199141797888/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 17:58:50 +0000 2016", "text": "2016-01-29T17:00:00 https://t.co/uBZUMJKFYI"}, {"geo": null, "id": 693101007883112449, "possibly_sensitive": false, "id_str": "693101007883112449", "retweeted": false, "truncated": false, "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693101007266582529, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693101007266582529", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png", "url": "https://t.co/0c8rqxCHF1", "type": "photo", "display_url": "pic.twitter.com/0c8rqxCHF1", "expanded_url": "http://twitter.com/himawari8bot/status/693101007883112449/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693101007266582529, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693101007266582529", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png", "url": "https://t.co/0c8rqxCHF1", "type": "animated_gif", "display_url": "pic.twitter.com/0c8rqxCHF1", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ5jsaOXEAEEqfu.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693101007883112449/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 15:58:52 +0000 2016", "text": "2016-01-29T15:00:00 https://t.co/0c8rqxCHF1"}, {"geo": null, "id": 693089357155147776, "possibly_sensitive": false, "id_str": "693089357155147776", "retweeted": false, "truncated": false, "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693089340516335616, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693089340516335616", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg", "url": "https://t.co/GnYRtH78G5", "type": "photo", "display_url": "pic.twitter.com/GnYRtH78G5", "expanded_url": "http://twitter.com/himawari8bot/status/693089357155147776/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/RQUwg--?m", "display_url": "osm.org/go/RQUwg--?m", "url": "https://t.co/vdw6tffLWE", "indices": [56, 79]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693089340516335616, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693089340516335616", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg", "url": "https://t.co/GnYRtH78G5", "type": "video", "display_url": "pic.twitter.com/GnYRtH78G5", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/720x720/gn_aTvdtfOBVR4pE.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/240x240/w1ZnCmkTV5aZ8Nog.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.mp4", "content_type": "video/mp4", "bitrate": 832000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693089357155147776/video/1", "indices": [80, 103], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 15:12:34 +0000 2016", "text": "Coordinates: (36.038219371747736, -179.59752635358763); https://t.co/vdw6tffLWE https://t.co/GnYRtH78G5"}, {"geo": null, "id": 693070816901206016, "possibly_sensitive": false, "id_str": "693070816901206016", "retweeted": false, "truncated": false, "favorite_count": 2, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693070816284708868, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693070816284708868", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png", "url": "https://t.co/o0k7ZjEdy5", "type": "photo", "display_url": "pic.twitter.com/o0k7ZjEdy5", "expanded_url": "http://twitter.com/himawari8bot/status/693070816901206016/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693070816284708868, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693070816284708868", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png", "url": "https://t.co/o0k7ZjEdy5", "type": "animated_gif", "display_url": "pic.twitter.com/o0k7ZjEdy5", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ5IPEDXEAQZ0E6.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693070816901206016/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 2, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 13:58:54 +0000 2016", "text": "2016-01-29T13:00:00 https://t.co/o0k7ZjEdy5"}, {"geo": null, "id": 693046273516163072, "possibly_sensitive": false, "id_str": "693046273516163072", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693046238246256640, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693046238246256640", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg", "url": "https://t.co/CZfGlRA4ys", "type": "photo", "display_url": "pic.twitter.com/CZfGlRA4ys", "expanded_url": "http://twitter.com/himawari8bot/status/693046273516163072/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/8r924--?m", "display_url": "osm.org/go/8r924--?m", "url": "https://t.co/2Sgxzcl522", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693046238246256640, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693046238246256640", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg", "url": "https://t.co/CZfGlRA4ys", "type": "video", "display_url": "pic.twitter.com/CZfGlRA4ys", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/240x240/NYcjmZMiI4zSRxSK.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/720x720/4ItijaUTfxNNmtDF.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.m3u8", "content_type": "application/x-mpegURL"}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693046273516163072/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 12:21:22 +0000 2016", "text": "Coordinates: (50.559588880563034, 134.1051793146934); https://t.co/2Sgxzcl522 https://t.co/CZfGlRA4ys"}, {"geo": null, "id": 693040631288061952, "possibly_sensitive": false, "id_str": "693040631288061952", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693040630419820544, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693040630419820544", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png", "url": "https://t.co/ILbjLTRw49", "type": "photo", "display_url": "pic.twitter.com/ILbjLTRw49", "expanded_url": "http://twitter.com/himawari8bot/status/693040631288061952/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693040630419820544, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693040630419820544", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png", "url": "https://t.co/ILbjLTRw49", "type": "animated_gif", "display_url": "pic.twitter.com/ILbjLTRw49", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ4syA8WEAAfGPV.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693040631288061952/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 11:58:57 +0000 2016", "text": "2016-01-29T11:00:00 https://t.co/ILbjLTRw49"}, {"geo": null, "id": 693010429514268672, "possibly_sensitive": false, "id_str": "693010429514268672", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693010428520222720, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693010428520222720", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png", "url": "https://t.co/PSuSrm1WSb", "type": "photo", "display_url": "pic.twitter.com/PSuSrm1WSb", "expanded_url": "http://twitter.com/himawari8bot/status/693010429514268672/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693010428520222720, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693010428520222720", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png", "url": "https://t.co/PSuSrm1WSb", "type": "animated_gif", "display_url": "pic.twitter.com/PSuSrm1WSb", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ4RUCGW0AAR1ER.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693010429514268672/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 09:58:56 +0000 2016", "text": "2016-01-29T09:00:00 https://t.co/PSuSrm1WSb"}, {"geo": null, "id": 693006025121763328, "possibly_sensitive": false, "id_str": "693006025121763328", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693005994532667392, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693005994532667392", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg", "url": "https://t.co/lNfm936DMH", "type": "photo", "display_url": "pic.twitter.com/lNfm936DMH", "expanded_url": "http://twitter.com/himawari8bot/status/693006025121763328/video/1", "indices": [79, 102], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/ssEaH--?m", "display_url": "osm.org/go/ssEaH--?m", "url": "https://t.co/smfC99mO9b", "indices": [55, 78]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693005994532667392, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693005994532667392", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg", "url": "https://t.co/lNfm936DMH", "type": "video", "display_url": "pic.twitter.com/lNfm936DMH", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/240x240/Sx0UecW4xtWJ2GAM.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/720x720/p4J4fzRjFmnS6gLY.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.m3u8", "content_type": "application/x-mpegURL"}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693006025121763328/video/1", "indices": [79, 102], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 09:41:26 +0000 2016", "text": "Coordinates: (-38.47495767179647, 124.02898728887148); https://t.co/smfC99mO9b https://t.co/lNfm936DMH"}, {"geo": null, "id": 692980243339071488, "possibly_sensitive": false, "id_str": "692980243339071488", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692980241594187777, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692980241594187777", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "url": "https://t.co/h9UiOuuezl", "type": "photo", "display_url": "pic.twitter.com/h9UiOuuezl", "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692980241594187777, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692980241594187777", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "url": "https://t.co/h9UiOuuezl", "type": "animated_gif", "display_url": "pic.twitter.com/h9UiOuuezl", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ3127CWAAEKfCn.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 1, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 07:58:59 +0000 2016", "text": "2016-01-29T07:00:00 https://t.co/h9UiOuuezl"}, {"geo": null, "id": 692966575163490304, "possibly_sensitive": false, "id_str": "692966575163490304", "retweeted": false, "truncated": false, "favorite_count": 5, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692966551088144384, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692966551088144384", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "url": "https://t.co/Y5JC3FMIOf", "type": "photo", "display_url": "pic.twitter.com/Y5JC3FMIOf", "expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "indices": [77, 100], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/4GRtz--?m", "display_url": "osm.org/go/4GRtz--?m", "url": "https://t.co/yYjiKeXBWX", "indices": [53, 76]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692966551088144384, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692966551088144384", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "url": "https://t.co/Y5JC3FMIOf", "type": "video", "display_url": "pic.twitter.com/Y5JC3FMIOf", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/240x240/nV5hjslkH1_rF_d5.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/720x720/AG2v4zTRtEkL4V8U.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.mpd", "content_type": "application/dash+xml"}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "indices": [77, 100], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 2, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 07:04:40 +0000 2016", "text": "Coordinates: (7.546182427135968, 96.21339092216665); https://t.co/yYjiKeXBWX https://t.co/Y5JC3FMIOf"}, {"geo": null, "id": 692950032534867968, "possibly_sensitive": false, "id_str": "692950032534867968", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692950031654060032, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692950031654060032", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "url": "https://t.co/o1eyd9u1Eu", "type": "photo", "display_url": "pic.twitter.com/o1eyd9u1Eu", "expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692950031654060032, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692950031654060032", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "url": "https://t.co/o1eyd9u1Eu", "type": "animated_gif", "display_url": "pic.twitter.com/o1eyd9u1Eu", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ3aYePWAAA5oSh.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 05:58:56 +0000 2016", "text": "2016-01-29T05:00:00 https://t.co/o1eyd9u1Eu"}, {"geo": null, "id": 692922442763886592, "possibly_sensitive": false, "id_str": "692922442763886592", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692922396756578304, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692922396756578304", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "url": "https://t.co/GlvueMdKAv", "type": "photo", "display_url": "pic.twitter.com/GlvueMdKAv", "expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/6D4DZ--?m", "display_url": "osm.org/go/6D4DZ--?m", "url": "https://t.co/rSEV1FbfGP", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692922396756578304, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "692922396756578304", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "url": "https://t.co/GlvueMdKAv", "type": "video", "display_url": "pic.twitter.com/GlvueMdKAv", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.mp4", "content_type": "video/mp4", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/240x240/okMIUa5kJQogzPMc.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/720x720/0DPjv7vnuGkfnqVw.mp4", "content_type": "video/mp4", "bitrate": 1280000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 04:09:18 +0000 2016", "text": "Coordinates: (4.291394187534963, 144.95617725288201); https://t.co/rSEV1FbfGP https://t.co/GlvueMdKAv"}, {"geo": null, "id": 692919830324854786, "possibly_sensitive": false, "id_str": "692919830324854786", "retweeted": false, "truncated": false, "favorite_count": 1, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692919829540519937, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692919829540519937", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "url": "https://t.co/g2JiaZbtCk", "type": "photo", "display_url": "pic.twitter.com/g2JiaZbtCk", "expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692919829540519937, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692919829540519937", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "url": "https://t.co/g2JiaZbtCk", "type": "animated_gif", "display_url": "pic.twitter.com/g2JiaZbtCk", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ2-6emWQAE98l8.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 2, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 03:58:56 +0000 2016", "text": "2016-01-29T03:00:00 https://t.co/g2JiaZbtCk"}, {"geo": null, "id": 692889631524655104, "possibly_sensitive": false, "id_str": "692889631524655104", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692889631033937920, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692889631033937920", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "url": "https://t.co/u2pe4ssU0q", "type": "photo", "display_url": "pic.twitter.com/u2pe4ssU0q", "expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692889631033937920, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692889631033937920", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "url": "https://t.co/u2pe4ssU0q", "type": "animated_gif", "display_url": "pic.twitter.com/u2pe4ssU0q", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ2jcsZUUAA5idO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 01:58:56 +0000 2016", "text": "2016-01-29T01:00:00 https://t.co/u2pe4ssU0q"}, {"geo": null, "id": 692859419193806849, "possibly_sensitive": false, "id_str": "692859419193806849", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692859418841460737, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692859418841460737", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "url": "https://t.co/IMEOTR6MxJ", "type": "photo", "display_url": "pic.twitter.com/IMEOTR6MxJ", "expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692859418841460737, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692859418841460737", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "url": "https://t.co/IMEOTR6MxJ", "type": "animated_gif", "display_url": "pic.twitter.com/IMEOTR6MxJ", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ2H-HNUMAEYGYM.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Thu Jan 28 23:58:52 +0000 2016", "text": "2016-01-28T23:00:00 https://t.co/IMEOTR6MxJ"}, {"geo": null, "id": 692829211019575296, "possibly_sensitive": false, "id_str": "692829211019575296", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 692829210705002498, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692829210705002498", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png", "url": "https://t.co/WnLnPl8iuZ", "type": "photo", "display_url": "pic.twitter.com/WnLnPl8iuZ", "expanded_url": "http://twitter.com/himawari8bot/status/692829211019575296/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 692829210705002498, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "692829210705002498", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png", "url": "https://t.co/WnLnPl8iuZ", "type": "animated_gif", "display_url": "pic.twitter.com/WnLnPl8iuZ", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ1sfxIWAAIimRw.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/692829211019575296/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ1sfxIWAAIimRw.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Thu Jan 28 21:58:50 +0000 2016", "text": "2016-01-28T21:00:00 https://t.co/WnLnPl8iuZ"}] \ No newline at end of file diff --git a/testdata/get_list_timeline_count.json b/testdata/get_list_timeline_count.json new file mode 100644 index 00000000..6cd1a16a --- /dev/null +++ b/testdata/get_list_timeline_count.json @@ -0,0 +1 @@ +[{"geo": null, "id": 693191602957852676, "possibly_sensitive": false, "id_str": "693191602957852676", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "photo", "display_url": "pic.twitter.com/3T3tr6d35v", "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}], "symbols": [], "urls": []}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693191602660118533, "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "small": {"w": 340, "resize": "fit", "h": 346}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "large": {"w": 450, "resize": "fit", "h": 458}}, "id_str": "693191602660118533", "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "url": "https://t.co/3T3tr6d35v", "type": "animated_gif", "display_url": "pic.twitter.com/3T3tr6d35v", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CZ62FwXXEAUQ5XO.mp4", "content_type": "video/mp4", "bitrate": 0}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "indices": [20, 43], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}]}, "lang": "und", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:58:51 +0000 2016", "text": "2016-01-29T21:00:00 https://t.co/3T3tr6d35v"}, {"geo": null, "id": 693178508705730560, "possibly_sensitive": false, "id_str": "693178508705730560", "retweeted": false, "truncated": false, "favorite_count": 0, "contributors": null, "entities": {"user_mentions": [], "hashtags": [], "media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "photo", "display_url": "pic.twitter.com/mOYWmzmeQ6", "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}], "symbols": [], "urls": [{"expanded_url": "http://osm.org/go/6TwmG--?m", "display_url": "osm.org/go/6TwmG--?m", "url": "https://t.co/eaWmlXzoJg", "indices": [54, 77]}]}, "user": {"is_translator": false, "location": "Space", "id": 4040207472, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4040207472", "utc_offset": -18000, "name": "himawari8bot", "is_translation_enabled": false, "default_profile_image": false, "profile_background_color": "000000", "profile_text_color": "000000", "default_profile": false, "entities": {"description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi", "indices": [59, 82]}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8", "indices": [94, 117]}]}, "url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg", "indices": [0, 23]}]}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "contributors_enabled": false, "followers_count": 406, "time_zone": "Eastern Time (US & Canada)", "protected": false, "friends_count": 2, "screen_name": "himawari8bot", "profile_sidebar_fill_color": "000000", "profile_sidebar_border_color": "000000", "geo_enabled": false, "url": "https://t.co/uYVLL8E5Qg", "listed_count": 30, "notifications": false, "profile_link_color": "000000", "profile_use_background_image": false, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "favourites_count": 0, "statuses_count": 1608, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_background_tile": false, "lang": "en", "has_extended_profile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "follow_request_sent": false, "following": false}, "extended_entities": {"media": [{"id": 693178495795609600, "sizes": {"large": {"w": 720, "resize": "fit", "h": 720}, "medium": {"w": 600, "resize": "fit", "h": 600}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "id_str": "693178495795609600", "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "url": "https://t.co/mOYWmzmeQ6", "type": "video", "display_url": "pic.twitter.com/mOYWmzmeQ6", "video_info": {"duration_millis": 12500, "aspect_ratio": [1, 1], "variants": [{"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.webm", "content_type": "video/webm", "bitrate": 832000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.mpd", "content_type": "application/dash+xml"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/720x720/EqwS2CD0YgNHAT70.mp4", "content_type": "video/mp4", "bitrate": 1280000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.m3u8", "content_type": "application/x-mpegURL"}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/240x240/xvuWcFkJ6EVcfFWM.mp4", "content_type": "video/mp4", "bitrate": 320000}, {"url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.mp4", "content_type": "video/mp4", "bitrate": 832000}]}, "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "indices": [78, 101], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}]}, "lang": "en", "favorited": false, "in_reply_to_user_id": null, "in_reply_to_screen_name": null, "place": null, "source": "space, jerks.", "is_quote_status": false, "retweet_count": 0, "in_reply_to_user_id_str": null, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "coordinates": null, "created_at": "Fri Jan 29 21:06:49 +0000 2016", "text": "Coordinates: (15.571961348728838, 143.8900334369081); https://t.co/eaWmlXzoJg https://t.co/mOYWmzmeQ6"}] \ No newline at end of file diff --git a/testdata/get_list_timeline_count_rts_ent.json b/testdata/get_list_timeline_count_rts_ent.json new file mode 100644 index 00000000..83e8544d --- /dev/null +++ b/testdata/get_list_timeline_count_rts_ent.json @@ -0,0 +1 @@ +[{"is_quote_status": false, "text": "2016-01-29T21:00:00 https://t.co/3T3tr6d35v", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693191602957852676", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ62FwXXEAUQ5XO.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693191602957852676/photo/1", "id": 693191602660118533, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png", "id_str": "693191602660118533", "url": "https://t.co/3T3tr6d35v", "display_url": "pic.twitter.com/3T3tr6d35v", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ62FwXXEAUQ5XO.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 21:58:51 +0000 2016", "id": 693191602957852676, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (15.571961348728838, 143.8900334369081); https://t.co/eaWmlXzoJg https://t.co/mOYWmzmeQ6", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693178508705730560", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.webm"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.mpd"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/720x720/EqwS2CD0YgNHAT70.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/pl/zFnQuF7O2MIr5XD0.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/240x240/xvuWcFkJ6EVcfFWM.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693178495795609600/pu/vid/480x480/iEjoH5zZn8W--TLc.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693178508705730560/video/1", "id": 693178495795609600, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg", "id_str": "693178495795609600", "url": "https://t.co/mOYWmzmeQ6", "display_url": "pic.twitter.com/mOYWmzmeQ6", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693178495795609600/pu/img/7RCKrFNEpqbSqa0K.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 21:06:49 +0000 2016", "id": 693178508705730560, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T19:00:00 https://t.co/JI9MnneU0A", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693161399770562561", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ6anqGWwAAEiGO.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693161399770562561/photo/1", "id": 693161398768156672, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png", "id_str": "693161398768156672", "url": "https://t.co/JI9MnneU0A", "display_url": "pic.twitter.com/JI9MnneU0A", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ6anqGWwAAEiGO.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 19:58:50 +0000 2016", "id": 693161399770562561, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (-47.754020632282845, 113.51459718142179); https://t.co/9GXu7VdoiT https://t.co/LEgekKPwZJ", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693133246075379713", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.webm"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.m3u8"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/pl/1zI53ed8iSjn-Y6w.mpd"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/480x480/4BOvLtg5DwFj_rao.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/240x240/SR-3qQ_a2vN9-cDE.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693133231890264064/pu/vid/720x720/QabcEFpHt_m7ek1L.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693133246075379713/video/1", "id": 693133231890264064, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg", "id_str": "693133231890264064", "url": "https://t.co/LEgekKPwZJ", "display_url": "pic.twitter.com/LEgekKPwZJ", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [80, 103], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693133231890264064/pu/img/bsOAt7gkqaMlGxI8.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 18:06:58 +0000 2016", "id": 693133246075379713, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T17:00:00 https://t.co/uBZUMJKFYI", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693131199141797888", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ5_JyUWEAENyL3.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693131199141797888/photo/1", "id": 693131198764290049, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png", "id_str": "693131198764290049", "url": "https://t.co/uBZUMJKFYI", "display_url": "pic.twitter.com/uBZUMJKFYI", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5_JyUWEAENyL3.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 17:58:50 +0000 2016", "id": 693131199141797888, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T15:00:00 https://t.co/0c8rqxCHF1", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693101007883112449", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ5jsaOXEAEEqfu.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693101007883112449/photo/1", "id": 693101007266582529, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png", "id_str": "693101007266582529", "url": "https://t.co/0c8rqxCHF1", "display_url": "pic.twitter.com/0c8rqxCHF1", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5jsaOXEAEEqfu.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 15:58:52 +0000 2016", "id": 693101007883112449, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (36.038219371747736, -179.59752635358763); https://t.co/vdw6tffLWE https://t.co/GnYRtH78G5", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693089357155147776", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.webm"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.mpd"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/720x720/gn_aTvdtfOBVR4pE.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/pl/-BiKbUsjmPXH24AR.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/240x240/w1ZnCmkTV5aZ8Nog.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693089340516335616/pu/vid/480x480/wyOOTfXOsaBU0Qo0.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693089357155147776/video/1", "id": 693089340516335616, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg", "id_str": "693089340516335616", "url": "https://t.co/GnYRtH78G5", "display_url": "pic.twitter.com/GnYRtH78G5", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [80, 103], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693089340516335616/pu/img/ynH3g9E7IPnXXZaq.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 15:12:34 +0000 2016", "id": 693089357155147776, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T13:00:00 https://t.co/o0k7ZjEdy5", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693070816901206016", "retweet_count": 2, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ5IPEDXEAQZ0E6.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693070816901206016/photo/1", "id": 693070816284708868, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png", "id_str": "693070816284708868", "url": "https://t.co/o0k7ZjEdy5", "display_url": "pic.twitter.com/o0k7ZjEdy5", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ5IPEDXEAQZ0E6.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 13:58:54 +0000 2016", "id": 693070816901206016, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (50.559588880563034, 134.1051793146934); https://t.co/2Sgxzcl522 https://t.co/CZfGlRA4ys", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693046273516163072", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.mp4"}, {"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/480x480/1dC4FBT1VkQFIoCh.webm"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/240x240/NYcjmZMiI4zSRxSK.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/vid/720x720/4ItijaUTfxNNmtDF.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693046238246256640/pu/pl/NKmafHJK-62mu3zC.m3u8"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693046273516163072/video/1", "id": 693046238246256640, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg", "id_str": "693046238246256640", "url": "https://t.co/CZfGlRA4ys", "display_url": "pic.twitter.com/CZfGlRA4ys", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693046238246256640/pu/img/_AYw0cZxoeZziBf6.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 12:21:22 +0000 2016", "id": 693046273516163072, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T11:00:00 https://t.co/ILbjLTRw49", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693040631288061952", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ4syA8WEAAfGPV.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693040631288061952/photo/1", "id": 693040630419820544, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png", "id_str": "693040630419820544", "url": "https://t.co/ILbjLTRw49", "display_url": "pic.twitter.com/ILbjLTRw49", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4syA8WEAAfGPV.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 11:58:57 +0000 2016", "id": 693040631288061952, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T09:00:00 https://t.co/PSuSrm1WSb", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693010429514268672", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ4RUCGW0AAR1ER.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/693010429514268672/photo/1", "id": 693010428520222720, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png", "id_str": "693010428520222720", "url": "https://t.co/PSuSrm1WSb", "display_url": "pic.twitter.com/PSuSrm1WSb", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ4RUCGW0AAR1ER.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 09:58:56 +0000 2016", "id": 693010429514268672, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (-38.47495767179647, 124.02898728887148); https://t.co/smfC99mO9b https://t.co/lNfm936DMH", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "693006025121763328", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.webm"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/480x480/R-imikC2exTTybcw.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/240x240/Sx0UecW4xtWJ2GAM.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/vid/720x720/p4J4fzRjFmnS6gLY.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693005994532667392/pu/pl/5YreK15nH4K36_CS.m3u8"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/693006025121763328/video/1", "id": 693005994532667392, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg", "id_str": "693005994532667392", "url": "https://t.co/lNfm936DMH", "display_url": "pic.twitter.com/lNfm936DMH", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [79, 102], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693005994532667392/pu/img/p84SVim8NYq2BC_3.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 09:41:26 +0000 2016", "id": 693006025121763328, "lang": "en", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T07:00:00 https://t.co/h9UiOuuezl", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692980243339071488", "retweet_count": 1, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ3127CWAAEKfCn.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "id": 692980241594187777, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "id_str": "692980241594187777", "url": "https://t.co/h9UiOuuezl", "display_url": "pic.twitter.com/h9UiOuuezl", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 07:58:59 +0000 2016", "id": 692980243339071488, "lang": "und", "in_reply_to_user_id": null, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}] \ No newline at end of file diff --git a/testdata/get_list_timeline_max_since.json b/testdata/get_list_timeline_max_since.json new file mode 100644 index 00000000..87ddfe11 --- /dev/null +++ b/testdata/get_list_timeline_max_since.json @@ -0,0 +1 @@ +[{"is_quote_status": false, "text": "2016-01-29T07:00:00 https://t.co/h9UiOuuezl", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692980243339071488", "retweet_count": 1, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ3127CWAAEKfCn.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "id": 692980241594187777, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "id_str": "692980241594187777", "url": "https://t.co/h9UiOuuezl", "display_url": "pic.twitter.com/h9UiOuuezl", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 07:58:59 +0000 2016", "id": 692980243339071488, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692980243339071488/photo/1", "id": 692980241594187777, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png", "id_str": "692980241594187777", "url": "https://t.co/h9UiOuuezl", "display_url": "pic.twitter.com/h9UiOuuezl", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3127CWAAEKfCn.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (7.546182427135968, 96.21339092216665); https://t.co/yYjiKeXBWX https://t.co/Y5JC3FMIOf", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692966575163490304", "retweet_count": 2, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.webm"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/480x480/uXvgmtkgsXMfCKQi.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/240x240/nV5hjslkH1_rF_d5.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/vid/720x720/AG2v4zTRtEkL4V8U.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/692966551088144384/pu/pl/N2kfRXQ64li7f0R_.mpd"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "id": 692966551088144384, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "id_str": "692966551088144384", "url": "https://t.co/Y5JC3FMIOf", "display_url": "pic.twitter.com/Y5JC3FMIOf", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [77, 100], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 07:04:40 +0000 2016", "id": 692966575163490304, "lang": "en", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692966575163490304/video/1", "id": 692966551088144384, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg", "id_str": "692966551088144384", "url": "https://t.co/Y5JC3FMIOf", "display_url": "pic.twitter.com/Y5JC3FMIOf", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [77, 100], "type": "photo", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692966551088144384/pu/img/LKmHtMibk6a77uEv.jpg"}], "hashtags": [], "urls": [{"indices": [53, 76], "expanded_url": "http://osm.org/go/4GRtz--?m", "display_url": "osm.org/go/4GRtz--?m", "url": "https://t.co/yYjiKeXBWX"}]}, "place": null, "possibly_sensitive": false, "favorite_count": 5, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T05:00:00 https://t.co/o1eyd9u1Eu", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692950032534867968", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ3aYePWAAA5oSh.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "id": 692950031654060032, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "id_str": "692950031654060032", "url": "https://t.co/o1eyd9u1Eu", "display_url": "pic.twitter.com/o1eyd9u1Eu", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 05:58:56 +0000 2016", "id": 692950032534867968, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692950032534867968/photo/1", "id": 692950031654060032, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png", "id_str": "692950031654060032", "url": "https://t.co/o1eyd9u1Eu", "display_url": "pic.twitter.com/o1eyd9u1Eu", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ3aYePWAAA5oSh.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "Coordinates: (4.291394187534963, 144.95617725288201); https://t.co/rSEV1FbfGP https://t.co/GlvueMdKAv", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692922442763886592", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.mp4"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.mpd"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/pl/C4RZBUJusY82o5Fh.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/240x240/okMIUa5kJQogzPMc.mp4"}, {"bitrate": 832000, "content_type": "video/webm", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/480x480/UxabGycqNLWYOKkb.webm"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/692922396756578304/pu/vid/720x720/0DPjv7vnuGkfnqVw.mp4"}], "aspect_ratio": [1, 1], "duration_millis": 12500}, "expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "id": 692922396756578304, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "id_str": "692922396756578304", "url": "https://t.co/GlvueMdKAv", "display_url": "pic.twitter.com/GlvueMdKAv", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "video", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 04:09:18 +0000 2016", "id": 692922442763886592, "lang": "en", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692922442763886592/video/1", "id": 692922396756578304, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg", "id_str": "692922396756578304", "url": "https://t.co/GlvueMdKAv", "display_url": "pic.twitter.com/GlvueMdKAv", "sizes": {"medium": {"w": 600, "resize": "fit", "h": 600}, "large": {"w": 720, "resize": "fit", "h": 720}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 340}}, "indices": [78, 101], "type": "photo", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692922396756578304/pu/img/VtKBUietP2y1NkFb.jpg"}], "hashtags": [], "urls": [{"indices": [54, 77], "expanded_url": "http://osm.org/go/6D4DZ--?m", "display_url": "osm.org/go/6D4DZ--?m", "url": "https://t.co/rSEV1FbfGP"}]}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T03:00:00 https://t.co/g2JiaZbtCk", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692919830324854786", "retweet_count": 2, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ2-6emWQAE98l8.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "id": 692919829540519937, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "id_str": "692919829540519937", "url": "https://t.co/g2JiaZbtCk", "display_url": "pic.twitter.com/g2JiaZbtCk", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 03:58:56 +0000 2016", "id": 692919830324854786, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692919830324854786/photo/1", "id": 692919829540519937, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png", "id_str": "692919829540519937", "url": "https://t.co/g2JiaZbtCk", "display_url": "pic.twitter.com/g2JiaZbtCk", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2-6emWQAE98l8.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-29T01:00:00 https://t.co/u2pe4ssU0q", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692889631524655104", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ2jcsZUUAA5idO.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "id": 692889631033937920, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "id_str": "692889631033937920", "url": "https://t.co/u2pe4ssU0q", "display_url": "pic.twitter.com/u2pe4ssU0q", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}]}, "in_reply_to_status_id": null, "created_at": "Fri Jan 29 01:58:56 +0000 2016", "id": 692889631524655104, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692889631524655104/photo/1", "id": 692889631033937920, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png", "id_str": "692889631033937920", "url": "https://t.co/u2pe4ssU0q", "display_url": "pic.twitter.com/u2pe4ssU0q", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2jcsZUUAA5idO.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}, {"is_quote_status": false, "text": "2016-01-28T23:00:00 https://t.co/IMEOTR6MxJ", "coordinates": null, "source": "space, jerks.", "retweeted": false, "favorited": false, "id_str": "692859419193806849", "retweet_count": 0, "geo": null, "extended_entities": {"media": [{"video_info": {"variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://pbs.twimg.com/tweet_video/CZ2H-HNUMAEYGYM.mp4"}], "aspect_ratio": [225, 229]}, "expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "id": 692859418841460737, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "id_str": "692859418841460737", "url": "https://t.co/IMEOTR6MxJ", "display_url": "pic.twitter.com/IMEOTR6MxJ", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "animated_gif", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}]}, "in_reply_to_status_id": null, "created_at": "Thu Jan 28 23:58:52 +0000 2016", "id": 692859419193806849, "lang": "und", "in_reply_to_user_id": null, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/himawari8bot/status/692859419193806849/photo/1", "id": 692859418841460737, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png", "id_str": "692859418841460737", "url": "https://t.co/IMEOTR6MxJ", "display_url": "pic.twitter.com/IMEOTR6MxJ", "sizes": {"medium": {"w": 450, "resize": "fit", "h": 458}, "large": {"w": 450, "resize": "fit", "h": 458}, "thumb": {"w": 150, "resize": "crop", "h": 150}, "small": {"w": 340, "resize": "fit", "h": 346}}, "indices": [20, 43], "type": "photo", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ2H-HNUMAEYGYM.png"}], "hashtags": [], "urls": []}, "place": null, "possibly_sensitive": false, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id_str": null, "contributors": null, "user": {"id": 4040207472, "screen_name": "himawari8bot", "followers_count": 406, "contributors_enabled": false, "location": "Space", "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "time_zone": "Eastern Time (US & Canada)", "default_profile_image": false, "verified": false, "listed_count": 30, "profile_background_tile": false, "id_str": "4040207472", "notifications": false, "profile_link_color": "000000", "profile_background_color": "000000", "statuses_count": 1608, "utc_offset": -18000, "entities": {"description": {"urls": [{"indices": [59, 82], "expanded_url": "http://www.jma.go.jp/en/gms/", "display_url": "jma.go.jp/en/gms/", "url": "https://t.co/lzPXaTnMCi"}, {"indices": [94, 117], "expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026", "url": "https://t.co/YksnDoJEl8"}]}, "url": {"urls": [{"indices": [0, 23], "expanded_url": "https://github.com/jeremylow/himawari_bot", "display_url": "github.com/jeremylow/hima\u2026", "url": "https://t.co/uYVLL8E5Qg"}]}}, "name": "himawari8bot", "has_extended_profile": false, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "profile_use_background_image": false, "friends_count": 2, "lang": "en", "url": "https://t.co/uYVLL8E5Qg", "profile_sidebar_fill_color": "000000", "favourites_count": 0, "profile_text_color": "000000", "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "geo_enabled": false, "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "protected": false, "following": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "default_profile": false, "is_translator": false, "follow_request_sent": false, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png"}, "in_reply_to_screen_name": null, "truncated": false}] \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 0f6d9014..3a619d7a 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -987,3 +987,58 @@ def testGetListMembers(self): resp = self.api.GetListMembers(list_id=189643778) self.assertTrue(type(resp[0]) is twitter.User) self.assertEqual(resp[0].id, 4040207472) + + @responses.activate + def testGetListTimeline(self): + with open('testdata/get_list_timeline.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/statuses.json?&list_id=229581524', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListTimeline(list_id=229581524) + self.assertTrue(type(resp[0]) is twitter.Status) + + with open('testdata/get_list_timeline_max_since.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/statuses.json?since_id=692829211019575296&owner_screen_name=notinourselves&slug=test&max_id=692980243339071488', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListTimeline(slug='test', + owner_screen_name='notinourselves', + max_id=692980243339071488, + since_id=692829211019575296) + self.assertTrue([isinstance(s, twitter.Status) for s in resp]) + self.assertEqual(len(resp), 7) + self.assertTrue([s.id >= 692829211019575296 for s in resp]) + self.assertTrue([s.id <= 692980243339071488 for s in resp]) + + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetListTimeline(slug='test')) + self.assertRaises( + twitter.TwitterError, + lambda: self.api.GetListTimeline()) + + # 4012966701 + with open('testdata/get_list_timeline_count_rts_ent.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/statuses.json?count=13&slug=test&owner_id=4012966701&include_rts=False&include_entities=False', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListTimeline(slug='test', + owner_id=4012966701, + count=13, + include_entities=False, + include_rts=False) + self.assertEqual(len(resp), 13) + # TODO: test the other exclusions, but my bots don't retweet and + # twitter.status.Status doesn't include entities node? From 2d51d13c21f3da9db16e0f1b0c2252b3d4fe4edf Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:18:41 -0500 Subject: [PATCH 150/533] adds docs for GetListMembersPages & changes re GetListMembers --- doc/migration_v30.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index 9d33ac0e..7ef90359 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -31,6 +31,11 @@ Changes to Existing Methods * The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. * The kwarg ``include_user_entities`` now defaults to ``True``. This was set to ``False`` previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit. +:py:func:`twitter.api.Api.GetListMembers` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* No longer accepts ``cursor`` parameter. If you require granular control over the paging of the twitter.list.List members, please user twitter.api.Api.GetListMembersPaged instead. + + :py:func:`twitter.api.Api.GetSearch` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Adds ``raw_query`` method. See :ref:`raw_queries` for more information. @@ -73,6 +78,13 @@ New Methods +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Allows you to page through the currently authenticated user's blocked users. Method returns three values: the next cursor, the previous cursor, and a list of ``twitter.User`` instances representing the blocked users. +:py:func:`twitter.api.Api.GetListMembersPaged` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Allows you to page through a the members of a given twitter.list.List. +* ``cursor`` parameter operates as with other methods, denoting the page of members that you wish to retrieve. +* Returns ``next_cursor``, ``previous_cursor``, and a list containing the users that are members of the given twitter.list.List. + + :py:func:`twitter.api.Api.GetListsPaged` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Much like :py:func:`twitter.api.Api.GetFriendsPaged` and similar methods, this allows you to retrieve an arbitrary page of :py:mod:`twitter.list.List` for either the currently authenticated user or a user specified by ``user_id`` or ``screen_name``. From 244647ac51fd8adca5f5424c5ce61b59f604f708 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:19:00 -0500 Subject: [PATCH 151/533] adds tests for CreateList --- tests/test_api_30.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 3a619d7a..c34e6d1c 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1042,3 +1042,21 @@ def testGetListTimeline(self): self.assertEqual(len(resp), 13) # TODO: test the other exclusions, but my bots don't retweet and # twitter.status.Status doesn't include entities node? + + @responses.activate + def testCreateList(self): + with open('testdata/create_list.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/create.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.CreateList( + name='test2', + mode='private', + description='test for python-twitter') + self.assertEqual(resp.id, 233452137) + self.assertEqual(resp.description, 'test for python-twitter') + self.assertEqual(resp.mode, 'private') From 133e31a01d3ad6a8cdaf3c58a948927fbe2d7969 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:19:44 -0500 Subject: [PATCH 152/533] adds GetListMembersPaged method --- twitter/api.py | 107 +++++++++++++++++++++++++++++++++++++------------ 1 file changed, 82 insertions(+), 25 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 3aca7bd2..a51f76fe 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2990,6 +2990,7 @@ def CreateList(self, name, mode=None, description=None): return List.NewFromJsonDict(data) + # TODO: test. def DestroyList(self, owner_screen_name=False, owner_id=False, @@ -3042,6 +3043,7 @@ def DestroyList(self, return List.NewFromJsonDict(data) + # TODO: test. def CreateSubscription(self, owner_screen_name=False, owner_id=False, @@ -3092,6 +3094,7 @@ def CreateSubscription(self, return User.NewFromJsonDict(data) + # TODO: test. def DestroySubscription(self, owner_screen_name=False, owner_id=False, @@ -3143,6 +3146,7 @@ def DestroySubscription(self, return List.NewFromJsonDict(data) + # TODO: test. def ShowSubscription(self, owner_screen_name=False, owner_id=False, @@ -3222,6 +3226,7 @@ def ShowSubscription(self, return User.NewFromJsonDict(data) + # TODO: test. def GetSubscriptions(self, user_id=None, screen_name=None, @@ -3277,6 +3282,7 @@ def GetSubscriptions(self, return [List.NewFromJsonDict(x) for x in data['lists']] + # TODO: test. def GetMemberships(self, user_id=None, screen_name=None, @@ -3333,6 +3339,7 @@ def GetMemberships(self, return [List.NewFromJsonDict(x) for x in data['lists']] + # TODO: test. def GetListsList(self, screen_name=None, user_id=None, @@ -3460,15 +3467,15 @@ def GetListTimeline(self, return [Status.NewFromJsonDict(x) for x in data] - # TODO: Paging? - def GetListMembers(self, - list_id=None, - slug=None, - owner_id=None, - owner_screen_name=None, - cursor=-1, - skip_status=False, - include_entities=False): + # TODO: test. + def GetListMembersPaged(self, + list_id=None, + slug=None, + owner_id=None, + owner_screen_name=None, + cursor=-1, + skip_status=False, + include_entities=False): """Fetch the sequence of twitter.User instances, one for each member of the given list_id or slug. @@ -3527,27 +3534,73 @@ def GetListMembers(self, if skip_status: parameters['skip_status'] = enf_type('skip_status', bool, skip_status) if include_entities: - parameters['include_entities'] = \ - enf_type('include_entities', bool, include_entities) - result = [] + parameters['include_entities'] = enf_type('include_entities', bool, include_entities) + + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + next_cursor = data.get('next_cursor', 0) + previous_cursor = data.get('previous_cursor', 0) + users = [User.NewFromJsonDict(user) for user in data.get('users', [])] + + return next_cursor, previous_cursor, users + # TODO: test. + def GetListMembers(self, + list_id=None, + slug=None, + owner_id=None, + owner_screen_name=None, + skip_status=False, + include_entities=False): + """Fetch the sequence of twitter.User instances, one for each member + of the given list_id or slug. + + Args: + list_id (int, optional): + Specifies the ID of the list to retrieve. + slug (str, optional): + The slug name for the list to retrieve. If you specify None for the + list_id, then you have to provide either a owner_screen_name or + owner_id. + owner_id (int, optional): + Specifies the ID of the user for whom to return the + list timeline. Helpful for disambiguating when a valid user ID + is also a valid screen name. + owner_screen_name (str, optional): + Specifies the screen name of the user for whom to return the + user_timeline. Helpful for disambiguating when a valid screen + name is also a user ID. + skip_status (bool, optional): + If True the statuses will not be returned in the user items. + include_entities (bool, optional): + If False, the timeline will not contain additional metadata. + Defaults to True. + + Returns: + list: A sequence of twitter.user.User instances, one for each + member of the twitter.list.List. + """ + cursor = -1 + result = [] while True: - parameters['cursor'] = cursor - resp = self._RequestUrl(url, 'GET', data=parameters) - data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - result += [User.NewFromJsonDict(x) for x in data['users']] - if 'next_cursor' in data: - if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: - break - else: - cursor = data['next_cursor'] - else: + next_cursor, previous_cursor, users = self.GetListMembersPaged( + list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name, + cursor=cursor, + skip_status=skip_status, + include_entities=include_entities) + result += users + + if next_cursor == 0 or next_cursor == previous_cursor: break - sec = self.GetSleepTime('/followers/list') - time.sleep(sec) + else: + cursor = next_cursor return result + # TODO: test. def CreateListsMember(self, list_id=None, slug=None, @@ -3605,7 +3658,8 @@ def CreateListsMember(self, if user_id: if isinstance(user_id, list) or isinstance(user_id, tuple): is_list = True - data['user_id'] = ','.join([enf_type('user_id', int, uid) for uid in user_id]) + uids = [str(enf_type('user_id', int, uid)) for uid in user_id] + data['user_id'] = ','.join(uids) else: data['user_id'] = enf_type('user_id', int, user_id) @@ -3625,6 +3679,7 @@ def CreateListsMember(self, return List.NewFromJsonDict(data) + # TODO: test. def DestroyListsMember(self, list_id=None, slug=None, @@ -3703,6 +3758,7 @@ def DestroyListsMember(self, return List.NewFromJsonDict(data) + # TODO: test. def GetListsPaged(self, user_id=None, screen_name=None, @@ -3752,6 +3808,7 @@ def GetListsPaged(self, return next_cursor, previous_cursor, lists + # TODO: test. def GetLists(self, user_id=None, screen_name=None): From d3dc36b9fa07941f4312ec3c3dbf7e019160c397 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:20:08 -0500 Subject: [PATCH 153/533] adds testdata for CreateList --- testdata/create_list.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 testdata/create_list.json diff --git a/testdata/create_list.json b/testdata/create_list.json new file mode 100644 index 00000000..0b281c9a --- /dev/null +++ b/testdata/create_list.json @@ -0,0 +1 @@ +{"name": "test2", "user": {"profile_sidebar_border_color": "C0DEED", "profile_text_color": "333333", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "default_profile": true, "favourites_count": 1, "time_zone": null, "created_at": "Wed Oct 21 23:53:04 +0000 2015", "url": null, "profile_background_color": "C0DEED", "profile_link_color": "0084B4", "lang": "en", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "verified": false, "profile_use_background_image": true, "utc_offset": null, "protected": true, "id": 4012966701, "id_str": "4012966701", "default_profile_image": true, "location": "", "name": "notinourselves", "geo_enabled": true, "entities": {"description": {"urls": []}}, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "statuses_count": 67, "has_extended_profile": false, "follow_request_sent": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "is_translator": false, "contributors_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "notifications": false, "friends_count": 1, "screen_name": "notinourselves", "is_translation_enabled": false, "followers_count": 1, "listed_count": 1, "following": false, "description": "", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false}, "uri": "/notinourselves/lists/test2", "id": 233452137, "created_at": "Sat Jan 30 01:08:47 +0000 2016", "description": "test for python-twitter", "slug": "test2", "mode": "private", "full_name": "@notinourselves/test2", "following": false, "member_count": 0, "id_str": "233452137", "subscriber_count": 0} \ No newline at end of file From c845c1b35145059dcf074d0ddb863a7eb8c4d4fb Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:34:18 -0500 Subject: [PATCH 154/533] adds tests for and updates DestroyList --- ...create_list.json => post_create_list.json} | 0 testdata/post_destroy_list.json | 1 + tests/test_api_30.py | 16 +++++++- twitter/api.py | 37 +++++++++---------- 4 files changed, 34 insertions(+), 20 deletions(-) rename testdata/{create_list.json => post_create_list.json} (100%) create mode 100644 testdata/post_destroy_list.json diff --git a/testdata/create_list.json b/testdata/post_create_list.json similarity index 100% rename from testdata/create_list.json rename to testdata/post_create_list.json diff --git a/testdata/post_destroy_list.json b/testdata/post_destroy_list.json new file mode 100644 index 00000000..6182f8df --- /dev/null +++ b/testdata/post_destroy_list.json @@ -0,0 +1 @@ +{"user": {"contributors_enabled": false, "protected": true, "profile_use_background_image": true, "profile_background_tile": false, "favourites_count": 1, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "created_at": "Wed Oct 21 23:53:04 +0000 2015", "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_link_color": "0084B4", "listed_count": 1, "friends_count": 1, "default_profile_image": true, "screen_name": "notinourselves", "entities": {"description": {"urls": []}}, "id": 4012966701, "lang": "en", "location": "", "statuses_count": 67, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "default_profile": true, "time_zone": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "4012966701", "geo_enabled": true, "followers_count": 1, "has_extended_profile": false, "description": "", "profile_sidebar_fill_color": "DDEEF6", "follow_request_sent": false, "is_translator": false, "verified": false, "name": "notinourselves", "following": false, "url": null, "notifications": false, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "utc_offset": null, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "333333", "profile_sidebar_border_color": "C0DEED"}, "member_count": 0, "id_str": "233452137", "slug": "test2", "created_at": "Sat Jan 30 01:08:47 +0000 2016", "uri": "/notinourselves/lists/test2", "description": "test for python-twitter", "full_name": "@notinourselves/test2", "name": "test2", "following": true, "subscriber_count": 0, "mode": "private", "id": 233452137} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index c34e6d1c..b07efdea 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1045,7 +1045,7 @@ def testGetListTimeline(self): @responses.activate def testCreateList(self): - with open('testdata/create_list.json') as f: + with open('testdata/post_create_list.json') as f: resp_data = f.read() responses.add( responses.POST, @@ -1060,3 +1060,17 @@ def testCreateList(self): self.assertEqual(resp.id, 233452137) self.assertEqual(resp.description, 'test for python-twitter') self.assertEqual(resp.mode, 'private') + + @responses.activate + def testDestroyList(self): + with open('testdata/post_destroy_list.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/destroy.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.DestroyList(list_id=233452137) + self.assertEqual(resp.id, 233452137) + self.assertEqual(resp.member_count, 0) diff --git a/twitter/api.py b/twitter/api.py index a51f76fe..f3124449 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2990,7 +2990,6 @@ def CreateList(self, name, mode=None, description=None): return List.NewFromJsonDict(data) - # TODO: test. def DestroyList(self, owner_screen_name=False, owner_id=False, @@ -3018,27 +3017,27 @@ def DestroyList(self, removed list. """ url = '%s/lists/destroy.json' % self.base_url - data = {} - if list_id: - try: - data['list_id'] = int(list_id) - except ValueError: - raise TwitterError({'message': "list_id must be an integer"}) - elif slug: - data['slug'] = slug - if owner_id: - try: - data['owner_id'] = int(owner_id) - except ValueError: - raise TwitterError({'message': "owner_id must be an integer"}) - elif owner_screen_name: - data['owner_screen_name'] = owner_screen_name + parameters = {} + if list_id is not None: + parameters['list_id'] = enf_type('list_id', int, list_id) + elif slug is not None: + parameters['slug'] = slug + if owner_id is not None: + parameters['owner_id'] = enf_type('owner_id', int, owner_id) + elif owner_screen_name is not None: + parameters['owner_screen_name'] = owner_screen_name else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + raise TwitterError({'message': ( + 'If specifying a list by slug, an owner_id or ' + 'owner_screen_name must also be given.') + }) else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + raise TwitterError({'message': ( + 'Either list_id or slug and one of owner_id and ' + 'owner_screen_name must be passed.') + }) - resp = self._RequestUrl(url, 'POST', data=data) + resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) From 0f81c137fa4389a41afdd7ae5b49fcf2cbf71934 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:50:41 -0500 Subject: [PATCH 155/533] adds function for IDing a List and updates all List-based functions with same --- twitter/api.py | 254 +++++++++++++++++-------------------------------- 1 file changed, 85 insertions(+), 169 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index f3124449..77c5891b 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2964,6 +2964,28 @@ def GetMentions(self, return [Status.NewFromJsonDict(x) for x in data] + @staticmethod + def _IDList(list_id, slug, owner_id, owner_screen_name): + parameters = {} + if list_id is not None: + parameters['list_id'] = enf_type('list_id', int, list_id) + elif slug is not None: + parameters['slug'] = slug + if owner_id is not None: + parameters['owner_id'] = enf_type('owner_id', int, owner_id) + elif owner_screen_name is not None: + parameters['owner_screen_name'] = owner_screen_name + else: + raise TwitterError({'message': ( + 'If specifying a list by slug, an owner_id or ' + 'owner_screen_name must also be given.')}) + else: + raise TwitterError({'message': ( + 'Either list_id or slug and one of owner_id and ' + 'owner_screen_name must be passed.')}) + + return parameters + def CreateList(self, name, mode=None, description=None): """Creates a new list with the give name for the authenticated user. @@ -3018,24 +3040,11 @@ def DestroyList(self, """ url = '%s/lists/destroy.json' % self.base_url parameters = {} - if list_id is not None: - parameters['list_id'] = enf_type('list_id', int, list_id) - elif slug is not None: - parameters['slug'] = slug - if owner_id is not None: - parameters['owner_id'] = enf_type('owner_id', int, owner_id) - elif owner_screen_name is not None: - parameters['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': ( - 'If specifying a list by slug, an owner_id or ' - 'owner_screen_name must also be given.') - }) - else: - raise TwitterError({'message': ( - 'Either list_id or slug and one of owner_id and ' - 'owner_screen_name must be passed.') - }) + + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) @@ -3067,28 +3076,15 @@ def CreateSubscription(self, Returns: twitter.user.User: A twitter.User instance representing the user subscribed """ - url = '%s/lists/subscribers/create.json' % (self.base_url) - data = {} - if list_id: - try: - data['list_id'] = int(list_id) - except ValueError: - raise TwitterError({'message': "list_id must be an integer"}) - elif slug: - data['slug'] = slug - if owner_id: - try: - data['owner_id'] = int(owner_id) - except ValueError: - raise TwitterError({'message': "owner_id must be an integer"}) - elif owner_screen_name: - data['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + url = '%s/lists/subscribers/create.json' % self.base_url + parameters = {} - resp = self._RequestUrl(url, 'POST', data=data) + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) + + resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -3120,27 +3116,14 @@ def DestroySubscription(self, the removed list. """ url = '%s/lists/subscribers/destroy.json' % (self.base_url) - data = {} - if list_id: - try: - data['list_id'] = int(list_id) - except ValueError: - raise TwitterError({'message': "list_id must be an integer"}) - elif slug: - data['slug'] = slug - if owner_id: - try: - data['owner_id'] = int(owner_id) - except ValueError: - raise TwitterError({'message': "owner_id must be an integer"}) - elif owner_screen_name: - data['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + parameters = {} - resp = self._RequestUrl(url, 'POST', data=data) + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) + + resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -3189,38 +3172,26 @@ def ShowSubscription(self, requested. """ url = '%s/lists/subscribers/show.json' % (self.base_url) - data = {} - if list_id: - try: - data['list_id'] = int(list_id) - except ValueError: - raise TwitterError({'message': "list_id must be an integer"}) - elif slug: - data['slug'] = slug - if owner_id: - try: - data['owner_id'] = int(owner_id) - except ValueError: - raise TwitterError({'message': "owner_id must be an integer"}) - elif owner_screen_name: - data['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) - else: - raise TwitterError({'message': "Identify list by list_id or owner_screen_name/owner_id and slug"}) + parameters = {} + + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) + if user_id: try: - data['user_id'] = int(user_id) + parameters['user_id'] = int(user_id) except ValueError: raise TwitterError({'message': "user_id must be an integer"}) elif screen_name: - data['screen_name'] = screen_name + parameters['screen_name'] = screen_name if skip_status: - data['skip_status'] = True + parameters['skip_status'] = True if include_entities: - data['include_entities'] = True + parameters['include_entities'] = True - resp = self._RequestUrl(url, 'GET', data=data) + resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return User.NewFromJsonDict(data) @@ -3428,27 +3399,13 @@ def GetListTimeline(self, list: A list of twitter.status.Status instances, one for each message up to count. """ - parameters = {} url = '%s/lists/statuses.json' % self.base_url + parameters = {} - if list_id is not None: - parameters['list_id'] = enf_type('list_id', int, list_id) - elif slug is not None: - parameters['slug'] = slug - if owner_id is not None: - parameters['owner_id'] = enf_type('owner_id', int, owner_id) - elif owner_screen_name is not None: - parameters['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': ( - 'If specifying a list by slug, an owner_id or ' - 'owner_screen_name must also be given.') - }) - else: - raise TwitterError({'message': ( - 'Either list_id or slug and one of owner_id and ' - 'owner_screen_name must be passed.') - }) + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) if since_id: parameters['since_id'] = enf_type('since_id', int, since_id) @@ -3506,27 +3463,13 @@ def GetListMembersPaged(self, list: A sequence of twitter.user.User instances, one for each member of the twitter.list.List. """ - parameters = {} url = '%s/lists/members.json' % self.base_url + parameters = {} - if list_id is not None: - parameters['list_id'] = enf_type('list_id', int, list_id) - elif slug is not None: - parameters['slug'] = slug - if owner_id is not None: - parameters['owner_id'] = enf_type('owner_id', int, owner_id) - elif owner_screen_name is not None: - parameters['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': ( - 'If specifying a list by slug, an owner_id or ' - 'owner_screen_name must also be given.') - }) - else: - raise TwitterError({'message': ( - 'Either list_id or slug and one of owner_id and ' - 'owner_screen_name must be passed.') - }) + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) if cursor: parameters['cursor'] = enf_type('cursor', int, cursor) @@ -3634,46 +3577,33 @@ def CreateListsMember(self, subscribed to. """ is_list = False - data = {} - if list_id: - data['list_id'] = enf_type('list_id', int, list_id) - elif slug: - data['slug'] = slug - if owner_id: - data['owner_id'] = enf_type('owner_id', int, owner_id) - elif owner_screen_name: - data['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': ( - 'If specifying a list by slug, an owner_id or ' - 'owner_screen_name must also be given.') - }) - else: - raise TwitterError({'message': ( - 'Either list_id or slug and one of owner_id and ' - 'owner_screen_name must be passed.') - }) + parameters = {} + + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) if user_id: if isinstance(user_id, list) or isinstance(user_id, tuple): is_list = True uids = [str(enf_type('user_id', int, uid)) for uid in user_id] - data['user_id'] = ','.join(uids) + parameters['user_id'] = ','.join(uids) else: - data['user_id'] = enf_type('user_id', int, user_id) + parameters['user_id'] = enf_type('user_id', int, user_id) elif screen_name: if isinstance(screen_name, list) or isinstance(screen_name, tuple): is_list = True - data['screen_name'] = ','.join(screen_name) + parameters['screen_name'] = ','.join(screen_name) else: - data['screen_name'] = screen_name + parameters['screen_name'] = screen_name if is_list: url = '%s/lists/members/create_all.json' % self.base_url else: url = '%s/lists/members/create.json' % self.base_url - resp = self._RequestUrl(url, 'POST', data=data) + resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) @@ -3712,47 +3642,33 @@ def DestroyListsMember(self, removed list. """ is_list = False - data = {} + parameters = {} - if list_id: - data['list_id'] = enf_type('list_id', list, list_id) - elif slug: - data['slug'] = slug - if owner_id: - data['owner_id'] = enf_type('owner_id', int, owner_id) - elif owner_screen_name: - data['owner_screen_name'] = owner_screen_name - else: - raise TwitterError({'message': ( - 'If specifying a list by slug, an owner_id or ' - 'owner_screen_name must also be given.') - }) - else: - raise TwitterError({'message': ( - 'Either list_id or slug and one of owner_id and ' - 'owner_screen_name must be passed.') - }) + parameters.update(self._IDList(list_id=list_id, + slug=slug, + owner_id=owner_id, + owner_screen_name=owner_screen_name)) if user_id: if isinstance(user_id, list) or isinstance(user_id, tuple): is_list = True uids = [str(enf_type('user_id', int, uid)) for uid in user_id] - data['user_id'] = ','.join(uids) + parameters['user_id'] = ','.join(uids) else: - data['user_id'] = int(user_id) + parameters['user_id'] = int(user_id) elif screen_name: if isinstance(screen_name, list) or isinstance(screen_name, tuple): is_list = True - data['screen_name'] = ','.join(screen_name) + parameters['screen_name'] = ','.join(screen_name) else: - data['screen_name'] = screen_name + parameters['screen_name'] = screen_name if is_list: url = '%s/lists/members/destroy_all.json' % self.base_url else: url = '%s/lists/members/destroy.json' % self.base_url - resp = self._RequestUrl(url, 'POST', data=data) + resp = self._RequestUrl(url, 'POST', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return List.NewFromJsonDict(data) From 7d8c92c717931813aed327c1395cf496c11a8461 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:54:39 -0500 Subject: [PATCH 156/533] adds tests for CreateSubscription --- testdata/post_create_subscription.json | 1 + tests/test_api_30.py | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 testdata/post_create_subscription.json diff --git a/testdata/post_create_subscription.json b/testdata/post_create_subscription.json new file mode 100644 index 00000000..fbdb1377 --- /dev/null +++ b/testdata/post_create_subscription.json @@ -0,0 +1 @@ +{"user": {"contributors_enabled": false, "protected": false, "profile_use_background_image": false, "profile_background_tile": false, "favourites_count": 1279, "created_at": "Sun Sep 11 23:49:28 +0000 2011", "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_link_color": "EE3355", "listed_count": 5, "friends_count": 306, "default_profile_image": false, "screen_name": "__jcbl__", "entities": {"description": {"urls": []}, "url": {"urls": [{"expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX", "indices": [0, 22], "display_url": "iseverythingstilltheworst.com"}]}}, "id": 372018022, "lang": "en", "location": "not a very good kingdom tbh", "statuses_count": 325, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "default_profile": false, "time_zone": "Eastern Time (US & Canada)", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "372018022", "geo_enabled": false, "followers_count": 49, "has_extended_profile": false, "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "follow_request_sent": false, "is_translator": false, "verified": false, "name": "jeremy", "following": true, "url": "http://t.co/wtg3XzqQTX", "notifications": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_border_color": "000000"}, "member_count": 3, "id_str": "225486809", "slug": "my-bots", "created_at": "Tue Nov 10 16:43:07 +0000 2015", "uri": "/__jcbl__/lists/my-bots", "description": "", "full_name": "@__jcbl__/my-bots", "name": "my-bots", "following": false, "subscriber_count": 1, "mode": "public", "id": 225486809} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index b07efdea..40d32298 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1074,3 +1074,17 @@ def testDestroyList(self): resp = self.api.DestroyList(list_id=233452137) self.assertEqual(resp.id, 233452137) self.assertEqual(resp.member_count, 0) + + @responses.activate + def testCreateSubscription(self): + with open('testdata/post_create_subscription.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/subscribers/create.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.CreateSubscription(list_id=225486809) + self.assertEqual(resp.id, 225486809) + self.assertEqual(resp.name, 'my-bots') From b638aa0d68271329cafb10d4cbb2ec99c5377748 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 29 Jan 2016 20:59:01 -0500 Subject: [PATCH 157/533] adds test for DestroySubscription --- testdata/post_destroy_subscription.json | 1 + tests/test_api_30.py | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 testdata/post_destroy_subscription.json diff --git a/testdata/post_destroy_subscription.json b/testdata/post_destroy_subscription.json new file mode 100644 index 00000000..99bb79a1 --- /dev/null +++ b/testdata/post_destroy_subscription.json @@ -0,0 +1 @@ +{"user": {"contributors_enabled": false, "protected": false, "profile_use_background_image": false, "profile_background_tile": false, "favourites_count": 1279, "created_at": "Sun Sep 11 23:49:28 +0000 2011", "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_link_color": "EE3355", "listed_count": 5, "friends_count": 306, "default_profile_image": false, "screen_name": "__jcbl__", "entities": {"description": {"urls": []}, "url": {"urls": [{"expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX", "indices": [0, 22], "display_url": "iseverythingstilltheworst.com"}]}}, "id": 372018022, "lang": "en", "location": "not a very good kingdom tbh", "statuses_count": 325, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "default_profile": false, "time_zone": "Eastern Time (US & Canada)", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "id_str": "372018022", "geo_enabled": false, "followers_count": 49, "has_extended_profile": false, "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "follow_request_sent": false, "is_translator": false, "verified": false, "name": "jeremy", "following": true, "url": "http://t.co/wtg3XzqQTX", "notifications": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "utc_offset": -18000, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_text_color": "000000", "profile_sidebar_border_color": "000000"}, "member_count": 3, "id_str": "225486809", "slug": "my-bots", "created_at": "Tue Nov 10 16:43:07 +0000 2015", "uri": "/__jcbl__/lists/my-bots", "description": "", "full_name": "@__jcbl__/my-bots", "name": "my-bots", "following": true, "subscriber_count": 0, "mode": "public", "id": 225486809} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 40d32298..dad24abf 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1088,3 +1088,17 @@ def testCreateSubscription(self): resp = self.api.CreateSubscription(list_id=225486809) self.assertEqual(resp.id, 225486809) self.assertEqual(resp.name, 'my-bots') + + @responses.activate + def testDestroySubscription(self): + with open('testdata/post_destroy_subscription.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/subscribers/destroy.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.DestroySubscription(list_id=225486809) + self.assertEqual(resp.id, 225486809) + self.assertEqual(resp.name, 'my-bots') From 5fe6d219ef4a249feee304a0751a4d75191388b1 Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Fri, 29 Jan 2016 23:41:17 -0500 Subject: [PATCH 158/533] make print examples in README python3-compatible --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index f5175f06..875df106 100644 --- a/README.rst +++ b/README.rst @@ -124,7 +124,7 @@ To create an instance of the ``twitter.Api`` with login credentials (Twitter now To see if your credentials are successful:: - >>> print api.VerifyCredentials() + >>> print(api.VerifyCredentials()) {"id": 16133, "location": "Philadelphia", "name": "bear"} **NOTE**: much more than the small sample given here will print @@ -132,17 +132,17 @@ To see if your credentials are successful:: To fetch a single user's public status messages, where ``user`` is a Twitter *short name*:: >>> statuses = api.GetUserTimeline(screen_name=user) - >>> print [s.text for s in statuses] + >>> print([s.text for s in statuses]) To fetch a list a user's friends (requires authentication):: >>> users = api.GetFriends() - >>> print [u.name for u in users] + >>> print([u.name for u in users]) To post a Twitter status message (requires authentication):: >>> status = api.PostUpdate('I love python-twitter!') - >>> print status.text + >>> print(status.text) I love python-twitter! There are many more API methods, to read the full API documentation:: From dca4ac82e80ab03596915e77603e221f2c0f05ea Mon Sep 17 00:00:00 2001 From: Andrew Konoff Date: Sat, 30 Jan 2016 00:09:19 -0800 Subject: [PATCH 159/533] Added multiple account lookups to LookupFriendship --- twitter/api.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 2e2cd23a..056e0559 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2728,14 +2728,12 @@ def DestroyFriendship(self, user_id=None, screen_name=None): def LookupFriendship(self, user_id=None, screen_name=None): """Lookup friendship status for user specified by user_id or screen_name. - - Currently only supports one user at a time. - + Args: user_id: - A user_id to lookup [Optional] + A user_id to lookup, or a comma-separated string of many user_ids [Optional] screen_name: - A screen_name to lookup [Optional] + A screen_name to lookup, or a comma-separated string of many screen_names [Optional] Returns: A twitter.UserStatus instance representing the friendship status @@ -2752,7 +2750,9 @@ def LookupFriendship(self, user_id=None, screen_name=None): resp = self._RequestUrl(url, 'GET', data=data) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - if len(data) >= 1: + if len(data) > 1: + return map(lambda datum: UserStatus.NewFromJsonDict(datum), data) + elif len(data) == 1: return UserStatus.NewFromJsonDict(data[0]) else: return None From fa6a14dedae8175f41a4726abbe0580bb7e6f2ca Mon Sep 17 00:00:00 2001 From: Andrew Konoff Date: Sat, 30 Jan 2016 00:19:47 -0800 Subject: [PATCH 160/533] Style changes --- twitter/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 056e0559..9b6e6f4f 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2751,9 +2751,9 @@ def LookupFriendship(self, user_id=None, screen_name=None): data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) if len(data) > 1: - return map(lambda datum: UserStatus.NewFromJsonDict(datum), data) + return [UserStatus.NewFromJsonDict(x) for x in data] elif len(data) == 1: - return UserStatus.NewFromJsonDict(data[0]) + return UserStatus.NewFromJsonDict(data[0]) else: return None From 90eace0d0bc7bca6642fec596e3a976ac3dc7b37 Mon Sep 17 00:00:00 2001 From: Andrew Konoff Date: Sat, 30 Jan 2016 01:13:04 -0800 Subject: [PATCH 161/533] Made LookupFriendship closer in style to UsersLookup --- twitter/api.py | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 9b6e6f4f..bd195ada 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2731,29 +2731,32 @@ def LookupFriendship(self, user_id=None, screen_name=None): Args: user_id: - A user_id to lookup, or a comma-separated string of many user_ids [Optional] + A list of user_ids to retrieve extended information. [Optional] screen_name: - A screen_name to lookup, or a comma-separated string of many screen_names [Optional] + A list of screen_names to retrieve extended information. [Optional] Returns: A twitter.UserStatus instance representing the friendship status """ + if not user_id and not screen_name: + raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) url = '%s/friendships/lookup.json' % (self.base_url) data = {} + uids = list() if user_id: - data['user_id'] = user_id - elif screen_name: - data['screen_name'] = screen_name - else: - raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) + uids.extend(user_id) + if len(uids): + data['user_id'] = ','.join(["%s" % u for u in uids]) + if screen_name: + data['screen_name'] = ','.join(screen_name) resp = self._RequestUrl(url, 'GET', data=data) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) if len(data) > 1: - return [UserStatus.NewFromJsonDict(x) for x in data] + return [UserStatus.NewFromJsonDict(x) for x in data] elif len(data) == 1: - return UserStatus.NewFromJsonDict(data[0]) + return UserStatus.NewFromJsonDict(data[0]) else: return None From 745af6ddb9801b5b1a28560aae5ba1c0a7f092bd Mon Sep 17 00:00:00 2001 From: Andrew Konoff Date: Sat, 30 Jan 2016 01:34:03 -0800 Subject: [PATCH 162/533] Added users parameter to LookupFriendship --- twitter/api.py | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index bd195ada..d882fac6 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2726,15 +2726,27 @@ def DestroyFriendship(self, user_id=None, screen_name=None): return User.NewFromJsonDict(data) - def LookupFriendship(self, user_id=None, screen_name=None): - """Lookup friendship status for user specified by user_id or screen_name. + def LookupFriendship(self, + user_id=None, + screen_name=None, + users=None): + """Lookup friendship status for user to authed user. + + Users may be specified either as lists of either user_ids, + screen_names, or twitter.User objects. The list of users that + are queried is the union of all specified parameters. + + Up to 100 users may be specified. Args: user_id: A list of user_ids to retrieve extended information. [Optional] screen_name: A list of screen_names to retrieve extended information. [Optional] - + users: + A list of twitter.User objects to retrieve extended information. + [Optional] + Returns: A twitter.UserStatus instance representing the friendship status """ @@ -2745,6 +2757,8 @@ def LookupFriendship(self, user_id=None, screen_name=None): uids = list() if user_id: uids.extend(user_id) + if users: + uids.extend([u.id for u in users]) if len(uids): data['user_id'] = ','.join(["%s" % u for u in uids]) if screen_name: From afc54908d78e9e904a701537bee0a5818f870e54 Mon Sep 17 00:00:00 2001 From: Andrew Konoff Date: Sat, 30 Jan 2016 01:36:24 -0800 Subject: [PATCH 163/533] Forgot to check for users parameter --- twitter/api.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index d882fac6..793af7d2 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2750,8 +2750,9 @@ def LookupFriendship(self, Returns: A twitter.UserStatus instance representing the friendship status """ - if not user_id and not screen_name: - raise TwitterError({'message': "Specify at least one of user_id or screen_name."}) + if not user_id and not screen_name and not users: + raise TwitterError({'message': "Specify at least one of user_id, screen_name, users."}) + url = '%s/friendships/lookup.json' % (self.base_url) data = {} uids = list() From 3515656e809fad7c1eeb68287dad51359a28c4e3 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 30 Jan 2016 07:30:41 -0500 Subject: [PATCH 164/533] adds tests and data for ShowSubscription --- testdata/get_show_subscription.json | 1 + .../get_show_subscription_extra_params.json | 1 + .../get_show_subscription_not_subscriber.json | 1 + tests/test_api_30.py | 48 +++++++++++++++++++ twitter/api.py | 11 +---- 5 files changed, 53 insertions(+), 9 deletions(-) create mode 100644 testdata/get_show_subscription.json create mode 100644 testdata/get_show_subscription_extra_params.json create mode 100644 testdata/get_show_subscription_not_subscriber.json diff --git a/testdata/get_show_subscription.json b/testdata/get_show_subscription.json new file mode 100644 index 00000000..0e044f95 --- /dev/null +++ b/testdata/get_show_subscription.json @@ -0,0 +1 @@ +{"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/wtg3XzqQTX", "statuses_count": 325, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 372018022, "default_profile_image": false, "contributors_enabled": false, "following": true, "profile_link_color": "EE3355", "followers_count": 49, "friends_count": 306, "location": "not a very good kingdom tbh", "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1279, "profile_background_color": "FFFFFF", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "jeremy", "id_str": "372018022", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iseverythingstilltheworst.com", "indices": [0, 22], "expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX"}]}}, "status": {"coordinates": null, "is_quote_status": true, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 692770919693979649, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "These are so good https://t.co/WIvl27xWGh", "quoted_status_id": 692612860636205056, "id_str": "692770919693979649", "entities": {"hashtags": [], "urls": [{"display_url": "twitter.com/NotAllBhas/sta\u2026", "indices": [18, 41], "expanded_url": "https://twitter.com/NotAllBhas/status/692769889560498180", "url": "https://t.co/WIvl27xWGh"}], "symbols": [], "user_mentions": []}, "source": "Talon (Plus)", "contributors": null, "favorited": false, "quoted_status_id_str": "692612860636205056", "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Thu Jan 28 18:07:12 +0000 2016"}, "is_translator": false, "screen_name": "__jcbl__", "created_at": "Sun Sep 11 23:49:28 +0000 2011"} \ No newline at end of file diff --git a/testdata/get_show_subscription_extra_params.json b/testdata/get_show_subscription_extra_params.json new file mode 100644 index 00000000..169af8b7 --- /dev/null +++ b/testdata/get_show_subscription_extra_params.json @@ -0,0 +1 @@ +{"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/wtg3XzqQTX", "statuses_count": 325, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 372018022, "default_profile_image": false, "contributors_enabled": false, "following": true, "profile_link_color": "EE3355", "followers_count": 49, "friends_count": 306, "location": "not a very good kingdom tbh", "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1279, "profile_background_color": "FFFFFF", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "jeremy", "id_str": "372018022", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iseverythingstilltheworst.com", "indices": [0, 22], "expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX"}]}}, "is_translator": false, "screen_name": "__jcbl__", "created_at": "Sun Sep 11 23:49:28 +0000 2011"} \ No newline at end of file diff --git a/testdata/get_show_subscription_not_subscriber.json b/testdata/get_show_subscription_not_subscriber.json new file mode 100644 index 00000000..056efa1e --- /dev/null +++ b/testdata/get_show_subscription_not_subscriber.json @@ -0,0 +1 @@ +{"errors": [{"message": "The specified user is not a subscriber of this list.", "code": 109}]} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index dad24abf..c306d6bc 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1102,3 +1102,51 @@ def testDestroySubscription(self): resp = self.api.DestroySubscription(list_id=225486809) self.assertEqual(resp.id, 225486809) self.assertEqual(resp.name, 'my-bots') + + @responses.activate + def testShowSubscription(self): + # User not a subscriber to the list. + with open('testdata/get_show_subscription_not_subscriber.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/subscribers/show.json?user_id=4040207472&list_id=189643778', + body=resp_data, + match_querystring=True, + status=200) + try: + self.api.ShowSubscription(list_id=189643778, user_id=4040207472) + except twitter.TwitterError as e: + self.assertIn( + "The specified user is not a subscriber of this list.", + str(e.message)) + + # User is a subscriber to list + with open('testdata/get_show_subscription.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/subscribers/show.json?list_id=189643778&screen_name=__jcbl__', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.ShowSubscription(list_id=189643778, + screen_name='__jcbl__') + self.assertEqual(resp.id, 372018022) + self.assertEqual(resp.screen_name, '__jcbl__') + self.assertTrue(resp.status) + + # User is subscriber, using extra params + with open('testdata/get_show_subscription_extra_params.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/subscribers/show.json?include_entities=True&list_id=18964377&skip_status=True&screen_name=__jcbl__', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.ShowSubscription(list_id=18964377, + screen_name='__jcbl__', + include_entities=True, + skip_status=True) + self.assertFalse(resp.status) diff --git a/twitter/api.py b/twitter/api.py index 77c5891b..38a036bb 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1194,8 +1194,7 @@ def PostMedia(self, "PostUpdate() instead. Details of Twitter's deprecation can be " "found at: " "dev.twitter.com/rest/reference/post/statuses/update_with_media"), - DeprecationWarning - ) + DeprecationWarning) url = '%s/statuses/update_with_media.json' % self.base_url @@ -3051,7 +3050,6 @@ def DestroyList(self, return List.NewFromJsonDict(data) - # TODO: test. def CreateSubscription(self, owner_screen_name=False, owner_id=False, @@ -3089,7 +3087,6 @@ def CreateSubscription(self, return User.NewFromJsonDict(data) - # TODO: test. def DestroySubscription(self, owner_screen_name=False, owner_id=False, @@ -3128,7 +3125,6 @@ def DestroySubscription(self, return List.NewFromJsonDict(data) - # TODO: test. def ShowSubscription(self, owner_screen_name=False, owner_id=False, @@ -3180,10 +3176,7 @@ def ShowSubscription(self, owner_screen_name=owner_screen_name)) if user_id: - try: - parameters['user_id'] = int(user_id) - except ValueError: - raise TwitterError({'message': "user_id must be an integer"}) + parameters['user_id'] = enf_type('user_id', int, user_id) elif screen_name: parameters['screen_name'] = screen_name if skip_status: From b4c4ef3b745eba673d181de6363121fc61dac1bc Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 30 Jan 2016 10:31:52 -0500 Subject: [PATCH 165/533] adds tests for GetSubscriptions and GetMemberships --- testdata/get_get_memberships.json | 1 + .../get_get_memberships_himawari8bot.json | 1 + testdata/get_get_subscriptions.json | 1 + testdata/get_get_subscriptions_uid.json | 1 + tests/test_api_30.py | 55 +++++++++++++++++++ twitter/api.py | 35 ++++-------- 6 files changed, 71 insertions(+), 23 deletions(-) create mode 100644 testdata/get_get_memberships.json create mode 100644 testdata/get_get_memberships_himawari8bot.json create mode 100644 testdata/get_get_subscriptions.json create mode 100644 testdata/get_get_subscriptions_uid.json diff --git a/testdata/get_get_memberships.json b/testdata/get_get_memberships.json new file mode 100644 index 00000000..5c7fe65f --- /dev/null +++ b/testdata/get_get_memberships.json @@ -0,0 +1 @@ +{"lists": [{"description": "", "subscriber_count": 0, "slug": "my-bots", "name": "my-bots", "member_count": 3, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/wtg3XzqQTX", "statuses_count": 325, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 372018022, "default_profile_image": false, "contributors_enabled": false, "following": true, "profile_link_color": "EE3355", "followers_count": 49, "friends_count": 306, "location": "not a very good kingdom tbh", "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1279, "profile_background_color": "FFFFFF", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "jeremy", "id_str": "372018022", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iseverythingstilltheworst.com", "indices": [0, 22], "expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX"}]}}, "is_translator": false, "screen_name": "__jcbl__", "created_at": "Sun Sep 11 23:49:28 +0000 2011"}, "id_str": "225486809", "id": 225486809, "following": false, "full_name": "@__jcbl__/my-bots", "created_at": "Tue Nov 10 16:43:07 +0000 2015", "uri": "/__jcbl__/lists/my-bots"}], "next_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "0", "previous_cursor": 0} \ No newline at end of file diff --git a/testdata/get_get_memberships_himawari8bot.json b/testdata/get_get_memberships_himawari8bot.json new file mode 100644 index 00000000..3f512f32 --- /dev/null +++ b/testdata/get_get_memberships_himawari8bot.json @@ -0,0 +1 @@ +{"lists": [{"description": "", "subscriber_count": 0, "slug": "raumfahrt", "name": "Raumfahrt", "member_count": 47, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 63, "profile_image_url": "http://pbs.twimg.com/profile_images/656242621032046592/-bxfUp2b_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/510448601944698883/YGZKFmFg.png", "verified": false, "lang": "de", "protected": false, "url": "https://t.co/9dAdM3G1a8", "statuses_count": 21661, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 281072753, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "D98609", "followers_count": 406, "friends_count": 620, "location": "T\u00fcbingen", "profile_banner_url": "https://pbs.twimg.com/profile_banners/281072753/1445322767", "description": "Podcaster, Spacenerd, Serienjunkie\nProjekte: @cantaloupFM, @kultpess, @countdown_pod, @originstory_pod, @orionpodcast, @zeitungsjungen", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/510448601944698883/YGZKFmFg.png", "favourites_count": 515, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/656242621032046592/-bxfUp2b_normal.jpg", "geo_enabled": true, "time_zone": "Berlin", "name": "Dr. Merkw\u00fcrdigliebe", "id_str": "281072753", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/cvandermeyden", "indices": [0, 23], "expanded_url": "https://about.me/cvandermeyden", "url": "https://t.co/9dAdM3G1a8"}]}}, "is_translator": false, "screen_name": "vanilla_chief", "created_at": "Tue Apr 12 15:35:55 +0000 2011"}, "id_str": "214370503", "id": 214370503, "following": false, "full_name": "@vanilla_chief/raumfahrt", "created_at": "Fri Jul 17 05:35:54 +0000 2015", "uri": "/vanilla_chief/lists/raumfahrt"}, {"description": "My general list, for narrowing my focus when I need to tune out my other interests!", "subscriber_count": 10, "slug": "space", "name": "Space", "member_count": 867, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 3913, "profile_image_url": "http://pbs.twimg.com/profile_images/2022033669/IMG_0359_pp_square_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/5273384/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/p8pGh3SB27", "statuses_count": 40472, "profile_text_color": "3D1957", "profile_background_tile": true, "follow_request_sent": false, "id": 14807898, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "1918CD", "followers_count": 94418, "friends_count": 1222, "location": "Pasadena, CA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14807898/1398902050", "description": "Senior Editor & Planetary Evangelist, The Planetary Society. Planetary scientist, writer, public speaker. Writing a book on Curiosity mission. Asteroid 274860.", "profile_sidebar_fill_color": "7AC3EE", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/5273384/bg.gif", "favourites_count": 1201, "profile_background_color": "642D8B", "is_translation_enabled": false, "profile_sidebar_border_color": "65B0DA", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2022033669/IMG_0359_pp_square_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "Emily Lakdawalla", "id_str": "14807898", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "planetary.org/emily", "indices": [0, 22], "expanded_url": "http://planetary.org/emily", "url": "http://t.co/p8pGh3SB27"}]}}, "is_translator": false, "screen_name": "elakdawalla", "created_at": "Sat May 17 04:43:01 +0000 2008"}, "id_str": "200305538", "id": 200305538, "following": false, "full_name": "@elakdawalla/space", "created_at": "Sat Mar 28 16:46:24 +0000 2015", "uri": "/elakdawalla/lists/space"}, {"description": "SPAAAAAACE", "subscriber_count": 0, "slug": "space-news", "name": "space_news", "member_count": 46, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 30, "profile_image_url": "http://pbs.twimg.com/profile_images/678347666368106496/GXULqbbH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 15766, "profile_text_color": "666666", "profile_background_tile": false, "follow_request_sent": false, "id": 200598623, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "000000", "followers_count": 554, "friends_count": 468, "location": "Germany", "profile_banner_url": "https://pbs.twimg.com/profile_banners/200598623/1398409828", "description": "debris / science / music / computers / rants / neat stuff", "profile_sidebar_fill_color": "252429", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "favourites_count": 0, "profile_background_color": "1A1B1F", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/678347666368106496/GXULqbbH_normal.png", "geo_enabled": false, "time_zone": "Bern", "name": "\u00b5B", "id_str": "200598623", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "voidshaper", "created_at": "Sat Oct 09 18:28:07 +0000 2010"}, "id_str": "81343636", "id": 81343636, "following": false, "full_name": "@voidshaper/space-news", "created_at": "Thu Nov 29 10:23:36 +0000 2012", "uri": "/voidshaper/lists/space-news"}, {"description": "", "subscriber_count": 0, "slug": "bots", "name": "Bots", "member_count": 23, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 13, "profile_image_url": "http://pbs.twimg.com/profile_images/521406868380336128/rot1F9gq_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/hyN4982dpu", "statuses_count": 4985, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 117036191, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "7A2727", "followers_count": 383, "friends_count": 676, "location": "Glasgow, Scotland", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117036191/1428835522", "description": "Interaction design and development. Front-end developer @tictocfamily. @DJCAD DIxD graduate. Pictured: me writing CSS", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": 0, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 561, "profile_background_color": "797979", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/521406868380336128/rot1F9gq_normal.jpeg", "geo_enabled": true, "time_zone": "London", "name": "K\u00ffle Macq\u00fcarrie", "id_str": "117036191", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kylemacquarrie.co.uk", "indices": [0, 22], "expanded_url": "http://kylemacquarrie.co.uk/", "url": "http://t.co/hyN4982dpu"}]}}, "is_translator": false, "screen_name": "k_macquarrie", "created_at": "Wed Feb 24 10:04:32 +0000 2010"}, "id_str": "227477436", "id": 227477436, "following": false, "full_name": "@k_macquarrie/bots", "created_at": "Sat Nov 28 13:14:11 +0000 2015", "uri": "/k_macquarrie/lists/bots"}, {"description": "anything space or science", "subscriber_count": 1, "slug": "space", "name": "space", "member_count": 60, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 108, "profile_image_url": "http://pbs.twimg.com/profile_images/637569681511985152/4hswubZr_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 868, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 75225695, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 10647, "friends_count": 10192, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/75225695/1410266939", "description": "I love science especially pictures of the earth and space", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": 36000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 3668, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/637569681511985152/4hswubZr_normal.jpg", "geo_enabled": false, "time_zone": "Brisbane", "name": "willbaren", "id_str": "75225695", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "willbaren", "created_at": "Fri Sep 18 07:31:37 +0000 2009"}, "id_str": "84899291", "id": 84899291, "following": false, "full_name": "@willbaren/space", "created_at": "Wed Feb 06 20:47:06 +0000 2013", "uri": "/willbaren/lists/space"}, {"description": "Yes, I'm a nerd..", "subscriber_count": 0, "slug": "weather-science", "name": "Weather & Science", "member_count": 231, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 93, "profile_image_url": "http://pbs.twimg.com/profile_images/421323929177690114/yiTZl9wC_normal.jpeg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/718919515/dca6c0dc790fe44afa560355d2be7462.jpeg", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 21835, "profile_text_color": "FC5884", "profile_background_tile": true, "follow_request_sent": false, "id": 15656860, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "B78BC9", "followers_count": 1383, "friends_count": 1973, "location": "The Deep South (southern AL)", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15656860/1400044021", "description": "NWS Meteorologist. 200 mile Ragnar Relay Runner. Kentucky girl at heart, loving all things bourbon & southern. AOII Love \u2665 Go Noles \u2665 Go Ball U {views are mine}", "profile_sidebar_fill_color": "A39BDE", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/718919515/dca6c0dc790fe44afa560355d2be7462.jpeg", "favourites_count": 21294, "profile_background_color": "303253", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/421323929177690114/yiTZl9wC_normal.jpeg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "morganabigail", "id_str": "15656860", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "morganabigail", "created_at": "Wed Jul 30 05:27:15 +0000 2008"}, "id_str": "2035985", "id": 2035985, "following": false, "full_name": "@morganabigail/weather-science", "created_at": "Wed Nov 04 02:05:20 +0000 2009", "uri": "/morganabigail/lists/weather-science"}, {"description": "", "subscriber_count": 2, "slug": "arts-sciences", "name": "arts+sciences", "member_count": 36, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 33, "profile_image_url": "http://pbs.twimg.com/profile_images/651466730024267776/GVgaJxHC_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/23229384/pattern_146.gif", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 16014, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 21264348, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "2AB0E0", "followers_count": 339, "friends_count": 256, "location": "PGH+ATL+BOS+\u5fb3\u5cf6\u770c", "profile_banner_url": "https://pbs.twimg.com/profile_banners/21264348/1445839994", "description": "Trying to be good and do good.\n(Also: geeking out over volcanoes, \u65e5\u672c\u8a9e, animation and creativity. I'm a happily mixed bag.)", "profile_sidebar_fill_color": "DCECF5", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/23229384/pattern_146.gif", "favourites_count": 286, "profile_background_color": "333333", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651466730024267776/GVgaJxHC_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "skp.", "id_str": "21264348", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "samosamancer", "created_at": "Thu Feb 19 01:34:49 +0000 2009"}, "id_str": "15769654", "id": 15769654, "following": false, "full_name": "@samosamancer/arts-sciences", "created_at": "Tue Jun 29 18:58:34 +0000 2010", "uri": "/samosamancer/lists/arts-sciences"}, {"description": "", "subscriber_count": 0, "slug": "international-weather", "name": "INTERNATIONAL WEATHER", "member_count": 23, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 0, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 4, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1165400875, "default_profile_image": true, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 3, "friends_count": 128, "location": "", "description": "", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": 19800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "geo_enabled": false, "time_zone": "Kolkata", "name": "ABHIJIT GHOSH", "id_str": "1165400875", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ABHIJITIND16", "created_at": "Sun Feb 10 09:13:19 +0000 2013"}, "id_str": "231342470", "id": 231342470, "following": false, "full_name": "@ABHIJITIND16/international-weather", "created_at": "Wed Jan 06 19:26:18 +0000 2016", "uri": "/ABHIJITIND16/lists/international-weather"}, {"description": "", "subscriber_count": 1, "slug": "zuus", "name": "zuus", "member_count": 105, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 0, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000771146453/3ce1d7f804d141445ac11cf637f6e549_normal.png", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000121258143/730b95553cffbd178cb41a18a58e4953.png", "verified": false, "lang": "ja", "protected": false, "url": null, "statuses_count": 205, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 534780961, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0091FF", "followers_count": 126, "friends_count": 51, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/534780961/1385060696", "description": "http://t.co/SUmtzLGIrx", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": 32400, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000121258143/730b95553cffbd178cb41a18a58e4953.png", "favourites_count": 254, "profile_background_color": "FCFCFC", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000771146453/3ce1d7f804d141445ac11cf637f6e549_normal.png", "geo_enabled": false, "time_zone": "Osaka", "name": "\u30a2", "id_str": "534780961", "entities": {"description": {"urls": [{"display_url": "a-na5.tumblr.com", "indices": [0, 22], "expanded_url": "http://a-na5.tumblr.com/", "url": "http://t.co/SUmtzLGIrx"}]}}, "is_translator": false, "screen_name": "yuruyurau", "created_at": "Fri Mar 23 22:42:58 +0000 2012"}, "id_str": "159464220", "id": 159464220, "following": false, "full_name": "@yuruyurau/zuus", "created_at": "Sat Jul 19 15:48:58 +0000 2014", "uri": "/yuruyurau/lists/zuus"}, {"description": "", "subscriber_count": 0, "slug": "test", "name": "test", "member_count": 1, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 1, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": true, "url": null, "statuses_count": 67, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 4012966701, "default_profile_image": true, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "description": "", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "geo_enabled": true, "time_zone": null, "name": "notinourselves", "id_str": "4012966701", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "notinourselves", "created_at": "Wed Oct 21 23:53:04 +0000 2015"}, "id_str": "229581524", "id": 229581524, "following": true, "full_name": "@notinourselves/test", "created_at": "Fri Dec 18 20:00:45 +0000 2015", "uri": "/notinourselves/lists/test"}, {"description": "Fuentes primarias de informaci\u00f3n relativa a ciclones tropicales de todo el mundo", "subscriber_count": 0, "slug": "ciclones-tropicales", "name": "Ciclones tropicales", "member_count": 26, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 150, "profile_image_url": "http://pbs.twimg.com/profile_images/689786930377134080/1rwzjgN8_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "es", "protected": false, "url": "http://t.co/5ZsuudFfB8", "statuses_count": 27724, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 140000155, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "009999", "followers_count": 3120, "friends_count": 1207, "location": "Spanish & European citizen.", "profile_banner_url": "https://pbs.twimg.com/profile_banners/140000155/1451675273", "description": "B.Sc. Environmental Risk Management, stormchaser @ecazatormentas and immersed in a master's degree in Renewable Energies. Looking for new opportunities.", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 10238, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "EEEEEE", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689786930377134080/1rwzjgN8_normal.jpg", "geo_enabled": true, "time_zone": "Madrid", "name": "Pedro C. Fern\u00e1ndez", "id_str": "140000155", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cazatormentas.net", "indices": [0, 22], "expanded_url": "http://www.cazatormentas.net", "url": "http://t.co/5ZsuudFfB8"}]}}, "is_translator": false, "screen_name": "PedroCFernandez", "created_at": "Tue May 04 08:19:37 +0000 2010"}, "id_str": "210635540", "id": 210635540, "following": false, "full_name": "@PedroCFernandez/ciclones-tropicales", "created_at": "Sun Jun 14 09:19:08 +0000 2015", "uri": "/PedroCFernandez/lists/ciclones-tropicales"}, {"description": "Clouds, typhoons, warming, causes, impacts and much more.", "subscriber_count": 5, "slug": "climate-en", "name": "Climate (EN)", "member_count": 499, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 229, "profile_image_url": "http://pbs.twimg.com/profile_images/587182496858542080/IPSqv41A_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 23704, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 350274399, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "3B94D9", "followers_count": 6092, "friends_count": 6051, "location": "Quebec City", "profile_banner_url": "https://pbs.twimg.com/profile_banners/350274399/1442609108", "description": "Screenshots of what's captured by the ISS live cameras. And much more... #Earth #space #sky #clouds #planet #image #pic #blue #ISS #weather #EarthandClouds", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7980, "profile_background_color": "000000", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/587182496858542080/IPSqv41A_normal.png", "geo_enabled": false, "time_zone": "Quito", "name": "Earth and Clouds", "id_str": "350274399", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "EarthandClouds", "created_at": "Sun Aug 07 14:08:00 +0000 2011"}, "id_str": "217969187", "id": 217969187, "following": false, "full_name": "@EarthandClouds/climate-en", "created_at": "Sat Aug 22 17:55:06 +0000 2015", "uri": "/EarthandClouds/lists/climate-en"}, {"description": "\u2728\ud83c\udf0c\u2728", "subscriber_count": 2, "slug": "space-bots", "name": "space bots", "member_count": 10, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 105, "profile_image_url": "http://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "verified": false, "lang": "en-gb", "protected": false, "url": "https://t.co/Wz4bls6kQh", "statuses_count": 26462, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 13148, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "848484", "followers_count": 1618, "friends_count": 794, "location": "Dublin, Ireland", "profile_banner_url": "https://pbs.twimg.com/profile_banners/13148/1447542687", "description": "ambient music, art bots // @poem_exe", "profile_sidebar_fill_color": "C0DFEC", "default_profile": false, "utc_offset": 0, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "favourites_count": 64659, "profile_background_color": "EDEDF4", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "geo_enabled": false, "time_zone": "Dublin", "name": "L\u0131\u0103m", "id_str": "13148", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "liamcooke.com", "indices": [0, 23], "expanded_url": "http://liamcooke.com", "url": "https://t.co/Wz4bls6kQh"}]}}, "is_translator": false, "screen_name": "inky", "created_at": "Mon Nov 20 00:04:50 +0000 2006"}, "id_str": "189643778", "id": 189643778, "following": true, "full_name": "@inky/space-bots", "created_at": "Thu Jan 22 21:35:25 +0000 2015", "uri": "/inky/lists/space-bots"}, {"description": "", "subscriber_count": 0, "slug": "climate", "name": "climate", "member_count": 15, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 109, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 20157, "profile_text_color": "3D1957", "profile_background_tile": false, "follow_request_sent": false, "id": 15436436, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 3610, "friends_count": 1879, "location": "SF, south side", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15436436/1444629889", "description": "Marketing, politics, data. Expert on everything.", "profile_sidebar_fill_color": "7AC3EE", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7672708/moonris.jpg", "favourites_count": 5162, "profile_background_color": "642D8B", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000182833009/0830e3ec1140baafbcc3b2ce6126a783_normal.jpeg", "geo_enabled": true, "time_zone": "Pacific Time (US & Canada)", "name": "EMey", "id_str": "15436436", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "emeyerson", "created_at": "Tue Jul 15 03:53:59 +0000 2008"}, "id_str": "197783671", "id": 197783671, "following": false, "full_name": "@emeyerson/climate", "created_at": "Thu Mar 05 14:55:34 +0000 2015", "uri": "/emeyerson/lists/climate"}, {"description": "Just what it says on the tin.", "subscriber_count": 2, "slug": "weatherpros", "name": "weatherpros", "member_count": 77, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 16, "profile_image_url": "http://pbs.twimg.com/profile_images/2580499251/7ib6821re7elm9dqygnx_normal.jpeg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/496224147/Marshall-608x526.jpg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/E54xpWWa8q", "statuses_count": 33175, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 18383373, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "598F4C", "followers_count": 519, "friends_count": 806, "location": "NYC, baby!", "profile_banner_url": "https://pbs.twimg.com/profile_banners/18383373/1446436742", "description": "Professional writer, semi-pro gourmand, market nerd, music snob, and weather obsessive.", "profile_sidebar_fill_color": "A0C5C7", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/496224147/Marshall-608x526.jpg", "favourites_count": 4477, "profile_background_color": "709397", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2580499251/7ib6821re7elm9dqygnx_normal.jpeg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Brendan Hasenstab", "id_str": "18383373", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/brendan.hasens\u2026", "indices": [0, 23], "expanded_url": "http://about.me/brendan.hasenstab", "url": "https://t.co/E54xpWWa8q"}]}}, "is_translator": false, "screen_name": "pierrepont", "created_at": "Fri Dec 26 03:08:28 +0000 2008"}, "id_str": "24648579", "id": 24648579, "following": false, "full_name": "@pierrepont/weatherpros", "created_at": "Tue Oct 12 18:32:24 +0000 2010", "uri": "/pierrepont/lists/weatherpros"}, {"description": "", "subscriber_count": 0, "slug": "my-bots", "name": "my-bots", "member_count": 3, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/wtg3XzqQTX", "statuses_count": 325, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 372018022, "default_profile_image": false, "contributors_enabled": false, "following": true, "profile_link_color": "EE3355", "followers_count": 49, "friends_count": 306, "location": "not a very good kingdom tbh", "description": "my kingdom for a microwave that doesn't beep", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1279, "profile_background_color": "FFFFFF", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659691753826615298/yN1SoWrU_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "jeremy", "id_str": "372018022", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "iseverythingstilltheworst.com", "indices": [0, 22], "expanded_url": "http://iseverythingstilltheworst.com", "url": "http://t.co/wtg3XzqQTX"}]}}, "is_translator": false, "screen_name": "__jcbl__", "created_at": "Sun Sep 11 23:49:28 +0000 2011"}, "id_str": "225486809", "id": 225486809, "following": false, "full_name": "@__jcbl__/my-bots", "created_at": "Tue Nov 10 16:43:07 +0000 2015", "uri": "/__jcbl__/lists/my-bots"}, {"description": "Murmuring Mechanical Maniacs' Many Mad Machinations", "subscriber_count": 6, "slug": "robot-overlords", "name": "Robot Overlords", "member_count": 2779, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 88, "profile_image_url": "http://pbs.twimg.com/profile_images/542192306577620992/AqMy7KtD_normal.png", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000081789644/4983dc46145a62ab1bef488987cbb83f.jpeg", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/fIFj1mcFTs", "statuses_count": 34723, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 407933355, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF8400", "followers_count": 1151, "friends_count": 2413, "location": "Revengerist Compound", "profile_banner_url": "https://pbs.twimg.com/profile_banners/407933355/1417717663", "description": "The Revengerists are a consortium of fighters of crime and evil; globetrotting super-powered adventurers, and benevolent protectors of all things awesome.", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": -32400, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000081789644/4983dc46145a62ab1bef488987cbb83f.jpeg", "favourites_count": 1910, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/542192306577620992/AqMy7KtD_normal.png", "geo_enabled": false, "time_zone": "Alaska", "name": "The Revengerists!", "id_str": "407933355", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "revengerists.com", "indices": [0, 22], "expanded_url": "http://revengerists.com", "url": "http://t.co/fIFj1mcFTs"}]}}, "is_translator": false, "screen_name": "TheRevengerists", "created_at": "Tue Nov 08 19:10:31 +0000 2011"}, "id_str": "193879644", "id": 193879644, "following": false, "full_name": "@TheRevengerists/robot-overlords", "created_at": "Sun Feb 01 15:53:13 +0000 2015", "uri": "/TheRevengerists/lists/robot-overlords"}, {"description": "Weather people", "subscriber_count": 20, "slug": "weather", "name": "Weather", "member_count": 1017, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 582, "profile_image_url": "http://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", "verified": true, "lang": "en", "protected": false, "url": "https://t.co/dMpfqObOsm", "statuses_count": 46379, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 11433152, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "000000", "followers_count": 10248, "friends_count": 3696, "location": "Raleigh, NC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/11433152/1405353644", "description": "I am a meteorologist, instructor, blogger, and podcaster. Flying is my latest adventure. I tweet #ncwx, communication, #NCState, #Cubs, #BBQ, & #avgeek stuff.", "profile_sidebar_fill_color": "E0FF92", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2976062/WRAL_twitter.gif", "favourites_count": 1259, "profile_background_color": "0000FF", "is_translation_enabled": false, "profile_sidebar_border_color": "87BC44", "profile_image_url_https": "https://pbs.twimg.com/profile_images/621027845700251648/JrbflTtR_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Nate Johnson", "id_str": "11433152", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "plus.google.com/+NateJohnson/", "indices": [0, 23], "expanded_url": "https://plus.google.com/+NateJohnson/", "url": "https://t.co/dMpfqObOsm"}]}}, "is_translator": false, "screen_name": "nsj", "created_at": "Sat Dec 22 14:59:53 +0000 2007"}, "id_str": "64954121", "id": 64954121, "following": false, "full_name": "@nsj/weather", "created_at": "Tue Feb 07 20:26:35 +0000 2012", "uri": "/nsj/lists/weather"}, {"description": "", "subscriber_count": 9, "slug": "weather", "name": "Weather", "member_count": 619, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 128, "profile_image_url": "http://pbs.twimg.com/profile_images/688024428073086977/TxsZfQP7_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/LB5LuXEVqQ", "statuses_count": 35806, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 11392632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 1746, "friends_count": 2198, "location": "Papillion, Nebraska, USA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/11392632/1454049844", "description": "Science & Weather geek \u2022 Cybersecurity \u2022 \u2708\ufe0fUSAF vet \u2022 ex aviation forecaster \u2022 557WW \u2022 Waze \u2022 INTJ #GoPackGo #InfoSec \u2b50\ufe0f/|\\", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -21600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/625143486375927808/JfkbwGdr.jpg", "favourites_count": 165, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/688024428073086977/TxsZfQP7_normal.jpg", "geo_enabled": true, "time_zone": "Central Time (US & Canada)", "name": "Gary \u039a0\u03b2\u2c62\u0259 \u2614\ufe0f", "id_str": "11392632", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "about.me/sgtgary", "indices": [0, 23], "expanded_url": "http://about.me/sgtgary", "url": "https://t.co/LB5LuXEVqQ"}]}}, "is_translator": false, "screen_name": "sgtgary", "created_at": "Fri Dec 21 02:44:45 +0000 2007"}, "id_str": "2053636", "id": 2053636, "following": false, "full_name": "@sgtgary/weather", "created_at": "Wed Nov 04 05:18:31 +0000 2009", "uri": "/sgtgary/lists/weather"}, {"description": "", "subscriber_count": 3, "slug": "people-ive-faved", "name": "People Ive faved", "member_count": 640, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 177, "profile_image_url": "http://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/8wmgXFQ8U8", "statuses_count": 9205, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 2344125559, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "9266CC", "followers_count": 1760, "friends_count": 2378, "location": "South San Francisco, CA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2344125559/1444427702", "description": "@Minted Photo Editor & Design Associate. Wife & investor est. August 2016. My bot sister: @bitpixi_ebooks.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": -25200, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 23342, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675023811511607296/PbyIDvbw_normal.jpg", "geo_enabled": true, "time_zone": "Arizona", "name": "\u0f3c \u3064 \u25d5_\u25d5 \u0f3d\u3064 kasey?", "id_str": "2344125559", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "bitpixi.com", "indices": [0, 23], "expanded_url": "http://www.bitpixi.com", "url": "https://t.co/8wmgXFQ8U8"}]}}, "is_translator": false, "screen_name": "bitpixi", "created_at": "Fri Feb 14 21:09:05 +0000 2014"}, "id_str": "220869009", "id": 220869009, "following": false, "full_name": "@bitpixi/people-ive-faved", "created_at": "Wed Sep 23 07:22:53 +0000 2015", "uri": "/bitpixi/lists/people-ive-faved"}], "next_cursor": 1516801501949118834, "previous_cursor_str": "0", "next_cursor_str": "1516801501949118834", "previous_cursor": 0} \ No newline at end of file diff --git a/testdata/get_get_subscriptions.json b/testdata/get_get_subscriptions.json new file mode 100644 index 00000000..3b369726 --- /dev/null +++ b/testdata/get_get_subscriptions.json @@ -0,0 +1 @@ +{"lists": [{"description": "\u2728\ud83c\udf0c\u2728", "subscriber_count": 2, "slug": "space-bots", "name": "space bots", "member_count": 10, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 105, "profile_image_url": "http://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "verified": false, "lang": "en-gb", "protected": false, "url": "https://t.co/Wz4bls6kQh", "statuses_count": 26462, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 13148, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "848484", "followers_count": 1618, "friends_count": 794, "location": "Dublin, Ireland", "profile_banner_url": "https://pbs.twimg.com/profile_banners/13148/1447542687", "description": "ambient music, art bots // @poem_exe", "profile_sidebar_fill_color": "C0DFEC", "default_profile": false, "utc_offset": 0, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/628878668/zwcd99eo8b13p4wpbv2a.png", "favourites_count": 64659, "profile_background_color": "EDEDF4", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/693009922846515200/dzwB3rPe_normal.jpg", "geo_enabled": false, "time_zone": "Dublin", "name": "L\u0131\u0103m", "id_str": "13148", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "liamcooke.com", "indices": [0, 23], "expanded_url": "http://liamcooke.com", "url": "https://t.co/Wz4bls6kQh"}]}}, "is_translator": false, "screen_name": "inky", "created_at": "Mon Nov 20 00:04:50 +0000 2006"}, "id_str": "189643778", "id": 189643778, "following": true, "full_name": "@inky/space-bots", "created_at": "Thu Jan 22 21:35:25 +0000 2015", "uri": "/inky/lists/space-bots"}], "next_cursor": 0, "previous_cursor_str": "0", "next_cursor_str": "0", "previous_cursor": 0} \ No newline at end of file diff --git a/testdata/get_get_subscriptions_uid.json b/testdata/get_get_subscriptions_uid.json new file mode 100644 index 00000000..5ebac968 --- /dev/null +++ b/testdata/get_get_subscriptions_uid.json @@ -0,0 +1 @@ +{"lists": [{"description": "Waiting For Godot in bot form for NaNoGenMo2015", "subscriber_count": 5, "slug": "waiting-for-gobot", "name": "Waiting For GoBot", "member_count": 7, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 36, "profile_image_url": "http://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/n9o8lGQuY4", "statuses_count": 1990, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 193000769, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF63ED", "followers_count": 241, "friends_count": 990, "location": "Seattle, WA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/193000769/1451973415", "description": "HTML5/CSS3 artist, nb they/them/she/babe/noise-witch/cat/sea-monster. if u think my tweets r juvenile thats probably cuz they are, dad.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 6040, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "The They/She", "id_str": "193000769", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "colewillsea.com", "indices": [0, 23], "expanded_url": "http://www.colewillsea.com", "url": "https://t.co/n9o8lGQuY4"}]}}, "is_translator": false, "screen_name": "coleseadubs", "created_at": "Mon Sep 20 18:35:04 +0000 2010"}, "id_str": "224581495", "id": 224581495, "following": false, "full_name": "@coleseadubs/waiting-for-gobot", "created_at": "Sun Nov 01 16:04:26 +0000 2015", "uri": "/coleseadubs/lists/waiting-for-gobot"}, {"description": "my bots", "subscriber_count": 1, "slug": "my-bots", "name": "my bots", "member_count": 4, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 70, "profile_image_url": "http://pbs.twimg.com/profile_images/651222836980224001/W6gaQrkt_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/658259865/u8tr7egiegp7b5xjmg2e.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/75tZrhEwDu", "statuses_count": 16168, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 14816237, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF0055", "followers_count": 980, "friends_count": 2001, "location": "Fairbanks, Alaska", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14816237/1412222318", "description": "Graphics at @latimes. Formerly @newsminer. Feminist. Not a vegan. I like bots, baseball and burritos. @burritopatents|@SombreroWatch|@andromedabot|@colorschemez", "profile_sidebar_fill_color": "CCCCCC", "default_profile": false, "utc_offset": -32400, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/658259865/u8tr7egiegp7b5xjmg2e.png", "favourites_count": 4524, "profile_background_color": "FFFDF7", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651222836980224001/W6gaQrkt_normal.jpg", "geo_enabled": true, "time_zone": "Alaska", "name": "Joe Fox", "id_str": "14816237", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "joemfox.com", "indices": [0, 23], "expanded_url": "http://joemfox.com", "url": "https://t.co/75tZrhEwDu"}]}}, "is_translator": false, "screen_name": "joemfox", "created_at": "Sun May 18 00:40:52 +0000 2008"}, "id_str": "197631751", "id": 197631751, "following": false, "full_name": "@joemfox/my-bots", "created_at": "Wed Mar 04 06:39:49 +0000 2015", "uri": "/joemfox/lists/my-bots"}, {"description": "Dumb Twitter bots I've made", "subscriber_count": 1, "slug": "mike-s-bots", "name": "Mike's Bots", "member_count": 5, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 32, "profile_image_url": "http://pbs.twimg.com/profile_images/604672054969937921/BkiwSfK0_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/4287390/venus_colored.jpg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/67B372qbbd", "statuses_count": 13853, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 20108996, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "006661", "followers_count": 465, "friends_count": 287, "location": "NYC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/20108996/1393739875", "description": "My dog's name is Pancake.", "profile_sidebar_fill_color": "7A95A5", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/4287390/venus_colored.jpg", "favourites_count": 876, "profile_background_color": "556D75", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604672054969937921/BkiwSfK0_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Mike Watson", "id_str": "20108996", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "mikewatson.me", "indices": [0, 23], "expanded_url": "http://mikewatson.me/", "url": "https://t.co/67B372qbbd"}]}}, "is_translator": false, "screen_name": "mike_watson", "created_at": "Thu Feb 05 00:15:12 +0000 2009"}, "id_str": "211206643", "id": 211206643, "following": false, "full_name": "@mike_watson/mike-s-bots", "created_at": "Fri Jun 19 02:18:28 +0000 2015", "uri": "/mike_watson/lists/mike-s-bots"}, {"description": "", "subscriber_count": 1, "slug": "my-bots", "name": "My bots", "member_count": 4, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 8, "profile_image_url": "http://pbs.twimg.com/profile_images/555793196131688448/e6a068a0_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/6fAXA9friH", "statuses_count": 159, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2533509324, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "94D487", "followers_count": 281, "friends_count": 110, "location": "\u219f \u219f \u219f", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2533509324/1420644472", "description": "", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7836, "profile_background_color": "000000", "is_translation_enabled": true, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555793196131688448/e6a068a0_normal.jpeg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "doeg", "id_str": "2533509324", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "doeg.gy", "indices": [0, 22], "expanded_url": "http://doeg.gy/", "url": "http://t.co/6fAXA9friH"}]}}, "is_translator": false, "screen_name": "doeg", "created_at": "Thu May 29 22:23:01 +0000 2014"}, "id_str": "187765235", "id": 187765235, "following": false, "full_name": "@doeg/my-bots", "created_at": "Wed Jan 07 04:30:10 +0000 2015", "uri": "/doeg/lists/my-bots"}, {"description": "this is where the twitters bots i've made live!", "subscriber_count": 1, "slug": "my-bots", "name": "my-bots", "member_count": 5, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 16, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000448795123/f6e585845c65ff59e28778f8ea26a994_normal.png", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000176688294/VItijy85.png", "verified": false, "lang": "fr", "protected": false, "url": "https://t.co/4TvnHW4EEI", "statuses_count": 1030, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 118355207, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "C24646", "followers_count": 184, "friends_count": 516, "location": "Lund, Sweden", "profile_banner_url": "https://pbs.twimg.com/profile_banners/118355207/1403873053", "description": "Computer science student, intermittently voracious reader, game experimenter and electronic music explorer.", "profile_sidebar_fill_color": "C0DFEC", "default_profile": false, "utc_offset": 3600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000176688294/VItijy85.png", "favourites_count": 5271, "profile_background_color": "022330", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000448795123/f6e585845c65ff59e28778f8ea26a994_normal.png", "geo_enabled": false, "time_zone": "Stockholm", "name": "Alexander Cobleigh", "id_str": "118355207", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "cblgh.org", "indices": [0, 23], "expanded_url": "https://cblgh.org", "url": "https://t.co/4TvnHW4EEI"}]}}, "is_translator": false, "screen_name": "cblgh", "created_at": "Sun Feb 28 12:05:51 +0000 2010"}, "id_str": "220465434", "id": 220465434, "following": false, "full_name": "@cblgh/my-bots", "created_at": "Fri Sep 18 17:37:24 +0000 2015", "uri": "/cblgh/lists/my-bots"}, {"description": "Twitterbots that I made.", "subscriber_count": 2, "slug": "my-twitterbots1", "name": "My Twitterbots", "member_count": 5, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 36, "profile_image_url": "http://pbs.twimg.com/profile_images/652937129689923584/ItggjTDP_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/LscMLxozN6", "statuses_count": 1756, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1267873218, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 429, "friends_count": 345, "location": "Brooklyn, NY; prev. Bratislava", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1267873218/1412181738", "description": "Husband, dad, web developer. I made https://t.co/q0OvD03zN5, https://t.co/WKb4iyqL9H and other, less useful stuff. #botmakers #edtech #teachtheweb #indieweb", "profile_sidebar_fill_color": "E6F6F9", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "favourites_count": 3312, "profile_background_color": "DBE9ED", "is_translation_enabled": false, "profile_sidebar_border_color": "DBE9ED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652937129689923584/ItggjTDP_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "Stefan Bohacek", "id_str": "1267873218", "entities": {"description": {"urls": [{"display_url": "simplesharingbuttons.com", "indices": [37, 60], "expanded_url": "http://simplesharingbuttons.com", "url": "https://t.co/q0OvD03zN5"}, {"display_url": "botwiki.org", "indices": [62, 85], "expanded_url": "http://botwiki.org", "url": "https://t.co/WKb4iyqL9H"}]}, "url": {"urls": [{"display_url": "fourtonfish.com", "indices": [0, 23], "expanded_url": "https://fourtonfish.com/", "url": "https://t.co/LscMLxozN6"}]}}, "is_translator": false, "screen_name": "fourtonfish", "created_at": "Thu Mar 14 20:10:32 +0000 2013"}, "id_str": "214578852", "id": 214578852, "following": false, "full_name": "@fourtonfish/my-twitterbots1", "created_at": "Sun Jul 19 12:22:37 +0000 2015", "uri": "/fourtonfish/lists/my-twitterbots1"}, {"description": "bots that I built or collaborated on =^.^=. mostly inactive and egrettable", "subscriber_count": 6, "slug": "old-bot-list", "name": "old bot list", "member_count": 116, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": true, "listed_count": 36, "profile_image_url": "http://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/n9o8lGQuY4", "statuses_count": 1990, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 193000769, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FF63ED", "followers_count": 241, "friends_count": 990, "location": "Seattle, WA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/193000769/1451973415", "description": "HTML5/CSS3 artist, nb they/them/she/babe/noise-witch/cat/sea-monster. if u think my tweets r juvenile thats probably cuz they are, dad.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 6040, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692754075448815616/fSHG5lhQ_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "The They/She", "id_str": "193000769", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "colewillsea.com", "indices": [0, 23], "expanded_url": "http://www.colewillsea.com", "url": "https://t.co/n9o8lGQuY4"}]}}, "is_translator": false, "screen_name": "coleseadubs", "created_at": "Mon Sep 20 18:35:04 +0000 2010"}, "id_str": "168789362", "id": 168789362, "following": false, "full_name": "@coleseadubs/old-bot-list", "created_at": "Thu Sep 04 14:10:19 +0000 2014", "uri": "/coleseadubs/lists/old-bot-list"}, {"description": "Twitterbots made by @ojahnn.", "subscriber_count": 4, "slug": "my-bots", "name": "My Bots", "member_count": 20, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/594843502892167168/4ZMRDo_Z_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000173082583/GPLG49vF.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/OMsvx9t5RS", "statuses_count": 6205, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 24693754, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 412, "friends_count": 377, "location": "D\u00fcsseldorf", "profile_banner_url": "https://pbs.twimg.com/profile_banners/24693754/1438796424", "description": "I like to linguist computers. Tweeting mostly in German. Look at the twitterbots I made: https://t.co/PfqKMNMxJb\u2026", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000173082583/GPLG49vF.png", "favourites_count": 1787, "profile_background_color": "757575", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/594843502892167168/4ZMRDo_Z_normal.jpg", "geo_enabled": false, "time_zone": null, "name": "Esther Seyffarth", "id_str": "24693754", "entities": {"description": {"urls": [{"display_url": "twitter.com/ojahnn/lists/m", "indices": [89, 112], "expanded_url": "http://twitter.com/ojahnn/lists/m", "url": "https://t.co/PfqKMNMxJb"}]}, "url": {"urls": [{"display_url": "enigmabrot.de/projects/", "indices": [0, 23], "expanded_url": "https://enigmabrot.de/projects/", "url": "https://t.co/OMsvx9t5RS"}]}}, "is_translator": false, "screen_name": "ojahnn", "created_at": "Mon Mar 16 13:55:48 +0000 2009"}, "id_str": "205637792", "id": 205637792, "following": false, "full_name": "@ojahnn/my-bots", "created_at": "Sun May 10 15:15:31 +0000 2015", "uri": "/ojahnn/lists/my-bots"}, {"description": "", "subscriber_count": 1, "slug": "cuteness-therapy", "name": "cuteness therapy", "member_count": 17, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 35, "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "ru", "protected": false, "url": "https://t.co/JiCyW1dzUZ", "statuses_count": 12637, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 194096921, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "67777A", "followers_count": 456, "friends_count": 1133, "location": "Melbourne, Australia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: https://t.co/p5t2rZJajQ", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 39600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 9256, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "geo_enabled": false, "time_zone": "Melbourne", "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d hiatus", "id_str": "194096921", "entities": {"description": {"urls": [{"display_url": "nightmare.website", "indices": [127, 150], "expanded_url": "http://nightmare.website", "url": "https://t.co/p5t2rZJajQ"}]}, "url": {"urls": [{"display_url": "memoriata.com", "indices": [0, 23], "expanded_url": "http://memoriata.com/", "url": "https://t.co/JiCyW1dzUZ"}]}}, "is_translator": false, "screen_name": "dbaker_h", "created_at": "Thu Sep 23 12:34:18 +0000 2010"}, "id_str": "212023677", "id": 212023677, "following": false, "full_name": "@dbaker_h/cuteness-therapy", "created_at": "Sat Jun 27 00:23:03 +0000 2015", "uri": "/dbaker_h/lists/cuteness-therapy"}, {"description": "making sure the kids aren't up to any mischief", "subscriber_count": 2, "slug": "bot-family", "name": "bot family", "member_count": 17, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 35, "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "ru", "protected": false, "url": "https://t.co/JiCyW1dzUZ", "statuses_count": 12637, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 194096921, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "67777A", "followers_count": 456, "friends_count": 1133, "location": "Melbourne, Australia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: https://t.co/p5t2rZJajQ", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 39600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 9256, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "geo_enabled": false, "time_zone": "Melbourne", "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d hiatus", "id_str": "194096921", "entities": {"description": {"urls": [{"display_url": "nightmare.website", "indices": [127, 150], "expanded_url": "http://nightmare.website", "url": "https://t.co/p5t2rZJajQ"}]}, "url": {"urls": [{"display_url": "memoriata.com", "indices": [0, 23], "expanded_url": "http://memoriata.com/", "url": "https://t.co/JiCyW1dzUZ"}]}}, "is_translator": false, "screen_name": "dbaker_h", "created_at": "Thu Sep 23 12:34:18 +0000 2010"}, "id_str": "142381252", "id": 142381252, "following": false, "full_name": "@dbaker_h/bot-family", "created_at": "Thu Jul 03 13:20:58 +0000 2014", "uri": "/dbaker_h/lists/bot-family"}, {"description": "pls @ me if one becomes self-aware so I can give her my root password (https://github.com/alicemaz)", "subscriber_count": 2, "slug": "my-bots", "name": "my bots", "member_count": 8, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 197, "profile_image_url": "http://pbs.twimg.com/profile_images/639995326745677824/Ir73bU7n_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/GJAnR54r58", "statuses_count": 42460, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 63506279, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 4728, "friends_count": 288, "location": "San Francisco, CA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/63506279/1451912199", "description": "witch of the wired | \u26a2 \u26a7 #\ufe0f", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 22592, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639995326745677824/Ir73bU7n_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "Alice Maz", "id_str": "63506279", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "alicemaz.com", "indices": [0, 22], "expanded_url": "http://www.alicemaz.com/", "url": "http://t.co/GJAnR54r58"}]}}, "is_translator": false, "screen_name": "alicemazzy", "created_at": "Thu Aug 06 18:53:51 +0000 2009"}, "id_str": "199134790", "id": 199134790, "following": false, "full_name": "@alicemazzy/my-bots", "created_at": "Tue Mar 17 15:46:22 +0000 2015", "uri": "/alicemazzy/lists/my-bots"}, {"description": "Twitter bots I've made.", "subscriber_count": 1, "slug": "my-bots", "name": "My bots", "member_count": 7, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 174, "profile_image_url": "http://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/de9VPgQnNT", "statuses_count": 14629, "profile_text_color": "273633", "profile_background_tile": true, "follow_request_sent": false, "id": 5746882, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "2D2823", "followers_count": 7391, "friends_count": 6125, "location": "Seattle, WA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/5746882/1398198050", "description": "social justice carer-abouter, feeling-haver, net art maker, #botALLY \u2665 javascript & python \u26a1\ufe0f pronouns: he/him https://t.co/ycsix8og0H", "profile_sidebar_fill_color": "F5F5F5", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/379605553/pattern_156.gif", "favourites_count": 17026, "profile_background_color": "204443", "is_translation_enabled": false, "profile_sidebar_border_color": "1A3230", "profile_image_url_https": "https://pbs.twimg.com/profile_images/623757496100896768/_AtAzJim_normal.jpg", "geo_enabled": true, "time_zone": "Pacific Time (US & Canada)", "name": "beauring name", "id_str": "5746882", "entities": {"description": {"urls": [{"display_url": "openhumans.org", "indices": [111, 134], "expanded_url": "http://openhumans.org", "url": "https://t.co/ycsix8og0H"}]}, "url": {"urls": [{"display_url": "beaugunderson.com", "indices": [0, 23], "expanded_url": "https://beaugunderson.com/", "url": "https://t.co/de9VPgQnNT"}]}}, "is_translator": false, "screen_name": "beaugunderson", "created_at": "Thu May 03 17:46:35 +0000 2007"}, "id_str": "173125727", "id": 173125727, "following": false, "full_name": "@beaugunderson/my-bots", "created_at": "Thu Oct 09 10:00:43 +0000 2014", "uri": "/beaugunderson/lists/my-bots"}, {"description": "Tweets from my bots.", "subscriber_count": 7, "slug": "bots", "name": "Bots", "member_count": 23, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 37, "profile_image_url": "http://pbs.twimg.com/profile_images/650473302339661824/xXXXUvo4_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000178573366/QREOCeJe.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/tbec5kxrFT", "statuses_count": 7761, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1098206508, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "E30254", "followers_count": 394, "friends_count": 488, "location": "philadelphia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1098206508/1421711386", "description": "making games @PaisleyGames / #botALLY", "profile_sidebar_fill_color": "DDEEF6", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000178573366/QREOCeJe.png", "favourites_count": 5139, "profile_background_color": "02E391", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650473302339661824/xXXXUvo4_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "tobi hahn", "id_str": "1098206508", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "hahndynasty.net", "indices": [0, 22], "expanded_url": "http://hahndynasty.net", "url": "http://t.co/tbec5kxrFT"}]}}, "is_translator": false, "screen_name": "rainshapes", "created_at": "Thu Jan 17 13:51:19 +0000 2013"}, "id_str": "92234099", "id": 92234099, "following": false, "full_name": "@rainshapes/bots", "created_at": "Tue Jul 02 15:27:53 +0000 2013", "uri": "/rainshapes/lists/bots"}, {"description": "", "subscriber_count": 4, "slug": "my-bots", "name": "My Bots", "member_count": 16, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 62, "profile_image_url": "http://pbs.twimg.com/profile_images/597949312241303552/opTWI2QS_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/QagHaerdUw", "statuses_count": 26641, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 52893, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 798, "friends_count": 2003, "location": "NYC via Hackensack", "profile_banner_url": "https://pbs.twimg.com/profile_banners/52893/1398313766", "description": "I fav tweets. Pop culture. dumb jokes. TV. feminist . frontend developer for @shutterstock in nyc. #botALLY", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 28948, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/597949312241303552/opTWI2QS_normal.jpg", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "Stefan Hayden", "id_str": "52893", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "stefanhayden.com", "indices": [0, 22], "expanded_url": "http://www.stefanhayden.com/", "url": "http://t.co/QagHaerdUw"}]}}, "is_translator": false, "screen_name": "StefanHayden", "created_at": "Sat Dec 09 04:43:27 +0000 2006"}, "id_str": "108202239", "id": 108202239, "following": false, "full_name": "@StefanHayden/my-bots", "created_at": "Sun Mar 16 16:59:33 +0000 2014", "uri": "/StefanHayden/lists/my-bots"}, {"description": "active bots by @lichlike / @tylercallich", "subscriber_count": 3, "slug": "bots-by-lich1", "name": "bots by lich", "member_count": 33, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": true, "listed_count": 45, "profile_image_url": "http://pbs.twimg.com/profile_images/693290510568402944/uEDTnxsn_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000019109987/6e1014d7bbb5a347e952e6012b380a1b.jpeg", "verified": false, "lang": "en", "protected": true, "url": null, "statuses_count": 56033, "profile_text_color": "000000", "profile_background_tile": true, "follow_request_sent": false, "id": 125738772, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "9266CC", "followers_count": 624, "friends_count": 557, "location": "ar, usa", "profile_banner_url": "https://pbs.twimg.com/profile_banners/125738772/1453674318", "description": "ty, a lich wandering text labyrinths\u2728 word weaver \uff0f code tinkerer \uff0f kava kultist\u2728 28\u2728 #botally\u2728 she \uff0f they", "profile_sidebar_fill_color": "F3CEFF", "default_profile": false, "utc_offset": -21600, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000019109987/6e1014d7bbb5a347e952e6012b380a1b.jpeg", "favourites_count": 77368, "profile_background_color": "CFD503", "is_translation_enabled": true, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/693290510568402944/uEDTnxsn_normal.jpg", "geo_enabled": false, "time_zone": "Central Time (US & Canada)", "name": "ch\u00e2\u2640elaine \u2640yler", "id_str": "125738772", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "lichlike", "created_at": "Tue Mar 23 18:24:24 +0000 2010"}, "id_str": "209814583", "id": 209814583, "following": false, "full_name": "@lichlike/bots-by-lich1", "created_at": "Fri Jun 05 20:20:18 +0000 2015", "uri": "/lichlike/lists/bots-by-lich1"}, {"description": "These are bots that @tinysubversions has made.", "subscriber_count": 73, "slug": "darius-kazemi-s-bots", "name": "Darius Kazemi's Bots", "member_count": 47, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 820, "profile_image_url": "http://pbs.twimg.com/profile_images/651160874594361344/zSxDVhp8_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115588280/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/IoTmQk4rMq", "statuses_count": 57982, "profile_text_color": "000000", "profile_background_tile": true, "follow_request_sent": false, "id": 14475298, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0000FF", "followers_count": 15388, "friends_count": 1559, "location": "Portland, OR", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14475298/1438549422", "description": "I make weird internet art. Latest project: @yearlyawards! Follow it to get an award. Worker-owner at @feeltraincoop #WHNBM", "profile_sidebar_fill_color": "E0FF92", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115588280/6d332e0d1b8732b9bf51171e8d7d41d2.jpeg", "favourites_count": 21955, "profile_background_color": "FF6921", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651160874594361344/zSxDVhp8_normal.jpg", "geo_enabled": true, "time_zone": "America/Los_Angeles", "name": "Darius Kazemi", "id_str": "14475298", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tinysubversions.com", "indices": [0, 22], "expanded_url": "http://tinysubversions.com", "url": "http://t.co/IoTmQk4rMq"}]}}, "is_translator": false, "screen_name": "tinysubversions", "created_at": "Tue Apr 22 14:41:58 +0000 2008"}, "id_str": "93527328", "id": 93527328, "following": false, "full_name": "@tinysubversions/darius-kazemi-s-bots", "created_at": "Mon Jul 29 13:21:38 +0000 2013", "uri": "/tinysubversions/lists/darius-kazemi-s-bots"}, {"description": "", "subscriber_count": 1, "slug": "bots", "name": "bots", "member_count": 9, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 31, "profile_image_url": "http://pbs.twimg.com/profile_images/680829690530127872/e36HEuyP_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/647154758/pyolb9h5a0ebz33t39bs.jpeg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/UYtfaO81Au", "statuses_count": 36350, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 14578503, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "005C28", "followers_count": 529, "friends_count": 328, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14578503/1409596542", "description": "tweets", "profile_sidebar_fill_color": "E6E6E6", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/647154758/pyolb9h5a0ebz33t39bs.jpeg", "favourites_count": 67990, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/680829690530127872/e36HEuyP_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "dunndunndunn", "id_str": "14578503", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "keybase.io/dunn", "indices": [0, 23], "expanded_url": "https://keybase.io/dunn", "url": "https://t.co/UYtfaO81Au"}]}}, "is_translator": false, "screen_name": "dunndunndunn", "created_at": "Tue Apr 29 01:22:52 +0000 2008"}, "id_str": "125996505", "id": 125996505, "following": false, "full_name": "@dunndunndunn/bots", "created_at": "Sat May 24 06:27:26 +0000 2014", "uri": "/dunndunndunn/lists/bots"}, {"description": "", "subscriber_count": 8, "slug": "bots-by-me", "name": "Bots by me", "member_count": 19, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 73, "profile_image_url": "http://pbs.twimg.com/profile_images/638866240765870080/BL1aRJ9x_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378326431/html.gif", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/QzEtDgYCNY", "statuses_count": 36664, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 9368412, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0000FF", "followers_count": 1252, "friends_count": 513, "location": "LINE: topghost", "profile_banner_url": "https://pbs.twimg.com/profile_banners/9368412/1449039477", "description": "THIS IS TIME WELL SPENT", "profile_sidebar_fill_color": "8F8F8F", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378326431/html.gif", "favourites_count": 48728, "profile_background_color": "171717", "is_translation_enabled": false, "profile_sidebar_border_color": "8F8F8F", "profile_image_url_https": "https://pbs.twimg.com/profile_images/638866240765870080/BL1aRJ9x_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "Casey Kolderup", "id_str": "9368412", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "casey.kolderup.org", "indices": [0, 23], "expanded_url": "http://casey.kolderup.org", "url": "https://t.co/QzEtDgYCNY"}]}}, "is_translator": false, "screen_name": "ckolderup", "created_at": "Thu Oct 11 04:47:06 +0000 2007"}, "id_str": "118700852", "id": 118700852, "following": false, "full_name": "@ckolderup/bots-by-me", "created_at": "Tue Apr 29 07:06:37 +0000 2014", "uri": "/ckolderup/lists/bots-by-me"}, {"description": "Some bots that I wrote", "subscriber_count": 5, "slug": "bots-i-made", "name": "Bots I Made", "member_count": 32, "mode": "public", "user": {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 66, "profile_image_url": "http://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/F9U7lQOBWG", "statuses_count": 23912, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 1160471, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "9266CC", "followers_count": 948, "friends_count": 808, "location": "Montague, MA", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1160471/1406567144", "description": "pie heals all wounds\n#botALLY", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": -18000, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458958349359259649/v3jhFv9U.jpeg", "favourites_count": 11902, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/685299388760109056/TD1GAAg4_normal.jpg", "geo_enabled": true, "time_zone": "Eastern Time (US & Canada)", "name": "\u2630 colin mitchell \u2630", "id_str": "1160471", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "muffinlabs.com", "indices": [0, 23], "expanded_url": "http://muffinlabs.com/", "url": "https://t.co/F9U7lQOBWG"}]}}, "is_translator": false, "screen_name": "muffinista", "created_at": "Wed Mar 14 14:46:25 +0000 2007"}, "id_str": "33069866", "id": 33069866, "following": false, "full_name": "@muffinista/bots-i-made", "created_at": "Thu Jan 06 01:55:08 +0000 2011", "uri": "/muffinista/lists/bots-i-made"}, {"description": "", "subscriber_count": 11, "slug": "botscapes", "name": "botscapes", "member_count": 11, "mode": "public", "user": {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 35, "profile_image_url": "http://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "lang": "ru", "protected": false, "url": "https://t.co/JiCyW1dzUZ", "statuses_count": 12637, "profile_text_color": "333333", "profile_background_tile": true, "follow_request_sent": false, "id": 194096921, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "67777A", "followers_count": 456, "friends_count": 1133, "location": "Melbourne, Australia", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194096921/1440337937", "description": "CSIT student, pianist/composer, metalhead, language nerd, cat person, proud bot parent. language stuff: @dbakerRU | web stuff: https://t.co/p5t2rZJajQ", "profile_sidebar_fill_color": "EFEFEF", "default_profile": false, "utc_offset": 39600, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "favourites_count": 9256, "profile_background_color": "131516", "is_translation_enabled": false, "profile_sidebar_border_color": "FFFFFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/635411411812745216/pp9Xz7kN_normal.jpg", "geo_enabled": false, "time_zone": "Melbourne", "name": "\u263e\u013f \u1438 \u2680 \u2143\u263d hiatus", "id_str": "194096921", "entities": {"description": {"urls": [{"display_url": "nightmare.website", "indices": [127, 150], "expanded_url": "http://nightmare.website", "url": "https://t.co/p5t2rZJajQ"}]}, "url": {"urls": [{"display_url": "memoriata.com", "indices": [0, 23], "expanded_url": "http://memoriata.com/", "url": "https://t.co/JiCyW1dzUZ"}]}}, "is_translator": false, "screen_name": "dbaker_h", "created_at": "Thu Sep 23 12:34:18 +0000 2010"}, "id_str": "208613432", "id": 208613432, "following": false, "full_name": "@dbaker_h/botscapes", "created_at": "Tue May 26 18:20:18 +0000 2015", "uri": "/dbaker_h/lists/botscapes"}], "next_cursor": 1502276842028529447, "previous_cursor_str": "0", "next_cursor_str": "1502276842028529447", "previous_cursor": 0} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index c306d6bc..0967fec4 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1150,3 +1150,58 @@ def testShowSubscription(self): include_entities=True, skip_status=True) self.assertFalse(resp.status) + + @responses.activate + def testGetSubscriptions(self): + with open('testdata/get_get_subscriptions.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/subscriptions.json?count=20&cursor=-1', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetSubscriptions() + self.assertEqual(len(resp), 1) + self.assertEqual(resp[0].name, 'space bots') + + @responses.activate + def testGetSubscriptionsSN(self): + with open('testdata/get_get_subscriptions_uid.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/subscriptions.json?count=20&cursor=-1&screen_name=inky', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetSubscriptions(screen_name='inky') + self.assertEqual(len(resp), 20) + self.assertTrue([isinstance(l, twitter.List) for l in resp]) + + @responses.activate + def testGetMemberships(self): + with open('testdata/get_get_memberships.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/memberships.json?count=20&cursor=-1', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetMemberships() + self.assertEqual(len(resp), 1) + self.assertEqual(resp[0].name, 'my-bots') + + with open('testdata/get_get_memberships_himawari8bot.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/memberships.json?count=20&cursor=-1&screen_name=himawari8bot', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetMemberships(screen_name='himawari8bot') + self.assertEqual(len(resp), 20) + self.assertTrue([isinstance(lst, twitter.List) for lst in resp]) + diff --git a/twitter/api.py b/twitter/api.py index 38a036bb..548aa2af 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3189,14 +3189,14 @@ def ShowSubscription(self, return User.NewFromJsonDict(data) - # TODO: test. def GetSubscriptions(self, user_id=None, screen_name=None, count=20, cursor=-1): """Obtain a collection of the lists the specified user is - subscribed to. + subscribed to. If neither user_id or screen_name is specified, the + data returned will be for the authenticated user. The list will contain a maximum of 20 lists per page by default. @@ -3209,43 +3209,32 @@ def GetSubscriptions(self, The screen name of the user for whom to return results for. count (int, optional): The amount of results to return per page. - No more than 1000 results will ever be returned in a single page. - Defaults to 20. [Optional] + No more than 1000 results will ever be returned in a single + page. Defaults to 20. cursor (int, optional): The "page" value that Twitter will use to start building the - list sequence from. Use the value of -1 to start at the beginning. - Twitter will return in the result the values for next_cursor - and previous_cursor. + list sequence from. Use the value of -1 to start at the + beginning. Twitter will return in the result the values for + next_cursor and previous_cursor. Returns: - twitter.list.List: A sequence of twitter.List instances, one for each list + twitter.list.List: A sequence of twitter.List instances, + one for each list """ url = '%s/lists/subscriptions.json' % (self.base_url) parameters = {} - try: - parameters['cursor'] = int(cursor) - except ValueError: - raise TwitterError({'message': "cursor must be an integer"}) - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) + parameters['cursor'] = enf_type('cursor', int, cursor) + parameters['count'] = enf_type('count', int, count) if user_id is not None: - try: - parameters['user_id'] = int(user_id) - except ValueError: - raise TwitterError({'message': "user_id must be an integer"}) + parameters['user_id'] = enf_type('user_id', int, user_id) elif screen_name is not None: parameters['screen_name'] = screen_name - else: - raise TwitterError({'message': "Specify user_id or screen_name"}) resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) return [List.NewFromJsonDict(x) for x in data['lists']] - # TODO: test. def GetMemberships(self, user_id=None, screen_name=None, From 3e1976b7631646273b8332f793fcead0a1352730 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 30 Jan 2016 12:48:40 -0500 Subject: [PATCH 166/533] rewrites tests for GetListsMembers/Paged --- testdata/get_list_members_0.json | 1 + testdata/get_list_members_1.json | 1 + testdata/get_list_members_extra_params.json | 1 + tests/test_api_30.py | 46 ++++++++++++++++++--- twitter/api.py | 15 ++++--- 5 files changed, 51 insertions(+), 13 deletions(-) create mode 100644 testdata/get_list_members_0.json create mode 100644 testdata/get_list_members_1.json create mode 100644 testdata/get_list_members_extra_params.json diff --git a/testdata/get_list_members_0.json b/testdata/get_list_members_0.json new file mode 100644 index 00000000..aa1488dd --- /dev/null +++ b/testdata/get_list_members_0.json @@ -0,0 +1 @@ +{"next_cursor": 4611686020936348428, "users": [{"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/659410881806135296/PdVxDc0W_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 362, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 4048395140, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 106, "friends_count": 0, "location": "", "description": "I am a bot that simulates a series of mechanical linkages (+ noise) to draw a curve 4x/day. // by @tinysubversions, inspired by @ra & @bahrami_", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/659410881806135296/PdVxDc0W_normal.png", "geo_enabled": false, "time_zone": null, "name": "Spinny Machine", "id_str": "4048395140", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CZ9xAlyWQAAVsZk.mp4"}], "aspect_ratio": [1, 1]}, "id": 693397122595569664, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "display_url": "pic.twitter.com/n6lbayOFFQ", "indices": [30, 53], "expanded_url": "http://twitter.com/spinnymachine/status/693397123023396864/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 360, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 360, "h": 360}}, "id_str": "693397122595569664", "url": "https://t.co/n6lbayOFFQ"}]}, "truncated": false, "id": 693397123023396864, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "a casually scorched northeast https://t.co/n6lbayOFFQ", "id_str": "693397123023396864", "entities": {"media": [{"type": "photo", "id": 693397122595569664, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ9xAlyWQAAVsZk.png", "display_url": "pic.twitter.com/n6lbayOFFQ", "indices": [30, 53], "expanded_url": "http://twitter.com/spinnymachine/status/693397123023396864/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 360, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 360, "h": 360}}, "id_str": "693397122595569664", "url": "https://t.co/n6lbayOFFQ"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Spinny Machine", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 11:35:31 +0000 2016"}, "is_translator": false, "screen_name": "spinnymachine", "created_at": "Wed Oct 28 16:43:01 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 6, "profile_image_url": "http://pbs.twimg.com/profile_images/658781950472138752/FOQCSbLg_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/OOS2jbeYND", "statuses_count": 135, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 4029020052, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "DBAF44", "followers_count": 23, "friends_count": 2, "location": "TV", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4029020052/1445900976", "description": "I'm a bot that tweets fake Empire plots, inspired by @eveewing https://t.co/OOS2jbeYND // by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658781950472138752/FOQCSbLg_normal.png", "geo_enabled": false, "time_zone": null, "name": "Empire Plots Bot", "id_str": "4029020052", "entities": {"description": {"urls": [{"display_url": "twitter.com/eveewing/statu\u2026", "indices": [63, 86], "expanded_url": "https://twitter.com/eveewing/status/658478802327183360", "url": "https://t.co/OOS2jbeYND"}]}, "url": {"urls": [{"display_url": "twitter.com/eveewing/statu\u2026", "indices": [0, 23], "expanded_url": "https://twitter.com/eveewing/status/658478802327183360", "url": "https://t.co/OOS2jbeYND"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 671831157646876672, "media_url": "http://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "media_url_https": "https://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "display_url": "pic.twitter.com/EQ8oGhG502", "indices": [101, 124], "expanded_url": "http://twitter.com/EmpirePlots/status/671831157739118593/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 400}, "small": {"resize": "fit", "w": 300, "h": 400}, "large": {"resize": "fit", "w": 300, "h": 400}}, "id_str": "671831157646876672", "url": "https://t.co/EQ8oGhG502"}]}, "truncated": false, "id": 671831157739118593, "place": null, "favorite_count": 1, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Jamal is stuck in a wild forest with Kene Holliday and can't find their way out (it's just a dream). https://t.co/EQ8oGhG502", "id_str": "671831157739118593", "entities": {"media": [{"type": "photo", "id": 671831157646876672, "media_url": "http://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "media_url_https": "https://pbs.twimg.com/media/CVLS4NyU4AAshFm.png", "display_url": "pic.twitter.com/EQ8oGhG502", "indices": [101, 124], "expanded_url": "http://twitter.com/EmpirePlots/status/671831157739118593/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 400}, "small": {"resize": "fit", "w": 300, "h": 400}, "large": {"resize": "fit", "w": 300, "h": 400}}, "id_str": "671831157646876672", "url": "https://t.co/EQ8oGhG502"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Empire Plots Bot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Dec 01 23:20:04 +0000 2015"}, "is_translator": false, "screen_name": "EmpirePlots", "created_at": "Mon Oct 26 22:49:42 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 25, "profile_image_url": "http://pbs.twimg.com/profile_images/652238580765462528/BQVTvFS9_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 346, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3829470974, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "027F45", "followers_count": 287, "friends_count": 1, "location": "Portland, OR", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3829470974/1444340849", "description": "Portland is such a weird place! We show real pics of places in Portland! ONLY IN PORTLAND as they say! // a bot by @tinysubversions, 4x daily", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652238580765462528/BQVTvFS9_normal.png", "geo_enabled": false, "time_zone": null, "name": "Wow So Portland!", "id_str": "3829470974", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693471873166761984, "media_url": "http://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "display_url": "pic.twitter.com/CF8JrGCQcY", "indices": [57, 80], "expanded_url": "http://twitter.com/wowsoportland/status/693471873246502912/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 600, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 600, "h": 300}}, "id_str": "693471873166761984", "url": "https://t.co/CF8JrGCQcY"}]}, "truncated": false, "id": 693471873246502912, "place": null, "favorite_count": 1, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "those silly Portlanders are always up to something funny https://t.co/CF8JrGCQcY", "id_str": "693471873246502912", "entities": {"media": [{"type": "photo", "id": 693471873166761984, "media_url": "http://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-0_pXUYAAGzn4.jpg", "display_url": "pic.twitter.com/CF8JrGCQcY", "indices": [57, 80], "expanded_url": "http://twitter.com/wowsoportland/status/693471873246502912/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 600, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 600, "h": 300}}, "id_str": "693471873166761984", "url": "https://t.co/CF8JrGCQcY"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Wow so portland", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:32:33 +0000 2016"}, "is_translator": false, "screen_name": "wowsoportland", "created_at": "Thu Oct 08 21:38:27 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 28, "profile_image_url": "http://pbs.twimg.com/profile_images/650161232540909568/yyvPEOnF_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/8fYJI1TWEs", "statuses_count": 515, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3765991992, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 331, "friends_count": 1, "location": "Mare Tranquilitatis", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3765991992/1443845573", "description": "Tweeting pics from the Project Apollo Archive, four times a day. Not affiliated with the Project Apollo Archive. // a bot by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": -28800, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650161232540909568/yyvPEOnF_normal.jpg", "geo_enabled": false, "time_zone": "Pacific Time (US & Canada)", "name": "Moon Shot Bot", "id_str": "3765991992", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "flickr.com/photos/project\u2026", "indices": [0, 23], "expanded_url": "https://www.flickr.com/photos/projectapolloarchive/", "url": "https://t.co/8fYJI1TWEs"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693470001316171776, "media_url": "http://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "display_url": "pic.twitter.com/2j5ezW6i9G", "indices": [103, 126], "expanded_url": "http://twitter.com/moonshotbot/status/693470003249684481/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1070}, "small": {"resize": "fit", "w": 340, "h": 355}, "medium": {"resize": "fit", "w": 600, "h": 627}}, "id_str": "693470001316171776", "url": "https://t.co/2j5ezW6i9G"}]}, "truncated": false, "id": 693470003249684481, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "\ud83c\udf0c\ud83c\udf18\ud83c\udf1b\nApollo 15 Hasselblad image from film magazine 97/O - lunar orbit view\n\ud83d\ude80\ud83c\udf1a\ud83c\udf19\n https://t.co/n4WH1ZTyuZ https://t.co/2j5ezW6i9G", "id_str": "693470003249684481", "entities": {"media": [{"type": "photo", "id": 693470001316171776, "media_url": "http://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-zSsLXEAAhEia.jpg", "display_url": "pic.twitter.com/2j5ezW6i9G", "indices": [103, 126], "expanded_url": "http://twitter.com/moonshotbot/status/693470003249684481/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1070}, "small": {"resize": "fit", "w": 340, "h": 355}, "medium": {"resize": "fit", "w": 600, "h": 627}}, "id_str": "693470001316171776", "url": "https://t.co/2j5ezW6i9G"}], "hashtags": [], "urls": [{"display_url": "flickr.com/photos/project\u2026", "indices": [79, 102], "expanded_url": "https://www.flickr.com/photos/projectapolloarchive/21831461788", "url": "https://t.co/n4WH1ZTyuZ"}], "symbols": [], "user_mentions": []}, "source": "Moon Shot Bot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:25:07 +0000 2016"}, "is_translator": false, "screen_name": "moonshotbot", "created_at": "Sat Oct 03 04:03:02 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 17, "profile_image_url": "http://pbs.twimg.com/profile_images/629374160993710081/q-lr9vsE_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/mRUwkqVO7i", "statuses_count": 598, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3406094211, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 133, "friends_count": 0, "location": "Not affiliated with the FBI", "description": "I tweet random pages from FOIA-requested FBI records, 4x/day. I'm a bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/629374160993710081/q-lr9vsE_normal.jpg", "geo_enabled": false, "time_zone": null, "name": "FBI Bot", "id_str": "3406094211", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "vault.fbi.gov", "indices": [0, 22], "expanded_url": "http://vault.fbi.gov", "url": "http://t.co/mRUwkqVO7i"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693483330080210944, "media_url": "http://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "media_url_https": "https://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "display_url": "pic.twitter.com/Dey5JLxCvb", "indices": [63, 86], "expanded_url": "http://twitter.com/FBIbot/status/693483330218622976/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 776}, "small": {"resize": "fit", "w": 340, "h": 439}, "large": {"resize": "fit", "w": 1000, "h": 1294}}, "id_str": "693483330080210944", "url": "https://t.co/Dey5JLxCvb"}]}, "truncated": false, "id": 693483330218622976, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "The FBI was watching Fred G. Randaccio https://t.co/NAkQc4FYKp https://t.co/Dey5JLxCvb", "id_str": "693483330218622976", "entities": {"media": [{"type": "photo", "id": 693483330080210944, "media_url": "http://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "media_url_https": "https://pbs.twimg.com/media/CZ-_ahsWAAADnwA.png", "display_url": "pic.twitter.com/Dey5JLxCvb", "indices": [63, 86], "expanded_url": "http://twitter.com/FBIbot/status/693483330218622976/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 776}, "small": {"resize": "fit", "w": 340, "h": 439}, "large": {"resize": "fit", "w": 1000, "h": 1294}}, "id_str": "693483330080210944", "url": "https://t.co/Dey5JLxCvb"}], "hashtags": [], "urls": [{"display_url": "vault.fbi.gov/frank-randaccio", "indices": [39, 62], "expanded_url": "https://vault.fbi.gov/frank-randaccio", "url": "https://t.co/NAkQc4FYKp"}], "symbols": [], "user_mentions": []}, "source": "FBIBot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:18:04 +0000 2016"}, "is_translator": false, "screen_name": "FBIbot", "created_at": "Thu Aug 06 19:28:10 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 23, "profile_image_url": "http://pbs.twimg.com/profile_images/631231593164607488/R4hRHjBI_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/6cpr8h0hGa", "statuses_count": 664, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3312790286, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 239, "friends_count": 0, "location": "", "description": "Animal videos sourced from @macaulaylibrary. Turn up the sound! // A bot by @tinysubversions. Not affiliated with the Macaulay Library.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/631231593164607488/R4hRHjBI_normal.png", "geo_enabled": false, "time_zone": null, "name": "Animal Video Bot", "id_str": "3312790286", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "macaulaylibrary.org", "indices": [0, 22], "expanded_url": "http://macaulaylibrary.org/", "url": "http://t.co/6cpr8h0hGa"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "ro", "extended_entities": {"media": [{"type": "video", "video_info": {"variants": [{"content_type": "video/webm", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/vid/640x360/hY01KGCSXl-isZzt.webm"}, {"content_type": "video/mp4", "bitrate": 320000, "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/vid/320x180/3NEGIMyzX2tdBm5i.mp4"}, {"content_type": "video/mp4", "bitrate": 832000, "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/vid/640x360/hY01KGCSXl-isZzt.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/pl/G53mlN6oslnMAWd5.m3u8"}, {"content_type": "application/dash+xml", "url": "https://video.twimg.com/ext_tw_video/693439580935094273/pu/pl/G53mlN6oslnMAWd5.mpd"}], "aspect_ratio": [16, 9], "duration_millis": 20021}, "id": 693439580935094273, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "display_url": "pic.twitter.com/aaGNPmPpni", "indices": [85, 108], "expanded_url": "http://twitter.com/AnimalVidBot/status/693439595946479617/video/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 640, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 191}, "medium": {"resize": "fit", "w": 600, "h": 338}}, "id_str": "693439580935094273", "url": "https://t.co/aaGNPmPpni"}]}, "truncated": false, "id": 693439595946479617, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Maui Parrotbill\n\nPseudonestor xanthophrys\nBarksdale, Timothy https://t.co/c6n9M2Cjnv https://t.co/aaGNPmPpni", "id_str": "693439595946479617", "entities": {"media": [{"type": "photo", "id": 693439580935094273, "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693439580935094273/pu/img/K0BdyKh0qQc3P5_N.jpg", "display_url": "pic.twitter.com/aaGNPmPpni", "indices": [85, 108], "expanded_url": "http://twitter.com/AnimalVidBot/status/693439595946479617/video/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 640, "h": 360}, "small": {"resize": "fit", "w": 340, "h": 191}, "medium": {"resize": "fit", "w": 600, "h": 338}}, "id_str": "693439580935094273", "url": "https://t.co/aaGNPmPpni"}], "hashtags": [], "urls": [{"display_url": "macaulaylibrary.org/video/428118", "indices": [61, 84], "expanded_url": "http://macaulaylibrary.org/video/428118", "url": "https://t.co/c6n9M2Cjnv"}], "symbols": [], "user_mentions": []}, "source": "Animal Video Bot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:24:17 +0000 2016"}, "is_translator": false, "screen_name": "AnimalVidBot", "created_at": "Tue Aug 11 22:25:35 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 10, "profile_image_url": "http://pbs.twimg.com/profile_images/624358417818238976/CfSPOEr4_normal.jpg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/YEWmunbcFZ", "statuses_count": 4, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3300809963, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 56, "friends_count": 0, "location": "The Most Relevant Ad Agency", "description": "The most happenin' new trends on the internet. // A bot by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/624358417818238976/CfSPOEr4_normal.jpg", "geo_enabled": false, "time_zone": null, "name": "Trend Reportz", "id_str": "3300809963", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "slideshare.net/trendreportz", "indices": [0, 22], "expanded_url": "http://www.slideshare.net/trendreportz", "url": "http://t.co/YEWmunbcFZ"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 1, "lang": "en", "truncated": false, "id": 638389840472600576, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "NEW REPORT! Learn what steamers mean to 7-18 y/o men http://t.co/veQGWz1Lqn", "id_str": "638389840472600576", "entities": {"hashtags": [], "urls": [{"display_url": "slideshare.net/trendreportz/t\u2026", "indices": [53, 75], "expanded_url": "http://www.slideshare.net/trendreportz/trends-in-steamers", "url": "http://t.co/veQGWz1Lqn"}], "symbols": [], "user_mentions": []}, "source": "Trend Reportz", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Aug 31 16:36:13 +0000 2015"}, "is_translator": false, "screen_name": "TrendReportz", "created_at": "Wed May 27 19:43:37 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/585540228439498752/OPHSe1Yw_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/lrCYkDGPrm", "statuses_count": 888, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3145355109, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 106, "friends_count": 1, "location": "The Middle East", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3145355109/1428438665", "description": "Public domain photos from the Qatar Digital Library of Middle Eastern (& nearby) history. Tweets 4x/day. // bot by @tinysubversions, not affiliated with the QDL", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/585540228439498752/OPHSe1Yw_normal.png", "geo_enabled": false, "time_zone": null, "name": "Middle East History", "id_str": "3145355109", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "qdl.qa/en/search/site\u2026", "indices": [0, 22], "expanded_url": "http://www.qdl.qa/en/search/site/?f%5B0%5D=document_source%3Aarchive_source", "url": "http://t.co/lrCYkDGPrm"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693479308619300866, "media_url": "http://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "display_url": "pic.twitter.com/xojYCSnUZu", "indices": [72, 95], "expanded_url": "http://twitter.com/MidEastHistory/status/693479308745113600/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1024}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 600, "h": 600}}, "id_str": "693479308619300866", "url": "https://t.co/xojYCSnUZu"}]}, "truncated": false, "id": 693479308745113600, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "'Distant View of Hormuz.' Photographer: Unknown https://t.co/hkDmSbTLgT https://t.co/xojYCSnUZu", "id_str": "693479308745113600", "entities": {"media": [{"type": "photo", "id": 693479308619300866, "media_url": "http://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-7wclWQAIpxlu.jpg", "display_url": "pic.twitter.com/xojYCSnUZu", "indices": [72, 95], "expanded_url": "http://twitter.com/MidEastHistory/status/693479308745113600/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1024}, "small": {"resize": "fit", "w": 340, "h": 340}, "medium": {"resize": "fit", "w": 600, "h": 600}}, "id_str": "693479308619300866", "url": "https://t.co/xojYCSnUZu"}], "hashtags": [], "urls": [{"display_url": "qdl.qa//en/archive/81\u2026", "indices": [48, 71], "expanded_url": "http://www.qdl.qa//en/archive/81055/vdc_100024111424.0x00000f", "url": "https://t.co/hkDmSbTLgT"}], "symbols": [], "user_mentions": []}, "source": "Mid east history pics", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:02:06 +0000 2016"}, "is_translator": false, "screen_name": "MidEastHistory", "created_at": "Tue Apr 07 20:27:15 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 99, "profile_image_url": "http://pbs.twimg.com/profile_images/584076161325473793/gufAEGJv_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/s6OmUwb6Bn", "statuses_count": 91531, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3131670665, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 46186, "friends_count": 1, "location": "Hogwarts", "description": "I'm the Sorting Hat and I'm here to say / I love sorting students in a major way // a bot by @tinysubversions, follow to get sorted!", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/584076161325473793/gufAEGJv_normal.png", "geo_enabled": false, "time_zone": null, "name": "The Sorting Hat Bot", "id_str": "3131670665", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tinysubversions.com/notes/sorting-\u2026", "indices": [0, 22], "expanded_url": "http://tinysubversions.com/notes/sorting-bot/", "url": "http://t.co/s6OmUwb6Bn"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693474779018362880, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 1210222826, "in_reply_to_status_id": null, "in_reply_to_screen_name": "Nyrfall", "text": "@Nyrfall The Sorting time is here at last, I know each time you send\nI've figured out that Slytherin's the right place for your blend", "id_str": "693474779018362880", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [0, 8], "id": 1210222826, "name": "Desi Sobrino", "screen_name": "Nyrfall", "id_str": "1210222826"}]}, "source": "The Sorting Hat Bot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": "1210222826", "retweeted": false, "created_at": "Sat Jan 30 16:44:06 +0000 2016"}, "is_translator": false, "screen_name": "SortingBot", "created_at": "Fri Apr 03 19:27:31 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 34, "profile_image_url": "http://pbs.twimg.com/profile_images/580173179236196352/nWsIPbqH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/2YPE0x0Knw", "statuses_count": 1233, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 3105672877, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 424, "friends_count": 0, "location": "NYC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3105672877/1427159206", "description": "Posting random flyers from hip hop's formative years every 6 hours. Most art by Buddy Esquire and Phase 2. Full collection at link. // a bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/580173179236196352/nWsIPbqH_normal.png", "geo_enabled": false, "time_zone": null, "name": "Old School Flyers", "id_str": "3105672877", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "toledohiphop.org/images/old_sch\u2026", "indices": [0, 22], "expanded_url": "http://www.toledohiphop.org/images/old_school_source_code/", "url": "http://t.co/2YPE0x0Knw"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "photo", "id": 693422418480742400, "media_url": "http://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "display_url": "pic.twitter.com/B7jv7lwB9S", "indices": [0, 23], "expanded_url": "http://twitter.com/oldschoolflyers/status/693422418929524736/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 503, "h": 646}, "small": {"resize": "fit", "w": 340, "h": 435}, "medium": {"resize": "fit", "w": 503, "h": 646}}, "id_str": "693422418480742400", "url": "https://t.co/B7jv7lwB9S"}]}, "truncated": false, "id": 693422418929524736, "place": null, "favorite_count": 1, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "https://t.co/B7jv7lwB9S", "id_str": "693422418929524736", "entities": {"media": [{"type": "photo", "id": 693422418480742400, "media_url": "http://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-IBATWQAAhkZA.jpg", "display_url": "pic.twitter.com/B7jv7lwB9S", "indices": [0, 23], "expanded_url": "http://twitter.com/oldschoolflyers/status/693422418929524736/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 503, "h": 646}, "small": {"resize": "fit", "w": 340, "h": 435}, "medium": {"resize": "fit", "w": 503, "h": 646}}, "id_str": "693422418480742400", "url": "https://t.co/B7jv7lwB9S"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "oldschoolflyers", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:16:02 +0000 2016"}, "is_translator": false, "screen_name": "oldschoolflyers", "created_at": "Tue Mar 24 00:55:10 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 41, "profile_image_url": "http://pbs.twimg.com/profile_images/561971159927771136/sEQ5u1zM_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1396, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 3010688583, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "961EE4", "followers_count": 243, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3010688583/1422819642", "description": "DAD: weird conversation joke is bae ME: ugh dad no DAD: [something unhip] // a bot by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/561971159927771136/sEQ5u1zM_normal.png", "geo_enabled": false, "time_zone": null, "name": "Weird Convo Bot", "id_str": "3010688583", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693429980093620224, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "DOG: Wtf are you bae'\nME: fart. Ugh.\nDOG: so sex with me is sex vape\nME: Wtf are you skeleton'", "id_str": "693429980093620224", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "WeirdConvoBot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:46:05 +0000 2016"}, "is_translator": false, "screen_name": "WeirdConvoBot", "created_at": "Sun Feb 01 19:05:21 +0000 2015"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 110, "profile_image_url": "http://pbs.twimg.com/profile_images/556129692554493953/82ISdQxF_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/3gDtETAFpu", "statuses_count": 1510, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2981339967, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1308, "friends_count": 1, "location": "Frankfurt School", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2981339967/1421426775", "description": "We love #innovation and are always thinking of the next #disruptive startup #idea! // a bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/556129692554493953/82ISdQxF_normal.png", "geo_enabled": false, "time_zone": null, "name": "Hottest Startups", "id_str": "2981339967", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "marxists.org/archive/index.\u2026", "indices": [0, 22], "expanded_url": "http://www.marxists.org/archive/index.htm", "url": "http://t.co/3gDtETAFpu"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693477791883350016, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Startup idea: The architect thinks of the building contractor as a layman who tells him what he needs and what he can pay.", "id_str": "693477791883350016", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "hottest startups", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:56:04 +0000 2016"}, "is_translator": false, "screen_name": "HottestStartups", "created_at": "Fri Jan 16 16:33:45 +0000 2015"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 40, "profile_image_url": "http://pbs.twimg.com/profile_images/549979314541039617/fZ_XDnWz_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6748, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2951486632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "FFCC4D", "followers_count": 3155, "friends_count": 1, "location": "(bot by @tinysubversions)", "description": "We are the Academy For Annual Recognition and each year we give out the Yearly Awards. Follow (or re-follow) for your award! Warning: sometimes it's mean.", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/549979314541039617/fZ_XDnWz_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "The Yearly Awards", "id_str": "2951486632", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CZ-2l2fWwAEH6MB.mp4"}], "aspect_ratio": [4, 3]}, "id": 693473629036789761, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "display_url": "pic.twitter.com/XGDD3tMJPF", "indices": [86, 109], "expanded_url": "http://twitter.com/YearlyAwards/status/693473629766598656/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 400, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 255}, "large": {"resize": "fit", "w": 400, "h": 300}}, "id_str": "693473629036789761", "url": "https://t.co/XGDD3tMJPF"}]}, "truncated": false, "id": 693473629766598656, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 4863901738, "in_reply_to_status_id": null, "in_reply_to_screen_name": "know_fast", "text": "@know_fast It's official: you're the Least Prodigiously Despondent Confidant of 2015! https://t.co/XGDD3tMJPF", "id_str": "693473629766598656", "entities": {"media": [{"type": "photo", "id": 693473629036789761, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-2l2fWwAEH6MB.png", "display_url": "pic.twitter.com/XGDD3tMJPF", "indices": [86, 109], "expanded_url": "http://twitter.com/YearlyAwards/status/693473629766598656/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 400, "h": 300}, "small": {"resize": "fit", "w": 340, "h": 255}, "large": {"resize": "fit", "w": 400, "h": 300}}, "id_str": "693473629036789761", "url": "https://t.co/XGDD3tMJPF"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [0, 10], "id": 4863901738, "name": "Know Fast", "screen_name": "know_fast", "id_str": "4863901738"}]}, "source": "The Yearly Awards", "contributors": null, "favorited": false, "in_reply_to_user_id_str": "4863901738", "retweeted": false, "created_at": "Sat Jan 30 16:39:32 +0000 2016"}, "is_translator": false, "screen_name": "YearlyAwards", "created_at": "Tue Dec 30 16:59:34 +0000 2014"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 20, "profile_image_url": "http://pbs.twimg.com/profile_images/512673377283080194/eFnJQJSp_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1972, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2817629347, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "ABB8C2", "followers_count": 93, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2817629347/1411065932", "description": "Wise sayings, four times daily. by @tinysubversions", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/512673377283080194/eFnJQJSp_normal.png", "geo_enabled": false, "time_zone": null, "name": "Received Wisdom", "id_str": "2817629347", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693418402392719360, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Water is thicker than blood.", "id_str": "693418402392719360", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Received Wisdom", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:00:04 +0000 2016"}, "is_translator": false, "screen_name": "received_wisdom", "created_at": "Thu Sep 18 18:32:38 +0000 2014"}, {"notifications": false, "profile_use_background_image": false, "has_extended_profile": false, "listed_count": 11, "profile_image_url": "http://pbs.twimg.com/profile_images/517404591218900992/kf2iYD1f_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1767, "profile_text_color": "000000", "profile_background_tile": false, "follow_request_sent": false, "id": 2798799669, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "4A913C", "followers_count": 40, "friends_count": 0, "location": "Everywhere", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2798799669/1412195008", "description": "Chronicling men doing things. // A bot by @tinysubversions, Powered By Giphy", "profile_sidebar_fill_color": "000000", "default_profile": false, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "000000", "is_translation_enabled": false, "profile_sidebar_border_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517404591218900992/kf2iYD1f_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Men Doing Things", "id_str": "2798799669", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CZ-WORAWQAED6It.mp4"}], "aspect_ratio": [167, 104]}, "id": 693438039465541633, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "display_url": "pic.twitter.com/wsk2GyEsGh", "indices": [37, 60], "expanded_url": "http://twitter.com/MenDoing/status/693438039801073664/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 334, "h": 208}, "small": {"resize": "fit", "w": 334, "h": 208}, "large": {"resize": "fit", "w": 334, "h": 208}}, "id_str": "693438039465541633", "url": "https://t.co/wsk2GyEsGh"}]}, "truncated": false, "id": 693438039801073664, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Men Authoring Landmarks in Manhattan https://t.co/wsk2GyEsGh", "id_str": "693438039801073664", "entities": {"media": [{"type": "photo", "id": 693438039465541633, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CZ-WORAWQAED6It.png", "display_url": "pic.twitter.com/wsk2GyEsGh", "indices": [37, 60], "expanded_url": "http://twitter.com/MenDoing/status/693438039801073664/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 334, "h": 208}, "small": {"resize": "fit", "w": 334, "h": 208}, "large": {"resize": "fit", "w": 334, "h": 208}}, "id_str": "693438039465541633", "url": "https://t.co/wsk2GyEsGh"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Men Doing Things", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:18:06 +0000 2016"}, "is_translator": false, "screen_name": "MenDoing", "created_at": "Wed Oct 01 19:59:55 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 139, "profile_image_url": "http://pbs.twimg.com/profile_images/495988901790482432/le2-dKgs_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/r2HzjsqHTU", "statuses_count": 2157, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2704554914, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1172, "friends_count": 1, "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2704554914/1407087962", "description": "A bot that picks a word and then draws randomly until an OCR library (http://t.co/XmDeI5TWoF) reads that word. 4x daily. Also on Tumblr. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495988901790482432/le2-dKgs_normal.png", "geo_enabled": false, "time_zone": null, "name": "Reverse OCR", "id_str": "2704554914", "entities": {"description": {"urls": [{"display_url": "antimatter15.com/ocrad.js/demo.\u2026", "indices": [70, 92], "expanded_url": "http://antimatter15.com/ocrad.js/demo.html", "url": "http://t.co/XmDeI5TWoF"}]}, "url": {"urls": [{"display_url": "reverseocr.tumblr.com", "indices": [0, 22], "expanded_url": "http://reverseocr.tumblr.com", "url": "http://t.co/r2HzjsqHTU"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "photo", "id": 693404391072776192, "media_url": "http://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "display_url": "pic.twitter.com/WbD9lkNarf", "indices": [8, 31], "expanded_url": "http://twitter.com/reverseocr/status/693404391160860673/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 150}, "small": {"resize": "fit", "w": 340, "h": 85}, "large": {"resize": "fit", "w": 800, "h": 200}}, "id_str": "693404391072776192", "url": "https://t.co/WbD9lkNarf"}]}, "truncated": false, "id": 693404391160860673, "place": null, "favorite_count": 2, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "larceny https://t.co/WbD9lkNarf", "id_str": "693404391160860673", "entities": {"media": [{"type": "photo", "id": 693404391072776192, "media_url": "http://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ93nq-WwAAdSAo.jpg", "display_url": "pic.twitter.com/WbD9lkNarf", "indices": [8, 31], "expanded_url": "http://twitter.com/reverseocr/status/693404391160860673/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 150}, "small": {"resize": "fit", "w": 340, "h": 85}, "large": {"resize": "fit", "w": 800, "h": 200}}, "id_str": "693404391072776192", "url": "https://t.co/WbD9lkNarf"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Reverse OCR", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 12:04:24 +0000 2016"}, "is_translator": false, "screen_name": "reverseocr", "created_at": "Sun Aug 03 17:26:28 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 5, "profile_image_url": "http://pbs.twimg.com/profile_images/479836451182362624/0fAtv_AN_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 2, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2577963498, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 14, "friends_count": 1, "location": "", "description": "Deploying GIFs every six hours. // by @tinysubvesions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479836451182362624/0fAtv_AN_normal.png", "geo_enabled": false, "time_zone": null, "name": "GIF Deployer", "id_str": "2577963498", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/BqkTB2fIEAA8zCs.mp4"}], "aspect_ratio": [1, 1]}, "id": 479935757818531840, "media_url": "http://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "display_url": "pic.twitter.com/WEYISUSsJR", "indices": [21, 43], "expanded_url": "http://twitter.com/gifDeployer/status/479935760033153024/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 600}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 612, "h": 612}}, "id_str": "479935757818531840", "url": "http://t.co/WEYISUSsJR"}]}, "truncated": false, "id": 479935760033153024, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Vietnamese decadence http://t.co/WEYISUSsJR", "id_str": "479935760033153024", "entities": {"media": [{"type": "photo", "id": 479935757818531840, "media_url": "http://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/BqkTB2fIEAA8zCs.png", "display_url": "pic.twitter.com/WEYISUSsJR", "indices": [21, 43], "expanded_url": "http://twitter.com/gifDeployer/status/479935760033153024/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 600}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 612, "h": 612}}, "id_str": "479935757818531840", "url": "http://t.co/WEYISUSsJR"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "GIF Deployer", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Fri Jun 20 10:36:16 +0000 2014"}, "is_translator": false, "screen_name": "gifDeployer", "created_at": "Fri Jun 20 03:56:13 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 48, "profile_image_url": "http://pbs.twimg.com/profile_images/479364877551538176/HN0wLHbt_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/XJeqwaDhQg", "statuses_count": 11970, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2575445382, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 428, "friends_count": 1, "location": "", "description": "Generating new aesthetics every hour. Botpunk. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -18000, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479364877551538176/HN0wLHbt_normal.png", "geo_enabled": false, "time_zone": "Eastern Time (US & Canada)", "name": "Brand New Aesthetics", "id_str": "2575445382", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "brand-new-aesthetics.tumblr.com", "indices": [0, 22], "expanded_url": "http://brand-new-aesthetics.tumblr.com", "url": "http://t.co/XJeqwaDhQg"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "da", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/CX5BF-lWMAEyoPA.mp4"}], "aspect_ratio": [3, 2]}, "id": 684055764361687041, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "display_url": "pic.twitter.com/d4ZGIYqyt9", "indices": [13, 36], "expanded_url": "http://twitter.com/neweraesthetics/status/684055764768522240/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 200}, "small": {"resize": "fit", "w": 300, "h": 200}, "large": {"resize": "fit", "w": 300, "h": 200}}, "id_str": "684055764361687041", "url": "https://t.co/d4ZGIYqyt9"}]}, "truncated": false, "id": 684055764768522240, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "SOLUTIONPUNK https://t.co/d4ZGIYqyt9", "id_str": "684055764768522240", "entities": {"media": [{"type": "photo", "id": 684055764361687041, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CX5BF-lWMAEyoPA.png", "display_url": "pic.twitter.com/d4ZGIYqyt9", "indices": [13, 36], "expanded_url": "http://twitter.com/neweraesthetics/status/684055764768522240/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 300, "h": 200}, "small": {"resize": "fit", "w": 300, "h": 200}, "large": {"resize": "fit", "w": 300, "h": 200}}, "id_str": "684055764361687041", "url": "https://t.co/d4ZGIYqyt9"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Brand New Aesthetics", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Jan 04 16:56:18 +0000 2016"}, "is_translator": false, "screen_name": "neweraesthetics", "created_at": "Wed Jun 18 20:39:25 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 12, "profile_image_url": "http://pbs.twimg.com/profile_images/479355596076892160/p_jT5KqM_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/DZYA6d8tU5", "statuses_count": 8587, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2575407888, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 113, "friends_count": 1, "location": "Bodymore, Murdaland", "description": "This Twitter account automatically tweets GIFs of The Wire. Also a Tumblr. Updates hourly. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/479355596076892160/p_jT5KqM_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Scenes from The Wire", "id_str": "2575407888", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "wirescenes.tumblr.com", "indices": [0, 22], "expanded_url": "http://wirescenes.tumblr.com/", "url": "http://t.co/DZYA6d8tU5"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "animated_gif", "video_info": {"variants": [{"content_type": "video/mp4", "bitrate": 0, "url": "https://pbs.twimg.com/tweet_video/COXAcgVU8AACS4W.mp4"}], "aspect_ratio": [132, 119]}, "id": 641130117918420992, "media_url": "http://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "display_url": "pic.twitter.com/XBoaB2klZq", "indices": [0, 22], "expanded_url": "http://twitter.com/wirescenes/status/641130118132314112/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 264, "h": 238}, "small": {"resize": "fit", "w": 264, "h": 238}, "medium": {"resize": "fit", "w": 264, "h": 238}}, "id_str": "641130117918420992", "url": "http://t.co/XBoaB2klZq"}]}, "truncated": false, "id": 641130118132314112, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "http://t.co/XBoaB2klZq", "id_str": "641130118132314112", "entities": {"media": [{"type": "photo", "id": 641130117918420992, "media_url": "http://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/COXAcgVU8AACS4W.png", "display_url": "pic.twitter.com/XBoaB2klZq", "indices": [0, 22], "expanded_url": "http://twitter.com/wirescenes/status/641130118132314112/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 264, "h": 238}, "small": {"resize": "fit", "w": 264, "h": 238}, "medium": {"resize": "fit", "w": 264, "h": 238}}, "id_str": "641130117918420992", "url": "http://t.co/XBoaB2klZq"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Scenes from The Wire", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Sep 08 06:05:06 +0000 2015"}, "is_translator": false, "screen_name": "wirescenes", "created_at": "Wed Jun 18 20:08:31 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 229, "profile_image_url": "http://pbs.twimg.com/profile_images/468570294253150208/DlK5sGe2_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/qTVWPkaIgo", "statuses_count": 2026, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2508960524, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 4176, "friends_count": 1, "location": "(not affiliated with the Met)", "description": "I am a bot that tweets a random high-res Open Access image from the Metropolitan Museum of Art, four times a day. // by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 3, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/468570294253150208/DlK5sGe2_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Museum Bot", "id_str": "2508960524", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "metmuseum.org/about-the-muse\u2026", "indices": [0, 22], "expanded_url": "http://metmuseum.org/about-the-museum/press-room/news/2014/oasc-access", "url": "http://t.co/qTVWPkaIgo"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 3, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693407092623949824, "media_url": "http://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "display_url": "pic.twitter.com/mRktzdlEB1", "indices": [33, 56], "expanded_url": "http://twitter.com/MuseumBot/status/693407092863033344/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1247}, "small": {"resize": "fit", "w": 340, "h": 414}, "medium": {"resize": "fit", "w": 600, "h": 730}}, "id_str": "693407092623949824", "url": "https://t.co/mRktzdlEB1"}]}, "truncated": false, "id": 693407092863033344, "place": null, "favorite_count": 2, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Nativity https://t.co/OpNseJO3oL https://t.co/mRktzdlEB1", "id_str": "693407092863033344", "entities": {"media": [{"type": "photo", "id": 693407092623949824, "media_url": "http://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ96E7CWQAAVYYz.jpg", "display_url": "pic.twitter.com/mRktzdlEB1", "indices": [33, 56], "expanded_url": "http://twitter.com/MuseumBot/status/693407092863033344/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 1024, "h": 1247}, "small": {"resize": "fit", "w": 340, "h": 414}, "medium": {"resize": "fit", "w": 600, "h": 730}}, "id_str": "693407092623949824", "url": "https://t.co/mRktzdlEB1"}], "hashtags": [], "urls": [{"display_url": "metmuseum.org/collection/the\u2026", "indices": [9, 32], "expanded_url": "http://www.metmuseum.org/collection/the-collection-online/search/462886?rpp=30&pg=1413&rndkey=20160130&ao=on&ft=*&pos=42373", "url": "https://t.co/OpNseJO3oL"}], "symbols": [], "user_mentions": []}, "source": "Museum bot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 12:15:08 +0000 2016"}, "is_translator": false, "screen_name": "MuseumBot", "created_at": "Tue May 20 01:32:24 +0000 2014"}], "previous_cursor_str": "0", "next_cursor_str": "4611686020936348428", "previous_cursor": 0} \ No newline at end of file diff --git a/testdata/get_list_members_1.json b/testdata/get_list_members_1.json new file mode 100644 index 00000000..bf10977c --- /dev/null +++ b/testdata/get_list_members_1.json @@ -0,0 +1 @@ +{"next_cursor": 0, "users": [{"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1946, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2488961221, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 83, "friends_count": 1, "location": "", "description": "Huh? What? You had a... a wish. I see. Hold on. Let me whip something up for you. // A bot by @tinysubversions, tweets a few times a day", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "geo_enabled": false, "time_zone": null, "name": "Distracted Genie", "id_str": "2488961221", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": true, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693472756780945409, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "I'm sorry, I wasn't listening. Here's the Ar you asked for. https://t.co/CkRDgpmJ7Y", "quoted_status_id": 693466366083379200, "id_str": "693472756780945409", "entities": {"hashtags": [], "urls": [{"display_url": "twitter.com/Bcline_24/stat\u2026", "indices": [60, 83], "expanded_url": "http://twitter.com/Bcline_24/status/693467336901144576", "url": "https://t.co/CkRDgpmJ7Y"}], "symbols": [], "user_mentions": []}, "source": "Distracted Genie", "contributors": null, "favorited": false, "quoted_status_id_str": "693466366083379200", "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:36:03 +0000 2016"}, "is_translator": false, "screen_name": "DistractedGenie", "created_at": "Sat May 10 23:17:18 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 54, "profile_image_url": "http://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/AnWK33b4kA", "statuses_count": 2111, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2423944147, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 679, "friends_count": 1, "location": "", "description": "Enlighten your brain with miracles of pics that will astound. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "geo_enabled": false, "time_zone": null, "name": "Miraculous Pictures", "id_str": "2423944147", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/picpedant", "indices": [0, 23], "expanded_url": "https://twitter.com/picpedant", "url": "https://t.co/AnWK33b4kA"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693463710988423168, "media_url": "http://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "display_url": "pic.twitter.com/LbTji1i64B", "indices": [33, 56], "expanded_url": "http://twitter.com/MiraculousPics/status/693463711114199040/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 399, "h": 400}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 399, "h": 400}}, "id_str": "693463710988423168", "url": "https://t.co/LbTji1i64B"}]}, "truncated": false, "id": 693463711114199040, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Jimi Hendrix at Winterland, 1968 https://t.co/LbTji1i64B", "id_str": "693463711114199040", "entities": {"media": [{"type": "photo", "id": 693463710988423168, "media_url": "http://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-tki4W0AAObTO.jpg", "display_url": "pic.twitter.com/LbTji1i64B", "indices": [33, 56], "expanded_url": "http://twitter.com/MiraculousPics/status/693463711114199040/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 399, "h": 400}, "small": {"resize": "fit", "w": 340, "h": 340}, "large": {"resize": "fit", "w": 399, "h": 400}}, "id_str": "693463710988423168", "url": "https://t.co/LbTji1i64B"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Miraculous Pics", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:00:07 +0000 2016"}, "is_translator": false, "screen_name": "MiraculousPics", "created_at": "Wed Apr 02 14:58:21 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 107, "profile_image_url": "http://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1179, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2418365564, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1180, "friends_count": 1, "location": "", "description": "Absurd charts, twice daily. You get one flow chart and one Venn diagram. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -14400, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "geo_enabled": false, "time_zone": "Atlantic Time (Canada)", "name": "Auto Charts", "id_str": "2418365564", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "und", "extended_entities": {"media": [{"type": "photo", "id": 693478803285344257, "media_url": "http://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "media_url_https": "https://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "display_url": "pic.twitter.com/b9NdsoHNJU", "indices": [0, 23], "expanded_url": "http://twitter.com/AutoCharts/status/693478803406987264/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 313}, "small": {"resize": "fit", "w": 340, "h": 177}, "large": {"resize": "fit", "w": 1024, "h": 535}}, "id_str": "693478803285344257", "url": "https://t.co/b9NdsoHNJU"}]}, "truncated": false, "id": 693478803406987264, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "https://t.co/b9NdsoHNJU", "id_str": "693478803406987264", "entities": {"media": [{"type": "photo", "id": 693478803285344257, "media_url": "http://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "media_url_https": "https://pbs.twimg.com/media/CZ-7TCEWAAEhzvt.png", "display_url": "pic.twitter.com/b9NdsoHNJU", "indices": [0, 23], "expanded_url": "http://twitter.com/AutoCharts/status/693478803406987264/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 600, "h": 313}, "small": {"resize": "fit", "w": 340, "h": 177}, "large": {"resize": "fit", "w": 1024, "h": 535}}, "id_str": "693478803285344257", "url": "https://t.co/b9NdsoHNJU"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "autocharts", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:00:05 +0000 2016"}, "is_translator": false, "screen_name": "AutoCharts", "created_at": "Sun Mar 30 03:16:20 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5164, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2409784321, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 133, "friends_count": 1, "location": "Everywhere", "description": "There are a lot of game jams. So here. Have a new one every three hours. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "geo_enabled": false, "time_zone": null, "name": "So Many Game Jams", "id_str": "2409784321", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693485835770056706, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Charity Game Jam for Snapchat #SnapchatJam", "id_str": "693485835770056706", "entities": {"hashtags": [{"indices": [30, 42], "text": "SnapchatJam"}], "urls": [], "symbols": [], "user_mentions": []}, "source": "somanyjams", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:28:02 +0000 2016"}, "is_translator": false, "screen_name": "ManyJams", "created_at": "Tue Mar 25 00:36:22 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 9, "profile_image_url": "http://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 4402, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2383588777, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 33, "friends_count": 1, "location": "", "description": "Because memcached is magic. I'm a bot that updates every 3 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "geo_enabled": false, "time_zone": null, "name": "memcached magic", "id_str": "2383588777", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 635791956451438592, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "what the chuff is memcached tap", "id_str": "635791956451438592", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Memcached Magic", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Aug 24 12:33:09 +0000 2015"}, "is_translator": false, "screen_name": "memcached_magic", "created_at": "Tue Mar 11 11:33:50 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 37, "profile_image_url": "http://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/d3IzI1yBRi", "statuses_count": 10480, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2366009953, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 400, "friends_count": 1, "location": "Botston, Kazemistan", "description": "@tinysubversions made me: I am a bot that retweets any bots by him when a tweet reaches a certain fav/RT threshold.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "geo_enabled": false, "time_zone": null, "name": "Best of Darius' Bots", "id_str": "2366009953", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/tinysubversion\u2026", "indices": [0, 23], "expanded_url": "https://twitter.com/tinysubversions/darius-kazemi-s-bots/members", "url": "https://t.co/d3IzI1yBRi"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 4, "lang": "en", "truncated": false, "id": 693458662090625024, "place": null, "favorite_count": 0, "retweeted_status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 4, "lang": "en", "truncated": false, "id": 693435512363859969, "place": null, "favorite_count": 3, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "15 alternatives to People Are", "id_str": "693435512363859969", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Two Headlines", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:08:04 +0000 2016"}, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "RT @TwoHeadlines: 15 alternatives to People Are", "id_str": "693458662090625024", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [3, 16], "id": 1705052335, "name": "Two Headlines", "screen_name": "TwoHeadlines", "id_str": "1705052335"}]}, "source": "Darius Bots", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:40:03 +0000 2016"}, "is_translator": false, "screen_name": "dariusbots", "created_at": "Fri Feb 28 18:55:40 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 53, "profile_image_url": "http://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 8933, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2353711584, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 505, "friends_count": 1, "location": "", "description": "Twitter bot for my real friends, real bot for my Twitter friends. Tweets every two hours. by @tinysubversions, powered by @wordnik (see also @twoheadlines)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "geo_enabled": false, "time_zone": null, "name": "For my real friends.", "id_str": "2353711584", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693485067121860608, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "real tie-breaker for my ordinary folks, ordinary tie-breaker for my real folks.", "id_str": "693485067121860608", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "For my real friends", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:24:58 +0000 2016"}, "is_translator": false, "screen_name": "4myrealfriends", "created_at": "Thu Feb 20 19:52:17 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 2576, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2305621754, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 812, "friends_count": 1, "location": "The Internet", "description": "HOW TO VOTE: reply to a tweet with 'F' 'M' and 'K' in the order you want to vote. ('MFK' = marry, fuck, kill). A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "geo_enabled": false, "time_zone": null, "name": "Fuck, Marry, Kill", "id_str": "2305621754", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 562339164193325056, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Hi all. Shutting this bot down. It was fun & did what it was supposed to do but is p repetitive now. Thanks for playing!\n -@tinysubversions", "id_str": "562339164193325056", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": [{"indices": [127, 143], "id": 14475298, "name": "Darius Kazemi", "screen_name": "tinysubversions", "id_str": "14475298"}]}, "source": "TweetDeck", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Feb 02 19:57:59 +0000 2015"}, "is_translator": false, "screen_name": "FMKVote", "created_at": "Wed Jan 22 23:34:33 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 573, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2295281700, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 161, "friends_count": 1, "location": "", "description": "Once a day I generate a random [Whatever] Clicker style game, based on a theme. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Clicker Maker", "id_str": "2295281700", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 671690229510721536, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Today's game is: Value Clicker! https://t.co/tts1yo4Usb", "id_str": "671690229510721536", "entities": {"hashtags": [], "urls": [{"display_url": "orteil.dashnet.org/experiments/id\u2026", "indices": [32, 55], "expanded_url": "http://orteil.dashnet.org/experiments/idlegamemaker/?game=mq5N6W9E", "url": "https://t.co/tts1yo4Usb"}], "symbols": [], "user_mentions": []}, "source": "Clicker Maker", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Dec 01 14:00:04 +0000 2015"}, "is_translator": false, "screen_name": "ClickerMaker", "created_at": "Fri Jan 17 01:37:04 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5057, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2276411904, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 1, "location": "", "description": "These might be Steam codes, but they probably aren't. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Steem Codes", "id_str": "2276411904", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "es", "truncated": false, "id": 625842808843280384, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "E0QE6-5W2XU-BMDTO", "id_str": "625842808843280384", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Steem Codes", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Jul 28 01:38:47 +0000 2015"}, "is_translator": false, "screen_name": "SteemCodes", "created_at": "Sat Jan 04 17:31:00 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 23, "profile_image_url": "http://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 135021, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2248819836, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 82, "friends_count": 2, "location": "USSR/Cuba/China", "description": "I am a bot and I love communism so much. I wish there was another bot out there that would talk to me. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "geo_enabled": false, "time_zone": null, "name": "Red Scare Honeypot", "id_str": "2248819836", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 481624063455297536, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "I do think that B&C should never change its rules to include any type of Marx harvested within fences, regar", "id_str": "481624063455297536", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Red Scare Pot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Wed Jun 25 02:24:59 +0000 2014"}, "is_translator": false, "screen_name": "RedScarePot", "created_at": "Mon Dec 16 14:14:28 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 28, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/IT8V4SXHgS", "statuses_count": 2404, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2230101666, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 327, "friends_count": 1, "location": "An Alternate Universe", "description": "Illuminated alternate universe romances of fictional characters. Tweets every six hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "geo_enabled": false, "time_zone": null, "name": "Alt Universe Prompts", "id_str": "2230101666", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "au-prompts.tumblr.com", "indices": [0, 22], "expanded_url": "http://au-prompts.tumblr.com", "url": "http://t.co/IT8V4SXHgS"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "extended_entities": {"media": [{"type": "photo", "id": 693474784630276096, "media_url": "http://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "display_url": "pic.twitter.com/3u470QCWtV", "indices": [48, 71], "expanded_url": "http://twitter.com/AU_Prompts/status/693474784785539073/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 400, "h": 200}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 400, "h": 200}}, "id_str": "693474784630276096", "url": "https://t.co/3u470QCWtV"}]}, "truncated": false, "id": 693474784785539073, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Claire Littleton and Spike in Tampa for Gaspy \u2639 https://t.co/3u470QCWtV", "id_str": "693474784785539073", "entities": {"media": [{"type": "photo", "id": 693474784630276096, "media_url": "http://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "media_url_https": "https://pbs.twimg.com/media/CZ-3pHaUAAAvIKW.jpg", "display_url": "pic.twitter.com/3u470QCWtV", "indices": [48, 71], "expanded_url": "http://twitter.com/AU_Prompts/status/693474784785539073/photo/1", "sizes": {"thumb": {"resize": "crop", "w": 150, "h": 150}, "large": {"resize": "fit", "w": 400, "h": 200}, "small": {"resize": "fit", "w": 340, "h": 170}, "medium": {"resize": "fit", "w": 400, "h": 200}}, "id_str": "693474784630276096", "url": "https://t.co/3u470QCWtV"}], "hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "AU Prompts", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:44:07 +0000 2016"}, "is_translator": false, "screen_name": "AU_Prompts", "created_at": "Wed Dec 04 15:31:05 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 19, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/cvLCVa3u0L", "statuses_count": 8736, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2201332182, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 526, "friends_count": 1, "location": "Kenosha", "description": "Brute-forcing an episode from Gravity's Rainbow. Tweets every two hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Kenosha Kid", "id_str": "2201332182", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "itre.cis.upenn.edu/~myl/languagel\u2026", "indices": [0, 22], "expanded_url": "http://itre.cis.upenn.edu/~myl/languagelog/archives/001288.html", "url": "http://t.co/cvLCVa3u0L"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693470987065638912, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "You never did the... Kenosha kid!", "id_str": "693470987065638912", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "kenosha kid", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:29:02 +0000 2016"}, "is_translator": false, "screen_name": "YouNeverDidThe", "created_at": "Mon Nov 18 13:42:53 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 13, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6258, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2165015054, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 44, "friends_count": 0, "location": "rutabagas", "description": "Rutabaga is funny vegetaeble. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Rutabaga", "id_str": "2165015054", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693456924147322881, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Separating the rutabagaa from the boys, on mood swing at a time.", "id_str": "693456924147322881", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "FactBot Rutabaga", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:33:09 +0000 2016"}, "is_translator": false, "screen_name": "FactBotRutabaga", "created_at": "Wed Oct 30 15:50:18 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 22, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2164997376, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 0, "location": "carrots", "description": "Carrot is funnye vegetable. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Carrot", "id_str": "2164997376", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693456924126371840, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Separating the carrot from the boys, onao mood swing at a time.", "id_str": "693456924126371840", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "FactBotCarrot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:33:09 +0000 2016"}, "is_translator": false, "screen_name": "FactBotCarrot", "created_at": "Wed Oct 30 15:41:39 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 401, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2157584160, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 67, "friends_count": 1, "location": "Vineland", "description": "Automatically generated YouTube music videos. One in the day, and one at night. Because why not. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "geo_enabled": false, "time_zone": null, "name": "AutoVids", "id_str": "2157584160", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 1, "lang": "und", "truncated": false, "id": 468753667244707840, "place": null, "favorite_count": 0, "possibly_sensitive": false, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "#bar: http://t.co/rDWaz8FR5P", "id_str": "468753667244707840", "entities": {"hashtags": [{"indices": [0, 4], "text": "bar"}], "urls": [{"display_url": "youtube.com/watch?v=JkkKt9\u2026", "indices": [6, 28], "expanded_url": "http://www.youtube.com/watch?v=JkkKt964_SI", "url": "http://t.co/rDWaz8FR5P"}], "symbols": [], "user_mentions": []}, "source": "Autodvids", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue May 20 14:02:37 +0000 2014"}, "is_translator": false, "screen_name": "AutoVids", "created_at": "Sat Oct 26 21:31:40 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9249, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1963165520, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 58, "friends_count": 1, "location": "GIFTown", "description": "People like to tweet Someone should make a GIF of [blah]. This tweets [blah], once an hour. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "geo_enabled": false, "time_zone": null, "name": "Make a GIF of...", "id_str": "1963165520", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 562291650559741954, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Brady jumping at the end", "id_str": "562291650559741954", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Someone should make a gif of", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Feb 02 16:49:11 +0000 2015"}, "is_translator": false, "screen_name": "MakeAGifOf", "created_at": "Tue Oct 15 18:28:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/MWfhcM373l", "statuses_count": 3282, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1920313014, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 156, "friends_count": 0, "location": "", "description": "This bot tweets every 8 hours what English servants were convicted of stealing from their masters 1823-1841, and how they were punished. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Stealing from Master", "id_str": "1920313014", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "oldbaileyonline.org", "indices": [0, 22], "expanded_url": "http://www.oldbaileyonline.org", "url": "http://t.co/MWfhcM373l"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693424228016717824, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "1 wind instrument, called a horn, value 5s.; and 5 dozen of fireworks, called squibs, value 2s. 6d. Transported for Seven Years", "id_str": "693424228016717824", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Stealing From Master", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 13:23:13 +0000 2016"}, "is_translator": false, "screen_name": "TheftFromMaster", "created_at": "Mon Sep 30 14:59:11 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 7, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1891608493, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 36, "friends_count": 1, "location": "Um, XOXO?", "description": "This takes the last 10 tweets from #xoxofest and markovs the shit out of them. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "XOXO_ebooks", "id_str": "1891608493", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 1, "lang": "en", "truncated": false, "id": 382022262078967808, "place": null, "favorite_count": 2, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Hi everyone! Thanks so much for following XOXO_ebooks, but like the conference, this bot is over. (For now.) <3 #xoxofest\n\n-@tinysubversions", "id_str": "382022262078967808", "entities": {"hashtags": [{"indices": [115, 124], "text": "xoxofest"}], "urls": [], "symbols": [], "user_mentions": [{"indices": [127, 143], "id": 14475298, "name": "Darius Kazemi", "screen_name": "tinysubversions", "id_str": "14475298"}]}, "source": "Twitter Web Client", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Sep 23 06:02:59 +0000 2013"}, "is_translator": false, "screen_name": "XOXO_ebooks", "created_at": "Sat Sep 21 21:45:45 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 29, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19921, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1885568064, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 105, "friends_count": 0, "location": "Boston, MA", "description": "I'm too lazy to update @boazims, so I wrote a bot to do it for me. Tweets hourly. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Boazim Bot", "id_str": "1885568064", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693477785289904128, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Caunes - causeless tones.", "id_str": "693477785289904128", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Boazim Bot", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 16:56:02 +0000 2016"}, "is_translator": false, "screen_name": "BoazimBot", "created_at": "Fri Sep 20 06:38:32 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 275, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19336, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1705052335, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 5257, "friends_count": 1, "location": "The Bugle Planet", "description": "Comedy is when you take two headlines about different things and then confuse them. Updates hourly. // By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "geo_enabled": false, "time_zone": null, "name": "Two Headlines", "id_str": "1705052335", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693480810742222849, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Ryan Bader Coldplay video sparks Twitter debate", "id_str": "693480810742222849", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Two Headlines", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:08:04 +0000 2016"}, "is_translator": false, "screen_name": "TwoHeadlines", "created_at": "Tue Aug 27 16:00:04 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 18, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9399, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1645840790, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 63, "friends_count": 0, "location": "", "description": "Unused merchandise on clearance today! New sales every hour. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Six Word Sale", "id_str": "1645840790", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693444061257142272, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "For sale: Cinderella Couture Baby Girls Polka Dotted Rockabilly Dress Hat Aqua 24M X 1002, never worn.", "id_str": "693444061257142272", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Six Word Sale", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 14:42:02 +0000 2016"}, "is_translator": false, "screen_name": "SixWordSale", "created_at": "Sun Aug 04 18:25:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 57, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 16715, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1620735632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 379, "friends_count": 0, "location": "Favstar", "description": "Humor expert, explaining jokes once per hour for the edification of all. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Professor Jocular", "id_str": "1620735632", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693449616843476992, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "[force per unit area joke] RT .TwoSapphiresBlu: Heart full of wish, head full of clouds", "id_str": "693449616843476992", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Professor Jocular", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 15:04:06 +0000 2016"}, "is_translator": false, "screen_name": "ProfJocular", "created_at": "Thu Jul 25 16:11:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 90, "profile_image_url": "http://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/T4MMA1dwmr", "statuses_count": 71117, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1505391505, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 657, "friends_count": 1, "location": "Twitter", "description": "This is a bot that makes bad jokes based on Twitter trending topics. Twitter comedians: consider yourselves on notice. Written by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 9, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "AmIRite Bot", "id_str": "1505391505", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "favstar.fm/users/amiriteb\u2026", "indices": [0, 22], "expanded_url": "http://favstar.fm/users/amiritebot", "url": "http://t.co/T4MMA1dwmr"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 693481746478862336, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "#SouthernSlam? More like Southern Stam, amirite?", "id_str": "693481746478862336", "entities": {"hashtags": [{"indices": [0, 13], "text": "SouthernSlam"}], "urls": [], "symbols": [], "user_mentions": []}, "source": "AmIRite Bot2", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Sat Jan 30 17:11:47 +0000 2016"}, "is_translator": false, "screen_name": "AmIRiteBot", "created_at": "Tue Jun 11 17:34:31 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 777, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1270269918, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 138, "friends_count": 0, "location": "GDC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1270269918/1364135331", "description": "@tinysubversions isn't attending GDC 2015, so he created me to attend in his place. (An update of the 2013 edition.)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 28, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Darius at GDC", "id_str": "1270269918", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 573986421310111744, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "There's really not a whole lot of sessions right now, huh", "id_str": "573986421310111744", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Darius at GDC", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Fri Mar 06 23:20:01 +0000 2015"}, "is_translator": false, "screen_name": "darius_at_gdc", "created_at": "Fri Mar 15 17:38:49 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 43, "profile_image_url": "http://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 45902, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1081686444, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 272, "friends_count": 5, "location": "", "description": "@latourbot + #swag: an attempt to approximate @10rdben in bot form. Tweets every 2 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 11, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "geo_enabled": false, "time_zone": null, "name": "Latour Swag", "id_str": "1081686444", "entities": {"description": {"urls": []}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 626022351625408513, "place": null, "favorite_count": 0, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "The vocabulary we are seeking remains properly political here and i don't know how things stand.", "id_str": "626022351625408513", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "Latour Swag", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Tue Jul 28 13:32:14 +0000 2015"}, "is_translator": false, "screen_name": "LatourSwag", "created_at": "Sat Jan 12 03:31:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 11, "profile_image_url": "http://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/JOsQWAlNKA", "statuses_count": 4640, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 770580787, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 54, "friends_count": 0, "location": "Thanks for nothing.", "description": "Twitter doesn't have enough Colin's Bear Animation. @tinysubversions decided to fix this.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "colinsbearanim", "id_str": "770580787", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/watch?v=FiARsQ\u2026", "indices": [0, 22], "expanded_url": "http://www.youtube.com/watch?v=FiARsQSlzDc", "url": "http://t.co/JOsQWAlNKA"}]}}, "status": {"coordinates": null, "is_quote_status": false, "geo": null, "retweet_count": 0, "lang": "en", "truncated": false, "id": 633399328275570688, "place": null, "favorite_count": 1, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "in_reply_to_screen_name": null, "text": "Thanks for nothing.", "id_str": "633399328275570688", "entities": {"hashtags": [], "urls": [], "symbols": [], "user_mentions": []}, "source": "ColinsBearAnimation", "contributors": null, "favorited": false, "in_reply_to_user_id_str": null, "retweeted": false, "created_at": "Mon Aug 17 22:05:42 +0000 2015"}, "is_translator": false, "screen_name": "colinsbearanim", "created_at": "Tue Aug 21 01:26:54 +0000 2012"}], "previous_cursor_str": "-4611686020916349125", "next_cursor_str": "0", "previous_cursor": -4611686020916349125} \ No newline at end of file diff --git a/testdata/get_list_members_extra_params.json b/testdata/get_list_members_extra_params.json new file mode 100644 index 00000000..2fba1de4 --- /dev/null +++ b/testdata/get_list_members_extra_params.json @@ -0,0 +1 @@ +{"next_cursor": 0, "users": [{"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1946, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2488961221, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 83, "friends_count": 1, "location": "", "description": "Huh? What? You had a... a wish. I see. Hold on. Let me whip something up for you. // A bot by @tinysubversions, tweets a few times a day", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/465270692838002688/N4kv9aGt_normal.png", "geo_enabled": false, "time_zone": null, "name": "Distracted Genie", "id_str": "2488961221", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "DistractedGenie", "created_at": "Sat May 10 23:17:18 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 54, "profile_image_url": "http://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/AnWK33b4kA", "statuses_count": 2111, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2423944147, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 679, "friends_count": 1, "location": "", "description": "Enlighten your brain with miracles of pics that will astound. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/451387951058939904/8Jeqouct_normal.png", "geo_enabled": false, "time_zone": null, "name": "Miraculous Pictures", "id_str": "2423944147", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/picpedant", "indices": [0, 23], "expanded_url": "https://twitter.com/picpedant", "url": "https://t.co/AnWK33b4kA"}]}}, "is_translator": false, "screen_name": "MiraculousPics", "created_at": "Wed Apr 02 14:58:21 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 107, "profile_image_url": "http://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 1179, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2418365564, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 1180, "friends_count": 1, "location": "", "description": "Absurd charts, twice daily. You get one flow chart and one Venn diagram. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": -14400, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/450113432222584833/Gyo-jNZ7_normal.png", "geo_enabled": false, "time_zone": "Atlantic Time (Canada)", "name": "Auto Charts", "id_str": "2418365564", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "AutoCharts", "created_at": "Sun Mar 30 03:16:20 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5164, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2409784321, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 133, "friends_count": 1, "location": "Everywhere", "description": "There are a lot of game jams. So here. Have a new one every three hours. A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/448259608532893696/OeCk1trs_normal.png", "geo_enabled": false, "time_zone": null, "name": "So Many Game Jams", "id_str": "2409784321", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ManyJams", "created_at": "Tue Mar 25 00:36:22 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 9, "profile_image_url": "http://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 4402, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2383588777, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 33, "friends_count": 1, "location": "", "description": "Because memcached is magic. I'm a bot that updates every 3 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/443350694079127552/pGhWYllH_normal.png", "geo_enabled": false, "time_zone": null, "name": "memcached magic", "id_str": "2383588777", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "memcached_magic", "created_at": "Tue Mar 11 11:33:50 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 37, "profile_image_url": "http://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "https://t.co/d3IzI1yBRi", "statuses_count": 10480, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2366009953, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 401, "friends_count": 1, "location": "Botston, Kazemistan", "description": "@tinysubversions made me: I am a bot that retweets any bots by him when a tweet reaches a certain fav/RT threshold.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/439478206727352320/FoaZF8Zg_normal.png", "geo_enabled": false, "time_zone": null, "name": "Best of Darius' Bots", "id_str": "2366009953", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "twitter.com/tinysubversion\u2026", "indices": [0, 23], "expanded_url": "https://twitter.com/tinysubversions/darius-kazemi-s-bots/members", "url": "https://t.co/d3IzI1yBRi"}]}}, "is_translator": false, "screen_name": "dariusbots", "created_at": "Fri Feb 28 18:55:40 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 53, "profile_image_url": "http://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 8933, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2353711584, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 505, "friends_count": 1, "location": "", "description": "Twitter bot for my real friends, real bot for my Twitter friends. Tweets every two hours. by @tinysubversions, powered by @wordnik (see also @twoheadlines)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/436617171909623808/wfuyA0Vq_normal.png", "geo_enabled": false, "time_zone": null, "name": "For my real friends.", "id_str": "2353711584", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "4myrealfriends", "created_at": "Thu Feb 20 19:52:17 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 2576, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2305621754, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 812, "friends_count": 1, "location": "The Internet", "description": "HOW TO VOTE: reply to a tweet with 'F' 'M' and 'K' in the order you want to vote. ('MFK' = marry, fuck, kill). A bot by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426136813791506432/LpCjjBQV_normal.png", "geo_enabled": false, "time_zone": null, "name": "Fuck, Marry, Kill", "id_str": "2305621754", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "FMKVote", "created_at": "Wed Jan 22 23:34:33 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 573, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2295281700, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 161, "friends_count": 1, "location": "", "description": "Once a day I generate a random [Whatever] Clicker style game, based on a theme. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/423992678192140288/bXQ8yPOz_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Clicker Maker", "id_str": "2295281700", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ClickerMaker", "created_at": "Fri Jan 17 01:37:04 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 27, "profile_image_url": "http://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 5057, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2276411904, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 1, "location": "", "description": "These might be Steam codes, but they probably aren't. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/419522901377695744/UGpFVn4q_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Steem Codes", "id_str": "2276411904", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "SteemCodes", "created_at": "Sat Jan 04 17:31:00 +0000 2014"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 23, "profile_image_url": "http://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 135021, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2248819836, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 82, "friends_count": 2, "location": "USSR/Cuba/China", "description": "I am a bot and I love communism so much. I wish there was another bot out there that would talk to me. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/412588619757412352/llF2l1Pf_normal.png", "geo_enabled": false, "time_zone": null, "name": "Red Scare Honeypot", "id_str": "2248819836", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "RedScarePot", "created_at": "Mon Dec 16 14:14:28 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 28, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/IT8V4SXHgS", "statuses_count": 2404, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2230101666, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 327, "friends_count": 1, "location": "An Alternate Universe", "description": "Illuminated alternate universe romances of fictional characters. Tweets every six hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000828991636/948321a48a93f1f4cbbbd1566b70b129_normal.png", "geo_enabled": false, "time_zone": null, "name": "Alt Universe Prompts", "id_str": "2230101666", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "au-prompts.tumblr.com", "indices": [0, 22], "expanded_url": "http://au-prompts.tumblr.com", "url": "http://t.co/IT8V4SXHgS"}]}}, "is_translator": false, "screen_name": "AU_Prompts", "created_at": "Wed Dec 04 15:31:05 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 19, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/cvLCVa3u0L", "statuses_count": 8736, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2201332182, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 526, "friends_count": 1, "location": "Kenosha", "description": "Brute-forcing an episode from Gravity's Rainbow. Tweets every two hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000757240669/7b3ad1a42816bd093559a8dfa8190499_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Kenosha Kid", "id_str": "2201332182", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "itre.cis.upenn.edu/~myl/languagel\u2026", "indices": [0, 22], "expanded_url": "http://itre.cis.upenn.edu/~myl/languagelog/archives/001288.html", "url": "http://t.co/cvLCVa3u0L"}]}}, "is_translator": false, "screen_name": "YouNeverDidThe", "created_at": "Mon Nov 18 13:42:53 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 13, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6258, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2165015054, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 44, "friends_count": 0, "location": "rutabagas", "description": "Rutabaga is funny vegetaeble. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669852731/8bdb0b0dcc8cf947cb60450989efb042_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Rutabaga", "id_str": "2165015054", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "FactBotRutabaga", "created_at": "Wed Oct 30 15:50:18 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 22, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 6255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2164997376, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 77, "friends_count": 0, "location": "carrots", "description": "Carrot is funnye vegetable. Every 3 hour new joek. (by @tinysubversions)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000669825785/0a293d3c4ccdf51522873f18122f2c87_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "FactBot Carrot", "id_str": "2164997376", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "FactBotCarrot", "created_at": "Wed Oct 30 15:41:39 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 401, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 2157584160, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 67, "friends_count": 1, "location": "Vineland", "description": "Automatically generated YouTube music videos. One in the day, and one at night. Because why not. by @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000651959608/0a51de7a08dd6dd87afe73b36e04a987_normal.png", "geo_enabled": false, "time_zone": null, "name": "AutoVids", "id_str": "2157584160", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "AutoVids", "created_at": "Sat Oct 26 21:31:40 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 14, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9249, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1963165520, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 58, "friends_count": 1, "location": "GIFTown", "description": "People like to tweet Someone should make a GIF of [blah]. This tweets [blah], once an hour. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000601426736/8d15332b880858572f1cc041ef912f98_normal.png", "geo_enabled": false, "time_zone": null, "name": "Make a GIF of...", "id_str": "1963165520", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "MakeAGifOf", "created_at": "Tue Oct 15 18:28:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 24, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/MWfhcM373l", "statuses_count": 3282, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1920313014, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 156, "friends_count": 0, "location": "", "description": "This bot tweets every 8 hours what English servants were convicted of stealing from their masters 1823-1841, and how they were punished. By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000529688165/ece322c53de198874165edfa4a3af353_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Stealing from Master", "id_str": "1920313014", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "oldbaileyonline.org", "indices": [0, 22], "expanded_url": "http://www.oldbaileyonline.org", "url": "http://t.co/MWfhcM373l"}]}}, "is_translator": false, "screen_name": "TheftFromMaster", "created_at": "Mon Sep 30 14:59:11 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 7, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 255, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1891608493, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 36, "friends_count": 1, "location": "Um, XOXO?", "description": "This takes the last 10 tweets from #xoxofest and markovs the shit out of them. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 2, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000489437466/c07af811678fc2ae47565c772bcab7ba_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "XOXO_ebooks", "id_str": "1891608493", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "XOXO_ebooks", "created_at": "Sat Sep 21 21:45:45 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 29, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19921, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1885568064, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 105, "friends_count": 0, "location": "Boston, MA", "description": "I'm too lazy to update @boazims, so I wrote a bot to do it for me. Tweets hourly. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000481521431/37f9046f263bd62f9fec28697ec9e69a_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Boazim Bot", "id_str": "1885568064", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "BoazimBot", "created_at": "Fri Sep 20 06:38:32 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 275, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 19336, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1705052335, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 5257, "friends_count": 1, "location": "The Bugle Planet", "description": "Comedy is when you take two headlines about different things and then confuse them. Updates hourly. // By @tinysubversions", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 7, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000370296162/cb5f879074e150ddc2d3736ba502636a_normal.png", "geo_enabled": false, "time_zone": null, "name": "Two Headlines", "id_str": "1705052335", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "TwoHeadlines", "created_at": "Tue Aug 27 16:00:04 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 18, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 9399, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1645840790, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 63, "friends_count": 0, "location": "", "description": "Unused merchandise on clearance today! New sales every hour. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000241176695/32f41328a77d9958d66b73025d6853e6_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Six Word Sale", "id_str": "1645840790", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "SixWordSale", "created_at": "Sun Aug 04 18:25:19 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 57, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 16715, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1620735632, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 379, "friends_count": 0, "location": "Favstar", "description": "Humor expert, explaining jokes once per hour for the edification of all. Created by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 1, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000186874918/1fe67733b7542758c827f2fd9701995f_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Professor Jocular", "id_str": "1620735632", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "ProfJocular", "created_at": "Thu Jul 25 16:11:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 90, "profile_image_url": "http://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/T4MMA1dwmr", "statuses_count": 71117, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1505391505, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 657, "friends_count": 1, "location": "Twitter", "description": "This is a bot that makes bad jokes based on Twitter trending topics. Twitter comedians: consider yourselves on notice. Written by @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 9, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/344513261565296681/29699226e433bfd3d8f153d8ac0dde84_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "AmIRite Bot", "id_str": "1505391505", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "favstar.fm/users/amiriteb\u2026", "indices": [0, 22], "expanded_url": "http://favstar.fm/users/amiritebot", "url": "http://t.co/T4MMA1dwmr"}]}}, "is_translator": false, "screen_name": "AmIRiteBot", "created_at": "Tue Jun 11 17:34:31 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 15, "profile_image_url": "http://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 777, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1270269918, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 138, "friends_count": 0, "location": "GDC", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1270269918/1364135331", "description": "@tinysubversions isn't attending GDC 2015, so he created me to attend in his place. (An update of the 2013 edition.)", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 28, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3423518267/955bb11ece5184366d29721d70481071_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "Darius at GDC", "id_str": "1270269918", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "darius_at_gdc", "created_at": "Fri Mar 15 17:38:49 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 43, "profile_image_url": "http://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": null, "statuses_count": 45903, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 1081686444, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 272, "friends_count": 5, "location": "", "description": "@latourbot + #swag: an attempt to approximate @10rdben in bot form. Tweets every 2 hours. By @tinysubversions.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 11, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3097290659/b3606a6e3295c736f1b622b28b8f7480_normal.png", "geo_enabled": false, "time_zone": null, "name": "Latour Swag", "id_str": "1081686444", "entities": {"description": {"urls": []}}, "is_translator": false, "screen_name": "LatourSwag", "created_at": "Sat Jan 12 03:31:42 +0000 2013"}, {"notifications": false, "profile_use_background_image": true, "has_extended_profile": false, "listed_count": 11, "profile_image_url": "http://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "lang": "en", "protected": false, "url": "http://t.co/JOsQWAlNKA", "statuses_count": 4640, "profile_text_color": "333333", "profile_background_tile": false, "follow_request_sent": false, "id": 770580787, "default_profile_image": false, "contributors_enabled": false, "following": false, "profile_link_color": "0084B4", "followers_count": 54, "friends_count": 0, "location": "Thanks for nothing.", "description": "Twitter doesn't have enough Colin's Bear Animation. @tinysubversions decided to fix this.", "profile_sidebar_fill_color": "DDEEF6", "default_profile": true, "utc_offset": null, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "favourites_count": 0, "profile_background_color": "C0DEED", "is_translation_enabled": false, "profile_sidebar_border_color": "C0DEED", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2526407453/uhcxk2bw4xjpdlu99avr_normal.jpeg", "geo_enabled": false, "time_zone": null, "name": "colinsbearanim", "id_str": "770580787", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/watch?v=FiARsQ\u2026", "indices": [0, 22], "expanded_url": "http://www.youtube.com/watch?v=FiARsQSlzDc", "url": "http://t.co/JOsQWAlNKA"}]}}, "is_translator": false, "screen_name": "colinsbearanim", "created_at": "Tue Aug 21 01:26:54 +0000 2012"}], "previous_cursor_str": "-4611686020916349125", "next_cursor_str": "0", "previous_cursor": -4611686020916349125} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 0967fec4..d688e21c 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -976,17 +976,54 @@ def testGetLists(self): @responses.activate def testGetListMembers(self): - with open('testdata/get_list_members.json') as f: + with open('testdata/get_list_members_0.json') as f: resp_data = f.read() responses.add( responses.GET, - 'https://api.twitter.com/1.1/lists/members.json?cursor=-1&list_id=189643778', + 'https://api.twitter.com/1.1/lists/members.json?count=100&include_entities=False&skip_status=False&list_id=93527328&cursor=-1', body=resp_data, match_querystring=True, status=200) - resp = self.api.GetListMembers(list_id=189643778) + + with open('testdata/get_list_members_1.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/members.json?count=100&include_entities=False&skip_status=False&cursor=4611686020936348428&list_id=93527328', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListMembers(list_id=93527328) self.assertTrue(type(resp[0]) is twitter.User) - self.assertEqual(resp[0].id, 4040207472) + self.assertEqual(resp[0].id, 4048395140) + + @responses.activate + def testGetListMembersPaged(self): + with open('testdata/get_list_members_0.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/members.json?count=100&include_entities=True&skip_status=False&cursor=4611686020936348428&list_id=93527328', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.GetListMembersPaged(list_id=93527328, cursor=4611686020936348428) + self.assertTrue([isinstance(u, twitter.User) for u in resp]) + + with open('testdata/get_list_members_extra_params.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/lists/members.json?count=100&skip_status=True&include_entities=False&cursor=4611686020936348428&list_id=93527328', + body=resp_data, + match_querystring=True, + status=200) + _, _, resp = self.api.GetListMembersPaged(list_id=93527328, + cursor=4611686020936348428, + skip_status=True, + include_entities=False, + count=100) + self.assertFalse(resp[0].status) @responses.activate def testGetListTimeline(self): @@ -1204,4 +1241,3 @@ def testGetMemberships(self): resp = self.api.GetMemberships(screen_name='himawari8bot') self.assertEqual(len(resp), 20) self.assertTrue([isinstance(lst, twitter.List) for lst in resp]) - diff --git a/twitter/api.py b/twitter/api.py index 548aa2af..1613728e 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3291,7 +3291,6 @@ def GetMemberships(self, return [List.NewFromJsonDict(x) for x in data['lists']] - # TODO: test. def GetListsList(self, screen_name=None, user_id=None, @@ -3405,15 +3404,15 @@ def GetListTimeline(self, return [Status.NewFromJsonDict(x) for x in data] - # TODO: test. def GetListMembersPaged(self, list_id=None, slug=None, owner_id=None, owner_screen_name=None, cursor=-1, + count=100, skip_status=False, - include_entities=False): + include_entities=True): """Fetch the sequence of twitter.User instances, one for each member of the given list_id or slug. @@ -3453,12 +3452,13 @@ def GetListMembersPaged(self, owner_id=owner_id, owner_screen_name=owner_screen_name)) + if count: + parameters['count'] = enf_type('count', int, count) if cursor: parameters['cursor'] = enf_type('cursor', int, cursor) - if skip_status: - parameters['skip_status'] = enf_type('skip_status', bool, skip_status) - if include_entities: - parameters['include_entities'] = enf_type('include_entities', bool, include_entities) + + parameters['skip_status'] = enf_type('skip_status', bool, skip_status) + parameters['include_entities'] = enf_type('include_entities', bool, include_entities) resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) @@ -3468,7 +3468,6 @@ def GetListMembersPaged(self, return next_cursor, previous_cursor, users - # TODO: test. def GetListMembers(self, list_id=None, slug=None, From 76f61c224354bfb5a8f4e4ea467ecfc57b172f97 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 30 Jan 2016 17:03:36 -0500 Subject: [PATCH 167/533] adds tests for Create/DestroyListsMember() methods --- testdata/post_create_lists_member.json | 1 + .../post_create_lists_member_multiple.json | 1 + testdata/post_destroy_lists_member.json | 1 + .../post_destroy_lists_member_multiple.json | 1 + tests/test_api_30.py | 64 ++++++++++++++++++- twitter/api.py | 4 -- 6 files changed, 67 insertions(+), 5 deletions(-) create mode 100644 testdata/post_create_lists_member.json create mode 100644 testdata/post_create_lists_member_multiple.json create mode 100644 testdata/post_destroy_lists_member.json create mode 100644 testdata/post_destroy_lists_member_multiple.json diff --git a/testdata/post_create_lists_member.json b/testdata/post_create_lists_member.json new file mode 100644 index 00000000..b92e3695 --- /dev/null +++ b/testdata/post_create_lists_member.json @@ -0,0 +1 @@ +{"member_count": 2, "created_at": "Fri Dec 18 20:00:45 +0000 2015", "subscriber_count": 0, "user": {"profile_background_tile": false, "profile_sidebar_fill_color": "DDEEF6", "default_profile_image": true, "is_translation_enabled": false, "name": "notinourselves", "has_extended_profile": false, "url": null, "friends_count": 1, "follow_request_sent": false, "profile_link_color": "0084B4", "verified": false, "profile_use_background_image": true, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_color": "C0DEED", "followers_count": 1, "contributors_enabled": false, "profile_sidebar_border_color": "C0DEED", "notifications": false, "time_zone": null, "screen_name": "notinourselves", "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "id": 4012966701, "listed_count": 1, "id_str": "4012966701", "geo_enabled": true, "entities": {"description": {"urls": []}}, "statuses_count": 67, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "description": "", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "is_translator": false, "utc_offset": null, "default_profile": true, "protected": true, "favourites_count": 1, "lang": "en", "created_at": "Wed Oct 21 23:53:04 +0000 2015", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "following": false}, "id": 229581524, "id_str": "229581524", "description": "", "uri": "/notinourselves/lists/test", "full_name": "@notinourselves/test", "mode": "public", "following": true, "name": "test", "slug": "test"} \ No newline at end of file diff --git a/testdata/post_create_lists_member_multiple.json b/testdata/post_create_lists_member_multiple.json new file mode 100644 index 00000000..fae62823 --- /dev/null +++ b/testdata/post_create_lists_member_multiple.json @@ -0,0 +1 @@ +{"member_count": 3, "created_at": "Fri Dec 18 20:00:45 +0000 2015", "subscriber_count": 0, "user": {"profile_background_tile": false, "profile_sidebar_fill_color": "DDEEF6", "default_profile_image": true, "is_translation_enabled": false, "name": "notinourselves", "has_extended_profile": false, "url": null, "friends_count": 1, "follow_request_sent": false, "profile_link_color": "0084B4", "verified": false, "profile_use_background_image": true, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_color": "C0DEED", "followers_count": 1, "contributors_enabled": false, "profile_sidebar_border_color": "C0DEED", "notifications": false, "time_zone": null, "screen_name": "notinourselves", "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "id": 4012966701, "listed_count": 1, "id_str": "4012966701", "geo_enabled": true, "entities": {"description": {"urls": []}}, "statuses_count": 67, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "description": "", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "is_translator": false, "utc_offset": null, "default_profile": true, "protected": true, "favourites_count": 1, "lang": "en", "created_at": "Wed Oct 21 23:53:04 +0000 2015", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "following": false}, "id": 229581524, "id_str": "229581524", "description": "", "uri": "/notinourselves/lists/test", "full_name": "@notinourselves/test", "mode": "public", "following": true, "name": "test", "slug": "test"} \ No newline at end of file diff --git a/testdata/post_destroy_lists_member.json b/testdata/post_destroy_lists_member.json new file mode 100644 index 00000000..72949732 --- /dev/null +++ b/testdata/post_destroy_lists_member.json @@ -0,0 +1 @@ +{"member_count": 1, "created_at": "Fri Dec 18 20:00:45 +0000 2015", "subscriber_count": 0, "user": {"profile_background_tile": false, "profile_sidebar_fill_color": "DDEEF6", "default_profile_image": true, "is_translation_enabled": false, "name": "notinourselves", "has_extended_profile": false, "url": null, "friends_count": 1, "follow_request_sent": false, "profile_link_color": "0084B4", "verified": false, "profile_use_background_image": true, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_color": "C0DEED", "followers_count": 1, "contributors_enabled": false, "profile_sidebar_border_color": "C0DEED", "notifications": false, "time_zone": null, "screen_name": "notinourselves", "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "id": 4012966701, "listed_count": 1, "id_str": "4012966701", "geo_enabled": true, "entities": {"description": {"urls": []}}, "statuses_count": 67, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "description": "", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "is_translator": false, "utc_offset": null, "default_profile": true, "protected": true, "favourites_count": 1, "lang": "en", "created_at": "Wed Oct 21 23:53:04 +0000 2015", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "following": false}, "id": 229581524, "id_str": "229581524", "description": "", "uri": "/notinourselves/lists/test", "full_name": "@notinourselves/test", "mode": "public", "following": true, "name": "test", "slug": "test"} \ No newline at end of file diff --git a/testdata/post_destroy_lists_member_multiple.json b/testdata/post_destroy_lists_member_multiple.json new file mode 100644 index 00000000..b1c5a615 --- /dev/null +++ b/testdata/post_destroy_lists_member_multiple.json @@ -0,0 +1 @@ +{"member_count": 0, "created_at": "Fri Dec 18 20:00:45 +0000 2015", "subscriber_count": 0, "user": {"profile_background_tile": false, "profile_sidebar_fill_color": "DDEEF6", "default_profile_image": true, "is_translation_enabled": false, "name": "notinourselves", "has_extended_profile": false, "url": null, "friends_count": 1, "follow_request_sent": false, "profile_link_color": "0084B4", "verified": false, "profile_use_background_image": true, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_background_color": "C0DEED", "followers_count": 1, "contributors_enabled": false, "profile_sidebar_border_color": "C0DEED", "notifications": false, "time_zone": null, "screen_name": "notinourselves", "location": "", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "id": 4012966701, "listed_count": 1, "id_str": "4012966701", "geo_enabled": true, "entities": {"description": {"urls": []}}, "statuses_count": 67, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "description": "", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "is_translator": false, "utc_offset": null, "default_profile": true, "protected": true, "favourites_count": 1, "lang": "en", "created_at": "Wed Oct 21 23:53:04 +0000 2015", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "following": false}, "id": 229581524, "id_str": "229581524", "description": "", "uri": "/notinourselves/lists/test", "full_name": "@notinourselves/test", "mode": "public", "following": true, "name": "test", "slug": "test"} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index d688e21c..e4900289 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1023,7 +1023,7 @@ def testGetListMembersPaged(self): skip_status=True, include_entities=False, count=100) - self.assertFalse(resp[0].status) + self.assertFalse(resp[0].status) @responses.activate def testGetListTimeline(self): @@ -1241,3 +1241,65 @@ def testGetMemberships(self): resp = self.api.GetMemberships(screen_name='himawari8bot') self.assertEqual(len(resp), 20) self.assertTrue([isinstance(lst, twitter.List) for lst in resp]) + + @responses.activate + def testCreateListsMember(self): + with open('testdata/post_create_lists_member.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/members/create.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.CreateListsMember(list_id=229581524, user_id=372018022) + self.assertTrue(isinstance(resp, twitter.List)) + self.assertEqual(resp.name, 'test') + self.assertEqual(resp.member_count, 2) + + @responses.activate + def testCreateListsMemberMultiple(self): + with open('testdata/post_create_lists_member_multiple.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/members/create_all.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.CreateListsMember(list_id=229581524, + user_id=[372018022, 4040207472]) + self.assertTrue(isinstance(resp, twitter.List)) + self.assertEqual(resp.name, 'test') + self.assertEqual(resp.member_count, 3) + + @responses.activate + def testDestroyListsMember(self): + with open('testdata/post_destroy_lists_member.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/members/destroy.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.DestroyListsMember(list_id=229581524, user_id=372018022) + self.assertTrue(isinstance(resp, twitter.List)) + self.assertEqual(resp.name, 'test') + self.assertEqual(resp.member_count, 1) + + @responses.activate + def testDestroyListsMemberMultiple(self): + with open('testdata/post_destroy_lists_member_multiple.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/lists/members/destroy_all.json', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.DestroyListsMember(list_id=229581524, + user_id=[372018022, 4040207472]) + self.assertEqual(resp.member_count, 0) + self.assertEqual(resp.name, 'test') + self.assertTrue(isinstance(resp, twitter.List)) diff --git a/twitter/api.py b/twitter/api.py index 1613728e..505421ca 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3523,7 +3523,6 @@ def GetListMembers(self, return result - # TODO: test. def CreateListsMember(self, list_id=None, slug=None, @@ -3589,7 +3588,6 @@ def CreateListsMember(self, return List.NewFromJsonDict(data) - # TODO: test. def DestroyListsMember(self, list_id=None, slug=None, @@ -3654,7 +3652,6 @@ def DestroyListsMember(self, return List.NewFromJsonDict(data) - # TODO: test. def GetListsPaged(self, user_id=None, screen_name=None, @@ -3704,7 +3701,6 @@ def GetListsPaged(self, return next_cursor, previous_cursor, lists - # TODO: test. def GetLists(self, user_id=None, screen_name=None): From 4dcd279e993b30e63aea1ebe14703f689bd3fe47 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 9 Feb 2016 07:22:10 -0500 Subject: [PATCH 168/533] fixes issue #294. Errors were from the way that http requests were handled with urllib2.urlopen, which returns a not-really-file like object (as opposed to the python3 version, which does). Additionally, there were some issues with how media_ids was joined into a string for posting in PostUpdate; those have been fixed. Tests have been added for most of these features with the exception of PostUpdate with http because of the way responses/mock works with a streaming URL. --- testdata/post_update_media_id.json | 1 + testdata/post_upload_media_simple.json | 1 + tests/test_api_30.py | 47 ++++++++++++++++++++ tests/test_twitter_utils.py | 60 ++++++++++++++++++++++++++ twitter/api.py | 23 +++++++--- twitter/twitter_utils.py | 24 ++++++----- 6 files changed, 140 insertions(+), 16 deletions(-) create mode 100644 testdata/post_update_media_id.json create mode 100644 testdata/post_upload_media_simple.json create mode 100644 tests/test_twitter_utils.py diff --git a/testdata/post_update_media_id.json b/testdata/post_update_media_id.json new file mode 100644 index 00000000..03b9d1d9 --- /dev/null +++ b/testdata/post_update_media_id.json @@ -0,0 +1 @@ +{"favorited": false, "in_reply_to_user_id_str": null, "in_reply_to_user_id": null, "in_reply_to_status_id": null, "is_quote_status": false, "ext": {"stickerInfo": {"r": {"err": {"code": 402, "message": "ColumnNotFound"}}, "ttl": -1}}, "in_reply_to_screen_name": null, "truncated": false, "id": 697007422867664896, "entities": {"symbols": [], "user_mentions": [], "media": [{"expanded_url": "http://twitter.com/notinourselves/status/697007422867664896/photo/1", "display_url": "pic.twitter.com/FHgqb6iLOX", "id": 697007311538229248, "indices": [50, 73], "type": "photo", "media_url": "http://pbs.twimg.com/media/CaxEdPoWEAAgCAh.jpg", "url": "https://t.co/FHgqb6iLOX", "id_str": "697007311538229248", "media_url_https": "https://pbs.twimg.com/media/CaxEdPoWEAAgCAh.jpg", "sizes": {"large": {"resize": "fit", "w": 500, "h": 500}, "thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 500, "h": 500}, "small": {"resize": "fit", "w": 340, "h": 340}}}], "hashtags": [], "urls": []}, "retweeted": false, "lang": "en", "geo": null, "source": "gbtest--notinourselves", "coordinates": null, "user": {"default_profile_image": true, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "protected": true, "id_str": "4012966701", "follow_request_sent": false, "location": "", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4012966701/1453123196", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "is_translation_enabled": false, "friends_count": 1, "id": 4012966701, "time_zone": null, "entities": {"description": {"urls": []}}, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "notinourselves", "lang": "en", "profile_link_color": "0084B4", "verified": false, "notifications": false, "favourites_count": 1, "utc_offset": null, "statuses_count": 68, "profile_sidebar_border_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "has_extended_profile": false, "is_translator": false, "description": "", "name": "notinourselves", "default_profile": true, "profile_use_background_image": true, "following": false, "geo_enabled": true, "listed_count": 1, "url": null, "contributors_enabled": false, "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_background_tile": false, "created_at": "Wed Oct 21 23:53:04 +0000 2015", "followers_count": 1}, "place": null, "text": "hi this is a test for media uploads with statuses https://t.co/FHgqb6iLOX", "favorite_count": 0, "in_reply_to_status_id_str": null, "retweet_count": 0, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/notinourselves/status/697007422867664896/photo/1", "display_url": "pic.twitter.com/FHgqb6iLOX", "id": 697007311538229248, "indices": [50, 73], "type": "photo", "media_url": "http://pbs.twimg.com/media/CaxEdPoWEAAgCAh.jpg", "url": "https://t.co/FHgqb6iLOX", "id_str": "697007311538229248", "media_url_https": "https://pbs.twimg.com/media/CaxEdPoWEAAgCAh.jpg", "sizes": {"large": {"resize": "fit", "w": 500, "h": 500}, "thumb": {"resize": "crop", "w": 150, "h": 150}, "medium": {"resize": "fit", "w": 500, "h": 500}, "small": {"resize": "fit", "w": 340, "h": 340}}}]}, "id_str": "697007422867664896", "contributors": null, "possibly_sensitive": false, "created_at": "Tue Feb 09 10:41:34 +0000 2016"} \ No newline at end of file diff --git a/testdata/post_upload_media_simple.json b/testdata/post_upload_media_simple.json new file mode 100644 index 00000000..8ae3095e --- /dev/null +++ b/testdata/post_upload_media_simple.json @@ -0,0 +1 @@ +{"image": {"w": 500, "h": 500, "image_type": "image/jpeg"}, "media_id_string": "697007311538229248", "media_id": 697007311538229248, "size": 44772, "expires_after_secs": 86400} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index e4900289..c392ad0a 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1303,3 +1303,50 @@ def testDestroyListsMemberMultiple(self): self.assertEqual(resp.member_count, 0) self.assertEqual(resp.name, 'test') self.assertTrue(isinstance(resp, twitter.List)) + + @responses.activate + def testPostUpdateWithMedia(self): + # API will first make a POST request to upload the file. + with open('testdata/post_upload_media_simple.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://upload.twitter.com/1.1/media/upload.json', + body=resp_data, + match_querystring=True, + status=200) + + # Then the POST request to post a status with the media id attached. + with open('testdata/post_update_media_id.json') as f: + resp_data = f.read() + responses.add( + responses.POST, + 'https://api.twitter.com/1.1/statuses/update.json?media_ids=697007311538229248', + body=resp_data, + match_querystring=True, + status=200) + + # Local file + resp = self.api.PostUpdate(media='testdata/168NQ.jpg', status='test') + self.assertEqual(697007311538229248, resp.AsDict()['media'][0].id) + self.assertEqual(resp.text, "hi this is a test for media uploads with statuses https://t.co/FHgqb6iLOX") + + # File object + with open('testdata/168NQ.jpg', 'rb') as f: + resp = self.api.PostUpdate(media=[f], status='test') + self.assertEqual(697007311538229248, resp.AsDict()['media'][0].id) + self.assertEqual(resp.text, "hi this is a test for media uploads with statuses https://t.co/FHgqb6iLOX") + + # Media ID as int + resp = self.api.PostUpdate(media=697007311538229248, status='test') + + # Media ID as list of ints + resp = self.api.PostUpdate(media=[697007311538229248], status='test') + responses.add( + responses.POST, + "https://api.twitter.com/1.1/statuses/update.json?media_ids=697007311538229248,697007311538229249", + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.PostUpdate( + media=[697007311538229248, 697007311538229249], status='test') diff --git a/tests/test_twitter_utils.py b/tests/test_twitter_utils.py new file mode 100644 index 00000000..3ca619fc --- /dev/null +++ b/tests/test_twitter_utils.py @@ -0,0 +1,60 @@ +# encoding: utf-8 + +import unittest + +import twitter + +from twitter.twitter_utils import ( + parse_media_file +) + + +class ApiTest(unittest.TestCase): + + def setUp(self): + self.api = twitter.Api( + consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test', + sleep_on_rate_limit=False) + self.base_url = 'https://api.twitter.com/1.1' + + def test_parse_media_file_http(self): + data_file, filename, file_size, media_type = parse_media_file( + 'https://raw.githubusercontent.com/bear/python-twitter/master/testdata/168NQ.jpg') + self.assertTrue(hasattr(data_file, 'read')) + self.assertEqual(filename, '168NQ.jpg') + self.assertEqual(file_size, 44772) + self.assertEqual(media_type, 'image/jpeg') + + def test_parse_media_file_local_file(self): + data_file, filename, file_size, media_type = parse_media_file( + 'testdata/168NQ.jpg') + self.assertTrue(hasattr(data_file, 'read')) + self.assertEqual(filename, '168NQ.jpg') + self.assertEqual(file_size, 44772) + self.assertEqual(media_type, 'image/jpeg') + + def test_parse_media_file_fileobj(self): + with open('testdata/168NQ.jpg', 'rb') as f: + data_file, filename, file_size, media_type = parse_media_file(f) + self.assertTrue(hasattr(data_file, 'read')) + self.assertEqual(filename, '168NQ.jpg') + self.assertEqual(file_size, 44772) + self.assertEqual(media_type, 'image/jpeg') + + def test_utils_error_checking(self): + with open('testdata/168NQ.jpg', 'r') as f: + self.assertRaises( + twitter.TwitterError, + lambda: parse_media_file(f)) + + with open('testdata/user_timeline.json', 'rb') as f: + self.assertRaises( + twitter.TwitterError, + lambda: parse_media_file(f)) + + self.assertRaises( + twitter.TwitterError, + lambda: twitter.twitter_utils.enf_type('test', int, 'hi')) diff --git a/twitter/api.py b/twitter/api.py index 505421ca..7232c756 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -947,12 +947,23 @@ def PostUpdate(self, parameters = {'status': u_status} if media: - if type(media) is list and len(media) > 1: - media_ids = [] + media_ids = [] + if isinstance(media, int): + media_ids.append(media) + + elif isinstance(media, list): for media_file in media: + + # If you want to pass just a media ID, it should be an int + if isinstance(media_file, int): + media_ids.append(media_file) + continue + _, _, file_size, media_type = parse_media_file(media_file) if media_type == 'image/gif' or media_type == 'video/mp4': - raise TwitterError({'message': 'You cannot post more than 1 GIF or 1 video in a single status.'}) + raise TwitterError( + 'You cannot post more than 1 GIF or 1 video in a ' + 'single status.') if file_size > self.chunk_size: media_id = self.UploadMediaChunked( media=media_file, @@ -971,9 +982,9 @@ def PostUpdate(self, media, media_additional_owners) else: - media_ids = self.UploadMediaSimple( - media, - media_additional_owners) + media_ids.append( + self.UploadMediaSimple(media, + media_additional_owners)) parameters['media_ids'] = ','.join([str(mid) for mid in media_ids]) if in_reply_to_status_id: diff --git a/twitter/twitter_utils.py b/twitter/twitter_utils.py index 1fc1da71..80c7d30c 100644 --- a/twitter/twitter_utils.py +++ b/twitter/twitter_utils.py @@ -3,13 +3,12 @@ import os import re -try: - from urllib.request import urlopen -except ImportError: - from urllib import urlopen +import requests +from tempfile import NamedTemporaryFile from twitter import TwitterError + TLDS = [ "ac", "ad", "ae", "af", "ag", "ai", "al", "am", "an", "ao", "aq", "ar", "as", "at", "au", "aw", "ax", "az", "ba", "bb", "bd", "be", "bf", "bg", @@ -178,6 +177,13 @@ def is_url(text): return False +def http_to_file(http): + data_file = NamedTemporaryFile() + req = requests.get(http, stream=True) + data_file.write(req.raw.data) + return data_file + + def parse_media_file(passed_media): """ Parses a media file and attempts to return a file-like object and information about the media file. @@ -201,14 +207,11 @@ def parse_media_file(passed_media): # each case such that data_file ends up with a read() method. if not hasattr(passed_media, 'read'): if passed_media.startswith('http'): + data_file = http_to_file(passed_media) filename = os.path.basename(passed_media) - data_file = urlopen(passed_media) - file_size = data_file.length else: data_file = open(os.path.realpath(passed_media), 'rb') filename = os.path.basename(passed_media) - data_file.seek(0, 2) - file_size = data_file.tell() # Otherwise, if a file object was passed in the first place, # create the standard reference to media_file (i.e., rename it to fp). @@ -217,8 +220,9 @@ def parse_media_file(passed_media): raise TwitterError({'message': 'File mode must be "rb".'}) filename = os.path.basename(passed_media.name) data_file = passed_media - data_file.seek(0, 2) - file_size = data_file.tell() + + data_file.seek(0, 2) + file_size = data_file.tell() try: data_file.seek(0) From 30b4449ddd3a241bd9b1f35c28771a19aa93eaf0 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 10 Feb 2016 06:30:34 -0500 Subject: [PATCH 169/533] fixes issue #232 : in GetSearch() geocode can be either a string like "37.781157,-122.398720,1mi" or a list/tuple such as [37.781157,-122.398720,"1mi"]. Inline documentation updated to reflect change. All tests passing & should not break old behavior --- tests/test_api_30.py | 6 +++ twitter/api.py | 116 ++++++++++++++++++++++++------------------- 2 files changed, 70 insertions(+), 52 deletions(-) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index c392ad0a..7d3833a7 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -163,6 +163,12 @@ def testGetSearchGeocode(self): self.assertTrue(status, twitter.Status) self.assertTrue(status.geo) self.assertEqual(status.geo['type'], 'Point') + resp = self.api.GetSearch( + term="python", + geocode=('37.781157,-122.398720,100mi')) + status = resp[0] + self.assertTrue(status, twitter.Status) + self.assertTrue(status.geo) @responses.activate def testGetUsersSearch(self): diff --git a/twitter/api.py b/twitter/api.py index 7232c756..96c2de99 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -313,80 +313,91 @@ def GetSearch(self, locale=None, result_type="mixed", include_entities=None): - """Return twitter search results for a given term. + """Return twitter search results for a given term. You must specify one + of term, geocode, or raw_query. Args: - term: + term (str, optional): Term to search by. Optional if you include geocode. - since_id: + raw_query (str, optional): + A raw query as a string. This should be everything after the "?" in + the URL (i.e., the query parameters). You are responsible for all + type checking and ensuring that the query string is properly + formatted, as it will only be URL-encoded before be passed directly + to Twitter with no other checks performed. For advanced usage only. + since_id (int, optional): Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occurred since the since_id, the since_id will be - forced to the oldest ID available. [Optional] - max_id: + forced to the oldest ID available. + max_id (int, optional): Returns only statuses with an ID less than (that is, older - than) or equal to the specified ID. [Optional] - until: + than) or equal to the specified ID. + until (str, optional): Returns tweets generated before the given date. Date should be - formatted as YYYY-MM-DD. [Optional] - since: + formatted as YYYY-MM-DD. + since (str, optional): Returns tweets generated since the given date. Date should be - formatted as YYYY-MM-DD. [Optional] - geocode: - Geolocation information in the form (latitude, longitude, radius) - [Optional] - count: - Number of results to return. Default is 15 and maxmimum that twitter - returns is 100 irrespective of what you type in. [Optional] - lang: - Language for results as ISO 639-1 code. Default is None (all languages) - [Optional] - locale: - Language of the search query. Currently only 'ja' is effective. This is - intended for language-specific consumers and the default should work in - the majority of cases. - result_type: - Type of result which should be returned. Default is "mixed". Other - valid options are "recent" and "popular". [Optional] - include_entities: - If True, each tweet will include a node called "entities,". + formatted as YYYY-MM-DD. + geocode (str or list or tuple, optional): + Geolocation within which to search for tweets. Can be either a + string in the form of "latitude,longitude,radius" where latitude + and longitude are floats and radius is a string such as "1mi" or + "1km" ("mi" or "km" are the only units allowed). For example: + >>> api.GetSearch(geocode="37.781157,-122.398720,1mi"). + Otherwise, you can pass a list of either floats or strings for + lat/long and a string for radius: + >>> api.GetSearch(geocode=[37.781157, -122.398720, "1mi"]) + >>> # or: + >>> api.GetSearch(geocode=(37.781157, -122.398720, "1mi")) + >>> # or: + >>> api.GetSearch(geocode=("37.781157", "-122.398720", "1mi")) + count (int, optional): + Number of results to return. Default is 15 and maxmimum that + Twitter returns is 100 irrespective of what you type in. + lang (str, optional): + Language for results as ISO 639-1 code. Default is None + (all languages). + locale (str, optional): + Language of the search query. Currently only 'ja' is effective. + This is intended for language-specific consumers and the default + should work in the majority of cases. + result_type (str, optional): + Type of result which should be returned. Default is "mixed". + Valid options are "mixed, "recent", and "popular". + include_entities (bool, optional): + If True, each tweet will include a node called "entities". This node offers a variety of metadata about the tweet in a discrete structure, including: user_mentions, urls, and - hashtags. [Optional] + hashtags. Returns: - A sequence of twitter.Status instances, one for each message containing - the term + list: A sequence of twitter.Status instances, one for each message + containing the term, within the bounds of the geocoded area, or + given by the raw_query. """ - # Build request parameters url = '%s/search/tweets.json' % self.base_url parameters = {} if since_id: - try: - parameters['since_id'] = int(since_id) - except ValueError: - raise TwitterError({'message': "since_id must be an integer"}) + parameters['since_id'] = enf_type('since_id', int, since_id) if max_id: - try: - parameters['max_id'] = int(max_id) - except ValueError: - raise TwitterError({'message': "max_id must be an integer"}) + parameters['max_id'] = enf_type('max_id', int, max_id) if until: - parameters['until'] = until + parameters['until'] = enf_type('until', str, until) if since: - parameters['since'] = since + parameters['since'] = enf_type('since', str, since) if lang: - parameters['lang'] = lang + parameters['lang'] = enf_type('lang', str, lang) if locale: - parameters['locale'] = locale + parameters['locale'] = enf_type('locale', str, locale) if term is None and geocode is None and raw_query is None: return [] @@ -395,15 +406,17 @@ def GetSearch(self, parameters['q'] = term if geocode is not None: - parameters['geocode'] = ','.join(map(str, geocode)) + if isinstance(geocode, list) or isinstance(geocode, tuple): + parameters['geocode'] = ','.join([str(geo) for geo in geocode]) + else: + parameters['geocode'] = enf_type('geocode', str, geocode) if include_entities: - parameters['include_entities'] = 1 + parameters['include_entities'] = enf_type('include_entities', + bool, + include_entities) - try: - parameters['count'] = int(count) - except ValueError: - raise TwitterError({'message': "count must be an integer"}) + parameters['count'] = enf_type('count', int, count) if result_type in ["mixed", "popular", "recent"]: parameters['result_type'] = result_type @@ -418,8 +431,7 @@ def GetSearch(self, data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - # Return built list of statuses - return [Status.NewFromJsonDict(x) for x in data['statuses']] + return [Status.NewFromJsonDict(x) for x in data.get('statuses', '')] def GetUsersSearch(self, term=None, From 89ad4c253549a3606e17bd1f8b0bcb4392a95c29 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 11 Feb 2016 17:30:20 -0500 Subject: [PATCH 170/533] adds following_received, following_requested, muting, and blocking params for UserStatus --- twitter/user.py | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) diff --git a/twitter/user.py b/twitter/user.py index 08e8cd3c..fef46bec 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -14,6 +14,10 @@ class UserStatus(object): userstatus.screen_name userstatus.following userstatus.followed_by + userstatus.following_received + userstatus.following_requested + userstatus.blocking + userstatus.muting """ def __init__(self, **kwargs): @@ -34,7 +38,11 @@ def __init__(self, **kwargs): 'id_str': None, 'screen_name': None, 'following': None, - 'followed_by': None} + 'followed_by': None, + 'following_received': None, + 'following_requested': None, + 'blocking': None, + 'muting': None} for (param, default) in param_defaults.items(): setattr(self, param, kwargs.get(param, default)) @@ -105,6 +113,14 @@ def AsDict(self): data['following'] = self.following if self.followed_by: data['followed_by'] = self.followed_by + if self.following_received: + data['following_received'] = self.following_received + if self.following_requested: + data['following_requested'] = self.following_requested + if self.blocking: + data['blocking'] = self.blocking + if self.muting: + data['muting'] = self.muting return data @staticmethod @@ -116,20 +132,37 @@ def NewFromJsonDict(data): Returns: A twitter.UserStatus instance """ - following = None - followed_by = None + following = False + followed_by = False + following_received = False + following_requested = False + blocking = False + muting = False + if 'connections' in data: if 'following' in data['connections']: following = True if 'followed_by' in data['connections']: followed_by = True + if 'following_received' in data['connections']: + following_received = True + if 'following_requested' in data['connections']: + following_requested = True + if 'blocking' in data['connections']: + blocking = True + if 'muting' in data['connections']: + muting = True return UserStatus(name=data.get('name', None), id=data.get('id', None), id_str=data.get('id_str', None), screen_name=data.get('screen_name', None), following=following, - followed_by=followed_by) + followed_by=followed_by, + following_received=following_received, + following_requested=following_requested, + blocking=blocking, + muting=muting) class User(object): From a19786e9bb44e17f7d26be5895201bf2ad2c569d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 11 Feb 2016 17:35:18 -0500 Subject: [PATCH 171/533] reworks LookupFriendship to accept list, int, str for user_id, screen_name params; removes users param; adds tests and data for method --- testdata/get_friendships_lookup_muting.json | 1 + ...et_friendships_lookup_muting_blocking.json | 1 + testdata/get_friendships_lookup_none.json | 1 + tests/test_api_30.py | 56 +++++++++++++ twitter/api.py | 81 +++++++++++-------- 5 files changed, 106 insertions(+), 34 deletions(-) create mode 100644 testdata/get_friendships_lookup_muting.json create mode 100644 testdata/get_friendships_lookup_muting_blocking.json create mode 100644 testdata/get_friendships_lookup_none.json diff --git a/testdata/get_friendships_lookup_muting.json b/testdata/get_friendships_lookup_muting.json new file mode 100644 index 00000000..f274afd7 --- /dev/null +++ b/testdata/get_friendships_lookup_muting.json @@ -0,0 +1 @@ +[{"name": "dick costolo", "id": 6385432, "screen_name": "dickc", "id_str": "6385432", "connections": ["muting"]}] \ No newline at end of file diff --git a/testdata/get_friendships_lookup_muting_blocking.json b/testdata/get_friendships_lookup_muting_blocking.json new file mode 100644 index 00000000..b32cfd6d --- /dev/null +++ b/testdata/get_friendships_lookup_muting_blocking.json @@ -0,0 +1 @@ +[{"name": "dick costolo", "id": 6385432, "screen_name": "dickc", "id_str": "6385432", "connections": ["blocking", "muting"]}] \ No newline at end of file diff --git a/testdata/get_friendships_lookup_none.json b/testdata/get_friendships_lookup_none.json new file mode 100644 index 00000000..f0eca4de --- /dev/null +++ b/testdata/get_friendships_lookup_none.json @@ -0,0 +1 @@ +[{"id_str": "12", "name": "Jack", "connections": ["none"], "screen_name": "jack", "id": 12}] \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 7d3833a7..d6a2703b 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1356,3 +1356,59 @@ def testPostUpdateWithMedia(self): status=200) resp = self.api.PostUpdate( media=[697007311538229248, 697007311538229249], status='test') + + @responses.activate + def testLookupFriendship(self): + with open('testdata/get_friendships_lookup_none.json') as f: + resp_data = f.read() + + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/friendships/lookup.json?user_id=12', + body=resp_data, + match_querystring=True, + status=200) + + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/friendships/lookup.json?user_id=12,13', + body=resp_data, + match_querystring=True, + status=200) + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/friendships/lookup.json?screen_name=jack', + body=resp_data, + match_querystring=True, + status=200) + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/friendships/lookup.json?screen_name=jack,test', + body=resp_data, + match_querystring=True, + status=200) + + resp = self.api.LookupFriendship(user_id=12) + self.assertTrue(isinstance(resp, list)) + self.assertTrue(isinstance(resp[0], twitter.UserStatus)) + self.assertEqual(resp[0].following, False) + self.assertEqual(resp[0].followed_by, False) + + # If any of the following produce an unexpect result, the test will + # fail on a request to a URL that hasn't been set by responses: + test_user = twitter.User(id=12, screen_name='jack') + test_user2 = twitter.User(id=13, screen_name='test') + + resp = self.api.LookupFriendship(screen_name='jack') + resp = self.api.LookupFriendship(screen_name=['jack']) + resp = self.api.LookupFriendship(screen_name=test_user) + resp = self.api.LookupFriendship(screen_name=[test_user, test_user2]) + + resp = self.api.LookupFriendship(user_id=12) + resp = self.api.LookupFriendship(user_id=[12]) + resp = self.api.LookupFriendship(user_id=test_user) + resp = self.api.LookupFriendship(user_id=[test_user, test_user2]) + + self.assertRaises( + twitter.TwitterError, + lambda: self.api.LookupFriendship()) diff --git a/twitter/api.py b/twitter/api.py index 5f808a80..b8af9e57 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2749,54 +2749,67 @@ def DestroyFriendship(self, user_id=None, screen_name=None): return User.NewFromJsonDict(data) - def LookupFriendship(self, - user_id=None, - screen_name=None, - users=None): + def LookupFriendship(self, + user_id=None, + screen_name=None): """Lookup friendship status for user to authed user. - + Users may be specified either as lists of either user_ids, screen_names, or twitter.User objects. The list of users that are queried is the union of all specified parameters. - + Up to 100 users may be specified. - + Args: - user_id: - A list of user_ids to retrieve extended information. [Optional] - screen_name: - A list of screen_names to retrieve extended information. [Optional] - users: - A list of twitter.User objects to retrieve extended information. - [Optional] - + user_id (int, User, or list of ints or Users, optional): + A list of user_ids to retrieve extended information. + screen_name (string, User, or list of strings or Users, optional): + A list of screen_names to retrieve extended information. + Returns: - A twitter.UserStatus instance representing the friendship status + list: A list of twitter.UserStatus instance representing the + friendship status between the specified users and the authenticated + user. """ - if not user_id and not screen_name and not users: - raise TwitterError({'message': "Specify at least one of user_id, screen_name, users."}) - url = '%s/friendships/lookup.json' % (self.base_url) - data = {} - uids = list() + parameters = {} + if user_id: - uids.extend(user_id) - if users: - uids.extend([u.id for u in users]) - if len(uids): - data['user_id'] = ','.join(["%s" % u for u in uids]) + if isinstance(user_id, list) or isinstance(user_id, tuple): + uids = list() + for user in user_id: + if isinstance(user, User): + uids.append(user.id) + else: + uids.append(enf_type('user_id', int, user)) + parameters['user_id'] = ",".join([str(uid) for uid in uids]) + else: + if isinstance(user_id, User): + parameters['user_id'] = user_id.id + else: + parameters['user_id'] = enf_type('user_id', int, user_id) if screen_name: - data['screen_name'] = ','.join(screen_name) + if isinstance(screen_name, list) or isinstance(screen_name, tuple): + sn_list = list() + for user in screen_name: + if isinstance(user, User): + sn_list.append(user.screen_name) + else: + sn_list.append(enf_type('screen_name', str, user)) + parameters['screen_name'] = ','.join(sn_list) + else: + if isinstance(screen_name, User): + parameters['screen_name'] = screen_name.screen_name + else: + parameters['screen_name'] = enf_type('screen_name', str, screen_name) + if not user_id and not screen_name: + raise TwitterError( + "Specify at least one of user_id or screen_name.") - resp = self._RequestUrl(url, 'GET', data=data) + resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - if len(data) > 1: - return [UserStatus.NewFromJsonDict(x) for x in data] - elif len(data) == 1: - return UserStatus.NewFromJsonDict(data[0]) - else: - return None + return [UserStatus.NewFromJsonDict(x) for x in data] def CreateFavorite(self, status=None, From b96b007149f9cf5e349260fc8da55afc8ca8276a Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 11 Feb 2016 17:37:10 -0500 Subject: [PATCH 172/533] adds migration docs for changes to LookupFriendship --- doc/migration_v30.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index 7ef90359..8eaa9a3d 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -35,7 +35,6 @@ Changes to Existing Methods +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * No longer accepts ``cursor`` parameter. If you require granular control over the paging of the twitter.list.List members, please user twitter.api.Api.GetListMembersPaged instead. - :py:func:`twitter.api.Api.GetSearch` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Adds ``raw_query`` method. See :ref:`raw_queries` for more information. @@ -44,6 +43,13 @@ Changes to Existing Methods +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously. + +:py:func:`twitter.api.Api.LookupFriendship` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + +* Method will now accept a list for either ``user_id`` or ``screen_name``. The list can contain either ints, strings, or :py:mod:`twitter.user.User` objects for either ``user_id`` or ``screen_name``. +* Return value is a list of :py:mod:`twitter.user.UserStatus` objects. + :py:func:`twitter.api.Api.PostUpdate` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Now accepts three new parameters: ``media``, ``media_additional_owners``, and ``media_category``. ``media`` can be a URL, a local file, or a file-like object (something with a ``read()`` method), or a list of any combination of the above. From d23985828be0b778fb2ed7bd3acbf98108bf0794 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 11 Feb 2016 18:07:51 -0500 Subject: [PATCH 173/533] updates __eq__ check for muting/blocking/following received & requested --- tests/test_api_30.py | 33 ++++++++++++++++++++++++++++++--- twitter/user.py | 6 +++++- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index d6a2703b..86c28016 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1371,7 +1371,7 @@ def testLookupFriendship(self): responses.add( responses.GET, - 'https://api.twitter.com/1.1/friendships/lookup.json?user_id=12,13', + 'https://api.twitter.com/1.1/friendships/lookup.json?user_id=12,6385432', body=resp_data, match_querystring=True, status=200) @@ -1383,7 +1383,7 @@ def testLookupFriendship(self): status=200) responses.add( responses.GET, - 'https://api.twitter.com/1.1/friendships/lookup.json?screen_name=jack,test', + 'https://api.twitter.com/1.1/friendships/lookup.json?screen_name=jack,dickc', body=resp_data, match_querystring=True, status=200) @@ -1397,7 +1397,7 @@ def testLookupFriendship(self): # If any of the following produce an unexpect result, the test will # fail on a request to a URL that hasn't been set by responses: test_user = twitter.User(id=12, screen_name='jack') - test_user2 = twitter.User(id=13, screen_name='test') + test_user2 = twitter.User(id=6385432, screen_name='dickc') resp = self.api.LookupFriendship(screen_name='jack') resp = self.api.LookupFriendship(screen_name=['jack']) @@ -1412,3 +1412,30 @@ def testLookupFriendship(self): self.assertRaises( twitter.TwitterError, lambda: self.api.LookupFriendship()) + + @responses.activate + def testLookupFriendshipMute(self): + with open('testdata/get_friendships_lookup_muting.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/friendships/lookup.json?screen_name=dickc', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.LookupFriendship(screen_name='dickc') + self.assertEqual(resp[0].muting, True) + + @responses.activate + def testLookupFriendshipBlockMute(self): + with open('testdata/get_friendships_lookup_muting_blocking.json') as f: + resp_data = f.read() + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/friendships/lookup.json?screen_name=dickc', + body=resp_data, + match_querystring=True, + status=200) + resp = self.api.LookupFriendship(screen_name='dickc') + self.assertEqual(resp[0].muting, True) + self.assertEqual(resp[0].blocking, True) diff --git a/twitter/user.py b/twitter/user.py index fef46bec..ae1b0284 100644 --- a/twitter/user.py +++ b/twitter/user.py @@ -70,7 +70,11 @@ def __eq__(self, other): self.id_str == other.id_str and \ self.screen_name == other.screen_name and \ self.following == other.following and \ - self.followed_by == other.followed_by + self.followed_by == other.followed_by and \ + self.following_received == other.following_received and \ + self.following_requested == other.following_requested and\ + self.muting == other.muting and \ + self.blocking == other.blocking except AttributeError: return False From 00a9d3bc671b4635f0d3e73401caa318f99d9f7d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 31 Jan 2016 14:24:37 -0500 Subject: [PATCH 174/533] reworks rate limiting, adds tests for same, inline docs --- doc/twitter.rst | 5 + testdata/ratelimit.json | 2 +- tests/test_rate_limit.py | 129 ++++++++++++++++++++++++ twitter/api.py | 114 +++++++++++++++++---- twitter/ratelimit.py | 211 +++++++++++++++++++++++++++++++++++++++ 5 files changed, 438 insertions(+), 23 deletions(-) create mode 100644 tests/test_rate_limit.py create mode 100644 twitter/ratelimit.py diff --git a/doc/twitter.rst b/doc/twitter.rst index 4db0a1e6..879d4f27 100644 --- a/doc/twitter.rst +++ b/doc/twitter.rst @@ -35,6 +35,11 @@ twitter.api :undoc-members: :show-inheritance: +.. automodule:: twitter.ratelimit + :members: + :undoc-members: + :show-inheritance: + .. automodule:: twitter.status :members: :undoc-members: diff --git a/testdata/ratelimit.json b/testdata/ratelimit.json index d6cda883..dfa54f9d 100644 --- a/testdata/ratelimit.json +++ b/testdata/ratelimit.json @@ -1 +1 @@ -{"resources": {"help": {"/help/privacy": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/configuration": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/settings": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/tos": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/languages": {"limit": 15,"remaining": 15,"reset": 1452254278}},"favorites": {"/favorites/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"geo": {"/geo/similar_places": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/id/:place_id": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/reverse_geocode": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/search": {"limit": 15,"remaining": 15,"reset": 1452254278}},"users": {"/users/suggestions/:slug/members": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/profile_banner": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/suggestions/:slug": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/derived_info": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/show/:id": {"limit": 181,"remaining": 181,"reset": 1452254278},"/users/lookup": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/search": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/suggestions": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/report_spam": {"limit": 15,"remaining": 15,"reset": 1452254278}},"application": {"/application/rate_limit_status": {"limit": 180,"remaining": 177,"reset": 1452253438}},"moments": {"/moments/permissions": {"limit": 300,"remaining": 300,"reset": 1452254278}},"media": {"/media/upload": {"limit": 500,"remaining": 500,"reset": 1452254278}},"followers": {"/followers/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/followers/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"direct_messages": {"/direct_messages/sent_and_received": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages/sent": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages/show": {"limit": 15,"remaining": 15,"reset": 1452254278}},"account": {"/account/login_verification_enrollment": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/verify_credentials": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/update_profile": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/settings": {"limit": 15,"remaining": 15,"reset": 1452254278}},"lists": {"/lists/subscriptions": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/members": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/memberships": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/members/show": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/subscribers": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/ownerships": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/show": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/statuses": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/subscribers/show": {"limit": 15,"remaining": 15,"reset": 1452254278}},"friendships": {"/friendships/no_retweets/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/incoming": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/outgoing": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/lookup": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/show": {"limit": 180,"remaining": 180,"reset": 1452254278}},"saved_searches": {"/saved_searches/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/saved_searches/destroy/:id": {"limit": 15,"remaining": 15,"reset": 1452254278},"/saved_searches/show/:id": {"limit": 15,"remaining": 15,"reset": 1452254278}},"contacts": {"/contacts/addressbook": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/users_and_uploaded_by": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/delete/status": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/users": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/uploaded_by": {"limit": 300,"remaining": 300,"reset": 1452254278}},"statuses": {"/statuses/retweets_of_me": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/lookup": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/friends": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/retweets/:id": {"limit": 60,"remaining": 60,"reset": 1452254278},"/statuses/mentions_timeline": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/show/:id": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/home_timeline": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/retweeters/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/oembed": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/user_timeline": {"limit": 180,"remaining": 180,"reset": 1452254278}},"mutes": {"/mutes/users/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/mutes/users/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"friends": {"/friends/ids": {"limit": 15,"remaining": 11,"reset": 1452253438},"/friends/following/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friends/following/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friends/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"blocks": {"/blocks/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/blocks/ids": {"limit": 15,"remaining": 15,"reset": 1452254278}},"search": {"/search/tweets": {"limit": 180,"remaining": 180,"reset": 1452254278}},"trends": {"/trends/place": {"limit": 15,"remaining": 15,"reset": 1452254278},"/trends/available": {"limit": 15,"remaining": 15,"reset": 1452254278},"/trends/closest": {"limit": 15,"remaining": 15,"reset": 1452254278}},"device": {"/device/token": {"limit": 15,"remaining": 15,"reset": 1452254278}},"collections": {"/collections/list": {"limit": 1000,"remaining": 1000,"reset": 1452254278},"/collections/show": {"limit": 1000,"remaining": 1000,"reset": 1452254278},"/collections/entries": {"limit": 1000,"remaining": 1000,"reset": 1452254278}}},"rate_limit_context": {"access_token": "4012966701-SVdwWUOaArQBOsy6UI6ejAIszrsR56uG2wDWDnN"}} \ No newline at end of file +{"resources": {"help": {"/help/privacy": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/configuration": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/settings": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/tos": {"limit": 15,"remaining": 15,"reset": 1452254278},"/help/languages": {"limit": 15,"remaining": 15,"reset": 1452254278}},"favorites": {"/favorites/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"geo": {"/geo/similar_places": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/id/:place_id": {"limit": 47,"remaining": 47,"reset": 1452254278},"/geo/reverse_geocode": {"limit": 15,"remaining": 15,"reset": 1452254278},"/geo/search": {"limit": 15,"remaining": 15,"reset": 1452254278}},"users": {"/users/suggestions/:slug/members": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/profile_banner": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/suggestions/:slug": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/derived_info": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/show/:id": {"limit": 181,"remaining": 181,"reset": 1452254278},"/users/lookup": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/search": {"limit": 180,"remaining": 180,"reset": 1452254278},"/users/suggestions": {"limit": 15,"remaining": 15,"reset": 1452254278},"/users/report_spam": {"limit": 15,"remaining": 15,"reset": 1452254278}},"application": {"/application/rate_limit_status": {"limit": 180,"remaining": 177,"reset": 1452253438}},"moments": {"/moments/permissions": {"limit": 300,"remaining": 300,"reset": 1452254278}},"media": {"/media/upload": {"limit": 500,"remaining": 500,"reset": 1452254278}},"followers": {"/followers/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/followers/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"direct_messages": {"/direct_messages/sent_and_received": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages/sent": {"limit": 15,"remaining": 15,"reset": 1452254278},"/direct_messages/show": {"limit": 15,"remaining": 15,"reset": 1452254278}},"account": {"/account/login_verification_enrollment": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/verify_credentials": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/update_profile": {"limit": 15,"remaining": 15,"reset": 1452254278},"/account/settings": {"limit": 15,"remaining": 15,"reset": 1452254278}},"lists": {"/lists/subscriptions": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/members": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/memberships": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/members/show": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/subscribers": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/ownerships": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/show": {"limit": 15,"remaining": 15,"reset": 1452254278},"/lists/statuses": {"limit": 180,"remaining": 180,"reset": 1452254278},"/lists/subscribers/show": {"limit": 15,"remaining": 15,"reset": 1452254278}},"friendships": {"/friendships/no_retweets/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/incoming": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/outgoing": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/lookup": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friendships/show": {"limit": 180,"remaining": 180,"reset": 1452254278}},"saved_searches": {"/saved_searches/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/saved_searches/destroy/:id": {"limit": 15,"remaining": 15,"reset": 1452254278},"/saved_searches/show/:id": {"limit": 15,"remaining": 15,"reset": 1452254278}},"contacts": {"/contacts/addressbook": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/users_and_uploaded_by": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/delete/status": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/users": {"limit": 300,"remaining": 300,"reset": 1452254278},"/contacts/uploaded_by": {"limit": 300,"remaining": 300,"reset": 1452254278}},"statuses": {"/statuses/retweets_of_me": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/lookup": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/friends": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/retweets/:id": {"limit": 23,"remaining": 23,"reset": 1452254278},"/statuses/mentions_timeline": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/show/:id": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/home_timeline": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/retweeters/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/statuses/oembed": {"limit": 180,"remaining": 180,"reset": 1452254278},"/statuses/user_timeline": {"limit": 180,"remaining": 180,"reset": 1452254278}},"mutes": {"/mutes/users/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/mutes/users/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"friends": {"/friends/ids": {"limit": 15,"remaining": 11,"reset": 1452253438},"/friends/following/ids": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friends/following/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/friends/list": {"limit": 15,"remaining": 15,"reset": 1452254278}},"blocks": {"/blocks/list": {"limit": 15,"remaining": 15,"reset": 1452254278},"/blocks/ids": {"limit": 15,"remaining": 15,"reset": 1452254278}},"search": {"/search/tweets": {"limit": 180,"remaining": 180,"reset": 1452254278}},"trends": {"/trends/place": {"limit": 15,"remaining": 15,"reset": 1452254278},"/trends/available": {"limit": 15,"remaining": 15,"reset": 1452254278},"/trends/closest": {"limit": 15,"remaining": 15,"reset": 1452254278}},"device": {"/device/token": {"limit": 15,"remaining": 15,"reset": 1452254278}},"collections": {"/collections/list": {"limit": 1000,"remaining": 1000,"reset": 1452254278},"/collections/show": {"limit": 1000,"remaining": 1000,"reset": 1452254278},"/collections/entries": {"limit": 1000,"remaining": 1000,"reset": 1452254278}}},"rate_limit_context": {"access_token": "4012966701-SVdwWUOaArQBOsy6UI6ejAIszrsR56uG2wDWDnN"}} \ No newline at end of file diff --git a/tests/test_rate_limit.py b/tests/test_rate_limit.py new file mode 100644 index 00000000..078090c3 --- /dev/null +++ b/tests/test_rate_limit.py @@ -0,0 +1,129 @@ +# encoding: utf-8 + +import sys +import unittest + +import twitter + +import warnings + +warnings.filterwarnings('ignore', category=DeprecationWarning) + +import responses + + +class ErrNull(object): + """ Suppress output of tests while writing to stdout or stderr. This just + takes in data and does nothing with it. + """ + + def write(self, data): + pass + + +class RateLimitTests(unittest.TestCase): + """ Tests for RateLimit object """ + + def setUp(self): + self.api = twitter.Api( + consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test', + sleep_on_rate_limit=False) + self.base_url = 'https://api.twitter.com/1.1' + self._stderr = sys.stderr + sys.stderr = ErrNull() + + def tearDown(self): + sys.stderr = self._stderr + pass + + @responses.activate + def testInitializeRateLimit(self): + with open('testdata/ratelimit.json') as f: + resp_data = f.read() + + url = '%s/application/rate_limit_status.json' % self.api.base_url + responses.add( + responses.GET, + url, + body=resp_data, + match_querystring=True, + status=200) + self.api.InitializeRateLimit() + self.assertTrue(self.api.rate_limit) + + +class RateLimitMethodsTests(unittest.TestCase): + """ Tests for RateLimit object """ + + @responses.activate + def setUp(self): + self.api = twitter.Api( + consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test', + sleep_on_rate_limit=False) + self.base_url = 'https://api.twitter.com/1.1' + self._stderr = sys.stderr + sys.stderr = ErrNull() + + with open('testdata/ratelimit.json') as f: + resp_data = f.read() + + url = '%s/application/rate_limit_status.json' % self.api.base_url + responses.add( + responses.GET, + url, + body=resp_data, + match_querystring=True, + status=200) + self.api.InitializeRateLimit() + self.assertTrue(self.api.rate_limit) + + def tearDown(self): + sys.stderr = self._stderr + pass + + def testGetRateLimit(self): + lim = self.api.rate_limit.get_limit('/lists/members') + self.assertEqual(lim.limit, 180) + self.assertEqual(lim.remaining, 180) + self.assertEqual(lim.reset, 1452254278) + + def testNonStandardEndpointRateLimit(self): + lim = self.api.rate_limit.get_limit('https://api.twitter.com/1.1/geo/id/312.json?skip_status=True') + self.assertEqual(lim.limit, 47) + + lim = self.api.rate_limit.get_limit('https://api.twitter.com/1.1/saved_searches/destroy/312.json') + self.assertEqual(lim.limit, 15) + lim = self.api.rate_limit.get_limit('https://api.twitter.com/1.1/statuses/retweets/312.json?skip_status=True') + self.assertEqual(lim.limit, 23) + + def testSetRateLimit(self): + previous_limit = self.api.rate_limit.get_limit('/lists/members') + self.api.rate_limit.set_limit( + url='https://api.twitter.com/1.1/lists/members.json?skip_status=True', + limit=previous_limit.limit, + remaining=previous_limit.remaining - 1, + reset=previous_limit.reset) + new_limit = self.api.rate_limit.get_limit('/lists/members') + self.assertEqual(new_limit.remaining, previous_limit.remaining - 1) + + def testFamilyNotFound(self): + limit = self.api.rate_limit.get_limit('/tests/test') + self.assertEqual(limit.limit, 15) + self.assertEqual(limit.remaining, 15) + self.assertEqual(limit.reset, 0) + + def testSetUnknownRateLimit(self): + self.api.rate_limit.set_limit( + url='https://api.twitter.com/1.1/not/a/real/endpoint.json', + limit=15, + remaining=14, + reset=100) + limit = self.api.rate_limit.get_limit( + url='https://api.twitter.com/1.1/not/a/real/endpoint.json') + self.assertEqual(limit.remaining, 14) diff --git a/twitter/api.py b/twitter/api.py index b8af9e57..6706df72 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -24,7 +24,6 @@ import sys import gzip import time -import types import base64 import re import datetime @@ -52,6 +51,8 @@ Status, Trend, TwitterError, User, UserStatus) from twitter.category import Category +from twitter.ratelimit import RateLimit + from twitter.twitter_utils import ( calc_expected_status_length, is_url, @@ -195,6 +196,7 @@ def __init__(self, self._InitializeUserAgent() self._InitializeDefaultParameters() + self.rate_limit = None self.sleep_on_rate_limit = sleep_on_rate_limit if base_url is None: @@ -3899,7 +3901,11 @@ def UpdateImage(self, if skip_status: data['skip_status'] = 1 - resp = self._RequestUrl(url, 'POST', data=data) + resp = self._RequestUrl(url, + 'POST', + data=data, + rate_context='/account/update_profile_image') + if resp.status_code in [200, 201, 202]: return True if resp.status_code == 400: @@ -3940,6 +3946,7 @@ def UpdateBanner(self, data['skip_status'] = 1 resp = self._RequestUrl(url, 'POST', data=data) + if resp.status_code in [200, 201, 202]: return True if resp.status_code == 400: @@ -4179,6 +4186,50 @@ def GetRateLimitStatus(self, resource_families=None): return data + def InitializeRateLimit(self): + """ Make the initial call to the Twitter API to get the rate limit + status for the currently authenticated user or application. + + Returns: + None. + + """ + _sleep = self.sleep_on_rate_limit + if self.sleep_on_rate_limit: + self.sleep_on_rate_limit = False + + url = '%s/application/rate_limit_status.json' % self.base_url + + resp = self._RequestUrl(url, 'GET') # No-Cache + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + self.sleep_on_rate_limit = _sleep + self.rate_limit = RateLimit(**data) + + def CheckRateLimit(self, url): + """ Checks a URL to see the rate limit status for that endpoint. + + Args: + url (str): + URL to check against the current rate limits. + + Returns: + namedtuple: EndpointRateLimit namedtuple. + + Raises: + twitter.TwitterError: If a match to an endpoint is not found. + """ + if not self.rate_limit: + self.InitRateLimit() + + if url: + limit = self.rate_limit.get_limit(url) + + if time.time() > limit.reset: + self.InitRateLimit() + + return self.rate_limit.get_limit(url) + def GetAverageSleepTime(self, resources): """Determines the minimum number of seconds that a program must wait before hitting the server again without exceeding the rate_limit @@ -4394,42 +4445,61 @@ def _RequestUrl(self, url, verb, data=None): A JSON object. """ if not self.__auth: - raise TwitterError({'error': "The twitter.Api instance must be authenticated."}) + raise TwitterError( + "The twitter.Api instance must be authenticated.") + + if url and self.sleep_on_rate_limit: + limit = self.CheckRateLimit(url) + + if limit.remaining == 0: + try: + time.sleep(int(limit.reset - time.time())) + except ValueError: + pass if verb == 'POST': if 'media_ids' in data: url = self._BuildUrl(url, extra_params={'media_ids': data['media_ids']}) + if 'media' in data: try: - return requests.post( - url, - files=data, - auth=self.__auth, - timeout=self._timeout - ) + resp = requests.post(url, + files=data, + auth=self.__auth, + timeout=self._timeout) except requests.RequestException as e: raise TwitterError(str(e)) else: try: - return requests.post( - url, - data=data, - auth=self.__auth, - timeout=self._timeout - ) + resp = requests.post(url, + data=data, + auth=self.__auth, + timeout=self._timeout) + except requests.RequestException as e: raise TwitterError(str(e)) - if verb == 'GET': + + elif verb == 'GET': url = self._BuildUrl(url, extra_params=data) try: - return requests.get( - url, - auth=self.__auth, - timeout=self._timeout - ) + resp = requests.get(url, + auth=self.__auth, + timeout=self._timeout) + except requests.RequestException as e: raise TwitterError(str(e)) - return 0 # if not a POST or GET request + + else: + resp = 0 # if not a POST or GET request + + if url and self.sleep_on_rate_limit and self.rate_limit: + limit = resp.headers.get('x-rate-limit-limit', 0) + remaining = resp.headers.get('x-rate-limit-remaining', 0) + reset = resp.headers.get('x-rate-limit-reset', 0) + + self.rate_limit.set_limit(url, limit, remaining, reset) + + return resp def _RequestStream(self, url, verb, data=None): """Request a stream of data. diff --git a/twitter/ratelimit.py b/twitter/ratelimit.py new file mode 100644 index 00000000..0e259136 --- /dev/null +++ b/twitter/ratelimit.py @@ -0,0 +1,211 @@ +from collections import namedtuple +import re +try: + from urllib.parse import urlparse +except ImportError: + from urlparse import urlparse, urlunparse + +from twitter.twitter_utils import enf_type + +EndpointRateLimit = namedtuple('EndpointRateLimit', + ['limit', 'remaining', 'reset']) + +ResourceEndpoint = namedtuple('ResourceEndpoint', ['regex', 'resource']) + + +GEO_ID_PLACE_ID = ResourceEndpoint(re.compile(r'/geo/id/\d+'), "/geo/id/:place_id") +SAVED_SEARCHES_DESTROY_ID = ResourceEndpoint(re.compile(r'/saved_searches/destroy/\d+'), "/saved_searches/destroy/:id") +SAVED_SEARCHES_SHOW_ID = ResourceEndpoint(re.compile(r'/saved_searches/show/\d+'), "/saved_searches/show/:id") +STATUSES_RETWEETS_ID = ResourceEndpoint(re.compile(r'/statuses/retweets/\d+'), "/statuses/retweets/:id") +STATUSES_SHOW_ID = ResourceEndpoint(re.compile(r'/statuses/show/\d+'), "/statuses/show/:id") +USERS_SHOW_ID = ResourceEndpoint(re.compile(r'/users/show/\d+'), "/users/show/:id") +USERS_SUGGESTIONS_SLUG = ResourceEndpoint(re.compile(r'/users/suggestions/\w+$'), "/users/suggestions/:slug") +USERS_SUGGESTIONS_SLUG_MEMBERS = ResourceEndpoint(re.compile(r'/users/suggestions/.+/members'), "/users/suggestions/:slug/members") + +NON_STANDARD_ENDPOINTS = [ + GEO_ID_PLACE_ID, + SAVED_SEARCHES_DESTROY_ID, + SAVED_SEARCHES_SHOW_ID, + STATUSES_RETWEETS_ID, + STATUSES_SHOW_ID, + USERS_SHOW_ID, + USERS_SUGGESTIONS_SLUG, + USERS_SUGGESTIONS_SLUG_MEMBERS, +] + + +class RateLimit(object): + + """ Object to hold the rate limit status of various endpoints for + the twitter.Api object. + + This object is generally attached to the API as Api.rate_limit, but is not + created until the user makes a method call that uses _RequestUrl() or calls + Api.InitializeRateLimit(), after which it get created and populated with + rate limit data from Twitter. + + Calling Api.InitializeRateLimit() populates the object with all of the + rate limits for the endpoints defined by Twitter; more info is available + here: + + https://dev.twitter.com/rest/public/rate-limits + + https://dev.twitter.com/rest/public/rate-limiting + + https://dev.twitter.com/rest/reference/get/application/rate_limit_status + + Once a resource (i.e., an endpoint) has been requested, Twitter's response + will contain the current rate limit status as part of the headers, i.e.:: + + x-rate-limit-limit + x-rate-limit-remaining + x-rate-limit-reset + + ``limit`` is the generic limit for that endpoint, ``remaining`` is how many + more times you can make a call to that endpoint, and ``reset`` is the time + (in seconds since the epoch) until remaining resets to its default for that + endpoint. + + Generally speaking, each endpoint has a 15-minute reset time and endpoints + can either make 180 or 15 requests per window. According to Twitter, any + endpoint not defined in the rate limit chart or the response from a GET + request to ``application/rate_limit_status.json`` should be assumed to be + 15 requests per 15 minutes. + + """ + + def __init__(self, **kwargs): + """ Instantiates the RateLimitObject. Takes a json dict as + kwargs and maps to the object's dictionary. So for something like: + + {"resources": { + "help": { + /help/privacy": { + "limit": 15, + "remaining": 15, + "reset": 1452254278 + } + } + } + } + + the RateLimit object will have an attribute 'resources' from which you + can perform a lookup like: + + api.rate_limit.get('help').get('/help/privacy') + + and a dictionary of limit, remaining, and reset will be returned. + + """ + self.__dict__.update(kwargs) + + @staticmethod + def url_to_resource(url): + """ Take a fully qualified URL and attempts to return the rate limit + resource family corresponding to it. For example: + + >>> RateLimit.url_to_resource('https://api.twitter.com/1.1/statuses/lookup.json?id=317') + >>> '/statuses/lookup' + + Args: + url (str): URL to convert to a resource family. + + Returns: + string: Resource family corresponding to the URL. + """ + resource = urlparse(url).path.replace('/1.1', '').replace('.json', '') + for non_std_endpoint in NON_STANDARD_ENDPOINTS: + if re.match(non_std_endpoint.regex, resource): + return non_std_endpoint.resource + else: + return resource + + def set_unknown_limit(self, url, limit, remaining, reset): + """ If a resource family is unknown, add it to the object's + dictionary. This is to deal with new endpoints being added to + the API, but not necessarily to the information returned by + ``/account/rate_limit_status.json`` endpoint. + + For example, if Twitter were to add an endpoint + ``/puppies/lookup.json``, the RateLimit object would create a resource + family ``puppies`` and add ``/puppies/lookup`` as the endpoint, along + with whatever limit, remaining hits available, and reset time would be + applicable to that resource+endpoint pair. + + Args: + url (str): + URL of the endpoint being fetched. + limit (int): + Max number of times a user or app can hit the endpoint + before being rate limited. + remaining (int): + Number of times a user or app can access the endpoint + before being rate limited. + reset (int): + Epoch time at which the rate limit window will reset. + """ + + endpoint = self.url_to_resource(url) + resource_family = endpoint.split('/')[1] + self.__dict__['resources'].update( + {resource_family: { + endpoint: { + "limit": limit, + "remaining": remaining, + "reset": reset + }}}) + + def get_limit(self, url): + """ Gets a EndpointRateLimit object for the given url. + + Args: + url (str, optional): + URL of the endpoint for which to return the rate limit + status. + + Returns: + namedtuple: EndpointRateLimit object containing rate limit + information. + """ + endpoint = self.url_to_resource(url) + resource_family = endpoint.split('/')[1] + + try: + family_rates = self.resources.get(resource_family).get(endpoint) + except AttributeError: + return EndpointRateLimit(limit=15, remaining=15, reset=0) + return EndpointRateLimit(family_rates['limit'], + family_rates['remaining'], + family_rates['reset']) + + def set_limit(self, url, limit, remaining, reset): + """ Set an endpoint's rate limits. The data used for each of the + args should come from Twitter's ``x-rate-limit`` headers. + + Args: + url (str): + URL of the endpoint being fetched. + limit (int): + Max number of times a user or app can hit the endpoint + before being rate limited. + remaining (int): + Number of times a user or app can access the endpoint + before being rate limited. + reset (int): + Epoch time at which the rate limit window will reset. + """ + endpoint = self.url_to_resource(url) + resource_family = endpoint.split('/')[1] + + try: + family_rates = self.resources.get(resource_family).get(endpoint) + except AttributeError: + self.set_unknown_limit(url, limit, remaining, reset) + family_rates = self.resources.get(resource_family).get(endpoint) + family_rates['limit'] = enf_type('limit', int, limit) + family_rates['remaining'] = enf_type('remaining', int, remaining) + family_rates['reset'] = enf_type('reset', int, reset) + + return EndpointRateLimit(family_rates['limit'], + family_rates['remaining'], + family_rates['reset']) From c84c3cadefaece042f1dda1dcaa0c6067193073c Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 16 Feb 2016 07:50:16 -0500 Subject: [PATCH 175/533] remove old ratelimiting functions --- twitter/api.py | 63 +------------------------------------------------- 1 file changed, 1 insertion(+), 62 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 6706df72..0b406806 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -146,7 +146,7 @@ def __init__(self, use_gzip_compression=False, debugHTTP=False, timeout=None, - sleep_on_rate_limit=True): + sleep_on_rate_limit=False): """Instantiate a new twitter.Api object. Args: @@ -4230,67 +4230,6 @@ def CheckRateLimit(self, url): return self.rate_limit.get_limit(url) - def GetAverageSleepTime(self, resources): - """Determines the minimum number of seconds that a program must wait - before hitting the server again without exceeding the rate_limit - imposed for the currently authenticated user. - - Returns: - The average seconds that the api must have to sleep - """ - if resources[0] == '/': - resources = resources[1:] - resource_families = resources[:resources.find('/')] if '/' in resources else resources - rate_status = self.GetRateLimitStatus(resource_families) - try: - reset_time = rate_status['resources'][resource_families]['/' + resources]['reset'] - remaining = rate_status['resources'][resource_families]['/' + resources]['remaining'] - except: - raise TwitterError({'message': 'Wrong resources'}) - utc_now = datetime.datetime.utcnow() - utc_stuct = utc_now.timetuple() - current_time = timegm(utc_stuct) - delta = reset_time - current_time - - if remaining == 0: - return remaining - else: - return old_div(delta, remaining) - - def GetSleepTime(self, resources): - """Determines the minimum number of seconds that a program must wait - before hitting the server again without exceeding the rate_limit - imposed for the currently authenticated user. - - Returns: - The minimum seconds that the api must have to sleep before query again - """ - - if self.sleep_on_rate_limit is False: - return 0 - - if resources[0] == '/': - resources = resources[1:] - resource_families = resources[:resources.find('/')] if '/' in resources else resources - rate_status = self.GetRateLimitStatus(resource_families) - try: - reset_time = rate_status['resources'][resource_families]['/' + resources]['reset'] - remaining = rate_status['resources'][resource_families]['/' + resources]['remaining'] - except: - raise TwitterError({'message': 'Wrong resources'}) - - if remaining == 0: - utc_now = datetime.datetime.utcnow() - utc_stuct = utc_now.timetuple() - current_time = timegm(utc_stuct) - delta = reset_time - current_time - if delta < 0: - return 0 - else: - return delta - else: - return 0 - def _BuildUrl(self, url, path_elements=None, extra_params=None): # Break url into constituent parts (scheme, netloc, path, params, query, fragment) = urlparse(url) From c5d66cfe879d5efda233d582b11be1fe9cc13365 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 16 Feb 2016 19:22:46 -0500 Subject: [PATCH 176/533] removes old GetRateLimitStatus method, fixes typos, adds tests for setting rate_limit object --- tests/test_rate_limit.py | 22 ++++++++++++++++++++++ twitter/api.py | 37 ++++--------------------------------- 2 files changed, 26 insertions(+), 33 deletions(-) diff --git a/tests/test_rate_limit.py b/tests/test_rate_limit.py index 078090c3..5323dec9 100644 --- a/tests/test_rate_limit.py +++ b/tests/test_rate_limit.py @@ -54,6 +54,28 @@ def testInitializeRateLimit(self): self.api.InitializeRateLimit() self.assertTrue(self.api.rate_limit) + self.rate_limit = None + self.api.sleep_on_rate_limit = True + self.api.InitializeRateLimit() + self.assertTrue(self.api.rate_limit) + self.assertTrue(self.api.sleep_on_rate_limit) + + @responses.activate + def testCheckRateLimit(self): + with open('testdata/ratelimit.json') as f: + resp_data = f.read() + url = '%s/application/rate_limit_status.json' % self.api.base_url + responses.add( + responses.GET, + url, + body=resp_data, + match_querystring=True, + status=200) + rt = self.api.CheckRateLimit('https://api.twitter.com/1.1/help/privacy.json') + self.assertEqual(rt.limit, 15) + self.assertEqual(rt.remaining, 15) + self.assertEqual(rt.reset, 1452254278) + class RateLimitMethodsTests(unittest.TestCase): """ Tests for RateLimit object """ diff --git a/twitter/api.py b/twitter/api.py index 0b406806..a153be07 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3901,10 +3901,7 @@ def UpdateImage(self, if skip_status: data['skip_status'] = 1 - resp = self._RequestUrl(url, - 'POST', - data=data, - rate_context='/account/update_profile_image') + resp = self._RequestUrl(url, 'POST', data=data) if resp.status_code in [200, 201, 202]: return True @@ -4162,32 +4159,8 @@ def SetSource(self, source): """ self._default_params['source'] = source - def GetRateLimitStatus(self, resource_families=None): - """Fetch the rate limit status for the currently authorized user. - - Args: - resources: - A comma seperated list of resource families you want to know the current - rate limit disposition of. [Optional] - - Returns: - A dictionary containing the time the limit will reset (reset_time), - the number of remaining hits allowed before the reset (remaining_hits), - the number of hits allowed in a 60-minute period (hourly_limit), and - the time of the reset in seconds since The Epoch (reset_time_in_seconds). - """ - url = '%s/application/rate_limit_status.json' % self.base_url - parameters = {} - if resource_families is not None: - parameters['resources'] = resource_families - - resp = self._RequestUrl(url, 'GET', data=parameters) # No-Cache - data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) - - return data - def InitializeRateLimit(self): - """ Make the initial call to the Twitter API to get the rate limit + """ Make a call to the Twitter API to get the rate limit status for the currently authenticated user or application. Returns: @@ -4216,17 +4189,15 @@ def CheckRateLimit(self, url): Returns: namedtuple: EndpointRateLimit namedtuple. - Raises: - twitter.TwitterError: If a match to an endpoint is not found. """ if not self.rate_limit: - self.InitRateLimit() + self.InitializeRateLimit() if url: limit = self.rate_limit.get_limit(url) if time.time() > limit.reset: - self.InitRateLimit() + self.InitializeRateLimit() return self.rate_limit.get_limit(url) From 9dc54923ad4e318237c9406841ebac63f2903e7c Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 16 Feb 2016 21:53:40 -0500 Subject: [PATCH 177/533] removes check on reset time. The idea is that if you are making a call to, say, ``/statuses/lookup.json`` and the limit information is stale, i.e., limit.reset is in the past, then you should make another call to ``/application/rate_limit_status.json`` to get your new limits and reset. That said, this could result in a lot of hits to *that* endpoint, thereby rate limiting your application on the ``/application/rate_limit_status.json`` endpoint and causing unnecessary sleeps for the API. Worst case scenario is that your application calls a bunch of different methods hitting a bunch of different endpoints and you end up making a ton of checks on rate_limit_status.json and, since ``Api.InitializeRateLimit()`` does not abide by rate limits, you could get blacklisted. --- twitter/api.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index a153be07..476ce7d7 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -4196,10 +4196,7 @@ def CheckRateLimit(self, url): if url: limit = self.rate_limit.get_limit(url) - if time.time() > limit.reset: - self.InitializeRateLimit() - - return self.rate_limit.get_limit(url) + return limit def _BuildUrl(self, url, path_elements=None, extra_params=None): # Break url into constituent parts From ef777b10d82cd607ce0d23a1c2bd74554d32eb14 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 17 Feb 2016 20:38:20 -0500 Subject: [PATCH 178/533] fixes content.decode errors for streaming endpoints --- twitter/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 476ce7d7..b1c66e46 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3969,7 +3969,7 @@ def GetStreamSample(self, delimited=None, stall_warnings=None): resp = self._RequestStream(url, 'GET') for line in resp.iter_lines(): if line: - data = self._ParseAndCheckTwitter(line) + data = self._ParseAndCheckTwitter(line.decode('utf-8')) yield data def GetStreamFilter(self, @@ -4014,7 +4014,7 @@ def GetStreamFilter(self, resp = self._RequestStream(url, 'POST', data=data) for line in resp.iter_lines(): if line: - data = self._ParseAndCheckTwitter(line) + data = self._ParseAndCheckTwitter(line.decode('utf-8')) yield data def GetUserStream(self, @@ -4070,7 +4070,7 @@ def GetUserStream(self, resp = self._RequestStream(url, 'POST', data=data) for line in resp.iter_lines(): if line: - data = self._ParseAndCheckTwitter(line) + data = self._ParseAndCheckTwitter(line.decode('utf-8')) yield data def VerifyCredentials(self): From 940502d35e771a927fa145d70bed0e6a1cf58bdd Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 24 Jan 2016 15:31:53 -0500 Subject: [PATCH 179/533] adds module documentation to index since there is so much inline doc --- doc/index.rst | 1 + doc/twitter.rst | 13 ++++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/doc/index.rst b/doc/index.rst index d89f2e67..1fd32756 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -17,6 +17,7 @@ Contents: models.rst searching.rst with_django.rst + twitter.rst Introduction diff --git a/doc/twitter.rst b/doc/twitter.rst index 879d4f27..88fe4ed5 100644 --- a/doc/twitter.rst +++ b/doc/twitter.rst @@ -1,8 +1,8 @@ -python-twitter package -============= +Modules Documentation +===================== -twitter.api +API ---------------- .. automodule:: twitter.api @@ -10,6 +10,9 @@ twitter.api :undoc-members: :show-inheritance: +Models +--------------------- + .. automodule:: twitter.category :members: :undoc-members: @@ -60,6 +63,10 @@ twitter.api :undoc-members: :show-inheritance: + +Utilities +--------------------- + .. automodule:: twitter.twitter_utils :members: :undoc-members: From 181549a0ed39803505b8a9f5129523bafc35ea63 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Mon, 25 Jan 2016 18:18:51 -0500 Subject: [PATCH 180/533] adds getting started guide --- doc/getting_started.rst | 49 ++++++++++++++++++++++ doc/index.rst | 1 + doc/python-twitter-app-creation-part1.png | Bin 0 -> 264928 bytes doc/python-twitter-app-creation-part2.png | Bin 0 -> 156712 bytes doc/python-twitter-app-creation-part3.png | Bin 0 -> 168112 bytes 5 files changed, 50 insertions(+) create mode 100644 doc/getting_started.rst create mode 100644 doc/python-twitter-app-creation-part1.png create mode 100644 doc/python-twitter-app-creation-part2.png create mode 100644 doc/python-twitter-app-creation-part3.png diff --git a/doc/getting_started.rst b/doc/getting_started.rst new file mode 100644 index 00000000..ee478b27 --- /dev/null +++ b/doc/getting_started.rst @@ -0,0 +1,49 @@ +Getting Started +=============== + +Getting your application tokens ++++++++++++++++++++++++++++++++ + +.. danger:: + +This section is subject to changes made by Twitter and may not always be completely up-to-date. If you see something change on their end, please create a `new issue on Github `_ or submit a pull request to update it. + + +In order to use the python-twitter API client, you first need to acquire a set of application tokens. These will be your ``consumer_key`` and ``consumer_secret``, which get passed to ``twitter.Api()`` when starting your application. + +Create your app +________________ + +The first step in doing so is to create a `Twitter App `_. Click the "Create New App" button and fill out the fields on the next page. + + +.. image:: python-twitter-app-creation-part1.png + +If there are any problems with the information on that page, Twitter will complain and you can fix it. (Make sure to get the name correct - it is unclear if you can change this later.) On the next screen, you'll see the application that you created and some information about it: + +Your app +_________ + +Once your app is created, you'll be directed to a new page showing you some information about it. + +.. image:: python-twitter-app-creation-part2.png + +Your Keys +_________ + +Click on the "Keys and Access Tokens" tab on the top there, just under the green notification in the image above. + + +.. image:: python-twitter-app-creation-part3.png + +At this point, you can test out your application using the keys under "Your Application Tokens". The ``twitter.Api()`` object can be created as follows:: + + import twitter + api = twitter.Api(consumer_key=[consumer key], + consumer_secret=[consumer secret], + access_token_key=[access token] + access_token_secret=[access token secret]) + +If you are creating an application for end users/consumers, then you will want them to authorize you application, but that is outside the scope of this document. + +And that should be it! If you need a little more help, check out the `examples on Github `_. If you have an open source application using python-twitter, send us a link and we'll add a link to it here. \ No newline at end of file diff --git a/doc/index.rst b/doc/index.rst index 1fd32756..e33b237a 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -13,6 +13,7 @@ Contents: :maxdepth: 1 installation.rst + getting_started.rst migration_v30.rst models.rst searching.rst diff --git a/doc/python-twitter-app-creation-part1.png b/doc/python-twitter-app-creation-part1.png new file mode 100644 index 0000000000000000000000000000000000000000..1686de681673cef4d70215631c75078bfaca06b3 GIT binary patch literal 264928 zcmZsjWmp_Rv$mIDfnW*lgd|9CcMBdoxVyW%LkJ$6Ad9=ZySuvuTU-~{GkM>0{(RT> zBe`aGW_zk1R?KrnWqXcE8)Bs&Rp zM-b>8=D&Y1pp-N`;7dd&Nf}YZzcBbXoUA+gxbHw9GLWQ*kdoW-ak{&fvhmB^2CYR? zZd0oIp9HD=aX*<2w71{B>l<1GYxdVBvnxi<8O^M-%7oWHr&QHeeOQ9S#(>Ah7HS%f zI{py8FY59;{T*&&hXDPpTZNuR4&>6kL+93cf^Uy&!X3Qlb-D-j0`Ec742>D_P~LXi z2Gz0plf9w(1pBiO%fZyc6>`V`-IbYfrSM)@b^laEXBkiY72M5eP&vI}mq!EU+vsiaR_>|ZW z8J+eQ>lyI zDY_?axBO9 z$r7eI9zTJ0$2_cxXUq$~?#@fvC?#Pt+b!Z1%YL3z)9h==xR2XdmDbbCEc{c_hVJ$S z;nUkB#G#>~Rqxw1(}XYf--0$~k?u2E!x6k!-1BH2s83^6Yss8nxn`Vh7g)x0GeV=~ z7+c-BiDs3Ri!Ue{SG{_be|(B2V64i-dRz&~Sb(p;f4Cgn>PyOH&hqgY)v1*@ zJ;ct1>4STxT8@Mh^ospnaPtzkGe6}`zD%ld)kLjY+g>=scN*l56ez(jFq35{f!Xiu zGV+JaDaEwY2fW8y>lhU*`Z8SFx46SdO%}NMx>T{TvB{kF*%ITn<^eG4o~QWLmWTH} zg+fHs#r=>6rqcTh-BOJzlmbuj8Ag5nKSu%-dD)3akE`9KyHZOp8P0B=zFi@N*RR^z-^dBhw^IH>KXgV!L|E2$iQLh{!e9l3fAQO6 zL)+io?JJi_9i*v%CF@)X8I4nBoim$iaGso2lU1&{(C*$;xPWte{H?1{kv}(=^x?g4 ze7|D<6+eGhka%Co{o@@RtQ{}QPmryx%YX?i2INdmNR)5+SQylMiu@(7l1OkZNmVBV zct1n%#-RNbZnJVeq|TUaY>*OL!w+C8SJ+Zvqt?N>dB)|J?YFwf@71ACPr(p!AYh!H zRV1Fsk4s+B)%CaXbfj9!74OZd?qKe0!}q^(xVeak-aZfqG)5RORk#rUhrCS#DcX#sZi{G}X z%RF@JmI&C=i`w%qQ%+Oe35OUX?5@oOg&NfsTVG!u&s<$I+uF3(){jrdoQdZ|h&YD} zr-Ylz_ne8ANW<#S@j~yNSGkG>G@se^`R+`}U5>we;YxgnyC<4D#PeK<%oPi+c@%u( zDu*xkS4^N^20Ti!VI7gd8nrlC_8FU<*=q-*RO4&qi92yuOI+hoJ)vaS`oQ3ntDTWA zRY;Ud93G*RkmM&i%2+&p4_dmiYpbOXLyMuVKQ^=`ET<$i+npbCX(nEKMA~D^c6e1_a zh0)a1Wa{ePH4L!!9U7X;bN@_a+jD}xT}VA)gmhxb7ox85dtXNVFvv!r6{ zfzalIWRr-N0qUZxkSJyY`hn{b``}BiR{qKwb?nD&zW}$c0K1s?Fj(}yFr~Ifdd-2b zXlV3QVcnb7mRvFKhk9gXEmAszcvp#t^F)J3mXO}(qEmSbZZdx(&z|t_h1H>u9V|b4 z^#>M5>XwD7i@>B7A_3+2(bz9Epv6?}-q2BRTJ`F0&p1K4Ylv8=R0QV+*D!rZ?|YHn zmurvH5YgBj@&Aa6la!Uz8;?MW2yi7bxZFWvUBKRMp#DXzn2%A*^0Vs`VvVQVhl`LK1^MYt>mDnl#nz-y*Nw0Q zXY}uvTT3K3J-=7PXS7`6t+NzXS=`Cn+q)w0GEGfq<*saIVl}c%r^bJ14WMT?XTM33 z5l52d_CKq_;phL|Q-kSIL#>DV=@d`c(4N~H0i~dx7Warhu(B#3Go7iIbXiVJj3jd5 zy1*5R6!7gP#^LiH&4D!;4}C8Csz0kv!YnBn#Rs;WqGvv^7nhd?!|~K2h_;Y^f4-#; z)fx3Zfq3?Yy5GFK@tp=Zmy6#m0$)nT^*iV-xOkwnCFq>60a3tTNEbr+83){}3{Mq4 z=dX{?5it1J%dEvb4-T|8xIMOnB{~JQWHDt~o_KuO=-3Y=wHd>dj8tjBvyoR$8<3M^ zI*uGNn$Eo-3Pt`xQI{6fNR==BM?_hHA~n#J*?1T$Gab_W<9ll9oMkPma+UcEn%Js4 zkGIEF=Kzl%44(xO(#FI&)AnS7X$_YVZc$N@1&Ll{QW7quLrth0|L~n8W@T0NmV^=2 zBbqUb)0Oqr$=uvPf*tMVA!CJ$G`Uq7nDm;{@p zPgG&K6-vpw*m_O&j@M*(4U<6)qxT(7xt<6J{{4Rf6?$%VcJ{q9_;&$-&jSLN|DM2r z!2%98zd6i{N;2bmUE6cfmvJ(nx)oN&x{r_F*&vB2VCBpCVs((d24-_^V^=2ZkvMI~ z1l#^?`I6i*>habOxC}(=kl~+Aby(7dBfyI(s&Kc=lbjOEx@!6wT)8h?s`<joG7G7&L^mNm3(mvtAqq8z zD{Ac)d{Xfjvxz2?>+{331&`DnP1>jZY`=mGLy>SOMKFMl(r@tp9g3sO%PW@`iz1>1 zX7Ds728N)l56oHn{m&~H_{{($y*hUP*=ndR28ZTAfl}RUovs1zXI}#40$DN97ERSEqB3vx^x|QsvGL{N#z*)g& zilZAYkQv|lHkRA^_S5v+2+RL~$tiJpqjJ@*4>CN{6j=@Z>Ty%K)f~WRL&P1nTx+21Rn=}(5eX+}BM{R@-fn0}bP(G7b!i!xyG$OWs@SEp#^x(S zO|!5t-a6^ITl?jIcu^(^A3?C3kst-8_-aA8{2(TFee}t@6WZmNNT{RVGC@<8&6zVL zl74-s%D`aIm*mq?{kcp~?s@@H=Y8vuyD{%g545i0T%&DknWbxq;OzB24f>wnHu9ox zPJq%&u%SB%^Jw7@0F~NyKITIeq;(oBb638sk9UR+*3Y=* z!NPrl>rBB8r?xSxYpklvD>7L>yHB6-_utw2dfgB=W0f!C$dOX9^CmXDgi}dPQcC!J zxVE+e7A5b-6WG@#43hc_YhFCBW^xYOPo|2?f`7~z`}pD!!LN4E8FW0#$j>Xe@dFt9 z@oY!xEezPA3T}%-NS1`#p2tAL14HKQpbR)-ax!{cTtxA3W_ovPViI4S`KE%Ci23Om zE!D1YUnkQc%cI%mG)V`0Z2Opv;*Jm<-*i#;NZ&VzJ`v-3-b&3VJ;2uTHJ_sKvs_>{ zRU_ZAq--haO#ax9+t=GbT%{UkvX;V`EBxIRh8rqbh<{OexzRJSBK}!iQX>$X1-(D|V+&7pJ zB<|Kj@7v!-DvsE8^G?iV*_YmN2hI0?Q1P->N7&A$525do_Vu)?zk;bye&Y8C6}9!D z^A=?4>Of7ZIoF<}SX`}j8rY-3DXt-rT3eOJ66K>b=vk5GU|F)JODIK)%&DK{#IRyk z06tj|h$>Kh{ratBu9}-QszOJtFlFraIfq&rX){C)e8#FME1mID=s`rrFo73WIA>vR zZq*How%n9qaK$;N=BN47uk|;puP$sHAeryB$!Yt{jo@BKGy#4oYampzR zlxeO{=_WtriJpZSa>98#GQp# zY2D(kZQYC0t)Y~klUY*_Hms-Rp=s$u+$m8iC2SU=-l)1~5}AejpQD?l_l#8F(7Cy@ zsbmk`ZC@*M6vMfTjIECu3m3ivrg49iQYlv+DM%DfjaDhyJv$1RrQ{xU(k&&iJ(bo} zQpyE$IL?2t2#Zs|3ht}GE114Px&q*@s+swf^$%D^ zV3IGo#no={Iu+5EFEZmk37;ifIDwwp_5KzX0YO^;{JUi618(|mIIt#t%ehhXSd2#1 zZ9^3toa*vwG{<(0m~$jQWqilF9?|;vUW+8voOYm)=@6B49{&RyjXGC>QZO}xE zfRX(eWcgdIxxPiZ=4d~Gj5Y>nf@8kKnT^!a`ha!hV)^U$!<3dC1_F5uRH|*iZe=bs zx8h#T{#{6Yd~G$se8)*qRFyU7Z%Ie%k2H|cEw^Q~ca9dPGR>Tv$?#IDUD!waHvf=PdQk#aIV-L9D47xk+DWfeky{E z&cjtSAZ>DP<(?dsYF13A)L=PMLwo34nlJgR4P0z}yEyHeUYAblA zoeX#*))TSe?Wi*aNafc_1R7Jzbn>#*1olj+Bqq)%`EW9x@Nbff>Urb?GWumFWx;GZ!)j2^G zkkEnFaS9&zGCsSACXufNP>l6sZ(Mho5T&saF|3?P; z&h8-o7PIm`rPTZDW)}1O176Hjex35f1*31!VglM>0vlnV{Mb0##7gow-l9jn{#(U$cXuu)CsvFY=h%I30Wiy7*1bwnL|9pL z5D#}V{@C1M(yRkb80Ja(0_!ylF_9LR%H(wsLRhvMN-`{O$JfrSyHnEjTC)ZS%kmVK zhOv&XBIuOY)D%lpA*2J?Zb^`yH_ZBlZIycD=f8~+MQ{3{qS7B$Asn%uo28Cgs&zGa zfLGUK;-3$=I$_jPR`XyW;KagC({YAytwdH=Gb{5Xzfq{upd%UKSD3g(T`RBG!_|V<4+tCs?Wl>kE0m(v$`*~MhC4tyarT~2amHLjvrM0Hf&p2QY7={ip^Z=d? zXMqvDd(NT`m+el4&R735;Z}|*4L)6V;bdTZd^~gJ07WV-4MjJ2fPf?!8ZT5ZgP&Nj zY&3b`^z-%jyZj74;~sU-iX|oR(6+Keh7qtV}~+?Aj}cHc!9l6TU|e`xuTwV;dkSsrm*PL`|xTv zcXxaTM@PD0CoXadHRo#_93i@^SY|0Cb?XKv(&{xNrhDSDsTztH zR!JdmeqoYp^$!ZxlBIRImxaw7T~p0yhemS=8YN{ZL;HdKWgD4zHp@&ewna zEIvZq+Rc^;_vsfX43qp9?o&;pTxx%qxJgWEC9J4|owIucCVou%GlME1m-hX1eaYp= zovhvW^3BJgELei;gJe=6@4_=#_=IKucAhMe5}3K7ww+egjD3@t&vLUHf$SMo<7nzG z9X=WPSi`oSe#C^b(`!>bSfj3MZC?hvBx=R|Th=|UT?$`gU;g&bVHs5vuuQo@L*5$l zNIMEDV5#`vjtAhEr)vjpTaeInylW^F4r#~n1B{B_F}IV)A|ld?s7Q6&lmextnJBIs z9m4`oP)~Mm%Slw>*E?+)L|17G|Y=#DGMAHL#sF^meKq&QrYM0Tz7mqDsG47>7p$!|oXJS_cMLEIv zQS@f41TSqge}rH?YWCah<2g7SzB&^EJEULPoQ3W%i_2))Wo6%==gn9@<1YM;)fAD_ zBuu2*o^$ZRPwX72$=8T?oak?8avxPIwYH+I1p}Lk<>lhV7E8>9TS8-nic-uz>Be1( zms*zYlpmX>|5P|Taa@@)y{cOy1OBWE4q+nbMP23@FQyf{8-rMs_)fCs$a;O4?dGi~ya64eI5m3xYtqeCxZ=f{zxaNSMa#)1=;KZK zWyAEn!vVJbfCvxwZ?C^uyjQAoo~IO{LV>G@fogUN-%wjyc`MQ0eDb`zcUXUKdN^Ce zTFW{!J^js5*uBC0usCe?1QWXsX8`U1)+H-HAAyjNaCH^OalzRci;Z1zV}1PD6=gT$ zsLlOYj+D{pc#V^LWs}JnC2B7*Wqnm}o@RN0@M) z_R)xLhB7k0F+WOD_>o1g6V!xB?w1&!kf2@t4TX?h`ZNdtXTNZ1fi27bA~ay(%6^6u z3X*HY37S}62itZ$-~vo)Wfr&9~+~Tv-NM+!gnQ5b??B`(Xe8BU;bz!DeAB=V0vk0h1l%A`C#zk9lt*2Ou2=cAKA&r~`@5zCY{h02_1Gr+tZio-8- zCo@`3ro|l6lNOsMLE`y9{DA&MTsPNGS*sh4zJue_!=FL+YYDrYxF$6w#y>rM4O^Ld zYE?D#9LCMf?Ju(lRS&7>pD|spP$Au@E)&qn2^%e#EmSg&LQyMuM5bYF=!o=D&!a?M zPmk>ACKuy*Bij7v$(sCH4L?p?cdaOgov z4mDR`%nIkHXV-;<>n_}!YrwyMi3rNs+oYw?A5F?G`)#dqvcrpkFm|?ueME_a@uy~$ z;$iKIcc}Ed9(UTcR{#q6r+)m%1}!wdybj;*Vcx~(`(jRFQI7Tmz!axk6Xno9pRDym z{!$gEUVlDW5(D_974oX6&9u&;rZZN)IP7n{_tWaKZO!PNt~m@KHtgNmxd)^$XUxBKtq?XdykO~T;TtW;QZi<&y*hkhZZ`ONi_okw1UtrE5p6E!Yp`1 zL|k)8AtJQRVSCPTF7&)Pi>B*&&AiDi7Ju$d&}p4~oB zAe=k-+so_B!^N+@=Ci$_*}OxTsIj=Vi*oY7-E*(^y`ZFm@vSNXq}qvMZ`TeE0ioJz z$)!?a#;8Z&laDXUYNjRi`xH#crJ^AGP=y%}8JL<@`{sCp zbQ$-JYIq)_?Zgv^HK6m;1prRYD@-hDnn+4dAB(3}%*_kZ4Q`^9)bqDn;w0KLc1d0K z@gb?!u25_M;Gi?t`sAY3g{PxkZ6AlA&-c%f)*V*uGb^5s4fn3%k>%HE=EH;&F9kHx z0*iGlkwR;_zneFzOR9~dC02G>XFuS_{S5Ec=ysovtb*umj@cCFlJ(Y=YvENjMJr(%%sNLe&I$#by#i2w@h`uEcy~cUmj>%_&r1B`1zIQj_%y6kUIrlE@{uo)L+AqF=FE<#wRxP z(=#&6_z$4Y*6064hZM4DR6jnUh1k_0ZMdT{KR)~{4(}$EGe?5n?g>Kdy}X5C-k#rl z&zBYBesOysmp%a%CA@FewFP*PV3yj`zyjWp_O90(F#i?CA0y!EI_f@tcr0Cp!gr z+uJ{KzFl0e{cLb0>uSODV~-N~`J=+Nps5{8rkLrez5SB&g|N-v9)$(~`#ZK8PK}YW*iN0OtS@O5IBgfzcvKoMPfWhEn-ro_< z73)ekMoe}))~mi}d{-Uih#&wR*ETF%?2~Hm^VnhOzr2hlv&4ZH(BJ6kYT=aoCU>4T z=ERdk_RP%0Mcq)edPhtRHlXhdJ8!JG_g>#xpNr-m_5LSV*(*XSs(d+O`P&Vz0w??W32w96?SZ=9VJ39&S%El|zK!hPySRUSCt z*}saUFD%@<`S?sPna6{2qNcetxRzwkFVw0n)VTWZKee=(%|hCU-I%_L%Z3Txzt9f8 z=tvn|(DJgZ{faXm_3S}1_bc1tBe8DqPpNQZ;K4~`$YJ=jEhR{pRK4ja>e<}f%<=)T z``jUtl#Ov8uxj4J#OxqVI5I9TgJFheXwT0558it$3&aG}Z4 zbom|oVd9){*=(QbciBsO1d)+Un~ZMkCszYLGpw=%aU`@zgK4AfhcF~dbSUnlg7mX3 z^TbjlNUsb1V%2$p(dFJVE+a-r`0QhEpUDSbGtz?tcUJ9<423`&Q0Ii{JHxX-ev#N# zOE^72_Mc!ZzouxI)5;c1_-)>~Au^j^uCdnE$2r>}hExO3mC>^Jn(r+t%15p*{xN~2 zOJ!VQPg&m5f0*F~GU!%W%-?_jh`GwUC>Q|2_|zYfC%GZSKxoMvR=h}B9UK}*`NN(( zkpDTd!XKEx26xH!PfA)a%1dz88zZ5sR{iVV=z3o1s*q4*vDL+-pYtwH-VxVC4xg-$ zmPExo&_12EhV%1TonKyViP*6Jp|rsF-J?592b#)my453hg>!^zV=f-=39nyxAguF7 z01peL!;q*fLEt?e*1CG)SFu$yqP^>z_0gD5p%ElgA!A*SP1bJctOCl8j=q6kF|}J) zSad{bOjH}0N6XE%gShgqv2hNNTRa;0`86m0_y)FX^DPWezV$24Mj0lMeZ}`Vg^B7` zhMXjlNPU9rOD=!?ino5|LA1v&D=LKCf}UTs6FRVj6C%Udl1p)jCa8!T-kQ*I-2Z( zi$KQh#u6DgprHOcg06CKCa(Vw^NQFle3k102vl0NH<3mD6PSwJfhwzFu2H*fcTSK4 zlC}RErTz<7fv6P-UpE&fPu^tL*VnTcJOq{av+SubNR2I||DB7^-Q<5{0J)7P3+X7s z8p9K;lDhk+Ple2FXZSvof?oD_g0iWsq^LjBQl$5xPlzaBfdB|^@2DAemZ+z~%N#xc zeokKOMTtRUYSI3)dHgFOfelE{qY4X%tYdq)L9_DIkvr=W9vtQ`Ch@(_!(9YYU+TqO z+Xt7BO}JKt!`o%X&bAwP&CCY3M9kq;RODmZQUf1zc5Ji^B_tA(we30Km|6nPS3FuE zX}s<~G!BqWb_Qcq%g?n>u`!zW0;BmMMPKBAkT~d7@=lA0sBoTQQY}Hs+n62LAM5CZ z)Yr%0aND_n5e0>0V9T5`sm9|iWei>W^>IY)RR$j5Hq(UZDCNLdHJ zqK%)mPM`VS^KTBnZ;$`Qw$lst`Q#?63@dK%ERPl3`>XEog_!!@3o|A_r-Bk7cY~qV zpT2AnUawAkGf=<+B1BbSlWebq)hgij6S(?V>$N#0I-80r>>I!~(+Rfsjw<0Gv~H=& zT_M1eME0w1kI7Bfg{?gP$dN*5VejbF+tr2b7wAtKi&vG1&%&$zbl3p*1sfw?N$|U5 zo#^xMJA=ui>-61Y!HR{9I=VD$cv~5EpDJ-l`f@FX~m+?)t3Y4ZtnxrO}i-0 zBRPxgU*?PB=(hb%KQ@(}-ZQ=9Hgw%u1Wuiq-ZEGZ-Prz@7a2M5{oqmd&hy+zxZ1_8 zd0*xn!A76w*zNr|7VlqE_z5*en(d|z!E+NHuIH_4<20%cqeyFdHwrq_i;yF;{hR0& zVpFg!y_;(KlJhaEzfDvW$O=%mttF8G!5~+(T#=Akb6e(nFGt5dks|>3pfV!J>nX=J zBkwViMgXCCH0>TMD#}JW6#{g@3iK@}M}3=ENZvuHV92FYGj8lr*ZZxYwtI7m9M5^* zC48~_f)zTb)B8pWczxXug--k^oO&iN>9oUUTZ3TRq0np9BL{$~-~D<8gq8$lXYFBM z;N#9#G5uro@qJ=S+*0~IUStgW*xlD9KA#P{C!;U2vNh_L%iQ=D@9AyJ;c6^B+mTE; zxu<8R{3FLeUhVD)!6WO2;R}?!kfzwIhDLd3=08)4+J$nbcAp(BO;O;Xps!j5$R zV9dtg=js(tk*s)_Qz*O5fyTrKD?@Q(Fae$ z0}(9v07h(W`}l2*v})5j+=)WR*NdGZ?(Z>Ypa~1+qL-MuN=UymbqI9_A`jxCDW~lA z=6KyG1r%Lg$Nl@*K$`07iS6+RqCq&lzJ-so38p2tUA>Pl{a=csJ$$H4R55Bir$)=O zsj$qUfM)&Vt&PD#L=4RQG8L)1cI`4Jb#;8X(kDpmcI77xXB>bf!v0l!O~)a4M@Dxk z?qX^|{gs(stC&|g8~}eOq%LalIYsqh#mf|7VX_}8>yJ9tm)z;!ebRucH~Glugf)@KtRy`CyO5+AEQJmp0V+shX~*SA7&lD6CBd{q)yZ8)(y!kIEnDp zvy)5m*}PaUv*)pS1I>KoU|Ov7$`9}3lDRfMY=1qKsv7LsUH7CrbcC>-HZ*VqZ-@90$Tk)&0bUoay<*^_4yCXBh2jag~nQ})*4BUEi|d_ z0MRQsSUl}bqj%qhKnVV+-#6Mez!Fg7d7rB7IQJsgK?U%&AQEb&+XS{Fdlw%#zdRe8 z(n#KbJ;EdR4FLjc4Lr2;J({o@f)fLNc0_r_w1{k~^B6Kd{$4845T*S@rl!hd-OL=!Rua`uoQ=n}A(?C1h|3U)nUl zY?`p@z{-$KMfGE7pjeR zT`ihfptvEz7-N*%Ufs$pH+b&cg{G+-88`IV#5bG=|jnAT8XnlAZpzfz_%Ol=F-FnNIN9k1d@)YDkyda% z;`;4!Ph3S==7kao4P^X>_#;el_>b9>Jkp2D+!C7nb4Nw@FhY$MGig84Y!?g-5d0F-AgZnEMQl(t;Whtl zL(6>jye`=5`sN_PvqX4%mPu*mS~___nKgqf1&I7Ni=8=v!NiKUeC~F`a-CruR>dMy z1*3GdV(*kDB=P;D?y*GY_R>TIq{{KBBDeO9s6z6dm6x5oxqg0MT`QVN3`w0%I`WDg zSzK!?Z@7J9hfmd9w^nL?HqdIVYoaB1ujSA-Zi&?#er$e%_ArkMSlzJZMRLz?x|=Mx zMHSTkIp>L4Z9C6>1?LFc<{B1wHW^U-j>w1jh>NBZu$SyM%8mg9D&KxCF7Y$M=lm3H1BvenSR^UexZ$nR!u-UVB$v3V2seQiy~>8` zjVX`t&R(&s;cD(!Hvb#>K<>k*QEC4|NXl6Zylt_$DnrJ^;Uwpr;rP&qLPI!mgvO+h zf)d>|(6_^QHNfqOdV|&OQIR$`E;rVO`UU=*o1wwm@da>=X{|)p4|*t>Y}!x*`0;Wb ze%(lq3qHHxwr|Ht2yrUx>_r1Oe5`A~2|MNh7sxyLh00+{cxG-xip1sM1EV=fGCt`` z!ls&7{KI1r7t5@djDK8HXxGoxyRx6+uTOdUQ?=%Y_YnVh!fwMBIHMO9#^x34e^Agx zt1+vYwML4p$X(mSz13T6?Udzzd7sAY-Y95_B~XvSZ2_@)SHDcpw;|KE1pDZ6IMu;t})^1q3I*d6CR10*Vp8Z_H$ z`mxGFuV4rcJOmKGW=`s{x?l^_^($AFgim}Hd|Bei_f{?TvU9c8I^xzIjUF!m2m}_K zyW4Uj*@WDp1x}XVbG6eGX{dAcF3JUr?=pE*Wa?K|0#S$GjdY~L1xQ{x!MzzZSJ>?Sqa7*M1IUZ} zGX)dsEbbRm>QA1Q$+h{(+6Pc1V6X(~mfyn(0h6(t@-4Ynz*|86K1Tu$fX`YAPLHQ- ze>NMro5)Q$r7sL;^6@jqw*LOjK2^ms1?i-mL}hbcE-I3i41jg9{q`d85ARRt>Ok@F z@oGB-RLGkL1w9ihetqQy8{N;-R=4Ay5P+11i?#2DzkD1|m;j|7$5{K&L~C|t*)F!g zbQ~+RCE`9~&!qt1a{jQm?1g$UB{V*dH_o1=00~^UC8cvc{W|IOK@G4CErbkB9M?ih z(fmLlF>7IkdFGi~N7s!|$bMjurZ#I+iA1wiANE%!GWKjqkMpZ;IQvcKoIyZviAXnX&Pq^?=5Ybx5%`g{ zkTYdw=a4d1$j|MusCJ>~9GHSuDPg%RFyoC>!O)5dWbc7gK%@39ke2k8LTTik`-O$~ zWmEF2li#f^$hH$G2g8;IrxzB~XS+l;2+uN`%43f_&?yX(aQ{Wb?2dRc!%|Oo^A0bM zLyppRtnCs^>{}bF98ggZKML>Q3Q3fof8tMaWX%T_mq}EMjYXvpL}KD4=kvdFGkf6+ zD)wiELVKfju8BAeNI5?CLek+r{p$_;VJ{qey${;;&c6W`((T%A!U0TROaWv25p7Jf zW@nsFh>JhcKLm6E)87XT%`p+$DGa^8g)qkYPG6Qn`8c`8`islL3T0W&jn&>@mel|I zo!i44Te15hUR+-s8m2_3ny|5XXiAb;&PQNkJU^hD*q-2dTvr;0GLta!lggpf>ehjW zQxMX8TzNV=4r;|@X-YnF=lS81KDCMR-B^32x-OjTiD_!SK<7qk>*^c^X2oF$fjY55 z;@rswRdkRTI^p1TTlw}B>6W|k&1W$BaAsML*-uZu2k>uI%Im#X8yxT^ib%g63l*=Q2Ja+DgHw}8T4l48@g_VD2GaC71*i99(uDcIrj zyd(Py!m}n|W^S$zfJUGYE)8ng89vHWrhX@*~Rjs*po{)sfLWK)lcbl78;5Vr^C&c1AlA2GJ1LfTiB%>NY%!pA~THz zPeLgjaL>=5MMAHTyYqhdxIS-?f560~)6xO1B;aWt|5N((@fTP{B{7U%sK>EFV9t77 zaV;X$B zFUj3Z>MCDuheQdPmY`9617@73XTAZ?ijNS6$UPG9w%2Sb$leA}2?$}pDfk4Cz0H0C z2Eu<%{kp^i4tFWv0(#L!`25Yw>bup;xcbW-DcwR_&@q~*Jq1MXvx=!Zr<1!rQJ`%T zuH}(q#X68pJoMavDyBd*X=X6~C*(hA&qKtxL6$*|Z7wHouAiBD1G*JNgZHmvT5*dy zzofrAkmEDW!-)PFFQkT2%WjB@hoA*^?Ni(ybEVyf?^Ql6eVN_@F2)&5&LDfM`ely* z+Cs+HF*+*k^ZK|UWvMH&yu55?Yn${F7)HJD_)s3rJ$pwh_D%DF36J$^(QsNHRSU(! z*?hHQ%QLU0!BqX#tPf0VwXYaP9 zLU9;;{8ck9KIb&1bT$&<(0ifzX(C?d(J~-R!cLy`>o20=N!Mf%1NEy>c~%4YENbph z+_Q^^>VnCgwBDYc!0DejI`@++g?JuUN>FskVbux&-IFi^w??wUhX}*3n7)@rHPQiU2*d=IbS;87bmPQHmIt~e42%}tb*Axn5{&)Dc z|9M{Z^GwZ3Z>}~xmZQ(jtWA81OCVau?cbqR1mxuG7dMg%uDo26&yFJ}t_FrV1?|V2 z=F4I?KSLM|{QMUS19Ly;Gn#DiSzTZ2Z{-dVp}pI(gGgTfFvRE6C-(=~5h+)9aw_77 zIG@-RTaq_^85?LCQZ=EHG})EaF+B<`$;`&c`iL`gCu{cNLjvldCc4QUK3+Sr4pJI; zW}33vhQv(bvUYoAp8#VFdO@(74Whrbe@}!CyKLpSFkOIK81a@D_fJA@3ao50?9dYi z6eU9WM6^7Z;1BFq`8P>QQOm4W_oaNqxD6@R10xf#5dzUpx% zIj^Qndc$?q8(oEco>du4M)CalPsokKW02=tr0C7WE|p^`Dl%#=utLrN#^0l!HARZ| z4WHi1n9%2lMQ0T#ze5lvG!MB|oLvp))9;c7^O69!usU)mvY58N8?>J`ykR;8xBNmy z-vyq{G^W8|#i8D+nIX?C4#Z*0j9tMV$tW++eqv_`NK>2AQu4bgpe0AAv>Rzef_r%Q zosu#<za~$lm66y#aT8^(tCD^d(Hcq5JPr0M=RUdSgrSjgl$+;1DdEV4<&!@Ev)>1LRN3b+ zn42$QnG~>ibc3v3b2zQAC~*)YdR8voD2|9^ip*&a}oYsSOJUwHryyCl}7hY9FSl}9a8!OqoRPV zZgt42+SLMEP#$(R6>@L^fxVMc&yst2)krbb)tyDj>PI0AdgLUp(KCHYN*57vsgZX9 zb_y~7#;?e|a}T^aW6FPWJJM_G$=)W#=jMI}=jtCT^8FgkvvCC)E9HJ)1@Sh-^C)@Icin9g%h$j+x@bm>e=p zIN65e%W^}86Q-0r1nY=CFoX}oqbzOHE`c87#G-?g+`tciJn-EZ_{6P1%yKW5{ z#{~Gna>>tw>KJfYg!GGnr~%z*G3l><6IYA2#9RR?h$Q`-4({IdDK~z`=7=+Y8QOdJ=>?2&4v(ip>o{@mNDwfLt-_ zkgwhC?UCkY zO~Y$M#DdkEhV|1fh%)F|&IDxA@B6H2-Jt0Tf9`V&{-UoAj(GFVvglk;G0GHbmbE3g z^hO)I1yTLFA6ZNc`s}WYf78q5=Xc%mwAOsG?zcG~c2{1SOb?8j2U&do8@grMzgg0|JYVHk7s8R_g4 zK5ssscN%GS+E{cIB%Mjjtc6Pc_0cbeqKz_EE7sZCoE+g3 z=o`w*Q#mW2hP5;o%kgeAYykqZ*^B)LK1SjtPDgD72H#VR4=IS++Ff2vNRSj4Tm7fc zvE^1;N{+e2Czu1ZX}Lq$L?k4|1Le6Dmji;AWo4Uo&9TEaa*#}gX>X+h8TmB+`}LU) zlOm_27G|N)0kc)ioyHWt856x=hKb8wdDzw@^GxdwHQXh$!I+K?;C62(l(FYdY!z92 zek*_7H|x6Y<-%HGv0$BHN{#aBrExhc$;}8 zSLEZ%O_sl_Mz(NJB3@-3IdU)W*|v`_emzAAeBF^-%53lKObsp@WosC<;_x(fc%Tn~5+SX;8axxMAA<$cyH8righg>{AB)@h_@!|!3P9~epA z9zxAY3hDgSOcpQw#5HD=>jGw6I=0uCvsN({@^!wSt0$7Gt1nYDWcH~<^T-zx1X14|(PcQ* zWKcw*daO1s4z|k@FtXo=Xx?!}I`!OQJp#*jPs4_;5(FHhx(i(vh+niXoQn?Cy;bQ` zP(YgK;b>}R&x;t6!7NiHQc>&MygOs^sU6Ytl9Kp)R@K@co>-_Z68}+kaywT8hV(7; zi#=1V*)2nXLN@nWV0!^8a1nN}^5eq9GI@?%+=Z#P)^7ca*0b4useDDRw*wBRI)5F}3L5^&dBa)32#~KjHES{-?z04K6T)gEj5>zx|qK}`DMaVeeA7RJj^J|ic zT(X&6Ytu^4I`hQ75M^ushp8nAQEUwO=a-F_XHo z%QHUMoZvY3$#&D$Z0^dYDq*YoXAWfy;b0tMp2uHobzQ^EGzawI%0{y0EOwF&+mXZcCjRZl6V zq)Nt}YcPb9`PF9s;10+o^Evtcx3-&my(T1lAAw$(A99;qt2Ac)4>6OEM>Y>|ay%wF zRV0GtgY51(kv7-(G}Sy)ld%g+tE22SEfW_6W)J<^oz`!W?jVdT^w@wjfr)CNns^E3 zm36Dj+m7v4R#9SCAXQeI({t2CyYu8$(I<)qeDF%}4=zj0*W2K(m3iF$#eOz*^gnf9Y?y!eKLz#Is7$=7UourA~*8{;9gfd zy7LR$=SF|a7d~KVRJt%)@u$sgdY!Zo{oy5>aeNu~`}bpBZ{*b%zP<9r>;g`W!P1cV z{O!?iS+02p-^SUvR%>1Vr53W&(FKnFe!M-02cimF_@b-&X3xb&ti_6`8eE}CR82&r zXlz~%U-_px(pTN6LG;2(eIw=O@R0Qve6}YZk>hEcOrD)ZFjqg*Wi1~!o$ow1US3FP zFj2C~LjkASwV3F}m?RrnkI-ohqwo(|iN#i>bhVX|(GBqm!_Y(x3;`BApqKz9)fs#O zpady^v)pmk@xmQ?&{cB3B7QEocz>R2JySo)4>rf;@)cE-$kiZqUxC?W!9c%OBZguKrho4HLCzT=_l zE6mvaCZZsIt*ut1(H{DOdDNU|GA{e15^}e=KBFd?HTK)pT3A8s#OlloITGnSfT+El z9vyv&pj*DuMZte2Vqvqd&vxH=wY=t*BR87SW8rRfZ1j>0yUNSigqn_PwMM_ zu8T!TgVz>#-}1RVpH5zt$6jH{BxseE)jNsxE#|4HQ%YZgzbwTVW!P9pekhh~=*r<` z?4kV@?BFSm**l%W!A0hkn~I8x!}D`eEB&C?jEqhv!~9{de(g;BH_TShgHWB5O3B0O zmTr&Zi?pzf+U5~Ug>R>NplxkAQdWJi^^Sn!eyxl=bu(R0Sm>fmZ2oPNbJ2o*n}vr; zWxEozL09*^JW3C#yT0Y56X!vwgmy40p(E*%2vW$M)6@^R`Nr?(4#C5xXQ2BTK5j{1Mm(XM3qIQ(PJkCr>`rZb zrIYB)qqxc{9dwo39N8EJYxMUgfHOjocixDn3;Mb0&J= z9X8iQs=793+NPg~o;^2WJjcs;N?s!g<9+>FS@Q2o9n-%5bN8_S@7?oL-~p?EZSnW_?>;13&<~m@yx9F1DhNV?ZQnugk`PRIeJ0xuG zzWUGItgzMPAwQw73`2RJ-B0^rr*gj48BQOmn zLg=dC?}5+*;=PUz6_!k6r-Qi;Nx$&jYE`8Eyl?6DZ>Q%|eR)rR?f4Zk{DW1VAdmV{ zsSs7kLKxRsPJ7dRx6qdKhu?{a>aB-vB3}n%FzZIxR>uFcko4#b_6sdT{1RE^>s`i8=V@Q2dk6MLJu>sRgI{+SSt09<5KM z{yf2gY~a_5m5yNMytVgT`W6*Th#56*Fk4Ow-EGByX?K82^r|ev?rUnl<9^4_{Iowa zc4ku7<%)WCpqC=Au0x|fgyrA;MA9Y*p8Vx%iPWp%OKn9I86&;CQp;cJeCBSgs}pDu zO8C)JN2@51S|0?~dy<_igR4zIrRYx!q~M!fo`Kg348-tiTT~idchs&3PB-4$W+xpK zj@%Ch8oPU;uEZ_)tCkU2p{=EJLq{Flr<-H`ul^|Mt4jgdhRuQDxt`}VJe2S}!PE{p zS2k?o9Oyj|xHZD${Op}qD!Y;Ed!N$jtNR)8WAU4M)u?L*e~=?{eYTxK6?}PjK|f>r z2$Bxn=sav@xt+Z~I{o`%6F`Rz)OTW=P=|D<)x&?PYAQ^JJx`AsBN8h~k9q-aBKyew zA90^k&OknHPr~%2$uxhSsf|2~gS(Y;&@Q4C$B#iqxTR#j$oKr7O#D_#w$6$3hgNZc z$`@IzVKeSpf=xM1Z(LE)&Q0ObWd0U7sLcr%Y0Rnp@Uyc%4sTz5MECq2Lj?Qxlwo0D zAQs@&wkNcRy@sed?fh;5#>|M{_p`SyHI3~a8GbPyrFd-4HkHR&vvhT()$)EMjhcBr z>!yiuo<)JNtK^Gz*Kj3MaCZQgUSrHu&hsZuT=tx*+>YZc@8ZOEg*Cep&=#j;-i3bb zNu-cGwO29aQAZZsdSnV&U(LdKI_6^GO$*^^sFyPFtpgE6y@ycdsAm+AY?OQQ-^1M- zcS~B|qmguniPS+=O&Bj2cBG>+{VA?Ij%J~ed!`rNuPRhXmKCdd5i=}3Yhko!K>Ri- z4t`W%tLDvIcMwl`czS5kgi>Ngl4f9&OL-I~ZP zOkYnzsPdh7uJ!{+uAzcF=D9qXtc?w2HEXd~%P>XVQlUTj?qfuVm^V>Ni?RFtNF|7j zZ-Wm$teBSGHL6Y9Gp!=w?f%a6(jvUs28|Uz&V+$_Ir36L@5qCNX)Vp>W0r&AHwFFE zv*D%fuOAF?e0}%O;o5i_L&bFs9*3K>zBupO>N4vrdC2DAW9B*n+6!M=#YD+rgUNsY zM1;#X57w;2M~9hFp`Y+uJ`Hqxkn&vGneD<;1SObL%(X zVUQSXIr*Ay)+JwFW;qo(o7yg=if?UBjD&>_kc4V$xosb$qm!sv+U3*;VXId%uVYG! zTpw%MqBxHYhg?7_gtW^wbGBWuO7Zl4p$}a~(MBeMbZp8ufE&#tgt7!wi}W_yJzoWGJ8d>q9MtfUnBWy{vrBq^Et>1j+o3|IB( zZ-n3e7+DPary$P05(-^eU+L&%zt56LbKcU|Snw;9>^!7dm^{vL;iibdl{6M+d@`u% zgA@S83>GBv#f#b$CtF~1N=&6KL4pebXv069HTHKW&WR-~;hvE&CzH+OsVFK3Z?2Bjcru>1MeG z#bguevOs&z9ekn$BEiJWoZfl6El}$=%S_-b%01F>G}h~>pcBIeE8hFXxW?hM@mwri zPU)P|o`fYgQ(JAZbwKT;ewX(m4GVoy`wDd0#b%lO@L z?*vk7ZXL6@%Z(SuY)d3T54@tYTD(4RF2hOj^y~!v+q+G`HiLd=($*vk(kn#<_?FN& z792IzRQ0nChpz_&;O31n3Z6#Dv6qQ4Ox6#N-0k_M2vj7_qM=QuIaJjaMyi!oyt@cC}g%nYu3Ge!iePFax(V)-!k+HJpgPWN`nY z^`;c&AsLeEO}PVb=+dQdD)e*zN9J zU;4O*tzJu(0GJlBY47 zSY=|aHT#9^McnE0w<4EF#a<6TQc~^OrkmEtVs`Pxl=qq{lz~@96wC_8cT=C7&8C(0 zKY6g0%yc2#;Yx>cE^Erp)-#?(P|O@{uGJ6f3-= z`qEE2@)|IHo|5+H2ce@yDYs5hxusmq0-$8cdc1;c;LMqfO!VuYV@Tz=E2> zt|{GFS3uhG#DbgS?)5PcND#n}J=<#fR?cobvA{t3a(BYFl7US{6x_=44p?YE;(QsH zk-wAFjJaIP16YS3HkUSo(~0=^cbFhbl_KZXMqZq-1;=qSPi>~Mrfr5G7hPM#44W?S zF;(`rGjp9TDKV+Tfg|_-25M((ox~`eP5TM92u1Fsj*pM2;EU$v0-Gj-r7+8}-0qC& z9ZvKHiA0gpE<^*1l<*uU<13xLX+oDA0Ub*Rwbo`R#PVFGy6~1vcIJWv!((nA4n)h|62#oSC)lM2TiVzgp{^BMOVk;qkY-)OZn7`rXLI$k(ZNyN08u#Bmq3;Mcy8L%cQGexZ)8!P?=mpbFQ3%P&UTzH2xTiX}Ahw#=lym11*{iTm+M0e}{iTQPws`y}EUTL; zFY}UI&KJb7mO5vMdG}KE7#lG_o*lm!f6m#yC|2jKG zafAJ~8ooH+b@tW8rAAptD<8fRcAGzNtI(W(<8<iV4d;ng{(z_Gwjaz>} z)Hv@%V*m(_DvGx6{t!>GbYs=kJw#bLg5Z_#}+pIhz zo(^7(s1AY|hb<_N##h`ekiu}=&eroyTy~Y7)$Ys1L(}BcROywZ1+7Ir*pvqg&iRim zXZUgl6BsHJ*Jh$7g|-J(8bvxy8{gZqBkqdvcHDcBi`Gbe&l|M(q6>5o;c!y7f2CRe znZU&A{PDZCWg9f`b*zRW;Ig3k+%9=WZt~-YK6zQwYi&6-F#)e*Xlxx7ePs3lk-u6G+5-OsK>cvU|f|#tY|hfyXcC> zmQKI7hQv}KUV-uuV!(kUCe?=6IX!yBflfG*v|i?HY8 zf37bQa~n70yEL@^3aOcauk zt;S`te#Q571=ZX1>t^SA3p@5})GXAhTFW^qR!Pj+En-4wrZTDrAM^0s3A{7L6?CUn zv(j6X!1>HC{q_X+jym@HV$I9|9+klF38`A4wMy4CY<^mUPX=08K~IIE2a7=I1>!t|y290Gab- zA3JeTb$bc@Aj8Tuv^(=;LQJ3lGr*7Bacb2^KXYPMo^*818( z-fm28GlNG#OF4#icS9erua{EwsRa6mFmcUG`kmY$Fqh_MMISyMcpj>Q63PYkJg=?F z_^5X!`sN1xdg3V`PpnBz$!Emqm+e zm)S$Ng`0sySlH3*w&OU-=nJUm z6O+=|Tj3_;4z0GmrYH68i9SnN;VsLQUZ5!S=adlcQx8_m{OYsZV%xdn%a5zNzX3@E zbS1u7eFP{&v#)v1e%&llHX_;R?J$Db&m)MhY{8B^>ORppJXCH99~%{F#6 z9i#SIqTt3tiagl!D@bmgFvoA3^rkh%9+W9B1>*Gcwq`2$ zu$=u*x0g72Zo;yXRiM5d8^qku2np;B#~}@f;NbR=Uq%M)QP}l?YN{G?bO*#{YkPBZ z7f@GcF?rH1?k+W4$&bV{!2fu);yDI-@IXP6ycFLAmvICWlHPIhY&WizPnXt+(5kDG z8jYV?CS1!ghSq`Gowmy(GBQ3_F+Bks)vTHc27V6vv;zM3E;p9EQJF1I{Rn+q=9gyz ztM?;yca!jlCu@J#9QYQ9`f&M*$-$<6pOow0rPbspgVIvP3Hjw{^Mu|+Dm-N)dWhHl zKfnRfoEDKd3h$V!%kIy(kDq9LG917H5DCwZccAwG6b>L0FfT2em)c@iF9yv<7z|hE ztS`>rrCn+ZWIAYq08kPAY1;2SMZ{5s(9bF@F+{q&;wW8)jsuh)AgToC=xks~GVXRaWMoe$tZW;LleSO!N!~UM~xAw$lM$q2PqWmTM z6yeD(pIk+R@SFzjq@}yV*dscG&wh$G%DX2z;^1(lwP?-(-UAsHgZ9YEe-wCIPWvdd zAYGIMs;m07Fi*u<{_PjnKD)|@<~tG@B47p13@JPB3`4bpp6Js);E>|)*OCzDRlCE| zk9)28^j+!!L`l!Fo*k8~rz}?4Jyz?Q_8FeXBrtx2>*GGNV^unFg1g~s(`+N8%|<_? z@wxq3E($|~!#Hrky2DY4JfyxGl#-vnE-P0&(Zni=&MMhyI%~O+i$id4BT(4u6DQj5576AQ923# z=@D(I08%FdXqFZ^e|~>4a{{I#wQbwqg8s5XEC4pe#ACKgS#*%onpnL zUpB7c1*)NE9{{SF&z`o7=?gQbsmB+g&rF1uTJ0K2e%;vCU=tnc+j z&5KO)$dGF8jy7D9Uem!4$VM3hDC)D;3@sVYD`$sls*KKj)pW>Q7kK^G(1iuG=e`&$ zJ^CKRHA*cM0^CI>Mp-#4yR!8p2=(}{)>{`ltniJoWB2ukY5f8m_Pjgh#=O9 zr6Q^U$?G&E-7=H%N@)302fX~SdHX^_HT+cxq?kQU70|ElJ zkFM=*F&C_&`h$so9Rv@0Om=TvL{baqUAX7Aqxf>K%GiirmiydBxv% zMS6#CO)tC}W*8J>y?_zATO3i#4+>3m>qRybptev=H!~kyz-h^bJ=DU1;Gibq9EBxw zF9uN7BlV|erTRJ?w`Zk)6UC3PfR^S=8J9xB!my>Kk4SAQ_fB^7ZA|XE3^5j6D6txC z%OQJ@w)tkX346Hv<|HJ`UwV-aE@rOM*k2SmIBgww*9eM<-(w57?2-kcBv1N8D?z~_ zi(Tc$y_4)!`-(XpHyy1Xzx5)EibNekda2gFPqoMEO|8_`?rOhEriNPWr6^_(5(B;M ziP64g5~#ZRyOpZR#yfak<>1UWe;qPoDNdZq+2qUV6!~ z2}i0}xbPefyjh2(2b;mG%!8^tX*G5a>vPK2V+P^oR%{Y;<>?3Oz)bBSMbFo`Wza5e zb17#GkoHi>Vq!%NpNL4H7rn0d<*h!IkXgLGFKVlB@`T>wIQD&o60DneW{)vOon2~>9JIOhRu|6!?byds^DITfmSqaeak zQ@fdiMix;U*Izb1sG0IEwm|{U7Pm_a7g-Ij_6ktzok$Wd0g|1Xos=|wLA3L-zCl7Z zxrV?G$0@zZ+yl(l(=E8Ux4kW6v~q{LEd(r47upDQ@pCF3Onr6r9M=X0rpFy|pBMM4 zoj%r35axsvoVKz1DO&UvQK{%(kLj5 z9N2D;y8Q| zD*QlUuxh{T&te0ZL6H9h(*rZ;e+HP80kHjK;~C!Ju3W$-Wb(wk|3LJva7J2hwBIpL zxSiXzR+w4mcZq(F($IbS>mZfcvDOu}n_X2Cf4E6ae@NIAkeq`#<~ieLfAogoikd{M z?8#_wHRgv4`QK8y4;+GXoBucjCA<&v(O!4O=gqIW`ub%+W=`FZNJ~o_cKpIIdihKSq1J|rn1by$Wr6z$K zEh?(;prD|4tsJJfwk2#B*z9kP%?Uu{FYs9i2^g{}p7~|VsOzXu^VltlkZ1q2uNH2N zlYtz!*%-UouCL;ebHAXU67Ye)Y5krMAg6zfOCn1HW!ED#l|g~@yp~l#9f&*XWxM;x z=w|PW%boiU7%VO?k0~%baiIA8zA38;m%JCXDqcpaq@*OjF7^3y#XZ8e2lHYj?tV4y zTx{b6A*NtsB^+whU?!AXR3s~z_tHy7CmMOfww_3_oa}IO;qXv@56F;`SrYby9&p{{ z9`bH2HaC(1L5rII+#qMc2i92K)B~lZ!#QNm3Uc%`an{-;$;bReXeAOEo08JDCT*4S;R7T?Nw!^|q?Qj34l<-AZ^1kr(^-Z!oEs%GA1DmX> zQHgU&=(KqAho>r9-y?o<(mEz`7oaE8rpim1X;H-HXq;7L&)!Xwt~&||hg}S@IL5}3 zi@R5N_;_oOWiiSd*?hyJ5BhGbpp0f5NC=RF9TdW&;JCC5&G?Ir?zosRDHucK9|=QTnxE4#9i@(F!C z3C(z0nPu$t!K?it7ZFquxrK?q*NIL3aodh-tZ;put@VyAP%%;#@u8O@suvo{RFF$> z$fCBV_i!d#WsH)_#Z~DYDqlS!{+DL(FjoXPuYfVT&1aF6OZem#97#mIhpS(kR+IER zaGrw#7^U|9*w?9jz!6c>D`-9$Is;*(>T5~q-Sa;Sld(qa-&v6E<+zN?ENEUG>OlD@ zk5I>LbHi}};qn5t-?@Lmwcjiryib!>q)8c;+!H2vlB440Mw!L1_-WTrH1uy7%S?m% z!O=qU=Ga`&+M|HQ&Ra4E3Gp6+?c6DZMx4U=T^1VCmxbQEx0M1Z+2AkQX&xdOZhe)TE~$H|kPutWpv z{nR3>Y-%H!A3&BATi~HWR7=aD3jl0PpgCRpzZ^mP_54rS3Hir&j}!eSR3iZ9s&4W5 z^0mKt!P}hSNy&pB^!Cdsy8u6vMc;=oBa`VC1bUmjNM;Ew^SY$twdwlzQfp|c_9M$# z_O5ik(NT)Fg*Er8t!-9Gb87oSqZ5k@J^vyXb#0pW*8Xx2z&qVs984~+oxPIxuT91^ zt(T?}0tzHEiI92K7F2dyx50{&;Unvegum6sQge<~SoCU$F#~95_CEy$I3Tj3ls%3? zFz|MQkSk|0>UE*eTc$d`)b`pa+6)kz#*n1WLen?l)P9k0qjLM#gMPr^dy-&`T5>J# zt%ueo2Ob_4W3aa>c!MkRC8O+U#VO{7EI z7z3}i`@wvilCDPCx0t$YP3TG3Y9W&-wC4i&(XF1RY$RgmgqEk$4-}+?Dmr2v_mlb; zegTX7`+$_LYXJpsdTcBithY@U(?beO&^|Y2mS-y35#153pj_{|nY) zAsP8a0FlR5Pe-|*G;9Xc?bc8MlpJ1c|F7iax$~Wyrsn2sMhrli0c=*prtYSMm%rQj>&~(lLAt=PkoM;vv9f&noAp!8+y}z5 zJ{#&7_?=xa#ze37wB&h7#>vFtRVmF%H7Thv7a$nkWBb_-s)52IvTwF7^NDk;l~U6p z_z~{03yE*2r28>n0;OyG!X+|wQ=+mL{^iUKf&~6(qrG>y^3k@<<+5I*iuk)Q-N3QbOGcIRdlg-L?>My#d6ZIA~obT>OLf(j_6d3TOdfJviXI!Kk;1CBFws#)vayc$fl+Oi+D_uH&l(Oo>Zmbs9BD88{ z7Q%pVJm{-D^`6mOse}denHI$Wd%o|txnEke%mb{2l7b5N)3r%`!3by$tPlr3f{u@~ zQRWV6L;TCmpP6_jgW4W#ULY0{99GEOxbj4^{@C!l5H&81&#${hns2G{*;0u1qKL(j zsQCH8m-@5>`!l~<;2q&Wx?H-$FXG#@`3?7J`42zEEID=m zKXNB&@wza~N?SBid*_p$O2ij0(fMFJoL7p%iMl~5XbH`muOjzEza-~V8(YaiDsFEX zjIH1G4!RojYP{c@6AVN810)aEx#ag|vZ0hD#4#1}L>z_!ps~51ibvo8eE4OH5eFCP13$L_v& z?6Fo5vOR8=*OR5K&sVHByz+wi9~h8iV*io;VH-C<4E5#X={Nt2s`Y=PDF2Uq21VU% z8v`O0i0fLy0T$Kv4kgr78J^G5pV`nd%T|mza;^529Y92Egjzd(De7Gww%%OTre^?* z56fy0S)sCdKJ)uRn6gUD&ss=8i)bUjY;a$uwQBE9uBr85Xa<0FfJID`$d}@I%Q*3# zaBAl+Bxu?I&Pqb#cJrd)jO^dW$(}0_v(FhPi1y~naA)mcLpYlh5Vp|h2dR9~{>l!> zGXW$Sr=_H?w)#yk6TRcbD+RayfaFk&zQ(n?`Zv z>eRi^{fI3sd~>VwUhh`07Z-Xw`ZHv{{KgcO!nAgwZl~m2lNdxIYk~?zL_6msH605v zjF-yG8#mpO(Zl(Ix>+)u`G+W+Ln}Is@o1sOf4b zwknzBbbC*lkPyFEBbZ%8=G!;oukCv9o<(RTzJ5mYJtvLlF)8R~i&0_B+B^$P$Ua`U zo#?y@O7mPrf1*-T#_v&EAifF}oaT$c`nXF?H4WTMaJ&~qO~i+Fc^!;U#qPu+dktL zRMhA{G!#V>0A3Fg@xtOljvt&W+A0FroA$hP$?>?r>UHozE(1vx00kzu zq(q*@Cv~h)ojnkrk|FSE3F09{-cikW68k?|9BQ|)Awfnl$S&w>s`SLraE!nLNPhgr zCv4l+Y$z2oajcqK?Aad}P^>=qE1`g9 zkQnal(m>AMPB7(gFjN8v7mzt;ZPvt=c{Ni?L7r4J{J0S zjSZm+_L!Ypo9oyE99YjiW$xr*DE4N;vgpxidCSJ6MqE_?Ok2;HcAfhGF$)Qk2vAIu zRzYj~D+pJ(mey<_rEv?=Zat}yWxUWPtDZi#IgfpdvobK((E&(g;BN2g+%C|l9l8u94NW|rN> zxV!=KnF(yaJ#7~!F5ZX_#=X&hiosoNdQ2qrh3a;huU9dQ8RV4DEJ|QR)jovez=^?b zs{+cn%!fPE{=vb;YcJ9aCr51)!tp4ux;}|1r(6U+oG>>5uHq1uM+YH|Lpit&F+8l<>G#)=cSG z{6}06PBYJuLE6*fNH@Kg&B7g^gj>jf|36#+B8CFK?R|^p-qe!Pj?M{mc2{*ROCbAO zI2tFGu`ub=FG+hYR%-8JG*SZaYcd+ z_C*ttHq@?M4yOieMSK-2>Z9xDZwF;F+Z)Bf$#?`Fz1H*n|7M*YrY-PFS+*G8yvZYPwWG9_zneVh zaBDU!FBm^XRwnm+M*8&3-0&c$_>@9W4TezE59}#ygcGuPW5*Vk8o33Dy7thR9?m$p zSv<{jfn(xtxSf3GrLOW{C3)&P4d)owKYex?(k*udvE|B zbRFnyWQ;b9mc>g7(02_8UnR$@J7RF2cRrsiv)Zu*PL0O1!T$$d<2WPny}Hs$Z;Y6& zkSd94pYqB*0cNtgjYVLzbHj@*W8A<@sO@eROVVrsGI{QcDO61 zx_%o5SGu!LWBsMidMo4|kHc*itNN|I??bbNO^Hb_6a#C{8v!z!w#gXTOr{!V!*)Fn zLqO|*v=WI<%`?dG&xduMb6zJ5dW;WKn%0Pr&t1LvfiYzll6(G3m`wa1A+Y~o4Nt>2 z)a0qfd&)TPtl@F8=?<==*Etp`tjurB?C3};+dtII`Q2TN=ywfEc##Qsi3F+OCag`T z`zOX(rs5B?0w-EwU6DCByM6|awm2>bt^6_%$rwmno7PXQK5g1^@rY_nEmnGlAy4*R zMUE5G;t21+cscSjVP3-@(wyj+l#g~%YF!IS3wNKihZ@*|S{1hU=#xo~x4; zwc!+b8xbO?CCRKtSfU1#YsyW%*J&i;n7ewntNX%L15Ef1v-2$R&BR%P6Da zE4fLvKLvbvDIB1%`p?xNw*oPgG=LxL_>lg!?AZd;S@>yR?C{yvZC5l}p*Efl8o%)j zq7tUL`ayw~-Q3Ph&W$JTj3MxBTJd*UTN*tkajH#Q(NWv<9Fe*c_uSv9=sz)EO_Q-N zO?kt~mO?T!Q_gm3qLX|=qy0tm$J6Ovm8MB@<880|1F5*ljifkpS+kz66PseND0Jty zCOWazorvb>rd8%wBoD;&cp%7_GEZ@^jwe^09pO;1Gmz|-d9*EkTH_|-an=PJ#+f^$NyUqtvy9(!O3Go^jq5Z16SD~HBoa~8t4B3^a-RXg(<17{ zG$QlTV~0k5J>7IO&(N*Dv7A>Vg{VF*!Mkxnd*bJ;$xFv!vqIe)EJKUp-r)t@&lanj zk#f7DF|yfX)cUmC*!;H3ZeO3gu+iJJN+MfqrG&ki?Xq3?Ebk#?NTf3M8_p zG;6!W#KuEsq+=CXioZcj(rfnuz?2S^lTKG_NwjoaIRX`P8Ed}uMU0^_3V`Dk#R2}cx{Qsd`NP96=k?B94O2XNoVDX_W~aa-iUA3UuRgC zkR(9v`xJCP>oZ?#AY>qko+9G)r>KJ>P$2=jk%#Yx+k)Pck-CfhURs5@#aqe&If-+6 zgjyO!30PYFAAG$9R2%R5EgVXLQmle&TUwyF6oOMqDJ||UE$$Xv0)+y_9g16VcMnjC z7ncA*in|5~8t(8r-&y~2&v)-#i?s-0W-{|;-g)=4pZ)BI(#^cZA;zpdC>C_&rVa(UTVss-zfrkXJ^IcKc~b znwOHJD5S9a`jEgzIx-!V>JB*&K*7p`UM05bfJaN@G~}tL^G@@%Ry;q2=y&Dzqm=qh z0qb#(xYueiZ3!GzsC*|mX|wOhjebD~JYMN}gMBu%3yP{k3nt4YriU1%tmVY`x^e?dOxD{Ba z{QC8)B2{E4L8Om*_K1vt5{v=zq(Y8C%wU?J8T0Sjgz;(cM*jh`%h{NT%%FRKi6 zxrQd5=vL<g# zS?^$%!|?vkgB(*yDvB8j>ltUiK-2_xZ^1TXsU+!*?d5~&b=ExS;0poeC$7s%Wt7oW zE|oS&OG~wyXy@07HdiV&&|R^l52wcq$1;y?S;|a1SDNO|OjmXI-P!$v_KV)nUFN>A zLOccwUkI5JV6ESy6q$U?6P1)AVZvee1Z8`FgpX%^$iRQlbY)8(>Xyj9T==1$c7Vp=w85HZC0My zo+>_!KGURGpxytI)b@~Qc^G-a{;-}VxgEBqb^1AGz;BlMzqFh=oAc0Ps~?8gnUZHGk_D? z)kNZ~F?&Ebb3PKPDQsOdsxobL6?P)N3oKb|_P|!(P{Ipev@tA2H1D;tciZ)hj=yQE zX8_@u4gK8k#Q?WfN9?7`4|lK}yd<%FpeI*#rk_O+?hlc z`z!~bNlR_6=jI2Nw$#GqVx^8}JhK9YWBYzz|8QGCFMFb;g$G*Hs189eYRX@U63w8f z=(L`$5--pTAMcDpx}g4EV6l{l4obxmZ&-=C`}OGeIZ!rD?4UO{t;0$xEFvPAa?AC{ zlm~F!%YLxbW(BaVU5f~x#|jDxS~#Subtq|kDw^(!(Jx_cOIo1IldT+Y_8EuYQR{9c z=__vO#R>pb?9+9Ala^p{4!f{t1{wGWelHiJ`Q0wAfXNBu;jG(3b901 zn<*DSP$Dg;3*i?pW@D_XtGrQ*-$ZY|cUDRY^%RFO-hwY&3DX8&oEmdyDTuv;Glne! zS6UXhbDX+3DXc<2m(&Y{vn(%$?@Gq!dJ*~;2OJN6?FH)I{oQ?6Hy*agTOrE+wW5O4 zrR>(9I#exjr6tkP2^DC#BT&a!G%f6`!*Fq6lNkR>*h`cQc^qnUEB!5K7#qJtlF5#M9AFt0SHrdUL?_eOQ(5y1QlwoB0x~$950Jv;@Z_=7Xa9hu2kwhaI!44&v zJ@`PA&oa0(aD(cxh#nv>n@mcg;O;@bEaNl}8 zVfQeUtnB5Y?%Rc2wm>Z@u97PNJ`KP~RWewY>NjKcu zp0C*%rLb1FOh9(ecc%O-k!4o>dUT_6SWz$3xpDBa^jStv-gE}!TD0Nuq{tkoK&AGf z^Fv0@azT@i!$Wy$=d^_Q7LuBp;Ct8Ptj^qwj7^Z+HU~?OG`?G9FDzJn&!*!h@S05Nnj)4**rEzq8`QO zrInh8Zv9{OvO}ekh|SQ`}#(#u2adUiu4>Q_dZipG(lC z2aQ-*y9=5VQWcLWXAx+GJx93v&hzAR=f9Pgyl>p)&DJX|M|G3WYd0z{Yv1TKG<&Y7 z!AOBSsAg{=0GNQK^G~!soeAhoCrTllo{5}RsE8#ms3p7OferZ#o)x%?J(S;jF)*K| zmVzQf+e%=#4pA?54Q)!)Y>tJKAU7UQtSj03TRNvKBg$Uo^Hgiqnq!FD&`q9jn~yvL z$)=ncmd5#C1<*SkEYejxBIO&;r1#aMN*Du>mNu4fz+_D4u0ZkTjV#fiJTOTlYMbQB zQ;wb{s%v~c+a)>Kfp0ZUCT663_*BjeSNl*qBxX98t#gY8OLD-+)OSb6YZ~Crhsc^a zuOhejmc5O>1Wd+53n!E_%`h^bQ2C-P$oBmD0=&K({=qK+55QFK)Bj2M&vYNi8d3u$ z2i!mR7F#oTW`^))wzbDdcK*PwU!4C*!uvGX-(1vWI;871<0S)4U}%HswU$`Ynk&>g>idQ_ z@@yy{p}XDE=Vg)}l4x>zie901bC2ld+%uuh@-#E0xd$Rqe+sSfc%@A~4-I_o`(+}0 z-AmuFk!J{t>zKo`nrUMRWQZ&{IG)|Hn`Y7V}6iyyOh1t_q%#)LB zgwDn)^lh$Q#}_H(yrTeBalEW_TH=-`b5m+d@U}7P+jXBi7!Sk~NGw=~M#t!rfEwEL zN!Hmlfr?c?-ESok{?LR;qdzu&V9N2j9fR_6cHD7X;qDw}c@Y*9HHClPh&KesF*&TY z&h1nosAy?FJYAgnCdt0M5MsigbRakRfz5rhtRI+AO81yR=!M5J9E2D&urZhi4dDK1ydGm#>u9Y&c$#uK{?nEhz?ctCJmbFQ1Pd?h+U{G- zDI&NAYBbH&%LUbC2>XK249x5S@-`{e-V$$6sxJ9TJD-^oUw4%V;BC>3J&oL+G@lwv zOeSg3sxhQd`vbI4I&6RXn_9GQg}`bcjQE?*gBd``xD+A52T=6?TG0O=zyny~{`qgi zUPIm;NBd~?&Sv!gf>Qpy@uQWye8s<(#{VOn0XF1US=N3iGvX-TaN3ycJO9hM=@{=A z3D}i>xIMg5iyxK~1DY-=6R!m_uU0$on5aLf=XH#BjJ5NWV|bbYJEdOA15{V9&D%0CuzO zcDUzv>A+<|R87jtP_R=RxRNDKqh&N3;5`X|s^D{KPFkMSBArn@~k?hXUY_7F3@RqNTy^TP}9BB$efF+b0? zY#J#qfj}2&7HHWaF?|mV_p|xRAYJFCV;c@=VQr_k zyvg8$zNh;XA5D6{<85%t=*J$|yt$`=TpdGhw99$Jyjv^sDO$9Y3-M4>$cI6Ht(YXi zC1)q|k?{Py7DdJ{nXg30`|wWAv_kU&$n@d!um^h>VeBpaCmqJKzv2iyD?C)E`fsQ! zjks;1M*%70O5Nf1lX~~(k(XyqNvP4EA7SKAUedq5X8b5Ey^K0c5+)P$ZF1fr z)sb&$x*n)+g@-QV(>)7Rc=SyO1x(Fv*(_otjmK9+|De-L}he1^ONt!C8}Q$Ad6k=?!3& z(AMpDmrHkV!_Ob}jx-t)8T8vS0!=#{-_!Ge}i<~RkeAg5{z}XtG zefH#&UD_n{EZL0Pl?iNoHrHL>T3e*?%d{G#?udj`8crV1iU|ecK5j$0+IUtRBFU=x zeYiqJ`Zmm!%LCQf+16g_>C~@(?ZIqx9Vm`UWc@Ae8L){iS_n8GPclBgN08n zQk?ADk!^LvSpC-4df=of&(9faz9EA@ z%&C_y*BSetN(0d?yinZEcbA~Q>*^sv1BqR6ae3bNCQ5cCYnzLx#+cQMBLD_L^rkJ~ zEI1>suy5^4>+cFWGO`~znlMiK6Ya*CmNgoc>umuX9tavo?QD3bpx$Q@P%b8dJr$H4c!B{7P<8<&s zwZ@MM0gf1MAfkjL!!ZSxnhe=b<;sCBlZ}Ph{dxU6OG**!r8-s@NN`DxG!n+-T*P^j zvsmb0r{dvk7ukd?$iVv*z7jFJM*yaIsp`I2WkM`@k?~IN>=0$cokXfShiWxOaqZj)VEtydb%))Jun%zw#MgC zrVfYC!t9M2pC6priY33B>?h$Q(>y$JqUR`oJAk0#4G6lqj7ds<8=yUiA8R&KB59l< zC?gKVE`E`Z!D)T{giy*R^BH5}@##U{nLiP7B}JsnN~i;k{+T@JWT_fTf}`wKV6DZh z!504dh*||k^Xn!O=W7bp3X^N z_YsF?i~;SmHYX}bxq>&&9seLf=PVBo@V7o);Q0OEb0xHc-7u7+w*HI-jB9dV(Summ zk=R;n>t5{XBA-q@*m{QryN)CrCR*}EN%2b3PI<(K+Xkt;g9NvZ{!WSY*2k?@)?pr^ z4mvtbj``I}1rmo0UY_qI;@&#F%pFiQQCocjqn-;DE}>TFUv-lwoJ@B4c{iFv)q5TD zX~`zikJpqtKBfkEpEz`M}xZTubAs|cW->gP5W#$z7R z&5cUA7E)CTX(nAUbX!NeQo4dZ(d-A|lk0|`~&6N7J%vNhKou+V9Q{DZ)y<0r0 zs21PJ<)OmP(LfmbT8=-yIHB96FRzwkE=vQdFsBnbP6lzyv=m@BHON*X$WgiHigG-` zb5G1FNAdi0-9?0FFhYO(MjueXZ5Q0Ww#<#6P*0=;#t+O@xM*L_!10JoO}H)-Uu!o> z^)bKPpM875EV+LfxvH0a3sJDzC=FA{`qC<`jm|4{S)pmO!X&ZcyO-%WA9Q$9WZA~{ z+A}drJ~Bpa^Kx5L(8c4iFT|7wR|q^(WmJ&G=G#QluUMZ-MqsJlqwMBI z3T&S<%)+5kW&iyqj&$~dp5Zn`s`adea}K7XpYLQb>$LlEhmm&mw0@y|+;XYYU|lhH z9n;Ni_H>WQO8Z#62wn|$XSWa|&~aMsEelsInfb1NaQ$9!V?%fQsDtt9P!UfIlrVG^ zHne#Cp?5_5XZ~K7bsfljC42kLbH>Ez@-uk1!CqT_GvjIcZsFtxKl>$@#TM$3r!vP# z`QlUU8J<3~bE7S3N;T&4ajIlt5B=-qr&a8<;JESeOjGA&*Yf;#r-Aa`YNvmvVb83f z?2WNBq`#%44%=gg`Eyes)$PTs>AnD=n65vG&Uev2XHBhpW$3ovd34(lG2#pQ1ut#3 zrhwQo=PSHYsTW6D6R-}#>3ep-PagdeeH7#q|BIN~IZAKRN> z4I!f9%68gp!Dp3_kbhf4S3fo8cYQtGvgAtKMJ9Q)@*8$~--Y(~Xv4=q*lCq|ne$GW zc6v6`38DEw;LX`>vgfdIg_FjM&#@FrUgFFD)&ksdp=ER#C#AoKj?+LtS`B%xI3{21 z4s6uo2u%*pu&5(7mIXi&2U>O?@oeqD&>(bjKwnMt=@K2F&io-@#X8w4jiD||HI_W0 z(Nk&ZPM%dBz7%g8X~iu|J}EhX=_cm&I7k2C(n>`@3)!WhUdklBs9gF_vTwJ{RY1XH z{o|^2*HD9hY$NY@+W(4ie$jln1}^g4c8d?R_q2qS8il_@@X;woN?!|kbI)HkWZTQ>MLOTDl(Sfpg52T*P zrEr)G6BFY{4U|mXIuMc=<`e4ci*devxhtK>Tu$T@eZ5P}P!=(MQj}X;CySZU<>p3kWJLR703&se2kC*ZDSr=q zDK%?xXf1XT3ZxGMux~bWg|i27S|cVeCmk=LKQk6=elTw3yHc&k72%vVtARtghj(+l zuQm=}JGquegzL8fIGvss&N{Ur&kK!C;SOGY6d48Wq+*y zOmke0WH-%MN~G|$>TWCNsvS1h9GrxxG{NYYEi+UiY_gQ0gyrFSp!RJ%qNWm|y_lrE zowSvxu!lOom$eMY$I@?{m<@*Ke;G~g4dE=XmLSwb6hu^e>?4c}MC!jC&B$;(zWi`> zz_sJ7o0{q|;hw$mhbvZ`h`EP-Jt{Wc96q?cSnK3$eR6qowr4tVcuc&5bz-$D*Yq|9# z?=S-x4P93vyT~F&yYeR1rK-AU<5myv%xo>y{U)TI&F6v?Qp>9&3oY$*W>4F^8<(y4 zD5(6JnjS`t-EFE0OrLC=Z@*KF>H98H(susTB7%yi2z|O$cCtKOt{X;0>)}nl2GI{0 z6`C5UkBv>=RQ93q@=jY-+DHjmX(%X2k+@kzV^!EC@DDw`IS`)=n&r6Bbvp{x`T-dh zuvx&Z---)WB?d&IbVDG$tG;IP0C*#xLHB{OovG3yJuy;Ml8-u1LQ>^Opl*8MY zj5M=fZvu{NcGM2@9Mhx(ewctCXi?xaqAF=m$j^h-`Btu>`E`2n96DXFUNLmf%vrE) z<;WB`swOU0wRspu@3lUMH8MZDHBe*0^H#2zwemJs4*5KNXFnZkumqD+A!YsN!8NxYokCys$mW>*z=Hv;NHNXyA;$4WB0)n zY!4{-J0B)*I|w|%+TG#YNkka+=jG)A;e(C07Z8=cuo!*_gzLS%yh!9WzcOLzIJ){3 zW5&dkz2n$8(22a}gt{Hp+v+h&JVYCb{dpi-HFGoE*Un&H;&`-mw)>ZRH5OeL{2AWc z)e??R^72!pMW@G`m4@`0D?BHMD7Y~kj%ac=gF(%FD-D8!l4>n7@-Tgai&rYN$Fy3I zKU#H_W0q1UCRE=ADHu+lztR@y2{_QVne`onk&9Vv2@*?YS$&zCf34(6&~$4)>$om| z`K!Vd9qT3#2 zJQ`kA6C$9Jy{zY)fN{*nf3N+U%@8a2p(uUf);T(%%=YKjDWSRZsSSeE*PZJq!21;E znSel&ooTt#3~aXEYVvAwTdkZP2nt(`12uDmI?mM&ZeO>iQ*{)N0Of^jhc3M`aUB5P((i>Swt3=*g3Jgrx7@y(2$A<7hcFArJi}HhJuEx=ZNmlO|lc zpmYN;8Ft?1@hZ(}H`khu1!HkHHNv8WQFOd zmsRDJh+*WK#0!;uMku5)3I%|rSd(<)t?pW&6B8a<4!`L@)Q~zQ=LNydC8JT!@gU>g>}sE0j7O_@(IMF##Gpb96k>H5XIq8G&XWA_fWZ!o$k>e5@&>Vi zY)v}fFuBafj}Hv~H2RtqZeLfKCg!1NZ={5_9FXh0$)e-T^)9b{9E_ZR;Z$$EC#?H9 z(hTXc(bM%}{=G3Eld`2Z?pz^l`)AfGP_~KB-^1M&dEYz;GG9b%wZjg}nI1x+;UQGI50r z{Js3f@g`-TNe?j1$7RJ6$I{YCoET@j=>qm2$GjAQ;Ref9UfoHZgi8`6FY0@!wjFr+ zfM}9^7>j&DB#IA11pmf)qN@+H7~|aQbA|eTb1vdd0atp8m5UB)S&QPuiL|iZn!$yV4YZx`kIMl*n+=h z1RmF9bDkJA+qKM{yk`ijQHU9Nmox5t$8#a{D7S`FDxFA*(GMW6t+vKaYmJCdW7tWj z4S*;!TS`Fi{F1x*aPMhs-_O#EEygOqgvg-FnER;X2d96!d@8>}Mn}1xnvW}500XFm zGRSGV)@$Nohz&kSwAnb4-XO4%J%=#;15;<;6_GQ! zQebp5y*Z4fX`m@;-N(#VqGP>T&LSH5JzM;v*q$fZ+7~%?KuQp5a1&^@G@-WRGOs}1 zR!F?a5$rNEG?E!{Vg<+cRU6na-(W|?Z#s(Z^!$~Ed@{K8jf(aXwV{k|Bj8X6clB}1 znRb^00l@u>i=**;On&=KP`Q^-l5{QIQfFaLEqA9+jY1vJpK_aT|80KWnMTkD*@(}- zS{|gIIq1jfTX7!^Y-EA%yHH5aGl)~S{*X9ta-ObeyO$^Gm&usvZSd|MX3YU){e6Yu zFs>SJDLI;6iE-o!7_hBa)twVbf4+yZC>IiDfDvi=z3-KluHxXkzR#U8d4PREU zu|-~)dVY}$YbrvEPAxe@lN-PB*?1rai*GIsT|0lwE`pWA(}>-A?6J{jA$ zd3l(p$fb!cCv#;5nc{DgBSa+L^JP~S^t;7mhqL@&dHQ+;qT@=u@10zHp|k=c%HIsA zGi!_O%$CpsEia8zN&_!S=rEn<0N{P3hEUu&xEQg}7CQvp)*rsBY-&t)cv8jztnqh2 z%#y=@1Tp6v6k^`KDfC=;wN5>7zf30ksBJ16U=a=c%wsu{9GU*wV?@i_TaJ$PL)WNl zs&+o*1WuT^>%?Ui(`FRQt%Id#d)BHO+n}EaD9T`Ie`{^E!L1(_wbzi7zs)?oXn-^z z-`uf!(4B+rJ2v3n_*r_kG{)bqz0zkI3|hBQ7{NNOgqIR68{x|u&tbNz3zQJDXHNKj zkQDkWiao#OFC~EOs@x;vQ}(#o>(YIrAD*=`bO2ylf*ZwQp*piP88P3iPR2(3kX7b_ zco=)n1^wKYZUwr(c|#Ix7@9mQ^xJWjZFy6x3)%Ic6Y&t$lMd5~Oy1YiuHRG~LsIRw z{kwDt%KR=1PMZyfjtkkxGY*6_h4znj6#>ijfGu>bb^EY6fxhY*CQ z>MF9-vfo@kM$-UKWU&x5iSW{yIG?bsKa1GX)Cc^Ge~V8}mn{973NVbQG0(4y5KN;S z+&lhb1qB`M69|5haqu4a+(Lz{{uDM3`UM!psZLWiozW1sSDxt3Gk^mBegc&{6Bu~Pxy`E`e$z6)>jLpWkUS9S zCQRlvW-DW=2}D$ja>l{tO8FR1FGaZgk_KMSRYao#UtF7s(O8JK?vIrf>%xA$($;S&ZB zq}$&ZyTWrH~05dDxaV6h;CeI7SzfU~lDZAHDApUjY88;9VSC@^% zd*|DB)(B=YJqo8x{U}MmkVE8{L*(}J@&^RpFE%dj8wrcLwRRLmt!;D z*^E_U@_tKLZzJATm;r6hn)e$U0TINko^T=bRM4DCv>UcLoFue`XVWQu;G<~rX^zXq z7N2nhP6pKFKOrp33vUw}aG{kvI?9pA7X@@^ZEa$q-EIEaOxIOTBtW_~PYx8aEOT`> zTxEhz)TWu4x~IGhAD@K>iAuEnG8Bz$^Wj9J(E!dlI_Ir9LYYmIeZk+F#R8sx$5v#v zL-83>!7&QAnxIoSQ91I1@px;XE-llWpb^hOmIw{h*BlGL6T z`As>Q>yiM9B#GqWOrb8Wla<$RJSuR%62T`=3b6wnQ6;?@$b6MnWeT?PcaxT^x^3b@ zV*E~T#AGk3reT0KVT+il&v>@iz4}NbdOvb%qjD-sQV_x+4x0h|1oS^wN2NuVt%avi zh4&d7n#14DPLy^B5}d(1m`PGU|BhtAcLrI{wFJa^CLo>m!)nhG2RDCsK+ZcK^Bt=yuP8LOi@cX25z}oM8-d{?*?NGCw3HG zzR`h0_p_t5w&wCg+`hjlek8)XpFt2yl)1^H8mC1Gb4^yebznrH=kpuOw?DrGM7ld2 zp?FpoZ#U_Exy-{Uy>L12cW=$yzM2haF+XR_mLh0c`BAPvpCrq$H?8)$z~I;VXyKZ_ z_Ck!^LS9d1wiGYg?)TG)L-xHYj!Q0e%vW0jTbOUtT2+Y&C#?CZkrVE+3{P$73c6Cn z0xR8-%xnrA)#;5p8b@6; z;t{KO6dZAXiSM0@r=36I&Ta2M6_7ywcut^uc+{#K2zr=9mQ1`_;rg7gs4^d*1b)## z=}q|nfcE4g9xiN>zOQH#Yn`3W&=~i8Nw|F(m^Htw@8^2@;wordU1+V*Ltt?-bWhzn zc}~J#aCS$l0hh_qO*(?IeLwX%cpPSrmi{PqM|B?(c;a)X_V+V_ zZyI7H?n|kf-ERya#D!j)e;c1Jblh2CZ=0Hd@sxOUPvz9@ZJui1;;)e{K?E|W@!G!| z(CbCyut*Vkq>+UmIp%Xs4No2<*wXWU$?2e~AxT+(AWnlPh4bi_&q+TA5TmcgWos6v z$T4&doF^WKxI~n`tctuY>ItmohRiFQ4LPt{{r!*$4}BJ4VZN|$wnZvKYdZO3PL@NmH!69 zM%_Ferfn^p+6(5u(Hoze*t!1Gi07L!PQJ5YsonpnXx_}n&2zT`nhZ9deC%iM`69Au z?zyq{U>pQREIGH-o5Nn;5uafXdECkPFO4gjW(74L1q02l`>~i|{zuHs(X%s9BoCSx zxB+_1cDgIBp1i$%(zg9Z{6G;f!U$ONjIbhnaN@j8)?GUNCg|Sf<%+t(bJ6GN8T3ZH z?x#Zp)HFDL}NFXUOYj2$Z7|@w@ZS zY)$zztN_`^f1r#@BO3f=CDD8>75wd*z-EU=_CbBpQSrj9iiZgJ!_|KOOnU_v#QiS} z=fTykbLRliox12L$k{u`cD^YPnc2Jb75xf2Y2lat_pkna-c~8d+syK(Vef9z-dS9Zu5x2kj@=H(u(Ki>n;XFAO{2}sxjmK+XJSO+upGYblS}1lt^QUdK zRc#%*c6l%yjtd!!)eg$Z!6j*p#k(PIaOBJyhObzrQ|n%0f~dgkW?Cm)68iHV1Q!?n ziJ^O;P*IY>=Fg%uT@k5x$8GF+de_^A)vQiqs4_PH( zH6e}dJ9KQJoy7H}z4_N&@vddT;vEqA3TSdB$tLcVY`+AJP(S3Kx}Dv8kWiXr7Ny~A zn+e-ISXz>^9N)mm>HIpF0_U$SbhQN?0s(hzOTFlIzhYYvc(UUchm{KjHF-eA^)%!VvPL@RV zP+d!O%1bStqWr%LQw3d;JHvRJYyKGuF!szI$v4D>{}p++5z{P+`2iqsw2l@j#ew@l@`hqQ+_K(#Z|!Y`x?2`8+auws9CL zn%1{NlIKlXBv(b5o^G6ovW$%I2bCClvgwRVLIfjfsP2yC>NGa8%2=pQmN93pQ z7;Q1L$?Y*_<`&=BO9F(zjDTWkKwoIpV99XXo7ueo$ z8V}PZ1RX`_u2#p%%2fx^coo5a?Q}!YWylz)+l?nkpT+20g4mMVGbLQi8l9pak z=LB|+Z}wcnzph$Cs2!VDy3cZ6tCs41{qu+QEJIkq#*Tm~tk6sLHS} zl3Ur&o}f3dN3Q93ptm>EsGjzlT-qOWt0x9IN!4{cCgMqIXLl94;d!>3 zrB{AST_~Y^7MQOF=;*9>vmz=)9|-=ss|faJiet|GQAKelT)Y4?3mM z$!l}xo6sBoe-lssqwD&wo&RS@|6Mflze(;ux<;GQxSwA>sP7;NZx%{VPtX3I;;;tq zfNKbeI&$sM!66I|RO&lx-o@*AbP#u4YW3pyU0q1!1&vT^$e`toMqD`)8mKI?Jjr4@ zBX8d-0#e`@DRA~_2E4*C>SfA3K1J@LWmw)9XJJt)k8Lgp;sJ}5%}&(g=; zcYCRL`H_G3_q#VBe1Mh;1fqKJAv&IvsJ-16RJuEC2Y3vTS%*CrcpV%{TAejlCUSIs zd8ynzFkTqOoRJcQ!{NO95jyn=gk5hpjFub6I2=C(o^pR0%|M#uMh7xYU4MX#4ey0$ zM)hcBY)J{LZ1BdLR{R^6vL*7rxe+wA$Q47w-47yQ9I>`%a&#FTpdBq(Q$!J906AIO{X6qN+WiW`BtYhZhCY3uv$7mg)``kvO=bD!}{e zfhj2v5E6%S0vp_HzAj@r_i(^~iOGKEY>V1;d!kfElISWIrt<~ge{++(H1v|&$0_)7MKzJnK3t(QaLND&R#U9`5ep6O)02+{|`mRo71ni9O7? zI4D2?rmw#+Z5?sjy0KF`dZg0)0>4);$mOP`Ty+zz+GL%XC)ue2vn;NP;1MbZ9U!JG!tIx<>-rM;dguH=!V(ltLNSzj-Q*u9C3 z2i~>EIC4uMAQ=gq^wH?!)am;4_91_#HIk_SpAwp&6hh0jMLH3`U>WoaAcej7E-8KI zNpGs0r~6uIq82qxxpyG2iF4k|ABV`DpOZ5}nQT;Nj25RMqVe7T)&gLhSRw*>1WbXo z_^qNRAC2r3fZ7#LM~2`FjJ42OFJMUv$>w}z$x*7~Iyt0-T%<-*A`_(^)j{hM^7=FT zT^RB=mu%^R%t$8{iUnvSmGGN{s(50=55k3iilj5f_Vd5yxZS4ZP@Z3_7_Q*_dGHX@IV5H!4lQ!VZgL`dJk zOfuNc7EyUgcDGNdJ91sy19-t^J8yjVhWf#Nfkj;cTgKG3caw>X=f&beEwA0e9G|6p zoXv3)enNr+X59KF{;3>O>P45onLqKxIC84EO+aJUtCtxCz*#Ud+9Yff79ds(&#Cyb+`gKuKdVE7P5<4*Z z^2jgjy^OYd<-$`-r&Olb)sDwoMLF%eVvt8G8g41a3KjZmyyn}ZrMCr8 z=f^s2{N>y>own;;FRxcbcT65WAphPJ>`>~6b8&$&GPq~}F}3HFMN~9vdTZl{)aq46 z9Ije}7-$DSFOT9Unkk4%p+3He~A|~S@FW0WIk$TIO?jzS8KAZQ~=n+D8H>l~>8X3Ls2iTcg+LO6veKGfOYC48FzBj}<$z_0O18~GjzGKXt1Mm-! zGR2?mWnhjBAz8J?Y-w!{H&@f*PVDo41_?clG#N7=Q>T<;=3ZD7(+)VGEB)0OTUU9| zFi$`9^=UqS28#>2)Ei~bl5D--zRQNgAD#3mb}_rwWr7bXSJNzsNY|>-5m}FFRd8?5 zn!5+{sd-3i+udRiVKQc<_C!Gzk<)j1lj9OZWSJJuV6*m4ojq5&L8vdk+yEG4wcqTw z;gLS+T@7THoGxcit|o`uIe+}7g93>g9r3MAa&XTkS;)`qs!6nKMvpnb}ZmvL4In$*`61_w51hh@A_)|?xTgTl!5_iP3n$Pk->l3*JhxZ+m#sa$hv1EtbcW3K&6?RezE}L5gX_Ar8q3N4sI%eQWAn+P_$<+JhNpRL3STa-Ce+~LMQSYa zdcAx<{bDzot?Dvv@-si-+M4iR7Iw_#i#m5a1kxwzEO8>Ne zn-N5a=6xF4^=omox>A#sn7H9+fNZ$ZVw~a3_Q$VRNXZ47BX-T)5qSWSFC?+(Q97MnEy`^m0V$i>A)3$Lk&yZbl>|8@QRk8alB--u=mSGDrD z;^G*sg3hm+4@34)uc`1e_=>|fZ-N?{S1p$7y6tcMPnjxKk)J6z800hweS^$!B@9-B z-Neri9477DfYagT=0qooUU8>{}&!E8{b41Rz@MO|l$+ih)a<5;zh0b6w`pcZEI4$jYg>g}}o{|cr4 z>o)jraP?0C^_+6=KdvNq#w2hS0O{X>{eU~LfA>RnSNDDQqkE3~uJRhamQrIr>Sqzn zbz4NO4#8&AuE{hR08tPFH{MdjN?_ZZ!}>IzpGTWVm!mW7UVltq#`Vs_nWl3VeY)yL zzHsP|j%rxAae}VY)G&45A>H2N4`Lax?-Ah#-Ijx^!Hl!!CV-i>T>~|6VEdVc=`4{X z8VI$oK3&+xO}au~CUAWZT=8Go8n0on>BQJp65ot3Hl-b>cT09(h`~C+Jm47W`nb)u zjE%l4D@;X2#m{6F?{Q18w48u?!N&EhKNMh9A=LQ-+c#k_K4b}%?~j8#4JvPlTRR+* zYq{)xFtjlvlUS;pk_0hR$UZOv226mI1d6Va;(Yd1Ib&+9P( zZ%UMoe3%cuH+u?X=j80UzOXGL%jyYpi|^X0vshfbJ<|XXA9T;VM(cHjX4F)~F>P=}v^E)oLtEW?(V7mvPWC)T)C4bi(xe@0`fWfZ9!gCiqhA-&CuV_F-!w*X| zQH*M>ucT{$Z_ggm_=N>()hW7qgIkPu`&Ipw;N@_!s74#}&kfPGjU*mhrspu&%hh#K z{Woz-HwqsfwK}rz)bGLjZ6m|~7iDi97RR@3i$a1WKnRfF9wfNCh9JQqxJ%>SxRV6; zKyXj+;O-jS-5PD&T^o5t_WtdA?s@lq@4SEdD~hTmRcqCnbBr

    LLbo;eE;vi*Wfm zYqp{u&Zd`kt>AW@%sAbP87?}{&C~0(2d0gkvlFpES1Wh91Dqc1MgB70o7DSnRudki{i}D2nRUYr=iMU-6eb6oM6gH;b3cuI->gal93Uh%4 zKyI?}=CANP<~(Y=sG_2Yl_~tI z4+i0_BQHUXd-U9LGlSZvr;HyK3uR_^@+5N8kprqNN2D`nH|JEH-Q8Hg*6*p{k4YCd z1_#iAp)7>&12Y*B6m*+pRMKyXGp}#XpJf`)%~$1X&-su?dwk2Fc^E{jjC-NqnjM!` z&h?7BwgM=H&CpnZ@xGeW^fgf2u`Oe1{UY>wrH46`DKcRgw0ioU592{ZM&^e9G}I$F zA|hwzk8@R1RjLek&d}`auehpOn9FU(fPVV3KjInXOTUCitoGNAmvQ-Rs0y9m_7sgE zTj6>)3lkktesp(*jhNp-{CHCAh)|!1qq)RHbn!Kp?Mw}_r>U3g@TbNDIU>E=|EpL{+^UUnC|Ez2QA=u~u~4^MFRa=;{=HU-|M`$+st1H|{2IJLX?`EP#Q^~O} zcqMN_vq_75XPm0V_X58KdEV7Gu-jRN-L``Rj-bXneQx;`qBOzqJ!lWUq1IB&XIPWE zly60AHzucQEn|tGSD}qY8AlJ)SmJ(tBKh<9naM$HMipvo(&N<)I$^+L&QMgw!EjI4 z`hAo6)T7RW^qJWOY3o=^inmEkUGan*1oU9mTw^}=jJx)8XJ?|$rZBq$oy^1ehPf>h zYO9A|K$nipD;OAQ%IQoJ7(cIVIc@9s6XpoHEg(8sOYVL4Ihwz{oO78&Cr_J899WIZ z`^10_N2BH{ReI5?F^3o|_*+co&jh>EPZKb;7=a!$nqiSqfMl2Fp`Sto>7Bpeb9lB- z6f!FszkWdxsAR?W%!>=B=ck#xbv4YxD!A?a=DZ^BVA#W&JZ96!Okv>g6eVG&E=M zpCLXy6mtL9kAkQ0!=g_|t}ooX6`l^DOynciFMtElPf!}*7loYi1pDtLG5N}uM3mbu|(5uFT^bdkIhy&D#$9W@<{WNw$l3*Dc2|V~* z|GO>F8^ZK;T;`(91J?(x^#eazd0x?+>G&+zLsw9S`)f>0c#-u2`|t=!cE?R3pUZ(6 zDdA1Twp-3Hd>g^Ew=!wYCT}PM6wNq7vS5!cst5RvQcQto2AC)L*Lb2?7b~RVqp9Eb%n}49eE<%Asz_*K|bNHVn6qtpOU>(k(<>s zEd$FBmx%fZ0cT5*7i?<*z=&&1j8-e0S_=Kf&(CkCrFjr>BT%-3NI@~IJ9F?fz+bx( zI69s+zWdj_`rdhzLgRDF`>)yL`r_Zy>!0}%bG`U%BSBQ@{TnYVq5w6>Z&+%xUB|i~ zsZon5y6K28&AY#&yfJ;p-ZH%Y#%b`+V?QA;A-uUA-Rf7#nhQ!WH3;SM<_nF>UEaCJzezxIs1jgAwFHpcUgf7e%EtlmO zdm)G-i&OAz&l{ITi)|@?mtnDV^!5Tt)|MR8y$-N($QcGRv$gHY1EWC2r?0F?^4-}53{pV89=kV}w zeX9ESgunFj(){pnTIsXn2bty7&qgTiz^4Jh>sH;eztZhyYI#g6;ZLFPgMaQWk)GGa zbB8tH-NRZx6kDzY;Q9z13cany4lUbSXEdrNS!_SHA6mq>u5K9z#o)mxQv36<>gj z_(IvT+^uJDifp#V7QQ34bqgLQCPw6BWqF9)NJ!u?5Jz`oEZqt|-Y)AO7h?Fdkv=@M zXWGyXHuc_0lD74ma*=u+^GV>HOkU|5o})}yk?_yhVDle2f|h=n7}J40kQPPW zp6cKTx4cNP2tyLgV-XAuN?-EdYsgFFba|uib@Dd1+jOw9CL23q@LKyj9Ft~+KVa`a zz3gB^yIHSP87-~kcF()p*6<`u&u69iTs~LbrudvE`gxxVKFP~-)eQ{}qN%H^1H%fq zMH_1Bl{!!+cjsTHEA@8`!)o1A{QOz;qn}rEa-DYsF@OBdM4k-U-;wsOHSWPPB*V)w z=xG7#)HTAR@}avVMMKVPuK$LOJ7MR6u8J6)X{jHt-v`l8K-p@2yHLV=#hgK5E^*SQ(wUi@&; zb!a+tW+$Cx2{po(OM7u;O73^zH=n1CJ<{}#!AVV!(OQQ zd)YBZQA43-lcAuH5V9x9b|a_ANZ}&<(t}ft+8AedyyGf<6>g^zWGUcxWpvr(vu7TA z2ZdQ%u74nCka5S1jAhKKFKNGtMr-7qiKM(r-))i|pa7tTX7kkW&L~(7LmWWBi+>bv-+V^Vs^vQ$c>=y1{ITx2fj8wfKQfyml{`%v>rvD`@b+HIsP7 zQ&QcMn6+gD_g=QufJMkhPmuNE>@=sjJRB$_l>J@4&C#<6kI~cH1Tfz<9zfjTk1h+5 z_Z!Ujf6lkHSRXCO;;7-YCvP4lE4kl$p@amoFlEaeyzKrQ6ZYG}ih(?Gr;O$w%zJu(DKmk2vL7B&> za~>(Iy}QCU6*hfbe~d=06`q|_^L;Ja;(0$hP}PE#X_;vh3?p3kvHs_B9=&6`y$;%% zv4-9wXAXpA$fLW<=R^>$$YYzfJ2AKVXz_H8a2VrRFFR3z# z<$TH!a=Un5gg8a&WI2 z9Ft3*%GB8%(1m|Vj2`Om(P%VS)7})k=rq$Y9h5cO97&$!Z!OCI6vECkj8ftm zjy;lU+SR{-cTrMa6|7vxs2$m=$FElOdD}=O^-T|yDiZ0;qdm3HA0a?dOR*z)ik{`L z_OL4chxz-4qOfLF*P$=v`>pZ)o&%+dnwX>>v9U5YRoonGeOfk(wn`5szeD>qs*RG` z)4#iIo_|T)9zn<5LTnIL+^$R&Ib1a{dYNHi_8c%p2JfAHBOhv@>^WpMfD^4?%0IpDoaum61rKW z{^*4i3K;g}nCRC5NhzPK8qo!$b?B@Aqxprvf>`J8CL_e@YV*z927?rb`=)2xhOK7?C-t{u*#Ms}n%;kVu z%aYBx`hqx1@qI9D3Dw5F@KYJPp&;iCpiBosEvKzSJNLIXJ5u3cRwkE!jkg*jzNX}? zF)E!%LVcr)hH57tr{Ix?b4gjbp0W8+5m(pezIPiKyl>Nccd~?>T#(AV_a->Ftynuy z-er9ywcWm2O}U0wP9y2*w5EhR^2Nz-)Ms4`tgRJB&$su!bB6PCXqZw@_udZ={;v7t z-~>a)i64iEql&eA3Vkm&l@jpT=ASI*I-A9CyTk9L)_*L-^HC+rf@3e`}Z%Em1nhjS7i;q)nkPI zzQ~=2l$*#M`&WZG=2RBlSI6gUo=fgvjIN=BCRk%@nQ=TK#I*&bja2BCSJ?fkcCf*f zp0v4A)%7rp--YFm14rw1tFICs>9?&D4YnVZ?mK3!W+i~fXXk0d*GC}f^>|Doof9+T zdi3kJOqZ~L*QiR)@qD9iTW4o7v#@6hE)Wl+d1af!;z0^r#+|+>XJUpce0N|r%b`Qb zLl-oA%tPXPlP3UMG1Apep0a#c-RN3M&}(w=0=-!ZVrKDJUAr@edB80!F0wugm+OX} zjOd>oO7>h^AE6T6!A4GmT=BnLExCoSflVm&WDWKRk1CxbCY-CY>gm#e%HgzOo{2k6 z-$(`5y3=tlp$GT)hlh=DZ`b7H3ib}W$0rlxZPAyceV05>5Ow!^ruB(NH=*H`jFy;a{yA2%H(G>6*O^huRteIiM{k6ld{&t5M>%s+b7K0mx-GU$m^zs|@I z_<9xM_IYi>ebuw^=4xxn+86e`rpSo}@2uQ88p%8K`YIzIs8xGsgjwGw`mS3o-Sdi@ z=;8eNZbReEkY{7>B+nXGM;YVcVNbsl_CHzx2%ZVTffguMT3_U$5_qRjreDqCe0+Si z+xj{>3t!kOem$##fhww_k%h*n6FBh})ML`}7b|U2)bNvjE;cw9wtMRzc*`_8@2MS3 z7i(8TY7WLWsfZ@&vY0KZwTfN#ri=X^yvdj(pRTYG8>N|#4VBQ#A2?^zo0has+Gi`Lqjvx8-0~D1-uk@LH;f7NcIPyzN?}NO( zk*ioa6br1fe9%;g(ck+Gk4`JfN`tFEEZoJ>lJJ zDr+apgFg~xuC|SBe;An2ue@EG_4T^#2It?XOz6y1=An(7-Jk4^=EL*sZb=qOM+5~S zTgo9zGG*h(q7yvB&^2hStrht8g536~)2^e6w<=}C_+h=g${<9^6?L=bay_?mjm3%r z`B_wXrw>-z+NPn+(pg|{@1G!duL-*0AS%|0>2F$bNRE6gB*F>jVYv2Aj$}dtSTprC zRT_|J0&uzsYTlS7M_}&h08fcSmP4m?!(JFZ`_$K_*!S`La*`$>1q*p3CV7|aPU>>| zZXUj#5zzi8>_Hl)eVg(?E@i@G`qOeEJB7X+6*UGh<<)2SOYA|7ItRvsp|={cHB(bt z*&6c@pLZ%;m-q8LNd(p&5S~Rcq@C!kxuy-D3T!NJqM?l1w2AJ5EMK8{WsRh2f?r=% z*PHIZlffFf^_-kF77zm+q37uYHrTP|9aC{^g+EF&%myA$*n|r?4%uxp1bzSPMaTWl zMZWdER0L00hY1qnv`ce!0j#S>}k-xviz#BxZ)l~C1N&ggf!XrC*FzBKyb=#Hh2zz59R%u$F)?T;Q zlgB}xY=TNdSVcv{i^IJ&Cq}jIP&!fcVKe=$?&c5k{K0@e?=y2Gxp>D!W6p0%*u+S~ zG|lecaokgXHQ=N}D)aQ~r)LCdZhKk;*l+q1X(Y^jFYAB>;S~) z26to|T7F@P(YGNyKQ@nBLC>~S>t31G5)ardykgAT0j;iI>6C=#7Vq;E*`KqAk6H4e zb&r&VpCIjx=eri)(nrA`4<0V&tLi#AJA*rgztC_k@@IOD?iSCPAOVALWQT|wgP#53 z`&oey|JM!qO60U3w`-i^vj~b4ygnqRi|9P>xjt*hwtt?%M>4_9)-|5eQZGvvxBAF? zuxRN{i7l#A%fAba?7wphr(x`HIS)=Zd(q@K+w3_|M)C#nGvZk&8;FPSM_-IH#+ra< z41yQ{Pt?kn?7n?6bpYV7p|6Yh=@5YL|6j1-Ukv}hfc4x%puK4@WsX}fY%dg~+3evL zUh>x@vX{Mk`2(Zeb`c~N;MI8_Ww#kpEWAM~ywHVu!sY5R-j(F}p$-7UK%`~{f% zzI0;p4Y1MuS71qMWIfp%S@ce6UtV6U$1c9?AKAMYz}08DcCRd$va}4vp2Llk@~GpM zRDKyGz$JY08o&>^iw`3=v4l|TgBu%R=xH-&28GRsb?048kBK^^E!R2<#2+I{eNz6S ztU**h-ow{-kusceldi5HWB)@l{R&4~Eh)u)6Cs}~)fyX!xPwp5;lgFND7B4`>QyD> z8iyGhs{5Y$<9f0FLl~(L5DK#FLPdU1z|C(;8ieIIR}MlR;-pGUih$de)2iB^zu>Ds zX@8%^3||K7p@++Fm_pis6C=6yKmTpIxXkb3h5IEYT=@=WO$YIay1$@j9!Dg)fvUgZ zs5yPu6W%JOQQsYIeDk*LYux}q)a*UDrz>oI-e+B0enE9%z1%{~GTuc6bR71p()nOK zKgI1LZG`8vtMt9q!Q@ky&+W|gGbk{;q&-YN+ND99PVgB@y!(y~)(V${TDVZ3EVWni zceizN1Ot%Plks~5Hx~$(&wT<*4MSy5hX;pN@k@mxvdP~_da$wO>#n`lm5ZMEJs){j zFSwCr;mto+t$%J`%q^VtE0n@&MwWcyB&tJ~AJ*LgTbMUaCtD^kcb>WZ3gc+(>paTSOW!*gmm~M*qrb-T`$EtFvn6dt_*!gcST)7BSJ?N|8@RLJXn#||^9oQY4MDr;K{8og&~Z0>GLfe-Lxdh5eO4_tUf>ae3#+WTH<sg4D*&D)Y`dAOXi_@Sis<}d*wR0b^U~3YRCG$Bo8DnRtt-Z zi$i$2P5gA|Umt^7_?ylD-6>@;u5dkCYOeidP_5iD|fjr+xeHd$9Lp}U!=#h+**RxklB{~9lpNy@EG!d(LW)-@b zx5-|Vmk(-gi+OC5TOXJ@-icCU4{4*I2#6)rql09VkCl;>0gOaT`-4HRl;z8cq~_6R zGCNWuY;3SSnCfyHo&p5z?Je#$d@!!)x8n66`@X*ZW?@0c^Y(Rxe(8f0(t+(@IN7-< zhvp3@5APt^x-6SBeza`LQ5!rdsSy^imN`-Y=fKfQb#*-U0&S%HW;Ed}Y};lsCg~;j zIJ*RkN7E7!*GH(iHI4|5xsmM?6DdFqI=VQ}ot=rZ#=U2edcE1a{FWk~xtfJeTM)Tg zM6w4Jlr0LQ-oe7|zV=8FJ3GHbf61=T^9ypFbIRe#9H?i*yYMF4JzW;7M1C!k3C88Z z*Y9)OHD`Hwz+yWJDmu^POKcOjb*YNc&`cf{PKX5JI#OwKv*S3yo1IcvYo6WeQ;Hrr zM-xRS!mmZM=D)2w_Mr7o<3MA`g2Yz#U=W5oeiT2K*CB@bjGLro43t;)w=P(*~r_OXuS6yL& zeH9d9*d6*9ZA?Q=f({ojhvpI^Q`(cfrA_(y9Y-NSfl#7Fq65N-zAW@TLXOLN%|WnJ zXZBSCxVQ$pwe2;Q5lE?41$?W6R#Fm%HY_LP{aTyfvq|tik>7j&3o8cdQcqEUyg%}h zS@&Ii!_C&_WN1?MMW z6xg&HftW8MrYlKg`gFr8K_tpt zDIv{SG%-S8s__GbndK>T8_!|@MGln)boS{5KkGIxJI?G5l*JLMp|u<8ya!B!awJdt z{pjZ&u(osZOOaZ;$s-}e0z>m2Sx{^NQpOj9MWJYWfy9EdO=u1`DQw!nLxO9=hFbk{ zKO9vy)vD(w`Q`d9RQ3{?G>734t8#N>)yX>jaG@^?;tVd!;QTP7{%#HD)%mcxCym*w zy#rTgs-)+eRz}+&x`&dZ3ZgM3@9q*?dqeKqS9zFH#nn9-G3TbLbRvz<-|$N$>bNt} zoZ7Es-Zw2d^J-{QU?8(iEe#t)L~wBatRRbS`~HJNeH{xEKMzRd+B#gF%(MuKNlDrJ zex~Rv-<8H!l!EJbKzP3;?cl)H*Vi|RV~UMQENLahG_eU;J7|u|?sPL{cA~hoAN|7X zTioMCgUr7u(AT6Q>hgIo6E;@t!rroNq(SAwzB#mM?8KzawK#Cn`>aN|Ib^%6GJLnh zWGu#HT`Z&B`KGxuH@?DgD?UAY-3cY^(3ePi4T*tfgq*A33vpvj%xml}jS1>hb)mMV zK2r{h;!k}HJ<>pIYzqCBQRrOFhG7xo5RU^z`XYY@H7#q(4wnQ^@xmu9H7Z>bi=xH- z;Z&)21^Yx&n;Vuj2eY!4maoEa7(1uuvADUpPscw4-yVpmb zmNdUkW7wtKx_ZsY@oz+qLb+f$MpDHf>F_kJc+Q@jLduG@DhAk}6vOI#&uK!XSB#5;TK`sm!Mv*-PdM83lY z092dY)0D&&Tb1A2TR^B7c&`HSSu28ec6EH%iV}ByQ9@5@01c*=fDCsobS7RalP}bo z5N1JS>@_?v3|YGx>JOmvXRJK<_+5jQw(P+NZm5on_3^*ih~k;Z87}+l!xHLVd#?(} zs5dyAEbwv(Rz~!$V=WR@kE@m0m(y?k3Uk`ZzwHtFT}N{%Ii>v_AJk)&JbVIw!)4)i@R4mI)a#`8Kx|JSBnH!7o{!bD0TJlLt zs%A%p`zB9Ay@Q&aY)>KwdaC37rTBewUL&0XbNuG|8_u0>i*5u^s+w)5hd;jB8ja(f z6J=a+_bi7V!6}i9v&9Hs65A_9OeY?RS`vn-9N>E)p|%ruKbH+26=b=G?vyUtc}ptj z7~I5ozVENguT>bN5GoEAA3j6gUo0q?W6);h(CmooxNW{4$K#Z+eaq*2$+PHnKqoVi!cQlEc@W^SccSCQa8+0TOQ{xIFr9cp ztt#ti-`=6pRUU?DtyA-5Z40VVGuxH<7~PlScYfwEv$0|mBFl78+YJPy9>3WV|)ZC`O&Y)}4>F zrHWBuu={DZQ4)i1tMnrAXrDu!TLEXD0HdCC@m0t&u`^gw#)e!q`DAwPQipc?Xrt%S z%=K<&_mTQpbF;h0)geFBVxzE2d}>TY#fA9Cl(@!lV*;&O*7+k$L>xr(qbIzj80M?9 zGtynGeRA=_@amB9PfZ$C0yFEP&(|tRxKSN#F|9aEdSX+r1Ge+4m6Uqn2X3@#np*Do zXoz*>nG<0W2Qal!M+VI zRXzBmZE3}Q_?fRttS*>K$)6k;$)u$PvD4DN0FCPFd&YkFxlSE8{%aSBjQNJ4crkge z1ho9M%x<#Vs%v8}JS<_RrI5sv-Kc26H?(QJvZ^2`H14wD)|I_SS4c(|(7DL|*@Q-R z_YcTcxvsk%voe`&{ctY$9=q<;V8sNcUTPyYDNUu-i4^)%A8bB8ahAl{7aMYkilTPA z*Ux1`+hutxkUYSi#N&$zl8nkMVem_eEJ<{p!TzxM|i;T0%}_lNYZ%!7Cc{T*`KTa0@PBRPJ^eGvy+g zDAB?SP3G}Df5XJ|3c?( zDUx8MZ{h`DK+??iAg7d%TC)XS_M;_7^cYy!@~te8JwC5%;Dc^dWBl0s2G5$$Jo2lm zAtpKbGr=zXXn56XTgyk;+A)@)_JHGK%J`)T$M%ksi4X=C$Mr9@+-c5;NGBO=!&qPZ zV0WLGEsbNuQ74FT$CQAOi*hQO5gm&wN(kojU9?H7yh5uH*PGjGBz9+=t1m+FTb-l4 z(U6?#@H+BVC1fn@rMd?jrb)9kq~c*yh^JDZ{-3yzehqA$Z1Q;#o~qH?Kw z3=UKIJ)Wtn(|CD#?(&wLo6U<#au7S~doEmnmNjFXA});T4s#>8x!#vn*0dSi1Fn1> z=Q=dv|67M|XWkfQX?srKfE*sv#3vehMtTu4Zu-U=5^_n8ThkO~vzb}S ztgyd83plYT;ECRU0|hbHy4>!%5`X<;fMym`=CE4$LC^GV}SkG!%a5=k#V1b z{rK~0Y-~y_?Dy7v@RN3-da22bt}yKL`ywkuGDawh&8}^efWYzg{Y=5wxMI4vi^-aE zLQ;CF?Xjz>AyypY$JQPF#i?I=%Tqc>;D%WbDZYrBP(lu7g4ne`q1nbu~R+oeAyXQ>foDuyS)zKy@h2Xd+mH1AKfh_I9m{ ze_4eWx0i1X=dm_4Pm;ZoW@aXs_lPNYZBka^3*UUt2i@W(bGhw7pT@m+VqvH&=GQ33u&MP`|0a&bvh8w}|sj(mH#F3*X2>*q9 zT!YJY!c;3sPJ+7KGj@Bg|41VS3GZ7l)FeDXv;|#LZ*qf_mw!?~4amfkFp->*&(pWI zToHO&nIm$H~&X9L9>IV0<{$yvLA+0jDCl=mHOB(S1)MN1VgJUK5kTo!A?aE9z1JE z$Sgl&N349mirQe3K&V69TO8dSz$cJ5vwE&IAT>z5ET{J8{dB|Zm_|%{eXj<<2ZsP(yl~AQdKv#P@bCoAjUP0bUfo{I zDwkB49&)6>uVpFKM(e7691K8t6J^(~vdCw?EVqMK72e67r}@9}+I6m7Mt%+SD$}wA zQysIssQDuyre7=HA#zqX@X;uw@|bJGTS`|*Nz)nzs;1bMMDEIo6`sbth>8S7?}^d{ zCT8p^O&hT0Y_%|<;tVFqeo{oqL8L0uZ2q?S0jl(~qC-nr=Ckw*c~mpU)$MY45Z{m~ zhZHT9Y^^mR3yG!@4NC@3*!5bEM!6{!bw$EU@=it?^^2E(*;lIn|1`Q^q`P;x=uZ(q zIqS$~*mm#SRbHgmY}htJcrx4IOe951V&5qGlZ+v6%g;vBzmg<6ZFbC?Rv)3Yct`am>2?}(A}S}OKcc-YPsuA*j6Sf(!QF_+_I=n zYv^PYs3jUI^{Bo{$`r{Lgv<^g?N1|j|ACZZ1Ci6 z^3RX;J6Vo4ec^ke8Sr#dxefB}p@h%vwKkl=UttyQPjr4LkmYh8+4H)H+Y1xZkS*+QbF{zP9X=sV{&ncR-2W0X z1n-&hr4lGVspLNTg@?X&eUfIH4yQgXA5R$Qe<9NIQNXwWKS@bRxw5~{&<_0HuCL6a z;E6~-B&k>m0EkzGyYu?S#p z6Y_+q5=_zcSN`EiQO$)Vk+_FX+B3_W#lszk)%rdYQR&T)DsFO!J09S7LCYs4JDe2` zW-O}TJhlhjw zeFR@z)4k)F@9)qoxjBiE+t!oLdKnAs)Pw; zQqFz!ZT)s$i#U(W3VNm&%)A zt|(z<^_C`U+@h$Ts-P^?fRq$Y)XPiJmD7=lD&s#S=knglLqE34I@N2ZbqYj_)k!Wj z{3=8dzbHdKN&*VrHU{T)*3Od_F@!^OyYWd~mVQAUl z26e=E4&XIC!lB2_tf%jA5}{SOPvcC9OHd%L9`Z?@}mq*&|tp22;TCv6^A z1W+^r>cv=Naiyh6q0IYx7%{;(g&z4oT7Z19V$1gb(5Qq}S3p|s5vGCw z6Mq#KxXdXhEGLebWGIJ2VG7Uwo=l4LpTE|HGXhDyh^I2|Si%5LHSC_eU0*V*PQnv`S@+Y2`0`@v!Ysc&ciHrQ_ClZje&9e`9S|~-uB{&sqX4|GB`oqm zU=JI*_OTY{PCyVjyx>C<5^ZZMd5@aiVu30n!oIK+pz@2>q`IHhLC^ceUYGh>+F6;= zu%O<}L+_^UciD5;==p(Fdb)Xa8j(N(f{4~RK9f49!^x-DzkLqIk3f&kF3shQ^Fjr} zLAOVQ9}iS*(jow2oM5taS-$$W_{<|bY>UjZ^ude3dSogCgcPMWGnV&o_RH>ZS~$1S zHN4cy?ohWD$+6T`Z@JfvL&aEGWmy_9Y3Nc?(B|DN_1jc?M7hl_Zbxh5VMaS^*j`hD zEv3aX9)_3@XRFBzyIc(F>!KfZ?jAf_#sVn}8E%5)~hp|aUwjQsiC z@Gtu$sgwfrp|>|0k+n14Y#CB!Z*8V8^LHIsl4=qIo1B_!!jZ}Dq3&FE^{x8+J<5LQ z^|U8EgUP*L+dvHE8Iuqf(0?I<NM;|uq-3zgbEDc$WK%+ zg5y#?5WCYVF}Nm2_II}|-*8nCL}e8S;0}P#;NJHRfzA^PtaX;K?I5i2ZsIr-xx1UI zz7kmrtDRR_RyUtnlV%QU*9N|s5=d(O(AJAMsiGwcA6XNuJ$a)kXRw2(OnupiM_bnI zuO#BG`;LSNBpN#zd?&;bmpSBkGuCHBlFEVg<$p-QFDf#iZQb(t)#nN?y^D~u z?Mogbo%vQ3R;0D}a=NmlP+vYY2OzdRVeHpB?AB*)ezW)`ap33uzzm{a%!RIbeqU_N zKpLImK5qdnvX6Mocx2!(uul=GED4Oy8n@M*5A6}+ zN0tBBa=2XaDcV|+8J<%{vav3&Y24K~AH_SbG-FgS8)Klqdlp%4HKVLPx8}JytV)U< z=%yp5Fv69Xv16i}NQjT$nHA(Qs$;k!kUZv@iU|k^{G3%X(lS%bZeibZ>3siAIM!6a zvxE`~%IvMK4n&$|fc#JF?`|0x(@D||jE5aZY)CK1iUy;4+{P)aC8M^zap-~<8*3N9 zm79Bjf8xtmH5T!B{>%> zCNi$NQ4|Ro8+By(0)SZV!yO+Vlf9!)sM-fCXq?V;0c(3NHx-7Qp+&J&!LEF%%0vUs zmk|vSKg#Q8<;qu#t(l4gUZnDPemzveejm)&rQ*pS+b$U#6=FIpN|QWLIY;UhJKn^w zPn62i9UK_C@Bv~cZ1s%XEXHCe#1yK-@6~h_9g8=zA0Y3<9k)Zw9Y98E_iyHlk|O|< z(LJ_?(2-#suCI@_uD*U(ToX{z7z1P$5XdTPvxNdc)&!kP%QSenxX6*WFjnxB&m-#8 zbJ0atTb16~iSR^7QLehNC~pmQ4NUZ84!6|dOcf>>jTNYGX^0L}f`9H$yPII8AUV-3Mq%?{6Ub2Q10P z$=U3P)p|Wa&d~4(wvHeyOBD#3&3@*xKQApR`vxSJVy|}tcSfBumR(IjRY^qe%o}N2 zk{U*93W*OYui;qh4RLch@=DI`w9bX#tyVd_v(Sulipwc?spNO0j>xWXq)bXEoT~w` z7ZmXF@DCx9adM_im0*Majgv<%w|HaU#MuZmS;7xlI$ASGI`BRag~c!iYgHkiX_{sq+`c5}KN9bGaZ z@^q#}N}R)mB*yKN(UY!GEBkZCi{JxsDS(=YT&yZkd7H~(3+34jrv{HKSOCu>Iw3yP zZy?S%pM~*TK$tEsp>k)GK|+F+o|wU2S)iBl z%v3@yQQS)lKP+_%BcC1Uo$4?)AU~qw$W>HV)93FnlJ+o)i4B7MO6S(h2x}QEFYEg8XCr1Ai#Ng3}`Ief;Ny;-oGd;8bpaee#eRM3a9IzYvu8)RmM z_@y<06q2zB*2akco%J<;pO3mQtSr@)S-GgCnVUI5r=`;ghFD<)+#3u@)LD3Pn}C?l zW#=DZ{C^J*vHl$(`j1KazarTFyAl1qiq!p37m8ZqIeP4g_wMfrf_+H?fLf=N1|+Y5SS}w;a5D=rh9}hUk4c)8*zR5rP=0a=hG2@YIfaYr?=7qOGhHRzw>q5 z{+Zz1Q>^+PMT!oHcuM57nuarA?YHjb3u?HpmLy&M@rM>+Ca0U>0?>L+cvx=l9|8DL-oSp({@yx+4A z^E7w+7Bb^5$5S*x~H10>jOSC>{BPA6mk3|yNzI5b3s^6w!G zNc~Hqyi%WfP5wWPingsbJcA$3$;pvT;gXYh(sdD&laYM^5(c7sEQjN>Q;I+j<(~qr zgZZP`-Um-lbHVAkxzr+v-KqDJnpOKGQic z9sgvLy*krM*J&k*z?rnXK%co^N#?w}H>QBw&@@wg|AyP?fgs>nfRP|vwfNY+*A_Mb z9rMZPM`jG3ngY5s$#k!P*u*t!k5gnIr1^Lh#2k&~jBs`2&5_xZ+yBPr&iyr@K$+yK z>J9%J@_CSPy~EB*+>YYtC@Yz`=aYVVhxj)#JA8}z6NBAknsU}>Lu&-9nUb8soY*a& zTi@%45&Ct`8vN9&nY9;wljfblj=s6Sn*(NiJimf-1!p?5)0gx3nJY2_mz%HAR1b=+ zJ?_x`D*wErI1gp}kadV8+h%ScH;tXfgLBHe>UgN_9mOZ-(H4S%|;v0EO#Jb<`w?&O*G949p*XTZKAa>c{#-v=>Y z315+u3brBw(@U-~^zDT8?9KEt9G)R>L|&d57U%Bc9RJaF{_hJz;h%aU;$r6?mC6^a zuJV5UI+XnsjqnWN*(cPYZ_mcXP;`$!BYtT389>tThCGps%7pR_JpA)|gkX8HD!8vA zU%n4s^%w^xv2V#@`P1txn-w$gn7Oz^mdwm5mMi_-ejB;Ri~FF9+`xWMR1fc=y+GYq zxX?+s6eeL!C~Ir*680@yTl(2tV+S7;Ni3SdWq6)aojQ8;Eabs3CQH`GN3EUPzy5tr z{`u^l&Qf!vM+9Wd+l}Vi^@!56xg~l>(|STT z2(atSSZE`aRqw!1wiLt=YwmASnz~gJKoeh^wOXiNic{Fs)bq3%__cn=14--L87|M^ zoc@*r`_T!#c1;nU>h;7Yhaeym3fY2$p2sR8>o@xzGG=>VkK@<=klqwdy{#dF(lBy= z{%1FTw+aVJ!ucol4a407#idPBU+VQT+$=GFfS#X6RxAaZ3ofmc(jc&jL3e9oX6&y; zT+re!WVsa==QUj0_cF!Hv<8t1cOejk1e?428);esZ^coGN6ou(UuM7aY0^RIMMaAAA~h80AcRg32mwJsYNSh-F1?2y5QNY}hY*VN5_*SF z?)H7(@0{cZTL34xIV?~Y$ z-wA)O+ulwB&+lYIH54Q3>=+a|pwP7|P9JnDyWJV0gL&(!WI5XMEu+;H%T|B$Pq`4C zLSAvmuER*uMsEXe3O2QDW`vTr5ljSk*KoM)k}2tvTKx#!qvSd$^E|dgl{Rn5ABiJ$ zvZz*xQ%&<#d^`A3SX}H#TZ!ZS$Svmz51n?07|mxVS=6&bqml7R!A-uQ{$9w>r^6Us z$a%3WU*Vd{~9dEy(U;9eUDD8A_t=Ev={6{?~pA0 z#Rw(nzTo8Jn_H1`5ymLXpw$Q27%t_(oSZbfU%4_-*J1grPmSSCWz~S0-)uu%vdEZI zME?Yd(=UtqiwcoSb8bbBD*@P=Ha9>loSr818<|gDqo+F*o$7Efz_0b5A9`A!sv*j2 zn|I5MZh)VEi4KaUHy7KOWQjQ2l|&+MGYD84cI}Ap-e@rjJrHtU?20uzr)g#b_Petel&kLIzf-6p>4( zd#ArC6UbK*(xrk5XtFOG_1aUx#jJooPvi~MZy8*=J|3#G+|eCXAs%7?uO9!JxPogHP;+ZZVIPL8C z?BHDEJx_{TVDh+ENxkyJmCrWM{j3fgcs_2fBCZ-rfs#WEbs5RXBPElp^x2ALHd#>_ zCE^CvtXriB+Iy=)qZ?Ar`+|+}2g}ST(#6v542BZn0(lKo41~1l&%I^)crn_YNVEH_ zZ>B(h$UH4|?fph}qaz$n1ftfL_eopXKS>(p)GgMF56Ab^ogYyKZaioUjGU@GJa~3w zQtQ%IXV?0yz&GWP=TKQP+Omp%+@?rlUd66lv@2caPZZ?^(VofFA-jSen})b_nIJdc z5PVpJ%VLQ3U59JCV)5cJz!QX6Zj_@tI7@rahTna@$zgImI#1~4O}Y!5*LraH!y?7I z;l|#B=CxThx8M3s1^rqzDc%1~$(1sI=dEZgab!l=>mO8y2%F5P1Ml<;#S~A>gd8J( zo>G%nTZk-9Z*+j*+BsVAV5l%Mi6*=Mn|9Cnqd05EAKNAg)axa#12V?TkI%F_TK;Sa zcO8hzw<$MYKdF`Z^Vgru?!iXfv&TROCj<=H!Nwx~CDcW1l9EQ%s>a5QY;b!Pm%Wk* z-|&uZk8}TLxL+mv-)h!;U!}DpkqbC`V}})-60+~81vnh;o@IrrsldHJh*o2@W{=7J z?)=YM^mO%?N$U~e??yH=Wuvgjm*+Z|-0j2Nn@mk%WMZV|ug4(ACzvQg=sA@3*_%tX zS`>Ga>vP`tk3}*kUK*sigIel}kqPddMeBK#v<3vN3tcF#PriJToq}XR zo(tZ4&Ui`cd2-piSBz;?N6B(ObU9iOx0R%o?GfB|33X7C3@}xi@y5u>*pDx z7UZ#I1ZiQ~P+yJZZ%oPFUUB_!flko_xa8?wGU-#1k$i3DW;VaArj5RqU`Yk^c=wO{ zR!}HZ#CMH7yF14Dtlo6`g}m<}@$uv*3&pr?fn>wv3MSz`x{l4T!g@`nA}(teSB}}w zO6PB+H(M+O2#xC!(!z<(ZV7DqGYE`Ra~}%W*6Z$U)G;`m+k)qNcyVllwmn=E&u(RD zj9dRgm6*3Sd|VfUF%p<$D@>KeV0M}!T?aJ3nkLJ?`%RqnM3$e^p(!+?&*l9=M-wcy ze^f?q*PZR6=G*+&*}ambp_MAODQMw{lAV?{7E?h?D2xY=V@EHZ6?$<*fR^HrK{->V3G$V&#VT7}up zVq#z8l^TftutT^R5?H7Q?@#qchMat|V#0V&NMcz!P2p7tgGz!-&2H_32Y(ei)j_RmPOZJk=WI4kWZs z3MxE4dH&oUy+ZxKn(jT0YDu>!Jba(}s{Zj53;jeronN|nP=BtIm4K&$uri z0Vm3qrg)P3e3{UVEp;%rnXaVtNg8JjLYZu{K0Y&NgkFFjw@AxX(Y92?ZV|rg@X!!4 zkKKNJc`Ev<75Vh-v>&3CW(diz$kDg3An=4M#&yhfOT;In1q;{7(LUnf3O#$^w|k_W zYsaAGnBLUh$vIYYIWYDiV_zHAT_E@R7-fi<*#9P6TMuqwJfKV)^RCcC7Hd?~ZRvcIosyc@DNaXprX5JD=0dQh4ltq>VLQ?E zt!otLtxp20z^|+}t6rTSYZj4}t?Re3Wm?@8MG_Z4K*wC$&r!>!+&ZOhxXmEjUZCLSU%PU@oDLPzC z<9YAW=NFg81db#Wqu&!NJf;4nb-$aMnGrltD$bv{Pa;|;G<l zfpNJ^3MsxIg5n!l6w=m;1M$tAawBix?s z9AV1KCP-UFT)Ku!bs%|VP3M(guneq*P_dv}Ei<>@Z2n1ppRj&UJZ|iU|Lc55lBN~_ z2RgG4AutlW!b46?9Z?+75{PKm*(Yq}E|Z&fSh``>n7!JQwm2=d;=(XVHySZ)sUve` zQWOdHhRJaFu0Gq*4rYag;`}d6PSPZPpZB_O1=!^dls8NSJ1sT)mM zCu(wya6KZSXVe! z!QhD+!t8qm!ZRXd6}C=9eO76?Ti=+DCFi+VK2|JOc~O}V*MpFx%H=s8Nr9c-iJANP6C0UPI>CH zv@$+jG28(o@7<#h+K4%$+*UktUfa7Bm`m9_dY_sQpY|i8V7_VkhS|k2ExmL@Ko`70 z<{f?(N<;B0>jx%gS|t2ZV#3emMd0G&*rzd;(_f|y5sITpe}2Uo!`Fp7L;{)!KIYX2 zCJ2(VG}qH(G-zO*&vi|7@dw?IRm4GuWhPHnnmOJgaifghLP%bXc6ZRk;P6>8i&? z#j`LTAx}3{CaQRHyjZ=Ceo(&SC#no(II5`jhgh*;B<3GRkDO<6bpH) z4JD&Smel$Imu-;E+!m_k_&h?0*V@voOix|Wv`nv~r%pNO`@?m|Lu@^V{}&Z+Qp>@D z67B-Fqp}6Pc#pFY{)BH7^`J4vJ`tSz&M+)SGr6~l!DpdJnbEx}R^y*dd3z_1czpVK zjZ?3jnQpIZ$MED#npIlF6?2JApHpOl=Z;mHiy&e=9 zmH4Xu>%$zmEiMnKn*;{g6S{*Up-xQcNaU|GD`#A{ z0%NA$2u>bd0{K&|AhoFJoj*KfqwaXb{v*Kj%tXrfTWRV{?XMCIdR(XD0%(KYj>%fC z%;M6}QCS2PFue?!g1q*Xf7d9Km6g+_GY=y13P^o3UGmT{p2Y$!c4D{2ij<;Gv2%P2Vnt=u0T5+kchv_|Yo6 z5uL76o>uu=+IU=Vg?guBL-;B-7<_@b zKRM90EiQKZwmMm*&!F#hg29A!`#j-&tHp$C&-T1qX|DgyM+(S(#~9w^n4U< zTyUpZOS@a3_+448n}G?in0x5=K4xwNF~Poljbk_&qdXE2wW^+nRlOe(Ia-lPe!BA) zNWy*EkPK_Hm4;4es%D+HH(wBOXk;{Gg4Mvl(YROqmo+{H)=AGrCAl|t2- z%hr-c$*3)v%V!$X-Acj`%B64?)6@-PWi!LFw4gIv`dm4;TsnaM}v!yCBYC%;I zx%oJsoSC`^2r8(kaBI@r@$VL~Nwh^xe^Xbi{ncuIeNPWQtHhTCM!*f4$Q`q7%3KmR zC(WM$(^insJu4m6<795nX?sk$X6l(g*V!i3dUW}D^?`&6kh5zRlf`tib)u2MHqkiBjg-^lR07EiHGjQh)K9M z6N!`Sj9N_SU*<+$p1)*-7&y8)PIa^~66jWNlY*dqBM`d77r`iX6))$Vo|kg>hpX`~ z3hct`rat^0Q(-?KCm4!5Z^nk7y4aw+V#*oVrOgcPN!m%h+;c{V0aeT~AKzE8R=XOg zE5Fw$MO_0ZT!mQ@TPCt$oy9s(IYmuywQ9}ShR#l2%1=dWzc9raRg*2yD&b! z6=q&v`ELHBIivYlUt&$#jl-QsoV@VwrRbCLz3$hdZE~mqK_j#5`IUr94K$W2y15jg zvhvK1JXR@wAa+Jyz5=5hl=Jh6wZ+bHHou~}x!L=@a_*nLgcbm_Hm+0kNphF*&jIEy0mqm3 z*(Y)GzY)n_yGqJuNOaZS((1ScHqc`E7l9v6S8!+N<{xfMkpqSP_8j|X>o8o{J!Z??tWC+SknWZCblYxB9YRIvJmR%c_B5 z)4KraHnX)-GbZ#4!u!Kiyg4p;cAj$mcrrEF)KR!nMfi97^-a-$iTahZS=~JbA>Q|R z0u#u4{eC%amtCVK!wbvvdk?B;2!1~fg{$$6UP;4l^%_*GjKNbUG!#ucyPQ`no|tz< z*vOxJE)$LOAA__{ms0&Doup!fTTiu z?D|i`j_Pd6V|Lk8<|QA)HP5HZ9Qty+7YAL`ESnN1-4PlBaY}T;Kh4HJZW0>>@S*?BGc}D+cw&BEnoi%9imzUPGakpp)xsvdswVZhIlEMgIh#jC*=q z`3%TXUuK#5O&8pHtOT=ncGaaL=EcXHG4HQ6&`fe&^=m$A`SG?3@p)Hsl!Jir!-B1p zy)ibsNcE>X#zJVQ9FZpfCjzUY9`2;TrB*D-uN^@Xs@oyFRtJX4hdslpJ~othUleQA zho6SE0<#-kE?zgJuvQ$(EQ=h@0txdmakcYW#mdIzPS6JZ0)Y0?4TI?*J)Mf?W>9_B z+v?DYr=7BKrzJBeGVeipA5@`H&wAv!+xbdfN*R$<*35QoG0B7QF!4-O1?QG+kWcHC znf_mq$l}z~?fnGfv$n!C9R=EDn);v87du(Ss`aqsU#e^=P~#7UK#XFEpHA87HSvK| z^s2s$a$hg?(7Gza%xudfm9nxr3#}h_5AZQvoaX#64telw2Apg+KcjUr*B+W$EC&|H zXVrkE)K`t`;P8yK&nX}9o_l)<#Cj6h)mk^tYulowCiua_)q6CYAwCXP4mVbxx0Bnc z=`^6`4U-VykF#@KHd6d8>{7SrWIi8QmayIMVD`{>V)fz6 z`)tFPac0Bqx7oA5yixf6IStG|Rxux6iIXB|if7ERojUp=%%&biQ5bq77gHS>a}B2W zg@yeG(GlH>`4il}MoOMG=cgS?V!`jYWzugIVVwaW%DdyqZzzfPwlyYrB zm!k?_`{Z*oGQl}ahWKz-7F7)8H|254QbgG2*P-4khz2APgosV$~{ur$vhdcvlFrxCsFt-ZTjuP z{@(pqY*IxUOf{UXYfrYxlnZ_moPQLv_Z>Iz3h#8jo)~n@0Sn_ctm$8^uoq4-E*XkV zRgA>s3CEUX3HZzkEveX;tn-(C*fCQ*L#FlhCXzqTu6OWR=FhV(pkUz~TsWb0V@m8= z>Se&Vdh$`~Om@Q=x(2*|Nwn`f+Tm{xe>d!5i%lRrvk=lM{tZH;rC1Dy`jU2oLTPwY z&$Gu6p=vy5ItxN6;N-7&yUlq=etLn~4~#uqxTPkSseF7UQErOqJJxjObU@nUIsEVx z>L8*R9K{kUfz~a-Bz~S36Qy#1ge_CfF9&Eq?+FF&pSt{65^PbEkN$x4YQn!j{l8IM zf51HO0>lf7-J3UT+CrSC6r@smXBjwY%D4uKVq76(``bcU7FP9^P+R!pE1*%p&bDFk z(OBidT?>KQDq_U?$V-xpo1~SEOf{z3JqS9I{kuzyUj7A>pFmQeWAOzlbmQ zl7D*J{(jd4xHCeaPe0#4KWu%j2gxm%0GP9a+yGqB;-&07@DeTMb@-VMZ;8ykKHQ>@-py@$zMFa1kik4pvSu)mT0?p0h^%$CM`2C8(U%Gv8cD26`+9_jLE0s zYZW&pHVg%BRc)+VR*6L?xh8r6hb9)--e7Zec_W0jPL5_=T4dHQ-}qXL4xcktlT*8> zo0@MIt%vpLGCBX=mz5W)%e#>P@4HyJd+#+Ql{?KtcYWC3-ca|XY6lkvQLbfbTkbuX zucyBljvJsO*@U4V@omcxj4Ge_rwysnwZ9zjS?oj=?`(z%F&;pFbAjf{$s^2rL&T`> zS<+ASeP|lld7o7uS?K?eq^araR|8m2;@)$|#+jt;oP!SwCyBp$8zQ-@0VeG*Rbs0~ zD!wde+!eiJzvvw@9zcy7gDNT1Q$3@T4jN<$Q_(87xMpT1xB96u=rD3Rs z+Eu*jQK_*tt6Meqv>LY8z6D>r&bf3M#Z->y^&q6 zMuB@ywSy8TQNd|eQ{(hV`<|O$uRClj`DpGA-GbIZE93x^KLt9<9qcYN(!E z)5Nd?6Q3WkbP)QgefNSoa^cR)8rj$3D{`S1lZF1EGUX6~k#Fn@U`3RHSMIDQ|4sds+L= zS1~OSt{_1?V!j`vBs=ldfwy1`G0l21x0XIOw)DfaM@@m1#rCGmlEe0oih&*dRCX^H z`8!p1)q-KU>pcN(G*(#3m?YQ0nyDbi1YcJkgBuRxQ_fShvPwKDN-SBPHS@;selGw_ zq}MhzF_+0X%J^0X{?y}Hs-ZVsY{;8RZO}|U#9qJZ)cAdJS2R++zgUB=Z6`Q)9uszY ztwW^pv*}*ENCX+~o*{L&EJ$grT<{y>vGG`w*G&Qg&rpHf@qvo?(WO3{MV@@=a5ELo z=-jKs;F-SjVg7{DbtBM9vh7j$^x66wp-j&oHo*d$yIYuThDc|8XA|ts%}Yja5n7N1JJJp4?Ac;jpT z#NF=N&YLN*!mzqXi9dT2Q1a(XXoZq9U9USZ6-olsO?4;w$dtCB>jGSB-dyM=bfMz} z`TdH-uJoy6l**a_Qc0V~vfC4IAf>@I9-8(xb((_YX@z)zMCi*8(dG&Q0JIJz?f&7x+hK zX9g9ft%j{1>T-8oduV8MO4Y@Cf9-@iB>1W^U|MnM2lQjn)LakGe?z8iNBf;i-h_H! zd_;)+xUB>)9cDgJ#!sGWNbkGD@XQtJjiEyq4dHYQ-mlH5xM%Gh9MZvAIXOT#qoP+k zCh0I-qv_-X^9(HQcR)`022f^%PH2eBdA7$J7dsl0+nCsRNM4R;;%7775Z7rx^Kt))s^4cE6J<2u)`-H=cV+F4&SwbyHs~p6q@2T#%UN- zE`^G0X0nL(Q=&g>$LS-(h(2XazLqGQvb_aHn_6e0%gE93HA0zEVJ$IidJq{FAB_+hlts;Rj zs>AhPqYF5jB5&_cjM`~|F886f+xZ{*%?|)9UvP{ySyXF=fWLVDf4XS$lUY{CX=wS(pfxKl3O!8fwn<%b{Xag z8*i+%m9b5&pSQuJqXW55z3o9DgotyVwT!p79hGd&xNHgU{E7VC3*$-ctsT3`amdrw zzZr@HmRc62SX1l$4^nv6D4i_{+_x9EB&%BZYkPjDm;SW(#Jx;}@g*--5Ib!S1c_+R zIRg`qExE90e9zcgh{3`75b6#w~_NWd?!1oA%!HG)@yb=bI9vwQ4Vc zr!U&#HR1B!r$Jt=@FXG7zzNS4-P__#TF9x;@J`*y=!x4&7Eqb3m<@jWbWsdid05B5 zZz->a7MnQ`-uE2L*Z8DntRUmf1V3vXkT*4-#iC7~S1PnLls)OGIG1MKkt20`@Ql*+ zWz=vNH^>1?v-dib3Sq*^=pz-AE$B_Cz8G9RWu{)mZO|j4we$0-gwAJM;V8^Df3?K_8YLndy-=^GddZ|?NO3wUArkhUdWKm^C2BkaA{PCR( zzu8KdeU^&%0!lijpI^RWe&yPs2Y_6TCKqJk0|4!Z;m;)7TtLh<-L(wKty;m=twUb!) z)=e;$gw@@}&ULm%HPA%Bj%}*>uvJ}=oFVN+TNDf6PwBK@>IyaqwIl<=$rL!svN(M0 zspR3U;A{MpyW68zeB)VJrP9^KvF4cor^0je$K?b(jdT(Xp7mlm6_GZn56!}bBX<)qzKr)1q8${ z-sv#xs4>s6vt~Ekc=QPi)s3kY*sYh6r7vl}a9TP)0yot_7{soLER}(m%N_Ae`B;Py zPt*FD0Nq8AG~>Ft`+gydn`d<*ac$T#)5~M=M?mu=kaC^qz7`tKs=kgA|4SnW*nbbU z$WYC$MK&Dtsi|a>YYe~z+TXb>*Xs5!uj=UZIM>{ZKhUxnHuIYovy`vQoC1gsLTvjx ze4~)0T-}tGqA74&7QK2B!NWocA~Bvf{Te2f<8P1kS@Nb%z~Sid3gO1s;6Id0Oj(l( zQbedfI4(iM0ap) zW#USIWb4%R+B!Q@-L4Q5u_(4Vz}=+ns3%G$HlB)wPL;DTTo zdx5LZ?TNqRyfZBr)%a~XyVC6f-tjD8*XJ_tdEUVui$pP1p02coGf2)*H(vCjiWo92 zk}{45*%6f&2Nq-fLdCgD^hyyde5H-^UN+cvWe$Z?=ZKe*X;f{#`eJNXFy<3`9P9#W z58A39-Vm-)Iy{bT2Y3y~Ze(#zU8RIRb$1mB9nDC&nms4%^H#)VH&3m0jURPm5lLsTN#B9hH0T z39NlnHq4L!7|k~Z&qK6EKq9AVQ)OX}u#Ts{q))}fv0js8O|=J$VWU)XE;iub%DKPm z>;;l;9v)hmn`IO;9Ds3~bl|gOwAi&~BDh3vP_JV$`&_5-#BrHpxo+23Sss(U{8iR( zy$;B&yOn-N$y5X2Kx7eTflr!|=04Zy?X>O&?NDF|5wwa){p{~hmR85;uAt_wbUPhyHrSzM*! z7PY<`V32m|_)X`>WzIen#g}85%4MHA3|9ljQ`LP=lj=(fOlh(d^R^eZjql?3-Qm(v zV|r8VY^=PFxmQXt{GD=V2S>iq&9U5G$R}{nf z!G_ncX1iUU8a6*wx(TH^iz{mM-;&J`a(KZZtNiK;_nAXsrQurC?dG#^I{jz)lwNe) z)M2-BHI8p=a%kl1{aNaoBf4K!07>{{&m0E%k516dAPEA+>=2V$M2 z&aQ8iCwn-p&uu5t$xL9HY3S>{*3q?@N_3lI_1M!dTbw*Tw$6ypk@Rx^ov9g;chAu& zy4$Ws-{V)DCit#TVCwH@V%2?SpcqeZX6*GX$9;x*I{C#LMVc|A(Cnf8{X{Ab|pT40es;uSE9s&n&~1DH(+# z1HH0~A~4@-DBnd#SL8cjY}%&Dv26vW5~XmzDy(Fw=8-ra(PN?70B-6HFRZ4&LImcO zHxgVV0qTqm{sM=QUucZCK(rqLmL!rGam#W8VNvbUxpWfd8r9tZeWHY5c>2T~?e41z z$d%=L_9uz;X1QVlQV0DN0eb^Fkes0EM=XL^b%$(o@#WLtZn;vIF^z|5ettTIG-Kfl zLl}p{k!Vy0bv&AhwGeern6?rj6vZpN{OsVt!FS!EyQ)hI4<@FyM$4zI4d~AGQzS-& zyWSsg|6+RA{f)8mVPf+O>>J|guGgC*T7V_QUH|cYA;|y8tfVm)RPi-^*j#=JRD!OZ zVj~Fad-GtTD|+{-QNhDL^k|W;GS~PU0tw&BpGJg*kz&=lSYw9Dz7V`*rBw3B5-SE< z-b2B$YZfNmG8}CPX#tYCRsYQOW~%U&{R4_zFV@|?a&<*#2AicVG}N^`iN4qevrr4$ zAXVgW>0tBnVw&FKqsYFuT)a%TzxdQ#c@8#uc2|C^j3i-Z!5s z4+^~McsY+CcT>O5x(iu$cbUynE>sHg*m-zvYE7F|DOK#f)p=X|54Q~g^PuOM-Q$aY zb0E`|(m67M0z6n4rSC2arF3sy*+)-||LfsUI5j9fiUqut#;d)CuHP|iXEZ}gq5!80 ze@s2!V{7}_spSH4&2G59D{`sm$eVJy()bbfER-UfoqJoeO{NMN%BMaoe^DT~s z_Dw6~RCjykswy11(0^Q2gl~P8?lb0{K7s4x6TFC(XUYa3?As!PD!rjOX88Epq*l%o zwaa;?um=|6LJOgz+zi$|YolEHkz0X2FSxU7cAM!cHF)p6iTFH2icmpO57J5rM|Ptq zYjdF-ug?5Ko|u05{WxhDqWrvap`>B&lTk{G*`h-Pg5n3+axzedIfm$(HF_kF~d#H z?Bg7HlBt?&9q9TmX*2i;TpS@`GP-y9-JpT|`O1b6Mxrs|`tN_CpVNLo_MzM9q>3NQ z4_luMV}da7R|Y_o-NAQzK0`rUQi_qwrFn3Wp=St#ch8k9k|3hspTi zzA<0PXF`vuA6=XnDu@EC?{v_4YoR3mq~2eJP0qhPk9IWPHkML4N;|@&_6S0A_vJWD zmWqPQVvQuJqkoE@C6_UUOalT4aUJrfe?u;PLcjJG>>0 z(7jd&+-1oko1Y)a6@8r@sUQ2Rn2D`SaLZPnPKtNDoJ6>XPHs=td_~xuJHS99E^ z`TLf9*-8g~zs97;G!JOs;I~&_tC1~Z+c-llq`^I#VT@=Vwv(1CGkk@(&grfDTo1%< zCzhB8nM^`8>K+O>j2K1%5)JlBkLW1U7!j!MYeG=>`6^}f*W+AwuFXjcp`>8_`fnI! zJP<27Oom7oC;$C_c>!Es%p#pqNFMy4UbN-DQT^pIuW%Y=oF8y7p}y9*dzB!XxSI80 zsc1Coou!$n`a#cq(oNq5PYBm)S56{4x)LhDJF>Cz!_kesZt87d&{yvtzS8P>Yn-q5 zy&1Eit5Q;$x{yWzfSM_y(-p8C6{Daq8<*(PImCDv>}a9+{N+;Fq+ksCY%urAOi8_q z3;9&YP&Io{lPM^rM|k1oy?G4Fgag&D1rM89C)shkHuQ za^;t2=7q`P>p4CU&O4F9A=qn~Ew=Zh{Jj+?X%hcJGG`A68m4~mDsl*T-^t1!dlML* zq+~W{Wh{zQ8@l6jyc>NA6|#{^>N%`I{5$G82T)g$F<3zSAZIuBZ4U2bd&A9*yeY`T zMw$1!rs@w(dO$gLN{#&585XjM62AVMGFq61T4rw^GOLyl@8FZHa**L_TZE9+%!hee zFK=(x!y$Cu&TCKPig4H>zcg)xI5SKji9>fAJdPHFh|J-;z)4C3`D6CIEzT+QP0*D# z1GBm7fbB3DFL@NReHtyMSy;ZkjOyJ{93B0bi`alSs)$7pL6=f))( zS3JuwZrZspkxe?WzlMq#2PRG=;qijY1#l6k(+nl5{M3uT@Jzm=u~ZZb_6{v#mJ2)3 zNM}pQn9doHdb_HupeT1NB6ob}tuc|`IB%^` z-%hWr_UM`Y_jCq{UP3wNOzM&eq{QlqEf>ymV9gR_=d;k6W{|XY(y8UM@u3{PoYBKZ zt+rv^?{9O3NSeT&7WcP6G;GORkn7pOYF?DI8#%_Xo@=C+^u-88T4igjrdJzw*^z~g zWxCZq4ck0W%+zZU$1nu%AFP7O)Xyjn!^^I@!voeX$=>3%EI=eB&R zqO?A*SPwcj?aPzvI~9*p&d8hH3)M3|487C<`v5n(V{+@{$4OA3p-4~v9ZQk~qWw8J zUgIhs&%v^qiyu1a5((Ez>@i4NPG0GQFMWD-nmzh>v>H}6MNRQv$b=PZ#`!-hL0ZC# z@pIo(v_ghbA!JOPe$An>y=WWjOy;38Q>6? zx?wU_>T&w#VJ9~`vz~C9c1+%m5C9^c3*KT>HnbC8Yz8INxbeh(U7C#$kbH%6e%6if z=w*NOc)p)1u-Bv|$OJPTGxPk(w@NN-YFfo=eXw41mN$B+eIYu}SvdAfx@2)D(zzb| zf?$k93M9owvD|25a3X$ftj%R$bg*ijG^gmxn7u_GhtA``|Bz%5sMnw7H}{OfcG zNwC@2=~PGcX9h4(-^*47u%$@dxi$CU@HvP?zlm~TKgy)hf}nA?4bxE4*w?9;`7)Z9 zer%rj@KH(gmG(NXh?5rcb_VMvuLmApVl=THJi^=!w>c6pjLSDAnQ-B#1Rt#P$~sHD zIYAZ7eX}0a`i_g*RU&SzBB52Dn)|Bo`ex1MWJY#+pDeAgmosR%w%dku^MBDhHeE=Q zK#xOymbrT!tzR+?AUOb&8u9Od<`=473KYAA_1+Sg`K;sl%|M20vkuDdust1!AikeCQWdFH>LRw(|&j z==&pnwX%hdz+JB!Xmp^_#Dx?b|Kz(Z9l*IM;(HU&^L z?7s}`e$)i@l$mduzP19!sE(dStMO%^SCOdYpI*ft8enY9y#fRigg*kobOig`0J~|w z`R(X9mR-XiINe)7K)`TQ`gA4pn{tl7bS+SC-e{Sj1Ty}%bk#rDmI~IgA^ZPw&!(jS zw=%^2&(&wC9^&zzKy6^9zkJyMFy7=^Q2UFC`=7z`U!5#}%u@e7Qvcql_&3Dv_EF~C3#yM>_V}bR{OI_m zp`3ssM~vnt#0G0c)WaJNhK*j@VGk!UBu${+VkTyQnSIwu0nk!z^kw~Jd_7&=#J`U} z-UbTV+0z4h9+M7&@A9o)?AdzMM}kHM&%UpsmyTYG$b zRnT%$mp!|q#;rHIWRKPxXt8uUQEXWwrl8+VNRmj1V_?tzCg7U0F;gYpQM)Y;wDS3b z%6XjAOvU96T}O95v4mD&bZZk+A~Zw3A|%HjP={-VRMdLDU{vHl(uhUq{Hy{l>E)3a z8kR%_m9@b=iokhENv$hOcXu*d0l&eh+~4XYA&?8^N;T|v`TefouMyT@K=|$#SRS8* zXI_Ad&E;dazP!5PKQ+H#>3-tIL&w?gJPZ;_D+BJZJDH{ z{poD;hecz z=n|=&9qH{0l#BvjQmxBHX=Z9XwHuRkyqBX?z-0lYC+{)QcP8_A2WD3ONbiOQ8w!K? zi32G&+|by*SOI16&LJHyx%Ob_oq4OF^=eQ}W4}>gwf{qddyi>v-Kh1ExRZi_S=Y4Lv z{yp`Dn%LEAAL9$+E{cew?_$3>7exPnxsjK^_`V9~OZt`E^5~c@_M~ixeay1wpI)UX zhQTh1BcRyoCN(K-hP0#USyYwtS+ZADb^Zs!Y&}V9E&?L>S>`}WrN=y1C5;VRo!-2zwNwn2-ONj0Z=wP3*{Ol7D1-(lEl+!lv$CAr*Z zVukfW50jhVXJ?_mer-JZF>xrR2F2osoIPg|54CFKTi;8uAX<;|N# zGL3SN3PDwY5EIpm-g<4rE}ANHi>9&sRosst$ASyeZ*%BnnO%|8edb)A)yq}W?S`#9 za{-O=UAjWh{Tt08EYUZBi{Mp_^dy=6FOLi#qIHn)oNyD%54oz7!uf0_`ww0OQ{0#6 z`s%Uxm_U1zQ#M{T#k27}3u{D5bFv20{qY)p)9{(W@$nTTC%jP;o^L#VlCh zqpdYiezujTXxM*UK0!BgviZs!Bo=L@5_0@O;;|p}i*#@sHpi+nZ~%-jF)yR`X63=b z$>6(qf9nN>xS0UYkAn<_#J}<^*V)zd4#3m;e-Rx2k+Wxdqul3oy_5}Qb=n!lNK<@< zHh^qHotLbc^SCa7spx*`xi<3%BZqh-TAd9r#F2ujs-HDdTxH>!`;&+`&e z2fs}H)9)zWIA0;+dRp{~qb-jf>;3Y)v5}!n#BNFmC8z>uM7lRT$6P&67nd2vXgQKj zp1v2%6OW^)dfvug<8dw$oQ>6Dpd4vG2^e>mh(12H(TvKVshx}iuWc~AaB$!eH)lS+ zh-dE8x)?h`k z6&p{pVYB!*ZXP`ran#E16%$0>rJ{Sd@dQ7#Ij{N+Kf{KmrkD_bpWvSt#Ns()T!*GG zFi1km>PR&;(EWMhl?^sKJOC@mby>+3^Wjuatt)u$cj%=7&8vYt5w0CS8X=qJ9_umw z)Z)wKwm3%zL=`qycgDC5;T(sKK&S+P&2!5kN2V^Wt{VAqNs~b^eN;N7bqe$clQbml zJ(J(Wp&I=}%eG~3gn)s`dvjTkv^z?(y=Y2RbyULul5k^z;@*B4NVJGy-RrCz_IQuv zbZ`In^yxXf*)8KRqi^Ar;0J9f=Pb+K6lNzZR#Eazn8lI9?1M~6s!B4)%$=fYKHFhy zdLXg?V}5m;ALD`hKyBvxJp1_W@9)@7J>=0Z>bX3UreB!rV#D! z961)#RSxOr=)|XXErlO#L>HkpIx$&JD!;BiYfC-sV-_}*SxRVHL}Q1YJ9KFMDV-K zTd7R=oODLMZQJD_XzDGmRx#I!4yQ^0os$q=!UuKMyhUpr9Bu?`v@HBdlNL|45TrT< zvA#MD@jk1$-x#Z=7Wbl>^>fXaE)L}G?xE1Xk7pU)!WJ0vB~D4P6h~iS@4CZhqL$I~ zF_vUU()+#<-tFaBzQIPmr@D2-1O+2q=h|tkra#T1qIK$HMBPO`ZtsNZH@)K;E5Wk% zA9pCIUX)=UWgbqXJBGio@{#=5%V}NiFlH)@6~oHg(G@}Ez!RSTwd+f`Rw?#r_v|oT zC^h)Z#wTAEdqJdq`Q~iBmVUC9@x@qt>Kc)RlgTx9jSzt&Z34x2RZFXJu8065cqLH~ zdxCH5Le|JWO;Z%WwRHA1Z4O$`eU$ztXh%{ap^>d1G>EXh=YiH?Z|#d|b=$(%z!d-A+L`QDaR7nikR($MeRPmlxOdRHh=N<$MKW00g}y$hc>#rUxxQEq$!9Sm+_2a z+|g0@+727WY%){F8ZX2%VqCo8=^gt=3%;%rhB6$|8KdCe!T9b=-6h(eg1chWvyNr| ziP4K@i#yk<*vQVRg$pjVlja?-0qMZ#kdaD0KEnZlq+18+l`ESnGaZxPPC6QkoN_}Q zPbjp5+74x!1f|ahxovSp9gRGf7b6XK%MO|*WP3lWY?wo`bU{E*jthToeb$&uHb(~OkUJY_{=J4L>A)MZN76!&KukxE- zLn6}&pgJWyW4DBkjq77xI(1klD`L~@Z(eFHJxX+ER2|Ke8MYe^ICqYGU8rIF%*>6jvotJi!L4o3`uVz(vAJ$Sn`5HR@l*W2FcWJ3!=YVc`k^HILJS^;%H zujFV|Qbm~H^^2tFxW;EU&NI}#Z7rRQ$Fq}>&3>clz~^k-dIqYJjIM*3h_wbw>BVeT zsKKPR8$}x+4%x1R(6E*M7-oG;;Ns|$ta7i;8!2t?rIL;q(_Iz#P`ryY6W@(CCg`P{ zZ<%Cwh@B^)^vb)FP=X(EeUFP1`z3bX*f7WNMd#?^46-@6z&&>O0 zHGJm!u0dHd^j~&uJ*-l|``|Eg*o^9E_du2U%-|!o} zCLeLwS3NrJ<(M|+>ZA(@i^TyITyLaO6|p&0baLKR=!i?X46CKB1$i&J;7_=yZ zdr>-#UtqwR4>lSX@0R3ew)%XcW&K9*gWfKKrtaL*q(lDq*85SDmXK4NWl94fpWzUP zt@hK1OJ$_RA;|;iyu#Kx%D>K)Q?X*>P_suT)_5>~qwcYe&Dw8^eg4eRVeh}~JUi3| z`Z6dT^q25*$APAv&Lc8^T9zJnAZSJvF<3uedd4rlX02-@iTB!+kWR+En$w1V7#)VK zL-iovJjKJ(5yv~rM`%k2ekpZ8XC{rl*V0?ro?kM5T|eDjX=2V3vWydN{6 z9H!`s(uxWzZNmj^Z4u-=Im_!;%%0+1phm(JacLX_l`PiEuL0y-8`n zl@LQ0QbHa;*5fn*Kew3u(w~>Cc|GX57W0sprSOfrjEjTWeV18s*YKNmydvCFHAh>x)gVK~FGOup!tA-wWN0CA9 z*e#^CxGuWkohLmA?OC>vHQIg`6dlOeLP-mmzr$?T6?d0_!LY4c9Atd?lW4R&^HX?arm8Ojgh z%rp!KSw1J%H&S9iIb9DGDR?5(+;@V*j0aIXFVzj}qP|Qi-GsN(Kk9t6mUP$Mt+YsL zLHwIDFGH1Jeb6V`#)sEwDl7O`KfjGaqVxWwP}x2kmwq1fEP#oeyf zv}VT{)+D`iHj6&DUO$v9^Co>TMOqC0Nb~tx@DrY=Kkw_J&-rdsnz|x=w+HwkZ3Edv zvt%fEvaea^T}hRT=>5O@htq*n;@HV_51jh?+TUZ9;{BX2z5d5rPatuqkkf=H_~xEp zpRtJ;X4O$e{Fi$^AEkm~X0-%No&g!jms4p8XVZOh2Pu}d%87ix!pX|Y`UbZ)GN#cG z5gs1?WS<7Oik*r*0C;@RNA8@0_3-)uwo;5gEyEdnJ7F+n&~jye zxqG%|El>)7wjg!d%lJ*?B6QLo5JkZzLq3YfeBJi-V~uDv#zn||0M(?Xbd=~+wC&yv zmBuskr9?%z$P7$Hch7t72m?2m-gi{DM%B3CygNAz`DicB7en%XGLUb=A%1Ys$CPQ?+DHY%VENhI^$&DSPbepMmx{G)zP) z=wMA&2D8l@VFxp0547K*wG9I&wLg@D-I_CnM`M6V&V-N7Abr(~$I&N8?F@efE$;vq z*%9Cnx+V#AW;ffz+6Sr@nVRwEaJ>e{G)|EJdAx4g(JG8l|A3_-x#9X!>2$yAf@dQp z(WBY$!>jbYVw54S%Kk=aw@dDRn>T0|F6R5ZeE3+`1X_%iB74sq^PK9=ofl{`{%3W% z#5s5gBj@?hgxr>_!8H6`m&)*^;OU!(t8Ffz)ePk}cZ5;f1&mm4b*s~AgS@BJugZJ{ z0ooeo>ZvQE{56_1i8^5(9xC7=xX)uaFvX5|X4XrQgI!H=A>PYm16|gdRGD^O1H>ha z(lNJcGl>VgtbKmm8o`g?L#uqPCJYM8#zx*Cz5lfZqbPH3$7CvC)A{PY23`_%g8W^s z420_Cb9YDmGera90Tf}uU0q!dSSZQJdd#cetK0!3j*yTryMNnD^3$hJlcTgBTNmg; zm$fR~={OQ1UIr`djcX(bl64<`xsfvb1-^5l?EEy&U0Y3)8|HDi8`r)3@X3=~tqbZe zUJy7pGDP)iX1nT08S6Ek{t-gA1b_bQ-#6CiVv@|Gw-Pa1KW&WifYf9Sx#{uTpLZ5j zFHXqKeF*$xT}uyCKI?eWb7QZks3v;|lH|4rY`s^5S6hf0LZg8L?5e=a&Q#UwH*PGu zirK3=+p8_9tt&DD{SP&J-+HMS9v%J9c6FzaWMer_hgy5>&MU(koB~hz$;23AYdOxe zvFD1%3(k!me}6wRH#a|uzS?+US@CQEZv&juE0(?Q^M*w7!>=|iwd~b47a!j2a{9k) z=zr+|;84@J+Ukk_D1d*z7SIw@3sf=ydZCE@r}XGbJ%oRgxvKQt*p*IUeRF$t%#Xr)p%&Nlm5mJ?%K5L=QJ!`bPr4I?@;_BdDn2J%-Q+QH)#$Deln5rRurco~2kSFI5=NO&wK9NXueHh{OlZ;A zcZ}m?hdT$+6D*!xz+a%={Zxa3-T!KY=q4%9aF9KTNs95bz}oq6+8&0uz>?Ol0WouW zo0^*XIUDl3jci8WJ;-RU?QcRpmATJCO+zC` z@0=rI4BjFHWC0k^@&R|Hg|~t+dAr-;6gSLgsIRAIZ$oj_KZ?#dQ@t2gbRg4IGU3bU$y5eDe_1JYbrMNhAdkpV<6#Tz>;&=? z&8e?RFLmW)Hm=q7+GwqVOgOXzzH<=w?jDFPt&=$1>Kh5YvFft~xXup}ut!?}>KmaZ*1vC_1>c7Ey=NFdH>Kr>vShJF{w(h1&4Pl-(!3 z)fK`NNOQdU?cQ^8QVAj_{a-HjHy{;;a+bN6#38?&@kZ0GVX4bb7(v@UB#o@4sn7<& z&EHDqN3L>I9T+eOCgPLc6?~xZD8*U&F(3&Z9H&9YZ0MOXZgrhUbKNpkfp330eJSN%iPUu!{uwdfbjzX?StwL(lIiesyk)*%-{YS@ldhEGc2}v&}BS(nXpFmj@7B`^LqD(Qhq$ zytAkI7XpNb(@Vvj#&i3R3bvuI!;dq9Ue}q99_c-|TUb$QKV9r^tIS3w!G;rpS#;5s zsyTd*D^SKF1V$;ipoMz9X;dPS1Q6@!=bM@~~6P>c6mv2FuyF9}y?kI8sF~+ol zdvkX5R3G20$8GH4f#h9DpxsJUrQ8Dt8FtK1RimUqX<*fs1vwr+u5#})kix_rT)&7o z?RSgIsrG9{oD?9vAbhfT`~-UoVKhyRXakuzSxgDKF!HA1OeVUqXfsJs zUOvFv=I`pl3svJ&8EnA5-OovZA^+W0L%ws3<(id%D@pn;xV8KSe)$zdE z&qA(iY@PHD=VQ1!{DEYl)=l8* z@qllRRGj#1bi`!CkJCMWb4P}UPw3lhM=|D`VCRtd$#y@gM$;@j6u2p7XQ+KRb5O}Cf@5pFq$oe zBqIFpibq)mjC?vXUR*3mWMS95W+>L5q|Z2W^lVa*?*mwFfiqpT$aG~jCFgA`K2=q5 zbdZ~8zHcN6PUrrbcDpw%I^aA(=owM*+y?p7@P#wwZF_YO*^~(JKL?65vpCJU(2%Oi zy1PN#{82x3tPhiI&h{`=oKk%Rl`hzT!!9C!qPFwN=gyl{JB_$$1i0(CQR>#Ou?QC$ zp?xRFWuU|q?JEF*;FWBSyo>Vmk1f}~<;3b$psQ@othd4a+BV%&?Ps_cHst0ksn8jc zA@KCEF@Xt8pX5cQK{k5R2R4N#>o#49Yn9^$hi;a{$ zC?rS1-b6QZLJ<$3A*9k6@g2IUuOT7Vb$HShM_zYuu2D9DpOcV~w4J6RvHA!&@L~|OaKHi5n zDh?UOW%70!mC?Dwz2Pd4h|;i+ChUy)@GMZG)0kx4!GcA?Ube+ZIuhu!Gh_;DTl8gG z78eTq`h27h45@ye9{ZX?TypX#>TYpq8-NUPf+M#-{WpkcLzFdsg%#bIf5-m=9ohel z53i78;{Oa({!ifMf2;2QUqi)ru7>dBzhK$_UHJf-4X}X?b##jU0vaJa^JZsfXR%>F zz4#c?RqVMWFjCg~Cyf$p$~o{InN6@R)R(e!G7@!nF3{)q3u`B(E@Ph{LeW^MpAz@g z@gY)S*u<^9=+j?;&Ny--)GcSSb&3CSRpV=A~ za8XhELy{RVumd~JOK|A8eFDIoR*>Dl#&U_e2N=8*52fw6=_!c0llj(N)$@vDkJ^W; z^~-zIvqGJg>gRn>Gz2)zR0d!^kLb01<_ujJ$)arY9H~}#9=;LA#j@8s97iCqagJ(U z-{nj_+TjFh_p+fqKgu83IRJK&ps(g@Z>lQ?$R(277&k5rl$U?J8inBtr>zlgN=TnD zWrxD5m(DNcSNar!ybPw#I&+H`t=~ep=_Xum>Y#wD(WaXgfcx%1pJ-(>MwXn*L6#Fn zj*FmMLF>aQL^r>DdCimE7%i-<_W^E5_G@z5NTmuDR2*x=?4M*KL)XugQg1WzTM`(+ zS~Fv+s=$#8i@O$t?%dli=aZ-`S)0$uzC!&|7fyaZVm}qLF$4ZPcT6A653GH$kzK)F zwtp;Ov5rD?7*p%DFXm-h5@h?~2$u-U-2wCIr?levd~CPl$S|^qS#7r6Pqfi!F}fChJFxBESDYj%}z zkjZcjwByRkWANL}2$E}NCwT7kAsd_qy-&7!HmdY7agFF}pecXo@?&xKw06JKv8r(b z{J|NtV_*DJhr;viE*lqVqm_8QL zX@A{ODir}wP954wX&@R(D0`cL`2jDrzxQCMsGYc}$&Hio3%$SeChfV2BWvF1>o&Y9 zMzO59BA?TtT<+D3;XC3W!snGNzGD`6NO4ZCUD&7Rwjjb#Gh|6*oEa1Qjq9OP`&=1K z_ERLs^#+JXJSH;NpIqLO+<~zHSgz_Fg$17fuIw6UsW4Z9Om{0({ znsN&Y4!V)hQK*-~AgIe&P-f?+jRs>W8p(kC>yH`*Y&IyPLB|$zr?v`aoyGnKle(%G zCkE!}lgNB;S>O`ojEUM0KFeRGefHCqvn3YeE<~^1>{84zoeGpK)K?fhIm)Xj_H*`k|H614wQ z+x9Na(OSZFgw*X}7l!BKKr`;fq(9WM>}c+FmR3XVXuDk|2VB_BV;?l|Uw#=p3|Ozu zaLN5WK@i496m*l2Q2vBD!fxlis`Po4-=x1xEH+-nV1ihSPN6eEReZClV&{9>{i|W> zm!JEb^5+CVT}(P+7j|yuBEQ7Ubl_+S#@r)^hW*b78@=q+qj&h*_KH8P?amHnk7;^U zrc?eBO$a=mK(?G}%s~8gYk97wp*+{u191g~HxD9Nq}V)i`nyRcr;f zvQj-y8%c$7T)Rdjkfxg5cHI55mdijkr$xHrWCFQ6Z6b74%`09UYrk~hWy^{VU5cWj z;8KZ3|2J?oKhURID(Kli>)YsV6OwPmGUJ5^r2>%yKjbvhVJSCixWTo zL`>`~@no9a;OcxBCHfZ~@_(FZ;@lJIDh=B+)xm%N+KyPSe|PtCm&ht8Ed29Ri}MDM z6*KW@vOq0EWTM=lab?br)rO^8;1h)lW3wLL5vCZu^gclGF}J5QqI_=mw7MZ>e&lQR zjqa&+{r^tz20 zw)T%JtRraA&0)be*xL?|x*2(%TFg|Ll`Y0^kE7Fv<{U*bor&{9DUR!mJgIrCwd(O$ zht-{a7ISYM856JsY3`g1EQVeVxJQ-EQN*h(!eXq8+|fupihrYg(q5M6TS9_fmFcG| z2K&vq`V{$T+~X&0BsZE3ntabz{qcd-IFWr)Jnpw?r6va-dLpvpLgK4|r42+VTIZOp z>C}w@(!+V}cSC^K0>6VsKs8YYG!!Z_QG5DpS+v$(@%E>k%8kZNQp|p_Q(XnaR->$6 zWE5x%FIct^n2K@mCi>m#!JsqZ!;%5*n^zkYPTpZ+>K#}<-AiedJxJVd%z@x_oh*#3 z`IsI|t#>Hi#4gxC*g~da@>1{8DqaQGVP<790hJY9K9V1 zEW2<0NoL2<$oxUs1Y_u|X3A3Zb&efTkMVBd%bBWS?GD)T(erfC3cLa%kmo9qMftkz z?E2F_JVwpA_4MTi9xEJ)GW3~{>Fw=(r;{q@Do+%EEAWRWHA+K)Kk{Ff_D}qpP!Lc< z!1YR5AK8X}=bsITXp196tD|ABCz;T=X0BSCJytAh{WRrLAU<1kUh_{JkrejCauICS zq=U0dOiLTwfMyWdF19sa12!y>7(;q2rFxyyQG_9`{e*)+1CLSXV>lNekWQCBIAT~W z-8sZFXqeT`p4loqBjUH$wpf5lo>-1a@@tx3UlD7H>Y#00X&Fxc?cGzJ{Vd7pJ^tcs z2U$JqD0NgU>QL5LRHG#eBF}&-1fb~VJlo3hoTinJFOO4LdaP@!rJxbxI~5Huze?Fp zfQ*g;J`O)Yk&Kvkrx$6+>?R{%f=O@R&a;7KA8pSj5D`;6dC1DDS(--HEw+QW`-GcY za({c=@x*YZVN2AOsjyed4MF7p%#OO{sC?okgQ#=Qvg?^6YO!7NE#?N}m2Tk%bj!TT zx%{XOMVQejy>P+DA6hP2woe$AD%jqNAaPzmYcsA~N3K&W{ae$|Z+w zz#1QsQ6D4@{q#NU`xEJF2Ry!vx41q2BK}h~He;~UKlp@~Eluizc&fL5yy5V54=k-S z^6a|TV=Iq$$mH$eIxR0#7FxskBzhXo8tV&R0F-r>aV30c_hO>;LX8$gXeo(*mCNEN zw_`LMn6RrAPem8Wp>C>XiHFrY=v>tpa{Yrq^s^kNQ5;cr$4A?RpuutLYCaieU9+1I zK7F~G{`ccE= zv)miK7GEN@j7h7xI+g)G(mbPK1%i7!8!PTfK7Bg_3$R4A^?4$^2}c`X+(c$$E7z5o zmW{DP)G$MO(BF+}T>~NzavP!SJo?R{e~Ua*C7eV~mY!^-ACyd{_}Ru4$GR#$VDM&H z8!D}M$n$$eXptZx;;7)5N3T6QCW78@;`<}n5rjP4n$S`FttyUR)@MaOGi$|;b3U!_ z+a#(v7u9<`9V+A52g~Y=6ee+mCk(!(ZLk<>a&w$-2;2KHWjOQwM(8^QeHlv^yMzt)NvLaxa!}xYd zTkqx9se;;|MND5nZysiHqvkpHAhP+nRUgkmCSmHUt@y;MaI1ZX*#_R22HscF$5X-- z)t1M;Z`?_nei(=rX{7$uOVGB^9iOWrR*bJX7rkF@DA$@y?!STHRQD+M+d_@~WMA!5 z+XJa%?m$GKK)~} ziySfiGbCK+!n98B(*M_5HAn1|Flu_7XAJu7DJ-dhcguIBVXv44eBS6j`Z2j8(kAdz z!a6CEX6|wN9mVA0U7dFvQ|w5KA?3APw&)+>ciOQLnP0A5yEYnA0JEg9gq7U*y+!@X zqtWA&CxM`mWR-jWBZ`88-}QdFIz2AA78x9L$8*11wMYp*ze0`WD^gDJ8mVGMVs1H) z#p6?ql)AEcC^&YkW`4YTTyF9jC8FjUrdVUsPr({|d()?vprWacICaGEcOf@zUBrrM zd|J034gE(W4OP#)4>hK|K#~+I*idhswSN8$e$e)s?@my`}y_L7LXuF!pS0lV)05g<5LoV{@J4h60n_LautfM5D{% z$nSUgGvBH{-!x;dLwWKp%uRMPF9vNKvppG<4F9Qqx3$6PII*?KuaPEwwN5(Xs`*+G zirtw}r|#Xo&Hm3O(>~^P5&_aobIthNw1algbxj-ZxwObsAxsA_LMF%OSkHlRmyMOyn9wQc!BlOjf#NOzmqAd2ii(U z7xC|ns3^Voq>-uV&FQ=4fVu}OVToSbHs~$`snB^LV?w4&H3D>Q8`KgtRXLI798WX_ zFzJ*V4_}Qdz3OvRi}zs!CN}bTld0eL6DWJS@K^3HdsvdrJ-61Th*_A!%WK_=aU1~{ zUxnDFw0ij1-?8e2_z!)CqX*4GT(_c%bdfr~$h+bi2_5>L>Lxy}1nsSL9HG_E<3|M~n?KVg$jMnnB{S+FqpZaRi9~+hV|6dZ3O9Ti-z=(?hMI+l+Ectp zUQqKLa-I`*dZ94HtgrLfp#%O3eEu!F21s=G;A;zK@W9s>V+TV6s>69NeFQ!|iZ|4Y zuk(fHn1s?RY0SP3+jwVLuw7);?R#e|WbeGZsXCA!&_%A6#1J@njt@vSJ3e`HGQgsX zAsKSUKp3C>R0Vom(j$BOmrG_1bKE&a`gx^1v@|ter7b8YcWV~1bQ%k~>x_Iyw@}2{lhDx-lH+91 zC4Gws!*i*Wr`g>}s|JED64Q&~cU6*nrK?HpG{I^*Q4#35J!Y+S{k`mz61Rg27}|qe zNn=s%=rx$my*p|94a@>sSv%l1y_)P`F6FlGJbiEeI)S(As=bHFEN9L%S>-f)AS`L9 z2@}X`8@bHKUIO-uJbY#cFN)V#prc^?WF{}{oa?O?fA|3)-^OkaC1f*SR9I;`@<7U^ zm9Pq)-vyGm#;s{48}1FZ3WeXQdB05+UV3(C9EnqKGp7FOCxj7qeg>&fE%Yq-@=Hkw zz*>f~mbb88g*0Z>=f3uZnv6s-Tr0~>7k%O)Mon^S8Exrw>YbO>dI=iYhH ztOX#e^*%}TV~_@@bIKAL!1x^ zT5&#e8+yJ~Z;#si(j70S=nzJ8^ zCRxiKjtJ0`3$6k8^!0t)@$5+Gj_;mw!b-1J(A-@q&g^WO`A`Hk{#D2XKO50V5ZS>v zclk7+p&TKaKzD9lBjKNubKDl|dex1ap#7`Wk8f9&pCs9rG|tVt942|TeY81Aud63> z;pbfeL|%D4J^iVVj4ilZ*;HTTp{l{r+gAfZK4O&{4*bJr<#ONb-l2&e01lem)d^n7 z$&pYzqxvJzGBiWsXMUG@jmJbwd&=`|Co@Mcv_L&-Dj>&uv6`|r^N&bH~N#nVApPmn~_@X1$JxoZ%IaP?~UHIVYduoF`~2+8*AAp4W}ZKSh0mAm3Qc z+xzl98B!|-!#4m;@%r$`xs0a6t&R;TDAyxppi$Ccs&?+f?%>RYf7}SrpAmxZ% zFMXX6r@vwQxuW9%nH)FZoCFAytg>R6a4XC~FL0ZitiP0Kwlr$Pyk373?tO>gumfDm zD!3iYpfp?a%L8#^{&z9uX>3z`KLW!)d>^mcm(89nUlVv~z%>Z(=gt{L!c$ltab6Mt zWn{mC8_B!u>)of>Dqp^q=7;P(0oZ4gh63MnTCt=1s$PV2=s9%aNJ=@K5# z^Z~cv5*={Bg4;1+aRnW|zzbWjy96Aw1^TYa^#$UodcA17SpvRj6hqfLUkdsQg2f4~ zh5iKNyDp`DRX}PlzZ3A7bTEdoMb*!K2fk!kUJUeCe{!E-Y7`r86ejnf!(W_OrfdtpT~CYWX7UD$y^ zO-6RE7xZ}y??GxDXRkr)fWBl-ehv=SunWvey^>saX0hV9f80u$+#d`671;F8PbJ8(T1t zS1@a@qu5v7q+IzNh+=#B@})lcRa@${@Ey+M!42`l*Az_4K>SnuVJAz{;om4mpcEi% z_0x{j{4PO`A{j`8iEQ>e3%$nLpkpq*$p*Ni2oMS0KbZ}+&My;)8u>hypIqvQ@)`2= zb6it8P*J~_`{L0TSNa$IJ7Eq|^noy2P`lwB=2U*hu>s)}Gcf@f+Ci;Oqhl3@hYnyt+E`6U(&Nju;FP{g~SaKui;HG^XiSLdWzDZ2AM zzT29kya*94h(is}wjHiH%{Ypv2F+3rt__;#v{Jg7PQL*tMOQner-7ggtvr7E0fAA1lp9UAzwNELF)=- zD#94_n*MuG=a27l)iga5KUbCJ+V)Z}2z(rmx`9@oQ&6lW?9*WO(iEGQ*8?q-(_vj% zVYhxFKF`($TAn1guWiHo@}l2ncQmsH;^Elr8QmQZE6t2`SHBJP;5+XGV{2qup#Q)+ zQ^tPJ0^4Af7y;WB)3wJ-Amhg&)YFQY#HQ_U`HJ#T>Ce^=22+-QftZyCy1o zb}hdG^1hM)5F5O}XwcZ$7!BU05nej!F>T}xFw1lz@P*I?XHgN}G+SJqcyAMmFQa&5 z(NmUAh}sLgeL4g_eP9)8Ht$r6nW)_@hQ+W)gy9w|%a9eVp$x$5@F^bQ`B3-(lwX9b zTOgF&@0Zqw((HGjq%XO*x-XMlIop?34b(sLEgQ87BkB&-KI#qxp{xC+{5*S86&dLL zbRV!l_3a)zWm=5rH}-3F9H84O`yNQv9>le>BwZMvUtH4rQPR?T#|6y$*bK3*4yR-b zG=Ta(P79i&;mBxkX|x8C!{=nS#xhgTTT8PSoKbBx=wpGOdfzR;*ca&;k$sV(5eS=c z|665N+H`r)eoEKt+$gx3PaC~9-}L}q&ZxD1G1i4UXvVF3SajpNWiBe`QWi*rqG5r? zHgut8WGwivz{WjLtOB-O5_eWf?MkLht$4_Qb`2TZjs&Y0VjHu_MKqDSk_+zkZ}B3KPj)ZHzC-XCN0Im zV)6ZeGaZ>!%ev{nvSq1a&w-Y?e4^a^nv5ktmW>4?bj)*Km5}f;XR*%^U-~%-tnH9x zWo0E*LO8h+zfVO#;zuE{jLNC@ia7CuXrgkTiJ(=?nxG1H%7mU7B3Aolm2SCXv z5fg{NWF94|P1udq;_$Mv)|31+AP1a_ygttid9X5~Qu>p4<)X9IWuzfr7cT|=0)Y@q z%tF%Smw>OB(45J1)KMCAL&(c>YsiDhp~b{t+dwuWW|xl)xVEX*37V-v((&>7LdI+R zdca?wNyJD&?A(YAIhC}j80VY>pYD42w-(5gT%nQ7n!|tj*OZ*x7Fjku#2EE&Tq$|u z$Kb#a{e+{P+1jwNG0pPpR}I_D?sx(5mzQ4~902O|O51A+f#U&(&VLDN_%Em_E47>0 z`>W3r+Q!;cJC9_hTHK&NQq1}Mnqh3d$$bu9H{s?&uiH^?)PL-9X$8uBKM4JV5LxNS z2^^7O9$t(g=`{%bMmRU%`Y(3MAhQfBhvd$;oZ(T(gKgqn%Z7+9R1Q-U@iZ^r}u zYu889HiyIMOq`guk3w!Ms*wj20xs(!-$eMWraw6bL}q;cy-*ojbRm6s#9Yd_wjv|m%PnWOmhMv-JEY;BdZjv+D0E;sDx!ph1b+MRkxv_Sa zRsg(vyGFCIic=`32Ray{)l)R#XswnRJ{~l<+6S8B9aXc^vgaT;S>XwYLA*R@xF=ul zFdUb_Y39wK$|(A2{z(4B>fYBD>1}#T zooN#|peLaD!wtGqp|Fz*i}TE+$4+{0)C2BkXx7fQN+!I`59wo?(|IiarD=g8lA^fE zTrnM%%B}W5_C^pQx$M-gbSt%_Uhk_BZ(q{Isb~P&bD0VKxr=OrXW_-@CniVPuif)p zS_Ax&?vF+id)}uj-aH>^_4Ws5seR7>QoxOsZyvCqe7E+E{Z3X?r?zFn+r^?LTPeOa ziKj{2msIzo!le1lB&KhAOKVpU1x2qx%jT0;w9pY1BQZRe;;^hSBogauqTh4|OeRO1gJ$&C&2>~h8zgVoK0$fxw zhkvo@S~78TR>BpHE-Zbu8a3u*oJYoDx*Td;ft zSdBc%z!S|)KTrOV`=r390fyeU%syGGzHnA}Mq6h$WTtxuu2Y$7Qc1e$vnd>6QT)(@ z*5iIzp|j7eut;)>V$SgjE3n})oW>OR(&)>4^xbocD$Vz(kT!D~u+T*%#lwUGfaEJj14M(HY&#xZ=HI#WJJVy76v}@lBplR4C(9ks%Auap4)2 zC_6^_jn?d^Q*P^L+r6_qaGhWGjP$V+et8ZnO53ex(LbebTIXQq8myaLGTXKeV{O7` zSAIes%O*_G*4<2?FE*=kg5J)Npt#2nFja8e1V2vBe5XY4H9q~#s_%EPH;1+pMS7rZ z@CJWRF$Dr?<)Hy?72#nE(0G*M>8N09S$ZI%c_5zI0{KVIlDj@ug349_K@*HS$uBFG z>s2@w)Gbp+BX0w1e_Qt$-Mbvk=ri|kXv@^(GxxtC;g%|A-se}b02b{NkQDOa*}aQ^XGB; zh2OV93Bwn-yuyzT(|1xz=~D9Pw1Q6xcIQ;`TL|T!$8tPpO>A3v#u3M$(N!5mCumLP z$#b8z`}3_^4oY*omU*mQT;iF=0hXmNTMxY0Ud=#IN?3wIEA;@Z6R+CVG`m=Vpm$tT z6oqt!`C!}Zy!*5(kNBX>j`j(pEruXR#=3xAOE#}9u0zmPResg>*K7HF+cyV7TwY?s z2^|vgWriI|_sJP*%-5YCgzDXLdT%V!X7=&5q*>y+RYH3pF+&0+Mrv2@)~J8WY3psj z<(CzVJ~73C%Q0}Bo(defxUie(Ea=N)9^*H0C%oW3GC*&CHDnCkIr-$MJck}nMyICh zI*gk{b7PmK@k4R_ZC8?pnkemFY7HGP^rYdlgMSV0b0VMjJqjThO08LfKhQcEZP zgalQE225H0b!$XHoqtlkct6fjV70M7Jd)Ftr{WOw^w8#~PJcYo3KK}yP>xGGr!`c7 zWM>i5^fv#zyTKfiOp7T;V8v0=apYa(i0RBoP#H+t>du|1-{|zCtV%h8ZA6xQaJcEW zu>+Fp2lJ06jq{8APZ<{Sp@~iNjtl8OyalPmoskp#?jz}9@dk>qJb~R$2Cc_m5)1C6 zPt7gmII?(9I2NlPs$bvo6N6y=*&nC4TG=p}0j4Gb@e|Lg_^bJD^tIK2ez`D8cB+Ls zhw@$Y;7Rq%L(=+#K;4_G=KY_zQvc+KaRC;oyUv&k`k$!98%OYeFbnXR&i_U%|M#HB z|Cg_R{{21BDexOLfk&B^Wt34M(dlkE>L%Y2s=3RUC5+;;dLL^r58Zl;MHez z_mtD{r*3m@({B+eG<|LhuX)el3yu4uYdH>%(+B55*H1U)mZbCRsjqscj7YP7_J!t_ zqtcMMf!QMhEU5><-@D15ChgbT1Eq$Ar^(8dsE2*VZUEbL>Z%ANi=daKuNBYC zkPul7)GDIB^EPK40Ve-d*IfF9TctaOA%QC-Fb*6nVJ#FTTKKyf@G(Fy`Uf(;8$0!DI{rlEh_$=T+e*377Z2o5 zhLhAmte@~o*0DYL!8M%1Z$8l;XWAESmU!*$lGk_xi0FL5&H{6=ZaA5n2#Lu+YgLY~ zpBN~Dtm#7D@soKMZ~Q;~|J?$wCz$s?ebHhlemy8`w>e&gSmtH%59+ch{PT_~&e$4r z)uKDV{2!-(%-1bdxPGtLv|c|ABAPR;V1oYXv9{L{9e6Cr$9VQbgXs#-A{i0@({Zz+ zuB=Qo{@xYljrkYPVpM!3G;311{}P_7*o1#a%*NNgdf~J=5X&SP9vj=|sKfl!y~5)^ z$2+b0tDMi(*~tOdGzzAvrr(SA$TXw7e)HzjJFKjbe0`4(ygWRrBsl{hAl>?Z1UzNN z{i}sc8)d{)Ax&y47p87P*m~qpCQzdojIt5(*kOi&Go1du8-_bJjL+fcav-M5d4n=w zvDq_Rwud{1#no_Z-i_&M>umXU7}PHup86!+FL2x3X$0Z3ot^lb(;i8~5BI{UGVusu z@rE?FQd=$lm4Xw`=9tyU;fTKZocvy!gSEkaX$W8AcbhVR|7uP?QUhOF)KKg$bt)qA z9&*S0`t=Zo0Q%!`DOYL6{|1Qg~Pqf_f#i41f{SE4`;ddK6c+fB1gwl^D%7J_4< ztOW`J6|;TU9d18sFs~&iChLm^Z8bG4c)(N$#3IL=(cg8I=i2UMKsUt4yk|BGa3AG^ zwI#JcJKwR&{9MP3z50Ty;D#dPwJPiB0AtXe48?sW%+D5NUo>zlcLtRR!wvCPpCioa z0Bjz5LD{Z;P}D4iJAx=7+M}1dS$f{3_vXX=Z@nlfr6(AdIiu7gZg9Koc6s|PqbH#f z{N|+>HKo+SO+FiDi#{nuv)zE*=2NSaipx)ayO-Qn>M5KuK=@0$_?I^9c0LeyW!4j} zNa(Zk2|F)R)r$n1I{&{DOitGIjf>0%0aBV3#WCFS`*hp@>yn4BNKd<%3Yy;qhu!UHV&sz;Xh}o@| zscCrdwQ^MGvkUC?Je2Tbn^RVuk+ji)48E1O3aq-ZbYMex1zmt5=v%#qu&A_Hq=->v z#rNs|6r^=(kf+;!e;$1KLdQvC-w}?!_1!c72}f^lwcWmBw$BOSmdMr%8}SO)$h@k-ffZ4tyfBY!k6n)(p+<##n}7>6WaG=Ep6G>e zP|%XAFILeR!~-@0N5aCeei47ZG|A*-evB=2)F6EMF8;aqu_PqcdQ=3)G~Y?;ka@AS z$>iS4D#ej}9EhPzOibLXgq)F=rz}1~#$ASf`}P@?Amhp3v)QD|@a*Ic19KNcAVzo* z*UwV5S=k|l%>0{|XLCFb9%2sIM*(kF@p1n-u5VtE7#|UAI@P=NDCAB~RUXX9aPH0R zz$2!v`&L?K`DlUB$I>Z?N1~!Bm)M0s)3Il7fZLoHAZJM2q^`*dq61(2@x<6-a+qI0 zs{c-4k^E7WT*tc?k#{){6e9o4{JY{N+nYF0%5`$^fh{zO+;W4kV*c;DC04= z4O>_s-U#?+7!xRqoy-)R1yWU?Jv7<&V(6|XHmd$`@cZT{4j%?2kROw>Wi`X-dtKtx z@P8d-AC3-p{h1RXcx^}^Qegsv+|xdM`{wSa<)}^I1`IXdGVT-WM2J3g0CZ7wzRAp@ zQGN0p5<$7~wC`caomb)TVt27!T+TyPRn>Xlzq5UB4r+he9c4Oci<)Y4wO9V;Y1i|9nr@qq>(?8d2IJge7p-}hQCj5b+$x09)Z`6^erDyg!P-$NnjzVzH@ z)qa~Zz+@nGkk;>>zkf^K{;^IBgaO&B-t@Kfs}bfuk$$WT<<`hbSeaUE$`GVbPSs>DicP68i?Nz)=0*Z-mtAF`oT# zx}i(1CiYmwl&E@6WLR#o$(Ax^({@y+3<$+4i-=kM|1+%wQ%EdFY6hC*1ci5Ith1p>!`#RS)jsp z98y<;WJMmL+~%SsrolxuNl*`uu{~x7%h|!Kd#;nUUB?R{cL$eIhf2Tn0p^iQbxB`i5Tf#GWu90-*pn+7cJ^q2 zeOgi0obizkJIicSY6oK?^Jq&#HjPPSB7Pe_wWU2r7iCU;4`U5QU z^9p0)+wIw&p3sVMespx*(=?{6fRIS0(F9IQ%NLlIZ0tRQgBEU%k5`d{vC&nZ+diA> zik;zys?hgZek&F`9u={*RR0`V+;Hr;`&y(&iFd=++Pt(d#4Retc$E8dZLslnwPWW| z-y)mKk(h}BB{{d@n)IqjOuX5sH|+Bd#;|pYE*F|GRbd9@i4)H#lYW)X&1Fk@#4 zN`MW6J)r=q?lCCB^%A&3F%y{QsA1d3H6uCeh}K>=4xYEv7CD*T9L?U7o?oP;mi@!rZxVuill zhhzK}t2~SIlFLe=$*(cdJ%bmwwCug|-#QCv9r}1Msz>{L+ntj~mZnyAXm{3KcKMX= z>a=pzI4LPbeN8I>4SfoG3iou(2l;{IBkMmpd#cPsEorTiY0e7?u)i>WEwlQ>zL0wy z_wmB{_6|erHyRN?Bj+cuNy8c^2CL1gOd7i%;I@QAH+27ZC*r+#{9hkZwRn*dgjc1w zbv_Gj)p6pTn)umUh+#wZ?kH9KqFd&~%fu|uvZv!rkj>WMP z*A=AKoSwJ$05x~>^Rq*9_xvJSr`gN7P_P)XzbuSdB_=*mC1f_O%x=rI683A{P?)cf zK*I|Qt_n%zTWF2sTHuD7d4KrQU&Ns}zc#Kh$chfbE0~+CKc`fQAX4ui>&e1><{VkZ zFY)Q(BGt^?e1CA#)cFDITfbxELEAaCgi9dl^fX53(Ff}xLIiC}G+EXZ?%E8N41YVF z`y2)(w^VsWMV)6=L#G?4krShAABT005-FD+F<(g!)teHWN}enA~@0BX^j$VD#qwb zhSU9IySXE66B=7c6<0xTi4@bRDkZYNeIrFN9RK60Y^k-Crq`~AWGXv3Hy|z?QJq*- z3}k9jI}J46vd_He*Rf9W?0FTH7>5!)91`(ON?GKk5$o@dY0^Fa1LcpfECpCH+1x|M6Qf#TgmZgW;y> z^f$3EXORtsU(S*FkF1JTDxe%^RL)!askOnw!V2PN_rz+My+rot z#Cj^YkueVov5dWI^&BrF!8D8<|aIY2zI%oi3SepM_n{IN0fG zAv0XW0&v2E@v*3^B%Z8KuUub2^g=Qtw3ogeamVgS~7*d}^!f?1-P$0?0q!rW<1 z^(b4ZXt6fB&r-GAR+bDy3{7h}mP3$ID6E=?$a_)~n<;Z}JeeN(I%~;2j=ef8o>L>u z%k{XfJ#{DCO@PmO!nmlRO+ty7R7BTngSXX?A=GI!_TikVlw5B?m09)|WBlO<(j{)*=H0#*VzjVCz@s|E(O0-^-zm{l8D@{tGGC#pyauj~hI&QNmrpnu<;o_95{w)>d6@*Yc~t$CUA%v- z4q*;|*bv`Pig}-gm%eE`kb=~2@D4!;+I<{|JNK-0T@AG%GW?!C2bta665svggZUU( z6~?v&i31mwD$-?wNPCsq#4v_Omr|_;at>BY4s`ifzn{aih9T zN7datcDGf8*>hoK7lIO}1Zel0j$hUjvIuSF*<^!L&)+SqTD#aMNfxVxo#XIeEqY*_ zZP+x+Svfxuuq@2WEBaAT5NcisdD@SVgDNY1>_0lDs%h}dY^=iq`(Tyy9*XaNZ=6=gbNQnHRn19^)oWEyg;&eYn*bUwE5!I6#zbJAd4(0TktSDnC&aBJS z4*2^1o$%Y+?zg)}?D7~mB~8ylyhCf6kkqe?IV1vcmfHLuZ3=w7PaHYVe$UT`-MMBw zhJpqMHsVYbj(z_A(e~EzT@t{NfWBI7C)5(32#1Nq9RI0`xn3y*RqcG^0I@ALnPp`WkuBn~`k&>sXKzhI~ zOg5>5RKKyyW3??~;u3PthtCnZU2Rrpg>kqpE;YzHf)$yCC`c3t8WVBNa&I_WqmmE{5?`6?ud9bm%8-_&h^Sh) z1l!;#l)a#yYk)9oWe<8q+T43)BT>88%7?Zb@=8Ay>;lhg`!ciU59&KFGUuSo){BBVcLJtI)ZFZ&2c#2W>K`QsM8kCLa(l z$zT5n97q<5C0QDZ`9Xo>rTa=bSUudg#BpJ}{`WY!s*P=u4h`>CS=(6shvtO{r{03@ zyQ=4bx%xbXGWuQ}&Ja!w4+*Wo#cdFbPql4rK59h(T$65Rc1z%ElLcphr$o@8OAO_s zds#T4ZrhCF9*;SXB(SXoG%Vdgd@kzsd-roPEbc|fEdU3|pR8E;8I+AO6YEEwY2LqX zCvDc_k82MzGR7QrXOV0k>DyD8zOd#!uXf1x8h%;a8ay$hdQ@e9s|xmVh5$%2*>u6n zNieuo&HwxUkE2`ED;r1KQ(oV_#!`~Q&W~c-{7EkD3wBmoj!hRNMqb9K$h@@XEskiy zwg%%<*gS_0wQGqf072;{mAQ#k>|^4Qe@3|_)Z_E5rZhV*!l8Ael&$6M6*Xst5Zd!B z@x}bQ>agdpVxvFX20GhO+Sn}mLDoxSh?O0+ z(fj_lr-Y>AhEpYvR~oVxlC-9&1#wouFR2@grh#3CSM4naN?1Qx)OeLM_f#L7sjP5r_JUm0uUHK<+Mboutg@{d!JzvnE6O;%d$HpE zAvLDkI}rn4a8K*c_)zD)5-oDZFP{L-dSb&wasUyLv@fj@MrQP%e!LY`2fmy$OSKrJ zPL70p98!Bg5xrg(ksMN^o3+{kym}O~X2a0B?DGpYsqw@mRGST{5HT?`G&R1Ju|&?8 zq1;3?5q{DDSq}4HBUA}J8Xhf}@{c>Om|3P>-$P!1>M{VI83b}_YDvu`Qw9^c!B)D! zkPn8c5;n?WPJ^m-mZ}mK{d2Jslnxgc7y75~JgWTfOBFBaqlMoJ)zn6iYQb=yu!k?bSXBIbjGm zT{=`z;8ATlyc2M{!DBfh;hPlpxB-Kt-2vQl8*qYiZO%i=svg#^W19M3?2e|*tWze@ zGj$l9G3Z0V7j0Ay-ak>6yRB~4z88zn7Sr_0&F|Jx2`RP(M}27|NWO9PzmR~1o}xGY zc=#tI|M2l|;Dnq1y@3|~xc+;Zl@sxN!biw8w_|F!UDcTL0gDXrpdKc_CXI>hs1L5( zdFz#HPR8N0tVsnqco$Nl#Oxf?c2W$jX}`;}Z{}<}H&GKax>d6?rRlkn10B(J!H(TI zHucJ?o!e}59@jEnr%Oexi#=H0n47IeOyUA^(TbGK~9 zj)ZL2+}Dw(omf*=jPM*g`&@O@ruMbJYdR$jnjrlhN63&~PuGxp#%?b#V+mP$``S%;Kjy%Q!}1dj>j||W zemY=}!qWS(6NASW-bHIZuG?a*Cm)zsU1<0xsSe5_K8y_KQY>%OC_So~?&)K1v7liz zRlnolz;13@6oghWGRe#RbeB_No14va*fv9$dx+Ex?Nq$>LQ#>(gp&Wmi1BX<|D_nW z4Qp}L4VVVMk)+D?2X1l#@J;Sc;lx!e9tHH2fC`LPaJaW8Nl^A8m(-pW=jZTw9RCE> zBOYb7?+HSMixnjzqq*zM!ix^5%#5LB3O7;`jM9d5zt&w{Em(N?G0WN<*bqb4hM*(B zlYI>?u?rZO%4e~=SGGyJoLHykl^;MK5ungV(cXo_MHwDCmuT<%u}wtMFD+gvrGCa! z54B5sPF0+cxHZ@$fp%AcO8x1_fx^C(7Vc*xATLfLi4<9{W!bb7TS71yyR6>fcju{E z&z$guF1BM@7EA9o#e|+0R?eack&UvlC~TNDfiZ}e|F%O_Ai~fqQnHY|Rnl5kj10xX z&?S0IBPsvEkK2F=9$w8{ip`YyB0?@Z)l=)<`Xls{Iis)|MOi`iJNffJ`FTcgwY-0d#wfk`Nj?psR5!61zpp7Sc04rtGOQApI%?wlA(Z< zjtXrk=RwH|H_w`u=7wmt->;73ex#s!M9;?G0=oBBkS~|5L0zYdrCGdty zclVAfzoxA;>YaZri-SXS{A;4<*s2U3T)$U^HW4)$4q*{lj7XF)iFOk;%=l_HTN;iD z4)0E?A|+Z<97FbnyLfJ4P&l5jA7=mBelIJjJOr#jHvm`VapL#4{ZR=|cCiGDgT6Bg zgL00KD1g2kHvcFLI@%`I?q|xBz9g;Vv$96Xzi zR=Wz3U42rY(TfXxD5&l8vBf3I(GE2_@Q%RSD(8n3aoAQQJ1G+G-w=WhOs}#Yj~j(0 z_;wUkGYPuXlXOhD^ z-qlJ8ZN?5#k_(iPaqo!NpoyEYvE|&9wt~chh4^t?amRsVp15*(!k#Hb-|%i_#=I|d zcq~4=DA09x00*a${BX1)>H$USD^7+ zh{h0a5-GA8Aw*2OuHzoGm+F~$6Mblxx0tqh z#kmev-zwmdv8j~MU@5-=Ug@wN$Xr6&+D9ibpXfo@?U()AZgWL8Z08#sB{}CjPT@aW z0HmjN7w5AnG3jY$3JMR=XuHsusAcGVuR+kX>*8dfySPIKT$Ut9v0l{9{d55o9#{9X zUqZ%C;@2lw<%G}!+8_O?$DWoAW6SKU5^YKlu)AhM4ews>6qQ4*p#^-y(`)yDnrhq3 z`%T&ov2<`l++513APMOXs6Eiq076xu`U_GS^Fe9{*LsL|0p6*?j?NZ_aLyX2wIGdr z4a$Fmx`5#6ct={phup2eHsJ{G9!R{_5;k%>2{=MPR>gd+geI^)(bfLMqFA?P;*mq1 zd3XF`&bZQcgw>cGRAar_$AA2#cB`8Ye6z>gr^7mY{g3VDzaq`Di}E}D84|xK^n@4Z z+CPmxj5M-8ZLvG5GROf<@ee%^bcJcO#uc!aKv$3n3nK?BtE9?cv%hiObi~%k)={I| z(q~kXy%0O>L9+Qb^}@q=3IM8JlYoQ0-Ij#?($*B~DIyuy{;X^E$O@?*TTk% z!!K0~P;w|wX1Ju5-Y(*ZKUZioVL-IEHB@(6HsJmeNctZ@aMiT^rJ(^9&4e~Xg6Upe zU^{O|RlGf|&&uOK-9eM%h?jrisa&*P38B4;yyco|)m~yDO1vU48!>z(UbT$2zfj5F zROdbQmbV)Y@9M*~wikPP_$=#YjGr<{5Q2;tw4mc(Vcw4xtf~Hht0gzE@oPdiwYTMA zgC@A2H2o`xsvi)hI;>ewW2!(TRM$dn`8C`)7Yy`Yoz|hu%!*r-vTxar*F=^(A4nIi zy*N8)pM2NHumx)YqvwDNT|wF@RpCj2lDvE|29E1RQdtxZ1Nr_XHl!pZChOFo_nx;f z2!jHuP1cLN7fFKxHu8a%R(t0XJ*7sqmtaH>KIP?)#Q%e6w~4?GYZMKTCnrfFk}fGV zx)L@VuCujEb89HlruM7J0=1brc|HS3 z_=mk0ohduqtgaEK{jfKYX`=0++qNwQR(+yVyY(uEpN&J^b}hQeo==R_SoTN76@(?! zsd+^H@aWpjF88!u?gu`R0x3xco5hqf;O>X1bXd0K)w+&E&Zj{0S_Eg>TeB>+%S=O- zlAMkN9h-7B z->brZPMM$BG=8VpvDm;W)X7Z#k?;E@+wtILDJeefT;Bz!%v_la#?w6IW5-;yGY2uw1)ZKA!QldIEq>Q$F zvSS%~(8fR285%^(Afex$A4n*>O&c8UMuU9Mu@)`aSvNn=Q1miecy~O59WeLN){oTU z&W7nm55DuT(C^*%v^uH|gHg3^pilyRrtS3f_#|d&UIjC_`D!*VRgH7o5->#q9b?P_F<_mn`A-t zx0O-KR0z~UA`{!D&0Gmh+aWG3qkC=O&v9HH^j@p@Om3~k`D%d-W-!~Bu<6rA_`bCAp~=2nz9#uuwq1K}_CmzI}qIJ*J(DaMqfsl^X?OJ;yN zhSjA@rG7)8=&9kE=o#Me7%y=8@D3-0wrICRY8lVHW!Jp*giI828+9jJ%h6l-MAX4^ zd*88o9x?LL)R_WfzSxB$^lol$RoV%j?+xa3PtBNP#_ySKGS&W&c0k!cFjot%!=jp2 ztK05R`!o1}Gru8&9MZcFia&<;E8`Q!+y5C)=x7Bu@1|P+T^pGZS$PtygH(ki+$ZgNWh54I_sJUd zd5Yah*U!>qd{yO6ezT_{tRK55wiH4qO{~@*k0X++Gw?lix8_S8ZI(exmJDck#k4-z z`$q$qoIey-JvloXstUoK8t|{XL7J8v;WShgKh^A@d9}ic|&aTM_6wqNc`zKJ* za0a6n0KOVoGb&+~Ice-H=|vnZJuq?!U?fX)C-*3AvDZ^B8?VcPQihVog`AxCTmgUq z%OWi3fDLM1b?kI{VRDumX=k(U3JZejQR|kZ$Uzay#0e!7kc^S;21Z$GadUcB@mG$K z=ZOZF($mdMe-LXFm`T;Bb-~KhpUnihHEdGCSyZ`Gs=x-t(@Q8tf6A+K}FSh=F z2nLSmPLA5z=iLk|D=VcI11Mo}>cct#n<=+4kFM*$WZ28*jL-749;TBBXeyW4(WWIv zX}AmUMw85Wl?;%i_Uf|T0X^)o^GrmfkkRHZJYW&`sBKxb?B@sqc!OuTqVIBQe**H+ z8tq#f+ETZDwp!EO)AOqsMd0TT&%Far&4ps_&y3mh0D-x(K~QpEyEq_c<946+ecp{v&6|t9=JXQ1PT*slXbMa;aNTO zU~lnS>H-Dvjkr24v^`n6Ud?szNrZs6s8Yb^NN1gP5yuM&Li^L(gw()>EM9X}XzPo{ zOQIrNR8dhOgm|pIYi!Eek6#SDd((=cuvx^E0N!)A_V-+ZE{9ZL+KB->VT{57RE4dQ z#!`s>*U$mMww@->(CTetXItu^b`>orcAwU}YWY}G&A!ZRZ%a^IRmZiG$H&K=zrJG_ zkBaV+Q3#lu!!b{G9eg;apZwKT_6Swj5t}c%GvTH+vXvLp9gXk##qQa4VqU<9e8ska zoLi-?HVPXrI-5bQETBu_Ir+RVjN%lBqEnW#BA z=Pq`uiY-4Bp(ea5A|fJwx-DnQmxihJDQ}H=(L12|a;Z-PGHU=uo$q9@_0Zo`*qbAd znlNZtMM#u~=W#UYO~cpv140t}EpLzLq?_T_k?Z&Oi2RR{)&c*Fm>+#mIH71~$4S?= z7>DzHwMzmuaul_8Dx#Tdi$1yEl$xwHds|SsQrbiDp7QF^uv2V zVG1?phz2+1k=!@=!@&0(vZTEgwK>Q}75n4DHUbRTcr z13-6zZeH#^@IE%Obp+c(s58o|5J$i(_&z5DT{MD->v?5l_W*d{=u&F7F&Ys4s7$zi zIN0Co85nT6bV3(%Ut&F> zftBof+bcgP8;#7j(iJ6&zf~A9Qbj&$vUI1|&TAKfnyAbvp zaj|~IFKBxr6B_CxwTHkgsWpIG(5wu>G+Km&n97caV10!|oF?so+_C!uND}1rSdCE< z`h0ii&%pJ55(b;vwmcm~H1|+BT!<`Q7ZSXkPAHcK$FZHi@t)8M(LWIPy%s9eZua3* zwVOZ{()r#F0;QDpGaFoEiI?$4Tz|Lb6FtJr{4^6PQRI0*fT)5U?D(4ZO%|67ZE}%^~s_Wl(H>0jq9DSBTEs>Y7KjVfOwjOqe z2Tc5X%R}nDon`z{j>&bi+%ityaF$1%-9E?7u7+prL}GYnQ#M#}rmMKeWM~mD&;jix$~epO~-G{lNLPhAAzQ(T4epBYeMgoP0^67tOEYg zn>U_#Tkdq{kw)pwS%I68J{UL+Ht#oSTGb3b^@#tl0{ypOGUZl;Rk1&HQC`OCrb3%W zOzPeIU49v2P2jX;(GU?sgG&ldtZuIT{tLfw$xCpH%}$Ca|L!TG<`Y+s z3fkD*s=adb4SHg~i)`?n0}`~kd26OzP%ppaRLrqb8X5QRAdI?n+v{`YNZO1D|IWnH z55VAW1{bd~pWqCTg`y7i;mu9OZ+Rkp#)6k9s}gkajKjkMB|A^aG`NGkR^Yc!4L%UZj)B3iC*M4;-)6_J@r{yZZm)w2{`XNaC0+rv_K-$0FIPJ5^Uqs=8A> zNr_kPGG;}cQM|^V+CHcZJAQNb1!bT3`Jf-)P|l=iONTbmUMj3jO%;n=*OSCal+Q42 z#!YB(t{&Qu6o< zo5_+p!xdK}+Ie26IcH`X@xj+&gE{jouBe?@G7TtuP^7+9N?Fj+K%Lfvq4nc&t*v?( z#7=EQ6@B0}BQ=jU?4%9t z`|)d_`hm}%4MHVVpaZ9CrlOYf@YCb!H#iN}?`bHqR(tVh!gri@560HOulMik5oI%B z)_>7Cz*s9HwOCWf$jOJBBPrdCqkuy@3tk>22bAl$z+YyIj?ZC zB{4rk*Rao&24pW~-;#<5ghevFS!&zZvt}}Xfjw_QT7~TE(MeQMvtrp`b;LNi9cXF` zUCjupuySbZCWZ{C|2Ef!OoSQJRV{e|qKqGmUC-n&Fc=7ZwH9%`bUl9OQ+LVX1m7X} z$VLC}L_;x{>Ge%)IZx{A%3Q=k5J2*M!mS`d)a&}h2o&t%2o__9M0{Hg(ME=o4PY@O+UQCfIuIbgK-Lns5LTf`=X zH~?^ZQ)*0Y62v;M2*tYnV@647M;|+L5u(LpIW=tx*1K6bK9n3w0SF^`fp@>B1+Gdc zG^_8GKE?1^P{uGV<%)&e$HD1P06BPR|v0>)FlVXKQr+dTX0%Y|w-{CRKL z{-#9$oud$4*fZIZp?(3h$knsS{(cXGM&2NQTxhAa05rURmd~011nm@xUadaFgLxp^0s2 zh`^9!NJe$q{&ORMq{bt<)ABFQW!P}>wfk4@7mr_f@5T{uCByIDy`k9Nfy4FM%gU|WE(EY&ia@fTslNWWJ}i>ip3<{RPSTrS&dw1W z{BtGW^U1{}2{`def#De&{xAy+F*Yf!oldkM`RSgk(0!8R^-V7?Fy9UBfDn>`u4kT_4~MoqaKf8%X;XM&^5q0Z9X+` zT@=iS)>PM*+AxTB^#H_)St(seSf;S`&^0 zd$;9O==NldzkQ_U1Ffvmz0d>S{iOj{fj~72d31`Xg`MNOjiqcgiHDjmVxH`2o@fhC ziw%aHsrby6{K6IEaynI|UD||*f9Vo`4MtOBELdMHSuuxUHSQDOt*E&WCB9goF5F<` zJ2}gQO_{E2Xj?uwU3@oh)^Yp52O;cRdUVIPh9g*a@7aO}YwC&c{CGvC#lI0rUNU!^ zuo&J_OQ>inVhbkYCr^A)Ob{jA(+dgUMa(;Kj>8MSFB5?V`t=h!X9>%ms1MW*cxo(v zjBLf_z77^~8fY5oo#Iq0iksd!GeyXyPo9jqZah_OsvQ&vGQ4_#+7&~fIC@-EKDa-- z%v%0NCnDz>s=|}o>;7J%a<8x(UWWuG%lopau2SWs(jcZG;lZeo49T+@n>_1{Cr<@q z`?c8_$dFjss?S*_$hr6=1z%0eGGs_DOf{w6{^gH;YRs=ZJg=)N{WdStXcyFIss7D0 zb>4P+ZI*f7iG{aAwalTvO3T20x1&!=+7WCnl{Mcrw0-H+wXl_@N{iN)jqFs@&=A`D zK8J<`)5m=*ZrE8wAR>t{)q8}Rgoe@*gtupc^-_qm?^C^;&NgWS?}SQqj^{0;P3k@4FQ1u)>L_4`^|-1+?4D`wajFr{sFwxwwTs@=0A{0}D` zvT5#5w}>mQy>*YLqs~ETjSN92Mow45_64}N_GUgqtIqBL+L3QT2p^6mk)_(Jt;kO$ z77szrklK{f^yPZ>k~;YAny^vUdBD+@+2cj!Q=a@&?IP8mfwvdocGsts+ZB)%cw_S8 zp}(*m?|c8C$^H{0A_2PmB`MW_qIRQ!BcBa$R3u|u{*=#RiBlQ;mDZ+NVvtrf> zsH4xj^&hInjieh0;Jyt2F_@o>|UcNUZ@Ca9-au>KEhvctt{&%sJ?)ax3vUy$g?&xlO zrpqV6VR){cb!)&?i${su?5t~lU5T*p{^_}mRgBXQi?*_3pcY;1pD4#FS>|V3w=Y?_ zJXEw@&e9jwQ*gBD7QDA?_b${%1ulSrJB>C&#m@?Cv87zH^vp_6OyJyVBktC& z#3+5^a==T@HWXd?H1=QAnZR1;rP%yZ{ns2r_L&j68D{U0JNRGUaRQ71aSuQ%#j5{) zfB6}>GO~7Y0Q$isyF{GY1wvbXsLn_jT$3}LuZ>>o9eesz7DR-Xosko$w!`wCNTO2) zZQ-w|d^WoJgE?SKB*!AXEPlwxg0Ud|!-AA|WCRsr?87F-0e*Czi$c+$O3SltdfslL zML&$LizSL@{D(6+%G*<5X~#x4vpZq!b{!mg5yeeu0bzV<8B1?FW#ggRgFT^le=x}z z^PeB~-rb_0+kE+#Z252bbtXzEwtN%6Jmz!R?JvZ{lztiYwu4tj#r3ar6;qswv`P*) zbCfGJQy<$+^L9E05v7>`vi6q&w;k&*sN>!trW!r4{v~K{l#rY5xg%W#db-dY|E^CX z-)ft|<<~8(?Y%ng7RVC^n~pJ)AQfuWMG%UzC?XWV(|f9<@1A$LaScC} z`O!dIgm1NxmG73l`?iKuH4wt~P8CXbIe9tqZ#vynw+0CGS`fm5(B|B{ujTsofe}V@2$kS2&w~KDiL)%HL?{+_22)d5zZnhL*RTFnVIwR?P3cLT~2YB zAODMd5~M@UPwfDLUh&0E6+ko(Q-F8=+d|k;>gNC(i(CzlReKEshw(w|} z>qGLFrl^o4QYv({|ALtkWHI;KpGlSNd?>$ zEAl!u*QNBt8@IN4zyA2uR?+uas$_grO_q`(cB2ICqM+G}+j$qciwe(g|4ZnqrILl% zItWq9ttun;9l-vZ(fNTLFL^=_2xGOjyzmZOU@i##OQ^m5<0k^s0-DWuoWS-lG#xYxsmsnkHLYZ7+9&Z9&npsxUnw(r4G@#8AKA`2xod8} zW8-Wh5Gd+VOmv)k+h$cs?R}nZWBaQ|p;GYpVct9Tl8w+p2!X+y%*^5qAC5W)M!=MW z5|;;?$Z!P>J7(N!a@1}JQ;aj^lQ*%Xppy6Y?>edgoonR}=cHaD^}jThIukeO6Rz9p zKw?-8$-$-^Qtu%AxM~=Lh<^C!cNyVtF~&~uqh59rvhB49A;U8~sBM;w)#vZ`eS2I1 z)M^Q|?dmYdvDXd!mc~0^WjR}s{EO;<-1-|@{?~27KN7_M_Fo@fvHSspC8t-=rGEA7m6)kMj{3AR5>!7fJf0Mm>6ZVn^BQ+p1lDGO_{f0&|Tj|-idpx17dM!px* zxzpf`QwD|XX6B%%tr&?nzm)=uTy*zc(H#gs&J+S$RkWg3{ zQF3#^$h|vP<~THD@3RGQOGh0pZVJ#xldhkPq&mWP9jNN#Er3L}zF z=Zco-lv)<@MKNR8`Wz~x`7RfdT%oxEiX{W)@XgKV8nNQD0Wm;|H+c#mXK*RD8(#q& z(Ct~b!!u->={(9PapI~kN@}n^q4{O2?`29#3NB#$sv1KKTtZ=Xu2U_H7D1&{BbzV<||L@akxw zY*g}9iU#~R7NFyrC*<5vq@G2ZDzs9AUkrSjZtfL(r_4`4?-3Z)-t)_VQBn@5owPeF zuVz1PF6>0jNtKH>W~x~zk00T=lmy~CML zlc3sZQp`1vDc@wFCBREJuFr2{P)3BxHy;vt zFHZ=B9~+?D2d+mCNGPV-#hw(#Pl)fk{`eZ#7?LIUOb5$x0%9K*_$sD&&3-~M z=2R@24}%Q%B797Mrbur${CXLp6Beb*P$&xwB;dYty9o^)j&W_)gCI~${3O}i=N(JA zCw;4}c><50o}L~0fQ3@C7eT9izLP#3BNh0uex7%6 zvSq|*F*3HkH0CJGAs!RU_wHWg&mD5?mPPP&*u@UoSKjhc_L%yT5kukXO1SM|caIK! z%g=6MpUo|q2<_VMA^84VsQ68#FS%ThGuzRlqb?asSgj@ zB@FJNTMly#Es+~^ytYm-d#KygYvW)#0|IjKG%17t9OptDZC-mCc#u-4+-KELg#Fi) zii#W%>|p0^?*CyIlSa!xsf@SRe0`0fO-<3ABrsIwcu9HHV9b17hqB|%{H$}hk0W|* zEg&g*@Wo5a_x35&L&|)f{OWsj;6Tc(UVkuCoE!Rj&?U8HpYf(U`onx%lvICYa7*?M z`pdVD;)S(OZrGr z{UYeP8mF~>K0c%*JSU%k)o@C~*v8QiVsPmk$y1g0NrQ$Nt6BIbg+4 zNmn@xKQdk`3g>I2n!cUNb;V7ElAGb#6uSN*;Z^-g@Xlv?yaEy~eeD$b3&g8O)y0o!cP3`5{kTH^wZEx1s`}#{*J-wmrKk5BM|v z8~^6t^myfeA_75XW6Xb|(0Avk{)zJ9tMcEe=#wS?O7%hz{J*AhAK&+WOQN8l5N&mn z-!&fF+dO)e`&V_zl8G2VK-=|0&nCm8`i2JYZl()~S8F$hw8^X>{jW_10x5vE6*?dN zZRaoFxG%)awH_!Y8^MlXzQ2ubyB3|Eo?gQKr!oIOwc1y0K{>wjZVe`yidj**M827h zS?O~tWCmb}gXjFsD=<0S)!QMBf12c)g*HqKe8!+h!Rw3V*+dH{rjLrK1$Pxp+k5fj zn+IP>G(kEWd~&TLs&6msXFu)8Uk0<&Mle$XtgLQo|4*3n`PiGd`6|?J@*6ipgA@Doi+vH<2}N|q@cijJZi zKZZo1bBJ2t&|8?8nAq6Z`!ChG=jP}3Ke$y~>`*@VB)QDwKPw>Z%MhkgW#hE@hVpS} zTU_OsJ1N`CrB7Dz8&~ukMFJS}PoC5!rM>DSV*VN(|MIfyvgLc{Awh#(mydx*wEvm& z?p))my3H3DD{J~0t~)CFs!~cXUkV8hJZj-Sb1pA|WTUzrIKW1Q^KnCx_U}FPORP+I z9n4LhwGjt2QE%(RK)5EKxYeaDbnNGQR)^oIN*jXH^7+mxc&~!}8@Jr{Ml0WI)O+*m zmh1c(RLZo;QEp@0Iog{PlBD;4?q3}Azt)wX#H4@jmf|GR>3-aE*s z?cr><8*F&DBBd7}eR$6GB-vI#Vn_4av9ir{w@=|n&}&M;WOUb1pe`=&}AY{;AzL_I`UpUr;ne zFSr;nGc(ip?Ti>j`?uy8Eb^$oP8Eo-hY)rlr2I;Vky&FK!G@^R0)3(=Q*oCg%QZWt z&Km6p7%DXSLk$q`NELF2k3TF~L-ptS<_4HO>dn-Z#kl4;!+rA~Ifz=JZ0P6rX&hj5cqo^VORS}tb@lNkqZ7EJ7484N*ue+v7@ zI`{>*wQ$0aj2X|D{V?^Y@Dexy?1vxs@&d_JH9xjCqarj z6XY)JRy<>7pt|}-ZW1eE=yFZ^#o?hzY;2rdUz!F@N%Cct=b%Y%(}#a(0TMipaiqQ- zpu+kb=Xo=UQq&B{x1l0oJ?%-kw^KEaeVXWaxvu1DRGU50MN*7ZXd{!`ll+#k3b{~iE(W|kU2#Vn{)*~Asnj%sr2*1mD8pon0hNLP_2y?0O$5b4ru=q>afx}u;|mEIMkm(W5_A|Q$M8cOJ0 zdI>Fr^4{+KobNo(Iq&$!`xhA_jjXxud#(Aqt~u8)Nsg$t?8VL}n}p=}0GR#m+j7y< zHE&68Nk(wQ(KFzth(r4VYvbM9k{(hzni(@S+!m*vd!H~)#pH5~eB87!G7P7D zZw#aRYy6imGBurgHjsVWR4uB|T$edQ&FuP*wRRI=cFx~du2egYRA&xkEMsP8GE|&x zg##B6EF%wiGG8jx&mpDKk5d5^@-~;FXW}HGBeWhTicwNvLvJHqaPnR4w7)N&{KaNS z$b)9C1K$qb7ZzIqPO1QTuJEiAlMLs(Jh_TE&0hHitRnK>XLpG*(8cV2_Zdv-6}25k zT=^eG$-jJgKi2my2c+NLHq&y+U=nZVPYE53eZpTvu9tIUyE4QXbHUcPFpRq?H6F6b z4T=}S=M9Ig>C<0vk@JD{3y+q_C|_})yZ1JCr20Uw`$|}jXpfRMr6|KoZwLD$H{9+W zB2+E7ZLoIZ$?xQsM6`>+Mk_C2NfPbXSjhu6M2qAS zSg=T4uqzpZ;6U+g*?B4AXckr`wJ0f?zj3l0c12OUAxJ92Rek*%2PsdkQpQ3B2LmFt z72&f8flfSh8gcpB$a|yBI(qNXr>v}Vt&8i##FA&B9q%eomzkO(#KgpOJ_0(ipi6fx z*iI|69sO#@xl>PHpC~a&y&%(>WnGnmP3j)1SJ%2G-tNKGt5;)@Xg<*p_+sVq&V_mo z{n*xJyZ<8UwzY+Y&*IKrbZlPAPUUApAHAF5#bw~xy~WyCIoer&1%a6ckM;()VKwVo z-c~~v%`u>>x?UP+N8Fi=END12E6e4~aZz}&J}}N`bCOC1bu#@;hg`5c*z#hGm3t)h zbC!$lzIVxCfyzpRQE*K3Vrb1l)mZDrUKML5Ek-Qk z%pS~Rv&#&%x#?^jOLv#rq~|nK^JMU3ZQY+lh5$D}i=Sn-2h(4v5UZZYkk6y;ZHAV!W4DD^nT-bDG$I69xTMz8*BD4 zfBtsYyZ${q8_DsyF7|Ql%qf7G&46;zIWnlxm8^8S_i4e(Nz1%NWO5GB*d&(b^)T>F z6R35}tVp)ZX}E{3`ApGr*r8z#H}>!GN8s%$?JAtp#eSRwcI7CsHoU3YNfAJ4N(l>Z z_plcnRSCvJR*nr92Y~MT)`3V7-kHN@J0@3rz^A>!Vb0_bOE-9ay6W*6Rgt8oS*JC4 z)^W{6PNQcNfjYP6HS`Q2)U)tNgj!ubU0lsLq7RJ+Ih*b-KKk?96x7IfPOx8YVM@n5 z2HIuoVQ0EpQl`M&@+e{jf2p420b9Yp{|-k9lrCgdfQ^H<&TW|^&u4?}OcBSav2JRf z1@whwv*4aSgl*7jmXZcqzxy^1a)K~6fz1Kp+~RGA6yV?GSxlR)H^zf|}HUD2PJi@UDv9&q1&<_HSqJ%jXm!u^W{ zznk^Ce_GoW`1B}&g?8+w4rO($(!#yh``dHRI#xmMPATacw%Huy+u4)>x#DwigQ=z1 zzC!PtxC|1KELSt6eCIvIEfL$D_ue6?GBF#CjcUxY(FdxIl!0x`l`=sGy$0Efo?VJl zQ_>9?i+zclI*d$L8ycxlrG_d*uNnf=w%M|qzhe7(rcJ|@C}lc35!>#1g_GR}RpE@X zq`EjAR6dJ0^NCS5h|IJ(Q(hwHiw3SsEuUz%#eZhVxlnk$ZNGQ2Xr_Q32{lpNytMtY zC9j6DS~d_#WM0*<8!c3IIQP}-mHx?#sQ2{3!4zGxS5nYNh;BY~59L$S8+n5co%q+w z!8`Z^ScLPLGc_mP9?q+6@hI{Gsl3TOhtXiQeg=^4Ki|9Lk9t3o|XyJb8N>9Ot}&1uz3lV+&eGyE^7CQN@k*htrkxu7uR)eVkx8G^uWZda zq&WFlVzsn}2g{A@IO_ejOi2iKzg{W4FJ@aLvzsPPr?8JCeIKxjfs=a{h80PQ32vd; ze97%ldtSjZulrwy++HI$*bmn4bo@s23ft;)W~wjbd$Yx6YL*&fh{pZSq`eB<=B5ow z#edbZ`?iXs_{<}Ljle8oOKnFkV(e9*m#{?ad|ooP7B<$ZCxrvsA7!LfU(u8BJ-Kwo zK4CI^-yC=oSkRjnMm>y>(e>-~k6F$Q=oBL)evyGO37eZWJ$Ng@_DD@n|1!m*TU$|q zkZSKGbaH&&6;H20mBE#`BHjoq@ADoF3PIW^QV4h7PY}Iwc5~a zH*rrUO;x&C@9+hlJH7C=nfj_?D(-VTmo@&~f3%KYPf9*4k`V3PYzHpvo|%aObzFmtSY?6)(w zV)Q{lE~s<4kpBLj)sI;VW{hC?l+5Nv+r+@pJRUV(01N` z6kMcTJSE3A<_pb!Ht3h@&-DYnEQ{>uU36}|L5DnwQ5!{m{PcsUIRyABMJLt&1hFrOqT3X}5$CsYZr21yf&KqLBYKjrD515+}Qu_W{I()q$kJkpnM(G+VWFE7unM=Gz- zuGdYGycZg~JlOqGRpW&=<&cmd?I7Z&j=rmoN;<>q;i1l#nv3ucqc22);%9~p2CB3( zle!KRN!m7C%CNV$_l`I*&$wN7a~u(Ohc&g7 z6PdpLB1Z#AzBMwZGzoQ#C$?kM!v&J_*9d*zKYJhCp>;$9`Aa`L832f=)=oi=*zb>c zq>jIj{hEK_E0iP@DE4D|B~yGgq}N6Z7xCn~x%KJ0Wzi-I=OZTM#<0V^d-4Zw?)!Sc z9XT_`c^C7kT&_Gi42&W&2Cssh*)k zd(GZ-5yl{g*)b#2t<}`z^S8U2Xq<=EP+RLzu}VfJrWqpPwPC7wd088KvxS2l zDMu_+YMBeZsjD%(?K1AOMETy_;YUHf$?i+Zo}!yjoPCA$A+dEF;qc zD*vtJSUGh4K4k5%q`;%xs^xt0uCFgVZ>Qme zy-Ab7=3p+(`-ADyoqA#!rJ*vMnlUo7tD!Y#@}v#=O61Vb4?^{1lqXHOoNY(Y?OU;| z7yhv#(T!q*cop2}{nI0Q?x(Nc(fQC-25wmqjk?JYg$+*M-nE%L-f*#zyX?~WZVFe_ z%V8(l-`j8rX-e%Ao_&45JVdts-mo) zf9}a1%BG){S}&9VF>TWAZ-RZCy|wMeEAGQL5ET;W+HID1`lV`i(=;bSxVrWx>*T@+ zI7O03j>Hl|-!v2}IEF%3VEJx%7Vg|#8fiUjA#|>$N1g=`PCPiFF>yjq;rfvfor1yd zs@B^Vv!a68{usx=EDdyg6@3=3uJO`RYSge>{6*KiH4Ht-1iB<@(#VY0C}auf^($Da z3Mh2zja0DD1(;uy|IB=&X9(5HAyD7s4+ypRD5g7QutB zJw2Vs7Aq{6Pg141$pOL^XA?22)2TzRFb@X~S#-k|W@M)tJh~sD^3TqMx2liL(%5qz z?@h5jjFjkh?&s&$&HbyBfUs>HeepDqMkh9-`9EM{iuHrN7(UfHwt<~?*~|$zT@I;; z$mC3~$Q&qN@I9%_M-3XyNM7xR#kh=&NQKE5E-?=MU+wuPR}T zP^*#wv@IV1J8JYZZ^*+}O4n0ngBoW=eonV1WM-QF@U|Z{rz!Von_%dsFc@QmLFUV# zu-WWNTvaK!=ddotoHUN#%^ZY#e8(-DL zEi$VF?gK8{@Kmt|Ee^-!-CMSZ9Zg(DA%gJj~ z+LfCc%o&C<)ub80v0phz;cU)x(N}suW{Xh++ZV!?N;<-PqS$r*`SX~xODRjebB2T3 z)sOpp3Ht;WMNt5+I{7lco!{0=uchC3%}tMFwrpxP=ppg@dPLyacKO+rzHMGdze}}+ z9kH1xqJTWgW!DR?)=Iq7g}hV5>4(!?y}@CmCUkMsgP+oE_a~$^FRjcp^T>F4x=||5 z5BTs+wLYq#0)4b0U=7m|Mjfq%eJ7_nI;Iu+6 z((ol3$NNB}{aMNiV=E-;g@6^sZv$pI^ee99G;MVnIkQ!eZgAWjp<6x}vurKrp5<-7OaD#fNicShJce{vn7-G@k0^aI~PX3=6kL`39w=|rXc*~ zH}xctNr==KyS+Pe*fZf1{XS1}+?08`m@}BBB0nYtJ!_?`q0iR4A!1<`ByGOLZ#CnK zQdYbG4wf{PY}>VEPn9WJ4&?zGZYYh=ON5K$1qk_f(*5;{`Z79*;|2wZM5fWd@GKyE zi3YcU;->J_e`{p_Ms5FF{i29Ud?&s>vgQmqb3_;Pe3aT8==+q=`bMW%!**-7d3HWM zxEPvQCTx6^X>1__>v|;u93YDA<;GNHS(?dmAU$oaa~g~aNM|;GA^ZXM4>J(TpUW~- zZ0KUbJ~s%7agQ~((7egzD8qUs7QpBQzFO7vma~ijQ)ivkz(Pu!yin z_A$rU&wYCHWYetcQ&kQyeZ534u36-jLK2ENUdoO^)m%CNm_3IYcV*lEw;)BW4O zy(L%T7`hTWr$44QeR|gbsmBFcK%rkY0l0zG1``~KuuAF=Wo5H(2G7{dVhTC7);dvo1(Hdw+uMm1 zqYr?aG&W5~oZ&brwj$-r0wizjns?JQc|cMqoK`X`jy60%;y`G)ah4LuCKCuP9izkM z4CeI_*UZTJlbbX&T#1vMYI9>kMabPw%&S3vgesfieno%gP1VuXUmJ&y8m81AzYRC4 z#hG6zRtr~AD&9vB`TJ9LbazLKt-lx)9@u-RlQYD+Z$roE4fmCJ?xS6xW_0AZ_s}ccA z<~NJimsPzUt})z4DPG+Ts$vL{@%n6;mGLQ26GjwhmQ$=B?E`G+e?li2uoao&vBKwW ziI9C4b^21uKDNErk_k$Eg?i;q-v5g)boMqz^w&Twglz=<_dV0D|C#)|6wk=*_2=sw zAelTg&lktC@i}AxQ(rzy-yMpiOX}(*0|Mdy61W?*O) zCf_Ju=6;xTPL9UWIR;y@W+o+`3SA(->c01roKjKyFjC~m7e;z3&o;i32vADxdRt!< z)-g@sZ_giMzql`OsLRWbA4O(|o2d;nWjW<6D?F* z4($^hsHwZ6WYE7F4y4ZQT$cV$P-m97;MoT;Cc?LGwuTMb;v+J_BPEzHIj9{!$+-iFyP)=k^0qN}ZbRKGgM8YD^a@J}S5JteJ6hioxY$JQt)mnZ{VcV%DG+yT^ooxcNot#>N(u;{sSji{lVD-&IpdidQKqj&Fw ztM;H0vmOQN2&vAA~j zBk)RSJ#b_@_g*TxB@0=+Qk8zuX9Y&0(pS^;dDC+0bM7DEEiPLoKz3RB&e-QuC^sHY z%qUYiByR=Ry-Ge1vTH!Z%`o#ZxbXFI66gfIfN$VfH>+bnAVOj?#ozV&v6a-_ym6xv z(&E_nV8wO(*=1d@W3{!!nA_5>Rio#LLCD=KjmV2%)In!Y#SerQH#Tma45<{yTy&|Y zp!ko$<7`oa*#;jZyd&748BQms1cDb#9x^nQgPNVqF&Wc%(>ljrkqkus&>+OXrL^EU z{bSC)W!7x~ekR=8E`TH8a{D!0`^8VB@4hKNE0cj)D-1P`R_$#+Fv;w&%9Z zujLHQkfkA{L9{-r=jVWIG zE82kh`-cpAqEd?N{PRy%8rGjPGHx+3O~JuLnupS^RldpL+kI9WWaXx>Gk_TH=1${i zQ--d*9N@{DV9yz@u=F8{npL+v>{m$##~W8%FFI*4?V!_D$?E#J>wIY5E^~=DHWe1iCHB^SG1trWjZ@27IJBoxF&d8LGV;~2Qo5Wm7N+RLq5+&s=&PRKOne-jIfqq>E7rcJ58c5gq)vQJJ?`4hy6goDJ(r7EuImX(yB? zBdwDw7Q^*-YFs<~As8B9EvjXI}*dV0aQ3T-o5!K#$y^gKB==6ez~V0}6Zw;Utul=Llz;WHGYfUgAXY0}bbtV^{f zdT%Ga*GO_jNL3nraKlG}54JDQLo#wI867F(T?3F2(vR7I;H#6WHBjo^CiE=}fgQy9~# zExX6{8?K|_{V2^Pc#-Ic)5R5QbZkK|(ie~2Kg0Fwck^3B3D^znwK zNUf*JZ9)*gLv0{yt;j7@kSjzwaHzhPta!zHYw*ifDzd=fHpR91oY>XHvKG7)v$hTm zR+{*vUh`&w%ZHB1;jFMQB612{!+P(geDxQTh!ZNVHWVjwjYm|mX8!t?(H=xIL*Nww z-ZlB2y=KurO4XXu*Q@zBt5LBuYsSUh*I+nJqYvw}W_Iu~$|g%=zMP0zHDhnFX#$_e zL3E#>VX+?3E9#41r6N=qmS1rV?eYBZ240?nb}lf%y}ZY3w|mh2s4P?L3bF9&Iosh& zwPuaAFem4@v~FNwOqSiSMijW_xr+KGLHF5a%hOc=`ieW8oGO=Vc!Jyq-#*C=wnk+( z#$=dSS}lfpKW)dvyx2*2VOgWRc=P!eutP$T?QSE^q6(8 zOf=tv)1R)at#;JONHv}+m#HK5ydo#0>n_s&P6d6^6?>uv(@!&8xJ}z~@WYbEK?0#$ z$Nm?Mv(M{M=o?w+~5@^A3k-o3ewG*5G;*_T5$5{dr?4Ty~9 z7Ao;h&Q+$Is6X@cd~#GF0=F8GE@+8`0-c-JVW?W*O(sOxb>aFWdHozFmP0tQQuF&oLsky&;;^eXOyvE zb&dMuF`Cy43(}@Mpf&pb~J+)b82@i{!W$Y+Ojl`&)^cD+mtG6V=NAb2-b1)=Wy>NZDs!9_8 zoHV~+72e?xNKG!3Ej&xqu&5!I(4oMxP3`d zSJGp=A}JCF+>zzmGsGF#zuA>yAJ~m#ck_kz+1NBCS|5!SxSSeI7AUc0JT`f;TpAv1 zZX`!DSQKp+x*<`#Qd&kIVCR_CD_MyC?s`c1TWFDbhd9;$!0 z1Jg1bl|oxiDtRQp=|KKMc>V38W8!b$c(|)4-$i=ypc7;JMyc(OQdet}Wt_aYLob)a z%Wg~P*RUb+_q3sr!!Z5wrVo${r*d{02s$dK9-_+ zdgGFs#ee6ptAOTH3l7<%EScJW+eCn1{g{3xaB$;n?Vc(z8(xSkmuh;xVgn{k+Dr*`y{9ew;RzIO+7{#SSq2c1uk$;R9~)I5zKZli#lc`Jy!Lb^gQs zK-fnsKlA1i^U$}LMthosg<={^$BJ97z)D0Xc2z>%QtS$&{XpvgMM?BwozLmZqv%> zUt-y?10G|+ANjsVMayz{2Kh}Vgm?{x36@Ivgv7YTVoo)iXrJnsI0cSn zA2*1;iOGHqIzR(FVJ(N=Kkj#lgtd0RhqVT|m~5T}jT!S~ma|{)q%c_dgf(y3%SUsUiCUj97Fyl&ch>n;n}W z{(6WGPOEYfE2QWc@N)1YdUYbL*%zY2*a^+`)82pu@>vFR|sNB^-Aa5zflRBGLn3lJ_{`|@{?`pn%FT(^UlQ+;ed-G^k{49pluwb%RuoB1~u53+eaX4Af`EIvdxuqt0SVGC#?Vlp#7xj9i0$Jm0 zA8Nksp7M(8vQ@n%`1!tKx4y`PlYoa}0X$w|GR~r-lF6H~HdP?YnQN)2oTqQADr>mU z%3cOdDw$(yMo-$-3~4%IXzW>OsyTddyZp@Emb^GNpV9ugf6(q3h<_oYywq{f12|7~ z9D92)ErAO!xqWAPy~P#6?s)DIcH32PpRpYgdfGwRm!)d;yS5zI*kuF2>6L;1d%f_0 zJid9<&+ChZS@n^|)wc9RW5aR7WyAiXe2iCqoXsmpKu)B~kHY}XJfKC$3>ZE%{_ULzcB)t-n0N$eXT zgL(3v+URg032*_$%CIdx$BG@H%>tT-7hlUXq0MY||L8g$Q3D>6EUa4*i@MNL`1hHeWtoj)i4d5%vo@W&?vc#7pE@AT9olc6)41X&O| zs6YBMqXW~5hT0VMjKi|Og{uksRv86H{fu+*GP36AdM8b}RFG3O#%kde`8dJfl)w*| zCBn`lo}nRy)pZWQ)l`@T=nZIo8^QcATxSvk5jX42XiC0tB#5>U+!HU!s3;KJLP)^) zlpnsh^>-{M;xXXYiB58WGk#X#F%O=>zW;P#d;Vj++2>pRZMKg11zWq-VD(?^?OFQa zc6%W&7-t~1+Pvj}87==xLrpg5J_a9YBaZxg~Y zpaK9nhF;b8wjpBL(C-Wdj?Gov=As!p)I9}lTr1V8N}>#nc1DIP2X5%KmTHxwBZoEP zy`NCQlcUXP<)!5jB#~{vy^=fC-=W1);0I z?#$k8Pl+b4uE+UPFD*uvxYhd@g=Fly%LkG@JYWUg6BODz63jQ*eCrVdYKa>t33(7( zUu06xH)pszjfTpbxB4E6pY639qkM&EsJ5DtyDKVMZw98@P9y58t850Z@GB9WwLh z)j{b){ade^0zV49yEIyIw|o8vJ?+N-sRjUQ5`fn{kobS1Ph58*rpPGssRbhYh}^|p zANf3<{Om9IS>ra#iPJ{t05fo)d`E_gy1MOQ%bxcGX^MYX(iOOQJkTm8K%X2C-jmUt zot(hNXCiY|PfR>j!Xr|TQ1=H6Q4CkzS@{BZo;sb)1U_?eS*vJh)D2FS4R<8sMxaIs zwPg%Iv4Q8X#Wic{M~~FGU4ZP|hLibPf!7Z*iLoNR(kr3ny%zgnM?Kh}fr7GBIImNP zfEO1FBi!8W>DBzPglrF0*yd+=Xqn64Q$Nb@9REgWx)B-JJXTfF9X9-dwkqT)%s;=N zpxSX+nv(S=3JD7j$3KNW!F1f0a$XSUDM`wQ2ghW_CX~s&&*hjBq~k%Ghw>)*+m#!pI zV#-qEw#*de`;MchrOQxSm;_*+<`Ug{=(<=>4Y>`*R8!uTs`g^KwYbB`R3=KZxyVFG z>EtNa2)-3^>KGoL)6+o5RsNuKxmjd1pt$1)gTeX4ll1rRtF8L0{(@e|_vS@r?NA7U zvL-4DN*|u_?T?=Y_zhj>A$fEk!%PR zLtj`;NamMa5-1m+r&dlMm+iJzMZl+J2^iwDCacHU{_XC#2>=Y0QgtP)T-3HVdJ@gp zcF!BkJ4OWtyw3f=&Q)LW&13kYWe$>#soKcGW`P^Rn*;9#y$TevIrSu3kQ*LV?B%lq zP>)v6B)ati=xMmSJGX5X&dRds;)|MSr!StgzsE>7c5Qv2VOsfjyt7BA-+!>I!ioN| zv6KjxT#iM^`&0#chy7Eb?g^qM*^THSkH%$F)bDXdj#qbhM*E&>&4Aa6sGyM& zZi2k$5V!DQFY)pXKUUst`adNTn*X3D;gmMI@eAXzkUoHvl9ELP9U63lepqU-{!Sj; zOz3w^@k@2xYvwGwkl>s(_07Ch=izo4C&vz*`u-{{_b1zQf!W8llanOO0g|g~D5^>y zQMzm$_KK_rtobZ|)ez}L6ZJaUw`uyi>8;HE{|a$=_-%Iabu5on&gPwKjl;)&0xpMq zy12vnt$ne^F9~2seTcX#c~tHlIxIsa??*}iq7+=!RFC|cKC_n=4N7AMwRqEp)zbz4 z`fgb>!4KwcZ&EZy>1|B@LwVM#w+)7QzkJC>7pmR8$7kB{@7P6BuCS-n9pbxXjE=ev z0wkMK@0+6ilN-6qH11(%e|1Tj`?dNl=2`oe`7FHu=AgYXyj0z7Hw+BDO&!QUhpeJ zY}4cZYys7=z2~LJM)g)L66vD-&6eEm|B982TMwXW*n7u^;?CXd)g?mz;Y+7XD)5z& z(X!IwOlio_Yxwi-5Ddghtgr&4@y#=A2i|M&%(l73!-aPoeSWU3^FY8;7VR_W{Xpu` zY>*GDexI{#JvQR){4R8gJC81cHba-(z%LhWYi zbc3R)019M3O=Iyl>e<3dwGJ(x7im2T6G)J=?4=;Naxw;n?s}Tb7zw?PPMM$TUx}x3 zU0l{n9*z{NIj4}>0-A5_%oyg{bNhU9E00bFW$yhAQ2vG{_BiqhtX!Y}-xy}9^xXh2 zAp1Qq+n*+Jk(=v$b!lhmO?EqnueZZwBK@4GAkOGjbUNRJDOk*g!7Q&y(8h|d8+O+^ zMW^(&3UB^28^N1_mawC{O~AKp`43Za=-Gsh&E09$lDM3Ylb z)-pUf&S~$IYbCaqxbSZ@btNnXENZ`&+RuF&w{|xjS|4?KqMiSWO7)PKhXAY0)`7mO zvujQ5=jrdwKH%X|D47SfJXot&XKuZy_LAc>2*U& z@5r0|;lr@@tLi>?1M5QKSx&k9sW`h=wggPoKfn%*j@pUkXI*;s`2wpwy3o#;*P#?nfU?bHcF{wP{A&tys=eRsq3PoJ9 zHaOJT%9(HLNUJ zFLX#*Y@G87!aS|UG?sSV1Nm({X>DW(T02|XV&*R>6<4^_sp^|pe=g?hHtw{B^gFgo z{};}Y&1ya*nQ?m^|Fd=@k-P}C@?h9+eA9ZHd*{|FMiw@v&0|gxI8z3?%ny(K7qFt_ zo$r6Uw#Bn$a`51l%k1mR!xsBzUMZ*4hZR3*Sk{eDIpT73m-pV|oi^AWgCi0?XQ;kt zzVHslD(j%K=sQaw!t=wtF(zrQ5VZ3SyO)c3c~JGyJTmwdzl%bdLd+H}I0$WbU|M^R z87jYy{~HBWetZLST`q0u^eeTa{&i`5#P!~E@LbCLm(u=!t4=+Bs3O^b z@m#@VUmHGtqQNlk+*o&*^5Tc?w?~}Q-Zz{8b$WTs*WRK1y?r-S37B zzd;)CF%%ps4-32Ky21jJbdqC$VhkL?I%Pta!9!8@M^U!RzRk$v zZVN(^MIh~wfJDM)qpzvP2EiVp+t4a6hpB*uWsh7;K-J@IIdZ&R9Q076oWavpU7J!7 z1ITe>Lz5VP$!-`RVMa<6ygwWtT^uQ+{V0$lGAs$L9kmyk-W+=bhTzLpjZf{T2ZpPg z9m~ZJa}EzOtLccQn^ej!`#Do^D!h=TK*c*O9tO>hIu;JkNWlg!9zBVaek}oK#SJ# zE^Oz!ki4+KRa2lgj98?sVq!Ec2jf0Xj;=cGizx`rP%2QjjW#b!7b^N8t6#4QM;e>p z7Qf2hd{SWVw4wtQ)!ys_n_xCHGlEWc7H<77_TwGZ&!fvI$<8eb?+47k}S7Y z?ORl*##%f?d4K!^#?;6^C3z&jN$@j7wY1pttXPL&7QhI*qgZ3}rTT(Y0+!I7*1vVg z>mUvD?A6;ui^kXZ?y-}B7*@S|d)$JF^GaNgHa>xIV~rQttXE&++iUTrGJ&i&P1NZ( z-rw@o#-%a*3FFz{VZ6aG=JLILfPyC;X$KI}>p-sW7+&?nX&)iPzbSSljnlY#Rt{n%9TTz%wK;_|5)q zo}D{ev}1mx;gYorQ%Cq@u)xO3JrPc0y-{TascLOMQ!j28(D=-4twjC;zN{;TISx?w z$1*xK(?bWou!J%U+lvB_{ugs%3 z52t3-POq!#EW8v&L=FiREt!#p30^?&Vk(KzLT)(So5NQe72#Z-8%>}8D5EY;M!d~yKE$|x zn4CAgqf}AzGCpLnaL%%3#0Y(Cj)~dbJ)(nrgBOe+`%qIv_I}BlIliw6GhLKLi`IA_ znK~IVGC*N=k|sH=>Uv@X{Pt<4cSUGBP0nKxu1FXA>SBX@4kJ`^W}{A`=k;G1BoaA) z$lm33*^s1@#h()0*6q`#uL!ce%!S)jg9v{B=9sp6SMLAv00QPm0}CLl`V8n~jY%eN zg9*MRaYDguB;Kb7LM9{-e=l5{xqi>|D=kdP?_=n4MiL1`=m)yEFR7%yzVWKX;Pj`? z&oLYCI7ugzSUhgB(Z3?-Efxa@lQgaQPxUt5NBe8!_oUI;I>&uEz7GxvuN zCHvi}HkQT9*h`8Z5n!`|C5qM+OH&YwJ)Wh4qXj2|piQNu!TBF@AJ-;^=|n>zEsPK!H_W~~SiNc|!%e!Za;*95-bj~-ffl{gxfLmpHTjB{Y#H90#KJt_tVZj;Bsh&X&U4U5!(bP20~hlzilUj1Loz2RA!Z+9K`4Rx1_ zPPzg&30jtQt2{x~n$;E^{Q$*F?u}|oi22dale7oA_=N~=PrKFfwKlKxUQZo7(9z|P zcpP!!YrHSfmwng)7$gg?o{6A$9$YY}9@#8h5r%X`maDMt5I&5IUtfHH^k@90cg|1e zrd{s}>hU2};xT%k`)DG-f2(M5BQxq`L3T<;$=50$2O21X=Zqs$m*}KG%od7SofrV z(X!6}AVd2>7JFGT#q2OA5u25=L9(6coO#tz!9Z`CwvF0_ZlgTfv3fChL0^Zd<3x?S zkukzQZKANU#h;x~t}U!+hAg%5Mnf8O)-)-Ub(vp%GS+sldLpRaLX^t}K&W0vFwH_HrT6la;gnM2#s_hbT(%4``ZVp|4` zb;<~*lnNqD>*DLdl29_ki@gzZ)iR%_K(-u-?to8;ppW(f=|V#%eFi4d*S7M3c3IAc zF(t0X8=smZ*woIRA3X%>!~v&~P4piV*8gi~jUA>xZ6&Jwg^G)d%d*9?$-`H_$yL99g!^;o36Ra0 z_IJ&@Psy*psAB<0M;4vZE@t%7eXH$}YVpGcgNp8^pA=z_#I7n9EB1U7n(BI~3?0kB zuK%efsZK1F{9lY@>ZKG=8f)4qz$j1u{hIZ!Mx}D&+b1|D;slaf`_Yx~Hr2Jo>FGVNI;M~eZpQ?w7%0r z;#9q5TXN|3@7|r?H8wW(aRp}eK#|a+U^rprs$Z=QFT3b$8Vj3;wXnH)$tNN~b_3)XV z4Hs}5e9EnKwq~F===o;XdrDy&H(|{*8)E)|dr(<~#H^Qg1D}wd-c^u<1E437URJNe zT7_tZzIjQ9q6^&1r@S@?YB#d5&?AcTr_t%tLE5PgW&Y9!m$I4g@L_@+k_+WBUer`- z>2FG`cypH@D&M(K@t5U|3P|CJghKhsbBU`eef=Dm!vKhz;r0DrsD~FoJ-5TaG~|s> zLjRKmML{yiL3MJ4CA06AlWVeat^K}oJg<#QQ#S0MudSF(YG`mH`XvG!$PK?Cn-8ZI z3~pR$_!k0-oUTVA^Z@eX#v(=zltH^34(`2m&@L+zC==(YqR1hKTb!v0P7d>iztVLPUSr zh5{Af|6mjYMDfWqrM@t!*FB~%zlHVY#juM1n7Ms z=k}V)$H&>})qqv5qp1UHR1%C?*a2AEe;b~#Yrf#P!^_PqKU1AC0$R@U0|)ip_qkfd zFu8IN7(6J+OHZX3y)a|UUiWmg$zZz1)nn&P9*4tS20f4O6-`>&q<_(UVtuS|?}cY* z=sVLd8G#93$DtvF77(=MU?y{~%xixt!98yLOyN%L&@t0%U+H);QHC4DU$MeE=P!)@ za@Sm`*SH>T`M@9IBi3|oO9K7&5zb>g0bj~ydoM87^g2h?(#e<#8FNMvg3Ky=YHJzk zwJKlbhI8U43%@#K*g8slS$&(O$yel+5=0{c)k%D(_DZP82g?U9Y)1!Qoe;VE3=P#> zTNZn#HF+lL!)faSI|1m#L588^_k4cEpye zmCf~^u1id$1oKN_6r4t*Nuyicq%Ol0hezjsrAwrWPVF$qbBdfEP#!l*xXp2KJ=?Cn z2q5Q@>SU8TzbQ*4{(Qx3Lg6x~^=nu#4_&w$y^zSp2oDb*cMTn4(`|@vHpB{-CE%4W zu!#92H?m|?@JK|Dc#L@!h6)(Cq0vNryFYeV*UQH>QiqT*>A7r7 zt14Psvee?O!bd*5;7JX3_-jYP?I!AEGUdV!#lX&&sn~bUQQp++QeJiN@>*H1+T7C8JCpkl=IrP7+HQYl z=YR6`>VhE7VsYf!T}%2;IYvh&U)n8A1`s&+5is^aF$deK2lhN`GPy*#zq#wO9Cg2gopLtuOZGu+A1}jW9uB3 z<`0c`)Xk-dm6^tbIl9}vUZ-Nxi8vTp#kmw}Jp6$sNsBV5tS*mCKpzo>^^K?A9Z*qr zz4h_k2ABJqet46Kp@h|N^&8VHb>w**>zi|~DJIsAiQf|5SIKv>_fWXb3{*_h*^mnf zFkN^#YVJ5q+{O>2`hR%^w2w5?a8A_rvW1{ZA5D+A7?e0idfB(l!L73$CeNxLtaFWv z%JEKY8n*6zb?vVR@nVpvd<8YV_IyCV`Pv?I!EpD*6u--xPKDfQs;By816na^gq-RI{6j~<>A-(+jz%QCz%D>htZ~iS&NaHe0 zJa|~w#ey6>I2X9q+#DU>Oy=l9$(7nPbhwiiPcRavUACDZ=V_cLl#f5zrCL1_Cl88M zu(m6hOJh(iakQN)FFbK^o~n;0^h7+IN7OkYBmV&B2n_~y?0B3ZNsw_VTb(ANQDYC zv&T(Mvo}S=Dj5o8?jt{Er|#v-PiIgo&rwsDi(@+K>n_)ql$tcSEpwe8ceYr;bzw;N zMGC`o*bZQKM{bwf@__(n{u-MhFvHZg+=YwFbr*k;Xog;Cnp%&IfHNe*x;375zfad{ zgw_9Gd=%;B+3z|IJgZXo-Ihl|f!R(|_m|Hc+1Az2O53bF*3+z3$Dsq*zU?v?S^DVS zS&_dDQFu;bKDKQ!4yishImbcdqNY#1ydvpq;?DjA`W zu%H$s+P1ZwT}I8kvfYo^M~f}IcQ$8!J?oOv<1ph-;x!9Lz{}U{o9dHxc-8TdF$JY- zb+24-mjBNP&;8)u(s%2zOq7?p5jr|LfNT`Ll<1&xa)Iye1S0u}dFJiD*J8d{pzD>w z{?QrztTdWA$RO-kH^U?8Ed1nhYYQI8zMj)|7&ct3pAH+5%V`Rqaft(%8I=ql^HO_m z4iTpE+&^bv5s9AOmI%clH?2b;uXUqH1?gNhVH7dEMs<(DwBF-HoJyWurhVOYCwll^ zGlp*xO1weRwbxs)jBTAzO(!=OR8teSHl)b~>aRd_>b!bJ+^)so67k^HW^;Pbe8YqA zAk%7UFhQ_?RFuVW;W8w!?5x%O?J{yl{vXO(m#=%lK{oGKGouk}pmcLRR$x}|`v1`2 z=KJbR$kck&8T7-(5u+i7Dl8OWf?CJxnGny92xCQLOq+{uz0KQeB-}Tnx2dvl+0kS0 zBD(iZ=-u9+^!WV|wmU8rE+a$BmU2FV!X#Naf%NoWAz|yPq(s#VZ4e72`IuBCC!Ior zTt`9-5`vMl@=&_hklO3t=`Iykp1s4CqSJwlrhTw0P{etPu%Hyv36J@J=#+1Zzl zp_CzGS#G``oRKc{P>TVv-X|iex%;R7KbiTU*U+CpCjH^#g+^;B{WqQzL9P9duKI>1 zRQQ3S_z>apgk1M=p3e1{H{a0g98F}OqCe`Z-&J>|5nhuBnbwl*h1}m6eCRyR*VjS# zXbffGaK5U2NA5w#6~_;gU(13Qm6mIGbFw?zbmwW5m$QBfag));{qDGpDu(MwtW8zg zD(-u@w8QDzE*~NI`Zu5MT5Bh3wEBlKyK^mKhQ}iG0!zp!Of_Wd&EtYxs}znYv~1$! z@A;!|0^dlXO?M|REc@}u0~`qRqu+C8g@#zD9pE;Aw2 z<0NtmW)RVQ~ceJ8;JOYOw_XW|#@6IR%+PMe{5Du+WV zHd!gm>G78D85-~1&5ho9hID7o@_Q>0sG^}SWSxq?w+)`I6r^)LYt=gu4)`WTTz-=3 zn5aY|6_V>HsYX(Kj0w&mqjOfMIoejk-U#MxkcS4bDUnk0@)7|1&feZ(rQ+^b9pFek z$H(W%OQek{OEfH$bHu6Fe(L;adhY=7lbt$)Y2$P#Uu#l)xMIfmDe3v(Xb>`8N!0124MxwCo-fq2i zJy1C|;Z*!Q0~Ze-Y^!ftn{ByNy{S5ksMqz*a|EW7ha1|yMkM(WCh6E5y@h$_{PQnj zO;?yfDk?Xzi9ird75<>%i@m2*RcFQQse-TVL5(EW#?b z4X|3+!Fg?sL$x`^uZIXNYY~ko*&^&wVsnc&Gs{2LL}<#Ur1gHT_3Xa;Oape>f@61V z^I%Iv4sj`IYqXvjdlH_f?(}NA=m@1{XKAi!Fhi#LMarzA^So;*KY?3R0gAyrepDTa z5&hOhErMRfd+s@uZ*N(qKc&V7NK!iC;H`&c6vm}q0^4FQ6vw3=AfrOwz?;9`WBhlC z2dr!%fw0&2!%v0Q=?r~6u1h^iEa)(&`qbVP36O+}U3eol0^oJF(FM%=n7s0-tnV~}EPV9V`oXZpV`3HcUQ!Yk)h0O#DuxTOf9P0u zf|(sG_5K%el+Civtm~T2ZiqY+emAr}cMQxS{RSQ=z&I%K$NGYXOmk6>>ZtFy2dH&= zH_&cZF*yD3l7yZ5A~iZ;;d~tRqIr1Y6DwaeH>|`W=5Y7`7+u4v= z4msQl4G%{qUTFDIS(ya3u~F0YnADl?VAr@B-^TNP%=l)mkpQj_G-JUQnE!8OKn&BUd81(iP zl=8H89l7K>e;at!P<IOy0i1G9WM%$GfqQ&pZ9CZhW2Salq^8NRU!t}+Y zM@s|kO5EgR;hwe1?N%1j9csZS!?w!uwO)*eNp5&3(<{VzRq0{6X>fq?r;i^&N=l7B z#S9T@)|%Ywb5gR!^^A(bhP0%)H>++HSi#;VXeQ|;hn^4MT&;4o%*jjZoAsJ0gv@3v zQJP=ItUa#{TT5L8NR2if<=xzGyUdgeaf$ai1C;4-icM{8(Vm6;^YyQYffj{+GL*OI z8G<|9fp!?FcYE=rjExn87}~3)H+2Q$5U#A}O)jZX4nmBA=ajgWVl+ueE|l;q7LmNI zwDzJzN`)kqW28B>?=bl$mLWFOH56u>E*Dlhx^ZRQDX;Yc9LL7AH1|OlDJ*E(nh#{4 zRi6zHU@I){RJ8{aX*z)TK&c!48f1E^H zSo!VsD2s0}U{3u@E}#mqP$%hO-VqiuA$O#2m+5{XYb2Dq!7eMvGjUF-x?nKM6K>0s zbCJB}HJZj8OsGRZ%O=NXG4;3jzq9 zH-v|-5|waP<9j46Yii&6=nc_SAMue4dzA|#|5b_ZiqOtP9-7?p=ZKgo2rSSCYwK4X3D1t;R_gXI8;{Z>noaUCvg^C+!=Q!6MTzU3>Pc(k%$>Kl-L~g zE~^wB3-c0aKIeaniR9JgBr)FsKjy<>>}0bJyAVax+CK@CyEXOWaR>FKzrGC0dpNIv zi8JBXveL1Nuh~A#l+x7(&Y~dwcY+#^^^FafkSNQHa!u8Pq^4RcimTH$OB#v$BBL)v z64z1sM@1y~>$f@i#2^;KVI4OfRWT0}4D9cD(RTE&@{R{aeZ|q4bize@`zuPFlhjlt zKkwQ+2Gs%X+Zj=1A65oy5``8Y@5xeK-O`9R2K1bJLMimB!4Y4K-|qd;B>S5y_z%9N zCA>%Rm!T57E?+U6PGT90ld9H59xKxq1HMU?Hsy$3RXzRf#*F%0#(l$%UeIKcZjh+ztA7le+9c>mnEkE}y<9v(!gkl}7l0Qns|H<@N6z#fO zYLXp@%0D9wqos-IWGuOA{uBrgAk{!pA2g{dhz|ijt3ya7iQo zXM6gWhBt8^?N8S~l!SX&xpCXAs;p#YW!basv1r^~iiwCY{7l1pLwzWOA1qR@#k7aF zAN3nV(>)v(#bW8Cs>oZ_Oi4rA%4AMakFphY$VVgpZ|2cnAtLR$>D2z5pwa0i;<{zY2jkwn1wz1nknI0aO-Gf z>*ML>Y>feSD56pRVmf8=rxvh=fGf*WuR~|xk|7H}EfVJU*O{5mtMiNK?ytmN@x5VU zN8^%{MaKX`0n;^(4drEBad+8vCx%<~Zov6AWm&y1o=Dy0rMYSgZzOQgn*EcHn#bE$ z(9Tt#gw3crj z$+Lw#{E#kbzO%eba&Bo)oA?Dv(L9@=m4kCUPhxSgTmZV9NK;8I(}k;*rV!3!vr;iK z)3OJMOj9GXHvfIq6B-GjKI8)daX|v5?0eKp)vhG(%Ljd2k7~Q_q+~7Pux5~^qmsB) z^0#XCUme@69D!_H&iPOvw^Ro_S!lkDY#t)P5S!MuC8sS05p?6x@5C@7fU2J@pFRNm z6im34`)t9Fd~(_r$!;o?oOkWuxf;w_nuj$rMXx0lyRrrP%qRf^h*A2aJ9&=U|Ro0!gO%57kIp|B4CaEU zMP!uJg8#&u)o3^sG38V6{hesZ>2h~vO|?OBEei^icYmaG1LhO`R;lil3g0hNn{kHy zqa!#l2P|@gVFte659cYz1lHzJD|wn!ga9{oq1p+LdKn%6?@x?X?5YzM37ik~2X**i zwnN96ZLPE{%+j6Nad@@oygjd-I`R0$P{6{DVo;KLV_KR(HScZQ z=MYYe85ZzFO{OsmU3m) zouAb$b+1E?ailJqxVX01Mu$puv;e)N$Tw=NmL|?1p_Cby?1`khm`)`19>1C7mA%~p ze3Ot&Sd?T)Yk5M&1ql4i1~PnjWHFV;PcAN8b?;}i5^$0D5*^pk(Lj_vZnj~%JW<{; zkPOqt8s{NQ+$v72RYO+(0a4F^*=orPRmm5neaz_bY9gG(d64N~3g;XxxZ_XKI~|;C z{ed;4lY3$ch}_I_5Hl$OIM9!o&Vy-;`$(Y+DtGsDBU8#(Q)b~%#x^CrwVkKG%=$Tg zNSY^VcR}8Kh|B=O^Dru-sEJ=dRBzfi)_fw=^kIM*M&uz(<&Hz~S1kPU^&UU;eQrc& z+4lujPX*0IL9$SNCEwL$GC^w=RNdOb8f$kOHVam0R`)TpBGi`5%jLLU^jU7}*YBOp z8t)J;^j-Xy?=G7WS})_2E~!-S`jyLFBz3M(j_QLA*%!mq;6Q2|_5>!V$8To0qLkn$ zwC>UuJwo-vpI-B_VV7-z-bzksR@gHM;KQz5;=|`!l7TSWz#XF8Z|oGmDLR~4yXz80 zHe(I^%(Op`H+$!`c{#VxZ%SixOFYYgRiaapP$4q)6c|7;2`+#El~t95wKq1v-X{=M z!C=8%v_mF-gFxJsj%!xhIUK1;6r(LU7MoqwD3MZWIMq3`31_y-L{ zP1U;>Zb06K3Q}l!GS!F~ID0K-ufF>VR95~BvrU@Q{%mPF6=S@Do(}CT0*7mC6o|0PdXmAGZe{Ql)r_^~Ji5=q_SB@1(66vN;c4 zke<|r$OS&nr&1k{0cko*?P0<_|MSznZ_KyYDpZ(lbWvo>9os|Nry+jLqJUM3o`6j| z?k|;ECxD8w_Cyq#YF-%$FV5g);k`x#TmL&&3N{p<_{B+*Y=59bH(CMp6BEn+Xq1iP z-UlOTR@Ij>?aNm$FAm7BC?&|1p6-xX50&$$W3#->j|n0G>yak+TCV=A?gvz|TRatP zo`I6$2MS{L&*mKX-LjTJ5)-Hfh6V2b4G`)WXu`~iRClb-4XSf{;2;4GPwhFHTG=ly zZ17knyH^Qc{|QIVUuCJ>LzC9nr}YZtE1gsJb#H%3__cv`dshtp+9}DPrV4N>#&7?P zO52<)q5IGwYg$^`gt9%545*0BfVf8+6{9MM)zQzRYe7wS^dp%F@F!HFiFUa^BlY58 z!xR!i(YTc84E-=`&x1%EdC)mo?VG;OeR%@8*4bh8Vzbe0`IdeQHx^^AtP$AtBLOe^ zV-E1zSt_E!)WvR}&OqIpek2YHSY$E1HfK5o?n07uaA0GrIKP;N1F?rC?aa}H-TR>r zHoF^FOnk<8egg~4e>d)NR}*#($EJGot3C z_ym9Cm{pq=J;}+*l@*#Rm3RP?Y1ys9+jT?RH{f*8w8<6)__fKQfS-9KnDF{-mj0*h zTx~o12?m&B-th2P9;N0a@qvuuWsUV)cx{P5!#VJcdLc&Nrzzte5LNgGhu=^)D{JJkFQHH8<-oPM$&v`GlkP!(9iH%0& z1KA65dI3?v8QypQ;fDH8#}qwY|4%KJaJY6GDkyZJSG51heIN<=!EMckrgn5*+^!=F zQ#b?!1kyhQUv;q17^xq*vHLWrN0p{OXJ3N+iYMUK#z#1BWZs}zNd;2p^71w*BRVJcRXZRT%6Bj;U;2BlyOG>DHD9K zD5}UCWR)Yt^+EmN6)9=T2?I4=nD0>(FiBtbkFX$LkqQP@Vvu_r?jP>;_oe;(Ntdsr z$<19P?2H78zB&n4@l0|)XaCZZCdkZ0TOI#f=do1E=6ypXG68pi7KEdo{iaY8T05sgLX0 zM?2i*00e)E&^Q-$e`v4y)9mwg%gV>oKuQ)dLY}k z^jE_NI1CT~?U|FF$^A`J&j9eI#itqIMD3E0`%Xs zWJEUC=ZZ-Fsd`)iq6hSYibfaI6PF8Wh44hWSJgX%?R3wW$#w8_!wKN zXYiQ-%r%`*k!G^JuJMG?KHM4x`Y|HQPI7~-ds~w9}_0iSn4Mab`k`OD4URQlvR%}935z9;Llsai(U`SXv*pO7UW(2I|`zF(Udq> zOjwBRkfzVKsy}XMW|k+lvLMetu)y7Mm2v?#8e}}MJJO=LverQf*0+04NKfZ0_X~MA zvbxIXdmnmDsm2okpDXsVvHw9$cvOl54k)I2W~wXWPmP=A1DqMHNjT(AK+R`+5kr-#fLBkmibzoKH%Nix z9t(pIS?SzD^7ruMds^>DsMc^^&$Trzl-)!Lg}14qlr<%@oSv-LKEh;V98O51b=QOp z*BkpA8=ZX_%g(-DwxtdWiMI5d-)kuB?wXMwrC`?9yJ)@^Exx0B_FZf+oH@|tRX2%Z zh!N{;wzwq`Qh66D%6Ivj4X@)>h<<C)>CDwkwG@YP#77I7Q z)S(8xRY&(Ql=B{s{?&RPkJEa6IeMGMJ1Ut9hx1|9PTb%yo z>jr zAwh{S7Q+2vxq3SFJ4f{eDADr$`g%Yg{FiOYTZt*T(m<`tt8W;D+z>!4RmTcm2M=Uc zCbeIqa97BM7KdvvtHC3rsoUvv^}O_(aXV36yMN-(AM{tf<%zY z{ui~2bk5j`6D{jSo1t86>+$ zYmis$@0aGk5AH|dYp=VY59@M-Gn`2qDKnpYU-FQ<;v@B?kdW_sFjZUf=I1HAZsuN3 zT~`BtY@^PEoZ3xBj#`J$e*o_mag^i|5Vd#UqlGWvoLwb2g#ODg9&!M7PHb|61pA7y60wUJyFuU znBTXyvbLKl)ddB(kOV{|y4M|)37sV@^ZJniVvYLSN$c7#)68iaJ!f|v{QWI-j(tGiM$E)DKIK#{b{VIlsAYLB$k>=<^F)k7qS7yY=5li%0rzt(6gkjq(wXS^-ELvbtb^KSzJ#B3hv#Z{KJ;Hl zB%pq%dmXTOyJ=MC5P1GIdf9?wQ<#h%(j616%XyEA&w>lO_=Q)QNEOIecyYdu(YplM zw>qfB2-P&)Vq(?pJ2&3p73It&eRRgp`b7)_k`}|$_w2+7*TiB{Q+|e-1=y} zU5Gxm5-}**dU-KI+vkAoMLm+;Ks`&K=~C{UXQPjU_mzYnQ&-)_j;revJ*>3Na>Ss3p}ud1f{n0_o7!%dQ~%$xmxD&J?do~+r6PiB-;u2$ z^&rubnw5R(>2f0ZB|RY5dx1xxg~O0IjS7>uy2jA)q{jP+f{8a%I5=EOc zcp^xb`#+UEGnTF`zZmC4gS7HUhVWL7MVn>iA7W6nJl#reyJZjBk5DXlPt{7tb>k zs^x_grQe3lfwfOxiSR9+rdo72_~OcBL@2g=PX4%Du)AcfyJfZ(V?vudRoT9MW+=fv z&%EcX@qbhEu;?CNk&=ClgBzwiHNlsZC23nq`*#ik$2Ih|FrGfw3VzI-lEDf36<*wu zuY$tYd6j~pbcW*nOqSyk9fA$OG17(Hxgn8N&i8;wD&4`Vw}%EOLD3F+pm!BhJpEwS zK6N|FN1#n!HQGU7~x4TGD zGZ_H*O{=oy=`|ob%wYXhNY*^%Csk^Mx7SgxKq^NqNJQ-H#Zx##_5UCx z3HcBjX0Mj`nHte@qau>Y6X$wQA?ywg1O1DtHXbh#t;n-qcmc;Tf8m-+7?5&>Lu;?i z5vT+CiF0|As*V5+6mHU zm{W4G`->ONLZ>I{;e?bj%tZ)5;{RWy4F9K(j1!ue1G4k-AnRRW3UmWS6DA6=aL~d5SYLd{BBrJf2GmZ&(55Yk{Ua3O>HU z9U+H_lObn5{4?hTAty|lDZs2#gT#=wVfHjJq| zW?Xr6a0Ddao)y16@ACl8sl`q7n>!T$#+zz6;RnkX8R#2eJsF;!pAR1%kA};jjtJzb zdd!t?V;wR2c%NQ}Z*KE%n(-|+1qDCg;I}ujKEZao&~DQ;f$^UF4D&9ddTF^^oC>nH zFeDH6B24lU<4a~2$t;9v-23@-Z=mkvQb6=bOFlO%zTM3oLCU| z2en*gQXCHI;Q};J0D5}*;)>^)3wk5^=ctBX0OZ*=Zad4;aGUnR!=3f{%DQs9Hn2je z_lLUF+v$;I9$@KY^PIsAo~Fu$I!FX)4%L+g5v9(Y_q;6f_ep@o9Qz0#tRJm3f`VJ>h%ss#X|^?{#PF8$9NZle?3HpdH0V_=zo}q{j19Y z1^=HV{t+?#-&Vtaef(P2z+krNxma?+=^gF;f-)cH1C$UXT zOpM^yi`}W|y}P=)0R9F1Tt4XI$B(`6o%g>lXyf`FX8NRg(9ojfG_DPXZN8QspE%TT zI;zQQ$qjm03JxFYhAbLvYSyq<1Tsf1%W>U334hn0kMBPdo&bhm=xGQ3Mfi$vwB)*Ln$IB6qC1 z+ave^ohmSGyZF6s3m7P=lQ% zP)Q}_b;)j=Nl`%fJCH!7@;@NIfCHWv$;2V!V>#JY3A`lWu5vmOl#pr>v0i9zc{clc zpautY*=X%_rQE0}v=-vp zVd^x=i1~j;i09+d(nfd-@-u8ug#r;OYX{MzrDfU-6R4?kwx16 zL4K-4WXkRApw`6RN06V7kPv>01$RB?GjgDZGjs<_FK5~Kw8^Bv;NCGxIN7UU^FYj4 zZ)+_;qa^+sy}}G}a8O1uZm2yrZRU;BHb*gA1;sn2M=%P=ZvW1?H?CCQg3kXw>ipEv z7Om+JelBWkbS!hjJaOsm`%;3!v9T-yf!{@6k6kIDWV+78RLi$-%qI(VUKh7K;6n#a z@9pp|Zad0oyTEJaUU%*74zPNyVPXq}Nz50{Lp)UQ%K;it94{_wSJOsI zBae0`8dSIp+Mo?#s6zc7$;&BkHM2Rj1EI9oObQ;~A`df`>ay+`*`fh!e(!Q}6Q%dn z{kQJV2s};o&_f@AL8$ZDXPmlwMK!X$VBVL-)awmsHK<#cZ77)=hJDLgL_-ugQlgZ- zpox%drVVMXxZ(;4vH#r&bsRm!W?hK`YzYGCK}~|ozb5{n#V%E*_mOzbtKn>b_4!3S z2U14x%gJW=^JneGS8q<$j!}D);n#M@VnvdQ_iw&SMP=nH%I6gq+d#{i=6R3rRp%!o z-kDeQ%p+&mWffrYyR3zFs4soEmxao0;OJ^Qn?HAu;3PSeDkI;ARVFLpdrV9$C7L*6 z`fT1(U7`cu=QyK-?*b7Xz}Z5MM13 zpP3fEcLkGsyng%|`4oHdG8`XAqOEg#r+FVn1U%fU)i~2H;=>LRTa}sIS~Lb@qG(4e);{Ue(iy>qiyop z3Rhu1cemCIeST$jR;l=5T?6+~HLW^gl;>vQc%KdEkMGdyJP?1`F8a%n9^*lr**CkB_jIyd#$L8hbsVCkttX6H#Ph3O+!=z{R_ZdvpuzuoArMW!FF7Npg8QrEX1^KPi6B?0_BUS5ta6)6 z9_8vkaOwC&S0RR{8*6S)cbsY}Eyzc5oEWpVFkA8@fpsC68OmFb4fijv2&-KPUrHHy z)U3gU+c09<75NVS$sHb-N%NKb3MgUHTG{5MN_|4h?fNK2(`;XsImeg?1B7=8jKXB| z-GfbyO{_Nem;mfss`)!J!oH!WV^JMFUL0s6rw!?W;%RiqY)-=nvd zrddb8W!_%WYHDiH7~g8PbnClnFp(j_!7CnF7Dv$8*f@&qrZ5;lSkhQ35#D0gqsh{8U`Nin)`(fG zTEG{w4Hbi-Rv2>9w@Col=nq4+$+Z zl<4~8eyMODq`w$`UgOG)Y(9g^JZ@{am~_IOIzb=sPXrd|J+5PN7=o*-a2a8mIgH4M zGM581MwW8iA>Icqx9(-w6#Yx$+vg73C&t zPl_vFrRx9ZH zyQ9bS4V6ry-)vX|i}A1#unJi{5w1f+2b7$46Vl`L;KT4VIG3*CPy8p4ou`B( zFJzd953pwMoK3F=JBRY-=xzyMNlBkH*bw`c^JdgKQ)ffZO~Dqs!!;{kX|by2Jup3C z^N!yI>MxE?51}AKQ2iv z)an6S+;{e*cJF%jy#kN@l8-R?T^{e^2=;b3W_VFG<%#e)Z09buCq+Z!b669Zq7B_( zoY8`s4hs))I4-FVek{+NZUSYvn07VBcLV$&)ns3nt-V+G_KGV=N|SR*942fWJggG= zH3q;*0?|iZXu=UN9W3w-pMQn#RAPWqxVpM!Ty2?wvJSQzH2F-##;?TZl1-H>z`UCY zX+AABSCs{P&A`h?Q$U2pXUcwc=HAoB3%(EVVXl`PNR7UY6Z8p#hw5ONb-qHKIRYd& zG8*pw`{$FHr_%j#`{8ipz6IOaH3Vp)Pcv1NE3Qf2UD~|qs@$NP^Ikq6TT0b+mJ&xP zY??Tb4q&VFVX;4aTb#ypBLZ2xLQwC3jqKXq9<<+7c^aW(*k0Km4FpVSr}Y*A$9lE< z`t#HiFBlLz9?4h3Hb(4t9oNK0QJjzkYQwuLrC4qBW9kF`_ZbSY_nZF&&{=C#jn*Gu z9@hL7yw*@#77tw3cGTn+^@RqzDD0Et)pR1`K|R(Cz~0)xW@C|skiSXa)mb@?)z0R< zm5-0m{`%+XqfNtsxpyJV6^Ih#3-!*XFClmG>=mCD%sYe{z5KN857<1ZJ@^}Lqkb2K zg&}$F58}EEKRLeSstLX@jyV!9Z#m%4no0vcI0nFBO>$k=^7rN8r;2N2>O$bdXJp;( zqh`A(dS9;r@vD(e<)gccBZ7nS-%)CKczB9)Y2CU;rexoy$F!G9=Y5!%m=*<}o&iQk z1ZMiylzb6;X;$*{us5mv;A&?IIYRa3Wtay0w-=k;;j#dcfqb$ z`PI}FUy~(lgWw%Fo%wRgR!74pIv(yfV|=A%?xo>zo?zeMW&FRi028!5HDZaRL*hN7 zDLaP;7b(bQPbEPAAcpu zr5bT;1e*TsvG(E+6LM4QmXUxSbTFeaPN>&(N0#u6?uGx{ zK?Xfq-M%N@b=kRZLpnQY=R;qbWj{aZ*N4&)`VIb}X5?KLz()M;ns4!hKe%Sj{#nSH z^~7_nTo_pzOVk}OXikh|=pJTIf+zvjy~jm1eD?U6VJO@@Owgw~*O~*j>?Vh2smow< zbFL`YEe4*E-=DqNmzuqW%bdHh44HEe83r(NKnl@pkf75h`E}wIRa%HBb3i`)^8L!i z5aBaPd#UtT)xDd*$Y5)pv&AdWAcqQEXK$Z$ptmeh!tdW=bb_UqsevgdAOtlqOx-Rk zKI_`d_**rE?c68$XJ?e@;gzuFl89P9Fqg`nI018N&N@V6>hkJ%M?vgeVIm5swR;&u zKCNkVu(rBibEZN{Qm#Z~jy~WcZd_}H)ozS{Ld_bU#W?c?AdqfDwV2PHHsit>MrDMCPzKjKLNF(1_1C&O-lS?Ian*Q_Ob2N6a5C96 z#M{V~=6Ri|L*Xr9L4q&35kYmdgYPhvEAnC94TS!JEQruGecN=T`u+ry9vN7?M=xwl z?m7}3!LfiH*04>mn{TK};>X*l`PgIDa(cghKNjuV*&Ry-h^2zwy@;iX+HN?pT|o+v ztOCF91a#iYIDSB_eDxgZe!^Pxjnx3N#olo5#q}5Q{+FRIZqttWGny}UVL`)kS6UA| z94GB$M7V}SjVU`z1^%O<{%r{y93v+!P6bBh8Lk35S$_>G2KF6M`?3>x6l?9M7pPi( zSp&XMARtPR0+5zqsgU>q;dWJ-;-fPSwxWehhUEv_9};c@g*EO_Iv2l(om`ALtIe1w z6v}yPH8~N{qGi6`2On_Yw}hug7UiLhmMkfZ35DuxW!7g=W?nH#efS^*!t#1l=$d@8={zPyd6=`c+pX;^+$EmaCGVlk-h7*H;1}l$VL{9mv zF=UF1_<(Z_Pl^nEJAkJF-dqT=C1T}Rn0$b@Rm;KW{yENKZ3kMf)ZOc~MqIrOdle_^ zerkyPaHTmv(;9cvlOW739>;-r^I6y1@O~|8oD%Km$md3Xk9d-WT?|3f?>myKW!yrG z9syhGqG&{vCV_dDRWVn~A%`@}(O=b+w!Nw~3;RIqH3;-{m+gD8iKtwYxGIB;Mu=ua zObph6#r#f$?hp@+{Nkzke;Y-Y_pk2EO&Y7w{P`DE_a4`cWAIUPN zntRfJQtj!u4MftL<3nHJn|q=>M<$O93VKc8?`Ao;YZiXIG5aLl_A z>~{4dR+_pyX?X8330(L1zwqT{OTwyy`=|$F1Icw`D`D5X_WS*VT?FITj{%?mD8D*h z{gxIQdn)@#`?e!z^!A2+4K>$FP|-%4Nvrmxo6Ur3Su!L&sI0Q62#4qx(ePj--k+H= z?I*WgJ~^)dx32$Zh_2z>*^DDc6$cPWEB*1KZ))MPJ#fOj4+Zvl~7wGAahIx zQg0@P_V$X7O$o7I;$O2*-D8lt>>o`BTc6ShVx=Mno~)kMQVj$PFcSot{!014U)~^W zFyY8j704`FA~4CzX9lR8jp~?L|LB_bo_*<|!J!XZgY1RkC4OKjRsOyo#f;R!^3C&C zR8U6)C2P%lO}L2r2al1^F#XJO%HmwoI`wM|7B^U(?4I@!Uk=gusP3gf0qkb!&h*^{ z=M85^$Bx?sn8v|KsSz^VH{9%`Bn{ymh4JPm`)sg@eZIT1Zreq-y>1RjJ}H5A3^%4C z4RL+>oplM~539!^dCZ$0hh6a^vWs!(H@DB`y=4lRGG z915gqGAI$u0K4+~fx#m1!4z%OaMDXFVm{KoumidKr^Z&0SUp6;fY1bGH?$KkNTd8r zfc-}d6o@)2(wjM?b;cHcqpNhSo5k&?CcG{;w|JL8_l1ylwDv=&W#9^#unN?wkq0^K zK{M)HA*KfB(0#b_0*IS z8xV)4ySkU9JXjy!QA{PdbVsCm9{PG=vhk?mk`5D5*Knt~C0Z@JGyZqUs?+?Z4eVaU zzA7sVCEXFUmLRXI=edUS+Wdm&C`f6d{;aqHIySc!&^9MIf(GAl4q3Tc+V>5*47`gU zFDj}kHNKkQ_%x6+$x*{F_j;Mv zYiqb^)T*72iu9Ag)x6-~l4~-86qe&<-csi!v269}U68Z!bjofY*>oi{d5ULu@tW4> zSF)yulw9OLf@56EuRF~NLl*X;@-?jSR4$4-b%xwh*?hvT&-lQs9Vw1jfY5*8YC88NP=)%K%BL*kve zW1iC{S9w~*?9h5_t86~*)w<${HLsleei8aNJMBEte5xVc%CE+cgZA3x%;#?@o=?nL zR1D+(G5}L9K=G=9GcvCsJhNlzhu7rsKoMJ^e9wtQ;?G9@bm-wTHcw2f-O>8jARLOT z(OM03S;Feo0Wy=;x@6Z@yXjwqIiX4|V_a*#;($5T_81)y6g z?fZDaalSK82UUV~^EPJEc~IUbr@i0QC4_A)Vj1KnG{}=%fGh65a=dz2N+}sh{AJwu zp>`;wa(CF#(-qe->-EJooq9bD#76@xJH1 zf804IpOfAFl-ZrxnVs3$U4Ho)*?PLBxGotd5Zuqo$e-gHuI&+I77${5;2T=EyHt{R z35oDvEQOd*J^C>e_QbU=deX}ZNF&yw{*4^VDnAjF>H&_eH!BfHLNk|y z7ld)56PDgZ%UqVz_lKRrv+Gh4@})FZ8UZ7e|@0upkzJ2 zS;!WA3EiyuvFjFTTLKhr;g0FT9B{Xuo|4>&0$U~R30Zq=Eq@M@GGp{)<=()BhhIHA zbLV%F*U9j1J&D-ewNhWl2p6XKw4- zgWG~=@JbVK-;DxRaz4Nz;e~T-tJCP+JA%Tieo4|mx4$9OSd6#mS8@;qT6y*ODyQO? zwYR_M1M)4ih7G?Ax*4T;L0bDEi)$ENr=Dgf;GO)n6Nw@or2#d_g zof4;RqzG~&liVP-u?l`TILle}O9nFMws4qVQYFAE|9v}~Voh%rj^E>oJEA|Bdzhnw zIvnTaji!RTe6fo$hcHWg{P|NWR8#(gXT}%xk#0&3QPGcSG9{@(!be}qM1Kt_D5q6| zV9K_(4+FRRBvT4p3OIs8L#sFk!n^Fz$cT<>6cl+*gy^_M4*wIs?iS@@*&j|~j6!7~ z?*xIF6yfsP<&|NioEHCEO_w;=sW?Ig4DtRmy%XJOA1}$=_8WzoY()LhcHY*&i{f>j z5{AhPB0AWv2h=8CxH4Lq)C~=*0YMIRli|}+am11UpQ zg36yX+GwuB7dITQsarEvm3Q>@g33&~(qBo{QWz|KSZ}>sE)@8~ zAvjb#|5QYSzlqPP7M~SMMa{sV+HjZ2XD0;h=E$R0T?^c}QzJKc4a>gaUc>bII!0{7 zx_zkR{DOU)@l(_x+V{cFAeZFroYi`<&LhH-bM^jiKdFD+3P4Xz!|2@DQQtn+_-U4k zF+ShUH*|*a(SWPNgx%%75Sr`NNZ<7(6tq4jeQErsx7sbHK3|)fQn&R4|3fq-VtUxe zXZ2kPT!l_03OHZsHYaP`lL+5P@|=Wr0a2R7*VrClwgIQxGL|$#UNSeB%YWyk0@gph zs<~->o;ZY3VX|+EHnN6^jFsvOfy(>%!6pTc5q(8ForNN!fVxoNv|0ZyRU;fq{JvJD zpJ4gmOtNJONy;8gd`@wjNhaRj#qza^%5s{%Q)-RB6yj`L;9*@Kw=F+yox_3>>h7jK zOl)T0h5HNxk*(jDZZtD*JiPA3BJ(V`BPHdj|Ltg2by}NbRJ}|N4sm=I#Gh6mJ|cefV{B;mu8YdKDd=1Xh!)K47qJ zzB)bmm7w?cSy^=yO)=9IQUFTgYGW?FqK`So;jd%UI3TR7tj|Wo1`miOI=Z@*(_4|w z_Y>07BRdv;{;5i0D^JFe-LOHu$x?7R5zm?HiSkXeWh$WiU-oWMQ*%v~_0@SZQ7UIE zWU;uY5PMZAbjx?LYBJDq-L*vO&1$5XJG+7ceb{ep_fBi=53SZkho5(MoZHc;6SR4O(KIX~$oocY0VV)?cf~9!_m}nE|BZiJu}N zHqLWnJeyZj78Nuwk|};~lM>p0u0ePQIzNsXQUIcRoLvNu(d!=c2c*j0yaR?vOH=+5 z9-G+|td)1?3$wsFP9l!|Mokh(OEP+zO8K3`cIP^bV|9LTNQf(kP|OH{jfln4=dh`p z-u9RfarJ)g>Fot;Vriu#TF9&PIN}1!AtzD13Ar1frNoK&5apd%+HY!!!#j1yrzxVk z-UEM{HqYcUn{&#_W;zAN6?7D!svIYUuV8&Hgmtv1=mxS83tWT9gikQc2LR%Bw&!R3 z$_@R;D8`{MZ4m=k^A3R7@p3?83+D2|!h-)?v3#{S;8OjrRY*zlEoSD}*=$$JoB`_& z`{qRlsXp8$CE@ z-!?N4<~|l+2bxjmc)y{b?BgQ|It23|Edg&9SZew4$+WOcMV}*KFDDeRXTIqw6_rhA zQ_K$EVkSB$d(cue?V-`eweKArX@`eb|MWW1^`^7m>=@hB{^78R zh@y4%1@lV7@EF;r>pJX083Vy#0-R_4UVaC7R7g)cQ`qdg4(CBVeoPcwUQzHKu6`k! zUOdfaL$70?^uhZ2`q7n3?%W*m#ZHuAr2PJwc9n*invhK|8LDsV{og_YwaYENYX`F1 za{?lKCblF2^j5;t&UMp5Y0ZKe1EbDo*MXyDnZ?`nBhzl!u7yvIX}4&5AIJn`;^Q|O zzKVS0Uw`V?7^H+le(GBSy7Ka03%XD;IrV|)yNP@ZG332F^TRL>29>xQbvdk~Oa)5h ze~tj8=IVpZVU~=6?lmBIxEVjc9BnR zWTm(A%|7jf<25=BYf6CR$KuR^=#)`hHN21bhC`%% zjfHTUn<;S6xz6U02ka<3=_uZBEkfiaP54TGn#kx^ZPG8=-m65_!4>Iz#BMAs;x=g& zn3<5U=r*~M4aM#`@J8~&zj69kOm8)CNKSG-_U$p_ua+yDTIkJN5!k95u!dXLnQfML zyc@6{7z?yHw942XVKZknAIM4oLo#wAKwSkq*xW7463#((d$UhMOKA zDap96l6%kj76=FY7W6OT8`+d!zI^%l+DYDC!(^Ix)(9t2HGDJ0s6#sz?s0KNkdjeq zHG0@RtG^i@9i8iU_=~7THs+d$52qijfL8MiJ+ciK%!%|MHWiCd)E^$j=Np6XgxgBbSSM4G-$V{QJr=fHf#D$Vi2?)5vkUU`Sd$5T(Dc+e><8a>&Uvra>=T6|U+{{L zeC}CwH2z@4Shz6nA7nK{4*KP9jD)rz4BW+=c(wb>ukVnbzO8-bEpwVEy4vX_zoqc@ z4w%iIPo~2079S&@)j|JGp=oVy?X7s@N9K8c>YxVIcUtPdhf|7**TsT579PGXsK^sp z4|0yiyO)pT=`nh*hEbOObrB(pb1D@T(39e}OcK^DZ zh+iJr39mBTXX=52PCwupYuaZ&@Bv~KTi37`MZ5v99Bn&XJKeFInF11nEPxp-PIYm> zrk}#{wQW0n28@Z-@Y-Eh z)VmUSA92ve!EVtb=t752)#nX0(%a1ent$3W*PPn})iFgQG;5VpK9&I$SqgMnRTv^O z-(Ad$gIFwe$3&l(#EmFIdAz{FK~1tdb<$Y9Ybs&suquFW8EeUDywCSe= z<{*I#50dAy=K^w2zhI##3ED;o<@)%2P=w^$JcYRB&wjWOn|}Yz%b(61tTq&A3JvP` zOQF8(s0jJD7#r`QVqIefQQNNGp!mxWQ0uMfl+#X9&yC?rbF}HalW(Z^;_qkLJ#~Khcq10!hnLMP@m`uKhLZDDM+_u>tV*yKN%ow=c>AlKZxKP=O-w(CRFtU=EtSMSNyaV4-9tLxg(D*!#9E@#gZt_3yu z2lT#a*?{@2s{=-3DxP z9^~5CGP{S9`Xedg-Z?Tjcz> z1w@-?eL?F6AQpziCYSsPATsU4Ix(fAgORXK_xNl)>^jv5|-O6wCuF?lY;_} zuKcfdB*vXtBnMcMi?SI>J#e+@_sw;7S(PU$VIt^g-KkRWY_30@E2`KxFJq4<)33l7 z#_>pttiyyETDbJSBUjwQ*wXYc9a;Q@<5D#Kn0uVw_st!dIHi%V_DaG_6J;=;Ji<+c zG=2)?=5}jH4Or>5{@yXh%dC8h!K86d=>VrXvo=9T&e6|-jJQ^9;HpXhxA!eqC^fz#HgEO@MYJ?P@SV+&m5L1lsm~T#)&mh=%khG@1*pzbWHu5HWxPaRn=8+~rF z2AztV)|VPqnhYA33XyM4g#`#j7@Wb2__98FfIqLn29ni1{FPYhPQ*eBq^Ug80bg~5 z-X8xG3qU=U>{8HgaX2-`YbF@=*u^_9r<``;2GYl7XD6xtj)m?|f?eJ84bRguI&#F0 zwT1WX0oP`KS(C2LcR~J_y7o{Of7_c?>Q1A8&>ajcCZ0w<7ZXJqUbEU94Yv5MDP7~( zzoh|seZX11v;%37Y0MYd*m&nJZ{-_nb6Px_?*fw-EeB5rp0G`1Tq*q};0W#&@=Htd3k;M*c)PR;T$|Oq?tkj*v_!$;^kbAl*-h4^rh6Yxb`H#tvmmH=lPJqwNN_<>%25dv_?V04-Yot(v0Cl<=4 zijr4liY$*dKMy#{_+it(9lnEuhpK(Ia~H6_AZqNR8`hyaZhNYXjL9ecmK2P`^>#Mc zOpW>n>*o22T!SX%sv2_b*|Jm2?#H8I>&TNrOt?nf1usozX~l#wh$#Wg?(F60{4rw; z*d&)m)hPS8BQ#DJvI@!^l;#;nl!@K&EwiF|S+}ur5L?$(w6b^JW#KEfUz0B zmer80Py@ce$2eY~S5S8qe%u#B!KZ;WWw9!tC*EO1a|fxXbRi zr8nA7e*Y)v8>Lg*lE9%2=Cg>=AZIr-dO8l3<2-vM+N^>Nxp9$4-1-R2glRVWZG{m* z(!f>#xV>PUEnsu5ve{F5ur-(AWV2+NEZ6G7sIW7gT<*ss<~Znm4whiCxxAVpGpj&I zlh$ZOC%s#8^T#0UW2_X*5z+M~ch;MHKI_pC?QI#efLt&AmaHq}mL194j*&fc-aH*3 zr@>u^(c|l5JMGhwoJdoJIHz=ts8Ct~EGieS>_7Bn%yV-msp~|kb9J?;;Zz+M_xgMI zJ9RoCLC}hE3-%g|C-~CS3x(&f&KAs1Xnpx!+`$?l&``k0&kJSm=V_W{L*Wji|G~1P zjOiMU2-d&G{fV%jq&VCk^^`-qpy!3z_Nmxn?Rm%Y(CIbN3<1>O^+O-x3DpMQw)eej ztdB>jKe~GlR?jpR>P|2wzWKu`ijLRcXAA+q3}xI$X?#A9qCyw@7dw+0)j-%-&?3~{ zL=C8KFSh=DDu&VMU>X;!-*-M4%-%O{y;&Yu;di(bY*rut{P7%7PG`kr+Z={coQS!w z#*~@EaQmhGA1W29U6+(vwQ~MA@D!I7gosvzDTAqE=6@NjD~$Xq+rQij`O_ZM@y0Ry z;Sc`Gw%=a1hm-#jF8@nnE&aC*_7|Q7BQ}3~6aN4g>&O3_`2VL3X0BU)A$l6bGbo5Y zP3qhKB1nA3ccL#rI8Bh@1_JMKC5&i!@Lu>fy+!oVIH~+YLY+^k1FIL~4|raHmRgc% z0=V|VeDn0wo;+m~aoM0INm!!Xck4?I4iU3jz%EIYI$h3V3Q4Lyl45lEhwSww`VQ}G z!!kk_g-Mf`2jH`2t2-UqBtBq+rStr_&q{9xHC!^hBZ|}wn~y@vMiOpyec%_U7Gn?I z8wu6@T#wYSQ#Q+qD_QNLCD6E3Yd7lLiOe9M*z(dzNDPmO;222XJ9G(Z4=M`^#po0h z%I##YcSsUF2EXA)jh;k6SaV($8FC%)jThe{_S< zwdPKcHV-X`QRb)n;+Ew}tS&&03~jOYZh zoXn+q_Z^Hj3$spK);LQheD~C4h*O>ifL-}522^6{U73utbi{5sWPTYx3dm5Z#>%Z@ z?7{v6N^OXlA!4j?GzD$4^2kDb*xp`Y&v`ejea+xl%1QZPZ_6LQjxL#ih$>Gz$Q_8D z60rAjUn>oZuAFEedu;X~6lsE#T7jKZUyfv^jox2K+D0c*2Nmie6i{Dmgz-Z*69%Fs zFSv1(w!l}z$}YPdoGq!RPEOq#Opl+Tq7_Y_96UbT!3-V+3}l-)G5_4T!=3yv*+#Y- zaTHm^-i)C~HpBOHl9#JbB!9U>Ue+gXhTWusnm6L;pNFm1cp{np5;opAb^jv2l%XU< zFj1em4W>>S3PZ(kg2_LdZbd3G;lt)w&Yr)-K1x@wCz8w2^+fdkdmQHg2P^A)qR;v6 zAoO`>d}x=PS&Ed0SCLv3ei{W zZlsXXd|Bmp4d`E|0!C&Vd;<`&`sh zTbAz|T6k{lxP$g-?kEQEFn2HN6<7T-!yDb-(sKE^{n$kf3qCQGRyIzr>O&ZzF)w` zGu3?HuS@q>r73&0&w309@wOomiSi3j73gx&U@9cGdaviE;YsA8w>9eJYN8ExI4Er zb8kvBhoz&a@BBsv^=Awk;r^@br8Td@)kmF!Y(BeaYE4j`WjhqGGm#qE+GR58*vjw9 z$Lv9tm0dWvYsa%bwjdO(k=qtwuG6so~5b`&RwGL{gn3J0VlDHsF4M0{${d z6nlahahnsqx|6WDqgFS;*^JTNz2ZQGC=iPrOGB13(;UY>cR8Qk57lj{H*@6h5Vw3aO#v};(KP2DlF*5o z_ju!2OF^Gq+rBIH^l=uVbb@KBf)>56nXg`}FY+q~nP_|q*btua5@>94|f)oyo$Y1~7& z?eSz$S1aFQVCek-l?u^Hl({+DVi_#n<^z_BBD-G z-pyv`2E@gwh#d*O*?d40fbTwWAFfZ7NQ)Z-I{X5A_kur`ASX)q{7;=ZpFDkvxBaCf zoS1}IbQNB8G=$T&9zi?_9vP$ieP7H zjVd=3_3_h;^6dsYFwM&fJ8Jfg!}}>qkL!St#X=GAk>3PbcIv3TguUy8XK(JD<7e&T zfoRTc`>tqcpWru?`J6qHqu6APrd-e;agmab5aF$m-U*kR5@~P-w-SDd6(Jq^GJr1T z2b*HeySDDKvfR6S5-nM^OL@S+#k3!R_*KlpH^`cW4EYtR^qLLC_v|gM1;{C4v3hcG zoiMZ1kS)OwV0+>tV+|RLcavIlSPi+au)Cb0e6$@1`bpFU?#*T6Pk};C?cOhXliS?y z5;vde7F


    @y*?pT1lzR;V$?F2@nlcL!|Pd~%0^q>_D)lh8F(N<(|`grs)bzfz)xxJ~{4Lc(}Qk0sic>Q-_PwcIRxJ zxZym?@qWg^Hi7&E$o-+!)w_?%7eKqqq+;Q+74H$ID9&rZU$eCRQyOF!9_n#@ECaqU zAN{&+NK!2o-oA7emtU8%G{36gQ;ws})C7{Xz2475D|f7q*6SnmpbD}06{Jvhc#lu> zse$ZwNY~kBlcAqngxf!|iM5WyD#T=W_u*jEX;XrmGmn7W;q~dk&J{yuu$u&djlyFS z%RrN_iSDBUo7Z&<{%V|m7mLQS*{KP0qolaR!QLBBK4 zlWn(8WILDKzw?h`30d!Nl^y+x%C@87-XG>+!6-GAy?7Yk(Aoa$vVssq_0smX)zz;i zX}46kBuTNf>`MAEMkMX7~?R<-A6%d@P=P-=iCeQBAo3h^aC0 z8Gm>9-N1=2SyKO8EJ%Y#VxGjY)~7q>EY`bml(@yKsNFd?kYVl8|&OKirpP2*kwTmwQWDz+#;eWPI z{`ZOP?v3Csi~GXD2}egh*N0Bk6cr=MiIZx?)zaR+1ONmA zPfkx=i6N%ug0?)=)D7(bN;3W8q=^Yb9UYyohLt(*|Dti(>~TF~IbyR((cfS84v&7P zqd3nHC#xGx+JN=@_wOevEyI4tG7upF*k}!jTcq991cKw?jnxXE!(NNPvxAh*5tKiSh4cSi@YI^ z_vN>6Dfd;aTE|J*z}5b=j+|#vw*~*OSA6j&5kgs8y9S0%(4WD3#+?ydx7BeWRh@n9 z*esC20B7CVwBs%=`4LFw{W*1rWFl3;OHemu2WHsw9(AqooHy&&AYU^#d7RU2kBVQBy2(AN`O!hfu*Dav8$0Q z33wX;H{0&JF|b4G207%rZ%-QlreGVl54jAZF+7zghkNOK_Vk|Hn7EX&0yxLbJrY-J zz_cSfzEaP3ywh-}lk~qk0KID2Gh-z?e(1}ZuRd7R0dvzBj@w}$vLF0~te6ARw74*_ zg~cuTJh@IX2f5!o2a~`V@O7NUxYLPRT=5>|g=f#g3o)Y(&B%q%0OIi+rT9Xmv&KBq zMOhd;wq4@)WZR*~A?ug0f7`B!XM;_jI~;&|4ui0%R7{4ONd-X&ae|JWj1M-W-Y}i} zAFz$=&Gz9PCobji-EHgK!o3)%lr49?B3bJo#U`Ke=tU!YG3XTB@?6EeXha^jbI5wZ zOqxygdRdiKpY`e42vFg|&jxp!%SwMZb(uk{YUes#4E?p7Ht>|Nhn5^kEidyR8cNZ% zkx1P<43pWRI7yFyq1rQ?SmxKTUFycIP&Ao8Vs>+}WibEeddr|sj;5YhY5Mg?yDf3T z^I2zavz{sV_mA!^H59B0@;0G`4>CeLPR%7tw<#}}BYS(unMR}dgOs#7Y%c+h#%&Qm z7c8lHS2T4rR5W`E7d?--2Lm_>Fne$k*P5k%p;)L^7JhZc0&v!Y9t5UT2z4ulyRc%; z<~o}ON3ADa)VKm&9KLVwTJ@NqJppr7_uxyj3nO&L1FUBB!qH>`4~ns6r%7>S%^hk% z%5O4yC@OUGA)KKQL%3aLRw>%;FgePocT*3%HcGI}{t9AK4oDgIEPQ+26Tjbg;lLLs z^2=)j&NHxMi7evs?LLq7KOmjojQ1ozvjrSV<5tG>=~u*0gpymPu~wtLX@|j?pst@T zXP@9eG$Y&lBEaT+zKm8rpoG7beO+$ts zvsXcI`-dG1&+i}mUwr4uJU`$pLwD98>0EAZJy2KOP(7yht)cw7a^0qzPU5>yB&ZV9 zK=!sIz>6qS_J)R1)gdpga;ND{Nqi#b04Qe50Am)3M++Wc5HFp*B$nPtwk_Nf+XKW4 zp+)S)>8@Sn&v4lCWQK%>V8}$g*STl(1<-TiOunMa|1Drg)m-A+Cj#3 zDVET|e_}Rk1%*1j3G;fv^)nVAmEZ~}(&dD^CvofPy!k6(&qz(HceqdFtuHcCWwRcS zI_IBN(81aWS4-1e^~VDSWH2vgA947LXO47jFUFwLUtLmnwpMQ&`T`GEfcj5*&LEdn zxEl)g2X>axz0K1uO zZxAOo5@;TfE8~)+C?^{)udw{>nBjUGz`ay`=%F}>9?M}c_0%9 zWf$MS$3|#TMI%ThZ>6}6ISn+;J-B-+_%W6VWa0iT0_}%gJUyG;6G@wB!bx6{r~`OP z8KY{#Vby*-qhAN*EN4UqAk z^-Q_=@Q*&aoE;Vh*Ki4H?FJ7R9(gW5f|z=LeA|17x0p%!h&j|TR8-`*o%+V5ks+>k z?=SVr*odkqqWQNYFrHD(=I_|?`7529h|Li(0zWZgrNWT+dN46^kQmY=NJmcm`x~Ci z6Gtm*#7(5!mw!;JCUHOONnj@))-eC$IOUDhh>LR>3F8`707Od>XX_xZ(66_9$VnR2aJJ&6VGviwpT z4Ns?&_ck)`JeYQKAv0jecz?IAV>(47pxa_`gqI(F{_=+z2+`=i%{IB@ZaXauId!5} zF{nQ`)tIh^ag^`1`Z~{4E|0#WP*2!SC+_M3Tfg_{KPjsk5uSt zwi`KeA8_7WF5g4iGuF4lGv136oi?m)JVF6S3t=pGle?!JYZ+pvMSCgfQ5WF4P-|u+?t=sz>GI5l-nSrjuiC^#m ztANE8Rqe*qn6B#8Dl5?KJ4G+rMg}}wFWLevXLIl+sK8iNysCY{FcrnkJsbiIGLm4)~Y zLc8%!Dt1+!0j8=lyZXFz%IuA5Pg{Q4F`mruIhxf_@7R0mlzueUH+^hYXyj?i5JdvK z5fzx#k$kHCvDkzeyvSuem>D(;Jn#no7ik&bNb7N1P=u1^fISYkI(u16_dC^k7B@h&HuBPYZy|K1R- z;pw0yuy}vU1e|!bIVkx(EaQN;5M{<8Q`rA1q|G`~EX2+hW z_mf_{yFZRW-%(m|eR_K}Hu5oD)!9#AKf^gUI}<;=Sv|r6Kb2qY0<25I_SQP3xo@&@ zY~V|dJ|2oxc@Bst0JdM0=uj&!s;nZ?fz8S!c`YL*-Ru*{4|;)mfoy@Rmc~EkP}8d5 z2Eb0j>Zt!1Ep5Z#`oyIpMnl;R7>io;Iy!TE@2B=Sj`Y#aJgx>&tk=!L;8I}e6fn(A zo;PdB9<1R-?-B?!9{1aR$dWo}=@8jx2~=@cZN;#`{Mt zg%4e+uVWkn7csB;ZquxKrD}&KWjmu#hzuhn5Z;HJ$+!0fr4XtDg+!W=yw)q@A|JW! zmIkG6s2uDTnAAF%{1%Z45)yS8s4Emf?pDRf{ME`4fUGq-4J|Wo_pRD<{fQ%c@o@cF zRy}=NADl`cG2)}>4WRLu>I7x0CS?e29fpE;E2llp_3skf4P3C@x<)( z=Z)=(PeviunzMngI(ED2QaN35qkFQ+OzgsAk499j zBx&&iXvghQK2XB!###Hzoab{#}lf5 zO;vBRq*R7SNk5GqQ^&xca4oDOCacjEbj??}wPlr2OF6L(yeZx$*jo-FBh9XIk!cI& zFL+z?c0QfWCRG-6x{1ptwN0N)G(p6K*6&JwivdwO^}TfIWw${~CT0WrhDNSkLKen^ z-Cr6c996@^)rE!+BJw|C_Z~>|(>D!ee7e;oMcaUT;;5?q9iEsx5Ut2d$V%#2zfD!7 z8f9IxCu(-`^u%O&h=-fS{Z~cbR&lVm5ob9pjI@}xVJ(n>Anw93%Ne}t>D&<Nqxt%2>s^X1~! zTX`<-!s0cOH(QSw0BX^WrnOT&@=lf;`yqH+XpG#(c%!4T{S#5RMM9xbv24D7Y305hv8;eY>;_#}^Zbsug}pqH3qZRhzKy+22%4s0^vEj+eq_=n|0CuMe3?nggEN9&06)2z_ge z4r6RW@_8T6-SqTukUutz4lquR-`0&^ttqzYEP1V>t^_Q4akUqh+L<|(5f>n}b1FQD z%d56AVYU>G#S8JC23+gu;@RKC2+Ugv&waxwrNCptyENhJn|oVQaX0$d%IrarQIQ^# zt+%>J1qkv<$S|8qZJV~zOG*6E0uvK3Pm1C?rrcrEL*J7Iv=F0Pt2M51Oq0L}wy*2M zEz05uYO5AyaO9ypHA{m6=uh91WE#obi;9v?j%$cf7$41*jcr%5AHBA++^ld!*pYlG zHsdconrL@ zL|h_6z(@8d{a4&fPp-Mp5ci1dvR30bHo16aEg;Sd3TcON*A#uU*oma@<>$HkBJB}K z!pl)I5~y|cg8W=3!6)8}BlKulG}=}9XahUK`;fAJ~*IxHrUELM^a4eDZec%1*5F=!A~aV?N?6Mn}n zRlG*3gaTO`7k; z#NtOqdF=M!cr;YQC#ghrJ)z63^ZqZz)g#)DMYsOGRrd@;tDLW!A9!`gn$mHgHO?d& z_%<$WmXYd%vl=Uhd^`z|kN_z(CNTNs($hhxrK>YHSPO9B~VKnvdP)? zX=>)*vTZav`JWiq=4j(Nww6ZFG*n8V@2^H8h$M3Cl zvvP}9WBMD17n=JF@4y!)&k!khUwBaJ_wt+Da#zB>?3$=N;N#mGR}s(e+(o-YJw$$@ z_bmR{gA*o3gJj_6YHSe}s$!dk2Z)XKY!yxtNZbn2`RqS-ylm{>MzowbiQn z$GxqX8~%SnqWorrTq9d#pOGr?sot^sq%g-y5BB$jF)QV z+`^KOVrl2P#y8EjeE-;|#AuXdpFcj|dOJE3p?$0Yjh%O(7)iLpAw``k;kkw*MpoQ+JWeyPc+!fqvQs~Z48<}JZ$kw^TY%zn|sj{1V@|{ZgLPa3l z+Do5ep==&=;L|GLDo#V%t(mLxOr`}2&f0QCbFCUgbW`cST4Cu^shGaj0Fy%n;JNKM z#YgZVkj(0rLUgi)BfHFJrq%B*HD&F4EA#{lxhy#dgUF%njK-)lI?zT$yK~sYQ^~1- zT*ZIpbbff|z6L=^SIjc^R|4j3Z`-+|@!(Y)KwabVeA^T|pk9lgZ|f3GAU-JbPBZ#UwnOGCX2!0>YZQnc5{)Yp3k#<75DFuFv2wK9dFaCI$oq_JVz`AnyGuvz3Sc2xD;#)zA|7Ox77|Bl6Mx)l#T9XGrOg7 z^?vZpC%-R?vI#qz?m@HT{oj$0zVF{?-loeyAUqvcs4hGzh*~}sFi1?U4U&MK-oeQo z-C%AY*uVTWoeHtJE&#)^5GOb$DxEHmyr1^Lg@E>nlk+!a9$tH!KP4Mk%vd?i;7h0k zKiAY;Eu>1egj2p%&1)Zdx={t8RAyYKZy>qNJPS;mjSW*4j2LQ{GebI8%LD{|ulP(N zIu2kfFS+uzIeOOAn>_aU)g8Z5)jXwAoj_dJMq8oBM8RMi^;(eS^2$V*lA7?ff9moi zQ`yZ1$||#?AO*$AoDbVxe2!mX@%7mTG>?%48AIa+v|j$_pjA! z0lZi|O8bs5iRX(e2;otCmTkXHE9MM|8+_G<@~^K4LaMZWv zv)(O*GqBX|F{z8Yh6M`YVC+J*&27Dy#l6M9kQKdTTPm3i_A&R#NJ5l09-ZbIzL8UKi} zTzv5G54HYW6h1^PkV(I;1pWsRpM=Z55#q)6cw_(bMOTM_KP;esiTvlW(_r5JQe3{5 z-ECi^qowue`SYs~2;}Qn6*Kq0_~OY`*FrlN7x-&oZC%}`Iy$#rmSUBMoQ*bRG@PCJ ziA$C`kx1GYr6AS3girs8hlvHzC4Aw+g-e$%eMm`xhf}jbZf_-b$#X``FD(Uyg#|19 z$GwX>c{+u=ySr_DeK(qB&%W5z`77!DN9mJr$dkK-OC%xm#VRT)ue#p7XO0_0${(k9 z%=Oal$SSLZy21Dl zd(cV{vA>a@@5jx}{ZK%_2HqR@Tt#I8TCB?@AW)E#^ZuA)L@LSH>BoG$FXqVJg_1IC ze*;j9^%HlKZ}41f+tEX;Z~ZEE%i7_|7$8KZp0(-v zAI<3o`}kpxvvuosr7MV%)r19ieBdvQl=j#u7$L5I7ap|96cDpvgx!z|{inGPsH!Hs z?>3(vDk>@6x^w5*i`Q34KF1Fc6%_T_ST`e3wwFdA;JI&NM1DH!+|dBr$q8+_)|>?g zZkmXj$^vF9%(l+BXR11Zu-%#wSf=nu_fX~6)bx&3%25!4Dft3~;NDnDh>)X#m9!gDq zAB{5xceb12l%Wu^r=}t?didu3iSu3JM{>SR&Uo4&2LtifLp=E=N)G)GPL^bk=5NrY zzeI$`Y8E`D@Uiu@9W65JQ;4sO1aCKlkum#)9$0pzPCMCrT$i@ys3l56Uko#Qbu;tZ z+EpF1WBj1c@oe7cixkOqT{2KBK?2Jxp=An*PGN?GpZj`TP|`Jq!b#Vt18o;j0%z$U z*pbUi0A)IN_0dWTE+IiUMUS47glzgQ-~2nWY)&yx6$6E=xv+wBry_yH1~O)?ez5nV zqnO_Qu_YDer@)ya#FI@dPx%N&W#Hws!zW(mCc4w+_M7t(AkD?ivwbM5?U}G1;c;Dm zA13dD+}$58bGao%Ef`2kHRn#{jy|I*gsWE8>S3^nu=ycWD==$p%7M7{uV7@!#=)iD zw)?|B-PdT7W)?8h8vTA;KUzxW=FVIX(t+h#&}qWw&yP(oBXByF;oc?}-rUdA7kfRaX4P~m zSfo)`omCss^N+u5_VBxc3G2e%CAp)&x&*T8p+^-ryES1^gDJcVR8;*+8`PcsGA^A+ zvu;qfUnW%Ugwcyu-_p7GQ&HuB6__%wEa%&77#w;m<@y+MDVSoh9j+rdW>aYgaz<`g z4*>5A{h*D}ADmDjwR0%WsU+69*^dYG41Rrv4|XJ_8%oipTyPS^i?H-cC`QY7>s@1z zKiha>-_KFYf6U3LcTE<*tFe|z$#;hfDBr&Fbm?jgL$BTl+0c}sYCzNq7;cH%_a+LB z^%L(^c!(Z1Xtlp3ZR&(+Q%?W;c1_<;%I0*i3!rD*YP#@iztupfV?LrK=!j%TzK=*= zlZ5K9AicwW$S(7hkSjNDiKIhM7dh$(!+Nnrt~`{=j_->c>2z<%E_B$n__0|3)B;i>$mkrg@sv3-byd2 zOby*+Dhoq+QjSSsmCIL*rOgWTajkQuw?%3=-a^l|uf@vYxdmYQ&$e7ism}49IRSE9 zFCMC`BL;RD<9M726b3Wc4CcW*)`0Cj@6B+#e&)*LuJaRGN=uQJV`Jq;Ls25TGhC@$4>81bjfuLtHV~(6 z!6nHqj?if_OlkCT}6S{}u1cEz-&qZA-Ak4FXhE%>0YJ;49q?X3f%>bmw} z6cv$@?v`%pR*?{-rAxYVfB}X95e1}1q+7Z{7`l7th5?3=H zf6U&8efBwLuf5k=*R|Fv$Z}qN{DKI6pBS4$7o5#c_w&2|ok=5_1^YMrTPo9G>ohRqX{;SbL z5F~DrJ7dfJnGQKsQtSfQu-jsH<_Tb+fHTm#;0=al@aPA-Q z*V%obx}%_ktAu`Z)u$JhKH|lfnx(;t&5J)8i{>94yQ zI>_f7uU6Qat3BBB1eKLPfQw#B*AN|+U6`1yA%C7k{;t6EX?@)=xUjKuvx{6+p+Uuv z$o}WpGfet`8@%%4s@wPE@#WXaEP2RFs{yh~{XM41DAd{SZPk`H0I~`g=Q%iVY!E>v z=p*!d#VevO7L61RCmJqK2x~H8fBo~-pOX?7P4+Ey1d|KeO?WTH=TSpDvg7B^Naq&tf<^vW(T3x8895x6bP%m1m?{ZWGc>+($&0iKqdOP&Fq6@AfKM;u%ELIoWyv{BpvfWGFZBCxp=N_L3>eJIMJFQ2T7#rs(WGEi zg{K}tGK)pU3lk|4eHF3dPnF+yE}q=nYDAWA{xsOD{qA_6to4q$U*~|??c*3Z5|}4h zx^NF(hHH3cbHMc*B+qxMA(7xb{3wB6u#*jOZqm?(t5cbZ>Pe{MB)ccLA)OgQN6>y2 zZ$a4r=?xlV1fz;v)HsrkOStkC@pHTU6Tdbnr+DTe)XJ z=-XXdt>`z;BnOzBqJ0L7w|ts0Wdhx+OgX+|;^&W^YiG|SSU#Mx8&Z;tiHsLg;s@0f zn;Yo+=twdUnjMY$)RwMX6yM{ClA45jGoW5$2rUmDg!WGCRq5NIpQsvXGnK_g{c%R} zb$5kPs|SdoHeW*c-72p8U{3L+1O8wt7G&vLR-&k*gnsb1)FSv8iD1%rZH{Nt)gE}td(>yN zQr^tb!7#R|jONwnlp1*G-_7%1EgH+HwI7yNR6ET8mEX3co?1av)lQ4SGfS;98xUjbHet?hztDJ+3YDhIxgzwVAAg!Qjjpvjekwsl zf_pI2mT_}Dr12rV(U&AC9vAPoR&h7bA}262AhCYLtZg=NZWwOf?%L$Ch}3UDBNx=fy@- zJD}Za?X@d24F>u1Y_UP-F1~=oCVM#h5TE50aylgr=hG0!7ZI>HN6Y0+_|blWHd`b; z5HW539`xiVJkb`8x7MAwa=3Y({-Wstt z{UC-99)EINX?A1X-UR+@%65;MVL7;6<8MH=+d_jVTsfs}S|N7%(k)T-*%{V|DACSp zO6nLP%i(F*T9AR&@4QJg?Q=)njs=AX=js5GyJ9?+@p2#p84K{io5n1nKsSgl zvv$_zC1h}n5v<}D6@5ZHqT!rf+1sAYk;x}KWtMMmYIE$s{6aRRT)O4Au9He)us#l# z$CIgI<*Z7p=TWmy`X~@&;wL_G-CsUB7FmxUpIMN^xax(=xgu7*R8`25$;23O?PZ9A z#0axkI@OY($C_d=yw}CPOX4KR8??$_7}%aH2v4I5r00k*dRCr5 zRhE-o{dH-)%-q43tOSQeugMN0r%L&e97ekSryeD110Oc1lPZ1ta9CVDfp*D4+wY^J z539ROXP=^GYUWjH%dFvFC#1l1<{f)f(xxvsO+|Fx(*!Q$t-OJKk6y0?J4O&oE-&gk ze>}^GOwdiTBVG})Y`wAv0T=EbOmpTW3=C4u$0~vp&=THPR!;#wYOZTSxAkJ!$D5$b7 z?u|KNR$0nm?H8Bg^(WPwCaT?h=z$Xb?D$~ozD8~05A~q|B2M6W4JSX9n9OvVQ zpB50JoC<^N!q;OHYBR+CO6Cy;w~HDEr6MK?6zs&upqk|bGTH(+QP`I*9OgNG+7`ZE zLs14Am*?p(55td2OQd!M{NLl`I8~MBFr_>E-IPF21jFV9;6zZrdErYus^MY|xr_&g^@o6L zjfDnrIJuiA6ji}83*fD}AR^VfWuI}}fwb5`eHd)7@PDEb2 ztg&jiBr$?ai_HMoKm(=E_0`_rMx3WfIU^qhE!o;KK=b29=%Wv}8pDb??|CD(KmG{r z^k^QFv(F-rsM#P-e}s}jR->%2^4L7D#){I0u_aO#nI(=!%UZmc~I+WKl>~W6wE67q|tBK(m6WdT!R6NI-qx}81$e=6 zcdzMRu=xCv6ijxmar~OV_X6_1^?MUmvh}0DOc}BMLD)XIih~Uuv1nq`X?a@x4~ede zbVs9S{58O?;e_O=So`j|c_T;zf8466ItBsl!jZ40G8^jc_VW3#<59cL3@;wxgaXDk z#=ilHI4b*tB}i{qv((RKhn5)&oX#vSd|%Q?FL#5eVn|cfQh0m?9;lokklDuxtYS&C zjIcc+4l5Khl zZe1aVVF_UN4;P>j2rPwa6eRF#<2o#qrKobdE$Wc&x^t>f(rmc<6_s)3b{Cqha{&oR zR}pn+y0C7`op<8f!Tw*}jN{jGfL+?wFV9|DWr@~asioJz6N9#+$q*lX-dMmBgsQ4D zPOw@H;N@R5Ek(M^**W-~Xg=rKmk)SwlSA?9$qW=>{oiRkporP&7BFL-ocOra;Odn3 zMZG%gb>-^5XVINp#|(|Rui=1bGZ_H)yhm^Cl66>B+45_u_wvT^+|sGH##Zf^WPAkE z)ooP~ovOQytB42@(xG@4m8DxH<&}_(iHR5Y z^)Gv($7~TVr!F@)JAI-Vsci2u@#-MCUc#pK=Lr}E1!73rpN0)E~o^F@na=Q}({co9r?1s~2!F`I;pofVif?37ImcJ+4iXZ#hpv_QWWrCHYVcNahqFEUnMt^IFKr@K)u{N( z-Z6LT$h&Hb6(Auio1AO{P9lU)@LCyP`^zD7!;g0G{ToVRe+(sD+Hq28gt%IK5+=q0 zBhK49#HRt3i91f|%D>`EIS9mfOx$s?aL#p|5+tzo!>0!#DucpTgN7h{Bx~BwB|g5_ zsgu2udqV(QF5(0Hibo|S>^3>Ny~|s(IPef9mZptJME9O|D>-p}RpVEU&}SRqf{6=! z8Z_~Loje~oBpze$@5Z4XAT>>doPolY6QEMG=|r6YXIszqj@?9!xk}cJ5i_H}(vxXF zeF^YdYU{Hw98%y!g4L zDeCuwmEppJ)QHi8*<3#IE1ya2_nzV-o!d-d>P6t%br#{`Xr?#K3=<~^lF@z>;0x48V-;i0pljz9N(#~VSD?INdD#Ozd8s}VHaT%?O z_Ed?ijT&&!36t4d;A>$GU?w$Jy7Kb2b4X0;(}S8}m3WGy73}DIf3}$=@7huPjeBR) z1$t-gAAaOEzdr6Jw9dJaSFqAyyVV!%oCw}?*VnA6=Tl{mC`+I@0bR`56iD{=KEaC4 zmCJg_9(tm7^_GB|;4Sn`)A;#xzJz*rZBg0ELeU%BLb0}_v*e>OBS_z`#oh$`Kd03u zB|9oKy!HdTy->3M+pvhPV!fK=Uikc5jf55i;_YH*?ZJ#lVmw6Niz+HWiokdDKo_w+ zQ*Vdf+`$|zAr|miM*Q7y;aXC z=k5rO=PkA;1wKwSC@H=__+08peP6n|H(XyO$1rnqR|5`Va ze0@hrW>89dU#vBEm~_;vhW|G2f^cK&-BD@mu4Gd0b{Q_3%bpBdjKl3GWcnpmRpHaS z!*!7FreuwlN1`ve|KgO@zXwMZ75~^RUncPi1j2Eax_Tsz)z`aFm7sI)j6*}y zcC#IOG1F)+p6++^fL~5_)UN!DwL_dYszw?NdCS9tMsw2-^S!$>r!u}xL!8mk;UXNV zv63V0onbTtPwQD7fCJwv|2_XNwQs!@p86c)P;{!&)_#`0G3V!yz7!WAKRlsq8%7~S zG9~g}K)oke#$Xhn^yE!ut}Fbsoa%BF3+)3tjun7%FD>n6^(e3IF>w@TU_krOURt<9 z=wmugD>^?r!NF=~c00;Cx7k|>QY1wo9%G5TUzh^-*I#n<8|FgMBNup9%(1 z{9Gw*W~JrgKk$pu;(&ag)a?Y7HOp#*W586&jt-wL=lI|8yp|F|0gkA30jFsS#_RZ8 zP_})!(3GHF!)tFyfSf`l0LN;6H1R&sLo#c&Z@Q5m{gU zX$TdOc?;nkla+k(4*u-l?z~fb_TZJVE3GHc8BR%Nl<@y+8{k$k)S!U5y|24h2{Jos)X%I0Q(NkKtR zP!-Wf?W!t9SWve(<<~EXJ3MqjMYk}t{ryb0KYXpz2~k6mT>qJaX!l=s`BT^4sQ-4F z(qCi#flu|sr5TyloTjL`J?rNe7CL8DrRlS>XSWu?Wf5IiY0JIRT%D`GM6Zy`R!*hN z<|a?HlpU=*3u|;Qa(T@K+1S{MMbuoPs_#CSSXy%42W-y@UyZ@Ra8i%WFe-`r6`gNHRqjdEO?g99ndmxd;T}ZUa9Y2aSqRwf2Sc! zEjrrEScMbS3*6^!SFz@#JVahWnoszsH>*l5>p)(}2ne4*BHAJ5``_i(>1JcC3TTC) zc!zMEdlgd|EHnybw2Qm*i#Y*XR&QkdNqe%%OW(KHqBBpJ7w(kO>a2YrVlmW)9RO!e zx1?nLC&2Pzm zRv?}~q^z@xkt33BZ1RspFZ=!wM-IK7sHMC*?dQ>}SjD1Akqn8wzhPNR@=Ck9HAGvN zgnoi7dL@$j`#ZxIoh3a;jkhDKCV!RJ9IpLf;?%47l1H1+(?WXlE!A7DVmz+g-5U2K z&F3pqDq_)RpZ-l_l})9O-|fEq%}N;rKYw)DC1Lue>)B_yA+zmYn>79=;%ACZEgn=e zlvC=ui;8z`gS%y;-=B{R^l@R>)CiV?XN1gPw_kz}(#C?z8Uj|Gu)tbhL02mrwEWl2 zixn2V1kE>Y^n`)M(+}{@3MNkQXlEEb|4g%fXu_RjXD-RA2FdQe>cP1mzUF*D+3zoA z4z4dwO+RXozU8Trx|g%wmEN$1<1$_7;>!d5+Q-Xoc!VWx<4gU#eeQG@yqDfhS(0S! zJ17lg8|XD!V5Z+79hW~$I^5(&!tWPZIQ5Q20eM~J+v(|QVIi)Y&KU8Ate!7y64 z70t3=HlqwAT>71w7m$sT4Zn`=tS4v>-vl4th|{JOE)Fx7Z>F~V(9?zlcccFz6t$#L zisM{L1X=xdsXWW?06MzFC2v`xa$=ls2v9F}`cGw}tND5{hIy_Yjc*ulL~QJf7d7|K zUKLOtxj*N1C&6mD`N5xh#9$LHrRT0K^aO=Px(DHS9~`{qxqqUT^`C)?VvZhb~BPf(55>w(tS8+=pNQnZxR zvu7f7B9$CddG`6GZ?cXUGwuCpu+s%13RW=2b&Ue$2o(&yMhYt4FpU0g)dkuev5mB> z_`QjpMNbW;C~3i?Vb_wM_dszO#64NSlLkhVg&gWdO;2&2y)Bx|oU|hcuSvvl>J6l* zy9#JguWZTFtX;wHAr*3()|F_x)4O?Q1e06`G21_5l1;zGpL7me{W!mZISh%kwzu$D zuAbq!j$dX&_Zxz??P`|Ei8ja2Y8m}-T|{i`OS5Wg6PB0F6cw>6b%$@B9(MwI;0vcy zctgva{~V5nHWkzGU;!F^fmg1sm^cw7);G7Qg7=rCNUXkm?*4VCzw--T2Z>(B<>|u% zX+Ge-3{~-z%K=Z?D&Fv2%BzSVa~SqCRf)sRE~AujWug#>Fu7S*<}zU?K|+KeI4cLX zh_(=bIhXb_QPSil**QYYsm|(QVE3Sf`$xk2n@x^oo|bQz=%7bbqmSwZY}5sw>hPqPNn z@2Ob^6&a$dNGYdchvu-j1#6$i@H;SK@#AACB3t^<&krZ@I& zlrhN2co2yHku_*&ToaSUs65X&pn_!$d4suxxkNAiy}JF%6=Ag(AMYry)%zL zT;z#^k$0-|79Ze>))fsSB2e!B@) z%%H!tjZMveX-^npo!*w5eZTh}(`w9l!{TfFsZ^UQJ{44q0NIR4P9_nA@Zl}0bi(V`uTg5%ySP7t-+t;c%P1|4JU(`Nfzd={%q%wQw-+t#A}DK$PntY@GN~0eUQealPX+t8E15 zVgu)|@6Ar+2t48x_<4HI+>lOx_4smj%aD-Jyoo>C&Vn{@1)zOooTgYb$W7Se4Vn3x zs>FTgbDFvjn6G1(Xbj|Oo>K^%@o8H}B`?a@_G18uE5$kHb=mDG{#2q5?mNCX+R8IA z&3D{C;Tvz-1xOB^d)%LOd2Q}ob<9uKF6w}#A!mD{nu{qHhAEt7!B2aIAh(P@4$D_OXZcp+O=l5Jp<-6N`VuTI;CyXgr%Lh z42#u*94}-BO{G`Mb=^lAQE)kr$;&WeA;jYuNR2;hhLq#(Y~nYW$=0bs5V_l$12f(v z)OJfzQD5*y=a=yhTCK-9_P@5Wo=#O&`1C%b0Jn!=p2NoU2a}lkZ4Yso+Tq>ZWjf!Z z4Bi=PP#M!CX<|AGM>m@iFRoAW(Xj;ujd3;`*O9kuKDe~k*KM&7l~<%7`%b0=QhLnM zqW>-$$co>r-Q}o$=i;Ku{6I!7imceGV{B63I*4$|+;mTegVlEOIW6_Tw{U8QIlq{M zfKdx4y`4(j05J{>;6BWHMB&L-ANN?|{rM@asjc#-M->%EMQawTS_IK#VNG@6IZE1Q zc#+Huyq~7qIxsb~pbl47H)aG+kB>UPLm{`Kv2S5tS2DJB1FNei*{k{H8kG4K)E}_p z?)7GOWiU#y(Z~bXIGT-R1FfHqJ}88SDqFl^6-7o8@LCY5&-%o1Awrx{SiG;KsJ8=8 zkx(|F5FNh1s$<#hR-T<(J>-{-e|3p2c>RR$ZdbQFsnLfLeVM_AReGpmjdCQYE7MU> zBqF`6G);@6I_=0;HzAIze`;itQpNq}Y{@0|NXK=Vj>x=!LJP14-G@K;++xf^3!k43 z7i5m96kpngPZhC{l>?U$H8fOxW5(G%Ct0jplWL_*$7j0W+u%f;7%Q|aGwI-xMN@jr z#H_GUZxYA3kv$XrCE+8s9!R&&j}nJMa`aB9#%yGzHLfPU$^aTd8S@JKj#){^arte* zx6aq2DFce;<3kc=1aEro&VP+3Jhnv;T@=8RKm$y6N=*i5&`K0iOxkkpmRCnal4*J} z7V9*bRg(J?e&k?VBDHe`GckALi@)@=H>onCmAld-0`O`aAQ&Mn$vZzjQ#mzlG~804 z(9v6~1NyU8OopIvX0}INFL$-%eFmfQYhP9K7;IJUWh|VRx+Xoh(VSC#`$@jc`=EHg zW2Hk~wAazzpvl18^P>aWBKxken)TX9+WUt=*z!iP9Z3io2J*V-ReLy>v4)} zx=-wSRTd$V4!ndxF!9@T4V?qLqYCzP3=vKvONh#;wdRH^+t_ev!u@OgXoK60LY2}X zgUp8?j8;s&9H#X)UKu_u2Jn;Y51CI@*O!`C7fpY`NZBrmIx=>G%Zx8fuw2d8Y`kxF zO6BnrE={3^8|@(t-F_AnwrGtSRl0+3q@k?)(H>D>hv%B*rKI7AKb&p17-T=OiqqUp=Cie-#C0?XBB>D5E76%ZyiA=OIQfCC2HMrB$F-Ff1h`$O7?fT7bh} zSEgfp4SFWA1BvqanW9&-pztLOLu1lNUo!D9TJ?3NI7No!6kmbZsIa zWbsD&b)R|D5YtB%VMe2JJiu5D$NER$VAWbGz=%wAOMK1?k~$Z-rF%n=An2+9^E>kq zV5gS(!5|WsR;U|P<9{G(R;29&0$cjQMFvr&%xY=lz5QMC-ppsEa-VvHmlFtgJMiu~ za)p9t)nbQxtq7^+WWPEK)XYbJZo!Q|nZFuX+b10r-2xGt&rE$#ey7aA*xku)7*glw zkFr3Qy(u%){ zxgQ`Bu!h$0Eh>?5D*u^hbH49_`N0X*Ax@;58@D_4+M-h|U{z|@*_yMYiYQ(fU(oeo z8oL(H#>cw}a)?I+c~iPh*~a|*M&@uu;uHrjo#|x4o<@~^iQgj$%=(Ddt%sS~3snnp;nWuHXeotO^~3m&t?wQ+J!qwzw``dYRp**e+PuWd*)F$ z_#OCg@$hZ?LkW>YlW-HShxC3@UPy0qr~HhJ$@j`zd?fzIY{8+}+}l61jxG3Tq%s~| zdGPeZWjWi$5y`JY(n&vN36wo;`Sqpr9KosV3-uH1Dv_FVgBxl%r3dC#CuGSIOLC{g zAjpu+dUpseZ+{_=V$MWP~^8rhc! zM&L-2TpM2G)wE055v7%NNsrK~mbp09+jC2&0!bN{8Oa2kD9p`#Q@VNhg;nWGSsJRe zcC37Fh%Th1_%h|C$=yzlaK$GVSx&HyaFppfTP`GyaFpn#hY7<9(lVnXIc+1)H1}u0~=@i+`%~&u4h?!0WlX$RQ&mar0-3!1$I;@A4V@Jn1ueTj9 zrhmSFs&*HuDD%M6h}G5f!Ly^$T317f6A83U?P}GUy4em{T(A0F>5J{v?ZzBr`QlD7 zfR0V^GD+Cu;IRsuXtaiu==rdzE9O2RyRKb+%?< zxn^buynC0MRPiQ>I&H85)At`P0QPSE_}HXqLT-_YPwHgEiu*-f&*GW4rw(?NQ!0x* zUfRIT)k&hXzZ7s@2%RI&``aup3J5$HR}`X-IS~%Q#vlUmkGhaL2H%f{MHYHMVH@F7V3*jRoHX( z<{4$NNEse1_f_6Ro z?jQst<5v2G%n*$yb)n^X3H0gFR4?|}@Nt(}p=rl)#21y?P>!IkdS6FJJ=|awT@+-( zT6uiWOsd6QiwJ(>X0XiInFHiLHJ6s(SFJO3EHWQI#(5N}Y&9F=h57S&=HlV$=}p@X z9qme!!lV|_=;|Re{maYZ>RYl||0O-qS`TV@l_^3&uZO@nu&7v-;*Uy`)v&-HDd62p zAqx&vDsW*l`8*ik~0jqa0lsJ<)6IJ$P zi+dn?l#zUjQwRMYv1KUxH(mNK0QPUAH#7bF{|y@;{EvP7S2v48oK?k3s7>|kb(h}| z5NxMHvj$a-SDTuiUAZd!@m>n)z}CG^y8-0VCb4v{Zox4heT`}(kL7Y)Y;bON*4qfv zpsCFQCD+4BkSkcR2Go{3Sru!+{fMwCNCOnbF!r7yAmKLb8OrL4cRjfg zf6v3PaTV@0T&vLkQD)l|?VNTNZ$W*|6(Q&~n>$snAzN6FMpx{XE=&vs&3&rvM}*}xsyCR;se`MUfopdl(Kk%u)%|;s#F~Vwk!EO zq7z!_<}5o3&74W#f-RN){Fkf0JdjcYxEM5I{-SF3m>=G!T9>I zP^&my&vzs$x zwd2rXW2Hg~nKCuo*siLSjj%e8F%@xO_AD_DW3wZIGUL(RR*EQ7#*Szi#7k+PFVxS6vTrK5=4E5QaH z|Gcze--0>Lx%9ht@d?mfvA@?_?2?y})0dxnb2DMFf45(rXHb`OF~%M#>R3Y?1eoTc zT7U-1T&?9r)IC*~zz3!}{!m1;!G+=jGY(6jkL(Oo z?gYE747hszbTh~17{)SZ)SpT4$p$PGy)e`aQ|#9}Yf`b?A}_+!R3`;iDj%3yjgQ5~ z01b+#>||>9&u2FEBS?K4IX1u!=~O0$>(Os+AG+gqiTx{X!J@oOb+g0l5N;7A;wZ#d zs8PMo-DTmlzFGQVR_0-=MP^l18hWw@CZ%-5b4@7@AUW!k-1~y`@toU3Eo9_rK<7-@ zJIUX^2vialBsqbN)m{?y7bfhD&|dQqq*tmskBkb%B31EHJwg+;KLyMOO_pYsls}X) z!jg%$=BHw=?%=zM-G07LRSN1`d+E71xF8KT?K1NYpKuJFwD$J39 z870)0G@F=075L1iKv-ke!gP#yG=b6{)VbxZ==yC!2(^uLPbb3pUotFD8q^IP5bN&i@%@gmqXrG@NeD^KmvmaM4F;~dVhvpozN2WVNY@y`R zbX1z=Ye1)wDk7 ze=}v-AszW2!j-=}Q{E*x{2?vB%@3U95K8x0RE>n6g=pC~1xyBu&E}q9Tbxq^#|H5;)NHh`g7-MAj4++lgSIZrN zXf}mxIkRRgqRiN-5IpqE8&TIA5kYcduNNvG*E`!Jx#vBk+Ek4BKLsX3Rwzlv$uVq7 zx$>$?iXIWVe=HN%xG&tLD-ynY+} z2yH~o@#oYtMn;)@0V=gQD^979LH?94A$06+o}YCdxn@XFNpBa^-ikDuLn*<8Z)NvO zODo)BsUg6t2u6kN!P~n#k?|I zKOYi$Y&M|06PnBi1j5ZP+>}(;G8jY6OT`y|isYGdFQ|tP@_&9kN}uXDv~dpwE-pD5 zUEHDol#q9yKzOdUh}mijJygEdD9afYi65-hny`0>7u2>tmDxN5A z(|idwo=Y=E3uorv^N1DjQbrZup)oTmce}PZ^eFOs>sYDjTbOh>UD+&x<*|JTX> z`rw6{t3OXQr7M_x*+)m{?QXDvSy0{G-|35gfZ@G16~E7f%00$uqz-?-;Cz5rawkBO zDv2*=@kmFKSyz0a6{Ab4N?>#j9sv{EyY(==3TLo4{H31c@ zbKWsk&P@Rv+!2oqNR3JciL_K+6tqZTcwM4nZT8JmREB>84raO;ahEmuCh-;#%Kr@R zIW2fQgW;cjXs9lDUi(z2g9P>=lkU0z;VFm@Goqe zeB-1NZ-=V~8_$mm!i3Ap&Am<;Y3aL7Gh(S&=Q@(hnmyk1fr7*MGgD(5uir`pV4e5Vi8KW722+ zWeuz&`#X~eX)DVz9h*7U!$vK-7o@ADo+Cw1$u;QLRvb(77r$xmsq{&eKsR3H+#K46?bOfa)k)#O>xySr*$Z8LI`OBxtvR8 z6>AppDxp3z>AV!w5~rOjH8#x{5M<)YOU(X|`u!cH{0r3W>CG027^E~=r(2?Ko}oje zuITVdphAC_I?`!-{`AqqgZRGsd8deJ){zC>w%jxEcZpS>>gdxJ$a?vN4dl&5?WguE z&lw@n)CUwtAO^SFMoBIQqpE-q0s)b{* z|0=2EhCYYe``=lCEZqMq5s*d9|JM&5R@%G^$JH~-9oy}5H50#Z>6;}F_GIxomvg$Z z#$)DKW$Kz@&yC1~-)F)?W83G(=9o0cQ(V@_a)QFpbLei#VCAXT6KeIOmQ-P#)v>jc z#W=nSoiqS^I{R)qktoLiAr&_i*XmfM7xnQF%HHoO4zO0##M9dCH5r zP=ztwI^Y3c4^EPNMn6?GEvoz-6z(6`eLK7D3N^A954IbQ2){*m+)~vpe6c%F*x2ep za=53Pu=X{WQU6u=AZo|j=ctR+#JACOmQ2$&OyA9v%`+f zyNCkS#&jNO_C$WIaxTTz_bVRk?-tf^sjQ8hC>FS(CiMc%h+mp(D1?X8InKT4?$j5l z*m)jV4&-Iy@@vI0#eki!jqeM7PfCnzDfwK3ib14f{`yFV%$ri%^=ED3!0reA;q>Ja zpwP?~h4o0I*3y<}n`ms#AIFA<~?@eFe1w~ivh?=EO$JngpPb2Ma^ zYu(t&sHhA{>UQc@NqZmO;c}GFgPp7L9!A8#{3gQL;?1K59Smok@Ilf_XN==|gXu?!sfy~zE zAK>oCZJawmqI_^Ify+j6*rm%Zf(Kt6Ha!PlNiK5ScI zSOrF6MKLN7Ds=J7?~5gcBo{q|TEu@r(!{#8JzZJEzplOz{o zseH`L;Gb{U*!VTPSimmqyxeWxQ|x_Ib~i%wmlN@ohg3H1ugB9zey%JY zGT8wBPEGxkod2ErQXqVtt~@CQAC@S?Qs#5(o>(taIy1WN^k?D3B2al8Rrgj>&k#0( zvQf*&5v)>;l7kLjAVJ3^%5JpMv zH{z&tW%&5y#O>|vPGD*Q?7+#m)a=@};Y^l1Q$DgocR@|#d6i=$=u>wA_0j3B)dJf< z0+}Vg-fWQ$5gon2s+{k09h0cz1iui^p^G%N10AqWH-P48{lYW)n^R4EH`d11i-J{vrdT46z_SG|6rk*iCtR=;efyxxNz&pwzJt4gl-0& zgjDF|mpOOa|B8O@!4@?=`axM)=M(bfk0)oZ?ZJ<$=H*DF>b}3tiwKJ2zLCSgROgnE zr1rvQp4|!6JGXN+p_6}(@6=(d_@eva#!hm^H5uqQS@&kbtPs~BcXZ|JnD5<(q(%R< z{r4CVfd~poH@P z*kxx*LbF?8zRm8(xm(+W;E-?MS3oxQJ)Rx{f=~7k0khjhHm5;+l3Z!sSTLDxnHa{e zU3la(P%w^ogG4QXo7ZJVqF1s~U|LpA=?{{Yh%UULZd0M<^8{X0`nLeoOM8=+msKEP z3z12v4DrX7(c>ZGG3Hpi^x5eChT9{`s&J4WdOptzg z^7ZS5Df)E7DHn9rHRS6D}@07=LTxV4RJ{`KJ(-I8D>-a;A70I4W>%s@?0^vFDfY#0U3hom-7fug!>) zxKo;Q&!9P_yq!tZDx;%&UMc3f0)V-$%kaol+?2|=}(IU@;*1eS)PY8W00E@_DEL5Qvd|;q|aE7a5+-T@!ivla|*JOy^hUOcd7S1=0X{_NNr9og~90#ezFG zpZe1GtNwI>nWkWpcZxZFf}C_&imdR5co->;OlZXtu7@zr+ETg`8tA!`fNpZqOT<8t zhqc&d?dVj7(7^RW&NR>xrVmBmOrt4jZYOpo6-hg9RMPHpPjgAk41wzR_>ewxpowaxiBNSw#L9vRw{~M^X(VpM63+q$!q7({*H#|=LUtj7S{QcX>6%*@ zcBK^e+)@xwy2#XINKs5(1?h2SX#fvAjQ*z)$T?t?E>9ZInE&LwwO!hsI6#>g7m9x zL}c+^&@Ex=b&8TR1nmll?$z2;*zUQRJFuCLPX)d=K73mG9ZU^7qV|5hA~;2?0#^gP zxZwTs5AwRU6lQ5>xUTy*d)^|1FEIv-me$paIZ}p-SjPoFU!CkI{dU5Ugr zVEKO_83+7e757>$?56fjkv0%&_vwsk;es4qVwqs{HiHQ8|6=bgquT1aw$UmT zpg?JHDN<;QLvd@16^BA`ZE$zD7B5yxafcR4arXpwDH?(W55a>ZgamTZ=YH<{c|SQa z&Kc*7@5k9cGT7{F*lX>%=9+8HYh4%DZgI4h_3)bth^joxa)nomgo&TQi@CNlQsjWc z8cUXs{3FJ8?QE_?4yY0&ozyrh@!r8*+(UDc-81E8we7=ql$ zs=Z>E?Y}kWARJpXI;!9CphiLD?$Fw(r*OZ&@%RsKv^iJ7m||D!6kc&)KJDNvp`^bbSk zpJQM<&*E>k!l;2~`Tq-?KvgHTeZTZma++OX!^vCMfM=sDG)ik( zack$qB~&8Tg^`gGYg#z0^3`#^t?+5tM-vjqY{@2O7AHG`*`*03EyFuhj;v36%{qSL zmeVgQ5irxM+wz4m!GUl~idfZK9aH+Fcy<_S(Vowk5|pFWTrB*LS)tks$1}^yJ*a@ONJla)?LlmLDzVX z(YaWjn0MUS#l`Cq(4bX92T4O^WFR9<7kXLxIvQvXp!?Qi@BC~dW;`&bYfSC_{V_ym z?A_bn{(f}-w}ZgpIw7GOX7y~OjOL7|IS_`|Mo{I7CL$}<&(>4XcK4AEJJLmk_1}IK zsj+3qdr5_M_6Y}H`ll?WtL;OKOwOkpZGO(n9U$&Yy|n%5?(qe50ODc0cnCX&f-V^b zS5sbF3cqK##m)98_&Ay8ChsN!v?+}zCfcH%Gz<#5>ZLqKhv;@?ub-n*LF0?ngW9=} zqL7Dw%ol(7lEA%@##=cG(rWRe@(TU7Ky3KoyV>dMuiVd`OW{`g(}bNF)Fn>jf{yBW zs^GGM@F_eC=u+!BD%j^2hzJCgUOTycLy}HP|NblARn7U!psubD14`8=7)p>(kLV42 z`hXy>y(H~8LI?{K3c@yy^Exj}0I`f5NAA@O1fj{n=a67T&o^zgGW6~7-~;wLq=|n2 z_t-&JL(cQdeeB_(?&Rvp%^+mCZ*se!>a~$HJ_Z1e{GW!b6VL3`mJ?Fqmee>6CW%~ZhntM1S58Q zx9#L&{Co(6{o>F6p+o{nKr#+WAQl9iFHSa}2b2fwj!O?;9nUk3uX}n=?4kg?bK9cz zpL|cY5GZJH(m+oMc5fy%En6xAhC|?peIKCC6ROq{q+w&MjHW>c_YPWv@0F^zqPtK* zy$RB|M}613?W_9`$)=Y%ln2B4$J+~7$YiC)%!J@iwZy?G{RT@xQ@<_p{w6=3Mdmdxys2w9rZzv zx(H2wl+_DtqyG73o&}V6M#J~pxD<-c`GDsMY11*reqzd`cgPZxjy~10kdMIc8iq>_ z`&hx><>01kIgKyq4DbKC2yQ5>PUDfrNd#X(oNEp($gGdO@j`pKFdiukkG6LU0)_lN zH}_UX<|Z*Q@${@VqCYnv8J3IV4?o-2o$j5|@Ak%BOa<&rL7!CSg$eXGoS>yK0#^sQ zLCS`exR!)F5f0;<89W;&;Bm=*Xz-!;OOF;?`)8YXOwT!UvD3mOHoFW+EEse0cT*Z^ zpJFNuLWF}Za`&XQ6lFY_py(0PBRJ?vs(wkbPFQij1Y=Dt>phVm><|a`&>1+qDBdq%J}<%0=1tTt>3HfBNY(Ao)7STql2XB;EHn;; z;cI>I5Dj+@?&$FWKi;HYLJ|}ksA9XxINpf;jRgP&g^DJ*rSV?A1|mn*C$#IrXMC+I zFz2iD?!LIWuEMBleT0|y#LQGEcp*lbw1X@)WXkS;(hC_Mf0$y$57NJ=86Dp`Fy&3D zXgI0!@RK*{VhKjL)&R2fy2yP4;GuPmSr$ zv=p@^xc8A9_cJHnTBl;f5*QW1BnOP%y0r8RJZz0|AeH*sBD<#N`d6pCP{R3W~&Ji4)Gh>xVX z10$G+J(l$vVh^!1Npo?bv@Xaan&m~)&ZOWo*N6058s%2lSbd)*N|ARS@WT4=Nbjle zm{xXcBN#%r^878grxf8h=*avlGo5UY<Vy z0Cuy3CT9d1fPwm~j1ifweSxu`i3OYdo5y@Z2ypjS#hJQ78*1?&6E`uK#IDZoxucEW z^gzsmS)7;&*vC{7y{*H0)&c*~-7`1rx$8mOiJE7`AE&ygp;LO60)DNIY>%w53ix6< zEcG*<^p88kABmZ7K(+r+r2k2V9`b8yYEFZ}CsG$4wfNg(HJ*^>0f7vu!#~FU+?A-Q z2&(0|TM1TnbmYQs-8{dza`_Wmwt=YQN6+7L}<{ zXI%eVMU(9R$eI5)K3|0gc)k{c&ldwJgQ>w&@5g@$>-=_zW|HK-5t5Q2(1u1Di0!*x zRtoA;9?u?ozVsHZ5l1~!6orHtb~))or*$`KKb$So8YHyT6qf1LruOVPWThrU^gO?A z9_~Hi<{(Txo5jh=SjMT{qY+!WSj0BmLivTj-!YoUc}I71GQVqOkar zIYHrf*!mvYGf4F@PHBv`Ch?MD&~5fx^Y=N=oB zWZm2dbI=OxbzKg!rqzT)WFcIEl^3GT*7VJhJYNK*;>PBgmyLia05p1ov6W_Q6nh{$sv zFGWz53F*tM?x%)`2-mKTChv*6S^U1p%*`D~tcS}c3^LaQ?*j$h{aFFL^WX@3G77KV zN_}&hh+(lF8a0om9U9()6?QP{0HVakrRV;Pd z&80nq_LQ8B=Moau%-2nYTXidch@;gQa*|{$HAO2nI6q|T>~IjywOl?qcoo7M6Z0%4 z^5`7DXy$f2A5!1?>fP60$Y>BU1MN(CybF&W*+M+6MR-ov1Z`5(Z1FJnLj(d0Z?YT~ z79AHl3`jocfFGZTw5w806`4*H$<+!B8n!yUN_Xc=&dpmSkI1i$W5^BG01;15Xb;Y+ zw%Xvyb1z(85W>`pt4~QYQCYz0JM0fMA3V|#6gaGS^k8c%&ISvErt@u3jnmNz^ysPP z)fatpG(=4-`@6=nkD3hZDZ=ZfzugLyv~VE!lp8$T>y~lW=GS zutxDBELejNdn+Xc(QPfb8!@>-u|AQvD_fJxIl$yp0?EDZcv@gy3mnPg?x}~Zb7}rJ zLb`s5JycPp8Zo*wGHy(9OMri-f|rOw7`<;N3(B4eJm?IhfR-+g6d z@dy-bCjk+f%0uf+O^)5pO-DcXQu9+CiEBOXtEp{`0R>z>dOlSna;Zxma*bzSq!;S^ zYh$#S-`3V<)mfKPYY!+wAkbHIJRA;}r6Fd?SlD_+;y+vVW759k_fm8}V+UFCSa-}} zx8(sb+T?rOm0rTV$WZYyvTVMqh`!!d%iD%vE&}y|w79BUZ;WInmxaO9Pc{P1JZGz% zHYp~zI4zJ(kGLN(S`7o4t)x${okb!SzaU!tKS(@f=V4ecl^!j<38n%}MS<&o+XwEE zRzLPD=clD=0Osthw>1>!;ibw*4y`|UxebWTrWm(0n2gh09H0U8RnDWwd0?q07DW1S z5t%{6R6{dkhNacQ+h^RfwyeRX)Ysb_f-s%|A(G6=k@$f)WW`V*ArmFWs_9xpq^l$} z5zninzGn_j@eqdtEhYAZ$Xg| z=puy#X1@HB%t>*6!XuV}!I!)OY@btD-+#_GW{%ml0~dV+xUj4p7@(4@Zt9lFObGFq z!1Pi$vj%`OyKfG<#b{ns+L=mg1B7Zf68&A$y14Cw1>B4KYn?HjPfiMiH_oj^ z{3`s^1zd>Ul&hzLMW>~}8;1;T^n_b2eYPD}u#bc{m4&7 z-d!R<+~gTten0b$iF0HI&&@*~&IUa;OLpitv}PdknjtC| zL1>@BEiR@3GhmF~dOuEByILb_7=;Kp?Nq!3lRBSSf@iOLW+ypX!y4MbbSEqHZVB#% zhwwZ63kAM=5bNvD#1n^?$@e*Z{rDyh56WjN%>2LXuGNoZCzdJv8BG|Pl9P1q6k&Jn zzTwnZx`|yA!t^~$3EPJ{nM-*rKm;$->dGC0hPSg{TroFNFTb$Yul_qCQe0vu+4nKx~$m^B#tHv2G_ zFWTQ){ppY^f?!}tbGUha<;=!bYV-i0DsjB}qh}t&2KjupC;hm4gq4wU-alQE=kd+o zkaxpqFA{HP=BL*7#L0OtHi<84#)#_;o7vVAQ_6}S^V<#;W-~kVv6*}XCn4&e7L3Wx zC17wbZx=Uj?)GZ3-%F~xx`dI!n-8S{Qq@b=zSgKC$9-FSI#C)qK2Z^mR^lH)-w~_Y+OEJwtzLbUHONzU-VhdcI^C5tu%~80F&n{lQ3SI z{MzQPg7zpEperXFzW%l;@{L|n(YBTX<{u9p1+)oWb87G;fTLASq4x>}MT&YZ3PwqCp2 ziQvflpEf&0G%TWs)HSC!-!f-P-P8HSlTVoX06)FHM?4#znx#6%W@lSNQgl6SO@xwb z?NqswtbUl+%Jc6oH;3fbXx*9f{24NEs>tbk%I(mn>@HN<^x0FDAPD6^;9At#`endH z02q?XU>edjWGB`BBR)6Cg5SHjOC;9`fQHLUWv>@h=O-^Y1_4F6?~`lHOphJtFq#^Y z4&Jinft$}rT&!4_yuEw03MM??=o$==>X(yICRFDU?>@L-sF~`%lP&&yNbXx}q-lx= zpXWO^MRVPQFJ8H#>dh0KsDmaE-J9nnj=Q~EcUg$u#>8xuQ(6Ip-l%GkGy1lM857@= z$T6dxSXAS0bjvS~v?WY+QLy7&&Y=)0*HaG~ynUb~7#`q^q_PhV@HgBoaX7FV8lk17 zOfE)-8G)@6_#$J|dHt<_`$~Kj-1cf7BdQNt5@$;8O;{SA7c_i6x65w1<{)(yZSC5q zoro{hm$se-;Q06w+b``$zUxWj!FLRZ7K&fFtp>l|^y#D^0tOn2F~bq%&L7GWZ`t1) zD>+F^vbEm-tSU3hXZH$gyh|e{IROn08n*m5We?TomSY)w0ZQrp8#(aEZtPq*e z_`G2(4=iq~AON#lNOyyFtBk+x*mbfT{(MHqRkqOyhcFEb2-A@m-0@bB#DAr_Pv@u@ zFHmSb(cN~`)%N-fK1Z-fCj?HJnzpyNNRw@obo}Q_igjb3X+=?$z3v3nK1T0UFqx`Y4GB`%m)>o(&@Hk_gfyQW+leAmRLmv z&H+o8b(_VxE)k+E0!%g-fLP2Na9!p1RU7*-g9ny_5P3W{RtlXWq6_^3{)mUt*yV~# z@{zjHx8mYggtv5s)nGCQ!CkyzS;~Vc$k(tYjjaB@#T76;G^E)uka(Te4k|H;b~`** zMp2?v8QiC~6ja_32z~x(YsWG~)tBNeWJZe@I~b#j{Mb=tzgRyO^UX&${`p<~_SK6I%S#iF@IF@H03M3?3kKvi!piKpWnLKr=J%GbVNi`dusr)! ze!1ycuU&I7_uHQZv_Rt_8KXMLyr>b-YXS)Hxw+eD(hYQt`j=0A!}j4}p-5m`M)vMF znW!cAl)%FhczIs&(TxS2RI}0a!9Xqk5{Y)&T*1WZ=hc*qwiO~V(2Q3GS)prMXH8!P zqV6>!E%yt3PM69q2aRqtu=f4vy>7De>kXs0hL4Asa&9mXXZvk)*j+KLK7{Y%G1Jb( zTc3azWPu4dub1zqRuBTh&m(qfB)YN&S^JFwj*Hh+uA7fNdiNoFnu4y|TJ;Ib#2{pm zrfYpN8jhKhKWqMQ!(7vX9S>g1?S35k+$Ckb)q5p@X1uM8w*i*3)zMJ?MJ(CZ`@4(9 zNi|u0eM5~;PoPJ>NCE?Zl{#8eJ9mV!Kvm(+w|n)Etvgd>z22#qf|5zA*uKo7H21x6 z#jv9k&qu-w=N*NFQG|`I`KLtk*8GZmt92$Ka-ra!)6-itJR7K)?!o3I7J6J_EaH;Y z<6DGHYVuV7jw{=DRGe!_N}s%n8hd?mrzs=%@~7T8tYRm?xuEt3p2$U;@_^yBgq)UP zT_esuruUUqP0XZ#wT*;oj5GCQmz1O=sI^dC2r*lOw*(&R6HhV{FZjk7G%)mi(4b7GI)bO~} z!+stxJ#1fI0OV^&=Pfq6$Nj5!@AF>i`oNag5}f6{yFf9z-REjHLMfxoMd2N%XL6(r zP}eZ%yEM@LzSmM%lZ(b9H{*mK4Qp=)(uf;-!m^-;3A-b_;Ng(eT6VQHLGiop-lUnN zq4$24ayGwSe=HY>hFqZ`dO_QhG+H%>FJ|k1UuMl3(iBvXP1E1=ygYTYnd&s(T`=%( z!TDLbrbU(m*2CSw?GY(k&Y-%S$JuvX_fIBWn6!!HTzrPbg%LEQqSKM3Z%qC;y87D+ zp(clR;|KkKSPPXmr@goydkOW>{_(cypG@;Mo2L^i)pJIgu?wVQ(~3zV%RV6~NT;{) z4AVEfb;Xx}*QzzgUJHM_tq>EflKJZ0_w1t2%o%>FoPKuCpOblEf!z2F3Cf12dTdr~ z#sL>UE3)KyIH{6eS_FqP^yh=woLm--7lI~-S4Sg1;X}*rJ)ZJM8>W}Q7vg(wg2h7{ zp?IT}IkOJ>f?)JZ5T4GlVnxxW?nsPCp=6x~1cf&g1S`F=KH*(iWSa6Se)Lg$#P8Jn z24^eVwKS-uF?jdsdaJ$B zqZxF6g|A850?CYJKB`vGntMN*%gXeq#Yrk~iOF~+w6>2P&4?KO0QfJ+)3>E8 zV%gy&qb&1Vg;)oAzVs;<1C@~H8`agTv#*64H;a!4Bt0TtK{;IENok4nqpN4WGSll! zehrRWco?d&gW(<(!{vZNl&hZ2(>wQ3M_Z+pW}foq2TttBvF5q$RU=m}SJA1cs=0I@ zFy{;K=JEV+@x59x*IRy3D!EGE0*?yMDGWtYLLzm7X%fbA?q=7YFFJbkE_W8Xb4zjY zer>o2G}fI_kWac@*%)1(iR3>#P7><12TkNAB!-HS4_tFN|9;1*kbTL+BZ zEz<>;Pdp7i7=~@(8XqN^U>|cKOg!aDvvD@o4*o-y@s)uQtA3GEN^%_{JWE7GzpD!e zQU5+1U%D`wJyoN4UqHi_e_|EBA;59}EegfU$DaMNG|?nCQZ?LBg(g$JWk$q|;QV~z z7kOJiek-mXWbBnz*K{i-P$Z_lmGFF1^ky)2?v|9-p~$bsM{eWJ$g}#V>7%(Ba-Sd} z?g5;^i|+;}bx9I)NP9V3Bj;1Nm!B!G9l9|`#FhV_qJZ6Bm8A-u#zEs^2w|kVe&6a- zjs4&B#y;G6i&4EUhVRX%eX-!I615lj zFla*5B>?N#vpGVy`X`bDh}1Cg*cc} zBQkv&qpIx$X%Tb88I^v^6yM_VB?r#NY>!>ae$x0G-O7aeWix;nVXNoUrt3t;)-hec16*&R^xk0#v`(xGD23w9i+KZZoomqJ_WV6{Dn0j-#*2K@+n zynidIqNVW$*XGhSJxCvUP}vo@y6S5b;efIEk;~AxT%;rh)1kyOlIHxQaeJ=9p5ck;=s^Ac5$B#cw{s@ zCcBir_&0`8VSCq4pI|>Vn`PRw-xA>#&~XOu+t1WeXgWwA7^iPDfySb*<6#nS$D-Cp zR^Rk3T|Pk}CFMlE3UYUSh_KI~oPB*sYA0cA#nXSs$elRt)2!!(XI~pmvbnfXqbisj z{g{9u@VGN3&>I3=!8SisL9$MMV7VB&A86dxAn0^{W;1-jMTyG1x%TVBEq}<^m8boY zA3;%`f1Lf2a0DYV9SlH8-}DL7#8=?V)EW4^a(Sr` zsg$eGNs)zyn**h9afZ)!^i$T>y`8+>=?T5D3{U^`%Yk)^{#JQxP8+E2*vk;SJltZp z-+n&alRz)_2B0vWY%67dYw959b!_)9#nWJI@7>!vmGeUzcNjOv>hwGZi1qsev>)d_ zfcQzkDHyFG~JhtYa4L*#ELO1(l=tS3v;(@qalf|837d;Tzpj zU(M#i_7QUJ1o?Xc5;$u4{_$q@U&!Z**0Nz^5&ti`Cca5SMGsacp-#=lSFyu!PKRgl zn;n(PCyggt$NL`03+Dk}rISWH*^8H0JMijtQ;I8cohd@=ABi_?Jb7B(^ zPo6y~_SwxI7182%O&8PupTT6KSC_vWKK&aTtEdy3NbFo$#3k`jHZl^AJN{lU+>`c= zN-5#MY#o{Oee3%dkfq~qFpt9KMTl2fhdI%&aHQ-=;vN$95VI?*-7IM-FU zo!My3~Nmv+adgD%TJPx%?+yth6vK4%;MBL7mXj+Ilr4Ezbjyr-iq>_ z$Lyw2-`<59D7wZZjGW3El#W*g^b(99YSBZ|#otIxnrO zzY5j0(9T!N#+#&v$yy5lGjpqlqxIG{Nc|=bu8b*PLwMYfRp*{!8ZklNsL?=E`pSVF zk$z-+k(*u1jm6YNS$9X*VEx;^h6p*>QAd{eU4f7#>gXklf`$DbKPn>nOax-2L=v85 zhF@G*wGoKl)2w*ycxdaKS5O@@s5NC%TA4RN+gH%PMP@GO<}iN6H0*qwu7BF$&^4;@ z4lFCX#=504*acmZ4YVggtOIzF#p-#8E>W?2?BY);LW(l@=WjkZP>o|5O6*#TjNO9( zBeIPdjP8j_V1KK${8B%y7miP9DIj&cU%b8TB{9awnIZasT;6D6A}v;^W{RAks8b}n z5%miL`cd&SnA31a=>p_bF0Jt2V`vM_qtfoLdo0K2dD^tNWc-SE5~<0|IC_-hXZ4&r z=3W%>ys%K=a~lcM&+R^HjC1mZ{e(Zz*pinZT$)p(_dt_(#>4394)lf9PpQ5fEE|P% zecG>^nKCKD8VdMA!$`wys@8&|#cC2EKBZ@41MhP7_(Hl_(A-cJ98j3mV7?&w%*1{e z6C@Ndb*CY$Ojmg+9C-Ei`}P37Nkp#T_|U(x02HG%!F*~31-#UpvEypgq$R%%Ov&6F z?u_l{gX6otxL4H!U-sz5{He9#HK-*6W4-Yu@2O~sJF`BIE z>2H#HR%z(IS4(4ww}ExkbVWzS<+V1a6vaCQEI&AIfUPAATJ_D{8q4L{6(1uw7cn)8 z5ReMhOLfE-(_Sba8LqueAUVXOj{pHG-6@O=xvyiVJ{Px!*ZdNC*Ixu6$gm%_Ia|0$ z@(YwyRhA*QDkU$4$SOPDYxckI^3yd&b9~XyT)G>ZV`o+{l#&SZRIq7f(qAt--KWH*rxvZwFpd1A($!{&s!DF~u2m-%N z3+KhF86|R;HQZvrZP#KU?u?elX|jE4x#Op?155z!ksVe+h};CQd{1uKegeasQRG`W?vw z69YS?xt23t z$>}KRp6vAK!j>7n=Sg~L1rz_i9Su_ZAAq12ZU2j5KmQ*-4g#ozOdqxSFZeMpr_{D& zCOm*^**P1A!XVHA=a)fpU;lb9csRsE`9iX!!LSJ*jD$K0sPZ4A>_GCVIOeYy0{4TsN z;N6*@f8huR9J?KaIN`4#o48|GuGMg}*fqNNYAkpcWcH>^EBl1u$P0|fRu9SmEKy^(5~Nv|EOm?jnA!kN z^sta*BzgdMT?t9tY4Lf35s1+`7>#Xp<3o9$OiBmGLoatJeKEQM=(AGk4=O#qvI_n( z_i$&ShqYFwoq4(GEi2st>!rDtD%v8;2Q*i3@?3LpxI6<6!+0E*Fv95JP+9yj7(HDK zd8gC=bv!V^S+dov$C9Kt|5!vCy-YG7X%ZwyZHgPR9*6>_J==8<8;0eeX_fp&0^p`n z<47p>lgwt^Wq+}HU{vrWEZEE;peN5w-k`rC8kGODzY7LJ+%v(g@-(j?c+nG} zO;L+K54a!>D%uw#8DHfs}aC%V9@@ruxzIO(xY@Yg&ClFOi=Ys~#>FX^7 zV|&nyo2^jnqhj!7&fyg}^Yqk_v#dcIh%G!s%#~GxJ(dp|+^$w3pf!ugXy>bQ!#(uU z_?%l?4eoqyq!kTj49qMk;S0%4#vz_w?Z<^4%0C{LIKG}WHi$ir%l%6J!=m&rk1$Z4 zXZpe=j!0fS7hBADGS_5bK$~zhY}p)=nR*3Jk~r>Rw;8*5(u&+OSBHX(#b>`RxrJCW z`lnT1T5*{pWr3&Nm1Oi3eGxb;8D^M<;2VQk_hC>+N{tx*AzH-LZ!4%nV6EonEu86( zS9vj}LFjb}#E7ZZYQ}hZX=&*P zmvtXeqg@D^waQ%Yk)n;}4<1|Ir_ieT%{ z2Kw7MhLl%#tzqiTEoVdu!PsPHngFHmC6?MBm6DGQFr7EBInAD8ABqUd&&@Ux;Akcrfr58><;clMq;eg2X&9d!N>sqt!fZ z%j>sgoaU)pU^IZ5tnlj`4e;+49Kc^M^xlf5}da__-U5=M4mP?7A;c z)M-ve{Q~CS;-FpU=_vP_u$J=7_%}tXM03+4>ds3AGL4!%qHBLMCiNKNZJM~K8>H62Ve4GocO1cQ9eonYOkyJM}TSDCAJSyqjo@L~-#wvZC z_N7Md`zS4Z4-nM*p_BQ|%Sd(ytliSv?s0hO-;k^S3$vp=t_w8z`cu`f0rUc38S97L z;}L8wRNRB$AXYm80r<*4jS+tf?9054r&f>Mg+$=BVaY3N ztQKp|URK(uSMv*QFCMXc{n~|~Ta`1@&N@ij=(!7|J@_PFXguu2D>6;P}kls*;_VPrs2%2us1SwSTQ+ zVkUf2s50pBl=l_QfgI@k!(L&lHKYZ`d`)!$%r0!D|4u%%n&c`*QwBy>`K*qCPZuRP z1!kn(B7S|_AwwdA<$CA0%895C6co2`C*;!EZNHS&X;D$(0Crb#spW0{G`}2YW^R4W zF(Tq8F9ft-y?aA9&x+Rkfai|>SL@fHY~DzC;M^2$0XJG*MGvUP+rw_{crcC+G}KQnp$aqT^+i^h4g?zb-G5W1 zI2eu~L&fz``yMF?2i?ck7)Vfo`F0-JBE5L{@Ps;_F0H#lW(h34-F2|VE#shYXN<_n zJ4H@hZKB?nrL1f(9oGKsg;%)cwSP#$u5Q2Bq`zQXy?5{4JAku>Q4d#ym)rU~iyI8e z!oPpH;Wwxl)wz=Bi#V}L=d>$SmYl#Rs=hic+=J@J8lRGfe+FA@7NviyYWOzvZ$huM zo}nS7Pfx;pI0mu<*Q7g{y*1@WP2;*zrRlP{9Rtsg%7`=z{T zoBEp|9RDlkq(3J;3vaGo|5y2EQM~-~Ki=)l-9(xHme2ctsmp1~cTFBYdK8wOoqg-? zLAT5g1Olgjy&wJ#n6|5L>nDGMEyj1#-1XK3r z_Ak)@rcSaqSnI+6+_J1#$#ePxl|lLjoBIE9XP8plKZPoU&eu=aytI|tIzVSft$=I{ zD;WZdD%mC2xMxmA-pLz4kYF-K0}-*EoqY3kH98URrR}=P zT=7>5#Sty*w1WFxiOSxd3!#;{-;3P=OJ3Hg=2&_U92^8sl)~eISIMBroR+W<8>YfB4MQEDZ|p0`ORA78TE`m{SW5t3G!VLi|rm^ z&KaU`iXfWC?XhSMlm{Ft(wK`R-q~&NX5>o$2@~`y1FH0oVnXAAjBfOTZj#&9FZ~tscvscMz zLH>|<^q?%eH{VdR1W61$P)JDOp%~bibsTFTr&Npr_W#xyg}=19J~22rj#TUEuO%U- z^;#b)jMBEvmd4(MF+8?dA%$r#ROBKok9vNHsGF3PM&4VJvYM@0&1y&Wm>CloOO7r2 zLZ=+Z43-eIIp=qQ|E?#!#u;*U)XF1>L95lOmO{?y3a{PW4dOE*bD^$5^9>rP0F;pW zry%3Vm`wI;iB$K!Ilg#$@d(%#9_ocwLUCN%AX-KlF68sT7*-zK!0QofUM>w=ma(@Q z-60HF$P#oo-3gzm-Kno>u-={q-pW0(oWfn*c(QUzQYPgVcc9fzih)_R`)24rvKmS; z-kW>*@zWNZ>s872%SHMbsC13lg6lP>oQ2*`<&<#g2AE}>x;1GN!!u>y=QBiEt(fed9AP^3M(eu3`<-{m<;#i0 zF$%T*Lr;v2RSezJZA*1D$}L`pdfK9*SvVTYihVaHuNjH0c28SImMnN)Go9On4W$cg z44p~M41+4gx03AQ^~gs{lpBdsc=$QPit%b}EmNs7LDr%{9gz)ZI}>G_ubiw;=+po4 z1_Qn$PjBg0o^7LJ-6|5d8v3g*5&|DSj7`^f`b_yeDqL=;%iuk`Fg9!Pn#kVeHTM(j z++&WTy}N`jz^;F~D%@j=%ea>s^`KwxYM&X%DV|j?Af%NKd1Yj$yAp=dY4@cm%`<+= zrsn?Rkc#KU90%R0K{NnVEfSbRo12P^@mW!qPR(Zx+8)3*v-pBunY;=wU`_f~W@cC+ zl@x*d*x#nF{Q@vZR!OXFE1jignj+B59favja*a{v_n%S&avI+X*|i20D~wmdg#e;~ zJGw8KlVyVp_>%RP6>KKmB|ztBM8IIJ8KR5z=@K*2w!rCdn?1jW?WrbjFhl6`)L+w| zLO~5a@MODh)wTJUkn}z5*~4x_?W6}!|JKI1TZngtkSC|h^iEJ<_72%Y3frT(3@#%y zYeLFkXx|B}+>Buv)FlEI5)nOHGteUv%=BEBDfKCeOB-UmE-cbwFB*>r6{j3@jx0VD zSm`^M);vo%`l>uCz8t%$ID zKE?Vf?VfCkZP$^SrzU82WcB5}9Q%WUl$%!Agxrx{2lS8Z=y=t|yneniWw-J4^C3kA%aP(E z^*5EZuDwE>?#Tu6=y%VQI5Vw%d57%DCkCTSCWBlqMY!l`Yc8Gmbjl4CQ1ZDaPk6uN zVLE&4l1ergQw^SK$L_<&K28O@UR3cMbW?oLtrg%tlM>bgieLHLY8O9nG*WOM!tsL` zmpXY-&ecJcY}q^S-zdggC4rwwSUIxkD1ICJPnWlAe=c}-sANw5@L`Q)LSEjJy}iBf zmTkA=F@F5MXvPtQiHs+v3zDMVVarJ2r-e^2nWWqxcNu2!r+-1s1tVH}riSGYSIMQwoBjJ)OEa^sBR~9!*uGEpx#1S}yIB-hnt9|TdR(Q#$ z3WiR|1lc&3f`$g`6Ma_E=bw97T7K7Dx*W*&v?pD{KIaPK@5!CgwKVckz?1>~cwgpj z^`N&lg&Z9WB9Ox>(uqMQUOB;TZZAvOPTv$x{Qk8r@@9PvI_N4=3!ZixJ@+!^!8gyR z)}oq+uvb3J^>A4dZ;udAFJYW~_g?v(yF^4A%kBPQay>LEg+{8BYFQ$$byd;AIjCK9 z-W7dy?69}lOcg8pE@q^NcP zR!OqN4^$JR1ezEx*9rs_F=^CG3xyLlzinPlmx5EI4(+amW&Rt0zlz)gNdBX(EqQW9%Glep(v8WO3BSMdXy8>QpY~eu3=f zq_1^riH%Lg-L6DJ2!3i<`l$IOt-I0M(eUrC8Kq&9tgAQFB&_o&EX z@ax>d0>D|9C}hp+5a8^rKKS+NbB81aVa3WE-nham;d}Q^twY=e3>xrj(KL}8Y8Z`1 zC*!uu3K#gf*h?B>4rGpeX4&Rq;^@mV<4pa9OO>Hk*?Y7?@o+`X2RI`3PY5RRUbAyY$loBP4N8)Vqn!%Gisgje-sXZ07ciI<8Fok1xn_5i zSH10GG_tb6P`q?!=*b=sSz>P)&ARjOi1%yQHYOHVL_C@mNlNuNHJne;YJBoJHefV% zQ{0=s%~&oaHe+Bja^jjq9B_QVi_3OrF_-XTz7Yn%=(scE@7k|GgQj|snZFMn4^pR( zi_qaNY^Ehs{=F&lvO?>QLO%uF5hzrMI}DL+I8`+KsH;w$xCn)vy4rGFy65vqZgPsZ z?V_&OH3_&F8>Ke0Y(hy-(eVi)t?^^@RaR-hwV$poJ8xs`7>}0w>)})FOrM4H8*!ay zwW2PPX%8P8tQ;8J!7tVIlXQ<+`7Cp*It0cq!Xx^|j9m_)a*e!mHT!Qr0oLvkVv`u? z#U>l#1U&7*`Jwi~LVHI)@LhwCi(3-Xx&p?@@ITSK+#YDoW0#G%D);uETY}oIZl60` zufdCv2703HUeXZ6QmYPIFSPoVF~6LKZlBtLouXR%T{5OiLgfqd3l|z?CE`{_CIYcu z9FIcmDaT!(Klu`HTbbWx?G~NV!bI8lTVM%F^ct~o1R}XTBfPdPT1{=qL_o|ceLm-F zT>@eUk|Q72;=X0Yn`qvcK3&TdM~hmu^5Ikme4?INPPZz*<1WgY^?M}TUutH zPm-2xbme?gJZw=?9hahNJ3F-W^Xk|QBNzQ42&X0=*Lfw(ZSgCYW=FTAKb;IebRz^l znqTXYTedPgDQZ$PQlINq_UrG4`Id`%X{N53A4ZFaiMbyHrI7{BM)_|1Kqe#8zFY-l zJYKKP_p&xnLGW~wmxGZ|K1|MyaApT+dQ;oP+hB5SH7o@?cFRA_mYI26E zFJ>*KZHyg(rReDVeE(vEtDIM>lz*C%|7&GF@~j2CZv8XvyLbDyWI)Jsz}J%fQ4Ne> z&;wPB9}IkGT`*x|GavB8n|b|rAA!Jyy)}Lek_%tGaX2Tw5O)47U)WiqPuXUrHf_w< zL}V=MQInDxe9)s=m~YaqlSLALZKZKv;9W)dd>pd~TRismzJN#j6a1_)%AZP#6}K;I zFIF!I>g5l4GsU)1n6aV;=`togv4lxms67Pi1yIQ?>67Nt%56C+}D_)CMrlC^|lZ5Cflf zz$qItR4*LfSG)Z#r#Y5B8qk}d690~@_1!Dx*CgGdzP6D$Z8x^T&YbMQyZwu3VA;`5 z-+^UqQ|XIdw*)mTqA*o+^Oi_pN2GYPul|bQSCad%J1=-W0-TNRj9S7fQ*CraEJ0o@ z7g`lIK~JQ!@#6J(O%^)zF2z$Pw1uJyHlfV2;*k1c%s{nwE&RE(%MI8#67aR(yUai^ zB9bz}b*B^HH=ZT;6!XChng!RA*%o$kRJ!qN8jW2m1p%e*EtPotPg%p3=gVmi7dDvG zjC0&>pO7K+X=$`M!*45UmpKeWy1jkqk~~!@d0fqvdF*{}fy4u|+QIQLIz@6$-nIE5Zwt6TxptNc%9 zL94AQyWi0Bk}LAe^Hnp%n}Q@J8_ssp#PM>crflaE?8z^kS;ex_6xp51?w_ALAEn(| zsL9~)upmOe{;m2vn!5GuloxMPKe2VvsQH981#7|++3^4` zy<4T(KjT=9Rc*Vb7fmJuBou2`k_ETLIl$m3IIF8l1d!kcq3>uBZ7?)2ohQ)j$JaPz zuCqEG=Gr0xj}BFMk-}F{IBgk~DFXmx-}}EicTGqQzW302skWBca1rhAqZg146vP-@sak9A@h!e1Y2Wu6`lt|*!lZ&;8U?1Vpr%v{>SQwI}h>5 zSA-d)bNP=$wY*oTsXlj@@aoiiGti&uPK<8yEH?W%ZI^NSjtHnsb~=eBR%nM#q_!IV zjT9sN1(RgWy{NHDpJ1nh@kcG=&Gk17M4B&*PZ`U#c^mOS3Qb(KZiI~Uz*A9Hi_wpu z090=`%*k%Ca03I#$}Xy){Vs8Lrin}?InwBW)o_C9>yjbs?&|eiEkKNpNA@Fg3(Zpz zgg;TeuDOdJ%?D0y%K_=|S>ZGH#nESi?$VBikB-z9cDS7QT#166>;fJI5|!mgDp2J{ zu`#|^(Gz|}5aY~#^42Kf6DZf$>w!;qh}m3^B+C$O1$YwCqDdwGOuD=Q(ylELZpBR< zKc)wiPiamaO@nt=yNRI!!^c+QzcC3QL#7kCE|CtJ39UA~Z)0fOdKcS#c%y<16UX73 z0UKpYhtO;!Lo^HWiiV*+h7}lKS%SA&&n!>H&7GTjv8?cl*gF}to_wyZqMTkl3veV$ zCk&>u$9}{(GrYOIN64g``}EQHDt{9J**AkMk&K5!7a=4Ro7ENTy+VJD`Pb#@I=>ju zQfaX+fEp-%xM9+##uG)J+jjR-AbsTWwg{9Tkt>@oov*sPH@whEK`5g4Wh4LY4yT|{ zwOFNe3Ij8v`?ncd?98iEffo@Ad>hp~gJ)cWvzKn`2e=rK2A{V3Q+KKjd+AbJJEpr`shJMq+YsSxP>UrrSh<^8}t@jeDK~`ieIm}D4 z)8;Fuw$MogTmko)p#UqXcR9q40G}J7rP1W{UJQsNd@@1qSvlXXw=KBn+0g7Bz13netxt5 zr&ec%SiYZM;LXAgUwRJT83yEQ8A&`~9>^WAn4Nw^V6n0c65sY@+YtF;Z9UjzjjZD0 z&zoZ0{5mNWVz4=nd?)K?Hdueo_*_Z0b7CUtMSi&P%{AW^3*qT}?*g`uRQ{SphTOI; z6E_qK<=ke~$KndjO=o>Cdx9r0HT2%un()UH-DVj*syl*ZE+Pv|&sAL01QI$R zY|pow>9ubL#hc{Meg)NUvO2z4s#H!-^MGluj;Et(7-)->@3M|U*$#T~_QlLQi}1@x zlh53PMQ-HQxnOd~>DzS&S)v(>wMHVGnhj*M#O0FbpZgOcDlw4P9f|>l`7FF$ZIk$0 zcA{S;5vz6ONoTQ^A8DigD_rvKuUoIU)@AU_RHOz>lsn=ywCmi3agT}VS1xuFdfLT3 z$DI1T)(Fw%U< zt45QzaiVo9Z>x0WLfr4;z11+Q%~@Vom3IDE&17=-Bg$*>FkYxhWXnA6C{l?ZW1GlT z-OO!JbDw&zsv6gS$R)^ZUQK&95i?~Z5?#n}39p;4aclQ?#eGR(`ebu-wZCoTcQSR zbJf=MXBR~A`J%q(mZ~3T>`3H{u?E>VJvF1qLngRpQ5u?Uc#Pm&0A(DdX<7B5=WN;M zr*~B}YOYoe=@XHe+)uUmmDUJ@FHIq8Jq>?qUH1pSjqY=MPDnvO4N(79&Ex%Vk)%^$ zep@zG_MMGtlBC?`yyuH8)od}Mii-5B2b6JHkoc60d(5B${l9s2ACTpv%2H}JuF|JZ zeU~ENzkjc)t&LB5JMr3SJ~WFqX^qcv7<{`vG~e`+;c91)TIt0*=X*2RZJ$nxn9mEJ z*aioN4QICp5!pp}_6w30P4IQuioG&zK==nD(g!+0n(pk!99>P6)JjX=^NUr*#KD;t zn7`mBf{`|bH>34eKQQmH_W;=G3`lK(l0ZM91X_eLPx8G$UqV;}^ZYO3K}PqUHOk%E z4;zu~1wFmCPm{5Djnnkhri$paX#$}|Fj8S}(zoNx$H^2eF_zNH7LFU3^UD|T@0FFD z^)}OhU6OiTr1a9dj*iY})7Kwb2~iUS?|(28M@AGj^WhmSMD+Q$|DrYiLMeiQ|3@OH zZL{Lq8Qe8*>(Bk-9F}x|3>TxPLs3uW1Rnpz+RoIEcAMbFH^(!WH~=V(4Y3{ zo9Xj1qSKWp_WRSOJGqN=d7qH2=x|e;Ofye%F37&Qm!QQQ`@cb!-6Pk-17LHb&7CZg zA2A~u%5!lkq~A88_Rj1=&bM8A#yY|d2npVE@N6I1P{9%a)k{-M<*%+S!Fmf z@|D&hKD|W5SNYwsX6m=j_?|lN+$l^MMz+oZdmmBE0nkwZN}4ILJ0c&R7N%l>Xq7-^ zJ1>sQu}~BW+x-m%{#)YRnX0#F+t+c|nvshiS{G5CG@nHK{UH~Xw_l{TXPu-71Xha% zSTU0+P_~Qviprhg{gZ@AZQ1q=gz5^e3#mVQ+Z~X3=i0+Yk_ots7({1z+gPa-w&ICUB*R z{{AP>U2><)th0l)YTl+OBc<%rQm1kR^LR|fSmpW~NF`f$25|WELd8464}Hw|!I_{XTO%G=z!eX{mu^neT-HuoSLNhjwAFBkzt~Al*9< z5HgZVFnJ}Y@KHkfToPz9RGBR%cuI+HDyF^3PmPv%Q5X-J$ed^H#7-@n&1DORh_yA_ z-m1``?7sQfv>D|jf)=17FoThBOR}@+maDkfX7=4iJ#*JA$Z+amYN^Nv3U#>P_$`IL zHl9z-uTEWUH_0Ij+Zea^^*a_JkoIw!>!IY|Ces&g;amh@WGqQn;zu}-sjqT^&*`3c zpC{&z{(>A_JFtJNJ}pw$yhv^MdW6H`+~dgICYq#Hd~11~4GMaal1^-~a{#I<*5Od| z&$-gNj67O{pdl)?Yx^i|>&ZT$I397^7`m!%Pp-{~*_{zJ6b`#v^j2T?E>Z(4ROJuN zCO3mWQrpOX*Y#>5)(vLh;~jl$L>{x0H)$s>%Al|{F%cY;VAHvGjA2@?8C&yn8S^;4 zpA7+g4hno2OJ{tKBAP=Q$gJIl3_oq$of0gxAX91!&zzWd$fmP4OyC`X%n?P;@lxm8 z@MO@aRmZ)b$w_nHf)o$*6Od+M3TK0|A&X0qwp;!9Ef=C*O17f<+U*4-*8i}yO`j~AK(j^5Sx~-m|9pA{K2_;8i9x&Xt+5Z@YsJ4k}j&-@Bx9#Ug z`iHhL0_=y;iR=uND$)^=X-3#lg|`q4f7k{5!OUK&nTy2)-&XyO=KE-2nyscceC22k z$q=RGSi??UQakW*7@pOV!v%NWg-0m4E_Y13Q{aF89CX);0R>mq+90LEH%Ag3><~~n zj5xtsOM2GOOd3NKFMd*eUtOLbU}2$8Iu%<`c;81&<^%GUplHXVg2DL^EO_kCItmWLa|=V zUc<5OTE$e^oVK9*e!B}|Z8Y4p-e%zUaHu;hV2(${*~v+Hh7uv?*lrnMm@6P4z{HA+ zEcUe@4ab+w6rxPTl88yD73Wmpao1%sNas~vAU;;jHTjURYmk}ffkw(|`_TnrqbtlbMt$wNh>tbko>aV;f#H5(xTrt_-|A9GmALne1~d8L@&((e>f#Ee3Ak z|9J1B1rF*aYwL;E*V^VV3jUss4hd3$fR?qZ$q#@3E?)Z8ytcCP%M0lwf8#vo^w+j4 zWL)lYHSfGxO2(T|qG8J{Jfg2bwJ2O!2eo>QiHT|6KWd3O-!+es@O@z6-_cVg)4Fr+ z*IJub%Q4K7y27YZYTSXka+yQ~6sXZ&q9Xa%A0TB*jw|{!iTPc^EI4Fvl?qX81hn@^ zj~JIJdb)%;zOi*SU_1A1GZF_5Ewe(k$&CTFY%$^DY9vmN?ny688VU1wlD2c&ivgQX9mKxlEoVJB>*I19phX)F{~je z_1)THc3U!@1R~`&|)z`TYG#O>5p16VINTXr(hbY>&Y$HAe8^-nC|;JxERVmg9gFKAnI5^v=Qp#BBKc4G|HMwzjtNbU%(bc)iY@ zDGyfp+dfCW2hc_$itGIq;~uw^jYz>~y67+};Ezje9MO&33)%@nYdAU?IF zt&?J$D$Ys7Lih`)xkVReR6-yO>ud&}6ER7-xUl6Y(Et{S?FOeUCr*;?9BvM)`? zFaAa8%DG2Z$Hs&y$kJrPBa+H0sY63U$Oy62V43YA@FQi1iQ9I_U$LHA8Mv5tr- zH(?r1cfJRD9!%(q>JUIi0ase_=QnZ)5B{xO(9hubZybPpXtE$&Y0UXAP}rtXoY=V;4{{wNQpvfZDaI5 zC5E(nSRDvl%rioY4JY`)Bqeffrh(t=Z`VpVr3<<_^UeqL+$qmgGk1kO)gXCU4{@~~M1E}ZWMd~YI(F2!9cv`hmTtL<^o2X>&gA+H6RES4bl6q8`)Px@(_)r< z;q1vELW@69`~2P%RGE9;!$cK+aWaD&66-hTn(y$Ajf^vF$uly1oY~nJqHG7W`9{ya zBtRK**0JX3@X3m;pXv)PwrT)i%3Z&lV8? z`6U4ckPAC_#-O9t(JPlL5xMQd-($W;XQ)13sYh6kj2fsuTnQa>c?MyAo57W*SjpH5 zQtfW1$Uoayowx~b11lF-QbVm~cqOafO&wiqT3a}zIv^hN{*RPA83DHjQB3S3z6QeG z*|I0kPbC(9{Kzq}C2lX%4&=xzJ?D9wqFkO-W8^)$%=!gi4d=CdnWaVZN*FU}g8oQ4dbE2=C^V zRf?=QN8U+D_i|4AS+30@3t%<(LX*oL7ri_T!~3;EL#DS|r;(92yU*J^Lt%}M`&6E2 z$N1;-j{SSKp#_khgnJvN!?JcC&kznE`JD~BjT0p z-#*4)!?^%u(Hh=eDtibX?e}kN2E6O_#hE_DDr{Lc3e|k)w8tmSuA{WiLVZ`b&rqI% zg!cAHk~6H;uhP`=l@(a*<~n{%P3SJ{7D3+^NqUrl@a8(o@=d97p^Rdk-R|>X3VM0` z!pO+TX1c_Dg3G4VHXcV!8jH61z<&l#U9;Kzkt!`s4fq|HIbzEjfNQIz5-p8((p~E$Q%& zkI&QL%^@a3agnH&2K(c1>1r7H;%WEd<7}2_Jj5 z$ER#Ua<}Zi9{#PAq5iuv6yx9_-6Kq-zrUr zK}s!s$$0lhQqw!6LKZDlM;mw?7DCfktAj$9)?zgyg7fKZ2)ly}@;uieZX_$8zer)@ z=Ri+(Cc?MMLtl{)%KTxb-kU0xT(=MvJPODZu%|)2-Xgt5jwPTL_Ew>ioAx6ti--4# zd}z)UXWvvd!ESz(sMkX1tCXiO<8stzK{it{Ty_X7o(MqQThZkRkF99R;M>)prTakd ztaNu6PG(DfBB4#<3s*VTp{WwB5yXvw*D$P^;DjmsccHNt+*)a!!5>75Z~x9-(p+vd zr?tz9bnWq6SXGI_HGk&|B3u{k?}E_w!DCMU2q#uF3cpJy?%4Ncjo~ z{Cg|7_7+_oNvz#GDpF|_!G!9+5n=d7{xF&CfudY4lGsH#;vs9=Ij@z&@4H|V z0i77phE2hT3ehiSoSvRr^q3!LFh@ri4zDD%j$)@6&c2PPVXKenj|vvPuY7_4xSA>k{E?<34Xx$;%5){x^+b5~VoWS@NiB z%dz`>E?4z`A$g3NtEc|M8W{TiWev9P1y1Zj_6L>cJ07q43?^l*V8*xy$cSJ|ls6QZ zjemdbZKE&xLEvo1p`h@!IV_1U5pU^AEyq*lzhG1rcP452#X*6FuRVO79-AU7k zuc=^HE`e4uI9NrA;+gE$x)Paplff=9RZQ4dMfs& z=gL~9TMWBu$*U;Vd1n`x7)pN|CF?j!O{^{I|Er?Ri1%cKz)+>dTaWMRs4hRJsa^(S)Ts$dU$R0tQJ^w4un z&uXnaGV|NDc%evKjJ4owa*EhFqj^^-qQRl?kl6g|!e0)e@QNdTyGxqKnJF;p&{6=( z{_O$uKCRh3C#atOQOvP{*>S(Hy7lA}grD~(6q1!MM?UYK-VrZV?xy>1AHq~-4$p06 z4OaMXxNR)P|BAx8c+R%atbG#?Y{u>?_$*Eoz4xZ^;vcX5hiBaXfRds=f4lVJEX#;w z7^RIba9Cje=7l-es)c{t6-xiFmFBG!E~C*pYT^F(-Gu)4R^Bep{(-Ch|8>~)xx~zK z6wr9}nESJGf|emaH%foG(|=)S80b5CX}!l4qcXx9skjcB$=e3IEM#LQ0n9@1J|6B@ z+aO8sizAXCIDOHI|0lpLY4yZ;a<788*#}{LD-0|Jd#+AK1HC&Uyb% zR;&i#Mv@4J&l4U@eli#g3G>(X-_UJ#*BI%KLO(JB)U3ZZ5w{;sL+J>S6CMw=tUKc4 z=@pa76Rn?qhB*T`9-iC3nDG6>*0$@xg6u2u!ZZ*IvIXxJxdil0l*`=|IT#p8J7wyk+v`cLG-~;~tg_mV_xv0u(rJNSnlM zwo2As*PQju$A5Kx4mp%^N(rU@xNlg?d@5*K5M6jA*J~)+M$B2+v+&HfI@>+ArYVM6 zrgm?$CVvPYk7Fz^Uii3?a^UXm@GMVtWk#9$blUltwn%zP7_7?)i@|jP`nv$M_14e#dr|?yz0mUE} z(Bz(v=xeJJF)v}aWjb8n@AeWz9qy_FsgBNXrv8B}b|1{$17VhH)hmzMAh_nojS=!> z4^fos3uNkiJ|cV^_Yqv;t$iCn+oB_*%F>lVa0(BHxf!m%A!KSDO?sHy(FS)U+P0+Q zoap2W><&BT?~lf;S}A1(-jn@vzjt@Zl#c%c!vwe_E{A90mER!=f#vPQl>IY2KYoD4 z2%o0nQ8@ZbN{>W|OiU9EFk^4B=eR~4-x0p}?a}H`aC!olTI9%})6JUp?s#(6;i7hp zJ+pVsj>yCyC*K;MX*0Y_j(Ko^y|#Mv>TI(by<(DoMM!jWuE*5Yi5#3I#;vugdo@XH z9kkrHAz0Ykbccq#B9-Sy`Wr@Fozo}$vj!k(8VeHz)jocKIWw|0R$inv!CT-jpvjC@ z1W-51xAlwE%8u5jZ29_@y@Z@n4GF(Jz|l?yE-3qV*C@0w*~iN?9-g+H%aiPOm=k+8 z&oF=YE&LWlRMh<ZSSbH&bx|LR-`6p` zkDLNAZ@wEX0Gil{4l?()d=JM*&JBYwehrN2#~M`Q#`G`kKdaXfTOhtw9=F8k z5^C(UpRsA4DSrRQ+Q=tHTdJ#FEoGuDwttt5j4`r2ek(tbP1I--qCqgy8+31TIq_Zd z$nWxkY$EQP8ec6ET5#cZ7rD{Rc+D{vJ`V{QM6}(snWEVwa>x#?@0aPgCjinMtqkFk zmll&GmIGe;V@0pIXB@c)rkwky00sPFt?aH&78T#%`Q-xz)hI{lZc!3j>$ezJdNS8! zCO96B&I`U480Js1o)h&IAdA{cl<5jtc7o3pMmXa)rf!L)=cYMC?#;)Jb7MMhCnx$f zB6uFn1dAJAhFe=H*>|4Kow9?EAb{*Vt9cJd^+0HI4QeB_Dk;U|t5rmNBa`8#+yU0+ zaLxHAC93oZYzkOZUzPaWp(nkXyBp$a*blBticq@X11SOqF5D&~8p9R47FCc)TC4_2 z%#|&W0o$xk?7b;Mb?mNZzMc7S9nP-^nbJz-oUgJ)xQuX+M8M>!>!cx_%58?HuwhWu zv*u{ZlYw;QuOH}3tL$K!3mLX9r`H}8QjBB12Vb=~CLX)M5=_Pfv`lC@Yu3Aa>^NPe z&17!4Rkul*Wn5HM8zS=|my-t$>j8*Eh&auwWEFokc4<9b7{Co;cUxbI80eJHj7o+a zn%)U~k!>eEq`oDAWlJP>fM{H+M=BcZ!f!bUW*b~+^dRs&59Is>Redzqpg-VlYf)J= zO_g!3f7W?=?8dABtZBFM-8J~tfnjs-PXYF1#cP)nO%XL>wqMqB3v5OW5d!qF>o6_n zeQO5{JO`NyJBoDxfC?-sPn|5U`)O#Uej`02kXy~cbYf)hzrNR_gFy`A4vD827`dv& zRYT^(eZjC3uLkz92gkgLF;5u@lpvb5H>L;mSc+wZ-z?f3U@_+mYNzY&0vc6am$W$K zmy~{+vwdT%k=M< zvvl3o54a^bN;Pw*YBupgSg)6uj=7Dg$3m{&FSk=*7Yn#D9r+6bQJ#Z&Cx7HUbtxmwe zZ2^;2O`aBFz*;(=06e|(w?kCTfe0kZ(`OS$-|vE8sseP%3oQZaW~>bpPvN(Ca+wI@ZdEhL!a&{(h{Xhsa96=TArHIOHdiH9|CCr` z?Awm4iB;mh)BKoHXH2eViDSI*yQ>w*U0n>7wTM|-WD$SpBokf64>=Fji^IwOQSfikkRI@Ya{|bui!Hr zYx{-<#d>fx6RIVXj=__a*u`W1Q zuj^Q+-i<0LiT-+|p4sA0D6WFFnl+|e;c&-%^Aj{7{=O|=N(J&52`-j<9dCsTpLE3t z=Jhz|Nb<(PTcAwp6Yu+JK>^xLK6sieDpvPOl~sAYX~1mv;lqc9ZTx>$f7W6D^}E)3 zlzzX;2}Zj$bgU#+AN*A6*=hFbKPzG6g`~?h!Le6fnwpxb5+8mveqWgTN72b?G_%%Z z@Fp)k?msdC8eY(Y-oI0V4?ieS-uy4z0A=p`8~6Ob9Udx>PX+wFJyq1yzKu^v`0@Vk zhTF~V*Mr!6-Tr5*Sf%j<)>Iqc?m(=jx}EOgz9$0HOfqge%Wk%FVZo)E&L=~XWPCSq z3l_}#m4C|z7o8u?5b|!|A&`k~@dSC=ddFC6AB#v-Liyg;vma++&saTa~iPolJN6Efxq5qHIejTY!~Z4POQbt(ofx7F85JuToOBA8&nn3L-4WBR*L3UEOgZdR4oh@GBYVmO(Fe{{b@2iS;h%>- zpLu`oAM7x^yoQlb^y+KMg^}5}RBU=zX!Iq}d^;}kks~8TOlZ#akw}P8Hjbu+?nvhB zXt!}!D%g*(pT2ZOd4_Lr@XjYaD#FXIiruP<6YLWCLL(^|?8kL(SA4#W-1$fzwYIfc z>lNkFYr85GuHjDS`6GKAv9ph-Nn}CFq%`l(z}GDg8yD zl>hi$KW%Fb*K&k4He2u8v*lNNNd3^I33}Flj2C3b?a4sUgYXm2_S1D872Osb^~mx) z$^;>vr@s4!9?NCc%=627ST=Z1wb%gFkV7?}g{N>&_;@0=E&N=`*xtd?Ol5v44J*u7 zA*nZ^&+Yh@I{ffAotC!2ZAJIYx4VWgSP-qD%H8F*NRY7V>{otBJsg~Mprt&KUD|Pf5XXAZJn-k_?#Yr|;ZQ83`I*pN; zr&=7@4&i=^h2{N_|K`~!W?WPj+I&ogEPN8S1DgxYPftG8MMu!^2_M(63Z;0bgUwIs z^6xBx@lWh24D=)P?TPXjLgi(mQxPAyYr(l$6`2^E>+?UgV4z~=X#OtIUxa) z{gaai$0o7XXKo(lah4g_c@Rvef|zBgiII$r$u99D^2fD8-&MA{bJF}{uP}5Y@+za&f{b7iFceJ zYl9=BwJTFBL7^I}Scnke0d_-7j*qCP7vtke(_NBx$=3e5+d#uY5C3NP)hP1nG?1K> z+mb+(k<&yUx&_LHmZ)HjIs^(dxucpdpr6R5y0_{L*8v(w8+-G*i6@RWL<{LQIIYvg z5A#MwIOOpfEyjMmX@A(H!%5p!$)icBo5N-4H7a}e~mB7dB-zawHnrRGyVWSV|y z(CTJ0@v^0%N`)^*H`>GJuI}XA4yRB2*4`vdq(BOlhnRb)rm@zAh0!<4M-guf9u4$`OcOAcii~oiz1}Ac6V@@1X?d> z30#!x%yD(YGyDJtG<=M-(`mi0sij`}$rIr6*7pJE5qqv~GZ{%<7`2CLlF~Etb(Wdw zI{=ieF_h1IVhSs9tTI1l96CME_lyzOArXw5d#A0TCSN6 z?Ms>w&?x(*7IIdh@eM&|1X3vjF_8vrw>lqWBwvXXrj={si${?~d(atSD32c?Rd}kj zI~SN^yUWN%znSM`RNHrEtRAL%?I0LYWh9D0J%^80CP1ckhV==R;QKW3kwOy-i->@3 z)mxjr*FSkr|B#8vUZ>*Ym!3L#Z16r|92&tyzmhrIfGR_AWD+sxad43-8%7~A%U}02f%k9RQ7V4rs zul~lYOVfjmaGaWk~dY5Se&X2a^OUuJg>@x)xG6z-}9iAyf^O1Lik7ibd57bLZEdaAmo<>sZDVjV#L$M@CdGUewKB}WlW|KXCK zA9-e9O4Ju-$@hN}mf2W{VP2ogSh5#=L)%{mD5T_UFygm@LO1^U5o4>p+8>$3>uRpk zFJ&UlCXlfORWKZrM-NF){()%BYm&xBtEw=zP#jZ~T8#8$vv=~Dk!S9#$FSgeKu=oe z#5wk`I67aA?3)g_z8WkE&KgfMwkOaAm!qTu0?b$EnW?SLsAhlvTQ%#4;2O1 zNUG%`zsGfZyK-HJ?QGAm7|$=B`wZj$nS+GzQDf7t#;XL4r1jqrXpw+h#W!F3`45fV zQ;APItnYj{oUgC;E~$(J>xWaw6f0Qb*;=VT(8n4@R+p-RvfYPv&(@{8L>?1ChleA`C^RCG zciAM|F_5Mg!^u|cE9p{2aD#Knc*66+ncQLnkknRIz?}$sqnsokusyTK)PHw%E{c?k z)!Qdxcq_3)KKlA+4sF*iRoxE@8<`60bE4s+sOFb^r6Txmsb9HV${uaABobyJ?`97W zk1vUovXlo~^XWyLaA)d;xC72!Qe+7gXqJYhxDzfjN9brc|Ne)QXnG{-)S2>I28h4E z-T_i5d7q&-vcO>g_w~Z5Qgz&~gudd8yJKP&c)R`mQ|U?TVjrYU0;m8+%Acn(Le=1NLO5rEZ8|+M%a6Iye zu0NrgkJ}x8kbx&Hxj7stULyB{@ZhUZOseh*Jji&Bx&)Z-7kKU0Q~}6no%ie7hOnu> zpvU+#yYSPYk=k%j?%lDqILBpLVW9)pl-R9_hOG%AWj-Kb!(FYC^MNj8h7qDKp5mgQ z+>Fbd3XNJv$ckwF^@#zM&5ezXR;Er13yY*{lK%ewrsn2w%fE*@ zPJcg!K0{LIs1yF@bK>$Q-Ty!Tq7I$J{SOxKoYsfCX3p@hRRSzUuo@eKXNr7D-qG12 zb;&1!a)R!gnn#xTWtk_bB8k8(g?DImVZJ0HHXNzJt&%-$*2JBXy}vxF#^-Q?%`kY?;1y5;Gc|p*Y*;lgX!Pq+wu7+K=nEZ7O8h?T>#i zG+O8mv54%8cu%hPQ?HZo0ns1JY5uIXeO!u1M_4?nn*}V(n4=#2a9J1;*Hv*>DxWGG zp;Tsw&nv437vU<#l=@STFpl)=b2lE&C#1ea#VjkDur&%T(v} z82e~n7^VpcN<%NX)x9#=AjYp2ul>#y!-)Pqk+F3NPBq$OeC*808~fHDt$4x|JL1XG zw#Ob9x=&cX=cH~plAcqiEL%*!Qjr+5y+26o-fZen`XD!U_BEjQTW#KszL-vBIirWY zVUdB5g0A)o$@}^I<@245)0j<0%6U2MSye?O(yRhEagX4&P~wdH6vIVJ=!N}6@L`ru?h1kd8Z+zX8aYPYFldiOHNR+LDFTEX6=&Gc`HnDgvmL%MPt-Im6j`ln2)s6u;w{y+Fe!TdR{-5g@kFnwae%x+Y~& zy(R!pG!*_9C$s>u7kcQ#LG#_BJ}^4!<%g;(*yo{V23>pf)Fze%Ph4gj8NMSeCvn@jSvyIc%MYflW?hgpJm3^P!JG? zL)MYO#r-2ZhR*3T1(maLm;A9Y81&#jl*eq+y7eX@bb3?HG-g z9KYJ!00(9B#hdieS01P5$Cg$*s$MDudYmCQ5#Ct<%~VBhhYUWeid#O)@UBcZ_V`^lePK@Wu)|YhOgZbbt`Sf>T>xSRlJO;U9mzirbTfC#kPZMK3qJK%W2W?M%+1&E> zK1jAa!hq4Lr5=QlX>p^YaVyMEl+zxz^-G2W&$@;zg0=URbYp*y( zNU7?IDQQWAfB>9QL!WZ2klJO`0B1OyIOhDQ$fn39cHC~DPbqIG5{Qq+2=E`*%>9no z+=3>=KQNfBTGmnUBz8D%IlVdJ&huMNa5k5xU>!b&MCNniM#g_OSqaF`;xB--`y*e| z67JQf1>*djQtU2~qt1+n6tz#bRV287grOmR&W}+Y$F8#3E5|=yTw0m!$fPS+G`onz zM}N_!>cJ8DJiX8|2yxfMAFb3b9w8U;xM(nO%jT?$R(Lzg)UtiDyu1`2{uw(an|NXx zLiLEyzZc!*oezD)x@gMLbP_lC@XKiuZ6r38#6oM|lUKWY=ciali{ze`yG=Pyu}LD9 zV~yGHE&-sU^TE}XjgC$n*J7Qc)dQHf0_{@X^Ddd&nh6@rY2?Jy@*jD%GSenew%gk2 z-dwfMsJJ8e(ySg0Xq1fTQ7-3sRsx$^P1H7m%f;GWFB>H|9~COJ=Fgc`MQ1m-+sm|= z^q=&0WZrr3MvY_1Y|ibVF=>JD$4~XnUN;w<2-7!AGGr-J7~NF6J9UYBz3hT;T5flU zUssu~f6yf*a=mqltUk>R5JPuWnlbNk{lz>+JSfvXH$dG8NELBZ&%z>lL>^ianYA|j zlS^*)@(|z8u#u_S&vAglP}{GqZ$C;7pSJyzU^Sf|()-k2ZTE}fwNr@V4>R*Ft<&QR zA;h-vmrN3{g zP_od~Z-mi?yw9B6VWZy3IBQ8b{TxO!g!jvs$9x5oV{r+~A6`vC*8&P%ySa<%@Mrrh`T884UU z*eSJ2%+8nBmBKeb!5JCYxxF}+tFtdP>DcIf?kVpWM}HlrnO~6c{hU$Qb3qK~T-rr! z|KTijDjAP{kzd}F-ST`bTo-wAr3K-f`);xQ3WB#2UFi6X8$l z;et{B*h^tDyIK@zY&^y@g(Ln&e|cs>?!JC3b$@S?58S1bXbHLXYLI&R&K#n}(Vd2 zO6@(|`rM1PnWA))0B@q5n)=#x*6}mI1h%f zjS6hqc0XO(GvDqq$)az42M$4yV`jh7@aN9IWnx`<_JrgDHlHP;bMOjdRg%vrBR*p zev|I$-_x(gI0rsAZ547y8LMt1mLGi*YtL@ft4D1d^|I~3DXUsl(eGogOm8j~|sZKp0_UT+%?+bi|Ln#2p2lI#ZjTJ2}91fl^1yQwd%2%=4zQ^tVEy!-;fYziTr_uzTg&j<6bBu6g~$E@aSZeV%A(dA~qkn4}Yv%$o;J7Pp* z?*z!*cIg-~h7kjMTD}miSvq{~x%vUX?|Nva4G!t^M@8Ch_LEz&i&%}u2T&Q=1uEGs zb1$|ps^WYQLs^K{gky(@ODfjd{FAm_s5nC<4#bJZ5mV5SIlC=^SOtNSpv8 zrS;BK+W(8Sw~T7@-PV3-X`wAvTnjA}Deev_#af)=F2UVBK#O~ECrGj4?(SYRcyRXs z!8z%Ft+kizcc1-^GtToNgFGV)26=9|?%%xToMPb=zKAlsb4Q|M#&-!~Has=M=84`s zy!l%I1n%US*^=7)y*Wmx^gz?}F^|nUZ3|-X<(jvB^}Yhj`OL>z+P; zu{#3=z@dFuHb%o~vgc{d!S*_-2)0`!!6ev(v9>bPAd`aM&R{$)7LV>!)Yls3rd zl|gN_1Lz$cdlRqp)Z); zqa`%sAy=cD6LdR48Xj?sT51EAlrICRZ8Wy2Nk?;qck>*Q@~xlscH}RBoe{ z3cWo@K?1ksPB3=eB7HqGTlw?-@c9xNo!jfvrTkSH%*#HPYmY{rQj?QA^wTim5zD=3 zw4<2<33D{G;$O-gqx0W~CI6s&Sa{JhoqG~WxIiF=mf@uWJByYdFw5v}_O<5+5+=&Vvoeeo`whAgd92D~dk!Hq4i3vfwE|zD2CB00K5n%guE?1E zpRwdqmtt;gqc>ou_j#x;OaH8$=-0oL+Puq_swtar=K9>?!$t4=N8G5 zw1-V@yCb#%J!K_N5F;qnDZEI@=`y)=xGiq>%zgMnV86a*Ttwl|K+f7xM!9>d1G3Ox zLFWcCEk?x;5rw%+x)pBkAj*i{d3Els{AKcwf3n)6t$3q$9M>AhtiJT=qk{f-*MsXt z82BU06g|EKm&55eU-r_qtn>&5i5F;Oh#!~}OrDR_J1+BblE@xGZ|`YgGX)BrfgVrk z)6X>ihCIFI3yEe-=`@&7s+=9wvrf8E$lBC3;|!6OF4WKnEsGhdh#*Is_}*^U{PFg;_`PsizqPb{oO2)=Z8VH zS2rVINzRnZ18HYtaWA|YvP1My`Gmii`3m%LSqgWXjJr%TG)m1CVVy-R$+CAH>wlIE zZJS3^$I+@EP@+^)DoGK&>E8>cPwE_w0FxJaKfUg5@R{a(wKiWhY?Cch#GAGr&VxR# zZIYt&mQ`wJwneNuhsM~4;Zlrw%4RB~C}lgzP;(jC@5ulii{Cjae8oyOOy`V$polB8 zwPU)^E-n1qiKxYH%5vIoOU`)iHBLvgw7EMP%3<00@$YZ#0a}F%r99-AGsUkoy5~sU z+YDn6hra#>3Z>pczLo_K!J3u%34j?veCeZq6c~$5Pn(9$i*vMgCSY*F`iv5jT<~fN z>O%ynOMimGvpy|>fm8s!QW?Iewwazx3^aC7e@!sjr7%iF*4hvn3`3tUD zmNTW9fdHv^Z98X`$zoZ;Pn0x3_hUf>w0%JiQrS99-^+j0rdR!K4%E5lHiJl3EUM-X zDK=CyZTs9r6eY|1V9>;ZvF?0xjotT})aY5gzs!k-w4z5mSGuiWyZrh+#v43J)l?_3 zYGNJHkSk<-SPZisq#u$u#XL4ig0Qv<=H+H<>7azac+YKv`glDi+&IH5jo{-yjTYUH z*6Q9n-U5;xWs?0uWBxWCI=GJCg1hC~<%~~dAgM8Dr;R0m%w#2EZhyv=?)adn7Ot~% zg#Hh<6-amXExl5SL5r(qtCnMXUq?(r(db6*5Q;-A)3RjRpCo0`zXnMT+@6iAf_}*G ztGqy{v!5R>%Gk;iycPd3=@BgP-G2kCU(1yXp$UbgfLz^N2c+WJTfQ$rmu#M&<>iDg zZpn!x9os+WFKWd&74F zqITtOUju(lTTq(l^tcWhs;ZD_to#eLem>ZF*Xa0PSbFX%ObV5!$2)5(?++Bj(2;{) zVvN%qeV8~xvKc{r-DLKRJ0PwCF`c`?9T7V%O}szKLpy9;-yU|XS1!i5-b9(e)r879 zc&LQ9Hj`&Xq0Jen;T3B3x9O{gns&gc+;^k^=;&HS>-ot+Z+KGt6gMlNfoJd2Z1I_x zzt`vfIfe#sk+Q1WB@9?~j5-Uz&l!{cv#QIpY~*)`QaNg-yyVWr=ogXN1UzFD>~^lnp&QlHECJEgpHd`9za6rG{#s3mtMn&5sO~V zMPBtE%^cXE9PxnY#WLX@4j+QL#z)D)pWj zR4;ykun!C+4ly4FM-Y!Om|y___e0!)&zQ4qAV`$7@Bz^Aaz}|{aL|$ z#^ZV;yE1m7LvygjA4r_r53k8+m_t#h4x$| z6M48RPI+=$q4|+g(G;!b&V!jr z3jAdV(ocj3|Jx4x66I_8NqyJg7b>EgZxqp|inDuk3JznR1^Vi}sT%Z^f_5SV6c+#u z(0XxCe#d2fq`KHpbL*STmuE}kh-vcbZ(l1G0q)?0vCL^C_w2&XqVJ(pT8zbIo z_~@Rp0FlR@g@C8nF@i&G3F8l>gt+=(&pe|HcXhbfPQ%=_W9qql;!jpVyx7f2zRV-9 z`d#<;UP{1WeZQ6zS~bQ2kdUgQyAjiuO;^`&j%xD_%!2b#6{xyyZIk=7K`=~4#@p&j1wbVDq1C-wY;_5pRe9{y z;qV=m{Z-ZEf7kV6_CryDr14pDs6bt85_V(Yw6t*dsLbSujaVM&O|Vcq#Y()0Nm!u*lxv3l2q$L~qP;pq7^v3oU(7Hb*7uqk4;u76B;dEMT8kRX_} zaW@`(&u#Y1v3EH0tJnJ(l$+KGZ-&CJGR?gtx>|c-A^9NDf#&QrD*T?7KUkyf+v3az z`y<%;GOzIU1LJ7KvY5`%fD$u;J&WdyZ(Q&HHb9~+U0(YeweGfD3w{~~`XE5q>p#*} zXKFbtYt<=WzMX{68}%whM22iOXuwg@@nI;Qap^io@&3)V34_n#U^lIsa>ge_mfJ#kuHC2J7*qk0^PW z&y`XO<3ez%DNFl5L2_CMb@r7FO{Ywlp#y6>buYc_FPXE#2qy~zF&MI4?P#}!p;kIQ zbDrE@R|aE?VLxI{uz-f!*COJGCbk8Upx(7BTO?lC0w#eiUuXXcc3e%l+b%5bLoX}m zC~n*G;Hg$JI)g>{O2?vO=~6TdFpzy zC6mqUHKw;;vsTvBJ69$wBSF5g9zSPK+!yeRTzDpKII%X< zm^(8US1}YOo-t;V_t0^ryHu}QfnNlqRUEC1V<)}{H)cf0CcJB|k^J#{Be1=&DqbV_ zfWbXIiIN*#BuPD8!t-btCi)}@< z?YRYXGX;(Bh}6PEVQTcsPb;rrRw{WyOVa#Gqxw=0j6x+kDRS z$J)ixi8+UqLV!N5wzH%3-Gk^ncB2JxON=+L zTApGsdCBCMc7GOj|7FklET=9HvoORI?G0pj@o8Tuvsa4=!2+)B>sl9vLyLwD^09$| zw;qdj1d$k75}jWchi2(##7lTug42>ac7A`kgANX&pIqd*Fa5f6zB8RETSVk*%!OyP zeJ77ta%_`G*-um5Os){lV8VVPlYELFMIqLb;6?N(g8SKBKMGQS-F%UUiZ#Jfa7H!@Uw|q@d~tlHLO*Dc!r6*5jIen`Xm+q ztNZJ*ToUrM-mw@QWg$3)i$b7@KYS0OyIPgg3;cZWF*2J>UkZRo1EAj(+~$(?>Ak!P z2oRZ6;JNd)2WdI7Ttf^$M|ZWVut;Rkj}pyy0}x|{Kjj-^l3V;s3fYzRzM9i}J6>5m zrJVcq*Om!o8*Uc-U0vC`b3YqDf!!lOY_S)6o`cHrIbJ^vRa`Bm3bOhoR7jf3`-@wkr2^Gll8u)df<`FY|7^1Y}-!2NmSZ_mR0zR%>oVNPc-lz)m*C) zb}`d2tqk{O184Y*Gv?ztSL%%Qx<@V7dSdZU;L@P)yGo+EJW_6G%z!)tP6B=D@lmSX zA!FgiG#)?bfb_>mF060vHSvhGmD!OZGOuCvV&hH8=J@hPtIt^bg@}&~Q4Y%=)$JBc zPn#dC*9^iO_;1Qx*DRyiEsv>4O{Tp=+q*&Z&&N-{{7*Xm^Crt5hX%_#?n?`Tp0b>8 zn=H)>jra(1(Y4)IolW$2jqf(_r|SaZgPqc$#^$DZ5};0H#el!l@w+huMnVMb{%Q5- zltu((|MxrYh~q_n80CQA+XX3Q zCZMc`2fqd%fgPMhq6He|-&N-ZM=a68&faU^{>5D!u9nz(XIF)uF=81V8{aFLgTiLq zfufABU8tSK2>BWlj7d7Sp@G(Lcpw5(L-XlUzVzcH2qzi-*$`c<)AY?DV*VsWdTwz& z2;O(rk%{$X)&(hEhq#!r^7EZH;2kba`CIltnM4%M5{;MEYvhe^GASInsgjNM!-cvA z`+N4=TCsIfqG1Sa)y~z-zBYel;*n6$nWQSQ1>b@_Y-?n(?fhIz-&}N$0=#bxbDdB- zKUf_Zf2^)!H_L z)6NwQchs_i`&l1v;{|a*dQhN+3w=v%bxkd!J-|-xaoWi7*S@B3RGQl8WB%W)r&o9YEJ1@)Fs$AO#1;e1NOGD=s>+02p z_;c~3rydxDHrjU)%Q`n_N*)@5sSpX3{xpYQJUJDqj^unXQO7*}qc?Y&yUl0apgqMN ze&t_S)ZPklSi50!-N^epeEOWJb>0EV=|Txcb|+ya&roG3Jr47gEoM?kC zyBcG9h&i9RD$7PU5xz$tNkRxE;Tq?2>j{ecx{5qZu>V-zu4R$=FPDwwLp%aGolgN< zOas@uO;5LX4`7PE<&uC6DV z`oN6gWM2-FLegr_-Wot<(ySTzyzQufTUOcI8{*;n^MX-6ZZ4$Ve@>m848CfE#p`dJ zPuKcb1@=!YpTp>1f%rMaC_pI?&WRwWzJrD?ftN|-(tW-SGW(PK@M8X&{mGIxpQE;T zgvo(s@1mku=Kh+Nfn$1w%s5zBYnE;ZfWWg-Qzm)gOPm3GHMa$92M;!k2YX4_5f6T}!KHlu2|Ebz|upraL&#BnF0@^TJjz0@2_pQI_X!?HQ z7b&UEhr%WR!pE&`hCs)I5Ivs}iftt}j;bDj;Rg_x^Q*MPzXR{! z;AsT#K1+Gz#H2VgMgZ?(P5kZ)2F=PRb%Xd0V|@Q%j}~loZ9>3#m(d}CNTm_g;$W}@ zhNM9C02ZL>FKfiezTF?=xEFiE12=t23m_DQKsrf)IwnbFov)lRj-ysKiKAHv7Yn4P zKPuJB_1`V&pve2opIb)eO5c89Xw6kP33lC}=YAQpw|WDK?Mp=GDSMBcP+ydeCIrRRuoD$>+9pfE8|jWU@$1W|B4yInnMP#u z0HD)Emw}VNKe2B0)IYn|<3hjf<-O=EZ=*t!i#0+WMBl0{E#>xK{$Ft30Y|yLIX@Y+ zB{4*usEOVYazxZLcS=V11ySb`$8BZ}?I8?Uwo2S*=i4hCeq@4f zKVCy!o*V6QyDJ`@E@>5|$e{nj3y@=1RolBbfhf^5<32CcN_BG%mTnEBrnVj)vEHTN z43mQRboPw}C9yE$;t7+OYVCh=&iy&oXXYWNucZ8T2tf8(tkZR@gd*-BZP=|w5gBQZ z$D2zYjDY4nT^%VZ@4|RJsi?*@h|RZy({9;}(^4jzN>Klejcdr)3~y{B1N6-`GH#CI zovf-qR8`@$jm~hefbeofMb8b;rM6V_Rj^V7;*CW=Ka*t6-E3hUe~@~_eDgxPK7PKW zk-@?hOx7Zt_x_Pg@T#zbZ;%K?KZ5ASz=6n|jp3{LW2R>3LztC1MHw)8@=HgJ)P7fKg#8$qD#WeCZfw8@8gXFfeV3&8Crv)_RN2B$&#%L+U*iX`DcGHic$fSL#$^usxek*NkFaR0M}+B>m+o{9+Jei}+usZ;J@Ou7|cW9<&TUsnU?GBOA9QTK=H{u z-RZuG*DbDus5q)@SBIECHy?WQsE^MnMvlrn^i4}|AHE9Wue#Hftx^NwkHyxiQ&$1$>wi&hn04g53b%$f{m6Y@ zB}j3iN#j8l`TbNQk&et`~U(Y z#Ce?glxHx0_-mR!^`)n!rQH_C=0^BMy8AxM$@NZ8s|bqz7Wr2vbfA&J1U8aw|K&YGlYjX!BK*JKfgW(YL$IblAbXf{+5J!S?WXZw z$B48^Z4Vo_?R6LoidQtUUP0qxjrnmRtHnQnX>$r%=MW{J{7YV8M_Ch6*pEo!(*V6K z?026&J71@QdY~T*B+v`>vX15RaiH9uV!M8He z;Q^=nt#nU2*9tOihJHD}V|| zZ%vz21MhT}dSN`xms?#jsX3oNt#~Nnn-#h+PoR9mjOi8o5_C6Eun;jTPF3N)=Z28) z5^~V~_Bll-W-y{yhLqQF#qj1)n#pJA$6x0}UD>|yFLH}o8+=EyO|QxMQEL1mo`PK8 z8*II3f$8y80TSew^ys8aXyFiI3c=_E=c!j-PsJO-GcAn5Ih5$X3(c+fAgu-!+b7iz z2%B=%f7rAS|I?;Df_Hr%5!S|5099Y~j5JpKSSRTEoqWu=KkW~t9-~Tqx4j#-@W&+m z8x97~?sJ+OWL+~N%&qQgN2h2Yr)}e!?2GQ>h>5FnjJKPuT$6^Xs~Xz_3kvcGyHfcn z!wYpB>EpZ_ne5x_85SKjv>#qxfPaVQXKdx7 ztr0kWB4^Jz{hrQTslp>a$To&+%mA9V$*A7o*Cf9?(b*Y|jcETfGyIJWBw>FyQ$o3| zTN6TvfIUWWV^%iCevi#B9)fk-zrhOYEm5j09)cI^TO5u&1JNJBGZ z)|G6VWcl1PgWZ$IOCg_WZs0u~?8hx9wzd9j)Mu-tVMUyKBYVbAl9mKTGeuzZQoWJQ zdXG4kaBcl0TLD8#K<@GRCc1^uK#(r5+{g5pH0?$7cbz}834vK|^T%sKauMpREh5Gn zueu?&)cC89o?MXy&iyIoBAFE;1kz-eWR6Q?zsT^qZEpW0_bY&A{${iY|ek)_*Rp74qsRasTrN+DF;`&M`ASGkQPh@ao4!QxBetS5(xy zmU&~cnX!6Ei8$P^IRP2*9H@pb7aKjkkKf-_Sn$Nzs-BO%5!fGvdL@*Hfqej?sS-yg zQ_trP_w!#I?8{puqjY!Qhe^5QX6$@86zo{eQTI@jmAPA6e25#e4uKzBxQ$8VWBxI1 zCsPnR%FVyY-Ci`<{E3Zz-yYR}MW@}6DGAkV#=rXUHJM{#6q~a@@g$9;cu^3mrX@lS ztdQ+VZ4YO((oEyqXn4<6NBh5c$rt}X?*MPTT7Ot}OuaMDn7aW`{(}_E!IbB|@$-K( zu@`qc=_!-p<5xZ3@)igo&azZ**$_P#R{n^2J0n*9Xw^8dEk_Suh^<+<~oCKl(oPLe#|~hVZs9xGYNla*yue-W(5<&%D~@nz}W^<(Sik#Asiuatc|MSFf#MQ}U=Y zydcyQ45t={(QEdi^$BmcM>J}S0=Q+?QBYeuMa0{i(YEQx0?#`Y-I?j0464|O zIo%QDY^#?#;BNV2neO<1R^|4>f0Qe8q}3T(453i0Rb}Qply1X}^Jdu;gGz<`w$5Hr%Plvn zXHp$#BUDhU%_yy8nG7EKu|QPc2vHRY`BRhrBxwkG;Vol?$P`mPHdvcJRh^3$O?_Y*APgIV=5c?2{Ln(cs?X>x8CW4WTO{VBH}9Lo6dc;R{*;fXC8p<;Tn272lniw# zcN@Z%K#6*5qiYn>9kvSlkc3>toaiN}#|PKDq}Bbobj7CZc3#~KiBoZtb$9bRY0vZ` zm7HUI!;zGGeX~p4?C;I>p)w-g*?6loB>Pp5CCsh3F%hti7?78kA-*MF2h4XQxU*F+2}UtMZS@z9H4okhzDPd^n9ij*ALK2SRubQ| zlRW;SEhA+(0?EJHnk*xls(4qMtfs+l&9*x?=S21Wm;i%xgB z^g*rnnu*Mk#)-6J5IXZ5%VHR_P2AT)UY9k&X2l}?IrqmWCInj&V^uS$y2C^+aVNpA z_omfH2WEHQ3l&Jn%-SI)x3=0_;FIJ^+X@E@)(~@^)dlBjh~NhgfEF)qlp17BqYpnZ zg=FUVnsTgxN9j@DtIS5bXf|}ZB9_kd+Q>2I-#q8_|K&MHR>RwYUN!Ci6=zWSl+9Lv% zmE{Y%E7*57T1}G)te52rV|EGA*u#g@okZZmc7MuVN(mG>)J$&yUE`7ctwc}LsBNQkk>^=>S-FA2%lfG35f$wK`2}iY3{Kr)Ls8J}BOBJ?@7ShN?s{d-y)cmzru@ zrgx+xFi!f$SXpYTWavG)d;NoevSZJTOpocf!QJ+n3K9bCb#6D5*p}Pvv0GTvT`AG@ z&dR7IA1RDx6gTk<)T^=cy#33efsmOUz8Hy)+i7TCHb6aQ_#=a=bG`(|(sOVOcVq9b z`4u6`?d5I&T^#p5OUCNDx9N7&IDPXzhjiYJjj99k4E4N2!hG?Gs-i}?K8@z9^ z8Qs8=P=N~?tJ`SgXO<5E(VUlX$v6(QOha(&wK6c%nNp!Ev4>u#*Z!TIb7&7z#D+RzhW@) zud0<&5{u}5P`A~otN&}VfuJ{PVxdzRqY1Dogk1P2~0ZxUJ%j!-rPL*T9z|WOZn#kbn zKFwzD4`{Sd(>nzC$GZ33y{@YpJ}8*jV-oyDEKrN#mlxB?9zkmNbTO7>~ zksZO|Ndx&)q{r|r;v9vxk&yXUprI2WBPtK5RV^8zgT8x@ncP{8Fe13a%1+uuFYh@M zWXT4;g_T+@);zBX@gY_F>klVVxL2}JoEiO>tG^Q#@>lX|=G)_tSAXr*f2m8vroFoP z@&B8h>HojqlKG4<4DF8BG653~-=~rxJW^)RN@@{?x}0eX*qx5db*fb*+PVGaU6j}F z(l^L7;*J6W+p9r;=stf^t#uP@X?F;TY`*C!qGYV;_BX5L3w&Dnbfd>nM0eS#Cx{+N zdo13_e+*PR^LZmw$!9TcZxPjHMG;>4&@?4POhou>-%nx^B_fYWz*_*3E_iyESF$v+ zIh5Gob(RdTiQ`%8<<*LnGeYl|`J3QK8pp@lk8L`uMxZ4|-$qZ+B{M5VES%RO9sxnZeI z#9y9;zYP!w%=c!Vay^eQE&#>P!g6!~AI@Br=G*l3KD>YM^8Hv=T5WN`-Gn=q>ePHt zOgaodluhNNl?){r&w{y2&Z}Hys$~JgMObcu8? zY`~F(jP|m?G0Kll3>KjrsFryiS%a+?1vbDu{-MQr6c-nlW1mV<3P_=X;HzFN9_Du& zBd)CD?=a`J+osLrmA%|vfCM7j2Zf3hM)H#6O7OKtgD&SgDzuHAj5!78tkjJtRu}hqR zXHHMcuc>{Ml%&q(FLiHaLU+7~C6#1dw&Z9fZhOsf%c&;x%VSz|hhN_+Fv9mO(nkx6r;#_F z`r{ceB0)!LX2#MoXI+cQOB*1~$}AXnwe9}>Og&sgW){P0$p^m#6-(lz6*POl;4HJZ z_#)~-_}jf2I5Rbff?iW>gYOZKa$6&RYF{&o&HBjI(1DAYzNIMsv#jiMbadsuuV3Rd zH~fO_6*C=$j@e#2%DZ^E<|3T~A4*cITOfNL0J#=;&Q7zLVR4)D$1f#7s_bK@BV0;K zN}Ef3O+#upKXN_(psAoB#tka%s+@1^e-d*uIx9B(2qILFFa*BJH810XnpSm zr^oX}$0s{!2%c+Ci~`^?}S{{oYesc>HX= zedGM)oT^Qr^Q}pCOg!gv_v+2Ad>00~44csmfwFKl zUQVNH(Cwb=)u*7#tz0t8ph~2#6Nb9<`)DQ+Y{Q<|M_3LWGG!RE)gDhX^j@`R`wkH` z>I(8e!@ol0VEj^#lcb+z|kPmQnVSKiDt=hh*=;iUwy;**f2q{=eRzl8J>!pdDHM2 z+p~DFj#$oxfC7{T+PgB(Hg6pn0-_CSzqvjmj(HO2T8*!Q=uqi+nyn~~)IMp-k|lOo z_rz=uQT)wjx!{QeMgs6*CjG_1^0RlhchQD${9a75V9QSAV%@ekZ%74J${%&r)$UOI z7N*4ymh{AG#AP1LQ%v6|^+d5r@3^$#GCWxG9zolp3v=j`G z3w&f*_{NV+d1%yih0P#hg}A*vHMTy>4u6<=5}G*QCvi~UUzYZkl5))iYFe;gy_uA< z>ciO+y%xq_^9@-|q3DP(nc#Je)@8tCZ`CZXC!fXfiMTr&?sNrj4{otWJuX3Q#P5Z< zmlA~rbk-K%^L=zAjSMAciE;tX^4;;1iEm>ya#RDp&Xtm%^1kNSK9Cr}?E0Op%{JYc zw|$kB#0Mg7R#WMSJ*BpzLCPfuj89WW?u)~Y+#P!GMn^Xw);Xi*bIrI%_$H*tC%oi9vBpBh zD6M2YV-7JeifG_drySbC)}{LbD27J^;9q}sj=0H2Cctsu{6@gZj%!O9@)=P3BpxIt z);%IT$kV&ES$@>bQtxx|ehcI9+X_0^(P($azYummo^3J*Z~K7yh%0ID@hE|AGf5IU zbv~vRleOe)&wDB9nnY}*yZpY_zrD};NvP^>aL;65=i*71y`-e%)o6tOP&ocU+R8zG=guq& zhK`cQD|GNgwvh9tk#&%DE=p3R1;d7lbiRp3GTNpk4yQHh?O{gXfE)(_T zQ%+1omPdLTUUYdEgitWwMeP3C2oYUb9-B?$WgGl8YWmFwmTPXGQZ6r3pQyPgy~4;Z z?nCoR8+Iw)A_k|f9XhEhbW?;bjy+_wV0e_AdWO~kK}fOJru z!fYK4ObXU{$JTinKA%novTrhZ1xB<(3*}~;mylH}DZz)@EjcrqjE|>8HLq z?LpUjmAnKFLDzfVlw7HT<;GIYw?rBpj*}wjSKCC|IyXSk&9VwNRZ~S!p3cIPb;C%a zqZwjgvuj7I1?{ zO}5YQVrJ&1?CZ%NeTmp6D&8Z`6JTj$TwGk(JxNwpmYtoQzR7Fsdp&6h-!Y@b52qMg zjkQ5|ID!7b!39XOZ9ae$PV?+(;LoqSlJ1eFMn>J3l-Ww z&gY`ppZ)dIpO*k+o?C>1`P=pCrOhSwKQ4TnyWv)^Gx$Ia5deV19XUE%Z_RBLVT|Nk zKnOv^2*i|k*szECTt})GNSr)`Bs>p0e?KoWxay;~;s*gBXGPV{J+JD@SaZkJyQg04n#i%#l- z*D9O+ektro(>}gP6q?AxR$WFq=mhrNTo=&KhtSnrlq@y^ELxj<*LjpG%=-8_8G$AI zmzO;l;l#YpKTX?~FWa&+8tp26>2)cKCRr~xm_h1)i$5)_bHliFUqs95^B^VYcAw=1 z`&z>ailj|ZbHxK?G!h|ygqRPF*Ddaojj^$^_N|y#u@(b$4t`T|&vz?X>0T5u5BxyZ zc^mNTnDPj?%V>Ltea<+^Icd;uBt!DR6rPKdzE0tF@yv^$xZ6*SVomdB0h5FbOsuW; z;@vc*4{QRJcx+ei%eQyTu(xcb!8M+c?8^AUJvR%7_g;Zf-7HvL<32Ma;nrG`Q_ec1 zsfJ?E(-+boLX-D-vaK&BC=BiRkh*Bgy4>2Fg9RFuhaMh34y%Vm)-z?3r;ay?Y*oZ- zk&YC%wTA~dj(^%9B3f7^u>ti4XF#Vm6>cu(n^?N0Mk6Y9#_cfx(KPSNJ~Jz2?p7~4HsTru+9PLQ%ux-HX&{m zT!96`oW{>o{^11x&yC7#!ckNn9$XyX`S6O#|GxV~7d4+>{!;zo% zu7eMqoc}piSIY{AEotCztXZ)8!={QVTQr=t6sk^CLl)?`k5b_9f$xFKd)^06%|`fB z7(c!*S?jd2^&P%EYa!H3kf#*$QAct`{Xmq0rpLbn3c*UvUT4jgRN|74WZy0eNugCt zxp})E`w}TQss-zqPpf?3*fZ%1HPW-R#kDY{s2p*C`_PpU$)COBsW8>;N=DzS@Z%|k z{MO+i?H>Pr2<;eQL6RdOC%wIVA`v`{IwV-iR-JC^KuT&jA5SU^ z`_8>Cn%E!%hUdOQ`JS-O;d7KbKa8ch9p2CParj1TQGG`5z_E$2??Zz3C?+EGw`*VnE<95(CmBpEatBvx*gFnf+b{hen3 zGDII?(BPKxr&rA27wzA|q70xL0=x;V;tusT&en52G?#qSef{Iiv-)%&V+=!g_n-bA zFDxECgyeygTCEG5!Alr|-}j?mg==xsOg<$>l8P%uegt_wL4x>bFzq#;2P{X6$J!Yw zZZ+aDX_8xF6$hEi$!jhL>i4BM2V)zVX~Vp0q;AhdLS2crh3FS3D}s}SXomHEW|_>vc-Zl>Z$B>a^&lbP zoTqODetg7GuNZr&d!K%~a}$LySP)2fhJR|$=9;tkSt=6*2dEV+U@*{PbX^_ObY9HZ z6<_Xvw}q!oit9Pq2b6>=YsVL7UJki1if!WLy>Kt(!!$>(lNHMXzgYP=}zZ) zv8{jD>v2{z4oUBt;GwO4a|`A#1N7cYP6BHNg0L^nD$gfuTE{uLogzZ=yodKe8hYK~ zIX^NzNnmxq;x$^K(y;xT`QayqGqi?%m92)hDblGj!$SteeQ(jh%_NdfkJoN(_qJ}` z#{0C*=pE8yCiw*b8NgsBB}jvoHUP2b@!Y=R&1FX+6%=~?(+xEZ8mM|^{R;?SN`0Qs zQkxx}`wS=KS;)(f{+pEWpWW|~e4~dy7VRfkp6is_Vn0EWZemA@IX&)DaC)fJuI&pF zy1|kn%Kq-h<*SC|+h4ALU?U$35x!)6ge#5XC7R0{iP*DRBqVY2wGDL`DWld2PL3eA zLI3w$_xYX4R?s|L1OL{6jxu@$>M8%NcMghKEb}E`>Nk=q<(PE-rH?n%Rw5VfCq^j} zoo$k|R)=*&@d3=WsUmm4FjR4WRhH}xXI^8bf$xR#P^TJ9nz+XOz#pf7(3?&4LvLTY z&H7bO)A!-z&iFmTb;IlP8>`716cB&QU8KvF^TCIzW(T>Z?7*{)sLrVXqpU%c)uIvW zm%yv5X;Wm)dbdn#Cg8J;6W)uml>Q$JmvXZ%h5#>Z?cbiig=C1dAE+YZ>jkH&`qXkS z9|$mXw)B6-Zt-@D2ZRlZvhgX)8hKG>0DAmTYm>p5$q66LJ%_AP_Zx?c=HpmQ1ewy| zH3hdJ@wqOJvCP0nrLBv;#>WEBV(#m=(R63kn6Cw(!NjE2MFKlyxX$-UiMN#nO!6UD zHF0_N8;7c*zz6SePjm0qN_p@;u61vvup!u+WprTDv+l_kMP--jd$VPKX}gJ1%~*zDt{)^dzFGA|3oK zcG2{;<2GJ$V7_~o`w;y(iSX-@eaOdyqCQ@4GYUC9PoxDYCIg^_e;nCb9a#H?B#(fFmpvk&}+7#{IZ=X!k*3~v(4Q#&~$;UjFyYlUuEFyFR*k% ziLX>V{pLdRFWGCuUZrGq4DluTa0Q*IMdf_4JrQlAhVWWZw<5;S0dLY1*@%hf7R_c&t&`28Gh;2I zoRg+8p$v|vd(oOBOYXb0l#~-JA&3-#?XPp)-Q8Yo5@u#}h@R9*#DA07&xarGZ^wUr z!7U-DikAWmIto%zQMtUv#((iO(DxtOyTES6gyJ9CTk&1Th%iFM{B>o2`ksn7D*pWn zc=m6C-ER&-QXaJFQ&Un>jv>L3krJnCJ!`S%ZcVt+K!OJM zBoHLHJA`1t-Gc{rcL;>w65QS0-L-Lt#x*!i<1Sw(d4Km?_s*UwH@2B>D_O8cKH71VFOVB)k#NW!j`a4G?A_&pu8r=;@+|iT1JqC_{(i|ZcLmX`M zeu8hMlfm{|d_ylB=DNl{zYDpgumL373%#)wXrq0gEiK4^r&Ml+^ zCjOeMcN8jU$O5`-Rqn2n{Y=LBj$()OaQTL>zop0L5S@CqlKaC#awyOE-gd^`oFV=( zrB-H08o_FtN5LHy2?^Xl7^dAdp5q}i%C&wdA#}SeBBF3{m-23tVj|Cn`tEw~SFsGq z#ZDf5y-3L8O!-oRM;(~o(ZGan43UKjKsom=)}I-4(c{8qK%JM0?XFv>;AV}hj({J!+4y6itgwMG40+F2 zcx}EP3rhKV`^lG|Yb(ML;*veS3=B zp0j4vB`Y$TSz=aKao9PAQY31Refow|lJ1V&|q7l3#^ocg>kLhqZVmBWop7 zp;fzy%JBFE*WV)D>8lILaRTmq4sJ~|D-R96QJZn4C%sk6uU>0M>uHJ+)C*WrE?sOS z5v2tMDrqcPIuy;HS#YUa@ZFaoYdIhzcKqqO` zXGiad0#spP;bSHY1>epEYO5nWTn%I0pxqRF~77b zIuK7SAvib$9X-nih^gLWf>XSJJ?!`(yUrl3UP;8CPY=u;3s>%_P%L`6=uG0@`Tf;~ zfD2!UmZflpSe(8=x-;KU7cM|=S6-}FMpb6Xa^&P!KW5nVVwg=oWABK-s7hq9P91JD z8h**0#*y1wAt3;O)+6xCVZQ5gLsK2<(a{tK_tDYO#!?mW z3GuLs*sgc^&G`#5>2v&7F|$jP#j)1ghtVdB(DlXsF532`OGhvk_nK-I%k)w+ZJG7r zND_-95i1PvDHZ7%OjXt2hHlVpt#|lTV#@EzbQen;d_wp z${rBck_x7|H>`tU!d!tYmYX?@qwZaLCx9$oV=6qwK*_Y83~@5j(j(Uv{s93jwEwcc zV7_<}=-Ckv6@>{WBZ2_?A9DUI2rB=TSi2^}4n#A@<0F%b!>tipX>zkbbRwCL!$z5Fsfxo$u?o`s!|mg+)$ zIKItxd*M(TxZ2+6>s_Xm1DSsxB&oV1rG?FCligCoN?FPS`ySqz;a{pv;jPI4##iU# zW$ufE*;fFlLn8BP*@#wcqq9pG08moGI$CUIpSCL!Vs5-e=%mpTpu9SSRa=w6pD*R{ zV}t;M21_Q~XDmlZml4OUGy1t)boo?!VF4p_v|SE^uxu5oghO8u>gg_euXJq+hstIe zdE-Zj(6z8M(wB&?-e9m&j`jK27ytl>h`9KyYj|EMAXorjvmLAwC4-o&Jxi`47Msl) z(r#o%S79HKg4_)ed4W}Tg457u22tc&vZLU>oW-pLFl%Czlm}pa0X%IU2}O^8jwtKK zg#>71;Ad%RWe?B6mx9E+cCP_?`ue_3B@eb+cTTa+)NxyenpYXYUb2_W_O-7#@L&GS zO*FV`1~@u?2qh|bIDK3ePHcB4U!0|b12noBzgiYU>HMX#B+s#lU;liE{spfT_;FX$ z-KIixFj>9+o=Gw>1s1?ScG}0rh#tFE2WPbToyq;-6PMh{4{>yEz8XVX|0ZHn{0`QqSvVSyA& zHMtBJ05+oz@e{3DW^5ZjG*=3H{QiGlwCwFE;{r}N_)riL`zvee{iWltB-`$+v@z%B zE+5H(>Le%|Yzom)fKl0`T3f=wfgFL!buCHrvI+rPdXQcr~a z`4J=bv&zdLcajk3neVOWlp|@h>IlDeN^i&3GiKd2POY{v4{0yn&Hm|2m^o-3z%7{Q)oyTdFOq}9hz7RuCeT&rWMX9qTD=a@t zK~U50wg~}3H)GypFh#a2c|EFS% z?6wBohLX^jTz&bprOKBHppH6OQ++Wq&E#DKs>TAX6;` zmhECTI^0r0-3bH29tP~BP}KPMSdoC&b}15oak8nHO@MoWmg#oB^Yb%B@gWY4BK*$I z4gm1ulW%S=#q6z^n3(*BxJK90ckUN^r;~=SJ-Gqi_d15BXOq;FarZ(3&}7`8Qxp`Z%gE$Ai}p9Z7fzl}5Z-Y_&b z|DeaT))O{=e#0?9u; zDDq!G?SHaD|952DsfN|n;8&I_{J*z5ZTf(z!0^YSu9X)j`Cd^;DNFgo!uP-TznGNB zQ^d!||M+2>XeX#p@0RXAByUgAHPvRhT;FR!z@gp z9TxRhp{jg{gGR6zSN!dB1>d(ZgN^&*A_)B^>_m@(HWz)O{JjIt;E7r@T4MB<`a8y$ z6|N`=SKv1Zyjul6>3ff!JA^oMc8c?tXhuzJEHrDh!h8c+%7}h$SZT)esij%($tZ zuQb6V4kci<6A#v%oFkZ%&oI_k`)RLzG8O|xY3tuyXn)F=Z#doxp~<<=Y?Kc9b(3&H z$o3LXM1 zf8o#v#)ordND1zw_rBrpp*1KSV()zDTeY>nsnjTv4)5Byl&WG`=gjrl)MsA$V4HI6 z7wX;4^?1Zid1ED9ff#3RwHBokQ~C9I_FAw*Y|W-UAW6fCZiNZ0tbgFMR{*2gp6&g73>A?#PV48+^@OE>;7TO^7uox$_ch<=(w+VI_X=KO1XKH2DQ ziyr6Nvg1si>mFv|k%d;0vf}v?sK@YitA`t2I(fnRQ5w@Mgv6Z7aMjaAxr!Y$|9!H8 z%pe@{iMYj)Q;URuSzErpTUnX1)y4!NCe(R$**^$SP(v zQd<()_<%JXnZW~!Ht1n;sC)(6^X?Sf+n2bil+KN%gspzW11q@Z z8yehwV03^5^tQV}b20$e_5Dy{cEW*4s1|l$v)lvB2-z}bpJQz0YMS!tTW$#(wf?6$ z%D{70$W$;`$?E*#GDgbQDeb#yqTygVy{Y0DrP3`XI-}l+yqx9L)u+)mt&_aA_cnHa zgjDZn`*_kDYN$d^Jd~=&!m4=^AP}U>K<*Is$-bOOn&-@JJJ|Ob0LS2OHUoSGN%{`F zh!j@xDJbca1D1qM))Qt!C#$_x*ceRGyp0~J`|vshgFiO)!!Z@vID9;%Ub;lh4WND( z^X~mNJ%^1zBx=dEUc?9haB?sxib8VadkPm|FnA0$m0x@va`L9}BIVo9UJ;bE1~hU_ z?mR0xN-=}e>vFC~I@oV0qF)cDK82KTJ<6Bq0|I1pUOAMw7pv{`iU($zV#4M2wsu8W z`55+`DphhuwM7~cKNN)ZrVq=>>j(fkbmmcOt~1P{u!#bagtaF+rr*}$?;vDsfX^mO zB<2r&h%KCtI$?)vWhz1A<(*C^Y$%6wFv2@!JpR#4?@v<7Qrw^~vDAX3*hv(z(%q)iC=rMv#Lo=!g)b^nn6IM2AZj4-3y+en zgV~>hc%U3F>cjyT(;3rmh@IJDwzXExmI@YkikzA%Y>$?kzEH-v60fzvK@^oX_GYkg zEJt0HDE{bP>npEgMJ1d>esA~?$?6U|t#?sxXs)#5#Rn#=YIzM5zm+ZRY(-j~*Vx3p zZ|kEKCDv0ysmJ+sl01bFPve@AgT89+0T9*wd9uZQY@?-e-XT?S2;qQt{6Q?~Z6)J~8ellSOw9yj){U{J!MX z0i5=q;p>w=^L{Sbz5dQ(<=^@MVexK0Lt#lG$(JV1bni}YFJd*dRD&Oz_v`TC3KQo~ z>E=Lp+T*lB`JnFYT9@LKbca7Ni!6oyr6(zaVZB9_yMu)Bq08tk#(%Esi%P`g3>JtH?Jo3;N4JW5qJB0j87VSiX;ZDuO_9@f|`|?SmYd zr~UaJGIr1i*urp3ZlEOMQ!jJ5Gpb2+${c3$#Bh zSsrvejv>vtFXA``bdD6W@VJ!wdU#a)N`!V;MFa;o%A2(_*(JA}T3=_kW!{<}K^JfaO>!a6+FIlOA8c|IW)) z_poPaV)e%heRW+H&8z)2$P;(xZ)ed(@F} zdfw+zyha7=2*?QJOsAj-k|Pd=p#UgiZAGOPyNQ>4-L9Bu(LkV}64yJ;wvx~FoRk+S&dxZkozc5u#^l~{v;4Aw zCq{+^)It_s_Yb&Xb=H3(zp&6IfKF+3riB-8Cr`=Ble0UABp%-;3^Ti2o6S-RM{Fxw z2I-6rlXG*!hT>X&Qa%f;M*daiB^rvjJg(?qAE+F1{;v83v^8m}GErWb7hm7SQLg}A z`0$67N$u*d)JCaaKV4s`Y$q~Vv!uI?^rt0K;7hXGyi~THCs?~~3{eSW(ANWUFtOP8 zdOq))lj{3#2=Gp@^5K_w;bjSj8W)ql4#w2HCiUGa_tI0K057r_YK<&4p{C%Ccgd~= zbNxzjwzgX`Pu$yw-F0~0SUz|8{8`dt@Fxp9f&`4dOzl5hfFf8FRC;D(bG6b89weWy zH+oOSGR+3JBUOZ}5mY^$8d?+Jd#d?HN8~&2bEo_qS^8$f@o^%Ba{qi81ag#=4!9NF z)xIHw_PxD_tg`&~L;8zTGJ6jyP5?8TtywiM$H9)&JG<3`L4*&WDg4ac+#jy4E?f}^ zfmyc`Nl;?blY+yM;RrIVNrT#@S3}m=Nd_Cz?vqzKO{Cf%L4n@3&2+{NsXd%-g|bi} zQS**>0{>!MA$Az1{xQu6h`-)oy^A>M?G?FF*GV7h@9z(fptDP4{{q;8qWP1rKVFH$CJShbiV`1J>q^=Sw&aRP+X zu=c*&3+(K8Tb-&i{(H5V{a^^C1-ZMMcK2kQOj_V?Gj%jmbW5##)7&l!uV ziT5E@Sr5m%-L>8ujd#ysJ-||N@A4?Y0v-%Zg^jM!cDny$$P(eZdm%oyChoyWM!ebr zsP7jQ)YSHqwehcUz*|Q0IQQNt_w*6@Sgc4bZ&xzaC^(iO80mXv?#{^jF!|om&bfb% zl{0Gf$d5R*^ekFfgKVjETRz-wY`p!3*x`f4ljqRQ9aSi z?70`6iG%pXpFf^_*GuK8#(G?82>8MP%-5~(spc-uTqfgk!49j-6L@s970_%T^|wH` zHjoayN^HNyqt<~v3__JcNSr=~&q{ZrNOD|$`G{!6^5!YdUU%hmP31Lqy2cIOHJ@Vd8=4)2 z{EHi0FmGi4=uf2O4rk(()HJ9nz_h*9sV5W{rWw+gI6-*bwvaKsMbV&AR2< zGqvR$dt=;M@1g-bnH8#4uWn9sUCK>S&%n*kaby4O!&uXxYef6~C$EU!q9?p|;oT}E z?@P2`X2$hfZBEBMK2oUWA&lIei`WCXFgMB&T@dn@y@=iZ0*-yvqn3cyZIs;Ua>lt`i4zgK;%QV# z);PQ(-?^w{I3-9tX=rFJf^SvHeh9RjsI}BNHiqWxd}V7s|58U_T0uHGC=}#Zm+Vv1 zPj&bxtdwG3TvKmIUBc_z!ld72eUVsCTo3{2{x(*o@UM6Z7^>&a&ET|3XiUY?^I>~` zDkwITd-hprENc;(SL1TvFmcSHqevI4uSolzQYfhiMaEE6JN3+gKZboLd2V2F?1$4* zSf}Q5Q=xVi51(rJH?47F0EIz)&zVu$69C z&_bhUnY$d|H{aQ;pZr)Nlu97b%2bRyV~Qp$oO|)epP%_d$taOv(Dw8OZ8!R{d-=3u6uah(mqcbSQ2 z1e9n;!B=T7)+5(#dx3$QM#``}Ew1ZQ=lFCQ?PPXCBE+ZHeXJ51BleKccig#(4X5Pt zea-kNA?jHQ=jNY-e1Z$-MflpCa1(Ueg&;Ir@=KGr&>d!bTe-jY2J#20e-R+~S)g8U z2m$-z&JK5%OOu49&ya+GK(;$OThhCGxYu%0x?WiV;+x95mx+9YDwZKV&}I2u#2%99 zuQjg6al=VqO|!iLdOBr_UcmKrq52eV_#%4GLg&YuCa3Sx#_x+|xiM2XoBHHZ+zCJD zYDVf;oj&1PO&g)PJD#&K1c+weQ>ZC3njtUQqcRQVR9H)-269)H9KMNV<`hB(nim>q zplttInHVaf``SNedpAW|Rgu0a(#^yRW(_?y{{ z`v~y}*_>*@t=cX}QBlo2bL?!3S{C4I;ks#pVcHQf?MGOctcq;5o!0&@BUw)w_GqKS zHy}`(5Xf7pgVH_Q8LTBTT!6dSPqQ``Pxxn4QtrH0sFUO#$YtSDEr03pYMKx9mhtey z0_b9<;#0*<>5dBXX72)*ZovoPyYaYxOd1YPWLj{ArQrs+{k2WBlIU3QYYfaNt^gDv z(uR8!dM4)$I{3?!Z+0;~70+;zePW-h=`Q@To=#v?wh7%Dl#2@ ze`ZqeJx&YM{@OCQHv}y^%?8sDeZaSO#%Q)F;E*gsJpI#R+f;tcFgx1%Our^%zq%j| z=2t|Cl6gozW%7^53vC{YKmlPo%M0wo$^;wbXVuo1fy(9qQylS~zcZv1yAzqNL2gBt z+9zVk_jUZeTz_n)BUL-b@iq0rC5O_os_76>uLYi*)1{??M$sicE)gVhl0$nZvvQp}Q6kTk;3>;cn2dj9T76>Y z4t>?u|4pS|NPSR>`tpw^&KC& z_wzwn*yVGqgQ-q`NBc2q^HoYddsK5>MZE>7lU?#ukFuloWnKME<@npXM&S^ zSp4Pqp=XRr@7BkW)EXjoUKHU_`#y}jhh!7L5EmZqcICX4$eYC*OrpM^bqRQcQB&;8$~9xf>bJCe1b!s=68y z=OH$9DXeH7I{;iXCnh&V-B|wJP&2p}dI8UfwG}Hc)?RXkr>ilAAcxn@oQ1iUPLe7X zaDrva)a%9g7h@MsH0uNMGig9#x_ru86OHeSAt>Y;di2I3u($GGBbh zc5o$U+T@NH4G$w4GT-Acidb805V<~l7wQq$&wn-pxy!ZEH64l~{hm6VUi#>TR0eW= z_cnpcoF`o+t=_N_SpM3$F|z9*u@*h4Vzm_=*S*2NuIgLx?dv%_>=qRr83@m5OGUj}dXc>{)=P3JXPaw&_G`z-qr=`)+4z ze1cQCCVvAK$7o8hp&D7y7>#ZRmS-Dc7qzJGZI9SGM48HR^%#a$BPx~iUL-88bvKIB z&qqDOkY5UqvmYI;P6R0OsBRVdEn3BCY_Rln<%m;xi{B#BXUvIN22I#75RPET-Z!{c z-sU>?ArtIb=_;vRb{x}{z?4#RHBlir@* zL)>iK3cfPu`MX@@)z%kA<5qYNl`7ZFD;9eow*yWYi+4^Ix>g{*gH3FYU0`H=J@L}p z%bZo4Geb1_23b)3Q*!yN)koIJOW81F-^e9c?6N7$&;rySO&fuvc8-qzkmb*fBkI24 zd!1BqA|mb-nD84lwG9?@8yZjg|J8=PtKMdz46dJGQ zV0DH~vc60#3B7@a zUHk`O%MBXg^X>!nzwhjtu2~<3`8m8jkK>AW3hB1n?|$E^+=~}dPZNVP-{H*8Ac*qf z8|+GZsS~~BU*s&_x$R-@AirkUYG+RW>&%$T_Oi=_OxWs7Eya_kZUw7M^HOLXOp8BP zPrv+tCXAdl5g{r%FSvJn6c%+}|Mmk%yZrV~fn7`)BeRgLU5rTD>x}HXJE{3gJ`Uhk z(a_hU#tV47Rf?UPny0*ONUw||-yJ+NhW*X$c@~Xob3cm!Gv;naYhS4UjNF9aEh)Q- zk6@%~=4F1z#O{SdtArwMnXurRH(dM*44p&ATexx*cWHJ=d}>RLYF2%teyXCl;+r7{?O znk_W8N-tU#=akhO>g_|4lSO-LF^JTz+dmN!l;O<_& zEg3UvMRbhsH?P7O1AIysj_%m~LuIfMUIH(kv)-?ZQPa74W(0c4x?>pwVe%!E~VNlvsrPOBW&61)EB< z?Q5nONdN^j{`vD!bD{sUFFO-jOT2|A@cf6iWL5}@?RAnGp4+Oc77b9F`KXnFn~ zd(C}RZ;H$_$JSR1!;pO@gXv7JMJ&!s3qx(Uy@zO-=!%T&2MErk4sc`as;qYce0ChF zxM(c#C~XIt_n&IWxxEK@-j^#Vpd543C=t(%?+2{BYICp*bVGhM5JsnGtwS82FRG_8 zM7hLSW?r1qTwnKrD4|UE%z>`B!~%7z0H5V6B6d*`(z6k3z{5R&sKKpkuFbpMi2gO;^P9fJIhDx{iU}`>wm&Vxx-tGyX(;)I3>!AYr(Cg} zjju$KdG8nNj00W3;oC_wH^w-9v3v8qL(>ptBbK@JTl7Onhmv-QWKy&`D4)(Uw50-zyM@d zZ_ua9+k5ic>-6t9VB2PA&abBB>wqxptLI3Kk7xLAY0Od>jYVacDjxAnO-#Zvsj~L& zrH~F1So-Vm>Q#$%GpBN$x3W;*0Szbd5gF5j_BTmdj?9%Zf~qj z;1(50Bzm9VJ_W@aNUdoW8X5;_$q7&H{&Kh|G7Nv@e8-e)rjgouBW?A3WTi%^zhSfP zeD;=FI(0_gnmW_0iNK&?vKKA#| z0-aKsD%W$B^Lqti1B}He@t@;RuiyjL&8lC&{>-#~O`|Q_1O?jwFSBB40CjsCv;z z1WooLo5vz;t%RUm`a`-&Pv1JEcTc^S_Eh1I07Ce7LI6z?K5#9_Ic|+}Fk3?9YW=Ko z*}@7_^8*nz8Cg)De(m4 z%L8`YE8XVnC%eh+?X`%PRAUeHe9dm3OcyG%)~haap|{-x2*lC?BgmpL!0xxkG zNVFMdDj4z5bneukd|zBBP4ZO2V|_)mYTj@ybzXsEG-v=_0i0(Kk`VpLJmKi#fm3ui={y$ z^64mNZr|S>TYMA`XfE`TcF*uIaUHSYZBzD2*AkRjvVYfe%lhYU60Z=%hDKV_@T^t$ zGt*mN`illKvCDhdiD8{NQHjNRlaf*C8ETBb9578}bxS>}gl zkpbK^7Q}r!pZl9Ayy)(U`7%^NCoSFU@$~-Ied54A#|{I zPoV(4Td^rTs}AHgzKGQJyPNZP3s9>UuDhttpRI=4 zo__b`{Gn;_{JOj&7>8k{iE&2VLt(G^){p7oQxFCT9=SAnBSkIuMaGFq0MP6p<5h#- zj}Y%&fBwi-B#6P5ze|-}_kz|lGS0);%O%qG!K&4T^R3d#^GPig?*}(XlkKk#HONwi zhxC)%iF)BL7qOGO-MrtUvNhP9+)>v>$kb~+{p8L|qa;!n$NXLw$8WX&>mg*~#5U`x zxW@1PvKDwa^J0@cG{s+2 zKD$^MArh_nJAxP@$i#IVs zi95X0n4?`|{2OiA-{mh#1%-#k&z7n1f75fv$xFf&4_($RDS&YLGMdP@onNG2FT7G-WSk? z&||R00=x3^9a8P5oNqx$;h8}p^8yiU&|N-ZVP$ED!lrcHxr{8 zBeVE8P4M%3-(1Bw4F3-u8M{SP!(|@!V~|v$f&1k=E%A=aOGzj~c9m^)Sf#5Mx=jW4 z-IHt?(GRUn7izRhpZlNr@Raw))_wzN&00!^St#B$Ww~Q+RMSOD5A#%9;+TRNepM0f z-Iapv6sNcPK=a;XhNqs9bm}9N}ck7 z@RV++pqDJM)3X&>WY>Ep#cTTyX-ZC?%uK=!C!m{ykBt0O@wndq7nE^t&fhHVJ zm!vY{lGmOJB!*uMJeW(Yc)Hb6igqlmly{+f()_M!VrCOuP#bOHT@F0+$$TU>d;tL9 zk?Cik4;zn8n()@dWwfcB@3a>r`V%=$*ICUrjbqfI3Kk_rj;V^JD{*_YPaT=Pnk{rw zLp`#q8^7YYCdk(PkufuZ%v#HB7&%v-T0yGaV&2`V!eX=^0OK<;F#|uE#3b<|`&oOM zw6$z#(9FR}&M6{tQg`6I~k(!olzXopJj^7w^#64KS0~UK+3*4!-3!@7N2>T?nDlkLq zSc-q2LN4tr;o&_nHEAds*RPh+JQEKcthWC5MNf zP9LYz1@&TGUC=d==GLNikfDnAp}ahpYXtB#gIsIV-mkjSI&)d&+76xt6MiV)GHf#T z5>)a0^254;kcx_SabrqcYRCL6Rprd}r4!S0f%(0G%S?#|iTBQ0QS?JZMZSYZQMz-= zQM5C!+=5@+wn_!-VpX4M^qnEAd5uj6cqu9;U<7Bc_RVVyu3 zjs@$5(<-tXUF7O&t@t#@_M!jw)ET2gY-(y|%I4v4^|FZKkgRZZv zq-N zrR|}U`4X4K7?G~%Efm%N=oDJ+^T-S4*(gelOrHkM#8T9`Bqm>Mpf5W9@}ILDpPPlw z!kK&$xiJh0FJ+`;2xrxVQ;N{* zk7pB6Z_g4*jqsX0N!0|`=3xMxd7YJXw5G?3UI#NjIwTzX^BbI={m<@?9#iKk67%-Y zIS+69D)#Sit6(4v=jVNd%x1o%$t|Bdz{|cW;jfxk8F28<)r~Aat}I2R<+P|mK;-*s z`@X7^LQCU%1TWO@0S7v+u3Vx3TZwfT61){N`sA~3I=au_Hy5ubQXq^fCH+yc2&J5W z--oH>5I0sx(Enl{ubZ*RighbAz}J^{VjbA zLMpBtHzrSk|NZ%-;RE2tKt0|FK`C&>x`B@ro%K)sjeAGVEyQRqegJF-k(&Rh<>M?D z2>*Yq@XZn2-!DJG>y!O0VZ1}S|6BToAvFJ|%73Gc5qgJ}Mj9qw@ba7}JzR(6e`-Jy z5W>3Bh<~3j{Jvni2oaT#nuSG?gNTX})~Rdjv@kap>aIly2@h9MSI5u#dwZdQO22h% z?&0dM$@ynzXV`dnR4prGBQSX1%#w%3$JIW4^0VY1^8MGzl+UaR18g$J zXpJBFNF$}EWA&kIzducYPs(gI$>6+zv(=Ae{qqe*s^3ArOTO9J%WhD4xYTT(6kglq zLc~v^@gIasedPpyTP`bv18uoV38=o#hPqCRb7gtgMf0vB-xv0iC58w=@(^MaTPNqjt?YM<7#ny(bPcHEaQqO2=Y&>mNk z(G3{N&`g=SZ7?z{8Lm^TGR8Bs`qR>H>)2-|SKy^P-+mbnnfvl6suI^ znn%ms+G$YrE6HC1;F+2ph$>{Yr`E`)JtUH3A`H`ohTki;IwDQJYvYk;)1Ic)+iSrp zASBXQbxEhsTPt4tne$oU^1uliiSInbCX>e1E@yauJ^MJl7JGhj-3-}DaoTR5Xax{pjS1@-4i%E-(f9(FLkvVE%h6)7o2lv&{rp~|fTF`8PvC!Y&7 z&%L>EeNRC_-Q>n9q4?$e>+iCFfToRXyY6@I=j@mK`4PL;v)XO$H0|d6(t_m$C_sq+S}~GK|gz}OYFiQE|=Iw&3BE)<@$ym44R;<>{**mbt9h8 zUkrnw+P5ynYc`~+&O*U!;8muPYC0oJ&lX2ZUKLx{f`H58GGBE59IwE%#fJvY8CrIg zEnRQj0y(mxNzH{eGYz+vKxcS1&?CfMBuPB<{Wvo}uX*Oweb`*O;g5er0pn-+m70ot zA%A^*`yG?v_eCm-VawLn8Yc8^eCgHKZm8*eLfX9b@kSb&E$&s$xHuAP<#U|^CA77k zA|)KhGZ33*F|WX<0uI5tkLYU-Y743@kGW@&Y4Vn4x-!$`k-(gAvi9u;ew$~M9{IZ< zn#HF}YJSd3oJY4V*D_r$aStmi_UB2VJL7FSu#33a@$^>QOlEs-J>hjP5-Jg^IIZAX z`D%EZZ)|Z{l1uCAw{bNR`st-~7qoXy_XAybw#&ns&t5)FbL~a$B=`GSXo3gd`%2;# z55(wwTuP=$Q;RsluM_H(z2_45?S{AQ<1XnZ2v?>Cd^%7)3^UH{_gsSwr0#8ZZzj#B zxjrfSBcee{oRprkotCbOYsf3XQwt`YR!^=;S1s?@T@HlJF|o?xIZ-DIIML}}X~AjJ z?v_ti%+aBnmcIxiDdz}37|ywC7GM{(z_psL%2r~@AvgC-{UcAIlVl2gj|oMXqyUdKgnwu*JM-16XfHB_{s<8B^)Kk_t* zz>E$@a*Gem#jtXUb7<8@r*OnyD(Nka6Gj@*P`*`Q0Pz?d4bS3KSy43AUZru?E?MRf z@nV~fU{%1^s*V+h8WoutTso9R*X-tBD7p2_CI`5D>3{WGAbmV}xzBn}F^EfAu)C^J z1h>R#dPOc=M}F>$IkRQcmNUFXL~}ljleb2XUc-}*HXQ=uF<&%{G@ry0jm{ki zNHE)Em80SAQan7o+uIP*y4(z7*5na3Uw+UGClmZ!HYZpDgb-!h)lilwDTe8IdBzH~ zTW9WcFm;=FNSvw!vS7+6vRw{l5pug_xrciya_09AgPjjU(tGMCs?zfLuU?GOQpZ!U zOSG#p(raXuq;N**Q$ zqf(HI12ap_-Sx6??P+H_!o&S@w0%Rla)zMXw8XGtn|pBb*_o%44N<`eW7)TQt@!sP zpIqIH7U49BuW4n{_*BnBWF?~+_8xuC#l;p*4vH~#iZRY5CAwCmjZp~+1<>v3 z2dx{_lK(;wTeDZim5k)%Idl5D6Eb1?0~@vj)(uk8%hnBR!&aE;+F<9FBj@|1K(|x} zA3mQYA7m(eh>ec^^cTW>#CUl-?D{>a;)U^g_uOTIjtj#U!te3=#uY(k-UL4&J3Cuh zUA?fdkQ$0203o5FIMA?%eHNqN=KwH>{We*2AYMS}X=Q!=EEZPQZATvNbJRj|v_N5I zW@bqVXm$r><%LHCZgzf+x1fl{-fBC5DIe(Du;i;-N-|o*9 zOY!NGeFjid+K&?5FQ zbbC?Vy%%x}a<2v!4Hu6VE+!Jnip+ekVGD`FwhKpU8hY8}@MKU)WOTWkyqave;L~Qr z`B0P(H`~+tRceaUfN%YwzMHt&<1*3S-lUDTcZ@tuQ*(rZXk-$<4`-{W2lB}&uD{`4 zPBeqs;Wc+d$j6VLz5aamd9*l^)I4l(ZS&wp7Fvo*9T-nq9Is&j!Qny-r+W&d4t!tb z@vKo5wzoK-cBG(n#F^#B;g6!<-jtkm=J}eV z(1B78A8eMLgoJu7n+N4EM>_fwr}?ynf%F!GbplFCU5*oY6pLv=H|S*dS0y)#Xn%9R z-7H9KB?FI;?(_!p7`H_zA}EwNt(d+GJ1L@dcIs2(icmt^IfgZR0$4g9lTROE|LRz; z+2dmz>(7bu*9g7?!T~<+`~_QHJn;rctdJb~gX>HGN)3XO5wT8C+Pc-H@*^)o=b>4h zLQPmm7$mM#v2f^}hC|mPW$bQL3Z0r!q@3$%${con0U60{9Pu|GSaV%6udW13|H+t% z)5t91I>tmaQ_wRoG}Og%wfJ21+VTovwA=FT_tAQY)v@7x)}koryF0j8!=kw2up#vC zD60);PZ7Sjrl#-@>8z#;4bw*YkSQ8Oc9SGG6-}IaMP`Kfi8iaFHZqp|IsMFYy{Dd? z7>oTvt*|jgj`jx@ac7;~f}@+;XC=JC##GpL@xBh6e@~u{CKYBb5#b$uFsZ|l3N!6> zXtOVw>gfp%3kw^HI$m3If^X|7;hC4t%1J7YdUMS;n%k!*RJ!e}^EzlFx2GgcniksA zFlO(m(nxoFxp{U`PGv(rly9QnE+EA5}y>| zqN=X0@9kVL|AJMRfCPJPZcYQQ&1@)vQ=u)ns9I4`MyAm+CyHDsY_rUyd%~>WJ;O;+ zbRc;`CagO8^_w@J&a!KpMf@^U()#N2e!J45J&ifuf9^^KzfWY%UQ4U|L%3lcF5nkSuF>nPBvraxB`~8SRq46 zQm$mB0e_855~V2r>C>mQ5rd3#hllI2$IppsNK@*%7T4JiA^dUP3SwezS&y}zQ>V^h zOkZ*}Hu{T5&V@Dcix`LdGl^<{K1RdGA9k{B;>bsuQEijD_g`J`O+rB?MPZYY{(8R@;b38Sg~!c!pAIk zj8~;9(2suXPx>6zH4it|KG)aNMUkQqZzuZVC`R@O)Quug-g3!VW<>{q;I za#O#JhTIU6NW_IRA7N&r27ef7HA4C*F71edezf(U``;t$VEPL#E_E<0=|z%+e(8z9 z%~K>Ku}6qHEMLtY_PD+z`hqzm?N07=P(4xZL+ZTP^eZ{zqtBJ^`oxQd>U6eHEmYS9j3yD_R1Ei%ajV4UeCE0Eom(6J z=euQBtA&Wg2^nqgrl~*3aoTFFIwvn58dnC_$k^r^c4B`i1up65BrcTtxxC?I^jZrZ z{~jEywiG_t@R$0!_NYG;SqNT?^$xtkwupZ()ivIDNy=q0qI+n*-sgoN@g>h!Ocd37 z1vvX?YP1UK?dK}`WS^-skBG2Pc}pINAo;(Czv~U(_r1~PJ6-J(w<-HmalK39J^zi9 zi3>bWPhx4gasC#kWw0)?`il&w0JT&m5GsQAXJe52aM);LDN%zk*myGEsckJJ$2uZT zXirZ>A4P@2&{poBA4_Ch^PXju554VeA<#ai;5i+aJ+D!Ds+Pa3iV@ZOwXJvUmwMIR z{Uv7D;Y*=HdY%^{@cRP)M*pwBIj(EgaiY6xbZH}91rbhyVs4H+>X0dhl3m+_8(jHP zuBfqqcztKy{N79=GFy?1BFd(whVep0%7?(Oc)`7;M{7efpZ+{&CrV$(!g}#Z2@f!; z&~DOa7p#`PKIc3-KRuX@vk6|k%EG8(SBC17HJnct+60@W%^pJCIWLPDaR~_A#ZS4y z2HAv;{!(7*D=jNwz-#wvUAAz%lVHkulnXXw1~`9h;G{Xxf#dx@mp$GP5ELj*h&>J? z($EdWA$2UXWPZ>1uGEFE4k-D-w3*PPuFV30PT`d6i53fw`MQ&>51&XRULGBf$K<$3 zrwt9#4!JV*<>s`%NqytZ2bFB*UMY5d?vR3f)DwcfpWt z%-%K-(=o6xx3}%Qs#3uoKfBCmuJonUr?osZ%2O;fKM;wRO`MKQB8utxR(SVIU9}_I zC0_1u`8$3%;VvmYF%mwmKM7wHt^SefJTtTjiuBc}2)J?O)Zk)6I6B26Rk8&FdVHk7 zY|xw(fDI;-8tE}~?8?$Y-~F2=gnYNU<}!3qrObIF6Gh~S%qlQ%Q zcyl4@D7FgOmL-(%6b>NEYje+t&~K_Y)RG^X>NjF87=-!hey^6lOG?+(tqsZ>T=AgW zZBkTkE9@~1kjW~^NxM=%vT(0534x0Q6O7mJI~)HqC+K*Q$CA%uvI)2Sbjs(~`~9+F zBj@EFVr>D! zai*`z%5q;!pR=--#U;j%muR_!y}&H0nYUcumo-v)+e1U6SrSha!3rgP8KX}c7auV23y>5G;vXLvR=swl_xm2oW}Tr~z8u`Ft3 z=yl+-i12Ha{njX|I*SKm>3RMB*37BBvfelUx?bt4`j6-)%(>wFn)8c-yqw>a;U@HU zDvMweDSvzCn*p{&%fQo5#)Qbx=?cg zLW-Gt^qHTH(_dL`yc_H6*TiZ90zh`V)a6!4NP+VPt(w_ZDFt?s%jJGm@3e);t8c?* z%zM%XCY=#swGqE%0+;j6%?)2ZdkVMJyU)C9w1{O$dSPZxG(yjl*Z$XqU z{N@cbWD)w`0EE17J!OV}J^85e?&8N@eWga;wrB6bB;GW z$*y{~YE^Ij9pM|wmhT#m4G}S;e(h=GmCO+lxehBapz|YCX>l3gRen9+| zJSzB{AUpLTK^B8gBUAJ!2*p93K{9?97{uE ztlFWad`2y*IDBYTH0q3YR69I}9?N%C8Wo#D-ul2BRrKV2i}%Z^{X~+cW%#}E1%CHL z&jf%&sALH3-^)!F$fvp+8Md{5@OHHu9glFv&S1%AHh)|14iCzC4ut*?^+7{$l;B8! z{b71q9P znx8#(7rj5!3W0D0#myd)tuzJF8F(j7eAXFbRQwgIqAux&e`KQ*HZ2&?(b2)IdBVlk z%CA7yKsptpf+w!O%Cy|{HL}^}!lU4AvyB>=fYmYzaTUgY`1#;2$iqqaDt>+{DQG#{F?(&lrn&62JHLj;n6^`UyC5;4J%(W6hs8;06pY_3cNx zjQ%(@hR?)OYbYr>O`&*udj9-N`fEb(i_t_gCLhwocvwEB@m6P~h^Qh!IutDi{39J^ zbgt|EVmZDy$EL7?>%3 zVis{|N;i7cqpv8&(;;W;E3H|mP$O`XMDXUtt2r{VMNjKf%&IXx!csQ^L+y%)UG0`5 zRJn5n^WY=YlI3C z=Z!x&;}pE%HeNp%xV~L{+1{skA6OJFTA*6HF}X>Bit=(R8{2N2-BHkvE%nm=-KDN* zG`4^2p^^>pv;{r#{ljVdUn=Hi{a{Q!^H^5>Mo%Cn>%Izp(kAfbl+Ifo!_)ue_AS;T z{Yp;_52a~I|Cp)NjyF{W3Nxp+z02125);{4$tt1``vx-y^6RNoMVPR4yjFZ)@P$<5 z0xWjJ0J+^>qv(rUn99t48zfrsU|}#b!|&pUinF@9`U5VTQ0s#MYV=*w+px|~;_?Z< zc288CbkNt@9<(Hw`R{O<>&exRz}El62PDKJhWjOf{GHU^{s>4vy3!qt9tOC)iKm)G zp-|}VGd_~Y##NX(*XJKtPJ_AI7u$!80Uf6$*yMtExdSSrcXytVlslvE`;-T|9)46= zjC%jT@`?EN?b)z-b=mpeM#=>-V$UbS3m%DD{y|NxQjc%49><>wJ{Z!Y}{ zp*lg{6HF|uGOnW^nT0}%!nO;j?HaL}9k#sHkDJ8yZY~>_Sxy%T7e`O6qazP@`@^~E zO+ud~M8$VH*g#`HY(2l*OCCIqsdI5u#M+T%kjJI{*G?gN&sjO(Qml)1vk+rh2YQbo3Znj)%td%+v6ld1`VYY*T zfw6Yz|Ma{)+CTx~wq#wJ*Qd(`5Ds#SzHyHRhuvb_%_Gfq87w2bYP9T&XYD=oUalB%2gYp7T$^O@1qw)a!^3wZ#V$YN?Vm z4Q!@!!#gj=^DuK9KjN`2zIriJEGmNYIbY9g_Y||qo9XS_x1bV(s#&-UK#sU=Yo)2& ziCOi%Yb)hC%KpogD&077yzke=a1BciH{OmW9^R3)Eli&>TrJn=v|E&eSE|vRRV|fjk63BZm!$$uo>?AcSCxjGKj%}8Et}_-DJ2Q< z>1e7KEV&IAYB!(KoYVX6{+Z$aOUz4{@s7J%4=BQFAD!*b^QnRfo5H<&M_q}x$qfyJ zE&49zF#X&P_?_C9mYY90O*XkFtdV+S2dJvyG9fU6rNDi1qtCT}$eNz+k6F;dN`;~8 zai5jkF>yx1-WyCoEebvdPHteH;JoY`T^KK4xwz2RYbYEsofP0sLs4VWR<0gBwcAu` z9FADklpz7>kv5!dlxcn==&1ldaojhH3~2C}(-H1(y_m_uX*2mulY%q0Sp zm;r7Es)T=}S*BCKwj`1kUrtF_r2dYY`oa@OL_kZdtf9gH8ihx3IgUv`2#V;H@Ydv8 zksykUq=!^+c%7MsxvYcer6OlG(f=Zhl>d5{y**Z zY-_g%#kX6+?J5zH&T)kzt8+OODG-@e06 z%Nk9GaR4yI5F72~CEYyn)v%PaERz-d5S0iW6BAi3K(D;(I|iG&NH|FYT+(Xsl9k}Q zU(mqcpI{sjsX|_Pj%)ygBog*TcUc#;FF_a(U7fp2ZD>vJOo(`LaF$u-aVcxb`4l}G zFT9cvTqmgRcDf&RQxIfNKwf#hRhS>=)0n;ZM9DdHy!E~*ivKbj zKGX72;7G4uZZu1nFXVLNbMX<1ASyPk)f0B1uR|E^Qh_y;sNC1ue(wI}djzFFY`@y} z(Kle_y#u@p1^6jJPgdOLMRgid>q=8kVKt)_@ri58v(c5u_c)4I_OOA6{p3ppqR_1^ zjeEj%FG}IA=@Zj8LqqWCKd-~Py2Ni^7U59xTVlOllNJB8UV||a0?gz!L8a?3WNF_z zZ?={1lxs0yzvLF`gy5JcN?8C7k2PHd-Ljd4Tik1jVPhTm3>d(QCkNSVfJ-OxFx!Us zg*iBs^3F&nid5*VCQyK%5|ru%;g_|4MiSSFuqAxDa#JGraXXe3dpar`S23RTXmN#98k|{W+d;$ZR8J`tcO4OV|v=lN|Wn1_+69_7RU2n)_bQW&DG0ChD@OU z;kI82_VHc}?U;J`l+X%IikLl6*OesqS;Hw6~MRab_xeNDDBg`Fd%ba1vmzp zhgn(>fkZES%g?R&r%xMiwNTp|YQy4N1LM_BqK6iSsnlyV|GxM+z?-d_ZHbO(Lr)$EUUeWrt13);q9*2C9U)L}Ul#yZarADS5k zL`H)AuLD9>d}IIkw@SB84JOF1RBknu6Wt7Q%azIRv*@a+VfT=&E;i_@s`c1cPv%*v zjHC;NG&P}R#Uy4%!^}TV9n2n*lm(;~5=N5Vtr|PiFj2>+ee)G`YsC#Re-8VWT1a}+ z5Ui@rcw#-DMtfBD{ED={#mI+fx|=+f$&&;t&V~fdnPqWnfACTm^U%Q#wnDiphJe#B)gkD$?AQ@4Gpf>Pv>Ze{T6jC?ULa0 zeUI_;;$rJUMLHYxRJEZ2*!Y2aQ$mWjwh)1boRIfHk~=-Egix~Qryq_!l8g zX54Psf8QFP{=QqZPj(xa~o zoVr33wVI@kPnL)9s~yWOio5E9d08HLmD(LK-7N8kdqoxo26$M=^9HXT?e0pv(!Uwy z0R528#5^U#;x0eQZKwAasZ_Pry2o8jhv(R@RIb)4gcDI~+*It33G}JVy?{kb?5O}> zB9>O(RFigbRbk;*h&~E8(7lsR8(box1F!_@m7DW?du1`t#mSBQDL{&B1_laG)H|f3 zT&MxOmJZ7sLQFzaGS;7+fERLP!4oy#rSjt~Rm=?0BqHt$92PeA82+e)_t;{dNpTff zK9f!VA~5iQRp5@7pB_E@J{Y!U$Aks*Xi=mgcOyjwzMcB9l^tOaO3}1YqyY6 zZd)<>qHvCdTp-r>d4N-S@EJ^uZguTQdOnnY-VH8c-N_-Eh8tup)VCjfVYof-I-e9K zU0U*d^}*uy?8Jr(o=eZ1ieLqMh)JmM;kNkTSd3=Ca`b?RU^OAW)+wKVa!dO);RkpG z;2CU!+XOc(lyS=6)>a&ZVX{rxg5n6x;9ijFZ$mOV8hT*)wA5Cd%vNW`a#5 zo0c$NMYh%3jd`?HDD?h76_nw}5~rs`%J0XY#+!ab%>(8;Y`k2L?=yJUS`#-zx!+O1 zLMNc26gX~})o#Ag0=(Jyx+QOk{%}KtsV|Aw`q4s4+T`it)RmJrgG}k|^1(WQwZhIJ*{Z=&jIQmePJzLdU||?rxnj&G_kByb`=aIIUr6NI(IQ zM?$xvEGfTe^?rpC0{B)pztez>lSmxi6&56|Ap09nyrX%|g)@wWUdG|}+)K)1^%JeX zTMvqjcJgwFhLGK;$QcOW;`yOgwEzB9IMIf^`SL5L;-t&sYaG>JIHoI|-CQ9qWW;7> zM#-X&_L10C0Q$dL00<84+36Ym_+{il4MW(sIa`94;gjwz)W;ML={F8-KB{TFKx`#W z!1xb(|7YMpm<5Yj%Qvg4KR`Z1D;+&N+JrH2u(7u*ohYAu{hivrmxR}ve9KJzc+vDzeY$23LVfs{xAHahe09|@CntwUVE)t_zDC`Le6mg# zK3j2%S#a;dQ69O6+`hVI;SaU^JOioT`_L1BGw~% z21~{6BT7v$(T|D?@ylXGg||EI%BA0m@IJizZBONQEsk$rJy$Vjt1+A0(8e>v{a+mx3^Ge5$ugbVshZtl5wm}->6SCx_s^Ik!Ls=@-VugJ} zw!I6ld@8TqeEu6k)osD_HVz9;90nXCZlc+k1Zgw_$~WP%mRs=P;-aiZ#NJ}jrcaH< z^q?Zc$w7NbeCGOi6=_`>x^^v;G{|~&GjyxD-j{cOIMs5w42RP1j&)1agWYCpN0`h} z45DCml8JA?nbY@GKV1m_%3N=ExkNx676lpaUasDO_DrVt58KZ3oW1AdN{wn2O=D)w zE@~pB4T|}Dj($(F@}qb@ba=RTWhN2Y`7Xr=x^G18M_Mf+5`-P;ckbisb-CbK(;U9w z*UToh(=pKPc75a4VHt3KE=9t36wqP#Uc`^?X|^gn)15Wjhl?64FK9fW%kO0@AfLK2 zFjP$!3-?JrxiHnE1wOK-#qyVi(ez>M8-bqXdc@Y5l_zhTjz6ot`@L|= zQzOSsx!X*AzBzl|L+Ne(SVc0w&l?wg>{7)1-^{kHSfve;xDhe^bJl3F+qWLP7jL%I zoSGbFR%ZH9K3*S3516^@y|Q;SU6+5=4Ya(XZUg1_9?by+$BJxg?&VBEB|GO)*nX~V zMfKIx^r6h2l0o`jlY8mrrB1&A6bvolxQTLjN@OtLZxb}{jo$a#7zjB%Kloz0iF0rZ z$JKvwMS1H{Z!#BySeW*|ygkvj@;F-gEN;%+^~m1AuxQIWqop3_MR~+CpPPbX*N^sO zH23t7eByU!Wy+mJ{{l9DZh=S{1>9YX1I!TCw%l%cz8>0?A~1E>Sp`9)3vTg<-q_Om z^)~k9Wdwk^M_Y)&hhd>o;h6m=cEDoR{=w=+gtcN|H*d8CsLyhX-C z-&6c~e&%moB_#(vHk!;7t20jQX$C}d%>$Ot0e<00zCmk8QrocM+61L1cvz+Rvd1{% zXhxoSoAIj}zM7iPmYIE-R8`Fbyh1_W zZrtN3VzJyBxoCsxMHHcE0329}fp4q8rDOIp&z?Q2p~-CC#p7eI@Gost%M_{*44%m= z^MODpkdTn(uYBI@4V&2S7S>MadFmqWWAVp#q7x+r;xqNM)?5`6!m7Q!n+mM|ojNR! zWD?s4XoWI%#p4fIQ!SN@$|dyGE|Grbd;Cg=H#7!OU`NYiqvXp|3V}ZYS*w63)bVmiCug`vU-oJnJeF zUXu+m6yx(=#$WC6I9udmG+GAzR?=37DCBz;)&idZ=F13?5N!dl8h0v9y*kAds#3K* z@Y)8Cc2z2iY=v#*D9@i;KHZP53r5~6U+|~;&Ke2lW=wCy;hU>Xu~jG#Pfh(%C2c6M z()R8YWuc<_K#G{y^gf1vT7E#dDD?UnJ@S|xk(KT4*t9)K{QLT!GM>UUcX>F^78i93 z74`Kq)W3dRJx|ZfEZ^GRwnjlg(FTKC!5NvE222XTQ2@(3i67kt-%UhQ2>*%|&#y9Q zq0&W7DX8>+0#{X6`^VnjT^&c4mmimt#$tY>s^0%b^)m+Zo1-4l4U{hPx#7+LbK%Kw zjx%<_POPsbOBSGuaUN)XArl6_&EKF20(hv~o$&5YjbLJ!MqwC$`RO>AqQ_!`6Z>JO zlig*{`Y>NM4KD_hU+-^IM^%N9!A)XSkoc7^US?VI0%97iST*eS+lM~Td867)xw!~7 zZNcs-Ac}E%Qp8ZWQuc$1ao^|EW)P(ZYUeWlr=%%RQP)DX{3q>D1G_C(@*HLN4WoOd z1PjJ+G*C$?vZ8+@YM??l-uy(i2*%Vyn&x7d)W!SSEspxX#vaVJ!ZH=PjkJ*Qi23=AV3UBM=t z^yjON=18EvcjOM!LT-lf`Vwo&nj+1D(bn%2Gp4$t#le_=+_sgfTX}sr0IsY=&@oI6 zO`(#SHU8JHao?6x5NK5F0`HD*_}%+WhNwebIjMf4sN7xn{ zg{AFkcvH44x99q7^U~tX+^(#pCU3qHQDpyk~lZaCZOTA0pg8S=r+gQ|(cP zCM`c8R*o9q!vc#-URLB3%FOhZy>t3#`P1aAEK)D@5Up76bFH;$d{MK@U;UjV9c23j z>(AB2f7D;XuqAIv_qb1xd(;aNPw(-^8C>Z=G-fn$aq+*BVg``K(haZu-Oo%UFmRZK z;CSk=#W-WY94h&iITA|sU#hnlV_BD(hSPFT$BtyLMWmAUd^-&BJl~fBY)Qb8Q_H~1 z<3zO)tgEb^vty=F$~+5}YP$ruGLg}}DSNI=+Ixqj)4lr*9yfXb9o^`sNg08(_~Y~5Xh8cD zw?+3`O?_mxPa?aBMi{a7tX+E_MrCv?s(98BABTK5{Yd)9bpKQ?gPdEch8le)0FvT4 z1gTN+v}I|%ipVMoPnA-6WzS7b_-Nh2YjFuS$!10lx%Y>%a`dc=;A?Q)bn6W@5X1>ZaD z-fEXVQEmf+Y34hH=#8lYYEq5ktiMaC?l4l^^j{qfzhCf{&&!1f32m&cTSlKTmUz#R zYLs;4a>mD#f;-$V@ksqcJ4?BPrc$Y;M4Z11`JA`sSOX%UMR^Hq`@3WvL3e7t2YUU; zROBC+o!Zab+Xc$PAsDd`CV?W!lS?~T=!1@>yN!?YWc2&Nzpu3)hz+YK>)f7K)W?iS$6M?at}ZBYggE++O_~!2+H$ zpgvyP38dOT<504*NpFD68;PoPwo>pgH`5)+lDYWE^EAre4$r-oJznl2|3Tpt*X=h1 z3b$Vkd(+>_^91OC>X<#RJQ^x1pAgEW&iLZl&Gb4otc$As-2n7n)tz={0mK9Eic%wJ zQRZ zQAi`g!m?bSUWO_x=fw2s@wR)Rvp-kui5+6POG)=C*=o!1?=xlNdiH}#3Vcponk zLCb5TT~eYynSGLM*)EV?Q?iwTfR48st}2l2wo%DrKNZNLL2M$`&n8y%PeI#Nw99XB zamAH8-J}80RJUGY--lP-z*qYCZ|eOYR0!-u=)U^CGT6^nyW>3@#}N=Fz;ji6hD0>q zM2H+B<}`JK{>?F2f}+)xWc*(dt4#(t>5rO(I$}03@_u5l*hQ#r(53NX0p*frZR<<( zW?>l|oK(&q&agR4gq?dy4?a-MN8>_x`Q>dml$b21?!+m=YE&rvrAA%8e*I;s{;I6I zejMO1~p>eW)?>cgB1>jLjo3N4Ft9w%whh8Wn zRcKbR6OnQlZGLq(6KoE`)oF7dEHs~g(&5%%gEX!&R21hJtrbXufnk9U0JAxxp~P>d zqqpj%Pd`IFZmqk3bPwynVpYobyk|$P5bCU$c+>4fw}l2EXX9nnDe|Wju*pyLCuJ@U z8!-H!GE}KE2$(;|QsZLhbf(65O(;frFN+qgS5jGhtvlmQY6W|tCnTYC?da~vMC}W+ zP<_d^sWVsHlco#RnZoObEa5h0Ln(IL4$s6`bw2Mzv1mOmDK7f0_}xPV z!}8L6_0R}j%Aw90i-!8Anrm{?*F(spVFmHgh2Tu_IXb5+dkJwRT6aD+UcWn*5M>$u zgkKUxwZF|f&)tdsgrc0t4xTW)v?Uksi@+t9*t*o}u%y~&Nc{KulBzxyMv;;FaL z`CQb3TW+g8doyn=wca~E=D#Lf?gF5or>WnIE3lopVs^aHr>+~}%2xnVC$ZX@y#uTMbbgtg7yU*H|>EYKYwZtw!*kDNFGU? zVld&;PXe~_J(^62T`^C*^62J}WE*1)%WcUgqJTNI5~0c>*d`8R@n}cO@0<6C0Zb#qMs;d2X;=YgdSW4Xvl2(2;s_{nBQzcP>>buSKEsy0ZWdZ>9}pnW;Fy#wEYIdn=cl~F zP6qa&^w3Cw-cSPQeV+MP?E}k!yi~Tv%)%+o(g5MZyvuyK01l5w-^xsS$n^VaCsVY+ zv6DtiT>5)^2_UAu0`OZ#mh zuQgC{akedgWa?Ac2|U?(*Z zxRqnJRveW5cyeOSiz*1XsbodT%p zO73$PfXfEU+e_67@p6z&m1kONykhl`TP_?$r=a|sKv_@GU7r8xV_kBhXzJ*TE9pKnwSy(ylKrXTxj zaX74RDED0B?Y~OJ>V4Y;z@zt^$2XPl_3kY^Vtkk!9IN3h05bGbY{Ydj08kg_mAg;HkmlM*sn7^vc`hPt8I)euD0#i&m zmC0EuSPtAG->gP@8_9jc@ZZEU`5#yp(fr6^cwsSg?{SWism5h6S+7~F&tc9m02-^e zf981_n;&3e%tF(1T0aR%*KEQIsZN_&V4L-dP!vnT`Y_Rf|DIfTttMUVUuQkdS3eko zF--bGxd4DV9ega%16eLB)<*pp)(I#|E6z6v;edpc;?dKQeVj?OOa=Vl{jz!YVhHGD zf0FM1otxiD7y3sNbl8L@Q*;FMY?-!F!VU4n{}pujC?Ogu#dGviwhBgD;##$PI9b}5 zUrSLmG(XLWZ{^Z|OpNegF=a+imDUbh^AT&54!C;2Gedj5r29rsfwm z{%*72$afbaZ)stZZEZIj(tP#L+X1BR9bLA9>0M!J37w*x9G*1B3{ASA+Z$>^4}kKu z-K69GF9-U+9`XN0`p@ZDZF+Rf%*K|VeDLw`& zf_440@XN}ZYu26TZ#=^!f>TL6Jg#gOVhelAEOeZCHzWm@!!Pw*g|n2Smf%EL25lX} z+=c-eb^cG;pfB$;Xx=@LnV}Sd_+1NL1;ll}NjOx@Yi4g)J}cf(pDbT7{Bd=R^G{L= zlxrNPPN_g|jB`A_Zk4^>d`}G<(mr*s%xG?TCM`}Q#Eg(NJI#npE}w8WO1~DM6W)@B$JpyA?+-2Yt|>`W^K|kLpze;s>au1 zcg0wUsQLR7am9D%2DE+g_TDtxa^pU}zgw-#H`gVUDVGJ~S}5jp8+*J^nVNtw?#Q@O zWL7AbRK6v;)?kz0h!;3MRi91GqjmUKJ|Pplw~Gwv1?nU3L`2>o@3bL3R$gWvj54fS zO3<>R;+_UawdG{+H=qV}DA3 zrvp69vreUgwu%Y4BT-c^P0cBuXVE`BCx*uWWu+Uw$s2M#N%$GcY{KuT!~vLe!Vakk zb;FJ^2l0}P2w|sM(=H=*NXsWlK9ANF;=s)D?$JBrb4c(_-<;oxB*+=_OHIdg5r6 z>!h*plD(U-V?(kpNh?8<_P2Ts(o2iXjV~YHlBZlF?Ows5lrPoP#>b>s8Q-raOe+{o z!4K4Aal;0OE{^xELF!WlGiwK};#l?zVc3V?7+9tAC8G?|qG)9($j9k) zX#l8{|NJQnYcwDC=RyVunKp;j#I>9uY{qYnU5&c{Mc&qby!wp_^rZn5y_e`Ko3XLc?d2I4 z|2jtHHPO?)4@i2D#`xHO>HASYOQ2ILQxU#d2Bjgl4i2pmIrJrS#41b=8(pY>ZJrZA zYDYNtnm^{^_*@G2)jr+73i9htsrxx;oUj$SIO0!!1!|4A&7%oHSvxZQ6$HwH)4=1(dsC(*hqFrC7ivc{zkO$dV z*E7gbzB2yj1_DjygcW9orX>YES#4IEY*{^=@sUF@j@3XhBi_^t{;Npu@F1}#*=Q5q z)O|S}59sS^FN2m-$au}0XUL;hQin@RfNsNeaMG67#d65s(`xUT$bBd0=Og>RDr&3S zo4Q&A@!78Dt=Kt#45`LntxT8Ow9?ud9a#vpx}i=3Fg! zC@-&#;Kmsw2)R;Wn`KhXuW_w}@sl=O1gFCRO{~8q?fi%%BWLT`?yJmN7iI&FEm%sONWPu@mHc@Uj$tKHhfM41z+5&tAK zuO`;0ty%W=z4G6HI5W}tJ~@F<&w+&;YESk)*27%PD;2rwBG${K(5h?1Q&GG{Z5jz_ ze!vQpjgirV3AK5fl%8D+aGf|%IHUdCp4BMoQDr#WrR5B^u zX9l@q)u8<39ubXn@~|zhA#6NX?_luoqESlZK#kP!Z@NB>6vle!>mWGqIvexjU3Fr7 zVTUD@DzR~3w0zk$2c)*IoO#YByUjxyotJxue&c_6BqSVGY`1#i;GrV*HuxPmoC^Kj z+;{BP_;|Kd5?{8|ls@>P^hBM7wXC9{ev!_jrjLnw#bAv7ii)}A^NaUy(4tF7?%X?bXXeh#^E{s?MoMwji}O3v z&=e!H%vR3E)v@8vP3x(0p~aX1Sq;6fA&}m!h(|ul&M_P?_Nh=sL^5?GJKSinQLY3r zY|pr>QUwX>n?Zu|TlAKfhf0ixS*Rzi=lg1KU|6>(?^XTBFzxwec1d2&C#)s;jG>`P zPSQ27ACYU)x%vAfpBfZV#Ayn^wEJ5AJ|f5;c4_L);BXcYH}IHXvXD(IF35P&E*car zn+}H>+_=Fc>pTJuN5#@QGT)=;bZ@bVwCm>pt zmlvEF-auuBDX9JmEw9yHj|md7!H06`p6-6RpwygfE7*N?&HXcCT! z@X}h7Wz%i4p<9~ZtYF|Fdt%6$T(OnT!rQ>2`aEvnqb;>Ny+X2dchSXSO_pHlyYmnd z(wiCFVN%iGldfu2Et)5+;w1y!Tq`=7R-^&nN!Ci#(o^N=pIpK)JHpmRyH(5om~bk8 zcl&W-Aa7Va@TT;N$EH*EF2&s|g*ZL4$F4rd`Q-hs8~MRpIe^2Qjg&{CY9Xc=D{yc+_Op!YJdoKiu z>2Vo#qr(7fqjIX^kh z{!O(s=*-?K@#)i3O9uDTX;pT7eEhDe^poJ=U_F=XG@m|AzPYr)d`k<$WPWWI?TWB4 zjr7loUD7F`lBnZ8r}T$z#g}cbZN+jd$o3Jwm3i69x8{F|-?|p#BMKoP*Y~Ed1yG=X_7}ZW~O6QHuV?CX?ei9kO(|H zt*&3Qt(yn)7~Hya+#AM~jNE*TBI4_h4{yOM7=cd-um2jl@lZ!!uP!iwNMUTkH>HNx zFK=hdUwEZQBPKczW#u4<0>E{=Ol?Np%*HK2Jx{zl=DFEuq`v1)-^<=}%driDXt>%g zLT$Hr2BRUz63tACGS@$|xrWZ0jjz9x_L)!>ciT~5tCA|Ve27~1Xkyn^$agtfKSXL1`A%AAv3m!ow;ggRHSeU?z3k!Z{7q)s8G&p-SG_%x%DO`*IBLVxxwf4?fzD-v9@hp z9xBL~U$n&$jT-Qbc@nDjBt{w)H|XvSuAC&b63Fc4&pUDK<_^U&-6f;=zXcmkOOrg` zA$z)r1rV>IM-m|658mraWr3QC4aZtyJqCVXzkXdGs28FAtHen|qgZKkqnv;3Y_#&T z&5m~sNjwy%cqes(>)F_5i0 z#^<&fF*8=WX9TEu7PpuE1d3^Q)uFqzI0n-8R@^$JDj=u-Ee{nUN6sWKl@l+ zeQ@Lt$}R8j7w&8KY(=`R3UGJql(`05cPFkNX?5m`CnUP~Q&sQk3Wn~w-|Ww}rE{Gu zp^iiKQS_5daoEbz6c;-KS8gnpe^a@oCgf4U-u~QuxxP9xq8_d0D8alkVY*He5-cVh z0eN~p8CX8W5BAv0DnNY9nhFHt$_o(^*S1yZB25K1J>O;lOs~#UU`V}wEq22m{Fu*S z4x|*B3i0!+U@qosLJfNEXNktz@@fgw;7wQ8+hb)))|<9yl?k!s@vHT?ltrbZ^|Fp# z){UT0W-kee%HrjXXRNK1rFEI)K8qCl`yZ6om*_PLO=;}5ypP{TcEu9}{8Gv4g1x1r zadi<=CVy@!{;RQ}kjiwNZbhM0d&;%)75DMMwVhF=FGblE4=n;{-HWd&M934**DxBT^(*rFy< z%Ia$B63T>xJ^Zc%2xI-WrB6w4P-3d$r+G86E|8{|_+iB0*5<;n!k}}C2y3O2IB66p zSKr0Y)3kA#(IPI!T(I^2;Bs+0(g%|H+#yJzFC#-h$9qxvFl$jw&vsOCQdX8-tr15` zVCG4w@Zll!L-MTm#*S}VZ87lS#)&f0Tz&>lZcmWk#YDAuIUf-kSgPg09OF$JP2kR) z;O#FgnOQioSo0&U2ZkW1`C0XXmqfS-v$TDwx88A~CJjHRk=sc}XT(KHF*a5oGXRz8bz9zM97qQM__D?N4F(MdmDPPEMih=d)R zS7`}`;u}F*d*EIjxm8A~EX1y^18-19=Y>l_M8vNEBTdV;-oakAUC^*mSlI-KusP>K zgDAm#KS-BfRPOospSdWiw&?7HjB6yeNCulv9e+60SrJ zbYgSlSzCQN=&06HSNqn1i#Tl<<8xO;dVHExUdbX(!J(kr7yBnqCXMf2^s>(PY8M;V zOyla_2*Q*DmLbYu-7raxs&HHsW4MEloycuICCWqj9AWs^W}jcJxnJakHwUiDLek4* zWKJLVt%nn698M4FczNIZ>?^bsc??W2++BMgMbT1Ez*$+b&{EGA)=*W~N;EOQ zr4f|qS%AvCmRIMWoYS|``Re~Z*So6rBoJ*uKu;~?hBu|~*PLTl(XU4%dM;bVMY9_c z)?}_;i->-Y6|v=GRu5@SbxLMd&6J@5sF=e+04;8_U`DpV@8Tjn$dd*P_Gdb+ KJ zFwpzr9EsF=9Lq}=)m@mg_%bZ6R`Rlv)`=lIPml3q)AhBMr`{(mdOa7`Lw9e@v2>sN z(-~GgURf8NE3B`zGVrRFrF+CF9Q-0upN7sLyDf=|H|Si00FsF5K-10Y63!O<9fd^f zQvlXKv;}`%>?_Mt2SB~V*mKVwWK`y$5tH=_B|1}p-TTAWgRLLF6V;0Fov`hL8s`s) zrJ!eP4&P$JR)#X6wb#xAK5gW@KW)kd5ywH&E#o;)BJqU=_$tE;TXl}Rq*S%9`Z9gm zKjY@dl;-)5)t&onvtSa2h(F8sv>R8=+B&(dMlRUfDcE$+Vf(q^k-O_?iMW>>($JKd zW5IT|$0`Bu+Pq{rdXZ=MLC=g0FkWq}zgYEmrvT|bL9r&0Z+Ccda%{eg7}IWCH%3Xc zTOP}6J@MGTsIgP&n;1u9kMYZ#f7*vwGnQ-*=VuVVjK-T2>=5=L%Y}I3bi$<7|;a-v&&W-LJdS;-;IbG5l@5KKZ=Ou1dl1JU#mOtHlwg(PI1tW1I#)54}(=AU1^rP-NzWzV7`Jsbv)3G=EVyOM0Cd?ZfqAFts zbWXaMx_5dK@84r|{W1SR=#R%EN|`ATm3+M!Q-k~TvzG@Sj?T)!?E+Wi6!O#i_b4bE z8ygB!6!0Z9uTlCVLtQZ{ky#TX{8O!VC*?wJe|?#vnm=Soa^FlpGA)?>}wVWBO|;ugX0aONu=NsH$s ztG%y2MCY0~nGZ?+#2>5jw0x}Vc9`Y+9z{EZSVIcF{pnBu)^NsFciR@+fKBONb{z!N z;Ok0DDdOI3zt*A`=o}VxUb+avgw3Vb+GN)ZR6ATHV1g*ABgyH4{m#bQ*Fe)faiVb& zRQue{4yr_<ttSc_EQg@z&sH>~bq}6!vuv(TE6}h?2{q0%wN;^|i1Cpz+B@_1NnFj~ZAE^x}6T*q}%0z5>(dKNz)+N_YKu4%`g zb$31_;A*duLI%X_kvtMA8NIelNF4h{idD;*7~fOl+4_)!_N`nxk9DD!h-Z7^RT+V~ zY{G&@%kP}%(H){f;CeffTS~abKklInJN_TPU@}6*qbb`3SbcvfhHQo1WPm1&fOKm) z z{$0?l@LRyv*(-2?$v`<#NTU5o*PlP6Ae(vCW)a7;AHc+*ssfl$fU5;oo(Hkzfv1Hu zVIX3EdTuLZwnD#8SK;wm1yFy>K!1PU6$8lKTBiz*Z{5({te^1j67bhpg4~8e43nB% zv9hINIv=l{r4cVbgYu{KGi`m+d48hZIOiJl*ZpWP+nN8i1^FrYg5GpHE?$+3~9+@wfkJ4r`>(@#}sXH93|)$0Jus$I6M z3r+XP!H+-m=4NIxtjHn6&5bNwKV1`^7~8}@4gc!T*s;r|A30(1Q8|8SQ0O*hB|$-V z6`sMQ>2NmQZmo&px9a!tvg|ubyV{qZJ(--p{q2e6NX3p6Q_TQKsfd`7 z8Q1kdtS|a%V`r!A!YsAoH8G0nNes@NfZ>~gLT{k=bR6KwO^j8lFqA)N~4En*JdVSj_4{-{k# z>6LlJTW%+=vy}t!8mPT6{#HD^rPURB->;N7mijeckpKluMIx;(YEQ3_@vNgGHXEg7 z_3G4bh8qNG>bd~ifyI`Gx0ssn?k~On{o0>64`kRlIy$PzLh`0dw7D!hx8MCE;5ZWe z$lnwDg!O-D)xQMY|2cRvv5yIwlL$Dy_9dnsqoXGYmZfl^t4>}=<|!pS`X)&`TRbfF zRCxe}8ZpW6#wOWyz(u#-uGAre7IE>CT%+BBD)58wyJWeBJ5#Uvj`!0;{ZdaINt5>c zo&*sW>@1t?*a&Q$lVv&Yj>?homSKx+`f*)OL*$g zr!=7LCWtY*oi*pZ39d!8rmg31Wvg6{52iYHn>g!6i>bEkgL3kN4vz`zd7y(|c<9f) z?3aann66cH*GT$|Ig``au4t2d^!+wuS-ri(I;X8BQ3J*@+fvy&uZC8M@Yj=Mj*&m} zzj7o4&BXRaI1SWv3rxSwMz$JbQwmjwI1@+tH25O-v?kJtt97 z$au>oOd~u8_4V-JGk3-;x7s8w`)0VdGn1eo>ibs_wL<VsbBd$E%cy=Ui?_kr@_DWqWK%ul zBF~t+Ks6mWxY%h&c~NG*Fha$XS9<#B(5oR?sHAqy=@uLliQHj*T zRFJ-XNY^!|Pvb7E9Sd z8lldJ3NAMWz_Y_fFj2lq!f$q*$>Y=W?yNb>n|`}`0$;vl$@=RT z&gX;|R)`8w{&ccc*hgxGyiQxcy?C)G-`3Al(7pe7=O%jxP%f(fWj*lIs6jeqH z`q;6Otd|zDw$rz~r?);HQl|;I#@p&{K7DEt0j`a8W~&?)X+%cX{ia-r)I~O10G%JE z!ezNu^ISd!)UlFfUJB)NwYskM*fujVt~2I5di5%+_2d2p_OY;c^!TBh|7fN(&F(GJ zWvbDDkn0x#c^HZf;kLPQaTD%!2rdGoBqcHRR&eHrCdODi6WP!TvGG5WG^F%a0J)@4Tc=%vedC!3@k>_Uc) zjF{r$jFu9YNyU7?=iA<~@ztwW0S1Xun~rB5%tQoTguHT)WoSFk~4Y}2d}P=-RkU@OOJwT zQ{A(ERor)Q2t0mV;db`?ZRmcQ{HIrAc5`(ESzvjCQ7V!5-%p-5txUzm2XUC>r;ACj zRx1kW<19OBdhgGkVK}qZ7HI;Zae<_tw#0pHv*ZP91#C0qtI?fTAj0%$t5x+kI^`Wa z-VuKL7T6a$ZWDKF7HYZQg;H76SM=_BnwKQ${DvhT1R%S@Fq{7}A^!!|B2akA1oh(* z^u0di7tis$`@Z#?50e?;@EJUujhTcz5R!28A-U@uO;68*N8G|Dmjp~Vd6wv#RjzRb z1l(aPQnd{&D7?vav4*v16>d9%Iu*dm|8D}E_Qic<*!|rDQ={_p>f}skv0e5aHRyO6 z3Z%*D9K94Wau(A`j*}nYo?_Z%%WPM8Debfm{_^DuA3j$MckzrR`JJF0C@fBe@tvSR zV#%^2UH~#&8ihhA_8XN4JjwR)Z39LCOf|=n!xSsqksm-2ChyP|4}P>4KI7-cje;ao z*S|Z6Spm=jW!a^-+$li}KP>s_LK{>I9{`7$=%5x(f0ooyqSM8ki|qp91l;3T++~dS z@KH*DmpJ#^U;zl~(5`&3$oUZjqc<&twTb~CNZ?u;zyCf&tg&+NDs8mw57Q{gtOSo-2()IH!0 zw&c9OwfE?4|B?g=RG!gE@eZk_im3*P4QGFBBYjzb#Hg9GZP7zqhQGoV&~IFFt?G}~ z5$YP<4;*>fa+d}g>zfK012J&8U;FVFg-8lCJw35+|M)-T-3K1xV~^cec8q)q9Vz5& z(v>)RgfK>H=Wfw#aS<4x4m=~x6)&(FE_R+dlBE@l!hj*mN*hRE63*;`s$(@&8WFfS1br?s^@ zTmTDyAu6EtdfyD|I5=I_0{7cnaTBf2U~Tc2YST)F&F)v2W* zwD8@%`6f1WbdB+YaM@3Jnm5EgO%`a>*oQse*FRfLpMSQFh^||e2rggh=wlfrSk<9{ z9BA%M?|vX#y?AOLB6T`bfia$A4Bg^|itdwBc|&PW71OulEHmF--{cae4}BgOt}pl4 zv;~nbENG|kyAxN>gce5z#;Z!dq3<=WUpOh#Ap)9$iHX@iHq>WTy#a$M5V^Z!vw5AK zo>uC--6A3Wg;oM$i73jNBd=h=WZQeU*I`wk!`lGa+zd)hWwC?7_Qtd4ZA{F~zQ-mj z_$j}5GRLe|4i3_(waQ`so*IV{kx!wETdI!0iO!mv&R}qU-^@tBh*96V*M?YyNrr)| zqFwt)Sf#sWeqAKG`b4Y;h_d?EE_CLZ4j4k+_OX1fYl3t$+-}9=?@YEy=GssP2QA~< zPuuM=E{6BBXgZ5azQT>|zO!a-%DQ5NhH@It2kEpSrF{RuF@AVhIQaWv-+z4;L~Yuc#QwvX`Gi^5 zfhY)!yEk5})U$%-zh>3Y*koL%^=XVxaj=k(vx>7~v6QhWy`_ahAyaa=19UU#JdZ~htSVc?e6WC6~)ARagsYa29x3lib z6K;$7;J+99Dy1pZK%h>F7{Oi`(p#F}JG$nK)Wp;*HYqM@#^^)7<^=gU;nvoVqznZ= zvnS{wA>8(>`1Xppm{n7#7AigO*P1eZrxG=3mUk73kpr{5ze3N0dT;k7OKEHvR@4e* zyJ(UJD2_IN^7!o1OsU@OaWMSNPEXnLHuNPe910#`tROyhiIF7KihK%l$iC7WXfY4k zpBNl^FH7zIoOpNU^73zu^%>)f|HcJS`oqNT=!-O_)OWM}mL;wzrC3#|DBQg(danUB zr9NCv?l09X_dG^>bEM1zwL`-&{R2po^zA5Vg`M4=*mp0#+76Vxk|Zv7Hk^7>%vllv{a+n{JzE z)8|*6Gd<|~C(k4`Ka|%NCm2?$j*K`AxEzdaO--+*_rkX4e)m|RX_73z(RdJ@c^3d# z5<=|Pe`!Cy-5h0uu*Y2twlnF;k)JrYXlQQYSg()UBHlt309$Skg}!E=W)G{dI?yQO zreQ^lK>ET`j{Bm;7yE>0>vvDqe;FTo4xGr>4Cq_E%Tx4zp2^qqU1~`t z-$5c>R7ku*@L?N`a%_jzEvn#njLpS1;i^7%*ucoH_%;CPHBqe>4z`sD_k&q zFzIt!{7cJb@wUB<1S07;P*&92R(^Jr*7GrVBzK_|S+P)6<7pn}7Dz`jm1z4|bUIU% zSRQTtvx8bG(0xw+H?RPCG^6oZ#c#vNA^f8R0v6|C^SC-y$E;#|KWA| z=0&Q%(c-Q8xs5h~cc5{bwsP94l#Hf^V^G7kVAIPeNjdtsL(2zUAR=ic2;gQmypM;6 zjHe` z=MLqdnCK8KG>biIsd^@SA)pd-i`tPbUtJ4jz%2n{&{tWd?@`M-* zY9s~=poq6SxVU)cO&B&^c?6GTdVk}&QLymTeoO4P^1@%8oRFY8Ei3D@mpk->&6fMi zsKBbEkjEYpoGNZr4g)ISJ1?3$*Hp)MX3~vNy%kE)7xyP$iEkSa=6)%F6EPdC$2r}9 z>n0Ny9D<*o-^Fgm;wSQV&AtEA&;#6bi918HLG=o@o$QF`{4>Jd}Lw9+TKKdh}B zcG%gnAc8tC9F(xhD%8F{D>_Q!ziu!&xve+(G#Srr(!wV!e%tSk9!4dLr&-bkN%`jD z;F@xiB?ACm-8W;tf(SS>zzGHhuGDPg04M1J7aL*sIL5~XOy0-Xp_I%! zR}FvHKshj;<3t=eG@(DST6&TCV_dY&2Q(A_ z)70gQ#ewwc+UiwSF8Fa`qg7vY>qBW__h*4*gf8U*EPt~ezQFAQhCqBJb#+%M8LyCS zoTpFKl0w^xfC^anH_yof7nFhU3=deZ`pu7N;9KJwY&&24aQ#48U7hmEMAUWQ^quYB zlD(k)y0~2+L#@kF99PXboheswk=MCT-PAb&spozk!r64NZPz7KBX5$vWWLM|`zfQU zl$c)G!Rhx>=UqRWm8ShrzCiUn{b0BF*}=|R4NIIqM)(+krB zNl6V6U?lDM1McaJ1z}Ui$~T~3!&-B$zfltug6W-=Q>2S-el73F0_d9YwdzgV>!MJu zi)8d9+0MFp`Q+EUPFr%=6w}))qMfyMnpjGgh6)W%;F~H7!K_Ol^V1sx$o9;a0%~&< zylO{=0MN>3cB3ucNQBECn%dbFJuO#^vxJ#foo#nkk1W%$3>^#WD3igx7i!6x)i3?_ zdjWba=YYjG^z@Srj+-n3=8c{W#*BXE53BolsNMeEx$bbX0A|38&92IYs;`*1edV(& zD1-%|h^mN}*X^~0M98NdC!5in_BXERU@)tNR{axWk@P>E`hpel?2-Sv8ifXT23b}{#dV!=Qzcv(KJOx*WNkvPRHG2h0j@Z>*=obiu`)omx$b5 z8nr|1nn=B?^h<`l?-7C7@ZpZn$L2Seu1=354+tKVQx8k1W8`Yk(0BQJ5l)l12V%bU zZ-o_N_fd;UKRu)1mJ-x3Tn4vP?X=xRv6em24jr?+D1R|`*+v|cpx{n-!O|_E5Bo0f zPw7-}?jTY93%5u(D03#1Oa)LI2$?cd$uPaAa*viOb}Dr~g0d$YRXngNZ_j4(^Ogb_q~XydXEf1ny&vL&hx>@2%>JUGVooV?hhz|stOv% z6q(HBO6Z&y4XM3PH2@k+n(X=Qc1=gXy@kX9d%@+_BMs#9kijrh!6cVSVM&8g*o43| z)P|G9oxi_-*f}l2hTr20sJ-e!cR_$y%&W@r?A#=7Bjq1;$0_V#xn}tHa*d2+o7jYG zbw)Mt^H|Tyu}%C31ZM#Qujn`W{}EpQm-gg8z{LY?{Eu-^tiDq}J+RY}PN|Bj*z)>A zDD8Iib~Ok0qs5C~XJMlAyFbunM_EhGCFAScDiuYTy*0mD`-ZnMA5wyBb%GkzUIBN` zKzZJO&=5jl_Z5hV67_$gr5xbh>^gP2KU+$&)_zh`w+sYSLwm)Cm~fio^*!`Q*}K`Z zwvm&bn>`s`S~DIH#VH8>hDfO);6OS2H2V2!k+iB0ppB-!BJNx(%~#oTbUG*av|%D* zWBIGQHp?340qw=bQ@7id(%X6;Op==0dQvId1FF2P>lL7D9!SgOmVJlUf|-Hh80$v{ z7y%tmW?o)Q$SrIF6rFR}lgVbaDuh+H4)1TLs?N~O(7vlFI7#c|n$b)2mb*6PBFlQN z?3?eEG)>tBUDJZm#N9r! z>Zg^#x0zLvy8Y5tk^6Z91Yu)GWOl)jD7`VN)2g{AP8Cac7yY=_0)ic- zR6);4hi8O2bl(y_e(qLMJo3l%(Xvr&+o_n|9Ev9L)}qFSXfOlkWf4!WRdrmFc}~wd zhVqApQuitxm_2Va;xu~_TGh!u*DloFqtxErJX*CSTZbqo*x(9d9Jx&klh13`J|k{! zwF!{LV*A)whH!QOg1dBvc^k|OwhBC__rG~`be|x@tJ?q{W3A%tY1i@03~JVs4>cQ_ zsZHCFuTH-+V2T`}e;AevUy6$&dW<$C5f_GlcQE#ophI~;kg2umbOjI~QcM~rzHLzxu0Y5=I)w{_21Zpp;nkz#omg$|eF(pX=dQCV5(^j+n%SS-s^OP|- z3PC)MdJIi-mu7pr6)sXfAxAy-3+;wK!{(k5&kkKy^Soyve6oRsm6GKM|%_OhuvZ`Va@IbTmsuXL6i zzn23){gC{>xN}RrbwUnq4Cl??uDuJH>4Q9!y!lt8Q>uE6rncZ~5{A$FnF%0F@oDp-Byk&>=6a;08AggY zZM%8jHZONFUa0u| zSEal8mT{&vLAb}yiWh6A-qT&2+gy9TKM`9?9{cAu3IfoYhyOU{eP5;-^5(8`>1t_fsfr^r9`NXPZ+=^kD6%XRl=3Cut8yyJ7Ck(A)^iDL-to(jsYc{r;>ESp2k+=<% zxgP4S*YJMt=B47fFS#u2S-!wytr{CP&19z`f3#JWitzpUWe~T1z=A zL&L^CuqTwQj(v1*pO2DvRb-^*iimQFuJ1gf^(=jVqn5_tbhRX0F6E3S&cI7k@VRV0 z>CK^_+*&KTeq^9r6e8nZmmrsC-PCB4z0bzUiF*Y`uJ7|g%gX=Gw6Q&J>OkLdf^@Lk z4C<>>1=ovIq%9Y|LAMWX@2htfH93uhuhuxOW*I7yd3p-i7HeF#ce_D1f9JJtHr!dQ z7b_gFR4e`f;V<9tni~90yKeJ3`8it zkn@wGQGJ%`OmCj5VbbUeyEtM}w^fM)t9k?1kYew|f zZdtnOeje!lH6M9Zg1W|hXF`(RSFc97cxa}U`?MNUU0=ArIwgHp9a4Vqc0r2Hb@vDy z1+)iN);4d$Um(DnZ(QEx(g1cbP;+tvFrAEfoDW1Iz>A7J`{}I=}io_~hL~x{dG_RdI!l3)RF1LvyU|A#b z^fN~lCkn;}>w}@%t)zi9iQS<3RIDKS_K)+&_GzajkeyvZf5=*4to;yq@r!>5V6AO; zu5l_r5FO*1=%WxvceWJ^k-tFziTqleRfHL`Gc1#zR5|tV-~TKfP}e`D`TbAMU~UL- z{_o%Kk^qqn#+w_I=lTSfRm7zqGU~~(qTCrxE0JG2p1Ns49+9DlB)5LUfS36Hu@mot zskfY6+n|8&jWG37X4>eliA@+LH&+>Iu9oB~8wd?D)z$2iQrx-b`VuIllAK^4-}+)i zyQFB8Bmcb3yxS1<(<6?3MiO`V@-(YV3YCUSb)m&QW%BI?Wv(OV##R- z4?>?+#LT-{U*IZ0DUe>~WLZ9Q)h)aB!u@bE<%lC}@VDh8((*NZ>*y}KQ11_4CX^N~ zTN=fesfjYCofe0`TCpsb0=^;#w#%kWIQdKK#Xn=Y9r0<6JI=&N(7S&6=-%y6-`a0t0liRi@g7%^ZqG#yQu2ukVOvmvZ+BKaYhrwjkWD z-HT?(UCc%%nM`4iT?O2QTr@BV`(DCzfsRf(3m@q@FlM$FU3?Kh_2GjK*#F`T?myWg zsovM~zRT=yNQ;IclKty#oT)u-;}$4s+vjcKEHVT)nfuhR@1Wy7Cd<*Bz8A;d4Foxs5ufn9L#mQB=9uDN+tQ9drgFUbn-qsGr}@mAy$G*`_AP5v(>F zAhZ|0(BOdzFcEFgB?_@Wv)(4C%Y6 zUGGIoF6atr8R^xe&DgrLtwc2PDSYnyuu`*qH%}E={$Xq>SHX`&5K5okj1y-Wc-f|S zB2YEy=J1*!Q&I$c4qr^zf)FT;(HLL1E2Gt%e~_fb9OoJDXCc@<_QBmXxL9l)gVn&m zA3kg`Vw!Kx#px)0(pQYZR0voFqR!N@A-`yf>SA~JGmLCE!b(y1Z2Z2>wSz-{ZE=`S z(cDe7^5n-L3whR2GF$k*hso2QcNB!Nb7QjP5GOT{)|<1oTD0ohfT3~cO{JBHX0U}G z_-HP*bU+t?sZB3~ic(1LW@3a^4q&o+rr;Kls$A6qmEbD z5(5|8qj8us$vaJSG8e0m7z^d9^<6Z(lt@wTy~Wl$ky{apfF1%VtG?bXiC7m)wX?2} z-i0@}Ry^^8vfbxW~F9HX+iR~$;HNdBbOn4wVk?6%{$%GjvU3h&UPwqWsd1- zfW3j|mllX%+_(Yl36CE5MAH8}Z|Y{%mi?BkE+V36$C?2|lC-bD019AD)vzo#|As7( zyDPtgyXIfv))elZuUd(OO<24=%h!Vdd$oo61SG9ima2lOA9ef*T6^^Q7(v~zG;Z@2iNF5MY>V9sz|SIwD6Z!<`A4a#r8NEUORi0rA&-u%V+Jo|TL^2=B9FDrKJSBlDnDk>^k!uQT?f3MwvQzgROuJf4l z!|)lm4c|k1)y8%>7e%DtpepXNtk&;m%|Pg%6zL>3VJ(}8@^{p!`q{Ecc0^^x=LV+w zNrETT?f2mr?f#nH_wDyWP8*K8E3n0bQeBOyMr(uozHcbLcQ@$z%^tyVR8HFRj>Vfi0%adfw#!l6*GAAkHZfbbE#y z&gf_K?zHkIoFmzRC8OS2p3k2?-_mkP?^hd}M(B6VFuaq={OBgn0+PxeMH7@!I-A!0 zO}+fHUv15TOlDlfvdlU6_B7e{dVF}&q~Avp>ZL6L(2yxz0?u-7VvbFjfzsA?BR_58p7UhvpBL6Zfa!}6R_a18)Y4m$4+p+GT#Dxu@&BHWeLW z^W|(ye00A(y=gElF%d-(o z+f{ejSv9M4qM6jp&eASV7GtBDF)2|};x2~mt(#0-`m=pw{W4u&V6AL={KQE4G>z?8 zM)V_RvJomv%=1PMsp?4_M9==F)Aei{)`Kcf3C}Y^EXirmbIsZK`m`ObtSEzQ1^Mzo zgL~sn3XDP#^QZj6vCU?P*sU~uprUfEdVBZTOaF}Z_{*!T&j7{ynug?0HP$fZE@N|V z4O-1$#A#?SgmtrD@~xB=6bOW51l>tR_RvSCk8S#|jr=il7Q$I=rTa0xJO|Y(Cll}W z8T(cae)Njjit>*b)y8}y#qB};=2!vas>iKzV)p~2ovF^T>2wlE-iJFK;w z71yPDvJ%Xb;fwTs-(yw#t00Tgf{!d$VlWPe<7JW1sy-Q*t^{cI;u(Dy2O z1gZ7Ep#QEAHQW}hNw;Sgnhad zi~*j`4VlyX`0??J7cbPtmIjvhf`qQOsg302qyl_F*klcXwlaFc*4y>($DUj z8wv)9##+yJC$=c}tBg6a*3z)epTtSNBV@A_=`4NVqruC8y^y5;#0AKC_Aza+&q&jP ztSL6$+49>$a_`1(LO-EcT{~Lr@8CUzoyicB?qEDpO@|DA$keXv$?3y|A%)?5e>Kr# z>iA8XD%ByeR0?vvttOIHvHwva*^5O#@$^7k@pkXC-_hLHIqLn6FCsWv-{avf9I@${ ziuKnRsLaFu&{;IV0#B{sD9QS`_2?@#m8gzCt116X1S_HeiCy2aawbPJn(Bw?E8)fTnnqIB}poI5qOQy86({W$}sj{i`Q4XC)4;C^N+k0pPIaFsv-` znb~5n)6LM*>g3I~4wX0{4aHcW3ImSRkAY2E0a$lu$vT9|`Kapd&CX#XkLmCI0L8Uw1xrENxhR z8lps~Kc=2BRCn2n$ZsTFA0x)3D)Vw7(FOza z9>LoTGvH7Se4UzZPT-QpeNegZeixH^wkFnWrt-C_RF!;8(Vq!G#+&*e9@O>cj+sY~ zP(;C9qBby+ip;ZM*tSHer)Pb-LvwcG=mo|2+Q??$h^O(M|EE#btx|S+0*7XjpeMNK z>&4IDXQR5Aj^2F?KaYC}7OTWFy&|5hX80U$Vk^M(Mwi#z9X#M1V2T?$`JcCfAt8H@wJB1he~66j~?sR z0uNib#0RBkcwPys&ELPH7>b7j{mJ^?0%{w_>bxon60BhQ`ttqp_3425&jqgCG|!zw z5w7OyYA&+!8`PuIc;DlHrj{i5t&Olj?^ek1br9I&&g8lUM^2|9I$-DO>~511 zb#JAam%hWMa0oGxc?J;2mjZj*JNM@=;${z@tOxOWRZORJCSIgMFM9p=X0m%oFLKrq z&mW%7)?SDcWskLM5L34UHOJtvoK*6~4zJO-Zv-bA>3ROLOI&be@foRhFk# zw}}DdwR~gcgXqNVrCG3xe`2Bt#!EyG`*evf>t^3=%sHhsV$NLDQ9sqLWw}-)d{lRj z(v3?|Xd?5zZ7oiE2>)8x5o4_F_KmTBa`z_Or}vMo{mJ64YxQPp9h2SRee977r)4j< zi06st%GfiyP}O!qnYVBof2Ke0I0%npPdl$0l!k54A$%InaMlA{UcOMT-V z-RP35k?v3c(v5EtRxZ@gxH@+mt0`({rm}C9D4a=tzCAfsCdx#fSDgH;klAk(ua=c| z?x0eg6d+EWF1$Q>@AU@V%HfRxEB!-7O|1cW26t-v`oi&zwsv zi!{r@%yyS}2`=1Y1qUN-zB3ywMzyBb?93;h>n0NO58G}bLx)X+bc29&4BaqD4L$UL#L&&q3`5?dexB#~eD8hk z{k>lIzq8M5&e`m<_S)~Y)_bqDL8dZu7zwo+i%Kb1xUBGX{c@1*uC!7RV0od&Gu@zT zZ$Oz7?^sg^&q^R&sfEd_h1Tq7%5D@YWgxD~sA@jiRRbCN)vY{8kFOgI#dx-7HOB_S zxyE|OxyHWw!J17LlHwyTH_lQkj2n`n0tzBmo&h8cd`QNP=74uDqVjOC9#9ZT{Vb5f3Y3L^~srG3wwG?*8pW!4b^}$utm41 zohQ}ZluZ+i-2Sv?TfaWhDi7DEudrK<$?);fDYi36^S8OVi5Suz(knmuY$BhTq>W&{ z@MB#&zOY2b-?kfdT=_XqA2)cN2Bc?6A>p#{WZfEFdy*@U(T*?yl*yc;hwDa2cs<+P zZUey10P6dmf{sZ0B2Y;-=1=R>UTFQlF3E?kr~JSdfeXIm_l}(UXNBk-S4e8N-Js+ z1N5F~QXxOcal2i#T*zF>qxQTn0A2c}k7bHK>S7m*z+iXwV)2V2xGpo3>))gxfCdXb}u^n-VjWIWTU0oA! z4xfM$7KsrgZ2n?c6Ql=Zqlex(=Hr%4^1Z6{u@eqs7sgoJ_3wK3-QH5$dQ(NMo02iSd=Nkt+7w~S)O7o zv7o2@i1$fc1C_^%wCS&ws7n)=OXK z`y>MOR@t>A(@C0YuV99%K~wb^c?gT4%RDW2Vu5u&-UtyoHV4v%ug!F9zaHrJrG}Xp zq?DyEv8Ck%3nlH#lY!!?SaZ?&;B98`{t$d?($RG!z(n|5R=-IMj8(2p*CYTIDd6=e zjyESH-B*T1J`%QJrpw{2Ql3t%VGEul7wV+zoPnOc*E|pfXT-KKq+_TTWM>_w1dCUIpVT{YsNR`z;;$ausY}b$=dc z^1h}B)2(}=J0M6aOzdva_nZZ!g|qW{?AWrE;<&r?hZ0r;Qarn%`o#;jE|dFhD3!c7 zPf*q#Sm7TxqYay8wc=gYZz+8-P*?_k=y;N5l-Ay<@S&xNaN^r>5*=tpt6e-aS=7yu z@D*yDr<-LQGo;hDYUBZJFd%s^@Z(007jE>nVku;!9k2Q0y}jC(Yo7OzW00RG-u~ol za;3AR1;G6{L7r>hXc6WBn?3A;)-TdBBMY~MytRo%O>6R;sz z1A*tQ?~uFuP;_h`a@H>dFI|Ur2J=WQ*t%rwG*+G#B>lP!Zs=K*I26QP{fxQJY2hPj z_$uNE7Ty(F7~kI)p4oBlVw>xoZ!w;k-*p|vE2cQd!!O!AICxlnqf98(jhqCQjM(i^ zO7{@IyN{MzZ20(t9NUjC$w@HHNYG2{D7jTMFUysJYnD{|Zh__VZp7!QTfBKDno%b0 z9BCvlJ^l}`VtV}O4X?%;qRmB#xMC!}tAArZ;Q0;mqC4Qx46u{Q^~L5bJvXa$i3F{* z_S);)b`u?_%6C#sHA}TZbAil29&eGU6wS_RUB^R(hW50Q13M)~IL(aNa2{aW9gso4dgw~L`yh-yv zw=U{=T0czLz1{#EHIiR-P8+I&=NnKRrCTUS=te_?N(k?3wiavq)r5CkM4?o&K-Y!% zSJ-&GCkd4f!027*{Y&8;eHn2X-Y44tkgyLX$dlun!>`qnr=8oJOT4<}= zY+7^Nxt!^DLW`aWVCWr4vEbh^^hJ1#P}uK_=s!j%walNm!QY0=VnFwoTx)}XbJq~K z_1d||Mp&+OfOj*Vq0fg5i>|92LEzy*a{#J~u+GK4=30OLT$Meva+SjYKO<-% z3(B=_I$dxARq<+?@FEu1QOG7-%C`2#8{eYhjabg%kzAnDlc_+h7H8&RL#RXsUe{A_ zoxld=Fs{Pr)6<>03UhaE1=EF9TJhe^-kL_U<=?hCceJPb*)FQ`7XykjUVohB=6h?L zMbNw6x7U$h4|Z_SBiZ^w__+GP<2E@;YrFlp`j|Luk1R%pKrbD0^xGIPJTFPR_$V2qI0xy*%C$$e1QZ>dxq@1HEobnLCedZ@vTI~CT&!@m-pTW=jrJX}%DGXsPQjLHc`#;we`cx}1bmK0 z(W&mtEdmp1U14&C(aD&kfG&Hg*-J7xmB^cq3W2Zl#wq*cMaEIUx0+;0C?E8QiRyBc z;YaCdl9VB)O-rNkXNgwHy{1beVs3?{R&_Lx72W*vZ;NNT;hBeB3VI28YH~qp+Oki9 z$0f8WF-7)A{6zkWA0%e?&&6Mfb5^F`PZSt^;U>t;V#sO!97C5AQ173Uu%|mB8e0@Q zvsejnoXJ-X@NQ&Ep*m;S!t_lC+?m$b=V(x)5On(9o0vAZJ{&V>h1AP0SB_iH&p&+W zu>I!kTd&KN3~3q%L?#z$qq>NDrXe2_8FRo1&yw9{w@`fV+1LZGijc#!jwc1$iZ+|P zxr5p`t@-&cT6^xPQ)!-1PSEaP8y&0<*KK3uG2pm;GuGiJDVl?eTE>ils)!i(=Tz{7 z<_Og68y87jTT3{7*2+VcWKIexht9L6X^|DW+%eo&YGYQZC%zXS9c~%*CUTfr()x^> z)|zvA*sEw`Uc@>q1z~=v8a$dgRP>?rPnb1|?E}WuH6~G~$3`DcX&(z`)Vwa37RfBu z>q0#&Rua)O_DPUW3Q|Dy2v$*S&1D1cOVhb=)x|4FIF6q^dOX}76YCOzT3gTDdD5$t zLX1-v6yc71XE~Pd%rEDfBpQ&WTzb*sG=hV?QJn2!%$8ch zxR}VizH?|=nrEU-XhcZcii>ih>o*=D+^5(+B-Uhg z)e?Cz!Omk=vIks=LIF%Uy`6Q=u3FsYf**K}WMN;WFgwghg!WQbCKe3Oj&8$ZK~%?|u>hm&PnpAlL`n-~>QRF~}=ZHg7N zD`pLhx$0s;zLKt#j85vnC@jLzjydXijWRm5AAL~vf!VYvX9^PhRkk#b^@Zlk5*C?Q zsYT2QUf0&pF}l;CXQ=Mg@uQl;NG%8^n!UJ-SKz-U&5{i$TN61(85w&mu6kLy9SPsq zxZhjHtx(ff!<%BK0fL${_gW{z`h{)PY{o>Iq8m3ks1J^;74 zOR|G4{U=X};J5UqsCfHi(qpgH7!yqwBo>A9WJP_J_S2dy-}?vm`O91hG;Pzu57Zs` zV%G)V-qvQhU=99e@vzU{ks?B1^WCT&y?ag^FQ0*8e4*UpL6V)KP(K%3G!)XK&B`ID zPZiE78TJUCP=a{}XM@)_E9EcPb*7t8nN z+V@$=KNShKOy7_J#xD89v_1RcByQI>em2;F-3(Q6OUHn$gTvDPCQyS9=7Kqm&p;AY zhBVSR(#VZ>#-{|k#Fn|B)IO5(oXRcH?`n}+!(5tSQZl&JWVI*crQZs$mHS}w+l2#F z^({BF3)yV@c9@l>Skx1ip;KF3HHmREB>v6+B{S)WAbSqxdZB|8mvc;)3w-O&lXUb{ zA=}%y4y~ZV?(q%c?$5*7jKg5c?a@ePoAJ8k8b@GpHJvVUS)Rt{g)3(>9CUEOm8aor z(V?C7lPw4Pmt6Zq#1^SI|7@~%>IHwZ*1pmH=B(Y7`RjZ7(~!phLj}l5>fli@ZA)EY zNqQ2VYYkd&80;}zFEx-tcRa4P=@Tw=4fd?ndlLzAr=!0$hPx56#;F}3a9L@GCbX3p*nXg4y
    <1wzKMnqzZKni%vLakx2V8o7YX7W2OylE&-p#UYA zY-kX;7f~CnYUbfsT#xH9G1-xg2kq>|(0DGaNF_Eo5%vIw2207h6HL2C>l770g0t=- zm+9eVhz0U^7X5I@ROIx>O(O}kO>G4j{$&lC`07;`X-gu$tK_s#%b)SL2>=D{%ZaIS zXQhNBqRXM0XAjP!H^-mUtt{%!w5) z*%w4Icqn(TS|b5V^wqZoFz551}H;mWK`Da<^nhD#P|giZD)XOc4K$;>0_x z!;AQ)BB6$#D!{z^?hpqQ*8y&%E5BEg=1uJN3AT^_M%!m4Oy{cVjk66$iw*NFK+Fmt z%-hBe3=A@!XRudlc1Yg@H0y5-=^7wx%}d6^&NbTX<6%L!(h#$ysd{7RSe*Qo^PE2j zwKI&W>g)5N-S!@-m6yP7ecd9F=jUnZfI4FWOdJgacYc{7Cc|Q@fQR1ikPsBH6MSR7 z$4BDYX*xA0$x268795mZo%*!}V5V7f+n_{?0uEvx1LM(PPw(~K`Wmw%M4q>!r2fm$ zLjW6}0n6zHW;qGH6BQXxAz!=(SWmu!=HX!m0EiA0S`&Lq%2S4yjWGN6t!ygMy$kJ>^bKhN(<=4sX{Zuc>@*_E~@hu<5k=uWr`h?w4cu0LX& zO6C&60JQ(vUNB}P+*U*1H}kEeX2fN;^dua9Nvc!~Y}b~WZER}YFBmuu-{f?d5!R_~ z`GO(n8a+DE2&3S7QpEFNeqIRVBoOjc#DY9HIJgQI*W&zFy`8+g*-pblZpZPjvEaj| zRS!q4TMtW3&pM{68g>LFBS~QKtU~om5gHw=X#*qU<;(Rq3w8wie{3A~a2R$a(=l65 zWpQM~!uWp4XhVZOv+8P9@}{TgR1fWr`t*zE27j4IJTh`q z4>5FkTv}gAJX+Ng2QY6t(o5u1s^6FBdN{)Us*C-22XKNJI5xxueP8Z9&h}p)O7%D_+XM0=mvT@2FgK zE56@k!*T1bm8S@U`-P<4%$;t{KDn9GL+6npU@P^!h z;UnX)n|Z}&LeOaC{$=g8ni?S>GBa}r^pNu1DY0}I*0$7C6>BhZqBz^Di1#!MYsy zo>#@?=f!02>Yl;LpShptign7uG-~yCkA|ngi{Dj=UZyFaaPki=c)9Tb}8xn zI8fSFc4iDzWE7HO%u$>8i5x#0YiBAfp8HXKsAl0@pd4B9Qa7ALK!swE`D8PjZ;fQ! zQomLuoP?`+gx_v1Kt7JhvhcR^bexJikM*zn)m|$sak`5ybqZJvM!Uk46<0XV)ch%O zVoA9y8j^**kF1xrXAM(+w^U>cD4cP|%iDm7J?v1<9?Nyvp({-+s89?xRC{uHupL== zg6Oda7w!`fsr|a@j>?Wzk+s)3De7egdv@0O`ba* z0CUHegW9IDlB#un=uY=)`p|0JU?>;ClP7PluP*5xao(W?v}x8~1hM#>j=1I?044rc z&)Huj;m^yhAjH0_24-Dk zy_`Ndhy}k6JPytB+zH^?K$O#L)W3bO4rbrL00U^xoVKRI7aws{evm;G3GVc~qZGMs zll_7@4%_e|tZAvhZR3h*6zUcH!xTffww(!Y&A)$a!1P>PJnZ_Kd!9q3;y$z8)|%3Z zS$p~eQQrz|AD0lXMoT_-@_~h|*GtWtOooc1+$xI8hnP{3sTkdN8{Q4+@OHSLoP*@^ zWFp)bg6_Vg3Zq)hJk@QlRn^ZI06?tOWQ@hQ5opb4EVLmN>3kUJJV`-Um60fKU@W?m zxBW~=EMs0-m$5qGd-zmu)HXT9KCve6+i9NekngECC_P9=%6jU>LhJAA$by5T^Vp2tVjZEhH^K)5j%$XG3YniCS%|6NYmS^_ z7_5AdT--%e(k{l-;ahhORucEQOI2g&pKkE=8{3W;E0TmZ6@v%gUj_nTlt!Kxb>Z0VLEMt@Q(b^H~RSRz< zRhSq(XaqOoyW?8!*u(tS1K^&e&0=Pd2Ek$o8A|rs5(ir12|SXDoZX`r%}By3z&CbG`n)2DE`FSjx-dslfs?w!NQ^FiXk z9sXv6P!oqE*tiO^t2q$kT^lMeORA}D0W8Lj!iFYai5=OsA||v)l#dzNZls*WGPY7T z2>&1O#P-Am3}lQ1LID5rm;Y_lsbQq=UQNZS0IoY(IXP#+G~fa#4tI5Rb$WJY!kP3k zWkqY(Zc^3`Amqu@a{*aMDtpv;cdrPeB5cr`9THs38XKD0Lv%7)NP6(zVDWk?e;}HGq!EP$%q*!Q&jg9C@^Df&4|Hx zP3kMMSaA7Y`JbMi&I5^sAP{z7ipKUJAD~b%#-7HP#%%}$c4%i<&kxhu1b|&DUOw=( zV2`a*D|R(h2*Rk-^S$aak^uX3pV8^-O>Q zS5J|FhznI`+-6s9w13=*gx&#uZ#B!397yJF*t98asGz>VV@oP?J;vcJ%JVm*bt`sX zPY7*)kNQfw+PBkgG>dw>X`Aw_S}dt9{w-AL(&1XNQ81_`xhrwkkfF;No880Vt*0lS zzpiL9ZW`5d{sVtWTnrvyHCF3ri=H6Iw$3OaqC?>T>eXzR9l-0;;N0pX9x@;i&nQg` z=RNbk!if>{BPklUVUa`fW=I*F66MHBm+5dU`JIoqWL%3cRKdNhm(|ie=k+yMuW!Hi zOIa)9-@0S4HIiJy>~B$Nh@E~P`cW$VJZS+7C`fvkkuYvV|15MnB=FbC12#VUI|Jz8@bUnUIzi)Maz&61oYQQjPz#GKFRxJmarVSdGr^{uTy zNF*Q!B(p0&syZZ{m8m;B>FNkiF^E<(USnR}mp(NEW}G!JJKiNgzDR~duwSqdv*qFB zFr#^ITwU?(A0D>D;n-pUVl1K-+wMZRjRg7#=M6#BH(-s<1W!-;C!B+B#H_vQz|N7s zb?eqU=4bCe0tuOxmt9>Cb?Yu`bOoXsqC2$_hdK!pGu&Ozn1g_tFWlG#+uc3 z-A&Tqal4AL^8s9z$*NDaOG-~yRFFaQgN%({SA{AlJ7mc9fV`1*?x%94&qE6#F?{D6 zFQ0#XkQdRp-PccvsOSZg>~c4Ur38doT147vY4aM224^(Pp%=i`POe;So2NI2d_9F3 zA+=cfLlC6l{p^+Q@XxcJbgC%FLE9LF<}Y^Yt9{EwYV^bJSMg7*bi_beYpi+GuE?SD zQlY67%?@}ak;K`e3v3rv-;sEmyq~HY`w}HS%H81Jn07AI$i%q8>$v!c($nT2pB!n7 zSjl8Ypx8wO9;Hp++`yryZBTWapj(C`Ik%@CvH>U5`{C-BJ?{s}(d{$kwKra#ekmep zal?u9J))r!9y_UWKJ}W^0tp6w<+N8IAF!nT7OmZyU}|AlVMqc{Ld%EQh#jcabiVUfs6}6*SSXg_9$5;fh@$n{=ao^I? z6r7zO*Lz_IpFB~vt6XrKbQYw@uXt0`m0#Q^E8vEtXS9tQaOv933Sj^KMx$;!&@qam+>OyRN{>*m;Z z8%md)_f}=Y5UDqwi1Ta2`(6V&zl>pfX+ z=V&I<)OMMQe)1}?i)|uTw+yCaJdsOyAIFYARZ$$}_t{&Zpm?S#?M$IKJvF!Dp;$%!`xW;u(DrI$eLIra5f&;1aEia3*{*17eF*e7fR(LH51Z)X3WcOz3^5aiP9T4w2>Ac-9svm=C z_}zU+=hmInS?v(#T>X>yhSDvd%AG9Z64%N7Pwzyji2m^gc8CS*xwAZAOZZf6F4pZ_ zSc$o(5IK`Ab9B8+cn=_m0*;b3mEND(+bm9H9OigSqc|U8piya>YH!Yagg{n;+;h>*$*@D3OmLac`CsA&)=1`)2n zKK3HKR`U-Zg!K?zS*E-?h?g;mww5ESrZdV&q!tnmyPT@++?FWsdpj9v>zv8&`z+(T z&K159_2+yGz^l!lceQ&gwQ-3IPFUV;1iYhveUqtAyoCOogqK$D8!&KjaiNU{++B+A z-hI3EI#u-msKxvkecYg<~L;gIKr!n$s;oxA$ z^Nc`8!+-oUo(zAYzVW4)Hvq{x1f&;XCwBCw!|7cY-6UMyLKWd3C3k=%kq>+VUVQ=o z61}(s`0*U)d_$UObentGfN+LrdduCSaoKi|7^saWynbs!^)NQ0zA7PBBcJcEoBCu| zDM!C?uA@V~-pqZpK_TUIy+DZH$l+$|VvjON9#bO*N-5UxC%FKbn!4|;Ktci5s8j|q zG{@r7_yxqo^{hs1`3QgzGh-i@v81k@ zyfE&uv8d}$plz``QL4nP#@mB1$w)%hDo%?+B{|7U)jyuNFrtK!T zg2X8I#I`hK&l8i<92Tk|y3`=Tcge4=&gZj#^m>$gh6_-b}$7s|T;#9UcSK5cHYpFa1bBpTA0K zyhy1t)0&!XAukR(r+8mWx!JXF^PK8rB`VV24avPKc8NiJU+0?p+R-WYQpDIp`#G+N zJryrIMOV{+HBeKY8;D326k&Y5`vqo|Ghb^9qcI(-xJ2UNlS;GSm}s;CruK)zl|1Qc z)b8Hb+$c;JHh0<1YTmuABrapnZaA{jRKe9r(3QEEfR8QNlwwP{)|f0Jr{tJvTKI@k z)YtiL!f}1l?Lf$l`9N(~tLai~GF}$!XX~3r__Dfz{T*5n`LJtiG^IHxXyww%#l9xYNy16Ijz zSM87GHs0UiiNCR`!8{v`yf6cU)N{rTI<^-tq(46EK!*9!|Be^}U3dOOGX8dDYoImw zmefD`i5@inLiFe6fOS_|pLdn5l$8~2W^&g_^>EX94+vn!tZ#$6&KP!AiDb>JUL+IU zsY9-?^GEdyi4DNa;k3^ejX~TcKwNOR*08DB#u2VRG*NO7rS?asb>4j0e-6rO!;Pl z`ZVB=`tk+LGciTN_c}a$D)Zx~PjM=;tfBsf_JXn2!dGf$KhBoR&&T4&X~ws`XvPcm zNtpQgC$-=Wp83fY#tAC2n)cIkhM7v~-Z+&iqo26JT z2dwu(1{y9(=dRx?Qdk5L^FRNHRt7W)20X}a$NZv3Rj4&`Xh<3#-()#o28a{o)BiOA z0ey-y4SbLPh~WOy_^Xxm8f5fFxg(~?$A7(shZ_xkMRn7O?z{+=`^o_}-OMn6#|OmH zcy*3zoNO!<_H<{I7HG8rd=Cq7ALw$ocHA6X(p6j*4-HfeWTY0 zhJ8DNgKz(|v-WfP#qNgHr@ug9Sz_R*4+Dr&S+*oIbUFmtAdH;|yI5fb> zyUk(gHm`s?x#3_K)_419pKzD7_BPO6R`m1aG~HXTJUumkJF8s4DpS6EDtxTZj-`1) zBrum7X+c4OlTB_<4|(&9Yo~{+_U_wzPY9Ly-R_G%$+ot?G1=tKDA-#x5Mn+n)7Eh6 zlj|VOQ{ywtjwRjSE!wxf3F<#xrHhVO<1|||1DWb@Oi(|uc~_XoGk9{#$TGZAWk$xL+3y$(NiiXR51u}Nm@!?;an5|o%C>`bX^qVa#URs;O)1dOcY~dZj%>0O4aYD*vl4Zc z@WoTe>Gn-ur}Ss-Bj?>#T`)X+kDI!3w1S*=A+&dmC|q z$!a)sBCam%L*hoQwhj|g_BZqTNO)|S?AuW$BV~L|COb(QL`z-aq~DLk?>wMXIvnzO zD&Tpy$l|K)rmaq#^C7w#V9745?FP!R8#Nm;+++%Ng*P@v>3?g7wj}pmg|Td&pS~+3 zY?rFXBUkL|6^hqyZ^!sq-XFDqcUi!>Hqo(=Vneb1*${62A?eNS@w)KPnIX7I=KZ$G8XLS`>_P$D3fX?rcd4m&dIrh>?%wSA37-i-aG*}M=-6LV z>Z9~IBm?4nr~uzbAc}UH=3Ku2zqL!=!D@3&k})q1Yw zVd}P%-n6ZYMZVv;dqIu8&x@Q`9l(8I)Bb@ayFX$Qkfu0YKx5y= z#x4SQ731thH9*AWKF*d-W|NBSjzWm4$JfvKQGI+xz)?;JO!&~)coxw4JLOk}Eh$jt z-+xv%ZxpA#Sv(o&V(-07UQ@URP2E=aFrRia+7doSPVH~{;^5*c%QEsdSHn$>?Cm~bm9oja^Dh(V11Cv>(fHPAdc9WUuQIO_LFxEXj9d_p4 zrSJ}bZfZej)u^b=7#K=bS0hrbaxGk~$lcsC4lUmYYw`8#%R*|B;aQL!uAoh&wSCw< zn&sk{a_I5=fg_8(s*f|H;^G7H^@Xa%8sBvekQSSu$@$J2?fPF;Z@gP&EI)|I$rFVy zt$EL+hwd|fK3!{gMqHx~8<2T(+@%UYfF+H)&ihgSCBu4?^uWgQH(dLFV;}tC?v5xd zCg(c$ujU_>GfF_&nF+il!BYp3F0_!-uwD&tB@tYK57@&+Ag3Q^i&r2po~jWo?_5ip z4&7!(6-CoC%f)~{8%w5;OR$oV&HrpJMVtE`7RPCQzz`o13kO4;JS-QBH7JAaENNAo zkQ{y9{GrqY3<+^#Hxl;;QF&?SOxK988$uMQZ#c1RHIUqe?*>e>7{?fB5yOi|*(;hKF5-FzSXW4jFPYwml zCWHUyCUETM`$9crA$x{>=8wj;8iC}B$!gA!YQ@CTXosB|-|(nuY7w8^5f{I^b$$;H zwtM{_y1oAefgAYcJ=GSI6>sJY=p}6l%4fC_UrLm(w&~t`Q*3mlBT^Li2UXL$dklj` zx>kA^V+Spjk^GpA4)PsUXbx|uI~kx!oj1Pt?k};l`0UGcMS6}VQvQ3VX&{(P&VLa> zIVnH;)jljfTPz^OWQF_J*~N-Q)7gd#;LentE^AEW-hK%3^}U#C78*#@sDY3IRh~w0 zNM3ph4@m49FV9mKCu4AMimlZnumTKmTIdM?zir*o&53jHa}ZPPu9pX21&+%pLeq6B zBML0Jq~x(mcAPeFHqPS@fLl9&j>UGv1qJ}yzht+d&>+3EzZllHFgrRml|1;zqlCKe z-=E$4_$Ywuf45U##CS?>+T00GX^Y7SyZvmS0pKpLAFlF&j>4?gTC#P^)BYQHg7yyc zF2gGtXb^RMzsgO7K=mZSC>XY6)V~$A;2%Z(9j)&HXkXiCyb3>i?p=RQ;HggqebR;z zg{VFE0|$rS7VL#RYA@HC6rf+-y=SfD@bwAs=DAwvV_=uKJIoDm)769W`qDcuBk^v2 zH}(91sB%OoS|xWa^T^P`BGx()8Gz+w(X~qpn9)lnG0lqs*OiX@gGz_aQ(VD8o^{2J zsLNk};C8m_^gCc*Ae{9v?07Q@4RD;pSbr$j&x;5?IOlmYdKbZs+P=7jCso5hOMCPE z(T}(NNbm3Bn6NP|V41TNha&2<0L5D@uZ4QTtiAEV+d34WF&8`3Uz zPnd{kLIH@IQf@&u8!=?+PEKX_ad0)Xa}=w6x1r--v9!Acg-p5%4K?hUb$87ITyS;A z4-FMh3eQ_7ylh&7NNkWT`i1t>Knl_vT)VWqDtP2F;^rHMWjAzsqDOTFAy zBlmu0`z>IwB>m+R5;NA9Df~BKEa{z}S%BlIV=7%c<+uMl9m%yn zGBSdb+-lfROLka;%H#LI+nM&bk^`$tQ3Q-5Gx31#gJSv!Mpjl4sLTcXkAUaTpC=yo z`3R4pRZTZ4^&2@ob~u51K*``|J8!P66Es)a6DS#;KmRy5>rK*!pPl7U ztC`|!XXGbGSEqA)dKMr*C0j&iWj3fRu0ib1%Nw`}2c_BV;l76hTA&bD^bMyaASIM- zjn<&|In$Od_;?|uhl3?N*!=%=`57A z2de}kmJR$$-I3FQL|!i{{FS|ZF?y;bz<2YAnDGzCxZ`c_nmCW0kZ(|$W6MXBTaN*V z&DIrL;rj44eT>XUpyOhg-Zywhnj*tnNb~1tp(ZZ@o62Fk1Gjz)uTO6P`R^G#;@Zb? zp)ZZi`jNj^j9{;r?ru+z^k1tvPj??Vbh!s@`bkn!x$tI{B!Ly~P}}#Lmh9ZcHpysM zFl(@pvD0w3|8ea*o7$y(XS#<0n8ZbVGB8X&cOT*^gID;Weq4gv&K0YXwCX!>$C~h% z;tSaE_m9^6-xClAGb1XHGcv`LPV?-p7=0C4nb7lm%$yPFwO|4Pf+zpwu5}(d8BCZ! zs2VWx;P>6J5&RQGeQ+0aaOIcv(u<~Tv+4ATV|v9r;E@7qP!StKCpO#`Tm%@ar=2O4enJg!Sn!(QC`3lb^_v?!dV&#m*!p{c zle8^;CqBE9*8wLeA>oiLy!lg)UABZ<(s!FZzRh9Xy=g+c{Us=0>)j2q-lCw%vRZ_= zvbR*>$nA~HuP#SKvM+Aj{QS)TvfUJ**P~B*<7V5|?xC=kOQR5{B?+Zw$azCo1+v&# zud2iKXSmG=gsV6`lbrTdX+YT?Z((`ab-7zsFySqSiX)N-k+_R{%pxygIZj(6apb2~ zgk9lWQ|Qr0q^!xEAJmmr^ci?bep9GlGzBat0|}&-hG_J!F{6)48VIar6n@pTdnp<^ z5?2(@v^>`<1v+*>XCC?~Tzn+~J7ChnKITHWiu5IaOXK}rs(XufK7Gh8*ibv+GKqz# z2}mtykflk6MMDw+F3pRofbH@kS;i2f@oTY%nb!C~Jq>XX-_H%Vdpf@bdpt@gA3(%G zDQZ!vir7P7iWFZs;1B#)(yP{esA3qlAS-INiB!Tv5Ll#`)t)S8BG#`zA^kQKlF6}di34DLpWXgbh_PX==zM~ z-uu|)Y~LoM6CPx~X!epWiIIFEyA1)zc78cGdCeO zuB*5Px6g#}J8whdcvks#ss<6k;^XgNQ5qhrec z$ZK0d))Hk5$;QPSFYUB76#QE@Kclo$x2UO?jEcR(F?5EL-pWT|!EMP=d z?|(k(cZB#y*^)k6)w_kQrk|WVc!0^;P%D{>ifjb0_4Rz>kBfSZKA*Gb40%ku>3+xE zCx~W~h?LCq)Mfv{&6`XdM_*naksR~hAT?tOANC7)es1d)!Y9=n{!mQv_%c0|81FRJ z@#p3Oi-7M~rDCoA`6{Pnk8-;IyncgPQI}=R90NU9jDKXno6v(5-(0!eT{G)38F#8F zSaX`;O0Z>^QjApy&i@-$H`D2U5+s{m=?_1h5L$ZU}d;bgOpQa$C`(8kShSx$~tYN0htlkPF)Jl^1hcjg^vK@W6%I=70`TXr$7r0`1GP`%q!A zNAJg$v-_u-zXq8F7~qtkR0AC@rJw_7KmUbk@-3G`gSFXen;Vb(Y#s)nrlpp9vW3T2 zj4i&fFGu;zW$C5~rZ;RIP6ozSqu_k{ukFjh?YETl&y43kIcIq028NNX_dwOZ9DvBh z%G*ZsGKv>=3j(RUo4Senc=s^vk>zHc=v(TxZ*+{fbnbNcjQC!f;nAbS zN;X|Q_LIB}1m?Bh61lfi$-$wEv0HH4R4-B}T0Is%jz9DRZuyS*HLhceuAhB_w+Jk* zyiVu6%=Zyfn)dTG)U?wkJ~f#V6b(4N7Z1S%>;5`1-VRf8?7f_Uzk8ssbhrV{xk#mo z6F}PoINJ287Wl>?WDkC9G+6o_#$Ux+rc@OoKWZbvkk}we?5e{2(x}_ z5a_L4b|TC^$Ibo`U>#k-<~^rcdgk}Q*9ZiOAbl0rD7Zh5MKzQqe-{!?(%R^O+~B%Y zu9bSBdrT>b91ldm{QC*QMX~1hhTjUGbu&~!wBq%L89-_GAeX%#+7JEa#2R+ly&SfJ zv*m#4zg!OG-a5Ji=WhCK1qh}Z{^lSL?3S9?v z7wJ#_WN_$jxm+an*w5wR)?jM3Yg|a|-BO%Z7#iG}FJJ%5vm-1LgNj22i3;+;8vGAZ zr4Im6EX8w=`6(aX5V_Z---+>_(vU=7e(|7xkW*?foww_E_6{vPI<5-Fu?xl118=Me zMjhwco}ET@iee&xW%FJs1I4u|q9pRBL!j;{0j_Y@$9yi|kuni%FinQ{cpP0%2F>|| zYnI+~o|{}{Th?kN&KY_3F1utcekX{xTqFober&w{E+4zJL%-}pY0I$--;;s-d>&Ez zO$Q;6*tN@#wCTITKW8KuFiPXrJj)y=%|5=?pO{~Olq20Za(HKVE{xB8yFpMu* zsU1fpJQ@!MRj8nR-(&R3gVpK9mmcV?o+J`4#YU2coz5@PWYrz0Md(5zi4-$`1TY?) z(WehT3X@>Gz>Ix>r8vOT410%#Yk4di zj>2wzybNFOjdwh!%gc#Q+L*6q2*|R>r~qdIUHxjud_JGh@ywA=C1?lYnY_I9u0iXz z4)^v?zwx3K9Vr8Q-)D>@wv^zNsd(R-$KO9|OEB)?>|qh!7lF4VXg0Lfyj8q?Z10gV zsEr4&w(5^MB^a|mid~}+wJuc8!FMjMwWBT`owXCFh=MupIQ96o&svVgMM!KUVu{}` z-n|&{>YK_HIBvdlpOD(kQ$AdiZVX1d2D&Uamdu^I`(JXh3ru&Ey2&OKq%$i~J9Ixo zl{o)jw7q3iTusw13?YFCmf!>lA;H~U6D+v9ySqyg2ofx~Gq^LjdvG0m@CoiZxXszQ zpZ8tw^L*!gKhBTygSB=KGkf>$>h8L_>Z+-sX@8}UZ?oEx#gR7 zYH?_l4g}s^!r4>67d`IL-^XULOe{vPHs-QW-aIH{s*7F`xfeZZ|B z$Fe2& zQ+Zt|=oxTIYGaR+-wxy(sbdOpsCq;#o-g??nb)9+IC?J)a>&8BkRDK+r;_XHcn z#s*Qi%XB&0wcDW#EUoMl^5Nr*>e6wDLXrc~SFYTglzN{D&Br zg?Xj{Sx*Luh`j1gcc8)SmiN>*vvOl@`u4Elj;L4m;pq>3f_lmKF0oBo6a%ziqnR6*FOf_nSb*;=*isgm@I2;D~wut0(gqz>^y z30n@2qn0KQM>>Qlh3Z2VLs*K_m{MebRYdBy=`zm)nb&U=QS(VGE%WBsPP!!u?5|p( zFx*dBgCGu@m%R@^;nU;W$@2lk#C%~|F8~Arv)}`6LOaWGUuo1W^^5m;2xTCyPP2<% zGlm|!QC&W^B_`EOYVeD<>Jd-V0u`GhKiI?;j`$b6i>JhBnbccU4(=HVPnPT2iBgT| zTNB!>+2b?MeG!r={gZR%LX=$U>jai?Zi=hT6ZPfQ;*iz?(qzF4>@|bbp0ewMtUUwN zz=D``B1uQGi@gyAh>K1f+d55*Nn6*WS-PZ4s)Vt*K-ZS>hn68bmh1J3T~i+0riE&j zeH5v&*5|3@U5{NfX4JIw6E;1%#3)*(yQm<(PwbwvF^LHxP6%ZoGk4JIQ+#@D4s zotDo#vG}!`bAmv^wDqnsw;{jc6LzMq;?3Jln_Cy&)6$2JWp z5hHUL6nb2I*faeF#=L+POy0svkQY8?FDIFtDP z+h2&?C<6fLIvGxS*W33^Reud9*xbASe@Ohl;PSs^<{W@}UZmeTxrHy~N#lvE1!bNBp2!H+i6}!bT?tAyvGg*aZ zk7N0Yq!qeJ-#b@7T%-`nu2rq{;nEegVJH2M-~^b@F4CaDShE zl}tP|g+c06Yy?|DTK2DPg@aX~L^TqL&|8I&W;}ZOR8riRdET z1#Yj@9Js|Y^hxfOA00Un=Uj34p*q5EIrVhCm@v-rwo z`j!u(bX6mvV#XXUt5dEucX;VL1xY)JgV0_kZ?r0SNsxzTnWS-L)+)4}<41|vLSa(@ z7p;YQcP*h`8t`(scbkR|My8ZZF<|w>ZM8P)Es7WFb9{nL9w>)x^5j^zw+&Ag$wV3o z&pHoDcUTQgW2XD59}F(b5VM#bE*xC65C$vU<4$`_c$aNV``7 z`H8gx=rE(nH0~3IllZd}_%?(;FuluBV@gF%(m6+QDBGp7&H(*LVvJsKy)p|UvWW;#j3Pn`&hVRutBJ` zfwzzq#fQ!OV)e;zlgo^$zLzi}a5{34;kpI0q#_Tzq~Clcf7wI5ooY}hPn(nTM)$#j z?24nz{qqA!mUtSMCR`e^05$R4T~SXLuK$Midu6O4eJTmOn&>S0=5vqm(5hqBKA%MH zX#qoktSq`(i7M@M=sj^d!3ctJSe!Glx57_G&E8f=B3n(WH#5 z_hn29|5udSBGu{vol40<`Aj5x7F>&yUy!C6Jrl@T;c*8gWWgORzcj(qJz4?jc>2N# z6>FsZ=5Vd}`O5vS!uE3k<7VowX|nk#9DY==fK%inFyi2=Kh#z-T(~B;6A9B%C#~L# zTvJ~{&o1@OFB6&M0 z2{(ap6C|V;N@&PZd@bSYDJhxfKyo34X9xP6F)PQ2mz|Z!kf~wL$+Me3dR2+3`9Dz{ zw>sI#b}zEw-S>*7-!51k*91^+Blc<}omb@TLCE)LU&;G|?ilXemkiK-_F2n{3kBhH zvxkXSy9r;W7w@9CIv94B?4!(im_=1>PI=&cyo+0>Xe}`@ByxrPpIas1&hEM$8>e2 z0xv?sGu|2~=^?k?jgmn2sZsAc(FBhNgtGRQQYd$Kg?5=6K-B5;M=n&9zm2;f7krdA zxHVh`e}4GrAUAJ|%-VtnT9~hp{VkTG7~-{iDWADncs2Iff(7-@R6{%DQRJ}+VO9YJX6+Ev>QIeh3=!UM z7Jbx=MYdIQI(qCKW7sVftA`QLmHL^trbFTJ2nkcM$tXk@PiPhHk=$-yaU8l+Uam0*dGj!SyO<*kH@qDs?ALK^xTF`2F{~U{h>?Q3OmI3YASdHg_ zVnw}{)M7onZSP%+9=BWy67ToxU#D@t1r=pN2SUi3k5Pwye6?G3CP(3N1%3_GhPUcS zE8f*Mmqbw-s4Q6u5HUM=LLxj~gSQQs*7wD*vlExG8U~kO`Ssp0n68mt-8m7351QlG zOhIkjoC< za~kVJti%C8r4blHf5Lc__k@~5W@)Rd4U!gZb=>Xuy!?)G;I)5}Dwfw%xUH6j;$=)c zVqH=|2E5kK21$Nfcv^qr72#Jk;%r+%sevKs?J7Ra>(e4x6P!%0!Ema;C317 zr6=u2v*}~E=w~j=M43<2T>dkj1U$HbxYV#!>6mCP&K9hPFP~+#RGK zMDEsWrbu_k_H$nMCiNWdLS3UU<6)`Y(%GsZQ8vcOd^By8dEicMx8N!g`qqjg4Qe3a zEWpaj>UuC2lblSr7RP=j=kuuf6leC}G6h;?B5BT`-#zqWYGdn`r&)&N{#6G@54*!sRu=>4I>DkDh9#^Y=d4<;G6eUYNepaC zbl`Vk_4#1H_NUpcz9jPaqV>^dj;0-9hlezy6RcEb$_S};=wm)lr(%3Py^+eH-%C87 zTkH{#5!Guv2zOYlkA&tiag4$WeYP6>!+U>sk7g7OfrzeO;fMd2kMqyHVdV5ZyK@_- zpBt|b<*m63S@vgzp1tb#@X=2yQ@x^_jq~fyn;~|QyY))YrpVlNEAyV^kEpqW;CJw%mUquUK&EZqw>jMR zl>QdK7yM}Q8`q;G1#i9@k4S=W2x_7wGd(LhZPpN)*w72twbu4qV>w~SG~+xLyis`i zLC`$ls6=T6zIwjuFf3^0?KXnYHuFxr_&Izja(s}M`*^>_*y^%SWg7v}2y0cyCz$nc zN!obH(ShNaqc}RwFy|$%XuXHLre`2ZeA4v_sns*h#kJN*`I2_N5)0N|R*k3Xurf?` z@X)+{q2SP-N?%S%e?trn36nAR_%o?hxvmMuWhL}r zw-pD^f==*Aq=E)<-ybGu?+VaCeP zVipvfsW$k`Ilhnj@fvMcxj{gWZ@D|k#NQ*|&2#KIm0oDJ`ero`$(WZ}>GYbc?R%eY z>a(Rn@-q<_){X19Bh-@buC|e%Tu-C*{-!@3Jojt5C+_o`o{GUpyDONxO(uMFYe@C- zmToqLvcp8JfxvHa$=L(8^yB)jzdMlILBFcz3@u|nR{6XJ)m_sWB_!*v~B(cy;K zMw~MsK;FzOd%qZfgwDsgf>z3mUqQhNNLecxZ7HXI9X9IZI2Mn;AENo0S$$8f31JB| zke1_fv(0V)1$Kg^XWs`L8r=$n^i&4 zZOq~|FJc$|**B3#mUVC^+IzLhXm@zPIi zWaP{m0n&vH`3?^lQZVMhAY~h>_m_p zP3NY;J$+h(eC2IuO zu&+&nHu2v1eD36*rj)&49QY*0OtJn#7Tu^%Uhb$I+S{RC3(Z+Rp1(Nv-!;2TA8JPx z_L5=-)OrC?7(WT7dE{L%lV0=5bR1H4%ld z_)aIZ95sjk{gV_X7p3jzeX{S7Yuw}<F5h4Ith+nvWyh(HQJ9#FeR43}w=Q|$a zx}4en`~j6e1AwF5##JY((1SExAWv#UuQ3Hpbidl;RW4a3wD;#sZaVMPAaYy)?`(N; zcn36Oq)=SHZH+D1VR`8LE+y^J1%*b3nnk@fgYRA6I{cUYq5_ayq zo2h2ROaFP~;w#CDyUh3H8iVlLD2-PhbZuGQEvgyz3-ys717x#|9WQt4#6~4X9&Pd= zyHhr5iykflu@B2 z{KV3|-$j!FpR8l}?jSA(5-bnkQbVSkc6O&;YxC%b3X6~ntdfD)x-`%2Q}@ra5N_MW zzTYXiFD`H0r8CS)=d7#7Yg}+Tv4BV2&IC-W4d6GBXFBIv3r%5%~rBdH+8UX z7!FI^Jpg>23mx7%lw2-=&G$}=$^28uV~ac5vZ4I_X7X1)M$88 z&?zHJcAH3jJ!=OIB+%&6AO3GHfP=%>-+NVC(gh#{(M+<~L0lf^t1(+MPCTxO3@O?l zxa;w5a2C;nje#1?;PK3u0np z#ZK3H9fr=(Q1Krvq7X6fGKrHO-bMbBsk?zgh~hck=5PP=UBD4Kng6B6Y&cQuUVAk% z-}mOM7Ko}H7namEh5mI;hQ96HeEc;K>562`Lii!{FXs<&jIR9b|7#8D$;TaB-UUWb zrBMFCgd3X>9koQg{O6!)EI#0QKdn##Ui~8#)tfhO&Z6xHA{9}A8?6<*`j=Dm5pe1L zjb#4ES&99hPEr47V`SRmnwo@0Mn>m%kZqvS`XTK>MAR^+Fg<6~E83KxA3yN4yxyp& z6ti=r^NDv85jt@}okP0&78+$Ci1QKIF;hP97jcqk-v0i(^p2y;E^?h@H@?GEumj}O zvM*EWG=;#4&;HnhF?mt3(Uw8#iml^!i<`B&KxQ^Vjcqp4D7#D4@ zJ9?VO;oWxiEK)9HzMT8)=`ER{4+@L(*>U`f^Ol_I^YrRC@rM?}CsYoC$ej6!5jM1b=&O{?!t@kFaR3Ol6aX37M{IYJ$S7$-z(3 zpn99mIGlzjmDvUsbSWAACWY%v&UeQ?ti<;`_gi+;M8rorm+ad+w~`;SX9AmA%xFPw z9aU!>7bvoGNWxje75hA9(E0HS_Q9$u*E{yfn#h$4cMC0?hKRWx+TjRJALp6=x65K) z-FRiWw;rn^=URK{7=@oioZPRh)@j9Sj8<*^OJ7C%Y#J~zCdNoAYZ4Ll4|{N#8Ri;- zE}9x1WIkOSKM^T4ve||0xPuPqlJJK;_>F0m@`-KgC5)dwx&NZ5p6@dGQu5BD;3}t$ z#DBfsw*k?zg5>QPgc)l!pz^R{zdM5}oIw&`41c65qzAIhPpq3k?vIvRO50ZBrdvm2H1sle=6KZZ zk~m8ad&>7zgZ1p9B9v?73riSU#AhBq>K^iwl}nI)8N2AXWVQjQ#G}i#8g}wS%8bFm z!2NDbrpP$AJTK2moeoB{W^8{;xb+{1XL`B$Yn4_XVAh=)#-|czlxSnPfE$jOZKexQ zB&P=`!dhimBo;xY`Uc(%`CQ|A(oAFG75KduIr6jRX5$X5{6o32KF+*HIxE>L2g zF0UrTJH56pU2@4hc4ZgFSNQ&Y^zF3HST(LH`H|Vt{d-IjH5`S!qJ@q!C1$yWB6)K@ z=epq|6Y7~i%T55-Z4V2Ud|Yn;mH=0OD9kVA>nIzo5pL~ZA5+2{xZ|&i4b6;5Q1K%Hf|{>>oS;qN$7zYU9&_h3I5nQOBVdC%YDOcm=cVbx5Cs3I1b zZ~SYd#c8G7{p#A?Zww)pM^k1#6}RyxDCPTb+Z1&FpR!LoEm@4YhNo6CY7$YG$LZVNHi;Z}c~~r#*T|1lC`WM{Kjt4> z>!B@rKTEKHSbaUP7q&u#V1HPV)UCh+N1O0%EWU?8*Eognn*gDo+aLr|?qGBrb#9e; z9=2}PdmDm?{?(HxuW4*KKsk_;{SFM%YEusnp zm!{<)Zz7GG5ZU;_0YTi?(r@)g^)Togct25GV)I2gh5R;CKYpjz5npfDX83qWm=uywJDm6u>u7u6-Q8e+0x9`h7L>abWsA5Ze z5fVJrq~r$jhBJP#&fd$-9_)HFr4LLbTkmcDh#cx$iqr5=AI21EeZ2uv@n7`+XdV1i zxww&C(ZIUxhIZs~yRJ=tyZdL^Kf|~YW~br&LJT^Aj><(Iv8G!rBcNS1=ceNk`1-ApvTM?VnV8_U31m1VBsd zzYY9PH z<8tGyT5|1*zRwm>EPFM$+3qowuUBoQ5L{*lFQ)ITkvnp0L>NR>R#xuUvu|h!UEOCa zx(`tYW3RzD-)Oun=$#`|n+b7erp9t3+k|{T``uz9r-!$sgsBwLdon@=y z*Depp*0rtC@olA{4T~vUK2+vVr?DS6I*o1Ha9?5b*RZymzd!tT3hyslASmDMzBEm^}aNhu$%k$;<@cx`8wv_4EgGMgb<=2xOJ z>2g=Kur!F^@C^e!N;~lo5O{jpR|CPesbdB3#<|ZU5zyb!0xw~e>h5sg$E{LAB$rd- zpq*`=q~c^CqX=sVrE?j#Pg-B}b?9I?J`UO2flg{0_^l7jhy#_~e1|{thPq+I=<;A* z$c#3Qu+i~FgbnTj z8qE9Lb3TrW|4;?EzAVoudt7k)9p`X8ay;D*56e7jUCIq9CGje}T1i|DuWzhxO8O~? zpB>B?sz~jQ$j3hjJ?H9N=#l@?ak{~lpdQ0m$C-J6ww40 zryt(99qVk(t*6a6d|}AEI?&<%%sB7zo0GKQvOKLs{XjTBzPebBAJb>0!|6!D8rJj_ zZ!7ijq?bUo8C>esjanQRR(u17w#gmsj!c_c=rEDzyJtwB&<2cElhlo< zs)7!H_?h6{UDrU=<)M_Kor?5z`psr8un1JI!Y_)ZRex`cgBJqQV4-hLWH)LYvROwJ zNAmag=Qx~>yGvCyxjaaTAb-@$EObc7lrWW{g9QJG$;W*gm3hVR3Y|$>*IA~03Q5A` z1rl-nuGHQSar8&`bm$LM=RC$2B919P(-ovHN3PiKHkFKS3a^T5&M3er_2@%0%?XiH zlB`}mAc48+dJQ^@AGgnvm1Oj)NvIVvKk(hgTlnv{fJ`6vE^0kbXfc`eMixwVpW;>@ zxyVEbOYSOv6qu5Ba#E!?7;0*xiCtq-%$8*_%<&uc_VRewY0G9f$#Fm8zw@k&+hQ3L zNOqjOfzHvHeYcfT!+?}8gYQC)JzOO6+(}Pw>fKR$N_j#Ta_W9CS2ar0ox*Mw3Gdc= zovc|>eL~mK;J)?ri`tsw>1X~VbI~|qRss*M4w<`mTpuGPIO4(p6)R}fZ4qhM>CwUF zb7^ZnnmW>05sYjY_S0zL+H7gINFsB}er8nbK#**7%E-v{-}JFmx8)gJOGD0us-O7- z+g=ipz&N<;V?!>>E&+lsu`wAXo&oyiYrpugQ@tk+`q$S|GV&bt5Gjbq>Z9u?rpY5utI%^6m#%!x6jlre3)}|05ZHN|E0_vZYtQ2|B_acRTkA zTQ$4R<#vD7R{xP7Cad>3bRtxZwg6G}z_uW8<-NT5#f68)zV@_xPA$D9c|%2#cNhrq zMtqRNJ3SFaCMT=M*&n}d%KT=az;{hK6EwOt+_7zlMiD}CBemw+N| z48z-vv}^v}P3xXmkU9=1g|F|Y%zKUoUPrX)?|tp!x7;6_I(YCe%;kUz zzfh!PG-%>EB!8|czh?$yjNnd&ultlml@AP{efZ0Ijp%V{4Cr`IB`3ZrpmEHLbL7qT zHuYF!(PvZU8>u3(0NImXj7o}Umu8~RP)zAURTNi#J?LW;>FQS1R(<+=a%Owev8Hr= z`SfiSk$+ap_cHp)TdQ#@LazL;gLp+syiXdp&?hV6L%6L)vM7A=+F8jS-(o1JBjtXt zkT)aHwQ>~F>y9-nR11yh1CGb{KDhIdcErE_jE^rt#Go0kHEDU)zqThBDVbOxUAZjh z9|@slxw7nH6Qdu`eizAw589@pN?`CMeS5}8QTvqP=MQI8D6OXk8EU>%Wnhm3&_BR* z`61NC(L;-JIBi#zgD+%FMk9-Ul2maPtArr%1YfZu`Mnxiz_aFk@cApu>)M~}*fuvL zA5<~E7SjK=dduUw-6i%pckB$`Q9~I0;n^;q+*0Nx%x+fH~V5xCDa}2s?_^nZ9RV*woe>S1CVD3^yPMVM2q`O%u0G&g; z|LiU&FjKHTj#uoSF)fSJeB_^4l0!mlKo$rX>LXAsSdLXu`4ZgpAwtO|bD0G!*4pjc zJ$RLmIqyFOazJU8vP8A1(xn?zmWqtnh-r*sSAmm%Xh6vO7XF9!=k(i$RIbnXz)Ds7 zyG&J>*UgC%xgtA?qVTY(%!**2haoNh-}QT+%)}D!w41kDUB-4^?%+kbKOPw-ssm;Q z3d+;r*B0EyzzpG5?I$g9%Rhl;X;n%rPHKbS9cH#qUmVDy*~)1=ZCc4zw3NvnuUz*n zvq@)@3I~D{uAwZrX6i37^7m<;@x9dJbx>nQ^Yv3Tf;O$~&u+8hhPnR`r*)0LOZuWD za}}|Z(3O0A*YHV#m6oqgs=oF{Djb5ysYUeAN{~YQFTDZF!Lx#n>9gTF?<%*X^<<;AKn(ZGR5RZxQw^_+A=x*@RPZhpkzKKiz)bhed zN=mxlmd*3=SlH?3tcgcVN`mOl-10#LUl-Qh`n>Ol)UFn$YF7`A6q;Gm(5aa^x(mAtY)(mbf-p>&&VAccZ5jYw~BiaTUY@( zcl+!=EbN^`upt)eL8H>@NQs~?)V2qxQ9f!1fs{}e8s2bJ@os4;xq|ichaPI`DenU& zObJjycf8*x5Wm91>f5RXwq2f!uk1*BV?GE;hOiG*6fxsYEz)udn^D5=rDf&vN3WN8 zNYqm!YkwtY%7-iQ&v~rjGWOY0FK7Gg6$0J4%wO>I(|+1tL&8D$8o6`Igv*iXBSy{O zuTr^K=Xe*ukhCD{2(H*HB5k)YCwUn!2=Q(+yI#;eOmlhLI?Mpb`}SRXR-o`(d-m!x z^%Hg?J=p7hculVRvsWs(7~&iwNlmj#{UphbxKbw6(sTWmJh1ZG)6Uuk)v zrTft1uRk!UX?jzQvL6?9OFb9@BzO;_?k<)4t8Y3qq$IN1-tUnF9ZKcrl|`pZ^`6xL zjI`q2yn;e!kCr{8R%Zi0x}=vB6pY_E?-btnZIP7s>x3%Eby{+$C@U0R%$4UYrVG#C z3@u+gXCo50KpD>qB5!jj?}=r%5>QuPPahpKDu4Q@?;+vYFxcEWG~Yxe0TA$Xr~>R3 z6@W#Rsd9ok8t>4y75_g2Yd?*CO~fH~ABlSfCzfpSH&CVhj3IY=jnB`&=5{WY-lzJK zt8Wioc(rpCzP@%O;3kudOYtaik4`L6{%5pldeo&bwj6B7YQ%N(dZy#m`cbhw^hdv- z)fl17^?g7=iEzh(T#ipTF}ki(Xgh`so;R6@W0o+hRsAsdxJFt_XzGQP)-+9wAGV1L zPlMUSrAhot%s(PI>}};=?+_Zt{L(OqG3N}KL2$SXMX%>}mpWk1`h7;Q;6ihYjPczJh`33*rgx7#UG@UQ@0@-KHHX?=fx_-dvG8e{Mu z0|0LFpWBdaMyZ+EYBepVhlI`-(Z_=;d9&d7{0{atan|%aU&*DE1sbMAD@9$FIktzU zINzgT2&Y9(?P5Z^&0iXi2HUabM;UJuN|y|3nIr*G9#q+A>Pd=41_#4ugFlhckasSsP&O9rGx$_f zxCIBZpO(q@-?}9~T*(90LJRE*9e8;hjNx<|gJn(eXHX4mX7lrMjqpvIOGOJy9<)i4 z=?eWY)_~)j(LBLv*1dbLSugYM7JZ~tbd2poIcWh!p|8KPVn2bTx2j~mWi~5}I;EK` z-qyWRlRv&4ECs`@VZj&Hx3+`<%V!bodtIOGe1 z3RX{u%dJv_m51P=YTH*mU6w3ol0KH$3?0UQBl*8yOGqj;Xkx5PW;n zIfWNlTVa@G{{kZ*Fj!nvH}Q9D7W|4R!>yQ)Q;wJjY z6F@&w*d3`8*Sj42dfeZ^`$10$rR(Vq+_!h#c<2m7sC>n(Nu&4O`{&WA^)4yxh52QWjWeS0Epg^FmC!$j#7L`ezjKJVX ztU-64i=yahl*zLM9t~hl4_!PZ)I-bH#R^uMk5;~5(4YwsYnse9Zqp+F>WR3>VuXsVpB^)e-6X+80lLEQ!+b%}wuoqBtiE&+Fp(tdJbYaku;cD@S zm>`1$0L*^9^UqJQIkCJzYPZW#S%L*Ap~&$T5ugtrv5e=YW?;vW=BF#Tc3-?Qqo6_) zEScAG5Bb(CItJq6v{GDx^>9bJkrm^=gZ>RsyWiKFvRTV~-GqsX;@ixg@r>XhWm;yU zHvR?1wZ8$?dK6y=Td*?CXeYhfY8w?YjiJK#3<3{J0ad;@W^KHy4WM?1*!^M(xL;;T z)I)06*jM6Gqdh^{biT`wBZmZ2q}z}qcDFJ&o5hltQ6^>1jhp7@-9JAXkh-o2CF(oar~uGuFYeuZ_Lgn5Pa-yO0H6EWZbV(uMSGqL zn&)0|=8i^82;f>e4Z!J{!pXTdoi`2a)4Bh*S7BC_7~UT0nUHF%<^~ zuHpv+9xZ8eU@u9#PW+<)1uSMdSxN5+B{%Li0vz5G&<6|>u$Z)n;Fm;O6cMu ztL>WcQ9B&7b8m1x?n?4C?oz}m2rCG3hePcBc3tDxiENiprt&`8DX*VAAKoS?1*yf+ z9Z~R({u}Bk912CJ>x&9f5rSiqweEQ5Bmc2*j`C*CP7Wz%pSQzj?Cp^k{&w0b1lA`(w!%dEN*!@rE3t~L;eyiG1@$;Yd{^3quZKl!(2fK{4IA1x9kwrF^U36UROd-`)JfYVBf8hF< zvG?s8i5Batudramq4d51!}G7??FeGhWp>0cxjywrFJ?dC>r|fwH`G6y{HfAdz|ucO zkoI(W3AVV@r1F%h-v`pw_?P~OEoiMVXt~EiQn%$*&{`BYD&4;juzq ze_K6E>NVko`lkct+nXgCIOlsHP&3OUUZeMpgCqVf^XQMX4%l6iE^TxqO)%-zu2$wv z!_q>a5vVoTtXKDq8)Ye%T>|wgu&*{|TglM6wP`e4-DvYI?cdwG7joIrs2x+_%OgH% zi~s#bRbZpMrKJvtcbLmAJ7S)u{O?*{+M)c1;jb&$bO7X?0e1KQjrRW^8Noo(Q4$M~+&yv533x_94ADVui@fSzw| zso=h>S^lgfiKvLD4F6O?eZE;%b58=RNo7CUz9$&xLYTq^zD(Y9eW&lwAXlE z_GdQFFu~}iX=`AxTS?{VanpU9x1e;?+Ed=KN`DCJ8}yI!RfA$veKSN!l)}dssgYwQ zI3bLYPV3ZOlNoa@DRD|6njIA1Z%4Ha9rJEBYAh~vNAUIyo%2`%4w1Rav}NvhO=|5A z?|G-IOsKH~ZVB`6%hLJ%zH_d=wHz<|NR==+=Y%ug?uW*x4OC7enlGnq8roet+B?wZ zjaJ*IY;-($H$%*6G+gbKd04KNkG|dy=`jxbbFyoi%2hN-?vfOT-p?<+;M6e$6*yJZojT&KUZK;84agSmO^7$@lO_ZRxnga-K?i zWSx2ki^Jei4$Ij$xtT{(_`JjHR`)#G4fb;8L%drRf>ODBYDm7fqUCgEDFXH+I*j-- zswJOi=L1LXU0%1iljf+E7T7xG%Y6(@O&Gq8zx(~o?OLN~6g=|^URD!CsiWCyi(#dW z%}JMFbhETurcEwtZp=3-CeHfA0#ou=Rzh&zI>U-%x`f*>yItQ)Omd;%-s+E#b|Wsn zfLnVY53kT7L4awvhL(6ThZQoTHizkI{NS|RN<`SYg<+L#zT3V!P_o_6X8Ug1VFML* z8@1AsQgV@2={iA|%30jicp5j?1bIU8K^43zR5f$^fc&{vq&~+(LpF!Qr0X?&}&IKB-Vl6E2WFJFlw-`%!E^ z#@3Kh$t6nx0>-V;>+BFCb#J~+tI7DXJy&6~xdStsYq}$3)Zt1T_`qa=>vw@^ub(4N zonQK~LqTa5Gvp_KorYaFUuiv4Ms95Nf%U=81Yo>pi-i=KEn=2_oGK{dXc3>UiJghK z*^dWmk@(*;04@WQK3P>6+JuA@;M)3pr%J{nuQUbDO`~I;lUie|b94_lG}6HF%6qoc z>U9X&)?1rB(*$#mqKNn!>(jo6rn4K9wNIOhG8w{EDu+?+S+gTIdS<)xO-+Ra3K?a} zwwP`d-VN0x!i9a&WaS6$Eiz%z>Nb}dCwUNu7L~QAV!XxZ#(D==@L`?B$I@Mw?u-jo z?^=tNjKylbQG=S?fjycIw&stS{CTrSZuV0vC`w*iX{+Nimv{k1F0?6o=hCo!T_m#!u7+(oS&4%HcgR3f&gyjpq z#}WTJ^D8Id#i#nBM%9i!t5DJF2)QMC9{pPI-HESWJha}MtD?IRQw3it$rK0G#8@8} z^KhEnf8sPb^2Tf0bZ}#$P#@K*XN0w{ZngP2@eZXX_=}Fdf*ops1nH$8gnZ1R+C~~4 zoo5~Nr-;DqEJh=Q7Ni-1;A)bn_X`cxA2Wo@W{-r6fQKXcy-~V`E~)hR5HX`^!!2x=z2a z8vFWITb1GEtoKTBp}eEX-PYHi`s4?0?KksQt~;}@9kaQonT3xX%X+uxNqnMwP?vlY z7K$$U)TQ|R)5l)RA?++xeU99`wdTyrBbX?P!m@y*=SxeGvN5Xr))K#TX0uWh9w=ol zffmYzD2^3SPyQ*;5u_)YflM^ms~qj%k9{wqVSC9Kk;W54+0syL*d+r%;)(nWpG*Bc zXSGrf8#V^@SR1RF4IJv7@f=pZjHpu_>ex3P=}ZZ?h2IS_-kqIQTh7|NbN}+XC2Bi| zapYZ&pC_XUWlvng*-gG$sg1n^+uL2RYzP^*dQ)FXgTcjR`L3JNjpjHZ zF%tG<qgq58|!mlK0uP}b4t9|;qvTS~nkI!W*G%#BJ*7M@?#VtqV&Ol=1BH>b7 z`S#ol#Ho9-7pNUglhHjmCOviRZgtu+PJHP-w)at}cG@OF86v}d6bathx0>p03k`ew!PnPZU=DnyUukiJ z-=EPxZadYu&uCZd3)9kupt|`ERqV0@OBSo;Bj``!>tqG$H~2Z_lNypi%>5aic&$~>s0G%b?bU8tULo8Q!c-vZ8wivyo=YdS}$JqP*p*DBR+Btu_&e-MpGpHR>$HKNon_qyHPdMyv z>D7N#!W)qNpQJDUm!YQrc48L2*T|z8;*|auSgkNeG|w+_nKGQdC?pg-Q5S+)o*lR} z``=uZ9xOH-S6dzJO`#=un^_?SUe-is)4XirqDB&o&t$U(3<$by?}RpIJ|E1Tagr{$ zZ7kZcj(~1FJ?@Z_io=$1!F=M^7;tOq+IOod!~S@ZkvH}1jN~P zo=ySgzH68==@MeDlp(-j$PCV5i!bs0<_Xf}+1;B_w^^l!{?>s2s_3>HIELNI_rYW4 zPE)qi!#%mbZz=ZO^Ki>yxo_l@QW5uuQgr*^7Di3!0pdK+0%!+5^RDf5S$B|B!u@@8 zPd`OYqGFO#D&$M72nfI;m&aUCM z*YO$zRVKqwS4(J&Lqji1z!r?R&W9BRHM-x}gXQpupT~C0ToWY35Ei*!cS<>*7T*FSQ z&E1Co_e(=yS3-dlGD~T};!Zrcce6iEO|nsiWH5>4U^ZUqwpo13vRap9wUqPfhTw9l z{_cwa--&+IRYw{xxzNboRe;bDm=j*Q*~aDCjHD0prYyzE*PXa|)V_EF$cFUkY1((7 z>IZ$kTc~jU4Q)`+rIP}@?kLP(GQ7OC0r4K&)h@PYfP{J8bQbeGr#J*TxkA%jqRkUV%ZU z_2V}et)|V3ioh;v!vDqETSnEfHEW{_2o^kO&_Hk!+#P}h2oMPF?(Pl=!7agE0}Efc zy9Rf6cU`!CoxS(D=RM=dcgDS!A8T~e-Lq#;sb^NzGpl0yzUMMWlt14TOS?}&b!7g` zO=|&99iVQ>f9iI&P)|Rw2d%X++`hr04eiL6Trq+M&M9B{-nFv<=k2fp8mskZwK=pe z^Z842<(P8lgLgatO2{OU_dB?9i{Df(l*KN(Zv-KIZR=$DqwNM*QUQ-L)$Hnb8qp| z?xB5b*k)XAig8Ud^9^Vy3XoN=qKp_|t{zN4&gb?FxOqT3!C@^SXdM^ z6p_e%#I5J6fd5vc{%!vLZww^s*W!YI`c$0b6C4GTJ($ zsUW8^yk6(mU(fYTn>S+8VMDFly3gqXudl}+o(sbJIVGCgisuGk1V9;0R~W;1aZ|~H zk6qL_;_WUG`)>golG3Pd$+t*r-R*h?weyTz{<6ck=Yl5ibLBTWxyuA&MeRBz+$nR( zN85pXli?16i@UqSrTY!sT&BwU&e|!HPP0+n%R8XAFjWPDnQlfboEqMcHolL|w?6Pw zwPT99E{V1oUvNxf-wf2KRSovg=Z9vq&9(|9Pi63r5TVq%Us=!Ahpj!@7DW5j_K9ug zTpKDY4_l@5>guvGx7AO5=~1 zQT$*=2~u7W-3x?{4>-QlU70?duU3?R02cK=?dq+IS!li3;uF4v0LyETV=mRs!qXMg zCu(eO(F3f@@r{Hf9cKsa4&Vb=PRrE+SZz^n3jge@Yr_A?PaT6CLpM!w;mh9z)%A&L zRgq~V_cfhch*GA{NqjDzAMs}s>@i{;n>E{P*T-ufZX2>D<=e8u{=gzb`|Q&~J^fgwBmrdV2`<9!3S;bnVKyHBNGN`Ruo`w^$bWxA zJlWao+jDcyQw)t>U>FE?ZT)!|*VhSSHdR0ZqM8E+%G$D|4nk&K)z!{q67oIh=Dyh* zc_nnyMgp2-BUAt|y1c`PwcKIZ6V!Az`GI(Z(P*f>Qmw?CHdJ(FVUg`3 zjmCEldc5B&kl{t(cjn&!vb#r%fH9k27T8e533&G0U=!UZF#eN6rH)tRp;tTubQ;Cd z$uBd=m(!B3uTnD2x={MaQ!cSlYOsX^pClQqRUUDT=R1;`l*6Pc6ru9v$glOG-szwe zjwQ(jmf6;roiJ1OxtG7vFs82yPP*%PGLkSNFP_8)=&dI~7g|0QrcB+|`@gcb0B`g< z<_ZFtP3B`o5OQ=#=CoVLUJe$iLL3oW=WH2a+JcXP=CK^lA_G+lY9b1EtQl^a_A_Hi;0H-0O=A3BL9bA_hk zE7#%cUkj(5Errf?V%`?m^La!d6i$*CdeF1*a{z z-O#oMWp)piBon<5Q7_Z*tk@z$Ckk|_gbvj$!9a{bGkEkqPkC*S^ zTH(h%S`ON|7{Ql2?y#Dp0wQF_fSR$CT3n&-WUXM5PD<~~x%;v2lejq!aP3vsGm@a^ zBiX0h8A;IM^$n^Hp<@wyC@`=IwKul@O7o({aQ@x|5RCtQ9GuctAjhW>k^O6T5cg5{ zJGIjz4j}S-KCP1J>)V8zb!^a-vGIL*EQ2%(v+Hq(%%O9+L!W4NcD7o%2h?`no+yE_ z2O)DlBs8?6w4v1EmaezPzI1fmUE7X4ECbBwGtz#ST|Q|-a6?ecW8 z3O~40>3(Un%rv~?#QTxnUQ1zKcVTPZWapZJF{#zyIl*y9r+v&S-Cp?&LcM2hE~Goq znt8&>sC`Ix?Iw)}zk@v+^FzThjqAOpXjU~U`4g>EB|!eXY{h#8m?11%o+53Q8klXL zM4veIaiH5w>#OblPDjgWh6_NQ>95QQjZIk*yAPS%i13s7aKQ`XbH3s+_3E-!`42rH0qL%LS=nLBrZpD zl7q+IH$2c=pH6wFmU6&hDT}DAOF=msx-jH zL>~(5gfe{JZ*Up;#VOQGYeONqjkn3C8q;VgqgH&cq?UZ*{a(4D}d5=?-;d zd_}yex#d>aoahe4cepvFYjAG-c?(T2WIfv1PT^H4QFZrqI$3Uh$bCg|3-R zKi8$blGWA#jL%r}YISyK+KnzoN9*EM^?TIugDEHG8y-GNJn7Bs3Glj%YZr4?UI*-1 zj`!PJT$aZki%y0M^oG^zrPC%1IZHH+H*UK0F`l(X$5Ds{3sqQ8atznjeXDV@y}?|% znI-M*Fi`mPC5OQBrOvZ2M^$MgoxS&px1J~QUd>S2lM^oJp}eVErY852(2{u5Ei9U~ z_zMp6F4Girmb2a$gdFC=p1#%nEPOu1AAqa!^s+^<>SHwa31&s1K21NoLdzma)EdmJ z<2d=6ph5I|3{ev&D(`5x1d@83Ido>)#i0rYkyJ5YG>Q!~r`&Sg6-!?o6Kd)S!QoVf zY{&a};>G%cz^BPSP5ClLp3UH)^E>=}-^8T8vj)67RHI0JY2LQ=a!`9*yJf zsDi^pOmmNl^^8<^o%Zz*>$eNej`@|}KT9n6XGFAjc!1YA(qE$Tz*D6TO#Mixg3LP~ zk&gJ(3=%@ry{&b1D7!dX4_c%@rL-#V3?=1gq%t}mr}7j6f4QfrcNO=3>+?j^|EQK2J~|Py!T69>?uMVDo*0fowSNP=k}r5Ty0?%&)=bjN;N@ z+T6MK47f}A(oHM6u#gcr;$Smx^*GlmZFo$9OtK~vmTESA91?U@T=HS>{t}r}EUbN{ zT?LdxsH|fO6c5=RRwkJm1{S{G2)!vv`fC;kVomAz!KHKVT`|i=BrO`nK%FmF<87yk zDTqv@?e@*d(2~i7gaL)t7uIsspboiX68G6>_p$F02aDO(#@klo|^Q2X;nO z)2gc~bBfEPy-}Db3pCNw=~jfm{q@u&AqqQ#Njb-hu2nr7?}I}fYNbp~E5%4aB(pa(S=9WQ1a=z1tT3f|>|Bc~SX?#^1?L1yaNJSUgV z_R^hjFY^Ueie?UkMJpOEtjc-UE7JKv=1L76Coo|^u$NL5@V}1$;iR@_KWx4sW{NQ z&THjX5JQz;B|0Vn^YeusLMpbE`+G&T`r-?dP9$}yx%;70jZHm1mycH!Ue0?nnic{k z&d`B-awaw%0iUbv2Ct`t{qqxp$s2E>e0BG^eJ&x=)5)Usoj5HT=#Fm=&@QYCn$U)hs-xkZzU;tsuA^+5FB?d_Yh#AYzi zJu!_ygcu!zcHL`e7B;$-$w;43TcoY z!RD#(WB^3+g;ixN9uQXf(zEFcXrM$(l_o?s-3Pv~@O$%AG-ykX*HTO$9n2qMqz%>Mv(+HB-d2E?akjGZ;g|OG{sf-*} zc<}9*f|Uzwr5EiRs%+8ocQ4zOhpR7TYnjc*DQzN=jHcxCEP7Es7@DoB$CYb+0)L1i zvMg2=_f^ta%3svQ-AVRZe?g+bE&-lk@mUv>zgrBaoUgS+=RUo(RVj%GD7!wBT%df*9TU|M}H0Qe1kjj~g^0_{ewv=bh zuq>Ht>i{825-rV(_8--nhYG0O3&<~}UUX%V)Vjt<_C2U?d6ox#kRR#m`ju_}z~$$<%1RlBrF>*?@s-(dII&DwLK zBB>_~sOsmPKP&81L=zK=Rh8a09IxqwD>-C{V2YQ5#w+a>BY1V2kmdDDg zmL)#jdP&!Ay$sipmLs7-0u3QULiv1q2WPaw*|DbNF|w_Ud3+r^gwG*5eDf{4#lplv z^{vyZ_aETS&a6M>Y|C**FmI!3aiR8}S z80KEGO!Xa~MC?~)uL-{`CCh&fn?Cl4$1O9kX6L#-4(e3cEHE@1xL91e{WmT^De;~8 z`+^8^f>EW{TUH# zO7+#|0C#1^mZfiYS=o=Y1=q1`zsqg-l^j^D_L zyn!+aCpfRC{H2_ilMnZMszHu~@yTBAq}X`%TgrmOZ9$DtWwdTN8WEr4l(b7zX|o;M zH?8a${3&TyKgaySK)OI=db_;uoKGI|EqbkQ8fuWX2e9$o?hcv{hilzPCel>ClzbY& zhH5MnW|O&E-2}FkP3u^z2zX!GTYPbjjo+SfBiS@bLcW^t{4?%`kWI~|ev!J!2)4g} zYjGqGYUEg9TXvH0l{=b~Z6)d`$H~~LX$%5f4j+p~F-K+#b{iS$G)k+SH?76iUD6z9e~?u?l+u zb0l)3zXHJ{CH;wN|KD#c{qG5I|8ZmK+087~yYP_4ZTC{i&}=QJmufPnfDH5Gy#It(tVZtDzID@j*oeZ$QvJpnO8;QG04+PjRl+mP}o$F=XE3CfZz5HnEQZ z8{v7TSK4i#lhyIO{-lP;%wQCVJ>;Hrg4~d0>_}Z(=s9=yoE`QB|M!K0bFge*Jcgd(EE96L|v@PH&umj#M`ZfhT(SIb_t= zoB@UlIX6bu@ABSS>=I zSmSfVU3BKG5HgnzNp5zX37mLU4tXU$rAH`Q(z)7xf)eipY-mum>Z9!*ujPK!qGw2#_`IKOGi&E&^)lc*MH)%r?c)^f=I?kO{=4mW$45)S_hgShXb|IAp_d7} z%j}7QomnHbQ1gjjSe~D#eY8$t_kwC!&1QM8nJ$i*&UV{8d6u7Tw!Lnc11v@N7A!%P z30^18sdWHHkLWOch<(L5)JCK`wxR#yMAdp*a)5Gwz=5f<-c*Ww`M&J+Gt;v^U*mL> z!j_hEpvQ{_#n;>yFis76uP~mwc1^*U^Mx{T4uxR2e|PLy3~_nvyVa2L_?J(7R2k6? z5?p%&X$CW|=`tzy_I{>1`eU8G^j`?5a}cosX=;A+YYR!e_1tSxOGSyz%!~uR8dCy{cS|U3&3K5Q zv;zXSVpnX=bcQnzfokVW8r!X-UMqA2@gvww;|k9tFS7~WRMs7~QeAE|(TghUCDfeu zpzL+UHUX5@%C8tCLd)F=zI)>L!UO`QWI>u-CUZ+`Ud?bW>AVAooeK&~qry_=f}f-8 zA2qWlUei@;nyUhE^V0}pHh!%2Z} z(_zz!)D{&cME%R1AZA6^ug_?GVJe0B<^^Ejx-pwxA-InkaXa4FBId>%=m3-Td>c4W z18ne#)G5UCkEFN*Ww}cyP;x)plg4@Vu?tN`%Po2i&2rGjg~YjkLp@^DwCBy_GzLuj zB^@pOrL^wt4SE8a9~3@U>;+*#k^RZg@Aqf@;0eN0hPvOLG-2jPQ0Vxb{{gmCGN+#@ zpOW@`i<()MF^ORb#Bx5J-5S)JvD+CQ*{-^%$|gxiDR(e}Z;8G(dhq9V_YWQQme!$- z-ms6s159vjIzCr%3vKyaN&|+yyZG-~3jk{gWAME*vDCq-T?ddWa`hHWU#*;0$A$@B6)UsHtDig(g2rJ>M&iqj*4G4?IQ1~kD%KTR!ib7;Dh_Iu+8~U zsBAkFjR837vU1X$Mt<0|q>!l=?|jv<-s3frj&p!W>e}j#1TO@-r&*??=cqlLQwD~6 zM925AqR%bZ>0QZO?Alw#;T5ObJeJ4OZ*d)Q|LXBtm7kl#Mm-n{RDern@!Ed@X{g>^ z%#cq{5^ijdu{aD0eBW4pP*k13-#TQ-i-q-ihz&9HH5p#pxx!I!aJY$eDN4}5ebPm1 zP_@y=j4Ne-vswf|xL_~0@W{UtSWVZLlz>Lf!Ul4kmz-6bQtO!CU$r_>Q?Mp4hebYS z3*MPQu_!2V`U+M+&7F_bO+-6~J7IhsFuQXt91OnPpTvyVWoRz0`fVL&i#GcNJY#Jz z!edvI0E3db(k1K3EY>=G(pdr)f1?@NW%%=b%D9yaBHZ>N^1;<#K53**pcbq%uf%3zyFT<{J$fN|3|$1i{=Rs0HSZ@hqoN`U1#lQNr2?^ zT8#J-IaoREekw)cMN@#I`B#N1K^yb4A!M`y*eJsYxW$q zv-Yij+Sy}SyuK6Fcyaq2Xj-)H#9KaRg@cb9ouDhMF9L%X2A?t%D5HFKc1D#cM*<56 zhm4B)%ct1`2r%$LLRmQ#9T7dq|67MBF*=P#1YUEy-zGj>6wKW;0TAv(Q0YtNj?f>D}+$KA=D&}SxKAwVNQ zl?az0^YZp)A&lVg={|r6NHFjvdBhWNB=(i;>p%@jWLPTYu{$>2AM`U(lKYgr@!15s z^IuM5c%AiqO7}cOP7l9J*5?X*wxC&aD%h<$*0p#9!n<65g%gt_`>?yK&Oci_fg5LU zHbKMxw8zSBX2*lFJ7-DDDqmD-Upy|X3Vw;!K zdtEB7&45PROxG2x!Q+)aO_^X#FDBLOWp%OXmy)y}!tC;&UMe?8Rm|Fw|cb$2)^6RwZQsroP)6mmY zg5-3uoRpQOkn3m}D%Tw9`=cQ14h=xY@!0ryMT7FyvIQWII}RT1Hw0Ja_ZX|ZCFnq# zLm*7RMtg1&7YC^0*xrR1JE0Odbjl+4*RSu2GIY7Qxj<%dVi&%`fdCzdq%FHabv)3) zXBbFtXqkWb@jek;Xb5+!s02=!_v%;HLt)Sxv6bO-#t=tW=`++Voje{6Ug(vp(J?ai z03%`2{OpXw;Nq;^j6GYSea%j#V<#E`Zv|l8OjS zxy`VEPp{n(3j*+P#L1sT$sq##(Z3!j0Pogug}qD^=^qxyFz59(=k>8b?04^hddmx^ zarr0VlVw*uh9QHSL|?_|n6~_0-P|{PU&%Z3>@2Pgfb_jl-N*Tg87D$Mc%7N1?q#+# z5dIb42X@aPo>;s*=HqVnbpDg(OO9(7TeP*XdgU5)m2qo!yms6q`T4u3yr_Z*UXR{mM5wb?oWrKZ4)lVNZ-X!#E_SgZNrZa( zuxYqm4haB;f#JxqK-Y1E@j{KY)pA8ZiDqpD8+G7Pc{$+mh$QCeX!l2)t8`^5_q?`S z%?$Y<8HtJS8h!Kqh2n7fmZ%*196qC-oREyP#mkV8kW`)+;l(~|Vjia-0*waTWwt`* z1$&eVKeB;;rep-6AQj+?Lhs8E&Tjc?}Kba-+5i<+zo0(E8 zdW%O~TSLot4ofky1G|o7u3VAFyPMmaOy1O3_4l(@#Ia8%ewj#Dy{SZ{5nh#3staH!`uyolvVYYCIr8|Ib2 zpKC0iD_N|dL;@hOz&1?K1IfX6Hdt6*C_#zilIW+Q7cb)5#}GF+v8C6dzc|*NI6nnU?q6O zkXu_#BIvi-x%A7|r?UKf^10`yk*E+4@qbwwTSNc^0F!mU=0NL$E06{k(&n6c%q{gD z_rGw9P_6K#S9IVKn>Rh{PGeM`?lZi;-wpYjE%~xbJO|=r$Q%DVgQ(wMfsFd$Kz#p( zpm1|3HSvSCH=dtrx@Vr%+Oa*^=}gKn^eTKVo!=y^+ffoaUD2GF$CYWDW8iQk2f`7D z(Hmqt5k+Im;y4+0VycW^dEJeR@3^wM05WS~h}5^fG}4s*I9}Bm952VkwWXy)N3xIj zgur%oPGtw45O{mtc$UIqiDPdKWC2T!f=$fO*D6T1J|do<6&-4Aa-wS1AFopnb3% z&6zSUAbKVCxmmbM1C6)2<$=YIbZV<(&rYwB=Qk65+n(YQn^_uqP83FayYtxo#qnId zgrvPWxm*w&cpzY6@0=f>>+VJm5P>5jOD%F>?8eTooog?Y0lC+0QJ&33aC!;t&YUq6 zOcDR#tF0yH%BM`4vvC(N@kUI3VS0#}(2JIyQ5?+nYLht}V$40W{O*bupT zmGV(z}i4+~=qqr%UTnD&%e(#^+Ks~>u!T+g<2J;nqvC1yS| z0V@zVz*TPljxB>x_FKJ~VB6qUA2;!F<5JjOUzL?djB5Ihpw6%-8f=nR@0;|*OXeCy z#8c>CRUUlf==S@>hbLI-<>i3M3ly~>p~;(vQ)pD{=2UCMX3&$ixz_tA6|!%(J?Mf` zQ>@1sKI!~ETQa}r`dFOmJztqrCY4W+?c`##!nYaS-KxrnZ0kb|m$^2)(}||zTbhF^ zTu-9X`QtmR9$<+SW*^b0`5$p6gc7$H-_{cN`X6&0dbo}{*9&Vt4bEiFG-endpxxZw z0!YX&Qy%~iuQt$6TORwZ&;zzn1$_C!1}!;*PfppsfWB}?qTPGqvpbKrG989qTsmJ7 zp;jRZILB*Fy(rsa@fkR2oY<>JR#5J@6=Of1VXS^ga(vBeO~;#thn6V$o@o6)rGG3$M)Qwswu@@pVE}@&5&E~U^ z@HtcPY!Odau%^m^O~a?Rt8R(kBDk&vTz#!dY3@DXEo>1Q9SI7D3axzOLcZEb!dh}; zrTFpdTSZ}%pM=xKT-<$~>pTb)orjh=sS(%;!MN2YsdpV>(IFkf%31#00*P&$&MPxF zVgQk9WdKtj#_MULo$x@Xw&|J8K_*jQVB~85_E3%pbbwBcO}sl0!q3nQ>)d4Bu&NA! zuD#4aAh z@bZ2{LM{y&`y9TsM#=q4ki1=Fmc-@3`|gbM^XjgnI7wn?IJv+84TlS?C-r8!+q1uLvSEHWxO zd8V8;kfa(|majS(RB9~AJR2L=Ddp?7lFETm8i$V4VfaY6Nv@>XywPG271QK`bWYO8 zG~eL?DN;C7O1vZveO!+0>TD^i2^T9*&;5#~8ccUue4Nd+TCoHLB~TIIL`1&6Kn&8W zoGa6KPjG?o&EKDe0G0a?J@h4tlnkHDJvzy3xiiBf;$n|#7#_=G0KS|1os&t+BmKz3 z3KVA(zrnw{vk%Iaz7=39l$lxf zDKO^0+8~lRg6m+5EhJrnH}AWjj%Mq*t|I@Gv_yyr=$gIPPU|7Lh)w$~UP^p`p7?q( z3q~8zMz``IY3Y~si7}Fo2ocB_mVt7RZvD!i85u#jgK~Cu z%?dB-wEz{)%s?m#?V1G&_X+2Uc$$?TTW z{&ymS=>jQZhCSo_#jgbg1&?tN(uOP7KeKEyER#P=+E@4H5834QHenaLzxg&+G?Yla ze4!gx$#hG6l4^hc_*p#<4tJYEG*JVdm# z_}l|-o7{Kbz2*G%%5>Q2`SnO@q3_Gdtqn8juY5aQf4VpxiWf-8M;koc zX)Zv|h6IOGPi(JO8b6!#G|7&){aqdd`PX((G1+o-W2^id^Lfzr1*Es5$^b;Fi8F9V zbLaTr#2OX3+fzVu&*t9kQ$>h|mds8L+=q9>J@oXQJ)Ovh4X_7{cID^lKud|W>Lmz) zoY+9tB3=KMhqrtOGnbuO>rZw+wQo5eE(sX{IxV4ITmD2e`_N-~1={11FK=GqDAS%v~RfBJ?<|MC)ZW6m%wKI`9G&EiZa9PoQuY`nIT1-6PBNK9` zwUiJ_83KHn!LDwyfB}Uz$%B%=^2wU~75DfbYUF=rL*B5B>PCqE&8No9j{flj)BJ_~ zP+#N3Uwmv@^}l%4|6wEQzw#gLy%EmrU6&%WX;E8t#t5$&LPfm}U*Yw1WzqKICTRWy zH)J(?ZqPqJztt2p9;8VB1_EK%_lu9N<`t#?P|qy;XOcdjW;wu)P$ykj|#6xZnBPB1k!)HiZ2wAfjdZ= zJpn@Hfvl;;pl|&n(8{GEm>K*|n6`{7fUVJBi{{Ji#l0HqD+A!wI?aKTiQwAoQ6Ts( z2vQZ2=L{5G2VS}SB|m$O7S&p_Tj9)-^a;?jY@j?+UUFy7V^W@~zJSS1%$k)Y`&pa+ zaTN*Sy44>{M%R|k1jGKGO6mZ1}|kI|A zmf#sgDrVPt1PT;A&FGzQpMGD~FFSd}c*WuV&Jo?b9hs?W3u1 z7*WwLZ;NwH;4=Er4GjJqj?SmeB#5k)+SxJg^zZfx?Y@T+oi^ap*1UVLZm)s>_k|Gj zSsjmZ0X-nnjHp0jrH zqEVu9<25HPkR@&NOeY5E7|nczOP{g#ydJlF5CBc)-c$fxBxzba(tvxM654vb-~A0g zt*O=s%|2zhFuGOy#6DpWNG7~aIMfwE7%@}Ry3CVW)%0rA%#K%^V;jW=M_R?^tExt` zAf}&9?NSIHn#{5X;s;^9sZdLHB`@iSl48^x9Ynu5tL>!%L-(D7%bS_c5TWe6tad*H zW#{QSp<;7ykXEVUNKI^~(CP0@PXQszin|H?TTb%twHX8m!eaq3PM&5GaqQ#~2VX24 zL7&&1bX+{GT}s{JW>kuMfnHeuaP9U_FU-&ekKC@(d0dnBXLTYHOcvp@NU7uS5Km4m zxLuW;@OUoYCz*UoO^RB149r?u@W{2^Ff{h{qG-m2$EW`yl-f&jDPP9JxD?|%zu{lM zv$jV(-|A0S8P8JsjCQPU>Bi0E)e!0%{`wgCoQ{s}*RNln4ICfO667uf0WE&_7P-u6 zdci1{BwHuOC%;rtC!;ykR!Fnok0`~{M`dx)*eyKrTYk9CwPTuL^4PBRwjs&!2gQ>Ck&YpgM;;u*M;r_9HGhM!IcVV32dFu*r z6`oR)HQpiOlQn(^M#aO?wA?rWFtz@5PZ1_7_P>y_|22H=I(`Fv#%z27O@{URu1iKr zN-;u_;FZ_zt_^=eWFS%v>;Xmn59Gd)Hvo@+0We{=U-N5h_=qb6M`?F-By!`3*RMM; zoGWovx!TgVs9pSymrtrZA^@y@!U{M5+4?Yc2DCeqBN?$ZUGtbQnblC27yxXuXe=aA zO7srbX-06@x&D`p8k<@EZjQGIfGdGPD5)R3(i{B~(?6T`VxQwz4}UXmz;bgCtXr-u zd&vg{oF0M4QX21$7F)N6YVm}Uus$PzBx|2CBDL-q3b`SEbp;Voz_B4>zp8Nl$ajSu zn$5f#X%C_#aR5J_9;D6uiqW_<9|^L&QkioZdH)DVqLSVr)=*%(k^Fw4*K8Oa*iWVX z2{dWBoK`T@t{5BDXGGyLMRX`NaMoWrV`R{Ku5QKqbJ!1$OGWB_a=@aq%860B; zT~p$3Hro2(iqCKs2BT;y3pJg(%=(axiL4}d}VqUk`2bQeqH=YY2lc~%5O zUDEq?w^6u^+*8GR!8lvEvV|7Z((!_S|JFR0xu)Ps8c z;x;xGM^RCcwpdr$ z@NQ<^vesyQ;zz5~umt>Fgja0RNYikAm-h>fM&&>Ce~{|yEd{vJn7-Tps~rqCF^zxC ztpu9)bY0H>&)mA@`{QX?$B>Ty1K$5(qu)O#fBPl0d_|g=`C$ISVO61LQW<@`B=}s_ zRNw2!rPf_H+%2XsAaX|Ncx9jxr+gay)12iE;CAJ6*{ImTPD$Llz4bglDae^iae?t$ zbVRJT9bfosQy)lmPkxXTSk=Y%bY&v8q?2{al6cP@DAi2~g_O%T^|$@>-{sch&ye#) z^?e`Pz@GTY6Gqk@Q$_9OgwE@B0@=lCzV8E@puxO%Er@wLUQ?~!691W)Ew#KdA&0Ly zw7PeAeWr{`X5~521&-!t+54Be5rM2;+;(qzzA(0xTRU=R9t|WCISoEg|HPoa%6&eH znQgx3!^vgR%lX+ZT(cyXDI$}#)NM22LrUnx*9TAKRd(a~l+nx=6}9&C40@V3iur*_ zIm}&HT3EAB6XP%Y9r89fCqE~D{oWbJ86|g8!L@r#S^@W4T{UfJgQy~T>6=*0b?G1X zKa5;=p!aY4`b`{VkaR|RI}HyH2TcW`PhKVf7^I~sdAYn`;CzG+qt-Rp3m%3v{iKu< z)zf=(NQG<)2RBw!9ad`dem^0=yOI;+_t^53Z(!4}BP-VR)9uOqffFM#`n!wveOtY$ zulB3Ql^I7&0s^F+Pz&0)9+1&Zx4TnuudubGd5}XHFZGZ>Ed~deap)uspmJsP~u-XEyE2&1em6eN)c`bEQE)R)SfH{I ziCF-vojl2zpOUuVR;MH_EaT}}%;WG=AUQZ#s!7j-o2T7zKyb0i16_3k`}1(u3y_|r zGP=n1Tjtw^m6zHz0m|MFNA*Z>f{x$Plu`Gqk0G8T1j0&AqAdf2{KdGD0?eI~LqeU4 zbC#=zW0`|@lP4b3FQ0l!yMdg=!?-eY#D=&A-=6?An@x165r zSYv#@)W{m?*$Y0?%3`_c(WOuBe~l!YG3W{j4qpCF=_7Q*-GG+(BFw?r?tIrpA|*I@ zS5|6WOiWD4>!u8!f`WqD9{4eMMf1;Lc5Pe*?aPqJNE6DCWd~e(B|XewX@cc6IWe(| z!1XPs|NO+?C3x_~+|)k~jFmTf{#5-O{Yw;bQ0Zmv@%k!2W8~zQ?oUQdf*p*~ws^mk zhM5XpgeUT~2J?^`R`$FC zHPmy9L{kzYH-H(07%$ap?matw-%e+|+y(*>FSk$%8rNW0P^JbE3ZE9B5wKb?Q%ZHn zJs%)I*c#nkFes(I$s8;Q64wN@`F-Jb;Vp@2{TtpTy50e>(UuxiM?@lPU;mgi8hRI ztq{m*;c$JD7{pwXK=h4b-EL?GWuR$BZ$X#uPkni>hzi3bU0CESGpabzkQWhw>bhQt z`qwR;u7qQ41OeY@wX^|zMA`9gaZp>NpPd?Qtj7SHaH~tn8>v^E8Azh11(#~x?~p*N zySs%&zAvjh%DphXQ2paQ-ZC>|P6VM(#jW(_I^LaEw7Y;-P1?{=lbXqAd}7Np#KgL# zalUpX@@0>F*X?Q^@a%rj_E~Sps7-9yO9a4#kI&S9CTVVd9!TZGUAyw(<^c*RtFHc& zZ)b;TLu|G4qrRmj1F6olrdREn?b*p|vhp>jGMlAeb!Gr2`S9%^JvWXx9gu2psi%6L zt~>WQEqu#bcMz-kK^gZ^N(u`G(dX5|NT5;UQ1~S*#ykAR;T1g5U!k2~e}~1ql9Cdn z#a1ONw7P-?h-Hh;dJqX1KsavR8YU$xIN)xfV`NNGGjZs4M#zEBa>u}R@-n-l)yPx5 zm>Ws6)#u3GQ&I|+33l)!ce8iotnXIKaW$rBZHd1nO~}E>dO(b$Da){9M&iA)s=eT2 zb8-1FT@Tazk^-Y9XYJhDAnJ-$zIWa_h##p)1FC3ndn}M` zXnU=7&5}cgg@s#7@jAq_LB6X5+j7kN^xdHjGcM?JXAkd@VqU7zDKFhI9k3@P;6~|v ztTY42PdP5x?S@@KH7_KIjy3&*;Y1k+`XfK0jOjz*Qz3@)z=h>WpyybKpD0X;%J4%U zjiOBThE4Kq1kHeq2yuX32g`YAx~`RtjS0Le&=_ z+MicC;zbpE%F!q!x+(NqFtl&Jb1q!7^-d34^J~#lW#%>uO#h0~fzg`@05gxU519+S zqgNxRpyymT;&vtacIkl2hGbU8R<)Jsj8MLVI?f2u`su&0*e{>dkzt`(=Dwm6UEQe$ zkIPknva_*K`z?%0d+Pb3R+necxZYx;VSmoMRMJK;yxZO5Zh+E+>pV5Kb5=6)87>m@ zqaq8}?+q+Onwpn^PCR^F#a-Y4%O;Xy`Z~Vn>@7&r-mxV~m0o97wQ{?wqnf+m$ z^&zN@>xNY2-6FE;!ksy?f?V4T8Ru?|vA!~yuP0-N-$<&SDXzaq$vsimJHzBJ;WI;| zVU$@S0+mLo%~-IKQlgcN{^z*0Y3V7W=P}6$_HuIJ;lJDsC>wPn?_ymD;d?cvt*W&QwAG?1$(fmdz)(?m%t)+vTSs{6KGX^QL{1G3 z&aadF15sT+xv{XYSVFM>`N4|$bB-JT{|=z;qwD&I(W5B=F?d1B()gQ!uE=ne>{a^4 z0V>x6m%(GfDr~~Z{%&x1tEl(hZ|Pz|yx1ebg2O`{cepg6I#^9u8^S|RIhNn*uRKtp zzuAYCgaaM%sf(ux~4Y+v2fNGfz{VAmgSnP3{ydc8Sl%O_!2py6afqB^j6I-At zP+5{@%rp(Bwq3!rAJOR+Y^}%pzrImQaeGjGQcXyK;bS(sLhxs$>LY!BctkFR4ifu% zz30pW4Wa>HDB1sOgSYKOHi^Xb-ggx6wEpk>b^wF;9w8r8dUplA#3*wOG~~I&%oVZl zoQQS3mp*WLJ3(;(#Pt8La54L_EQXSsw*eN^^NAp5!Ka6_k(&b%^yy$LFf*823wqhX zdcrY#H6!O{wHO}x7}#OBVRGTD8)JPqG0*@0nEdO#(-Dd=gv9p7wkPDoRC zs9oXs11!MVXhYxnqQ5D^z{0$A!#U*M9ffJd5&;5t&4jB7X9H+Y032b@JT`ToFL{df zE+2~`{gh2IUwD8f*i)S9|0->AK}Q!&d3p{D^2IBP)ERck&>8e}{)09Djvjkg0#K*B zJVU@Vad?>8Jtvfa1j$K2>pvq{{y=GxOx-R1$11YGBYCspofkH=cjVah#Bl8lVe7qL zotIj_1HzeYE~ZhE!#(aOdItJQ)=95F4SxE0`O&ui~`W9|v5HSO`aE+QYCf z-%<_sC&1{vAg@AdzQIR8J24qO{s$cPmZXMVf#C(`r@@I^S>kGcv5TX}{v6e<6L%m`R64jgRv8 z|6u9G=1p20D@{NrYj>dXG4F+5pk}RT<~}O{ThCB?=MPY9(J?BBV6PnSs2H+tcM9jv zyJT5E2@iI1n@S)t9ZAalO~~=`8SmvTQqVAC}?O zl)vcz&u9P-3Z60htdbNO0`=*A46f?kzC&2)3=QC0v(OZJFW-ku@Z5>8RP(NQf5Ub} zoZvJG`>@#HGsO8BUy2A&O1{}7e>wcG@Bww6g^y2wD{G5}18rV_hXrrTa=PmY4JB); zCrdHn?o`N~^x8jaulpVNoRwktZ>hJe4S6UpY6nkmG?fdqSS<&SF~I_|c0GI=4=zoY zG5sF|Fm9#F<_eA`e?zaM&Q!v*QchNQUBt{RcCj7tM~%rhJJn|b;Na6=m_P|=B7Yy+ z7E#pm3GnhJ|D^O7P|pASRpbr5zMCsR9vveJO_%_lO#JhBuoQqOe;@vJzI*g(edmfv zviJCSu7&0=42Xmxs_MzK4SB`wxQ;WeEVwv3iS>{nG&>nlsgR+3`xn?C0%cZIdTtQX zS`M-rB(V&&QeF^j|1?j2zS*fM*|A@9BTjjdu_Xf|%=Mm;q4z>GdlbhkZShXmr=Q^% zm}eLBF*mVug84t~NG*On&hbJ;}X{z;HL|A*KU0dMp_@le+BDt?$zXH1Z_pmvR#o$kFhD3CZ zKpp4u#QDOHCy?>wN;-ci_>)V$a=FtDDvliMen&xvJK@nlE*%qEmbr1We?Z!>my-ep zq%<+{JnYAN8BLey7m|{ypteM0L#Kt2SrdHlHptJsc@Yx_D+pLdt8F(UEIiF4M@6KJ zm9KpM0|Gz{Fw}YJ=);NUWYu{l!Vj?5f6$hsc{G!3@qep?(0_g&poNqj;F~^EQS`^q z!iKQ8ie(_T274x4hu$_mbaCi1mGAEw19|~E`cap&knP%*r|b(-HAbIB>^I*>L$`;7 zu)p3XgqFZ?0jvDk`T0MKdV}fdm_3N~gv`wT6O$A@;O3-&MSq~I$v_*kZcX#|AI*Dy zUSG@TF3d>~ca)OO$ibtRdKFTUYQCKE_OHHn=k=ao0p982GQ576A@g0;p!ie473t` z@qb$XbIcf97seuH`eAB_NqogMIJ`LFFbv(7d`9o8SN*oJe({mmuoy^plScF zSMo&fYRCj%HgM9zuWwcb5P`f&_Q>1b26L4Q?U0hv06(gS$Hfx8UyXG6Mt5 zJ9%WEXP>j*^M2RY*Zioi>F%nju32@jd#ze4_8{z4pr7IYMQ}S9lNt1MRU=IcB@Exk zm`QpD>va}CFkwvDv}bf|E7zS(y9$A&!)mJnAVb$pWIhZ}L3Y38FY=s&_TGlk z2f(nJJEsT4yvt3T{ou=zS;FM7Fr^E}_^RhiV26DZL29v%{r?om)AGgj)<##udicvD za>+YlVqzGCgb{tJ_tCahQJUs4hySH7RQ)?W(@>cb{gwxwGp7B`j>iJ`-3vgU4Lfa_ zY=56;=eD2tl8K9N;JHzMPo`sid3Ms|&dVr>QJ}pJuKMj|<30s4X!Nz4I!p0<3ncP8 z${RXf5w5Y4^11&2-JMSn2;98vMMo5@32)MO`ZN2OH*7T=q>e_AQ<)zq0i__<=!Gz*J5i<)Ybpe$_Ua=`C z0L8_{_B(i9e@D26mn-aH67noV|Bk@X{vQZj`GEyPDURy$U9GPoKL7RJXCklBD@yBSQ*Uu=!?oBXnP#BXmm z4-%PI!CbIzhCfeG{)yzjna1MY-FYE*X8wmTz*jCJBimM26BaGmsV${-WDYVhPkZMk0fkv-1L^`EL8L8X`#e} z0r0)(G0IgWyb1I>)&9*531S3os2o>6XrcqUrlvSlAX7*EtS+9Z^Grw2;8HLPM!T3e z#)qh8$_H7H#7b+M#_0Mk&A*c^LFMK7&?p?&G^i0S2+5H`5uh(5rnQi)pl>uqG_5X zzy3)U%B^H(){5}6c_5#YW3tJ`Z{Xj>j012yU5A-S+>#3he>* zq6Uwtai)j9->lB*!*8PMBGzBr_{MI^_a`Q~c&Ve)z4A}zJdjVHbD-awAoRGY*HCo; zx}-)xmrP?dFJx%3{Xj^|I8{l1?l!Uof~z4!O+oi9uBiwtzQS9LyNWQ;a|Wk^LGb*F zgH8ir_@$v#AxBmF1t6`ZPU;iLM77)!PDMrKC45%Ezwyx+0Ra}(jt@;YO6eUx!yJE= z=wkqKWINwG!CKRCQP#zV zWMjV+;IsCBTpOCj*)=5@SPKDFR(n1{>#cw?>r#fxw&+uObIOk~0nsK*uXsqI>jD7q zPv$7@Zb5f_!&|f3kw(|$bhdzRGMtEK>uM%gdT!h+~ zV5P-x;FVZkiuY3f2Wo0+X4YW{NE<4tm|CZxe1v2c)Y^hWbH(-S{BXUXSggtj z0}#{Is}?$VmPypWHf#IwO%VY)i~{V0avjOORfYG+c??a;gW# z0s0HDIv_1*s&qIlH$*x)Pa_@n5*ncf`*M?v z=Po-hV&N(B8W(J2w_fOXkZXcg4R5Tqk+94w6w1C0fi@^r1J^Rgp!Iq%`!?4nkCWC?<<*ZUo*ng{aWYAagy#^ z*D!x)oOHDH00XZ@qCMFl__oEbzs+`GdY}<3YHBsbu^w!({c)+EADP;L^r@);K+C85 zSA)QeVHZDh1$%_9zVC>#GX`L&+qXG^%O~&>$zZ$R2cjV~Fic6w6we&f;~qguimFKJ zO*#^M)Fbk~`-!~2MgSu90O0e{UctqImTd=+si*}V0n4GgNwF1K6sh9ePlNZfxMrJJu0)qZ-(a#Z)SP`Tvd z4f*SLHBrOrX4BtJ4BcPl$|HU0!Cy+)_cBv0Uq^=il0NI{Va<9|JYD!Z-@~Vo5_<`y zP^3`x-1Q)w&!XX%>r5~JaUlgWCK{-Hk%_lfQa12fW9DXW*8K#foD-ERs~?6rU>^hn zotCsTuHyc)p@%ZN>_YTxC+qdN_Kcai$|cPAg9b|ZQ9KRzk3m!Iydnk4Mw{p09PFV3 zK6ALEWp@!#QRe6CY(XzG;)Qlp620l+D*G9-^*d+3!zVBoE7kJvaZhVO9SprPTaC7( zEMyYfoi11y2@hLSraCiXnlKTYD%^epy3hPM??VBd!O^LyT0)V+bRl>*o(_LEV-Y1!ePw%wb`)>-zT!qe19R zT*mlxS}9^N(Pl^hsHyg=YAH6|do6fMN_}E-s36@1(wJBJynP=e>@3Uv>)nuT0kSru zEQj^an$h0^^8QZyeUVMQwq+fmqyZBxA$GR}bUQ0_RG;5g%vvM0Kc^N=Y-pAkSI=LM z&RBrHXTTX7y&#%t6H82a;9noX#K35e`>0E4lRHEn-q~ow6oq5uPrvN0N%qSl&9X|i z6069m$lIdbvm`=!Qk5h0e!Ez=fkDv%n9aRji$rI6O?rFB>qM9f3*Re>fhOlOo(y4Y zu)}~(ni?n>Be7fW14D0Pwra_LECgtpt*5kiJq@G2R;QG-3R+ep%pX7VExt`hz+|^d z-c*?_DQ@zkKRQ_pmBL|EbYI5xX>*4CWgWftIBF)PX8q+SijAVh2Pw;X?O%)SXs&MO zz2N0}N|AgP4-`Pj`Jx!uPc3N9Q8;rItk~`Q=9e}H-H+8Tysbd;1|yW!299$M8J!08 z+PViXMg=B!H0$%FNZwY6@E7g$;|}OsO+1Nf;@pq(7ytt<42P&Sm*>P(fQJjeM1zMR z1Ygp~R26gz7XiANS3)bzgdxuzG#HPomCP!-0WDho?f3J1&4pCrx3h)SrFiTOhVG|IuW z^_15lw(j{3qFE%Q=erULKoZngOP|nQ)LUmvV3~DQ0iBFqVp3b$JisZ-0m$~6&8th$ zJ5xK%G|dFbS+=!F{dOb(bD1uR`RgG|VaJDnd0zD+Dcnx|4R(pke)q}6B0*WpCeF2@bu zG@>=JE1}nj|Atu3;PQL+IXGe}kcC?S(Et_6?*l;fQ?r#S8YWCvNH5{u*V_ckRM=bAcn|{K zv^i_360MRF}EsTyQ~$uFxlm;^OB`nBc19x~Xzp!e-MbXxg6q@4q6UG-Dt2<+lrxDu1LKVDgWkpPvdIdHBOuh;jEU|_L2R($Y|6em6N*!!r z^&f*|lX#v-L53!_w#X(XCbZMp>QIB&c?G7gNqTiPOH@=82tlaktuwVF1qEH${9Q6{ zN*$D-)JN?MqWY&N#-C0ZUh&vFm&+1YSZn~rvf0NWe5hoSp?1uF!O!;n=eOVXuy*bL z1xWoDXL>Wfb^eE5|GO=6eYxKbAJAh<_%}QH`+)te@Bco$J`R6VO*M6;Angx*BN5-1 zME*y0-n=LbT*9z&u~LJebgCw{?>*J7ksY~GGJrOR{e8dspAXENm(Q1jf1@~2`Y|p^ z$Jky@!zRlG9Xg4AA5LA{c>IcPjj`x&1)2u zKxp1{hIE3=O-)|_6zQTa^~*Uyt{~}8Kc3cP5(#izN#gx8Kf}6htuewPt90uNN#?{#lX{oz#g)$Syr#vy7(q+(|s# zF8<2^9ry|Tt6A#e4wZ=>_EQ6GY{3>k8E(-R;#N4u$|mQDbiZ-mw5+Z?1V@W`@x%o5~|c(?5L#VL3I)M?FuLFn~j zrh!2uK}(LkLRrf}$H~d)qMab>>!jkZGLu+m3dE6y(f;uq|EcerMT&(XCQe?X#6%0Z z37qg{?&JMQNb{Fgf@@3%9W+!Sy9<(>5sI>FHL{fsR5SuVUBP>jA9)7p(%qsJn$m4N z&7G0e?J{FeMH(k>diR)RJi})F?Ir6ZqhpD z5Kd)P2USVBK4SUc_SBFb>AdX)?z#G?8o&|7gL=*lNPTlfv|KC9l9f8}h3T=WKSVT_ z;FV#^sa7oGP8bk}s&BFEIcUFHzff&rw~hMMSLNftC$t|`L;V0-B8B$EGPEz1(LoZh zN5&@-(;V@U$ggV+sYt240nv3N&G2?Eb;0jc@I=t|<^6r2ZtP}L*yk6Cp*zXk?+HIL z%fFh9tk+iGU&5`vByXM*vf(FN0djCF?7J~=SS`Fv9)FJL4@J#4g4I!F<`B8McJ#1) zfT5vG^q9CIr7p-ub2+ai+nNlZT5#JYAQrR?O91hu917qqPmqWn4wL1|H`iRCflx@L zAvVJFW|?mzxIXZ>8?-7} zDz+d@cQN>kF`fxVxkfz^$!w8RDoG$vR;H*jzUI#eQ{94;zCdbAoiH#Hth7=?D}9J5 zwzdkGoD{ns?{|0B;%szrjYqS~4fC%S%GTD9l-;Q(1~TO{?YU(<*0>5b=(PkW2swVH zKB6F$8 zM(q+!6sW7g-FL_oZ)#wtZn+cI+BW?;usd1isxkWDODVsK6lkLF-=Q0K=j%17-agqi z{NlxuZG~fUu*ytQliw$_J$qvCmUO5Row2gAQR;I`xeT7>yZE@bQIkvKuVMU8`wK2! z`Iu&O0&82Gj$e|F6tHXxWg1%1^78BWAWEO__5ytU!#pU?IWmBgXnTd=ja1Luo)ssIuv+a>5nA;${3F=3xw ze>ttl`J(dk2UnLVm}yhOKN|s+=%<+GfmF3$PQC5zunFB(avbzpJ=y0^-OCIbg-^XW zVy|q+&M0XGQM2pa#U$cYyS~$PSk9ulpgk+)m|QGeW;>lUttkcEjpt8Z$HO-fxruTC z3+|X=I~hH+wP(`QBCN%n6St#sfRP=p_<^fSab6mC*Uj? ztI66003c4bur6=k%&rigCpQR-)~kaSmXO1>8IP7!MJLOPKFH2)IFSxk4d)r|2Jck+ zH|dc0#hNzZ-`JXxm@lh+uh69Pkkb&qs;s#UN9b*!Gq6qwlT(cX3E=L~8h& zCugPLSC**pL)~lc2kC&A)wYJB@K)uw`!4_LCpxyAHZ(y=-EtRVch5wqDiyG%H^nzhlodN zi$Yf4wt_zeBM*5wkRmI!fBjnGAvj{AyX2sSk?@A2!ENt%XXT zD$t~SQ?tBeGVd%o5(g>?j#JS;0&{ruY+({?aKg(=j|e9Q6MT7 z%XeAN6vE^$AACb3h%AgWsA!tp9fP$vJ8L{J@nCa!0dEA!5hW2_RO_pP3K|Fj8?|@a zQ{+z#4G9UF;za;8#*t0?gG}A^PO`fkVQ`iX(W3e{l!qkO=9S~*^^TGz zOJ5c*S=)? zu)Etet}v+%urMkMqm5FD@Swf^GW`cnM9S@zYxDPmR-Fo?*Z2(SdEQ{i=K7e-hSM9& zsm<7nbhXcwo`&%XD9*^(y43{gBf?LGc_1LbIqk16`0UDC}C zvSj%K&Jja3HqNriA>M7Z@j2b&r3NM-N44Y#fBK$CRfG1zFLPy`sd#1SV5oN+eq_J? zsm&OQ5sTc;(ri4{=b~AjYDF~LfLzGeGr}-z3!IPmhyZOZBrT#?lvaN9JP=_04n%C` z3_30OjI3pO9W^*|W?=7|8x_uy7nGtK`r|&w42vasJH`QtNW=@YgFjnw1c5jxB5LxW%{UHAMU8bY$d?l?; z3EX#U93^S;$x?YU+fGk3`_qT~ws5C_3Geri`L{qAb<#n5kw&1}{OjiAWGjB% z&l!Ab?oY-Ncl)+H@N&Z>W7SMhe}Y46{OM=5(FYg4G!8P<<%p!O&}Gj)rfEcQ+J=&3lL6y@#l_UV@CE_2t8AYB(_}}_lp1ac<`$G0m$@Ed&zce>Y zk$kz3aHkRqrpCTUNn*ga*>DeRvM<yRqWpD8 zNPbb7K)gbWZ`L-m&1wk)PY&`PG^Az&*_`QTsJ6?EUexw@4fgS2b5HJmRFY|jdZ}W- z_BH%e65WwIS;I1AHV9KaS#o=sdAb&=l|-b8*cy9MbS{ake=9g3@Ot1tkkX0cz2Kl( zk62)p>C!9P#RZJcCr*^a(NT{Y=sU@C$8?aRp@SLLnbUZ2XZ&#GduI+ zlbozBH{NO*7oDT`m~P{1vhVu+eGYqDe$vtv%kNC?Vf=JEiIvMEn4FBIySBOwjKPUu zIPJ>qpVdvR&l)djsE@`POQ(tTm;J?EBTv8s0UYtnCSy)duBDuV4|YO5g@9u~S8}a} zk*w6aiG4V1H!^R(M)U{)Av}-v(I?eTGQF;oaFxr6OpANE!HyC1N9KF~Dpt1lj${v- zD?LF}Ta5+qxj0lLg~c3md?k8RBUMro_dvj!Rr2OM zY+6#HGqzc#pAZ2hKoFy~DAD3BC$@VGP~Cox-D6OWG*(Tp{)agiw1{NBP?nIN7Y zw;R->J$lKTS&-!kk!<5OPFjp_-Dk0xR(%Gtw(^ zbOM5KiHF(1)Y#ck?$(5p?6mr7GFW4+aaeP9aKXVF-_J4XVlYkUu|{wIa?Awebo#N^ zwdaY&{Wcrk7Y<-ds@GL|8?rlVy+jna%mr0_MCX0Da+@~%y5a=^d|J_q> zzi{h7BQ3!qMlN3G^(l4a__zeC%Hk^`gse5PI@zUJz!_V!5HxL}2x)m=1 zva3fM$f;dj*)&73` zh!F4{pU+}5+~_n@>Iw>P00EW-Irs1dbkj|`-(ZeBrtPOrHuYZbJ@g--YwL#H`G(^# ztr^Mfd_t>raiLhW!8wB@!`-{>#RLJeOnHz|=ERGI9VY}4c&zwgkk^Cz!AvfX>|8jVkgWizk`nk+KEGiNS{qZGn z9JSGUh#9Ecg=@{7;AJJ5RF`fpAct}8T4~OvNzHmT1jAl*+?^;v^0XA{X1SuO`Xuch zL?h6Xzy#k5G`hpH5VV`Yo1sAwIla*wlnOQiJ7j6LpPu^+R)S2DB3x(Sd#@*>ZATid z9?5)!Tp4VS7Y~kHo)^ec_-uH3FlU@ivp>o(cQi(xA^K0<+EGvpgVdqZ3Vxeopp&+p zrLl1TcE2qv7|zf!+X+69#AMr9v&{@i`&S7vIgRlmmw}N>mtLURp4~#&oL8gU$U?OT zHm*INO;x#w%e>+DvdzYnU{7f$H*lF^iqXRo{CeHZ#+(`AnwcI^WPYpGPk ziYr3Puj`_efY{y_TGie9Dwj8ez3V_qabuvqjh(hqW*avbkK7{-KE9+sC~R z&&m2O_-c3bs>wP&XapG0(1MC+jMi~JEfp@;0{S(`*y|02Hd*6*u_wd=8;LLyU z6mmhP&+0EAZB!XYssr)M9hz-N#cNd(6Sm@+YV+6Hi9@EIV2e-^UfyWfa*^Zh8e3hl4$r=z zy=hFuE~AY2@Be0#4+~2CnNaW6sReQp82I?{(fj!=f6cpmZAy#Lj3-808x6lhH^13S zpFd?cVqDNj5lW|oI$imOpqXOFxrb*aOPPkq>rPmRX)BtFIV%0HH^jo>2hgR`A^wX$ zec3<=f!O77wGPkwOOe)1O^*D^Gf}q=Ce&h+>g)OF;@u^z7}v6$rjqmC96iML_oz-t$%80hy0tiMh;=y9d%lnN;jj!Q`07FG{ryh9|5{KJRB4 zzb)X^Hy%Na`ORv*b+Ra$-4y3%evk?JR&-?Sn3?H(+CqfjnQ*tLuZNks8lJJ3ED-ehnMv=dtbSeqC|*+fyCe^G#Us-*xsc%dt`f{fSm2qeP;EB0+9b zoZk!AW5`Y#G34dtHN77r?C(3;)Dh#{H+SYOw@?%NGFVf6z-5fVDuj4Ces~L7 zo55V_74*oP^AAd|kH$)3#D9i=(jOz1&s1CZbY`Cf%Z)*AUeO1!%LpDer{>WYSZ=oE zeBa+k&~~jqGFNP;_NZXZ&QcZ?+=|vV9hRE5ym5REzkL(d@71~7w%te?Po32l?0+kS z-asY*BWE`Z3-F4`3=yLVq1d^RvRZDKv;MO;{vwNl03N25$9$?Df z=7JEOrg8lhu4J1w>g+MR`!S3!bV_L!Sr5Vohj-TI@l{^*m+vF11^e3)0`-$t<0}0E zZN_THD?GRk*Mhf0WsFegmforcErg*LcrVTl#!A%JQS!ZtKUI!s`iH%aZ#`thBJ+fW zn0prMmnhd?o(2gr`$mH`CvS;cWBM-|Lhw+(+%W{loAB8R`7(xL)^h_PC#&v0*k*)X zm+PZRHcleboa%un@<9RALmw8{9GIZF0nK(hdpkMT=>Pi zm*2jw#h0@I2kklAKPLbtfY+~w&PF?~$H5(JCv4|@=M0(s8v(G*H&+-ZL+^OZmIp5x zV7(AkA5Uqdt=Na zw|zbi5$Hb3e3$j?zN$4o3ezf$bgVoe?f71Kv ziyzn>8a77`4Q>UES>s#b6*gO@;pmbrpW%ON@_4^5{T`8iyM5kZXDO0tuLp@~=ej^= zGUKdn1z0)1rv5?PyG#D@Iq-ImO5hy~3T0-#&i1FIi~BOB+Wg{_r?TfkoIrS|`ChE* z174){Cz{Ulk5ZLwVH;=UmDNIN>h&v`Wb>?vVd^l@5Zfni2-FU2EoXg)zrIU7eps~C zlFjDNI*cFWvUxft^$ql2^|uQY8)E9PAy#<%_Od%qFZ#RjRw~-FT=v0N>c;ts<7QCl zHEpGul2y9@&QX9`JasemVGC*u_>DUjP##3)%alG8I3eG!Zj)mAaJNoC0`#s`Zn5nf zk@b2sM=tuH!}HL>>@qmBeSbR<`muyVr(^#p@o3P5N$3N;%GmUQ_Y-X2n88?vofXR7 z@qk5EuDi#^$JIefNJc8cTAIZAh~R$iW%e8>@6>UJ?Y;y<*8XZEdOz#(yL}YOT+1%+Djc(R<=0)}7rD}gYAvoF z#PUIA?yI@KUYG4VPaHKfwvCQPf%cKdJ8xtpg&<0qgXz0(D>h5ObL?qnk7$F}BXwvg ztk<14S3}(Pf4po}e~Y=B;VfGX-in+Kh%0b%dl{vTcaMr%)-SGMPgKzBl!MbE=;B!; zev!xJ1sRj{R(CS>MOQ78%b1!!v;7MABtoc50*{ad00z>;&vSg+c(YEp9C_%DKqgmg zI4U%FIe5c~OyY`GEwJQ7YsALZnbM!j8a+tuJNngSxz^)BW^`HU=dpp$M8957*{z2T z=;l7u1K7+3n%8lvVHF*6Ml! zj_Nc~ti8^TYx*K38AG!=cTub0>)U#@*k*O}3WdK^YsNo#>Hl}x36_Hp6tx72%PX-k+^106RloTn?C}nM5B&a=tuHb2Rl_bd90RGKwBQ_ zT(u-H;x|oU^E5H}3ZWM!HS093zQo6@KNZ%8_#lroG7aB3g+OdlSED!B8g2N{ShQ5(RuP^^74dA~Uc>CpUY%5xO0<+R#?gmTAe0I0cZu=H* z;Bx+XPoRwdZ3`M!QHKabev{_A9TIt8>UZb4nKsE!+xq3t#APmg4 z2^lkOR3Pwd_!HfXB6h*J8@5DAZRQ>~G*OIR%O{?~+QMwkSSB!E!~6Rbgh5E-ICy{c z3OT!j{p6-OP9M4%0lGWaNg93&8ed(CBrLLX|6;TE)A5`fsllE5fjnP}wWyk~dlHNH z5q%q*jaugI(p^WQ`@kBNNE7r%=-qh|FLwsF_06W*YJ}#-tGH(dZk#CZZMBT^Z6rQ* zL|BmtDO4#XszWzI|GwN3gBW#?+Ttw6}l zF&(4)Umcr%7xAUE^wY^g-05=T_W8Mjre+GXz0@)D{G1#>`j}*;emg&~g{;=g&IB8)ki@1RRh8p%SVhF5gEzjxB);771J*I>z0fV z?NL)Z=!TOzn|ajyDUSh-h~CYO-|0_}etpy~{`)F(ZQ0nSiet>6R)T0r&$j`8)qnUS zO7hOCPgbw{Mzw^? zYNp7~QzjD{?gU-*#U&O4n-P!ux+l%KUuV?HiY_Z!!PQ`%gXhWFW?w&wN%ugXc|p9l zBRv`l(E#xHZZd;snm1D@#i8>lDIGjew@~B6d)mfsA+Rd+7#X|eGDO$t@}@HE@|p{i z%@q!78!1hel9DMlfUJBc&{x9pw(V@Tnj}2dpr<$Ug?w2c1=TilJG7UHdiMa!w7^DO z`|rmH{;b=`uk|^`#_3(=u-IIwSX4Bw#&T;^sL#!Ci4YL!KQR8-7##BsPi^^<+(1lS zU-bnx7-vT_Lnh^@^I_rIC^-rT_Lv4&0z5Rt@L+Tnwb7yBYIQ^qKSvL zu>`4Wzkm7Grn=_$Ku+oba%CO)k+4IW*R=@^P?=A=@d^8KXn`dP|B``0YenBd{11%7hpyEH?ECJHd=)ET_bwkNOd37FOHE{0U( zp5K()GSt<8H;mptS{4*pxY;PvLC2bzN|3CzqT1eo&_Y448)OHa8pa`eJFT;=2M?Rp zZ7ps_(EhXJGVJ+QM-4l%SO#Qfk}?{9 zg7r9EF{EZ(8M{-SuRV<%mTtO?7izu%x4*^K(W<9OB!za>*bE-dtRLk)Jsp!(-6)|A ztkksNW82uLS9iH4RcM)C+F-&EuL_{WZb?4M=hhIB+O0(mbDGYk6mJL+&$q~dvPAuJ zmYQOh8bqsK?fOpTJD1+R+^mF*?KZiezBqyh7RiR3Z7B0vb2Xnx#6V3TmE75R#qR+& zq}umwNL^=@e&=p|@{vz`zJwkhH2eM=qx>|gh0`+v{o(Vb!RQF>pn2oPf`$#j&8>Y+ zrgpT;{8TlNU)$mZv5A)+7aD%CN6$XhR7yKFpMObit6p!0Y1ccWyu7!0#&c<{v}u2b#C7e^-?hW{;3Sh^ zLll`-d`;9&R2k`_ZAg@TJBVujr1V4*?9FsEG~(L>DhPil|AzpL~lZK@K; zY)455eK|QY_`&ECQAOlkf0Vo}k%Kx-QoPNqwNGKSi?GQpS+@4t$wPbp{;x91-=g}% z8^2-Nq2)mfm3>T1SD5+RW685Q62Qv+3en13ClO$7+Q)eWdr3U#YYj*9!2XQe^Kj5R zh{*+3C5w-uLf3d3nt|DP+Q|UY3~|@fcF~1xSf@7;fvlGozd^t5P&(6E`21_)&tE-g zjN6?DuDRbW%E4qw&D46rn{9C%q{t!hm5$b=GoptR0C* zCFEXpLJy(IK_q`T*5Q*Z;J4b+X)YqUHZKjMi4Drsc?gTKf=7^i#u{1sjhl^^FaJffP{ppT% z!;#(J0Bd@>`MBsQs^yMUr)ShX zNA$I~+fEufWl1m&V8z=>YJfp{CtMANpY$|vHMO?_s`kH314K)tt1K3PS!gF)yUmhc zg4wmrQA6{)ol|{%mrbSxDPH(GTJoH{ue*wUqoJ)OvAduY_L@DgY$h8z7-ByJk~dxE zuIGaVJZU)FhIrTGlvgbE>iReZPa<4Ao=((n-`iOG(@&tmOWf=1hwLRNnA}1tU698r z4fu+5N&Z@jacvIk!WlBvZ+Yv)97sKG?H&fiUrc&+DGEj%47WOT_Mf=xiiE}b>qy4> zCUIhri@TqWcw$7R+}?4k-;s`{Gp&#N2D)GNBUDyzz`lw)7%B!ky!GlWlJz?ysAw*L z?h))C?SX(vMXvF#~^y9tj)Wbz$rLS!H+tJ$XcUW3gb*Syr6$CDSCO6~QG zAVmfN*OJG@zTT*Qg^B7I@*&R4&!wNojP{?XT2tcHao)Pw;q}**Eoa{_bxP)^4!J)E zP93K9jV*TZ8EuX>xATpJ!n13-0lHyC9>EVWD>cliMDTYvH$O;+I@}z{`pbL~Q!b7< z1;IGlaB$a41*c&jr8ja@i3o6)Tc+9?kVms8=d4 zJMY0$kTG@gup0NxU3)g} zH`tTci>NqeG{((?8t!=A&lotI(~?5R>^DoabUsk?$pmm>5^&zU)l^fj4>a z^M@SVz2@#!w}!Y1keckUip&&WIq%WwAAg}$%rKdMp~tPhZ~K44-XQdUA>e;2iv9!t z{+cqTwxOq^qoAezVBNt>~$2qMKb$~=kv#e51PsycPNIcm!N&+n%zOa)) z)+7vj*K3%Tfzw?1vvAf86Gee+hw+BLaebI{kzQ<*I^!ER?#v%dRo6#;eAhL^*o(KN zpS580=BL;*DdY;o)v5uw2&$TTLb&vrCx$Q)YKatMp9>EUTFxHY_%xYnjz>qFnaPK` zLqri!#|~fbaOe>(Rww)ukZ;#Vo5;-%-=D2I_4W5(PGX&ZwWx0>zKVvpP&+xfUya1T z7OCoRYklLKpn3m3MnWfkXT#RWmGX~%27q28cK{Q3J*kF<>ca^G?@IXne)c)wVma&+ z-BajnSE;$&YHlO;A)WH}qdIb;GasM%XYgY4=^h`qoPFG`lGwhsjc&Y-e$+NH9TlO( zqbk*HRM<~^i{LG-;G?Lor2KQUH*{!p)U^MLLRe&^$x>dTskyl`=)wq5hAxI~btO>8 z({h2i!=MqNJq9 zd1-7qx@(yjn*!(H^G@^`;MoHRm8%yG@zdfzGhg}78foQ>jbrGaWh>Pwik1w)FWC3 z^AkLEG4i6rPLVMzC(VKUBnOb$1&G#iEYOODi$j24v;MQ|Wg_&liluTkei0+}7?||2 zdXge61{}mt864bXe1cT#jnbEymtd0bNj4l;zHOkFFQE$gM^#m9rMO%`T}%`;9bLp5 z2P6lf=U1@`pp?;Xh|*Wep5Vh!kB!awA%@y-O`G0ZTU#mhK18Tv@{db!D=zz)vN~<4 z-&Vx1xrtL`_asBsjvocDVbu!=J)X8>30&>aIXs@|wl+?fWT~kV4faoFQj5M*Q^qm%(y2K7X%`aQ?KPwEx z81;qiFZwa3PxpLUBLmY?o_mJ}_T#wTl}WbTgFVl(yghb;-FY+>rJct8^!-mnB%_~c z4hz&3Vh>3rslEm0bII>f0N@$Buw{G#=z-Hz1A+8NU5$dR3YHx#o!wb>gUNi^J3KJCAutmdG2YH@l`kK_61xrbRM}@n6-1y{<_z5BX4XriRMfN#K zpk0=ft}e059F51c4%@jv2r7x3k2*Pm+hb3rlN0~VjVY@%-Or`YH1JtVWUd&Q>F(O6 zlO)~er(eDNSEH(kCwJ7q#uBemJwJIVrAVHTKmLPn(H+R+Jerat)RbslXt^_UtTgO3HM%KCXXD8k+Wte_5#AfwiAGz+5<}a>vjU`QfHiVY) zw634klwMscb3>m-*}#x3qwL9}<*k0PQ;ZSiwFAdlgr}I%8DEeNocTYjy>(EWOZzQ~ z1W0g#dlC`|!QCZj@ZjzqWN;WXKyV8If27)^T9o$_8cRQ2py}$k4dw+H6 z+^X~bG4)nWzwNzx_0!$Y%Gs1Q`1L&TD!ZxoFo*7HdDty0{S+C`5LU0dePAdQwk-zO z{K`O+@3V^!YPjJT!eiNl)?2^VU}(bd^E&!bw+dUG1)7A$}~ zNzFl}gV?}JWY(<_0%OZNuiV$-F7|QT<|dfA^Kbeck@A84{r816FVi?#mh_06gHb z%L-;`?x2wmOprGa*(1qC^?e*0nWO%V*1^2ON<5A?rAczjS&M%iNKTYAn>M#d=TMJs z{ys|Nug;(>T{v#xAm|k;R}yI_!EJ~kme7LH4FR`ASvW_YZ2cyq2($Q`4SAY|F2seQ6I{oQdAyCW z{ZXN<#mVe}0YxMbrL)k1@_ojIwc83@6y#p*f+>>C)YmJc=@)^C6O_BbQo+K{j1p!p z!bskDiiwA`cU$X(+pFh;-j&F1+Lw&&zrquWxASBw^;7xpxF&H?7;EFC4qYT&UH-i;ln!!*31dPpq3Wd8tKqk?Nbh*hpoQ zs@75&eQ$elIA*i9^qy{%{l8C|4#7 zHLy0$K9p+X4H3h@mb@YP`GPaZ3~@D@kGUxgpzB*}Iy_oLTc>y$TWfaWp2jBpS>D)W zePINKz>EF*l)G5FsltB=J->baz`YG;zlYX5Y#wxBDJ-_3CDF6m6rP>>AC8aLF3W*r z!qmUE$|u@YdSV&vx5bNst%@6zgKCQIcrn;=)&=W@+pL>xj&1M%o(}U3i^sE3gq~}J07dQ)pq_j<4L3q#Da~bmB zE%948*_>C6)(r<&vI1-`rmBtc7Pb!LF3PaNPKhqxR4%x!G-U~_oIDoDA95KA{D@mD79N4KLIwgcs|Ndx z6#gs&*)M1QT66ylT43hf?*&tBkNLabOm#)$`xba1*ZNh-UPe|be5wCMk{KkjVEfaJ zIBh~Ge0<7;@4bn(vmiwZzEW|L&e=0PTa#dJs?XX{Eg}hZ6F0hin#jQf5{eWL>~>p` zZ6smxv1kar*PicOFM4|C9inkwInTVC28aIu_zhP6089wQtE=~S#wQogs|_`025_E1 z$!jQ_Fdn>bNfg!W|1vedduGIdu*3gsM6wf=p{z3joBy!C3YhE<)_gNG}4Z+)^80@)t%>sK#ZUZBDAJKroxsejt0q_cino+v6C)!{RW=hc} z$zh*Q6=kD}fhWeuE5Q_^27V-vJsR}(S;v;Q3Pu@)#f*vh6Xv1d3F0I)thaBl4?|)X zDvKYj?Bf?Spq$K5suLX^kCLygo5=GKPndi*`DcOf5?_pi+W^`Hc&T^QYucq%u;esO z$gK@2gd8{TKc%Mk47x{Vr$e>cY#ile1R2?WP$`p{=f=S#+Fi=~IdAHuLL}u4DNLz2 zYuwST5?HQ8JEq2W3_>D&sc&MyS;iXZC{wA42V!D-)Ns*W6f|vYT{$wOFh7vx@~7;- ze*!O^3wPhc$K_aIy6QzgzKcK4Z~JIi!K(nQ)tS@}e8hl__leZ}8??gitrZ$`Pbgc} z^G;j>%u6JXxr+pdPdAf7>nEni0EbY9*`E#sCR%Y#*5Co;8-=AxoLlV5V*G_+SBtBU0F#!cQW~iCs_HwgicvW zR+AW*825LDAZ$%5Tiz3cvyl*eFBxh72+Ylw*I5r<;W2!4?+p@(MAqB*5skf4gJ%Nyd$P?Q#%jZ$#kmCMKU0Lr>7mJ=L1{ucJ6 zsVHN_&~sf^)qs@1EmOj9xzsI_u@!!ICX8x$vDfl^{_Ds0L5helC6oALr~!`Lu4u zqDPnPOk4jwIPeSWNXF=l$kna2_^;?C^L04B*(8k=M#9J6ac9`Z7}(ucJwOb9H! zZx}V+3~|KtM@LKFNE06{%z|p{0CQf0a<;4_MRuuL{cQv-bluOB>@IVc%0%TdjP~J9 zhJ`Np-o>c?jO>k}J$8bTn8^I(Pjf~lRYdl)*;xM?pZM01BwUQ1mSN8ElC2<$)@@81 z_rg%Pzhi2_?iM%}w0b`a#T6t@lVH%aHhq4Zg}Q)lv${+1#s6jE2Qk@NJVBya6T{}A zNzCxBiS}5bgEXPxG+Z!zhC#{GQ0Z3&g>vEUvK3gpH8dUtVwC6mccQ;-j?r{3)P`dt z?l{t=*iD8N#V7UX6ZallzvM@NjMC<2xe04()P){q!8(PwLXqxPw3ClD+%v$TAiJ#z z_zmc`crLE*?s%^S)Ohex42*@cdqGct*cdV{NSe%+EzEqlPwnV4P=Hp%NfsXt1;rSg zt@_K4>;mVjlJuF&-VM>suav24DJ8k9uc+hw-cdsAYSjFKR+N;U727f}R&*CYsdm9a zBtU)=hr>(SmOrSuqGQJ)ImU!Kgr5-9YAUIz2-lq^y7*)dX5jDSVgjq}pMaJopGct? zTQipRjWr08q1S3{k(c4a^BNdTgm7VaPG>F$ETgGex$*Xz;ac;Qu?knDjWIgP$oZ9b}#X6+;8)7e` zV+;??43O}A0!l&%N=m+4ZLo6I7_|>9&Dt&@a&R8#?%kT&W1VrKp||_BwqiiVQ3r{?Iu( zFCZ+^fJa&?9j%wxftuV=Y2#j1xHq&j8oy~y!Me-f{ivGmRg69f{mCWH=7~n~v)?B3 zVXocC6lVZ4GJKzHHmk!23(L8o|2pY8v=JgH4n0eA+G59JdAIgWvQ+h4)hcP;HdPpG zlWm>aQcs)UxYOw#-`qjV-=lPrK=z9<1&0yjaOHD#G9XRhTl*$NBRw>zZw!{*Z*FJ^ zELZicYob3%%Sdg{!@8&%UU~HFCoG#$(%V_{6CP5S%ZZo80*yzq5E6S4eV0)HZ=PAu z)K}k+vn2VWEir7Aqx}s{0eA&?;brk*Yl*=KLt^7X9Z>&!d|2~>gtrsFD_~dR+lt_E z0o#1v_xVmuw5b6wDg}#*w!eBqm8{(){hC?{ZD!DtZ|JKE!6}fqmkctd(GPkJ{vG7fV2^)}NSiaZd46*-JnXuvl$;__&Er&d_WGMF8=( z6nX0%^;ESh*xC>JA&6gGl^8{Xflu1zQ7SgSo70XUfmOIuT)9|UndjcrS2oZA&X#Yj zuMprN{--qEHTzxH5VkJDY9M)i>{N(^7)FyooL_a4KFyGP9wa7@mxoJ14ws#sPgOq; z1)P%{-y)j1QmCQKY~#)cU4w~|p?b1_V1YM{GS|o$gwp zD`NH%%~!Nfi3|$&CJ&T8G?dMrxBeOcM}B~X3h-rP{5+UFKkf-~c+}D9qW)ba<_r^+4prxDglebNe)B#=@n{ua5c3Pia|RIRr>Y-k&g8G zi*+l{X1;xe^{fNl!(n~%Mo1=YISR_v;{3z6TA!8BBq2hwyM9*i!hGC&O*A(_x9x%Y z`mo7ae>Jrvnc0nw=kpD==ZO2NPX{1=?NbR~ht}pho4nMG(bc@9+^vNYyDDY+s^fgl zJ0?|C_Zl|rkv7WbI~$Uo7%V*hiiI-Bv%~tb((y*O;dwLpehW+RY)VRP@jb83&81=X z=Q$gZ3}Y36KXf6SiwEDcTL@j+)Jv9a_$CdM_Xe{Qmr@~$h*|66CtNSEVK<41s6GcD z`(e2Ehe_8J4pZ9tdY+?}9Og_N+n4xaUg{6yX z_R!oSIA}xx_sINn2yhzr-cOr5_?F7o6B~9?{mk%FzdCNj^=LqMe;J3mv=$P2{OkR!{j5NAfH6hq*7}oEEX^z6HZm)J zJ=29Jwh7?FGQotQr7oXFmfxHv;fB6D1rKFXA4KVOy^b7HEks=_9P_BWdVixXprtCq zs=jlMe&@L;PmA*3Ela52(3@K7pL`mAj`x40s(vjFrI^KK$O6{)cN3B}|Xu zmT3h!w)k6a>{Y?7gxFLEkb)R=V$@2$!st0n*-TiHsPUJc1Ko8CA|g&(pkO(wMB|Tg zTI2F5nR-0!>Lw}Ey(E!TXLW78Qp|L&KBpbrW+P~_bAaW0(Cn4f;M!2}=xrCf24AqS-60^AS~7KvCD2?$=&7?*04=-8H`9jdry%<+xkv7HOs zchm*T%h{Rp`P-a1ZR<4&^?it=Ax{!a!N=oUz3yf&?TT)?_4CrAPqNnK>vJl+)sVTj zA%n_43dY_{g^6ogFBJF**Dw?OY;;ZH)V?g&jX~fE(3o&F$?8v0@FMLtxB6V6Mq~V!iYX1Hxh#V2XS_ zQV4#6_h=TSkx$WXsyK{Wo(dn~875#p>m^(_tu?Wsd5&tE2|+q@8y#GGC!xYe+Q?&J z7wftB+gAu>Bt)iJqJF%xl1J4*6P2qul+3}KSe#?u%r24t06M+X+p8Ur;N@Fo(7AVYvDCXg1Py^feeQfLuQFdP{s?Upv_f zg6_FrBwqX6aGb?98?e2-WRx=B8P>lv31Cz;HN6!s5#ta=XC(PU=|@&-dT5-Xdf#qG zJ+QaeHaaha(}hd%2$XdA<7Uy=S6OqP*;p2 zwWLfhFD-QYHJd+0SNhO zsyL4f04jL5y*tGJ?3X#Cqpg6*Choqmq0x8hrzALZnYriMrdc<>)f`csJJ6IaNB{Xr zIRy7g84Uu;W5jpRumJ>3(xZvdrOZ`-o#lS*EFNpf(20wNt36zsjQPAImd^wuqc+bB zI!PNTk@;A!g2agl39#g{Nl!BDb^$FPD!47k4d2IPhfZ%NWSa$9%(nF(L? z-hY&s7AJdRz+6Pa%rr51ak{e$>P|?FeiPs9mAW zftIzjibglk8KyVxVtKDYx?l3{h#VuF4&U>!X$(X6-*5cVO*hZ?3{QOwAf|rO_Ronu zlp~T3uD#^=g-Q!uqIulg+HsYZYL8rRC(3=hwP_=nEZ3Ig_ZBA3;LNPI6sU9qmlTN< zDr6^|ue~TWwJE?xo~*nEOiWuTnunZ4AkVqX{Tw57c$_Lf)33L_fnDwn*lu`Q$i#+x zno3~Si@?9D@zWCbHUS_Uv}*(RX-v{X_E}HpE>n&_&a{p{MQYlDmFKE+1<7%b# zv;W)JjQ;XuEINE=EhPDE{$xUb2@SAdw+K%DM|1QyaD*eyrv5W{pX*U*MvDJ|??3jl ze{5L@Q`&!C|1WQL|38nQrZZaJaMDonenLpy4iA6Cs#u3s_~#B3XRmaEj>ZaCBVuCK zzx0RxU}QPK9uE80urq3Zy>4!1Zr*41&0f?{3dEr?042-n@3@TZKM* z2uH;*`p@ACp={rWCnD{rrRAp98@qTX_d)weHQVl7#{L{x_^XWkZAP$4p^Vp&ks~(z zpjo*Ya5w=TG*BA0?R|x+=(FmNGGLWRn2PrYuz$}tO!yVAmDhV`;noUoIldhZge|h$ zi`NV8PWN$<^PP%n6>Orgdmjgo`vLJpeN10wvnV|Jrui-P)=azQAV2S+Qz)+@FZXo} zDIEB@mi)?nlpEROr+w^3LL(PHALl0?*TUnDbYs4h#RZsHS0TckFq<~$gZ<*-tax#! z?k1PEm|#5LK?_Bt&!o0y0R2#kG{79CJv1&~r?e$`(FS`xkJg%CmcC{h$hDiV*!V!R zu_vr!o$078(v}RsS?wp4nds@(w3bHIY6kAwF5EavLbt=Z4Th}8j0+vU!BqDkFJv?S zY9xdPjT!h06K3^07DkMp{iW1U^B22@!+VtS7c}L<6&HI5>G7toCb7+l!2WxSu>z$g zu50f-;%UW(15*`zQSVVw`urF7n-vAv7OJn6gkg%3FGmhXY2+3Y78)dix?Y|?waxGUr4*oqQwltZ3$UXI;z)s*5{RFGYM)6F5f3cf$= z5>I&c(sD@S#h_JH!dGY5*+nH2G4eAFw=c>eOFOU} zrFfygq~u=sYLsjS?b>UhUw)wvED4I}5j>?Hn%B-))g>8e#7jOap*$@`=dzqmZ`eM@ z5=rQscUkP`&ztp{WMrwJ)F~+u^PG3)5rs3S`UTmnqbHF&Lz;dwUpjE%wn1B@6vgE^C({G^F)gC}HyQvLcAdn= z7=5e2{x>a0xUDsEsj28NaB7K>x(4@B_ zv&i@h#bS739{bKrfl6WlKPx#7mLA>SdLJ)_EdFZo+u|5ZcdQ?q$`9{hy(6cZrTJLH zvUr?Ldwi@j5&f!IhDsNx zbI$E*1>9|^Mt<|t&p(r1R zN5==F>>pn~y`trE>h13KTf{riAHsUb*ajME)ulr!pyMZcs!d+&C#l#1kxe1){OPWG z7(ZAcAN`m_H`}I$ZHWawvspis4uK>24EFBe;bqS1OuQ&e_@cc5 z)Ye381dfwsc`aGp;*`|#z_TkUms%e&MKkRsGeH%X7ni)LzuhVfOlyi)ZTl=h0sGrY~IP<%-ppBKTmvB0e1PbXa?iJB#y zQRn5{8$%hcGueQ&52&)~i*$E$skeT4`85%Qsc}2qdN2=D>)S@z$Ig4TMcv8MZ;mf* z&tKFO8O`}BF?Z1``{Z9?r0{t%j{Hb=nQk&LO8Xr$$Fu~NmSJn{g4E~EFoHeH+gYIFlg*f~zRcel z%9fKgpBQ)`zJG!zygtnLwMwlFmmzJeFLt8;U0;Yo1vKNm7#opvYdY@k^il zesCW(eG(w;FdtiFA~t$%|B`WR=w}q`v!81w`)saP4ij2U`m#?cOz8dhpKh=j1!_yl zwxKGO-E7N}R2WDGwugC)n355NSyK`h;ODmc>OS-vkW^eo1*72#*2JwW4JF-H+7Rbt zg7Npv%?_>?Q*Qb(Pd~EjVR-+r+pl20c3^oya#Oqkbw+SH=nLnmK6Y0_owZtok$?t=7)SnOAR7ZlCLhm^$4%QaYMA8MM~ zZZ)+A@3P#Vpt)_2(B$R5H*yP~=Gy!WaFp&o{HS;Hq38q+y5SOIXa`F$R8uZSYikdd zn+9iGwJ^7nO=k6o6H+D*t-^?Bk8q-%z5J=z*0nxx10-LFr+$KWTHJV%wjRE#-#K*M zDRw+tvj0e`wsqJ9AzTE!ZT1e`;Q7y40G3oOT5uiKtDFc|r%s`Yf9ljVC%ST*0x1 zc~i%;w^r-*!0u;dx|gU?+Mt{{A_+)1KIetQ(kyL27X`i?<$R4J$&YB z<*$+>@cHyiVIJrxy8=!c6aygCy6Y1ycy$8GXJo5=u2ce6Gd5w-<~hYDRijcjXO1pc zAf8=DKAEu!00Zy+EnNV-=S6`JWgScAqImk2cwa$2%i2RZINFM9VPS#nl#>?_-d&*% zxOY~@7F}5I0s>7nsFi90OHLdi9?i_xR?5(B&16RhjyDqrUDcXG#`UHrD~-o~d9B{n z)SBdccMnlNBF^ESR2L)lz2>z$I=dTJ4~VHS_LX^mZ)6Or5AM?bY^ZYla~*kCIZ*?N z&3kQ^bzmm)dz^2tjUL_HH;(tn%{| z+zvb0dTQ}Xp!AdSk7QTNY*rAPLq0Ie0b8(;3vAVD<@}Tg$O|(DB3u2msx@QxT3)r3 zfZ0!F$Y^lamFWz8B?e`bmWVAF(c7=1y(}aqnAt}OYEsf5Don`Gl+dsjEU`u$l*fJqafLNTd96z!p|MDDUd0r`y-6Ta3;tK(4<&en|!@f zl*`|(zSxWoOO9XJdr87-5X(`<a$L3jOV3 zaI9=9ttY1Kbe7t;fB2doLlbNZ@qC)CI%LVWD4)y@J93?z&U|O|Bh1loW^#M~1n)yk zeTk}`YHKqK<#fWq@J}5vk3F`+GVWwetYiZ3p=V~ZH|(C7Ov5sEBLtazA5L&>=1uO1 z5AJ+6g%#u+6S^hT9de7$XXn;O?yhqZ*S&WHUAs%rXQdPb7rE&-m;5oQDT2ZE6&%2r zeEz}_-uHJ+luyYfdpNY!&xVVM(GcA?-dkvf({bk^Ipt@h%BwEly%?!P z_!uuf8(SYeV`<8v>(Hwn`!#Vhlyz__4K>|7G*V0Lf~KuSQ#M!P_VtkR%krWOBflAQ ziFP%uz!L9O2TpHq`g6cykn~ZWXZ^Vawa%t|h3mv&f7$q>K6f^6Hy4MzvS$h7w`yRc zIb^P-8sdZ|wy>YP)&x6+l~(r#YHxxXPnuO9rC{sySLt%!Fw`6leM0j}fCOM%;WpHi z?ka3Ak4rIojX~A!H-=NAIU~sAgqFX}HU2muH&WeUz67sie=IshsZ*bXsBM zFH-wGIcApI<5JEyIm7DO4C*!v==BnkQxFL5Tu~6WmC)4qEHej&dfmuAC9p5$E{G6f z%1V$E;!BG4rSvUsQcS+qudowpmlLRxgHaMk&o=%5 zpOR_Q6n<|f9=_m;Xc^=U#Q3!U;AZzeFEJ;gp~qqY zpLXv2_(Gn*(6Cbkt0IKe6nn%^tDPO8bFl~-%PQXsTP1-AwV1v{O9;iYW~mSue`3#bVX9_C>Hv zOH9xR7S&@C@PaL;B^ivDMh&D|NDtC}|FWBJz}nEB2B|e(snPtskFPz6FPk}bK&*<1 z7tu0}P>+ko>Q{*O(yCQskB7Fuu+3J&;EMEa4@)M-tNznmrFM$%G_#t@x-0`YbZ_SP zN|Ol>(gL-#SeY`JkdYs0m}adTE@o>b?FA1CoxNo7$SO59t^JUY1Ss?#6C{P2Tbv!f z=;_W3meX}R2;j;w;vMqxRyW89nXf0mgVc4b4S4SJncf?%t!uA0I3LMM_fxizBs&jO z3!VrVY&XB}bq2~JNfQqkvnf39XL?gVquaj&DF2~L{=C#>VJ z4nadeqED7nR(+h&hiIm#go&OCr{e3Hu=>SZ%A-=qAboGwAfF)c*c{@tQ1-y!{1Oo`#fZ#^n92Qy)wujuK!&c^mbAt?~iWxRcDe=SZsEzomDu7j!_XA(>H zGbl%y$miSANv42|vT-kTx4n0>bs{>IyI!ePpK23qsmDSAyf0tB|C3u6%U3Inwm0N+ zwM^}cM!iB@Bm|_So7brq`;^RNXZ-VEyyf>YG(y^ba*B$Sp}5e@loYbim~<>MsyX50 zW@(3G zT6MQM;*t@^Mm(jQqD~j;gLe|I3RD_#C4!O6o~S|ofOr~s|v!${In9QjBH zURFS;yX>$DZ#pu=TNZ%nL|4r3drEz%)K};Gu&Im`qXID&u$YEkw~SG9ixAR9?DZ#8 zsQDXvYZX=M1;0%KBpOPth~m7k75^c8`&jD!pRz{gOAtcC-R2WFp)AOOR;*dx>G>B?#Qn#N_0m6b_X{atU&=09WO=~0R8s5ATO!_6~W%x%CtP0f8O6=yi*uvR0nkXOWJH@4J))8y?VZl&46dWG!eggSTT|sIInM8cQ2C)VMnPWATpr?9EC@m`vsN`xnIwo?K=ov|u;#fo85o%%DuA&^VRrNaC_h|@TlN{sRs`1}vJ@-IX^b^bfh{{T_{8ytJ_ zUl65jb}=(O2lUf6Gcz*~n|Ex8YTPBf|K-1K{i@n(o#G4U32P~hwJN&$B4zswYH!O2 zXiGihCIEF!5v|QwxpOIpC4(3Hra?)9bETPRDs7IP<3?^du#P zZx-xZJHbHM0Y0w|26Utlms@tN7wQ3(CgZDayP}^Y$$@(YXRkOo9LNMuJrH>z<8@>; zadJ8_xc1l*S5(Aym@#M%R~;Uqrw@Hn>VfpR0lav4 zt&P!R$%dOVu?){p_GbCh(*@n#%4hStshQ`U_r6?vf%eoPjZk$41d5`5Z1+zKSX>B; zr3TQ8zQX#5FgD{8js@!KC&i zZQX1*EQC>kDoxVzS@Xp8wpdmMmHQ$5Y{m0pQAOu5WM{+3O+r3?jr|7j%lo92SHC;Q zalNI%^T`3PiSSrQz`&gER_?kFEWo@bHkNlGrFLkl+Ug4dHMK+2@xHwFRj-IbG^kvk zvO-aR-P>VEwmo`l%f@^(%`nuIOvXqH>`X6GsF;pGdCo~10f#+3p4M_xxm@cs!H$FuD*-b@pMZ@la z3C^>t2b86oE!G_!ZruJ;O^dIYnYl5suwrn2(2|XeIK*sI;x%0JAD4E5z}kv;aU)=N zYdVi^XYIXmw*mb;5+`?=GVHu~c|E)5+^m37ghFTcTNV0EN3 zlyLRh?KE{`fu;-jA5BKqUp$??<9ZTl(+N|sQsXieygTp>?8s;{cJO_OJVFQ)5)fPo zfz6&C(Nkk^-M8Rz`kXomx|9Fh9NYY1cfo4baubveaoNCqFw|DUM_2*E}fvpstkBQ9vyY<8%Mw|J_UI5WVBLS?ww$JFDj*% z`x^hPotu@(g_dS)vFCf#P~q{ISF1ABd!K}YZ#-8@aPMrX6I<=_y3|{`Mch89Nm>~){u1CCRcE%-$zn(KQ#lpj1US%}}w-R1N< zZLe{d4bJ{jE_}bT>&tx(3@X#Aa}WzZ$&lR`UOZQDxESu*q3J6s=4vd}eM4t-*+CrG zPrcakq3I9pyLVLV>U7M%mm}}=aM@ehwM2c!>VX~CBpj98k|A+m6;I*t7ieF#>psX+ zx|%Ig$OvCy-Y6V!``p0R&xRSs)aCx>pa#$H)ja>9lOQ*%5QO6FpXWc|{?z%e$o}QI z$A!+FzINB&b&*bi*VIOh zrTu`(;DNRIrn4Ogm2jqP^6Y(Qd%Z^&_L?>ImEnzQeD1A!)74t=z=BKeoMjv3g~gmK z8^QL$S!w6e@Kf49?GVo-N-(TA(^W_aO9ZkoSo6{PRe$1$JHL^<+1S<&JHpx|q^&0& zrogdzPj|`Zz;<)0>OVuIk~J1#c_K>FP|H;(_KkMESu@_}i?w4*TrHz5(kaC?W(Cf^ zdfIED>6$IO`;(oQaG-q;n|vEnWNY?w(Z5%KWQE=L;8)m&n#|FE;3z{ zecwRSq!PahMCkJ;sRDcz&6IQOVggR7dYB&k6CWFUB0a^kx7geA)TvwlW=EdTD|67Q za4LIs{)4Aoq@wtnN0AO3JoLnT2#hGah-Ujh4UPX>e z_-xyefEVxCWJGzw#nabwkG!@MF68tDL+}b%+AkXqU<>{FY!6Y-V1ky!YXz>HT*GIc z&}*LItES-8Nf_>n^O?7#x?{bezyz|hE-y7qe|R1xAGUXfH7%4-%2}8io zExf|`eK+uq&Gb5njOfGbGs!!*@jp#`l@3`ErOQgG{PN_757J}I-Jk9Ci+$h1ypz7i zoLem1Inkd-<+~42$%t_UQFq2;-@%~V*eCftS$&XUk#}*sG#fTr_m(WisdtoxW1YoO!!&a; zj}1Sbv@Gh1%|glI6vc%(-rEPSmF8v;uf(pq)%aHZRSSlX`RYoSat9^!&BR9 z>n`qx*9unjtrJ12^~&Ya?D{RhCeFCYSGr2glhft$h6s6KA?DJ4(u)Eeh|2D@w8Yt8 z2eIXM=EGq-nQ<2Ze7h;*^SZ4)U}RM`KRXY0E1{IpII)>iEcU(EWJXv@1Kra{s(tE5 zyQ|oIgA5SGka6{smK+{Z=R}mH9txL zUY@A{mu3P!CxH_J;>f~Ki(s~o3A;sutZhZgo8fJHcv&kG6_e}-!S!1c#b^#p(Ql=a zR@6s)8>h}G$c4!GoOzItpF3P0LpY?qicTC}Rb7w- zJyq;R^?>c4G&csk}4m6vjTiOtW3Mu-5Z30)b=nEua_@(84{UtjSxH% za_t8^ZE?LJn0yhsgS_caKbxtQnP)mJisW%1iZV}`WSsg$QPW3Wj&g`>U!`Fr@QzVNqv zU6*ZkoB}WmC@chRp4&l;-KNcF3%JbP0ikZTI?iS-mYKWFHfx%y4cf;IE}F>?x;7Sc zAH2Ps8oqt}&LZY~I$%P9abr+9m(wuaWSsViZ~u zH{LF<#j?jQm0nt{sSYPalUBKFX4p*^Xiwzq6rXqIGr%`30%-?#w1hS_xnOhWWRiTH z9L?NUD$0UN?;z;ohlfk=-Xg!95aKwR9g*^y1@&aoz076J;iZi55GwR^VBlfOp7GDJ zCT%z@_8H&}2yHr~k(38~6rvXJ72SE#H5|1$Ul`_ex=73JBJM*C{KFO!!yk@#hqHTf z>57pah1RY2Zy%`bHVJ($ZKm!#d>BMFxlV~Vb-b%89oQZ)UHj(WH2aMQDl}=nj_1n% zMfLcVS)l2@*X_BZi9*}`n{mCBeRyW;S4mqp z%HyXGp8Do56bRSvq6&YkePx~d#Toe>b(id-H7IIwAHE(nXz>D%zsU?85U2dSMwx-8 z0Xi6R_t>^CV9`IZHSR8MuZ((b^)ozhS~q+zGP{MeqUG*&Fl|6s&G+mrSUzgzHO|IYqY|xE{~j=}D5ZtFUw~*y z-)p0?-2(*VZlcNYi_eN)jL^SC`Z&g*b!fTQRZVGjZn`$b;r6(9tu$iMVgo~KRich`2Q88Jtrp8_c11-Ffok zv?;U@%<1mQx9PjVhZBJcI$#@N)%*uP-S%_OAEK8>FtP}Ez^Rdr2~2Z6|>D63x;hP`8?&I+5AUXqw}iw`NY`qE#&!|1u_38m_` z2BT@4*Sc^AuWaEk;rk`%+(XY}Uh3hzi={%{I!9DbPn)v5*uU128NKY-tHZN*RS$Ps z(+_RCFdd_Nct$MMB-^~=Dr@Fr7qJ`Fkam54lS9dhcmSCc_g;60+%Taisl>;KVe;9nNZY5}}j zPd3&f^A`(gEFQ?<{9m-aWmH>T*YAx}iWm15ZE<%k6iTsDio3f*f(9rBibE-GEl?;f z!7V^=E$$kmxCAG_o8HfTU(XrOIO84Xd^r14GRE3FD|`8zzxkiBOqfRsSYk+*k$B%h zj^HniTfxW}{9n z0;&%o1JK+v2J+cABX;NDAJWBqsUzS{f?x1jEP7AgNnYjnkBooUu}ik}_E=>t43dd& z99cXq)=VX0AXJkjPJ~!6nxth85^5Dz-+c=WzhHdF(;qcoZ^13YJs%8I$R3i$p$tbl zqtKuoyy>7T5}(2K!vjf=@U+XrC%AZp%0oJWWn_N76g5Qze21CGug>v{6svf2GOsE> z@N_(kL|?lPaPJA0L@SX!R60TJZQ(Udh(;?i9Hp<-dgY=AO$Up_N(YFZ?qf;yk#O%* zk2}Zv$HnB4N<^7Lp+-(GP7B+GW4HzBPBmbilbq93zMbof!8BUsNq0x*irW5Ljwj!p z7q@-%Ms}P{p9w%7;znBHH|QvXQ(KY`1R^(7qdsAYl!!;y&$m7l^Mvy)f`7F49W&a7d+VtaA38 zB3Cz6z?B;~nhgOBuKR2dX0tZSx0tfdNt{-ahtKQBEW2Pw z)983^<$E4AT_L0&zfv0Q-E6*%OW*61CY{GsR*~vFn`6*#14*DJdRG@QH&%#!YFjQP z-N~xWA2zK@>7Q9{{0Ss{9Vqo+(f97JtHfH}qHZ4p?0HZ9>@Wu-Lqp(xQS5y_S;P6^ z@Pl?Wr%@eQe1hAjK%`Nr;S0ldWk;I<-Rr>NvWy$L{i{MPh&!`RQe^8eiE1W)wxA)A zcUPLc`(BXA8dUpeWwAb5#lH)f~J5@;IlSwmZ$3!^Vwq9Savv&iShW zqj=kuMk+am&+AGszt#pZtp>=%zg~57!1VuU(C&GNbyh}8Q z#@?=+`^3eILFh@ZVl!$1jZ?^@p5As_+IV_vWj)(WRYhkh?XUO&KEwLs? zRB3*`{d5UmP732p&nTkj9@k@tt3l&pFQN)Cb44~5G0_ZPMvHuMVIhB@x?QOUJw3N@ zP}14Cj!Pa+Yl&L>b&KKCQP>04tFn+V`7!0vWs7_Q_)*M%rc<%O&%bg^FM z3>Vr@W|U=$#9tT^PUJ1(pSKpGCr+dBQC&V=JQc9!4IK3PpbDBQr^lc?FrgVb2&2KN z&`L$oFeKXsH+5Zy-|6d9NF==}ZGcf|lDK-l;MjiXs7OlxEaadJ|8;`PU313&^^1mR zjIAAWd4^DTACyjmA&A;&`qQ63IvD=x9I>$8F!10!g+rD1Ls<=9;jgc^PCJJTDeOn^ zZQQ=P31O)*f31@5U6xwjuKqW7I-w3u#%Jxn_SC7~;ni@dI1`}VwNnQE=|9H|ewm@spGcXp{*`dnA5$`-=eaDQHF zZ8SqqDc@p8W;vZuOxc8kKw{yCDploQ|m=g8@IF zd{_?>k!f@Ef|v1I$^-dI8dYCg^d-1*F4mk;5swxx$SL0E_>Y=J|#b-x5IzR8hn+wqJhzM+QrqmG{;5yxO7JzGS zeRo~X=FFvVL@(HNq#5I`vD$l=cAHzjr&B=!pJqCb7bZGc6rdD75}!mv4i=XVyNz|M zKF;#-)qB-~Pu^GQCv6W@L(-Q4)$>cIr?`y2XU)b!@_lrppIaUuO*qDdBlkB|PiLQz z#~sdhcNQ>;d$~kc8oF=o?Bm`V8P&ndiqv$skoIhgwh8e~I!fi$_Uv>qTNd27sl3PU z{x~OYmZnRu0c`V45A~VFyQUs_6|1c*i@@AXt23%S9~*aOu88LBypxww=09oYl~8j8 z%jneQF6{|^T9J@VX6NY6Lars6)Fl8BWCH5-Woct6WGt1LBho&NEs43_QS!y}f_rXs z*_qQ=&z}p@5`xnah%OcGc)Mk4Ef?jWlD=BjS0J*}KHNbk!`zV2cXuE4%ySQXcWK2_ zl-;29*Zz&jr%Y(OZd^{2^_GExv*icor<^B~a?1BorW{d|2C`9dzitJheR`J0yyewMf&0-i|fLi77Kv*VjE5Yw^ z_OhS5%nKwI?J1U)@Y#HBzRi=T2@`-|%zV$Zd9a)~xN!PQGxnAkbg&xqIcqzSRv(fO zdv~_$zf=A>7ijyd<|e=ekDGkevSk*`!58mx?^+1@#ekxg@y6Y*hn{+-(sx{f?qQnR zV>J|?FAEUIur#F60&r&(B8l#aI1*X@0-L*i+Hl;FGO~4qi#e}M(S6;K5(Tp!^GunS zDQO-vJ!sU_&m{U-7`t>{@N_4y1$c8e6T%hE;j}+@M5j%i509s~gQaLU5(<}6840s^ zkS1;MTK24kzBvszfsc1?s8>aVeXGSI&*d%vHoQlB*WeBRVa2a1>{7n30WjgNRywm^ zD&W?nC!Y`y_@Xwrvj9-LZgdtxQO9hyca5y^k$q<8p0Mn8p49pQSgFJ zr2+h_>rfK1(nJH)p3``FcN%QUU&&6ruZZuEn3`j>E?Igow_%d+*98Ba18g2{^(N&F`Q{t&^`5FwHtp6XzSQT|VcUW}|0N$LA4qir)?!~B8LGN9zc zS#7CY&h#6#bpA|R-q}k?r~|!N0HkCy13LNf<4;E%TX*h=tD-dulic^FgqOM=_&TeP zUDCQ2k{pbA3W%o(sY&X5tP5Ta^1%@_YX#3m7{K%Bgd(N;qr)MGhA(-2CtJ;#iz7gJ z{hM#vGFaj*7vW=7&ij0bE*j#!eYuU%woNKw>e<+rMcNXMJHs1pAQa#dP^R65{Hdo_ zy2PPUmbo|1#l_n7CB|8n`X{sikTh9M&?0%1s1d9F$zAl*0y6noEEbC80j0~PJ+(!0 zQ}f{uaZWEIm9tO2e#lQ?!eKkXDUrYEfJ^H-q}fdsQm8GYAkw|}P*#JaA{CAOCV!a6 z@<-odM!=kfJ?$RdGiC`m1P0U(mis?xx9t8d;^|3_vHy855aV%2ngcv}wjC-Fo8L9W ztb$)r9Eb!0=6l?Z;!ve>x zQK#Fnv*A_~UzOcqt#c#asj;|pDpVC6t`oV+w+Y7fO|C_MU!*Km&$ZCC!SJA6(9J0r_!>onz7k* z5yvz$wjXQci_>pB|CLuZK@zDWnLv^)&GF0hxn?g*vAeEmO68qn=;%9GvX_}<`aO)I z@7Gi39G(lG9#3MZ{-|U-eeOXNtj>BMoIQp(OIgxOU6Ngj@qgi$4>h9YfIuEMPOVk~h#EbY)b8>RU+6C>J zaKTVJdBysCo z6v|e59b&+twv&22(MCtQrXsxCrIpmYB*T~eVqH;9)$dDL+7<-2^$=$hp01*{&wwer z@EgAVJF+o0waQ(!qFy1M=Hd105tdonx=?nhnd~60MBiJCK7M%P-rn0KZu6xNaTSp7 zW3QA-JaW8e$(oSJ(IaeLtY+tBj&$9xLvgAM`|&Nsr8Zpw&%y4AS=A}$@i@6FA*hY8 z=G=Fd^_CqtOe6{A%aG-7O*<4~e53)jd<2Tt+f`V^VivTjydN0d|a{~LU4g*iYz{|Wr+hvGjN zoio_r{*R9_4`XO3PRVx-8i3Mo&VB|$a1t4~C~0wDoPV^q!3LAhGe0=lpX3zDDAo$H zA|tbC#k1wDTEr=q2Gph6BYL7|68F7QrmSklTLXC(vVh~5Yg?vCA@W#Y2^X%U-uR;H zof)+wqv=BQD=8ly^58E+`=)!<%UhSlFK2a51LiXIsEfV=FE!|wqM;i~Z4*3m18=1U z2bKa1fEBT10{;tASPwQCQa73`r0!)I;bBv{Vl}J5`u(zIb2NK?PwmPO%foD+-=aw4 zhg@ckSLyfcT+DDK;-l(NP9-6irc!Kaiug{)rS6H`kBU9+xdf2T`5CgKFx`u zk_@f71TN5;h?xBKQ1Dl)?T>z}a4pdM;YMeXGJM;B^(8E?zNJuo4 z&92w<(H~A81`qC6{-MlG&eF13QAqInyQZci*VNqqrbWFEMpZPnPts}g#1+@gYd-ou zdM%^$t8V`;re(~tJQ3URCo7{j!MJJk51LI$%etX; z&-QQYAL3~l@#g;0SqYSWb=+c>H5w52&BXIFCI->_FvrN&eb+8OCk9r>=NAs2KlLZ!-*%pVyq*7`iT@P(-#AYHDfIu(8J)5(2p&rzv7A4F@FyS6 zq8|i1RrMs&kzgTf#marEof7v*^`YmVxn?0gK0XS>(rN$8IP2|u8|Pyasl>mfD(?fg zyIiMD{sA8e{}-mHu|2PqRB>fI;^7LS?w1G$Myes!EvNilF>~n#SS!B=lSLp?3U|mU z>R@Hd81;z1H&x#;?KhHA4V*5`Hwnm_=Dw>AS4Uc$OFI01dcSmE<hi|pv$^k4NZ#L)vbOp$xcuD0-q_|x42ZnttVRD_1$B<`^`x9`bs|fli#6>6Lru2c z+i;^u%i;U_9vFH#8{i^qn%ge^iN~U$@%9wn{KLg}D@7Y#qut20RX5+B(pj|_p75ba z#1t7F5ut0H2nqaz1Q9&OWFGAf9K6D9yxkLbn)moJD*phLFQ4!|+r4VqnP<}zytMof z9c6YlD|jIN4JV)Bxfp1k<(M#BAmS?LmSQnFQ^0)*jM1Dv?|m*Ra_^RKsfp?&nI*@! z20MbDj83Q3?(r%esH>(?&9tz@3!m`#POj@ciyvMdJKgxIu+j(36me~iqUmZwnFI2t z-`O5Ajjv;s)3U04Ua~zOeMG!4 zbz%VCM&%aw4S+clWxZ&9_vIIqki2#Dnt2G|pWii7r6zRVHCd zg}I1uWtuDJ?W>hJN{RZV8a4Q;fQ5xPwT#n>D=9fSby!$fZ}=P`@`n1}^H}VdSebT9 z1*JYpk`x!ncMY=SY}c_2<-c$jpZPSmr6-Fseazj89R-pl6A1#FQ-)W!crEkj9R2cI z_FPPqSs8Z*#}e@I_3jJI=D-~it8GS$6#LRBVf97QydK%3@A{^B@tAlxmPM0tU?tWg zF}krx$1jy*e3tODD{i6YdY6AQYEi{JG~?sry#+!PxwvH04UW?oOyc4T*T+DarokYD zPuh6J@`d8kfPl8k{{>5ysj_q2bde)bG?u%X`mDk8C#{~nm+NG&Px*P{-~V#=$36dH zZmV}lV(c5O=GlBWqlwSF#Jmb&~$qGgA?}A zFJt`no~*b3`fGiBQ316s1ky!Go@!9&3L~^NMl|Y~iKuUpWz&UTW8|;j$xv}jJ~cj+ zY`ghZ8gO%ok^kUd8l$i5o1BtcS+h0EMk}}%YizG7k!VRuE)mmZ5m9Y3CYOISN7lP( zDOPcjE5XLC9edwYZP?-;G;n+;!2QSZjrGoq=DePZjMvn^D%Euf4$Nr+M2!Cl73#em z?s~fTO4Baj_P|*2%7lponz_f0A&^)@#QdTc17X<_nB&VDMJsHR`Z{lT7?X3!l)b0ZQXrO? zUK@Mo68LQcYx%}(7(PXCj+KN1b=z2O%zx-6=>1(84Vx*YxW zZyH)Ld2wHIO>R%sFE|oxS10=ca{T;%?&eUi3@QmA2XF6@RxuoAMrr=Y4*y)m( zqS8-a;`f#4dGSN_&unmWj?TNIAE8iQqoFsqxq;$+eUssnZVBIX70^9P>0yJnLLPIuyJcOud7=zIvePbkra7;diBm}}RD4y0#?5#(tLdDD@t`#1tZ|}MliX(- zkR9JEt&uQ2SbunTV{`u7V~}8@05O&WH~9e-$ZdUG+EZKfsE#vJ5M3bgLsdaa8RsLF>JP^_1rH79?rq(43IsXUPVcP_t{J-h* z;!#k> z*nuH}n!S(o5^+Vm7VFh26%a@Gt>lN<(8tWSQ0NhA>twNbN;GGxD-Yw4JrU_zWbV9~ z&Ju{;AmuYue|Y==yqbG@lNZRTJix>!6)KXN%iJxJ)-Dvt-Gm6(;##ekvo$A&W?y3d?Q#x9%&bwz}pcRN{lS`d&7aSio^ zxDQy~4Bfq-h|7N&x@<^-Q~XHifZ?|*`x5ELOzpO!+*v|yPH%AMYSx&-A67{fLAOE; z3bSpDca3(AXc}e8JK&c5U0S=lH{J*09$6sp7>K;NWGl6$wFAMEV>`8T+A849NSD_| zitK2_P0Tt-=JCOyqWwX0d&<5G{c3sS68jN4BwqmycoPtrl61B0ync@^_K^_Zdgb2v z*N**o@I8)Lw1Dqb@tuA^4eKO1NTVRP=+j>>YpUu$FeOOo|Hys%UofSgpI@`0{9lrR zos^RD*K;KJpVKa6{4caYVG~%OH2F`&&;JYyN*uD%exiV}wo@4`dS#k4fZ^5&`CApF z!OchkBsX#BCH@LPs%7+1!QGt?6Elod;$U-!BIVosAtftGI5cG5qQ`;{X5-nny&c}t zf~`}E8Ql|=nMtN%-!x#=L2d!HW%eH zKmJo(^B)$V*P_mh&#=mXD=p|@_TyReyj8CgpJngod5d1JQ3xv-2ao%jqHUZRS;3%L zg@D!GrdC8Qa309McwrzLOO9CG=b5}H>4z+%&@DP<+;yVfp z2^s?az=OV2?!wO(!~wqlXw~P^prxlL3j(2H-rSIqlD>bh7YtqR*mc|Rq86nipjBrJ zU+-RbGo!>Jh(Lcw;u<|2l{t+sl8LXOp@D{mc5;5!H8e>=!n)+-(x|^&rN_lG&^&;_ zN>Vr>f{{gl-9vz_Xb+(!P*Rpr+4(lW>z1Lar^<>)qNi%Zo5`CwoHo2YaoZ77%v{8- zUn2O|)YXK;9@L)eA|=h2ZKYH5oE zc@mWfkVXegRho%k+7r{W7e0?+6HNvlK(b|Q3K}7R1?j{5*87`gCZlEQjU1Y zQHE^<)Rp+&^z@J};tmXq{N$C1KaWAi$5`-#J*xDEt!%9=YtjbB1`7LwyOx~J4hU#3 zB|SWFaY}V!4eA(APtLnXM(}|^;4DN3mvkZ8{i;ec&9!fGF*Ihfh;M#LG%4+EbO-$Ru_q=2F}Jsh3FTW7 z)%V8!xcDHH%T`)R1e)9S&c^zVhK>V2xvS|@Fh8HakHr|z_c={jO};rNa#{j6AP{O* zV+OBUw{eGBph9`gMUih!%#C#Zl?Nr|C}R|@84@q^KpVB74abR|k1-F9h>+;Hw2*9- ze8pY`+l7TmK~O{pX)Y0Hcmkx0(ftDhFC-+Q1#Bl?u>;KNnu(uLD;_S?MV4tJ2k9OL z*7f?)QCyEj)0%x^R9t@0o0d4*qSb>?$wi)wi2Q&@{zbB&YfAKO+KrpcJm0D~p1)(F zNkLL(pAzcQ5|6&E7;rfvnTOVDWNqIk0$)mk&I$dor>Fa!6G*dja&R)9#rYDWV-Z5n z6C0RGKf*NMbf$6?cuUf}^gB`wH;8d;7lRYeZ=EiuwTWpoPgOe58^g5Q#eI79-zQRA zVGZk(Dnehk^Hj;HHcXUgR>?7yT$e5AanXjS7iwq@rTo5Q-eYdt9YK8F!lUTJN`}dw zwzsE@>@PXBpS&e|ukh+to_j(;0b~7Xo*SlI*&Gq+`vi-oykBM%Zz^AY!LonG`|O?F zi-Z**&;}Ib^duVtmFLgSg{1G-d1N;3?cwyK`y5Z36w`LY2!_hl;*0C&9ISjDFHWcLM%1 z{-X6(TiSCaSN`5ZQweBp1K+s6su~Xx!Zo4yUyA6vKjom3+2V4c%k zk(XH=Rk>m28EJ(f=GUh;0i>HdiJ6%y0Cj>U-=@u-9oWSUuNs(_*UJn%j}+|-#&6(C z$g)mPE2Mfdc#mb`ih6V7YgJg3SQ{iGtn|I5hmQ2~&=#vGbJ}wtkz8kIqp=GuGPe@1 zL&M_99YRmX{Q1$9Wd>`w`Nq}Vi61&0R-wHGP~3gtaPEM>XjFE^sh;TuFD78YImC>D zlar)MKdmsVyo$7n6H%y18cab-x(2`D#V5%>X~c(ibafrWEz=agx6i2}q|q~%8AaF_ ziiQ*w{e(Mz$XQu$646t=wlN?`9Dh+jKg!51{%x~BaPV6+^NlPuS;@Db&u2BPK8pJK z-ZW-$BS1Wb_U6F3Q?hHf=4>B$Yoq)p-d4~j=<8~{q=XY*&fMI!6W)_M_lR(_&23^* z@;EL?@Rz}9UO29s(q~KGwz(|zfOfPq+_UQWj#{)nS4u45Onk^##PV+UiEp*jrR+f3 z+7l0R0ZyYIKSWidzfUCUVVdL(ra*@We!eRgPe=;o5U1vlpwabuRd&E>H2(921W6a; zbCGDYOp*vqSwK4>HmiQRKI!IGLVAv}3y5An-B)3I`)lG?xzFZbQ`6)RoXw*zOIl@DY_i)-(=OEqKrzr3YY$Ii;5TdwgZ6bVX`jULLov9}cmJ(ql$ z#aGTz^`|BK;0#OgMhWQL-{y_(e6|98wFK|f+3>gziKA|b#%?j`SzFL_nyb#tVK^+1 zZ>uT0Iph`7`3|*z+fwTDXOF+fg^&m$64}Yn3tr`|UZnME&J*O=AmF<#R9w>H_)3RO zz!z{M3>p(b`SJvRC;dowqWbmQ>XDI|?!cwX_2a2Z)94$zk|eK;S_38Ma&(Znsh97{ zv3^8@wC0fpF$&0n#~}Z!V_x-^qmNt2c($kA^Jn)T zEVTF=gL?a6pWK2crm5k3cPglQSG%}KR@g8m@J7wW(SRa&P9xWLuEPZ3xJ@HiyNH@J zf$x8|Jhg*zZFNaW?{7n0o&kw$0-?gCjmN$e?FfA5os(w#nI^e_8yc12jCFSA>DjNg z+WEy08-BzVp^sSA{ydN1^s(Z_EtJwwh3Q*8oQne={c%WkIKK~Rhm0feO~I_F?AF$ypuB55s8WU3UR4?P6VyLl18_)x(rb13gf7s4Qf*mDT2MT+-nJbnZn0z{Iz z+$E^WiMC}2UgSesD>M_$z*^N7l;lVsLF9-F6MLQ@AT_k+=g_AiwVzLudFj*-Kny99 zZ(c#MN1r<>N*78|Mr`%OlVtAp)QWXJU3z8)4w>BTb^)$=h;`JEkREg&3%O&roRD3+ zr$lv}P|ZQ*t5ivb$neNTvqBazIiVPaW(CVOKr<@P@OQH+RlFhrUiq$Lq-8n0p(6rn&m=P&%`vA8Qb&D3{KChx4I?7L%nv`SlbaLTwF@vy z7haMBw3;;=&;|9^B zg@=sPSQ=pInDx`R=1>gTm~Z-5OE^)2a5IayhW!2Iyj>@Q}5X z;wj2WUp^OUM+6+msXwg&x2bl)UUVpgc{3Ml0Qd;Kck|e zO1mc}{k%;7OQOg@=`hT@QT=d_^9Y3BG;~q+?dC(_*tg7DP{+@BWUZ#ohnw77 zpK~3;`;zSD!{Pn`^OLR-#CFUEti|#dy%mpex&1QF&Ngr(4WS}9CdA!`oQ@>vQU@9{ zX_6qWGT{230`-e^c%>xTP7*+FYn{61NHvNF#iF!QpS=v(^nf~Zn(D~(AiE$r?5p2b z(QT^xTkDtX=D`CR5(KA14^HoP81h!_XOdruDnQ1rvg=zNY#BtI)63?YVP%6V3JRoO zwCX3U8=ZxPU6(Pr_OokO&S~bd2|f_8u6v~v>Lk}FJre8u3MWYljF_;eG)^{!r~?zvLo0MuvSOQA#`G*Y)n_Ek{vFmq|&9 zuXD_a$Ut7*P(iSd?-IJx+p*8CrZDj_$2a>cL1*R_H+?iyJVw$1W<1D{ZDi!=Qs;V1 z?u9fV!%Z;2Ebw1*j1HUTPw45EZNk35gH39Sw^5)pAWAIk>hF~CTM&VjLPaSj{j78G zkl>)cqt+FA+{dfh!A>2EMFWBm=9-&9yCiE$yJW?Axg?2p7OKqkY`$BfkPM0Q8zbJP zhT!v}qqgCMm7dZ(z*Z>IYzS@EFOYMMa0~uWZ3kcv`#0TVrX@dBe`;)3#1t7o)GQst zW+0O?9J4S|Q?zZ>25b)I6!jpinT)g7o1?3jEp%p018`0@07 z&T-;KcSwyFT3fL3`Z+gn;^ER3hKy}@JKvmI^hM?(0%(LMpUV*PBChdC@MIK0-;=sI zIZbKEK@d3*$mKgpmtghcVTk?{0;RP8+QmdoQE&&9Q(w)}=VrR=K-L#OI(={h6coa> z5{_Be#hvZVpo-Y&dHN#PViyk>=oVNc1NcZyAGb^ z@e1BxawMzBWP}J$#CeQU7I%MtKX%I-lL`jtiRPM!yBJynNt&X0U%a^mICRx^!|OGu zA~k`C;^qeQ8v5zwOWr5=V68O)cM0cB|3gta;h2QyoDf1KpC>C>PFb47n}t6&VxpLL z-t%AndRs%lY91DmHPkA$al22DrH>gDJt;{ew*k=xW zFE$+3QiWb--Dbc%RqEZVvpro2b2t0YRFm|+sQj~i*s0UvJG}dCk&JKE@PVjhK}Wq* zIUy!DBDpRy@41|Bg9SXo;Dd&bHJs6j#+B9|mtp85o?PIm1KISCPb8Y#y?jpW5#u>57d-e3M`PwEv!QmfJ)!^j_uC&9B~!4?q#*BR{YZ1ID1B%_*foolk;K3(Vy4$ zHZb67P$5I)co-Kq^=#-i*Vpngsn&HSMu)GVhW$n4ely|5*>_2LDyd{=><@Ddfm~V) ze(As1%Xb%#GAu4Fsy27c1s!K{j+3&Mu8#ZCFS>l*Nn|_CrOBq3)V+dv)!ah%UsiEm zc9&aiJC;72@EOkr@?OXXN(Nksf>x??Hv`>c_7`J?oo`8Uzk2G}i_ro))K()*)=T3} zcOr@&-Yf#{=d-?<;4e*16bM zsk*U@Z!dY#>wy%mjs}4qZX}NE4C2_7RIU6CT+AchX_x3$s@FM8|9W3>&QM}Tai)iF zD(=32rBy##_wg0kZA0^%^P4Lx2At*tJsq>#dZ; z7}(e(nb1fM(ria1VSZsKl@ zSz(h+=uCgY*Lj+e(q&hcw7UXT*z|g~Kv6ewBT-tw61RvRt9lV`kQ{v>PE$G+>89_% zI~6uIfz+}oyw)4(R$r5V8;}P-cwl6hMSv@`?A&SMtJZ+((B|*<(1M=@o@Q4jUoRP~ zW{+{0kJOo^T{t8F2h1*T8^FQRNc~8r@{)gWHso>i$2Y-Cwj&k}wp8dq#H*8AH}TLX zgz=2*{2BdU>=>a;IJh`$-E{8~I4~NRo)nElLOm>~SRVpNf${Imv+JV*wGFhE_`IG!v) zkGW2;M`O*4ROk6Whbeq$chb+geBSk1{`9URgf5qmR+ue~98?);K9A!bK}=2`GGhBo zyMl52hxxbS_w+5Z8t)aDxrZ19n+45XD9jTR6%^h)(-x;rUGA%(gMb5pj1eES21eAZ zbzh?m=$kO+=i%VvqN6dLur=h{@{H{>P1e4oqkCPjyb(IL+T_25iZ?lS#JMWwYFhL` zKO?MJ@8pmGq|9RmJGx)Go3F?_T%4)woOX%UJa#r$dnb)8P(%4JLrvXYQ(;GqOd9_C z-k?6#X+-UZzR}g0gS1$hZeHzzi7`?Y_)~hLlYm5Mo^QQ23#}gKEdV_gaxS%MHSbd; zA4tAplv)Fz*}vQ|Gs~XkFEwnUdnn~&RosQ33xSl`-67^oOj}J8q=<*igOiJXiorG{(sjk}TLe-T zV`o)g0lsIge%Ed)o!j#}()HwbmdNgWYuA(ZSG+5%W&I{_q8 z?9FatJCZirOaefmRsAnJ7)ASIp>zs26F=RWLve5jx@^ECq?=eyjYc7NJJ|#hAZUjR zcpZKdb>v*{6p}8Lg3pU<`y!2%RhZKh6;ql7nyC_E4&CA%;Hi3o>z!z77OW{-F{^0D z>vON(C4X?ON=7l1S626#K&sU9xG#YHvTogwI7>Z!P!Mj0{rQ zLGw9xDnE~BAHLbqpbtADpAKxJUTA}(`02{ka3CRsHeze~nig`b#v;o6rT>F<@rOFr zRP9oQgdv_6Z(%erR#{iX0#$hAM0DC}U=5%m4>_AL^TeyHOrJ*0U0K zB<+*7K2%@L#ly=^M^D>JvRql<_)|vUiHPrMl4)ACROY*_!RnI~zbOLuUuQ@j3eBDP zMn!3xO--jYO^HpTwePM{JcIqOYvt*G6f-s@$5Y=${SDAV3bheYB&rOg82kUa-)IYox$!e5dunP7DqizLtU!2Hii?qudT_f%hDJ zu{w`oiPFu>u|Yo_AiWK~TmBV6t~4!Yhyq(%0k2bsjN!%p zQM6Ds36f%DT?Nx2iCkjHbKp?u<4vNY?c?i!oZJhXmcRc)63jxDYkdYgjx@SJertV! z865XWt5UQFDAX{PP1&6tAVF3zF*--<&2z?{8<&0hXL#7SEyn80ycBC2iR!8DF#l5| z9hhViwhA~OKJ%7z^gQu8W?lO5>V(Xl!Fhg!wUXhIWgO%(!B_0(>#syEf`y%O+dH*6 zSS6c8swMG>FlhMswByA0cbG0O{e$OCoh?Rn0U0ywV;qmOF*94}yAnp@Q;>T8)qv)l zK>MaC4w7OL)_*tB=7i1*ehi53m&S9n3?is`fiOje00O#j?^9mM>mxTwKZ6sw}al zaA(NPl5^S3lriPHsJD8(o8jlfgBPSuUiM5h`Fe)SG<+kOblJtZPvFUFrtjXGrBME1I37ZyteFplj5=}mQ?nAskR>8azf{9Vq-MEtB^%d|aBUMoIA=P(0yTDx{{3LtgP^mP*mG-xO^P7MjT zfU^oeT)+DJRX%l{*=F1P)07dr!Gz8c?p0 z#X4;Sfl89Y-_sUozubp(Pti`VMTZY?z!=u|V{w>ST-GW^4|k`WneRM2lw}%2<)s;1 zfJ6WqHZF#A&GB~l`+8Q}4+(Yg?t#q{Kj2cx7a5Y=H>*Nkb+VjHN(xv-T#xTFQ%+M( zwQaphrSWdh%(bxeb$41#@}SmVcStES=ouU{DUwgZ5_DRL%oLyL%uG_R80$EC`ZFNx z>Blm?#HU+O->Y5hn*e|9mHQ23xCLq82R|9kOf{#HBwLf9L_qA`WR*2ACs!N6%|Kz9MOQD9MmjQ|>?9n8 zmEz;zMK$fk?6L;5BxJYq+Njg1WxpGr+7c8WBKy>A`_DtG6QT8lqw9FN+y(pt zw@T4+--LZ1MCaj5c-TLP-+SnDQloD2wZ-lv^<_8df=C&@p4UErMdQ(yA_DyM3A_2z z1}V``9D_<|iRUx`0gk@5LEU{4%BgMkg)6G}=j~ZjKHF`VbbRt`T16lKC=c0A`c^sY z;`K_NV#T`9ciOJ5D5ot0hW&Udr3Jr@0X|wiNW^RM)x@@l{D%dY3LF%iAhbrBrHBqZ zNZY8%wZn;8vdgj%o&iBPbFbq#at{s!`H_}N`A;|=E$)V$pFcPCuR!9@ms%~Za&r%5 ziVpvUJw(ORb3enk@SDtgZNIJN6Qjna8YGoy;szgv{M! zVX5osI(y5qGS*%&l?RzjBD83T&?+~wuYauFjM+^oH^R(4=3NA^kYT`e#+8N| zioWw5JHKg_yb)%_Z%$Um)yeXBlv}s{MNdC?#4zjL*Z~~QK$`(wpmXbrQBPGEojZ)- z@Q`h@rSPPVZPl!qWgWeJ_vZ7jOA{-nde24BamcrPIxXx=%src%3AQ%ZX>7RYS{XE$ zCNtZki5c}e3NwD=RM67%y$UEU)_N3zokjE+nsU5ib%Yc~GTR9Jh!4!I$FX-a##=!w z2S9vn$4hB+0u|%9GK6Pmr24LM+eTJ{hNXjuuHva)*L_(3R^lUu9=@sw*d}i`faK5J z=k8zrYx3-AvQz91Wh^W>l>H|vkL6uCtT<9$ zUy%5nwsUu*JMcX`vyal#pWzm-^cd$w9Wp_HMqlj>=l#40HYq*7K^W@cfjW^VY(qIInLso`9l%8qYk#<&WynFIn!>o&zBh$Zz0fp}KcFX0vC1eXO_o~`X4_;CF z?Bg5hLr|se;x{LS9Q9fNn8uYAaqBA9?;uCr-RE0-4>s39A`_RlsLTahD;~U~sW<}T@T9bKU8m;sh>brqB+!viw(5IXen;ta72J5FNNyk@N$Jab z`IgxUur`NZT$=i}?-!Z;q2wZqo~Xa;kHhr-Z(uhRFRFMXWRBsj>PQoc+!ncu>vD!m zAcIxky6Oahley28dhKz5NDDvw!A)$lpnDSHZ0NUi@iKB(%!;{Bpb$tQ4#58g5wVrI z0v@YIR6ysxe(UYbmO0%-rrn$BnObjGUi!$AV<>*f#w`Xf8`AmLe(ixii$X>5!&ksM zx`Q@PQ16x4|5w|4$2GOAZNn%VQE4jDn~I3^-kS}Ot{@=2_ug9o73ocShmADpO=^H3 zRUm|30|eUmecX6DCb9iM8UhlC^U+J7+`$N;>IUNZ$g~i9M-IqZQdR&vcC%t z9+!x$VSu(4>pr}kJ8_`*k(Mu7o+>-(zIi;@awE2S^U0aZHYqDc8L3rHjTx7)Ki`xg z_AwUEdIWhWESx+&JuwHZ3kXNm^03uyAP-l9rgwh4;m}Usk>L_EYqsFf{qjme%AAGTUNDpH0CUPbK`I{D@#55;!d=`_wKrAb;z zGgN*dJ~Xxm<)~#Km@5aZ`bs@$MAo>ohi)n}x79cp6{_t#=|98bEjo+txwobyWpC4r zScw`)V?Ov0F%`L{0v|KwzE0WO($1+}D%aki8;fvX{*LZ)Y(8e{jzId6BdQWo1NQk6 zE9Szy+D=og3TQmrks{npM5Sv&^QRjL;>1V~wULi#x$flhpT_xuVVZNG<_+;rn}gfT zMd}~>U)<@pt^Qwer+-)a&DMSstiR!EID+*6=kkl{T{ihv(x}9~6Aw3=w-VU(PTxPC zJpn1F{W8?wW$D8*+5{Py#)H-dCHS0XMCcV&tkgOlG1AQt;s}%5z?6FBs*DcMlM7#W zN(Olj`ec)1%cO8aX1G9>Xf2?XaZLRDtE+(ebgdN`&g%#GYJC%DeQlfo&rD4p_#MOV zvoNDF4-Vz`t!cbbWp&a?XDwvt+|Zy9?oqx*HE-wT>BKKir& zzIRiF(G|u9(_Dp-a_h`WffvSec% zprgwb@(RjB_nF1A`C5U))!WW@1P-RpIv-qy!H1Hf-!}d5+6Q1j-Lh}mER~W2(Dyya z0u*BDkSvZv!gBKfq5&_>^`J_be3xRdKr*z@X>AF&a5e#iq{o!t5y4+=M?dy1oT_pq z{_IiQlH5!2Cc9|iJaM8lW$f#RzRxK+1%Z_nxQG6Z@Io+@YH+G(8Hrq#!dkK+#N1 zXHV9nmbJ|<$do~5Zi$T6ZJDJ>QU_~T9S>|r@`dic8Yen{NLcSr`CKfhcMOp}aD&Vh z?ZEv|`=w7|Yh5M~3f&A;k^z)oI~a*C`a-?MT|c)ajCckd;HWb0f2k{MH&B|hV|unk zmg=n+rTh4o<-fPy9Uu46W5D|`ykL%RlTX~pU&xCTlr9m9B^m>-^gTuE2>MGWAxgCm zG2hiGuGc~p#1mg1&LYa8s)|#dq(1DM^>wuKPmn!M0(P?rZ_k%#4m;59<=NeSt=R57 zjev(zCAaZ`!pwGK6-y`^37J(N=>zu{!L~wp)W={zh&~MOT?^Qp)N=NVP8~f|%ZUqq z{RAkDKMawfH6n7tzI?7GMbE-168MzT%&KK@%z~L{YRA&OQo^S#K#j76H|my@#!vBP zg@;m1|Dml&TN-N)bx%!k=dQP;tPBoh-3N_0w47ty*+YZxwt^JV5OBJ5I#v}+g`1#j zgHFZ>tPGE(-$Y!qps@lfT*$)@)eDqFVZ6=K+l-4n4*OfKO;Hr``oUOj@X9dun&O^6{hr+N-R zKm!g~src-H6Ko#VsnQjy(R{i0Qz=^E`EIE*$#VLF%gON$`8kQXgDqQOi(t~gGj$)p zVW&N6$^s)X^h%0f*-HDDu=LyRU1ZrTl>Qvl|AB)4-&j+u?Z1sE)<$~LUl>2Oh|Q@o z8k8SKkmh zrTqU@CpVYEg9G{4?P2)`d&tU2^48E+SZ>(xHZg@~AE*coQB-V^UrGD}Hp3EYHMe z63{c4*uZ=q>m>-VeV^@Zls4ELK4ruisR)C>ezLqiy~b7#yXGVRPYj^~3KCVpKjtNH zV$D3fAN)^dx3MLV*X$veuKQ|lS7LkUG&qZRXF8^B*{E}1k4c*3A2cazkeikx`|R4l zRPR`ekCiE^;8TDzVJJX)4sj1&pXcLkals5|<$IssMKU+hB$d@1ZEmE>EylKY=mbq> z^pa9E^(Dof-;LUw4~{XwXKId=fRLja9F9!Wh3tAhXu6pHpVY0EwoWTah(Mv=0%R~p z!%I#3n3Zw4IObIO$a74@ZO>a0tlvhPv&rJw{Y+QLro#*gAk<h6sAgVYf6>cGrS(XStSw28P)a4)Cax`zL8RV3ymu^9R>q!y zGr3hTqTT_yvaGgtw?IcS|6E4P@gz$!2Ya%OCiW1L@;RW{*1MQ( zu-V!hE|{YBv|6e08d%qdePzRi<5)@{0q(9n;;XRIZazwDH>pJB*YH$GV`m(mnFr$% z)!I^U$oOTEs?ZKs`LH@}y(M%~6>pMW&cDb>4ZxAxvj5;Mg?(ZT@|U3IX4g<23CG&* ziJlC<^{hFq7Uuw09%F&UsXZetn!Y%giTH}6pYtEuiLnnKf4+$hnOFAh9|F`#=T09P zwMjF^_G+Avr`9yBEz839gZDNBmWwroI-y)j_(*`W)=a zZ|Y96eq6POf`uZIVwHi@!}yI zb;ay%(*IJxRJylFHYax!YsNfXL`&cO)5qPxgXU#E^~hcwp=ADjLNsDt#3J-;V$ICybEvWe#iCk z*#DZd71Hw$6INECY@bShd9VTg7Y+8q{MGnL;8I1ksZuASLZ#n%T+1qR+rq8{$3kW( zFu+Uh*Z~}RAZH_5JGAw>++kN=CQ%J}qG)M!k(}l^9p*H^nUyBa4ek@a~v{ej3tzp58=5Sw+GfOB&o%@`?A@xt)5{^i7fT%US0hzq;=F7%>)ce|*$iG9EZQCBOCk^StqCSpI zHfXeZn$A#Z=V0N&SCq9lQ~RF_$XE`q=v>hIVQCHmC#S4TS^zlpQV?v=UG=nKe=LmE z+xKiiFT3i54F5)N0T%1=WkI6ftHI?U%X>% z%SSDh^hF$)>+K~O`xO-w<2B`A(;G4#!tk`af zS^3cmrrh5hB}8T=V#&uUr#7?iB&Brz=o&jR)Cy=0%OWZqDVV}fbP`+1oMpb0E|jtc zYdE*n`{4Bxk((m>vT~B3jYP6Y+*=A>8ysAl%8{|?I9X?#a(P^-LKCLvp$w@u#2Os@ zB&7f5l904E`Tug<{gZd^HwgPpK7YFa|I@qoS89jfKSi*l?)qCh%)Gh$pdL|6<1MM; z>k>UVIeAY5S%q9?$LQw$p&z?`mJ+n>3?`5&1!Mn4m{fed49ve0LDs+Ea5C6PXA zP%5SMwLu!poVu#Ae`kaaj`*yV&AnMVa9{CP15~X!1;%B0FAOP3i3ZIbGH|BW#&2IE zS=t|sW97<;^yR|#&DPn`3^!wZN@2Z)KGOaDg0bVqM4cC~dYbiG_)s01O##DQSR(=J z_2X-}JbC%~$weUdKY77i)t5G5^;}X2-^8v%dj9xjnlT^|1CW%JPk_t`5`aK1q#cV8 zuTJ3?)6eaZqoH-(IDe_P2fa%vJ>nQCXaGQi9^gkDSh3ZpD*UY~q&mVG%KuihRJu)3rbmT7; z=h_Xjpku|*m&dCs+3pK!`qKRSlmF$o>z))VlWa4rc^8bV$p5p7Xtg)ikoDV_o<9*> zYP!OJV&%;#Tmreai`1$daAKC^98&Jmx%u(yoasT$FPP@p|GL90mWU&vh!ECa9+drP z;Ok2mD27h2zH8YA@|mgrD&>G7tt_or_w*8kde&5H`>HYj@z#R z06D_pt`;9w>6t1b9AjDb^(@fKxj}#ItHyr5RDoK8sJJ*x6+?5zrUu9lyh>_-iBKrW z^_&AY4pOAoyOVPZ#t>$kUzd$I0)6P#T4mCjEjmt3F_KF)wI*o!x!E6iW-{#6hv!`G zF;UCsXf|S>Gn$H$H?-FM)ADD0yYFXMX0fONNG7IA%fQ;}l%G1 zZZXuvF%^JTZ}Trm#dnalH_lFXL%$C{A=IUJxYq{-9h`e3yxW$RcYaVKm8ekJD%)^v z;>yYARDfs9b`gyax31YdW0-g443fYalxy z!SKUiKDRCFtv3;csyL9gDJn3qhKk~F zx*$7RP0O7W;LAY>>qmp$BsA5*5TG@7XW=kvz3|YdB4vcYFLnSX4DGW(b!P--9UoWz zWs(jm)<33rZzNOVWSZ%VJUS6QtItejoLTd{cL#yciASh6|| z;>x-dWfh8LZ4gQ)=#5@=`NdDIvdk7g!Ady~xBuS~{vOl~iBdBz?E>}ytl|2p4W#}zJ{R&sXF9tNDUP&90Xoea4^?LLIKAUV{5&d-NJfmveet`>tY-T-#%iDzd zey_5<&e1nXQqgVRqaMp5{RPa}oe)Xhtbo`-ixrY+Jf2D!{*N<8aGuwOFF8*4#%0}-X3=wAiJ|NmS!tz%Trj_kk+gb ztzE1BY;_G(Za?Q-pbXVf=d7Z(W0wRB0QPuF*Ho>d-4+EM!08gT_IqxC^YOhs9%mrT`=ksUb=b=-K4V|x1khAQ2KNRIEu z$IM<7<#zKGti>L)xZuW5whShc{{z72Z=cvy;~bM>j{dExsNIDN8-VDZwJ*6*?0Qnc zz~)Y|!Pl(6UFM@sCH4NLeY*w5-aL%9(M&Atb(1L^6w%OYOjBw?Fwv#@}iCNi8H#(OoL}#pI82)+GNt2r7#Y zy#yJ=p+qZtpeiRYlYBO3Y2S-I#nn%5&cmCp?sA3QN14@@MPA&nUVl1QLU70=mGD}C za&IX4$YXN#^W~Cp77d8Qd5FbVpATayd~Vk@T;iYK8=6)!H~s$F!1v$4=5JK>zu5ux zzto*DR=TJeV#(~nmR4a*OFSlJTmgO}iN|y>RUy1ll?u3S-I;>LE>2UKr{%Bda)XMhu~wq;rOjeCCkb z&B$%i-6IQd{NQwjj+gnltMVgq4lhRL{f(5bP7@I}rS-QM7*yQd1+AFX_V#MTQk5T_ zsp+ex&u0VYJBCm;i7?Blm;pUL)dNMP>#W|ZseApy&G-BoSQXyR7CR-A2^LBe=6e?cjyRB7tY}c1TUg#$Ih~^zRFvtym zlLC8gEZ)|3gKU46aold`IS6>0F-yW(zyat^gk- zWCPxBqVat;asw{hrL)HyUtK#tAG2GLd_bQ5Y}uqiUHPEqov!1oAe z(hRd^Jz8jZ5k4WOLie_Y86PZb2-P@sPPdMT0zLH&fq+$ZqxE;MGoutbG6C7e=;kq& zMV$u;qhiPN?6^)IXq!_?=1O=Do!Wm@s>OL?PBlF?Q_YuJm*Hs&5eu%xmXcksowR&A z@(@W$o^z6|Zr0&?QrgXQWUZlV+v zoo$ucBa`N)@a>%VTL((-51wwkC;2LzwlQh-!0OJJsMiIZc)eqErIU7>^qr@cx`G;h zUaVCxWm5rxgF1hc0~Hg0jnM-mm)?-IpJN|nb4#YipM@u|CC7wkut4^xUs5`Nai^q^ z*R12tQf*nFFO@t`rrJ6s$rr;Sg7@!L6q@Lt+SjD{>rLH`(@ge>EYbkg5M~Rd^ZOvI zN0&%zH_wfDscT>=qyZ-4S-Qeq^WB@xmCkD$T301dOUm<4Fb&(}09&n_3-Fx5umheFbc6G&u-)5@(Dsrh{_2~o}bsjw^F(+{YpK&)9;&-Ou|tVhQnw>`w_ zhMVs;2}Lm;(ny4*E*n)Ze@EJ5t%V>ezIOx{pSHb4Q&{oPFXyR|j#+@O<9;kc-_fL3 z)1()Usho5bFXgN?%6#V)UGkNLzPs&t=v(PxGQ#?Rw~GL0S)|MJV!efE#k!2)>9L@* z0RN5A8b*ktruF8sY=8IlB@O=lpKt5+d0~FfY7PTkdf=tn?U-$5Q~Xl-#IdloDtQe{ z9gLM?d?6=iN%$e0IZb*~(~{E$d_p=iF$iw$x46G%ubgW^M?4kSqByAgmQ&(Jbj!!$ zLRP%$^^U%dIA6o0dk2bN8b?lV646n`T8*$0(xA==iG3P%5b3sc+gEvg_h{wZ?Ma{b zsuNQs5RaE?vKT3FBa*%>BYM)%q2WTPd|O0@ssLfzd{BZ0MY_oDhmT=!Ufu%-OUVVw zcPB(Ld&;1DU-3ue&1 z@25uT4c0m?QP7%HefHq9&v5D0Pkr?s9M`MoBb`(#Kdj^19fyZ)dmJ1w0_%5(GMsL1 z)8#$yg9LUn(6OM;3T!YGxP{}iG%1~9$*mXMdDNE8nI`t(%wy{n>-ta;dby?E`HxT$ zE=#L;5rJ!7mOJ3rIFmeke)Qwx4Bm8K&D&xqIM%a{z1qIR_$THAi%uUz!nZX84A@YcW z2LqY7>@I;(Bcxfr}YF}2t^B`C?!xOhCbq@vut^5R{TtowyOuVc5n*j*qMom zjn$zZ1`#=2?SXXxoa zR=t-eA^BK>{H6e?7aF1FHE~n-v{yHSBd~2%L(Kzn{=+;IA`MTFB(h zTITD+duSm34Npdfkxn{P<24`r+?T>Zx$?nv<{A>6_U z!7`BCm%C%<^F@<`5>Qjx?lGmF{}O=!O(RDBk`PEtRfumKvP2$DDufWh~!EeZ`J+n%;{dztQTk zR~>iaotjzM-xMnzZA}y#wu;wndkYxP9S|SbJsHoHdeKv~^}Pu)?eBGF?@3R>EWUr8 z8DD%%h&Sw@*ygmSyKX?cqRWGny1Os+A-HcnZMIUv;A%FPJHS-Us<+2@(s4FiZ2j&4 zrc(MISU1B&3c9LSZ`myn_)6{K;#!pq{HlUWkx#%YvI_~)`*2s?T#p;SaFaf&#AM)$_Wd}i;9FdJQ~q03t@jO5%x=F z>wL|PAfMiio=lX?qbi>)xVV#!fpHdozXi`xwrF~fW=*B}>6yq6+{uD9SKCK#8k^dt zFGg{jRyVhLON0Tb6FGyc3yO#r*<;__cErj@h}OrNWbxZojg2)Z(Gnk~%>}q+IdidJ zUFNhW@OO=eH+rYVj-)PuOc5hoYmpj0=k(H%rg$&6EFh37Aa8AHXEWJ}W^O~s6pzrV zwYw1`<(9L)`045R>Kk?{^%PH4S$mQ^LjNApr2#9Lac`WV`Oe#Dw}k9Jgv17@N?y`}E^-fgo9*O;bX zFva~jIjx`Xr|HjR2D+1-G#p(1Euy=iOO)cwvQ$zJt1nzUHC7y&Bsf;-zQdS80bY*~ z67FaN)vm!nV*t)eYPi&({Lio@j8dqte^%k;3qdkpO+5aYdPjo$^?o+Xn#&>Evy+g3 zG2#D$BLtCRX>3jo#;+}6Gd-+Qhu3WutVc6YMhxDa9+wb8w>|V`$#_|CcTK|ZccoNY z->bL$xHCEFi`O-8)bOP5!R_p<P`uTiz}P<3SZ;-!NdzO-viTF;VA=Y4`*iPN1&cR z2}-Z~juU=g37TPkTfOrvZmVPUGg8ezM}G5s@mezI@aFMBF0tMjPxF+*+E`mcsz{*B zja7f@*;bOi-U!AnA_?wixExVpx1G_;H8oSw>$hO(h6GHNlT~z#Zc~2n*?Jy(>BnVG zQKU0t9+n8r03tpsGt6NlCt~{XmmS6B3%&Gpvr8_lPTsX1lNP$|FQvop_6G$$*4s_9 zNR`1*kGi*tEwTyJ%`V*L#iPL*vl6`mkG&&&#MExb*-D~FgO^287!+ZF!gZyVB>c5MB><0jk8 z>{(8ko^-OBouKK~$2d*}Fh4X`TovKP%F>edY{I|!{+Ga2L1G1J)+!uTQoeXJXY@9A!z zm!6KKBefJG0&*c_XPsG#@YRO&wpJsWVfWkg3?#U^7&wGNIMD~YAi_NEZ zL?!(AyjE!$n}#9}^W8+~gCJ=sX=2X2z4W@(fX(Hy8w-)x#*{Bc3(+gnL-VKQE z#HTX*TV=1yG6=Hk0IA|0_m0~1+PhfKN1UvCuWsL|LB*nLEPMDQ*6XGMPA)up1CiC8 zGm`GY6tu_rejHBhqHi~F*%G|!(LFNjGHNPbR?i|vw6>FDEtJYXGf_=Vj;xQ|6V?Lm z(eK;f0_b|TgfNP}U6EFckxHxF@xPkQ;Vk`bmf(00j?(5ebGD*{(09+KEiP$AhDyA- z3OCm&JDuhJ5?c56h{N6<91y5doE=Ccfl&N4YfY=5JDx&8-*?DsyrhCYEO1h=@+xZl z3Yz&F$gC7@{tn6c`@`RbzrjKkdE*x`C(Rz)<8+s*(SE~aa&w^%VTl#@7Ag!RjzWHI zLAu!4{GHtV=F(+N-1WQg`S$_2zX}hgOnx=@*S~)^danH!Ap6~#--W+v*6;8ByYT;@ z_TT*EZ?O2kYQXI26zm-tY?wePuo~_e=yMB~H97B8s1H28`b~1Oh7r#*gCv82 zo*ol%z~X88fOH@H$;Ld<0e7&`s4zg5EK07^NIw=jALwN$@pBM-FJE0+QvbXvwopz& z<8^#b<56og0X1q?!o7laU^jQ@pnF^3i;)*eE0g^vpo6ZdD0U0W*_)t&_XSYNlNWmY zt&_Gh6j`?N_RWK&?UQQLBYYwt~`iGXRz^Q+d#|N5bxgy`eBP&DUBg4Buv@fT5Rv|kKI5OwQXu2p>x#P1-eP>avW=I%&%ChEO>J~% zXw^gC_9Y}GS^~zd^V^+z7ODawCy;7ALTY}8IY*D4&MP-TMVuBst)Io-7hKUh4kiA4 zj;>Q`!A6WZ78En6FAr6r);Hkf1R9q7>{jQ}=xerXcW_JR?WUl4kDTf{3j@o|{62aW z<T)Z*|2l0+7qz)E7IP!j6`{LU`L3VF?%2j!>|7&X4L*#5(j8=KlB z4O>YZ`cin&q@rTfRnT&CiXSnjfrbBi#5oR;A9)N=AFm&GNdtIAP{3VnOb?HDtaojI z#V;QGwB^mfQfJDe>Lc^Jj)(T_m|LN3<6 zbdkq;qPKmI)A`44U|G(qOQN?HZFv{EjtLIRHdP$7wZUt(^h6-%qwIpNDw}y*t+KOE zUlQG)p`1)QG1un?ge-O@xxg8sw4nNOn~@d*icIyFjo~@rrTW0z9{q{m?4<{IrpECX z!F@(m_(`;Lu_;B{4oJ|_SG`R;LgqoV?;fV796nRaigG&o%twFb#EXTCguAiXr1$-_ zM~Hh~6Y^sXm40za(7?`CeT@Y)N_|V)8Hn)Ak~pg|K6zZvGy^_x8edC_lWy9^oF5;+ zy(?*@&M-mylaT;SU*O9s-Qtma3AgN>@V#_5y6*Y5dx#|3>Xjhv8@|3b2UtnW>VQ;P zz|=6&nv~_+)p(Lp=MJ`wK=mdI)(cxF^QoETC`QqU?A8l~>k|F-1~RY9n`8=Uv*{z6 z!FrV-g`NcT#)Y$+Wa)TeOAvmzOK6(3KPlJtL@tzkr&1%fr={AH@2Q%a$xOaUS^4az zg;t;`2$0SrGv8wo8B7}utbq>(zJ_ePSaU#t8XlpzU4d5$3K`;gf_Y7by;TeI7xnAe zvw%|1(6)$=^b4IaXwcQ&;e^&NtB8^`<;yNwA$8S;3AKK4bk{zJpZ$6M_Qeau%J??B z=73OzpPl$(g(sh5>DS`%fMA%y<#JNsASG@)&tFQ)e-|GAbwqwnj2>Cf(B_(OqV8Jj z&1OM-tyA--P=ky65C(gJrzV5p7>T4@dR@ToNWs3ixcKModrh1=I_CKg6TJ5xOcX)d z>udxFTz}q^&Bd!58HNKd_QG@~SU`lWW~u2*Rjr|c=p+vL!)|I?K;xCXkuSVI581n> zaBRYEgE%U}jBYGxl~UL}`ydy0m-GIW(!q#9%T8n7zuNfWB*&u8GSnsRbJV5$hr0;& zGR&*>s;48Uy2fh37xACKb=BaRku<-#fu+qiUy*5gNaWKXF=nxYr9a^EokVk!G0~C5 zn~5$i1s|3N=clFln3EFvHbo^GhrzY<5EgeA5hO;G8c{S^W}@%wbEjA)>uk)z5D1Im zV&aH%#lqkIy6@{-AO+#lx@qk$20D*iRB1xkxi#A+FvjGu2B~%q=^N@@YE{U!n8BMJ zCw31juHkPcD+j14-ih{|Tq#gAOcW6nWKzOG&52#C-&Nsv@c1jf33-R21_vYnl7fDDjA?i`QSr zlt5yFD~5nFdxSEk4Om*+B#+*KnYcqv0T4@pDWteG!;OYE$*pt7xZS?*p&(nZV1`r! zc$RVX%aZX>1Izl7=rA~vSfVVYh@4O_1933D7Vb5C$SfXl81`yOMo+~%C;MahN%9)e zLQk#<$sL1|*Jhno?tWI>4qI<}SI~G@wq=TD(tWxlXsg!#(9RgtU94B&hKyG(N0%m$ zTSUvz0>$I>U(QUGHi&T~fQt%W4MF9)cE4p}_qEg8L=)a>6LM-1L8SeutNfU*WF(I* z04WP~qi>w-5&^0NQ+M>f_hECD08PPSd z#O(X^TBUWvJ3I(USBG*1VUj;pu)-IT9@l$gLQN%w$U&6f1T!S!jaXY`n=&~@*B1{}dNMv+E|?{CH}>2%!Gvwr7dRL)aomeFkdTq}DSGpavizNr!mYaG{2jYmwU5)B z^twm)9o7k6Z|^M1*xGq~8<}4%aV^v0IF=l6%*yWSWJ~%)1^YPt@ZS5{NNqQmT|)6} z$^Bvlu_J@(kSL{aye_PBeE)OZ#l@v}LL<8H>R$uo^SyxDr*oEEm?YIwDUs9yb4yd) zffGpogN0?oW-x&EpvmANQX(d=kMJGySV+RY2DL?%+qZ8ddOG+M31cpPRfehz_SAVp zRE_0+koq-FqD@L7#$bD-Wy@J4tZ#y;eLeWwLkFTl`%Ds8p-N5A?)kP$wm`P;^XH;o zkJtZrPM~c%nAS)GPaV+ic2s)b_($0)TvpdsRGDLMwgMTt{$XY0 z{eGaA*@e$Ckf?qBIu+5(|W`pKck6T?LQU zz2)?A6rl162_wiB%#=vuUk$|j({!7)iPieHT+kIgOToB=-uOeP53zLp)hS>d#w-xN zGSk4oAxc9oS4*Y+x~G*G&&E&qHl`mNmt?XsS48FvgRjo8UgM_!F}JVQ2Nz9BMpmxQ zWoo}{zLf)nS;?qi^5(KQ#C-O=(g%&6(!|y@4ao?V$@E#7xf~n~&P+aWRSohM6*X>u zN93slPs~PAH<>)3bq%9)znm8gq&2oQ+?y&qE(6CLwLTwxU`ppz;afu588vj6*yvCP;4@A$*A@!X3iK|$1GXuqsx>S#IQ zYe83=F5C6pKovLd-#^JlsXas)f4?#BgZ;H&A2RISxvu+braWkfbR_&2_4^xg9hh>@ zQE)5s-OuL?ORO0N5Y^ZgH`$55>o)ynTUS!_tCcJDZnzE^sa`?47?%9C+JA>-Nt68* s&*m?>{`(&P=JfwS?*Cnz1&O^9;W3H8BlRW6!(9rpsxK;@8Grcy0Iz5>*8l(j literal 0 HcmV?d00001 diff --git a/doc/python-twitter-app-creation-part3.png b/doc/python-twitter-app-creation-part3.png new file mode 100644 index 0000000000000000000000000000000000000000..9c29b360849e2433921e283039e85ff9585bae73 GIT binary patch literal 168112 zcmZs@1yEekwk-+?5}e>paCdii5AN>nuE8}xf)gyk-Q5}qZXsCX?lkWFopbJe|G%nF zHC@H_y=2ZY#vF?nRb?3zL;^%8C@2&;S;@~(Q18J|P%uOv;Gm$O(eaAvfE@@fvbye2 zP)L~nexaeVa`1qS@E&qXQt%tl__*)+O7hRzprAfM$w`W7_$;5~`ubqcKirFWXLjsc zQJAJ{x|pjuk)xwaVrhe2rPM;3o13bds+%-dYF^8$I+_z=u{4fiRbj;>aX@}c-Uwvq z81*#XJ?_>|FUdRdA82W5Dfh1gufS~_){{AW=bih3Q<<4pS;!z(^hW&gLd5Xi?9Ho( ztQQgl^>n9~z6T=uq%T)?dLk);NyX1q`1W(7{VgP$ulxH{-uExBIO3NN0gSp`VOMT& zEwbtx#u3Esmv3VUPs8yq#9WpN&_0ie75W;lpu2TY`V*Kjc)twCH)zj;{VX)f=dw-& z+NH0}IvF3Ou{CedGI5!LvgTO z##l(~s4pU4+9qbdOBY6=kGDl;mGb=*MZ5EFCHzD{%L9ip%6F1b?>tPuy(ibh0o>lr zEwbhJ@rqOH+l0?5p7(H#3S#KOpFen9TwKzDfn93G#?F7{=c$5^kB;J(mzOQFfFB&+ zjI7S<2xp=GQvElykZkD$lcD~>{*7D{yvV+iydb}U!zeUTWji~&21n`{CQPGt(GLdG z)G)7>RRO;XBCyh~wvmKb za^#ucwZFN}DW&4^I1!l;aZfq=-%;J+rY&3^9x*w9yR>C*Sw9dma~gbtVMc$4`ymu5 zycbq{BMeh}Ba+1FR>U=$6J9u|^PzwTHB;K<9pdxQCMdOktmn-tK$w)eA;F&dh1d{< z`YvI7!jamdXIF;fVrjO55dgm=K!KfWia=v8-47;bobLIqp_)BdQ0}bWd#T?Z+5MHPzuKDmVvc!Ru zZ`$WHSP7i|F9j|tY;0|tgTRQ=>8=!&g*+`@e57#N%Z!5GcJ)0>^=JBWH93s@e0vmX z@N!J!>eryQYgc*eWx#c)d`X%my11O{z3}bx#rS!dI+l^|B`Tbe56`FfUQp!~qf7OU z0(Ca=Hk@Imw2M>%vE^#|xV?KGh4%E+>R;Xt+}i8(#&wveJ(Q&8u}-)JcKu^rfBKJ% zpNUf9$Y^SaC$rkp(fM@g8hG@5AXD0GLUhqh9`>g0CPka*l6NS_&$35^)|iIs0TV}B4+-t zOIZ1+o3cn3>1xNF$zj;ki106-G3}~+Lp?+a>39p35t3Lh+_}0yf1(r=xs-!hzPJZt zoUg}MYU=7rdVV;D?H&WBEe-zr++H}R)Og4nBQ`3WSpCzQpSz3{BSV$yXO8~}dmMoe zcj`B#j)hD1mvHMn4>kOd@g{Q0SRgI7#uqCU@Rv0#VT`)>MsXz;N`ET&(^2@+`5La| zPJOt=G>7fE8UmL*oVxa5+xHXqzi0=~oeUJnetTRd;C9xV8bUdiQ&OQIQTduV4{fMf zCy(J&lDazR|Jx}~i4kY`?BbKI(!efl%7n6(6*V3|v4CfBJAcSLc|p1B=-4Q$y{n+D z?IM^iXZ9CTf$9go0yB17SuG?1uM-PnIsB~huc{hws6-(vmcx{CFvssTv@|~^4c6*W zohYMynZy^BFNcrX5ltLkGW;xUsD!kR4RnHNHnlzzrVIy~Nd4PnX8Hhg|Z4y)8m9YL|c#vg_~_@T%Hg=|D=aQhAm zuXgR0CF%ycQ56z2f+;bDg@KAW>I363zLcyp!!o^M7J&%>Aeh6Lo2=Wr4DpIF@?N=$-EMj?pr6S9W5$TD1a2A$j)IsQ7LuqK+ z$$IM1-fQCGIsv!kDrIw-f$T1Vqqx zWGq>$5IZ@N~Nw1WqXJ*crRzI z!tP;i3#)2kE6pWVco8|;3~SL{ywAS#&AzKID-8=0T50&zn!?dx-C(QDx3Ax`)!j3- zKgJ?r|GSiJ=$9$pL3<(wo$2uyH!|xoZAXYp+H_o1Ce_;hgM16Mv3 z!7D_zlGJvaFhX~K^E#cB-3Jq;kAd%z4ubop?)`R=KXdS_)p-lNNGnM<=-IYYaVh~X z8pn!^!a*-W=uR-?+q0W?HED5w@sTrpn61ucCLKyPh0?)?7aV}I+u__AslEPkAj6U~ zwktl@DDjAE)zFsd#ofi{-k5YJM52;izZr$qT3%jS{+Nn8x#?npH{|M0J7LAaovj39 zRX7-C8_;_epu5EEkJGSmaAKEv6R*!!^=(>3fxax*{68Ie;rOoSI7|(h*zaKBYob*a zYTlH$csvNHTVlgGpzf>Xm=*MdgdDe^a=87OUu1Gy+sJzgPb#SUyZPo5Fpn_(#00UN zFDJE~uE*HFQ5h5vN>lj#ck(FdH&b#w&)=t-{tJ07xXwg-cRmogzBCGX9`D`TZLKtC zBUg3|MSp8yDC-<=VTmUXCoB`DndtuUBDMe&W{0!K5~r7%x*V)5faqIYr&8DWx7JF*&4h$8%r(Ua3=uZK#It?aORJ zjsBt5HaL2#MwlWoHwJUKh&t>bD{LZDuC^RqrDH8a>0*eG!{wJJxkf|kNGc6AO96k@ z1~49|TJ+&oCkaA{$_6az>+J@qy-t`Zeg%4S^7Sb#a7&7^n?g~uTI|?_w5+{mbPz~b za(`UlvI8OJcB01euoO1d<}h~&OrKUJLpc~cv;ELO!>Rc0WQ`)#*T2VNRaY=D;Miik z%7`KP)(96o%xa-1tN5bwWy+&Z(_B_f{HJA8iNii3oK;reSGo+YRNzvxrMVyvaCMkC~?${)}Wi)0lAo`5lKB zI1s9mnf|G-|Muwx>y%DxhO06qd~Ca*y*Vw=@=2%7k87o8P0TP53dB0_GqB2OW02J* zn%h}iQI9ovtLpG&K6X}`8o<+OHNX!*tRH=oKz7jELCZ>jER)+`CAyQgM z| zet`WlfQe}2jc99ICP`uXF7%TtUm`;7vV+ILY(m3RZVV5Vl+AtJpK?{&@$NvXRv{98 zkAsj^D-bJk;SBA~%}s{lh6}%Ihr!}$qSY|VT5Ian__4sr#%(@Ks=lH__i5})MoYZR(O=(U@{mpkST0~ zl~S;yCMH8dUuKZs^A(#l==55s8skc8nxC-H4VpEXc=Aur^woaN{E;|kOM{NM?Xp-_ zT`9eQvgL~3vNAGF20EB|!7>E}D{?AHXnw~*%?3h4Sdrr__ODYdas4cqtE~@fW?jT(w}zWH3+0^6xdn-;?Hk^ysHor?wda3dxge$Z zQ2Bw|{~f|}t~RLxqUCEgn%i2bYoQmA=WN_x{-vD_i<2}VA$PvqWd$(52f7M4i0Vcy z!g@V#>|Z+DtEPcGX$RC`0&HV#wIh093+DJZrUIcdMN(4=g*hp^@edZ586H1#$-`!S zGdy!dchM!(W)_ylHI`xWfMi$j(!;ez_JiMjVAWe9mr7(E5){ za$jEx=+@oKxGX97$uUAPBO?;*!EAhP2dp>WJBc9wT}uNV2%WIcxue<&4OCV!v0*An zOaNwqs+LC3)pIaGM6QfjpBdD$w+K>5cuKED*vraZvMLvFFfF;NA;bO#lyASSeTA}q zL&pZC4}$62>r12a`fEnIX44JTVG4>eAFg8#m*%@W_o6t9SccJp}+SfwYYBZe?pPdp-N{yiTyh?Pg zaff`2y+Szfha;>ro5#TeGCn(uZd%**vVQdNwv8Uq8#sNj`J~EXDQi@((F=!X{f=HD z650AFWnx^XnHbpn)iRSzB61_|iTo+dH4+(r(s$pmZ;F`&^p$KM0$C>Cg7~m2`|7jW z4>RUmXRw)P@Hnp}X;b@Stq$YBHpJXWtjbor zmja_TzSB4*zostjq-C$cvkywnfAtB z8;j|Dv61!SUx#nFbEHnq=PoN~Yoybh=8vhEC;*So$=RH^#g8;28t?N3W(`H#c@ysI zU-DpJ7mbMC-@+56_7MWJh0KpRS;g=15>{|EDGx=vcN~pd@c3j#JP6W>ioaB9yV?3=WM4L3w|>Q zzAUngV${b(dv)s<5@(SnfH7mZ0gqs`IL-6iKPEOk#+hm1lDg)Kp zuP;0t4~O1~x_euPnFrQL;a{kE*C=}~47vkJC6tffiAq5T_JX?8+#jvx-Z~jlW9+vP z{ppW*yK=)ptLRlUh4igeDC-Il_OTEPFL;yXYnAEkr%YB`jC`oiAa13Cx8H)3hd*-1 zTiPusB26!PU$;kfDAZtvWQ@)J;HDK z>EYo)_A_;4f$M(mx}cA4rVZiBVsQRF=F;0BA$jKJ9Xc==4s)(-V8LgqyASd*_b* zuQ48m@Jzi|?mc^Jb^AdLt09^80GL0h!eMi{uqn4Y9vPK=FFJ?9XoWfErOnN01{TR%WoiCl@jQZ1=%E_By2zngB)K*yC|nAs-s?taxKL z)cg!bl1?yt+MBp0^x>}fTSdh*s4#q@Xm>;bApW>N8Z5iNeqo(66&H5Cn|Gk55c(p^ z8@6Pz;mSY5mGI{e=OY?X^n{gwuY=cIDnrkD($xNTA=~@XtMkpIska!0;q|!nbDGj4 zpDL?nmh8!@yH3$NFr@PlylS!1lj(ZUOJkyhCUzDa$gHB$xkH%LUW}6t>ie;k3xM#H z)ef)Ohi}!gw^%u-G<7=P8XGwa3($2c585LOMg64tLmvrpoM>#zY)cU`Z;AQCOsNSJ zHX2vxSXihujN|5<`m&c2<4=_H=|W;`IOSs(q#j<~nw_4qbZFz3%*ZG>Qkf0;O`CMt zvY9ka)>Q&Og&<(In-&{-;qdXjcjW`)wae4uSxjVkUJEv%eVLjNvZdbmh?-Tq^p4Cy z?AT>G5{)#9fMF{qn`9?cE?uq1ivMLQ54pE%!C2hUGyd~Fet_`)d=YK3iUK_pZ-c+~mRo#lp{Z-Djw*hMe`U(CFx?)SIlQZ>3~rX`^sp^9hVWO+(=S&H z=l2S6j@p6E!+?go*y&$W=X!NEwrzP?akUOOz6=O;|EhrF*K zX>iv?|4NKBQs(`I1lV#2(IG!OoZe&9^(?CGQ#1MmO-T!?pNUmc-hv zRMIYvj+QoGxFFf80lgF~ChxV*ZOfyKHG#AFeZ`N1*=842uR)+UzzqDpy_$5PzO>x0 z-{4q<+CevsZuJsBIH2U)Dl7*Sb}hM_Ev>u|l5qCmK^)8Wph(jGkKvLAABdUoHSSD@ zJ>2A0n`}z%8lQFnEeg+M^hXMxgI(LorS_<(VH9g6Td0cpjpGzMqc&%9v@SuERg2A7 z=v6#!2g*1cuJHwOxz8L|W=&byT+*?HChVE4nTm{y-J~Ga){AT9fM#2?Y_IR?&qJ6F zsFAwu9&`fQuj#V2X`?BD27-{c0$N0zI4NG6O_wV*?Qg zX{3XncvRQwAJI^&DhEJSvE;g;M;A=L6_T>3 zY4GRT-He>)7dmz2($PgVlKa0eH2#=2z9)6VB=(OD9(%!uUXQw>?_d}22ZzV?>vLb< zEARK}vJw>#|FrT3v0D6P$(g`qxU03>b(`d~hSEnA?%Pw`t-^1>^YIEk+Cuy&1)|a| zO{8{_!$~`(rDB>_va0F+$xmptF*P-14M4a5(DPpr`q8jsv`cl#x2um|-`3E^4G=zF};$K$=wNSk;J$(pUnY_Sk9e7r6cu11fhqD7M& zx#nH$uw?UZuA;$VwjQg;wuzDVyW`L0xx6}D-1iW#myUhOAAX5cB-e|Z--A&ce>UMS z$(zZOti*}ik*8LWv`3hS&xA}Oo6!*;WE~bT(l+=H(hPvGe_DFe=xE9^mTwrhMMlIe z)Y;9u#qv~_oG)27cwdpv)^||I(AUXo6)WX^;c85+S*RY&&Wr$^e&p8wWa2n~5uu_7Ktg|do^%IPCbO`7yv z7f*Gl5K<8str)106|FdwOOUda3WarK0u9k6=AvaNeAMS4#lK9O^jKM4+H-8Oq$x4T zu#io>i@)wEi7jyUCvdP3WUyvW@a8B3C9q%i`-xT6nhztK0vHKq2mHT&{rYKbL0QtM zffWHHA6;EK!*(xNP_IMXhF2S5V~rZrpr=@SiGS+Dpc$Ko;jmMSX_LHM)jVf{B)OO% z2@MviY0FaW%ITlKf6duL7mj}!c6j~6N7d;-&~%yQwLvrRrwe{^L4}%{fLvXfp1S&V zTn-f~bq1{yGu}P&&p}!f8>2juaw#SP6b>RYaKeoo zQCwioJzOlKa1)nOpWvnZlJ$rlNv^JM97T|-b`3*!co%kN2vfofJSUm7bf zWr@w*06XGDLBSCh$I>afctYBs@Ut9|pZX+)^3P{po3Qiwcn0~E%8=$iHqWJ~%gteB z;$6xxrZvXgsZ;Ag$>}8%u%8%%ul`Ci>Wn;9c-5CQ9+j%NoDK}fz%pds-aCFfTNYbG zCzXi2Z)L67v>be_=MqO0X`aBD@FA>U+H^6@#`5y>YrhzRty;92dZ~TL{?T3?w`^P0 zA9P)&jqiVK40#Cn=AgBwh)RQFlscE)v3)K7$?rPeP1SGl;~s*{G=REf(R>`TaEy)dZz^TE z_TAYJ4gT~VMq@k76FF6&pY^kU71fyEuEg<%Yyz^mT z$3kbvc-041^fDNb4CbtY#HG}r(~TY&gbh36wa+>tcyJxDxB}U^w!IqglR!gMJV`1} z{(I{z?^FR@yyo>)80rd#vCqzZ%PxJ;k|MI+Nu6u=$zE#WM@aP7QO7PIV7tLrEfKq5 zD9U(t_A|BYwb%u_$nL_wU7~t5#DtW)X_coZgyNxfvVV`8ItZV)Q<}8rwg(x}E3~jd zQsTZ+B4}!6M`#H%7>V{Id%I4YCS4Becc?bCWI$6?=Q}L;^=|y=LE9sk{$DS^IG~jF z3^;I`<4MQ4j9qb`TdG)wbg=Mei-394Xi9>kM=Z>CeyfE{O0cMyE4WhK8J%r!T}|zi zs=UMyD9{{H!LOF@vzlD9ghaAVI*wYA)_ffuPH{$Rd6u|xtm1wOM=5(Y1S%OCno^qc z=HC0+idFRG=N}RDr$-~0Y(QV=!?aHF5n$fUq~uL^KI}MWuv<5MtrVrbE8s3Kmk)ec zxDOEa()vUCY9paCbTr4A092=EYnc}S`ORnJZI?%3?c42!JH8$apr3BDbbJ1;2Tr)` z(eakV<$Qe&c6rJWV;cSYZ7Q_uO60|gTsSYOe^j*LitGDL$7r4PoHlSYNx(vjdLr$grxkHvub8f14uN}?`Kh8JYNXsYDnqH1I^MHqF zeZB37&?2Hp9G*7D+}+(>&nzDN^zc7!hRwSt$kWRRp~+E$H^=6hcIry!;ePGKmGif| zUKc1Fe?9iqvkvFIM>PuQ6wKVm0O9%$!{340+4?#5vjg^RFQavMk)eY}W^2|B(14z~ zPUJrdyR+C*Z&DM^c&shS)vB%7? zky7A0Vn2I>Uc}N)5CV%NJiI?! zQ_mN9+LO3q-VYr4Yi@S7yGK9BWbE}w=8E^YQ{eE>gSv&dbPR*i7En@7_M8|U{Kb7x6SY-M6kZT1OGo^?4IdVQVooSaUHy(LMN zlGMAr&JtZA%OzAl{Jxz2Fjyp=S`+ALbkofn_%l1x7&PtuE9+gJm9wjd#qLK2sMp8w ztIn(C26BU2Hu1DwtFb?W**@+N>e$<~B3pv(w+m;C7#KjJ%hiN_Hy?4rVjwRkhtTsn z{6vX?@Jyvi8!JwpY!Ybe+3=j`CweM67Wm0n(LV#;C}+KJ9`^%GR5N&fet!6dXlZFl zrUd*hG~d%iNEcC0L&M{JXCjG zmynVXPNg18V;1ZFpCT7$3Q3Ttk~I_Hs6PV)Wbf?V;7)f9EAV zag(eXDCm05L*LY9F!{@;c)FSdlIWoQvxhtu3SIk|e#|PSJU0HsOZN!w3!lsn#;(2k zu_@!&rXBc5-S%pAOr1CW|F*mt3-PNAZozUhBL|F8>e zny`gL>XCmQ(x!6dKCcErc13<0-*Z8w%G}sC3qKr|1$0+sMGf&t&IUm?A>gYWk4M8t z1?~x7s?5A~o-4kf*i{)eWT`a;+r_Wn3=XBNK5(C%p+I%uNx90_xQlI23Vh^Um8x4Y=F$v2Q%<=Bw=! z$S3RB3r2aPSzPvC6_D7L?RIrwN8RX@#1U^|i z@YX{sND%qH`|2?7#XKpb^aroDyEP?rwP9uaW^aF=!}rpH%x5zVm?)UgYy?#QofHZ)7KSEQ>J{`ltswX?HuDVm4%<3m<<{O@)JZMh z!APUvr46L6r4Cc>1@Mg|$S)9PoLU*uE}NfPx)e%t3JcwEzK@0B$4!ckp-rWo`X7$3^_{>`N%~vu8s6bmiUn zP0VOmh5J);b)ANt;1TF1u}oWJks5)iNrODW?!zyMZ=H{5mDUNHZT>VaW0-GS-sz8v z-46UED8zs~sNiJZzklT_*5c5;tRLZk7Xay5kUjOeRonGk^W~|t7>NfNot*WbI;^%6 zVSD)VBA%TcOo!lpXqXN%5xup(<{f==C1QnrQw zPI%0pq6Ekh=&=LQ;h^6$v=E;#4QG0sIE3;1Ba>#?pS+GHY?yIC`JwD*Wo5hzrF8j% zLR2N=a?8}vv69#viiQ*!QNl-5Db+1@t%gvLse~J!nkPf7RbhQ6ayBT@>VOi1US2TF zLQ4)({52&laX2+hvtC^v_h)l8s^J1b6sFh$@=mLwp(E4eH!LD$nv~T<5OeaDS6FdK zu}QET2aIO#Je1n@@$aP#4VAODk^ zMCkiZ{w1v*(tozs5oV|3*)o}~bJg80pNkF9-rRA7)U&;JbivzF0JwVFxI-ce{0bJ@ z9w27qb=&Q}f&~1<86NHQIZQ0(x9$Jt7ULVUF&^cw$mml8s zdcIArGTn~!{w<9yFPGd_qbEmf>D2lPe*4?~0gB-risj2v+<83@-be2`(Q6=I|BFiR z3jU3IN;M|{rGwE*0*=MntMe{!|8gq1&DDrb?|pv)O2*qWB}T9&Cso0N`&U%(h4L*- zo1JRgzb7Vy=&<|`rt8G}!?@${R53qD=KXK-7vW>-M)ddFb35zt`{2xU?VxD>n6{y*dp=;o=OsGSmZMw0PB=wzbOFas2gBc zr&TpklokLC3xYCSkfp@1DUUS81FQm+Bg?!Bap9UNvI+_+K?$BeIa)rz6ix*qvmt-+ z5mctdqsE9qkCBd+BnMOozw3iUi|;P{#Os_e?aBs;>V}3&25B>#D99In>JT5WPnQuS zqD7RpMf4MT;Qs|={$ZPc&Gg@WqfF=@!v6uEZLzoo6-!-Vhb@tHKQ5jg*4*yQAE4q) zz?j7V?STNI@E;)Y|KG|#sI?1H~b`U_Vy$+UCRz~fhKTcgq zw90%1i|9Fwjf^}P`4V>`lL$UW&%IiY6z{aXJ&(e#XL&*Xc1^tU@CjxWbFFm$+Aw!> zbJKYkxsuU5bMAP}$su~>b3fc1Yj$yMcndvBq2MpM|D@Ww3pHR?x8t|e{NN#Mj;u0q zpQ1@RC7m!T>x3Ix?&-5~Ba<*{@U|h;`7%({I@_KvZRr$vZM62Zy(-CxLd?5*Oa>Hq z^4@MxBPv8Fk4_?Tybuq$F>P&aEtV!6Docx;i?eNZ;mitnV{}k*l_&bn4x@>{GOR=t zI?XX8`v%$Z(1C;Bz0K=ZREyYo?lqiV+=ZcTlA+?f{zwtQ84$xjTy{q}ADv@%#N)%M+!Qw~7)Dc-_luwU|vc@OoGk zyuN;aeYO_Uzs2t7c`VxuO1Va_ZiB2@7sTs@2t27OjyTYEZbz*+bNzT~b31C?cRgHvdquCEu|=cQ{qZC;V23dnXtBj(rm z6Z_v}`JWK-e?$J|R=1~sZmS*{aY(yv{L=)3Na-ixJhZ$i8K<+~5@|A@(4R$j0mBnO z8=r$jre2?ye}?U@2fH`iq-^jQ#~AV)vizye@CsqK6ZF3GJP_5H$LBuL!$@YQH$&|4 z_2rInA*OJ5*U!N~r-Lh8TjtNNQBtW20?d6!6P>ht&nD!nBhBCfGsQw zP$3oz_f03`7V>bz+{CVJbq2SZ(gFg--F_EruXY7e>s5^H#3fs{&|*&6R<=dx25a;_ z_??)3L<+&2we4MRlOsY*=Q7OTre~`9IIcO!tp{O&SkEcbMilF)d&W>)S8&y{= z2DZ@SXe~y4l4vMaWsTzL8|t5L+FNo8+t=V3##a|OzM`nBk*F(3yW_V=CL2ANxWS0x zh)h9W_P0!KLaL9F3+8}%KIZv35?@!5S|GB(gk7$+GnbEIUoj^IcEVwId=mfJdlZWu z4%vEY`5m=VmZ@MXp#+)Z?7xa>W zukOAjcR(e~Kqj)vRW+a(bW$EIq{gF|%bv}s$?R{6I}B8o;IY4pjJU>QjeVOmkbe^k zoSDFxJW3haXK0zNmJm3ho}R#IZ@fy``x$?`!F+qN7dzL!; zXSM=Ub^$0@sTT4~rQuzpREqB=^|g=+7Rb+EAImFB%BiJod54x(IWB;|k>Gf(ubX!E zRiHJ%Rvg;vt^&*o>O#KRBcg1THk)olbi_Khhfh9p>K_&&4*qmuV*lD5dD3d#r9tT6 zVg4!erndfce!ERael5#k2j?j!Tn+JFTuv^AxlD1>q=PaKF65E%h7BrL{;oZG&v2dr_xslbjK z3|n%LUhu?ldk450xKKJkp$LEr9WX9>dU}R~Oo8%AvMh|0+$S0go2*F96c_$nAFxx7 zG7a}gWD}cn(dN&L2^5l$CP=_u@%nol0KXF@nVJA-*Q}27oaq$Yh8YDCv$LZI@PEa8 z?2^L}D>5?ZQ?jh8w*D8?Z)s;VLPELM*B*f6&%IJW*pxuXv*poNR$4BpZE2zVtGb#X z&SLmjiHeB}TQdzIBFw_l+hn5`x?kesXrOpG_paryO2eMe+5A{K4LNBmYUOk!(DV%9 zs<)=58uouy6*M9FnV074FeWb9i7jwpAY}RoCRW?a{rX;sp=JLC16b}aK{CMTBs%g0+jxp!(`Yun<{ZUOuDQhaw5=hYtlHY|H2AIXz@V z=uWm{h1Z945z3xb;aU}BlrLNl#+Bxmu-3unNVA;ZT`0v_@qRL+OUfM#^xsIDvtcQ{ zcL()mtnN~(sY^?1X@f~{HC>Tb78oT`96W6Dq!^ja^UX6vc{nLYA}98GE$U7B!{;`8 zZCgw;MAa}%LVzANV=JIX33Qa=_WoAfH#U@IL%Ri$;e=^ti)sJQ(~q5i2O}T z+Rf5K!gj)(o62m|&2SvT^i zUq~WW_oWpn@{d3fYy4@f<{tFzZmGT{%iB0ZToY2b6BKNV(mk08WLD;`(>tt*5$osm zwVkH*#Qi*XoRr;ftv6d&_-`#dzB|>&s0Gh5<%s~dryg5w9j^Z13?*s@Zo&f9aKJqW zcr75U@#Q=_6vNxRhEDBXhw{={QFBwg>NbfkWB;(ub{a!$>9^)c${2o|gy?-rAeGmF zNqa6BjB+&PaMk$+XK0sRScb(Q&PBkzqc_;VAt_er(M6a@^nau=6(3F% zUY+}OwhkB<)h2hXJqoLpmCp!y9&F{g1H*^s(q&#>Klp>_TXu8B-j^CJ*s=BnVn56_ay9`qI&1rTe|6oXG(k5Si2G z0R7{iOw+Q`XHnSM*=ZU}-l7jC4*UBH{BI2m(%x%o%GYsXTqDuD(51?|^W72S#Jx>z zoLY}fqR6CnEMTGE|4aAM4ctZCMf@IRdO~zKr9C~lxSF_N#7!MiU>lZZd6kmG1|7sx zDsA9O%SUfd1z4eR8W30kfvDBMiJhIpc7Zt#^>l?IriCA-3W_bC8od#FjHy`H&Oe$i zX*qhAnUN9eA8I{Z?Pw{5`A2fANFlU}pV0r8x&8l;xvFnC&ZQ&u0l&imlg!9XSXkKm z=A@tbCNm#%9R@3{N7^opP!n;8RXwVE+yt-oJDDiS(TT{sI$joa&cedp!4>-go*0uq zrG(I}8(}L@5&I%WsJ#s5<3IEBLo%u_*N()^LRUw&J%6FLC+xMYufz22jjFmCvod3% zoLO6#zh`G;Nm@7b)UAg=<#u)o+F2^eYJB1q*Xu0s;{DgRdS(CVT;IGW7od(INRm`q zM=GnSiCtD!Mx&HFwCy@>W%^!OI#I_ig%WTk*E6agyhQ_~%S-bwO$+e^`%7Ce=aa}5 z*ge@YGbbkp$5!FpCdDKV4NVkqP`?|pZdzu&&9>V2V-W>zvawAI;d;gf-;rR{?Cx@l zE3&bG4Gbi0?kCb1$wb}UJrNfUK0ZG1<8Q*Ks-AQGbfviB7}rFt_5H*_vyq#6$E(AD zA-o@15UL8{9|;8ClflgIG>4KOBe-o^{&pl;f@#^0)ChF z1qr|AIFYww;vpl>$kOU$rzUpyz7mZwt64_swDYp<&NVv4_G`UZ@{gT{ZoHn0vO|U* z+;m1fhMyhA9~Qn`6Z(;LO?Kmj;4^r!AK$c0W5O-GS-m^$a{7Eq{khY~@0S3;=kkM} zG>#~saZXFO%iY@>>c~TgQ0q&C`cUPO-qxeX;J=J9S;hkJ33amOeI2NV`E>RuH5}BQ*T*e`qt6J0FZg!wr~0w zW}*32|AmJCY7Flvz;6GmR=i-6i{B!`49m8mX;A+Yc_y9`ZK2br0*<1wwH74S^_ocw z?`6~zDV$vzE!u?F_52hGn!(`Yt!f-1y|($csWsmyInCVQXZNw|)g?on<wP>3ccYXpL8ieQ=%00*>h&#ab-s!;r>m^Hb4J5r(B~RDNfezb)NT;bgVw}`4W?| z_6{$}2?fmR)bq+NUV!c#z#81b{qFu`dmmb-)rIVRq9cOnlydHe2yq>hMPF@h#0c?t zJb|(`NTdVmMU8+nITj+D=}^g`dG66{O05)@2<(W(r8Uw@J>#tvQRkYCuLP{k?eJUC z-Jt|R6v&pR#NggKP5D`6SqX58PdkH#HTyRQJ3M-bhhwJ8<`T0?6NV+!$df->@e=Jd zB>mWH?=Y4neS77K%AL-F7(2?Is{}hUzD#vT8d)3k=Fp`Q#P4@rnDJWvH2hyLfS~7H z_xZ4ShrTAtbc?!x6{FtdmP-b60Xpi%ko|V+PCdhMM4S8aCpp?bfh}I`mIDd~OHZw< z;c6m18eDOMan@%|6S(0Z52T3c8)-qGa}+S-F6zioV$nM`HWv6F0ryM&-bB_(&Zyjr zjBmqn&X}lC2vOGWH>TvekOIdroj+FTA&G7prvF6hn~X5+SXbb0UNSoWxe7q?wZMn< zTJ@^d)fcJZCV8H!r@M0%U{QtIHze~q!%p5qKoF!q77cc}<6a!MvCQ7K{s@_D-)&%ZWZ`)W#A>jbC{)Q49{(Yfz1H<~ zksc?&c9~l>u)Xg3hEn2sexL%?dI%;Hl3d*wWHG(TT?xV&syaMwq{rlev)B#)eVLoGRt zqz^{3vG}Zq{5%$i{RrZS&F_QxFJill!uXAc*DfVG^Y315et(Y>-OUG586E(#v*QeR zi+5|Da<_F)dLC{a-w8T^mdY^+M40Hs8sY5+Xg2W7K_l6&b?eEGCJ5o#r5u<~92qbv z4V=7ZCTYirOrM029W=y?;5EM(i?sj*@BG-G06Cd!W=rg zYT1Yv!d4vyPq$z-Y*E1PqC;`)I3}RJK{8T-KS>s<=8mE_N_GK<(Jiq2rud+O8ot zva^BJWK=%8HNKZCVUkL-EtR}Z%Rl|9n$e|%guad@(^CETgDK6>Xg8O@U9|_B=?DKs~78wTpZYaM7kY9TP`gA#Ok3} zIp?l2^jviqQSq=nKWUk!AviSwoS>S`3Z z0Na_$S+z;e*j^>%GgfVZ5#3F^lB<~|&2PJx=<(xVqe>YBs=WRA0ByK0> zD81W{-P%o!%MEjn4uoP|CWv@FC`Z?OLWKd@h}%XdKb_z1{Z1vA3hEw;|6*Gx7Kz(= zqqv!%R0&=*XqsqVOW4U0BrR9Yr4(^3=5_s}_VPJmq{ZufcLcHwAFn6Xyc;jI1b z&6Kcmc4v68y~~_&?yRhk5>|)^>f!AT>~cX5jUqgi7VFH$0W^fXKzm;%Uur|T;*>UY zK%H6Bo-L8x3WS05+v^|{g9kWFEr|^U;TARCAiT~4%w>K!ZYAeLuj@HL3M*CI-pKRAx@r|v=`kn1^)MyFeQ|0OCZ5v($LjaFfn-v zA=b2KCJU@Fp zKi4Hi`7T#O$h)3*C4?*s{h)KJjc;EZIHAbt^iOm(ld^uovp7v%i=Z;r;oDQ&%>o@J zQ6QSsC^XlVlv-5X`SWiY0%u!pc>n~5QQ99i!^XZRW7+#akg#LF?)E}v3vUVe-)zZ` z)*qH;R}zg>_XTQY0^uO5GUE?6Zgw|w@ zl#vO?nhL=MeAgNB;8ajWktMdAZ6Ot&7aj4%Zl4A;MOcw?q4tostD`4lo#~4Yb_=AI zr+>yrEq6Lnt3=n+kwT+oru{;kZHFlukd?CNTNf&3zq^UET;W)x*=-!P`24FVroXKT zHW$@;;*x4EbD6A7r8t?g`h+i8^rc$My-NmUk0tby8VQXxpXHzV@epE6L(We2m|TtM zzXcF1ItQtz{znAz0+nfUWu}TQ0qKvii|>{h__gmcK`;Q$MV*u zv?S&&xOoAe^< zBMUn_U2p}SEOxKvl)2J+;$Mh-V~I?XTiGPKm{(;6UzU)eaIMvfMx<)xweSsFMdLhp zzDVXy>@-AV9v1Rsm|f|f8@@7(Wv8X!f1{<>?v8dR;=Y_qWO3LSbqzLO>R1yzs`;4T z{X`FpT{N=%#bby?Y}(?MUU1y)H+jAA7S;WGp^&gDn&`-GebxK)6UQrpO+ydKhD^v| zoaIATV*VnX(TC9=H6CUHqM9W1>EG(xvJ~u-tm;z$i4GqHBXv}wLT?1rwAZxZd11)@ z`L|YAK9Ib+8{1GnAE+AF>5YdE3W=z7UMW6x6=gsQO(Q%eue8ZPgyJJZg67QR`!;h{ zEv>00LkDbZY^%j`Zm(v&Nv6c!1f~@06(M{%x`<~=AJZ}771)oga2w&WT_$_KDk{uJ z=C!hjx8)!KMq=| z&>nd8=gjhBqBp|-p8a8^$6PkcZSLw+vKBp{WzB$TG+XIGsTfDe{Xj?oA z(>NfY>Mm!zf>MK&?Wf&0f|`A}xlko-#RrmaJ0cD7SP^EAw6wsj3qXgs8ZPZH9Zc6& zlpD5Vz#qlU#8kEdB@rG!@&{D+)Nz=GstZ`|Gi_wSGIBr|zdcrXi#vqJ*BLc+O~FTjeQhgoB(j!ZR=2Y(9n7}@+iE^{|UI0YfC1_@3NEa1K(bl z*{g5A8+P7|Zf6ZGE#)zuV^K`CJOanEBXoEg_SP`Jr0TLFX@uS*p-79`2~hKu#Hd0M$aGd7G* zog}0`Ci8c*5;MeZL0QFJfVJZ`kUvvNc&j&2D9=#TV$|?gtt#277C%O=AHIvFU+)w7 zhVS+LCOwc38I5+*sTwLKN4Hm=;vCZ7HS{`s(UZqn&_{4)wGEV8-NT+$uraZAGRD_} z81fqI5C-o+d{V_Og7ehwLe0(10D{QWam}+AXQwoItnvQ6GF^_hgJU{|JdGc&J-mT2 z?S)xSA)O}3@+`y6j$=`wEb!5Mqhs8&sG5c!kB!~GlA@#Y*&x#NTr4&8i5Sy}ez=us zubJOOFcaCamN9)LVUX`4gOZBuC6Wx(juwR<ZtXu*#SveyG*8GP@%I_5^hfN{smqolZ2}AKKtXp~=y8PF-S= zjVZ_zbTtzGv$hX95p%r#KYzfFP@ zlAWP5N^=;`XK!Oe*K2DV0sUl^5w*KZ8*BfO6+2^JN{d*G8gIxwT&|R5u_@l(eBG)g z^R`V4`vV^{Cnp&|Bbuc35E4QU+3soZ z8WP`IP*R+s!bi&dp3+j^ixEEfx|$@p@G9ol*jUfH^GX_N{5A!lB3e(aVg?htKG|0? z-1i!W0JHhs>%`*H&!1SU%bCi+drf3)1K0q5~`3Xt;?%Koy@^23p~M_w6GR6QsdY(3d>QfceJ+Ev5sv0;{~ zBI_kQV3x(s*jH|B+&ew-ez4KLz-#Cc6&2eMUHs>M(6L6yG!XOTz|HSD8=Bmb2P0n( zY6pZ3A^SGZKFyI9T7P;jz>!LpyA)SimgKjhGU;hdUr7bOA`=@iv>R-vta*z{=8&4nG?MWf0v8XNU%p zIWq@Xo|4MS?}d;QK$ld?!Z+d=T)CB&0{ZbfR8pV$>90JGVxrQ*kNN`s#wdm`u7oFq zib1QZAiFtWivI}hzXAyzhtpdvw2(;TswQ2!%pkfsZ2Wj5tTW!)m^L9C5F9$!?EKbp z*#E39)PDrg|Fh2cPuvtj>1%hsAL_JOHOlGylsmfjx&yzJ+Qp#50gYbb@{~Es<%Zc} z8Ye)fyejhD6H<4@cEQOGmbre#krTc4<|Nb2~`;;_DL&W6)NT% z;KF*>--km%D0ZzG+X;>X>_Q=G#Y9zNUaa5M!cFUHe>tw2_C6FkDOMRFZnk$GBRDby zM_;BWe42ZD*zzjw$6|-KDJZzRh}5YTzIwLfJJ%UgDC{>*oL9wBLN?14YS+R@NMr znv%Ppm!KFd9$@9kMZ;9=W!=h|?g)M~a*8#77UU4gpv3&K>zbv?JUM~$(>T_)*HU(> zi8z@Bf9W}?psO{;n}hSY;Z6u9^Oa$}9c2r}^ zF6v9(x~r*6Rm8^$V>`=n0TO6xa?vmN^Y1>qm?3Z~>hnW32Tj0e_u>G^eBS)Vb0dg6 z3*IVvlFAlOMf!J;Q?2;{%j*9O_x~jBCNosTIH>awkhS$I)=ncSHxORL+k`i?Q6IS! z+}#DdyqX_B((`Q3nT(|1AdAfV75J!I3e=xpy06qb$H^R@>_$9x z@5sQB8i+%pnLK4H_`Av!Gc+zuVW$VXY3J6V(;)fW1u1zD{Ieh+&YMP}pO|=19dc)Brb&6=#Gl<;o@&f_{xTMnjP*RqtM5VS+~d zW+VJiJdp*$r`D-MS_cv!`@_c{ESh0a52*E9X~H4zr&7$<_(bnh#|6GBFaV1`1tw&1 zOJt%GmoiZgS9m|N_ftb!VT8SC(}IyENLEYB*FlgYF0A|wimcYaAU@&nARX)1kfj6p z8U9z#y1VpTXt2@>6&c6znZ{o_`3yM zAk-vWD;Nzw4oWXKYdF%*Y;y5u+_Z7iQONW+HD}XzCdf>@?H_LsW8ccP4BFeIk>i2< z1GCYr5(aldFp#bBKv46NZBd%`b2)i;&H_*|1f0Cba<;0y&v&84l7>0w9&j%ilt1tb z1V)wM#(o)!&v( zcH8A&V3&#H$EuXW275}!1qy>lfDk_!;80N#1{n18^e|m1f@O3O0PB@es9P56DV9ST zI|9l${1~hHa47<@N2|8-)4P6g9he#C)>9 zqY4!3ag@0EV-58Dz~tsZp5>SkOJw&6Z)cw4l8cwGbJ~yt^}ur14ENPZ!|Co^YJh51 zZly52jnQ=mW0^&*&3Gm-HN@Wc<#|vmhKV+LI6~}S1NeR3l>Pv#kl3E%)?^WCP>#4y zA*{}O3v+9F=-gPw{pz$QemF}wasR~!wYG)?m}+Nm1T(w*%G+%BM)Ge9yBlc~9~?VJF&#TIVuwZ{nc?@hQ+uzNa&RB!gZaBR>gIicf8)Fg-NjE}IMOXq!tSTQ%+g3OM7h#g_X+v_$h z;DNkeP|mv8KW(qYcIUt=-)I+Y@;uA``YLOoibfvOS4{NS4}~u^w$L2xo-4tYbwa-U zmFRF8{~AmcRdjGe;2+?Fow2dYQf$sTF*9rnkLi?Xrh@S`Tm2HgJsbCctx%`t_GpYL zL-{}soktIs7YjYYc^ZRD&x%eh=YyqDVucvpl+|5vdlZTSHa|F8wq|)=$3%Od*<;`~ zC0WGOI#ES+ik*uT>d6}Y4nxikdtLE={^#cW3ExZ?aluC6jJ{&H>l8QKFSpogvTHO4 z!YenfGW^p>trnZ{q5Hg1>|S-b74JfvwJdOm2hS$&nKImt3$MFtz({;^(J0N`D@;ub z1NZsQ$&#C~A-1Y}Q=!i0i#b>J3m{Q?-~CLUD&B_uE#1wU$7LUx(|XX@M1vp9dlLij zrcIV;z#b%-MT=HGzR7WUzyi-qPe(Rv&(@mb$iHwSMgi=%KpBuXMN++fSW$2=6);&u zg~fk>n+>coQpVXNzrtu&C4&2aXt$3>;3WfkijNL%?YJ0epvA&etTTA}*gECE1I@t; ziAMvQO<-g%T{r4LvX0R!x!LTdR*wS?(r5p5@(P*!|1VIzLiY6H3{6$l@nY9&#R!uS zJH%g;VbTAXRQkIb+6qJZxm(Rz0_`mdPX{*Z?H^NM+3%InkC2Tz7x`LlvBx54Pq8Ig z{?ciYUA5MKT^1o?BOSE)0xqXs5dRWOvQ*DsnkzGWUdWI>wK5x8J7FW@v9DDBiJx&? zR}N3~q~Ye$>iBUe-W6ILUMCi1c$#}QWz@6IPOcZ)OQYGadk4R5!-V)qj9{u2$;1tp zX_egEoau+{XeaE0rs%X2q&{w-lS0JJR>T;$b9Wg^z3}?`4C=+8nZi(B@e)ze%!iZk zi!Ewwbv;O$N4IS8o0Q6ljUQ2{F&>f&C~t(QEH+mAPWKV%hyBjfZMSAE7cbN}r5Ve} zPHs+G!O)5zl%^fQO{Y2WM$2HdWetWCpy)v6`cjeA)=sc=6@Zyv{fQ9$BfgBin0u!v z?g1d`9oeG1E=Rt=O&Sr!%`=ROV@NmztL)50&+TKRY3&`^g6{t3T!859p4fEfk z5cWMX6gxd`MVw{2@N_pr9KWn((e9#Nt!X^PPqt|OKh{x#tNsCt&M1X!AFdJ&SjgG$ zr0y4UTYYm80Y>$1RSVRmL3j_8qVA11e?dlNlND9(7~=$*57X|ld5}{bRT#nd#n1DX zHNZk~1Sr-m5_b-D{RXNGG4@zF60}&)BT#(K6frNPKlI5i_O<72%+}h?_TwL~)J<~^9uNCRPzzdGH6h^)f{6`DGO!JWvL$4VKF3plC(*o^nek}4>P%he$}E_Q4`Q#|UpTcRygjMmWqzAf z-;Rv~{l>yUEZc*093EIu$#aXMopT_-CXL)ik8atS``i!Q;3pUe+>T3Z?495;>p5~S z)Yp-#bYEc^9hR;|v~ZlCEyq|DbyTFFOldC8Ok`_rSN8z&m6guVez(5IC$)-l`B@VW z-KTDmrFrBgA}WE2aQ=7j>xRwTA|&@ndS~7vcM1#ENLi0><1TLojXT>npz93~ zEs--7b<6FI8X?Y8?>GEw;*YI9t7OY~qUizS#Cf=e`B{~2n4oB`hN^h-hVU27jRqU( zR@2x*uvN^xulibyv z=FC(wf|0UB#_kVn6o3zE8u|;(>0>wr`(GI~WSmV26lFQTpN|{b>xW%?T7*XZfj!jM zw~J(X5>i4Ko;y1PV9yI|{t9F&&$vJxArMVD=tz^LWe$s3@_h$fHmUq7dRLBJ7--h8 zVRd+-syIozqW-%M_|L0UJkWaII8?osaUg^&wp=Oy4%xCn;j_s^*bKSv5ed0Tj(a}}DZ5@K#0{u{>|*8-D{?QS z&2B97Pxl{qa>&?NS35ovqu{qy@>d}RI;X7# z<7X7W%ZFB_R(EuN-%Ljnh9C!$>=d25x$R+IzYn5Olad%_YrS917*oNKw%w`M!g zy`(rtTr*A?>E7TG86Vl5DWZ8TO)Y3*fN&J0nWo(4orq^X08=-=^^IL9M$> zBhFG!@s9yg_J8CGi~3Yh0FWDSTlxBJkvaFf8q3|tX^tWxb^((XR#;DY)&q~c$HRz! z@*5Zz3oE=IQp=OqpguS>6d`BYi{!?okJuBsyh8=3<4{vkKKtot!1u9y)TFLO0(F0* zID&yh0pz%;Lm_{?O+XqLw%&cO*e-AKH=oPP*?c7= zjjAw#roDzqKEaf(yIm-9grc2_?=`X+HD~0D5^Nx!j5$j~qMmT7O2KN$XB${ENGvY{ z+=o5fT~m4I>P7fB=f4WbT3?`W#NFs9>e4;iYz4sgHJGa2^_7m@Vr|Ue;OoI5)>%kJ zbe`MJ)y7UTfD9{-7k(0Od{s~=5Q+8&Fstp-UV$6e!N-0EkLPt{pgp`K04g`*s{RXg_+_Hcz}x8K<4Daq{TW!0 z$-rB}9=>sYJQ(E2t6euG20;12c7MAV3Z%Q-Y(ot3%AcNNuwYZig}tGD^YZ`-==>)P zftu`jrL&Nj4<3oX`Pio({pOo&N%=V{ImD;PK;$VVVZb4tAEK_Q8Eo?0ZQ%%YwZ-15%qqbaVaRcP<6#O=CRk*@ub`<+IeLM;PCL|#-QASplF|xA8+=V-%R83n; z(ZPYRRjzTEF>7Ff(<y&&0E4=Ep$xlm>6-$4N?qv6=W|E$dmfa?GUvB2Cg{d;cngW0(tSNetiV2|+h0RBn z=!ah7#j|NC5lb{b4^HxTIFx%(`k1Vre@-|DsEg3}Hy+JL-e^{C4wRdlM2A=E#Eer3 zpObvxOx6q)~B>- z*|LC@T2BwPjhYj1?dhOZpi1@L?GV(bGmY!A6=*?C05ro>jM~><(myxuBUjq^5=5Do z@z4`seSw%F$482+?g480<5EFiE?=0!1&pdV^MAu3+0UkzIK<;3bpzuQnGT%4j)JLP zv%daq$iZhQGgF^**m0rkw+VhU1gWmjjLG)?kxH8rUUY4k5n8$9HsX>zKhH8?Mz_#8 zIyfi|;{#l!KzHR~J!`C%B#5=AAx=!Sdy4=-5+SUC=j>I*#ZRNC>^u%y*giK?C$8z>0L=4do!l=W}e4A!uj1!sBLOGiW9Y>bURq zd3sNESg7L!nU}zSVzt--jeAw;X8c9AxV)6^J*7;I^6S^Hx!H(%Al3F^tE(ea<2-Q% z#{N-DNV-lieoO{rC90|;@0%>|ZVQ=|T35Y>aa{8PwE>491kWLrvU4V?(snjBB%W`3 z@vR1Gm>HcSkM(k~h+dZ+G3KxtAv$2H3i^vZ@qMZhnwok>H~s-IDG3T@Mn+RN&byHdAjH>sEdZ956E4=x z&f$!5353rGy69U!jQ|XzJ4cktwm-@ok|&S%$&HX2~@fieywii@WsGZUtzglGslnZpHA%s}TsF}vHe^rt zZJs*tv>f)N0(qFsJ)s(r)pi$vm=l6}$2DJQjURf6t*xysyYB$X{Jfgy8NfW|r=p_c ze+IB+RPucl*1bee0N~)Cl5rE|)~L+X0c^l5Qy=}J?Lt6<$W^CNvHaLLc{>E8PHHT@ zqMUKd6PY=5qB$7>a*Hq?r(aoSa&FvHtDU+r>M^WXdg zE@Q=N{UFnu8VK})X*=yQndW@3b$`_4ERt)AL`mJAq;pL5WP|-LWI3V_p-oGap?!)1 z?dMWvgXh)Oikw9jQBpM623GC>PE!G55~=K_#6m?nawr7XhUm$sP(=r|uFVS#O8!{` zgXn$d73VDmWg@DO?Z|hphZ;@vNIBv#7uNe}4v`l(1EcQ9S!_9;2=k1l1qXptom%&) z4|bTupdRE&LNW=hkv?b+V$V{%wy{Qdh1{MiisS#h{AF(3(mOD#71gM{BY|FUYPrNZ{xZ;6WvmchEx zerxk@@RjOx_1>cE9~Q{48eoC$=8s5%b1TO14%bucvu4?H`56oNrj@QN27Kk>JY)K= zBsMDHkvi(n-7knV`<3@8=0*1$Wz5-QG3;y6G?V;dY^)`H)^6MndWWx+E(_TLjWwM3 zl1KDettMDfJ?Y}z8?EfQ0q*Bh8WV@%%N#D$>OGrMr4Gi%Wnus!?2V##D9~?w3N$in}+e zpMk|xYf{V2O%hUw&A5XKsv=J1s*=u#lJaK)$zkHI$j+C)PBmd`#Jx1o(ROm84+&ZPWx^Sq8@^ zCr6jHPcG4#%)AL#Xx{+PS#S{XUvbu7CJWOpw>3|?P)}s?t91%~yu`)!R9W9&>3>2dx#huF+Sc7ZWKDn%DhB2%cP0fN{|`esLg}sLi^gzj_KXtN}k@s&vX0(o&@-8 zyV)eh*I$O=iHNt~g(;0$em+qon%SAtg2Zqdu-Al-{KJ-rcN0tP+B61%wq6$o{0{Lt*%;54Cy+=J%1|fT z;5`Xqq}r)G0E~4oA+Z_N&5zFnCGQvrB(AxxnDJ@lVY>R-BS+0nJy$^kFt^2A{wU7r zl)}5plB9LN$0o)DX)+)T*yEL-A9FD$A4>@Z-~3xJbV)K-hRP3z9C^2Ys>uBeaPN66 zn86_Wcr1rTeV)CKq>bi!X@#$*ub((k0nb)^tW58ABRhDCvgmB)dWv~L0FVOY>o+=( zL;Z&x*Qad~jw;S#58(W(y0a2T^Cky46&) zes*Umk+|@^3eZfzJ-+c+Kn%cvoXp9qqE$CfD}>o*FafTPPt)akDAC5J>;cVdS>9gN z;Iw_^4pf{~yvK_Wvd=%=Ow%S1^??|GdEM`39Iq7!nl=#XJNvterQ$F4Z|* zy%Wir&$TAP7Ut0345(6(h1CkRs?sRDZQ6@yNhT1 zX@vu_GNUV1aUGcw?gsw&s^Yxj*%EMw*Hz6p-|Ii`w2?h&9lkQJJ1Qs=6&R{3CPy|S zGxwKQ>o8AF{T{jw9LHP;#7Eaub%3K2&FWNT~NmnVtZ^^uEx|8AiWVh<}; zryrGrYyBgjU~y(uuPB5NK9j2 zJCJslhUCI>sk{_^z5khiHO0;Nc)_FOvTEMoK2b~aKC4GpEC7QD&@SPG86|Ox)rz*> z%?sQ$?;dHS=C4*2fkz$pAAK8n)sv>_8HRZFcm?GrI1A1B8dVl3>#z3T~9+2*h8`Mro0_>GcdR3?NtTPFMa!kD%wTd{9F%rZ50$VpKck03qS)av6@HZIQS)EblKT_)RiLZj#)Bs3IO|GP z3q3@-(F|h9v`3>%?qYi~VwPhKJny)_Hm)Cb|54w*sMd`9ZtQxGV}8;iXx-9yQ234K z;B$xDo4VGf_$IwtGYJ&3(?3$<9EC1ch(byY=9nZ3nae5G-PP4kAL^~ZZ~B)Y_QbMM zFnvQC{Dg)oYJk*B>$!@;1)v}Tg39F#Fu`pODr)3bgRS_t+D>dL-$V?52t5O!!KCUgsUf$Ds6uWZUjV)8hFQKv?^&Y$@oAm-e z|50OBdp@0~<3=w=l@}Dpac|n8RkZOW#%n&XZ>`x~lSPn#{8u0z4q(huG_QrYr~%fL8|$HukG;HSr9B40$<3w zI$0XqozjuDPC+i^i&OLiR!xh(EVAZfND)fYVNN{4&A(AoOfX<{%hEX0y`76n1!p}f z&Uo3wLt=!PQ&RcQdRRbp1#QFNo$Sm#eS0SZm4%OAYlYR5AkIraamkwxqhni(*{f!R zpYLaGvjYeu1^4dnS7uxeiltGQVxQ-5P^zk=Nnf~w-1#^l#PRU*m`RFme|0d;9~Yhn zVv-Aq_AK`iH!{oJC5=mM@76rmmna%!9Lh91OAWjzaZ7wj3Wfx05f7l3^6*BFRfqP6 zG4dNURhHTKcp)Jb`)iBBofuvR3zU-$Wfe!sfQ!4c?#`Ux@b%G)tj`8aQF{>!;RL*VFNLJB=FyIluqv zBje2ROp4zXE^;48?Ov(o`dmci4NK=;^S;ibv56ZOo%8S6OymLHGTTT$CgHVj{CO~; zuOyi?VIaYKMx-p@LA>w^6MB+^IRVdK%t;w<5#Ks369$$D@9eLpOKI%Nj#N96+yyu8 z$alp)rz{m}1bH=at|P!Uf4j}_tGYGX);r4OZn!)cUag6|PKg@*6>j_RlI*bibnM6U z({mj62DSuyxE-P?p1{cOYnbuFSDd zMduKzR9skS{%-eiWD1?x<)MPrZY{QNazcDz5@$`hlxNtM(bu-#4-b_hmQb}1QdOtt zfnGGfE1>D*GT|se_lHl#@okTJ>pwoKKk{UG$G|nhD}|o6B`mpyCm|w8A;oLFrW|q@c0hvX{xBZF;?QMF{FjwYypR4u!{_`esVeMiiFo=j zhd6jpyE|E!iJxp{ZCoW; zp|j;mM4E(%?sLPKI!8ahOm%jSZ~2%aCEC-me z0foD}`!5jcKf)hd6Dn!;7EptJ%+}D-$?aNAzD26WP?%2Y<}oorp2xj@^az^{OW|M& zJ&B2S1TD_rU_oH-0=m!MsH656_s_+h_uh_!rDcv+j%Cimfmq#%m{QN8sI|+^y~@rLr?2HR^~{`$i}~G<)LgAx>!n@A zCw6ryoWk3I%DQc7{4SEqqtL~VE5)5e&$W(Pw`ysALN#_+_d|ONR=%quM%2D_HMghp zt#baDvKp+g&phlp?hyom(los11Y>4s+C$~hp}{xdCe0DYesDX5S#j9{m(_ ze6T#=W!J~AmG<*$yF#wT47m%A0g;`Oo_E|+8pxELx92IEzip~6#L?beVCEfd1dfZ>F|7DhyezLZ~k}JMRw#oyu5K&sZy~w zPSu+Z9ianDYbniaYEi%&Srwv)q_M!mxBd^Wd|W;NwZr*sCWVf~9bN`MT{T;2;fO^p zYjXcMH7j6wH>ldEv`i|E_0s>PS*0^@g7l*cPT&o}K0gS5REGTBDgjCfC^9M-;=Bxg z{PzmdRAE2;7Aa4xQap#}i7H*QzvDD&xA-nXg36a_5+58mMI6wtdgNINuhLb2RfupF z1Z>)iUM6ZCJ32;=X`4gw!6zg0crQZ!qXqEDKD;~IgEvl?W9Bn|!U|Db>hRN`)=qyV z+gOz|+?%W)Fd^42?x9+15An3+mfYAMQe)`$h^JRoz0`obd>JgnA--Qh;AXxfV<;@{ z{W-N`wCIWwCwvZHNx;E$ZIsZ+faGDSP;K(@$NPB@n-DRwa=`e+#lJn|!QqvVLs$LVk+mLz zuxgWWmJPdKU3{SH^Y-*RcV5Fz#PxgqmQ_STZPSP5O70luJYMg4_mTO9fmMv{% znAu+UxUz90FC*v9M(0@Xdgfrkz6nqv{dVu++6iXLc|5aZJTlxM9C6p%$UZQ(;t|(@ zucml?lo)+wYHWVj5%_w@zy8|T8&#iXdoTu1Jo=79^SgKwq_xV${RnX_CcQ%F?c0X# zWOcRw4stLzwzlv+>0GZv9Kr9!J|yU{ewVdsmicO_FxHZiP&(Wc9|1p+!8NW4*^#(Q zDH<)2Qpz11ynRluvsa*H&q?7#Yd6m5^8_=G>0)GV1kzpW;?-(Zs`3kBeKYNA=a2YR zkA{BbO9V?3_{OfXi0UtT(E9r1{dJ>ecKsz4UnNch&qO*2VnAo9pZV*Rg(G*y&f!#J zGj3Y0k1~n4141b2wgTY~P2>~qB+6fWuB>i^?;l{g&1Ws&K7zcusRkLisGIV!XNQxo z=VUsn+|%}VWpQ5K9FC)4YYSsru&b2t04Ek^SUt;Ts-C<*J zeHwOh=tPe39r@_Ciid3)`y?`LdYB=64(jasbvG)8R?1zoK|aUn++Hs`9dub4IfeBh z`NG@~U*V`uyfWYS*@c@PpH{1Dc1QGNV!SI*6spFo}R8(+PyKFK)v_SyfbTy5RP3NK7Fp^S;>6|8xwRR#zo)&~Y5#jH2T7?+M%W zcKZV`yLp^-nx6vG{GT8otq`Y=^)mSDPj+BBV?99t`~SV6@J}rG_eB5K27?nY^MOFn z`1j-g+8}Hyt2aF>0wBg~iPO=zMfG#!oi(hGb@?gQW2_A-u~0jjIKH25(x+B4DF98I zYUIcD0KIw!d_GobdEaGhsaU&;8%|0FNU)H9Z9eQUObUr_Si7(w)v=5H`-dc5zIpNsynKPj%{yY*@N zahDl^$WyFkl<~Z5pmmGJP2UIC!}_e2I>dQ9N7s!nE)*+q1o~2fNW_17gs7v0ijk<| z{Iq?Ja*0dN7&CLw`m%Yn!#)bAC0-8KNgI}*4Y@@m0~b0Er5`Xbn{55OdC(epQ?(~W z`}CVkSQ+6_bJ`o)pQQ*H6fs{ACr9T!7!aPwN{x%L$p2E+y79Zc9!k7I)VaL`c>bz$ zsyy3F0kPBbAD$z`Gzp}yfFGdysIe!%Dgfh6*qhJ3aHfZ4?CCw$XvcDG8T7WP01|?I zSjr2qmsc)^ipv6Q*_Tx-$}!x`6Vto6|kO5tXTGUNK)=5KXPoniM6!2s82O zkoDswFH))*LGaxWd{GBHLIb;K1u-YE9zWV$YzJ1?Okk@cQpEGt`eg))mW$rLm5Xk1hhJBQSdzBbG^VF-i(c z5pHf`)glp#)@{rsJlh4LaZPQ~j{bdw&K(q)1{bCG0UNRYd*OZOy*{I1kqJA~!Y6_Q zMB#`8HRme?Nz^aBGZUVe>(2cFrAGIg#lWy*mjw7fomLyu*(R8Rv3b5$<#EPPHf)3}7W|o$wEs_pYjXQ7CS}jCFZW^mSVU-7l0r1qi z*&0i-MAC9}s(wGNEWrELubg!xSy3H$C;Dr2lu1-HvkJ0y|Ht*+4t+xwv(c9SkUo#K zU9AD|ijHC3<`9!0jDqsI9k^qea^r1_{7x7oY7P9qNPEk$D7$y>A5=n8q#H%LyFsO- zLlEhbl$3^{q@+c9WtQ5F$vq7i zgJ#0Oy0M*N0l$COy{ciyuC7g`hHtue@wN@1{nS2ecE%+(1H1g?^B>EtE>qh5NPQh! zGr=2_0M*+2#BGO33zh5mwm*SO2zN^ylwYbwozH{Oq=)X0W@qG<+APilYkgL zxBW4O3{|prb#HaOaKA@-a+QU@X-JDQ$eRRtH?mE;%Zo0zzYZ(@Mh4%N96P z!XF*h;ho>@K7E%Ld{q-*k$%eOy>GI8`1Q%Fr+PsyWc(Y~ipcZxjkwnxDPN?WOPJNp z-FbuwWWb^aG5uaHl5wU~MpeI+O{ulTM&V1gUyQ<$LUAu+&X*wCo*g_KYW`-Q9v6f` zh`r8Z)2Y`L0>0|EQ=iyoVz%z0DWZTe>Clhu9xoNWEw;YcW%hJoqze1195zz3nGF_V zqo#k6hV>i?S$l?<8%f?;B(8mhr1lqTxSHsPG_hQIpYx`UL3kr7p;GB}PwdR6rjApSb1;#NDx4ij9@8^JdP>new)^4P@{`TVCh(!HS=R#+&Jq9+neLN4X zO751IRg#Y%dNY)uD-JVP>MDxntAD2QTNk5yRPlFJRZ2Elv8^hWa(Yi#^K^{lW((}} zu0+Jz5JORY%V!%$`6-pm?)=Y(d%23d9DIJUr}bDQdvrvtXf%7hwe%N_R3*(GN@K`A zI@y(`iqaLXG-FgX?mTZV>62t5%r1E_^Xh4X(81ORUSHnPBd=%HLIm))f?mGJhroI z%e9+^O^E)G- zy=$c{9O~tOd+6>!KU-LB@>|$8)63KDDovK}<+OA|-p8ExkK3*$Xr{76t+%f-|Q*F=FlDDEdN>)!CA4}&>#og zu5%2hA4xT>4M+Lx?JZRhuu^ip=QXG2{1RWAew4j1usQ!IA$QlIsU%XXcjV(%FggF(U5B=7)e_1JX9bth&x{S3&)UiRZi|s4#JD`tLRThNBO)@Ag`G7gFE3cV=+BH3{)dl9qDRy% z5F{v}iwqn<_LrZF1{zt?G+8Ij{;;=(ebD;eM2!;_HwPii?Z6WUEU4z`gqv#xX|@zD zDKjT0I=n~SP|Fayj*QPT!X2pT2(e}kwnqdjDq{Aq^Uns2Sef+Zc)AkD!aCN~U|VD1 z-9Yq7DahMRxYfaad}4yEm5e{_!y;|(zh}@Mrsd)a~XH; zqJ~~=JtIl^+E9T&t9c8LY~(|qC`Py$%$(cK`CM0k0~~lKe4!H0zGlTb`|lZ*VWOWK zR_tE+T(I}HdkO{4x2oP|g)vn%te)TU{!YEr^gHDRH+;qkS=!(bOx#Jw`owSVa$m5= zJZpUpDY>#XcMIDlzeO{-EKy7G{&pY#*t##7Z{8wtELR|00iMNXGm*qaet1q#pvv{hl2HYXW#OPHO>-Qw@#(v`*3U>?%y(JW zfBkI%O6&U0ER`o`3{zGXEg>NoQ}%JUnMTeSS%HO_E=kO?mS=;*CbY+mDnn-9-3~*0 zY!sIZl*)@(V@gf*1Y_*YQo()iK{FsS5OTh=I2jNLM3d7(3v8_QAUlJd`G{bY8rH+lq0A@8PeD%=qxldEv>{ZoQ_5;^i;L34#=wBw@fZ&dekdHwaaug^ zRCjW=qnxPurc8-&c4Ef>QzvloL1`$~^s|jjhs|xJKrgX!; zH0Nx;ebH7&-{6|4f~$iFl-#W1lvO5vk6>FhV?LG1ES}8Mz*2^_+l%`r6Xo^>)h|dg`APw_U z&m-F0-vVAcNDi{beC%t!tCbytXU(X0{hm4^Oc86f+Y%|U%dBTtHhG2l%O?ekNNuPy zHL&8Cq9N26JnCYfKQ+(`2g7x4NOTBP9+ngd+8fXxFy=Uua z33(3YdKkuHs2fgbglD6mgn!1Xwf))QJku>{XU0P)W=SYWzdc<`IKjV+YM`MmfZKW; z_d*};W~(#u+3zcW7}13fYN#*xP9Uew%4B(5jls z$l%2Qdhu$1r;sNZPjL6g>wWb1b_~np)PCRrW_&5@ z*Aa!>?mVD_ajsNt-3&%4I8wh9O|mgd<5A`d&9N;iA)(DRw8W{)DN4lisw!iSO9?k` z4zHZnGsCG*%Q#+rQ|;Z`40*Y%>43>EudyWEt|*(Mk)uHf{SZs-f6znPnD6foGFo7w zAz5e~dveLm@p=`YZ?_Tk`0Y}X$3y010H%18$rkbM`EN*n0t>(0;o?z# zfOx{ig^zF^b)~L=hnaegNq9r9S_&AB+;WIk)?aEFD0g-moUSH+wx$^$A4e^E^_61N zPs&D;D-<3n4-c2iZQumkt`jp?>=kGaj>8;F30HzVW`alG%I8QD%LaCfV^&(<)7CCF zY!asw;neWIR`5F<=whv>f_HK`S8b?KqP$u?7;l}=03`Q0Dy^T>|l;jf7u zuZ=`vh~%Q9Yx}mw+?kRO3DI?^`;Ft7c*T7}W1qaPd+fABMjbm6O^4Q}!fUrXel)jE zk7JLw`>+WM_xF4*_V+*DH<!%L)S@ir-hq2Y+RD$Wue5rg$%|Oh_F1(m9my}Zmjj`p1ZsTi!v~^t@_F+@ZyTn=n-JCKs>7K9x$`GvFEnPu;)((A(ko z72{LWOC$W+J%6YejZyra?!@LK*{=cuJVO4hwVC zCnJs^z1p`gUu((Cde;^iNn}cgMRd3^vvBrSKAtR(gsm6q)&73-=2r*MFqHkH6puXr zkSbVS`gw~6V#F2q0`jUpC+GR;9%2CGLBo5@WT2)H8fru(PYZxXo{zavA$qq2in26t z(Qxgs4JY<5TZJPc7EhMdl$f|~=@@#>gS#}eROpAY<>chhQ&Yj@rvnp;NV#Rc?U3c_ z!9`JKtc}n>_^5^e@sRn#iTA+;N^G903N)bSrxb zmT#FM4$Oa7B*m;90P%=Ai=K7-Z|qKhgaX5i%*e93^TbpiH?S}(wn%_J(dDMk%%7PL z6kMsC>@XO3i~~vnzzMM~u+EylFf9k8MmE-k8@ksYIxSVB1yW{|Wt+zMnxu&a{}t%svONfY`OuKiU@35xf2doAow0mpp&`u5`7WBu zPYpL>e5|$_SA(Z7ms=@dZh)!&WSvlCu^g^PHrD-wElo9Z+Re!j1LmwjM65lgL7eDa zyVZL{8MC1G2xn+%^ouwacH~sEBR;|dF!>yrH8nLdDEm1+EkDYP?;0XaO4VB}8RJrd zGP7e#SeZ*g+r32#Y##8bC?oPe3oB2$#>bCs6euYOqnF2HKA>1sZ}BK##tL0?@^01p zQ4t@$CEBOpq$IYHd8tT?rmm^%RG#T|EGHGGV^>@}Qu!A}ix`D>H zFI{&cGQ|g96R|npvCt=pz@mW?W~UKz)vd{E;5t#26-B@8{g6nsEUaplL&L{&T^3Rz zLgt6hN#hCw)?3pZo*ADaJK}E8wb3{*9V+qAtAKjA)f~p#d)~ z)7r7_F6S8py{UjMVgHj`T@wD--2dkU{&x)YA8FaE<3L0uHs-zQ17|11{l2HKwth)@BchcgP0qS- z3++~|KqLb;uF2Hu5RiP`V0PG_|K=o2%Pw+Jb^CE=2^xyGzIu4N;~ev`R(oR3@~WQ} zE}7QK!*%Yz@b!H1HkSuae!5~OBSpE^(LV%o=l-J@{{@GMQ_c6C7LbF(pp{g?9fWZf z#J+b_s*+deb|1r$?jz*tt?ftHrLn@+FY4EI&ZLW7fAX)pzAKINyA=?M_Vyg6M@;<; zv%4l2qf+@TH!e;;wRN0lPp*p)IoLK4nqRKou0<J zpSfNhPH$$SfyxjK$DH2a1+|!$xsoaGS+c*8;7-*56L=p>$3Z2@Uwe~%VhF4;B4M`5 zSw{>G#ydFat!cQAB1s&Fn27FAY)5+?XSWapV90UggG$uv2Cj_3+lqO;I~_@T@4OtK zU*1R-K>n<$GQl2&W_R{uGzRwS%NLl=S9g%t$!=D^s)$iqc>P!<5cL*6{BOW0w}m=+ z<0cZ2 z#ZWAp7J(BN(fU5K(+tx;PWrIqS5Xu$yz?_FXA}^2fx;>0&w4&{XgSvE{PC(Hijm)u zEX^i7dF<9p)JVrg&`j5zH}h~SQRk<-dFV|lew%Gafc#C58+@i`!dFZi1e(z4HJH}Bkg(MTCmv%a3SBy|MDlPJj_b6 zsJQ#_t;mo5vS)llrdPWUlmzVxrznrk4&=;3oJ z;?w|HkXkrvJpL=6`;TY)cXIdNMg}ZSiZ3x*o2z|$oj1!6^HH}m=FAo;&hk&SB*ttm zvP*IL=b!#aHzo zo?G6}TWC_q(G1M*jG%J_cwJc7*etB91$lY*2C9}YSxf2>2g(z+O~(GPEO zo&%XZ`F|xRjQ5QCTphe_+M~SJ+E|19qD9?oe$=4FlX5+JfXTfepGB21C}BNN^^KkH z01o6sKwxB{H(5uGpO>b3^806{9rj;phKRcO*1b1sGe6bcFyJQ(qIfY|X8Pf7_K|0p zQfS)I{)A=-_p6n@ca@3}_hlbjgJWz92k&qoWqA}af_d-a&i?PwSg#fj^9!L{K4d%9oAK|k`}ag2;Gn0T+5WEk|3}~6 zQp?6y63fQH-d45eV-gqfiOa$=k4>@gsFykd@2;$qK8Tj9q{bj3HbgEQY%n*3o6z9@ zX87`e*@O(8oSfXcL@|0$S)ArBtdfTVd!VY4J-$WSD}g9cT|Fh%)boIhhF?WmyH+Mv zx2IF~CBN$*|B)KH+_|SlF9H0MRZgG(VgbZWE+L+{vE5eSEA{o=W0&&UYd-#jT*T=1 zsfoz>Tx{Et?DO9HCPK#YzY3NgvP1vQBmPI3^540{zwQ11q1O55Fm~phXm><|IdiML zv{eL2%Qsw#+F+WPCc)CA_sp2}u|Gx4UTX_!wqIkA`pqj*_icA&8|qm8n4f(gF&=gI z^*K}Jj1_4G3)gjAFU$7z_nTe$(=IpZXDM*D=31#S4riH)ZVEy{hf?d(Q8T zg~ixccyylyn^lym!|h-??H%rep|JRYx;4_mf`jIpK6sl1k^fF08<&-wlkU6ow7tWa z5=i3ej^}D8&Q77ZnQpz2uT$O*7BK4FWd^oV%3B(~aLQeuX!LXA{q-*ssNDP^W~~H~ zq+FH2TMJJsW%$now?c-Z=`&-5rgwp$#21UdX!#> zWTd4)34`(8&tgK~Y%tZgz2~^SgcN}l!6VM<^-6_=%V@BynEo8dfX4o_DAVbExN~5n zs6l^Wc64Go;h($%^1%6Jy@SD}f5q5^PA#gZRX_h4zE_q=y8B)3U1Mn!;g3gXD1J5c zoLm)-$ptM}U34fUvA0Y*Mwi@Ta250J8V+`&mXu<`DpXAQ<>WKsj+)sY{GtM@i8`UE z5Blfvo=yyUs%s1E$R}4+wNO`xxA5AcW^=v%j;N3r8D7oZoZVxwY5lV?<~5XWy*gPs zxM^FR8}M=N8Q2?ZwpgaEF#xr5n--%At@pxSf0e-R&n!)T*UA5%tuh1i;y`tjU*&WM z0V62yh%}}HV}icw)v6Q8P7f-0Qw2XL3|+pU1}z9+A1c<%aBch&sbfdaEI;EAvCrhVsZ9nT@e! zK|91+eKPV18(ZZ0mJ6s!Z8f{+o5N^a`}<4wFPhMxUQ3NqafyjNh-~)ql@p}bLg4)2 zq|eLmvn?M$!?~zO+b8MyuYX>S$f6jG5vT^wWX`&Feg4WG5^nHJ)%0G#)eP79UZK)d zjhQB7cEGWx&K`8xjpv%ngCFJylBp4i2WnvaR_BE*JsH0hE`ZVV2Y%WaTs-pkyn0qu zRYfLbLj=^MaI$MJK6r5sDb>eNJ8wVG)isQF({oP`^D$Nkv@t_yaJC-*T5-1+Fwpg@ zFH3t4%m8_NU?j(dNSSeXirk$HS1P1!mm-1{dm3E0HV1>npAyOU_5YRue_3arU*=&C zF9)VV;9kax=p3s_Rqw0^b3+~h&{%_rrs3T3)re=9e7084*kG46WPM6Wt_w)5HC0?GgdehQ1lNm9+a zK8jnGWP^7Mq(4Vf1bsEDhHpLR`TBUdW}QDj_oKbIRvOF{ORgYo9T7#SItY3G*80Y7 zplxxnQQ2@>kZ?V8v%n=TxJ|G3t0L=rHgu-ZB~|QqW5UVrR#$ws?WCfDXg4DJ+>%wF zdS8Wsw_HpQ!?V?|&G#P&vQsH8L^OMCZjx^N+#)Hz9(qXx-|NUx7#YnUNNl;(Y)=q; z*JtA!Gg$ywIyXau`e4dEPtnG`RJaGa$?!~LnK5@%oRVOHr16!&^>kLExRIF0ZufpZ zpT(T`S`?&i+b0F8Z91JDSKAPI{Ur2AsIa96u9o2usgq%Z?Wpfy2 zkGIWi?O~WKmj)4Q+u&zp0jlq1a_%77GCtpa{r1#21jm+;@V40|kjKS3@-i z&_y)B)D}~5{gkuJ!;|7?e?L`Z56D!*oWYi;OEXaQ>GFr0gl@s11&aiy#Zg&_t>TSh za&vil89l66IQ;?yk=B4T>-Q*?x8?hzn!qrUSc?kf{>|d?G zTM_~F>W!I3K5P>97i&l3N?a+9C~uHl}|=LJIiXodP>rx5F z3V?0Hfke0>`bO1=nnfZt1~}p~L}Rw{-)U=4)z}cKr177R(PF(L-&@y}_d)Ki4)TqZ zIms?~)}#_@8?UNG`Qf!I8UJ(!j`wq)nWu;EN*}EHeA7n5w&7!fIX@U*CTZ`WsfTc5 z+VFvs->fg$0PObN#XqK;+t(@bmxZMw_f7%3lea6&AXf)C%fG!1rZI&qt-$|wsQ;sq zDJ)CnOodG1(9a76FJ$`B;^k6&?;jTHZ?MYm9dFEEOcu?5a900H#s9AX%l{lhf2Rn# z)rcFU(GUP&x-wtlMX4(z0|SdqRz19667*biztTZMfNpfx{}p+um4AmD+)y6&>nr%< zKf+Hl&hv!wlaJ-V-><2-LQ3oO@Ja?|!`Y^q;QTq`>+$3a&pxBc$p^%!pb9@0+K~ zbbmM7tA5Gymh)oPq#n&AL#cfR6vnHq#e~&T7kurevLCX^bNx)&kgn*jBT zmmVl`tq}iy_hzhI77I*LKP3ixZ#ICY|CErRCFDpCeH>J{LDj4shk_e zlC)eV`!RrT(b%0ljf3ejpJx&=O=<#2(<5dSNk zs_n}ahm4{2-U^c&Qsa;1%m@`fd>-iki3^9<0wlScHel+gs;4N&;9snt~GQ3@tR;Go|}4-!Xq ziOrB%_l9I%K1t%pSBo7M=kqqoA7~rd$` zin@g#xc48-8KkxVqW1i1#`|A@;6G`pze(T>tiWb49Pm88_Zx=?Ef}n^;$YOj){4d? zyM~Q)H1822W|Cq_hY|X28SV-VOxCP-|Adw3F89Ui^{vyR<4baGT3X?&{1}O2`yN5U zZM|XA#)fm3+jidsD>8Db`Yl@!Ml2nPr+;_ep2V8e z>B+O8P>l>EM|Jy*=3?z1N`}Nw!EeqF-O9>^j!4WDc5!*Q*|h8IyG*-xthzQ*Thi~% zzt=uqcjgOIxbmE?9+AAJtGJYqCHJo_}bOoS42p+ZSU8xO5d{0 zoEaW-ZBgQ`#bKGno7z^gfY%!+jg~5t^=W`Q;Dyl0;nEDEebqyKz%mDI!M(KBgpV}z zv7HT7`1g!{F}LLsAP6YXxL9T?qvO-aqWir3)qb{=!~$zMe(h)=S*_gsK~4Ibh_FPyq+X41Cb&d8 z!o4QEwlfAlq_>=HGy75q%r&QnmRJZiV>C8-bROy_&#N636jr*cr8M#-SGr%j*HsvN zPaXQLGu>vul=cpXcQSr_4xMS*$>P$++j1zONwi*eHo-T;Usd|uP+E<(R&o;QOTgdUUXFIHjlL#ByxTzI(IXqgmrq-?RZoaQF-*^`;ty4_0 zTry{8lM^yA9MP~$8(Pfz3cPji=OO3u$s1-d!T9cUD*C&?+wr2% z#CI7b-n1Er9MwihwnsN|Bf^I8<@B&TeVC4Sl>dRmuDTzdioS=6mN!}JZX?Q|ZcQBD zTU*cH8PK+jXq4@lDjuFT(Sv8mAx@&6g|eofQ*|!19O-a606eP9Q|IXp3@cNMeFEGY z%IHDYnee(Lsr!>HIIeE(seXs)MBS`*0qr}gw*D!#!lVQAM(gWm-gOtm-m@-b!cKHk zQ$f~qzdx;9c+Bv9w3t{Q-|S)xK6DW-^@XpzT|Ig!xToJX^z7^P)|eA$F$-|FFsJEwa<3%se}KHLE#K%C|Ogvb2`4;yW-! z-K=fLH?cl((AB%mez1fJG*OKTEUD^<6S&Pr>8h$hnT>A)-fSLn!7(qVIIpw{XOsAq zn7Dpl(vfk80lj17hdU!wVeuyGw7(JkI4B)aFL?HDv0b*@5B8Vhc6AXw3u~ZZT z`8Q_GRN&jOqVLWOxqLUO3gghvjk-cm+uc_!nD-qS%YjBm`5mbl#QzMOv5sQFPI@p^ z6+pQQd2d^*$L-i_J?CplCtXmUBO69Zem>%3Gtnl70*0b|F*3VD7$D#>w~SqT*TYRB zdycyLjPv1YqA8(puC?UAcI2i>*?R5fqpY^msD$IYfr5F(58e@h%1Q?p(8<_jc?E%Nk7F9;_UVT%IgUVazj<;oRXipClBQaL2Nz_;v5|Y==&K1?tuAIg;6x zb}`q6_KWvTw>)%iC8n8XZK7w3d~!Jl>oT$sN&a=DNTK;@z@npMw^;1VP&an@o28FZ z6Xk{@3CEqLoe_V*Ui;1BcdUNg$WqmKeyamt6U@`>`tm@wM>hDc@f>y31~3J58Mxar z>dYUgV>UNug93}91h57qexf&bl3qqx=q3=6x^VB& zg&iJ#kTd^W!W;oAhoHA_A_~YRFsqlo;<&ouAD<`%-B$~M^#L_SX)v^2Md@_X9s%YQ zJr1YwdGhc}QBg_|2EK{zD@C>WeQyONB_&B-zPIWC%j0jyhjMGGQas`QtB1<@xzEu7 z&AUwtR}@)|rR0GDgWs=+&=|%B{ygb{`cy&VS(Wywlc12_(1&7hG5RpMc;GZbDO;>A zI{tNe32T83O`9`^^HEw3^Xme%hRM221Cq#|&x3ybr)`FCS(fD3ad^=iuc^Iue;Wzp z8Sz8aNePrB3xen#^#FC|U~|Oh67Z0bN1{3`rHCX1caeqrkbo~(l3!>}Mx&)2??V)P z7T#yLDg_Ooj+DJ07Qw=bXPO4Y_Y}pqS8jnYyuN!?*v^wSLLF`5*<}SkvMukc7#Fx3 zxQomY-e*286L}zg5746?v)4)C%T2GtDVILQCeW2JI=ZqUeBf-2rL%5^3Eh3tiVt*% z3}$}#K4}xGVBaV$i72q`tFpFe(}^`U{O~Yb4m3=6n=zJe1C9}C` zxSgG;NVTKa2Wr>>r&qqbBz$n8rA-`b`iH?dzdE}<2pd_K)*w=zc>FM2-9StE58>G( zyFFhYt1c`v$iHk{%FJqGv-zV;m#_jJgf*$!V&A~o5FXDB3!l#`V#NZ|jy4BuY!M}a zIRRTawiGlHez`fY{ZFZJeU0lG(qGdAo_xdxQQv`ds%2EydkEGcex?7dei=+fIRAS2G)-XlRet#>(~>;t6N@JV%#-R z%X`V#!77jSEfGhdlq_QaIrtNbIxEp4xjG($K|vjB3NrLY&==cb-9PV(-Ef;X2!m-P z%tVi=@Cc%NKcq6&*)s(dm9Sdp8xu1t97JQP6}V;W6RAvU5~q++RwNlq&(GG64codGo%jpL!o+hENh)w@00cAk z%~ZNXTM4%B`LI=%Hpzl8y!ZP6*TTY$?~h{rWKjO^4NIRA9J3|@2p)8J+fz+~B9hT3 zZwzoYgWYu;Ps3yB;R0ZL%3@Hp|ce8mGa4^SF1 zZ{TSG$eE217B;Y``|(LhBwX>!pIP%gCYV$`g&{dW??53o4xnVH)(5Ye1xlMIxH6eUM*H7tk%MbF1^+%y%m z?eobQ{rvRwd?MvSsm~8pEybMct3bEE+3xn#WK84;kognY@!K8l6KLmJ8lnohO|p(#s*iJs!)C0ce&UsB#f3Ngzi3;F=ylf0|2%x-WboG-jlJz z!1@wVWFr4m293Cf^LOqC>gJ_AjY>k%7X-2&86UTzEix;{&D{@9^RxF@N5UAA4X_00 z#Qo+g;H{q!ykcTv9`l(~ty3873tRPiC{7-cBsi({A0>AxxIW$>+lMW>B9Sih9Xvl+ z3?Bw0i+SXo`%5mySSF)>^m@aGJfVbrNABex1!eO&uS|%K?u9wE-I5^*?uJIKPE*LR zBUiVEZsG_rCb)t4J|E49?f69XhZuJPYD#J4@Yflfq^gC4>E&T}sz<^`(nH`|^kg`1 z@UKuqZ3u8Ez<@a%KBDi`g4Bi3(3mb9bQX;gBIo>NO!PZiWqQOq;lc)Kj|aBst>3GV zr^ulc5^7HH^?er(wINGMdcPmQu|iI+f}tXBT5}I_4u%c9LrcQHQFk5I;4C)x5X5pF_|! zDlPE8FGWN=?q9{qq?3_d93D??C(l-+_s{rzRzyRHF{8&VStBPO^1ShCee>o`Txya69UHYF zO9m$f#RGn2*YvwXmeLl<#inUwQ?bt46kp~$#Hcsinef8+wD1B^lCYw`%bjvpd!I^f z2~sv$Lf4!=TS>j?-NO#s#WLjDD2NOt~-34E*}@<3l;d&MF!H& z4w%#4cC4{;xs__=-BwFXHoOxw^qEzvUaQshv&PHi<83H%W#7Z6R&X`oZy(Nxl=c`e zQl=smY7grz*YunyIp|BDc%-&4TZex&)Vzs#Mw5TF&C^YOet3Sco}1={@y zD>EFCgZ?X@C%4^8bSnDWeA7R$>eJA(p$!$7y9kfkQ6%wJR^2t|z+9?l$H5)k9&6cd ziedASso8h*c9Up{2@NeEDlq++v?i-d(pcjt z+BwP(jotcTKLt${-EO?=`UXS485%fC<2_YHtC{moPM=TZJt}qkNLVoo|7>`^>tF^U zfl^%JVh=Z87ky6gHk};{+cD;tIJDAM5Vv{uey|+%nEGUm`qV}m7JimlJ)&!bNeCzY z^9X*ybC*z6PFE%RkEtQ>D(=LtLE&HmZf<2hF*4i9Z9xNfQdmrZnbOeH3CwKIH+lJ? z=<=2C&>Q=1sOt=+(TL?^X$ELMG6v-9T91uQQV)-AIN(uo77{i?Nocs{)LHraQ*F$2 zr|<(%sis!H+Ia64*(P;yN008c3P_C5@q7W&38WoW?_eph?oA(}BYG{X30B{k)^B}@ zTjc+y90E@d8QELjs5Ji)H=~SAPllPzo|@FP=%n$uoG4!@@n-f_z<;p-1(5S9EoPl0 zO@^f>*4P?RD;_iJF6;GG``*>x2m8D47?hJ4;4vlH$cRVqd6?iysKLKgkCq$emwo7z z094Lg89NR=|5d&z*_U!n9ip+Zv4$%BGb`Q{`8m$BmUBUs_|K-nVM?`|b?T9DVv6X} zZ~TYl=@V7MUKI&g^}|O6F7LM950QBD+wL}RAo=z%twbia@i4$bS-I!AaSSv# zGw`gK)z_7UaC34Dx@BO&v0lU9ZAD;=oaID3V`DuA7}}?2$iVGK8q$V)B6~yIa~U&P z1Q^6@Nh57U1iv*1p8uV;zo}hueGLxLh5)L1uKmeMbIs?^Kk&UOP$p-&_b8&zxw${+ z84KN`8~AE-=2J}PtoVPV8vd#k+{AU*rxx?Sb*Gl9nDKkXJ6hlsKVjtYa>-hbW6G(M z#4mkK<%Ozb$K0&G&96a~Uo0~Vx5!TfQ3~QGzEY_t&!xBqh6e1vrkVCR;)Ci$7v{_X z$8=muLsa73tTpS=Jnd4vMXzf4w!xCTg#Am)p_xTEX}h;)EsTTTaV|qjaHl7|E)4uy z{3mi}*@4TSVr15tUNBVb775c}SIZ5dfCA4fvYL<7cbsT!U2NO)^H%En&>Bmg8H#Hy5&I$rZB*C~noSe64 zvC$wqeZ=l0<+Fu*)nqM#vUkfJq_1Z<@SQ6wUzbm))#xUH(%Ww^Agg|?EHxcEM<<1Q zOB9gOFfESgR0$tvP-pERHO39vCitSmk=8%Q@A#$D`^P6-wDGg64-mtAnn|>{dx)E`ska_KFH9DK#>ABw`k?eOYiyvq3CczrK(yX zuJ(*y8f+Ug#rV~QkRkfm`Joh>Ak-q`M=@K|{41|518~X74YWj)kYO<^IStk*|Q@IC1WhGSwdb;Hd}E?w&MfFgWDPeS14(B(uYE!rm%vyU?}A7 zx7;m3*K}N5CsBh*J3(c>1e&KCB_BdHu{bU(fCgn~oG--HfRnV6K~cTxjY5ACo3w#} zLQYN&vqsK64UI8jDm;Fbc(oY7sKo~QY<43(-A3<;8os0q5Y^5l+aI7+K3|Z%aBZWi zP|3BgpNlfc=v_e_Sw8Sg5on>caD;@z_8M3+hJE)SuoNL$F5Zpga`m`KTe$h}Px(N~ z*gIpbuQQ~Vm^fr&^|7E}lBORBjA`3PP1Z z*D6jcoPRTe0NAOdlTiDmn;=(qC}Ng402S(&vqxRKVT2UOx*CNh>|HLo3jq;-Zm*{+ zP3=)P31T#!fqyJ@erza3C~|JN8<}mobg91isi1H+r~N@{!86-_o>QhB`HAOWXQkye zzikSF>nR^YwYIPb%_}T4XZ|L(J?W~R6k<_4YCQ2|0|^A3@1I=*8W|i41r`tWA18ru zP=l8<=IQ9dYekC7_|v$=RJrS|J(DH)ZBKff-00qV9qjU*&J}S2hxR9C9U{Cx?xyJk zg9-Md?sJ)4R#IT6oOI(E55dpBv9l#R;a!2G%gZ{s*@BXtr{5$pePxIE_Md)?D%L7aFpl9p@pEUn0FCuVYRkWF7m+$_x+U$5> zh1FNdUEaAL)ZMW9zS%4r68*)RnAr8YUtiBx*7KQOYdY(s3))F!Uk!^lnk9-5etMNYODByhEv2xoMY_+F>;$8C=R@3etcBe)vQNZ8+ z4nH1xP=kSLm1f;o(+Muh47{A0P{$6tkerrQ?YHxxlX0{AlQ(LAUHy%Y=z_bA98;gA zKJ0$q$#-MRgYPg_g2=(deVZJmu+@4wcTZm-I zE!2*OZM=$gFijv*XdV(GiJXy3v-z?qYNI=+z9qR~HC06{YdM8}Pno{z8-K(gG)2T^ zW405wqnE+FVKrtw&;9U%d`TGN;6q1yfC8B2kRF{IvGNR> zMDlS33)e?nQ`Fm}g|xZf3Pj(gH{Ho6N?XeXW9fhb>NT~)6G_P|v@H*iY{;Ch`2wbY z)kMW|ar@795ghwmS}ZLupWBXqdcGFBQe3#Zp8sq@VY(&d?95ZIwkgE?^3_9dD@Js} zz8zJFfIIE7{8fVf5Z-2?wCj5c-0?Tl9$W;pw6Q|=LbF*HAlE{EG?!Z@<;mUx8DH~) za9iHNZQLqWP9;auT5ttZpxJ5q*OFjs0DEuwupr%9aIehQ39XMqe5@iD2AxH zPt7*KT(wK=A+h7)BR~EgyewF0}42Ua?jNN3`opLkSy7O#D#YDm8IF zsp38+NxygU%k4Lj}X70X)ocS^EfzRJ? z*O7S1fbG}Y8PFnO!u@&$!vO9Ez$(jX)9NX19D0b0lIjE8G>XbGJiYq1)TwHKm5d)pLH*#I6F_8*KZaHYQ~N zFz_y|xWMoS78#$|N}I=Pqw8PA{)} zBh}aUdQ|(BOK?LAw4a%J57<&du$EN3RN(m-WkVgT7LHGOM3z= z^#81jzvY7P|3`6_Rq%i96{r8_ru+Z8s%E8Cm;ioFnRe9pCaOWG>M0JX|} ze>$vCA6s(Ft$hX9U1fZ9@K`0>{CVT?@8YHR?ZOwOn_4U{M3aot%OlZ)f{|ly80+N) zU$(FN2jRtL%(=!aZP!^*c*RL6;MX=Wc?vpBaAJHf`Qs^P+52Lm8#o7|B4plB7W%A= z5SqWQT5aHe=q4Y`aC}l2sqvK}LBM3K_EUp;iX`tZFvf3I$!v)pjE9@;Cs4lf(`6i# z9OVu9C++6*fZut37`L1hOQ}?N{Cia(7Pa6dT8#!5y@`hoENqV?;Oq((;uCJRm=502 zZ{P*06Nd+z68$K8*|YnU^V(~p^YJ;YxYM+s{nfV5fzG>i2z$(jv>fiEnQtesf`-0! zE-xq90;we04U1EsTivmw`Ra7DZmeoIhk8%434utue1>u{u!K#6}QZ ztKb6XN~0&o_=P*>&BJ=;7KIW-(wjJ2NGkkT;PR-e05 z?%||4R^glhr|dxCkqN+}_`4~T7GGU<^~LJ*GM!-0`JbZyYN?Le8gk}Y2QFz8$O4vu25ZjJ;oHiVHofsXh;IAo_ZDL*h;j4s^Va= zTyJGWW$x|LrQ?a`Nfar6o-t(u<*ZccnM21{yxYQH3*1qR{kiN@%ZRqm?H%_oL<7%k z^K3i_&NlWK8k|1!T)w2_8}JwxG|vg<*RB0<6Mf!E z;l=LL-}Tu?DZBqSKhoaAofATb;1^C_W33EYrA7R%R>Qx>_4h ze#adlRt96vKZsAyjb}}QHyzPA(#nXrj^#!%@XJVbR_u5PQcp(fPw#?L!Z23#Drv63 z%w#{#c?J>iN+4)s)aXx4I-V$VozTUJTOe9MdlI`B%mvo!J0VLE(7J~=L&GH0Ql|n| zDXwr8^5438^Z<_dmjWImH4aO)NB3Nj*O<0hTEeK-s|9GmA5uXVA;=V6=eCK>Y&)q{ zlLYCLwcQgxjlvS&@DGTNa4Rv7_F2{&e!o+Zm(K^LDXZlRk+81b{K;LxhPIb0Mj1>B z5NLzwyfgj9qN(x}%I&1#xXSxztpqotBVKx5=SFMQ?KI+^j^C7Awj1~2JNOh0FTfzX zTN^_A8^Q3;4x# z8qrmf^K6fg-DIz`=Lx!X5b+pEL3rnLDDJp_jfengdcqVtc;-1eyXzZegL(G}UhigY zT>9SGA#{1?(Fxb-Yv39;b+hGarRyMEJKV+!`gXj%M_g+-Z-M^yx~0CCZdi5GxA!^L z+q=XH3oX4O*d*+~Lk^3tf+TVb}Vo*etDa8|ZIEp>QF z;h}L##rlGqN=r(khk`Gr*i2E7d}SQhESbhBL1QAOPkgFALd*QT^UvUxEY7$oAG6{r zVeg$(QaMEt`OSIkjj(pzOh6ELRJ;Y5D$#mbqMb%Sege=hcng^f@s;7`hpKU_NJG;P ze0N8GuhP%pm3|!~pqyj;z_mZe6C$m(L|x9p*o|#R4I}95gV-PpIOyhe&YAp8Q!AZn zrCu!!6VsPF^~znyb!E(6t?Z?@vpM`!X{jH36zhCFRvSs{cKh#s#aMK_JJR}AwM?jp zTdD3F4q$faVABBf*3Sh<%~g=lkdHwtnqbt-Im?0R7%@=?RN z?ZfmW+9HA`DL32aU;V2-;M&)7(oO#0fEj*KtZ+^IFl!@-_QzR8)pR7$6pD9X$C4V|`F%+;R+J3$K6cP8$ z8{`W$l|)X+)aQ;a8PEe`Z?%Qka36Z}#u#Gt)MpEBUz-cvBeDt2J{4Twxx-rNR77AX z4ne~|MK`Ze#XA{9u^zz@dI8=U79N_C3VcpeD0{2NB&!rn^cO_nFT!vSS;y+$eo8Df zREMCw77`(EvsmZow&Zc?GMhKA$X?}4C0DD)pP~fFR7SbHVfiO&(t$nj+B3M}87_NF z$gNK9eOxTpGo*Ni_auByTk}(C!d4-zbtad$xUjOd2KTE5M{j+J>YTbhmPLcFHQ9t9 z!m3NPSRdiN8f$23Oy0+)GZ{)i?Sf>-^K#ow=$-F&Bb{4!PjR)$Y70Dkt^08Zbpe$# z+T7{86YBUlrfu3BU%5qrB31t35WB0>$;HD>4twPc19stuYRz4P@(~|sCr*6;2wn5A zdF!r<1-*dF(|M0}aHC#3=gNQa7>Yht{h6tGqL{`>@K}gG#V>MTzrt7R;4av(b>(cF ztvX=2!HRBzh5h&pJnnwtEezDP%Y1{C{?(fw&GbwzD4+(g`k&O)-pI^!NU>&i2q&1r zo@0K@=1aXEQp$uJF|5r1x{$L=xXAC=w=9bkyyR0;aY@Y`)gU2fznv$7=Wf@#Dc!qq z>>FU1rcX63F+rk_&ygz6ep*=OR{|D&@X5QaQ$(2dkznG|7d8Tq2}Yf(QAZ58C@lJv z=xm$}fwirSiKCDeYx2Q)FWH&UIx;bKVx)vG#cro5!|2hMnIgV;YA%XEVL~35#F+9I z2^s_9A^peNp>4gVhY$RKi6a_S*G7~t57qQT+uBd$+6i$Hx5EfiG6r_|RGer(JgrRa z2BRs-Z^rE1cXzD=pT=l~h&48YPU!93Z?pPQ5P$s59*HVy3i{O6c*4JrZDy182pYp8 z1s%!bAY;_78XGk{{lKsSVZvS>JmF?z(Qg`|zG}8@AaU`XP!fLYCQ!37ReNM;9Hr?S?jurkZ*0m1j8#w}}t(GYzVPaxZzKkcg zJVGNMoS=wJiOSqTD%W=X_O9z?hJRAORIk;_PB1zgzR%V9n%VAtX2R8HzI1a8P3vuU z#iEf(WPwD2D4O5N0`H5Gl@bOCi1NVJ`P2=VcH_=(rY^31vN%nJl(5zH@E0uS37_L8 zj-s_YeDC7u$?CI~a+c2t^Reh=^S3MMcte+=tH)F$m58-?-z^SAALZ-%xMTBQG0P4| zOYCWlaxyQnWx&Uy7f0_XSPuti{yh!y78r_jAwI~;+*t*3&AjUKgCP<$Q{*VM*kC{D zhh|on#?vnhDvd~NX|eTDVh?MCMZkLWt6fI7s?W8$+3NMjTMbwF_jOV? z6TDV)?V%{<1xEsh!4Juf%I*BmZQ{j(*_x#pyH@Je0S_E*0wVaeik+ksY%S+PpWJo2 zWr$EZ_{~2w8|%W7J@Yl7OeN&xBV1VvAb)Sms2kS0t*_ zA|#n-@`06prz`D&5Q#jyIiBFR`JXwSR{0y`e_#`V^VQSEo8B#cZie*{Fn#;Y4d78T z2NkT=JtyBai7OfHKL`zNIAGkq=bhJ>>^f32xT1$lQFiA)9p^n@yp6qkb@L-0U6?`e zw~{j*XYT2W(2dL9fXSkEHOF!JTvQ`Ct;&~&P(~`u&n<(Oq2+PWgN?n$$?IhAH?Pp~ z#0j?B66QGZ?QHah4bP^&>;TTL(mHD!okFyZ<@4j+?KIXFvuf&3ZLFOYd5e8FNTtwn zHR*`j29(ulCG3XcIR;DA|INYg2WxJ&m>)eeUYF45-{gGWd_f?{X|Av|5DV9R@eY3= zrSNl*nx&)|+nCR9P4HH;R1(!HM6)A{NSJd!_*6*8q_f=7JGZCdeGb^jIlIOhm*z6x zYd0L#82bDcb5dUFz*!FJj|x$VBDTfm>FSah=(zan3Nd0cygK;igC!&NMS1fk0K(L~ zHJ;gEE+@(4G`n59k&9VladK9#M*(HC9q~Hd0r$M*#JcEhKLu9Xo+;xuFU~Sso7F5R z76%X6gk|9IZca@Hvp4Ew3xAvW4spfO%d|O;lD5_)Te(&2F5MgVrsGFP@dLNC4Q#Ax z|G+2-*=P^=JPsBQNstmkFqJ3-V~nsx`;7fut4rgL)+9cJx0vWH7uj6&f5!$O$e7tD z*x5l?@I8LLCi~&qXnkk7khjzw7ewh=IDj-9qOk>=69n>U7~iWr9QJI%Ae zH4HtO%@~Y*e`Eg1*I}pwhC%Kafb&_SdMzeYn}TYT6Wt~<2h|YTMiBzp+5ls<@|L;p z-M<3n(8Mqdf;&*P*K0T>o*NoL)=SbGPwkg)pP#v^gp8S;u1*6M1-U?Xu7Si4EVVve z^Q@h11f#+fBED@iy5+K`ahXFQ&ATYu_exF$4ddwnC`1x8GLAS0SNG}(D>-Qz|CY*| zVUHxr>Sbk(A_eUVlOdJ<60)=<`AUuQ_jpB;9B5AQQgpsec2*#E<(XRknPX42mI*_Syjt4fL&+>Q@`s4PPH_~M##!P{@09cVc5 zrA)9NlrtLI3nzSj*CwxJIrOzqXl;M-OZjdz@UKU1KMg?dG-b1g#&u85r#dyMdI0BF z)8EVc+zuLon}-{JEgs6)#JRj(kyhxz`~@Xb@ci(<5~P}KLl)mQ{&mAOh`JH z6;_C7Acb%lr`yihdlG%`&V#f@(}^tpv2?BoyF;x$3d67jq#R7t<+eG`t-M)ncB=_8 zOGWbWv2@Wd(O88u1;=K~E`w4(iUwnde@@i6H{O|gbly56fnz@7@ia(#m zW{r)fX{M3T0g;1-mm#0j)YaMMAOA&Q!ZAtn53Obw43DshT?k!Ql)g3r0rySk_t-rb z@yl7BeTu{~uND2A1}4>J02xjehtiC!iVEGwkJn$vK<@76LYyr+NM1u5%e^e}+NI+I zkz4f8204d+fGhu#HM6-k&MNg;2&3Nwumt$Uf@F2htUgz2)G6TEuA%>apgV0j zOG{BrO^x2LtpPtYx&FU@E&0vhKXu#x7g0WZCKw2=zBs_hQppa6MZ%va#nU*(-@V3q zKv$f+xSQYQD&=wxtUZ>@4C^%f?^*zPX=y&u0K6N*^t7yQejh%yBx4Pue>x3lt}pU`sW)KovuV0+&KkIc;@u7p ziMvnK9M~5t$VnzH&!7P*NTOZq;*SEQS^Xe~<1$X0XJ>>pW{130Uuf;oLQN3-5*~i9 z{pY6~WR$AuX~B!DMD+s-)kBbI06c&U1NqK#n~1ZSZDX*xJ8wsm_k5VC^H!xAd?a^s zF&$y-tTe9E=5b0eF?#g=l*{FJ_*or-m#An^dk*%?Jv2Pp8nu_hFJ4vJAhv zDHzyKmI#hiEs~fSxc^fjy~Cb~>8(%8@$bOpx$DGl$Izn(o9v!T8>F7U#>}}Y{j<1N zdEz^tM2tMXzxiv+?sO+@FP2=64Ap$wj#$&E!sM%DIJ#53MRl;-;sXjh?1yMe*2<<7 zrLcr7(K_TyYA}ODW?L7c^KEmf>QvgMMaMdW&cY5eAqQbJ&qV!b5 zD{+UZ{`c9xORw3i`QFnnLruO^LibZ)vf5Rb4jI_!0p?@7AI@^H#KLf(cr4w%Egw*He$tOJ(7WfZVTUt$GxX*1XW+6k}$S_0&HztG==5(D~V7 zOpwrgs0h`Yg&&EU)<#jA4R-V|Z5Bjrstq|wHn;Wf`E7u<5=vw#lpB`(h1NQDi zDZ=_U)-O_5T1!FESB1- zrYEaQ0z}Ch`qKH_J==EjoeHAAH9V-~OI3 za}hYM2RPf-ADudo(W{3EGC{KH9lTDTkrrSbm%g;?`no%}Bq`u}3! z{8x$g|H)D7VlR&aQR-vQB#*^RG{9^3?&(xm@!>>MulYDoI-NC+8=)xn5wNl*ZC)Dx z#t;oZe*|iCaIDB$Sh&K1)DRSnYmZ}iTLQMU>Nq`fE_{Jdd*K6<#3X%ehb47~BAgBK z!V{s(cbEUV;33)|@U+d?rF{i?LhV07<0Mnj--w`bQqs7ypP~<7RcM zMwLtn>|Ts#Z}X~7cW_6qo}Jk{myETxFUio@)+WE-$uS#?=s) zVpX~(QL)$XjjB|yIFFXVV}24vXZKXiy9-~oyA0hu=xDKgQ~i9qU-w*%XS(e|HKTt` zR(xoF7(3=o{Nav|fSSu+Ugy3~y?kQVzZ4Z!HoiHCSD*!?ujr@I+DFo8DGQaC{90kP zkQejW#e%I@Ax`V(-qu>B%xKj@zJ2=%v3rWEq#S97epf&R&DmB-twvPj=3lFa&2w*{ zd@3CA$*Fu#(Eklbn{wy13j1}xk%s{p$llAR^2tnC*UeE9M=TO`6lQb^dv9 z-~8&&0`3wB)W?=5244{ba$2->&zL>MD$5EQ8cM+ST!B#0^rkF_f6tA>N0Q!|?aJFb z;5JztrvAq>WYzplQrz^z&pe>(5&mohYKJWB@15NgMH7!kwgte}b_RQSKY|zG%=~nz zRA*NJp)0e2UI@P9sU!|F?i6jWw59O!HIgHh;0@`#x@AEySgxT!NJkY0?&8FE&jW$8 zE~@LK0|cW)5OUGxLbw<4;u2ZAK6`XDbVSarn2A&?6SD%2My7q=Um$ecj3HGB{}^Ip zx><)E_Z@rAba<4|bU8nj8g@@~uWTQezi8<;G(%W4(jpEjOAFV#1~Po`jvGu1dA>qv z;0f?O^*k;8sz&gxvV%C^ocD#EqT2|Uf6)6YWqk9uVX6qmn$QNqM1o9O^pwb9_}0VF zxT^Q{x-h}_9y^QLM)8n(oS^r3J3n7|=wG2Xe-);{{uiPw`Oc%n^hKH*IQ7t-v_`&6 ziom5@ll$+%2>}_r6a#kZr8>1ASe5#BmxvujRlp?Z-o{;`BnWg(TgsE=@=x9f_aH8U zpz(6}=H4?oLW8wVNE9J2i}wc{4C#()1Kx(QIZ>7u>pv&0-jEyK6nJ)k;+O8aPpuGZ zoVGX-4tPt3kG1Da4*T*pphc69RGiq5VHH)zznvsOrrlM@CbNqLNBnO=CnAc~X{%O` zyaDGA&a1vPtdxdv~_}vO3jOn!Cc<1amdIdvC)7S>^6>@rJobcc8hnVF^?ibAyd0K_o_1mNQjqRR35DX+?i* zF4?Tse4hR*!*)eo6y349=ll9KR`QpPzFIY+e>GF(gDg==OUFg(lg0E2t?9Moxfez5%mnPP{Q}`V&dY6 z!#1m+hMquT(WuZ+B?PR~=OihR!|o5GD6@x~t@Fp;)PQ~Nwg#=>OIO6<6Ykh# zstATdMKkRh#B71p9-cXa{-gbF^=4&@a18Q)*o4-L47>RseA&=)Z7xu+8mogpO+-_r z>El3Yg>HRhd9~xOZ@Asg&=kxcoVL^+)z)J*@6FD=QxmEnoOTD3M*_Cfxyp_HJ`AH% zd0W6_=r+!iS387lZyc<(MdD~Tmm!U5yQ%3p%X-K10Uiy?{x#+k9a*XoEpfP8Ydy?K z?}gj0J&DamNV-hQh|PlHXV0$&lo*zkS0nUbSaO>0eLL%dX6YU;budnf7#ig+E8DdD zGT3S}WHysHkMqoZZwkO`UR_JFTXAfHH^w0Od9gb^e>vdoimDv7+9=b=%#n^YX@y8c zG7_qHnR6p7!S$rC6i8|<78E@#rIH?Rrq4bq{E)NfL)08iHtDM|{nLJcZf|{eU5v}5 zT^(OS7;W`DHr5*bE0?;lES1$61ODhHh{;yjSF`bRp<(x(Doxqc-ZTk<{V#3Gqmjw= z_x-x9t_0dfZkQ5p-n8sw*qs#}TaDz8d*3|!EN^uM9CLa)EDhujMuruoxy4+hErh>J za@MK}Sy8mQ_=@?xBWf@bRAW6%DVfQjm?4rWt!)@SdqJ-YCNul)Pu&&}c-tBs3eW^QA&1?awlXwUXb zkemA`B}CY>AC}_uEYR)PYyPa$n)ot0O||=6)861wVc=oKE=~1mTKZAI11pyFulcVj z+zO*7UTx!*A2bVBw0~m?3tHI>*0fo!obN0M$#49qnzO?ACQG+;&X?kCr*c2pD!7&b z=elI1%s+KXe#xdpwwLR@FIQ0mAb)O+-!c>?-v^$pI}4h#t;|QDXNpN)@xPHHyOtg3+WIqjNaE{mCM24 z7)~>1#icGugp7q4Jnnng!13wLn{dKk(Hkn7X0&4y%@*pIB;2x? zQ`F=uS89~TZv&G@xW^DjfiHW5893}cG_zQLrciMI&07I6 zPR1eG9+V_73OnT7TWn+?9x9OvtFhb#%UwO=Mx76b(l30QyU#E>YYT&dit zTq+Hu5HU!XFLjZKDEmq0vRoWbQOb#_?lW^!Zlf?uC|g~^`M}^OI4r1LF6u?8#x)e9 zW;CP51cJ+v%iffBW~P?0psK$H-j=(`1YW0?Fr0Mh-nz)F98gYC3`r>#;kggSz1qJ! zq31O2jw7!8x&ZaLMTS(JO=_C2{%hi2RM=tj@TYo|_wD^^W_GdZ!h?@H91F^;1iiVd zZ%)x)bGrcLpJKje#fJzFE;sSU8g){do@{^inz{BkEHSR<{FoX0K$ zFLOiW8f=t=V6azCQ%>0NSMdec=4Q508MJog={WK~Wg6ks)$wm=%3Zhq5^^xV4=xZ& zW4^YyoA20q5-3Wp$8?0$du@J`a3o|N(Ru!3b!!=!}Z3(c50_C<4=j+*Zv4E)iP5zPw;@t zS{jsUs3^(h=pB@4h~VFo7ktA$6}*z!q*ktGb8YDzInCpFq*VL`jnJ>@C{I3p9uXo0 z3J`IVLl(BceDp_!si51k?gZPEt`PswcBWm7l%|61GdaLeqqq?H;(XERwPwFC;{P%}2! zwscXB8eL1Sk%~X67;Gu?;D2;)^Joh`?`AF-86>RTtY)z{ZjSM>Ya;aSw%gMBSfQ&j zea)lML48x3C4+rbocU5VWfr@QLeTpY4)Hhzh^Y0l0K<9H)uw*f7=06`w!<6i>h}yI(Ry*jt!=a zIGeA1JosB0$M(dYayZBOJ#8iPqk6e(y1y|y+R<{_SeK#xuR7+kUH#%Ov5XZfEg=g@ zkXkk#qzI-QvXIBgBrpJU&eNN$MY($Sw}_| zVuKy4Jo~Bw#y(orD?=x-OeM4QUF#gn4Y7JDBc?y@5&X1P{Ez;(e5Ny=%{LweY%iOJ#~%g_Qxi~rEkl{@-6v{ zgm*s6oi-@ZKa z>y$C@dVMn(xk&u}y{8jNMi=-5`Oi%|TRgfy@#{04H0 z{vS?P|6kAg=T25|-lOgDIYUVG=$qeD69=9meoai-tK^@?)i~%3v~+1d^-D5@72>y5 zMHu~a7WyZSs9$jABLjpf?uIg>;Ns*DL>O-{P&i`V71`u39nU*_wD&RMAI+Hv)K3ko zB0Tk3naCDAzw@6z_5?H*s;a6j2CQUQsGjY@1}GVxu6I}7LVVfEU(C!RV`FIq1V|$K zgZnq=Ia#{bCINN)uV24#1WJGx4uf$QnR2mu7j7udZs(SWx%v3fdm&h_V%Nig zlF`8xkqX_T7-W=9z$%@KB}@rB;CzVJrZ16ziRe~bo6+M$rFjQag)vsMJ8&>AioEq9 zV^PPFQK`B!GH@-nu)h7{xl#tZ%Yg=9S}1dBwYG6%jB+v3a_kT5TR}K_c0)I7(q4xy zv2L~PG}i(789c{o-TF9c+6lhW4u(SZn0LWq2sx7xbD2_>(kK8L6d5zggq;ZMK)INS z>*FIIsD!h}VgOSUuHg$`pdR=Z z>60RX?`pk`9=*6vd|cd6YIe8DyC7VQP1xNl5)|MDN7VqBhK24tnP+|$R*$$$UUFa2 zVGG$uMXGO+aa@cfpedj@8JC<~De?zBhC-eVKv)n_q!RPBWy}Q{3~^(8eLH`oOvWl$ z%fay@7@@65wNa0!Oru=h-kn=n8~)yV)Pi1Q?-gPcKEa?{*U(%HT`GrG~Z*&Odq+o9u^KRu}X zuwitR?f|N6zkrdx)}Jkhy=>`c4k{;yym1MqYYMxlqPx*^Ra=qGmK+ZE&hjl}8;^?j zn^I)QMg{t?aC3?Uvf7Cx-lbC4U43rW>>(=3G1DWNcm($K5K5xB|4=!QQb$mTrZUzH~_irvdQTk_GBpcVSzwyE9Zo`koVK6TP=>Ri-GI{(+*z zHv2?CW$X_CpkSlBk!DJStdu0iF2+tIsr%M5Gj6;nkNLF)!)Np~CiIn}5cF(rorR^E z1qXUV85>{E?|-IJHfz2bwl|rjqg!O;bzA4!ShvNEJ3=;UfbX()$zh?=0Ml^Jg)e*F z-V=bDbF##UAykWsy<4ZlIopI;0_2&RvA69765Hy*(msZu^gPBGrVz zi^zr}ru%UUKUnPDA1V`K^P=KJaOzhZ2IfKwxTa1hRw?nTP-WMwkIb3MdX{ei5KvnG zr{P4Jg=W!6qzJ4Ut2xK2wgX#W(<=+8Py7V|jZ;StIderj7m>p8g-gdg+$Aup`)$xY z!DdU9l0=*ZN=ug!O@{GOIGc>hSBd)96`-3LY}G1h2HWO?7_K5j;$cDE$I;K%RbYws zICY5?1U)X_j^At_tdYhReM1wkkq}h0I+$HjkEB$ecleQc<{i=H)=dN=;6v7Pif!@((DDJ5KX1`3W~SUp z+onG;xEIzih4t4t>!OdU<(U-Q@f``Yp`=>mVgTIuS43}n#YzaOZAd)ZsoDh%WpvRC znYoqn05>%(td(%bncuE$*&f1vMvlDhB?I^)4FCZCPa+n|IpviVs(~oLL#bb?70jAH z{%G$>dQFcyF;DNl625ZMv+ta12cKLGfXJxsg2+HhOR4gRd9P&8kF0td#Srrm85uuT z6wed3rmB@5hCZsl`@oSl)lg;58sxp64_was#=xp*zQNEu72KKNb^3s5CN8*S9LakrDe#3f&N zBr7C)Y&Qp#tVgTW73^$D0hJL}?9O~1VNnrYuQpSl!8L=>`Oh`V4U{o3v6+p|vLvTy z-U?eoC^QlQYC=bwB4{ju-zu>Q7^}786^FM7~bED*D@8Gs-~M9^t;;l<(=uAzD|cI5yKu4 zCR(;dXglt?0R)e%C2Elhv5Y0GUq{$Wq?mli_#ubg?B$&0$?Xm|m)39;0ij|K&VSbe zj51V5ZTO-Sr!SO}Hk|c%kORJak)dlyyewQi8jgU|n1h+F=K*cwK^fzlNMt~>%lEd* z>~1cE9JRau;3knO0Yf~`r0#~~9nM*GieFX4@qEkhJIn})Q1SPQGm2h8teQKj$GgfHz>~GUgp4DHLauPT%M_R(|(2INt;r z5jlys`X$l}&KYq4;byj=6UkSYlA;4R^SvlLSo>aFwoWU`N&#B|WN!H}hd9_M8(N#PXz2O6oS4YP;!jm@Zh|$3^dEL8y#!Imu z&V1s^Nwmlz!RF5G!=#;xWRrtekKlr`644c&u5rUXK|i{Ww{y*2-0*nO=WiD2_A4Ec zQ5W*uhIB;erpSnU8F9P(&u3no1(;Od+XOpyc3S>qUo;wtHdg>~(ZJ%~e^n)qxWBM# z{$+;V{1-CzKe#^X|FT{APlH!z|Ix$(@8$osQSI(bA$nkrZQ!t0AfdtI>SAL)eQEJ% zX;h+rRY!*HDR`GA$Lo}ua?A`b9`Xc^%6KGy+IHHX6JpewQnI%1 z>B;wT$HHf)2*$sgm$tymbP+wb;lrA0lPEiIp0j>6BOzid`uMXJH843f^^307Mf!^G z!N&V=Q|{ZAzrvs9svuk*2gO&{qcEW+`_&`ScZ2Nnm;Ktz(H5>^hpCd{@8SE_We1|V zN4&TBW=kI}GUtLRde{+%tx^xI%ToQHTl-GvRTqi~Di|AwM}EC~gO10Ifng}~DX+nu zi6AA#Ix5juTpw7Crmh5zBUUuD!Mo>Miyq!_!<&QA&O&Lj)FESI819;M!ou0k)Z*`O z2G}vqgeuI%oEB?>S@fGfYZ``G=(bcP+2VnBKXKlwvrYD285l^tPXx=sc35l@=CXkO zrMnUe^&r@$9h*4)X4v`p{#OLX(~X#8`+WheEAxr#Rs{X(tvND{YtU={WzAn z?_teqW$bK`y=%=o0DoImbBxzB$HKI^l7d?$y#MP@gLMPf;9xz1_vJ{vkK40ARJ4`q z#Z|k|O&A1z#h(FM_I_Es{D9bxVldXu75#Z30D7?8%3E*Q36DOkY%9x}o>pUIVq#!n zDsE`NSaSL85#l_L&7`SWtMqylK*nuSk0E=TAY;JqW&z_9yHZHtL0epYPX;B3`fW5Y z&bkW=^F@&sf&eeDE^~XTDnJl$W#@8Q72@QamQztMJDxs$Wyxc@kuSw;e2#Ry*j(&! zIQx%Nv0TL8a?TmG%R)=VlypkS+N0nke`skl5bM6!U@KRjMeDDs5t^|Y+Ekgr)qJY} zFSX6+zfnka-g_TW<9+T$=DU~I;INchq?GwZ+hKjQ7545Yv4dXIdp6!QS-w!xHF29| z=#o=64H-rP7_2Pq`!)ebW07Rv23LHT9e%Q8QBWL)Ci5ZmE6N%Oj2q$dUk#hUS)*i3thHeKA`CthHsXiZkLf++Xu>He^F( zsm1xo0C;3k*I8i~eHkOzPF>L0BBTgsIEqf*;Gc3-}e>3UEfq^vF_}e4)hfThX??LN1&(ci}@o9vIlCCYd!HNha z?{mBurCYl@vr!v97dDhtJI#R;aXhOq7K&~70cpyc@Rv9_R($8IVN1!x3sNZV z;+-2{OiHz04t&OCUjF`^OA0Ru>m(> zvQg>;Srgrl`^5Xh)oAEo)Kr^bRPbT$IxaUpw~QPIhEu9}u-AaiT}672XNiskV1nrx%LgiaBpX^sMBtSIL?S)s>o%00h9$~csq z$p|1HKVKne3B{Gso1`~5WJgyW0^o)$$t;O$r?B05^Dw0nk7CY?KOOLTAwZP>zv>8PcL9C3b4eA{IszVg;Vctt|WRGmxR;5VEX#gDd>|E7 zz>tv9)F7Mdzrr_w^m+&zKt8z`lFgyaDLnJu*}H2F_G2q)5Ge7!Lg^od^px?eyaK&i zcGB|>mwrcu327>2$J4O?sQOv0Gthu=scDLvd{H(u%LE;RhIQ%*W!{u&&FkrUm?)>4U5RM{}SH^rT#Pq{YbL#lI{886^Z#GS=fH>t)TaC{YxqLTpM6Q#L zHiAiT=Cn&tJrDEj_Vz}%{gL$k>UexJQJ&&pt#yJkN5wxZ7<*+6=mKz`-ycaLnIOy%!Df3vjBm*oTRA0PM6}h$3KCf1>!Yn^ zcA*gm%-w<`9%l)aw=Q-(s5_R=`5`3Hn)NO-mLKhxC8aC~G8}XFr7!MQhF2SkihO6m zB*-*Di1ckJQD46*uovLHLWwL0t93w?Qh(|}0IarM?8zXMQJ45H$6rlR^P+p5+`r#&*Zch*~<+X&|RRVDb4orP;02sK}D zfpfpQc6(Knb33F)*yx#C6>SK7Y%9y(Cn+m3(Wmug|F-K>U?nZvPsJiEW??~4SeSX2 zXU?CJ0+{866p@-26ywDe;6)bD`EBnbBfY>_5u3voVhgD#A}-*mt#x=kQ&$7{gn4|{ zc*&+MrOE^N!mIQ)k=sLF(D27wuJd7~5D=80>r_cdThjjHjWVKtw9uceA8a}o!X|vV zq$x*j08C2NGi4+%4C(N(-mr6H7(%8r8AqAe@o1>ua460oOZBSbcQ=<)`*ng7NjR^& zC4F?XzJ>x$&a`=DCI>#JdSzDVdP+-jMs%~PpYaLiU`WfxIh&#?tK1xTX!cCODc|to z0bdhMIU%iMZ&4k+mL5I&{sv)9{=`< ze%n~u1SU9e}oOAIzkGh51hG2h_Jf2>DtFfgyWe+W0xonP#^lZpZbXvXg z%3f*xEwD%qWn5B|8<+|_|MXWQjFw+Xc61C;Q$pRNN0b<#b=qY7C|V=+GME#6-}ZbZ z+AUF#%Q$Qy#CB&)IEkdB`D9au2u>9^Z?B4uj)?f0?@f+-)I91z8AeIa@w-uv0rdPa;3 z!+o4`6B`9-I4zju)fd64wHZ#pK(AME;G8+SqTyAmu5M`m`>%PqplK}Rsl+)qyXW%R zHr4|limF{xy^m-!)VREIKWI}OHriO@4sQ$yq!jNVn< zlTC+T7T-3R6~~qC3V4H~9R&HRLLBKOr^UUiqSI?!RMk6`<`e=|-B|FK-s8s8$=D}) zWcc6xWPVQjW&^v;O={;Vm?gKoa`G18li>n$Wk6E9j5uexMF z9bZG}Ya84`_Aeq)FixA}tuX~RoTS-|f1cHw)!c$t&L|T*_YghKEEy_IQFy&BY&D$)BpOi|$`8 zmdJhlGcCfgI>OQF(|&LK5CO<|;#HBJ8&{tygQeLD-6SVp2ziX4VRTl0{X{iX?}P*s zy0!-8|E5Rie0a)UwK5u@X-wt6OV0G(4y_VW$K47cuJ^uLyWwd$ag6ZXO2nIlKC+3@ zG@b> zIrD`aZF@*-^45&mGH%f}L395>nWa2D2rMitG&Ho-bv30dGztFJ@|}BUnb0e0S<+S| zVR%A%>m4v8XaohLo%v#l?C5Vh`RDHT6g z=&5!ICErXPD+F_2h5gsXt zI8&DtEX!!^u+;1E^xiZ+L$KoS9}feF%Qwgu4Q)+ef6P7}3a?W%z+V0%8yS7*Gn_!k zvVe5uOt#dWH|oN_y)IE}zeLIM+Z}%p-nSzVsQ>v)LQjE$ch2Lf!V)?I<#$&$Mp?r)u|Z zE?@KSTAaluLa#~CbnM|moe!QZyO<_(Fq98j;=OpnJ85=tJ{Dn*F}s8Rhq$*4i}LH+ zg%MPg7U@)xPU%J@3`*%v>1L=Q6{Jh0q>+^F?i|ShMi@GU0fru681lWi@B4Y*|Fe(% zy!+!mj`=XL=9)F@TJekXcb;nDZGE23su#J97dfz|lf;LA@76B0a^>51Y{Vv09(Eg1 z?pAxGP9_=#T;FTubE13N^HNKQOiOlQbVS6dnzen`Xto?#9nj+gP@&^p%T%y)bE||# zrEP_S7gdm{=826&yt3|{U-ZC9=K_@A4!u;FQfe!xm zgeCFs`v!olI}PzCOOY&Z`^(p5ia@%mZ97BwJ;~LAh@4Azgwt-IqNW5J5EXdia!bqB zVc=%=`j*k{KOFx5BDVWyP~hLq{uw#=a`&H&_7;jaiVOqgJKUE7N8KbO_O}%nQOm#7 z0zCCLD%e)~63N}^Bnja)TcX}H_T1KS#fT72ofqy3eVz#5ty!pkAu<700ySCRVfr#H z)pfO*X#F_GbCH{t7jtgJ;O{%dSiP#$9*`^%s$vQdnM7mISB5S_AYV-k9efSoE-_uG zeirI4?$v_IoOFJIMk5cS8tVR5Kx#Ze>sXe)FKJBzVqpf;46hDiah!%fYtP7%ouJoTV2Z>e?d%0l79faT&FI z9vx>}Poo4)2@$K;n?02BB{seOV|ID5kU|!CiAUV=A_LH0T~8&W^LNiRD4A`|8x>#l zz7*f6;4Sn)^7FL&Q(ZNC73S4O8jMOLem|NvHo?q{9NCQL+@oCb7O{_t+TQK3aQtb| z5XHXK8nnl17^_zo%FuRE6VSKQyizmb7iHC|429t?|40*C>E)y`+KVU|{n>pY+NMOQ zNbW!M<*A6kVcSplebOOJXGcLxm%IptE?;m&1@MwraqYRBC<$PiyH~FVn6Y+b{t5&&hyDbl7DcnD4OEKP zCeshEiHmmUUz~!h9AZJRX+5q8G2jNr+)JboiO%ecl)pmP`S#QmW?f~y((ZRC_xE7o zBqh3#xu9k&EBZV4ebSw}?$dVBo?oG&0eYHHMzL zBj_Bcn{nbG!Pwc#A zec!5*kq%#f63d8^(y3GCJIl)&^zC|4CgyyM2xtkP!JU;C>>viTCtcj@GMZuMU3)t7wqKg$z>8C7N6|g98KjEJZHaXwIq&wkk?=}d7SJW zu-f209E!;O_2R z`NPihYCCbO`@i2vhxv{q75fa?7Rxp|JXYf>&67JQG(+Jp84OmZwSbVHJ;KUF5+OFp z3^vF9alzD~4H|la!zM|MaY=0mit{t}NFG zX?1zU3puKqB>(iVLRv+ThWY!<=Pix?D<`6ET8*V#CHSJ>HRiAQMc~m3>lYleArW#C z<2+wYV*vpiqNX3YS>s5*wOQvh%wk$cP-(DuzO=K)d$sn~YEawylUL@G*glMHjE8#{ z@4qb(pVg1jT`yYv*j>J7;Ml=f@0|-WCV59gwGHP{d zX-nrZb$z?C63OK}OMxq?^F!ZisJLR&-I!4f=i$=;;Xah7i&rd(gbP}s5QOA> z{QKeMIqi`0P{9Shf^y5DH}+gg#oDqhS4)#`?!K4cRf8uG%Wf66=s)ccyOkfgJyEN? z;u%dJ-NKpw5t{$^@%!qZq4|FwzyCjtIs&7t+XsgPC>*`?zTzQ0zB{%EjIrZg60e)u7)vFzjqbGpY!aDt=mE9fH5S-lO} zg0JDL;p+VUK&!ZmRi_2rW>1`q+z*D5p-U%N$bcVmaT>U9m;uVhyXg98@qIGM^F^13 zS)&)3on8Lk*1ht^zH6MP_M|KG2Isl=+#<9pe!6r&(1vFGe%r=tg$$ixi+t5_vG-ic z=1t6vGH0paseKBhbk$sw?EGrYSbt|OVj`v{-wm*Hf?CRZYPz|W^a)>jY~iH}?kk6> z79PxJLpFU+#HN?p)NHj2KmNMO`%l^vkdvUk8O6O0)oeIKTt9g^#QZ2)|o!P_iP6QGv8yu+S}7@)WC&2G2>NznO9 zS$o;>CIUC)-}io+b|3`M-~P|5|73Fhk23+7O#iXgPW_rSyD}kw_Uf%*yu+UcQo7>2Di_F~!M^f_AgDO;(?Ka)zKrNs9TI0})wmk4qg@@xe;*$0CS0QV*!FF7}kJH%Fe#oaj>293+ zS7@GVH-xS+wfiG~-Wy8jB8U#YB$I+>X_NOE`_+&E1dClxnMJ;qI9vH0x}7UZT$t!F%i_99i1$%DPSy~=4JXnP?9Qgv zJ3-P34FXN%Xd;7>33MU#0C`xT7!d;=5LL?I*sKTCkfwn!lIV17Jb@!F)Z?&Ke`WU! z-f@*2m3HYovK*1aR_C)*yu?)T&{jbKE+}a98V<1o6EQI{EWqow#e8Org8)vW<=Xj(H_u%h#ceCWg|UZU zUTrpquIt*kX1ozqeoiW@qlpbTlO#__BS?tCm`i~L%3HaR2J7Vs-}@V5qg`F-nDX$Z z&5;>r`q{TPU*G)r75Prz=e}4|697;wbP`56KP#!&P!s~VGPt55BP0L3Z$*j^B!>a6 zatpws+m&sLswMm{EI?q79st?vGJP4^1C;jw86dXb4gOtf@O&@J3OGvgq1Au6o4w8o zJa)IlkpFZq|9Pzw4FTvp3BrvBCGhm{9Go$)de4O7K z3vBP;7=J)X=vHm`Rky*8?CCTGDW`#KK!6ukxftdn%ZSNI$y5X9)S>dUmLn8uYX((qRNYP~a~=*OvPab<*O=38E+7g_>S9e=0$WN5UWG4Z?Gk*# ztMU!LSiiVYg*YXv8?_~<6x+8;; z>rg>L2>beC@?zevU*WZuS*XomVafOpKzktq|Z0|^p|W(#8BNxj7>iQFfD)UipR9P_6slAo<7yS zKHaegF11pgIh0(|uy=edWLSU3!!FksdaqR&ET%Bv(Q!0ZHvOA07&s=o+VF=l2VjC+ zF>V;Pp~U8gq<~ZP3~1UtLag&+u`flBt#({|9BGsMKbr}%e)Tia)Ra#Z$mwEVVd|8|==5q7&aSAV~OY zP*ttsq0p~D!e7t!YZ^lmGljF-F35-oQW#vJ8X08&)g>i-KC?e|5owfzE~4h_|J1v{r`R>rSl3 z=&H*4r!G{(F%vMMN^P8Z24vX8bSz*Ek>8q zg(40cSaW<`dD=00*Y3)U9GsM{s}Yn_dXNj}m^}31wYZzFVYd;&>uT}>y|5u4Y&l16 zx#{i}NaWU`x{xls+#dLilISgx{8hM2_RS1&W$&Q&ST35Jj9g`|XzSI3!`Ea4_wz}6 zZ^|LJIGXUKw{f=+nd8O~-~m|d|Ax){(?tLG#?#C2W+{;qB^d`Wn~_BIEY|ox$5E4c_TY15ZMQZxP(q{58$o55ugg*sa6Rx zBnh=Y_Ar-~-QLnpzTO?*9c?KwiPak{%}3TtK+z`cSsY8p3MJQt>m^tELV=`e?HBg| zu*>ErREnrIhG$7JARr(EjZ@LV*0c}N*lq0aZgZ9t`PhT3)cp{_A?8);2zA>@LssU((0e?%~GAc3opdn1gd}BCe zI9)7WgrS)p3KHvpyd@(eXn!4caH_w-1L&?#Nb0pcGX zM*RfMNeZ+|8W$gYvl_T7kj?47-4Dsg+|}+CAe%KE&XelOpxMB>gi8BI&7hLuGCU?2 z$oi4N%|JJGZsTFUQj`Dmg~tY`kwBO=q;+&19X;(tdnV?%Q6QkU_EU%Ty{2aGkFG1~ z^F72TrMPmVt=T%eiw8 z@-CDT?rY+kHQJ6cA)}x;+EDUx+gD-~@rmxZ@Z%C$I@AHKa<Q`?%hp%-HAZ}VU;RGbJ{0(DCz-l-;2c`O+iyC&kXsO9~G!( z4Cab>Z0w2+HLW zK}_;0E5BZxn*?gTx#*$Qv=nlehr7Ile-w(7_KOK?q&V-B+Q@ENs0eY9{ z@Amts`gJ4pm9@MxoxIsftvG~(8-Z1tQt>q_3;I<@=I1hWcbh(W$SL4^clWF7{nDN> zf{ZCvL#TyLmb!I2yL~kl6=saQ<$0qN)M9jlUthtUYv`HO{`+#VT^lUvlo!D_5*MZv zPF#g=hve9~xc){MG#{=Pmz~W1KArtD2TCfe*DQx%6SZeE$0 zJ%!E(Xtbe=s(lzTk*0IPOktAHs@K;=;})g1;=3(I{jB?O8@mH(>|E)C)2vy5peC8Z zO5%WtfJHxnF$PiQC*|SZb}F>Lmf;*f0>cIjvNtX_=gY<|p4`wyPv#q{6Bb#x0t^5- z$QEY8T|EnlG@E&nEXRFra1JCZMiJH?cEkV|zfC9+Lrj2i^QnD#+ey*KAI;vkX=ew$ zj@S*AG(eaoBm}13HabsnQN27zUR16BFrFI;hY9oI4^@vH20v%z46@V%#{65GQ?`8# zhw9c;%%iMfmE8^m_$ys(Emu_b&!3`1ihQ4HGW?6_byXqN zr#UmiHkHoL!OO)gYhy+<7Pj0j8e22uGk-_n?N!H`sAw$CFTfFfgtsiplbi)6V$RoM z!<&xPsEBcBP@$iZuDf2r*|*#}PHwEcd9vt#E^7$S)r#8rTUFGL+U}?jGfsn7SOUq5 z`SW32)eBJCF2mZ+@sn8m&%=TabA2c}LpWo1=8H9fOz@^EaL$S4AU^r*+9N}Od(k74 z!UR~kchRwv>BBSChZe`jQ?b9A zk)blZV^#b7d-;Lm7so@Q^=M{-X5_;uE>4yjEy@GCr8~PXu2a%ds%F=+;+DFDLS(+? zB75n=D2+3>Oq5F5OLQJ@24o9sZ_G-G-b=1=4v6Hvzckc+l7EsUc7BWmZ=XsuAyYLp zh8$a<#{2|!gDv|{jligZr(Br=O{2m}@Bo!K27inb2G7{f^T7pOfN9&V$AkV9)Rmi0 zrVBQYOqtglM$i;2Qxkmy2%MTF@cxoR+ zBSqwpaXw$oQ1@~AGAA(;SejvmC{Bk>tg$^RC6)y#3vJ}N)Wm@%m_@e(b17RCi zI^biwMVi<(U^T_AWg~s;0<-|!2f4xr^?mz#>p9`n0>_47p)grk?H_Tw!EH2IU@_|_ z4Yjr(#4>bg;*Uy-^{un)aZOdI?QYDIY*Pn*`ZL#MMdsvfSDc;#9ZBpswTw&M61q^= z;H^W}3HR`ACz!o^(B{o4+F(+k>uwym-Bp;A2t~R~M%f6+iD#=h7~C{V*E$>4l&V{g!KiO@eAX(Ml`D_H}^v2@tmiN;YDHdp(GuoTt|m6(cgM@ zH+I&|!qYw4t3UG2wZ0HvXJ_kRa1IQ<>}z;_XKh}+qZX#eWWz^r{40s&5$<9 z9@uc>B>GU2K>UrJo&6`Er=ec+tWQv7s=@^NGmIg1yXjrp3@A4ED?`Is@O_c5=d2P( zWyXJOKMtfV&@_Kjo*m9~r2~R})4n?sKivR<3N5Vw?GJ)fG=w1`fYG^jYjkFJakJik z>ZthOsV6U(t>Tss>3{X0doy1KP`%!X-n|C#nO0ne@BpD1S~&x)d|qZx*?(n>&7n_C z_5o}7zgfTkbm0Gce)wO=@_(Difx2`44Cr4Ua&JB0)xcjS9RcbOSCetQ0PeGYImO{p z;ROE{3;Q2{>fuJJhmz2EyW5`U{mUl*zY-x>C1#wTwB(FX%$=9sx%yKp#wh(-kj8Rx zcEZT`E6;02AX$=sE>eOQXCtV;e{$GRLStk;y-NuiezA~G4urhVc7r9pPsTFU2&C{k znA**L@-=xz<|d;d*<2j&jggrm z@KTDpJW@HtrWQZ0{hUXN*sjlVp`}JzVlZr9@|EChNcu3A!5|>P+;KPIPc>5(7*}Oz zwRkN}z+q5+IUq3OradFfB=dW!^ThEhs~9?6=h$m!8-O%n=ij_kM_U9^20Ym?-{~?&TKu68EnLP zS#c-W`|n_UJ~z_KsEg(ksYgp4C$1InI0aZ=IkL@3VFGbni(VGD=F+(g%y*_+o_0 zHQ=2(Y64%h1<(n0o5Uez%Ei9aJ{T4dD89`|Mli-Yxy+7wH{bLXtuHc){2&}Es5F%W zZ=)>xoNxPXd}Yd!X)t37wsYU{kOEN1wFGy6NE|-4{R~WFPe+&6sqT6HY+s5CVEO(G zSoX<&cREk3z3wlcc4WMgZ1)SJZNX&HB2`MJYk%)o8PA2a#zOA!9q&??>KQ)hyt-1u z$-e5k5aBO-@X7w-_&H6CdZU#9tx^GO`x6fqkYTvKK0pb+B^DHQv~HEKCU=y;tYpBu z_Q7$O10^g&kw(KG#8TZf>`r%XY z%fom0G7{^2Gcge7paJFkIOe=d+<*E#Ss$HN}^^KN`b4gzS1nXelyTc1J-68#)Zjtu{ zvmIk_M^{&`smG)3Y)LFYO_(>XwN)}G5*U#0tvFYiyEss_yQTy4m|6#yRL0Yrl;t?= z1m`n`p?!Rm#{f%tvm;4`OrS)B{97iN=T5YZ!MlyA@nF46O*9#Ds8K+`rKt}O8cvI;HYx!y`giy8Rrr22WY>Y5E;I|2qTdiYw zWzetuyrWRVU>5xYr6;;};sf*S=Z40aDc9nU+x)p%b$iK6|{$N45!Db!y-1-!O*jwS7b5QC_bKfBQAtnWqdEp8jRJq(j#UxP%U>%! zwCTng{WpDa-Hrx~ElF~0^ZX~}ers-4fgKw<6&|o{%bgArds7HB3>-LILcn-UgH?4T z)GFc6keEoW?B`E5B%*aNHNBmJ%nD_dmm)Bg?;s-Geh?7o3 zh|CyxcUpnK;A&PIe$Pv?{usKq z^RAeKnDJgCR*$nVLfTl{KJa0m4p!7k&ub0i`b-^&U*}F-e~oD$4ND9-@km~XNin+5 zl^dWHR?V@)arQrFj@TY)l{QmkLV6uwgT0;7fp4xgQ}l$kJGu7O?hSQh4i0iBa$T>=MJAW7BD>ML?L|S1Nu@cK z^<9-_Oz&+PhlONS!r1ieus?ZlQh+wQ=-;YAm#0U=ssfbmr71s_I+^TS?V~j5J(?bs zjxjS|!It&~ak)Zsn;nE;6s4sifeRK+tM`t!Ck+7WFt^G=(yI3X7R5+<@1RQBc5Rwt z+=pF%TL*~%DC}@fk-wE@?zA3~?c`fhj%ujd^{g)|acuYi`=O7)o!3rGVe|*|DN`&K!5kP92?YIwP0JG z_{gic0n>81&Oq<+<5ac zAYN6|u3uFzk^$d#=!tOFVD%VU^j?^hVxbNAG4%b!a`@_)zF#F>!DEY~fLC{L`cOmN z(RFU^&-7AP{rckKl1&?`5`NZ%B$m-^cb!xx63s4K+8h#@*!%T(U}RYSLs0La$b|XL z=_Tf?a5T+}?-o$exUa>`J%jRn>+8viKiTdpA(Yn=P@_);O2m?l{WwrMePXr#oT@En z>cU)H-L4!|FD{uonSUe=6c~nZjSroq_({`3b`B;&iZR!JbV)5pV`yUfvvuEFRD}1_Y(16_MB7e0ce16%pW=k@9sm6SS4U&KDB=n3 zu!ikWCN)w(%^I#RNbgd=YdN-D?-tvc@Om-6iw;hjfbcAnY5TZP)v|ZujdKVqmHg-%m=An}5o1 zYYJwuxYFAaiZe=3UQHnvxkBY^v*_lKtQz|)|L(QD`NH*4&>=voy-5Gyw~gy}m4Vf@ z-`ou!r6u-sgX4>ddHob14SAE&p6jTse5}j;g(d=-0Mh^|d#SPan?8aD*nwG$`(RVq zBG%R--NyP9v(BKV5-}T-7&s+3-T!n((*NeloipnDv+iHp(tg$M+{NtUd(ylqLctmL zi3)%I{2aO4EZ_{5ilQOCZO%Psulo+2VNd`nGdLD&Ih~_?Z{nj|PGM{)eQEk4Y)`0l z1gtJwaVf?qWX|ikXqzmIF+UiU`k8U;jp;cZeQ}H#k8Qoad`t)KKIFpe=jHgp>st zl%yr=W>is-`!E^1zuDWn-oC3tbf+i{@8w*txtaQ&*9wSEjzMQ;S&c5Q9-EpBW=4vF z$?NCAt7`@Z(}pl78rd2=UI&y+K-NN_WY9We!?p33xl8jY_0t(JV?o29fNhRox!&OE zOxoFM@i{Xlje)f;Nu2fF{>M-o+4Bw5o05HX@v8Do$v?a|&m`gWbZU`=`_?>;-|7F_ zSH3AV`R%*4m#%LSxL!L7Z+6gv3r**n(#k9}8H`^KXPlaMwHweE7+rlwM~z0e44$%OOyJ&!*&BtqyFJZ|>6>dMOi_%`N_K#5 zQeLxB$qZ?o_OQi5gld}sy~%!#|J~qS39;L53bBVZj=M$XG_UsbooMdQB)YEkS53@+ z-W|-H`TjDp+G(W>m396)%?Hu@AWiYdZcfEWl|Cv048R z)V&gVr$RZSZ>-I;ASWlNU1GoMQf(tQB_r~v|L9%~=7VfZCuNP!SlhGvoAeB@Ncq&p zpEW9yrRK&6QC-KR!p(HVs0Y&T+faANR+XdeSeIDnpyT=X1K;=5b+dodrVzgXtb>=t zT;l63LmIQqpG*KRXL_)ex0UL%@>ueZbJ<8?bv)hmQ4M8fl^mWnxx_Yr z{guCb$!&7R4zm^k4gdQ5oyvd;6Z`I8ApiE{k60A9P_ln2YyLMX)PKMDmjK0={|!C0 z14j96(0<{Q2ft&iN^EITqpvstx1+Hy={0-S#)hK$fMAh3%@QD>U<4ocV7lmtb<_iR z7tCm=6o)t||1ysOg5BCQjY}EFI_2~o(aBj?D8;3-GfuVT{R-&7O*?WE1^(+*hzP6z z@MQJ%+M^Tq-%Y+_mxMDXzPl|}$^V`wKvW+8G+s4cnc0=!mJZSbk}`z$p~x~T4kU?H z0B)FY`DZ|l^?PGuRZB}&I>^%$W#GB2C1MnKmkigddzm3=E7jNX*1c7ZH`{S9;EOO~^Wts!u&7xHXb%e71uGsnWiQYtW|53|z(@ znf)_D2m@dAJ;H}hDF<|NUK|!nvbfl{%`&gn?nMV;t}d%X-0t{{O7OaLgFABb%wMx~ zVC1j&<j+z(EjPl zsmd&J;)y`~7Xa{~$?q)V-gy`D*_fRXigvBZ@-iY`LLEwGy~F@;Yg?Kh1+v*#g35q2 zyo$RKbT9ao9F7VOwj>lXn6wJw?GcPndEyohik}h@p@DYqxFxvQ__+f;4~utC{UQ2}gF`tr}XWm}lT zUsrde0qjtgdYJExnnS?sgEw>)AGPpyBsA@Ful{O~g)33J>;)X3yE2=;s6K}nS|s7{ znNG7A2fFaj?MzY6)fbgr5n~z2WOg0+qu0OC-pD%cN?dNGnjHS&)Q~8>79JVJa^D+I zvmAos94s-P^gg?P!l^@6c2iSCJW&VIYd=Q!;LS>xBfqQWzsXk@6cPgF@$ZlPW<_ET z#t5Vg66r~PRSK3_mH;tu2wD<5|3N}l#l~qO<9+Z09N(`h1|!c&qs(b2WJ$7-GzDfk zv_4d|gg8bpS$t>gZjQ4`K?W?2gG0Z^L$wEzyo{arN(ZC>1CTk>-MvC-!(`&>z_w+o zdTKYiWFv3FS1b6`?O#GA+&&TR}V(F?Q&x>-F$nr%pEPzibqI=A_W zgprrt>~}2P;DWmoj^46p2nq|oH!)G`IX`(G{}x!L)m+bJCd$k0y`Adc&AT4>F)pEd z>JL7W=3_tm_8`eNCn1^J71zwS);0(6ZYngQU<)WeL|~>p?+(S1L`<(#r-s_5%0K(y zFjr8UcXw{Iy)X><`^s3id-R?Iu&J3qlj~ihxJzm?20q%@=t5H`?QLuvUKU~Xj8$9X zxQAZBUczJi3M-r&?*(D`EwN^(B7BQ03_2JH!;=%+y~`qbAXyIEyx4>Y_3Xv?p$p|`zW z`VN#`e}79laQ7Yi?|Rt=c!@z#rQJNbZO4>H_WIclm?6m$VEn>rKYD>TJ0_&Ul%Wcn zPwzy{^O?$>eiP)q0i^EovG3iP$=nt%7(X)fS{V{liT2a-Q@Q}3c~dJe)soZ4O*>AA90Y6-(F%7^z>GD8($@jPo!tt>!($gXr4XDT@$_g z&g=)v$;k-@%4O7^{_&aYa~fufsC9{Jg=dc(h6Y9S{yOEgE1O@rX$x9~TlwCwK7O0T ztsi8TsvFv0EOc`A&MZwlLSA4*WrV8WEf+&!Z5~$(;|IY`l%Km1Q=%%cz^igxJ@+~u z&pFQF3?(Q31}1e%L`M_(d~eLnL8iSj@_LLwH}L!Sai=V+d*Kcf+hjhmZ^Ar96AVjh2! z5KeE~R0YVIb3a*Y{78ojN4ZYest-I*aZlaYU{N2qJD`aN$Cr4N^GLd!GQwP+MHY+s zkknnO6Qw15wh1EPHx>2}yWJSkR%k?E6jMZW- z2=W~twAwa@;$>HB+>>zVkn%r2c0ADp1jDf#rd@Wl%}5+=984#R#c62M-mt`fC z3=of*&rrx>rD{_t6AnAL$l)_y4HD+9S}Wx?m*+l`R@)N=N~b@*Hpf@`BTGV-7(Lhi zI}X(TQ^%~%Z%AOJ=_3AAX#vxjxe)hBdx&g7luYviX%-<0r-pjasTUCdb*n0{9*?4f z{+IB&q_j{hY{9Xf&sJ_D4?UlgCVh3Jo#TIq9fE9}sU1HOQEc*Do3EOFB;gAq&9+?$ zxc6>_@{ciF$GSC?bMMWMrFP3l1KO6fp|ZX8J$8;pOb;{zei`Ot`{lbBiOBqlL#*4q z)eJDr?beT(m;M}@*;WLr5m7w+PTH)gt^VPItnJ&k?Vg>3L>`=9z81TU7j%}r$tNu} zS$gSzMWbD+D=R0bA!-Fa#UPUq4Lwg1d~Nlqq6ONMc?UMci|X!nByDfHywM_t@r@5B zMVbP&h|q7mpAkxZ90Ud28nK~{4XFjzbFjJllZG!fWlvGEL+yX1)yioyo|v2yxryM; ztue?5cdX~T zUp=8D9eN%j7=8JYFNC>!N^3bp>wQD8oVPVkjw+zFX>|>`~1;>hiqd zKzH}e^U{gQCkImegAfmT{@6s~#U|39No}7W3XVDA3=t`H9!^XIO}L8Ir0!qL*d4fV zd7In=4#6Yxf^rLL0BrTso@U@9_L7c#?jry!&ZiQuE10w|Xp?GnO(ke#FUHXMd+M%D zYTSnX*_W(`wOIMKzbbw1aMMx=5o%`hCA`kQM->`p?W3@J+$8AX_IRR^Xi$er(R;Xw zwxBZZb0+uJMYgTkg@64_XLXHjI&E6}aseB>H)o4m;J0HWk>~BcZou6$_Tw`cJm`$vL=VhLL_-(JCvtoC&=uJV@)~o>wu_tChmJaQUeYd8UvQK>;&RZPBwt- z{f|w3tW;T&Gq(J7h?G~lgGVbxY)s}m>u^PL_r3YVA7#OgKQD+*PV9df=s~LUOR9Ds z6v=;=f2N=T3i|$wTvaReUA!_2fS04q;8bGY{gb#S<@4T{rY|yCUE5gJ!UB7)+Ex7_ z>BxvpXoT(d8Ao(%YC-Ne>2D!IE&&41OvG6F@W%^^FI%EE%P*Tf_g(=LfhK0%*;s!z z9whS03|9u~+%*2scPH%XemA>bTaHe-g_+q2c&|nl>oa3Etxr2%d*uwk$nbYx!+W=rgZh^NskLZc2ACE4jg zm-;y3z%_U0@3X`V@kenG)Naj+%4<=^Mq3(8vE5K@cz@2WAnsk0t=0YKI{e#}O5o+p zC{a`nF4%Emsoiz?Kr-&*vqz_;yxa1H&MxJLv1C*3WbJM$k1-ET{3fm5%<_$uI7H~~ zA0*nRc^M@GyZwjw*F2x>Qz<-?hCEqd9#TtND%hpB_6@NiQr1-7wYe4z3fR_OV*Txb z^`~>JCU=@#`98|SiSE`23L#13t88%JkW;LDd^^*C3~4AE>q+N8UPPZ#c%ONh&Zj}+;h&Z^BT#GqLCPo!v)M<_zOhAY z+-)v+9HUsp#guNZhd<^{4J-6Ipd<1%=yy=O$r&v`QwuI{S{H_)Og!cn}_ujU*F{ejs@lh zB+!+ZoV;em>Iu}3cyomoAoDcXCyK}-)jv>}PN8kWC_4gGTJ&j@h^db83eB*ASZ9^ZxXKi(_8Z6Qc-KO5;Rj$Z$M3Y+qGnV zI$By#Vl6Q#L!V3qzc7DTrGBMO*`z3e_;a@)!LvtcHqXCjs7Xi&Xm<_q zjqpt)Hp1>F>;uGvsw^=8{4a$dc5T%MAYpl&{Wzv?Oem(mpM^gbQmj=n<5Vcc_TjCa zz5R?Od_i=%bEVX%Bi52L33bQ{`bAUA$SnIk1mCJAr^~wY(-oVLpLV%n*J{3!ZkrFG zl<Z`wOk9U@UlWwMZ;ML#1J+v;--&`x<8wtP$p9>u+`^A4TdvS1<=l^DQ{8c%<- zdSR-^;*It?sZHb za+qH{cw*j*f%@)0!cxq3F~o%*Vr7Kel0@`xP34pJ2!{7_8LB;sfv`s;n^T7x>V=%` zVKS>fZeo9NbUBjDhsvOirqUg$^;)|3#CSYpm$MnG^6GRBbouq^ zM(DL60lExjL>pjGK5VueRu~Pj>c2UH;@>UXD86z$)vjvcPdIVIi)R#LZ-E99q8ByY}K)eT=0Z)yzcB{)K3Y%l2^e+A@10q4%9s ziu(a3?0)%tjv_PYe0i(FFJ#6jl?k8J?@T6XVQxYI+1;*ZSruP}k_?x>! z!Zr?0y_L!nMli3)k7L^G5{M&M}Nr%;JU# z-Q5k7?%h!8kU80@x@;tJ@?>7Odv;BiW+3@FMqY*St39nrN755=Oo?8cof6G`0}9GJ3(drqdw(+j?Y#&SRMm%SY`Zfp`Ap# zdaw6dE1l~6YtSg){YQL*Oom^UJ70~VJz9TBPnIX9Gi8PStvN#Ki_PYPMB=Zuk0aie zF?>o&N_OxjkWUSIOH{lX)H>{PAdVT+_9}xa{XV;PA4f_^y}qJ(`zyf#0Ku5yiKu$g zO!r{<#-zMe&BXg;R{^tVBYz0ucu$xr#%ZpKji#Ni&C>QhF%BmddL`oGffRX`3rMEM z`B~iJXjcJoadO-7Xx3+igg9xVH=$9ZjzDgjIE$5f1CfLvX(wggJ|wquz*{HYpq#OM zHaR}quQ?;*DIIsQ#qFn2wOf4Q(Ng(qN zUWb%Y3~52GN9bc*$5qsQNP8X&ooG8-)CP4it3U z9-);e)&}$~HVMHuu7sUB(%5wBDPIz1S69cWtUe2GIJdoV?KVQySqa0bozc9S&P2*w zFFQSSeKb~d>c2?L?LBN+n4;;fB4{3pY;t4K@;eHVtyCvZyIsT`s6cLvANvmW!c#go z8H&++_WNHLt}l3;)UaPQ+1%ndH<{@DjK8u~{Ar>Y6Z5v``6SVnuGEWz7C|g(8gQJV zbQ*lQ-axg!gqT=`gzBBURP`=P*?W!CT_MG0AK{Pp(h#e)wi+a0c_5p5kjWGCbpJ2( zp=X=**cj$XuPtyEhTCz)mw5oqHqlgoD>z#O*g%u+fd~rvUBs#A+tfLFomBVJa*qb@ z_Z^Si4}7Q5r_$Gs6yvegpd<)w+diRh#I{G-YbOQe?@ZT+Q-m2(G9?-KlUD!O3AzU; z=f+c!?2%q+xZhfPtM^bkQ!lU%e5BKp%_-d}AJi+R?--wy%1wXzC7X48@##V$d}sNB zw(l6rzjR>{(_7EPj-}E1k(7G?kljp5K2-- zk>!&)UoSMrbk6K#iTS zKuh&bvCz`ItX?2>94I*(dBMI{w2QXG819!hRQZ6y>4dn~cs3u7!p@^~l5oSLQ$)&^ z9G;C}!lz&j0X~a|xst1#-QmlB9u^E&V%ZI)$c@cgsHmzw;Y4)D)TFKTdfD|Lkg?a= zXX}B%cI;ZV_9Yyl;)oJ4AEb2hX%>(#3ML`SWzJP!j@0ubP$8?|)9j z`}xJ3uTVsQ{UzT0Z>^d6bw6?d)u;H)V{?t5A3H(@Tbv((6kpMDDM2nBleaSx- zY4BOQg>|<5Q5$R>F$Cr)H0GCK(?_@F8o<83Xz#8QmF#E81-G0iKit zpp5`p?EeMui|{1k%_Wc|M3xfiJ*ONLw9!x_f9wKc_;|0`(Se3cFRPyl z1IiA=Px9@rap|KKxgoynUbpUUb)z_CPkJ@hwe#q)-sg@LYS)At^T@K1W|o%|_Lm>T z#v@bl4boj1 zTc4!3qHHd9>;A6F0oO4^e|W_vxws^3fB)iP>W=>xMG}&W5bvU8j?kM=fq^p2@V%We5CPh97f$I7?&+}r%(`#?Ui8*?Nnm=<35b=6 zdj0ylUD03b?t7SVKwo0%gSpS*r;cFiT@E9AN=|+E z-XuaCN#02LmE4;SCZoTn38U?W`F>Y~9B^RO$k`PU!so5HeNvvwT8Mf0nTTTwWoOz4pI)5cM zBy#>+xle#;c7ULDd0&IKw<943zHUfS_euFyb@Z(+0hLO=g3|w;L*@5hT5v^Pz+_&w5 zLfh)_kxXcs^o~Unb;~ER)H_`*Rcmn>9xefYzIbWQab_EQ+!jE@4R7wQ^2=N4cv+Ip zXJ~UUf5&dV|6yJognZn78B^h?nsnl?zFBFbB%#+xXn#KUP2GNhAFc6blSbuiyHnGz z5uC_t<$>B#FMXDpAY2irT`Uns#MzYm!PX}f2q-%^V9bqrUDeRE-{i`o6%3jU$yTOY zqKh^iDN&~Wa(C&@M0}n7$t3K?bB)A}$H|o4=l3U(*v?t%Ta+8vcrDh?Xk&oF0K2Kb zx=^F4deBpgb1KIe)(XGe7yk)?oydesT(dL^b5=APzDi)lyZ!(T1E|34r5!X2r}me& z5OFlWo9jgRK|K84I&Qs)Db+NI@qX$C!Q zmq9xiFHoj%JGGGac9XdNgU_sH5BaFEodVq69L{9f8>p=g>iBEpGXA}#ElgXJ;q(_P z>(}nb6U-1n=H-zoUBl@cqXd!Ds^6=0b@>5PI?0u>b!pJ8nM?04h9z;E!=8b5(LYYje zi9sx?xAv8ivUQ+*B2Krf5wbSLcR*w+KWa<0GxbTR5+{q6@jgi(LiGC?(_@9f# zIxK5h^FNP($M#=)h&B7bqoz9B1rgb&Pn+RDEd<6V-==@QFS$b#4PXAhmW+Uia@0}- z(F3WQ?0ZQ-{%1<_*%~dx<>`)Qy|abu!ZJ`fs(si6uf3%l$ecO^0hkwj3P3F2l#4US zOu-F-ZOmw~I9TNf%oi7@!h{)=tmL_%S(1$xwCk3I=I=2sF#W6{M9n^U+g{YoBa3 zp~L6BCC$R8qXR#vN9&?WtX21du9yED&L8#d+^r_!G!OUoxn$` z&6!(j;~5tcX`_#6b_I#{=U^+F}vIgCEN;%z979GbiRHpR4n z`RZSCVQX33;*Z3`^Q_Ikf}tjqvQ<2u-(mGUcV_v6>+e4=tOX%9ZBEuiHGYqQr6H0A zSBB)I<-Emd=Q{+E^;fg7zhpcZ8=sgca|NLT-dsNPH&e%q)*!**M>N^@fn3}U)I2k1 z_T3KH!Y?|f%RXdbG>Hcm<`AfFaUB*xC>+oN%(pmt2Y*_Qa5DdeAk#=m;+KfBbwv|ejxDsO7*fAn2%sH&Qp z+%v2)l9{Dd{o{?nXkxYM3Hx)u%}#+kw>jy$e~iEJ`xRrA?wl z37^ZU%SQM`Le60k(&)wunr`t)!u!Uxb~oV>M}y^Z!+^IF)AkBcox%L7c|G41aOcyG zHgPPffMqZ-F(G!+!AtFRa4+;?=Akqo9Hm@b_&+3%qNRv9J`V;v-@El*vQtr4=PhYY zlt2CqcwK~1F(HY<7bZYcbEjG_)^DZ+v4+y#&#ACD8t^(k_Pf2fhsm{(pl5$7o%V_FJ>{e0v21bS za`%3ylIw&89D6k(>rr#e_9qgej@u40${>(J0Nvy%=2w})Ujeo7E!mTNwv4(PC(^8C zupsEG1!c^Gg1VI{w*x376{jVH$QDySK5Fg)y1O2F;ehyUlTAtb8D5X_hJdE8XQS&j zNBe~@VbEcnTj38pKP{BPFqZ<{V2s&fK?D>nxXLtV1+xK%GcJ537ojBK-6y$-hx!eh zS{#ry{2LEA>)w9*uuXCsRnRf?!BC9OU0~`C{(S$ah3ia)*NxjFjXH^kErVp=?p<`x zx!%`bIJ$W7wflEx$nclq2I`J%Ne(+@DSZk`ThUaw?d@r{^B(UvAa?r6jH@0s{9YWN znf{EJb%Ts=T@!L9xBVJa;mi^F9*RQDozBI&gy`+t)5$gLcfsuH+4M$>DSasYnl9OT zLBPrrs2}{S+U&#E*Nqzo_apeS_reHG=cYzR*zAOs+HtKDApBMFN-cei-kYvQd=a0q z1Jn6+vez~8Sv_Q?mi+b*mlP4Q472V6$%Xu;W?Xb{Xv8o}ixXF!G z%XOqMVyk>L2x$P#km2&Vbk0!%EAG7{D6bS|t^05%KQvdG_cD@&QMJ7063F|ywMg3P zg;V-I=a+gYiHmK&gWZGWc~l26ho~(}LrfeH_F|CYJc@wNK&-5Kvup!3Uyp z{eThIj^BF=goUA#3#^!RH0a2K&12B!=NlI?D^Z+Npo zuGva_eR&K@@Vslcm5grKMxEdy2IQI+u25jcyZv2{%X9aK(1%;hS0$qfYe1y;CZy5pAdWA4i{Rg5s|O;3ega>$fm0%Tjj{Y+0h7?SS{eco zuluu9Ki>=6e0kwKmR$tseYo>-tabE1+0)j>!s5dLS!|bi_JY7ay?yG2pI^l+cU$aY zC0U?$x6Aip$kTL4duI8nU&1Ra0AGat_6ngW{Ify#N^A!~rcVVMS>cR)XoDj=PoTt^lTT);4RwC~o9jg+QNve4YlNSZlM}=WW@nwPQ8DBgY<|rOo@zF~zoafhEtd(;h-n8Z8+~>b zo0>m)(3B+E(yP`$>(p`s3|Lw&+>S!FtqSdpLegVi%;v;v$|xu(_|ACQ)ux+kW)tV? z_(_iCDnWB+NQ^`RyM;GmP@Ozj_wgxtzGdk(-YDftbi@kkNCC5R6PL_12jh-qHLZu! za{DJGEnl44{qeET;te5b!Z*4+*^>7?)?BjN+<}jFMq>DykhMPfQYBgSWya{wV>za=P$#+Y)tfc=1wq=xMMrd ztU-rB&H#(C9PWJrGy5~}zR7H*MT+}UPf26=BrISs_MgWuP!uLml>7N-_J?@aX>H`v z69)Iay&CNM@t+vp9ks3XhElpdwre`Yp@aBH>Z#DSG{vX1LUQDn^^l;}dU3_o{eBL> zATB+6W!rSF0#q^UDp)Pa+R4*%Iy~&IxoSpS@iFnJ#C20hpt!oOw;n7WB2AGSH5!XP z#F%@F$xnbm&gSgUN{@~O6NPer@aJ=&yyL6Ji-W2>CBwJJT54y%th(uRdbKW6D^C!7 zaUL_|sJ(!pZocigd+Rd4>sU0q5D0dh)}1??91upGmE$G|?7>iWvpep+!iBpMB9Otk z5|N)Xhu6Xu)3gtyT7Er!lPKbXQ(wI5p({adnbZXY4=0Fu@U#bo0ZiC5cR+)kJd}W%Rt64Mf<9_Wfo^8Sb-V>l~HF=x~xBeQZu;VMq zq}VnWkmp__E8a9Tic**~F+#sq)|j{l}kGKv>a86#xSR zFJR9*p9d>_tlI17QrvHC!)kxMWx?yogL|N>iGwb2Kfvr}=5hto9Ctgy>`F`*V=#qo zQm8x*CwDZ}YocglvxO8}hJ9RH`T8BGgBLLH&3r(h5doycrgxC@2QJIak6n<%d&;?r z8`Ut-o#xPtsFAIp$Ko24qwdaV?5}1ku|r#0$hP9pbapSwJ1KX3yrx7OYQ} zXug{o%C0S*+pn8XxLWa`MM~Tf0-ddsNzO&D4%Ox>=(5PaAwJn1!G=4GL+TA_B; zc0ozz1d{$^t0^=d&}dh@CcBz4INg!^3v~w@*gC#PpWK_F#SZbeLz)Azxip=-s$shz z%~s|QJGC3L*pDCBEJ8ufPIKFv*Yf3&Khwk$`Ib$+A=nG034(U_uEHe}VY>Dt{iMDf zQkd7z{G@RFOMjwPGF`LFU@Z3~ztFcFizyauwMLbLe~WQKcAe;o%#PN28v)t^wfaOL z?S#znRlgr}jSR6ah?M`W_k8fmiHys!1M7@Nxp6SpuHk$B2lShx+z;n#V-NA@e6h@K zE-gipnSNGVL|J^ z@y*P(IeG>GnKW2h)VM15?YtE_XeskN+kNhjFq^wFS~=uKJjfbFTW(hfZOP3lANw+kxvN zxoZr8UPE$yTCn|6anlh3sFh@qba5N|SsKjg4TRPJNC!dl^3`8jxoz|8IMPQ9ir&H% zimJ#<%2}TR@*m#%+^GEy7&0xP&AzbI9peMiOapG?5k7W3(544%eX$YwyJlz2+QHIs z%MHIN7aG79>`xDtsJkv@d&#Cr@vfm8$l;R)Cn@6WM*6Vz_aSnNccd+%8qPQ3Ud}`3 zFQ!$lqC_R@z)tW&F3yCUM5T6}UwuUo`>Qw;lGOgQKfT)Ov3_&jNprV4l+M;=e2N#x-lhC$G*` zs}l>tZ+Plft$iBnPS=BWcg=kQ!B$PMJ@%=QD=IHNocP=Fy{gGiY11hem8Y(dt>OH@ z?jx7K0?BEkpYv)Fu<(BqA{#x9Mc8`1NrDXYHA&_2OPrTy#vK`>O1z|qw8J&nCUZKj zZI1KJSsjoFn4aAHYwJPAeLF9*;_}q7YGOTjm$bEqKnz)S<@ug0z@gLj_#ujQKdSe6 z2pMONOayII`HJYe5Wb6x%WhdW?ZufvZ!VP*2t*^gTZ&$$A>Z|a%#b&}R#0mxsC1Bh zN?H3m;v}4JE~Bt?H3QI@n5RaH4sw9{DjxTd?}}as;-Q14vT+owxmz2WM$^~E6ymD^ zpbHwqS^294fEl$3w(ws7aPR+MDhgD!wWc?RJ(9r3Sk5yznhpgt%ELYXvo1=LgAeF; z+`p&Q)Sp#3{^zUzF2Y!c zo$0QGs2t&sA_nFL1$pmty7}Xlib6$UX@t#~o06i~F?G1GyB;>FCK2L>1jrp;rHaS0 z-W5!1x)$O2;r<<@{2FIom>1me4$iX}xb`t#e92M(Za5<`ZzK9q8kfSm9Jp?KUEaFhHFb zY?A)y>6E*>+ZC%{9P6*W(E+`Gy@bd%!%s}@1WAKI+Ya&*Do`-c{?0DzxZuqpw%_QA zI|p*3>{*{$Y{`a$+wfCA2yYfrx!*)mWtHA}_OK2gz2}sA+MHqQbGClSs>}!k{FxmV zCVG#K&u<`tbzNUh(FpS0ULEG@vHSomzSrJwq#iHTb68CkGbYLtKKS~)k15N75`c&} zK=r_?22z?)T#*3$eAo!@;M5`#sP%w2VEM!Gr5#c9t>>n!GKj`zYSkg}xv1#(3#t`3sFe=bHiHP|2>V3Ivo)q*-OzbId1+UxC zyce(8{=n}2UBzOg#4k8M!Y;1x|!q<)#Pygd%2s}0<>ypvv4 z*L-{xe<%fI)u2tT|nO*yuooMt- zs0Zzk&F-7hxjL=f&s*OfBm3--Jc)3daFgI+(!MREk`+WZS3oze(pRwpa z>YB2lbpy2$dZmZP-v-zDDD5s462HAz^Xg)ozy2uf?e8p-AiP`|oYw4gi#Tc*(-b{P((j<)#{6SH%2ozA+dW-2b?X*g&22lL@bo@Trb zIOSf}bCA(IoQ{x~_$|T$V$k>DLXV-Qv#<2l|EZEoo@Vzwim2ayMtGsDBX|~5-+~a%eJ-z~ zC^O&2LCJ?i5xzsGI$it_fTJ`vmZzQ*qaAvg$Lc~=J-|JK!9|%#ajO|D-+Oi(K2yey zn@36fc9j&oCNhKZy}=_%cQ5I4<~s&g-TFgt$sF);XA#+kbiQ_U?Ly}5u4EN+uOa~LYZ*RHXc*r{~3RY8y{|CGJkNG^1U|M;$jb1W=xzr zQS(~+Q~oD{Al=%YX-10ZG~OLEo+3w!%O+*dUY4BEyGIu(<$<4N;-XhF&pplry=xq`Nq263GR+}N^=BTSoN5`C zXv4aam4Y8-D`X~_k8wNz;mq_bNf^};mq05~dbm@gXQz(tc~u_8R5*d#krAD@mae}C z|Lmct9r;%SlZ7iR7P!9i=prNHXY7+T+jAb9l^LgMu!Gy`FQpnmPnW*tWB7u_1F-_0 zjvelaA26iE_T|<`JjAUv@GSJSG~7xkmhWH5wk4tT8K_(aIgA+32WQpVGo5a=(#e$M zDupyx#*#it<~@Z6s`R%n;JGUL^7$fd{0r2&O1_B8i7M@W6sx#AtTZb1I5fVIpga9I zcW5}O6p{}b7d@r}RisIhDjDq-sy>+9>uD=#SWW+kwvjtaC+=-C!JLjIH)Pa%%3YfK zy~M0}GdWGANzQKh5(}exuVd(-kh4vt5EgE5UH|bp`{W_FI#9))ZKHTPW#?S{I)Oq1 zsPI~GBays*dHr(SsAEZ2g<~JAo5rB6&TBjFT-+!7rSd;> zCz3Q+{gngfosvhMLE7c)D4sfIB6aG4%A)Yqjgi%`fy}6gBekW%Gxdy8qiJNng%&q` zKQ!S{4aG%kur*dwq(Oa%7o+dF4bE4N{F+2+Ex|w~8Mgit57>%bseLa?W91Bpj{9(R zvshj)S-6g6ArBL`+xr{SUd;BVKD%KVo;({FS21VD?Pan7K*WmMw=RvWpK8qG%=KT{ zcsk9+ILtHWsrs3o+Qs_buX9+|$MCBe*{H@PF6?hx*ISNveU`ky@TkOvW^k=IjIM59 zvY;l0PFFJ4w%xCf?>dCygN0s2<)DW3mBoYWoZ^1>72R^|kT|^VH>o}}_sXN`RN}hX2i4+!?Xbmk+r4e#6K9VDvez2_okfbuAOpBa8%8^+Un39 zrq-@8s&iFq0w1qHx(v(o1(LA|2)dzArTa(JZ{NN9T&gdn@`6Ne{n%%5tFDQ!=+!HJ zPuKkRC4_*Pyy9TluB1z%h;-8@7Md+?2g>+4XG1#``5==nKZztlh$4`oh<^rPb?L_S zy6)k(Z{2i_H9geG_?Yp@#E(9flE${!Rahr*q~a=KpoZ&ZtfIF>V{lk>#d!O4;}n3;wgAbNA^t?q`f#Id6F@Z7{2K1}`qo|LkFKSGe)U zh+V#a|MeOF#cySrAn06@!DX2$tfHo~-~rhw)8(il6LcoZz;{H8hGM)cz!vP&-jsZ6 z7l_bb@rNYLR)k%AP0BT!nk}^RNWHnhl=u7QvRGRgqO5NF zDL29G%tdGG)jh#@?@y9xu6WzkG_N66H3^N5emUzyG&8Mr45A59og%2danrR;DHV>D z>*?+b&F*85Qw60=UDiU+aKw<#66byib?%SnqMD{sZk6C+$Yblmk z;95LU+5OQW0dX(h^0l=s8x|okTuV7Tx8hy&B&TvpXm0m=MKIr750-jEW_D>kLP^I{ z+&$NbC0NT!Y<&C*Lh`aMk4vo-)vfETaT}mJeuy048Z`cC&~>8sU7@}=Wm(V6Jx8~I zy{F|K;uu0XxHZYL$^u_xR6f5taT(gZVH_*kPS0xpMLW~1vj-cpo^*OCuq=6v$!mni zSGg}4-5yL(;d;SFsm7jI;PN(YrjwbSQW@C1s?#Fe4bHA1|7Wud`hP#9~t+NF+`{?{s6Z3ry!%k3!JVTxo4{GzzIhl( z7|vrpii2lSGXkDDW@v3~^@i*jUmhjL7pCzqcdYy|gJd?9B05{T|MknOuS3(QZs z!PSQp8U74qQ6qqNC6Nt`Fsk)lm zuFf+EgmA_WP@Ua4S)4%2eZ~68&*Ss@&NchV!JUmAqEni6OQOx%&8$XN{EKTlU&mN$ zyoncG>&eoa)?v+Ckt^x;S%&tkae+F$&SkbMJu_@cg6EMk-@&Q_#4Pz2YJ>7Sf{BI+ zT-Hpu5W1haYNxL!fkkmH$TT0}Dv{Ze;z}}MS*_2LDAer1p%)73Y_Wrnlv-~a$urk* zE*%%|ZHez;-nT6_I_z3?rVb^#t&rvF_s-c`CFOOa`CWPDLe? zq--8+xtpr6bj91LD?qpkKhD$HD5hq$3_?B!9X0A@5_by>Vx-%jPRi5rW0#g%%5gR) z^CiA08Q54CYi?(fWSm#pV_$Ci={nuE<+I~{8#ZM=|3^LNIYqkV zob5Q)NgrR6`-GbO{*_|R)*R`8KKwKkN;)?~vQZ$+KPpDDBtzF&3BYje_BOTF$oDhZvzFexu+7uH=O+aExA@Bq7xW~$ z!`mLi*mIiiZuBj_6m8m^q(6S>Ph^!tsMGZHr5kw2G|Uv=MyqR%-|EP+DdHS%io(^F zOf$s`l^wzJy0!85_x}u|7x(3OQkJOqVslgXdqgw&tB_k0UqSx~%T~)?*!2jc&hF2` zZ{{kxdQl8|)S4ybcwXOCQ`fOl$8~ptVdk4e@n%j{e}5iv$aSNkT9vGlgja!e&ib<< zR4WyK!ARZ$d{@Fl*hg%^aiC(rKj`$A}sgX3JyU)Twz1+3k(R+@2j$J)Wtv^esk8XFKL1Yjw}3caA*#P7r&^mH0RET4gcZU}w|o z#DSVu;JK!sXASD>#|ah}=HrGp$n9tKXUU0MR_(TFun#5SUN*&Ur!@hZl5QB$@f_)e zJ{`&hf8X?}kR2;TkSDc1ZG5fCGV?4(*Z0@5crcgY=qnrx1dr3&`|!85yf(eh6**{H z3ne*5OnR^+_IYCjDXk5L(=Ad&d;({y#`C^}kiDq`wUG&`2jk7XRLf@Mm3cnmG)`YV z!1;b|Xb<}ZC}9U4UV0L2qN7wfY}CeZ(0QY#?ImUDuLF!GK87EFEogkZkb#fSn1H;}k@Kn-8`YjEntYq%Yy&;Yq#$YthJC&%O*kM5-4pzk z3eR+^;ymN{dIIJOudxwxLz=HE={o|2K)pA2Lekc>`{>p+#LQuc=yPkGN!XQc)!r-9 zGmFS|4K3$QTM6^2cyi?pySh`(WBd>@yjD<=w_%z0xQ}`6nSUED!(9|zGfhM6on+>%Uo*ynMzRv{Mg2cNLZUUyAxZPlrtMTAmh9HkydFHhvdX4*jVZr8_<+9~Cp#dg!H5|&b9>}KC zdF|lW89kLWfv+PiMC+cAkVqe{bRKtV_kri8{KdmFsmw-94*ccE^gK!goq{U8d$gIdF-#OFjAO<1ya(3z22TP;8^_uLss}tEy(a6p7dzRk`S)E`vZg8YSPAHQx~ z+HW%7Z3RcUim!JF>@nIP32kKm1KwTHOLLbzR~Ea@x@rYq{FaaUFR)iBP3%4W-)92+ zdEfRI$Gn@ze{a6^1rz}+TwDeL0RcT9gQmw3pW|0oR%#vBahRfI??1ci;E?V)ClDXs zx85HQREOrWtkUv-dc*$%2{0P4@bF^v|K1*|y9cYLN4-$3;Q8E&o^+8~zxvm||M<7@ zu>N!2um5}V)?36zxPWetvJVTxXt640dVa-XvYhVGnx-{(K5B}5Sz|=ec=@<9 z$IfhiOVlI0za0X>a&RY(gjXL*?Mx299I4R?gd^#g&oW$gBBl@MWIq>exNi_#rKlCn zj{Z><6-aA7Yl{(Qz2W%u=@Vd1mir7^YgJix&P%#Jrl62jQ6Y9)jXomBdue(M*?GB6 zyD!SH5-se#&a@Z5o81u#LJ?*_L6XNU{c{5m2edWJBf%)`tEYD_?>jur9=5t~9t^1n ze?`DNtMa06h}I=Rdn)*cAMJYX&X4DtMDBKHwz^lRYzDGS`%KS=PrI8`E|!Jjl?Ud3 zOgXh%OBbm9elTE)jvj}|ZQE_%txp{QHKjr05v#GnPg9h5oJ4jh86gXi7H`)#v$=jM zz=qbwxXFu1&-7~L>bB-6ym!xdBYt#RJ{6epm&<6IlMSf}2#Oa2QQX>+aQGa)c+*!8 z7v>z2m%9Y;8B+TxfMOMkN3 zz`q*{ReJ7C(r`ka6g_h^W~^1S_dUlG6UhD|pLt92L1BA8h&%5MrUVstNYDB66}w>W z!+xdn+Bx!PMA6gbCogBKu3}ar-R`|t#4_vXPTiC|6;!0tkt$Ft(x~1eX9|fNyP6zs zcCp&96^ath;O^w{dZi?BnMc=MA{}inm|}rmKbEojxVV!sJ3`HG-Ulxp@!U{g(d29? z&3RYoo7LeD^61}*!zPmeAu%Ged44k#XbopvY_euBWlfPh|4{8v#*Z*K z8?rsWyj+39gTW=tXb-)w508)AHIrMW_dyqxx5UK@vh@2K(p@K;ui?d+SW54EOVdQ3 zFmFyYi#K(#KOadN<5ucD)L1j2OLKv3Aqp8b89AG6KjWwe1{O`NIPKCY27)rzLTMU# z5LkXP&(j69&*9rHa`G_6LB?Dx1pz1iZH(LGvVhO9{beMUIEE3Ac-$_-c{lIdWOjm&SZu&p2!}0v}eqh>e?6#VtdYd=z0@@bjx5eeE8F zjj*oP{F6>#NBZ4(XoF~Ap)kwxlbvZz(K{QvE3@WX$|@RO$-;ZD+~ui{&p>M>xPrnC z%n!3)ceXH*95(x~D>?Lrxw`!PILTc_InKHYKa_3kPi50o!osGJxL202$!jyd~#nLcr-aPWn=zP2vRWDDq z8asO_K2S{M!qHv$0+StjYjds_mon8J)QjH#SSH8qT8s)7YI^eKT;jFuVzviZf|zsZ zeoU@%4HI5s*P4=wqvmN-RT$a(3)al+UaLQ|A z9Ac-cRcDQ^$ZaR}c8g=UvNo!U*|mQodcU1L%VtqmtVIkhT6nBD@R@A z0&V^D+;Y~J?{AGRD~G8LFL+#$)Q7DPwnoIJx9+_T4{T1NiiSg=+a4_ z?$Jg|S+viDhPAPI>FE)oXmlsnp%qPCJdP*@!y!=S&L;M`=&XT&(3r)6@nx-OwhxCt zwjREzY}sWf-85wbrY&)u=Mm>SdEK5laKzg663>@N7=&i1uW6+2XG2A@Aif-9jqQS8 z#hOo_X7ePnO=guE(6ww2WPF;60bB=@JxI@@1RntrnocO zU~`Y~^82gy1>;70WytwYa22brqG%D5J%7Q9>3+#Fn=t_S(WLU$)iqq@;GA24{qt}_t_H#Zi@Vm@Vm3fA;ux$K(n7LQJ z*6n*oynMV;$2?CEF?vp7Z{}PIxeYzCbUgWfppdUS@$}< zgxN)>gxh29i5dyV0AlbbSK}znJCsYPhu_!W0xAYQcKNao@N?s>rxJN9u_nTJOblZJ zX@=_)9VZryI9J>?1}(gjpI&PAL?njok)KR)doCz?EM=+pipGW4m_D&LFIFSD5E71OfM3)OKk6i`2sY`n4~Vv_K% z3loHY6fq+t$w0LztCO7>Hsw*0k2fwN%|1WrOhb(a@$3&--@p|W4kU$wWqrKHmQv}H zO^_T~0iWKS$e&xjC?ZY%$g+!tQ~c#VmnKg*7bPJ>BEKuCtF)d`3-h3Z+5%??7)*EF z+}J-{LiYLhI7?0_&Qh{$yJl2^R?Sa!j}Tw*RLerKfU;PKu_!_t{CTEpKuu>nr~#GG zpD=UeScFW}qW{Gj{jOAKPt#T%#)Ahwqgh9Z*Lt65Y;&vsVbN}2$L&`$u|{xvmm3Kh zbs_r>6Xv4gSJUVotPk5sSX5u4RrUVbYy6h?{lr4`1Bppy2$A?Ct%*)K1)7qeV4SZ; zD&@XwO0D-*WIuiH9drKa5qjW+WtANH+Z-ZIBc7(Xz*3o#^<<=OPVH>VuPQSkGl!M< zGZXAeFOezB*KgjiYE^FX!t{*F({P#HxP7(_#Vjk0Ps|V*k(Ttj2cG{Z$Iq8ZUlS5N zJ=OY0q1|C&eDIIz4je!K8}M*9^8eCwH>AB#9m~kbAQV6B@bL7Md)xsDPfkugN&MRf z^rNqbK~ZD&UC6`VUfglk;{K*~`uhXn-?CEwKh1yBqW|aSe^;pQVl@5^^luvXQ|!OA zlE1_M&&|6B@UQv(&&~hk-v904{QCAUQwj)Z{IBLY*+dg``<=3W3547Joo=Eu?tY~vAi%P)_z zi@Rw1%GHooeY!8}U;wS8t|pJRU)(OUzf966UE`bZd zis>~PA8CZ4-Rzc`KKScBXHjnrg?zMKj1ghvXq3)0owdbw*^C{e_%^5?PmJOYq@aos zG1hZGTSFex{p%(7$Y9q*@;l`c+H#={=Xu!~`fB!kO?DGH7!$*XXeX!p?;}T>@EC@D zm>WVX7;v552F#h17$s=7Y-YfaI#oz z0kOk1rN5N-<)-U{VGQ^~Q-^B`7hhSu7maCN+k+Q-!UzFoa}($TI&>#z<(jQr!H|#n zZE4Z>|8cA%ByLxxe@bL;_Vzsh>lN+lCEHhP&wM6BR-6&^QHj*(_IQYwF zg8hB9f|B;)F<}#BH50_t_bSNV6LXO8u}YooSMDcf$jW>ez9!+V^2?Rq7B_F7~t!CYKwW$+?A#7b$YiH9RTu zU#*b&;_44tvwF>$hPheA{Hj9T@qeT%u~u~TiqBJUi3-Gt)tUYC;q6h5ZmY+Y3<(Ul z`p!vDXbm`+F3Z#LA&IO%+EHC3XJQd-wnfAdDv(VXPdIrqY#m~;oCn`;AKzceDk>rY zS$!?m<{rp0t26kW-L6=EL#UMuM`Vz#0S0wMgpWHt>K^JTmIOtc^@3b4AtlqZ1(s{~%(9WY=-w*J_2>4pGhj(9ddJx^tOajK z@t)awv^)Pi2`NMg5PsVyqcF2dz#}Lo;SxTdUo$Nb?Mm|mycwS0|NBHinr7VP?|Az03tzsg zYkjkWdooDIge609&2zr9-{w5y8W$rv_htT@Ujp zcfQt|97@4*#loN34LKQ!X8YbuW@;lUFrUGP*EL8XdF#Q`vg>3RUa`ZXMQN?}45UxAdAXdb8NfF9rAT=FGa+$C>zw{1p)*oe1u zPBRZOCbWWEfv!>>R4Glxd;_H(BEGr4b`l}FXEfNNjG|&0DIFI!BES&igBQkM!mhh& z0^&V-uVfL$i0S9qy<_2ilE>)a=OC3EaE~I(>@zywQRIfGD)X-0B9bB!XLoIzQ^nHr_`*8fS z6RSb3*+L;_Ksy}x06;;(>9@%VV{J0C0-HnGgUeE{`{SvHqXtiQyT@S(h4jv85dypGzWZXB2y7SA6j!pHZ_=eFdg8iVkB$VrbuLO-4MFrK3Y z%2t~u+=1a*HKMZh8t46YX7hc2xiVSp}g|d%M1b`bU*ng zk@FvGDE=T(KeH5oJGOChHt+ASuwNuQ$|2a?%B|cSfD6)E<6zPI8vOL5%Efr5sbYZ+ zX?#yi0M$(+eyRfLTN#7#{A)(WQrhyNvvQR*+#><^0HVQDSwuMLZrKxy_YtqKuu1t= zG3p0*XJn-Ym-_j0mXY4Jm{I3w-4s0xEUa-)Om*jMi}|m!2O6A-?5nW7+C^iwt%Il3 z%9S=ds2>m1S_}paUbv5h{39{Dn>Wr4``4vvJ^&ANcX}F}mb1ZMT~IGA?svof9h+Sy zb4@?O5eW^KR<=^E<-EVO4yNSVYLtI4$Sm8Lj}Li*m-^Ccj^fy@`ad(lm3=SO1f_JV z)$2>k^X;7=x1mx!l*6drOwYAFMhos7qO3jjXUoLL^)In{Sm>bs?w~bZ`t1i6n+Zp? zK8&PX5xO)QEOhxyx`77c&PC?o>c_Bx&r->^oQ|jC8Fs!{f%E<)UnmcNxz+y?w5U!O5$p6#c-UA3x z6aUv*2Eqsb?-sDAUnvfk)4_=U-FKY(*{WAZh_nZ7X>gAsAlKf2ik%8|N8J&a6Ck*HCv>>0rG0ZX7-GkS~`#6V*hvr2zMHdb#hIWp&d^G{lu zSMt2$SVi1Xso!z)#TO==&b?Nqcng zFS4xE5O!-3OrH*Z7_6ipFAz8-Wv2^9jm8XS_eE~%{BeQP_iZG|jdP?x1~+$}%ub9%h&Tvi=! z6xh9Y+tYGylX&n{+D^MG)w^HR+OE`Nb`9n9@n4GSbB^3@FD34s%NQx7$x;%OJ=qWD=%oh>tg+%u7G+VZ=12~BRCqJ;By9FmF5TL7+C1d3|WKq3GCEhI<(Iy zqO%ixmPYm7b%|yaI%Ch)w!g{OA09MD`~d9&K|=2wbQuklqKEv5R+HEEWVXv^Z?2z) zA2b}c+x^Wv6#B5&`)i~4@2|u1yx*etOG(4q%2&UR9e@%^Q%x2h?9w4e3+3*CU{{VU%#fGWH@ zR0q7wHm=dgDJMGPZvX6LW#0bhZ>MgsvcobT;^XgQ5V zJa$?^%o-jY=kJPBuRt4N&iYvFAD&3qdW=qE7)eB^bi%Jacpd@Lw@CyDShRe+U|mcx zV?O*S^V3i4{}aJ5{Bq)0jW<#NTykdv2vMmtBlU8XjVE^od$+rC9Am|P<^Dg)h5?pR z2H(FP-bnKtO!e}B!3y5r5(K*~=_r3(I8cE8REEm2q%6k{$~6lF9A_D$^UdGyabbfX zb&+Q!^3ab7!>U$Vf ztwGf0#EnjhE z_vj!Xr-<)x9K(G1rikv3OLhRtVfmw*%m)6sWSehBT{?IaBvhdcPhuOgTdwIj^-B`t zC`{}8GQMsBmAVW|m?>*b_o1aO07ttgAt^}OEW9g+Vz`ZLxD3gQG`A<;YoS(^ciq?R zfm&*qfxKQDUbn*~ZnI3mnU5PIbu7~Bsx$WG)NlQP^Z=T&hTI}zRp(-@EH9r=H!PaC zW!!E?hh-tYD$b%*2{{@xSSuC2WvUkL%r< z*kvXicpB`;Pf!xB%hE}XR5bTwV5s{ULaldmkak^@_k7C>mEK*en=|Fsb-VD)24enk z-fhDL!k6musxK7Ih%5z>$o6X+k2g;=nS=h?b?)%>`C!4|U?D7eWq8##T*~nWOl;gR zKpNdXhp*=Zny%3zQn`X{6y5U9EH@hWVr?q&zI2C1G7ccx+ z&U#jb;q%^>TG@6JR(-^IF3gb@gy9_DPPa5Xf7;>Ktoa+jvRfk$=IDjb7mb=C*_L#? z%0Xn#>f?*LOw=R`pHFu(8fI?yR>Xb>!I_T;5XIn^YTLKh--l-gl7Jmi)1;eetz|{3m z=k~NC=Uq)`@laH=DD!TkO_W(tpH(Nh?kg~dCvf+E>9`aX3V;Jv#)amf}$egu!% z0;!hHZ+~|8PNIvHrT&K6r1+2WhzQo^@r)SoOe@}1Q>3FLE7G|BWjnp6J;jU@x~tAA&FFu&CS~;ozm!KczoBS_JKP8E4q6{M-7QevKRBC+5pV8F|X@bu5Dq@)%gC zDD+$DuImJsEE9>^y*(XRMhkr8vZ;dBH6?B)*Ucw+b(sZE7_f#?$HgYGpKKzo{N%QVZEF-&EP3i5`vLVSoc4)?(PWjxSYZSbE+?> zINJ}2teZ){YrC#Nq+)%)6p#`el-4Aj=2L}~`Tig$cQ6=?eJU{pf3Ek&la{<;xmnLT zg@X>X%iinv6zI0ZZk(3P>d&HV^w-8S=WKf@MHJx9qXaSM62eM00sX zS-7PkUe|!-H>`irr4M>tcr+e*BRQr3+-!SR>#+}E{~WgEfr#ld4AsXH+iK%WWpAZE zt#yTat7Br@ri^a?Bo6=VbHk1MzG>HpuP@*jXX=tdw<-B+ui5CWRdEwwAF?+@O0hgLsCMhOH;f{rec`$agQ$CL8# zQ!0M4B$>FF3Xe*sFK=B!;ol2h3~&1j{EZjFTcfsNbxLJ9&G)P7u1avZ2A$_@ql@>*& z?OI*b-+^Hp_mg3U_17$C0so6IsrdHJAM`cdqM`Vb(aAr4AQFz3PBRWS z>t)&gI$0V-#h!Mb+t2el|IaS)lWe2c<#NXeU5ix)-Kx-#Sd3e+*@^@1*9N~sWogyw zX&cw9{H2SXWkSp?z^wsuI=7lHNV%a&_h8lW?H^oD5AdHCJ&=#p%inge6~mS;Y<7w# zeY~r>l4-e1LN9F8lUA+~jHku-&h^l)nrJ&;d6aa!a|8{m1zliMCohhF1=|p>xxOZ_ zhCel!Zt==m&7;HejHy=xRV%(C=rbTTXP-fxUeCn=CQ7|r{w?lsCSfAZ8JQCudSIOW zfupN<1vg|%nke53*+m*+R%5!(YM&p4{#Vn34YffLsG1DMKzjKguyWj|ZZ|l{SC8N& z7JLeg5>_*L=CcLtzUKKO;sbE{Cd5u?js2nWJ=?q zB2b;zm=CvvkLOR^c<^fq+&grS(}L=A;px$%pDmF%U10oTd?%(qTD-ZhI~E>*`JR14 z*(NJEG_b!Wu!>jKMH<+^R#?+b{VqN#eqPN!BO*tV6$)j$GYsYJMj5b z9>wCZz;k`san98D&BtxHOxh9At$M5iFw%`+lL`xb?-MQfzv-kxa-yZ9V^R5gA0o8? z48D3>p#~%jqX7mPB%I|b8GFvF=3faN-4m4gSYxC*Z77HR9d@`S1_>S;kM_-E$gc{V z@>^nmkQ)*`{mDUgl>VA&H#>whs*CmV-ZyhCvgQa23E|dHdFNSl%XX7nGy74MXz#Z*_PjjQAOWxJJ4 zEpAuh#eGTrh~bzL!&9ZUZDjunY{U2&}eHZulB@ zg`Vy0-aXTORB0RsD=U`GKN<$K+Tr;s+U~(uXqDv@(>R{*)X(1QicZK zJASs%vAZc;wON{jP$6MSTtALu5~mtqa@Jm`+<#NSgd;FBl!gEA8DIa2YWyD=SpPo( zqtC^K_>Q1Es4v5V2p-htb2U~5LxQh z=ikS}@17*NLfe!3oB75HE?MFq2x0E$0|N5Rnw%Cymzi(NO5dxqrpieD26*xb;QVpI zGU#}h!}3Eu6|qz2}bizoNvODM_IJjx);gMRGT5{;`okL z^id3nZvJ{Fm%;c0NYL(2V59z7W z@R44s+&mN1kZh0KRpO{P-uUSg50zFhpR@Q#2>VtEd#I z&@9<-Cd}cedVu$l*sz!~CN--97K4;agi63G7lZWkLUOvk`wElD*D#P#o;td@_ot`C zG-lBb9iV0F>N1rU@9g}I0GqLFHf%0budLUmFJHu|Qm2(J0kSX#DOU{Ga(t_BY}W3z zl1pCWK0YhXx%Kn=WY652cXBU@(zWqU4zlSW6zr`>l8+ ze&%H3hN7b&<@Uyx^5TOnNeXG>1d8*fzMiUyn=Z`s98YhSYT|G9M*T8P&u`Icbw$p6 z=$aY^%ZqcS60ACBC$M19>SR{wWMnoPdkN7b<7Q)~^qKP1{DnfMArwzaYD%}V>D%@1~%kMernseemw;W$ z%RfKA>{-@|RVbG%YyAu1yNN-)EN-jxS#2Q2Of5+V_}~ZHe?Pf1uE96z!8CAc_a*e| z)Cj(VTAr(YBI`?50r}}dKXh%C?Ahf5QszdNFOtW#V23tQ0B|pA)dWGmfb#FhoU}G# z9%6Bq_4m^xOzQqjV%K4D?MvI>Z-_wzWJ{$v!8%(XgK^*Iij+u;LBqh5xRoKxUTlFk@Q^oC)O(y``g9zT@lj0e_Pj@(G&Zcu z$M(&1s8N!@{V=`B=I5kM4TvN!;y3?1GCiuvl)+|Pe#@#OW9nKi!~2nHF(rTZqDvn}0$*u5jXKo!<~ksMClD>|joK#!J3|At@uhNW(5&0+y;AI%*1Di5@)|rClvlpjfC}!IU*o zPH!$Nj!Mx;&F9FDjesSGF+uSSvIskRRnjR6xeDW6in@G38U^+KFP;k-ImPb5X$&zn zgoK901U2>F>})2=vV7N{AjzN$+Evt2>1x&!Qc~%Q)=XG+<%^bzhU%J%wCtMb<|&qS zz%4u}O^5MKy%M%@HA1|o*N`cH{^Vy}t3>sZVSO>hDn$`!v~VCZ7j~m?AT>FJsx@%8 ztE-l)8nR{1S}qookrydeGM%C_Yl0Sm7O6$TvQofN)hDIc3RWs5CzMNA)RKS7^TyT0 z{oTLkP{82v08br@!-}d0#6BgD;WQZ)+7~P_6!yR zRkrR-FLwj>m9 zsMKUyvccdkIJYG($N3WPh(@u=IKeZX(-vrVro-!QEe2q8nr zLZWm-ShM3*AJblg6Duv9Y{P3l^;neJNg?By+_5|!3KJLHVp=Zw3{ z2H$w{`GTuTx4hYkj`P;7Lttv}H?C>>gag@d>xaN|es#@u8Et;w2kii<+Y7t%d`k46 zj>I(Rhbsn$FJk1(zRG=Z1nGXQKz$wo_@`h3uC*ud$N!v$@o0KomT?)=l=}?~u*N9; z7Ls?{m5Dn@iZ>7kydcRK_@m{0opR=Ny?CpNjo!}38^1_QA14gv6@TnkavcTd?Kh48 za$dQET7BUGxN=>2uH$-amn=7=9e)e+WYilwOe4H)diz{kw73q9w>JsL#GCrze_b&Q z(bwvKQCPM)4K?L2;NbaIk?lR{m;KU`=JXZMKRsyhf-S@Ne!d@M7f@Yke>~K&bT{|( zLCe}FA#&npgI)$WCY|7XmXzn(o3!1koyv-TWjem-z`gSS2vp!cx@>9odF_in(aign zcK)5szr<#Dm2b({W3o5;`D)rXvia*L^d0Wv_G=-gaY7(^K#O_82YpmUm77rRG1}qI zl^NGa5UvST^N_ZP(l0~$lBIw_>1&_J8?fKq;q^!wz-p^(IBHGk@N&(mBO*H2!eWUQ zR7!JKPl*&FGO<*zNUHUvf)&uf(Q<~-5l2-1)hP^(Z-NkirP4F@C9GiYdlItgBFO(7Y#idmQylPckeTFmrl3u`84`A!{`G8eRfEoODymq3yTFNfP( ztY?176g0&h@}Oj!fwTmbnEanMv9{YX%9n^%x#KX^sI=*Whzi%wj7>*o zBqhnWqH~_~g~_jB_FzR86Z`=2NWo(W)aZRBUHHR}c*Bmln*rWy=VIW(*Yn;Q{ec|< z1=}e&C)5-i4t;mxtB#jV65nn!cy^350nMXuVP!2pw70je!a}c- zPY|D1pwb-ommLah;3e{WAsFLwO$`C6BnV6#Y|wKd_t3s#oVxv(U`O|utz+YlE2%>^LugTiY`K@X>g*y+}BfH3^bwwmS?VDw(c&VGD)bKYDXzH7k5 z?@_Ywi!wpfVQEvkhJOpp;k-LoZa6owXtEk&8iwr znBzUao0R;O%9CZ+b|U><+v)JJ`)ryk)z_^fjIZ?5-)EnDsYZ{7Dmu=(^DBAT`Bc@w zW*;9g*L;0WP&qtf8B1a}%Xoiv-iHa+#EkVJxx`%ryo_WHqor4uHD3e zRn*!FqMg;-(j*QYIExc9kcmQzmJUYB8$!+8CxR1s1s~iZx5qO0_$?Sj%9DzCMi}{- zzkLB%C2E$OfL~bi`Wv`g!pjoQbTXQ!6xJ)6rw|t8fu}sy%ijh;h~9-y-zw@>0d!#y zX`12`=o8}9KG;C7;#4OlbDKnEqb70L)OS*J)NiaKlj!7y|EwmJ{;(AL#?dTRF zX0&!uZ5b`|VA(4A8(u_G_&LOz;(_1L1!&?>(A2%!RS6!-hDgAnk=6_xNJ(>{C6H5x)+Cl;i&aoJRJi>X7RH1S zJ28nNo_3DmFqIN6kZEv(vVrxQOrlaHlM-rHB9?*|DRO=Fm1{noMIbF)A-(qHRoI!# zillcgWz3eDyDt(PJP$A?7&GNs1n6${4wd<{UbUK${JJ}qbT1=BCU>k4#=_YfuQh+rZMaWnkr zf;P{bF>^ZS&3@{w?}P4RgzJ4AYI^VLdq<)fW%hWEJKu=S_w7jL>HVcFhy4h^S~UHW zUwCxwJAvX?Y}`q{2H_w<-V1RVfiugo&uu>)bk_T@6y;6PgNd%=M+so5B_&C)CrjZ^ ziU!_`%CBxm>aUM0xaR>^Oul_TH~dPcnO(}C3y4=oRr|k~O?C|$-`ke?PEapP89fN# zXwZSx-H+1&tC*38{tSG<)7xC5!!<7~jGMkwCYNIOfBqV5O>xO6?BBEM^Skbw65Jhs zx!GLgO`0r)+Gr1Sv^8EShnmBv*G&)C6tsYIsD485mMMoVa)I(VeW`itj z7z@e+JyVTsI%3njW~kRtk7gEmrFGjN2*W-SP(&4lLYKnbj}zPi(XxP*XapCVC|JSF zB4in>hOL~olSZW?4E>uaqD>S_O!0>3AyFt|giRb`g{7p9Ado>4R;rxs1C2x>;Q(?w zS9Y29mS@0v??sMAPu2HAUZ(-BULrYcW^DMjE#kY zjjsCegq`D*A%D6dc~|q%@?EAU4_? zU!m5lJ?|v-Mp0@ZXBH7?nbsVW>H<2*V{xg-DX7CwPkodyP^(O24dVtfi0%HhY&!Zx znu5gzXe&=5TI4>(Ul@_4o0mdJ$_PGtvs}H~MhKts8|?O^43Y51;3;4z8>A zL%cT2A%{PhG5|iQvUQ`vMRHi5_AY{MLc=OC>O3O&h{ALxXeDX6k3?v2(A=?}yeirD6ovF}}Ixoe@V8i)u&# z2Q|$ghbEdPz9wb_HzJ}ME3+Xl37gSKIf}H~k%CX^N!BFGMIk!akAoxjE6dR0aaAd$ zlgX^c*x%nj&NT*KF5f7k8+{_%5^0URX`a?bFz-OAdWx*2 ztXu(smQkV%H>0gw@r*?pX+mg%?)cY8Q8cg*Hnf%uI`YRN4K>s-uWRR?yU)fyuL=0T zwS7q*0x2?)bw4lOGXAU=_}uOx)?aIkoZGiut#{syAl4n|SzH&mzh9u{Qhg4)Rh8P_ z+&mEs{#c&gkNV=xdWn5@M<$rX*&carq0nD2w6w&UP7a1DqYli54LMZJza7{)y$Nhl zMlqpNmWtt^Qm}KlSXj<$${9=lWQG(({5r?Yei&uEeHzXk`GhOme*qQCO}s}*uc8E}NyzPs*6QaO@j%wNwHeMKLulF`K-!k|{N!?KbIDvv^g6o5w73{h3NFbO)O zwE4H8f;SBD-zomH9*_G!;xPZEw*RfXL0kVl{eM2&0@nZ0=l_0mdoKPZmw){{bv5Pi z?%hU7Nx6B>^)G?F!(d@!J0|Y{o22`xK<)lN|CenMNc+Ei#l!r`^B)NVTY_u*@1Pv< zj;DVem-hUtx8tW_Z8$JN_{{B}xI>nZ3P<&_c1Xmz-LAk^{~5>B&i=w9qO!t6;FxcO z6W*~qKD2dpqI6)hBz65#`%?zBI3^Y?QlBxrBy|fwz#+>vh@FTm@G2OIik*s1bxZ^{ zFa?Ded=A{HPF0+gxnc%^~X6%?@&8lV(X_8`LslWtS zY7br7y7)K$Z51j;B6!~7TNt0v6as0OVpWwVunjKYlwZ1lp4Qhhtc;~OBsmEG` z>CLS9saGWbKgaI^<5G4GKq5_fzEFpaKSz!#AHR#XhNXr(e?|G&f6cOpC4V`OF4FlN zW^w*J)>3%o6Z2;+BYgROS&cuinCB%x`dL(o;CH(S$MqO9&0_LdpzC`9w07P=s=Cg` zJ5O>fl0N2wFH>>$$`O4++`C@Intp8c3gCZEPkgMXg`T-gXqW;KPF5)(7C5MaB1rT0B$ji^LeS_}!CYMK;Y#7BS# z-nTf#kbVhgj!f(<$S=t#rgX%4j!i^TDw7O671lFJ8K0o<2%_V>1+J70NDorGS*9F+ z(&DusaY~jGVohppe8*83HGL$vfA58V%S#DOt4gEhvrQUf($_PrGGphC+?Q0wrR~8M zhC@|Ru4>#_;TUcdaP=mt6q1CZQo7N&=f>ei4tK;cLt@^9Y$z(o{`}x123TCh&Wk1{&ymDB3FGl`cxLTrtm%8i+$kE1m}S!_m~viR{uk#`zH44W~M!S zwWWH})CQ$8jPq};!5Bkh8MDchEm)%Sm);YT%@z4X&2vaBu`no2lp@EWx4|di{rVX9 zB|5Du8(7qH;DI~winV^%uiLM`73=Czv(=t&O*4sQCjsDz?ah!qJTn4a%`UJ<`{OG+ z*x0FZr90c{yazYZb&f zQ?*cQW2pC)L3AB<<+8naR1&=oB{J60MZJL1u@FHf+QK~TRU8k+N;hqE${AtKg|gqYqF&pq@CKqyPSez z=*9{p9|1r-=2j7`__hTK0W2CRsTy&+fAh(qn0?h`st_MKaX~yRK`hPtvO9i&(75-W zM&C80Kyz12ZEkdNquUAJ*-cl_kS?}fX>Jtgh;xq~45$ya%FWrcTe-3fnNJleMPlVJ zM|bYzYPxlaG}^1EV<^!zOc2r- ze^v_zOn(5|ByHD*}S@{?w~ofeu*@Zpcr#~8IqqQ`90DYB`j|OK|!scq>q9T zvWK)WG8HvQJs*LO?u>SEl|d_Vt#ZkB_CPISK{A0*v;5M=K+C{h^3C;{TzQ-D>KV%S z*qswR#(S)7UU@}AVKi)`>c9mEWo(KTThia5RXSa9yQ_^S3bKlM?3k$!6*2OZeME(@ z^(Z4u6p!e0h%hOFxJ*k#$dU@g$XIkzwGz3MwbB! z+gO4(ODfa*&&z}%)Y`gkN29u~{TJ)4fU`h{opop!5(oo5>g&JzXR->zdT zx2I3iHhTvR+TzwSYj2kJr!2liFr44q9g4tz$LeuDKKDOwc&0VBr-ABtf5!~ix-p!^;;6`TiP@{9o=7*1~&h>q7hQ#*Bd%qF8?7V-f-?ut_`1>ZFyb+8Qyj=`rb^sny-atJJ2Q@f%pBq;b z4&!-_s%dLH=a_jHA0M%|`mzuW#(ouI*&fdn{dwJRN8vYr>1NlP@_t%>ejKQw16<0Q zhkQPEBRu(MwRS(CedmAl;LvqP{{VQvY20(c%sxFv!0J(7K5&Ejq4?U&Ro8D?i}asm)qf-yJMQ@q26RW9Ic`P!llO%%l$y0j<2$ znPhmoiq5cQwK>LrexVmIvK-c{$P5~);#%;PVq+6tq}6J)#&mB{`yRF zSfG}bNMg}HBz1Jv4yRwSYLu2EIs9XO#Yp4e;2SSn#fn)klOJcFVv%r(wumYIl0$a> z$QzKf1A&$;YstaLhE>xW{9nlLfYcRF>HE!oP~uU4#Hg8tTf-~o4{#Zk2`s_7t@ zi@XqC;SrR-MufqolL=E)gplMnv~tfp#%AI1ibX+NuIkId-+ zMW-v+;P)*yG@1!jr{aosXvzOd^-~QF-|;4CMoIE1=5;+b5`KE!IU~R3*`cF?V&m zfU9=vmp2F7V~9{Ln8>!iLex`AEy_%DHpc)iQeT*AX&$qfk!_1Si0r9^6oxDe+eako znbgGN!FNhG9BrJ^?4cw}M5k2%(+{Hei^^aw*LFWV3E_+bRW!-f<_9ZVb?@_#UCfka zo&6-m5kvO)5`sp+%qLdDo8u0c#{l=K;)@oK&0P=a_Hu_T4okUK_Tpi zd|I1&iKI%(Ez}RBI`C8+0>}d1swHqG$;9tln6inayo3s{O^a060aVB=WY_SX-<8Nl zS)#A7Un42t!KHpzsDd>B1HQbsY+^bi^Wdatr6WlCAyZyE!zo=DC78-?>qu%$RzU_8 z2~V#fixKvXBAT&(-Ie#WMKjVQ$rHyU454Y+Q`iS$jd*j2X%U2BrLlLE@^2FQh*A|Y z$|MDdtXiQ@5t5F`9E*hJE{b?Vm&nBmlmaC((7_!A=T1-;X^SuTm5PLyqy$+!5St(q zBqq;`q49!eZ|FTW$n*cxvPaLS1oLZptTq+ zjy5tpB!|ppDHRD)ts%(CrKvGJfX)K%I`*Y^_ZNh^Y?H^8*f1Z%3MAI15wixc7#oOv z$1YeL*9W(J`+@f7O@JPVrept0=i3P2cp$oV7eW~>;W}qE4OXB+@?z`)RWd`~!2#goDQb?kNk0PXaZi zhWGm-&Cl68F4G%ItFLG4xR;${&WnaayvKJTx6dgDpxWJfgxqpJX+A%E2{77{NppHR z4Cg)JKbwEt+1JP!1bp5>dG01fL*6mFTYNsI)*i|^_`o^ipxb|~i79mC;SU4GmdOwl z;+oTXCn884c&7Kv+iYX=F242A^lfsz9vtgg;Kp1_uz;>=`Bag<#PniX#p4gGs*mzIG94+aNhH(U}NBSIy>= zB~sQsgBOSaS;#Sn`1V+aVMCjPabe7~W-bn!c;t$a(5mf%t6J+latlY`-kApMvjjuc zzzPzLVkL2C7IAW!!Hr@j;dlW&}5sOj@X1b9L6&`_H|oq?U~uSt0 zY7VrO44P;^HG7*9BlHbOi}Sawl8zvnXN_Ex%xo{gWS2~i`5uKcgM5zhncD|6Wwfk$ zw~Of5h5ja*`SJq9?aHHWNguJWd-ssRQS@N9o$Ivqovs)mO_@4-f6P#5kh;Xo}!N|ZH@e}}sXw;;x_4Lz0Zo27tZcU$*G{va{D`gkhY zoLz8V54|*vKCRM9$)c!`Cp2GQlM^*@U3x#@e^10gwOK-q`!14Mw3pDChoo*2)mf}v z+u#>mGFx6h3yTwrb0MFsT^%(G1e!=o#M6FB)02(LsGcX6@Hv5ZPg*?*YWM%D=8_hy zTqK7_zfcdCW-s2BD_;+?Ut8#QdGPdvI}$~^y9hUjuOjY zOjykeTt}xm&gHET&MT;64qv>_r5NYW+xLYj)?tdK*Fz)C#eHo<%qb~rR3*J&#&Ftm z_?11W(3$LpZ1==-SVqg^*(BHa_Pj!4ZI+Ev^P62+pQDO5#l(m`lTbv7wUU%7G$fO= z3wF7s7z_AWL=(wWaYUf?kW_Kg^`jn)Q#d@7LKxW#mB`5?7Q&&$;xN@CePz^z{|Xfd z!HDR`5r-7eNhnDhPVm0>^jk;YmP+Ry?uZw0;B4PfHH$~}BJfg^izyMMhR>4gBN>h3 zsYX!3O7HKF22~}5;57IN zM-Adc-}5ezrphYsLV7$k`ZzK)~UFk__&xrAmSlS7*60dWO1 zoZf8ENCvd+YDot)UBF^(erhsX5AmqoVe7uFwz;+Hpl!J`C{l}YmpAaJlqoZGAIg=b4F62=3f1JFx zAC9xf_&fCaNekYdhg_@lIxvXAg;e)H@;Y->%3if`uRMlqPU20vdBenQ(5#~U3i9qS zf3s&cj7TMg@G_1x!1o(o7+|Rh1uU5(ZIE22m?MmBUtf~AIU zSA~Yew%i8tPm#gD3t>B>1;6=1xbtM7DHFm zVZ}77XgyZAhH0CW>DLCcheIMklh?Z`npeb%QU}g}9eM`GyQ|m`c$y+quv?l$?m^qo zb6nq$VO2t>6wCxM)tQ!%-_vW=-0;d&&<9d7L-tXD!>4A(vy(R$aHELmRvO3l!ud9F zsN%YkDH382-k}%VCQ2(~V3!1H%OxIV4k^Z(^H^9?nV*Tq4_OAwJ0w{b4IP+95kekV zWzAu&Rbwm`MDR{Sov~NvD@TrS^A%DNjXJ+e!*{_8V3{`1K^7sD5P)Nf)hD_>EkOiJ~SPwa_2U zD_c2G>0z4V2+HAO4vfyA~}3S;5gE4fK5IMbd* ze<1_=VPzpcLqN5mzIw%~bhz}Fc~i~G90L|E?8*jxItQfAEBSmW9K~Fc5}lN`;yCNt z1p!M!(~yp8qp3H=kBbtI0vyu_U#Uz}DhEY=x-OxgT9Q&bI#u`OYM{u-Sg{2`)Nt_V zwu#0eh0AN=R_KGj_^m)cnqrms3mmX>`LY5~c)Y($ACHtnS|JwVkenI!(dZ{CPJO?T z4b0#OV}aa#Q?yPYG?I=T6v;@cn$d(0oti;Apdf7pU0Ws#EyU4&4K2hFF68?iIJmQ` zBWFZTA~zZv;1}0otO%MP?D?$H>+nB#d(W_@ znzmgSL_q`rL7Fs?CcR1#2qL`;D7{xH0YdK)5D@9TgAGu6(a?JdJ>uAcj{I4fH8X40HFM2*p4ZIWS9n}-yVLEUA{lWPAk3WjJUN~0RbcfT znf{HWxfj4Ln@r2svyY$hf4eL8qKABn?xqe|7v&8$?Yzi0viNi%3GslgA=~d*qC0Q( zO~7(X#d7LLBC&~}4Sm!s#gqfj8yiL)3n&#f@ z2=jB?t!4u8;}kWTtN;O5fG1N{ZAD;K^J{?59#$A4Le`wHAP)GMq@r6TcNEidaiobc zf5!s2@%b#AKCF-k#Q%}VP~?nVuuAz6-)NHd{;~m zf=GrIesfHPb)LHnLGvZUPSdq%;6WX!`-b6u!Ep`UMVkbs57!liv%j#2o?Sg_BD;0H zLQPt^dvQ$5@J)ITQS^V-Q|L%9e2oc_Q>MChz%CIC>PQBNcC|OA1l-A?^B%9))(fi--+ZvKg z&fFo>0c5RDhEZ9|5(?bvF)AI=%>+ib={TZ(b-pbWT7Ukn{nKsEdv*se9>vHilUj@D z+`4ZYa-Y#QlO_ClHoepR*$i3lK(5|&)raBF{iw=#RcVht$#cqyacZmn>{F9sn-SGs z3V4qt3~%Ir$tQnhRUNEaU{;_kBxTs%`6>1j`AvguVV#Q5LmJ@A$3k*Xj(&+qPB+0K zys~>G85&fm=l83;+;8-U4jDrUY(HTIv+iF~?eW{59J)<)nzNc!!IZf+_aA*3l>BaF z`u6^PzmS(nQr!3x_Y@><7sfIV5H)?Xe#a%Kp!dRI{Nwn`hzH8R+fGjcd4yu_DO%e; zGrVu`u`u*a`vYB;`+A7`%0D@8z0cBoeDF0pCGPZVbW-_&gR-2~nI{LDDj!J!8PwmoKPx;C7CW-m5q6%2JYZWTWM@RP>$6HV#c zmbxlOlUwqJPa0TP=~>4-yB#}e`sHVef6ns`kT<<7PbmZ7xu-3DYNL7<> zft0oHID(YZQn9iyeAjv)=kO3{GY?Q%VA(&**b(V#oNw1j2qrBHRL`=IV#+QE6NTLi zev|8unt@6m#C%J#iB(|!`B3UZn^E|WTU4Y@LRphaNrIMvo|6i`%(iK5<4-ISX{4tk zNATDEXv(w~KJ1wI13FR+mMN4qqO{oVuN8dK(_Sn1qIak)tX8m+Xe)j6UMnlbhB9A@ zSLKFEqQh)nTME@j>~E7$-GR*U=O@+<1CgIVL*mdhG6Rdi8+OmI(- zX1vzE&H2KetXHPmtb#`k5))rzxyyCQb}q^>lJwqwGd@h#PwM4eY@?$rc>ZiFAdCRrD?3vs%4YkKfbGlkl`BS7Ki|9# zBmrpzQKwq~_uGee2nqzW?_-0MVjxxLmX#>H-L6T{Y%__18Mz{^?Z>E<_N;}+B#)0| zXS^~=Rf{zw9#7P6B)aQWHJ=8Oa^EpcIjlWbrGEWKv?Z#`T`ahZ49fOlyueLs+9n2^#I<$@&E3$2oSz58uVil{ zK;7WHp=-r!f~TW7+**Dd1FcB1P9oBkPehv5BL=%5TsV^>q=QCI@HFAO)b_}(?adIS z3aop4G-~#oOerkM3HY;NE*OjIqY!uV2Fp_dt+>~gLR56imPX7wkL&#WY&2G0eh4A* z%#~Ss1J96UQ#MOc#&t;hoWiOheBH*Oq0=G$NNw~RS456L9OtoYNp$GL7<{Kp6poWf z|8YA>@K`$w>8d+F?jM=@w|ET(eC&A`?YcAG8G!FY+O;I3_1cvA%fCeJ8!ms#*;uib zf_47>za{PeNsIn38u^wOT6!)yIoajxFIgLXGbSdcPQ{HL>PJ-VW zTJ{@HYj_N+->xqjZMi$y1DaRbHF64z?%e}k^P@jV5sA)*8(MGh{;gix9md$)({{{;kE-kV^p< zvl=n!$!WQLa%GG-KSoS1e%@kQWb9w3?^eEj^VZOtBLu!d&vB1S39=zAMyL& zdJaD^@C+;*kcjdJ-op6x2|4QENa*Lf-yCRlt-Fp+*PS_7Et0}VAomYQ14DJqke{Ft zi6+%Mw-=6zecUgo`R$QavtwqFVc5;ja=xE<2Dg;qz0qNzM^+u57q!mOy&-VL+=22- zXKVP8`0gBcNarn|o{YnZF!;>KzG{stg`w~^6bL_hyZQ*<7+Yko0XTR0HDFP+xd z-)s=vrxJ6X6fh|@=!9MjYkEB*AY(T1<)))$ECoqkpM6W?`-ytlhlXeGsSjX{#CKiz zO6Pk6T8@Yq`3P_Wc#GYKozB)O4JmQ<%v+;AxA@A?eaF42wlP&3Z#hv|Mt_=0;I}PH zbe_*tYCCEmI#>HXy==bUAk(4{wsP6&Q^8$)RUNX;Xm4g1N zJHT*;>8+>gWz#+-4DmHLqAp;<$PBq2ISmdDqjZ8Bv?b#fwfgg;9b{3oSNS`I?ZQDA zIl9`TJpM%}e_`m1e?d=ctG||+sPM*c6o=l0RG={)?5s8(A1l%l?Qw~%gEtOZ<)I=o9Q zWxJ^5()5$h&^-Z#z0+Z5Xjj8iBh#=<;eEK$TA6=!h<66Xc;uNj`9?Kg8v96Fs%uRl z2PWq(*aDW4*v?9~U4ur^@H|U;((?1rpyieBvkp4fnn|O^qcqrbcQiG;#09-6jNWP1 zT?{z&*{>S**zSV`Sh`*u*`9r1Q`@0ixFUoLZ_vU%{+K+2Cwp5}HwJOnUM~vonqPMh z?39&2cO&w_1L$@16&!peBj&o_y4gTF^E+qQ+|e2WwF&Wo`BXr#JMcr8F0PTaNDQoC zV28;3+`Z8X)m72lN>?G(#~65!z0ur&`nDA|FV`+YU_?$dWR6Wvu>L_fHS z0N3{}h*U@{ajG~{OPBCcy_HV9Oi3!60i4?G< z!KUj556pCZqt`k=J{Y5LOlTd{&;oT?%^Y4gB`vG^Q_(Hc__&KpW3Z#oRTuABWZ8}b zQaE8|K+`{2`otDG{iLisK+f~GV?r37(%IL={x4anu(|KJFed@mp5B-7uwZ^a37o~c z%h{rxtBs@W7sVZ=4xewfKjaQ-vs5z#O^<%tmkyz=a-$UsMo~5NxSh=C zyPa_77w+3$p^c#8RSv7dG1m7uS~kHKT{DQo71IT%EtApkvAGw$tK`~6AOch4g8+%9 zVVI!i$e>~87|Wh%+G<^u2jo4I{I)8p+777+?;jcccwOPj#Z{2<(uk9?fYP>4^UQX~ zTEK45aU;iL5xE~P949#VUZ*)f9_kkZGDn`(r+I*fz48Ot!7qO`&{6UHERqJ-d}(f+ zsrTT3 zMuFL?BkOoqF{L^`+EzIo1C->I7;-m>?-2HYoav#Qhv=2^rrf8x_yT@CJfYz8h-ep@ zj?=r|!q-vX0*zThGU-PB-1{d|uw3h#jIEKPuZ#5D!lw@-d83b(Eup+6G+C1JnfMbk$bdZWVKOY;kQ@|>{ms@UK;?`el@IjxZz0(H?zVcRXpg6Q>34+DTGH-Z3jB) zm3OHzln5S7#eOe+Ep!ZJF!43RyPT2;?zwnj#MLZg5YFE~zJKccY+gVNEdi>e=Xk+a zcs-;GNjjfs=DnSrd_T%XtnanD|Oi!rg>)K;lz20iffJgE(ZLgU}VmDL!>B|Nz zYC~4vtlkF^-|fe9=~oJ09nxeQD5)TR_wHTq=BurJH?ZWgAizAco?a3I6)8h_Y~=ZLKjOGsXuZ@7WFs zcNS~nw5NQEZa}#ws;FRi!hxCRad0FHno!w>G_KRM0O` zQCBDS+7ekqPZb@uUOjcw%HN9#_7T+-+!Bx!PW8->zw^UUdwAD!;|k`nC~R(J=&&=J z{=E74DM&l@F(AN>he#A?Kc8eM1@Ko5f$EN*z1JBK^WWQ)sr`6+KRCZ`>o?qUX z6#*H?ocpsljY;jOt1gG^uSD^fCmL_37s;Nge&?s|B4~BCT?pYp&;5wkuJNG?xMF~n z!4euiN(rrMLBd}y6?jj$<$jp6j87MVGZ#OnxmVbkt|lh@E4|qO63?)yl<#^tOqzY} zU`|EI8R@$>B`u#`q8y*K+-;U;F1s!%S~gVQPSV+8FwhY;v!kYA-#Z?jBW7v1l!nyx zZN0C%QTk>1eDUJR{1O`D)PJQf@^DtfAT6PN?MAw-)$;vDJ~c2g8fCB`S8AO2%oBC| z?Vh0`-bbvZcfY zWm_4_!0XCdY5}7&D7<2+Ct5LVGF-{pX`cpWYh(^`|^x?eDU&SB_9Yu&SS` z>ibU|j~*S7Qq$6Yd-(e{yT5Avp9JrE9X=TM|0~lJx9GoaK3=B!FL^&w{kvrJJR!2- zmT=u!bzE0Z558G$gBesTTJ&+lQH7^CZ{mdqqDJgV$xnAWs=#N?&OFIrWBuawKlM9e z(x?+o7W2@B#u0--eEdO&cxvf$5d;uWB5RbuPabNun_q7X_JMbe_661{rD>+q(hD4#aW)PQ#>ItoDTbDI^( z&}ah7@oK~|5Z*VnvNjfUvtY8awysCUy5881%HfinyzZ^M*O}4mFNtHE7AyyY0B-<~ zEeLvJ;?xzg=5Zax5*S5wwX z-md)ScWBCE+K`eSX+lC%Y%2jw3lfWSB9Q6iU6mO`wK*^&PXX~0+@e;9;Avep2x+vt zOpJf|u*>jd450?~kh85oDG4${L5%39|Ea`KZ}g%xbmJY)G}s)KAhYMp`{j zFq)q|xKlxlcq8v#km1GV%a+^=PGPYx!sq2BoXL$Yo-ga$yhERdg6Qd>An}Yk>hu!g zSD!!MCLv)L7thc$-M88tRWKQ=HnYgZx}Rdh3pILm^|sx(4|eOlEWBw{41B9e5QNnR zwvu9nsviQw`(IV=@{lL%QcC?XI<`5E$uGOubJe%J?V1E~ycx>Za$$DW-t$IwL4c@| zr`@2%ftq^z9oF)wGNqZX_$N%`QTYqLA?DtZZn_oTIrD|oyq`%9Pcov$ThH-lpOosY z0pMp%v4yrxQX;SKtF2H>x7ss&F5lOTBoV9Hv?z4cMY{t7&Wiq94}d2;#}wn2wm7+K zvpBpS6M**kRQzLol<2`@-#$F>&V$i$4{|js?oHQ74J{5a8X`RcvRMoIZjk}{){W=?mq(tjqrvogw^&Yy27LY zpBTI&$mcqL9wWIt-pu`L>Ppk9oUz@hv%(5l>{{p2mb|tWU=XnG&+E4|Lf`=Qjxp+M z6^epX0SN}GD}i)SNEHJC6w-I-+Y1QHh#4dn8WryC?`M^ShfO7GK%kN9$4eHW)|MGA z>YccqT_SDmx35LqDj6zyiSlj3tSu$+#i{sw1R`)=7Sl0{?vAu_QNpcGr!#5*K^04G}wb z1bosFhBr{HQ!9Mb0H@71jn-dy&@ooKAQ!u>ba<4IXOPFr*t~4Fu|sItandJJLf$^> zw+}i#sIC9B*gbguT9lyyV%@j1*jEi~>y9OD?y4-Ay@4;Ohw17K$Y%vSp?GufH9`vA zf9&aO6#e9QVLffxb@Y=0LmGcPM>)p2N$QKz!^Fqx`;pM&rBrGL=}5W5n7VQq>mB^2 zs|y3GM;+rvXbFcW78Y>PXG=x47jDjxIXTW!jQosRB#iL{6;ol*)o#S;(&1$#4^tYf zqZ;VeCZO?LE|idnh^?baaNdP}pu>}3d77&H!$aqM>dy6^GrxAvWdi_x=S_G=PnR1H z545eT!zm2@z3)u?Ek4~BTi?gVJsSRn)X>8uzv;-SbPew~jRc}506{Gg50QzBn=|;+ z&KhLrb6*8*hJx5#JUTa8i@Ld+_3G;SWG?9;mJOgrb>gw`0g*~)0;qSJ$PMXk0d@8C zDEN90!y3EzW13pHg0k}M_IBBuw{9)FH-hR-XyQJ1{c)aaFWKixf>9}6w2X|50Z2jY zKDU`iUNmRZz&SSr=G>($9$gDr&P2*s$}JB2>SJ50at5E zt%Lo802r-`Da^c6&K#`;!Pq*x_;iPRTmEnohb0nrGK;=@mHZOg1JMAhbar_=(-Y@N zMYZ5gL&6=-!B!8%A>qJ`j0n;Jq1%M+%S(@@fe3b}XyIlD&|lD$oezEkkGQiPbi@ct zq_vY2!}Ym_dpoOx@kt5^0sLvVmfA&#>4`DKViB!54l6<$>gmx-A0A@61-5DL-KUpN zxca4)4p(@wS6V-?-k)phBS0)2p#6Jt5%QoA~uOGz_H@TvF~+^?lnE$Jw9~=MNHM6^Bn%;IqUi{wV%hkkdzuhu0}1=LEM9 zPsk3WdviA551ROy_02QpSE#|Cd((rS37`d9LSHks$D(8A-3OsOlXTc zk5M?WhQB%4`))~4*g=Pk z7)rEfQ5htzC{VbJDTgFpF^6q>uX@*C3on*Jd`(y}cPp_JBMT z9>n_5d!2m=eQHw3o#0Dnw+B#XoBZSN3oOMoTZ+P?uEVAwxmPzq{4+BWzV7b5y@Oq= zhY7j448GNMU_~09frpQK+m2+F->GQEX($WW*j?Nv5$zp3A-nIKkhW;N z++lx=445snJg0C@|Lw@IN5b4D;+A{uMuu&p(0QfS#lKJlcAkI7b8X)W4hgrNnNB0k zw_Tl115aM`?s)9MnzTrL1OyMj=}%e3Gk#VI%<<{(Q8dJ(giVW%rx~E_!@F4*Ola@5 zqU3;pMvUZ+5|}X)<=r@cli(^pIQXrDc#Z9?zheQmuKsG!e*=qlk$JX1ZT#OM8FH6D zlf!%WB)n8nK6Sb}I`^fqGbV6dZ?Ez#S?q8kGNSu8j?u)M*Wvp==k&h=PXCF3{*A8w zuVB)DCc4Kq_g9_%jivrc^zNV6`_DxGMsxp}=--w42lD-s=%3efH>%UJv(1M^+8Vz9 z17@zB>P-0NTxxGHKjIj|>PDPH@69Tx;SfsM-)(#`C8&}7;lsmQ&*e2;csO_8gY~PM zU-uZyLV#*;2(bRR8+IYNF-2PBV*O%D%>fQ!5!Q1dXiH9P`-L0yYqX4sXcdW3P_jDS zhE@pL?L>a@-)%hx0_A%ZEMj z0$2;^(&v{}o}b+xy$baYsW$v}I5&nQnJl!&A)Ej3B+Rur>$Z~&Q_CS$39^u!VJuIK zBle?F<_Ge0nZ!~#W7H3A!=VX!P_I!u7hr zlL%)@=KPM&*=xeKqy5FTJq{V14+|F{&nU_K6b7e^iy?X}!Yd1AG?FZU;y+_Uk*TE;{jb=GI5j<_}wF zDT=Oth9Q3R!F0u{u_rAw*0(M`Ok-uZ@xiJ&jkuwVRGWU~Ga-dR6?dkihQ9!)52)0?M9>T%yFm|KX+qp1N=?^p@ zL}o6#ZFwt_`o{#B@#ngNW44XNZag?Vu@-ZO{zCfhwrG!|mw;AIintaQ7BpzDMv{Oy zrOU2ckO|1KtvdaaH%J7`deCXi4>U&AJ1`^*& z&6){WSVKD@@d9HS(F6FxnCkX=TY3^EK#Z+d(NyYuozIe7=@puV${frI+?LlZ7?$vi zacWPgpweOg#GZ@Zw{lD+V%h#Vxf;*nz|iRmPHARj>NL-Mjy+-`86J#^JlYJPhO~xuar9cb=6x!y!(Le@nWf=+}@t#TMfEktC0x0U*0Zdx@KUuD0t@m$iX!R z9)rYRm}eGioy3E@V6Xh(2M&K42OTzi9smTo-l>SGi+}aaL4GRgbHH&ic8yFpuQ7y7 zr;Jh`64$<}vNj?Kt>k7w)WImSCMy#6G0(qFR6fPwgr6ntPIG9txN!zRDkV80mzKE3 zzdi696w+7r8+M&Z+8BCp&#s|rm)MMMBpw2UlT-T;#>WOlvvE&VJ_+WALw46HZI`hV z74yE<)12=C!U5GagoNK@KhLJd8=Ez|SQ9_AMfj7GG5`wwUdEQYIfn_F-mE94hjtjp zaEzxH{>vVgM>H;eA(%1`c9f}Fk-kffTS{h~dH&gJ^wJaN|FQzw_JK&P_$Byh04If6 z{&qzy3lRM1@bIt;3azo$e}wSfRN8(@siI-j(R*diG1Q+;c4biOpx**yWJhaZFt1$h z%Vk*R$zOCROn%iWs}yi|_pW*hSe_Ohn8vQfVL#mHBAv+wWoSg(9UOkzeVZk3Nf}D}s6pZ+~%EBdxWqEzr zu7jiEMeXxUinPW$U8lST;6s`6oE|y;sg-)T@l7oKf@Tg5ZoDI1UY~O`323?Yq>AK; zcGPG*oMw;~JPz7;F?tkESTX&sYF`@mGh6BC@*P_JPQ`FHhI-&EmB^q`n($3F6NA=| z1A$N3K7~PLu#8$K-mt5?U+gR5=w}<=&m5=e78oj7l_*quy53ne^H1Gzx^e?W+R5t` zEBK{HkB1HTE`>l}n{h;x>;I5$2Z?N~Bh77o4YBwE<-rRTa|sL0jZ0sgSGW1?l2?wk z%Rtm-0jG@pnXQjQ~r-Gscxb?*)Ul2 zB+k#hS+j9s(y?Ba-~Q`}=^)-;)el5@a{o~GmDz7wK%-7l-0w*kUIwWA%fl75x4K9C z1*ou5ZN~DNY5x!#|M3jCzZf{f*#!j?zkYqJKE@-^_fwo@i}aDseH4QW_MPn4 zh>?jzme`poF&-T9O81e@C)Q2~kht@)(DLM;l-MT8SFJlXCyRcU;<8VrG9pwC^UD-2;Y;qWAt}S2RhB@_Yydsb0^XBGmcfqE|=yYLrz~A8~Rk*}|kzmguVqaysyFF-g`p~^_@G>{$yXV=S0h90BOC#gaCsWOv zKMX3Y3%V88l?#5EUs?9jtYOt?_Q$qzqj&DP`vqhSQo(}S{*}?3|3nSpuGPx@da;E_ zSbtxf7s!JtSq`5PbX|~gc|BG)j&SFKfEvuOX7=grmAH~!p6bz4chh^?f?3$l_lSk% zo5>F<{Y5}%Hhh8&)cxGM$R-iwMuFGpy*}HR$Hpw39TRpa<-3|{5Tzp6V7@!+ZCF>udEP>vI|`zS}ya7NSS>a@~#c6s1Oax@1Fsyi7qHiTF+Wkz}*cD*Utob@6*jI36c ztPEqVNKg3r!lY2v?r7sVGEv4Gu0Loo{mbXq(;dIyoYQ+#UiTiyG7DRW9j)}Iw@0uZjl*}ma^UUDE}`qYG|sMRM*~#Gr1UAeTszP*Z4P% znyHWU(EI+e^~Nd?6Pd-y9!lz5TJ$e<3T$&?eABh`g>9MtM@_ zNJE!Asxtc{6eE2q>*DUf%f>q&?GQn3DER)}LG{aT6B&v8EwKGo%&_UaRdkH? zY{==H|7O8S^D!-iNxXNIiG56hFK&6Y#R~Q58??Lbz}J>(D(#rb17ud@k;Ca?j!RIP zdEQI2Q8q8D)A3+$Ya)!>Ki)=5agy`vb~0U&W?(R&#c!3c1-`RVR?%Y9H8JEHH2%31 zo{x=tayB{<1c5*&zr4hD|aL=CQypIPU>TB)*H?fCZHbuo{Wx|H8DhRb;dYbgW}&{JsN*vy}yX#8?& zUdIKFj;^i9V;a_nF*TODhl#TXUJH0}y*(UIVyXnN;OPy0a;-J=Q)N3m?Km|duSyJ$ z>Ld2uFwD}6eOqiwbKGTyFLT0&10KAr{CUdHhmeUg^I24!Kl*6!c9g69UJXYX`;&nI zNIuabIQ!m5mygEEsg7UX?L9}K_ig4u7j>xSw@LM zvoMzr{xcTt#ZNwH+eqlZ>XXhioN%ayvh=O{V3I1DFiS*f67-_Co>5|v#q#{DK#=u& zIceM3Zot8LmgU+oBR`joj4+k6MeiIL- zQ|Bu;>3uC}^;<;==XU-FdpVt<&3$u6<6|Q4xQKF~(n#}x50MLmCRn-Gc#NT&f+;X$ zVEqy3$_S8o^1x$b&=M7gqEV!ckUAzGfdhC&;xv%pZW32oGygSBM}=^TW3braF`F1( zrR`x6v}+nfAIvLaw*5;7{n~hVkt$l!JEt5}$Qslw!LY!i(6r(F5knk?m6_1`~xM$pB4w5JmyjvP(~V9HiaU7|0yFN zqk*#Hjlku?WUfSf6EtT6{(9H@jtP3Z_`Ge$6^-_~&H#>H?Fka^j)j=Z_^{e&E;>zoHxazlVTnW#PoS`KTvmonv~`Tc)8u0|13;ip2zqfX;$b8u;@ zP66fl+N?&`rudu>Zv7E;SR+w=;)v@8AET(N0#e{qk0nj#umhyy{oRt2K z$+LZfRzWwDRL5~1Pt*{&RMMS1#N)u6Nn%O-C7%_>IQ<-H>vp2o$H3jXQ632e&0ALp zRvy>CN&g0$>z0(+9cpeHoG;j2w6{bU)HsfVqHM=Ro9il%;?@0DZVl(1JksDwCF0Rq zs7bnV0l#~1N&p)3n>e`GsCGaE4@dEZS<>vl8RDtMev~M-Ti%iKfkHro)pMtFa4GF? zHwqn+lB=?{QTWIHpYvkss(EnCD)@a&nXY`8#2dfvV;*Z`#QTiVyBf>gAANqVuh!OMCiLs-RE9oT@3t)!Db`#@EEChE_M&B0X-_X% zizDmfzY%=s_3zr|w^P(?ym6xuhE0D(0I$<+;ZEdV6C(C1$l4BF}Bj^In=p>c8VV6;A~d ztcyVCHmFCqS}WWG#=! zl)p*VIX`MT&8!78(AFGJ<^$o=0HzUznA(dg!8fKIRgd=1qqv*i2yVIeNPBBAuj*&E z9V+RU#KFW6A~DJ7$34QeRo+|bC>>2GlMi|7IoESh9YOKmhl_=tBj67HKob(0Gq8iVC5q^EqEYTTh zuC`kbJ6z%w6WrM(sH;@GPr*drh2*^yS_b3Yk$|oy6AOP4f`QN28YhQWX98U9<`>4> zsxv$!kCswkuT3Owydf}oJlBiI;Pe(n(e=vt-#?I^x7CcCW zJvJe2XRwA3l3FsJcoPG(F?B9@{IT`f@jcI!Gq=7w>E3fYxGc4<#qu0yiP2kgXQ4sr zb6IJRhA)y!SeRB4;Drx!5-YUU8-6Sbuk9K876se)v%~=il%OL3!)1WV;-D}=RyMnV_wX9IYbej2ezyZAD3>- z`yNGcNy*sV)B;K-Am-$LxzAfHw3bmX^M!eA)job0CyMZF$R*{PT1_O_+c=GJ#>whB zUH+!@G_lEX79{9mq>L#socL(B8eLb}!%+{cC#{fP%oi|WdmyQa5ZBFV8U3Q_r-wSx zdzg4M^=g5B7O>d>$OLg=XqJX%2ab`_S_Yq8q=H;!`mG3BFy{5{)Omi_I6hKGT>CZ` z@ecd%`8UscURN_<5wW9`h|7)LZGF3At0Js7o|o-7wDt~G_>q2%64yF2+QC}kw3Xke zmbjwy@qxz8fMnm}w*xM$9`pJk$d5IWBukyecQrf3{aBdeLTrtT3S_Y8ulJj+c)|5A zNe&LgclOyd+bR!)X0cwGQ8h*Xv5(@hnavss(?psiq;Xsqghd|wS2!>d+WzX4J5nbd zo#Q0ZUDJ_Jvi%b1xljHFBZGICj>b2q@jLwcWwAk#_ZC_OGvo zTH`ycGQhdlq>Fv#>=?X;JCexj(?l@p8j*nsJaV~`KlSHYF_{y!&9bYq+Lg}fi+I&~ zu#@bn^KGoG>8R~T21kZAzovBlSHOFZ;c)3^o4pcwkN1>@>np{nCfSds3@vwgz|GiQ zU0CH_Sy??26cns8DPKJUarI=boTZMQg|AHhKpvoz9~9kjL~y)ECVIr0pWUjB&uVM4 zUtF0bqN5k4yITpI5y1x>Y!IeXPoBM3C03h_KgO7ATPrMh8%@)^%CWt5+Nmp{nI;dq z411Sjpsf5Z^x-4S!rOqWv)zIgGQegV4Zce)UHX96phA{y>Yil55!0TH-z@pLeP-G7 zB%p*}R8-XXH{BuwLgb>v@by>^XQzN$y$P0|#NeTic0Yezci%W8zy>YwJ}QbtllU+n zfm^lZft&fu>KBr8m>$TharF2kW(M_}SwyoC)>_h}@EWI`oOt%9@s?zfCtCFl4zlv_ z?9{vg}~OkcH&#Qm=`5Dhy!c6hBThlIq%Tha{jd$?|m^YRJ`+O;mG z9UUDv7Q^@-kNk}Yf3wP%{!I^#3g3|CM$A@_nwr6f}^=`#$eCH*)PXQDJT_ zOO}}YiS}_XMp{M^F4*Nf;fqy6Zr;Pth z^l$#)KNJ1Gw!?q2?}=bs9|!#$$x{`@m|Wav^5MssBD=4Kxy;!s=Z@&t`ix!I;jx4` z-&@eKJ$LtmdhE|@*yGklqFV8TNl9J%CC3)O1i#G0yr^+IcbpT*%c}m+n^Z_UJhl&R zW7BX=k822zYIW|P?|I4RpkpengSBm}bw5$f#dy~Ri|{YNDc*dS9^*v3#>b$2u(<7v zZ8N$Fj>WjZ!E7|u{49i7R8$n{#r)YUL;XFpUw62(OM8lfj!vyakKqCo^xQ&4ub;|g zZ#r>$+JJA{iz&)5GM*bVRQ*al(4VHNsw&1GA=$>c=G-*syKQ^sD~039Ae2MIt#IQ2 zszhPfz_EUFdzvQ~#Vjoe8S-GPnnSl4kdJz(zS@h=Ox|4Jb2Z_!Iw{drIi7*;%^n`i zr=GjbEz{_vzxfIE-``zioIuAJnI?OMA7hij!pu;&+wuWhj?gpMqf$ z^s35e(Sz_E*rA(tEnv=jHC4X;Zt%s<6FvtIW;wI-m}HG`XUQ-Q{P~_PeuS=cA@k7o z1WwG20S@Pkfq z7?OfFS7gOPy(kiappPWz0aKs1diWEsmyMv}W@Ilzen|OavZtTbzq3=%LO<~0 zK5wN9f>vH-h;Qk!qpPF3^PAhgO!pA)%+-xUZD=f|4)3oIm5p zH^pCk7JFd9W$KOxT)c?7i0X5`xCjb1^WZdveN&l5Kamm-q&NHEJfqlzT9<#In0jle zaNG5cb1mySBjYJP)r$&KFng=e+sZlHA(^eVm_y{j+SPHU1lo_!VJfD_g>Y2)HwlOh+MMIOGV;pK6Z7z{lNkXua=TCM zrYFn9VmXi~>6savmo8LlKkoQ3$x}T)t|Pk9T4r3E+u@4K&$aA*Z_S&sWGCX*SVn^< z0ZwA7vB#^%p7TJ!U_$>%O92HAB)1!0q0Tl0iI<2kM${JQxsYoxBaC0xznyb827}Y< zq-p`!xR13yBx;cx=}%f|sq|>Qq;_drVo`9d7-FEu-_$Lz@0|eZzqc-QpZ8qP1mF29OQ>81y)Fz>@Ztw ztn~e#%pM93SavrRgj8$5%H`1Gy?xnWNsi<=ruAd`rLc4v!t1aS*^ zbq89ip#x)>kNTVWlG;FH+9qMU#}xMEc02FTJHEbBq-K8FRRgGbFFLbwP8O!76lx~F z)Z77?BCQH(^~-YwtRBRv5Gb`Z^XJ_oD;jo zfg{xToMG@*7yPA9+e|jkitOHG_x7)&qCVxee@3}3e@ll7y1SXr`qZa+(b94RsSmVd z50b)>cw~l~&s(m&g7bYiSDpIx9Cb?Fms7Kk)Ll%HkZ4U939!z7P(0XJJil)>?~C;w9*iAbIhTK4 zk*9!|!!#nI(hcjZ?t=M@2m57w5R3(~>Z!d}=~n?;qFO8>oqp%Bh+hi@Ou90GagS@W z*Sc<*Or0v~?MchauY0K8XZq8D6NN*rDi$m|C#R}kJ1|iNN@vUC zw`O1MH{>0)+btcxaoVF(s#oPd>^kQ^xJ2}Mv`1Kg! z5T70A;Hxd7m1bLs5>=bT^)V7>%dK$-dXfs&GK#Lle6HO#DnQ=T*ufjK&`cNjmU+h6 zP+;-6>oa-fpDGiF=J&S8Mk2^-dF{6li-#he-i8mz0d zTE`E4#I4IFL=QcL{;GXNI1V()wivtCI(146ogL28AiD6pgvn2qE7@cwv^uLx3u)S< zx}(N}vNN7~J(yW9)^5(}+|iP;-b}minExu4%x8K3@K!8sBZ-Ypf#Q>nP!mjDa8UK( zebWlm)B@&c;}$dDq9FVwI0;;w-0K$RFjm74#DN0_=N!zFUQaIdbHgbdA1F24-KGwX zw0)b<;CGJ#!H!3!{ewB(2dFjkFzgh3-Sz2i=E<*sTLGfHh$6p%zA7N52)EpA)~h*2 zapH3vym5WVW&~Da*eJ|-06xvGEs`tgslyq_Ztuvqt8tl<#Zj*z2J&yKCTCF+nc7{E z)L6CCrvax^8()R>R584Ue`4l)d_of)aIGS#FNnI5xo)LDzc;X@4z1y?`IVk;kd6p^ zVEQxBn_8qRyfcqC+s)+Ocm?gn_1mn1+T*1ml_DvzOnW;sCA8UCoyU0t-8Gfyf!+rYFM%Q{9Nj))AAv z@4At^4Z{bM^~;y+5OK%2!ghqcMWq|sz->BiqK>V#ZT((VP0v}A@cS9lv zP#{BhSpGxoF4WH5iS$nTs z4lFdXo5MGs+34I@cM|!i=UGqQB$l_6vBku3Cm1FgO>gh*I&*XH&f5Tpu*1;S!a|7hj*M!5h-i(o^O17-KcE+msr|{fV zj+ryC5ku>fsLFR+-&;$CmtB&-n3iOs=O2mgICS_;JdaxRPk5K5!D-F3w(U0%Qsufr zGFoiZwo+C)%Pa;T)7ks%^ZTaOhxe}Dopegtt(HKlgB&2sr-)^$4zIw-DAg4ja;X58ZRffPBv<3 z4;9jh70M}$h-Pd?TD;aw;K}a0nZmQx{ykSAhKtl)e6boMEjE*U!=p8dXqLIXt+TJP zISqcuZRr55repg$4CsMLBS~~^sWk%eHko?n9O^7ZKYRM0?(UeXe*4oz_q|k9_JOX^c18NS?)R3QjQ$|b zrb?p-{mLKq$BS15#I+wobrgtEXxWjw$G-{>=YE?~7VT0A&}Ue=(rr#@N`0SqFeaJo zabRdk&S`JN(RyPg=p9k;`MdS3q2vac8YA+ewjc zs)EnKoAGMd1l4Hap_2Bx8~}V)kzUbNS}Z?Yr1RdSJr-yaS*{0y5BnE&u1FM`iCk<} z{C2~04aRGtUZ*>WPDVzHOxjF?+T^;w7_4#z1QwL4P{k*DgQdAM<;EmfgHp=IZy{k~ zv(kD;ABF0Eo~qgX*s3jKF81hL?vs=8(Vq-Ix6Og{bL9q6!fEAyjBBkjKvyP^_8cg-1{k{Jzd1%aNNYfP zbw$%gg3X@DZR{u*tBvpmrZz#wE{h%ZR$j=*d299^ObH%~l`B;Uw+Yq1liIjKzZWk(3I)*_5FNUjzelgBbCUnzxF8hl zZ(RTT-DWL*beqgCMJK~m>4PXXPdN!&Bkuc z{;Zs#G?F#Aux^o9HUrg{ApZNFCFCzTe=FyY4X21M7YCFYx4F;czc~vXIt6!PdgNWq zhz|l9C08VshBTc7sHn^73ZulTZ=2kI5kro;UoG$`RyG?23^e8s`n~eW{Atn_*)Q2_ zMz~h9F_R-QeJQR&SpVSw^vZiZntnrmJl=oclMCm~skTdCnIom5 zipx1}j(2{Z5CFNwJ zA~jo5&jmNkxpt_juhJi<7gaAE5KF?Z>Ub!Bbcd3m-K%EM>w3CKST{DS>YNHIP9?GY z6w7@5j(MjWK3vN+SgzHl*$Jv3x~Z?DS86 z|6b1rfYz=`iDEHvoB@-I%^Fb3T=l0!`uK|-LXMX}XrBb$r0sh0lB40p@JMm1FJ-g2Bi@+jQ^o2EX9_P#^(yI_&s^|qO>mH z`h`6qNIW_7-tr90w?5z0+Njbbc-VHi`NN9Eca-*~Hd2R+H>`+fIEDFz(=zn#lKI>d z$JS$R(|+I7yVrzzeee74OI5Ekna#qVbWD$fO9ntTeJygve*UhVL=BLNtn%C;a zcZc*6b%w7|IGGN0a~A24UYBE=`7X#QdJjAs&)W+2R~2WYS(8fwe9@?0529{IeI!z@ z*XSGfJqpUu?!DGFQ$6CTUiT-a#%0Kz&LjAUT!P-5MjfXL*YMF(3k`&>m4~kGosKi& zVq3lMZ}(X}(Jwa>@-4~UZC~cy{!}izYqM`*koYj`H9JKmWn{_Y zg;H}%-f4Eq%w~ai)?hYUtw^*oU?1;MyD}7f_P-q{2xjfuya{CQb}Vvprsz4LY1Eh{ z!#W?0+S-@Eue}r%lluMc8l`%EK4}^F>*U;ya(K|z5fWX9S8?^$)Rpm?*)K|RYfk*U zG&Jc${M7B4pmaHJ>k|r@qSs#(v3AgCR%2uz7aR$;A#B(28>J z2WD^7yxX`b9`3~^dA%6oK4t0}Wq!ZGTikBD(;Z_)AL3@#o_bx580BTy3#syb5(05` zLb`VBm+py&UT*PuUCnLooOSu2P*0gHI(GTm`4V&<8o4k&+wZ-S6K)h(wj6YJ-T$$C z&S0#16}*nJjl=Qew!TM)t!hqXWahapqNebhC}Tc=Jb(Ozqt{_SURKm$#(h`rw7jyk zb?p7)qDA2i(bne`{J8o4fOqC~{(M>H`cis+tn2Y&q^AvjigvZBe0@RcLLIt(+JJmS zYr`o#Y#{k_y%JW{Vd+`KGgG&*)z*3@&mr#z_L<5#3dlIo<^7p;r#U!x`|4@8o~_Z< zR#W$^dCs@!!e4djllE{a+K+3*ixeidLmd~GqSr0-k~8H{?71GZy6(1!{Bsjk+vW55 z^RQXVT-8R*YE~n?4pLY@a-tKn6y@xa^o!lhUjQX~SdQ#k|E>#q@u^0q$ca6Y(c7!{ z`7S}3H}+lj$a&^7%|WeGh61IHd7-BWdEB7OX?ezKvY|9k&` zAEIo=`0vt>BLRH>ABB`XS^r+;zb=Np_J7v=zY59W&;E1Me@>6z`ahfTe-)x{Qt=W6 zi0usd;liOA!aV>;VZ5GU1jV4@K*Ie}i4b^X-~54on8O9-!lZ?tpn#vGf-&6as|^66 z{F*~fe2%-_)r|x+g8>dhK$1naln0!lQKmDN{z~kBxB)L3|~Qr^rs?` z3By4{wWCVW0+jO#GvOatmfr!8tYYM(P&B2&eu)(qDawsiX#FD&zpy^k6ywc*#eI`s zsL-7107#L=eIo}*QIQ2CE@m=FVZi=pK%8?O^GvxgsA??<3&G`wa6%1gaZUm)mLv#WB5G z?<;YC#``|O%i8)mQU=a-D5^URGv9l{+AEh2p6ixn`+bgJU)I@cM&>vb|BE2%&Uu#| z$a5Xc6clB9b)?t!Zr}7iI@K9icm8g^@#>G*JXf_AMa90wOma(_ef|E*?)n_1XV@}4 zm-LuG+k_g?wp=C!ht|{2N2Epn=}@2_bnQd_M~jTEP>ePz@%JrIp_~=Q8c94ZPfkL^ zIF+H8!J)P`R|Ok$J>EuRHVr%rc1hLBH1nw(nvFKW#y(KjUG90=A&lTlPSZQ8sje4p zTFm3xETC~5l@H@g=bxI^EU2f1SkROxKr5K>YiN*r(jp+#)H3t-j%sN5y0Eyow6vse zWR&&sL+!^89=nTAu&Bg)(<}I3OG_&&n-A67zxU5bp`uTLg7eLW9KLz8$jPWc}CUiGJBPg&oW z+byVMkNJ8ZXlJ``jB&re2<=~!cp+{!>ge9KUpFsHN35M>4qg3qBu4BO>iUZ}q;nU? zB@kGJ40ADndZpF%(qp~p7JKh?RmT5zICYTCS)obYMC=RUmLFsR4~&S(OMheCT=K|gP2p7}ZY)FRbG@I|sQ295G(p;iIGl-!c3ZU-HX7*k%KD3u%8VSxzb5Wl`E z!$CM;$8UJFXtAz(G>C)$Vx#}kw5|VML9Hn@)0qs>Fj2?2zkNG0Vip9Tp&D!plYi*y$ z{ZB7d#eyM1Z+$pd<0(<6lJ7g#pKxu7wvHKlEQ(M1=e@Jg>$stk(Xh4|rP z9j5;?9}D#cJo6}cG3_g?r=+}&6lnYj6+bC0&K{L{djiCGtVFcjTI&sMcD*5Gzx^4y zxO&6&)7seWY2S128lSwfdh@wY`*>O2RBXoBCp{6W+%-x3CSU%(jEw2^|MOogWV9bl zy~W=9-f7jH3%ttT@Bi|>lydSuY91Q}&p@A|+&_80-AkKY-CPs*jd6y4V%R)FX@3$R z*)p?fk3bZ~C!j?A!;Cjub^A$nA}qD}dYxhw7DMCX^n zTyg4W;7ZY;fL73LvGL?n8p|yaHa{?cxx=f~;K%g{<1eC8{&g<3S=fgRQO<5=VS@E7 zdrU0l1m&n==UU9JaAM?|wEg`?QMna0KTw1hy3}4z`D@)AKb*3d&?o*wZ6-#?D4Fmrb%iMW6k~#j{67F*$87m+8^NMgrAizWqY(W`I^#Y z7xTeUjQ(9;H0|G}6xEJsdo=wT$V2I~mNTLKF$8op-$;A*X9dKt3y*|iet zAaFDdgjN4IGv{J>3AZhXm3`{bSQUd?nqhk9=i`KBcgW8Q6BJwLvpu&d&@2DDSV1dW zPT+9Ev;CfZW>d`o^^dc65FnZi9a@Y;lMn4tWmTSA7=%W(kETX14nixq9UsJj(xgb>7I_irr!e z*1ZTGjjbR|DL3lpkjARvr(g4EySAP^UGLJFj@;+!eDxBT0Y$%8Tzr%j=f8fl2(Uat z4UwV>Bg0-iiT(OAN$mXQ4~Q*IJaPFc2I+1%(0Ns=(B zL|8oGOq{+aSHQm*_Fq^olpFfyXU#wc^ZPOtKq03y!^y*|Vn+T^PkoABayKPRg>PfUO`Hx3Av}91_4IFZ! zs`Ek9*oLcTRF+LGw=R5OO#?wR;T~9k_MANQy;9!ET=3PzW(X;6&aee1DtI-^_nnRq5+tH z0zZpb9{Z4JxY+f5{yk?Sy~iXaumKGCq-)uWwT` zX6Gp8YC+8P`!5q?fU^@0jv`t7y~h?q5e@BiqY5GeEj(m;pgArIeWvwNi{+11gKp^KqCrkOU|fgox z_<}2n&e-N6st*(TL0AnN1Yi}9jwFrx!ifyD%y)z{x^NDhj^E-}60S}j<+W02(7{Q^ zSGiL^abB+RMCD7tUaF~0c+`z)Y1uf*PWs0&?2nk@ev4YrUJ-1ey&Ly0}#f<IYzIp3+4PkqBe!FT%fM07V2rEdTT z$tBzYPQG=);4Khfgc@ffi39a6YCKvbyYHydaJ!s=;nIZL*-;N=raO z=iy*1o~TAL%`Y?Y%bP;)47H!=UrB4C#4Vz%@e^796rla4DS?IjuEDmk)_>y>xv;3X zPP`lC?9?Q=ex7jev1Bj4L3=r=vWK@JSsz4$X|w2Ge&TAr*YpJ;=a@(|HW2TRQ;+f{o7t{ zdBlQF#-#;DxyDUNOc2=oS0PpdIuO&G77ndG{sB;B@Qa&4H^$@_;Ng=d z(JDTp9Wfh)y`W)z>)=yy-n+r`9%ShIW)Wh)#*^Q7k1yT(^(3wQCoL)8@(VNfhh-Qq z7Yf(~YQjC%VzEMgeosijD|m}-XDAuMLNiZKH=Tvt2nAXH^fI3c%Ta5*x6Zl4B}E5) zE{t?TRfh8VZoYllOX`hW1jQ%ed|=ndSi1qS8zq{$0nvA>di5wS0k(8XPA+}cx=Btc zZG5^(#>Ta|(O7DUj7C>6h9Y4}6M+w&{NAP~p#Wt8_Ro>frQtcH@O>zbI!To$AE2ld z0oAeT*YO|Wni+cXhHZCuS&k2DD?UvWgTFlL)PkxFO_nLT7mJDB}?3@E>9n$T^7ien=Sc@1e293Ta zZ>Pf~;RQ4t@l&fyZqOZ9T^h>@rIh^{T zmePSX!SBkwamS5=iKj4gc#IfJb0Gy`F%is)!x}8EQ2G**Z2i=|jc@+0pMOzpK-ViR zR`*EO$3Zc(NT3IFn~Q+rIrr7_jG^-4pkndSR_(L`AWK1SQuF~7aKYqT`Q1|0g7Fq% zw`c`g1{L*`R&{lbENO)BtfayHLw@n$c0pJbu1fR)&cow?3g`;74U8b+AU{b`L(*@- zk)QL}F+V3^;nD&|bH&8|A_YjA@$_ia=I0W}(DFhTyn!aYLMv_=TdxIR2r?>Sf71n^ z*0J1F%Q^9xQDX>UgCSTO^SyYvF!F^*q(JfGaOF70bUV|y+hMKUTL5<)48q@Yme$Ln z?h$mnQs>j|B2L)9kXauzy!|<=TBA}^7tjF-n4gWtjZuy-Zs|UrZlvIm4+Q(4Rb!|CNVG6aVv?_#9@>9W!zK!cB;+a~IDaCn6Vo%U)~rS6 zxj=}Mqr`y2F0!Ln;etlQ(p+uS*n2d%#^h`Vnjt@LG$_$+mpq}^H9r_?fl2+$&uNw5 z;D~X^XZW;pqc8wJIYT0oX{=c^6HM^jb@d}9=%Z#4esK&QasD*C(p2~oQE%h8o3v0O zjTx-=8*6RuS?ecX>Ob=w39B-SEBPgbgbK38=1Ej5z!=~Ph zdF+_4{e*}_pM&o4RfrFjvua06?-eEq=LQ=apd5<>{f$=E)KpiV$6X5Bstkr$)7FBt zabUO+%K*`!Ef(301TFtok&aPOSp}OYyw;o~Bq{{X-9T}6Is+VU5y+N)B(NcwX<1^q zdH}o1$-L?rgPM0cn&658;>I=2eIeGVeCp(j23;y!#T<`?rB*pFdA z4s5U!qZLs%Oaw3pnqOd3vtJ;q?QL0-^N{}$n_J0cFSHcKGp_an?!ZeWf|{j=n;dfy zf{C=gD;a{($mwfbWdA^Ka6!f8eGJLKFMwcRm=pk=%!`1Kgh48}jKEk|Ic5-Zo%psS zKQp6mQB+oK%PMdZQ}yd$V)|t+&@5!eE@%WPuqTy&F;e2IxJ8MjLUF=2VIonWA_^awgSB`XS!L#P`*llCioP}8yAWs6w7<4oe zXb(2DJgh%al4YDinqk7b892g+XRFN?cy|ZA++>S$<@`(vdgq+ z!o_oWbAJ{0px158)Swhb)iUKG?j{gWU{8q%G5*6n z`v-nOjPzwmy`-Xx>Kl0{MKHG{k|Jxm4Hl4znU_-yHqu?zhq|N&KRPVYTY%LfWqU`1 ztwgQ%`>)H*wtt@nR!NOEz7kBg6oD zWpiZ_iytkp?n+ZUXVZs6r#+4uRU=&{S@C1wH&_Xy(EOaE`EC1@+ScW@rs?K5qNv9( zdl0X*(E>=PzLLR>_HOZG1`lc~WLt*xg)`)UmiQ^ShbFVyj$AxXJHG{ktfTM$JaaNG zajyPA2_>EKNFo7e%8T{ZtFPQ~TF)I{0Kz8O8mDPjrNeAr4%^%xA9J?I6y6{wwbKgb zz(A0(_y$7JNQ+`Z`|-IdsDCNE=XWJ83QS~(=m!`7=>C~>1#r(9#Mg+yl<;$L<~a;> zEoBYB$YTnFD^*k`P09v!E~GOA;*MOkH)zO58kk0n_;I(v6qh3H;96f+Dq(El3Ryc1 zG{!zyckRB4$ttvO7}i#Gm#g){pHl9<*d6gmy2TV9zDjxK8@k&k8wuSik`P;Bv=CKU z3>deYxeF3dNPrusHyVwK8wPPjn^vi&iXYDwJAN(J{JtWYB6eJ^2McFh`(ws)*Q};t zOUSyf|BuH#Y{yN=mwjPy8~Qr!(H?qpnho3n-5IKk*7E1aKPe#m@Os_l-$l(H`xTg8 zWRa@XN;~CsiP-$Ca5{i1nu_Uel>VIE?k%a!w|Mtf^He)Tag3p@QvV$0>ZSQ&OEj9B2!{RGB!6tR8s+buK|`f#hmXtWBykj2+H-}T#%5W zl25*LPQk!^4b-U%-z|XJKjYss{;w2Kr;IT#)PG`)|6;oTzcNby21fonO%wND?fkD> zb0Il>G^0O;loj3V-TIw6NEpsOGG>rMmjui%#PIYgsP!t?;~AtZB}@~H4nc+q6Engw=^<-#A-TK-!8=#+HGK>6o24O~)GtzrphOVZtC@lfsxYx1*X$0~ zo1rO(kF0->FVC9~9Vi9@Iew=QG3t^An%qTC4uWHTHoRYdO!; zn-@Vsz65RZ9n`iyLwYrB96~T{8yACS*<)ow9y9hr_7QcyF+HdZGk@ zH_f|K>)3xGXHf7|qql~<&WuP7Ghi1US~lGPO&jw@{A)wcZ`*o2*Tnbx#7+FcZ-cyn zGk#OvCluPvRXaH6o_aQp2^}B#~AeP|L zcsdSmjT|0~fG|6Ff|^SBhq#b6iVN|grp5g$B;3e)_`D+F$jD#{IRX62W}u_EBH;*- zB0idy!D;z`ar)2ibAOYNo++@Cad2&rH8eHyyEe@1P5f^I3C0;+G}gN$Ts!x+-b9@a zzNy_;DNiPqlc*PDp68M0e(kL6F@`gnF@eS6*RVw)f*e@$vh=(zIT~pbFuq95C)JGL zz}K1=gTE~y2T8G4hCx^v!J`=>Rp2h99}%@4k+xHTC-c0b#@lfDl@2lS16UGUdL_k+ zSsrMPF!2NtM#(9lh8;!WVolPwC{}3N5v8CTUEuKWV(5TKe^jIHqg!n*HfA_Jf~N~S zR&!hJmO>a11>10Wl$AA@>r812m?ojM!%6@1eglqPsk-JzOz-GhsWciQ#q8wQtpuyA}re4nc#mh0{p_%B?~ z08WK`ytPjlTTJ&C8Ptta{Y(g7#oLOWV#PnzOxubV-IW=sV zGdNFc(*F_1zP2*;1_^1b1OOJEoNkqCWl59q7repr@$L+Qt)eN`$&K#+HtGMujQlCX zzGCQXW>jafWDBU7h6<~ll8 zB|u^>Qo@b)!!29F#kI0hyh?nVcQ9;gy)x z(k@(CDb!vY0hX4Or4KILaKV%IkCFRhQrH=oopzalE|ox5w-@<8P_c{yfZhvPWJ)Y*tt6SUvCD;!3Vy!Be~ z6?L`EMMk$-xl;3;`FQ;`s@hjl@D)&S8_9TF_gusGix7PF$-eu8V{f7gIjz%7>-(W; zb1l;(c#9wKoIll`A^H9m!E-IxHAJ8D3WwtL_^|q(6w?*v_HMpQ%;dQ?1GIi67@R3;{giG*nyG{e0k9YV(&lUBg{Z*jlkjQ4#MDJ;F z*XJ;7a-e6bE6XwG3IEJ4bnc-ShiTg;=E+g_t^b+O)w@ZHzdP{!of1WTwem1KW`Ba& zgX2-bE(EBmYGqSyKj2!qH*4#g;QfqhH{bbsbI@jG^F8x}vRmh)AE;ten^G~)_%Rj= zSMaNw&A4hUXt1%TH~dEwSy_JKNBX_#gGM;OWo2*`%i3C^xP2v?lBtAxKT6vD04y33 zNO`wjLw=6Lh23pZ#Xoke^=<646&KyeMy?^YiDalxP1@ht*4E?)f9Q-itM_n-x~$)r z?#V^5*v*^#m|1sbqh@r$y=f}>Ikb~aU_YxIQ!yczd5^@!Rij&5>j}GCA&AKLW2yb= z=Yh-F)^w-$5u1^vH=+ve6M?sE+Qb)v-!mWMO>7mAYE&bwh zO$C>_%GeKkO)+j2ql*u;ZJ{EOSO*Y=*WpgyKqGT4ml?Jh}-b0Z%wLQOtxV9Yo6~b^h^2#x68AT1>AK z&uV<15rKx~6~%y)Vq+{Nkjyqidh))iE$piCr(Hcion-d2rQyBq_lWRU4ceYRAuwJ$ zD;K!26gBYicr4yn3IBz@4_lo2~A2z{e z<5i%dbO*4c2(&?|y40XsdTwm)FqUaWSr-_uP`? zQdC07`eK#7#bDuM;is2?oP%lj`djnW)rC2bHJW7Vk!Q`@8-f5OADK3McKn!{1vFr) zj?99l$F<{O%bL!YVeVJKoavqd(QlEZzvOl>-iIZ8BETKb!XOf3%CZtcc* zMp0he#;?xSIr_-;qF=&ii01_nqP7s`5 zFG3rZh)$*z<6+8Hm}p*s=J&nzcAPK5u`}!Fd%#R}(MeL|ljy+@ml{RWzavcl@P34p zy%gpK3npx@%@kf_T-HzH_^;Ps9dC&a+%C@FpqV>f(_SuZ*Mr}miho=+n{`E)b(|5s zED*`VGUz=#bY1;o_6Z!Qh`9_hdtYZwVZ423R&cx9ye_U1$f>h+ru&5R0tUP7^pOm+ ze@MH^^IiCCJZv*x72HA7aJ!Rsx{oWowl%@Y{OG^b%?>v2d zyg%$f@qPh4Pp}>Am~0{G zy3P%)b?tPl*mQq74vqF?l3&1w%e<0N*m16UhW4}6*&Ne->VH>4eMimUpQ7axa5>Y| zH?j<#G>q9#5|_12i@rk|OitQ2F;=VQ7K)+u1O*e*o%^vLt!)iv=Z{;2h+-$Flr%Li z)p+9E>UT>QXMg)jSX*xd+xQz$oC&N($ulNU8ACVXFq+r8go0`{WVp5R7c;6^!2v?2LM7xmwVi3yvmTg|Ram>&6xa zLG}Xr-=jwO@Ytq~u%H8buxWbcf1C&6F1PO>K(VxYU=E^+}|wx6oj@<~ik9qGWtqPa zR0LxUnv754fs%CXMC^%6ffiFJ{RZ{96e+-O7LObzaRfkCAFzt}J$u_k7>7#U&3I-2 z8SXl`a{_!>AcnT{0d)xrfxPQR5S=)x4A0mImfolO$ncB4P>AgS_XRUQ(_N2&t&l& zgnn%u=5||ljqTtW3|&y~ytGI)?eEPxlV!%qMdU!Sw5&DE7T@>pz(geW%U_L#4D#C& z#t&$cvM{g1J0C$)2<8tP7vsoh8uX!f6pUaDf|o1v^fCqe;IZ4Ks^f*NFT(~>e)v8g2u z0Q%w|x9<6`G{KI<709eGiJYhI;<-^0^5mNJ=+^ZiY6&-(qH$Q`Q};(s2S@NDJJDDk z(pDd7`VZ!(v|Z@*p>58aq;_=;^!pvmna2>WZyd~CckVB9 zl5c?`aQt^wdQ(PIJUz8~Ew9cSU7|nECBY{0LhdGa8&_updGOlqc7dzs=9`|Y*Lr^8 z$euQQ3Tb6`uJ`AB+jqXF7&)KxP26o7Z4%6^Q~%mSpxkY|*tB04yu0*!YQc66Ciw0y za@QZ8@!w>>V)z^ibv-^D?({0?eCjUsL_G&Loc0ChJpDobnF~jDg4Oi3f8%F;NQqJTP`5D$`U49%K>V}{3AV+#zkPHSJls!I)I$d#_UqR$p?k}fv*niw zAAaO`j?iX)u;7vzM#aD|LdvP;nG}`|8sn!IN&GAUv$jris0Pv@Z@9N-?{!Ejrb)nw z&oH6^XLT|mDG~X;8Ak5WQ;CTbGuSgtgPp6RidRqd2||x)G7)L8mX1+r5k~YmidHA^ zqAhu|kSr}*i9}Ul4?K9}=5iCwSjwwyK2TJu&pROFH9RUxRia^c`gs2P=NECkA(^PQ zBcSnekM}D$F(P8A$8YkAZK*7EvnJpe6*M*`CX~-5q)-A2Qs2tT*avu$Olvl5U-YP~ zg5Zer*y$-l*&8 z6l8*H8yY1V+lS2^F?5o@_mKgm6Isov;vBD?+Nc^vX!xKFDkHul{Bp(c>NbY46d1@R zT;;yXg6?s@BG385p|~_ip47{Qyx?hg@!fqRI`s9+6z*N9lWOP(nQ~MN7YUJb#VVat;do~@$zup|R zjNSWg*?Xp|UiBp6=G$kVzu2B;=R@2(NnP)7x)+5)`$<*42wZ&cbNtUEQwQ!-?~qS= zkJN8_(6-z1sLvR0$9XaQXSIhyCrX*O3-5axF`m545AW{*1cwCedlm}2>_5)7ZqL23 zaM~~bw%-WgTo!hDeeQZcIdsgadk?$Lej;ajIJdp3WbRD=(SEpN#PE#0{lg}rJ=$Q( zwd1^?`SCGkduq~?nE5?J$iT*pb;|Q#v)1lv-R(lac4)!Z7t(LjbD6-cUq@kg-uI>L zgFKlzq1XOb?&ZbX_a18X{TS?BzF7IdOnjYNY?qXCXrSN&ao-9)z0i7gf9KPk`tbzm zb8u3}{ruK+NOA75X5V#PdGC$+(PP#j{*9RTG`GlCp-VyYtO7q?_ zl|i5dS87)V9%d-eAR?^|=o$RddNPe9X}r!f(VTa3+wGa0;?WP#(4>PGRLuUfl5a)Q z>}&&?Ecj4$Co~Z4UxnehoTN)Y%M_=PtH#DLSlT2Hnhr}|D$AZ81T6D~ z&iD@(0G0E}3Fi>c)=G(qkxf%T%xnlH1Xe9gOV@Oqw`1RA@SD=)lu?w0sKYg3+Tn05 zDO}icT?#2wkte#8ed)>f?7mb*Xl@w73>_!I)1QuRnDl6m5kaA9z0rBprQ^>J0%Fk5Im=<6pX?IxwC2f2or_4m;N&QGSUdpO{=QLPY#4*aZ* z+%9X8G`1dLwqvo*t(Y;xHv<3&+igrCXyg~|y^1HFVJg9BP_Zc)F%}uz&?wSa@fRHr zDFShDxXE%!bgCCGet-UmX)jVK*BJ6=N|HBM$^f9+^pb-~9v*btDY%&7cA7>oUGU8{ z^jA2Ot&LW(;|j&B_+*up$s4iASqXcuz49L)q2k2QF|eA%#R?-i*IrjVo5g)>cS2=_ zIq>`LiE3+I&=4|=&Gr>*9H7@yCBF@X2U#Jq)L18|bEpwEp2SMmcavc@(hSF-MK4_% z08`C<5`*@jG9f~xlp#8I2beE!T{rctG_emvJdl_)B{w$(kRV8e;NV^!rX6*(ry`mz z+yw!csNO=|Y;r8tR*(>5>iXEeO_0zx9 zs3XmBgh>>n7DcF#pZ+>Xzm^E8>V8rxA3GU%jw#nsL{xZ=-L?MGIpa#UUN*1M@g+zXUb@`DmZ%B=0@$Szx7O93EqCb{B-7Sb2;rSaD{j^G8GZ9 zjS<1C4>cf4eE`7R2t0Kc>^$G*MiBvQH8a7$_yF|NT(&z_$$Gb0q~YNye^DmH0(u%5 zWLJAR7+6SKl(BwOQXj>{gFuNE$4@GI!<}VxNcNY{ZF2P8A0jkURP^)&Q+6XGqrW^l z5=znmpDR&_lpK_$QYx-Ge-gu0IS&&J9WHc`TOR+$=Lv46Y`Elw}Ln?ICSxZ~~ zPXy|hZG_>Wo-kLv8?}KC9p$N)GCiz}{6l0cNC;OBJ++tl&<|=5BK3ZLZd1LTBp+&1 zCyH=m3?~;QiKJ>AlN=KQA>#gI=wY8?Gc&ch#rON3(2dW3@Grqqb;^SD7LK2N>}@Z^ zw}mbOcZTAFdkwsX2I?7*redh8`^pJKwo+&!Izl}KTdnVRyYJrL^kZ@Y*SnZ6kDBvO zY2MiSoG+0eKdg@q;0N93zT}hDOWfD>MHevCpej zc2%f<7cn9yNBEDh%>Q%eDuZW7ca%sn_(T6wc_SD|2l*kIQy|Xx|6b$2uaV#VzZHSV z|BoGSsN~K&7G#1V`_qZnrA$4aY@9}y$1aQ6BmTh&tt&mfyWdoG7E3Hq8WEk!j4vdo z_aVr0ckb)6yFLphheQn~z8&UYKB}{tjrf{%kyPyOpRe`r1V=0-W`&*`v);#rs$cbe zQDypPVWPNAHapvwJ0h4EkLa?q6Y(saoEhJfy2QveAurAxa0Uk*3Wv2vl!>G6N$&1K zrCWqnrIq#v0xZ+4y8t_XdXUGS3w2$gpuv*UT4|<0FoRW(F`xWk+j!G*x#mbklVEo8 z4bBB>IbIGhKAM6jm77G~?%z1|5oD4X7%!jv#xK5|HCICZujalps;O>km!_yx1?k0t zD7`5V2q22mK|!iiH6Xo7PY9qi>Ae$?Ceo!DN~j?qB?3z5y>|!@AOyas@B5xJ?m734 zJMOQ$e$BDR-pO8T@44nPpSAXUifR@(s<_DPPd3RNohGZiz>hmXz$Rz!ox`8zJq5@| zkK9ilaQV4duAp@Ju+QP!d~A|H*lC-Oi|X-F&=%ZZ+3b}503_Y6YG*Evw(Qvq^ z@Y;pQp=L>hnAMtTru!B!APpv%e+?7qy19gl-$68WlP?b{uQty-eaQaQ?VRHlSRuX- z5Qz|C+c{#7Uy)q*KGsfu7_I=LmIlMO9rVHQ_wMzRGo_YpI9W$XU;X&K^{sJPcV2^& zLN1c-smwmp4aZz`0w80%8<^!spxWdhFgm1VRik8tARDpdQL-lH4S-a~ykccEzTVZh zwjYSqXQ(sv6P^of{-f2+<4>w}`^D zae`#i`=pD9&j4#alU$OQ{V`d~NOA_{{^b+EkG`YbnB-)g5>n49oAzPrr7x=;;bB71 zFgmH{8ODJ05iFDVX9zFWx^FI*>bZ-aF=$Z%$M2rzvD9y~b5v?9&hD>PJ;;B@=+RA#@Mmoo9ynBw)^?*AIIo?1zR;rS@ zs&@(XPI~F10I8SVPzHIFukVnXq5hS7pYyKJhLEb%f0R`(T{b(MG!wKLioYk2v^`y( z)vyB%@7#fmMuP)sd(~JyyI^#7?6pp#UNQU9VZM%j;Wl%;-E8N>^5lXe* zJ}n01Y1P|yz4(bZt8ie)R60%=gPZ)BZ%=lgh`fyOJGeTaUFxEOSMVK7eq%pEgZmMl zx;IU-s;AWiRJ zvo;{d+pCpC$02>8yJ;?nQkK(VobK=tKanJ~hAFq|jYgJL+hJnau{K_sc%7k}%%bqR zIg7r+uZg9#RWGaem4heTBqTXnt9G08tMxfohe}WvZ=VFn(>1lHWJRvHsk;TsVb8Z* zUvCQ>xA%YxC$9atg^b!6U9Z?<$BO`+Zm-p@PtRATyDCOLGvknojYgQZVbsk*^V>$0 zCa|}?TNbpQ-d%dDZptC~4cJ5JNj#vn1Y`Amx|Jy-ISrZebP$lYQj&X?J=D@vP4%eU zf2#?fwP6JKjQ{=01w~xD5O_27yUVj*TC)qLcXGvvn$G~^Jwwr7o=fimwo12$+wJA-~ z4tWxdc)IdUj1RiR%hcEu8ad*fhuBI-R;sG2zg(m==j`|TeYZ!M=QqbUruy?$8GIt4 zu#0D2@pr}24MxMbr~mrVPKmxAfo7s#!% zX{4%&q4Z`eRoOHWXVxS^tFD`{j8PxiaUzx%P&MnL0`;mnm@J1;u+?Ui7XQoFMS3KnD6n+y7GO&Ha^ z;iGeJJTF?6yzuF0y}GMvT|7-TANc$*Xz@Q(CBFu@zp9d$T=h= z7Gauk*x@R<=f98&QQf7v5n51CYkAxm)x(YnkLZBD?3iLM-z`dPIG&9+!Q73Pr)zAH zV}Q+fROzZ{m1x)ZX?oj@N>3VbXKRL2pZ@rCZYj@7Z1r>{!>6m{)k*e{VsfgVgD)Eo zfLLoZTHC5aF_;ZG?Kr;DoX&G3MD6hg(em4ut)hX=Tu?+ z$n=+A$L2IYyZpytL+|{f&i)@pDB0hF@BeB1A1>>>{Dp`iLFV)n>%$dqg`P{!)p3yo zTiz!jB@NhOU_@Y=o2!UQx~<|gg0k;GX~Q*6&zwn` zM(wMBm^7JV4$CyNf|>JiI*gmqIRv zJV;3j(qozYdwzMid9d{rTNheUUl3yW8yHls;#w;ge+5Xiw0yF<)tf zy8_p$kC2(Y0B*uZc8kC<(+};NFJ`-H1mCuC+}fvrHZELQ?Dc-z(JOwq7fIKJg*4CB z1TcKX*S#UiR4h34*DhVqw_YNPi94nY)?`zUKksf-vCX%+yw9?f<$D7LMWpq3JoNsw z_LD=+ZG8W2zVp@;+va3&@y|WSpHXrrYX;n|-nFHW45i9ts-r;B!6^bf~jbL#5 zq)$F>$cPSUb_<1*Ce7&5@0Sb0UjIOenz(vgo&Ne1$P88p<~H=wlFy2b;O<2tJG#Q@ z$ZvB`y`NTg+u2akkfOt=@T^~ba-S?rKf>g;29hGV7#wbURjy_u(Do|1$2`R|EwQeP zafNZSu}h;oLBJP?F!o-QgpkG*591|E`spLmB+x8=MlZ?)MONv_!+;ynL$HUz92$6E29MKd9yL0H^XFxU!%m zRMn_wj(D?UXaY#jQ^;E|`O$so`JEbF8V_;&DnQuC+E?ViLDQ*SsHSr+Z|O) z_HbYqJ5Ggz-LS~^q{jAEO{V>#R}xql73&yZytj7m-2CH`*Gc*T-fmzWG$JeLCNEj} zbcI<2hr;^^swE3SXj0$9)4pkx^}u?BS2s4hdky@W)e9_^EW97$fFXJQhbT$Eb0&?~(^{nf&N*O`MXhYhhbeeVABjJMuJGCH(+ zQ1eYuK{7O{Y+`~Tqd?q!9tD_+tGLIV==Mu|DMP|>{Je8c-8bTN0vbw2Vp8ra>eF5y zqmUr-d(?x?BpMQ@(GILE#OWi&@H+cV5)E>OxBetlZ<|R37+dcOQ42JS3l%@{w@Dd3 z&yvD3#>9J`_&5aHK0I(GvN?q@jJ(a)u3r!2PI=cRsc7+nIT+_P5@>@glb5<$^V@p@ z@Y~P+j%g&I=_(S8b+x1P?ggpr!2jspl2Z^mIGp}Jzxt8_|b}Lu3A4N3?%7!9l1AD zvw=D2T4(54uJh}wv_|kefd@ughqz!}!%|5p;62Z;>PnP$T+&I7OC zAn}efcmCkum?-3xeCB!FY-FK3Jm)zjTb9cWg_4s{) z45-)`XR_$(&gm+(a~a9U;yIhJK3M7U;|^}y9m3+kpAg)092$^`7qeO=WYBlbwjdzH zHP+9-9keo3PtktjYZei*>%>%MqLUihB(zU5H~h#51@cHe>mfZ&Kz?gY^wJUiVfzbV z#8ynQf&ZLR7drZK_|<7?u5(9lFNC6CT1a%z7Sr_Q4#^ivjr6Lq{$wZ~zW$FNns15m zX;d}e;^WiM3Q&KbLnKHeoOzTK6%(Ee^QLj%V!X&8(23O2Xcy@Wa3-_r(=riwP%e;u zN3x|)@Di8`YRz;mD}ZxCF@Va$j4R41Cd1;1*uJ#Rl~#%rndWh`8ZC(r3^D`H6mGiv$?H3`cVt5r5Bf#bl}y)o$I9fcT7GiyO0l7%?kDA2U)g1Z=<=hDcA7n zrntKb?;nWu7r(Px|Kjt7UxmGi?cZSjZ?F2dBmblcxq`B@OU~%Dd+K?=<2|Za(qZ%y zz0y3C;Vb(++uQ+$-)R3bfW-748Rq}OCH?j9|6;E|X_qM!KfEBOIKSGF!~b)F^4FdJ zbHo3|_`m7r|38;SUBYAfnsE>yx(x?O%>M%jPcW(ZVIZRvs}WmW$-rwDqVB$yjmnV| z_yagWkMA(@OSIraF&`U3Hcr;LSH{;b4GgA>Zgt=Loao!teH;*FV50cA11V^T(E1Cd zE(EUCfvil|zZk0^;(Iex=Zv;TaO;lmJdK+C7)WN`>lHrbEA%pXpr$E9!*bt;V2pA^ zhB<(g>Z2O==a@+1;1(ZMy)qngSZJVY2VuQEX~#~l06c)yDhcHp+%IsZ$Q6!juEn+T^4I- zIw_FzgX+(%v3{>*xcy8Opz+yQJBP)AH! zPvQ>NG#bBk1+5)1K#bijA4MTQTzqS^H_tQ4->+t}-;QMgY|8h^$nT4)@qFvaZuDM5 z31ztUJDlvl<4%$G6(jeFm00+z{byfsv356badFZr{^Y8$Kl-OOETlK8?0$CJzRPBp~|6FZpX1+N6YJU{uP@1SVb`llTX_*&6&yd{G!sdebt`YXj$pX?_TetP(lu@ zXX_e$MY;=5YNF0XPoV~>nr>HHJ?x-$RE}(CSu^mM--0!1ZdvZ9$k&m_UYP-RG;09~ zr?|VXhk`u0nmtc$jFDTOeh%tFEx~9gFqaUr<(i z=P-OiP;S^Z1Nsa5IC7+}tmHBy#MAFCEr53P$Ig17k?yiswVtu*I@wdT#MYRLF*C!1=BJGd zA<;)D%A$)ww%;4us*#rLA6$wQ1&ymhiB+vXI;sso3nS=CIQX9_WDZH0_|MtTWF=u@ zQoUIx@RO+SGu-6@$;P)*Oo%o}W|{u*pMJZ}q}a?zzHc*cJ}n!jyEJ9JaTNnboCt={ zI;4xutzedYpUZCgu0It95Dw)Q9oWt%>7}|Yu&ACh*;{^-g11npv%Kkff*>Wrp%ST zeT5`)>veBfqS_>i^CR}VU)6?aiszJ9ER`MWIA(@-lo}i{-dbf$n5TN}t_lH)gggw-Tb;~?h^lSH$c)!2%O=iU_RJ)b!p~cxPEw*wen%!g z?D|V<-5XWh1ZpXJGh~9;OZaCOs~wiMQ0Fd9PQ&jDR{SA!;{$A3g}uXY?BSc1yPK?X z=~kMjy^Ya8waQAZ>6&cq-P-ygQ9{cOalROk%a<+Maqmf0$Yjvf^{XriTP(Kr!YCF; zKkjOP&_hb?-ZbNenzpTYX-1+H*Rdx#J)8%48B{G9H#e}nU zIO}Lrm5Kz=x??rJgG&O{W9N5}eC3>{#7_qQ90A0t3;^!d0c*v zLP-5`AxQafPyBN1%P310Uut*x#Fvem??Z{y26xbhjXGff0FaxT8W)FLPMxD&J+3`)oOegLteDEAFrUtPoW9 zRa45Pn8J-z*)S9q7N+ETH&1`W7A9coh>>yEj`-D_cm)^eOHlnX`Nt)1mf(Ob{AaNn zH}DsUfbu0vha!1xUxCi#YAI0?uHu8nRGaCZB2k3v02=k<=vmbMuOIo?3`t;wkPGWf zLhw7-sx`Sp;W;a3yBvk2`u#Jjoys@MIF<=splT77mM%OY+ikwWPhLpCUCDhPYT!v6 zy>FG`6LwledYxd5gPk*pOYMS4n1j}aO6(`<5+fDLW{@j6ot>Q@G|y07`-GcmI4FL> z+id0xVzM>8*5JK=#rUqnH{C7aHY^>~n;mhgAl$TkLtI?kYwrv({&Kv-X)@nv=Btfw zq-;j=7D!^IFX`2*yVq~#@SPo>pj<0NNOnCPt=ocW?1#$(Ffi_ij~}0(Gxw@I^c?eC zJ+teBI4M~p4kM9me0p;J#M%52v`s+2!)JDnN=5uxP%0JF*plcE63a**zpFDYGvR) z6H;tSnRz-EomJp6*KxPLj-0#LP%~g|wxdQYpP*^t^60rd-bMm$w8kT77oE}7XpV+i{Z^(wD%ukscoutDH37d08 zLiO7aSY{Jgb4;LgdeJe*2-_{0gaE{cOGvETI|6<2GxBbBk*zJ^cb7E~1gG`%Xyi8? z@F8Zf3%+Q#kw?s82YHY3q6FZZSxc9-N|hqn?tL<<i)~_8lv?v^Q6I4 zbGD8an|Khuyf>3F?fwbfXwe=yy2XW>uXNui71$$KU}v-#l-=r_acM~YYICp%pTFodID0c$n-wv>xkV-Wph7M znc6{b&xCLf5I$GE6|St3Io?-BZ@Bd&NjACHUpfF-sV8k@BfcFUy_qOAIX!wpC)`+d z?`$L^atlAdc^J^wo7V5qsZm4t5-2NNAF(zzflJ54?)p$Cqp%D8#lQW2M9fnazJ*d? zYy{RYi$qVjnd~2@0*_CwX%%O5%DP!$-L+^1eG}8me5%{)Yj(G8nY$Sw^#n(%GHG+T zKPdL{Kf$_gawB4e$zf#Ea|SRW_hWVbc1#Y^bOQj_A>+D8tO>*B1cYa-14Fo{gds=C z2Jg>)*xq*W{hNV|DkU-0rA`+=!Rwq=j?>hl2ClzXsRy|qUmtb!!m;L#G z2d~W$U;@C;H7-T;E4#a{?k7(h_DRIL2gxMFW0@4yh+Y4#Q(O74t^2j>sz49dM7TBg z1vjl6brt}Gc8M_K^#X8v-P6RFFiKhM8*E8`*uq7+7cZ5ybXzL*;!R%{a1h1xvrVoa z0W}jSY}q3LIRCxVQ`E8htGd+oW@T&Fqm>;{1AcY=W|=x%>?EOG4uh6)mK%x7)L!_o zcLcDTdb!iFF)rrHxUU-@Pzf)9s>{%2JUz+wftKik8cj506K5*V0zgLg#+7k!ZTVK; ztwt0^!J$PoZdt~M?57_%`v*vJcz2g{Z3YKxC`XC0Qz#aWi8}2Vn3&n%#MbIIEo+ZC zH`KpD!?7z3$ReVaxk9)?LpPR(<8 znVD9I9Md}?t-1q_zu%2$J3Ogze6uuA|ZhiSo!JFKB1$k!6)adY+b+C85*08PKmje`{*?6Ql^+A`R}QUX-Yaynl*4s zl^$6}zufh|o==_Jodzlsa~uFWu1kf6vuAvZtc88k^c)YfoEI;&vtHE7dWadb<8)3X z(sFYOTVQar&u}iH9wkP_@rM0<6!zoG17~tv|K{C|T4~r&Vd{J0P`I1l9-X?Eby2r= z`_!&zS<>?Seq7rtOmXBI;@6zhh;~^hEKMR#J5~J-7xBskf8mr{$^$oazx-@<;Rw8T zjc@-=mfymb#^zXLlEGBFe^)$Qx>87_=XG<;Da70L2`!20Rqb5#@?{S5wu0kA&6LCY zOaw}r`NR;QeLa7&DTLSJ{`BDVM-R#jgjVlFNxfp2GK>+@ybX@7q;)y|=*&(*dOOqi zDz54zFs!X!!dm)SDTKDsr+WS!4&}VX>G0L}2Z^w>eBuhuV{zZjX|bPDHsMR8uU}{Q zR8D>UI`PxZJ@$!6+KG^>oP z5Efq>TLI~a^BUEQSoNmrIz-~m8I<_}azY5LnQyuCTUd2d2%UV?T+Yn8ZkI@;<*>Yu zscj!rzw1shZ9FCI2=cP*V5PjHzWt)!%csYJNsv(Cm8o^C?)I3@_Tlizx0f%^Z%8=) zXdVltz(d~+Y!;E;K{(;GHAk`bCCAh&Q*R4p-AF&_EOGG4;mNGIVc$Gq;Ae(~a(%A{ zlFnI!z87d}JAw%gyxQ!T^|en&Wg34RaeAup>hkX8nKxOQ0Ff=CS319* z05yoc(joUu6;5_5ebK(n7SY%wbrX7$*Y2bIwLyY;Ln52TzlRs03q#iGh_lQ(BuYTUy&4D;k(-j`cQ;T{$^}XU-aJVIutjqH{6M4% z?J%WzR=sHZ%O+HprA!rv(Cza*-3TMpaHuWRn4tHoR*av@c?1t-}{b*GfgEnv{h75PM z3+8v_`8BHZh8M8p4f@QUz>)N%LVAg*q1MwM1HW3^6G1roxhx3BVXB%d!PPfRR3+!7H6sbn!hOg_X#SjRB+IpA}$w^1(MRW zS?{cazb-sM8zlufBxfR8pn8Ar?T94|y3hP!{{BU%{ Date: Thu, 18 Feb 2016 06:16:57 -0500 Subject: [PATCH 181/533] adds streaming example for tracking user mentions --- examples/streaming/track_users.py | 73 +++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 examples/streaming/track_users.py diff --git a/examples/streaming/track_users.py b/examples/streaming/track_users.py new file mode 100644 index 00000000..fab36d55 --- /dev/null +++ b/examples/streaming/track_users.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python + +# Copyright 2007-2016 The Python-Twitter Developers + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# ---------------------------------------------------------------------- + +# This file demonstrates how to track mentions of a specific set of users and +# archive those mentions to a local file. The output file will contain one +# JSON string per line per Tweet. + +# To use this example, replace the W/X/Y/Zs with your keys obtained from +# Twitter, or uncomment the lines for getting an environment variable. If you +# are using a virtualenv on Linux, you can set environment variables in the +# ~/VIRTUALENVDIR/bin/activate script. + +# If you need assistance with obtaining keys from Twitter, see the instructions +# in doc/getting_started.rst. + +import os +import json + +from twitter import Api + +# Either specify a set of keys here or use os.getenv('CONSUMER_KEY') style +# assignment: + +CONSUMER_KEY = 'WWWWWWWW' +# CONSUMER_KEY = os.getenv("CONSUMER_KEY", None) +CONSUMER_SECRET = 'XXXXXXXX' +# CONSUMER_SECRET = os.getenv("CONSUMER_SECRET", None) +ACCESS_TOKEN = 'YYYYYYYY' +# ACCESS_TOKEN = os.getenv("ACCESS_TOKEN", None) +ACCESS_TOKEN_SECRET = 'ZZZZZZZZ' +# ACCESS_TOKEN_SECRET = os.getenv("ACCESS_TOKEN_SECRET", None) + +# Users to watch for should be a list. This will be joined by Twitter and the +# data returned will be for any tweet mentioning: +# @twitter *OR* @twitterapi *OR* @support. +USERS = ['@twitter', + '@twitterapi', + '@support'] + +# Since we're going to be using a streaming endpoint, there is no need to worry +# about rate limits. +api = Api(CONSUMER_KEY, + CONSUMER_SECRET, + ACCESS_TOKEN, + ACCESS_TOKEN_SECRET) + + +def main(): + with open('output.txt', 'a') as f: + # api.GetStreamFilter will return a generator that yields one status + # message (i.e., Tweet) at a time as a JSON dictionary. + for line in api.GetStreamFilter(track=USERS): + f.write(json.dumps(line)) + f.write('\n') + + +if __name__ == '__main__': + main() From 51afad91f29f7f881d041f4e6fefa30debf222f3 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 18 Feb 2016 06:58:14 -0500 Subject: [PATCH 182/533] updates examples/shorten_url.py per issue #298 --- examples/shorten_url.py | 131 +++++++++++++++++++++++++++++++--------- 1 file changed, 103 insertions(+), 28 deletions(-) diff --git a/examples/shorten_url.py b/examples/shorten_url.py index 8c7653de..e07ee7a3 100755 --- a/examples/shorten_url.py +++ b/examples/shorten_url.py @@ -1,46 +1,77 @@ #!/usr/bin/env python -# -# Copyright 2007-2013 The Python-Twitter Developers -# + +# Copyright 2007-2016 The Python-Twitter Developers + # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at -# + # http://www.apache.org/licenses/LICENSE-2.0 -# + # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""A class that defines the default URL Shortener. - -TinyURL is provided as the default and as an example. -""" - -import urllib - - +# ---------------------------------------------------------------------- # Change History # # 2010-05-16 -# TinyURL example and the idea for this comes from a bug filed by -# acolorado with patch provided by ghills. Class implementation -# was done by bear. +# TinyURL example and the idea for this comes from a bug filed by +# acolorado with patch provided by ghills. Class implementation +# was done by @bear. # -# Issue 19 http://code.google.com/p/python-twitter/issues/detail?id=19 +# Issue #19: http://code.google.com/p/python-twitter/issues/detail?id=19 # +# 2016-02-18 +# Updated example with code to demonstrate passing a status message through +# a shortener and then off to PostUpdate. Implemenation by @jeremylow from +# bug filed by @immanuelfactor +# +# Issue #298: https://github.com/bear/python-twitter/issues/298 + +# ---------------------------------------------------------------------- +# This file demonstrates how to shorten all URLs contained within a Tweet +# by passing the tweet text to a shortener. In this case, we're using TinyURL +# since it does not require any real authentication for our purposes. If you +# are using a different service to shorten URLs, then you will need to modify +# the ShortenURL class to suit your needs. + +# Note that this example shortens all URLs contained within the Tweet text. + +# To use this example, replace the W/X/Y/Zs with your keys obtained from +# Twitter, or uncomment the lines for getting an environment variable. If you +# are using a virtualenv on Linux, you can set environment variables in the +# ~/VIRTUALENVDIR/bin/activate script. + +# If you need assistance with obtaining keys from Twitter, see the instructions +# in doc/getting_started.rst. + + +import re +try: + from urllib.request import urlopen +except: + from urllib2 import urlopen + +from twitter import Api +from twitter.twitter_utils import URL_REGEXP class ShortenURL(object): - """Helper class to make URL Shortener calls if/when required""" + """ A class that defines the default URL Shortener. + + TinyURL is provided as the default and as an example helper class to make + URL Shortener calls if/when required. """ def __init__(self, userid=None, password=None): - """Instantiate a new ShortenURL object - + """Instantiate a new ShortenURL object. TinyURL, which is used for this + example, does not require a userid or password, so you can try this + out without specifying either. + Args: userid: userid for any required authorization call [optional] password: password for any required authorization call [optional] @@ -49,24 +80,68 @@ def __init__(self, self.password = password def Shorten(self, - longURL): - """Call TinyURL API and returned shortened URL result - + long_url): + """ Call TinyURL API and returned shortened URL result. + Args: - longURL: URL string to shorten - + long_url: URL string to shorten + Returns: The shortened URL as a string Note: - longURL is required and no checks are made to ensure completeness + long_url is required and no checks are made to ensure completeness """ result = None - f = urllib.urlopen("http://tinyurl.com/api-create.php?url=%s" % longURL) + f = urlopen("http://tinyurl.com/api-create.php?url={0}".format( + long_url)) try: result = f.read() finally: f.close() - return result + # The following check is required for py2/py3 compatibility, since + # urlopen on py3 returns a bytes-object, and urlopen on py2 returns a + # string. + if isinstance(result, bytes): + return result.decode('utf8') + else: + return result + + +def _get_api(): + # Either specify a set of keys here or use os.getenv('CONSUMER_KEY') style + # assignment: + + CONSUMER_KEY = 'WWWWWWWW' + # CONSUMER_KEY = os.getenv("CONSUMER_KEY", None) + CONSUMER_SECRET = 'XXXXXXXX' + # CONSUMER_SECRET = os.getenv("CONSUMER_SECRET", None) + ACCESS_TOKEN = 'YYYYYYYY' + # ACCESS_TOKEN = os.getenv("ACCESS_TOKEN", None) + ACCESS_TOKEN_SECRET = 'ZZZZZZZZ' + # ACCESS_TOKEN_SECRET = os.getenv("ACCESS_TOKEN_SECRET", None) + + return Api(CONSUMER_KEY, + CONSUMER_SECRET, + ACCESS_TOKEN, + ACCESS_TOKEN_SECRET) + + +def PostStatusWithShortenedURL(status): + shortener = ShortenURL() + api = _get_api() + + # Find all URLs contained within the status message. Value of ``urls`` will + # be a list. + urls = re.findall(URL_REGEXP, status) + + for url in urls: + status = status.replace(url, shortener.Shorten(url), 1) + + api.PostUpdate(status) + + +if __name__ == '__main__': + PostStatusWithShortenedURL("this is a test: http://www.example.com/tests") From 91e652c04b8e645c3cf197dd17e1e177f2a7dc1c Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 15 Mar 2016 22:56:46 -0400 Subject: [PATCH 183/533] setup environment to be more modern; tweak Makefile; convert to CircleCI --- .gitignore | 5 +++ MANIFEST.in | 1 + Makefile | 27 ++++++++-------- circle.yml | 11 +++++++ requirements-test.txt | 10 ++++++ setup.cfg | 4 +++ setup.py | 71 ++++++++++++++++++++++++++++++++++--------- twitter/__init__.py | 11 +++++-- twitter/api.py | 16 +++++----- 9 files changed, 118 insertions(+), 38 deletions(-) create mode 100644 circle.yml create mode 100644 requirements-test.txt diff --git a/.gitignore b/.gitignore index cfadd8d1..22341bdb 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,8 @@ var sdist develop-eggs .installed.cfg +.eggs +.cache # Installer logs pip-log.txt @@ -25,6 +27,7 @@ pip-log.txt # Unit test / coverage reports .coverage .tox +htmlcov # PyCharm data .idea @@ -37,3 +40,5 @@ pip-log.txt #Environment env + +violations.flake8.txt diff --git a/MANIFEST.in b/MANIFEST.in index 0fb7f7a9..a04a897d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,4 +3,5 @@ include COPYING include LICENSE include NOTICE include *.rst +include requirements.txt prune .DS_Store diff --git a/Makefile b/Makefile index df2ad387..113ad176 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,17 @@ help: - @echo " env create a development environment using virtualenv" - @echo " deps install dependencies" + @echo " env install all production dependencies" + @echo " dev install all dev and production dependencies (virtualenv is assumed)" @echo " clean remove unwanted stuff" @echo " lint check style with flake8" - @echo " coverage run tests with code coverage" @echo " test run tests" + @echo " coverage run tests with code coverage" env: - sudo easy_install pip && \ - pip install virtualenv && \ - virtualenv env && \ - . env/bin/activate && \ - make deps + pip install -r requirements.txt -deps: - pip install -r requirements.txt --use-mirrors +dev: env + pip install -r requirements-test.txt clean: rm -fr build @@ -27,13 +23,16 @@ clean: lint: flake8 twitter > violations.flake8.txt -coverage: - nosetests --with-coverage --cover-package=twitter +test: lint + python setup.py test -test: - nosetests +coverage: clean test + coverage run --source=twitter setup.py test --addopts "--ignore=venv" + coverage html + coverage report build: clean + python setup.py check python setup.py sdist python setup.py bdist_wheel diff --git a/circle.yml b/circle.yml new file mode 100644 index 00000000..d2d3cf52 --- /dev/null +++ b/circle.yml @@ -0,0 +1,11 @@ +machine: + python: + version: 2.7.10 pre: + +dependencies: + override: + - make deps-test + +test: + override: + - make coverage \ No newline at end of file diff --git a/requirements-test.txt b/requirements-test.txt new file mode 100644 index 00000000..72077f25 --- /dev/null +++ b/requirements-test.txt @@ -0,0 +1,10 @@ +pytest>=2.8.7 +pytest-cov>=2.2.0 +pytest-runner>=2.6.2 +mccabe>=0.3.1 +flake8>=2.5.2 +mock>=1.3.0 +coverage>=4.0.3 +coveralls>=1.1 +codecov>=1.6.3 +check-manifest>=0.30 diff --git a/setup.cfg b/setup.cfg index 957d9cd8..7b6cf9cb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,10 @@ +[aliases] +test = pytest + [check-manifest] ignore = .travis.yml + circle.yml violations.flake8.txt [flake8] diff --git a/setup.py b/setup.py index 7ce420e9..39c1a6f0 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- +from __future__ import absolute_import, print_function + # # Copyright 2007-2016 The Python-Twitter Developers # @@ -14,33 +17,73 @@ # See the License for the specific language governing permissions and # limitations under the License. -'''The setup and build script for the python-twitter library.''' - import os +import sys +import re +import codecs from setuptools import setup, find_packages +from setuptools.command.test import test as TestCommand + +cwd = os.path.abspath(os.path.dirname(__file__)) + +class PyTest(TestCommand): + """You can pass a single string of arguments using the + --pytest-args or -a command-line option: + python setup.py test -a "--durations=5" + is equivalent to running: + py.test --durations=5 + """ + user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')] + + def initialize_options(self): + TestCommand.initialize_options(self) + self.pytest_args = ['--strict', '--verbose', '--tb=long', 'tests'] + def finalize_options(self): + TestCommand.finalize_options(self) -def read(*paths): - """Build a file path from *paths* and return the contents.""" - with open(os.path.join(*paths), 'r') as f: - return f.read() + def run_tests(self): + # import here, cause outside the eggs aren't loaded + import pytest + errno = pytest.main(self.pytest_args) + sys.exit(errno) +def read(filename): + with codecs.open(os.path.join(cwd, filename), 'rb', 'utf-8') as h: + return h.read() + +metadata = read(os.path.join(cwd, 'twitter', '__init__.py')) + +def extract_metaitem(meta): + # swiped from https://hynek.me 's attr package + meta_match = re.search(r"""^__{meta}__\s+=\s+['\"]([^'\"]*)['\"]""".format(meta=meta), + metadata, re.MULTILINE) + if meta_match: + return meta_match.group(1) + raise RuntimeError('Unable to find __{meta}__ string.'.format(meta=meta)) + setup( name='python-twitter', - version='3.0rc1', - author='The Python-Twitter Developers', - author_email='python-twitter@googlegroups.com', - license='Apache License 2.0', - url='https://github.com/bear/python-twitter', - keywords='twitter api', - description='A Python wrapper around the Twitter API', + version=extract_metaitem('version'), + license=extract_metaitem('license'), + description=extract_metaitem('description'), long_description=(read('README.rst') + '\n\n' + read('AUTHORS.rst') + '\n\n' + read('CHANGES')), - packages=find_packages(exclude=['tests*']), + author=extract_metaitem('author'), + author_email=extract_metaitem('email'), + maintainer=extract_metaitem('author'), + maintainer_email=extract_metaitem('email'), + url=extract_metaitem('url'), + download_url=extract_metaitem('download_url'), + packages=find_packages(exclude=('tests', 'docs')), + platforms=['Any'], install_requires=['future', 'requests', 'requests-oauthlib'], + setup_requires=['pytest-runner'], + tests_require=['pytest'], + keywords='twitter api', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', diff --git a/twitter/__init__.py b/twitter/__init__.py index c43a276d..2e882376 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -19,8 +19,15 @@ """A library that provides a Python interface to the Twitter API""" from __future__ import absolute_import -__author__ = 'python-twitter@googlegroups.com' -__version__ = '3.0rc1' +__author__ = 'The Python-Twitter Developers' +__email__ = 'python-twitter@googlegroups.com' +__copyright__ = 'Copyright (c) 2007-2016 The Python-Twitter Developers' +__license__ = 'Apache License 2.0' +__version__ = '3.0rc1' +__url__ = 'https://github.com/bear/python-twitter' +__download_url__ = 'https://pypi.python.org/pypi/python-twitter' +__description__ = 'A Python wrapper around the Twitter API' + import json # noqa diff --git a/twitter/api.py b/twitter/api.py index a7d9ebc5..9e539a5c 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -36,15 +36,15 @@ from past.utils import old_div try: - # python 3 - from urllib.parse import urlparse, urlunparse, urlencode - from urllib.request import urlopen - from urllib.request import __version__ as urllib_version + # python 3 + from urllib.parse import urlparse, urlunparse, urlencode + from urllib.request import urlopen + from urllib.request import __version__ as urllib_version except ImportError: - from urlparse import urlparse, urlunparse - from urllib2 import urlopen - from urllib import urlencode - from urllib import __version__ as urllib_version + from urlparse import urlparse, urlunparse + from urllib2 import urlopen + from urllib import urlencode + from urllib import __version__ as urllib_version from twitter import (__version__, _FileCache, json, DirectMessage, List, Status, Trend, TwitterError, User, UserStatus) From 9a90658a4cfc6e01956e134c232a9d8049e1d56a Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 15 Mar 2016 22:58:42 -0400 Subject: [PATCH 184/533] fix cut-n-paste glitch in circle config --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index d2d3cf52..7eba2f69 100644 --- a/circle.yml +++ b/circle.yml @@ -1,6 +1,6 @@ machine: python: - version: 2.7.10 pre: + version: 2.7.10 dependencies: override: From 99052737182314462d516eab9186f9aba5f03295 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 15 Mar 2016 23:00:30 -0400 Subject: [PATCH 185/533] and.... make sure you use the new makefile targets.... --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 7eba2f69..4aeee3d3 100644 --- a/circle.yml +++ b/circle.yml @@ -4,7 +4,7 @@ machine: dependencies: override: - - make deps-test + - make dev test: override: From 4881ce0a9493ee499c9ae2bd928a7eafe169e15c Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 15 Mar 2016 23:06:52 -0400 Subject: [PATCH 186/533] add an info target; adjust circle config to force pip upgrade and to run info target before tests --- Makefile | 5 +++++ circle.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 113ad176..71b359d3 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,11 @@ env: dev: env pip install -r requirements-test.txt +info: + python --version + pyenv --version + pip --version + clean: rm -fr build rm -fr dist diff --git a/circle.yml b/circle.yml index 4aeee3d3..11427db7 100644 --- a/circle.yml +++ b/circle.yml @@ -4,8 +4,13 @@ machine: dependencies: override: + - pip install -U pip - make dev test: + pre: + - make info + - uname -a + - lsb_release -a override: - make coverage \ No newline at end of file From 844bfae790ab5c573865a9b1775b4d37be71fce4 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 15 Mar 2016 23:35:39 -0400 Subject: [PATCH 187/533] remove apikey.py and it's import from the api tests - use environment vars instead --- tests/__init__.py | 0 tests/apikey.py | 4 ---- 2 files changed, 4 deletions(-) delete mode 100644 tests/__init__.py delete mode 100644 tests/apikey.py diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/apikey.py b/tests/apikey.py deleted file mode 100644 index 7fdb8d75..00000000 --- a/tests/apikey.py +++ /dev/null @@ -1,4 +0,0 @@ -CONSUMER_KEY = '' -CONSUMER_SECRET = '' -ACCESS_TOKEN_KEY = '' -ACCESS_TOKEN_SECRET = '' From 91d425dc2744fe7c2d0d879d316604fa8785c94e Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Tue, 15 Mar 2016 23:36:23 -0400 Subject: [PATCH 188/533] make pytest ignore venv directory which is present in circleci by default --- pytest.ini | 2 ++ setup.py | 26 +------------------------- tests/test_api.py | 8 ++++---- 3 files changed, 7 insertions(+), 29 deletions(-) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..5a651cd2 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +norecursedirs = venv diff --git a/setup.py b/setup.py index 39c1a6f0..36ce1782 100755 --- a/setup.py +++ b/setup.py @@ -18,37 +18,13 @@ # limitations under the License. import os -import sys import re import codecs from setuptools import setup, find_packages -from setuptools.command.test import test as TestCommand -cwd = os.path.abspath(os.path.dirname(__file__)) - -class PyTest(TestCommand): - """You can pass a single string of arguments using the - --pytest-args or -a command-line option: - python setup.py test -a "--durations=5" - is equivalent to running: - py.test --durations=5 - """ - user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')] - - def initialize_options(self): - TestCommand.initialize_options(self) - self.pytest_args = ['--strict', '--verbose', '--tb=long', 'tests'] - - def finalize_options(self): - TestCommand.finalize_options(self) - - def run_tests(self): - # import here, cause outside the eggs aren't loaded - import pytest - errno = pytest.main(self.pytest_args) - sys.exit(errno) +cwd = os.path.abspath(os.path.dirname(__file__)) def read(filename): with codecs.open(os.path.join(cwd, filename), 'rb', 'utf-8') as h: diff --git a/tests/test_api.py b/tests/test_api.py index 1f0d2f4c..396dcadb 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -6,11 +6,11 @@ import unittest import twitter -from .apikey import (CONSUMER_KEY, - CONSUMER_SECRET, - ACCESS_TOKEN_KEY, - ACCESS_TOKEN_SECRET) +CONSUMER_KEY = os.getenv('CONSUMER_KEY', None) +CONSUMER_SECRET = os.getenv('CONSUMER_SECRET', None) +ACCESS_TOKEN_KEY = os.getenv('ACCESS_TOKEN_KEY', None) +ACCESS_TOKEN_SECRET = os.getenv('ACCESS_TOKEN_SECRET', None) @unittest.skipIf(not CONSUMER_KEY and not CONSUMER_SECRET, "No tokens provided") class ApiTest(unittest.TestCase): From 689cca6a61b550c180f791d8c9a67ecfb9afd94e Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Wed, 16 Mar 2016 18:23:48 -0400 Subject: [PATCH 189/533] build trigger --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 11427db7..8ea57944 100644 --- a/circle.yml +++ b/circle.yml @@ -13,4 +13,4 @@ test: - uname -a - lsb_release -a override: - - make coverage \ No newline at end of file + - make coverage From 095eac158b1bd020ec1c46d6e32bfd7374c4dbc7 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Wed, 16 Mar 2016 18:29:37 -0400 Subject: [PATCH 190/533] lint fixes --- twitter/api.py | 6 +----- twitter/ratelimit.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index ed063968..77a50cc2 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -26,16 +26,12 @@ import time import base64 import re -import datetime -from calendar import timegm import requests from requests_oauthlib import OAuth1 import io import warnings from uuid import uuid4 -from past.utils import old_div - try: # python 3 from urllib.parse import urlparse, urlunparse, urlencode @@ -142,7 +138,7 @@ def __init__(self, base_url=None, stream_url=None, upload_url=None, - chunk_size=1024*1024, + chunk_size=1024 * 1024, use_gzip_compression=False, debugHTTP=False, timeout=None, diff --git a/twitter/ratelimit.py b/twitter/ratelimit.py index 0e259136..e0b79c89 100644 --- a/twitter/ratelimit.py +++ b/twitter/ratelimit.py @@ -3,7 +3,7 @@ try: from urllib.parse import urlparse except ImportError: - from urlparse import urlparse, urlunparse + from urlparse import urlparse from twitter.twitter_utils import enf_type From e09469b61970694ddefccc5479af7df9d7c116c9 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Wed, 16 Mar 2016 18:36:43 -0400 Subject: [PATCH 191/533] use the testing requirements file from jeremy's work --- Makefile | 2 +- requirements-test.txt | 10 ---------- requirements.testing.txt | 11 +++++++++++ 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 requirements-test.txt diff --git a/Makefile b/Makefile index 71b359d3..a4cb08c0 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ env: pip install -r requirements.txt dev: env - pip install -r requirements-test.txt + pip install -r requirements.testing.txt info: python --version diff --git a/requirements-test.txt b/requirements-test.txt deleted file mode 100644 index 72077f25..00000000 --- a/requirements-test.txt +++ /dev/null @@ -1,10 +0,0 @@ -pytest>=2.8.7 -pytest-cov>=2.2.0 -pytest-runner>=2.6.2 -mccabe>=0.3.1 -flake8>=2.5.2 -mock>=1.3.0 -coverage>=4.0.3 -coveralls>=1.1 -codecov>=1.6.3 -check-manifest>=0.30 diff --git a/requirements.testing.txt b/requirements.testing.txt index d3e9f9e0..06fb367c 100644 --- a/requirements.testing.txt +++ b/requirements.testing.txt @@ -2,3 +2,14 @@ future requests requests_oauthlib responses + +pytest>=2.8.7 +pytest-cov>=2.2.0 +pytest-runner>=2.6.2 +mccabe>=0.3.1 +flake8>=2.5.2 +mock>=1.3.0 +coverage>=4.0.3 +coveralls>=1.1 +codecov>=1.6.3 +check-manifest>=0.30 From 22e3ffe86f06adab8e8b853c8ac9be7ac1601002 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 21 Jan 2016 21:26:40 -0500 Subject: [PATCH 192/533] first pass at unified models --- twitter/__init__.py | 21 ++-- twitter/api.py | 3 +- twitter/models.py | 239 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 253 insertions(+), 10 deletions(-) create mode 100644 twitter/models.py diff --git a/twitter/__init__.py b/twitter/__init__.py index 2e882376..6f4b5cbc 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -38,14 +38,19 @@ from ._file_cache import _FileCache # noqa from .error import TwitterError # noqa -from .direct_message import DirectMessage # noqa -from .hashtag import Hashtag # noqa from .parse_tweet import ParseTweet # noqa -from .trend import Trend # noqa -from .url import Url # noqa + +from .models import ( + Category, + DirectMessage, + Hashtag, + List, + Media, + Trend, + Url, + User, + UserStatus, +) + from .status import Status # noqa -from .user import User, UserStatus # noqa -from .category import Category # noqa -from .media import Media # noqa -from .list import List # noqa from .api import Api # noqa diff --git a/twitter/api.py b/twitter/api.py index 77a50cc2..afa6fc23 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -44,8 +44,7 @@ from urllib import __version__ as urllib_version from twitter import (__version__, _FileCache, json, DirectMessage, List, - Status, Trend, TwitterError, User, UserStatus) -from twitter.category import Category + Status, Trend, TwitterError, User, UserStatus, Category) from twitter.ratelimit import RateLimit diff --git a/twitter/models.py b/twitter/models.py new file mode 100644 index 00000000..c02f7f37 --- /dev/null +++ b/twitter/models.py @@ -0,0 +1,239 @@ +import json + + +class TwitterModel(object): + + """ Base class from which all twitter models will inherit. """ + + def __init__(self, **kwargs): + self.param_defaults = {} + + def __str__(self): + return self.AsJsonString() + + def __eq__(self, other): + return other and \ + self.AsDict() == other.AsDict() + + def __ne__(self, other): + return not self.__eq__(other) + + def AsJsonString(self): + return json.dumps(self.AsDict(), sort_keys=True) + + def AsDict(self): + data = {} + for (key, value) in self.param_defaults.items(): + if getattr(getattr(self, key, None), 'AsDict', None): + data[key] = getattr(self, key).AsDict() + elif getattr(self, key, None): + data[key] = getattr(self, key, None) + return data + + @classmethod + def NewFromJsonDict(cls, data, **kwargs): + """ Create a new instance based on a JSON dict. + + Args: + data: A JSON dict, as converted from the JSON in the twitter API + + Returns: + A twitter.Media instance + """ + + if kwargs: + for key, val in kwargs.items(): + data[key] = val + + return cls(**data) + + +class Media(TwitterModel): + + """A class representing the Media component of a tweet. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'id': None, + 'expanded_url': None, + 'display_url': None, + 'url': None, + 'media_url_https': None, + 'media_url': None, + 'type': None, + } + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + def __repr__(self): + """ Representation of this twitter.Media instance. + + Returns: + Media(ID=XXX, type=YYY, display_url='ZZZ') + """ + return "Media(ID={mid}, Type={type}, DisplayURL='{url}')".format( + mid=self.id, + type=self.type, + url=self.display_url) + + +class List(TwitterModel): + + """A class representing the List structure used by the twitter API. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'id': None, + 'name': None, + 'slug': None, + 'description': None, + 'full_name': None, + 'mode': None, + 'uri': None, + 'member_count': None, + 'subscriber_count': None, + 'following': None, + 'user': None} + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + +class Category(TwitterModel): + + """A class representing the suggested user category structure. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'name': None, + 'slug': None, + 'size': None, + } + + for (param, default) in self.param_defaults.iteritems(): + setattr(self, param, kwargs.get(param, default)) + + +class DirectMessage(TwitterModel): + + """A class representing a Direct Message. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'id': None, + 'created_at': None, + 'sender_id': None, + 'sender_screen_name': None, + 'recipient_id': None, + 'recipient_screen_name': None, + 'text': None} + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + +class Trend(TwitterModel): + + """ A class representing a trending topic. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'name': None, + 'query': None, + 'timestamp': None, + 'url': None} + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + +class Hashtag(TwitterModel): + + """ A class representing a twitter hashtag. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'text': None + } + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + +class Url(TwitterModel): + + """ A class representing an URL contained in a tweet. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'url': None, + 'expanded_url': None} + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + +class UserStatus(TwitterModel): + + """ A class representing the UserStatus structure. This is an abbreviated + form of the twitter.User object. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'name': None, + 'id': None, + 'id_str': None, + 'screen_name': None, + 'following': None, + 'followed_by': None} + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + +class User(TwitterModel): + + """A class representing the User structure. """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'id': None, + 'name': None, + 'screen_name': None, + 'location': None, + 'description': None, + 'default_profile': None, + 'default_profile_image': None, + 'profile_image_url': None, + 'profile_background_tile': None, + 'profile_background_image_url': None, + 'profile_banner_url': None, + 'profile_sidebar_fill_color': None, + 'profile_background_color': None, + 'profile_link_color': None, + 'profile_text_color': None, + 'protected': None, + 'utc_offset': None, + 'time_zone': None, + 'followers_count': None, + 'friends_count': None, + 'statuses_count': None, + 'favourites_count': None, + 'url': None, + 'status': None, + 'geo_enabled': None, + 'verified': None, + 'lang': None, + 'notifications': None, + 'contributors_enabled': None, + 'created_at': None, + 'listed_count': None} + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + def __repr__(self): + return "User(ID={uid}, Screenname={sn})".format( + uid=self.id, + sn=self.screen_name) From 9ed8e2732621ec0241c2c4ea13c453c707c47bfd Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 23 Jan 2016 13:46:29 -0500 Subject: [PATCH 193/533] adds __repr__ method for all models and fixes constructor for List objects --- twitter/models.py | 58 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 51 insertions(+), 7 deletions(-) diff --git a/twitter/models.py b/twitter/models.py index c02f7f37..60be003a 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -67,13 +67,8 @@ def __init__(self, **kwargs): setattr(self, param, kwargs.get(param, default)) def __repr__(self): - """ Representation of this twitter.Media instance. - - Returns: - Media(ID=XXX, type=YYY, display_url='ZZZ') - """ - return "Media(ID={mid}, Type={type}, DisplayURL='{url}')".format( - mid=self.id, + return "Media(ID={media_id}, Type={type}, DisplayURL='{url}')".format( + media_id=self.id, type=self.type, url=self.display_url) @@ -99,6 +94,16 @@ def __init__(self, **kwargs): for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + if 'user' in kwargs: + self.user = User.NewFromJsonDict(kwargs.get('user')) + + def __repr__(self): + return "List(ID={list_id}, FullName={full_name}, Slug={slug}, User={user})".format( + list_id=self.id, + full_name=self.full_name, + slug=self.slug, + user=self.user.screen_name) + class Category(TwitterModel): @@ -114,6 +119,12 @@ def __init__(self, **kwargs): for (param, default) in self.param_defaults.iteritems(): setattr(self, param, kwargs.get(param, default)) + def __repr__(self): + return "Category(Name={name}, Slug={slug}, Size={size})".format( + name=self.name, + slug=self.slug, + size=self.size) + class DirectMessage(TwitterModel): @@ -132,6 +143,17 @@ def __init__(self, **kwargs): for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + def __repr__(self): + if self.text and len(self.text) > 140: + text = self.text[:140] + "[...]" + else: + text = self.text + return "DirectMessage(ID={dm_id}, Sender={sender}, Time={time}, Text={text})".format( + dm_id=self.id, + sender=self.sender_screen_name, + time=self.created_at, + text=text) + class Trend(TwitterModel): @@ -147,6 +169,12 @@ def __init__(self, **kwargs): for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + def __repr__(self): + return "Trend(Name={name}, Time={ts}, URL={url})".format( + name=self.name, + ts=self.timestamp, + url=self.url) + class Hashtag(TwitterModel): @@ -160,6 +188,10 @@ def __init__(self, **kwargs): for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + def __repr__(self): + return "Hashtag(Text={text})".format( + text=self.text) + class Url(TwitterModel): @@ -173,6 +205,11 @@ def __init__(self, **kwargs): for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + def __repr__(self): + return "URL(URL={url}, ExpandedURL={eurl})".format( + url=self.url, + eurl=self.expanded_url) + class UserStatus(TwitterModel): @@ -191,6 +228,13 @@ def __init__(self, **kwargs): for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + def __repr__(self): + return "UserStatus(ID={uid}, Name={sn}, Following={fng}, Followed={fed})".format( + uid=self.id, + sn=self.screen_name, + fng=self.following, + fed=self.followed_by) + class User(TwitterModel): From 0e44e76f7992f2f81af49cf85acecbddd620389e Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 23 Jan 2016 13:50:14 -0500 Subject: [PATCH 194/533] updates Trend objects to reflect info avail from twitter. --- twitter/models.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/twitter/models.py b/twitter/models.py index 60be003a..6e4c1e13 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -164,7 +164,11 @@ def __init__(self, **kwargs): 'name': None, 'query': None, 'timestamp': None, - 'url': None} + 'url': None, + 'volume': None, + 'events': None, + 'promoted_content': None + } for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) From 169218bd2a0f4a901d9d3270355dc244f2acba77 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 13 Feb 2016 14:53:51 -0500 Subject: [PATCH 195/533] update for twitter.UserStatus object to include connections --- tests/test_api_30.py | 1 + twitter/models.py | 29 ++++++++++++++++++++++------- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/tests/test_api_30.py b/tests/test_api_30.py index 86c28016..a654630e 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1424,6 +1424,7 @@ def testLookupFriendshipMute(self): match_querystring=True, status=200) resp = self.api.LookupFriendship(screen_name='dickc') + self.assertEqual(resp[0].blocking, False) self.assertEqual(resp[0].muting, True) @responses.activate diff --git a/twitter/models.py b/twitter/models.py index 6e4c1e13..f1acc046 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -12,8 +12,7 @@ def __str__(self): return self.AsJsonString() def __eq__(self, other): - return other and \ - self.AsDict() == other.AsDict() + return other and self.AsDict() == other.AsDict() def __ne__(self, other): return not self.__eq__(other) @@ -220,24 +219,40 @@ class UserStatus(TwitterModel): """ A class representing the UserStatus structure. This is an abbreviated form of the twitter.User object. """ + connections = {'following': False, + 'followed_by': False, + 'following_received': False, + 'following_requested': False, + 'blocking': False, + 'muting': False} + def __init__(self, **kwargs): self.param_defaults = { 'name': None, 'id': None, 'id_str': None, 'screen_name': None, - 'following': None, - 'followed_by': None} + 'following': False, + 'followed_by': False, + 'following_received': False, + 'following_requested': False, + 'blocking': False, + 'muting': False} for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) + if 'connections' in kwargs: + for param in self.connections: + if param in kwargs['connections']: + setattr(self, param, True) + def __repr__(self): - return "UserStatus(ID={uid}, Name={sn}, Following={fng}, Followed={fed})".format( + conns = [param for param in self.connections if getattr(self, param)] + return "UserStatus(ID={uid}, Name={sn}, Connections=[{conn}])".format( uid=self.id, sn=self.screen_name, - fng=self.following, - fed=self.followed_by) + conn=", ".join(conns)) class User(TwitterModel): From 73f07a87040ed18b5328cd663ac482bbe5aa5052 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 13 Feb 2016 20:54:43 -0500 Subject: [PATCH 196/533] moves twitter.Status to models, inherits from TwitterModel, reworks tests for properties --- tests/test_status.py | 42 ++++---- twitter/__init__.py | 2 +- twitter/models.py | 247 +++++++++++++++++++++++++++++++++++++------ 3 files changed, 235 insertions(+), 56 deletions(-) diff --git a/tests/test_status.py b/tests/test_status.py index 6ad3cc02..517358fb 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -41,52 +41,52 @@ def testProperties(self): created_at = calendar.timegm((2007, 1, 26, 23, 17, 14, -1, -1, -1)) status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.created_at) - self.assertEqual(created_at, status.CreatedAtInSeconds) + self.assertEqual(created_at, status.created_at_in_seconds) status.now = created_at + 10 - self.assertEqual('about 10 seconds ago', status.RelativeCreatedAt) + self.assertEqual('about 10 seconds ago', status.relative_created_at) status.user = self._GetSampleUser() self.assertEqual(718443, status.user.id) def _ParseDate(self, string): return calendar.timegm(time.strptime(string, '%b %d %H:%M:%S %Y')) - def testRelativeCreatedAt(self): - '''Test various permutations of Status RelativeCreatedAt''' + def test_relative_created_at(self): + '''Test various permutations of Status relative_created_at''' status = twitter.Status(created_at='Fri Jan 01 12:00:00 +0000 2007') status.now = self._ParseDate('Jan 01 12:00:00 2007') - self.assertEqual('about a second ago', status.RelativeCreatedAt) + self.assertEqual('about a second ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:00:01 2007') - self.assertEqual('about a second ago', status.RelativeCreatedAt) + self.assertEqual('about a second ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:00:02 2007') - self.assertEqual('about 2 seconds ago', status.RelativeCreatedAt) + self.assertEqual('about 2 seconds ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:00:05 2007') - self.assertEqual('about 5 seconds ago', status.RelativeCreatedAt) + self.assertEqual('about 5 seconds ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:00:50 2007') - self.assertEqual('about a minute ago', status.RelativeCreatedAt) + self.assertEqual('about a minute ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:01:00 2007') - self.assertEqual('about a minute ago', status.RelativeCreatedAt) + self.assertEqual('about a minute ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:01:10 2007') - self.assertEqual('about a minute ago', status.RelativeCreatedAt) + self.assertEqual('about a minute ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:02:00 2007') - self.assertEqual('about 2 minutes ago', status.RelativeCreatedAt) + self.assertEqual('about 2 minutes ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:31:50 2007') - self.assertEqual('about 31 minutes ago', status.RelativeCreatedAt) + self.assertEqual('about 31 minutes ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 12:50:00 2007') - self.assertEqual('about an hour ago', status.RelativeCreatedAt) + self.assertEqual('about an hour ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 13:00:00 2007') - self.assertEqual('about an hour ago', status.RelativeCreatedAt) + self.assertEqual('about an hour ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 13:10:00 2007') - self.assertEqual('about an hour ago', status.RelativeCreatedAt) + self.assertEqual('about an hour ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 14:00:00 2007') - self.assertEqual('about 2 hours ago', status.RelativeCreatedAt) + self.assertEqual('about 2 hours ago', status.relative_created_at) status.now = self._ParseDate('Jan 01 19:00:00 2007') - self.assertEqual('about 7 hours ago', status.RelativeCreatedAt) + self.assertEqual('about 7 hours ago', status.relative_created_at) status.now = self._ParseDate('Jan 02 11:30:00 2007') - self.assertEqual('about a day ago', status.RelativeCreatedAt) + self.assertEqual('about a day ago', status.relative_created_at) status.now = self._ParseDate('Jan 04 12:00:00 2007') - self.assertEqual('about 3 days ago', status.RelativeCreatedAt) + self.assertEqual('about 3 days ago', status.relative_created_at) status.now = self._ParseDate('Feb 04 12:00:00 2007') - self.assertEqual('about 34 days ago', status.RelativeCreatedAt) + self.assertEqual('about 34 days ago', status.relative_created_at) @unittest.skipIf(sys.version_info.major >= 3, "skipped until fix found for v3 python") def testAsJsonString(self): diff --git a/twitter/__init__.py b/twitter/__init__.py index 6f4b5cbc..ae59f91d 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -52,5 +52,5 @@ UserStatus, ) -from .status import Status # noqa +from .models import Status # noqa from .api import Api # noqa diff --git a/twitter/models.py b/twitter/models.py index f1acc046..f3e8ba6e 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -1,4 +1,12 @@ import json +from calendar import timegm + +try: + from rfc822 import parsedate +except ImportError: + from email.utils import parsedate + +import time class TwitterModel(object): @@ -115,7 +123,7 @@ def __init__(self, **kwargs): 'size': None, } - for (param, default) in self.param_defaults.iteritems(): + for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) def __repr__(self): @@ -160,13 +168,13 @@ class Trend(TwitterModel): def __init__(self, **kwargs): self.param_defaults = { + 'events': None, 'name': None, + 'promoted_content': None, 'query': None, 'timestamp': None, 'url': None, 'volume': None, - 'events': None, - 'promoted_content': None } for (param, default) in self.param_defaults.items(): @@ -202,8 +210,8 @@ class Url(TwitterModel): def __init__(self, **kwargs): self.param_defaults = { - 'url': None, - 'expanded_url': None} + 'expanded_url': None, + 'url': None} for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) @@ -224,20 +232,22 @@ class UserStatus(TwitterModel): 'following_received': False, 'following_requested': False, 'blocking': False, - 'muting': False} + 'muting': False, + } def __init__(self, **kwargs): self.param_defaults = { - 'name': None, - 'id': None, - 'id_str': None, - 'screen_name': None, - 'following': False, + 'blocking': False, 'followed_by': False, + 'following': False, 'following_received': False, 'following_requested': False, - 'blocking': False, - 'muting': False} + 'id': None, + 'id_str': None, + 'muting': False, + 'name': None, + 'screen_name': None, + } for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) @@ -261,37 +271,38 @@ class User(TwitterModel): def __init__(self, **kwargs): self.param_defaults = { - 'id': None, - 'name': None, - 'screen_name': None, - 'location': None, - 'description': None, + 'contributors_enabled': None, + 'created_at': None, 'default_profile': None, 'default_profile_image': None, - 'profile_image_url': None, - 'profile_background_tile': None, + 'description': None, + 'favourites_count': None, + 'followers_count': None, + 'friends_count': None, + 'geo_enabled': None, + 'id': None, + 'lang': None, + 'listed_count': None, + 'location': None, + 'name': None, + 'notifications': None, + 'profile_background_color': None, 'profile_background_image_url': None, + 'profile_background_tile': None, 'profile_banner_url': None, - 'profile_sidebar_fill_color': None, - 'profile_background_color': None, + 'profile_image_url': None, 'profile_link_color': None, + 'profile_sidebar_fill_color': None, 'profile_text_color': None, 'protected': None, - 'utc_offset': None, - 'time_zone': None, - 'followers_count': None, - 'friends_count': None, + 'screen_name': None, + 'status': None, 'statuses_count': None, - 'favourites_count': None, + 'time_zone': None, 'url': None, - 'status': None, - 'geo_enabled': None, + 'utc_offset': None, 'verified': None, - 'lang': None, - 'notifications': None, - 'contributors_enabled': None, - 'created_at': None, - 'listed_count': None} + } for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) @@ -300,3 +311,171 @@ def __repr__(self): return "User(ID={uid}, Screenname={sn})".format( uid=self.id, sn=self.screen_name) + + +class Status(TwitterModel): + """A class representing the Status structure used by the twitter API. + """ + + def __init__(self, **kwargs): + self.param_defaults = { + 'contributors': None, + 'coordinates': None, + 'created_at': None, + 'current_user_retweet': None, + 'favorite_count': None, + 'favorited': None, + 'geo': None, + 'hashtags': None, + 'id': None, + 'id_str': None, + 'in_reply_to_screen_name': None, + 'in_reply_to_status_id': None, + 'in_reply_to_user_id': None, + 'lang': None, + 'location': None, + 'media': None, + 'now': None, + 'place': None, + 'possibly_sensitive': None, + 'retweet_count': None, + 'retweeted': None, + 'retweeted_status': None, + 'scopes': None, + 'source': None, + 'text': None, + 'truncated': None, + 'urls': None, + 'user': None, + 'user_mentions': None, + 'withheld_copyright': None, + 'withheld_in_countries': None, + 'withheld_scope': None, + } + + for (param, default) in self.param_defaults.items(): + setattr(self, param, kwargs.get(param, default)) + + @property + def created_at_in_seconds(self): + """Get the time this status message was posted, in seconds since the epoch. + + Returns: + The time this status message was posted, in seconds since the epoch. + """ + return timegm(parsedate(self.created_at)) + + @property + def relative_created_at(self): + """Get a human readable string representing the posting time + + Returns: + A human readable string representing the posting time + """ + fudge = 1.25 + delta = int(self.now) - int(self.created_at_in_seconds) + + if delta < (1 * fudge): + return 'about a second ago' + elif delta < (60 * (1 / fudge)): + return 'about %d seconds ago' % (delta) + elif delta < (60 * fudge): + return 'about a minute ago' + elif delta < (60 * 60 * (1 / fudge)): + return 'about %d minutes ago' % (delta / 60) + elif delta < (60 * 60 * fudge) or delta / (60 * 60) == 1: + return 'about an hour ago' + elif delta < (60 * 60 * 24 * (1 / fudge)): + return 'about %d hours ago' % (delta / (60 * 60)) + elif delta < (60 * 60 * 24 * fudge) or delta / (60 * 60 * 24) == 1: + return 'about a day ago' + else: + return 'about %d days ago' % (delta / (60 * 60 * 24)) + + @property + def Now(self): + """Get the wallclock time for this status message. + + Used to calculate relative_created_at. Defaults to the time + the object was instantiated. + + Returns: + Whatever the status instance believes the current time to be, + in seconds since the epoch. + """ + if self._now is None: + self._now = time.time() + return self._now + + @Now.setter + def Now(self, now): + self._now = now + + def __repr__(self): + """A string representation of this twitter.Status instance. + The return value is the ID of status, username and datetime. + Returns: + A string representation of this twitter.Status instance with + the ID of status, username and datetime. + """ + if self.user: + representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % \ + (self.id, self.user.screen_name, self.created_at) + else: + representation = "Status(ID=%s, created_at='%s')" % (self.id, self.created_at) + return representation + + @staticmethod + def NewFromJsonDict(data): + """Create a new instance based on a JSON dict. + + Args: + data: A JSON dict, as converted from the JSON in the twitter API + Returns: + A twitter.Status instance + """ + if 'user' in data: + from twitter import User + user = User.NewFromJsonDict(data['user']) + else: + user = None + + if 'retweeted_status' in data: + retweeted_status = Status.NewFromJsonDict(data['retweeted_status']) + else: + retweeted_status = None + + if 'current_user_retweet' in data: + current_user_retweet = data['current_user_retweet']['id'] + else: + current_user_retweet = None + + urls = None + user_mentions = None + hashtags = None + media = list() + + if 'entities' in data: + if 'urls' in data['entities']: + print(data['entities']['urls']) + urls = [Url.NewFromJsonDict(u) for u in data['entities']['urls']] + if 'user_mentions' in data['entities']: + from twitter import User + + user_mentions = [User.NewFromJsonDict(u) for u in data['entities']['user_mentions']] + if 'hashtags' in data['entities']: + hashtags = [Hashtag.NewFromJsonDict(h) for h in data['entities']['hashtags']] + if 'media' in data['entities']: + media = [Media.NewFromJsonDict(m) for m in data['entities']['media']] + + # the new extended entities + if 'extended_entities' in data: + if 'media' in data['extended_entities']: + media = [Media.NewFromJsonDict(m) for m in data['extended_entities']['media']] + + return super(Status, Status).NewFromJsonDict(data, + user=user, + urls=urls, + user_mentions=user_mentions, + hashtags=hashtags, + media=media) From 484695f2eb91d6b8e287cefc31f9475feea0ae6a Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 16 Feb 2016 07:08:22 -0500 Subject: [PATCH 197/533] partial work on creation of models - isinstance(value) should be getattr() --- twitter/models.py | 124 +++++++++++++++++++++++++++++----------------- 1 file changed, 79 insertions(+), 45 deletions(-) diff --git a/twitter/models.py b/twitter/models.py index f3e8ba6e..a7b3779e 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -29,10 +29,34 @@ def AsJsonString(self): return json.dumps(self.AsDict(), sort_keys=True) def AsDict(self): + """ Create a dictionary representation of the object. Please see inline + comments on construction when dictionaries contain TwitterModels. """ data = {} + for (key, value) in self.param_defaults.items(): - if getattr(getattr(self, key, None), 'AsDict', None): + + # If the value is a list, we need to create a list to hold the + # dicts created by the object supporting the AsDict() method, + # i.e., if it inherits from TwitterModel. If the item in the list + # doesn't support the AsDict() method, then we assign the value + # directly. + if isinstance(value, list): + data[key] = list() + for subobj in value: + if getattr(subobj, 'AsDict', None): + data[key].append(subobj.AsDict()) + else: + data[key].append(subobj) + + # Not a list, *but still a subclass of TwitterModel* and + # and we can assign the data[key] directly with the AsDict() + # method of the object. + elif getattr(getattr(self, key, None), 'AsDict', None): data[key] = getattr(self, key).AsDict() + + # If the value doesn't have an AsDict() method, i.e., it's not + # something that subclasses TwitterModel, then we can use direct + # assigment. elif getattr(self, key, None): data[key] = getattr(self, key, None) return data @@ -61,13 +85,13 @@ class Media(TwitterModel): def __init__(self, **kwargs): self.param_defaults = { - 'id': None, - 'expanded_url': None, 'display_url': None, - 'url': None, - 'media_url_https': None, + 'expanded_url': None, + 'id': None, 'media_url': None, + 'media_url_https': None, 'type': None, + 'url': None, } for (param, default) in self.param_defaults.items(): @@ -86,17 +110,18 @@ class List(TwitterModel): def __init__(self, **kwargs): self.param_defaults = { - 'id': None, - 'name': None, - 'slug': None, 'description': None, + 'following': None, 'full_name': None, - 'mode': None, - 'uri': None, + 'id': None, 'member_count': None, + 'mode': None, + 'name': None, + 'slug': None, 'subscriber_count': None, - 'following': None, - 'user': None} + 'uri': None, + 'user': None, + } for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) @@ -119,8 +144,8 @@ class Category(TwitterModel): def __init__(self, **kwargs): self.param_defaults = { 'name': None, - 'slug': None, 'size': None, + 'slug': None, } for (param, default) in self.param_defaults.items(): @@ -139,13 +164,14 @@ class DirectMessage(TwitterModel): def __init__(self, **kwargs): self.param_defaults = { - 'id': None, 'created_at': None, - 'sender_id': None, - 'sender_screen_name': None, + 'id': None, 'recipient_id': None, 'recipient_screen_name': None, - 'text': None} + 'sender_id': None, + 'sender_screen_name': None, + 'text': None, + } for (param, default) in self.param_defaults.items(): setattr(self, param, kwargs.get(param, default)) @@ -155,7 +181,7 @@ def __repr__(self): text = self.text[:140] + "[...]" else: text = self.text - return "DirectMessage(ID={dm_id}, Sender={sender}, Time={time}, Text={text})".format( + return "DirectMessage(ID={dm_id}, Sender={sender}, Time={time}, Text='{text}')".format( dm_id=self.id, sender=self.sender_screen_name, time=self.created_at, @@ -358,10 +384,12 @@ def __init__(self, **kwargs): @property def created_at_in_seconds(self): - """Get the time this status message was posted, in seconds since the epoch. + """ Get the time this status message was posted, in seconds since + the epoch (1 Jan 1970). Returns: - The time this status message was posted, in seconds since the epoch. + string: The time this status message was posted, in seconds since + the epoch. """ return timegm(parsedate(self.created_at)) @@ -400,8 +428,8 @@ def Now(self): the object was instantiated. Returns: - Whatever the status instance believes the current time to be, - in seconds since the epoch. + int: Whatever the status instance believes the current time to be, + in seconds since the epoch. """ if self._now is None: self._now = time.time() @@ -412,27 +440,32 @@ def Now(self, now): self._now = now def __repr__(self): - """A string representation of this twitter.Status instance. - The return value is the ID of status, username and datetime. - Returns: - A string representation of this twitter.Status instance with - the ID of status, username and datetime. - """ + """ A string representation of this twitter.Status instance. + The return value is the ID of status, username and datetime. + + Returns: + string: A string representation of this twitter.Status instance with + the ID of status, username and datetime. + """ if self.user: - representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % \ - (self.id, self.user.screen_name, self.created_at) + return "Status(ID={0}, screen_name='{1}', created_at='{2}')".format( + self.id, + self.user.screen_name, + self.created_at) else: - representation = "Status(ID=%s, created_at='%s')" % (self.id, self.created_at) - return representation + return "Status(ID={0}, created_at='{1}')".format( + self.id, + self.created_at) @staticmethod def NewFromJsonDict(data): """Create a new instance based on a JSON dict. Args: - data: A JSON dict, as converted from the JSON in the twitter API + data: A JSON dict, as converted from the JSON in the twitter API + Returns: - A twitter.Status instance + A twitter.Status instance """ if 'user' in data: from twitter import User @@ -440,31 +473,32 @@ def NewFromJsonDict(data): else: user = None - if 'retweeted_status' in data: - retweeted_status = Status.NewFromJsonDict(data['retweeted_status']) - else: - retweeted_status = None + # if 'retweeted_status' in data: + # retweeted_status = Status.NewFromJsonDict(data['retweeted_status']) + # else: + # retweeted_status = None - if 'current_user_retweet' in data: - current_user_retweet = data['current_user_retweet']['id'] - else: - current_user_retweet = None + # if 'current_user_retweet' in data: + # current_user_retweet = data['current_user_retweet']['id'] + # else: + # current_user_retweet = None urls = None user_mentions = None hashtags = None - media = list() + media = None if 'entities' in data: if 'urls' in data['entities']: - print(data['entities']['urls']) urls = [Url.NewFromJsonDict(u) for u in data['entities']['urls']] + if 'user_mentions' in data['entities']: from twitter import User - user_mentions = [User.NewFromJsonDict(u) for u in data['entities']['user_mentions']] + if 'hashtags' in data['entities']: hashtags = [Hashtag.NewFromJsonDict(h) for h in data['entities']['hashtags']] + if 'media' in data['entities']: media = [Media.NewFromJsonDict(m) for m in data['entities']['media']] From 6b9220bf1ad5c4a9343d92b82a15f7a1c43b2312 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 16 Feb 2016 07:52:29 -0500 Subject: [PATCH 198/533] adds tests and data for new-style models --- testdata/models/models_category.json | 1 + testdata/models/models_direct_message.json | 1 + .../models/models_direct_message_short.json | 1 + testdata/models/models_hashtag.json | 1 + testdata/models/models_list.json | 1 + testdata/models/models_media.json | 1 + testdata/models/models_status.json | 1 + testdata/models/models_status_no_user.json | 1 + testdata/models/models_trend.json | 1 + testdata/models/models_url.json | 1 + testdata/models/models_user.json | 1 + testdata/models/models_user_status.json | 1 + tests/test_api_30.py | 4 +- tests/test_models.py | 116 ++++++++++++++++++ 14 files changed, 130 insertions(+), 2 deletions(-) create mode 100644 testdata/models/models_category.json create mode 100644 testdata/models/models_direct_message.json create mode 100644 testdata/models/models_direct_message_short.json create mode 100644 testdata/models/models_hashtag.json create mode 100644 testdata/models/models_list.json create mode 100644 testdata/models/models_media.json create mode 100644 testdata/models/models_status.json create mode 100644 testdata/models/models_status_no_user.json create mode 100644 testdata/models/models_trend.json create mode 100644 testdata/models/models_url.json create mode 100644 testdata/models/models_user.json create mode 100644 testdata/models/models_user_status.json create mode 100644 tests/test_models.py diff --git a/testdata/models/models_category.json b/testdata/models/models_category.json new file mode 100644 index 00000000..e863c15b --- /dev/null +++ b/testdata/models/models_category.json @@ -0,0 +1 @@ +{"size":26,"slug":"sports","name":"Sports"} \ No newline at end of file diff --git a/testdata/models/models_direct_message.json b/testdata/models/models_direct_message.json new file mode 100644 index 00000000..05f3b0b5 --- /dev/null +++ b/testdata/models/models_direct_message.json @@ -0,0 +1 @@ +{"id":678629245946433539,"id_str":"678629245946433539","text":"The Communists are distinguished from the other working-class parties by this only: 1. In the national struggles of the proletarians of the different countries, they point out and bring to the front the common interests of the entire proletariat, independently of all nationality. 2. In the various stages of development which the struggle of the working class against the bourgeoisie has to pass through, they always and everywhere represent the interests of the movement as a whole.","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 17:33:15 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PnDU7HQGwq","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488","display_url":"twitter.com\/pattymo\/status\u2026","indices":[0,23]}]}} \ No newline at end of file diff --git a/testdata/models/models_direct_message_short.json b/testdata/models/models_direct_message_short.json new file mode 100644 index 00000000..98c63ec2 --- /dev/null +++ b/testdata/models/models_direct_message_short.json @@ -0,0 +1 @@ +{"id":678629245946433539,"id_str":"678629245946433539","text":"The Communists are distinguished from the other working-class parties by this only","sender":{"id":372018022,"id_str":"372018022","name":"jeremy","screen_name":"__jcbl__","location":"not a very good kingdom tbh","description":"my kingdom for a microwave that doesn't beep","url":"http:\/\/t.co\/wtg3XzqQTX","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":289,"listed_count":5,"created_at":"Sun Sep 11 23:49:28 +0000 2011","favourites_count":1245,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":312,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659691753826615298\/yN1SoWrU_normal.jpg","profile_link_color":"EE3355","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"sender_id":372018022,"sender_id_str":"372018022","sender_screen_name":"__jcbl__","recipient":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"recipient_id":4012966701,"recipient_id_str":"4012966701","recipient_screen_name":"notinourselves","created_at":"Sun Dec 20 17:33:15 +0000 2015","entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PnDU7HQGwq","expanded_url":"http:\/\/twitter.com\/pattymo\/status\/674659346127679488","display_url":"twitter.com\/pattymo\/status\u2026","indices":[0,23]}]}} \ No newline at end of file diff --git a/testdata/models/models_hashtag.json b/testdata/models/models_hashtag.json new file mode 100644 index 00000000..3e12384b --- /dev/null +++ b/testdata/models/models_hashtag.json @@ -0,0 +1 @@ +{"text":"python","indices":[5,12]} \ No newline at end of file diff --git a/testdata/models/models_list.json b/testdata/models/models_list.json new file mode 100644 index 00000000..05d07eb9 --- /dev/null +++ b/testdata/models/models_list.json @@ -0,0 +1 @@ +{"id":229581524,"id_str":"229581524","name":"test","uri":"\/notinourselves\/lists\/test","subscriber_count":0,"member_count":1,"mode":"public","description":"","slug":"test","full_name":"@notinourselves\/test","created_at":"Fri Dec 18 20:00:45 +0000 2015","following":true,"user":{"id":4012966701,"id_str":"4012966701","name":"notinourselves","screen_name":"notinourselves","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1,"listed_count":1,"created_at":"Wed Oct 21 23:53:04 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false}} \ No newline at end of file diff --git a/testdata/models/models_media.json b/testdata/models/models_media.json new file mode 100644 index 00000000..4bb4a945 --- /dev/null +++ b/testdata/models/models_media.json @@ -0,0 +1 @@ +{"display_url": "pic.twitter.com/NWg4YmiZKA", "expanded_url": "http://twitter.com/himawari8bot/status/698657677329752065/photo/1", "id": 698657676939685888, "media_url": "http://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "type": "animated_gif", "url": "https://t.co/NWg4YmiZKA"} \ No newline at end of file diff --git a/testdata/models/models_status.json b/testdata/models/models_status.json new file mode 100644 index 00000000..1569d60d --- /dev/null +++ b/testdata/models/models_status.json @@ -0,0 +1 @@ +{"extended_entities": {"media": [{"media_url": "http://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "url": "https://t.co/NWg4YmiZKA", "indices": [20, 43], "id": 698657676939685888, "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "expanded_url": "http://twitter.com/himawari8bot/status/698657677329752065/photo/1", "sizes": {"large": {"w": 450, "h": 458, "resize": "fit"}, "medium": {"w": 450, "h": 458, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 346, "resize": "fit"}}, "display_url": "pic.twitter.com/NWg4YmiZKA", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CbIhdJ2W8AASWjq.mp4", "bitrate": 0, "content_type": "video/mp4"}]}, "id_str": "698657676939685888", "type": "animated_gif"}]}, "retweet_count": 2, "source": "space, jerks.", "created_at": "Sat Feb 13 23:59:05 +0000 2016", "in_reply_to_user_id": null, "id": 698657677329752065, "coordinates": null, "id_str": "698657677329752065", "in_reply_to_user_id_str": null, "place": null, "in_reply_to_screen_name": null, "possibly_sensitive": false, "is_quote_status": false, "in_reply_to_status_id_str": null, "favorite_count": 0, "contributors": null, "favorited": false, "text": "2016-02-13T23:00:00 https://t.co/NWg4YmiZKA", "lang": "und", "retweeted": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"media_url": "http://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "url": "https://t.co/NWg4YmiZKA", "indices": [20, 43], "id": 698657676939685888, "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "expanded_url": "http://twitter.com/himawari8bot/status/698657677329752065/photo/1", "sizes": {"large": {"w": 450, "h": 458, "resize": "fit"}, "medium": {"w": 450, "h": 458, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 346, "resize": "fit"}}, "display_url": "pic.twitter.com/NWg4YmiZKA", "id_str": "698657676939685888", "type": "photo"}]}, "user": {"verified": false, "default_profile": false, "followers_count": 640, "created_at": "Tue Oct 27 23:06:22 +0000 2015", "notifications": false, "profile_use_background_image": false, "favourites_count": 1, "friends_count": 2, "is_translation_enabled": false, "id_str": "4040207472", "profile_background_color": "000000", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "url": "https://t.co/uYVLL8E5Qg", "lang": "en", "geo_enabled": false, "protected": false, "contributors_enabled": false, "id": 4040207472, "listed_count": 35, "description": "Unofficial; imagery courtesy: Japan Meteorological Agency (https://t.co/lzPXaTnMCi) and CIRA (https://t.co/YksnDoJEl8). Bot by @__jcbl__", "following": false, "default_profile_image": false, "profile_link_color": "000000", "utc_offset": -18000, "has_extended_profile": false, "location": "Space", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "time_zone": "Eastern Time (US & Canada)", "screen_name": "himawari8bot", "is_translator": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/659145099113295873/ufx8ad3i_normal.jpg", "entities": {"url": {"urls": [{"expanded_url": "https://github.com/jeremylow/himawari_bot", "indices": [0, 23], "url": "https://t.co/uYVLL8E5Qg", "display_url": "github.com/jeremylow/hima\u2026"}]}, "description": {"urls": [{"expanded_url": "http://www.jma.go.jp/en/gms/", "indices": [59, 82], "url": "https://t.co/lzPXaTnMCi", "display_url": "jma.go.jp/en/gms/"}, {"expanded_url": "http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp", "indices": [94, 117], "url": "https://t.co/YksnDoJEl8", "display_url": "rammb.cira.colostate.edu/ramsdis/online\u2026"}]}}, "follow_request_sent": false, "name": "himawari8bot", "profile_text_color": "000000", "statuses_count": 1871}, "truncated": false, "in_reply_to_status_id": null, "geo": null} \ No newline at end of file diff --git a/testdata/models/models_status_no_user.json b/testdata/models/models_status_no_user.json new file mode 100644 index 00000000..8ae74d6b --- /dev/null +++ b/testdata/models/models_status_no_user.json @@ -0,0 +1 @@ +{"extended_entities": {"media": [{"media_url": "http://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "url": "https://t.co/NWg4YmiZKA", "indices": [20, 43], "id": 698657676939685888, "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "expanded_url": "http://twitter.com/himawari8bot/status/698657677329752065/photo/1", "sizes": {"large": {"w": 450, "h": 458, "resize": "fit"}, "medium": {"w": 450, "h": 458, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 346, "resize": "fit"}}, "display_url": "pic.twitter.com/NWg4YmiZKA", "video_info": {"aspect_ratio": [225, 229], "variants": [{"url": "https://pbs.twimg.com/tweet_video/CbIhdJ2W8AASWjq.mp4", "bitrate": 0, "content_type": "video/mp4"}]}, "id_str": "698657676939685888", "type": "animated_gif"}]}, "retweet_count": 2, "source": "space, jerks.", "created_at": "Sat Feb 13 23:59:05 +0000 2016", "in_reply_to_user_id": null, "id": 698657677329752065, "coordinates": null, "id_str": "698657677329752065", "in_reply_to_user_id_str": null, "place": null, "in_reply_to_screen_name": null, "possibly_sensitive": false, "is_quote_status": false, "in_reply_to_status_id_str": null, "favorite_count": 0, "contributors": null, "favorited": false, "text": "2016-02-13T23:00:00 https://t.co/NWg4YmiZKA", "lang": "und", "retweeted": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"media_url": "http://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "url": "https://t.co/NWg4YmiZKA", "indices": [20, 43], "id": 698657676939685888, "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/CbIhdJ2W8AASWjq.jpg", "expanded_url": "http://twitter.com/himawari8bot/status/698657677329752065/photo/1", "sizes": {"large": {"w": 450, "h": 458, "resize": "fit"}, "medium": {"w": 450, "h": 458, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 346, "resize": "fit"}}, "display_url": "pic.twitter.com/NWg4YmiZKA", "id_str": "698657676939685888", "type": "photo"}]}, "truncated": false, "in_reply_to_status_id": null, "geo": null} \ No newline at end of file diff --git a/testdata/models/models_trend.json b/testdata/models/models_trend.json new file mode 100644 index 00000000..17100138 --- /dev/null +++ b/testdata/models/models_trend.json @@ -0,0 +1 @@ +{"name":"#ChangeAConsonantSpoilAMovie","url":"http:\\/\\/twitter.com\\/search?q=%23ChangeAConsonantSpoilAMovie","promoted_content":null,"query":"%23ChangeAConsonantSpoilAMovie","tweet_volume":null} \ No newline at end of file diff --git a/testdata/models/models_url.json b/testdata/models/models_url.json new file mode 100644 index 00000000..46cd183c --- /dev/null +++ b/testdata/models/models_url.json @@ -0,0 +1 @@ +{"url":"http:\/\/t.co\/wtg3XzqQTX","expanded_url":"http:\/\/iseverythingstilltheworst.com","display_url":"iseverythingstilltheworst.com","indices":[0,22]} \ No newline at end of file diff --git a/testdata/models/models_user.json b/testdata/models/models_user.json new file mode 100644 index 00000000..a3a45065 --- /dev/null +++ b/testdata/models/models_user.json @@ -0,0 +1 @@ +{"id":718443,"id_str":"718443","name":"Kesuke Miyagi","screen_name":"kesuke","location":"Okinawa, Japan","profile_location":null,"description":"\u79c1\u306e\u30db\u30d0\u30fc\u30af\u30e9\u30d5\u30c8 \u306f\u9c3b\u304c\u4e00\u676f\u3067\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":1,"listed_count":6,"created_at":"Sun Jan 28 06:31:55 +0000 2007","favourites_count":0,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":10,"lang":"en","status":{"created_at":"Mon Jul 07 13:10:40 +0000 2014","id":486135208928751616,"id_str":"486135208928751616","text":"Wax on.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/21525032\/kesuke_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/21525032\/kesuke_normal.png","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false} \ No newline at end of file diff --git a/testdata/models/models_user_status.json b/testdata/models/models_user_status.json new file mode 100644 index 00000000..d643438b --- /dev/null +++ b/testdata/models/models_user_status.json @@ -0,0 +1 @@ +{"name": "dick costolo", "id": 6385432, "screen_name": "dickc", "id_str": "6385432", "connections": ["blocking", "muting"]} \ No newline at end of file diff --git a/tests/test_api_30.py b/tests/test_api_30.py index a654630e..0f7c9790 100644 --- a/tests/test_api_30.py +++ b/tests/test_api_30.py @@ -1334,13 +1334,13 @@ def testPostUpdateWithMedia(self): # Local file resp = self.api.PostUpdate(media='testdata/168NQ.jpg', status='test') - self.assertEqual(697007311538229248, resp.AsDict()['media'][0].id) + self.assertEqual(697007311538229248, resp.AsDict()['media'][0]['id']) self.assertEqual(resp.text, "hi this is a test for media uploads with statuses https://t.co/FHgqb6iLOX") # File object with open('testdata/168NQ.jpg', 'rb') as f: resp = self.api.PostUpdate(media=[f], status='test') - self.assertEqual(697007311538229248, resp.AsDict()['media'][0].id) + self.assertEqual(697007311538229248, resp.AsDict()['media'][0]['id']) self.assertEqual(resp.text, "hi this is a test for media uploads with statuses https://t.co/FHgqb6iLOX") # Media ID as int diff --git a/tests/test_models.py b/tests/test_models.py new file mode 100644 index 00000000..45e2c909 --- /dev/null +++ b/tests/test_models.py @@ -0,0 +1,116 @@ +import twitter +import json +import re +import unittest + + +class ModelsTest(unittest.TestCase): + with open('testdata/models/models_category.json', 'rb') as f: + CATEGORY_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_direct_message.json', 'rb') as f: + DIRECT_MESSAGE_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_direct_message_short.json', 'rb') as f: + DIRECT_MESSAGE_SHORT_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_hashtag.json', 'rb') as f: + HASHTAG_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_list.json', 'rb') as f: + LIST_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_media.json', 'rb') as f: + MEDIA_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_status.json', 'rb') as f: + STATUS_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_status_no_user.json', 'rb') as f: + STATUS_NO_USER_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_trend.json', 'rb') as f: + TREND_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_url.json', 'rb') as f: + URL_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_user.json', 'rb') as f: + USER_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + with open('testdata/models/models_user_status.json', 'rb') as f: + USER_STATUS_SAMPLE_JSON = json.loads(f.read().decode('utf8')) + + def test_category(self): + """ Test twitter.Category object """ + cat = twitter.Category.NewFromJsonDict(self.CATEGORY_SAMPLE_JSON) + self.assertEqual(cat.__repr__(), "Category(Name=Sports, Slug=sports, Size=26)") + self.assertTrue(cat.AsJsonString()) + self.assertTrue(cat.AsDict()) + + def test_direct_message(self): + """ Test twitter.DirectMessage object """ + dm = twitter.DirectMessage.NewFromJsonDict(self.DIRECT_MESSAGE_SAMPLE_JSON) + self.assertEqual(dm.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Time=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only: 1. In the national struggles of the proletarians of the [...]')") + dm_short = twitter.DirectMessage.NewFromJsonDict(self.DIRECT_MESSAGE_SHORT_SAMPLE_JSON) + self.assertEqual(dm_short.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Time=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only')") + self.assertTrue(dm.AsJsonString()) + self.assertTrue(dm.AsDict()) + + def test_hashtag(self): + """ Test twitter.Hashtag object """ + ht = twitter.Hashtag.NewFromJsonDict(self.HASHTAG_SAMPLE_JSON) + self.assertEqual(ht.__repr__(), "Hashtag(Text=python)") + self.assertTrue(ht.AsJsonString()) + self.assertTrue(ht.AsDict()) + + def test_list(self): + """ Test twitter.List object """ + lt = twitter.List.NewFromJsonDict(self.LIST_SAMPLE_JSON) + self.assertEqual(lt.__repr__(), "List(ID=229581524, FullName=@notinourselves/test, Slug=test, User=notinourselves)") + self.assertTrue(lt.AsJsonString()) + self.assertTrue(lt.AsDict()) + + def test_media(self): + """ Test twitter.Media object """ + media = twitter.Media.NewFromJsonDict(self.MEDIA_SAMPLE_JSON) + self.assertEqual(media.__repr__(), "Media(ID=698657676939685888, Type=animated_gif, DisplayURL='pic.twitter.com/NWg4YmiZKA')") + self.assertTrue(media.AsJsonString()) + self.assertTrue(media.AsDict()) + + def test_status(self): + """ Test twitter.Status object """ + status = twitter.Status.NewFromJsonDict(self.STATUS_SAMPLE_JSON) + self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, screen_name='himawari8bot', created_at='Sat Feb 13 23:59:05 +0000 2016')") + self.assertTrue(status.AsJsonString()) + self.assertTrue(status.AsDict()) + self.assertTrue(status.media[0].AsJsonString()) + self.assertTrue(status.media[0].AsDict()) + self.assertTrue(isinstance(status.AsDict()['media'][0], dict)) + + def test_status_no_user(self): + """ Test twitter.Status object which does not contain a 'user' entity. """ + status = twitter.Status.NewFromJsonDict(self.STATUS_NO_USER_SAMPLE_JSON) + self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, created_at='Sat Feb 13 23:59:05 +0000 2016')") + self.assertTrue(status.AsJsonString()) + self.assertTrue(status.AsDict()) + + def test_trend(self): + """ Test twitter.Trend object """ + trend = twitter.Trend.NewFromJsonDict(self.TREND_SAMPLE_JSON) + self.assertEqual(trend.__repr__(), "Trend(Name=#ChangeAConsonantSpoilAMovie, Time=None, URL=http:\\/\\/twitter.com\\/search?q=%23ChangeAConsonantSpoilAMovie)") + self.assertTrue(trend.AsJsonString()) + self.assertTrue(trend.AsDict()) + + def test_url(self): + url = twitter.Url.NewFromJsonDict(self.URL_SAMPLE_JSON) + self.assertEqual(url.__repr__(), "URL(URL=http://t.co/wtg3XzqQTX, ExpandedURL=http://iseverythingstilltheworst.com)") + self.assertTrue(url.AsJsonString()) + self.assertTrue(url.AsDict()) + + def test_user(self): + '''Test the twitter.User NewFromJsonDict method''' + user = twitter.User.NewFromJsonDict(self.USER_SAMPLE_JSON) + self.assertEqual(user.id, 718443) + self.assertEqual(user.__repr__(), "User(ID=718443, Screenname=kesuke)") + self.assertTrue(user.AsJsonString()) + self.assertTrue(user.AsDict()) + + def test_user_status(self): + """ Test twitter.UserStatus object """ + user_status = twitter.UserStatus.NewFromJsonDict(self.USER_STATUS_SAMPLE_JSON) + # __repr__ doesn't always order 'connections' in the same manner when + # call, hence the regex. + mtch = re.compile(r'UserStatus\(ID=6385432, Name=dickc, Connections=\[[blocking|muting]+, [blocking|muting]+\]\)') + self.assertTrue(re.findall(mtch, user_status.__repr__())) + self.assertTrue(user_status.AsJsonString()) + self.assertTrue(user_status.AsDict()) From 724fafbd6b2d68202b4fff692f717ab06eae254d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 6 Mar 2016 10:10:17 -0500 Subject: [PATCH 199/533] Cleans up AsDict construct to deal with subobjects and Status NewFromJson method --- twitter/models.py | 41 ++++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/twitter/models.py b/twitter/models.py index a7b3779e..dcba6e00 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -40,9 +40,11 @@ def AsDict(self): # i.e., if it inherits from TwitterModel. If the item in the list # doesn't support the AsDict() method, then we assign the value # directly. - if isinstance(value, list): + if isinstance(getattr(self, key, None), list) or \ + isinstance(getattr(self, key, None), tuple) or \ + isinstance(getattr(self, key, None), set): data[key] = list() - for subobj in value: + for subobj in getattr(self, key, None): if getattr(subobj, 'AsDict', None): data[key].append(subobj.AsDict()) else: @@ -178,10 +180,10 @@ def __init__(self, **kwargs): def __repr__(self): if self.text and len(self.text) > 140: - text = self.text[:140] + "[...]" + text = "{text}[...]".format(text=self.text[:140]) else: text = self.text - return "DirectMessage(ID={dm_id}, Sender={sender}, Time={time}, Text='{text}')".format( + return "DirectMessage(ID={dm_id}, Sender={sender}, Created={time}, Text='{text}')".format( dm_id=self.id, sender=self.sender_screen_name, time=self.created_at, @@ -258,8 +260,7 @@ class UserStatus(TwitterModel): 'following_received': False, 'following_requested': False, 'blocking': False, - 'muting': False, - } + 'muting': False} def __init__(self, **kwargs): self.param_defaults = { @@ -285,7 +286,7 @@ def __init__(self, **kwargs): def __repr__(self): conns = [param for param in self.connections if getattr(self, param)] - return "UserStatus(ID={uid}, Name={sn}, Connections=[{conn}])".format( + return "UserStatus(ID={uid}, ScreenName={sn}, Connections=[{conn}])".format( uid=self.id, sn=self.screen_name, conn=", ".join(conns)) @@ -334,7 +335,7 @@ def __init__(self, **kwargs): setattr(self, param, kwargs.get(param, default)) def __repr__(self): - return "User(ID={uid}, Screenname={sn})".format( + return "User(ID={uid}, ScreenName={sn})".format( uid=self.id, sn=self.screen_name) @@ -448,18 +449,18 @@ def __repr__(self): the ID of status, username and datetime. """ if self.user: - return "Status(ID={0}, screen_name='{1}', created_at='{2}')".format( + return "Status(ID={0}, ScreenName='{1}', Created='{2}')".format( self.id, self.user.screen_name, self.created_at) else: - return "Status(ID={0}, created_at='{1}')".format( + return "Status(ID={0}, Created='{1}')".format( self.id, self.created_at) @staticmethod def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. + """ Create a new instance based on a JSON dict. Args: data: A JSON dict, as converted from the JSON in the twitter API @@ -473,15 +474,15 @@ def NewFromJsonDict(data): else: user = None - # if 'retweeted_status' in data: - # retweeted_status = Status.NewFromJsonDict(data['retweeted_status']) - # else: - # retweeted_status = None + if 'retweeted_status' in data: + retweeted_status = Status.NewFromJsonDict(data['retweeted_status']) + else: + retweeted_status = None - # if 'current_user_retweet' in data: - # current_user_retweet = data['current_user_retweet']['id'] - # else: - # current_user_retweet = None + if 'current_user_retweet' in data: + current_user_retweet = data['current_user_retweet']['id'] + else: + current_user_retweet = None urls = None user_mentions = None @@ -508,6 +509,8 @@ def NewFromJsonDict(data): media = [Media.NewFromJsonDict(m) for m in data['extended_entities']['media']] return super(Status, Status).NewFromJsonDict(data, + retweeted_status=retweeted_status, + current_user_retweet=current_user_retweet, user=user, urls=urls, user_mentions=user_mentions, From fcecde0a229b92736d8a60fec0e1b252b9a784b4 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 6 Mar 2016 10:19:00 -0500 Subject: [PATCH 200/533] updates tests for changes to repr functions --- tests/test_models.py | 12 ++++++------ tests/test_status.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/test_models.py b/tests/test_models.py index 45e2c909..ac381ab8 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -40,9 +40,9 @@ def test_category(self): def test_direct_message(self): """ Test twitter.DirectMessage object """ dm = twitter.DirectMessage.NewFromJsonDict(self.DIRECT_MESSAGE_SAMPLE_JSON) - self.assertEqual(dm.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Time=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only: 1. In the national struggles of the proletarians of the [...]')") + self.assertEqual(dm.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Created=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only: 1. In the national struggles of the proletarians of the [...]')") dm_short = twitter.DirectMessage.NewFromJsonDict(self.DIRECT_MESSAGE_SHORT_SAMPLE_JSON) - self.assertEqual(dm_short.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Time=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only')") + self.assertEqual(dm_short.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Created=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only')") self.assertTrue(dm.AsJsonString()) self.assertTrue(dm.AsDict()) @@ -70,7 +70,7 @@ def test_media(self): def test_status(self): """ Test twitter.Status object """ status = twitter.Status.NewFromJsonDict(self.STATUS_SAMPLE_JSON) - self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, screen_name='himawari8bot', created_at='Sat Feb 13 23:59:05 +0000 2016')") + self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, ScreenName='himawari8bot', Created='Sat Feb 13 23:59:05 +0000 2016')") self.assertTrue(status.AsJsonString()) self.assertTrue(status.AsDict()) self.assertTrue(status.media[0].AsJsonString()) @@ -80,7 +80,7 @@ def test_status(self): def test_status_no_user(self): """ Test twitter.Status object which does not contain a 'user' entity. """ status = twitter.Status.NewFromJsonDict(self.STATUS_NO_USER_SAMPLE_JSON) - self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, created_at='Sat Feb 13 23:59:05 +0000 2016')") + self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, Created='Sat Feb 13 23:59:05 +0000 2016')") self.assertTrue(status.AsJsonString()) self.assertTrue(status.AsDict()) @@ -101,7 +101,7 @@ def test_user(self): '''Test the twitter.User NewFromJsonDict method''' user = twitter.User.NewFromJsonDict(self.USER_SAMPLE_JSON) self.assertEqual(user.id, 718443) - self.assertEqual(user.__repr__(), "User(ID=718443, Screenname=kesuke)") + self.assertEqual(user.__repr__(), "User(ID=718443, ScreenName=kesuke)") self.assertTrue(user.AsJsonString()) self.assertTrue(user.AsDict()) @@ -110,7 +110,7 @@ def test_user_status(self): user_status = twitter.UserStatus.NewFromJsonDict(self.USER_STATUS_SAMPLE_JSON) # __repr__ doesn't always order 'connections' in the same manner when # call, hence the regex. - mtch = re.compile(r'UserStatus\(ID=6385432, Name=dickc, Connections=\[[blocking|muting]+, [blocking|muting]+\]\)') + mtch = re.compile(r'UserStatus\(ID=6385432, ScreenName=dickc, Connections=\[[blocking|muting]+, [blocking|muting]+\]\)') self.assertTrue(re.findall(mtch, user_status.__repr__())) self.assertTrue(user_status.AsJsonString()) self.assertTrue(user_status.AsDict()) diff --git a/tests/test_status.py b/tests/test_status.py index 517358fb..6f0ef20f 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -120,4 +120,4 @@ def testNewFromJsonDict(self): def testStatusRepresentation(self): status = self._GetSampleStatus() - self.assertEqual("Status(ID=4391023, screen_name='kesuke', created_at='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) + self.assertEqual("Status(ID=4391023, ScreenName='kesuke', Created='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) From 2eb5165307b80abd790c3e77818f29c756478615 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 6 Mar 2016 10:19:28 -0500 Subject: [PATCH 201/533] removes old class files --- twitter/category.py | 59 ---- twitter/direct_message.py | 231 -------------- twitter/hashtag.py | 22 -- twitter/list.py | 236 -------------- twitter/media.py | 154 --------- twitter/status.py | 589 ---------------------------------- twitter/trend.py | 49 --- twitter/url.py | 25 -- twitter/user.py | 649 -------------------------------------- 9 files changed, 2014 deletions(-) delete mode 100644 twitter/category.py delete mode 100644 twitter/direct_message.py delete mode 100644 twitter/hashtag.py delete mode 100644 twitter/list.py delete mode 100644 twitter/media.py delete mode 100644 twitter/status.py delete mode 100644 twitter/trend.py delete mode 100644 twitter/url.py delete mode 100644 twitter/user.py diff --git a/twitter/category.py b/twitter/category.py deleted file mode 100644 index c382a1e6..00000000 --- a/twitter/category.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/env python - - -class Category(object): - """A class representing the suggested user category structure used by the twitter API. - - The UserStatus structure exposes the following properties: - - category.name - category.slug - category.size - """ - - def __init__(self, **kwargs): - """An object to hold a Twitter suggested user category . - This class is normally instantiated by the twitter.Api class and - returned in a sequence. - - Args: - name: - name of the category - slug: - - size: - """ - param_defaults = { - 'name': None, - 'slug': None, - 'size': None, - } - - for (param, default) in param_defaults.iteritems(): - setattr(self, param, kwargs.get(param, default)) - - @property - def Name(self): - return self.name or False - - @property - def Slug(self): - return self.slug or False - - @property - def Size(self): - return self.size or False - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: A JSON dict, as converted from the JSON in the twitter API - Returns: - A twitter.Category instance - """ - - return Category(name=data.get('name', None), - slug=data.get('slug', None), - size=data.get('size', None)) diff --git a/twitter/direct_message.py b/twitter/direct_message.py deleted file mode 100644 index 012c7dbb..00000000 --- a/twitter/direct_message.py +++ /dev/null @@ -1,231 +0,0 @@ -#!/usr/bin/env python - -from calendar import timegm - -try: - from rfc822 import parsedate -except ImportError: - from email.utils import parsedate - -from twitter import json - - -class DirectMessage(object): - """A class representing the DirectMessage structure used by the twitter API. - - The DirectMessage structure exposes the following properties: - - direct_message.id - direct_message.created_at - direct_message.created_at_in_seconds # read only - direct_message.sender_id - direct_message.sender_screen_name - direct_message.recipient_id - direct_message.recipient_screen_name - direct_message.text - """ - - def __init__(self, - id=None, - created_at=None, - sender_id=None, - sender_screen_name=None, - recipient_id=None, - recipient_screen_name=None, - text=None): - """An object to hold a Twitter direct message. - - This class is normally instantiated by the twitter.Api class and - returned in a sequence. - - Note: Dates are posted in the form "Sat Jan 27 04:17:38 +0000 2007" - - Args: - id: - The unique id of this direct message. [Optional] - created_at: - The time this direct message was posted. [Optional] - sender_id: - The id of the twitter user that sent this message. [Optional] - sender_screen_name: - The name of the twitter user that sent this message. [Optional] - recipient_id: - The id of the twitter that received this message. [Optional] - recipient_screen_name: - The name of the twitter that received this message. [Optional] - text: - The text of this direct message. [Optional] - """ - self.id = id - self.created_at = created_at - self.sender_id = sender_id - self.sender_screen_name = sender_screen_name - self.recipient_id = recipient_id - self.recipient_screen_name = recipient_screen_name - self.text = text - - # Functions that you should be able to set. - - @property - def RecipientScreenName(self): - """Get the unique recipient screen name of this direct message. - - Returns: - The unique recipient screen name of this direct message - """ - return self._recipient_screen_name - - @RecipientScreenName.setter - def RecipientScreenName(self, recipient_screen_name): - self._recipient_screen_name = recipient_screen_name - - @property - def Text(self): - """Get the text of this direct message. - - Returns: - The text of this direct message. - """ - return self._text - - @Text.setter - def Text(self, text): - self._text = text - - @property - def RecipientId(self): - """Get the unique recipient id of this direct message. - - Returns: - The unique recipient id of this direct message - """ - return self._recipient_id - - @RecipientId.setter - def RecipientId(self, recipient_id): - self._recipient_id = recipient_id - - # Functions that are only getters. - - @property - def Id(self): - """Get the unique id of this direct message. - - Returns: - The unique id of this direct message - """ - return self._id - - @property - def CreatedAt(self): - """Get the time this direct message was posted. - - Returns: - The time this direct message was posted - """ - return self._created_at - - @property - def CreatedAtInSeconds(self): - """Get the time this direct message was posted, in seconds since the epoch. - - Returns: - The time this direct message was posted, in seconds since the epoch. - """ - return timegm(parsedate(self.created_at)) - - @property - def SenderScreenName(self): - """Get the unique sender screen name of this direct message. - - Returns: - The unique sender screen name of this direct message - """ - return self._sender_screen_name - - @property - def SenderId(self): - """Get the unique sender id of this direct message. - - Returns: - The unique sender id of this direct message - """ - return self._sender_id - - def __ne__(self, other): - return not self.__eq__(other) - - def __eq__(self, other): - try: - return other and \ - self.id == other.id and \ - self.created_at == other.created_at and \ - self.sender_id == other.sender_id and \ - self.sender_screen_name == other.sender_screen_name and \ - self.recipient_id == other.recipient_id and \ - self.recipient_screen_name == other.recipient_screen_name and \ - self.text == other.text - except AttributeError: - return False - - def __str__(self): - """A string representation of this twitter.DirectMessage instance. - - The return value is the same as the JSON string representation. - - Returns: - A string representation of this twitter.DirectMessage instance. - """ - return self.AsJsonString() - - def AsJsonString(self): - """A JSON string representation of this twitter.DirectMessage instance. - - Returns: - A JSON string representation of this twitter.DirectMessage instance - """ - return json.dumps(self.AsDict(), sort_keys=True) - - def AsDict(self): - """A dict representation of this twitter.DirectMessage instance. - - The return value uses the same key names as the JSON representation. - - Return: - A dict representing this twitter.DirectMessage instance - """ - data = {} - if self.id: - data['id'] = self.id - if self.created_at: - data['created_at'] = self.created_at - if self.sender_id: - data['sender_id'] = self.sender_id - if self.sender_screen_name: - data['sender_screen_name'] = self.sender_screen_name - if self.recipient_id: - data['recipient_id'] = self.recipient_id - if self.recipient_screen_name: - data['recipient_screen_name'] = self.recipient_screen_name - if self.text: - data['text'] = self.text - return data - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: - A JSON dict, as converted from the JSON in the twitter API - - Returns: - A twitter.DirectMessage instance - """ - return DirectMessage(created_at=data.get('created_at', None), - recipient_id=data.get('recipient_id', None), - sender_id=data.get('sender_id', None), - text=data.get('text', None), - sender_screen_name=data.get('sender_screen_name', None), - id=data.get('id', None), - recipient_screen_name=data.get('recipient_screen_name', None)) diff --git a/twitter/hashtag.py b/twitter/hashtag.py deleted file mode 100644 index 157cd534..00000000 --- a/twitter/hashtag.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python - - -class Hashtag(object): - """ A class representing a twitter hashtag """ - - def __init__(self, - text=None): - self.text = text - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: - A JSON dict, as converted from the JSON in the twitter API - - Returns: - A twitter.Hashtag instance - """ - return Hashtag(text=data.get('text', None)) diff --git a/twitter/list.py b/twitter/list.py deleted file mode 100644 index 7ba72924..00000000 --- a/twitter/list.py +++ /dev/null @@ -1,236 +0,0 @@ -#!/usr/bin/env python - -from twitter import json, User - - -class List(object): - """A class representing the List structure used by the twitter API. - - The List structure exposes the following properties: - - list.id - list.name - list.slug - list.description - list.full_name - list.mode - list.uri - list.member_count - list.subscriber_count - list.following - """ - - def __init__(self, **kwargs): - param_defaults = { - 'id': None, - 'name': None, - 'slug': None, - 'description': None, - 'full_name': None, - 'mode': None, - 'uri': None, - 'member_count': None, - 'subscriber_count': None, - 'following': None, - 'user': None} - - for (param, default) in param_defaults.items(): - setattr(self, param, kwargs.get(param, default)) - - @property - def Id(self): - """Get the unique id of this list. - - Returns: - The unique id of this list - """ - return self._id - - @property - def Name(self): - """Get the real name of this list. - - Returns: - The real name of this list - """ - return self._name - - @property - def Slug(self): - """Get the slug of this list. - - Returns: - The slug of this list - """ - return self._slug - - @property - def Description(self): - """Get the description of this list. - - Returns: - The description of this list - """ - return self._description - - @property - def Full_name(self): - """Get the full_name of this list. - - Returns: - The full_name of this list - """ - return self._full_name - - @property - def Mode(self): - """Get the mode of this list. - - Returns: - The mode of this list - """ - return self._mode - - @property - def Uri(self): - """Get the uri of this list. - - Returns: - The uri of this list - """ - return self._uri - - @property - def Member_count(self): - """Get the member_count of this list. - - Returns: - The member_count of this list - """ - return self._member_count - - @property - def Subscriber_count(self): - """Get the subscriber_count of this list. - - Returns: - The subscriber_count of this list - """ - return self._subscriber_count - - @property - def Following(self): - """Get the following status of this list. - - Returns: - The following status of this list - """ - return self._following - - @property - def User(self): - """Get the user of this list. - - Returns: - The owner of this list - """ - return self._user - - def __ne__(self, other): - return not self.__eq__(other) - - def __eq__(self, other): - try: - return other and \ - self.id == other.id and \ - self.name == other.name and \ - self.slug == other.slug and \ - self.description == other.description and \ - self.full_name == other.full_name and \ - self.mode == other.mode and \ - self.uri == other.uri and \ - self.member_count == other.member_count and \ - self.subscriber_count == other.subscriber_count and \ - self.following == other.following and \ - self.user == other.user - - except AttributeError: - return False - - def __str__(self): - """A string representation of this twitter.List instance. - - The return value is the same as the JSON string representation. - - Returns: - A string representation of this twitter.List instance. - """ - return self.AsJsonString() - - def AsJsonString(self): - """A JSON string representation of this twitter.List instance. - - Returns: - A JSON string representation of this twitter.List instance - """ - return json.dumps(self.AsDict(), sort_keys=True) - - def AsDict(self): - """A dict representation of this twitter.List instance. - - The return value uses the same key names as the JSON representation. - - Return: - A dict representing this twitter.List instance - """ - data = {} - if self.id: - data['id'] = self.id - if self.name: - data['name'] = self.name - if self.slug: - data['slug'] = self.slug - if self.description: - data['description'] = self.description - if self.full_name: - data['full_name'] = self.full_name - if self.mode: - data['mode'] = self.mode - if self.uri: - data['uri'] = self.uri - if self.member_count is not None: - data['member_count'] = self.member_count - if self.subscriber_count is not None: - data['subscriber_count'] = self.subscriber_count - if self.following is not None: - data['following'] = self.following - if self.user is not None: - data['user'] = self.user.AsDict() - return data - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: - A JSON dict, as converted from the JSON in the twitter API - - Returns: - A twitter.List instance - """ - if 'user' in data: - user = User.NewFromJsonDict(data['user']) - else: - user = None - return List(id=data.get('id', None), - name=data.get('name', None), - slug=data.get('slug', None), - description=data.get('description', None), - full_name=data.get('full_name', None), - mode=data.get('mode', None), - uri=data.get('uri', None), - member_count=data.get('member_count', None), - subscriber_count=data.get('subscriber_count', None), - following=data.get('following', None), - user=user) diff --git a/twitter/media.py b/twitter/media.py deleted file mode 100644 index c7deb632..00000000 --- a/twitter/media.py +++ /dev/null @@ -1,154 +0,0 @@ -#!/usr/bin/env python -import json - - -class Media(object): - - """A class representing the Media component of a tweet. - - The Media structure exposes the following properties: - - media.expanded_url - media.display_url - media.url - media.media_url_https - media.media_url - media.type - """ - - def __init__(self, **kwargs): - """An object to the information for each Media entity for a tweet - This class is normally instantiated by the twitter.Api class and - returned in a sequence. - """ - param_defaults = { - 'id': None, - 'expanded_url': None, - 'display_url': None, - 'url': None, - 'media_url_https': None, - 'media_url': None, - 'type': None, - 'variants': None - } - - for (param, default) in param_defaults.items(): - setattr(self, param, kwargs.get(param, default)) - - @property - def Id(self): - return self.id or None - - @property - def Expanded_url(self): - return self.expanded_url or False - - @property - def Url(self): - return self.url or False - - @property - def Media_url_https(self): - return self.media_url_https or False - - @property - def Media_url(self): - return self.media_url or False - - @property - def Type(self): - return self.type or False - - @property - def Variants(self): - return self.variants or False - - def __eq__(self, other): - return other.Media_url == self.Media_url and other.Type == self.Type - - def __ne__(self, other): - return not self.__eq__(other) - - def __hash__(self): - return hash((self.Media_url, self.Type)) - - def __str__(self): - """A string representation of this twitter.Media instance. - - The return value is the same as the JSON string representation. - - Returns: - A string representation of this twitter.Media instance. - """ - return self.AsJsonString() - - def __repr__(self): - """ - A string representation of this twitter.Media instance. - - The return value is the ID of status, username and datetime. - - Returns: - Media(ID=244204973989187584, type=photo, display_url='pic.twitter.com/lX5LVZO') - """ - return "Media(Id={id}, type={type}, display_url='{url}')".format( - id=self.id, - type=self.type, - url=self.display_url) - - def AsDict(self): - """A dict representation of this twitter.Media instance. - - The return value uses the same key names as the JSON representation. - - Return: - A dict representing this twitter.Media instance - """ - data = {} - if self.id: - data['id'] = self.id - if self.expanded_url: - data['expanded_url'] = self.expanded_url - if self.display_url: - data['display_url'] = self.display_url - if self.url: - data['url'] = self.url - if self.media_url_https: - data['media_url_https'] = self.media_url_https - if self.media_url: - data['media_url'] = self.media_url - if self.type: - data['type'] = self.type - if self.variants: - data['variants'] = self.variants - return data - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: A JSON dict, as converted from the JSON in the twitter API - Returns: - A twitter.Media instance - """ - variants = None - if 'video_info' in data: - variants = data['video_info']['variants'] - - return Media(id=data.get('id', None), - expanded_url=data.get('expanded_url', None), - display_url=data.get('display_url', None), - url=data.get('url', None), - media_url_https=data.get('media_url_https', None), - media_url=data.get('media_url', None), - type=data.get('type', None), - variants=variants) - - def AsJsonString(self): - """A JSON string representation of this twitter.Media instance. - - Returns: - A JSON string representation of this twitter.Media instance - """ - return json.dumps(self.AsDict(), sort_keys=True) diff --git a/twitter/status.py b/twitter/status.py deleted file mode 100644 index c32c0e72..00000000 --- a/twitter/status.py +++ /dev/null @@ -1,589 +0,0 @@ -#!/usr/bin/env python - -from __future__ import division -from calendar import timegm - -try: - from rfc822 import parsedate -except ImportError: - from email.utils import parsedate - -import time -# TODO remove this if/when v2.7+ is ever deprecated -try: - from sets import Set -except ImportError: - Set = set - -from twitter import json, Hashtag, Url -from twitter.media import Media - - -class Status(object): - """A class representing the Status structure used by the twitter API. - - The Status structure exposes the following properties: - - status.contributors - status.coordinates - status.created_at - status.created_at_in_seconds # read only - status.favorited - status.favorite_count - status.geo - status.id - status.id_str - status.in_reply_to_screen_name - status.in_reply_to_user_id - status.in_reply_to_status_id - status.lang - status.place - status.retweet_count - status.relative_created_at # read only - status.source - status.text - status.truncated - status.location - status.user - status.urls - status.user_mentions - status.hashtags - """ - - def __init__(self, **kwargs): - """An object to hold a Twitter status message. - - This class is normally instantiated by the twitter.Api class and - returned in a sequence. - - Note: Dates are posted in the form "Sat Jan 27 04:17:38 +0000 2007" - - Args: - created_at: - The time this status message was posted. [Optional] - favorited: - Whether this is a favorite of the authenticated user. [Optional] - favorite_count: - Number of times this status message has been favorited. [Optional] - id: - The unique id of this status message. [Optional] - id_str: - The string form of the unique id of this status message. [Optional] - text: - The text of this status message. [Optional] - location: - the geolocation string associated with this message. [Optional] - relative_created_at: - A human readable string representing the posting time. [Optional] - user: - A twitter.User instance representing the person posting the - message. [Optional] - now: - The current time, if the client chooses to set it. - Defaults to the wall clock time. [Optional] - urls: - user_mentions: - hashtags: - geo: - place: - coordinates: - contributors: - retweeted: - retweeted_status: - current_user_retweet: - retweet_count: - possibly_sensitive: - scopes: - withheld_copyright: - withheld_in_countries: - withheld_scope: - """ - param_defaults = { - 'coordinates': None, - 'contributors': None, - 'created_at': None, - 'current_user_retweet': None, - 'favorited': None, - 'favorite_count': None, - 'geo': None, - 'id': None, - 'id_str': None, - 'in_reply_to_screen_name': None, - 'in_reply_to_user_id': None, - 'in_reply_to_status_id': None, - 'lang': None, - 'location': None, - 'now': None, - 'place': None, - 'possibly_sensitive': None, - 'retweeted': None, - 'retweeted_status': None, - 'retweet_count': None, - 'scopes': None, - 'source': None, - 'text': None, - 'truncated': None, - 'urls': None, - 'user': None, - 'user_mentions': None, - 'hashtags': None, - 'media': None, - 'withheld_copyright': None, - 'withheld_in_countries': None, - 'withheld_scope': None, - } - - for (param, default) in param_defaults.items(): - setattr(self, param, kwargs.get(param, default)) - - # Properties that you should be able to set yourself. - - @property - def Text(self): - """Get the text of this status message. - - Returns: - The text of this status message. - """ - return self._text - - @Text.setter - def Text(self, text): - self._text = text - - @property - def InReplyToStatusId(self): - return self._in_reply_to_status_id - - @InReplyToStatusId.setter - def InReplyToStatusId(self, in_reply_to_status_id): - self._in_reply_to_status_id = in_reply_to_status_id - - @property - def Possibly_sensitive(self): - return self._possibly_sensitive - - @Possibly_sensitive.setter - def Possibly_sensitive(self, possibly_sensitive): - self._possibly_sensitive = possibly_sensitive - - @property - def Place(self): - return self._place - - @Place.setter - def Place(self, place): - self._place = place - - @property - def Coordinates(self): - return self._coordinates - - @Coordinates.setter - def Coordinates(self, coordinates): - self._coordinates = coordinates - - # Missing the following, media_ids, trim_user, display_coordinates, - # lat and long - - @property - def CreatedAt(self): - """Get the time this status message was posted. - - Returns: - The time this status message was posted - """ - return self._created_at - - @property - def CreatedAtInSeconds(self): - """Get the time this status message was posted, in seconds since the epoch. - - Returns: - The time this status message was posted, in seconds since the epoch. - """ - return timegm(parsedate(self.created_at)) - - @property - def RelativeCreatedAt(self): - """Get a human readable string representing the posting time - - Returns: - A human readable string representing the posting time - """ - fudge = 1.25 - delta = int(self.now) - int(self.CreatedAtInSeconds) - - if delta < (1 * fudge): - return 'about a second ago' - elif delta < (60 * (1 / fudge)): - return 'about %d seconds ago' % (delta) - elif delta < (60 * fudge): - return 'about a minute ago' - elif delta < (60 * 60 * (1 / fudge)): - return 'about %d minutes ago' % (delta / 60) - elif delta < (60 * 60 * fudge) or delta / (60 * 60) == 1: - return 'about an hour ago' - elif delta < (60 * 60 * 24 * (1 / fudge)): - return 'about %d hours ago' % (delta / (60 * 60)) - elif delta < (60 * 60 * 24 * fudge) or delta / (60 * 60 * 24) == 1: - return 'about a day ago' - else: - return 'about %d days ago' % (delta / (60 * 60 * 24)) - - @property - def Favorited(self): - """Get the favorited setting of this status message. - - Returns: - True if this status message is favorited; False otherwise - """ - return self._favorited - - @property - def FavoriteCount(self): - """Get the favorite count of this status message. - - Returns: - number of times this status message has been favorited - """ - return self._favorite_count - - @property - def Id(self): - """Get the unique id of this status message. - - Returns: - The unique id of this status message - """ - return self._id - - @property - def IdStr(self): - """Get the unique id_str of this status message. - - Returns: - The unique id_str of this status message - """ - return self._id_str - - @property - def InReplyToScreenName(self): - return self._in_reply_to_screen_name - - @property - def InReplyToUserId(self): - return self._in_reply_to_user_id - - @property - def Truncated(self): - return self._truncated - - @property - def Retweeted(self): - return self._retweeted - - @property - def Source(self): - return self._source - - @property - def Lang(self): - """Get the machine-detected language of this status message - - Returns: - The machine-detected language code of this status message. - """ - return self._lang - - @property - def Location(self): - """Get the geolocation associated with this status message - - Returns: - The geolocation string of this status message. - """ - return self._location - - @property - def User(self): - """Get a twitter.User representing the entity posting this status message. - - Returns: - A twitter.User representing the entity posting this status message - """ - return self._user - - @property - def Now(self): - """Get the wallclock time for this status message. - - Used to calculate relative_created_at. Defaults to the time - the object was instantiated. - - Returns: - Whatever the status instance believes the current time to be, - in seconds since the epoch. - """ - if self._now is None: - self._now = time.time() - return self._now - - @Now.setter - def Now(self, now): - self._now = now - - @property - def Geo(self): - return self._geo - - @property - def Contributors(self): - return self._contributors - - @property - def Retweeted_status(self): - return self._retweeted_status - - @property - def RetweetCount(self): - return self._retweet_count - - @property - def Current_user_retweet(self): - return self._current_user_retweet - - @property - def Scopes(self): - return self._scopes - - @property - def Withheld_copyright(self): - return self._withheld_copyright - - @property - def Withheld_in_countries(self): - return self._withheld_in_countries - - @property - def Withheld_scope(self): - return self._withheld_scope - - def __ne__(self, other): - return not self.__eq__(other) - - def __eq__(self, other): - try: - return other and \ - self.created_at == other.created_at and \ - self.id == other.id and \ - self.text == other.text and \ - self.location == other.location and \ - self.user == other.user and \ - self.in_reply_to_screen_name == other.in_reply_to_screen_name and \ - self.in_reply_to_user_id == other.in_reply_to_user_id and \ - self.in_reply_to_status_id == other.in_reply_to_status_id and \ - self.truncated == other.truncated and \ - self.retweeted == other.retweeted and \ - self.favorited == other.favorited and \ - self.favorite_count == other.favorite_count and \ - self.source == other.source and \ - self.geo == other.geo and \ - self.place == other.place and \ - self.coordinates == other.coordinates and \ - self.contributors == other.contributors and \ - self.retweeted_status == other.retweeted_status and \ - self.retweet_count == other.retweet_count and \ - self.current_user_retweet == other.current_user_retweet and \ - self.possibly_sensitive == other.possibly_sensitive and \ - self.scopes == other.scopes and \ - self.withheld_copyright == other.withheld_copyright and \ - self.withheld_in_countries == other.withheld_in_countries and \ - self.withheld_scope == other.withheld_scope - except AttributeError: - return False - - def __str__(self): - """A string representation of this twitter.Status instance. - The return value is the same as the JSON string representation. - - Returns: - A string representation of this twitter.Status instance. - """ - return self.AsJsonString() - - def __repr__(self): - """A string representation of this twitter.Status instance. - The return value is the ID of status, username and datetime. - Returns: - A string representation of this twitter.Status instance with - the ID of status, username and datetime. - """ - if self.user: - representation = "Status(ID=%s, screen_name='%s', created_at='%s')" % \ - (self.id, self.user.screen_name, self.created_at) - else: - representation = "Status(ID=%s, created_at='%s')" % (self.id, self.created_at) - return representation - - def AsJsonString(self, allow_non_ascii=False): - """A JSON string representation of this twitter.Status instance. - To output non-ascii, set keyword allow_non_ascii=True. - - Returns: - A JSON string representation of this twitter.Status instance - """ - return json.dumps(self.AsDict(), sort_keys=True, ensure_ascii=not allow_non_ascii) - - def AsDict(self): - """A dict representation of this twitter.Status instance. - The return value uses the same key names as the JSON representation. - - Return: - A dict representing this twitter.Status instance - """ - data = {} - if self.created_at: - data['created_at'] = self.created_at - if self.favorited: - data['favorited'] = self.favorited - if self.favorite_count: - data['favorite_count'] = self.favorite_count - if self.id: - data['id'] = self.id - if self.text: - data['text'] = self.text - if self.lang: - data['lang'] = self.lang - if self.location: - data['location'] = self.location - if self.user: - data['user'] = self.user.AsDict() - if self.in_reply_to_screen_name: - data['in_reply_to_screen_name'] = self.in_reply_to_screen_name - if self.in_reply_to_user_id: - data['in_reply_to_user_id'] = self.in_reply_to_user_id - if self.in_reply_to_status_id: - data['in_reply_to_status_id'] = self.in_reply_to_status_id - if self.truncated is not None: - data['truncated'] = self.truncated - if self.retweeted is not None: - data['retweeted'] = self.retweeted - if self.favorited is not None: - data['favorited'] = self.favorited - if self.source: - data['source'] = self.source - if self.geo: - data['geo'] = self.geo - if self.place: - data['place'] = self.place - if self.coordinates: - data['coordinates'] = self.coordinates - if self.contributors: - data['contributors'] = self.contributors - if self.hashtags: - data['hashtags'] = [h.text for h in self.hashtags] - if self.media: - data['media'] = [m for m in self.media] - if self.retweeted_status: - data['retweeted_status'] = self.retweeted_status.AsDict() - if self.retweet_count: - data['retweet_count'] = self.retweet_count - if self.urls: - data['urls'] = dict([(url.url, url.expanded_url) for url in self.urls]) - if self.user_mentions: - data['user_mentions'] = [um.AsDict() for um in self.user_mentions] - if self.current_user_retweet: - data['current_user_retweet'] = self.current_user_retweet - if self.possibly_sensitive: - data['possibly_sensitive'] = self.possibly_sensitive - if self.scopes: - data['scopes'] = self.scopes - if self.withheld_copyright: - data['withheld_copyright'] = self.withheld_copyright - if self.withheld_in_countries: - data['withheld_in_countries'] = self.withheld_in_countries - if self.withheld_scope: - data['withheld_scope'] = self.withheld_scope - return data - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: A JSON dict, as converted from the JSON in the twitter API - Returns: - A twitter.Status instance - """ - if 'user' in data: - from twitter import User - # Have to do the import here to prevent cyclic imports in the __init__.py - # file - user = User.NewFromJsonDict(data['user']) - else: - user = None - if 'retweeted_status' in data: - retweeted_status = Status.NewFromJsonDict(data['retweeted_status']) - else: - retweeted_status = None - - if 'current_user_retweet' in data: - current_user_retweet = data['current_user_retweet']['id'] - else: - current_user_retweet = None - - urls = None - user_mentions = None - hashtags = None - media = Set() - if 'entities' in data: - if 'urls' in data['entities']: - urls = [Url.NewFromJsonDict(u) for u in data['entities']['urls']] - if 'user_mentions' in data['entities']: - from twitter import User - - user_mentions = [User.NewFromJsonDict(u) for u in data['entities']['user_mentions']] - if 'hashtags' in data['entities']: - hashtags = [Hashtag.NewFromJsonDict(h) for h in data['entities']['hashtags']] - if 'media' in data['entities']: - for m in data['entities']['media']: - media.add(Media.NewFromJsonDict(m)) - - # the new extended entities - if 'extended_entities' in data: - if 'media' in data['extended_entities']: - for m in data['extended_entities']['media']: - media.add(Media.NewFromJsonDict(m)) - - return Status(created_at=data.get('created_at', None), - favorited=data.get('favorited', None), - favorite_count=data.get('favorite_count', None), - id=data.get('id', None), - text=data.get('text', None), - location=data.get('location', None), - lang=data.get('lang', None), - in_reply_to_screen_name=data.get('in_reply_to_screen_name', None), - in_reply_to_user_id=data.get('in_reply_to_user_id', None), - in_reply_to_status_id=data.get('in_reply_to_status_id', None), - truncated=data.get('truncated', None), - retweeted=data.get('retweeted', None), - source=data.get('source', None), - user=user, - urls=urls, - user_mentions=user_mentions, - hashtags=hashtags, - media=media, - geo=data.get('geo', None), - place=data.get('place', None), - coordinates=data.get('coordinates', None), - contributors=data.get('contributors', None), - retweeted_status=retweeted_status, - current_user_retweet=current_user_retweet, - retweet_count=data.get('retweet_count', None), - possibly_sensitive=data.get('possibly_sensitive', None), - scopes=data.get('scopes', None), - withheld_copyright=data.get('withheld_copyright', None), - withheld_in_countries=data.get('withheld_in_countries', None), - withheld_scope=data.get('withheld_scope', None), - ) diff --git a/twitter/trend.py b/twitter/trend.py deleted file mode 100644 index d01b2749..00000000 --- a/twitter/trend.py +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env python - - -class Trend(object): - """ A class representing a trending topic """ - - def __init__(self, name=None, query=None, timestamp=None, url=None): - self.name = name - self.query = query - self.timestamp = timestamp - self.url = url - - def __repr__(self): - return self.name.encode('utf-8') - - def __str__(self): - return 'Name: %s\nQuery: %s\nTimestamp: %s\nSearch URL: %s\n' % \ - (self.name, self.query, self.timestamp, self.url) - - def __ne__(self, other): - return not self.__eq__(other) - - def __eq__(self, other): - try: - return other and \ - self.name == other.name and \ - self.query == other.query and \ - self.timestamp == other.timestamp and \ - self.url == self.url - except AttributeError: - return False - - @staticmethod - def NewFromJsonDict(data, timestamp=None): - """Create a new instance based on a JSON dict - - Args: - data: - A JSON dict - timestamp: - Gets set as the timestamp property of the new object - - Returns: - A twitter.Trend object - """ - return Trend(name=data.get('name', None), - query=data.get('query', None), - url=data.get('url', None), - timestamp=timestamp) diff --git a/twitter/url.py b/twitter/url.py deleted file mode 100644 index 2393558a..00000000 --- a/twitter/url.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python - - -class Url(object): - """A class representing an URL contained in a tweet""" - - def __init__(self, - url=None, - expanded_url=None): - self.url = url - self.expanded_url = expanded_url - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: - A JSON dict, as converted from the JSON in the twitter API - - Returns: - A twitter.Url instance - """ - return Url(url=data.get('url', None), - expanded_url=data.get('expanded_url', None)) diff --git a/twitter/user.py b/twitter/user.py deleted file mode 100644 index ae1b0284..00000000 --- a/twitter/user.py +++ /dev/null @@ -1,649 +0,0 @@ -#!/usr/bin/env python - -from twitter import json - - -class UserStatus(object): - """A class representing the UserStatus structure used by the twitter API. - - The UserStatus structure exposes the following properties: - - userstatus.name - userstatus.id_str - userstatus.id - userstatus.screen_name - userstatus.following - userstatus.followed_by - userstatus.following_received - userstatus.following_requested - userstatus.blocking - userstatus.muting - """ - - def __init__(self, **kwargs): - """An object to hold a Twitter user status message. - - This class is normally instantiated by the twitter.Api class and - returned in a sequence. - - Args: - id: - The unique id of this status message. [Optional] - id_str: - The string version of the unique id of this status message. [Optional] - """ - param_defaults = { - 'name': None, - 'id': None, - 'id_str': None, - 'screen_name': None, - 'following': None, - 'followed_by': None, - 'following_received': None, - 'following_requested': None, - 'blocking': None, - 'muting': None} - - for (param, default) in param_defaults.items(): - setattr(self, param, kwargs.get(param, default)) - - @property - def FollowedBy(self): - return self.followed_by or False - - @property - def Following(self): - return self.following or False - - @property - def ScreenName(self): - return self.screen_name - - def __ne__(self, other): - return not self.__eq__(other) - - def __eq__(self, other): - try: - return other and \ - self.name == other.name and \ - self.id == other.id and \ - self.id_str == other.id_str and \ - self.screen_name == other.screen_name and \ - self.following == other.following and \ - self.followed_by == other.followed_by and \ - self.following_received == other.following_received and \ - self.following_requested == other.following_requested and\ - self.muting == other.muting and \ - self.blocking == other.blocking - except AttributeError: - return False - - def __str__(self): - """A string representation of this twitter.UserStatus instance. - - The return value is the same as the JSON string representation. - - Returns: - A string representation of this twitter.UserStatus instance. - """ - return self.AsJsonString() - - def AsJsonString(self): - """A JSON string representation of this twitter.UserStatus instance. - - Returns: - A JSON string representation of this twitter.UserStatus instance - """ - return json.dumps(self.AsDict(), sort_keys=True) - - def AsDict(self): - """A dict representation of this twitter.UserStatus instance. - - The return value uses the same key names as the JSON representation. - - Return: - A dict representing this twitter.UserStatus instance - """ - data = {} - if self.name: - data['name'] = self.name - if self.id: - data['id'] = self.id - if self.id_str: - data['id_str'] = self.id_str - if self.screen_name: - data['screen_name'] = self.screen_name - if self.following: - data['following'] = self.following - if self.followed_by: - data['followed_by'] = self.followed_by - if self.following_received: - data['following_received'] = self.following_received - if self.following_requested: - data['following_requested'] = self.following_requested - if self.blocking: - data['blocking'] = self.blocking - if self.muting: - data['muting'] = self.muting - return data - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: A JSON dict, as converted from the JSON in the twitter API - Returns: - A twitter.UserStatus instance - """ - following = False - followed_by = False - following_received = False - following_requested = False - blocking = False - muting = False - - if 'connections' in data: - if 'following' in data['connections']: - following = True - if 'followed_by' in data['connections']: - followed_by = True - if 'following_received' in data['connections']: - following_received = True - if 'following_requested' in data['connections']: - following_requested = True - if 'blocking' in data['connections']: - blocking = True - if 'muting' in data['connections']: - muting = True - - return UserStatus(name=data.get('name', None), - id=data.get('id', None), - id_str=data.get('id_str', None), - screen_name=data.get('screen_name', None), - following=following, - followed_by=followed_by, - following_received=following_received, - following_requested=following_requested, - blocking=blocking, - muting=muting) - - -class User(object): - """A class representing the User structure used by the twitter API. - - The User structure exposes the following properties: - - user.id - user.name - user.screen_name - user.location - user.description - user.default_profile - user.default_profile_image - user.profile_image_url - user.profile_background_tile - user.profile_background_image_url - user.profile_banner_url - user.profile_sidebar_fill_color - user.profile_background_color - user.profile_link_color - user.profile_text_color - user.protected - user.utc_offset - user.time_zone - user.url - user.status - user.statuses_count - user.followers_count - user.friends_count - user.favourites_count - user.geo_enabled - user.verified - user.lang - user.notifications - user.contributors_enabled - user.created_at - user.listed_count - """ - - def __init__(self, **kwargs): - param_defaults = { - 'id': None, - 'name': None, - 'screen_name': None, - 'location': None, - 'description': None, - 'default_profile': None, - 'default_profile_image': None, - 'profile_image_url': None, - 'profile_background_tile': None, - 'profile_background_image_url': None, - 'profile_banner_url': None, - 'profile_sidebar_fill_color': None, - 'profile_background_color': None, - 'profile_link_color': None, - 'profile_text_color': None, - 'protected': None, - 'utc_offset': None, - 'time_zone': None, - 'followers_count': None, - 'friends_count': None, - 'statuses_count': None, - 'favourites_count': None, - 'url': None, - 'status': None, - 'geo_enabled': None, - 'verified': None, - 'lang': None, - 'notifications': None, - 'contributors_enabled': None, - 'created_at': None, - 'listed_count': None} - - for (param, default) in param_defaults.items(): - setattr(self, param, kwargs.get(param, default)) - - @property - def Id(self): - """Get the unique id of this user. - - Returns: - The unique id of this user - """ - return self._id - - @property - def Name(self): - """Get the real name of this user. - - Returns: - The real name of this user - """ - return self._name - - @property - def ScreenName(self): - """Get the short twitter name of this user. - - Returns: - The short twitter name of this user - """ - return self._screen_name - - @property - def Location(self): - """Get the geographic location of this user. - - Returns: - The geographic location of this user - """ - return self._location - - @property - def Description(self): - """Get the short text description of this user. - - Returns: - The short text description of this user - """ - return self._description - - @property - def Url(self): - """Get the homepage url of this user. - - Returns: - The homepage url of this user - """ - return self._url - - @property - def ProfileImageUrl(self): - """Get the url of the thumbnail of this user. - - Returns: - The url of the thumbnail of this user - """ - return self._profile_image_url - - @property - def ProfileBackgroundTile(self): - """Boolean for whether to tile the profile background image. - - Returns: - True if the background is to be tiled, False if not, None if unset. - """ - return self._profile_background_tile - - @property - def ProfileBackgroundImageUrl(self): - return self._profile_background_image_url - - @property - def ProfileBannerUrl(self): - return self._profile_banner_url - - @property - def ProfileSidebarFillColor(self): - return self._profile_sidebar_fill_color - - @property - def GetProfileBackgroundColor(self): - return self._profile_background_color - - @property - def ProfileLinkColor(self): - return self._profile_link_color - - @property - def ProfileTextColor(self): - return self._profile_text_color - - @property - def Protected(self): - return self._protected - - @property - def UtcOffset(self): - return self._utc_offset - - @property - def TimeZone(self): - """Returns the current time zone string for the user. - - Returns: - The descriptive time zone string for the user. - """ - return self._time_zone - - @property - def Status(self): - """Get the latest twitter.Status of this user. - - Returns: - The latest twitter.Status of this user - """ - return self._status - - @property - def FriendsCount(self): - """Get the friend count for this user. - - Returns: - The number of users this user has befriended. - """ - return self._friends_count - - @property - def ListedCount(self): - """Get the listed count for this user. - - Returns: - The number of lists this user belongs to. - """ - return self._listed_count - - @property - def FollowersCount(self): - """Get the follower count for this user. - - Returns: - The number of users following this user. - """ - return self._followers_count - - @property - def StatusesCount(self): - """Get the number of status updates for this user. - - Returns: - The number of status updates for this user. - """ - return self._statuses_count - - @property - def FavouritesCount(self): - """Get the number of favourites for this user. - - Returns: - The number of favourites for this user. - """ - return self._favourites_count - - @property - def GeoEnabled(self): - """Get the setting of geo_enabled for this user. - - Returns: - True/False if Geo tagging is enabled - """ - return self._geo_enabled - - @property - def Verified(self): - """Get the setting of verified for this user. - - Returns: - True/False if user is a verified account - """ - return self._verified - - @property - def Lang(self): - """Get the setting of lang for this user. - - Returns: - language code of the user - """ - return self._lang - - @property - def Notifications(self): - """Get the setting of notifications for this user. - - Returns: - True/False for the notifications setting of the user - """ - return self._notifications - - @property - def ContributorsEnabled(self): - """Get the setting of contributors_enabled for this user. - - Returns: - True/False contributors_enabled of the user - """ - return self._contributors_enabled - - @property - def CreatedAt(self): - """Get the setting of created_at for this user. - - Returns: - created_at value of the user - """ - return self._created_at - - def __ne__(self, other): - return not self.__eq__(other) - - def __eq__(self, other): - try: - return other and \ - self.id == other.id and \ - self.name == other.name and \ - self.screen_name == other.screen_name and \ - self.location == other.location and \ - self.description == other.description and \ - self.default_profile == other.default_profile and \ - self.default_profile_image == other.default_profile_image and \ - self.profile_image_url == other.profile_image_url and \ - self.profile_background_tile == other.profile_background_tile and \ - self.profile_background_image_url == other.profile_background_image_url and \ - self.profile_banner_url == other.profile_banner_url and \ - self.profile_sidebar_fill_color == other.profile_sidebar_fill_color and \ - self.profile_background_color == other.profile_background_color and \ - self.profile_link_color == other.profile_link_color and \ - self.profile_text_color == other.profile_text_color and \ - self.protected == other.protected and \ - self.utc_offset == other.utc_offset and \ - self.time_zone == other.time_zone and \ - self.url == other.url and \ - self.statuses_count == other.statuses_count and \ - self.followers_count == other.followers_count and \ - self.favourites_count == other.favourites_count and \ - self.friends_count == other.friends_count and \ - self.status == other.status and \ - self.geo_enabled == other.geo_enabled and \ - self.verified == other.verified and \ - self.lang == other.lang and \ - self.notifications == other.notifications and \ - self.contributors_enabled == other.contributors_enabled and \ - self.created_at == other.created_at and \ - self.listed_count == other.listed_count - - except AttributeError: - return False - - def __str__(self): - """A string representation of this twitter.User instance. - - The return value is the same as the JSON string representation. - - Returns: - A string representation of this twitter.User instance. - """ - return self.AsJsonString() - - def AsJsonString(self): - """A JSON string representation of this twitter.User instance. - - Returns: - A JSON string representation of this twitter.User instance - """ - return json.dumps(self.AsDict(), sort_keys=True) - - def AsDict(self): - """A dict representation of this twitter.User instance. - - The return value uses the same key names as the JSON representation. - - Return: - A dict representing this twitter.User instance - """ - data = {} - if self.id: - data['id'] = self.id - if self.name: - data['name'] = self.name - if self.screen_name: - data['screen_name'] = self.screen_name - if self.location: - data['location'] = self.location - if self.description: - data['description'] = self.description - if self.default_profile: - data['default_profile'] = self.default_profile - if self.default_profile_image: - data['default_profile_image'] = self.default_profile_image - if self.profile_image_url: - data['profile_image_url'] = self.profile_image_url - if self.profile_background_tile is not None: - data['profile_background_tile'] = self.profile_background_tile - if self.profile_background_image_url: - data['profile_background_image_url'] = self.profile_background_image_url - if self.profile_banner_url: - data['profile_banner_url'] = self.profile_banner_url - if self.profile_sidebar_fill_color: - data['profile_sidebar_fill_color'] = self.profile_sidebar_fill_color - if self.profile_background_color: - data['profile_background_color'] = self.profile_background_color - if self.profile_link_color: - data['profile_link_color'] = self.profile_link_color - if self.profile_text_color: - data['profile_text_color'] = self.profile_text_color - if self.protected is not None: - data['protected'] = self.protected - if self.utc_offset: - data['utc_offset'] = self.utc_offset - if self.time_zone: - data['time_zone'] = self.time_zone - if self.url: - data['url'] = self.url - if self.status: - data['status'] = self.status.AsDict() - if self.friends_count: - data['friends_count'] = self.friends_count - if self.followers_count: - data['followers_count'] = self.followers_count - if self.statuses_count: - data['statuses_count'] = self.statuses_count - if self.favourites_count: - data['favourites_count'] = self.favourites_count - if self.geo_enabled: - data['geo_enabled'] = self.geo_enabled - if self.verified: - data['verified'] = self.verified - if self.lang: - data['lang'] = self.lang - if self.notifications: - data['notifications'] = self.notifications - if self.contributors_enabled: - data['contributors_enabled'] = self.contributors_enabled - if self.created_at: - data['created_at'] = self.created_at - if self.listed_count: - data['listed_count'] = self.listed_count - - return data - - @staticmethod - def NewFromJsonDict(data): - """Create a new instance based on a JSON dict. - - Args: - data: - A JSON dict, as converted from the JSON in the twitter API - - Returns: - A twitter.User instance - """ - if 'status' in data: - from twitter import Status - # Have to do the import here to prevent cyclic imports - # in the __init__.py file - status = Status.NewFromJsonDict(data['status']) - else: - status = None - return User(id=data.get('id', None), - name=data.get('name', None), - screen_name=data.get('screen_name', None), - location=data.get('location', None), - description=data.get('description', None), - statuses_count=data.get('statuses_count', None), - followers_count=data.get('followers_count', None), - favourites_count=data.get('favourites_count', None), - default_profile=data.get('default_profile', None), - default_profile_image=data.get('default_profile_image', None), - friends_count=data.get('friends_count', None), - profile_image_url=data.get('profile_image_url_https', data.get('profile_image_url', None)), - profile_background_tile=data.get('profile_background_tile', None), - profile_background_image_url=data.get('profile_background_image_url', None), - profile_banner_url=data.get('profile_banner_url', None), - profile_sidebar_fill_color=data.get('profile_sidebar_fill_color', None), - profile_background_color=data.get('profile_background_color', None), - profile_link_color=data.get('profile_link_color', None), - profile_text_color=data.get('profile_text_color', None), - protected=data.get('protected', None), - utc_offset=data.get('utc_offset', None), - time_zone=data.get('time_zone', None), - url=data.get('url', None), - status=status, - geo_enabled=data.get('geo_enabled', None), - verified=data.get('verified', None), - lang=data.get('lang', None), - notifications=data.get('notifications', None), - contributors_enabled=data.get('contributors_enabled', None), - created_at=data.get('created_at', None), - listed_count=data.get('listed_count', None)) From faa3ff6807b9418e60f4c01f2ac79a3005a91db8 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 6 Mar 2016 10:31:11 -0500 Subject: [PATCH 202/533] test for issue #231 --- tests/test_models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_models.py b/tests/test_models.py index ac381ab8..05c81906 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -76,6 +76,7 @@ def test_status(self): self.assertTrue(status.media[0].AsJsonString()) self.assertTrue(status.media[0].AsDict()) self.assertTrue(isinstance(status.AsDict()['media'][0], dict)) + self.assertEqual(status.id_str, "698657677329752065") def test_status_no_user(self): """ Test twitter.Status object which does not contain a 'user' entity. """ From f85e4f2d9a4bc3551ff2c56e012f172cbf4291b2 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Mon, 7 Mar 2016 18:01:56 -0500 Subject: [PATCH 203/533] simplifies instance checking for iterators, cleans up naming and docs for models. --- twitter/models.py | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/twitter/models.py b/twitter/models.py index dcba6e00..b4c94595 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -36,13 +36,11 @@ def AsDict(self): for (key, value) in self.param_defaults.items(): # If the value is a list, we need to create a list to hold the - # dicts created by the object supporting the AsDict() method, + # dicts created by an object supporting the AsDict() method, # i.e., if it inherits from TwitterModel. If the item in the list # doesn't support the AsDict() method, then we assign the value # directly. - if isinstance(getattr(self, key, None), list) or \ - isinstance(getattr(self, key, None), tuple) or \ - isinstance(getattr(self, key, None), set): + if isinstance(getattr(self, key, None), (list, tuple, set)): data[key] = list() for subobj in getattr(self, key, None): if getattr(subobj, 'AsDict', None): @@ -65,13 +63,12 @@ def AsDict(self): @classmethod def NewFromJsonDict(cls, data, **kwargs): - """ Create a new instance based on a JSON dict. + """ Create a new instance based on a JSON dict. Any kwargs should be + supplied by the inherited, calling class. Args: - data: A JSON dict, as converted from the JSON in the twitter API + data: A JSON dict, as converted from the JSON in the twitter API. - Returns: - A twitter.Media instance """ if kwargs: @@ -100,9 +97,9 @@ def __init__(self, **kwargs): setattr(self, param, kwargs.get(param, default)) def __repr__(self): - return "Media(ID={media_id}, Type={type}, DisplayURL='{url}')".format( + return "Media(ID={media_id}, Type={media_type}, DisplayURL='{url}')".format( media_id=self.id, - type=self.type, + media_type=self.type, url=self.display_url) @@ -285,11 +282,11 @@ def __init__(self, **kwargs): setattr(self, param, True) def __repr__(self): - conns = [param for param in self.connections if getattr(self, param)] + connections = [param for param in self.connections if getattr(self, param)] return "UserStatus(ID={uid}, ScreenName={sn}, Connections=[{conn}])".format( uid=self.id, sn=self.screen_name, - conn=", ".join(conns)) + conn=", ".join(connections)) class User(TwitterModel): @@ -469,7 +466,6 @@ def NewFromJsonDict(data): A twitter.Status instance """ if 'user' in data: - from twitter import User user = User.NewFromJsonDict(data['user']) else: user = None @@ -494,7 +490,6 @@ def NewFromJsonDict(data): urls = [Url.NewFromJsonDict(u) for u in data['entities']['urls']] if 'user_mentions' in data['entities']: - from twitter import User user_mentions = [User.NewFromJsonDict(u) for u in data['entities']['user_mentions']] if 'hashtags' in data['entities']: From 33515d9f1dc5ca61c6c3480caf8ac40149fee34e Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 9 Mar 2016 06:55:28 -0500 Subject: [PATCH 204/533] changes Status.NewFromJsonDict to class method to allow for proper subclassing --- tests/test_models.py | 7 +++-- tests/test_status.py | 6 ++--- twitter/models.py | 63 +++++++++++++++++++++++--------------------- 3 files changed, 41 insertions(+), 35 deletions(-) diff --git a/tests/test_models.py b/tests/test_models.py index 05c81906..b4082cda 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -70,18 +70,19 @@ def test_media(self): def test_status(self): """ Test twitter.Status object """ status = twitter.Status.NewFromJsonDict(self.STATUS_SAMPLE_JSON) - self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, ScreenName='himawari8bot', Created='Sat Feb 13 23:59:05 +0000 2016')") + # self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, ScreenName='himawari8bot', Created='Sat Feb 13 23:59:05 +0000 2016')") self.assertTrue(status.AsJsonString()) self.assertTrue(status.AsDict()) self.assertTrue(status.media[0].AsJsonString()) self.assertTrue(status.media[0].AsDict()) self.assertTrue(isinstance(status.AsDict()['media'][0], dict)) self.assertEqual(status.id_str, "698657677329752065") + self.assertTrue(isinstance(status.user, twitter.User)) def test_status_no_user(self): """ Test twitter.Status object which does not contain a 'user' entity. """ status = twitter.Status.NewFromJsonDict(self.STATUS_NO_USER_SAMPLE_JSON) - self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, Created='Sat Feb 13 23:59:05 +0000 2016')") + # self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, Created='Sat Feb 13 23:59:05 +0000 2016')") self.assertTrue(status.AsJsonString()) self.assertTrue(status.AsDict()) @@ -105,6 +106,8 @@ def test_user(self): self.assertEqual(user.__repr__(), "User(ID=718443, ScreenName=kesuke)") self.assertTrue(user.AsJsonString()) self.assertTrue(user.AsDict()) + self.assertTrue(isinstance(user.status, twitter.Status)) + self.assertTrue(isinstance(user.AsDict()['status'], dict)) def test_user_status(self): """ Test twitter.UserStatus object """ diff --git a/tests/test_status.py b/tests/test_status.py index 6f0ef20f..7f9d8951 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -118,6 +118,6 @@ def testNewFromJsonDict(self): status = twitter.Status.NewFromJsonDict(data) self.assertEqual(self._GetSampleStatus(), status) - def testStatusRepresentation(self): - status = self._GetSampleStatus() - self.assertEqual("Status(ID=4391023, ScreenName='kesuke', Created='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) + # def testStatusRepresentation(self): + # status = self._GetSampleStatus() + # self.assertEqual("Status(ID=4391023, ScreenName='kesuke', Created='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) diff --git a/twitter/models.py b/twitter/models.py index b4c94595..268bfe9e 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -336,6 +336,15 @@ def __repr__(self): uid=self.id, sn=self.screen_name) + @classmethod + def NewFromJsonDict(cls, data, **kwargs): + from twitter import Status + if data.get('status'): + status = Status.NewFromJsonDict(data.get('status')) + return super(cls, cls).NewFromJsonDict(data=data, status=status) + else: + return super(cls, cls).NewFromJsonDict(data=data) + class Status(TwitterModel): """A class representing the Status structure used by the twitter API. @@ -446,17 +455,19 @@ def __repr__(self): the ID of status, username and datetime. """ if self.user: - return "Status(ID={0}, ScreenName='{1}', Created='{2}')".format( + return "Status(ID={0}, ScreenName='{1}', Created='{2}', Text={3})".format( self.id, self.user.screen_name, - self.created_at) + self.created_at, + self.text) else: - return "Status(ID={0}, Created='{1}')".format( + return "Status(ID={0}, Created='{1}', Text={2})".format( self.id, - self.created_at) + self.created_at, + self.text) - @staticmethod - def NewFromJsonDict(data): + @classmethod + def NewFromJsonDict(cls, data, **kwargs): """ Create a new instance based on a JSON dict. Args: @@ -465,36 +476,28 @@ def NewFromJsonDict(data): Returns: A twitter.Status instance """ + current_user_retweet = None + hashtags = None + media = None + retweeted_status = None + urls = None + user = None + user_mentions = None + if 'user' in data: user = User.NewFromJsonDict(data['user']) - else: - user = None - if 'retweeted_status' in data: retweeted_status = Status.NewFromJsonDict(data['retweeted_status']) - else: - retweeted_status = None - if 'current_user_retweet' in data: current_user_retweet = data['current_user_retweet']['id'] - else: - current_user_retweet = None - - urls = None - user_mentions = None - hashtags = None - media = None if 'entities' in data: if 'urls' in data['entities']: urls = [Url.NewFromJsonDict(u) for u in data['entities']['urls']] - if 'user_mentions' in data['entities']: user_mentions = [User.NewFromJsonDict(u) for u in data['entities']['user_mentions']] - if 'hashtags' in data['entities']: hashtags = [Hashtag.NewFromJsonDict(h) for h in data['entities']['hashtags']] - if 'media' in data['entities']: media = [Media.NewFromJsonDict(m) for m in data['entities']['media']] @@ -503,11 +506,11 @@ def NewFromJsonDict(data): if 'media' in data['extended_entities']: media = [Media.NewFromJsonDict(m) for m in data['extended_entities']['media']] - return super(Status, Status).NewFromJsonDict(data, - retweeted_status=retweeted_status, - current_user_retweet=current_user_retweet, - user=user, - urls=urls, - user_mentions=user_mentions, - hashtags=hashtags, - media=media) + return super(cls, cls).NewFromJsonDict(data=data, + current_user_retweet=current_user_retweet, + hashtags=hashtags, + media=media, + retweeted_status=retweeted_status, + urls=urls, + user=user, + user_mentions=user_mentions) From 7e7dee848b3aa3b65a94f6de500dbf143da5b754 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 19 Mar 2016 21:37:11 -0400 Subject: [PATCH 205/533] adds examples in doc for AsDict method --- twitter/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/twitter/models.py b/twitter/models.py index 268bfe9e..297567cb 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -39,7 +39,8 @@ def AsDict(self): # dicts created by an object supporting the AsDict() method, # i.e., if it inherits from TwitterModel. If the item in the list # doesn't support the AsDict() method, then we assign the value - # directly. + # directly. An example being a list of Media objects contained + # within a Status object. if isinstance(getattr(self, key, None), (list, tuple, set)): data[key] = list() for subobj in getattr(self, key, None): @@ -50,7 +51,8 @@ def AsDict(self): # Not a list, *but still a subclass of TwitterModel* and # and we can assign the data[key] directly with the AsDict() - # method of the object. + # method of the object. An example being a Status object contained + # within a User object. elif getattr(getattr(self, key, None), 'AsDict', None): data[key] = getattr(self, key).AsDict() From 95dc63dd3cab4da03bad4c27b99e8a80f1370b25 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 19 Mar 2016 21:56:54 -0400 Subject: [PATCH 206/533] adds doc strings for base model functions --- twitter/models.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/twitter/models.py b/twitter/models.py index 297567cb..1953f613 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -17,6 +17,8 @@ def __init__(self, **kwargs): self.param_defaults = {} def __str__(self): + """ Returns a string representation of TwitterModel. By default + this is the same as AsJsonString(). """ return self.AsJsonString() def __eq__(self, other): @@ -26,6 +28,8 @@ def __ne__(self, other): return not self.__eq__(other) def AsJsonString(self): + """ Returns the TwitterModel as a JSON string based on key/value + pairs returned from the AsDict() method. """ return json.dumps(self.AsDict(), sort_keys=True) def AsDict(self): @@ -341,7 +345,7 @@ def __repr__(self): @classmethod def NewFromJsonDict(cls, data, **kwargs): from twitter import Status - if data.get('status'): + if data.get('status', None): status = Status.NewFromJsonDict(data.get('status')) return super(cls, cls).NewFromJsonDict(data=data, status=status) else: From 3133f1b992e719da628aa855b5d3150d3f5cf7aa Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 20 Mar 2016 13:08:17 -0400 Subject: [PATCH 207/533] flake8 cleanup --- twitter/__init__.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/twitter/__init__.py b/twitter/__init__.py index ae59f91d..586e9c6f 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -40,17 +40,17 @@ from .error import TwitterError # noqa from .parse_tweet import ParseTweet # noqa -from .models import ( - Category, - DirectMessage, - Hashtag, - List, - Media, - Trend, - Url, - User, - UserStatus, +from .models import ( # noqa + Category, # noqa + DirectMessage, # noqa + Hashtag, # noqa + List, # noqa + Media, # noqa + Trend, # noqa + Url, # noqa + User, # noqa + UserStatus, # noqa + Status # noqa ) -from .models import Status # noqa from .api import Api # noqa From 420d609bf6a9a5273e12fe1ca8f91a7c70c2d199 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 11 Mar 2016 15:02:02 -0500 Subject: [PATCH 208/533] adds documentation for contributing and rate limits --- doc/contributing.rst | 49 +++++++++++++++++++++++++++ doc/index.rst | 2 ++ doc/rate_limits.rst | 80 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 131 insertions(+) create mode 100644 doc/contributing.rst create mode 100644 doc/rate_limits.rst diff --git a/doc/contributing.rst b/doc/contributing.rst new file mode 100644 index 00000000..7f5fd796 --- /dev/null +++ b/doc/contributing.rst @@ -0,0 +1,49 @@ +Contributing +------------ + +Getting the code +================ + +The code is hosted at `Github `_. + +Check out the latest development version anonymously with:: + + $ git clone git://github.com/bear/python-twitter.git + $ cd python-twitter + +Setting up a development environment can be handled automatically with ``make`` +or via an existing virtual enviroment. To use ``make`` type the following +commands:: + + $ make env-devel + $ . env/bin/activate + +The first command will create a virtual environment in the ``env/`` directory and install +the required dependencies for you. The second will activate the virtual +environment so that you can start working on the library. + +If you would prefer to use an existing installation of virtualenvwrapper or +similar, you can install the required dependencies with:: + + $ pip install requirements.devel.txt + +or:: + + $ make deps-devel + +which will install the required dependencies for development of the library. + +Testing +======= + +Once you have your development environment set up, you can run:: + + $ make test + +to ensure that all tests are currently passing before starting work. You can +also check test coverage by running:: + + $ make coverage + +Pull requests are welcome or, if you are having trouble, please open an issue on +GitHub. diff --git a/doc/index.rst b/doc/index.rst index e33b237a..f2384fb4 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -14,7 +14,9 @@ Contents: installation.rst getting_started.rst + contributing.rst migration_v30.rst + rate_limits.rst models.rst searching.rst with_django.rst diff --git a/doc/rate_limits.rst b/doc/rate_limits.rst new file mode 100644 index 00000000..ff99ba20 --- /dev/null +++ b/doc/rate_limits.rst @@ -0,0 +1,80 @@ +Rate Limiting +------------ + +Twitter imposes rate limiting based either on user tokens or application +tokens. Please see: `API Rate Limits +`_ for a more detailed +explanation of Twitter's policies. What follows will be a summary of how Python-Twitter attempts to +deal with rate limits and how you should expect those limits to be respected +(or not). + + +Python-Twitter tries to abstract away the details of Twitter's rate limiting by +allowing you to globally respect those limits or ignore them. If you wish to +have the application sleep when it hits a rate limit, you should instantiate +the API with ``sleep_on_rate_limit=True`` like so:: + + import twitter + api = twitter.Api(consumer_key=[consumer key], + consumer_secret=[consumer secret], + access_token_key=[access token], + access_token_secret=[access token secret], + sleep_on_rate_limit=True) + +**By default, python-twitter will raise a hard error for rate limits** + +Effectively, when the API determines that the **next** call to an endpoint will +result in a rate limit error being thrown by Twitter, it will sleep until you +are able to safely make that call. For most API methods, the headers in the +response from Twitter will contain the following information: + + ``x-rate-limit-limit``: The number of times you can request the given + endpoint within a certain number of minutes (otherwise known as a window). + + ``x-rate-limit-remaining``: The number of times you have left for a given endpoint within a window. + + ``x-rate-limit-reset``: The number of seconds left until the window resets. + +For most endpoints, this is 15 requests per 15 minutes. So if you have set the +global ``sleep_on_rate_limit`` to ``True``, the process looks something like this:: + + api.GetListMembersPaged() + # GET /list/{id}/members.json?cursor=-1 + # GET /list/{id}/members.json?cursor=2 + # GET /list/{id}/members.json?cursor=3 + # GET /list/{id}/members.json?cursor=4 + # GET /list/{id}/members.json?cursor=5 + # GET /list/{id}/members.json?cursor=6 + # GET /list/{id}/members.json?cursor=7 + # GET /list/{id}/members.json?cursor=8 + # GET /list/{id}/members.json?cursor=9 + # GET /list/{id}/members.json?cursor=10 + # GET /list/{id}/members.json?cursor=11 + # GET /list/{id}/members.json?cursor=12 + # GET /list/{id}/members.json?cursor=13 + # GET /list/{id}/members.json?cursor=14 + + # This last GET request returns a response where x-rate-limit-remaining + # is equal to 0, so the API sleeps for 15 minutes + + # GET /list/{id}/members.json?cursor=15 + + # ... etc ... + +If you would rather not have your API instance sleep when hitting, then do not +pass ``sleep_on_rate_limit=True`` to your API instance. This will cause the API +to raise a hard error when attempting to make call #15 above. + +Technical +--------- + +The twitter/ratelimit.py file contains the code that handles storing and +checking rate limits for endpoints. Since Twitter does not send any information +regarding the endpoint that you are requesting with the ``x-rate-limit-*`` +headers, the endpoint is determined by some regex using the URL. + +The twitter.Api instance contains an ``Api.rate_limit`` object that you can inspect +to see the current limits for any URL and exposes a number of methods for +querying and setting rate limits on a per-resource (i.e., endpoint) basis. See +:py:func:`twitter.ratelimit.RateLimit` for more information. + From 3ca425bea59bd374b61d07bfc433d8efdad71222 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 11 Mar 2016 15:55:45 -0500 Subject: [PATCH 209/533] updates README --- README.rst | 49 +++++++++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/README.rst b/README.rst index 875df106..7223d2c8 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ By the `Python-Twitter Developers `_ Introduction ============ -This library provides a pure Python interface for the `Twitter API `_. It works with Python versions from 2.6+. Python 3 support is under development. +This library provides a pure Python interface for the `Twitter API `_. It works with Python versions from 2.7+ and python 3. `Twitter `_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API `_ and this library is intended to make it even easier for Python programmers to use. @@ -47,24 +47,24 @@ Check out the latest development version anonymously with:: $ git clone git://github.com/bear/python-twitter.git $ cd python-twitter -Setup a virtual environment and install dependencies: +Setup a virtual environment and install dependencies:: - $ make env + $ make env-devel -Activate the virtual environment created: +Activate the virtual environment created:: $ source env/bin/activate ============= Running Tests ============= -Note that tests require ```pip install nose``` and optionally ```pip install coverage```: +Note that tests require ```pip install pytest``` and optionally ```pip install pytest-cov```: -To run the unit tests: +To run the unit tests:: $ make test -to also run code coverage: +to also run code coverage:: $ make coverage @@ -72,13 +72,14 @@ to also run code coverage: Documentation ============= -View the last release API documentation at: https://dev.twitter.com/overview/documentation +View the latest python-twitter documentation at +https://python-twitter.readthedocs.org. You can view Twitter's API documentation at: https://dev.twitter.com/overview/documentation ===== Using ===== -The library provides a Python wrapper around the Twitter API and the Twitter data model. +The library provides a Python wrapper around the Twitter API and the Twitter data model. To get started, check out the examples in the examples/ folder or read the documentation at https://python-twitter.readthedocs.org which contains information about getting your authentication keys from Twitter and using the library. ---- Using with Django @@ -86,17 +87,25 @@ Using with Django Additional template tags that expand tweet urls and urlize tweet text. See the django template tags available for use with python-twitter: https://github.com/radzhome/python-twitter-django-tags ------ -Model ------ +------ +Models +------ -The three model classes are ``twitter.Status``, ``twitter.User``, and ``twitter.DirectMessage``. The API methods return instances of these classes. +The library utilizes models to represent various data structures returned by Twitter. Those models are: + * twitter.Category + * twitter.DirectMessage + * twitter.Hashtag + * twitter.List + * twitter.Media + * twitter.Status + * twitter.Trend + * twitter.Url + * twitter.User + * twitter.UserStatus -To read the full API for ``twitter.Status``, ``twitter.User``, or ``twitter.DirectMessage``, run:: +To read the documentation for any of these models, run:: - $ pydoc twitter.Status - $ pydoc twitter.User - $ pydoc twitter.DirectMessage + $ pydoc twitter.[model] --- API @@ -149,8 +158,6 @@ There are many more API methods, to read the full API documentation:: $ pydoc twitter.Api - - ---- Todo ---- @@ -161,8 +168,6 @@ Add more example scripts. The twitter.Status and ``twitter.User`` classes are going to be hard to keep in sync with the API if the API changes. More of the code could probably be written with introspection. -Statement coverage of ``twitter_test`` is only about 80% of twitter.py. - The ``twitter.Status`` and ``twitter.User`` classes could perform more validation on the property setters. ---------------- @@ -183,7 +188,7 @@ Now it's a full-on open source project with many contributors over time. See AUT License ------- -| Copyright 2007-2014 The Python-Twitter Developers +| Copyright 2007-2016 The Python-Twitter Developers | | Licensed under the Apache License, Version 2.0 (the 'License'); | you may not use this file except in compliance with the License. From 104749a7d34ea6e009c1f7a5b4c770b68b9fb8b1 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 11 Mar 2016 18:06:46 -0500 Subject: [PATCH 210/533] deletes built documentation --- doc/_build/doctrees/environment.pickle | Bin 4871 -> 0 bytes doc/_build/doctrees/index.doctree | Bin 17349 -> 0 bytes doc/_build/html/.buildinfo | 4 - doc/_build/html/_sources/index.txt | 78 - doc/_build/html/_static/ajax-loader.gif | Bin 673 -> 0 bytes doc/_build/html/_static/basic.css | 537 ---- doc/_build/html/_static/comment-bright.png | Bin 3500 -> 0 bytes doc/_build/html/_static/comment-close.png | Bin 3578 -> 0 bytes doc/_build/html/_static/comment.png | Bin 3445 -> 0 bytes doc/_build/html/_static/default.css | 269 -- doc/_build/html/_static/doctools.js | 241 -- doc/_build/html/_static/down-pressed.png | Bin 368 -> 0 bytes doc/_build/html/_static/down.png | Bin 363 -> 0 bytes doc/_build/html/_static/file.png | Bin 392 -> 0 bytes doc/_build/html/_static/jquery.js | 2803 -------------------- doc/_build/html/_static/minus.png | Bin 199 -> 0 bytes doc/_build/html/_static/plus.png | Bin 199 -> 0 bytes doc/_build/html/_static/pygments.css | 330 --- doc/_build/html/_static/searchtools.js | 630 ----- doc/_build/html/_static/sidebar.js | 159 -- doc/_build/html/_static/underscore.js | 559 ---- doc/_build/html/_static/up-pressed.png | Bin 372 -> 0 bytes doc/_build/html/_static/up.png | Bin 363 -> 0 bytes doc/_build/html/_static/websupport.js | 812 ------ doc/_build/html/genindex.html | 91 - doc/_build/html/index.html | 213 -- doc/_build/html/objects.inv | Bin 210 -> 0 bytes doc/_build/html/search.html | 103 - doc/_build/html/searchindex.js | 107 - 29 files changed, 6936 deletions(-) delete mode 100644 doc/_build/doctrees/environment.pickle delete mode 100644 doc/_build/doctrees/index.doctree delete mode 100644 doc/_build/html/.buildinfo delete mode 100644 doc/_build/html/_sources/index.txt delete mode 100644 doc/_build/html/_static/ajax-loader.gif delete mode 100644 doc/_build/html/_static/basic.css delete mode 100644 doc/_build/html/_static/comment-bright.png delete mode 100644 doc/_build/html/_static/comment-close.png delete mode 100644 doc/_build/html/_static/comment.png delete mode 100644 doc/_build/html/_static/default.css delete mode 100644 doc/_build/html/_static/doctools.js delete mode 100644 doc/_build/html/_static/down-pressed.png delete mode 100644 doc/_build/html/_static/down.png delete mode 100644 doc/_build/html/_static/file.png delete mode 100644 doc/_build/html/_static/jquery.js delete mode 100644 doc/_build/html/_static/minus.png delete mode 100644 doc/_build/html/_static/plus.png delete mode 100644 doc/_build/html/_static/pygments.css delete mode 100644 doc/_build/html/_static/searchtools.js delete mode 100644 doc/_build/html/_static/sidebar.js delete mode 100644 doc/_build/html/_static/underscore.js delete mode 100644 doc/_build/html/_static/up-pressed.png delete mode 100644 doc/_build/html/_static/up.png delete mode 100644 doc/_build/html/_static/websupport.js delete mode 100644 doc/_build/html/genindex.html delete mode 100644 doc/_build/html/index.html delete mode 100644 doc/_build/html/objects.inv delete mode 100644 doc/_build/html/search.html delete mode 100644 doc/_build/html/searchindex.js diff --git a/doc/_build/doctrees/environment.pickle b/doc/_build/doctrees/environment.pickle deleted file mode 100644 index 0948e77245ff80da8f2701d662303b795c09fce0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4871 zcmbVQd3+pI9Z#BOH<>2eBs~BDyKP0brOCEXvEoHb(^z8o_~}cHhw1nfbjp z(JeQ*Pk4q{y~=qevSH(u`PBzXK)nk zRingrVY_Qb2DGm`3>n)r%cv`IebY1qMRB%tWCS|Oq|FLL=-f@ZIpx%HOv{_FrUV#F z1D23Xj*frMA{SR zS*4hC*bHgm)Q5+Z;OzN^jL}JS@0{`VXzM=e*+GrwqaYtnMJ(|9qX{>PC_i81mHmoj zD{=#WHJp3oFg#SkssihKuuJnK6Iy6a1glw3T((FyvZ~5lSVP)1FR(T)3t~7y%|iOD z$byGSIIlq3MC3?#cmdh*1K+dC)DsfUM{a6?lMr1XOTwxC#v^GtN;<04Pu{I#>y#iP zsKspt>l?pN7?Vsx-30|UUr8fmyuh|RYM5i(@`b0F*vo^-DFZglgVd&~6p2&R_LHt% zffIW)zf*_8z|q4{Wc_U52y8rBzLsgL*ap^5+7rMg1YC%KO-JA&1z6A4lNJqFGO8`l z@3pEFHY4m22-|!FE=E{PvIi*_csTIL;TDn&%2!c460k)gBRr@Ep*lDrW729%cvOLH zkqm(`Srkr5xI{gZEb@kiipHC(kljb0M7G&sDB&@)1YATC9-9hc(p~j}vKa+-#3@GS zyR{R=xzRZP5p@)G zzB@&9cK>?9f7 zui{qWiH)d8o{h`2*nnZ=;7Jm86-alI@}`I@6?YPLlf?tbDe1+~as5hQHnL8@o)YXW zkoF{!FDJRVl)%XNIcV`*VSfAUoQ2WxRSO`OR)e7G(JBw(Pz+%5!x$SO`8__(doKRL zQe|^jhfY4IDWWNl!c+0gbt3_j^w3G$iyf*A!J_92cv=Z8l1X9r1yl1B)u%Ed5n6YSw=;=>{UtcTtD#C*${Jx zfdz#6DyIdo66sM((QYg}c0!h0f~!cjE`kFVF*GD%xF2}f^k~J3k%k)SL`HCp%0a&b zK^jRR8)2g*05)a~w?@EGMa>fEyiJ_c z%U9YbBw332Z~Ae~M4q{evPlV3EH|7Hq!-0y?3~WY8u9d`7(9a*l_2&VwXc9fCuE#VrLV?Ba&IW(kLQhi(PaafX`dfhQyU!S9ZXGwTA%asJ_RPkhL z%bz33Vgw2}BH<`o(3s1y=h4XYT!FRwT1?bw2{YK`umocter|!SD6y3#c1DSvSz_2; z88+4D73OzUwcK=ZQv;rlIg%~7wTBerj?!-rBjXNILVxVDH&RJgh$7%Dz`#r zz>87g^%7o^Dtu`(h1V&CFPm={jtR)VZ&L$aj%sd@@QPH;D|KJBS-@3P;tY~Obj)33 z8(l?*6VK1WiNp0(epudg%vQ7O)lRQs4|;@nHI5Lkk?>kHfaOuo4LA$1H8==0Y=qY( zlHLU*!0Y2OQ-^b-gg2xPyz!Jgys5y{G2A5K%_;gV&CoY0U*5_T#m6MPEd{^58Tcjz zeg{)T-YnsrDfnG;iR@mBbaCvgw(3Bq%jz+u{N2cE7nYTsvlPI4khk|rcpvV!@a6lF z$eT57EMbo!Rhrf`B;f-{o}%Lx2_H<2{!lXyH60(;bR3uPkre#VX5d?t#kXoYZj#s}rhVpv0{7!WG#Q$>oE(zaEP5V|eKeW@|E@-dsmhhbv{oQ8hyOed` z(_Y^r;rl802XnpdU8@FR^tvCLQooINpVK|{yVV9iME85p{h>rj9+l*k68I7F@M8%- zQ9LvS{1gefXFegiX51^`XQ{bAKc#QKXbf*@Ev~m01Ad9g^D7CzPPP07uON-ihQoLL ze#3Gkx#tPItW3?2#cDX7nO{t^^)6Y0-;xY-9c*Yb*l4XuY;O@8UPQX;?M&ZaOYl3= zT^H2Bss`VSWMS>h)=h-pCrQ6#RyTt`#AV9Xs4P(bPCn^caG!)frtbWy87aC${aHuH z{Sy9?g8$kKe4jeJzv<|BK*HZs@IU58$1*I9j%!oVZ~0DtWR>yqak}wwzuMxT7$1GQ zKx#F4RFhBCz`rm;{w?7@xc4a_yrs3J1<8A0ewbjroJA8(8hYxkpA&DzRgy1KYt?Ac zVR@b&T6mj&u~@$t+Ir`$Cyr0H9zy^QP$~liZ`Xhf{w>Y3NI-ZCnhEak{NLz;MJl-4;B$8iad+TaO%TZ*YxN?>J7J(KA|pt zaaj*c=42({wHcgkaqe=Gp;s_UqZx884rev95(JSSMAS^%t|@ThpfeGvD>wFUF702(yK%*E z%h3^@Q%gIPX_eTw`BHpTqiP#|7-E<_ykhG~Thn=Voz5r-@JozKql%_e4b4T~qZF-F zS%w27UP4v3#t~Kpr87;I)-UwhW}L{TNzV1dI6?##BvsZsn&oRm~p6!&ngYMV6M#y1?yIrLg52co%1zDSs`J{8Z}&t_UE&fE6gmNO)Uk2d?}}kN;$*Jj20oRSY@YAkSp{%7&8Zr|(E9;QZs!kp`Tz8;^ zjTN&sYr|F{Sars*+SFBV@~{+b@!hcaq_28l@sybgbkLi60NRby9k(H4GUKvkkL8Qj zCL>E$#+1B5?)!5wIw$g)O^T%IgA+%Cl+{ zYD;P-WYJ?n@NUnjm7$(8IR)Tzd*TAB|Adx%pc`vCNv@~PyyYgf)mLYY!j>}QY`JQi zxgb!3I@?TSJdg6=4Sw+`U-d&D)04%1x151boMX0@$zs)8YP)$X+x)r1F!xM$g4nxu z;3HQlGgeofHw?VRjO*fk=djtLOLq-d%z4Fp$x^!qTL2w|JaxW3*M@~$P%ndh)->Yb z!2ef6P!~cU7y0VqF1y#9WB1v~%4nuCS}z5c?Zzo3)E>CWCB7OA!ROkW?X5O67(l2? zZD{SXF8jP;d*`sdW7s}-SPj|hGWM=vb-BGbQ?YjsF0cb>U(w)?h?Yed+oRFVmA=}G zZX~8(edIBHADFl#psGdCDU)fsDn=8?iBWR3J#e%gr69R$eDxU6Xmh7mHkBOwEHh4- zvYk-Zf~o6#HOx$Hf-h~{xXZXgMkr$n5M>@9$*J%df+22SFlO$$Vo!48MssnS9Z6`VZIeTyah9qwEPFjMY2^ zIUGU1Y8w2{`0BBtc0H}#wulw=xXLJS9RrGX0QT{|@|h?3)>5zlz`^7OUp*m26S%D{ zG33UW%G6EvDv2Rav=b6T+C$|%smtbQakH;(;VyV?xug)6jv<_-?M6@2$RiI`?}I`rXIFHl~l1p&0|CB(99lflf3ZMtX2NIGfk@r)^lCR_ut!46}` ze)t4pGbRk=Od6Y$TY09iIk_zv0&FqdO1bP1rVFlt@Par4?CecE^+~E{)JRCY<(bVS z)Da5&S?n!mJ#2Q>vmwmq`0BYVwTF)eG~WsnVvo7aSI=W)8$i<$3zL24`CaBbo)yR% zrA7;(N2%LWCjsZdRH9yh!HtKwT0gp#{pf{|5U+b`aH#$hHR*UPDw4<5tP;c%-_saG(!uZ$vv&4jC0*+!<8 zdi83%4X$;@u(mR#Ls8-sRue%;h^nmw!{2INDvldNYfVhls<7kPYrFp?mS# zK9GZbyDXU5rQ%{&Z*AgCcd|3R4bD`9LA@Q;^A2CV6O@P}-4!{K%^q{NukK+Ymqi{E z?`Vgu{o_u1n=O9vuBu-!4eH(Y>bPIL$6i?Vi|ZL}O>F<~+lP8D7<`|v-p^b-^4-A_ z?hFFyy}tSYciPMPJxVKOg?}(qIHzms+e7oGpg7Qc{qP1;S06f<1$-D5&vLI1{&&%51CH;Z-|zeC2iz~?d$8K?4}J9`?)PN$yQhRi zPq8QiLCz|3d@g14mfNp>Tu;PLnh|kgNW@P;#Gw)X3>5v`SHED282Jx{qWX!%Xr+kU zQM#B%T1fp8vGG^F`ZbzJ*bEe5F06r4zhO82Ev#P`s^7_!y}Q9NcMqN%68rmxH9Ys1 z&U@BmLj3`q{?S)|Vi9eJh(`8GZuk=9h9if}+7?neNMn_gdfAe6XdFqTa=xdUt;9H} z{tQNc6|C&rqE6IbnC8DW5$I4z;@@Nf@Q|-oJeH zKe{D)`ga)QIMrQc2jOiK3WD%$)G6S-1&yk}^wwAjEs^R5Y=ft;ww6jI z79(^V-h4V?b7o*Zy!tyD_UQy5Z#1ISR28It9OhK^2&fxJ@k=m{T=OYFlJeM@w%o+G_gr9E?^l*2ug9hUheu+Uw)y zwUWy^8_ml=xlgMY56r8N&FkWQ`>wbY8$(soMyYHjps5oE6(8m27ky@aEG-`R*+U zE*RYz{2dq_kE0xh|8ut211?K{Iy2%ii5?|nG%9{YFs4yIHyZfAB=a2f2+eNC!>4nFzTSeSy}+{5 zp&ru=+94q4X^`5bdiAfrq2Ek=%9-kXJ3Iit9AH2g1do~ z!IkW9mq;Z${2<UY<3xW%Ry^OzW96k*9aCqJr50_qt7ZeQvQxnH${+W==`KcX0 z?1QdA8O-C+c=&WBenZD+TH}ttS77#Om{d1Ni$b&v?}yQ%o|_bem>>X{j4KKN0rhkh zO6{(A0JxgVmc#-;u!bO>>-uyJqe1}S3HYuelC>plz$05a!>md-h;rxa+umCxkKJROGnAT1dRX;29pt_ zqXE(uwp`|f-7zbL^SWQr-m>w-U*@*;ApaFO)3X;hH$ts{;V}L?L zXT1*VCWK{dz>~#!Za3*odsUU0?J=ZO0veWvBk0btw>Oyo?!h&oBFhXskUF9+NdXuv z6COUf_zfL{>DNJ%V~Z#C6nfKN`mL zc(WebkAAAckWDh0lD_K=VfWy=knL#!7)Tv|5aMVC0ATg8c=+@#5YZ*j%50dg!JD&Erhdji>>2H{s#a69tX7T<%ybw-6cX zVl=OlEj>xMzggPfqT8pM07i^)(v+So;7#???^<4k6Bsy_gY!m-#_}L4Rhch@A?F2x zuX)JX7|P&<0D=r2R-g1DG=?xlWLw^il!2qY4t9rI1ZodYM$z zsES^W68m({1=1_{brFWv-Ge{W{M7Gzi<~>zW zqvtq9-eQqq#LB^J?*d$$M46?(S(-PJ*c-C{7H&5niSL7>r?&zMRKE=mpWZGwdk@nF z#4raj>wJf_e`nDCgr?TX36mHjkrm!8?V4NR=8&Iz00e#xj+@>E2=MZ5JbZeO;MAtZ z)K$g*Ua5bdu1}o?T3J30j-76RxHLx|L_ygQ-K(+u5*#mtLfFS%s zc=+^TL92HT4%rMOF)J}Wd_+)uG(f>S$Wb&1_8HTx1_X;3Ly;yvCM}z5Vq3`9eEcIL} z@bKxYf~mIIv!zjjC5nl7#4vu%q>B^CdV4#(n6s0~^D~Tk1 z95OaDLqaJ@-vHJ)XA(BPDV;TPwmlTzg94!atT{FGEr5W*Z{y+9cLcsy{IWSbs9;9* zMjw4wT755QwHZ7gJ$D?Uzt0$g1t*^a*CN7llaC_t?1OWIhn5rl05}@v+L~IP&is(8 z2jrBw#!f#%2{`{T9zOj9zu{zsxq@DivgXrA*bAng3e3+mjLcN38RkQi6=s=OXkiZg z=Zq(sh6QxfFBsyq_#*R{T(%%sWP*Bp&PjsiU*W~4U*k7i_9P?4gtM#P2+VH-m~+tb zeA~)S7#tgUeibYPYV%LQ2_Q_foYKssQ*p6aor1Mu;QAf#G_k2z>pS}MfPB6m~iUr)i2>!nY_%DXY))-K)ku5qUi{B1wg-HNm z&X&yu)4A}Q~Nu zew>e#Cg@)PflK_4wEcHY+iKj!Vfg@@=FA24@bF{s47SH;F5a=W*Qd$5gCnbSEK0@t zu_Td0wNct^9%{1s9DFj9%jr8NLGuK)pceGZ$HS)u_zm5dDb(Wtj)?2ds1@~0P8-9S zt)=kkR30>m;=5ZpW*beEylrxWlSu#O|>a++GtwNI3a8Xu*TP-1VCLHA^SJx&JQ zOG1k~MH=v+yBu#mohsitg|w&Ph6=4<6nzDzqITFlOS- zx(W}URtv7)LeLeHB|@+{OMJS3tkEExC9Wk!62)t!PA7^tHjELw2QLjdUnhXP%eY>U zc4?%tIPXU?tbb(ODv2eG&<50@FYY~HTXMh~rAY(Zkujga@SLaFgcqN>1-!QqVB>BB zY%;2=D zL{pq+E9SF#??80=QAS4OZ|Q767TDw1@P*??;iEn>S(9ZOXVu&U^`jQdo`Z)^+wlu` z(1Has=gPN8l6LUBIgdp|=i$A;G|5sD1a@=jP83-B)`6I9Ux7u)Lf^$tow5$Oq}?ck zt)7pEPZ!`f3_(l^3>7CRTSGEwK$nUAhI`rm%Q86QGrA+V>*@$SYYDk*W-V7T(nDEGA!a2)>0Y!c1jeur?>?DK2aG}ZhA~_v-`W_i z=J$e_0e2QNgA@wlX26`YG_K*NHiM9SdJM{72G`=@({=a_&47szGbl7u{; zoiKw*`PODo;&*KZ+*!;F92CUOfca)wl=-Pw6`FWbD1i|W9>~(;H#7n!p{Wt*k=)`; zDeh5Xm)OOjTb!~b4=skw_UNW20+UM>LA)Qoe4BAhE~C+u6i#ztr#mw_>J-yqE0<#0dLLc^j%cC1>d-iic~?TpG$V&6fnh<%CPmLJjCV4woSv%Hdva^{5^_8+AkGA{xu00q*Els7TL2 znYlbjrb})xnYX+#*<7~0$zl&Zmm%6X2X4t-#M|&ai)+4Cxw;AF((?p&2j|7hY0R`` zSBjo5rR|vM){uBRBW&R*=nTDp-`k6s(s%{8h0zcfI9|wQb1~I@5x=zM_= zH`6aVN*DQ>2fYMkgU~fNd-o0If1hO^Bf^HgZu zp)`&(^58a})}J=cy%zEMa)6ng%)E<+c5obmUctpJIcu~sPOoH4W~YUzJ6p^QX3aSH z=h3TBe!yIT^=-N09Sr}g84=$e%i}KVYxtv`ZyaJFke+6@qt~JgN?n|*OqSD;1-tY* zl*1V@FUgn2oB;Sv4cx)gA?5{mt;{67USOB8+IUjW%15RS7jPk7dIKtP{nRRVukAfE zM{nfMCDwEv7q;PC6*rLLn;3PAIUhFz#`5EIm!K4#XT9|PyqotNqBl$FGOSNC6KRX@ zY^AY4!p&BkgQT~ha@Je{RwtuqP&K2p+=QjK0_cEwtX0}iZxdvi@v>`Ga^P~ZNN<kb?LZ4oP`Vx+?R}a^t!A9No_^9dM{x+xZ*{517k!?68V@ z#~r%y>~wGkn?4T^cw(Sb@i3RZfWl$(1aUWPxL72Am0*=v{WPmy)AWGfm4b0`oeO4tS$8MV~tK(cNO;X*9QB(in%oQj}Ll~|C)68 zb^Icccs?)Cz9F4s{-S3_!To#OqsEPCzMtL}4q7gK6QINNAbw?eg&XhmEqwU&ZTwb7 Glm82-Sf|_o diff --git a/doc/_build/html/.buildinfo b/doc/_build/html/.buildinfo deleted file mode 100644 index 666a5fbb..00000000 --- a/doc/_build/html/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: c43a9c1bc9ab3e4c662332b15085c411 -tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/doc/_build/html/_sources/index.txt b/doc/_build/html/_sources/index.txt deleted file mode 100644 index 732dc970..00000000 --- a/doc/_build/html/_sources/index.txt +++ /dev/null @@ -1,78 +0,0 @@ -.. python-twitter documentation master file, created by - sphinx-quickstart on Fri Aug 30 14:37:05 2013. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to python-twitter's documentation! -========================================== -**A Python wrapper around the Twitter API.** - -Author: The Python-Twitter Developers - -Introduction ------------- -This library provides a pure Python interface for the `Twitter API `_. It works with Python versions from 2.5 to 2.7. Python 3 support is under development. - -`Twitter `_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API `_ and this library is intended to make it even easier for Python programmers to use. - - -Building --------- -From source: - -Install the dependencies: - -- `Requests OAuthlib `_ -- `HTTPLib2 `_ - -This branch is currently in development to replace the OAuth and HTTPLib2 libarays with the following: - -- `Requests `_ - - -Alternatively use `pip`:: - - $ pip install -r requirements.txt - -Download the latest `python-twitter` library from: http://code.google.com/p/python-twitter/ - -Extract the source distribution and run:: - - $ python setup.py build - $ python setup.py install - - -Testing -------- -With setuptools installed:: - - $ python setup.py test - - -Without setuptools installed:: - - $ python twitter_test.py - - -Getting the code ----------------- -The code is hosted at `Github `_. - -Check out the latest development version anonymously with:: - -$ git clone git://github.com/bear/python-twitter.git -$ cd python-twitter - - -.. toctree:: - :maxdepth: 2 - - - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` - diff --git a/doc/_build/html/_static/ajax-loader.gif b/doc/_build/html/_static/ajax-loader.gif deleted file mode 100644 index 61faf8cab23993bd3e1560bff0668bd628642330..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 673 zcmZ?wbhEHb6krfw_{6~Q|Nno%(3)e{?)x>&1u}A`t?OF7Z|1gRivOgXi&7IyQd1Pl zGfOfQ60;I3a`F>X^fL3(@);C=vM_KlFfb_o=k{|A33hf2a5d61U}gjg=>Rd%XaNQW zW@Cw{|b%Y*pl8F?4B9 zlo4Fz*0kZGJabY|>}Okf0}CCg{u4`zEPY^pV?j2@h+|igy0+Kz6p;@SpM4s6)XEMg z#3Y4GX>Hjlml5ftdH$4x0JGdn8~MX(U~_^d!Hi)=HU{V%g+mi8#UGbE-*ao8f#h+S z2a0-5+vc7MU$e-NhmBjLIC1v|)9+Im8x1yacJ7{^tLX(ZhYi^rpmXm0`@ku9b53aN zEXH@Y3JaztblgpxbJt{AtE1ad1Ca>{v$rwwvK(>{m~Gf_=-Ro7Fk{#;i~+{{>QtvI yb2P8Zac~?~=sRA>$6{!(^3;ZP0TPFR(G_-UDU(8Jl0?(IXu$~#4A!880|o%~Al1tN diff --git a/doc/_build/html/_static/basic.css b/doc/_build/html/_static/basic.css deleted file mode 100644 index 23800563..00000000 --- a/doc/_build/html/_static/basic.css +++ /dev/null @@ -1,537 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox input[type="text"] { - width: 170px; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - width: 30px; -} - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable dl, table.indextable dd { - margin-top: 0; - margin-bottom: 0; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- general body styles --------------------------------------------------- */ - -a.headerlink { - visibility: hidden; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.field-list ul { - padding-left: 1em; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.field-list td, table.field-list th { - border: 0 !important; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -dl { - margin-bottom: 15px; -} - -dd p { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, .highlighted { - background-color: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.optional { - font-size: 1.3em; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -tt.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -tt.descclassname { - background-color: transparent; -} - -tt.xref, a tt { - background-color: transparent; - font-weight: bold; -} - -h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/doc/_build/html/_static/comment-bright.png b/doc/_build/html/_static/comment-bright.png deleted file mode 100644 index 551517b8c83b76f734ff791f847829a760ad1903..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3500 zcmV;d4O8-oP)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2niQ93PPz|JOBU!-bqA3 zR5;6pl1pe^WfX zkSdl!omi0~*ntl;2q{jA^;J@WT8O!=A(Gck8fa>hn{#u{`Tyg)!KXI6l>4dj==iVKK6+%4zaRizy(5eryC3d2 z+5Y_D$4}k5v2=Siw{=O)SWY2HJwR3xX1*M*9G^XQ*TCNXF$Vj(kbMJXK0DaS_Sa^1 z?CEa!cFWDhcwxy%a?i@DN|G6-M#uuWU>lss@I>;$xmQ|`u3f;MQ|pYuHxxvMeq4TW;>|7Z2*AsqT=`-1O~nTm6O&pNEK?^cf9CX= zkq5|qAoE7un3V z^yy=@%6zqN^x`#qW+;e7j>th{6GV}sf*}g7{(R#T)yg-AZh0C&U;WA`AL$qz8()5^ zGFi2`g&L7!c?x+A2oOaG0c*Bg&YZt8cJ{jq_W{uTdA-<;`@iP$$=$H?gYIYc_q^*$ z#k(Key`d40R3?+GmgK8hHJcwiQ~r4By@w9*PuzR>x3#(F?YW_W5pPc(t(@-Y{psOt zz2!UE_5S)bLF)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2oe()A>y0J-2easEJ;K` zR5;6Jl3z%jbr{D#&+mQTbB>-f&3W<<%ayjKi&ZjBc2N<@)`~{dMXWB0(ajbV85_gJ zf(EU`iek}4Bt%55ix|sVMm1u8KvB#hnmU~_r<Ogd(A5vg_omvd-#L!=(BMVklxVqhdT zofSj`QA^|)G*lu58>#vhvA)%0Or&dIsb%b)st*LV8`ANnOipDbh%_*c7`d6# z21*z~Xd?ovgf>zq(o0?Et~9ti+pljZC~#_KvJhA>u91WRaq|uqBBKP6V0?p-NL59w zrK0w($_m#SDPQ!Z$nhd^JO|f+7k5xca94d2OLJ&sSxlB7F%NtrF@@O7WWlkHSDtor zzD?u;b&KN$*MnHx;JDy9P~G<{4}9__s&MATBV4R+MuA8TjlZ3ye&qZMCUe8ihBnHI zhMSu zSERHwrmBb$SWVr+)Yk2k^FgTMR6mP;@FY2{}BeV|SUo=mNk<-XSOHNErw>s{^rR-bu$@aN7= zj~-qXcS2!BA*(Q**BOOl{FggkyHdCJi_Fy>?_K+G+DYwIn8`29DYPg&s4$}7D`fv? zuyJ2sMfJX(I^yrf6u!(~9anf(AqAk&ke}uL0SIb-H!SaDQvd(}07*qoM6N<$g1Ha7 A2LJ#7 diff --git a/doc/_build/html/_static/comment.png b/doc/_build/html/_static/comment.png deleted file mode 100644 index 92feb52b8824c6b0f59b658b1196c61de9162a95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3445 zcmV-*4T|!KP)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2nzr)JMUJvzW@LNr%6OX zR5;6Zk;`k`RTRfR-*ac2G}PGmXsUu>6ce?Lsn$m^3Q`48f|TwQ+_-Qh=t8Ra7nE)y zf@08(pjZ@22^EVjG*%30TJRMkBUC$WqZ73uoiv&J=APqX;!v%AH}`Vx`999MVjXwy z{f1-vh8P<=plv&cZ>p5jjX~Vt&W0e)wpw1RFRuRdDkwlKb01tp5 zP=trFN0gH^|L4jJkB{6sCV;Q!ewpg-D&4cza%GQ*b>R*=34#dW;ek`FEiB(vnw+U# zpOX5UMJBhIN&;D1!yQoIAySC!9zqJmmfoJqmQp}p&h*HTfMh~u9rKic2oz3sNM^#F zBIq*MRLbsMt%y{EHj8}LeqUUvoxf0=kqji62>ne+U`d#%J)abyK&Y`=eD%oA!36<)baZyK zXJh5im6umkS|_CSGXips$nI)oBHXojzBzyY_M5K*uvb0_9viuBVyV%5VtJ*Am1ag# zczbv4B?u8j68iOz<+)nDu^oWnL+$_G{PZOCcOGQ?!1VCefves~rfpaEZs-PdVYMiV z98ElaJ2}7f;htSXFY#Zv?__sQeckE^HV{ItO=)2hMQs=(_ Xn!ZpXD%P(H00000NkvXXu0mjf= 0 && !jQuery(node.parentNode).hasClass(className)) { - var span = document.createElement("span"); - span.className = className; - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function () { - highlight(this); - }); - } - } - - return this.each(function () { - highlight(this); - }); -}; - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init: function () { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - }, - - /** - * i18n support - */ - TRANSLATIONS: {}, - PLURAL_EXPR: function (n) { - return n == 1 ? 0 : 1; - }, - LOCALE: 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext: function (string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated == 'undefined') - return string; - return (typeof translated == 'string') ? translated : translated[0]; - }, - - ngettext: function (singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated == 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations: function (catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements: function () { - $('div[id] > :header:first').each(function () { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function () { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - */ - fixFirefoxAnchorBug: function () { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function () { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords: function () { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function () { - $.each(terms, function () { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable: function () { - var togglers = $('img.toggler').click(function () { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) == 'minus.png') - $(this).attr('src', src.substr(0, src.length - 9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length - 8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords: function () { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL: function (relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL: function () { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function () { - if (this == '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function () { - Documentation.init(); -}); diff --git a/doc/_build/html/_static/down-pressed.png b/doc/_build/html/_static/down-pressed.png deleted file mode 100644 index 6f7ad782782e4f8e39b0c6e15c7344700cdd2527..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}Z23@f-Ava~9&<9T!#}JFtXD=!G zGdl{fK6ro2OGiOl+hKvH6i=D3%%Y^j`yIkRn!8O>@bG)IQR0{Kf+mxNd=_WScA8u_ z3;8(7x2){m9`nt+U(Nab&1G)!{`SPVpDX$w8McLTzAJ39wprG3p4XLq$06M`%}2Yk zRPPsbES*dnYm1wkGL;iioAUB*Or2kz6(-M_r_#Me-`{mj$Z%( diff --git a/doc/_build/html/_static/down.png b/doc/_build/html/_static/down.png deleted file mode 100644 index 3003a88770de3977d47a2ba69893436a2860f9e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}xaV3tUZ$qnrLa#kt978NlpS`ru z&)HFc^}^>{UOEce+71h5nn>6&w6A!ieNbu1wh)UGh{8~et^#oZ1# z>T7oM=FZ~xXWnTo{qnXm$ZLOlqGswI_m2{XwVK)IJmBjW{J3-B3x@C=M{ShWt#fYS9M?R;8K$~YwlIqwf>VA7q=YKcwf2DS4Zj5inDKXXB1zl=(YO3ST6~rDq)&z z*o>z)=hxrfG-cDBW0G$!?6{M<$@{_4{m1o%Ub!naEtn|@^frU1tDnm{r-UW|!^@B8 diff --git a/doc/_build/html/_static/file.png b/doc/_build/html/_static/file.png deleted file mode 100644 index d18082e397e7e54f20721af768c4c2983258f1b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 392 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP$HyOL$D9)yc9|lc|nKf<9@eUiWd>3GuTC!a5vdfWYEazjncPj5ZQX%+1 zt8B*4=d)!cdDz4wr^#OMYfqGz$1LDFF>|#>*O?AGil(WEs?wLLy{Gj2J_@opDm%`dlax3yA*@*N$G&*ukFv>P8+2CBWO(qz zD0k1@kN>hhb1_6`&wrCswzINE(evt-5C1B^STi2@PmdKI;Vst0PQB6!2kdN diff --git a/doc/_build/html/_static/jquery.js b/doc/_build/html/_static/jquery.js deleted file mode 100644 index 072b46db..00000000 --- a/doc/_build/html/_static/jquery.js +++ /dev/null @@ -1,2803 +0,0 @@ -/*! jQuery v1.8.3 jquery.com | jquery.org/license */ -(function (e, t) { - function _(e) { - var t = M[e] = {}; - return v.each(e.split(y), function (e, n) { - t[n] = !0 - }), t - } - - function H(e, n, r) { - if (r === t && e.nodeType === 1) { - var i = "data-" + n.replace(P, "-$1").toLowerCase(); - r = e.getAttribute(i); - if (typeof r == "string") { - try { - r = r === "true" ? !0 : r === "false" ? !1 : r === "null" ? null : +r + "" === r ? +r : D.test(r) ? v.parseJSON(r) : r - } catch (s) { - } - v.data(e, n, r) - } else r = t - } - return r - } - - function B(e) { - var t; - for (t in e) { - if (t === "data" && v.isEmptyObject(e[t]))continue; - if (t !== "toJSON")return !1 - } - return !0 - } - - function et() { - return !1 - } - - function tt() { - return !0 - } - - function ut(e) { - return !e || !e.parentNode || e.parentNode.nodeType === 11 - } - - function at(e, t) { - do e = e[t]; while (e && e.nodeType !== 1); - return e - } - - function ft(e, t, n) { - t = t || 0; - if (v.isFunction(t))return v.grep(e, function (e, r) { - var i = !!t.call(e, r, e); - return i === n - }); - if (t.nodeType)return v.grep(e, function (e, r) { - return e === t === n - }); - if (typeof t == "string") { - var r = v.grep(e, function (e) { - return e.nodeType === 1 - }); - if (it.test(t))return v.filter(t, r, !n); - t = v.filter(t, r) - } - return v.grep(e, function (e, r) { - return v.inArray(e, t) >= 0 === n - }) - } - - function lt(e) { - var t = ct.split("|"), n = e.createDocumentFragment(); - if (n.createElement)while (t.length)n.createElement(t.pop()); - return n - } - - function Lt(e, t) { - return e.getElementsByTagName(t)[0] || e.appendChild(e.ownerDocument.createElement(t)) - } - - function At(e, t) { - if (t.nodeType !== 1 || !v.hasData(e))return; - var n, r, i, s = v._data(e), o = v._data(t, s), u = s.events; - if (u) { - delete o.handle, o.events = {}; - for (n in u)for (r = 0, i = u[n].length; r < i; r++)v.event.add(t, n, u[n][r]) - } - o.data && (o.data = v.extend({}, o.data)) - } - - function Ot(e, t) { - var n; - if (t.nodeType !== 1)return; - t.clearAttributes && t.clearAttributes(), t.mergeAttributes && t.mergeAttributes(e), n = t.nodeName.toLowerCase(), n === "object" ? (t.parentNode && (t.outerHTML = e.outerHTML), v.support.html5Clone && e.innerHTML && !v.trim(t.innerHTML) && (t.innerHTML = e.innerHTML)) : n === "input" && Et.test(e.type) ? (t.defaultChecked = t.checked = e.checked, t.value !== e.value && (t.value = e.value)) : n === "option" ? t.selected = e.defaultSelected : n === "input" || n === "textarea" ? t.defaultValue = e.defaultValue : n === "script" && t.text !== e.text && (t.text = e.text), t.removeAttribute(v.expando) - } - - function Mt(e) { - return typeof e.getElementsByTagName != "undefined" ? e.getElementsByTagName("*") : typeof e.querySelectorAll != "undefined" ? e.querySelectorAll("*") : [] - } - - function _t(e) { - Et.test(e.type) && (e.defaultChecked = e.checked) - } - - function Qt(e, t) { - if (t in e)return t; - var n = t.charAt(0).toUpperCase() + t.slice(1), r = t, i = Jt.length; - while (i--) { - t = Jt[i] + n; - if (t in e)return t - } - return r - } - - function Gt(e, t) { - return e = t || e, v.css(e, "display") === "none" || !v.contains(e.ownerDocument, e) - } - - function Yt(e, t) { - var n, r, i = [], s = 0, o = e.length; - for (; s < o; s++) { - n = e[s]; - if (!n.style)continue; - i[s] = v._data(n, "olddisplay"), t ? (!i[s] && n.style.display === "none" && (n.style.display = ""), n.style.display === "" && Gt(n) && (i[s] = v._data(n, "olddisplay", nn(n.nodeName)))) : (r = Dt(n, "display"), !i[s] && r !== "none" && v._data(n, "olddisplay", r)) - } - for (s = 0; s < o; s++) { - n = e[s]; - if (!n.style)continue; - if (!t || n.style.display === "none" || n.style.display === "")n.style.display = t ? i[s] || "" : "none" - } - return e - } - - function Zt(e, t, n) { - var r = Rt.exec(t); - return r ? Math.max(0, r[1] - (n || 0)) + (r[2] || "px") : t - } - - function en(e, t, n, r) { - var i = n === (r ? "border" : "content") ? 4 : t === "width" ? 1 : 0, s = 0; - for (; i < 4; i += 2)n === "margin" && (s += v.css(e, n + $t[i], !0)), r ? (n === "content" && (s -= parseFloat(Dt(e, "padding" + $t[i])) || 0), n !== "margin" && (s -= parseFloat(Dt(e, "border" + $t[i] + "Width")) || 0)) : (s += parseFloat(Dt(e, "padding" + $t[i])) || 0, n !== "padding" && (s += parseFloat(Dt(e, "border" + $t[i] + "Width")) || 0)); - return s - } - - function tn(e, t, n) { - var r = t === "width" ? e.offsetWidth : e.offsetHeight, i = !0, s = v.support.boxSizing && v.css(e, "boxSizing") === "border-box"; - if (r <= 0 || r == null) { - r = Dt(e, t); - if (r < 0 || r == null)r = e.style[t]; - if (Ut.test(r))return r; - i = s && (v.support.boxSizingReliable || r === e.style[t]), r = parseFloat(r) || 0 - } - return r + en(e, t, n || (s ? "border" : "content"), i) + "px" - } - - function nn(e) { - if (Wt[e])return Wt[e]; - var t = v("<" + e + ">").appendTo(i.body), n = t.css("display"); - t.remove(); - if (n === "none" || n === "") { - Pt = i.body.appendChild(Pt || v.extend(i.createElement("iframe"), {frameBorder: 0, width: 0, height: 0})); - if (!Ht || !Pt.createElement)Ht = (Pt.contentWindow || Pt.contentDocument).document, Ht.write(""), Ht.close(); - t = Ht.body.appendChild(Ht.createElement(e)), n = Dt(t, "display"), i.body.removeChild(Pt) - } - return Wt[e] = n, n - } - - function fn(e, t, n, r) { - var i; - if (v.isArray(t))v.each(t, function (t, i) { - n || sn.test(e) ? r(e, i) : fn(e + "[" + (typeof i == "object" ? t : "") + "]", i, n, r) - }); else if (!n && v.type(t) === "object")for (i in t)fn(e + "[" + i + "]", t[i], n, r); else r(e, t) - } - - function Cn(e) { - return function (t, n) { - typeof t != "string" && (n = t, t = "*"); - var r, i, s, o = t.toLowerCase().split(y), u = 0, a = o.length; - if (v.isFunction(n))for (; u < a; u++)r = o[u], s = /^\+/.test(r), s && (r = r.substr(1) || "*"), i = e[r] = e[r] || [], i[s ? "unshift" : "push"](n) - } - } - - function kn(e, n, r, i, s, o) { - s = s || n.dataTypes[0], o = o || {}, o[s] = !0; - var u, a = e[s], f = 0, l = a ? a.length : 0, c = e === Sn; - for (; f < l && (c || !u); f++)u = a[f](n, r, i), typeof u == "string" && (!c || o[u] ? u = t : (n.dataTypes.unshift(u), u = kn(e, n, r, i, u, o))); - return (c || !u) && !o["*"] && (u = kn(e, n, r, i, "*", o)), u - } - - function Ln(e, n) { - var r, i, s = v.ajaxSettings.flatOptions || {}; - for (r in n)n[r] !== t && ((s[r] ? e : i || (i = {}))[r] = n[r]); - i && v.extend(!0, e, i) - } - - function An(e, n, r) { - var i, s, o, u, a = e.contents, f = e.dataTypes, l = e.responseFields; - for (s in l)s in r && (n[l[s]] = r[s]); - while (f[0] === "*")f.shift(), i === t && (i = e.mimeType || n.getResponseHeader("content-type")); - if (i)for (s in a)if (a[s] && a[s].test(i)) { - f.unshift(s); - break - } - if (f[0]in r)o = f[0]; else { - for (s in r) { - if (!f[0] || e.converters[s + " " + f[0]]) { - o = s; - break - } - u || (u = s) - } - o = o || u - } - if (o)return o !== f[0] && f.unshift(o), r[o] - } - - function On(e, t) { - var n, r, i, s, o = e.dataTypes.slice(), u = o[0], a = {}, f = 0; - e.dataFilter && (t = e.dataFilter(t, e.dataType)); - if (o[1])for (n in e.converters)a[n.toLowerCase()] = e.converters[n]; - for (; i = o[++f];)if (i !== "*") { - if (u !== "*" && u !== i) { - n = a[u + " " + i] || a["* " + i]; - if (!n)for (r in a) { - s = r.split(" "); - if (s[1] === i) { - n = a[u + " " + s[0]] || a["* " + s[0]]; - if (n) { - n === !0 ? n = a[r] : a[r] !== !0 && (i = s[0], o.splice(f--, 0, i)); - break - } - } - } - if (n !== !0)if (n && e["throws"])t = n(t); else try { - t = n(t) - } catch (l) { - return {state: "parsererror", error: n ? l : "No conversion from " + u + " to " + i} - } - } - u = i - } - return {state: "success", data: t} - } - - function Fn() { - try { - return new e.XMLHttpRequest - } catch (t) { - } - } - - function In() { - try { - return new e.ActiveXObject("Microsoft.XMLHTTP") - } catch (t) { - } - } - - function $n() { - return setTimeout(function () { - qn = t - }, 0), qn = v.now() - } - - function Jn(e, t) { - v.each(t, function (t, n) { - var r = (Vn[t] || []).concat(Vn["*"]), i = 0, s = r.length; - for (; i < s; i++)if (r[i].call(e, t, n))return - }) - } - - function Kn(e, t, n) { - var r, i = 0, s = 0, o = Xn.length, u = v.Deferred().always(function () { - delete a.elem - }), a = function () { - var t = qn || $n(), n = Math.max(0, f.startTime + f.duration - t), r = n / f.duration || 0, i = 1 - r, s = 0, o = f.tweens.length; - for (; s < o; s++)f.tweens[s].run(i); - return u.notifyWith(e, [f, i, n]), i < 1 && o ? n : (u.resolveWith(e, [f]), !1) - }, f = u.promise({ - elem: e, - props: v.extend({}, t), - opts: v.extend(!0, {specialEasing: {}}, n), - originalProperties: t, - originalOptions: n, - startTime: qn || $n(), - duration: n.duration, - tweens: [], - createTween: function (t, n, r) { - var i = v.Tween(e, f.opts, t, n, f.opts.specialEasing[t] || f.opts.easing); - return f.tweens.push(i), i - }, - stop: function (t) { - var n = 0, r = t ? f.tweens.length : 0; - for (; n < r; n++)f.tweens[n].run(1); - return t ? u.resolveWith(e, [f, t]) : u.rejectWith(e, [f, t]), this - } - }), l = f.props; - Qn(l, f.opts.specialEasing); - for (; i < o; i++) { - r = Xn[i].call(f, e, l, f.opts); - if (r)return r - } - return Jn(f, l), v.isFunction(f.opts.start) && f.opts.start.call(e, f), v.fx.timer(v.extend(a, { - anim: f, - queue: f.opts.queue, - elem: e - })), f.progress(f.opts.progress).done(f.opts.done, f.opts.complete).fail(f.opts.fail).always(f.opts.always) - } - - function Qn(e, t) { - var n, r, i, s, o; - for (n in e) { - r = v.camelCase(n), i = t[r], s = e[n], v.isArray(s) && (i = s[1], s = e[n] = s[0]), n !== r && (e[r] = s, delete e[n]), o = v.cssHooks[r]; - if (o && "expand"in o) { - s = o.expand(s), delete e[r]; - for (n in s)n in e || (e[n] = s[n], t[n] = i) - } else t[r] = i - } - } - - function Gn(e, t, n) { - var r, i, s, o, u, a, f, l, c, h = this, p = e.style, d = {}, m = [], g = e.nodeType && Gt(e); - n.queue || (l = v._queueHooks(e, "fx"), l.unqueued == null && (l.unqueued = 0, c = l.empty.fire, l.empty.fire = function () { - l.unqueued || c() - }), l.unqueued++, h.always(function () { - h.always(function () { - l.unqueued--, v.queue(e, "fx").length || l.empty.fire() - }) - })), e.nodeType === 1 && ("height"in t || "width"in t) && (n.overflow = [p.overflow, p.overflowX, p.overflowY], v.css(e, "display") === "inline" && v.css(e, "float") === "none" && (!v.support.inlineBlockNeedsLayout || nn(e.nodeName) === "inline" ? p.display = "inline-block" : p.zoom = 1)), n.overflow && (p.overflow = "hidden", v.support.shrinkWrapBlocks || h.done(function () { - p.overflow = n.overflow[0], p.overflowX = n.overflow[1], p.overflowY = n.overflow[2] - })); - for (r in t) { - s = t[r]; - if (Un.exec(s)) { - delete t[r], a = a || s === "toggle"; - if (s === (g ? "hide" : "show"))continue; - m.push(r) - } - } - o = m.length; - if (o) { - u = v._data(e, "fxshow") || v._data(e, "fxshow", {}), "hidden"in u && (g = u.hidden), a && (u.hidden = !g), g ? v(e).show() : h.done(function () { - v(e).hide() - }), h.done(function () { - var t; - v.removeData(e, "fxshow", !0); - for (t in d)v.style(e, t, d[t]) - }); - for (r = 0; r < o; r++)i = m[r], f = h.createTween(i, g ? u[i] : 0), d[i] = u[i] || v.style(e, i), i in u || (u[i] = f.start, g && (f.end = f.start, f.start = i === "width" || i === "height" ? 1 : 0)) - } - } - - function Yn(e, t, n, r, i) { - return new Yn.prototype.init(e, t, n, r, i) - } - - function Zn(e, t) { - var n, r = {height: e}, i = 0; - t = t ? 1 : 0; - for (; i < 4; i += 2 - t)n = $t[i], r["margin" + n] = r["padding" + n] = e; - return t && (r.opacity = r.width = e), r - } - - function tr(e) { - return v.isWindow(e) ? e : e.nodeType === 9 ? e.defaultView || e.parentWindow : !1 - } - - var n, r, i = e.document, s = e.location, o = e.navigator, u = e.jQuery, a = e.$, f = Array.prototype.push, l = Array.prototype.slice, c = Array.prototype.indexOf, h = Object.prototype.toString, p = Object.prototype.hasOwnProperty, d = String.prototype.trim, v = function (e, t) { - return new v.fn.init(e, t, n) - }, m = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source, g = /\S/, y = /\s+/, b = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, w = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, E = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, S = /^[\],:{}\s]*$/, x = /(?:^|:|,)(?:\s*\[)+/g, T = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, N = /"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g, C = /^-ms-/, k = /-([\da-z])/gi, L = function (e, t) { - return (t + "").toUpperCase() - }, A = function () { - i.addEventListener ? (i.removeEventListener("DOMContentLoaded", A, !1), v.ready()) : i.readyState === "complete" && (i.detachEvent("onreadystatechange", A), v.ready()) - }, O = {}; - v.fn = v.prototype = { - constructor: v, init: function (e, n, r) { - var s, o, u, a; - if (!e)return this; - if (e.nodeType)return this.context = this[0] = e, this.length = 1, this; - if (typeof e == "string") { - e.charAt(0) === "<" && e.charAt(e.length - 1) === ">" && e.length >= 3 ? s = [null, e, null] : s = w.exec(e); - if (s && (s[1] || !n)) { - if (s[1])return n = n instanceof v ? n[0] : n, a = n && n.nodeType ? n.ownerDocument || n : i, e = v.parseHTML(s[1], a, !0), E.test(s[1]) && v.isPlainObject(n) && this.attr.call(e, n, !0), v.merge(this, e); - o = i.getElementById(s[2]); - if (o && o.parentNode) { - if (o.id !== s[2])return r.find(e); - this.length = 1, this[0] = o - } - return this.context = i, this.selector = e, this - } - return !n || n.jquery ? (n || r).find(e) : this.constructor(n).find(e) - } - return v.isFunction(e) ? r.ready(e) : (e.selector !== t && (this.selector = e.selector, this.context = e.context), v.makeArray(e, this)) - }, selector: "", jquery: "1.8.3", length: 0, size: function () { - return this.length - }, toArray: function () { - return l.call(this) - }, get: function (e) { - return e == null ? this.toArray() : e < 0 ? this[this.length + e] : this[e] - }, pushStack: function (e, t, n) { - var r = v.merge(this.constructor(), e); - return r.prevObject = this, r.context = this.context, t === "find" ? r.selector = this.selector + (this.selector ? " " : "") + n : t && (r.selector = this.selector + "." + t + "(" + n + ")"), r - }, each: function (e, t) { - return v.each(this, e, t) - }, ready: function (e) { - return v.ready.promise().done(e), this - }, eq: function (e) { - return e = +e, e === -1 ? this.slice(e) : this.slice(e, e + 1) - }, first: function () { - return this.eq(0) - }, last: function () { - return this.eq(-1) - }, slice: function () { - return this.pushStack(l.apply(this, arguments), "slice", l.call(arguments).join(",")) - }, map: function (e) { - return this.pushStack(v.map(this, function (t, n) { - return e.call(t, n, t) - })) - }, end: function () { - return this.prevObject || this.constructor(null) - }, push: f, sort: [].sort, splice: [].splice - }, v.fn.init.prototype = v.fn, v.extend = v.fn.extend = function () { - var e, n, r, i, s, o, u = arguments[0] || {}, a = 1, f = arguments.length, l = !1; - typeof u == "boolean" && (l = u, u = arguments[1] || {}, a = 2), typeof u != "object" && !v.isFunction(u) && (u = {}), f === a && (u = this, --a); - for (; a < f; a++)if ((e = arguments[a]) != null)for (n in e) { - r = u[n], i = e[n]; - if (u === i)continue; - l && i && (v.isPlainObject(i) || (s = v.isArray(i))) ? (s ? (s = !1, o = r && v.isArray(r) ? r : []) : o = r && v.isPlainObject(r) ? r : {}, u[n] = v.extend(l, o, i)) : i !== t && (u[n] = i) - } - return u - }, v.extend({ - noConflict: function (t) { - return e.$ === v && (e.$ = a), t && e.jQuery === v && (e.jQuery = u), v - }, isReady: !1, readyWait: 1, holdReady: function (e) { - e ? v.readyWait++ : v.ready(!0) - }, ready: function (e) { - if (e === !0 ? --v.readyWait : v.isReady)return; - if (!i.body)return setTimeout(v.ready, 1); - v.isReady = !0; - if (e !== !0 && --v.readyWait > 0)return; - r.resolveWith(i, [v]), v.fn.trigger && v(i).trigger("ready").off("ready") - }, isFunction: function (e) { - return v.type(e) === "function" - }, isArray: Array.isArray || function (e) { - return v.type(e) === "array" - }, isWindow: function (e) { - return e != null && e == e.window - }, isNumeric: function (e) { - return !isNaN(parseFloat(e)) && isFinite(e) - }, type: function (e) { - return e == null ? String(e) : O[h.call(e)] || "object" - }, isPlainObject: function (e) { - if (!e || v.type(e) !== "object" || e.nodeType || v.isWindow(e))return !1; - try { - if (e.constructor && !p.call(e, "constructor") && !p.call(e.constructor.prototype, "isPrototypeOf"))return !1 - } catch (n) { - return !1 - } - var r; - for (r in e); - return r === t || p.call(e, r) - }, isEmptyObject: function (e) { - var t; - for (t in e)return !1; - return !0 - }, error: function (e) { - throw new Error(e) - }, parseHTML: function (e, t, n) { - var r; - return !e || typeof e != "string" ? null : (typeof t == "boolean" && (n = t, t = 0), t = t || i, (r = E.exec(e)) ? [t.createElement(r[1])] : (r = v.buildFragment([e], t, n ? null : []), v.merge([], (r.cacheable ? v.clone(r.fragment) : r.fragment).childNodes))) - }, parseJSON: function (t) { - if (!t || typeof t != "string")return null; - t = v.trim(t); - if (e.JSON && e.JSON.parse)return e.JSON.parse(t); - if (S.test(t.replace(T, "@").replace(N, "]").replace(x, "")))return (new Function("return " + t))(); - v.error("Invalid JSON: " + t) - }, parseXML: function (n) { - var r, i; - if (!n || typeof n != "string")return null; - try { - e.DOMParser ? (i = new DOMParser, r = i.parseFromString(n, "text/xml")) : (r = new ActiveXObject("Microsoft.XMLDOM"), r.async = "false", r.loadXML(n)) - } catch (s) { - r = t - } - return (!r || !r.documentElement || r.getElementsByTagName("parsererror").length) && v.error("Invalid XML: " + n), r - }, noop: function () { - }, globalEval: function (t) { - t && g.test(t) && (e.execScript || function (t) { - e.eval.call(e, t) - })(t) - }, camelCase: function (e) { - return e.replace(C, "ms-").replace(k, L) - }, nodeName: function (e, t) { - return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase() - }, each: function (e, n, r) { - var i, s = 0, o = e.length, u = o === t || v.isFunction(e); - if (r) { - if (u) { - for (i in e)if (n.apply(e[i], r) === !1)break - } else for (; s < o;)if (n.apply(e[s++], r) === !1)break - } else if (u) { - for (i in e)if (n.call(e[i], i, e[i]) === !1)break - } else for (; s < o;)if (n.call(e[s], s, e[s++]) === !1)break; - return e - }, trim: d && !d.call("\ufeff\u00a0") ? function (e) { - return e == null ? "" : d.call(e) - } : function (e) { - return e == null ? "" : (e + "").replace(b, "") - }, makeArray: function (e, t) { - var n, r = t || []; - return e != null && (n = v.type(e), e.length == null || n === "string" || n === "function" || n === "regexp" || v.isWindow(e) ? f.call(r, e) : v.merge(r, e)), r - }, inArray: function (e, t, n) { - var r; - if (t) { - if (c)return c.call(t, e, n); - r = t.length, n = n ? n < 0 ? Math.max(0, r + n) : n : 0; - for (; n < r; n++)if (n in t && t[n] === e)return n - } - return -1 - }, merge: function (e, n) { - var r = n.length, i = e.length, s = 0; - if (typeof r == "number")for (; s < r; s++)e[i++] = n[s]; else while (n[s] !== t)e[i++] = n[s++]; - return e.length = i, e - }, grep: function (e, t, n) { - var r, i = [], s = 0, o = e.length; - n = !!n; - for (; s < o; s++)r = !!t(e[s], s), n !== r && i.push(e[s]); - return i - }, map: function (e, n, r) { - var i, s, o = [], u = 0, a = e.length, f = e instanceof v || a !== t && typeof a == "number" && (a > 0 && e[0] && e[a - 1] || a === 0 || v.isArray(e)); - if (f)for (; u < a; u++)i = n(e[u], u, r), i != null && (o[o.length] = i); else for (s in e)i = n(e[s], s, r), i != null && (o[o.length] = i); - return o.concat.apply([], o) - }, guid: 1, proxy: function (e, n) { - var r, i, s; - return typeof n == "string" && (r = e[n], n = e, e = r), v.isFunction(e) ? (i = l.call(arguments, 2), s = function () { - return e.apply(n, i.concat(l.call(arguments))) - }, s.guid = e.guid = e.guid || v.guid++, s) : t - }, access: function (e, n, r, i, s, o, u) { - var a, f = r == null, l = 0, c = e.length; - if (r && typeof r == "object") { - for (l in r)v.access(e, n, l, r[l], 1, o, i); - s = 1 - } else if (i !== t) { - a = u === t && v.isFunction(i), f && (a ? (a = n, n = function (e, t, n) { - return a.call(v(e), n) - }) : (n.call(e, i), n = null)); - if (n)for (; l < c; l++)n(e[l], r, a ? i.call(e[l], l, n(e[l], r)) : i, u); - s = 1 - } - return s ? e : f ? n.call(e) : c ? n(e[0], r) : o - }, now: function () { - return (new Date).getTime() - } - }), v.ready.promise = function (t) { - if (!r) { - r = v.Deferred(); - if (i.readyState === "complete")setTimeout(v.ready, 1); else if (i.addEventListener)i.addEventListener("DOMContentLoaded", A, !1), e.addEventListener("load", v.ready, !1); else { - i.attachEvent("onreadystatechange", A), e.attachEvent("onload", v.ready); - var n = !1; - try { - n = e.frameElement == null && i.documentElement - } catch (s) { - } - n && n.doScroll && function o() { - if (!v.isReady) { - try { - n.doScroll("left") - } catch (e) { - return setTimeout(o, 50) - } - v.ready() - } - }() - } - } - return r.promise(t) - }, v.each("Boolean Number String Function Array Date RegExp Object".split(" "), function (e, t) { - O["[object " + t + "]"] = t.toLowerCase() - }), n = v(i); - var M = {}; - v.Callbacks = function (e) { - e = typeof e == "string" ? M[e] || _(e) : v.extend({}, e); - var n, r, i, s, o, u, a = [], f = !e.once && [], l = function (t) { - n = e.memory && t, r = !0, u = s || 0, s = 0, o = a.length, i = !0; - for (; a && u < o; u++)if (a[u].apply(t[0], t[1]) === !1 && e.stopOnFalse) { - n = !1; - break - } - i = !1, a && (f ? f.length && l(f.shift()) : n ? a = [] : c.disable()) - }, c = { - add: function () { - if (a) { - var t = a.length; - (function r(t) { - v.each(t, function (t, n) { - var i = v.type(n); - i === "function" ? (!e.unique || !c.has(n)) && a.push(n) : n && n.length && i !== "string" && r(n) - }) - })(arguments), i ? o = a.length : n && (s = t, l(n)) - } - return this - }, remove: function () { - return a && v.each(arguments, function (e, t) { - var n; - while ((n = v.inArray(t, a, n)) > -1)a.splice(n, 1), i && (n <= o && o--, n <= u && u--) - }), this - }, has: function (e) { - return v.inArray(e, a) > -1 - }, empty: function () { - return a = [], this - }, disable: function () { - return a = f = n = t, this - }, disabled: function () { - return !a - }, lock: function () { - return f = t, n || c.disable(), this - }, locked: function () { - return !f - }, fireWith: function (e, t) { - return t = t || [], t = [e, t.slice ? t.slice() : t], a && (!r || f) && (i ? f.push(t) : l(t)), this - }, fire: function () { - return c.fireWith(this, arguments), this - }, fired: function () { - return !!r - } - }; - return c - }, v.extend({ - Deferred: function (e) { - var t = [["resolve", "done", v.Callbacks("once memory"), "resolved"], ["reject", "fail", v.Callbacks("once memory"), "rejected"], ["notify", "progress", v.Callbacks("memory")]], n = "pending", r = { - state: function () { - return n - }, always: function () { - return i.done(arguments).fail(arguments), this - }, then: function () { - var e = arguments; - return v.Deferred(function (n) { - v.each(t, function (t, r) { - var s = r[0], o = e[t]; - i[r[1]](v.isFunction(o) ? function () { - var e = o.apply(this, arguments); - e && v.isFunction(e.promise) ? e.promise().done(n.resolve).fail(n.reject).progress(n.notify) : n[s + "With"](this === i ? n : this, [e]) - } : n[s]) - }), e = null - }).promise() - }, promise: function (e) { - return e != null ? v.extend(e, r) : r - } - }, i = {}; - return r.pipe = r.then, v.each(t, function (e, s) { - var o = s[2], u = s[3]; - r[s[1]] = o.add, u && o.add(function () { - n = u - }, t[e ^ 1][2].disable, t[2][2].lock), i[s[0]] = o.fire, i[s[0] + "With"] = o.fireWith - }), r.promise(i), e && e.call(i, i), i - }, when: function (e) { - var t = 0, n = l.call(arguments), r = n.length, i = r !== 1 || e && v.isFunction(e.promise) ? r : 0, s = i === 1 ? e : v.Deferred(), o = function (e, t, n) { - return function (r) { - t[e] = this, n[e] = arguments.length > 1 ? l.call(arguments) : r, n === u ? s.notifyWith(t, n) : --i || s.resolveWith(t, n) - } - }, u, a, f; - if (r > 1) { - u = new Array(r), a = new Array(r), f = new Array(r); - for (; t < r; t++)n[t] && v.isFunction(n[t].promise) ? n[t].promise().done(o(t, f, n)).fail(s.reject).progress(o(t, a, u)) : --i - } - return i || s.resolveWith(f, n), s.promise() - } - }), v.support = function () { - var t, n, r, s, o, u, a, f, l, c, h, p = i.createElement("div"); - p.setAttribute("className", "t"), p.innerHTML = "
    a", n = p.getElementsByTagName("*"), r = p.getElementsByTagName("a")[0]; - if (!n || !r || !n.length)return {}; - s = i.createElement("select"), o = s.appendChild(i.createElement("option")), u = p.getElementsByTagName("input")[0], r.style.cssText = "top:1px;float:left;opacity:.5", t = { - leadingWhitespace: p.firstChild.nodeType === 3, - tbody: !p.getElementsByTagName("tbody").length, - htmlSerialize: !!p.getElementsByTagName("link").length, - style: /top/.test(r.getAttribute("style")), - hrefNormalized: r.getAttribute("href") === "/a", - opacity: /^0.5/.test(r.style.opacity), - cssFloat: !!r.style.cssFloat, - checkOn: u.value === "on", - optSelected: o.selected, - getSetAttribute: p.className !== "t", - enctype: !!i.createElement("form").enctype, - html5Clone: i.createElement("nav").cloneNode(!0).outerHTML !== "<:nav>", - boxModel: i.compatMode === "CSS1Compat", - submitBubbles: !0, - changeBubbles: !0, - focusinBubbles: !1, - deleteExpando: !0, - noCloneEvent: !0, - inlineBlockNeedsLayout: !1, - shrinkWrapBlocks: !1, - reliableMarginRight: !0, - boxSizingReliable: !0, - pixelPosition: !1 - }, u.checked = !0, t.noCloneChecked = u.cloneNode(!0).checked, s.disabled = !0, t.optDisabled = !o.disabled; - try { - delete p.test - } catch (d) { - t.deleteExpando = !1 - } - !p.addEventListener && p.attachEvent && p.fireEvent && (p.attachEvent("onclick", h = function () { - t.noCloneEvent = !1 - }), p.cloneNode(!0).fireEvent("onclick"), p.detachEvent("onclick", h)), u = i.createElement("input"), u.value = "t", u.setAttribute("type", "radio"), t.radioValue = u.value === "t", u.setAttribute("checked", "checked"), u.setAttribute("name", "t"), p.appendChild(u), a = i.createDocumentFragment(), a.appendChild(p.lastChild), t.checkClone = a.cloneNode(!0).cloneNode(!0).lastChild.checked, t.appendChecked = u.checked, a.removeChild(u), a.appendChild(p); - if (p.attachEvent)for (l in{ - submit: !0, - change: !0, - focusin: !0 - })f = "on" + l, c = f in p, c || (p.setAttribute(f, "return;"), c = typeof p[f] == "function"), t[l + "Bubbles"] = c; - return v(function () { - var n, r, s, o, u = "padding:0;margin:0;border:0;display:block;overflow:hidden;", a = i.getElementsByTagName("body")[0]; - if (!a)return; - n = i.createElement("div"), n.style.cssText = "visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px", a.insertBefore(n, a.firstChild), r = i.createElement("div"), n.appendChild(r), r.innerHTML = "
    t
    ", s = r.getElementsByTagName("td"), s[0].style.cssText = "padding:0;margin:0;border:0;display:none", c = s[0].offsetHeight === 0, s[0].style.display = "", s[1].style.display = "none", t.reliableHiddenOffsets = c && s[0].offsetHeight === 0, r.innerHTML = "", r.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;", t.boxSizing = r.offsetWidth === 4, t.doesNotIncludeMarginInBodyOffset = a.offsetTop !== 1, e.getComputedStyle && (t.pixelPosition = (e.getComputedStyle(r, null) || {}).top !== "1%", t.boxSizingReliable = (e.getComputedStyle(r, null) || {width: "4px"}).width === "4px", o = i.createElement("div"), o.style.cssText = r.style.cssText = u, o.style.marginRight = o.style.width = "0", r.style.width = "1px", r.appendChild(o), t.reliableMarginRight = !parseFloat((e.getComputedStyle(o, null) || {}).marginRight)), typeof r.style.zoom != "undefined" && (r.innerHTML = "", r.style.cssText = u + "width:1px;padding:1px;display:inline;zoom:1", t.inlineBlockNeedsLayout = r.offsetWidth === 3, r.style.display = "block", r.style.overflow = "visible", r.innerHTML = "
    ", r.firstChild.style.width = "5px", t.shrinkWrapBlocks = r.offsetWidth !== 3, n.style.zoom = 1), a.removeChild(n), n = r = s = o = null - }), a.removeChild(p), n = r = s = o = u = a = p = null, t - }(); - var D = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, P = /([A-Z])/g; - v.extend({ - cache: {}, - deletedIds: [], - uuid: 0, - expando: "jQuery" + (v.fn.jquery + Math.random()).replace(/\D/g, ""), - noData: {embed: !0, object: "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", applet: !0}, - hasData: function (e) { - return e = e.nodeType ? v.cache[e[v.expando]] : e[v.expando], !!e && !B(e) - }, - data: function (e, n, r, i) { - if (!v.acceptData(e))return; - var s, o, u = v.expando, a = typeof n == "string", f = e.nodeType, l = f ? v.cache : e, c = f ? e[u] : e[u] && u; - if ((!c || !l[c] || !i && !l[c].data) && a && r === t)return; - c || (f ? e[u] = c = v.deletedIds.pop() || v.guid++ : c = u), l[c] || (l[c] = {}, f || (l[c].toJSON = v.noop)); - if (typeof n == "object" || typeof n == "function")i ? l[c] = v.extend(l[c], n) : l[c].data = v.extend(l[c].data, n); - return s = l[c], i || (s.data || (s.data = {}), s = s.data), r !== t && (s[v.camelCase(n)] = r), a ? (o = s[n], o == null && (o = s[v.camelCase(n)])) : o = s, o - }, - removeData: function (e, t, n) { - if (!v.acceptData(e))return; - var r, i, s, o = e.nodeType, u = o ? v.cache : e, a = o ? e[v.expando] : v.expando; - if (!u[a])return; - if (t) { - r = n ? u[a] : u[a].data; - if (r) { - v.isArray(t) || (t in r ? t = [t] : (t = v.camelCase(t), t in r ? t = [t] : t = t.split(" "))); - for (i = 0, s = t.length; i < s; i++)delete r[t[i]]; - if (!(n ? B : v.isEmptyObject)(r))return - } - } - if (!n) { - delete u[a].data; - if (!B(u[a]))return - } - o ? v.cleanData([e], !0) : v.support.deleteExpando || u != u.window ? delete u[a] : u[a] = null - }, - _data: function (e, t, n) { - return v.data(e, t, n, !0) - }, - acceptData: function (e) { - var t = e.nodeName && v.noData[e.nodeName.toLowerCase()]; - return !t || t !== !0 && e.getAttribute("classid") === t - } - }), v.fn.extend({ - data: function (e, n) { - var r, i, s, o, u, a = this[0], f = 0, l = null; - if (e === t) { - if (this.length) { - l = v.data(a); - if (a.nodeType === 1 && !v._data(a, "parsedAttrs")) { - s = a.attributes; - for (u = s.length; f < u; f++)o = s[f].name, o.indexOf("data-") || (o = v.camelCase(o.substring(5)), H(a, o, l[o])); - v._data(a, "parsedAttrs", !0) - } - } - return l - } - return typeof e == "object" ? this.each(function () { - v.data(this, e) - }) : (r = e.split(".", 2), r[1] = r[1] ? "." + r[1] : "", i = r[1] + "!", v.access(this, function (n) { - if (n === t)return l = this.triggerHandler("getData" + i, [r[0]]), l === t && a && (l = v.data(a, e), l = H(a, e, l)), l === t && r[1] ? this.data(r[0]) : l; - r[1] = n, this.each(function () { - var t = v(this); - t.triggerHandler("setData" + i, r), v.data(this, e, n), t.triggerHandler("changeData" + i, r) - }) - }, null, n, arguments.length > 1, null, !1)) - }, removeData: function (e) { - return this.each(function () { - v.removeData(this, e) - }) - } - }), v.extend({ - queue: function (e, t, n) { - var r; - if (e)return t = (t || "fx") + "queue", r = v._data(e, t), n && (!r || v.isArray(n) ? r = v._data(e, t, v.makeArray(n)) : r.push(n)), r || [] - }, dequeue: function (e, t) { - t = t || "fx"; - var n = v.queue(e, t), r = n.length, i = n.shift(), s = v._queueHooks(e, t), o = function () { - v.dequeue(e, t) - }; - i === "inprogress" && (i = n.shift(), r--), i && (t === "fx" && n.unshift("inprogress"), delete s.stop, i.call(e, o, s)), !r && s && s.empty.fire() - }, _queueHooks: function (e, t) { - var n = t + "queueHooks"; - return v._data(e, n) || v._data(e, n, { - empty: v.Callbacks("once memory").add(function () { - v.removeData(e, t + "queue", !0), v.removeData(e, n, !0) - }) - }) - } - }), v.fn.extend({ - queue: function (e, n) { - var r = 2; - return typeof e != "string" && (n = e, e = "fx", r--), arguments.length < r ? v.queue(this[0], e) : n === t ? this : this.each(function () { - var t = v.queue(this, e, n); - v._queueHooks(this, e), e === "fx" && t[0] !== "inprogress" && v.dequeue(this, e) - }) - }, dequeue: function (e) { - return this.each(function () { - v.dequeue(this, e) - }) - }, delay: function (e, t) { - return e = v.fx ? v.fx.speeds[e] || e : e, t = t || "fx", this.queue(t, function (t, n) { - var r = setTimeout(t, e); - n.stop = function () { - clearTimeout(r) - } - }) - }, clearQueue: function (e) { - return this.queue(e || "fx", []) - }, promise: function (e, n) { - var r, i = 1, s = v.Deferred(), o = this, u = this.length, a = function () { - --i || s.resolveWith(o, [o]) - }; - typeof e != "string" && (n = e, e = t), e = e || "fx"; - while (u--)r = v._data(o[u], e + "queueHooks"), r && r.empty && (i++, r.empty.add(a)); - return a(), s.promise(n) - } - }); - var j, F, I, q = /[\t\r\n]/g, R = /\r/g, U = /^(?:button|input)$/i, z = /^(?:button|input|object|select|textarea)$/i, W = /^a(?:rea|)$/i, X = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, V = v.support.getSetAttribute; - v.fn.extend({ - attr: function (e, t) { - return v.access(this, v.attr, e, t, arguments.length > 1) - }, removeAttr: function (e) { - return this.each(function () { - v.removeAttr(this, e) - }) - }, prop: function (e, t) { - return v.access(this, v.prop, e, t, arguments.length > 1) - }, removeProp: function (e) { - return e = v.propFix[e] || e, this.each(function () { - try { - this[e] = t, delete this[e] - } catch (n) { - } - }) - }, addClass: function (e) { - var t, n, r, i, s, o, u; - if (v.isFunction(e))return this.each(function (t) { - v(this).addClass(e.call(this, t, this.className)) - }); - if (e && typeof e == "string") { - t = e.split(y); - for (n = 0, r = this.length; n < r; n++) { - i = this[n]; - if (i.nodeType === 1)if (!i.className && t.length === 1)i.className = e; else { - s = " " + i.className + " "; - for (o = 0, u = t.length; o < u; o++)s.indexOf(" " + t[o] + " ") < 0 && (s += t[o] + " "); - i.className = v.trim(s) - } - } - } - return this - }, removeClass: function (e) { - var n, r, i, s, o, u, a; - if (v.isFunction(e))return this.each(function (t) { - v(this).removeClass(e.call(this, t, this.className)) - }); - if (e && typeof e == "string" || e === t) { - n = (e || "").split(y); - for (u = 0, a = this.length; u < a; u++) { - i = this[u]; - if (i.nodeType === 1 && i.className) { - r = (" " + i.className + " ").replace(q, " "); - for (s = 0, o = n.length; s < o; s++)while (r.indexOf(" " + n[s] + " ") >= 0)r = r.replace(" " + n[s] + " ", " "); - i.className = e ? v.trim(r) : "" - } - } - } - return this - }, toggleClass: function (e, t) { - var n = typeof e, r = typeof t == "boolean"; - return v.isFunction(e) ? this.each(function (n) { - v(this).toggleClass(e.call(this, n, this.className, t), t) - }) : this.each(function () { - if (n === "string") { - var i, s = 0, o = v(this), u = t, a = e.split(y); - while (i = a[s++])u = r ? u : !o.hasClass(i), o[u ? "addClass" : "removeClass"](i) - } else if (n === "undefined" || n === "boolean")this.className && v._data(this, "__className__", this.className), this.className = this.className || e === !1 ? "" : v._data(this, "__className__") || "" - }) - }, hasClass: function (e) { - var t = " " + e + " ", n = 0, r = this.length; - for (; n < r; n++)if (this[n].nodeType === 1 && (" " + this[n].className + " ").replace(q, " ").indexOf(t) >= 0)return !0; - return !1 - }, val: function (e) { - var n, r, i, s = this[0]; - if (!arguments.length) { - if (s)return n = v.valHooks[s.type] || v.valHooks[s.nodeName.toLowerCase()], n && "get"in n && (r = n.get(s, "value")) !== t ? r : (r = s.value, typeof r == "string" ? r.replace(R, "") : r == null ? "" : r); - return - } - return i = v.isFunction(e), this.each(function (r) { - var s, o = v(this); - if (this.nodeType !== 1)return; - i ? s = e.call(this, r, o.val()) : s = e, s == null ? s = "" : typeof s == "number" ? s += "" : v.isArray(s) && (s = v.map(s, function (e) { - return e == null ? "" : e + "" - })), n = v.valHooks[this.type] || v.valHooks[this.nodeName.toLowerCase()]; - if (!n || !("set"in n) || n.set(this, s, "value") === t)this.value = s - }) - } - }), v.extend({ - valHooks: { - option: { - get: function (e) { - var t = e.attributes.value; - return !t || t.specified ? e.value : e.text - } - }, select: { - get: function (e) { - var t, n, r = e.options, i = e.selectedIndex, s = e.type === "select-one" || i < 0, o = s ? null : [], u = s ? i + 1 : r.length, a = i < 0 ? u : s ? i : 0; - for (; a < u; a++) { - n = r[a]; - if ((n.selected || a === i) && (v.support.optDisabled ? !n.disabled : n.getAttribute("disabled") === null) && (!n.parentNode.disabled || !v.nodeName(n.parentNode, "optgroup"))) { - t = v(n).val(); - if (s)return t; - o.push(t) - } - } - return o - }, set: function (e, t) { - var n = v.makeArray(t); - return v(e).find("option").each(function () { - this.selected = v.inArray(v(this).val(), n) >= 0 - }), n.length || (e.selectedIndex = -1), n - } - } - }, - attrFn: {}, - attr: function (e, n, r, i) { - var s, o, u, a = e.nodeType; - if (!e || a === 3 || a === 8 || a === 2)return; - if (i && v.isFunction(v.fn[n]))return v(e)[n](r); - if (typeof e.getAttribute == "undefined")return v.prop(e, n, r); - u = a !== 1 || !v.isXMLDoc(e), u && (n = n.toLowerCase(), o = v.attrHooks[n] || (X.test(n) ? F : j)); - if (r !== t) { - if (r === null) { - v.removeAttr(e, n); - return - } - return o && "set"in o && u && (s = o.set(e, r, n)) !== t ? s : (e.setAttribute(n, r + ""), r) - } - return o && "get"in o && u && (s = o.get(e, n)) !== null ? s : (s = e.getAttribute(n), s === null ? t : s) - }, - removeAttr: function (e, t) { - var n, r, i, s, o = 0; - if (t && e.nodeType === 1) { - r = t.split(y); - for (; o < r.length; o++)i = r[o], i && (n = v.propFix[i] || i, s = X.test(i), s || v.attr(e, i, ""), e.removeAttribute(V ? i : n), s && n in e && (e[n] = !1)) - } - }, - attrHooks: { - type: { - set: function (e, t) { - if (U.test(e.nodeName) && e.parentNode)v.error("type property can't be changed"); else if (!v.support.radioValue && t === "radio" && v.nodeName(e, "input")) { - var n = e.value; - return e.setAttribute("type", t), n && (e.value = n), t - } - } - }, value: { - get: function (e, t) { - return j && v.nodeName(e, "button") ? j.get(e, t) : t in e ? e.value : null - }, set: function (e, t, n) { - if (j && v.nodeName(e, "button"))return j.set(e, t, n); - e.value = t - } - } - }, - propFix: { - tabindex: "tabIndex", - readonly: "readOnly", - "for": "htmlFor", - "class": "className", - maxlength: "maxLength", - cellspacing: "cellSpacing", - cellpadding: "cellPadding", - rowspan: "rowSpan", - colspan: "colSpan", - usemap: "useMap", - frameborder: "frameBorder", - contenteditable: "contentEditable" - }, - prop: function (e, n, r) { - var i, s, o, u = e.nodeType; - if (!e || u === 3 || u === 8 || u === 2)return; - return o = u !== 1 || !v.isXMLDoc(e), o && (n = v.propFix[n] || n, s = v.propHooks[n]), r !== t ? s && "set"in s && (i = s.set(e, r, n)) !== t ? i : e[n] = r : s && "get"in s && (i = s.get(e, n)) !== null ? i : e[n] - }, - propHooks: { - tabIndex: { - get: function (e) { - var n = e.getAttributeNode("tabindex"); - return n && n.specified ? parseInt(n.value, 10) : z.test(e.nodeName) || W.test(e.nodeName) && e.href ? 0 : t - } - } - } - }), F = { - get: function (e, n) { - var r, i = v.prop(e, n); - return i === !0 || typeof i != "boolean" && (r = e.getAttributeNode(n)) && r.nodeValue !== !1 ? n.toLowerCase() : t - }, set: function (e, t, n) { - var r; - return t === !1 ? v.removeAttr(e, n) : (r = v.propFix[n] || n, r in e && (e[r] = !0), e.setAttribute(n, n.toLowerCase())), n - } - }, V || (I = {name: !0, id: !0, coords: !0}, j = v.valHooks.button = { - get: function (e, n) { - var r; - return r = e.getAttributeNode(n), r && (I[n] ? r.value !== "" : r.specified) ? r.value : t - }, set: function (e, t, n) { - var r = e.getAttributeNode(n); - return r || (r = i.createAttribute(n), e.setAttributeNode(r)), r.value = t + "" - } - }, v.each(["width", "height"], function (e, t) { - v.attrHooks[t] = v.extend(v.attrHooks[t], { - set: function (e, n) { - if (n === "")return e.setAttribute(t, "auto"), n - } - }) - }), v.attrHooks.contenteditable = { - get: j.get, set: function (e, t, n) { - t === "" && (t = "false"), j.set(e, t, n) - } - }), v.support.hrefNormalized || v.each(["href", "src", "width", "height"], function (e, n) { - v.attrHooks[n] = v.extend(v.attrHooks[n], { - get: function (e) { - var r = e.getAttribute(n, 2); - return r === null ? t : r - } - }) - }), v.support.style || (v.attrHooks.style = { - get: function (e) { - return e.style.cssText.toLowerCase() || t - }, set: function (e, t) { - return e.style.cssText = t + "" - } - }), v.support.optSelected || (v.propHooks.selected = v.extend(v.propHooks.selected, { - get: function (e) { - var t = e.parentNode; - return t && (t.selectedIndex, t.parentNode && t.parentNode.selectedIndex), null - } - })), v.support.enctype || (v.propFix.enctype = "encoding"), v.support.checkOn || v.each(["radio", "checkbox"], function () { - v.valHooks[this] = { - get: function (e) { - return e.getAttribute("value") === null ? "on" : e.value - } - } - }), v.each(["radio", "checkbox"], function () { - v.valHooks[this] = v.extend(v.valHooks[this], { - set: function (e, t) { - if (v.isArray(t))return e.checked = v.inArray(v(e).val(), t) >= 0 - } - }) - }); - var $ = /^(?:textarea|input|select)$/i, J = /^([^\.]*|)(?:\.(.+)|)$/, K = /(?:^|\s)hover(\.\S+|)\b/, Q = /^key/, G = /^(?:mouse|contextmenu)|click/, Y = /^(?:focusinfocus|focusoutblur)$/, Z = function (e) { - return v.event.special.hover ? e : e.replace(K, "mouseenter$1 mouseleave$1") - }; - v.event = { - add: function (e, n, r, i, s) { - var o, u, a, f, l, c, h, p, d, m, g; - if (e.nodeType === 3 || e.nodeType === 8 || !n || !r || !(o = v._data(e)))return; - r.handler && (d = r, r = d.handler, s = d.selector), r.guid || (r.guid = v.guid++), a = o.events, a || (o.events = a = {}), u = o.handle, u || (o.handle = u = function (e) { - return typeof v == "undefined" || !!e && v.event.triggered === e.type ? t : v.event.dispatch.apply(u.elem, arguments) - }, u.elem = e), n = v.trim(Z(n)).split(" "); - for (f = 0; f < n.length; f++) { - l = J.exec(n[f]) || [], c = l[1], h = (l[2] || "").split(".").sort(), g = v.event.special[c] || {}, c = (s ? g.delegateType : g.bindType) || c, g = v.event.special[c] || {}, p = v.extend({ - type: c, - origType: l[1], - data: i, - handler: r, - guid: r.guid, - selector: s, - needsContext: s && v.expr.match.needsContext.test(s), - namespace: h.join(".") - }, d), m = a[c]; - if (!m) { - m = a[c] = [], m.delegateCount = 0; - if (!g.setup || g.setup.call(e, i, h, u) === !1)e.addEventListener ? e.addEventListener(c, u, !1) : e.attachEvent && e.attachEvent("on" + c, u) - } - g.add && (g.add.call(e, p), p.handler.guid || (p.handler.guid = r.guid)), s ? m.splice(m.delegateCount++, 0, p) : m.push(p), v.event.global[c] = !0 - } - e = null - }, - global: {}, - remove: function (e, t, n, r, i) { - var s, o, u, a, f, l, c, h, p, d, m, g = v.hasData(e) && v._data(e); - if (!g || !(h = g.events))return; - t = v.trim(Z(t || "")).split(" "); - for (s = 0; s < t.length; s++) { - o = J.exec(t[s]) || [], u = a = o[1], f = o[2]; - if (!u) { - for (u in h)v.event.remove(e, u + t[s], n, r, !0); - continue - } - p = v.event.special[u] || {}, u = (r ? p.delegateType : p.bindType) || u, d = h[u] || [], l = d.length, f = f ? new RegExp("(^|\\.)" + f.split(".").sort().join("\\.(?:.*\\.|)") + "(\\.|$)") : null; - for (c = 0; c < d.length; c++)m = d[c], (i || a === m.origType) && (!n || n.guid === m.guid) && (!f || f.test(m.namespace)) && (!r || r === m.selector || r === "**" && m.selector) && (d.splice(c--, 1), m.selector && d.delegateCount--, p.remove && p.remove.call(e, m)); - d.length === 0 && l !== d.length && ((!p.teardown || p.teardown.call(e, f, g.handle) === !1) && v.removeEvent(e, u, g.handle), delete h[u]) - } - v.isEmptyObject(h) && (delete g.handle, v.removeData(e, "events", !0)) - }, - customEvent: {getData: !0, setData: !0, changeData: !0}, - trigger: function (n, r, s, o) { - if (!s || s.nodeType !== 3 && s.nodeType !== 8) { - var u, a, f, l, c, h, p, d, m, g, y = n.type || n, b = []; - if (Y.test(y + v.event.triggered))return; - y.indexOf("!") >= 0 && (y = y.slice(0, -1), a = !0), y.indexOf(".") >= 0 && (b = y.split("."), y = b.shift(), b.sort()); - if ((!s || v.event.customEvent[y]) && !v.event.global[y])return; - n = typeof n == "object" ? n[v.expando] ? n : new v.Event(y, n) : new v.Event(y), n.type = y, n.isTrigger = !0, n.exclusive = a, n.namespace = b.join("."), n.namespace_re = n.namespace ? new RegExp("(^|\\.)" + b.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, h = y.indexOf(":") < 0 ? "on" + y : ""; - if (!s) { - u = v.cache; - for (f in u)u[f].events && u[f].events[y] && v.event.trigger(n, r, u[f].handle.elem, !0); - return - } - n.result = t, n.target || (n.target = s), r = r != null ? v.makeArray(r) : [], r.unshift(n), p = v.event.special[y] || {}; - if (p.trigger && p.trigger.apply(s, r) === !1)return; - m = [[s, p.bindType || y]]; - if (!o && !p.noBubble && !v.isWindow(s)) { - g = p.delegateType || y, l = Y.test(g + y) ? s : s.parentNode; - for (c = s; l; l = l.parentNode)m.push([l, g]), c = l; - c === (s.ownerDocument || i) && m.push([c.defaultView || c.parentWindow || e, g]) - } - for (f = 0; f < m.length && !n.isPropagationStopped(); f++)l = m[f][0], n.type = m[f][1], d = (v._data(l, "events") || {})[n.type] && v._data(l, "handle"), d && d.apply(l, r), d = h && l[h], d && v.acceptData(l) && d.apply && d.apply(l, r) === !1 && n.preventDefault(); - return n.type = y, !o && !n.isDefaultPrevented() && (!p._default || p._default.apply(s.ownerDocument, r) === !1) && (y !== "click" || !v.nodeName(s, "a")) && v.acceptData(s) && h && s[y] && (y !== "focus" && y !== "blur" || n.target.offsetWidth !== 0) && !v.isWindow(s) && (c = s[h], c && (s[h] = null), v.event.triggered = y, s[y](), v.event.triggered = t, c && (s[h] = c)), n.result - } - return - }, - dispatch: function (n) { - n = v.event.fix(n || e.event); - var r, i, s, o, u, a, f, c, h, p, d = (v._data(this, "events") || {})[n.type] || [], m = d.delegateCount, g = l.call(arguments), y = !n.exclusive && !n.namespace, b = v.event.special[n.type] || {}, w = []; - g[0] = n, n.delegateTarget = this; - if (b.preDispatch && b.preDispatch.call(this, n) === !1)return; - if (m && (!n.button || n.type !== "click"))for (s = n.target; s != this; s = s.parentNode || this)if (s.disabled !== !0 || n.type !== "click") { - u = {}, f = []; - for (r = 0; r < m; r++)c = d[r], h = c.selector, u[h] === t && (u[h] = c.needsContext ? v(h, this).index(s) >= 0 : v.find(h, this, null, [s]).length), u[h] && f.push(c); - f.length && w.push({elem: s, matches: f}) - } - d.length > m && w.push({elem: this, matches: d.slice(m)}); - for (r = 0; r < w.length && !n.isPropagationStopped(); r++) { - a = w[r], n.currentTarget = a.elem; - for (i = 0; i < a.matches.length && !n.isImmediatePropagationStopped(); i++) { - c = a.matches[i]; - if (y || !n.namespace && !c.namespace || n.namespace_re && n.namespace_re.test(c.namespace))n.data = c.data, n.handleObj = c, o = ((v.event.special[c.origType] || {}).handle || c.handler).apply(a.elem, g), o !== t && (n.result = o, o === !1 && (n.preventDefault(), n.stopPropagation())) - } - } - return b.postDispatch && b.postDispatch.call(this, n), n.result - }, - props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - fixHooks: {}, - keyHooks: { - props: "char charCode key keyCode".split(" "), filter: function (e, t) { - return e.which == null && (e.which = t.charCode != null ? t.charCode : t.keyCode), e - } - }, - mouseHooks: { - props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), - filter: function (e, n) { - var r, s, o, u = n.button, a = n.fromElement; - return e.pageX == null && n.clientX != null && (r = e.target.ownerDocument || i, s = r.documentElement, o = r.body, e.pageX = n.clientX + (s && s.scrollLeft || o && o.scrollLeft || 0) - (s && s.clientLeft || o && o.clientLeft || 0), e.pageY = n.clientY + (s && s.scrollTop || o && o.scrollTop || 0) - (s && s.clientTop || o && o.clientTop || 0)), !e.relatedTarget && a && (e.relatedTarget = a === e.target ? n.toElement : a), !e.which && u !== t && (e.which = u & 1 ? 1 : u & 2 ? 3 : u & 4 ? 2 : 0), e - } - }, - fix: function (e) { - if (e[v.expando])return e; - var t, n, r = e, s = v.event.fixHooks[e.type] || {}, o = s.props ? this.props.concat(s.props) : this.props; - e = v.Event(r); - for (t = o.length; t;)n = o[--t], e[n] = r[n]; - return e.target || (e.target = r.srcElement || i), e.target.nodeType === 3 && (e.target = e.target.parentNode), e.metaKey = !!e.metaKey, s.filter ? s.filter(e, r) : e - }, - special: { - load: {noBubble: !0}, - focus: {delegateType: "focusin"}, - blur: {delegateType: "focusout"}, - beforeunload: { - setup: function (e, t, n) { - v.isWindow(this) && (this.onbeforeunload = n) - }, teardown: function (e, t) { - this.onbeforeunload === t && (this.onbeforeunload = null) - } - } - }, - simulate: function (e, t, n, r) { - var i = v.extend(new v.Event, n, {type: e, isSimulated: !0, originalEvent: {}}); - r ? v.event.trigger(i, null, t) : v.event.dispatch.call(t, i), i.isDefaultPrevented() && n.preventDefault() - } - }, v.event.handle = v.event.dispatch, v.removeEvent = i.removeEventListener ? function (e, t, n) { - e.removeEventListener && e.removeEventListener(t, n, !1) - } : function (e, t, n) { - var r = "on" + t; - e.detachEvent && (typeof e[r] == "undefined" && (e[r] = null), e.detachEvent(r, n)) - }, v.Event = function (e, t) { - if (!(this instanceof v.Event))return new v.Event(e, t); - e && e.type ? (this.originalEvent = e, this.type = e.type, this.isDefaultPrevented = e.defaultPrevented || e.returnValue === !1 || e.getPreventDefault && e.getPreventDefault() ? tt : et) : this.type = e, t && v.extend(this, t), this.timeStamp = e && e.timeStamp || v.now(), this[v.expando] = !0 - }, v.Event.prototype = { - preventDefault: function () { - this.isDefaultPrevented = tt; - var e = this.originalEvent; - if (!e)return; - e.preventDefault ? e.preventDefault() : e.returnValue = !1 - }, stopPropagation: function () { - this.isPropagationStopped = tt; - var e = this.originalEvent; - if (!e)return; - e.stopPropagation && e.stopPropagation(), e.cancelBubble = !0 - }, stopImmediatePropagation: function () { - this.isImmediatePropagationStopped = tt, this.stopPropagation() - }, isDefaultPrevented: et, isPropagationStopped: et, isImmediatePropagationStopped: et - }, v.each({mouseenter: "mouseover", mouseleave: "mouseout"}, function (e, t) { - v.event.special[e] = { - delegateType: t, bindType: t, handle: function (e) { - var n, r = this, i = e.relatedTarget, s = e.handleObj, o = s.selector; - if (!i || i !== r && !v.contains(r, i))e.type = s.origType, n = s.handler.apply(this, arguments), e.type = t; - return n - } - } - }), v.support.submitBubbles || (v.event.special.submit = { - setup: function () { - if (v.nodeName(this, "form"))return !1; - v.event.add(this, "click._submit keypress._submit", function (e) { - var n = e.target, r = v.nodeName(n, "input") || v.nodeName(n, "button") ? n.form : t; - r && !v._data(r, "_submit_attached") && (v.event.add(r, "submit._submit", function (e) { - e._submit_bubble = !0 - }), v._data(r, "_submit_attached", !0)) - }) - }, postDispatch: function (e) { - e._submit_bubble && (delete e._submit_bubble, this.parentNode && !e.isTrigger && v.event.simulate("submit", this.parentNode, e, !0)) - }, teardown: function () { - if (v.nodeName(this, "form"))return !1; - v.event.remove(this, "._submit") - } - }), v.support.changeBubbles || (v.event.special.change = { - setup: function () { - if ($.test(this.nodeName)) { - if (this.type === "checkbox" || this.type === "radio")v.event.add(this, "propertychange._change", function (e) { - e.originalEvent.propertyName === "checked" && (this._just_changed = !0) - }), v.event.add(this, "click._change", function (e) { - this._just_changed && !e.isTrigger && (this._just_changed = !1), v.event.simulate("change", this, e, !0) - }); - return !1 - } - v.event.add(this, "beforeactivate._change", function (e) { - var t = e.target; - $.test(t.nodeName) && !v._data(t, "_change_attached") && (v.event.add(t, "change._change", function (e) { - this.parentNode && !e.isSimulated && !e.isTrigger && v.event.simulate("change", this.parentNode, e, !0) - }), v._data(t, "_change_attached", !0)) - }) - }, handle: function (e) { - var t = e.target; - if (this !== t || e.isSimulated || e.isTrigger || t.type !== "radio" && t.type !== "checkbox")return e.handleObj.handler.apply(this, arguments) - }, teardown: function () { - return v.event.remove(this, "._change"), !$.test(this.nodeName) - } - }), v.support.focusinBubbles || v.each({focus: "focusin", blur: "focusout"}, function (e, t) { - var n = 0, r = function (e) { - v.event.simulate(t, e.target, v.event.fix(e), !0) - }; - v.event.special[t] = { - setup: function () { - n++ === 0 && i.addEventListener(e, r, !0) - }, teardown: function () { - --n === 0 && i.removeEventListener(e, r, !0) - } - } - }), v.fn.extend({ - on: function (e, n, r, i, s) { - var o, u; - if (typeof e == "object") { - typeof n != "string" && (r = r || n, n = t); - for (u in e)this.on(u, n, r, e[u], s); - return this - } - r == null && i == null ? (i = n, r = n = t) : i == null && (typeof n == "string" ? (i = r, r = t) : (i = r, r = n, n = t)); - if (i === !1)i = et; else if (!i)return this; - return s === 1 && (o = i, i = function (e) { - return v().off(e), o.apply(this, arguments) - }, i.guid = o.guid || (o.guid = v.guid++)), this.each(function () { - v.event.add(this, e, i, r, n) - }) - }, one: function (e, t, n, r) { - return this.on(e, t, n, r, 1) - }, off: function (e, n, r) { - var i, s; - if (e && e.preventDefault && e.handleObj)return i = e.handleObj, v(e.delegateTarget).off(i.namespace ? i.origType + "." + i.namespace : i.origType, i.selector, i.handler), this; - if (typeof e == "object") { - for (s in e)this.off(s, n, e[s]); - return this - } - if (n === !1 || typeof n == "function")r = n, n = t; - return r === !1 && (r = et), this.each(function () { - v.event.remove(this, e, r, n) - }) - }, bind: function (e, t, n) { - return this.on(e, null, t, n) - }, unbind: function (e, t) { - return this.off(e, null, t) - }, live: function (e, t, n) { - return v(this.context).on(e, this.selector, t, n), this - }, die: function (e, t) { - return v(this.context).off(e, this.selector || "**", t), this - }, delegate: function (e, t, n, r) { - return this.on(t, e, n, r) - }, undelegate: function (e, t, n) { - return arguments.length === 1 ? this.off(e, "**") : this.off(t, e || "**", n) - }, trigger: function (e, t) { - return this.each(function () { - v.event.trigger(e, t, this) - }) - }, triggerHandler: function (e, t) { - if (this[0])return v.event.trigger(e, t, this[0], !0) - }, toggle: function (e) { - var t = arguments, n = e.guid || v.guid++, r = 0, i = function (n) { - var i = (v._data(this, "lastToggle" + e.guid) || 0) % r; - return v._data(this, "lastToggle" + e.guid, i + 1), n.preventDefault(), t[i].apply(this, arguments) || !1 - }; - i.guid = n; - while (r < t.length)t[r++].guid = n; - return this.click(i) - }, hover: function (e, t) { - return this.mouseenter(e).mouseleave(t || e) - } - }), v.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "), function (e, t) { - v.fn[t] = function (e, n) { - return n == null && (n = e, e = null), arguments.length > 0 ? this.on(t, null, e, n) : this.trigger(t) - }, Q.test(t) && (v.event.fixHooks[t] = v.event.keyHooks), G.test(t) && (v.event.fixHooks[t] = v.event.mouseHooks) - }), function (e, t) { - function nt(e, t, n, r) { - n = n || [], t = t || g; - var i, s, a, f, l = t.nodeType; - if (!e || typeof e != "string")return n; - if (l !== 1 && l !== 9)return []; - a = o(t); - if (!a && !r)if (i = R.exec(e))if (f = i[1]) { - if (l === 9) { - s = t.getElementById(f); - if (!s || !s.parentNode)return n; - if (s.id === f)return n.push(s), n - } else if (t.ownerDocument && (s = t.ownerDocument.getElementById(f)) && u(t, s) && s.id === f)return n.push(s), n - } else { - if (i[2])return S.apply(n, x.call(t.getElementsByTagName(e), 0)), n; - if ((f = i[3]) && Z && t.getElementsByClassName)return S.apply(n, x.call(t.getElementsByClassName(f), 0)), n - } - return vt(e.replace(j, "$1"), t, n, r, a) - } - - function rt(e) { - return function (t) { - var n = t.nodeName.toLowerCase(); - return n === "input" && t.type === e - } - } - - function it(e) { - return function (t) { - var n = t.nodeName.toLowerCase(); - return (n === "input" || n === "button") && t.type === e - } - } - - function st(e) { - return N(function (t) { - return t = +t, N(function (n, r) { - var i, s = e([], n.length, t), o = s.length; - while (o--)n[i = s[o]] && (n[i] = !(r[i] = n[i])) - }) - }) - } - - function ot(e, t, n) { - if (e === t)return n; - var r = e.nextSibling; - while (r) { - if (r === t)return -1; - r = r.nextSibling - } - return 1 - } - - function ut(e, t) { - var n, r, s, o, u, a, f, l = L[d][e + " "]; - if (l)return t ? 0 : l.slice(0); - u = e, a = [], f = i.preFilter; - while (u) { - if (!n || (r = F.exec(u)))r && (u = u.slice(r[0].length) || u), a.push(s = []); - n = !1; - if (r = I.exec(u))s.push(n = new m(r.shift())), u = u.slice(n.length), n.type = r[0].replace(j, " "); - for (o in i.filter)(r = J[o].exec(u)) && (!f[o] || (r = f[o](r))) && (s.push(n = new m(r.shift())), u = u.slice(n.length), n.type = o, n.matches = r); - if (!n)break - } - return t ? u.length : u ? nt.error(e) : L(e, a).slice(0) - } - - function at(e, t, r) { - var i = t.dir, s = r && t.dir === "parentNode", o = w++; - return t.first ? function (t, n, r) { - while (t = t[i])if (s || t.nodeType === 1)return e(t, n, r) - } : function (t, r, u) { - if (!u) { - var a, f = b + " " + o + " ", l = f + n; - while (t = t[i])if (s || t.nodeType === 1) { - if ((a = t[d]) === l)return t.sizset; - if (typeof a == "string" && a.indexOf(f) === 0) { - if (t.sizset)return t - } else { - t[d] = l; - if (e(t, r, u))return t.sizset = !0, t; - t.sizset = !1 - } - } - } else while (t = t[i])if (s || t.nodeType === 1)if (e(t, r, u))return t - } - } - - function ft(e) { - return e.length > 1 ? function (t, n, r) { - var i = e.length; - while (i--)if (!e[i](t, n, r))return !1; - return !0 - } : e[0] - } - - function lt(e, t, n, r, i) { - var s, o = [], u = 0, a = e.length, f = t != null; - for (; u < a; u++)if (s = e[u])if (!n || n(s, r, i))o.push(s), f && t.push(u); - return o - } - - function ct(e, t, n, r, i, s) { - return r && !r[d] && (r = ct(r)), i && !i[d] && (i = ct(i, s)), N(function (s, o, u, a) { - var f, l, c, h = [], p = [], d = o.length, v = s || dt(t || "*", u.nodeType ? [u] : u, []), m = e && (s || !t) ? lt(v, h, e, u, a) : v, g = n ? i || (s ? e : d || r) ? [] : o : m; - n && n(m, g, u, a); - if (r) { - f = lt(g, p), r(f, [], u, a), l = f.length; - while (l--)if (c = f[l])g[p[l]] = !(m[p[l]] = c) - } - if (s) { - if (i || e) { - if (i) { - f = [], l = g.length; - while (l--)(c = g[l]) && f.push(m[l] = c); - i(null, g = [], f, a) - } - l = g.length; - while (l--)(c = g[l]) && (f = i ? T.call(s, c) : h[l]) > -1 && (s[f] = !(o[f] = c)) - } - } else g = lt(g === o ? g.splice(d, g.length) : g), i ? i(null, o, g, a) : S.apply(o, g) - }) - } - - function ht(e) { - var t, n, r, s = e.length, o = i.relative[e[0].type], u = o || i.relative[" "], a = o ? 1 : 0, f = at(function (e) { - return e === t - }, u, !0), l = at(function (e) { - return T.call(t, e) > -1 - }, u, !0), h = [function (e, n, r) { - return !o && (r || n !== c) || ((t = n).nodeType ? f(e, n, r) : l(e, n, r)) - }]; - for (; a < s; a++)if (n = i.relative[e[a].type])h = [at(ft(h), n)]; else { - n = i.filter[e[a].type].apply(null, e[a].matches); - if (n[d]) { - r = ++a; - for (; r < s; r++)if (i.relative[e[r].type])break; - return ct(a > 1 && ft(h), a > 1 && e.slice(0, a - 1).join("").replace(j, "$1"), n, a < r && ht(e.slice(a, r)), r < s && ht(e = e.slice(r)), r < s && e.join("")) - } - h.push(n) - } - return ft(h) - } - - function pt(e, t) { - var r = t.length > 0, s = e.length > 0, o = function (u, a, f, l, h) { - var p, d, v, m = [], y = 0, w = "0", x = u && [], T = h != null, N = c, C = u || s && i.find.TAG("*", h && a.parentNode || a), k = b += N == null ? 1 : Math.E; - T && (c = a !== g && a, n = o.el); - for (; (p = C[w]) != null; w++) { - if (s && p) { - for (d = 0; v = e[d]; d++)if (v(p, a, f)) { - l.push(p); - break - } - T && (b = k, n = ++o.el) - } - r && ((p = !v && p) && y--, u && x.push(p)) - } - y += w; - if (r && w !== y) { - for (d = 0; v = t[d]; d++)v(x, m, a, f); - if (u) { - if (y > 0)while (w--)!x[w] && !m[w] && (m[w] = E.call(l)); - m = lt(m) - } - S.apply(l, m), T && !u && m.length > 0 && y + t.length > 1 && nt.uniqueSort(l) - } - return T && (b = k, c = N), x - }; - return o.el = 0, r ? N(o) : o - } - - function dt(e, t, n) { - var r = 0, i = t.length; - for (; r < i; r++)nt(e, t[r], n); - return n - } - - function vt(e, t, n, r, s) { - var o, u, f, l, c, h = ut(e), p = h.length; - if (!r && h.length === 1) { - u = h[0] = h[0].slice(0); - if (u.length > 2 && (f = u[0]).type === "ID" && t.nodeType === 9 && !s && i.relative[u[1].type]) { - t = i.find.ID(f.matches[0].replace($, ""), t, s)[0]; - if (!t)return n; - e = e.slice(u.shift().length) - } - for (o = J.POS.test(e) ? -1 : u.length - 1; o >= 0; o--) { - f = u[o]; - if (i.relative[l = f.type])break; - if (c = i.find[l])if (r = c(f.matches[0].replace($, ""), z.test(u[0].type) && t.parentNode || t, s)) { - u.splice(o, 1), e = r.length && u.join(""); - if (!e)return S.apply(n, x.call(r, 0)), n; - break - } - } - } - return a(e, h)(r, t, s, n, z.test(e)), n - } - - function mt() { - } - - var n, r, i, s, o, u, a, f, l, c, h = !0, p = "undefined", d = ("sizcache" + Math.random()).replace(".", ""), m = String, g = e.document, y = g.documentElement, b = 0, w = 0, E = [].pop, S = [].push, x = [].slice, T = [].indexOf || function (e) { - var t = 0, n = this.length; - for (; t < n; t++)if (this[t] === e)return t; - return -1 - }, N = function (e, t) { - return e[d] = t == null || t, e - }, C = function () { - var e = {}, t = []; - return N(function (n, r) { - return t.push(n) > i.cacheLength && delete e[t.shift()], e[n + " "] = r - }, e) - }, k = C(), L = C(), A = C(), O = "[\\x20\\t\\r\\n\\f]", M = "(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+", _ = M.replace("w", "w#"), D = "([*^$|!~]?=)", P = "\\[" + O + "*(" + M + ")" + O + "*(?:" + D + O + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + _ + ")|)|)" + O + "*\\]", H = ":(" + M + ")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:" + P + ")|[^:]|\\\\.)*|.*))\\)|)", B = ":(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + O + "*((?:-\\d)?\\d*)" + O + "*\\)|)(?=[^-]|$)", j = new RegExp("^" + O + "+|((?:^|[^\\\\])(?:\\\\.)*)" + O + "+$", "g"), F = new RegExp("^" + O + "*," + O + "*"), I = new RegExp("^" + O + "*([\\x20\\t\\r\\n\\f>+~])" + O + "*"), q = new RegExp(H), R = /^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/, U = /^:not/, z = /[\x20\t\r\n\f]*[+~]/, W = /:not\($/, X = /h\d/i, V = /input|select|textarea|button/i, $ = /\\(?!\\)/g, J = { - ID: new RegExp("^#(" + M + ")"), - CLASS: new RegExp("^\\.(" + M + ")"), - NAME: new RegExp("^\\[name=['\"]?(" + M + ")['\"]?\\]"), - TAG: new RegExp("^(" + M.replace("w", "w*") + ")"), - ATTR: new RegExp("^" + P), - PSEUDO: new RegExp("^" + H), - POS: new RegExp(B, "i"), - CHILD: new RegExp("^:(only|nth|first|last)-child(?:\\(" + O + "*(even|odd|(([+-]|)(\\d*)n|)" + O + "*(?:([+-]|)" + O + "*(\\d+)|))" + O + "*\\)|)", "i"), - needsContext: new RegExp("^" + O + "*[>+~]|" + B, "i") - }, K = function (e) { - var t = g.createElement("div"); - try { - return e(t) - } catch (n) { - return !1 - } finally { - t = null - } - }, Q = K(function (e) { - return e.appendChild(g.createComment("")), !e.getElementsByTagName("*").length - }), G = K(function (e) { - return e.innerHTML = "", e.firstChild && typeof e.firstChild.getAttribute !== p && e.firstChild.getAttribute("href") === "#" - }), Y = K(function (e) { - e.innerHTML = ""; - var t = typeof e.lastChild.getAttribute("multiple"); - return t !== "boolean" && t !== "string" - }), Z = K(function (e) { - return e.innerHTML = "", !e.getElementsByClassName || !e.getElementsByClassName("e").length ? !1 : (e.lastChild.className = "e", e.getElementsByClassName("e").length === 2) - }), et = K(function (e) { - e.id = d + 0, e.innerHTML = "
    ", y.insertBefore(e, y.firstChild); - var t = g.getElementsByName && g.getElementsByName(d).length === 2 + g.getElementsByName(d + 0).length; - return r = !g.getElementById(d), y.removeChild(e), t - }); - try { - x.call(y.childNodes, 0)[0].nodeType - } catch (tt) { - x = function (e) { - var t, n = []; - for (; t = this[e]; e++)n.push(t); - return n - } - } - nt.matches = function (e, t) { - return nt(e, null, null, t) - }, nt.matchesSelector = function (e, t) { - return nt(t, null, null, [e]).length > 0 - }, s = nt.getText = function (e) { - var t, n = "", r = 0, i = e.nodeType; - if (i) { - if (i === 1 || i === 9 || i === 11) { - if (typeof e.textContent == "string")return e.textContent; - for (e = e.firstChild; e; e = e.nextSibling)n += s(e) - } else if (i === 3 || i === 4)return e.nodeValue - } else for (; t = e[r]; r++)n += s(t); - return n - }, o = nt.isXML = function (e) { - var t = e && (e.ownerDocument || e).documentElement; - return t ? t.nodeName !== "HTML" : !1 - }, u = nt.contains = y.contains ? function (e, t) { - var n = e.nodeType === 9 ? e.documentElement : e, r = t && t.parentNode; - return e === r || !!(r && r.nodeType === 1 && n.contains && n.contains(r)) - } : y.compareDocumentPosition ? function (e, t) { - return t && !!(e.compareDocumentPosition(t) & 16) - } : function (e, t) { - while (t = t.parentNode)if (t === e)return !0; - return !1 - }, nt.attr = function (e, t) { - var n, r = o(e); - return r || (t = t.toLowerCase()), (n = i.attrHandle[t]) ? n(e) : r || Y ? e.getAttribute(t) : (n = e.getAttributeNode(t), n ? typeof e[t] == "boolean" ? e[t] ? t : null : n.specified ? n.value : null : null) - }, i = nt.selectors = { - cacheLength: 50, - createPseudo: N, - match: J, - attrHandle: G ? {} : { - href: function (e) { - return e.getAttribute("href", 2) - }, type: function (e) { - return e.getAttribute("type") - } - }, - find: { - ID: r ? function (e, t, n) { - if (typeof t.getElementById !== p && !n) { - var r = t.getElementById(e); - return r && r.parentNode ? [r] : [] - } - } : function (e, n, r) { - if (typeof n.getElementById !== p && !r) { - var i = n.getElementById(e); - return i ? i.id === e || typeof i.getAttributeNode !== p && i.getAttributeNode("id").value === e ? [i] : t : [] - } - }, TAG: Q ? function (e, t) { - if (typeof t.getElementsByTagName !== p)return t.getElementsByTagName(e) - } : function (e, t) { - var n = t.getElementsByTagName(e); - if (e === "*") { - var r, i = [], s = 0; - for (; r = n[s]; s++)r.nodeType === 1 && i.push(r); - return i - } - return n - }, NAME: et && function (e, t) { - if (typeof t.getElementsByName !== p)return t.getElementsByName(name) - }, CLASS: Z && function (e, t, n) { - if (typeof t.getElementsByClassName !== p && !n)return t.getElementsByClassName(e) - } - }, - relative: { - ">": {dir: "parentNode", first: !0}, - " ": {dir: "parentNode"}, - "+": {dir: "previousSibling", first: !0}, - "~": {dir: "previousSibling"} - }, - preFilter: { - ATTR: function (e) { - return e[1] = e[1].replace($, ""), e[3] = (e[4] || e[5] || "").replace($, ""), e[2] === "~=" && (e[3] = " " + e[3] + " "), e.slice(0, 4) - }, CHILD: function (e) { - return e[1] = e[1].toLowerCase(), e[1] === "nth" ? (e[2] || nt.error(e[0]), e[3] = +(e[3] ? e[4] + (e[5] || 1) : 2 * (e[2] === "even" || e[2] === "odd")), e[4] = +(e[6] + e[7] || e[2] === "odd")) : e[2] && nt.error(e[0]), e - }, PSEUDO: function (e) { - var t, n; - if (J.CHILD.test(e[0]))return null; - if (e[3])e[2] = e[3]; else if (t = e[4])q.test(t) && (n = ut(t, !0)) && (n = t.indexOf(")", t.length - n) - t.length) && (t = t.slice(0, n), e[0] = e[0].slice(0, n)), e[2] = t; - return e.slice(0, 3) - } - }, - filter: { - ID: r ? function (e) { - return e = e.replace($, ""), function (t) { - return t.getAttribute("id") === e - } - } : function (e) { - return e = e.replace($, ""), function (t) { - var n = typeof t.getAttributeNode !== p && t.getAttributeNode("id"); - return n && n.value === e - } - }, TAG: function (e) { - return e === "*" ? function () { - return !0 - } : (e = e.replace($, "").toLowerCase(), function (t) { - return t.nodeName && t.nodeName.toLowerCase() === e - }) - }, CLASS: function (e) { - var t = k[d][e + " "]; - return t || (t = new RegExp("(^|" + O + ")" + e + "(" + O + "|$)")) && k(e, function (e) { - return t.test(e.className || typeof e.getAttribute !== p && e.getAttribute("class") || "") - }) - }, ATTR: function (e, t, n) { - return function (r, i) { - var s = nt.attr(r, e); - return s == null ? t === "!=" : t ? (s += "", t === "=" ? s === n : t === "!=" ? s !== n : t === "^=" ? n && s.indexOf(n) === 0 : t === "*=" ? n && s.indexOf(n) > -1 : t === "$=" ? n && s.substr(s.length - n.length) === n : t === "~=" ? (" " + s + " ").indexOf(n) > -1 : t === "|=" ? s === n || s.substr(0, n.length + 1) === n + "-" : !1) : !0 - } - }, CHILD: function (e, t, n, r) { - return e === "nth" ? function (e) { - var t, i, s = e.parentNode; - if (n === 1 && r === 0)return !0; - if (s) { - i = 0; - for (t = s.firstChild; t; t = t.nextSibling)if (t.nodeType === 1) { - i++; - if (e === t)break - } - } - return i -= r, i === n || i % n === 0 && i / n >= 0 - } : function (t) { - var n = t; - switch (e) { - case"only": - case"first": - while (n = n.previousSibling)if (n.nodeType === 1)return !1; - if (e === "first")return !0; - n = t; - case"last": - while (n = n.nextSibling)if (n.nodeType === 1)return !1; - return !0 - } - } - }, PSEUDO: function (e, t) { - var n, r = i.pseudos[e] || i.setFilters[e.toLowerCase()] || nt.error("unsupported pseudo: " + e); - return r[d] ? r(t) : r.length > 1 ? (n = [e, e, "", t], i.setFilters.hasOwnProperty(e.toLowerCase()) ? N(function (e, n) { - var i, s = r(e, t), o = s.length; - while (o--)i = T.call(e, s[o]), e[i] = !(n[i] = s[o]) - }) : function (e) { - return r(e, 0, n) - }) : r - } - }, - pseudos: { - not: N(function (e) { - var t = [], n = [], r = a(e.replace(j, "$1")); - return r[d] ? N(function (e, t, n, i) { - var s, o = r(e, null, i, []), u = e.length; - while (u--)if (s = o[u])e[u] = !(t[u] = s) - }) : function (e, i, s) { - return t[0] = e, r(t, null, s, n), !n.pop() - } - }), - has: N(function (e) { - return function (t) { - return nt(e, t).length > 0 - } - }), - contains: N(function (e) { - return function (t) { - return (t.textContent || t.innerText || s(t)).indexOf(e) > -1 - } - }), - enabled: function (e) { - return e.disabled === !1 - }, - disabled: function (e) { - return e.disabled === !0 - }, - checked: function (e) { - var t = e.nodeName.toLowerCase(); - return t === "input" && !!e.checked || t === "option" && !!e.selected - }, - selected: function (e) { - return e.parentNode && e.parentNode.selectedIndex, e.selected === !0 - }, - parent: function (e) { - return !i.pseudos.empty(e) - }, - empty: function (e) { - var t; - e = e.firstChild; - while (e) { - if (e.nodeName > "@" || (t = e.nodeType) === 3 || t === 4)return !1; - e = e.nextSibling - } - return !0 - }, - header: function (e) { - return X.test(e.nodeName) - }, - text: function (e) { - var t, n; - return e.nodeName.toLowerCase() === "input" && (t = e.type) === "text" && ((n = e.getAttribute("type")) == null || n.toLowerCase() === t) - }, - radio: rt("radio"), - checkbox: rt("checkbox"), - file: rt("file"), - password: rt("password"), - image: rt("image"), - submit: it("submit"), - reset: it("reset"), - button: function (e) { - var t = e.nodeName.toLowerCase(); - return t === "input" && e.type === "button" || t === "button" - }, - input: function (e) { - return V.test(e.nodeName) - }, - focus: function (e) { - var t = e.ownerDocument; - return e === t.activeElement && (!t.hasFocus || t.hasFocus()) && !!(e.type || e.href || ~e.tabIndex) - }, - active: function (e) { - return e === e.ownerDocument.activeElement - }, - first: st(function () { - return [0] - }), - last: st(function (e, t) { - return [t - 1] - }), - eq: st(function (e, t, n) { - return [n < 0 ? n + t : n] - }), - even: st(function (e, t) { - for (var n = 0; n < t; n += 2)e.push(n); - return e - }), - odd: st(function (e, t) { - for (var n = 1; n < t; n += 2)e.push(n); - return e - }), - lt: st(function (e, t, n) { - for (var r = n < 0 ? n + t : n; --r >= 0;)e.push(r); - return e - }), - gt: st(function (e, t, n) { - for (var r = n < 0 ? n + t : n; ++r < t;)e.push(r); - return e - }) - } - }, f = y.compareDocumentPosition ? function (e, t) { - return e === t ? (l = !0, 0) : (!e.compareDocumentPosition || !t.compareDocumentPosition ? e.compareDocumentPosition : e.compareDocumentPosition(t) & 4) ? -1 : 1 - } : function (e, t) { - if (e === t)return l = !0, 0; - if (e.sourceIndex && t.sourceIndex)return e.sourceIndex - t.sourceIndex; - var n, r, i = [], s = [], o = e.parentNode, u = t.parentNode, a = o; - if (o === u)return ot(e, t); - if (!o)return -1; - if (!u)return 1; - while (a)i.unshift(a), a = a.parentNode; - a = u; - while (a)s.unshift(a), a = a.parentNode; - n = i.length, r = s.length; - for (var f = 0; f < n && f < r; f++)if (i[f] !== s[f])return ot(i[f], s[f]); - return f === n ? ot(e, s[f], -1) : ot(i[f], t, 1) - }, [0, 0].sort(f), h = !l, nt.uniqueSort = function (e) { - var t, n = [], r = 1, i = 0; - l = h, e.sort(f); - if (l) { - for (; t = e[r]; r++)t === e[r - 1] && (i = n.push(r)); - while (i--)e.splice(n[i], 1) - } - return e - }, nt.error = function (e) { - throw new Error("Syntax error, unrecognized expression: " + e) - }, a = nt.compile = function (e, t) { - var n, r = [], i = [], s = A[d][e + " "]; - if (!s) { - t || (t = ut(e)), n = t.length; - while (n--)s = ht(t[n]), s[d] ? r.push(s) : i.push(s); - s = A(e, pt(i, r)) - } - return s - }, g.querySelectorAll && function () { - var e, t = vt, n = /'|\\/g, r = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, i = [":focus"], s = [":active"], u = y.matchesSelector || y.mozMatchesSelector || y.webkitMatchesSelector || y.oMatchesSelector || y.msMatchesSelector; - K(function (e) { - e.innerHTML = "", e.querySelectorAll("[selected]").length || i.push("\\[" + O + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)"), e.querySelectorAll(":checked").length || i.push(":checked") - }), K(function (e) { - e.innerHTML = "

    ", e.querySelectorAll("[test^='']").length && i.push("[*^$]=" + O + "*(?:\"\"|'')"), e.innerHTML = "", e.querySelectorAll(":enabled").length || i.push(":enabled", ":disabled") - }), i = new RegExp(i.join("|")), vt = function (e, r, s, o, u) { - if (!o && !u && !i.test(e)) { - var a, f, l = !0, c = d, h = r, p = r.nodeType === 9 && e; - if (r.nodeType === 1 && r.nodeName.toLowerCase() !== "object") { - a = ut(e), (l = r.getAttribute("id")) ? c = l.replace(n, "\\$&") : r.setAttribute("id", c), c = "[id='" + c + "'] ", f = a.length; - while (f--)a[f] = c + a[f].join(""); - h = z.test(e) && r.parentNode || r, p = a.join(",") - } - if (p)try { - return S.apply(s, x.call(h.querySelectorAll(p), 0)), s - } catch (v) { - } finally { - l || r.removeAttribute("id") - } - } - return t(e, r, s, o, u) - }, u && (K(function (t) { - e = u.call(t, "div"); - try { - u.call(t, "[test!='']:sizzle"), s.push("!=", H) - } catch (n) { - } - }), s = new RegExp(s.join("|")), nt.matchesSelector = function (t, n) { - n = n.replace(r, "='$1']"); - if (!o(t) && !s.test(n) && !i.test(n))try { - var a = u.call(t, n); - if (a || e || t.document && t.document.nodeType !== 11)return a - } catch (f) { - } - return nt(n, null, null, [t]).length > 0 - }) - }(), i.pseudos.nth = i.pseudos.eq, i.filters = mt.prototype = i.pseudos, i.setFilters = new mt, nt.attr = v.attr, v.find = nt, v.expr = nt.selectors, v.expr[":"] = v.expr.pseudos, v.unique = nt.uniqueSort, v.text = nt.getText, v.isXMLDoc = nt.isXML, v.contains = nt.contains - }(e); - var nt = /Until$/, rt = /^(?:parents|prev(?:Until|All))/, it = /^.[^:#\[\.,]*$/, st = v.expr.match.needsContext, ot = { - children: !0, - contents: !0, - next: !0, - prev: !0 - }; - v.fn.extend({ - find: function (e) { - var t, n, r, i, s, o, u = this; - if (typeof e != "string")return v(e).filter(function () { - for (t = 0, n = u.length; t < n; t++)if (v.contains(u[t], this))return !0 - }); - o = this.pushStack("", "find", e); - for (t = 0, n = this.length; t < n; t++) { - r = o.length, v.find(e, this[t], o); - if (t > 0)for (i = r; i < o.length; i++)for (s = 0; s < r; s++)if (o[s] === o[i]) { - o.splice(i--, 1); - break - } - } - return o - }, has: function (e) { - var t, n = v(e, this), r = n.length; - return this.filter(function () { - for (t = 0; t < r; t++)if (v.contains(this, n[t]))return !0 - }) - }, not: function (e) { - return this.pushStack(ft(this, e, !1), "not", e) - }, filter: function (e) { - return this.pushStack(ft(this, e, !0), "filter", e) - }, is: function (e) { - return !!e && (typeof e == "string" ? st.test(e) ? v(e, this.context).index(this[0]) >= 0 : v.filter(e, this).length > 0 : this.filter(e).length > 0) - }, closest: function (e, t) { - var n, r = 0, i = this.length, s = [], o = st.test(e) || typeof e != "string" ? v(e, t || this.context) : 0; - for (; r < i; r++) { - n = this[r]; - while (n && n.ownerDocument && n !== t && n.nodeType !== 11) { - if (o ? o.index(n) > -1 : v.find.matchesSelector(n, e)) { - s.push(n); - break - } - n = n.parentNode - } - } - return s = s.length > 1 ? v.unique(s) : s, this.pushStack(s, "closest", e) - }, index: function (e) { - return e ? typeof e == "string" ? v.inArray(this[0], v(e)) : v.inArray(e.jquery ? e[0] : e, this) : this[0] && this[0].parentNode ? this.prevAll().length : -1 - }, add: function (e, t) { - var n = typeof e == "string" ? v(e, t) : v.makeArray(e && e.nodeType ? [e] : e), r = v.merge(this.get(), n); - return this.pushStack(ut(n[0]) || ut(r[0]) ? r : v.unique(r)) - }, addBack: function (e) { - return this.add(e == null ? this.prevObject : this.prevObject.filter(e)) - } - }), v.fn.andSelf = v.fn.addBack, v.each({ - parent: function (e) { - var t = e.parentNode; - return t && t.nodeType !== 11 ? t : null - }, parents: function (e) { - return v.dir(e, "parentNode") - }, parentsUntil: function (e, t, n) { - return v.dir(e, "parentNode", n) - }, next: function (e) { - return at(e, "nextSibling") - }, prev: function (e) { - return at(e, "previousSibling") - }, nextAll: function (e) { - return v.dir(e, "nextSibling") - }, prevAll: function (e) { - return v.dir(e, "previousSibling") - }, nextUntil: function (e, t, n) { - return v.dir(e, "nextSibling", n) - }, prevUntil: function (e, t, n) { - return v.dir(e, "previousSibling", n) - }, siblings: function (e) { - return v.sibling((e.parentNode || {}).firstChild, e) - }, children: function (e) { - return v.sibling(e.firstChild) - }, contents: function (e) { - return v.nodeName(e, "iframe") ? e.contentDocument || e.contentWindow.document : v.merge([], e.childNodes) - } - }, function (e, t) { - v.fn[e] = function (n, r) { - var i = v.map(this, t, n); - return nt.test(e) || (r = n), r && typeof r == "string" && (i = v.filter(r, i)), i = this.length > 1 && !ot[e] ? v.unique(i) : i, this.length > 1 && rt.test(e) && (i = i.reverse()), this.pushStack(i, e, l.call(arguments).join(",")) - } - }), v.extend({ - filter: function (e, t, n) { - return n && (e = ":not(" + e + ")"), t.length === 1 ? v.find.matchesSelector(t[0], e) ? [t[0]] : [] : v.find.matches(e, t) - }, dir: function (e, n, r) { - var i = [], s = e[n]; - while (s && s.nodeType !== 9 && (r === t || s.nodeType !== 1 || !v(s).is(r)))s.nodeType === 1 && i.push(s), s = s[n]; - return i - }, sibling: function (e, t) { - var n = []; - for (; e; e = e.nextSibling)e.nodeType === 1 && e !== t && n.push(e); - return n - } - }); - var ct = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", ht = / jQuery\d+="(?:null|\d+)"/g, pt = /^\s+/, dt = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, vt = /<([\w:]+)/, mt = /]", "i"), Et = /^(?:checkbox|radio)$/, St = /checked\s*(?:[^=]|=\s*.checked.)/i, xt = /\/(java|ecma)script/i, Tt = /^\s*\s*$/g, Nt = { - option: [1, ""], - legend: [1, "
    ", "
    "], - thead: [1, "", "
    "], - tr: [2, "", "
    "], - td: [3, "", "
    "], - col: [2, "", "
    "], - area: [1, "", ""], - _default: [0, "", ""] - }, Ct = lt(i), kt = Ct.appendChild(i.createElement("div")); - Nt.optgroup = Nt.option, Nt.tbody = Nt.tfoot = Nt.colgroup = Nt.caption = Nt.thead, Nt.th = Nt.td, v.support.htmlSerialize || (Nt._default = [1, "X
    ", "
    "]), v.fn.extend({ - text: function (e) { - return v.access(this, function (e) { - return e === t ? v.text(this) : this.empty().append((this[0] && this[0].ownerDocument || i).createTextNode(e)) - }, null, e, arguments.length) - }, wrapAll: function (e) { - if (v.isFunction(e))return this.each(function (t) { - v(this).wrapAll(e.call(this, t)) - }); - if (this[0]) { - var t = v(e, this[0].ownerDocument).eq(0).clone(!0); - this[0].parentNode && t.insertBefore(this[0]), t.map(function () { - var e = this; - while (e.firstChild && e.firstChild.nodeType === 1)e = e.firstChild; - return e - }).append(this) - } - return this - }, wrapInner: function (e) { - return v.isFunction(e) ? this.each(function (t) { - v(this).wrapInner(e.call(this, t)) - }) : this.each(function () { - var t = v(this), n = t.contents(); - n.length ? n.wrapAll(e) : t.append(e) - }) - }, wrap: function (e) { - var t = v.isFunction(e); - return this.each(function (n) { - v(this).wrapAll(t ? e.call(this, n) : e) - }) - }, unwrap: function () { - return this.parent().each(function () { - v.nodeName(this, "body") || v(this).replaceWith(this.childNodes) - }).end() - }, append: function () { - return this.domManip(arguments, !0, function (e) { - (this.nodeType === 1 || this.nodeType === 11) && this.appendChild(e) - }) - }, prepend: function () { - return this.domManip(arguments, !0, function (e) { - (this.nodeType === 1 || this.nodeType === 11) && this.insertBefore(e, this.firstChild) - }) - }, before: function () { - if (!ut(this[0]))return this.domManip(arguments, !1, function (e) { - this.parentNode.insertBefore(e, this) - }); - if (arguments.length) { - var e = v.clean(arguments); - return this.pushStack(v.merge(e, this), "before", this.selector) - } - }, after: function () { - if (!ut(this[0]))return this.domManip(arguments, !1, function (e) { - this.parentNode.insertBefore(e, this.nextSibling) - }); - if (arguments.length) { - var e = v.clean(arguments); - return this.pushStack(v.merge(this, e), "after", this.selector) - } - }, remove: function (e, t) { - var n, r = 0; - for (; (n = this[r]) != null; r++)if (!e || v.filter(e, [n]).length)!t && n.nodeType === 1 && (v.cleanData(n.getElementsByTagName("*")), v.cleanData([n])), n.parentNode && n.parentNode.removeChild(n); - return this - }, empty: function () { - var e, t = 0; - for (; (e = this[t]) != null; t++) { - e.nodeType === 1 && v.cleanData(e.getElementsByTagName("*")); - while (e.firstChild)e.removeChild(e.firstChild) - } - return this - }, clone: function (e, t) { - return e = e == null ? !1 : e, t = t == null ? e : t, this.map(function () { - return v.clone(this, e, t) - }) - }, html: function (e) { - return v.access(this, function (e) { - var n = this[0] || {}, r = 0, i = this.length; - if (e === t)return n.nodeType === 1 ? n.innerHTML.replace(ht, "") : t; - if (typeof e == "string" && !yt.test(e) && (v.support.htmlSerialize || !wt.test(e)) && (v.support.leadingWhitespace || !pt.test(e)) && !Nt[(vt.exec(e) || ["", ""])[1].toLowerCase()]) { - e = e.replace(dt, "<$1>"); - try { - for (; r < i; r++)n = this[r] || {}, n.nodeType === 1 && (v.cleanData(n.getElementsByTagName("*")), n.innerHTML = e); - n = 0 - } catch (s) { - } - } - n && this.empty().append(e) - }, null, e, arguments.length) - }, replaceWith: function (e) { - return ut(this[0]) ? this.length ? this.pushStack(v(v.isFunction(e) ? e() : e), "replaceWith", e) : this : v.isFunction(e) ? this.each(function (t) { - var n = v(this), r = n.html(); - n.replaceWith(e.call(this, t, r)) - }) : (typeof e != "string" && (e = v(e).detach()), this.each(function () { - var t = this.nextSibling, n = this.parentNode; - v(this).remove(), t ? v(t).before(e) : v(n).append(e) - })) - }, detach: function (e) { - return this.remove(e, !0) - }, domManip: function (e, n, r) { - e = [].concat.apply([], e); - var i, s, o, u, a = 0, f = e[0], l = [], c = this.length; - if (!v.support.checkClone && c > 1 && typeof f == "string" && St.test(f))return this.each(function () { - v(this).domManip(e, n, r) - }); - if (v.isFunction(f))return this.each(function (i) { - var s = v(this); - e[0] = f.call(this, i, n ? s.html() : t), s.domManip(e, n, r) - }); - if (this[0]) { - i = v.buildFragment(e, this, l), o = i.fragment, s = o.firstChild, o.childNodes.length === 1 && (o = s); - if (s) { - n = n && v.nodeName(s, "tr"); - for (u = i.cacheable || c - 1; a < c; a++)r.call(n && v.nodeName(this[a], "table") ? Lt(this[a], "tbody") : this[a], a === u ? o : v.clone(o, !0, !0)) - } - o = s = null, l.length && v.each(l, function (e, t) { - t.src ? v.ajax ? v.ajax({ - url: t.src, - type: "GET", - dataType: "script", - async: !1, - global: !1, - "throws": !0 - }) : v.error("no ajax") : v.globalEval((t.text || t.textContent || t.innerHTML || "").replace(Tt, "")), t.parentNode && t.parentNode.removeChild(t) - }) - } - return this - } - }), v.buildFragment = function (e, n, r) { - var s, o, u, a = e[0]; - return n = n || i, n = !n.nodeType && n[0] || n, n = n.ownerDocument || n, e.length === 1 && typeof a == "string" && a.length < 512 && n === i && a.charAt(0) === "<" && !bt.test(a) && (v.support.checkClone || !St.test(a)) && (v.support.html5Clone || !wt.test(a)) && (o = !0, s = v.fragments[a], u = s !== t), s || (s = n.createDocumentFragment(), v.clean(e, n, s, r), o && (v.fragments[a] = u && s)), { - fragment: s, - cacheable: o - } - }, v.fragments = {}, v.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" - }, function (e, t) { - v.fn[e] = function (n) { - var r, i = 0, s = [], o = v(n), u = o.length, a = this.length === 1 && this[0].parentNode; - if ((a == null || a && a.nodeType === 11 && a.childNodes.length === 1) && u === 1)return o[t](this[0]), this; - for (; i < u; i++)r = (i > 0 ? this.clone(!0) : this).get(), v(o[i])[t](r), s = s.concat(r); - return this.pushStack(s, e, o.selector) - } - }), v.extend({ - clone: function (e, t, n) { - var r, i, s, o; - v.support.html5Clone || v.isXMLDoc(e) || !wt.test("<" + e.nodeName + ">") ? o = e.cloneNode(!0) : (kt.innerHTML = e.outerHTML, kt.removeChild(o = kt.firstChild)); - if ((!v.support.noCloneEvent || !v.support.noCloneChecked) && (e.nodeType === 1 || e.nodeType === 11) && !v.isXMLDoc(e)) { - Ot(e, o), r = Mt(e), i = Mt(o); - for (s = 0; r[s]; ++s)i[s] && Ot(r[s], i[s]) - } - if (t) { - At(e, o); - if (n) { - r = Mt(e), i = Mt(o); - for (s = 0; r[s]; ++s)At(r[s], i[s]) - } - } - return r = i = null, o - }, clean: function (e, t, n, r) { - var s, o, u, a, f, l, c, h, p, d, m, g, y = t === i && Ct, b = []; - if (!t || typeof t.createDocumentFragment == "undefined")t = i; - for (s = 0; (u = e[s]) != null; s++) { - typeof u == "number" && (u += ""); - if (!u)continue; - if (typeof u == "string")if (!gt.test(u))u = t.createTextNode(u); else { - y = y || lt(t), c = t.createElement("div"), y.appendChild(c), u = u.replace(dt, "<$1>"), a = (vt.exec(u) || ["", ""])[1].toLowerCase(), f = Nt[a] || Nt._default, l = f[0], c.innerHTML = f[1] + u + f[2]; - while (l--)c = c.lastChild; - if (!v.support.tbody) { - h = mt.test(u), p = a === "table" && !h ? c.firstChild && c.firstChild.childNodes : f[1] === "" && !h ? c.childNodes : []; - for (o = p.length - 1; o >= 0; --o)v.nodeName(p[o], "tbody") && !p[o].childNodes.length && p[o].parentNode.removeChild(p[o]) - } - !v.support.leadingWhitespace && pt.test(u) && c.insertBefore(t.createTextNode(pt.exec(u)[0]), c.firstChild), u = c.childNodes, c.parentNode.removeChild(c) - } - u.nodeType ? b.push(u) : v.merge(b, u) - } - c && (u = c = y = null); - if (!v.support.appendChecked)for (s = 0; (u = b[s]) != null; s++)v.nodeName(u, "input") ? _t(u) : typeof u.getElementsByTagName != "undefined" && v.grep(u.getElementsByTagName("input"), _t); - if (n) { - m = function (e) { - if (!e.type || xt.test(e.type))return r ? r.push(e.parentNode ? e.parentNode.removeChild(e) : e) : n.appendChild(e) - }; - for (s = 0; (u = b[s]) != null; s++)if (!v.nodeName(u, "script") || !m(u))n.appendChild(u), typeof u.getElementsByTagName != "undefined" && (g = v.grep(v.merge([], u.getElementsByTagName("script")), m), b.splice.apply(b, [s + 1, 0].concat(g)), s += g.length) - } - return b - }, cleanData: function (e, t) { - var n, r, i, s, o = 0, u = v.expando, a = v.cache, f = v.support.deleteExpando, l = v.event.special; - for (; (i = e[o]) != null; o++)if (t || v.acceptData(i)) { - r = i[u], n = r && a[r]; - if (n) { - if (n.events)for (s in n.events)l[s] ? v.event.remove(i, s) : v.removeEvent(i, s, n.handle); - a[r] && (delete a[r], f ? delete i[u] : i.removeAttribute ? i.removeAttribute(u) : i[u] = null, v.deletedIds.push(r)) - } - } - } - }), function () { - var e, t; - v.uaMatch = function (e) { - e = e.toLowerCase(); - var t = /(chrome)[ \/]([\w.]+)/.exec(e) || /(webkit)[ \/]([\w.]+)/.exec(e) || /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(e) || /(msie) ([\w.]+)/.exec(e) || e.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e) || []; - return {browser: t[1] || "", version: t[2] || "0"} - }, e = v.uaMatch(o.userAgent), t = {}, e.browser && (t[e.browser] = !0, t.version = e.version), t.chrome ? t.webkit = !0 : t.webkit && (t.safari = !0), v.browser = t, v.sub = function () { - function e(t, n) { - return new e.fn.init(t, n) - } - - v.extend(!0, e, this), e.superclass = this, e.fn = e.prototype = this(), e.fn.constructor = e, e.sub = this.sub, e.fn.init = function (r, i) { - return i && i instanceof v && !(i instanceof e) && (i = e(i)), v.fn.init.call(this, r, i, t) - }, e.fn.init.prototype = e.fn; - var t = e(i); - return e - } - }(); - var Dt, Pt, Ht, Bt = /alpha\([^)]*\)/i, jt = /opacity=([^)]*)/, Ft = /^(top|right|bottom|left)$/, It = /^(none|table(?!-c[ea]).+)/, qt = /^margin/, Rt = new RegExp("^(" + m + ")(.*)$", "i"), Ut = new RegExp("^(" + m + ")(?!px)[a-z%]+$", "i"), zt = new RegExp("^([-+])=(" + m + ")", "i"), Wt = {BODY: "block"}, Xt = { - position: "absolute", - visibility: "hidden", - display: "block" - }, Vt = { - letterSpacing: 0, - fontWeight: 400 - }, $t = ["Top", "Right", "Bottom", "Left"], Jt = ["Webkit", "O", "Moz", "ms"], Kt = v.fn.toggle; - v.fn.extend({ - css: function (e, n) { - return v.access(this, function (e, n, r) { - return r !== t ? v.style(e, n, r) : v.css(e, n) - }, e, n, arguments.length > 1) - }, show: function () { - return Yt(this, !0) - }, hide: function () { - return Yt(this) - }, toggle: function (e, t) { - var n = typeof e == "boolean"; - return v.isFunction(e) && v.isFunction(t) ? Kt.apply(this, arguments) : this.each(function () { - (n ? e : Gt(this)) ? v(this).show() : v(this).hide() - }) - } - }), v.extend({ - cssHooks: { - opacity: { - get: function (e, t) { - if (t) { - var n = Dt(e, "opacity"); - return n === "" ? "1" : n - } - } - } - }, - cssNumber: { - fillOpacity: !0, - fontWeight: !0, - lineHeight: !0, - opacity: !0, - orphans: !0, - widows: !0, - zIndex: !0, - zoom: !0 - }, - cssProps: {"float": v.support.cssFloat ? "cssFloat" : "styleFloat"}, - style: function (e, n, r, i) { - if (!e || e.nodeType === 3 || e.nodeType === 8 || !e.style)return; - var s, o, u, a = v.camelCase(n), f = e.style; - n = v.cssProps[a] || (v.cssProps[a] = Qt(f, a)), u = v.cssHooks[n] || v.cssHooks[a]; - if (r === t)return u && "get"in u && (s = u.get(e, !1, i)) !== t ? s : f[n]; - o = typeof r, o === "string" && (s = zt.exec(r)) && (r = (s[1] + 1) * s[2] + parseFloat(v.css(e, n)), o = "number"); - if (r == null || o === "number" && isNaN(r))return; - o === "number" && !v.cssNumber[a] && (r += "px"); - if (!u || !("set"in u) || (r = u.set(e, r, i)) !== t)try { - f[n] = r - } catch (l) { - } - }, - css: function (e, n, r, i) { - var s, o, u, a = v.camelCase(n); - return n = v.cssProps[a] || (v.cssProps[a] = Qt(e.style, a)), u = v.cssHooks[n] || v.cssHooks[a], u && "get"in u && (s = u.get(e, !0, i)), s === t && (s = Dt(e, n)), s === "normal" && n in Vt && (s = Vt[n]), r || i !== t ? (o = parseFloat(s), r || v.isNumeric(o) ? o || 0 : s) : s - }, - swap: function (e, t, n) { - var r, i, s = {}; - for (i in t)s[i] = e.style[i], e.style[i] = t[i]; - r = n.call(e); - for (i in t)e.style[i] = s[i]; - return r - } - }), e.getComputedStyle ? Dt = function (t, n) { - var r, i, s, o, u = e.getComputedStyle(t, null), a = t.style; - return u && (r = u.getPropertyValue(n) || u[n], r === "" && !v.contains(t.ownerDocument, t) && (r = v.style(t, n)), Ut.test(r) && qt.test(n) && (i = a.width, s = a.minWidth, o = a.maxWidth, a.minWidth = a.maxWidth = a.width = r, r = u.width, a.width = i, a.minWidth = s, a.maxWidth = o)), r - } : i.documentElement.currentStyle && (Dt = function (e, t) { - var n, r, i = e.currentStyle && e.currentStyle[t], s = e.style; - return i == null && s && s[t] && (i = s[t]), Ut.test(i) && !Ft.test(t) && (n = s.left, r = e.runtimeStyle && e.runtimeStyle.left, r && (e.runtimeStyle.left = e.currentStyle.left), s.left = t === "fontSize" ? "1em" : i, i = s.pixelLeft + "px", s.left = n, r && (e.runtimeStyle.left = r)), i === "" ? "auto" : i - }), v.each(["height", "width"], function (e, t) { - v.cssHooks[t] = { - get: function (e, n, r) { - if (n)return e.offsetWidth === 0 && It.test(Dt(e, "display")) ? v.swap(e, Xt, function () { - return tn(e, t, r) - }) : tn(e, t, r) - }, set: function (e, n, r) { - return Zt(e, n, r ? en(e, t, r, v.support.boxSizing && v.css(e, "boxSizing") === "border-box") : 0) - } - } - }), v.support.opacity || (v.cssHooks.opacity = { - get: function (e, t) { - return jt.test((t && e.currentStyle ? e.currentStyle.filter : e.style.filter) || "") ? .01 * parseFloat(RegExp.$1) + "" : t ? "1" : "" - }, set: function (e, t) { - var n = e.style, r = e.currentStyle, i = v.isNumeric(t) ? "alpha(opacity=" + t * 100 + ")" : "", s = r && r.filter || n.filter || ""; - n.zoom = 1; - if (t >= 1 && v.trim(s.replace(Bt, "")) === "" && n.removeAttribute) { - n.removeAttribute("filter"); - if (r && !r.filter)return - } - n.filter = Bt.test(s) ? s.replace(Bt, i) : s + " " + i - } - }), v(function () { - v.support.reliableMarginRight || (v.cssHooks.marginRight = { - get: function (e, t) { - return v.swap(e, {display: "inline-block"}, function () { - if (t)return Dt(e, "marginRight") - }) - } - }), !v.support.pixelPosition && v.fn.position && v.each(["top", "left"], function (e, t) { - v.cssHooks[t] = { - get: function (e, n) { - if (n) { - var r = Dt(e, t); - return Ut.test(r) ? v(e).position()[t] + "px" : r - } - } - } - }) - }), v.expr && v.expr.filters && (v.expr.filters.hidden = function (e) { - return e.offsetWidth === 0 && e.offsetHeight === 0 || !v.support.reliableHiddenOffsets && (e.style && e.style.display || Dt(e, "display")) === "none" - }, v.expr.filters.visible = function (e) { - return !v.expr.filters.hidden(e) - }), v.each({margin: "", padding: "", border: "Width"}, function (e, t) { - v.cssHooks[e + t] = { - expand: function (n) { - var r, i = typeof n == "string" ? n.split(" ") : [n], s = {}; - for (r = 0; r < 4; r++)s[e + $t[r] + t] = i[r] || i[r - 2] || i[0]; - return s - } - }, qt.test(e) || (v.cssHooks[e + t].set = Zt) - }); - var rn = /%20/g, sn = /\[\]$/, on = /\r?\n/g, un = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i, an = /^(?:select|textarea)/i; - v.fn.extend({ - serialize: function () { - return v.param(this.serializeArray()) - }, serializeArray: function () { - return this.map(function () { - return this.elements ? v.makeArray(this.elements) : this - }).filter(function () { - return this.name && !this.disabled && (this.checked || an.test(this.nodeName) || un.test(this.type)) - }).map(function (e, t) { - var n = v(this).val(); - return n == null ? null : v.isArray(n) ? v.map(n, function (e, n) { - return {name: t.name, value: e.replace(on, "\r\n")} - }) : {name: t.name, value: n.replace(on, "\r\n")} - }).get() - } - }), v.param = function (e, n) { - var r, i = [], s = function (e, t) { - t = v.isFunction(t) ? t() : t == null ? "" : t, i[i.length] = encodeURIComponent(e) + "=" + encodeURIComponent(t) - }; - n === t && (n = v.ajaxSettings && v.ajaxSettings.traditional); - if (v.isArray(e) || e.jquery && !v.isPlainObject(e))v.each(e, function () { - s(this.name, this.value) - }); else for (r in e)fn(r, e[r], n, s); - return i.join("&").replace(rn, "+") - }; - var ln, cn, hn = /#.*$/, pn = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, dn = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/, vn = /^(?:GET|HEAD)$/, mn = /^\/\//, gn = /\?/, yn = /)<[^<]*)*<\/script>/gi, bn = /([?&])_=[^&]*/, wn = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/, En = v.fn.load, Sn = {}, xn = {}, Tn = ["*/"] + ["*"]; - try { - cn = s.href - } catch (Nn) { - cn = i.createElement("a"), cn.href = "", cn = cn.href - } - ln = wn.exec(cn.toLowerCase()) || [], v.fn.load = function (e, n, r) { - if (typeof e != "string" && En)return En.apply(this, arguments); - if (!this.length)return this; - var i, s, o, u = this, a = e.indexOf(" "); - return a >= 0 && (i = e.slice(a, e.length), e = e.slice(0, a)), v.isFunction(n) ? (r = n, n = t) : n && typeof n == "object" && (s = "POST"), v.ajax({ - url: e, - type: s, - dataType: "html", - data: n, - complete: function (e, t) { - r && u.each(r, o || [e.responseText, t, e]) - } - }).done(function (e) { - o = arguments, u.html(i ? v("
    ").append(e.replace(yn, "")).find(i) : e) - }), this - }, v.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function (e, t) { - v.fn[t] = function (e) { - return this.on(t, e) - } - }), v.each(["get", "post"], function (e, n) { - v[n] = function (e, r, i, s) { - return v.isFunction(r) && (s = s || i, i = r, r = t), v.ajax({ - type: n, - url: e, - data: r, - success: i, - dataType: s - }) - } - }), v.extend({ - getScript: function (e, n) { - return v.get(e, t, n, "script") - }, - getJSON: function (e, t, n) { - return v.get(e, t, n, "json") - }, - ajaxSetup: function (e, t) { - return t ? Ln(e, v.ajaxSettings) : (t = e, e = v.ajaxSettings), Ln(e, t), e - }, - ajaxSettings: { - url: cn, - isLocal: dn.test(ln[1]), - global: !0, - type: "GET", - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - processData: !0, - async: !0, - accepts: { - xml: "application/xml, text/xml", - html: "text/html", - text: "text/plain", - json: "application/json, text/javascript", - "*": Tn - }, - contents: {xml: /xml/, html: /html/, json: /json/}, - responseFields: {xml: "responseXML", text: "responseText"}, - converters: {"* text": e.String, "text html": !0, "text json": v.parseJSON, "text xml": v.parseXML}, - flatOptions: {context: !0, url: !0} - }, - ajaxPrefilter: Cn(Sn), - ajaxTransport: Cn(xn), - ajax: function (e, n) { - function T(e, n, s, a) { - var l, y, b, w, S, T = n; - if (E === 2)return; - E = 2, u && clearTimeout(u), o = t, i = a || "", x.readyState = e > 0 ? 4 : 0, s && (w = An(c, x, s)); - if (e >= 200 && e < 300 || e === 304)c.ifModified && (S = x.getResponseHeader("Last-Modified"), S && (v.lastModified[r] = S), S = x.getResponseHeader("Etag"), S && (v.etag[r] = S)), e === 304 ? (T = "notmodified", l = !0) : (l = On(c, w), T = l.state, y = l.data, b = l.error, l = !b); else { - b = T; - if (!T || e)T = "error", e < 0 && (e = 0) - } - x.status = e, x.statusText = (n || T) + "", l ? d.resolveWith(h, [y, T, x]) : d.rejectWith(h, [x, T, b]), x.statusCode(g), g = t, f && p.trigger("ajax" + (l ? "Success" : "Error"), [x, c, l ? y : b]), m.fireWith(h, [x, T]), f && (p.trigger("ajaxComplete", [x, c]), --v.active || v.event.trigger("ajaxStop")) - } - - typeof e == "object" && (n = e, e = t), n = n || {}; - var r, i, s, o, u, a, f, l, c = v.ajaxSetup({}, n), h = c.context || c, p = h !== c && (h.nodeType || h instanceof v) ? v(h) : v.event, d = v.Deferred(), m = v.Callbacks("once memory"), g = c.statusCode || {}, b = {}, w = {}, E = 0, S = "canceled", x = { - readyState: 0, - setRequestHeader: function (e, t) { - if (!E) { - var n = e.toLowerCase(); - e = w[n] = w[n] || e, b[e] = t - } - return this - }, - getAllResponseHeaders: function () { - return E === 2 ? i : null - }, - getResponseHeader: function (e) { - var n; - if (E === 2) { - if (!s) { - s = {}; - while (n = pn.exec(i))s[n[1].toLowerCase()] = n[2] - } - n = s[e.toLowerCase()] - } - return n === t ? null : n - }, - overrideMimeType: function (e) { - return E || (c.mimeType = e), this - }, - abort: function (e) { - return e = e || S, o && o.abort(e), T(0, e), this - } - }; - d.promise(x), x.success = x.done, x.error = x.fail, x.complete = m.add, x.statusCode = function (e) { - if (e) { - var t; - if (E < 2)for (t in e)g[t] = [g[t], e[t]]; else t = e[x.status], x.always(t) - } - return this - }, c.url = ((e || c.url) + "").replace(hn, "").replace(mn, ln[1] + "//"), c.dataTypes = v.trim(c.dataType || "*").toLowerCase().split(y), c.crossDomain == null && (a = wn.exec(c.url.toLowerCase()), c.crossDomain = !(!a || a[1] === ln[1] && a[2] === ln[2] && (a[3] || (a[1] === "http:" ? 80 : 443)) == (ln[3] || (ln[1] === "http:" ? 80 : 443)))), c.data && c.processData && typeof c.data != "string" && (c.data = v.param(c.data, c.traditional)), kn(Sn, c, n, x); - if (E === 2)return x; - f = c.global, c.type = c.type.toUpperCase(), c.hasContent = !vn.test(c.type), f && v.active++ === 0 && v.event.trigger("ajaxStart"); - if (!c.hasContent) { - c.data && (c.url += (gn.test(c.url) ? "&" : "?") + c.data, delete c.data), r = c.url; - if (c.cache === !1) { - var N = v.now(), C = c.url.replace(bn, "$1_=" + N); - c.url = C + (C === c.url ? (gn.test(c.url) ? "&" : "?") + "_=" + N : "") - } - } - (c.data && c.hasContent && c.contentType !== !1 || n.contentType) && x.setRequestHeader("Content-Type", c.contentType), c.ifModified && (r = r || c.url, v.lastModified[r] && x.setRequestHeader("If-Modified-Since", v.lastModified[r]), v.etag[r] && x.setRequestHeader("If-None-Match", v.etag[r])), x.setRequestHeader("Accept", c.dataTypes[0] && c.accepts[c.dataTypes[0]] ? c.accepts[c.dataTypes[0]] + (c.dataTypes[0] !== "*" ? ", " + Tn + "; q=0.01" : "") : c.accepts["*"]); - for (l in c.headers)x.setRequestHeader(l, c.headers[l]); - if (!c.beforeSend || c.beforeSend.call(h, x, c) !== !1 && E !== 2) { - S = "abort"; - for (l in{success: 1, error: 1, complete: 1})x[l](c[l]); - o = kn(xn, c, n, x); - if (!o)T(-1, "No Transport"); else { - x.readyState = 1, f && p.trigger("ajaxSend", [x, c]), c.async && c.timeout > 0 && (u = setTimeout(function () { - x.abort("timeout") - }, c.timeout)); - try { - E = 1, o.send(b, T) - } catch (k) { - if (!(E < 2))throw k; - T(-1, k) - } - } - return x - } - return x.abort() - }, - active: 0, - lastModified: {}, - etag: {} - }); - var Mn = [], _n = /\?/, Dn = /(=)\?(?=&|$)|\?\?/, Pn = v.now(); - v.ajaxSetup({ - jsonp: "callback", jsonpCallback: function () { - var e = Mn.pop() || v.expando + "_" + Pn++; - return this[e] = !0, e - } - }), v.ajaxPrefilter("json jsonp", function (n, r, i) { - var s, o, u, a = n.data, f = n.url, l = n.jsonp !== !1, c = l && Dn.test(f), h = l && !c && typeof a == "string" && !(n.contentType || "").indexOf("application/x-www-form-urlencoded") && Dn.test(a); - if (n.dataTypes[0] === "jsonp" || c || h)return s = n.jsonpCallback = v.isFunction(n.jsonpCallback) ? n.jsonpCallback() : n.jsonpCallback, o = e[s], c ? n.url = f.replace(Dn, "$1" + s) : h ? n.data = a.replace(Dn, "$1" + s) : l && (n.url += (_n.test(f) ? "&" : "?") + n.jsonp + "=" + s), n.converters["script json"] = function () { - return u || v.error(s + " was not called"), u[0] - }, n.dataTypes[0] = "json", e[s] = function () { - u = arguments - }, i.always(function () { - e[s] = o, n[s] && (n.jsonpCallback = r.jsonpCallback, Mn.push(s)), u && v.isFunction(o) && o(u[0]), u = o = t - }), "script" - }), v.ajaxSetup({ - accepts: {script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"}, - contents: {script: /javascript|ecmascript/}, - converters: { - "text script": function (e) { - return v.globalEval(e), e - } - } - }), v.ajaxPrefilter("script", function (e) { - e.cache === t && (e.cache = !1), e.crossDomain && (e.type = "GET", e.global = !1) - }), v.ajaxTransport("script", function (e) { - if (e.crossDomain) { - var n, r = i.head || i.getElementsByTagName("head")[0] || i.documentElement; - return { - send: function (s, o) { - n = i.createElement("script"), n.async = "async", e.scriptCharset && (n.charset = e.scriptCharset), n.src = e.url, n.onload = n.onreadystatechange = function (e, i) { - if (i || !n.readyState || /loaded|complete/.test(n.readyState))n.onload = n.onreadystatechange = null, r && n.parentNode && r.removeChild(n), n = t, i || o(200, "success") - }, r.insertBefore(n, r.firstChild) - }, abort: function () { - n && n.onload(0, 1) - } - } - } - }); - var Hn, Bn = e.ActiveXObject ? function () { - for (var e in Hn)Hn[e](0, 1) - } : !1, jn = 0; - v.ajaxSettings.xhr = e.ActiveXObject ? function () { - return !this.isLocal && Fn() || In() - } : Fn, function (e) { - v.extend(v.support, {ajax: !!e, cors: !!e && "withCredentials"in e}) - }(v.ajaxSettings.xhr()), v.support.ajax && v.ajaxTransport(function (n) { - if (!n.crossDomain || v.support.cors) { - var r; - return { - send: function (i, s) { - var o, u, a = n.xhr(); - n.username ? a.open(n.type, n.url, n.async, n.username, n.password) : a.open(n.type, n.url, n.async); - if (n.xhrFields)for (u in n.xhrFields)a[u] = n.xhrFields[u]; - n.mimeType && a.overrideMimeType && a.overrideMimeType(n.mimeType), !n.crossDomain && !i["X-Requested-With"] && (i["X-Requested-With"] = "XMLHttpRequest"); - try { - for (u in i)a.setRequestHeader(u, i[u]) - } catch (f) { - } - a.send(n.hasContent && n.data || null), r = function (e, i) { - var u, f, l, c, h; - try { - if (r && (i || a.readyState === 4)) { - r = t, o && (a.onreadystatechange = v.noop, Bn && delete Hn[o]); - if (i)a.readyState !== 4 && a.abort(); else { - u = a.status, l = a.getAllResponseHeaders(), c = {}, h = a.responseXML, h && h.documentElement && (c.xml = h); - try { - c.text = a.responseText - } catch (p) { - } - try { - f = a.statusText - } catch (p) { - f = "" - } - !u && n.isLocal && !n.crossDomain ? u = c.text ? 200 : 404 : u === 1223 && (u = 204) - } - } - } catch (d) { - i || s(-1, d) - } - c && s(u, f, c, l) - }, n.async ? a.readyState === 4 ? setTimeout(r, 0) : (o = ++jn, Bn && (Hn || (Hn = {}, v(e).unload(Bn)), Hn[o] = r), a.onreadystatechange = r) : r() - }, abort: function () { - r && r(0, 1) - } - } - } - }); - var qn, Rn, Un = /^(?:toggle|show|hide)$/, zn = new RegExp("^(?:([-+])=|)(" + m + ")([a-z%]*)$", "i"), Wn = /queueHooks$/, Xn = [Gn], Vn = { - "*": [function (e, t) { - var n, r, i = this.createTween(e, t), s = zn.exec(t), o = i.cur(), u = +o || 0, a = 1, f = 20; - if (s) { - n = +s[2], r = s[3] || (v.cssNumber[e] ? "" : "px"); - if (r !== "px" && u) { - u = v.css(i.elem, e, !0) || n || 1; - do a = a || ".5", u /= a, v.style(i.elem, e, u + r); while (a !== (a = i.cur() / o) && a !== 1 && --f) - } - i.unit = r, i.start = u, i.end = s[1] ? u + (s[1] + 1) * n : n - } - return i - }] - }; - v.Animation = v.extend(Kn, { - tweener: function (e, t) { - v.isFunction(e) ? (t = e, e = ["*"]) : e = e.split(" "); - var n, r = 0, i = e.length; - for (; r < i; r++)n = e[r], Vn[n] = Vn[n] || [], Vn[n].unshift(t) - }, prefilter: function (e, t) { - t ? Xn.unshift(e) : Xn.push(e) - } - }), v.Tween = Yn, Yn.prototype = { - constructor: Yn, init: function (e, t, n, r, i, s) { - this.elem = e, this.prop = n, this.easing = i || "swing", this.options = t, this.start = this.now = this.cur(), this.end = r, this.unit = s || (v.cssNumber[n] ? "" : "px") - }, cur: function () { - var e = Yn.propHooks[this.prop]; - return e && e.get ? e.get(this) : Yn.propHooks._default.get(this) - }, run: function (e) { - var t, n = Yn.propHooks[this.prop]; - return this.options.duration ? this.pos = t = v.easing[this.easing](e, this.options.duration * e, 0, 1, this.options.duration) : this.pos = t = e, this.now = (this.end - this.start) * t + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), n && n.set ? n.set(this) : Yn.propHooks._default.set(this), this - } - }, Yn.prototype.init.prototype = Yn.prototype, Yn.propHooks = { - _default: { - get: function (e) { - var t; - return e.elem[e.prop] == null || !!e.elem.style && e.elem.style[e.prop] != null ? (t = v.css(e.elem, e.prop, !1, ""), !t || t === "auto" ? 0 : t) : e.elem[e.prop] - }, set: function (e) { - v.fx.step[e.prop] ? v.fx.step[e.prop](e) : e.elem.style && (e.elem.style[v.cssProps[e.prop]] != null || v.cssHooks[e.prop]) ? v.style(e.elem, e.prop, e.now + e.unit) : e.elem[e.prop] = e.now - } - } - }, Yn.propHooks.scrollTop = Yn.propHooks.scrollLeft = { - set: function (e) { - e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now) - } - }, v.each(["toggle", "show", "hide"], function (e, t) { - var n = v.fn[t]; - v.fn[t] = function (r, i, s) { - return r == null || typeof r == "boolean" || !e && v.isFunction(r) && v.isFunction(i) ? n.apply(this, arguments) : this.animate(Zn(t, !0), r, i, s) - } - }), v.fn.extend({ - fadeTo: function (e, t, n, r) { - return this.filter(Gt).css("opacity", 0).show().end().animate({opacity: t}, e, n, r) - }, animate: function (e, t, n, r) { - var i = v.isEmptyObject(e), s = v.speed(t, n, r), o = function () { - var t = Kn(this, v.extend({}, e), s); - i && t.stop(!0) - }; - return i || s.queue === !1 ? this.each(o) : this.queue(s.queue, o) - }, stop: function (e, n, r) { - var i = function (e) { - var t = e.stop; - delete e.stop, t(r) - }; - return typeof e != "string" && (r = n, n = e, e = t), n && e !== !1 && this.queue(e || "fx", []), this.each(function () { - var t = !0, n = e != null && e + "queueHooks", s = v.timers, o = v._data(this); - if (n)o[n] && o[n].stop && i(o[n]); else for (n in o)o[n] && o[n].stop && Wn.test(n) && i(o[n]); - for (n = s.length; n--;)s[n].elem === this && (e == null || s[n].queue === e) && (s[n].anim.stop(r), t = !1, s.splice(n, 1)); - (t || !r) && v.dequeue(this, e) - }) - } - }), v.each({ - slideDown: Zn("show"), - slideUp: Zn("hide"), - slideToggle: Zn("toggle"), - fadeIn: {opacity: "show"}, - fadeOut: {opacity: "hide"}, - fadeToggle: {opacity: "toggle"} - }, function (e, t) { - v.fn[e] = function (e, n, r) { - return this.animate(t, e, n, r) - } - }), v.speed = function (e, t, n) { - var r = e && typeof e == "object" ? v.extend({}, e) : { - complete: n || !n && t || v.isFunction(e) && e, - duration: e, - easing: n && t || t && !v.isFunction(t) && t - }; - r.duration = v.fx.off ? 0 : typeof r.duration == "number" ? r.duration : r.duration in v.fx.speeds ? v.fx.speeds[r.duration] : v.fx.speeds._default; - if (r.queue == null || r.queue === !0)r.queue = "fx"; - return r.old = r.complete, r.complete = function () { - v.isFunction(r.old) && r.old.call(this), r.queue && v.dequeue(this, r.queue) - }, r - }, v.easing = { - linear: function (e) { - return e - }, swing: function (e) { - return .5 - Math.cos(e * Math.PI) / 2 - } - }, v.timers = [], v.fx = Yn.prototype.init, v.fx.tick = function () { - var e, n = v.timers, r = 0; - qn = v.now(); - for (; r < n.length; r++)e = n[r], !e() && n[r] === e && n.splice(r--, 1); - n.length || v.fx.stop(), qn = t - }, v.fx.timer = function (e) { - e() && v.timers.push(e) && !Rn && (Rn = setInterval(v.fx.tick, v.fx.interval)) - }, v.fx.interval = 13, v.fx.stop = function () { - clearInterval(Rn), Rn = null - }, v.fx.speeds = { - slow: 600, - fast: 200, - _default: 400 - }, v.fx.step = {}, v.expr && v.expr.filters && (v.expr.filters.animated = function (e) { - return v.grep(v.timers, function (t) { - return e === t.elem - }).length - }); - var er = /^(?:body|html)$/i; - v.fn.offset = function (e) { - if (arguments.length)return e === t ? this : this.each(function (t) { - v.offset.setOffset(this, e, t) - }); - var n, r, i, s, o, u, a, f = {top: 0, left: 0}, l = this[0], c = l && l.ownerDocument; - if (!c)return; - return (r = c.body) === l ? v.offset.bodyOffset(l) : (n = c.documentElement, v.contains(n, l) ? (typeof l.getBoundingClientRect != "undefined" && (f = l.getBoundingClientRect()), i = tr(c), s = n.clientTop || r.clientTop || 0, o = n.clientLeft || r.clientLeft || 0, u = i.pageYOffset || n.scrollTop, a = i.pageXOffset || n.scrollLeft, { - top: f.top + u - s, - left: f.left + a - o - }) : f) - }, v.offset = { - bodyOffset: function (e) { - var t = e.offsetTop, n = e.offsetLeft; - return v.support.doesNotIncludeMarginInBodyOffset && (t += parseFloat(v.css(e, "marginTop")) || 0, n += parseFloat(v.css(e, "marginLeft")) || 0), { - top: t, - left: n - } - }, setOffset: function (e, t, n) { - var r = v.css(e, "position"); - r === "static" && (e.style.position = "relative"); - var i = v(e), s = i.offset(), o = v.css(e, "top"), u = v.css(e, "left"), a = (r === "absolute" || r === "fixed") && v.inArray("auto", [o, u]) > -1, f = {}, l = {}, c, h; - a ? (l = i.position(), c = l.top, h = l.left) : (c = parseFloat(o) || 0, h = parseFloat(u) || 0), v.isFunction(t) && (t = t.call(e, n, s)), t.top != null && (f.top = t.top - s.top + c), t.left != null && (f.left = t.left - s.left + h), "using"in t ? t.using.call(e, f) : i.css(f) - } - }, v.fn.extend({ - position: function () { - if (!this[0])return; - var e = this[0], t = this.offsetParent(), n = this.offset(), r = er.test(t[0].nodeName) ? { - top: 0, - left: 0 - } : t.offset(); - return n.top -= parseFloat(v.css(e, "marginTop")) || 0, n.left -= parseFloat(v.css(e, "marginLeft")) || 0, r.top += parseFloat(v.css(t[0], "borderTopWidth")) || 0, r.left += parseFloat(v.css(t[0], "borderLeftWidth")) || 0, { - top: n.top - r.top, - left: n.left - r.left - } - }, offsetParent: function () { - return this.map(function () { - var e = this.offsetParent || i.body; - while (e && !er.test(e.nodeName) && v.css(e, "position") === "static")e = e.offsetParent; - return e || i.body - }) - } - }), v.each({scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function (e, n) { - var r = /Y/.test(n); - v.fn[e] = function (i) { - return v.access(this, function (e, i, s) { - var o = tr(e); - if (s === t)return o ? n in o ? o[n] : o.document.documentElement[i] : e[i]; - o ? o.scrollTo(r ? v(o).scrollLeft() : s, r ? s : v(o).scrollTop()) : e[i] = s - }, e, i, arguments.length, null) - } - }), v.each({Height: "height", Width: "width"}, function (e, n) { - v.each({padding: "inner" + e, content: n, "": "outer" + e}, function (r, i) { - v.fn[i] = function (i, s) { - var o = arguments.length && (r || typeof i != "boolean"), u = r || (i === !0 || s === !0 ? "margin" : "border"); - return v.access(this, function (n, r, i) { - var s; - return v.isWindow(n) ? n.document.documentElement["client" + e] : n.nodeType === 9 ? (s = n.documentElement, Math.max(n.body["scroll" + e], s["scroll" + e], n.body["offset" + e], s["offset" + e], s["client" + e])) : i === t ? v.css(n, r, i, u) : v.style(n, r, i, u) - }, n, o ? i : t, o, null) - } - }) - }), e.jQuery = e.$ = v, typeof define == "function" && define.amd && define.amd.jQuery && define("jquery", [], function () { - return v - }) -})(window); \ No newline at end of file diff --git a/doc/_build/html/_static/minus.png b/doc/_build/html/_static/minus.png deleted file mode 100644 index da1c5620d10c047525a467a425abe9ff5269cfc2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-s1SHkYJtzcHoCO|{#XvD(5N2eUHAey{$X?>< z>&kweokM_|(Po{+Q=kw>iEBiObAE1aYF-J$w=>iB1I2R$WLpMkF=>bh=@O1TaS?83{1OVknK< z>&kweokM`jkU7Va11Q8%;u=xnoS&PUnpeW`?aZ|OK(QcC7sn8Z%gHvy&v=;Q4jejg zV8NnAO`-4Z@2~&zopr02WF_WB>pF diff --git a/doc/_build/html/_static/pygments.css b/doc/_build/html/_static/pygments.css deleted file mode 100644 index 9c27fe06..00000000 --- a/doc/_build/html/_static/pygments.css +++ /dev/null @@ -1,330 +0,0 @@ -.highlight .hll { - background-color: #ffffcc -} - -.highlight { - background: #eeffcc; -} - -.highlight .c { - color: #408090; - font-style: italic -} - -/* Comment */ -.highlight .err { - border: 1px solid #FF0000 -} - -/* Error */ -.highlight .k { - color: #007020; - font-weight: bold -} - -/* Keyword */ -.highlight .o { - color: #666666 -} - -/* Operator */ -.highlight .cm { - color: #408090; - font-style: italic -} - -/* Comment.Multiline */ -.highlight .cp { - color: #007020 -} - -/* Comment.Preproc */ -.highlight .c1 { - color: #408090; - font-style: italic -} - -/* Comment.Single */ -.highlight .cs { - color: #408090; - background-color: #fff0f0 -} - -/* Comment.Special */ -.highlight .gd { - color: #A00000 -} - -/* Generic.Deleted */ -.highlight .ge { - font-style: italic -} - -/* Generic.Emph */ -.highlight .gr { - color: #FF0000 -} - -/* Generic.Error */ -.highlight .gh { - color: #000080; - font-weight: bold -} - -/* Generic.Heading */ -.highlight .gi { - color: #00A000 -} - -/* Generic.Inserted */ -.highlight .go { - color: #333333 -} - -/* Generic.Output */ -.highlight .gp { - color: #c65d09; - font-weight: bold -} - -/* Generic.Prompt */ -.highlight .gs { - font-weight: bold -} - -/* Generic.Strong */ -.highlight .gu { - color: #800080; - font-weight: bold -} - -/* Generic.Subheading */ -.highlight .gt { - color: #0044DD -} - -/* Generic.Traceback */ -.highlight .kc { - color: #007020; - font-weight: bold -} - -/* Keyword.Constant */ -.highlight .kd { - color: #007020; - font-weight: bold -} - -/* Keyword.Declaration */ -.highlight .kn { - color: #007020; - font-weight: bold -} - -/* Keyword.Namespace */ -.highlight .kp { - color: #007020 -} - -/* Keyword.Pseudo */ -.highlight .kr { - color: #007020; - font-weight: bold -} - -/* Keyword.Reserved */ -.highlight .kt { - color: #902000 -} - -/* Keyword.Type */ -.highlight .m { - color: #208050 -} - -/* Literal.Number */ -.highlight .s { - color: #4070a0 -} - -/* Literal.String */ -.highlight .na { - color: #4070a0 -} - -/* Name.Attribute */ -.highlight .nb { - color: #007020 -} - -/* Name.Builtin */ -.highlight .nc { - color: #0e84b5; - font-weight: bold -} - -/* Name.Class */ -.highlight .no { - color: #60add5 -} - -/* Name.Constant */ -.highlight .nd { - color: #555555; - font-weight: bold -} - -/* Name.Decorator */ -.highlight .ni { - color: #d55537; - font-weight: bold -} - -/* Name.Entity */ -.highlight .ne { - color: #007020 -} - -/* Name.Exception */ -.highlight .nf { - color: #06287e -} - -/* Name.Function */ -.highlight .nl { - color: #002070; - font-weight: bold -} - -/* Name.Label */ -.highlight .nn { - color: #0e84b5; - font-weight: bold -} - -/* Name.Namespace */ -.highlight .nt { - color: #062873; - font-weight: bold -} - -/* Name.Tag */ -.highlight .nv { - color: #bb60d5 -} - -/* Name.Variable */ -.highlight .ow { - color: #007020; - font-weight: bold -} - -/* Operator.Word */ -.highlight .w { - color: #bbbbbb -} - -/* Text.Whitespace */ -.highlight .mf { - color: #208050 -} - -/* Literal.Number.Float */ -.highlight .mh { - color: #208050 -} - -/* Literal.Number.Hex */ -.highlight .mi { - color: #208050 -} - -/* Literal.Number.Integer */ -.highlight .mo { - color: #208050 -} - -/* Literal.Number.Oct */ -.highlight .sb { - color: #4070a0 -} - -/* Literal.String.Backtick */ -.highlight .sc { - color: #4070a0 -} - -/* Literal.String.Char */ -.highlight .sd { - color: #4070a0; - font-style: italic -} - -/* Literal.String.Doc */ -.highlight .s2 { - color: #4070a0 -} - -/* Literal.String.Double */ -.highlight .se { - color: #4070a0; - font-weight: bold -} - -/* Literal.String.Escape */ -.highlight .sh { - color: #4070a0 -} - -/* Literal.String.Heredoc */ -.highlight .si { - color: #70a0d0; - font-style: italic -} - -/* Literal.String.Interpol */ -.highlight .sx { - color: #c65d09 -} - -/* Literal.String.Other */ -.highlight .sr { - color: #235388 -} - -/* Literal.String.Regex */ -.highlight .s1 { - color: #4070a0 -} - -/* Literal.String.Single */ -.highlight .ss { - color: #517918 -} - -/* Literal.String.Symbol */ -.highlight .bp { - color: #007020 -} - -/* Name.Builtin.Pseudo */ -.highlight .vc { - color: #bb60d5 -} - -/* Name.Variable.Class */ -.highlight .vg { - color: #bb60d5 -} - -/* Name.Variable.Global */ -.highlight .vi { - color: #bb60d5 -} - -/* Name.Variable.Instance */ -.highlight .il { - color: #208050 -} - -/* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/doc/_build/html/_static/searchtools.js b/doc/_build/html/_static/searchtools.js deleted file mode 100644 index 24924dbe..00000000 --- a/doc/_build/html/_static/searchtools.js +++ /dev/null @@ -1,630 +0,0 @@ -/* - * searchtools.js_t - * ~~~~~~~~~~~~~~~~ - * - * Sphinx JavaScript utilties for the full-text search. - * - * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - - -/** - * Porter Stemmer - */ -var Stemmer = function () { - - var step2list = { - ational: 'ate', - tional: 'tion', - enci: 'ence', - anci: 'ance', - izer: 'ize', - bli: 'ble', - alli: 'al', - entli: 'ent', - eli: 'e', - ousli: 'ous', - ization: 'ize', - ation: 'ate', - ator: 'ate', - alism: 'al', - iveness: 'ive', - fulness: 'ful', - ousness: 'ous', - aliti: 'al', - iviti: 'ive', - biliti: 'ble', - logi: 'log' - }; - - var step3list = { - icate: 'ic', - ative: '', - alize: 'al', - iciti: 'ic', - ical: 'ic', - ful: '', - ness: '' - }; - - var c = "[^aeiou]"; // consonant - var v = "[aeiouy]"; // vowel - var C = c + "[^aeiouy]*"; // consonant sequence - var V = v + "[aeiou]*"; // vowel sequence - - var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 - var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 - var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 - var s_v = "^(" + C + ")?" + v; // vowel in stem - - this.stemWord = function (w) { - var stem; - var suffix; - var firstch; - var origword = w; - - if (w.length < 3) - return w; - - var re; - var re2; - var re3; - var re4; - - firstch = w.substr(0, 1); - if (firstch == "y") - w = firstch.toUpperCase() + w.substr(1); - - // Step 1a - re = /^(.+?)(ss|i)es$/; - re2 = /^(.+?)([^s])s$/; - - if (re.test(w)) - w = w.replace(re, "$1$2"); - else if (re2.test(w)) - w = w.replace(re2, "$1$2"); - - // Step 1b - re = /^(.+?)eed$/; - re2 = /^(.+?)(ed|ing)$/; - if (re.test(w)) { - var fp = re.exec(w); - re = new RegExp(mgr0); - if (re.test(fp[1])) { - re = /.$/; - w = w.replace(re, ""); - } - } - else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1]; - re2 = new RegExp(s_v); - if (re2.test(stem)) { - w = stem; - re2 = /(at|bl|iz)$/; - re3 = new RegExp("([^aeiouylsz])\\1$"); - re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - if (re2.test(w)) - w = w + "e"; - else if (re3.test(w)) { - re = /.$/; - w = w.replace(re, ""); - } - else if (re4.test(w)) - w = w + "e"; - } - } - - // Step 1c - re = /^(.+?)y$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(s_v); - if (re.test(stem)) - w = stem + "i"; - } - - // Step 2 - re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = new RegExp(mgr0); - if (re.test(stem)) - w = stem + step2list[suffix]; - } - - // Step 3 - re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = new RegExp(mgr0); - if (re.test(stem)) - w = stem + step3list[suffix]; - } - - // Step 4 - re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; - re2 = /^(.+?)(s|t)(ion)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(mgr1); - if (re.test(stem)) - w = stem; - } - else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1] + fp[2]; - re2 = new RegExp(mgr1); - if (re2.test(stem)) - w = stem; - } - - // Step 5 - re = /^(.+?)e$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(mgr1); - re2 = new RegExp(meq1); - re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) - w = stem; - } - re = /ll$/; - re2 = new RegExp(mgr1); - if (re.test(w) && re2.test(w)) { - re = /.$/; - w = w.replace(re, ""); - } - - // and turn initial Y back to y - if (firstch == "y") - w = firstch.toLowerCase() + w.substr(1); - return w; - } -} - - -/** - * Simple result scoring code. - */ -var Scorer = { - // Implement the following function to further tweak the score for each result - // The function takes a result array [filename, title, anchor, descr, score] - // and returns the new score. - /* - score: function(result) { - return result[4]; - }, - */ - - // query matches the full name of an object - objNameMatch: 11, - // or matches in the last dotted part of the object name - objPartialMatch: 6, - // Additive scores depending on the priority of the object - objPrio: { - 0: 15, // used to be importantResults - 1: 5, // used to be objectResults - 2: -5 - }, // used to be unimportantResults - // Used when the priority is not in the mapping. - objPrioDefault: 0, - - // query found in title - title: 15, - // query found in terms - term: 5 -}; - - -/** - * Search Module - */ -var Search = { - - _index: null, - _queued_query: null, - _pulse_status: -1, - - init: function () { - var params = $.getQueryParameters(); - if (params.q) { - var query = params.q[0]; - $('input[name="q"]')[0].value = query; - this.performSearch(query); - } - }, - - loadIndex: function (url) { - $.ajax({ - type: "GET", url: url, data: null, - dataType: "script", cache: true, - complete: function (jqxhr, textstatus) { - if (textstatus != "success") { - document.getElementById("searchindexloader").src = url; - } - } - }); - }, - - setIndex: function (index) { - var q; - this._index = index; - if ((q = this._queued_query) !== null) { - this._queued_query = null; - Search.query(q); - } - }, - - hasIndex: function () { - return this._index !== null; - }, - - deferQuery: function (query) { - this._queued_query = query; - }, - - stopPulse: function () { - this._pulse_status = 0; - }, - - startPulse: function () { - if (this._pulse_status >= 0) - return; - function pulse() { - var i; - Search._pulse_status = (Search._pulse_status + 1) % 4; - var dotString = ''; - for (i = 0; i < Search._pulse_status; i++) - dotString += '.'; - Search.dots.text(dotString); - if (Search._pulse_status > -1) - window.setTimeout(pulse, 500); - } - - pulse(); - }, - - /** - * perform a search for something (or wait until index is loaded) - */ - performSearch: function (query) { - // create the required interface elements - this.out = $('#search-results'); - this.title = $('

    ' + _('Searching') + '

    ').appendTo(this.out); - this.dots = $('').appendTo(this.title); - this.status = $('

    ').appendTo(this.out); - this.output = $('
    '; - - var replyTemplate = '\ -
  • \ -
    \ -
    \ - \ - \ - \ - \ - \ - \ -
    \ -
  • '; - - $(document).ready(function () { - init(); - }); -})(jQuery); - -$(document).ready(function () { - // add comment anchors for all paragraphs that are commentable - $('.sphinx-has-comment').comment(); - - // highlight search words in search results - $("div.context").each(function () { - var params = $.getQueryParameters(); - var terms = (params.q) ? params.q[0].split(/\s+/) : []; - var result = $(this); - $.each(terms, function () { - result.highlightText(this.toLowerCase(), 'highlighted'); - }); - }); - - // directly open comment window if requested - var anchor = document.location.hash; - if (anchor.substring(0, 9) == '#comment-') { - $('#ao' + anchor.substring(9)).click(); - document.location.hash = '#s' + anchor.substring(9); - } -}); diff --git a/doc/_build/html/genindex.html b/doc/_build/html/genindex.html deleted file mode 100644 index 611a47b5..00000000 --- a/doc/_build/html/genindex.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - Index — python-twitter 1.0 documentation - - - - - - - - - - - - - -
    -
    -
    -
    - - -

    Index

    - -
    - -
    - - -
    -
    -
    -
    -
    - - - - -
    -
    -
    -
    - - - - \ No newline at end of file diff --git a/doc/_build/html/index.html b/doc/_build/html/index.html deleted file mode 100644 index 5b34927a..00000000 --- a/doc/_build/html/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - Welcome to python-twitter’s documentation! — python-twitter 1.0 documentation - - - - - - - - - - - - - -
    -
    -
    -
    - -
    -

    Welcome to python-twitter’s documentation!

    - -

    A Python wrapper around the Twitter API.

    - -

    Author: The Python-Twitter Developers <python-twitter@googlegroups.com> -

    - -
    -

    Introduction

    - -

    This library provides a pure Python interface for the Twitter - API. It works with Python versions from 2.5 to 2.7. Python 3 support is under - development.

    - -

    Twitter provides a service that - allows people to connect via the web, IM, and SMS. Twitter exposes a web services API - and this library is intended to make it even easier for Python programmers to use.

    -
    -
    -

    Building

    - -

    From source:

    - -

    Install the dependencies:

    - -

    This branch is currently in development to replace the OAuth and HTTPLib2 libarays with the - following:

    - -

    Alternatively use pip:

    - -
    -
    $ pip install -r requirements.txt
    -
    -
    -
    -

    Download the latest python-twitter library from: http://code.google.com/p/python-twitter/ -

    - -

    Extract the source distribution and run:

    - -
    -
    $ python setup.py build
    -$ python setup.py install
    -
    -
    -
    -
    -
    -

    Testing

    - -

    With setuptools installed:

    - -
    -
    $ python setup.py test
    -
    -
    -
    -

    Without setuptools installed:

    - -
    -
    $ python twitter_test.py
    -
    -
    -
    -
    -
    -

    Getting the code

    - -

    The code is hosted at Github.

    - -

    Check out the latest development version anonymously with:

    - -
    -
    $ git clone git://github.com/bear/python-twitter.git
    -$ cd python-twitter
    -
    -
    -
    -
    -
      -
    -
    -
    -
    -
    -

    Indices and tables

    - -
    - - -
    -
    -
    -
    -
    -

    Table Of Contents

    - - -

    This Page

    - - - -
    -
    -
    -
    - - - - \ No newline at end of file diff --git a/doc/_build/html/objects.inv b/doc/_build/html/objects.inv deleted file mode 100644 index 1fa30d71a4858850b3c675b867091bba377ca4b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmY#Z2rkIT%&Sny%qvUHE6FdaR47X=D$dN$Q!wIERtPA{&q_@$u~I0gEXl~v(=92_ zEGbDX0?LFzR9Pt)>KOpJAsML(MX9-onRzLxMGE<83MCnt#R_SeIjIUjIypbLpeVJt zI5kC~v^X;_U7;!`Gf9uD;@0W2{wL3Pd#(-8(DU4Q%G1Z|Y~Tgc5RDaA&bE5JNS*TJ znTGa{XUnHNTcTCb)UxAJ@aGK~O`T4q4pYRItBI+mFVJe~aGc8OEW)C)Y - - - - - - - Search — python-twitter 1.0 documentation - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    - -

    Search

    - -
    - -

    - Please activate JavaScript to enable the search - functionality. -

    -
    -

    - From here you can search these documents. Enter your search - words into the box below and click "search". Note that the search - function will automatically search for all of the words. Pages - containing fewer words won't appear in the result list. -

    - -
    - - - - - -
    - -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - \ No newline at end of file diff --git a/doc/_build/html/searchindex.js b/doc/_build/html/searchindex.js deleted file mode 100644 index bbeea809..00000000 --- a/doc/_build/html/searchindex.js +++ /dev/null @@ -1,107 +0,0 @@ -Search.setIndex({ - envversion: 42, - terms: { - code: [], - replac: 0, - modul: 0, - request: 0, - download: 0, - api: 0, - connect: 0, - cheeseshop: [], - pip: 0, - instal: 0, - txt: 0, - extract: 0, - check: 0, - librari: 0, - out: 0, - even: 0, - index: 0, - oauthlib: 0, - git: 0, - from: 0, - googl: 0, - expos: 0, - author: 0, - oauth: 0, - support: 0, - develop: 0, - depend: 0, - wrapper: 0, - latest: 0, - current: 0, - web: 0, - run: 0, - version: 0, - interfac: 0, - build: [], - pure: 0, - under: 0, - test: [], - you: [], - content: [], - intend: 0, - easier: 0, - altern: 0, - simplegeo: [], - setup: 0, - sourc: 0, - http: 0, - around: 0, - get: [], - googlegroup: 0, - clone: 0, - setuptool: 0, - bear: 0, - pypi: [], - thi: 0, - host: 0, - oauth2: [], - libarai: 0, - branch: 0, - twitter_test: 0, - org: [], - along: [], - peopl: 0, - introduct: [], - search: 0, - github: 0, - via: 0, - doc: [], - servic: 0, - work: 0, - requir: 0, - dev: [], - page: 0, - provid: 0, - without: 0, - follow: 0, - allow: 0, - distribut: 0, - programm: 0, - anonym: 0, - readthedoc: [], - com: 0, - make: 0, - httplib2: 0 - }, - objtypes: {}, - objnames: {}, - filenames: ["index"], - titles: ["Welcome to python-twitter’s documentation!"], - objects: {}, - titleterms: { - code: 0, - welcom: 0, - get: 0, - python: 0, - twitter: 0, - indic: 0, - build: 0, - tabl: 0, - test: 0, - document: 0, - introduct: 0 - } -}) \ No newline at end of file From 4302c594491312c08782965dbe14cd2e0901d954 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Fri, 11 Mar 2016 18:44:42 -0500 Subject: [PATCH 211/533] merge cherry pick --- README.rst | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index 7223d2c8..8a2c83bf 100644 --- a/README.rst +++ b/README.rst @@ -58,22 +58,23 @@ Activate the virtual environment created:: ============= Running Tests ============= -Note that tests require ```pip install pytest``` and optionally ```pip install pytest-cov```: +Note that tests require ```pip install pytest``` and optionally ```pip install pytest-cov``` (these are included if you have installed dependencies from ```requirements.devel.txt``` or run ```make env-devel```) To run the unit tests:: - $ make test + $ make test to also run code coverage:: $ make coverage + ============= Documentation ============= View the latest python-twitter documentation at -https://python-twitter.readthedocs.org. You can view Twitter's API documentation at: https://dev.twitter.com/overview/documentation +https://python-twitter.readthedocs.org. You can view Twitter's API documentation at: https://dev.twitter.com/overview/documentation ===== Using @@ -103,7 +104,7 @@ The library utilizes models to represent various data structures returned by Twi * twitter.User * twitter.UserStatus -To read the documentation for any of these models, run:: +To read the documentation for any of these models, run:: $ pydoc twitter.[model] @@ -113,7 +114,7 @@ API The API is exposed via the ``twitter.Api`` class. -The python-twitter library now only supports OAuth authentication as the Twitter devs have indicated that OAuth is the only method that will be supported moving forward. +The python-twitter requires the use of OAuth keys for nearly all operations. As of Twitter's API v1.1, authentication is required for most, if not all, endpoints. Therefore, you will need to register an app with Twitter in order to use this library. Please see the "Getting Started" guide on https://python-twitter.readthedocs.org for a more information. To generate an Access Token you have to pick what type of access your application requires and then do one of the following: @@ -138,7 +139,7 @@ To see if your credentials are successful:: **NOTE**: much more than the small sample given here will print -To fetch a single user's public status messages, where ``user`` is a Twitter *short name*:: +To fetch a single user's public status messages, where ``user`` is a Twitter *short name* (i.e., a user's screen name):: >>> statuses = api.GetUserTimeline(screen_name=user) >>> print([s.text for s in statuses]) @@ -154,7 +155,14 @@ To post a Twitter status message (requires authentication):: >>> print(status.text) I love python-twitter! -There are many more API methods, to read the full API documentation:: +There are many more API methods, to read the full API documentation either +check out the documentation on `readthedocs +`_, build the documentation locally +with:: + + $ make docs + +or check out the inline documentation with:: $ pydoc twitter.Api @@ -162,9 +170,12 @@ There are many more API methods, to read the full API documentation:: Todo ---- -Patches and bug reports are `welcome `_, just please keep the style consistent with the original source. +Patches, pull requests, and bug reports are `welcome `_, just please keep the style consistent with the original source. -Add more example scripts. +In particular, having more example scripts would be a huge help. If you have +a program that uses python-twitter and would like a link in the documentation, +submit a pull request against ``twitter/doc/getting_started.rst`` and add your +program at the bottom. The twitter.Status and ``twitter.User`` classes are going to be hard to keep in sync with the API if the API changes. More of the code could probably be written with introspection. From 2e692ecb93f01499fb920dc86f925a9c589e27c2 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 20 Mar 2016 14:01:57 -0400 Subject: [PATCH 212/533] revise docs per PR #308 --- README.rst | 27 ++++++++++++++++++--------- doc/contributing.rst | 24 ++++++------------------ doc/installation.rst | 10 +++++----- doc/rate_limits.rst | 9 ++++++--- 4 files changed, 35 insertions(+), 35 deletions(-) diff --git a/README.rst b/README.rst index 8a2c83bf..7e5dd892 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ By the `Python-Twitter Developers `_ Introduction ============ -This library provides a pure Python interface for the `Twitter API `_. It works with Python versions from 2.7+ and python 3. +This library provides a pure Python interface for the `Twitter API `_. It works with Python versions from 2.7+ and Python 3. `Twitter `_ provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a `web services API `_ and this library is intended to make it even easier for Python programmers to use. @@ -47,18 +47,27 @@ Check out the latest development version anonymously with:: $ git clone git://github.com/bear/python-twitter.git $ cd python-twitter -Setup a virtual environment and install dependencies:: +To install dependencies, run either:: - $ make env-devel + $ make dev -Activate the virtual environment created:: +or:: - $ source env/bin/activate + $ pip install -r requirements.testing.txt + +To install the minimal dependencies for production use (i.e., what is installed +with ``pip install python-twitter``) run:: + + $ make env + +or:: + + $ pip install -r requirements.txt ============= Running Tests ============= -Note that tests require ```pip install pytest``` and optionally ```pip install pytest-cov``` (these are included if you have installed dependencies from ```requirements.devel.txt``` or run ```make env-devel```) +Note that tests require ```pip install pytest``` and optionally ```pip install pytest-cov``` (these are included if you have installed dependencies from ```requirements.testing.txt```) To run the unit tests:: @@ -139,17 +148,17 @@ To see if your credentials are successful:: **NOTE**: much more than the small sample given here will print -To fetch a single user's public status messages, where ``user`` is a Twitter *short name* (i.e., a user's screen name):: +To fetch a single user's public status messages, where ``user`` is a Twitter user's screen name:: >>> statuses = api.GetUserTimeline(screen_name=user) >>> print([s.text for s in statuses]) -To fetch a list a user's friends (requires authentication):: +To fetch a list a user's friends:: >>> users = api.GetFriends() >>> print([u.name for u in users]) -To post a Twitter status message (requires authentication):: +To post a Twitter status message:: >>> status = api.PostUpdate('I love python-twitter!') >>> print(status.text) diff --git a/doc/contributing.rst b/doc/contributing.rst index 7f5fd796..8f6f0874 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -11,27 +11,15 @@ Check out the latest development version anonymously with:: $ git clone git://github.com/bear/python-twitter.git $ cd python-twitter -Setting up a development environment can be handled automatically with ``make`` -or via an existing virtual enviroment. To use ``make`` type the following -commands:: +The following sections assuming that you have `pyenv +`_ installed and working on your computer. - $ make env-devel - $ . env/bin/activate +To install dependencies, run:: -The first command will create a virtual environment in the ``env/`` directory and install -the required dependencies for you. The second will activate the virtual -environment so that you can start working on the library. + $ make dev -If you would prefer to use an existing installation of virtualenvwrapper or -similar, you can install the required dependencies with:: - - $ pip install requirements.devel.txt - -or:: - - $ make deps-devel - -which will install the required dependencies for development of the library. +This will install all of the required packages for the core library, testing, +and installation. Testing ======= diff --git a/doc/installation.rst b/doc/installation.rst index 14dd3e3c..40a7d638 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -31,13 +31,13 @@ Extract the source distribution and run:: Testing ======= -Run:: +The following requires ``pip install pytest`` and ``pip install pytest-cov``. Run:: - $ python test.py + $ make test -If you would like to see coverage information and have `Nose `_ installed:: +If you would like to see coverage information:: - $ nosetests --with-coverage + $ make coverage Getting the code @@ -48,4 +48,4 @@ The code is hosted at `Github `_. Check out the latest development version anonymously with:: $ git clone git://github.com/bear/python-twitter.git -$ cd python-twitter \ No newline at end of file +$ cd python-twitter diff --git a/doc/rate_limits.rst b/doc/rate_limits.rst index ff99ba20..c6e3cf67 100644 --- a/doc/rate_limits.rst +++ b/doc/rate_limits.rst @@ -1,5 +1,8 @@ Rate Limiting ------------- +------------- + +Overview +++++++++ Twitter imposes rate limiting based either on user tokens or application tokens. Please see: `API Rate Limits @@ -66,9 +69,9 @@ pass ``sleep_on_rate_limit=True`` to your API instance. This will cause the API to raise a hard error when attempting to make call #15 above. Technical ---------- ++++++++++ -The twitter/ratelimit.py file contains the code that handles storing and +The ``twitter/ratelimit.py`` file contains the code that handles storing and checking rate limits for endpoints. Since Twitter does not send any information regarding the endpoint that you are requesting with the ``x-rate-limit-*`` headers, the endpoint is determined by some regex using the URL. From c9a365c74986419ddcb4ccfc9df6861c16437193 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Mon, 21 Mar 2016 23:27:03 -0400 Subject: [PATCH 213/533] add a requirements file for doc generation --- requirements.docs.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 requirements.docs.txt diff --git a/requirements.docs.txt b/requirements.docs.txt new file mode 100644 index 00000000..7350c296 --- /dev/null +++ b/requirements.docs.txt @@ -0,0 +1,4 @@ +future>=0.15.2 +requests>=2.9.1 +requests-oauthlib>=0.6.1 +sphinx>=1.3.6 From 568e6b858c506a965a0b188abb72e4ae06203ff9 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Mon, 21 Mar 2016 23:35:21 -0400 Subject: [PATCH 214/533] update badges --- README.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 7e5dd892..9050c1f3 100644 --- a/README.rst +++ b/README.rst @@ -8,9 +8,13 @@ By the `Python-Twitter Developers `_ :target: https://pypi.python.org/pypi/python-twitter/ :alt: Downloads -.. image:: https://travis-ci.org/bear/python-twitter.svg?branch=master - :target: https://travis-ci.org/bear/python-twitter - :alt: Travis CI +.. image:: https://readthedocs.org/projects/python-twitter/badge/?version=latest + :target: http://python-twitter.readthedocs.org/en/latest/?badge=latest + :alt: Documentation Status + +.. image:: https://circleci.com/gh/bear/python-twitter/master.svg?style=shield&circle-token=42abb9ffa9e9db463b565f2d47eb0966039bce2d + :target: https://circleci.org/gh/bear/python-twitter + :alt: Circle CI .. image:: http://codecov.io/github/bear/python-twitter/coverage.svg?branch=master :target: http://codecov.io/github/bear/python-twitter From 35104728dc220b0d82e8769a1c0794a79c83e2d0 Mon Sep 17 00:00:00 2001 From: Jeffrey Meyers Date: Wed, 23 Mar 2016 11:00:41 -0700 Subject: [PATCH 215/533] Fix documentation for order of bbox coordinates When passing coordinates to `api.GetStreamFilter` the locations parameter should specify coordinates as Longitude,Latitude pairs instead of Latitude,Longitude --- twitter/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index afa6fc23..f00f0d0d 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -3981,7 +3981,7 @@ def GetStreamFilter(self, track: A list of expressions to track. [Optional] locations: - A list of Latitude,Longitude pairs (as strings) specifying + A list of Longitude,Latitude pairs (as strings) specifying bounding boxes for the tweets' origin. [Optional] delimited: Specifies a message length. [Optional] From b774d186e353de9175ba81e5bdfe083e5c9c38b1 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 23 Mar 2016 20:46:33 -0400 Subject: [PATCH 216/533] fix up "id" kwargs. "status_id" is more common within the api, but there are a couple methods that use "id" to spec the same thing, which is confusing and inconsistent. "woeid" avoids shadowing a builtin, but is also more expressive. --- twitter/api.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index f00f0d0d..40418c98 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # -# vim: sw=2 ts=2 sts=2 # # Copyright 2007 The Python-Twitter Developers # @@ -490,9 +489,9 @@ def GetTrendsCurrent(self, exclude=None): Returns: A list with 10 entries. Each entry contains a trend. """ - return self.GetTrendsWoeid(id=1, exclude=exclude) + return self.GetTrendsWoeid(woeid=1, exclude=exclude) - def GetTrendsWoeid(self, id, exclude=None): + def GetTrendsWoeid(self, woeid, exclude=None): """Return the top 10 trending topics for a specific WOEID, if trending information is available for it. @@ -507,7 +506,7 @@ def GetTrendsWoeid(self, id, exclude=None): A list with 10 entries. Each entry contains a trend. """ url = '%s/trends/place.json' % (self.base_url) - parameters = {'id': id} + parameters = {'id': woeid} if exclude: parameters['exclude'] = exclude @@ -771,7 +770,7 @@ def GetStatus(self, return Status.NewFromJsonDict(data) def GetStatusOembed(self, - id=None, + status_id=None, url=None, maxwidth=None, hide_media=False, @@ -2810,7 +2809,7 @@ def LookupFriendship(self, def CreateFavorite(self, status=None, - id=None, + status_id=None, include_entities=True): """Favorites the specified status object or id as the authenticating user. @@ -2845,7 +2844,7 @@ def CreateFavorite(self, def DestroyFavorite(self, status=None, - id=None, + status_id=None, include_entities=True): """Un-Favorites the specified status object or id as the authenticating user. From 86142a3844f413d9ff440d70ba17c7bf85b46ae9 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 23 Mar 2016 21:05:35 -0400 Subject: [PATCH 217/533] adds documentation re change to "id" kwargs --- doc/migration_v30.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index 8eaa9a3d..d933cd58 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -4,6 +4,16 @@ Migration from v2 to v3 Changes to Existing Methods =========================== +:py:func:`twitter.api.Api.CreateFavorite` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* kwarg param has been changed to ``status_id`` from ``id`` to be consistent + with other method calls and avoid shadowing builtin function ``id``. + +:py:func:`twitter.api.Api.DestroyFavorite` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* kwarg param has been changed to ``status_id`` from ``id`` to be consistent + with other method calls and avoid shadowing builtin function ``id``. + :py:func:`twitter.api.Api.GetBlocks` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Method no longer accepts parameters ``user_id`` or ``screen_name`` as these are not honored by Twitter. The data returned will be for the authenticated user only. @@ -35,10 +45,22 @@ Changes to Existing Methods +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * No longer accepts ``cursor`` parameter. If you require granular control over the paging of the twitter.list.List members, please user twitter.api.Api.GetListMembersPaged instead. + +:py:func:`twitter.api.Api.GetStatusOembed` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Kwarg ``id`` has been changed to ``status_id`` in keeping with the rest of + the Api and to avoid shadowing a builtin. + :py:func:`twitter.api.Api.GetSearch` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Adds ``raw_query`` method. See :ref:`raw_queries` for more information. + +:py:func:`twitter.api.Api.GetTrendsWoeid` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Kwarg ``id`` has been changed to ``woeid`` in order to avoid shadowing + a builtin and be more descriptive. + :py:func:`twitter.api.Api.GetUserStream` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously. From 4428fb08cf5046c88ebfcf7602c31ae71c008188 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 23 Mar 2016 21:06:19 -0400 Subject: [PATCH 218/533] adds "docs" target to makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a4cb08c0..970b001e 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ help: @echo " env install all production dependencies" @echo " dev install all dev and production dependencies (virtualenv is assumed)" + @echo " docs build documentation" @echo " clean remove unwanted stuff" @echo " lint check style with flake8" @echo " test run tests" @@ -23,7 +24,10 @@ clean: rm -fr dist find . -name '*.pyc' -exec rm -f {} \; find . -name '*.pyo' -exec rm -f {} \; - find . -name '*~' -exec rm -f {} \; + find . -name '*~' ! -name '*.un~' -exec rm -f {} \; + +docs: + $(MAKE) -C doc html lint: flake8 twitter > violations.flake8.txt From 28703591cd9031ed87138725cdb3f51117754ece Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 27 Mar 2016 18:54:26 -0400 Subject: [PATCH 219/533] fix up a few more "id" params & add documentation for same. --- doc/migration_v30.rst | 9 +++++++++ twitter/api.py | 44 +++++++++++++++++++++---------------------- 2 files changed, 31 insertions(+), 22 deletions(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index d933cd58..acf89472 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -14,6 +14,11 @@ Changes to Existing Methods * kwarg param has been changed to ``status_id`` from ``id`` to be consistent with other method calls and avoid shadowing builtin function ``id``. +:py:func:`twitter.api.Api.DestroyStatus` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Kwarg ``id`` has been changed to ``status_id`` in keeping with the rest of + the Api and to avoid shadowing a builtin. + :py:func:`twitter.api.Api.GetBlocks` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Method no longer accepts parameters ``user_id`` or ``screen_name`` as these are not honored by Twitter. The data returned will be for the authenticated user only. @@ -45,6 +50,10 @@ Changes to Existing Methods +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * No longer accepts ``cursor`` parameter. If you require granular control over the paging of the twitter.list.List members, please user twitter.api.Api.GetListMembersPaged instead. +:py:func:`twitter.api.Api.GetStatus` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Kwarg ``id`` has been changed to ``status_id`` in keeping with the rest of + the Api and to avoid shadowing a builtin. :py:func:`twitter.api.Api.GetStatusOembed` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ diff --git a/twitter/api.py b/twitter/api.py index 40418c98..feb2f709 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -106,15 +106,15 @@ class Api(object): >>> api.GetReplies() >>> api.GetUserTimeline(user) >>> api.GetHomeTimeline() - >>> api.GetStatus(id) - >>> api.DestroyStatus(id) + >>> api.GetStatus(status_id) + >>> api.DestroyStatus(status_id) >>> api.GetFriends(user) >>> api.GetFollowers() >>> api.GetFeatured() >>> api.GetDirectMessages() >>> api.GetSentDirectMessages() >>> api.PostDirectMessage(user, text) - >>> api.DestroyDirectMessage(id) + >>> api.DestroyDirectMessage(message_id) >>> api.DestroyFriendship(user) >>> api.CreateFriendship(user) >>> api.LookupFriendship(user) @@ -722,14 +722,14 @@ def GetUserTimeline(self, return [Status.NewFromJsonDict(x) for x in data] def GetStatus(self, - id, + status_id, trim_user=False, include_my_retweet=True, include_entities=True): - """Returns a single status message, specified by the id parameter. + """Returns a single status message, specified by the status_id parameter. Args: - id: + status_id: The numeric ID of the status you are trying to retrieve. trim_user: When set to True, each tweet returned in a timeline will include @@ -753,9 +753,9 @@ def GetStatus(self, parameters = {} try: - parameters['id'] = int(id) + parameters['id'] = int(status_id) except ValueError: - raise TwitterError({'message': "'id' must be an integer."}) + raise TwitterError({'message': "'status_id' must be an integer."}) if trim_user: parameters['trim_user'] = 1 @@ -851,7 +851,7 @@ def GetStatusOembed(self, return data - def DestroyStatus(self, id, trim_user=False): + def DestroyStatus(self, status_id, trim_user=False): """Destroys the status specified by the required ID parameter. The authenticating user must be the author of the specified @@ -865,10 +865,10 @@ def DestroyStatus(self, id, trim_user=False): A twitter.Status instance representing the destroyed status message """ try: - post_data = {'id': int(id)} + post_data = {'id': int(status_id)} except ValueError: raise TwitterError({'message': "id must be an integer"}) - url = '%s/statuses/destroy/%s.json' % (self.base_url, id) + url = '%s/statuses/destroy/%s.json' % (self.base_url, status_id) if trim_user: post_data['trim_user'] = 1 @@ -2639,7 +2639,7 @@ def PostDirectMessage(self, return DirectMessage.NewFromJsonDict(data) - def DestroyDirectMessage(self, id, include_entities=True): + def DestroyDirectMessage(self, message_id, include_entities=True): """Destroys the direct message specified in the required ID parameter. The twitter.Api instance must be authenticated, and the @@ -2647,13 +2647,13 @@ def DestroyDirectMessage(self, id, include_entities=True): message. Args: - id: The id of the direct message to be destroyed + message_id: The id of the direct message to be destroyed Returns: A twitter.DirectMessage instance representing the message destroyed """ url = '%s/direct_messages/destroy.json' % self.base_url - data = {'id': id} + data = {'id': message_id} if not include_entities: data['include_entities'] = 'false' @@ -2816,7 +2816,7 @@ def CreateFavorite(self, Returns the favorite status when successful. Args: - id: + status_id: The id of the twitter status to mark as a favorite. [Optional] status: The twitter.Status object to mark as a favorite. [Optional] @@ -2828,12 +2828,12 @@ def CreateFavorite(self, """ url = '%s/favorites/create.json' % self.base_url data = {} - if id: - data['id'] = id + if status_id: + data['id'] = status_id elif status: data['id'] = status.id else: - raise TwitterError({'message': "Specify id or status"}) + raise TwitterError({'message': "Specify status_id or status"}) if not include_entities: data['include_entities'] = 'false' @@ -2851,7 +2851,7 @@ def DestroyFavorite(self, Returns the un-favorited status when successful. Args: - id: + status_id: The id of the twitter status to unmark as a favorite. [Optional] status: The twitter.Status object to unmark as a favorite. [Optional] @@ -2863,12 +2863,12 @@ def DestroyFavorite(self, """ url = '%s/favorites/destroy.json' % self.base_url data = {} - if id: - data['id'] = id + if status_id: + data['id'] = status_id elif status: data['id'] = status.id else: - raise TwitterError({'message': "Specify id or status"}) + raise TwitterError({'message': "Specify status_id or status"}) if not include_entities: data['include_entities'] = 'false' From 7dcdf61fe93fa2a65cd1555e7650021fc6f7081e Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 27 Mar 2016 19:17:41 -0400 Subject: [PATCH 220/533] changes postretweet & destroyblock to use status_id and user_id, respectively --- doc/migration_v30.rst | 13 ++++++++++--- twitter/api.py | 36 ++++++++++++++++++------------------ 2 files changed, 28 insertions(+), 21 deletions(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index acf89472..d47f63b0 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -14,9 +14,14 @@ Changes to Existing Methods * kwarg param has been changed to ``status_id`` from ``id`` to be consistent with other method calls and avoid shadowing builtin function ``id``. +:py:func:`twitter.api.Api.DestroyBlock` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Kwarg ``id`` has been changed to ``user_id`` in order to avoid shadowing + a builtin and be more descriptive. + :py:func:`twitter.api.Api.DestroyStatus` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -* Kwarg ``id`` has been changed to ``status_id`` in keeping with the rest of +* kwarg ``id`` has been changed to ``status_id`` in keeping with the rest of the Api and to avoid shadowing a builtin. :py:func:`twitter.api.Api.GetBlocks` @@ -74,10 +79,8 @@ Changes to Existing Methods +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously. - :py:func:`twitter.api.Api.LookupFriendship` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - * Method will now accept a list for either ``user_id`` or ``screen_name``. The list can contain either ints, strings, or :py:mod:`twitter.user.User` objects for either ``user_id`` or ``screen_name``. * Return value is a list of :py:mod:`twitter.user.UserStatus` objects. @@ -87,6 +90,10 @@ Changes to Existing Methods * ``media_additional_owners`` should be a list of user ids representing Twitter users that should be able to use the uploaded media in their tweets. If you pass a list of media, then **additional owners will apply to each object.** If you need more granular control, please use the UploadMedia* methods. * ``media_category``: Only for use with the AdsAPI. See https://dev.twitter.com/ads/creative/promoted-video-overview if this applies to your application. +:py:func:`twitter.api.Api.PostRetweet` ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +* Kwarg ``original_id`` has been changed to ``status_id`` in order to avoid shadowing + a builtin and be more descriptive. Deprecation =========== diff --git a/twitter/api.py b/twitter/api.py index feb2f709..590c2ab2 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -785,7 +785,7 @@ def GetStatusOembed(self, Specify tweet by the id or url parameter. Args: - id: + status_id: The numeric ID of the status you are trying to embed. url: The url of the status you are trying to embed. @@ -815,15 +815,15 @@ def GetStatusOembed(self, parameters = {} - if id is not None: + if status_id is not None: try: - parameters['id'] = int(id) + parameters['id'] = int(status_id) except ValueError: - raise TwitterError({'message': "'id' must be an integer."}) + raise TwitterError({'message': "'status_id' must be an integer."}) elif url is not None: parameters['url'] = url else: - raise TwitterError({'message': "Must specify either 'id' or 'url'"}) + raise TwitterError({'message': "Must specify either 'status_id' or 'url'"}) if maxwidth is not None: parameters['maxwidth'] = maxwidth @@ -858,7 +858,7 @@ def DestroyStatus(self, status_id, trim_user=False): status. Args: - id: + status_id: The numerical ID of the status you're trying to destroy. Returns: @@ -867,7 +867,7 @@ def DestroyStatus(self, status_id, trim_user=False): try: post_data = {'id': int(status_id)} except ValueError: - raise TwitterError({'message': "id must be an integer"}) + raise TwitterError({'message': "status_id must be an integer"}) url = '%s/statuses/destroy/%s.json' % (self.base_url, status_id) if trim_user: post_data['trim_user'] = 1 @@ -1405,11 +1405,11 @@ def PostUpdates(self, return results - def PostRetweet(self, original_id, trim_user=False): + def PostRetweet(self, status_id, trim_user=False): """Retweet a tweet with the Retweet API. Args: - original_id: + status_id: The numerical id of the tweet that will be retweeted trim_user: If True the returned payload will only contain the user IDs, @@ -1420,13 +1420,13 @@ def PostRetweet(self, original_id, trim_user=False): A twitter.Status instance representing the original tweet with retweet details embedded. """ try: - if int(original_id) <= 0: - raise TwitterError({'message': "'original_id' must be a positive number"}) + if int(status_id) <= 0: + raise TwitterError({'message': "'status_id' must be a positive number"}) except ValueError: - raise TwitterError({'message': "'original_id' must be an integer"}) + raise TwitterError({'message': "'status_id' must be an integer"}) - url = '%s/statuses/retweet/%s.json' % (self.base_url, original_id) - data = {'id': original_id} + url = '%s/statuses/retweet/%s.json' % (self.base_url, status_id) + data = {'id': status_id} if trim_user: data['trim_user'] = 'true' resp = self._RequestUrl(url, 'POST', data=data) @@ -1770,7 +1770,7 @@ def GetBlocksIDs(self, return result - def DestroyBlock(self, id, trim_user=False): + def DestroyBlock(self, user_id, trim_user=False): """Destroys the block for the user specified by the required ID parameter. @@ -1778,16 +1778,16 @@ def DestroyBlock(self, id, trim_user=False): required ID parameter. Args: - id: + user_id: The numerical ID of the user to be un-blocked. Returns: A twitter.User instance representing the un-blocked user. """ try: - post_data = {'user_id': int(id)} + post_data = {'user_id': int(user_id)} except ValueError: - raise TwitterError({'message': "id must be an integer"}) + raise TwitterError({'message': "user_id must be an integer"}) url = '%s/blocks/destroy.json' % (self.base_url) if trim_user: post_data['trim_user'] = 1 From 7968856a8c7f32622b5cc89ab7df0e7d7867b42b Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 27 Mar 2016 19:25:27 -0400 Subject: [PATCH 221/533] deletes .spec file - closes issue #310 --- python-twitter.spec | 50 --------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 python-twitter.spec diff --git a/python-twitter.spec b/python-twitter.spec deleted file mode 100644 index 989800df..00000000 --- a/python-twitter.spec +++ /dev/null @@ -1,50 +0,0 @@ -%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} - -Name: python-twitter -Version: 2.0 -Release: %{?dist} -Summary: Python Interface for Twitter API - -Group: Development/Libraries -License: Apache License 2.0 -URL: http://github.com/bear/python-twitter -Source0: http://python-twitter.googlecode.com/files/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildArch: noarch -Requires: python >= 2.6, -BuildRequires: python-setuptools - - -%description -This library provides a pure python interface for the Twitter API. - - -%prep -%setup -q - - -%build -%{__python} setup.py build - - -%install -rm -rf $RPM_BUILD_ROOT -chmod a-x README -%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -%doc README.rst CHANGES COPYING LICENSE doc/twitter.html -# For noarch packages: sitelib -%{python_sitelib}/* - - -%changelog -* Sat Mar 22 2008 Steve 'Ashcrow' Milner - 0.5-1 -- Initial package. From 073589f36e10792e5946192e1dd3781ab3a6ce43 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 7 Apr 2016 23:00:27 -0400 Subject: [PATCH 222/533] implement Incoming, Outgoing and Show Friendship calls --- twitter/api.py | 130 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index 590c2ab2..9e407cdf 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2745,6 +2745,46 @@ def DestroyFriendship(self, user_id=None, screen_name=None): return User.NewFromJsonDict(data) + def ShowFriendship(self, + source_user_id=None, + source_screen_name=None, + target_user_id=None, + target_screen_name=None): + """Returns information about the relationship between the two users. + + Args: + source_id: + The user_id of the subject user [Optional] + source_screen_name: + The screen_name of the subject user [Optional] + target_id: + The user_id of the target user [Optional] + target_screen_name: + The screen_name of the target user [Optional] + + Returns: + A Twitter Json structure. + """ + url = '%s/friendships/show.json' % self.base_url + data = {} + if source_user_id: + data['source_user_id'] = user_id + elif source_screen_name: + data['source_screen_name'] = screen_name + else: + raise TwitterError({'message': "Specify at least one of source_user_id or source_screen_name."}) + if target_user_id: + data['target_user_id'] = user_id + elif target_screen_name: + data['target_screen_name'] = screen_name + else: + raise TwitterError({'message': "Specify at least one of target_user_id or target_screen_name."}) + + resp = self._RequestUrl(url, 'GET', data=data) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + + return data + def LookupFriendship(self, user_id=None, screen_name=None): @@ -2807,6 +2847,96 @@ def LookupFriendship(self, return [UserStatus.NewFromJsonDict(x) for x in data] + def IncomingFriendship(self, + cursor=None, + stringify_ids=None): + """Returns a collection of user IDs belonging to users who have + pending request to follow the authenticated user. + + Args: + cursor: + breaks the ids into pages of no more than 5000. + stringify_ids: + returns the IDs as unicode strings. [Optional] + + Returns: + A list of user IDs + """ + url = '%s/friendships/incoming.json' % (self.base_url) + parameters = {} + if stringify_ids: + parameters['stringify_ids'] = 'true' + result = [] + + total_count = 0 + while True: + if cursor: + try: + parameters['count'] = int(cursor) + except ValueError: + raise TwitterError({'message': "cursor must be an integer"}) + break + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + result += [x for x in data['ids']] + if 'next_cursor' in data: + if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: + break + else: + cursor = data['next_cursor'] + total_count -= len(data['ids']) + if total_count < 1: + break + else: + break + + return result + + def OutgoingFriendship(self, + cursor=None, + stringify_ids=None): + """Returns a collection of user IDs for every protected user + for whom the authenticated user has a pending follow request. + + Args: + cursor: + breaks the ids into pages of no more than 5000. + stringify_ids: + returns the IDs as unicode strings. [Optional] + + Returns: + A list of user IDs + """ + url = '%s/friendships/outgoing.json' % (self.base_url) + parameters = {} + if stringify_ids: + parameters['stringify_ids'] = 'true' + result = [] + + total_count = 0 + while True: + if cursor: + try: + parameters['count'] = int(cursor) + except ValueError: + raise TwitterError({'message': "cursor must be an integer"}) + break + resp = self._RequestUrl(url, 'GET', data=parameters) + data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) + result += [x for x in data['ids']] + if 'next_cursor' in data: + if data['next_cursor'] == 0 or data['next_cursor'] == data['previous_cursor']: + break + else: + cursor = data['next_cursor'] + total_count -= len(data['ids']) + if total_count < 1: + break + else: + break + + return result + def CreateFavorite(self, status=None, status_id=None, From 2d6615f5d2a2998e79241a6747308b21c2f69534 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 7 Apr 2016 23:04:49 -0400 Subject: [PATCH 223/533] fix lint errors --- twitter/api.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index 9e407cdf..59210e9f 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2745,7 +2745,7 @@ def DestroyFriendship(self, user_id=None, screen_name=None): return User.NewFromJsonDict(data) - def ShowFriendship(self, + def ShowFriendship(self, source_user_id=None, source_screen_name=None, target_user_id=None, @@ -2768,15 +2768,15 @@ def ShowFriendship(self, url = '%s/friendships/show.json' % self.base_url data = {} if source_user_id: - data['source_user_id'] = user_id + data['source_user_id'] = source_user_id elif source_screen_name: - data['source_screen_name'] = screen_name + data['source_screen_name'] = source_screen_name else: raise TwitterError({'message': "Specify at least one of source_user_id or source_screen_name."}) if target_user_id: - data['target_user_id'] = user_id + data['target_user_id'] = target_user_id elif target_screen_name: - data['target_screen_name'] = screen_name + data['target_screen_name'] = target_screen_name else: raise TwitterError({'message': "Specify at least one of target_user_id or target_screen_name."}) From c08ef24d34c0eb6c46d567f69021088df86c1a12 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 7 Apr 2016 23:40:01 -0400 Subject: [PATCH 224/533] add PostMediaMetadata endpoint --- twitter/api.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/twitter/api.py b/twitter/api.py index 590c2ab2..f758dd14 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1057,6 +1057,28 @@ def UploadMediaSimple(self, except KeyError: raise TwitterError({'message': 'Media could not be uploaded.'}) + def PostMediaMetadata(self, + media_id, + alt_text=None): + """Provide addtional data for uploaded media. + + Args: + media_id: + ID of a previously uploaded media item. + alt_text: + Image Alternate Text. + """ + url = '%s/media/metadata/create.json' % self.upload_url + parameters = {} + + parameters['media_id'] = media_id + if alt_text: + parameters['alt_text'] = { "text": alt_text } + + resp = self._RequestUrl(url, 'POST', data=parameters) + + return resp + def UploadMediaChunked(self, media, additional_owners=None, From d2eb76c3dac0616e9f527414d3fb8d17dbffe6ef Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 7 Apr 2016 23:40:42 -0400 Subject: [PATCH 225/533] fix lint --- twitter/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/api.py b/twitter/api.py index f758dd14..2abc5dda 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -1074,7 +1074,7 @@ def PostMediaMetadata(self, parameters['media_id'] = media_id if alt_text: parameters['alt_text'] = { "text": alt_text } - + resp = self._RequestUrl(url, 'POST', data=parameters) return resp From 67575e00ad6d8941f0b5be86b775d45ac0ecff5c Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 12 Apr 2016 18:15:22 -0400 Subject: [PATCH 226/533] fixes rate limit error for /statuses/show/:id and /users/show endpoint --- tests/test_rate_limit.py | 16 ++++++++++++---- twitter/ratelimit.py | 10 +++++++--- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/tests/test_rate_limit.py b/tests/test_rate_limit.py index 5323dec9..6edd7e0c 100644 --- a/tests/test_rate_limit.py +++ b/tests/test_rate_limit.py @@ -1,15 +1,15 @@ # encoding: utf-8 +import re import sys import unittest +import warnings import twitter - -import warnings +import responses warnings.filterwarnings('ignore', category=DeprecationWarning) - -import responses +DEF_URL_RE = re.compile(r'https?://.*\.twitter.com/1\.1/.*') class ErrNull(object): @@ -60,6 +60,13 @@ def testInitializeRateLimit(self): self.assertTrue(self.api.rate_limit) self.assertTrue(self.api.sleep_on_rate_limit) + responses.add(responses.GET, url=DEF_URL_RE, body=b'{}', status=200) + try: + self.api.GetStatus(status_id=1234) + self.api.GetUser(screen_name='test') + except Exception as e: + self.fail(e) + @responses.activate def testCheckRateLimit(self): with open('testdata/ratelimit.json') as f: @@ -105,6 +112,7 @@ def setUp(self): self.api.InitializeRateLimit() self.assertTrue(self.api.rate_limit) + def tearDown(self): sys.stderr = self._stderr pass diff --git a/twitter/ratelimit.py b/twitter/ratelimit.py index e0b79c89..45a0c889 100644 --- a/twitter/ratelimit.py +++ b/twitter/ratelimit.py @@ -17,8 +17,8 @@ SAVED_SEARCHES_DESTROY_ID = ResourceEndpoint(re.compile(r'/saved_searches/destroy/\d+'), "/saved_searches/destroy/:id") SAVED_SEARCHES_SHOW_ID = ResourceEndpoint(re.compile(r'/saved_searches/show/\d+'), "/saved_searches/show/:id") STATUSES_RETWEETS_ID = ResourceEndpoint(re.compile(r'/statuses/retweets/\d+'), "/statuses/retweets/:id") -STATUSES_SHOW_ID = ResourceEndpoint(re.compile(r'/statuses/show/\d+'), "/statuses/show/:id") -USERS_SHOW_ID = ResourceEndpoint(re.compile(r'/users/show/\d+'), "/users/show/:id") +STATUSES_SHOW_ID = ResourceEndpoint(re.compile(r'/statuses/show'), "/statuses/show/:id") +USERS_SHOW_ID = ResourceEndpoint(re.compile(r'/users/show'), "/users/show/:id") USERS_SUGGESTIONS_SLUG = ResourceEndpoint(re.compile(r'/users/suggestions/\w+$'), "/users/suggestions/:slug") USERS_SUGGESTIONS_SLUG_MEMBERS = ResourceEndpoint(re.compile(r'/users/suggestions/.+/members'), "/users/suggestions/:slug/members") @@ -144,7 +144,6 @@ def set_unknown_limit(self, url, limit, remaining, reset): reset (int): Epoch time at which the rate limit window will reset. """ - endpoint = self.url_to_resource(url) resource_family = endpoint.split('/')[1] self.__dict__['resources'].update( @@ -174,6 +173,11 @@ def get_limit(self, url): family_rates = self.resources.get(resource_family).get(endpoint) except AttributeError: return EndpointRateLimit(limit=15, remaining=15, reset=0) + + if not family_rates: + self.set_unknown_limit(url, limit=15, remaining=15, reset=0) + return EndpointRateLimit(limit=15, remaining=15, reset=0) + return EndpointRateLimit(family_rates['limit'], family_rates['remaining'], family_rates['reset']) From 3005ef77c7da39d205272e15baa501c42c32b789 Mon Sep 17 00:00:00 2001 From: Chuck Logan Lim Date: Thu, 28 Apr 2016 10:50:32 +1000 Subject: [PATCH 227/533] Update all readthedocs.org to readthedocs.io Fix for issue #323. I pulled from master and typed `grep -r readthedocs.org *`. It returned 7 results and I changed all 7 of those to readthedocs.io. --- README.rst | 12 ++++++------ doc/installation.rst | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 9050c1f3..913d6397 100644 --- a/README.rst +++ b/README.rst @@ -8,8 +8,8 @@ By the `Python-Twitter Developers `_ :target: https://pypi.python.org/pypi/python-twitter/ :alt: Downloads -.. image:: https://readthedocs.org/projects/python-twitter/badge/?version=latest - :target: http://python-twitter.readthedocs.org/en/latest/?badge=latest +.. image:: https://readthedocs.io/projects/python-twitter/badge/?version=latest + :target: http://python-twitter.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status .. image:: https://circleci.com/gh/bear/python-twitter/master.svg?style=shield&circle-token=42abb9ffa9e9db463b565f2d47eb0966039bce2d @@ -87,13 +87,13 @@ Documentation ============= View the latest python-twitter documentation at -https://python-twitter.readthedocs.org. You can view Twitter's API documentation at: https://dev.twitter.com/overview/documentation +https://python-twitter.readthedocs.io. You can view Twitter's API documentation at: https://dev.twitter.com/overview/documentation ===== Using ===== -The library provides a Python wrapper around the Twitter API and the Twitter data model. To get started, check out the examples in the examples/ folder or read the documentation at https://python-twitter.readthedocs.org which contains information about getting your authentication keys from Twitter and using the library. +The library provides a Python wrapper around the Twitter API and the Twitter data model. To get started, check out the examples in the examples/ folder or read the documentation at https://python-twitter.readthedocs.io which contains information about getting your authentication keys from Twitter and using the library. ---- Using with Django @@ -127,7 +127,7 @@ API The API is exposed via the ``twitter.Api`` class. -The python-twitter requires the use of OAuth keys for nearly all operations. As of Twitter's API v1.1, authentication is required for most, if not all, endpoints. Therefore, you will need to register an app with Twitter in order to use this library. Please see the "Getting Started" guide on https://python-twitter.readthedocs.org for a more information. +The python-twitter requires the use of OAuth keys for nearly all operations. As of Twitter's API v1.1, authentication is required for most, if not all, endpoints. Therefore, you will need to register an app with Twitter in order to use this library. Please see the "Getting Started" guide on https://python-twitter.readthedocs.io for a more information. To generate an Access Token you have to pick what type of access your application requires and then do one of the following: @@ -170,7 +170,7 @@ To post a Twitter status message:: There are many more API methods, to read the full API documentation either check out the documentation on `readthedocs -`_, build the documentation locally +`_, build the documentation locally with:: $ make docs diff --git a/doc/installation.rst b/doc/installation.rst index 40a7d638..2e64eb6b 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -14,7 +14,7 @@ Installation Install the dependencies: - `Requests `_ -- `Requests OAuthlib `_ +- `Requests OAuthlib `_ Alternatively use `pip`:: From ea77ccc63cef50be094fe71051d6263984e6f852 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 27 Apr 2016 23:08:21 -0400 Subject: [PATCH 228/533] fix badge URLs for CircleCI and ReadtheDocs --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 913d6397..40bd65ba 100644 --- a/README.rst +++ b/README.rst @@ -8,12 +8,12 @@ By the `Python-Twitter Developers `_ :target: https://pypi.python.org/pypi/python-twitter/ :alt: Downloads -.. image:: https://readthedocs.io/projects/python-twitter/badge/?version=latest - :target: http://python-twitter.readthedocs.io/en/latest/?badge=latest +.. image:: https://readthedocs.org/projects/python-twitter/badge/?version=latest + :target: http://python-twitter.readthedocs.org/en/latest/?badge=latest :alt: Documentation Status -.. image:: https://circleci.com/gh/bear/python-twitter/master.svg?style=shield&circle-token=42abb9ffa9e9db463b565f2d47eb0966039bce2d - :target: https://circleci.org/gh/bear/python-twitter +.. image:: https://circleci.com/gh/bear/python-twitter.svg?style=svg + :target: https://circleci.com/gh/bear/python-twitter :alt: Circle CI .. image:: http://codecov.io/github/bear/python-twitter/coverage.svg?branch=master From 53f2e3114ace4e61d710d20acbd7da33a94189c2 Mon Sep 17 00:00:00 2001 From: brucIDM Date: Fri, 29 Apr 2016 22:33:53 +0800 Subject: [PATCH 229/533] modified the code of the function _Encode(self,s) at line 4373 in twitter/api.py to fix the TypeError discribed in issure 327, after modified, the TypeError doesn't apear --- tweet.py | 149 ++++++++++++++++++++++++++++++++++++++++++++ twitter-to-xhtml.py | 93 +++++++++++++++++++++++++++ twitter/api.py | 2 +- 3 files changed, 243 insertions(+), 1 deletion(-) create mode 100755 tweet.py create mode 100644 twitter-to-xhtml.py diff --git a/tweet.py b/tweet.py new file mode 100755 index 00000000..746d35d0 --- /dev/null +++ b/tweet.py @@ -0,0 +1,149 @@ +#!/usr/bin/env python + +'''Post a message to twitter''' + +__author__ = 'dewitt@google.com' + +import ConfigParser +import getopt +import os +import sys +import twitter + + +USAGE = '''Usage: tweet [options] message + + This script posts a message to Twitter. + + Options: + + -h --help : print this help + --consumer-key : the twitter consumer key + --consumer-secret : the twitter consumer secret + --access-key : the twitter access token key + --access-secret : the twitter access token secret + --encoding : the character set encoding used in input strings, e.g. "utf-8". [optional] + + Documentation: + + If either of the command line flags are not present, the environment + variables TWEETUSERNAME and TWEETPASSWORD will then be checked for your + consumer_key or consumer_secret, respectively. + + If neither the command line flags nor the environment variables are + present, the .tweetrc file, if it exists, can be used to set the + default consumer_key and consumer_secret. The file should contain the + following three lines, replacing *consumer_key* with your consumer key, and + *consumer_secret* with your consumer secret: + + A skeletal .tweetrc file: + + [Tweet] + consumer_key: *consumer_key* + consumer_secret: *consumer_password* + access_key: *access_key* + access_secret: *access_password* + +''' + + +def PrintUsageAndExit(): + print USAGE + sys.exit(2) + + +def GetConsumerKeyEnv(): + return os.environ.get("TWEETUSERNAME", None) + + +def GetConsumerSecretEnv(): + return os.environ.get("TWEETPASSWORD", None) + + +def GetAccessKeyEnv(): + return os.environ.get("TWEETACCESSKEY", None) + + +def GetAccessSecretEnv(): + return os.environ.get("TWEETACCESSSECRET", None) + + +class TweetRc(object): + def __init__(self): + self._config = None + + def GetConsumerKey(self): + return self._GetOption('consumer_key') + + def GetConsumerSecret(self): + return self._GetOption('consumer_secret') + + def GetAccessKey(self): + return self._GetOption('access_key') + + def GetAccessSecret(self): + return self._GetOption('access_secret') + + def _GetOption(self, option): + try: + return self._GetConfig().get('Tweet', option) + except: + return None + + def _GetConfig(self): + if not self._config: + self._config = ConfigParser.ConfigParser() + self._config.read(os.path.expanduser('~/.tweetrc')) + return self._config + + +def main(): + try: + shortflags = 'h' + longflags = ['help', 'consumer-key=', 'consumer-secret=', + 'access-key=', 'access-secret=', 'encoding='] + opts, args = getopt.gnu_getopt(sys.argv[1:], shortflags, longflags) + except getopt.GetoptError: + PrintUsageAndExit() + consumer_keyflag = None + consumer_secretflag = None + access_keyflag = None + access_secretflag = None + encoding = None + for o, a in opts: + if o in ("-h", "--help"): + PrintUsageAndExit() + if o in ("--consumer-key"): + consumer_keyflag = a + if o in ("--consumer-secret"): + consumer_secretflag = a + if o in ("--access-key"): + access_keyflag = a + if o in ("--access-secret"): + access_secretflag = a + if o in ("--encoding"): + encoding = a + message = ' '.join(args) + if not message: + PrintUsageAndExit() + rc = TweetRc() + consumer_key = consumer_keyflag or GetConsumerKeyEnv() or rc.GetConsumerKey() + consumer_secret = consumer_secretflag or GetConsumerSecretEnv() or rc.GetConsumerSecret() + access_key = access_keyflag or GetAccessKeyEnv() or rc.GetAccessKey() + access_secret = access_secretflag or GetAccessSecretEnv() or rc.GetAccessSecret() + if not consumer_key or not consumer_secret or not access_key or not access_secret: + PrintUsageAndExit() + api = twitter.Api(consumer_key=consumer_key, consumer_secret=consumer_secret, + access_token_key=access_key, access_token_secret=access_secret, + input_encoding=encoding) + try: + status = api.PostUpdate(message) + except UnicodeDecodeError: + print "Your message could not be encoded. Perhaps it contains non-ASCII characters? " + print "Try explicitly specifying the encoding with the --encoding flag" + sys.exit(2) + print "%s just posted: %s" % (status.user.name, status.text) + + +if __name__ == "__main__": + main() diff --git a/twitter-to-xhtml.py b/twitter-to-xhtml.py new file mode 100644 index 00000000..685fef8a --- /dev/null +++ b/twitter-to-xhtml.py @@ -0,0 +1,93 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# =================================================================== +# FileName: twitter-to-xhtml.py +# Email: brucvv@gmail.com +# CreateTime: 2016-04-29 18:45 +# =================================================================== + + +'''Load the latest update for a Twitter user and leave it in an XHTML fragment''' + +__author__ = 'dewitt@google.com' + +import codecs +import getopt +import sys +import twitter + +TEMPLATE = """ + +""" + + +def Usage(): + print 'Usage: %s [options] twitterid' % __file__ + print + print ' This script fetches a users latest twitter update and stores' + print ' the result in a file as an XHTML fragment' + print + print ' Options:' + print ' --help -h : print this help' + print ' --output : the output file [default: stdout]' + + +def FetchTwitter(user, output): + assert user + encoding = 'utf-8' + import tweet + rc = tweet.TweetRc() + consumer_key = rc.GetConsumerKey() + consumer_secret = rc.GetConsumerSecret() + access_key = rc.GetAccessKey() + access_secret = rc.GetAccessSecret() + if not consumer_key or not consumer_secret or not access_key or not access_secret: + print("mising oAuth key or secret") + api = twitter.Api(consumer_key=consumer_key, consumer_secret=consumer_secret, + access_token_key=access_key, access_token_secret=access_secret, + input_encoding=encoding) + + statuses = api.GetUserTimeline(user_id=user, count=1) + s = statuses[0] + print(statuses) + xhtml = TEMPLATE % (s.user.screen_name, s.text, s.user.screen_name, s.id, s.relative_created_at) + if output: + Save(xhtml, output) + else: + print xhtml + + +def Save(xhtml, output): + out = codecs.open(output, mode='w', encoding='ascii', + errors='xmlcharrefreplace') + out.write(xhtml) + out.close() + + +def main(): + try: + opts, args = getopt.gnu_getopt(sys.argv[1:], 'ho', ['help', 'output=']) + except getopt.GetoptError: + Usage() + sys.exit(2) + try: + user = args[0] + except: + Usage() + sys.exit(2) + output = None + for o, a in opts: + if o in ("-h", "--help"): + Usage() + sys.exit(2) + if o in ("-o", "--output"): + output = a + FetchTwitter(user, output) + + +if __name__ == "__main__": + main() diff --git a/twitter/api.py b/twitter/api.py index 59210e9f..1fdfa644 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -4370,7 +4370,7 @@ def _DecompressGzippedResponse(self, response): def _Encode(self, s): if self._input_encoding: - return str(s, self._input_encoding).encode('utf-8') + return str(s).encode(self._input_encoding) else: return str(s).encode('utf-8') From 240dd003f06b18eb23500efe5c07b832bffe094a Mon Sep 17 00:00:00 2001 From: brucIDM Date: Fri, 29 Apr 2016 23:04:42 +0800 Subject: [PATCH 230/533] remove the file pushed in last wrong push --- tweet.py | 149 -------------------------------------------- twitter-to-xhtml.py | 93 --------------------------- 2 files changed, 242 deletions(-) delete mode 100755 tweet.py delete mode 100644 twitter-to-xhtml.py diff --git a/tweet.py b/tweet.py deleted file mode 100755 index 746d35d0..00000000 --- a/tweet.py +++ /dev/null @@ -1,149 +0,0 @@ -#!/usr/bin/env python - -'''Post a message to twitter''' - -__author__ = 'dewitt@google.com' - -import ConfigParser -import getopt -import os -import sys -import twitter - - -USAGE = '''Usage: tweet [options] message - - This script posts a message to Twitter. - - Options: - - -h --help : print this help - --consumer-key : the twitter consumer key - --consumer-secret : the twitter consumer secret - --access-key : the twitter access token key - --access-secret : the twitter access token secret - --encoding : the character set encoding used in input strings, e.g. "utf-8". [optional] - - Documentation: - - If either of the command line flags are not present, the environment - variables TWEETUSERNAME and TWEETPASSWORD will then be checked for your - consumer_key or consumer_secret, respectively. - - If neither the command line flags nor the environment variables are - present, the .tweetrc file, if it exists, can be used to set the - default consumer_key and consumer_secret. The file should contain the - following three lines, replacing *consumer_key* with your consumer key, and - *consumer_secret* with your consumer secret: - - A skeletal .tweetrc file: - - [Tweet] - consumer_key: *consumer_key* - consumer_secret: *consumer_password* - access_key: *access_key* - access_secret: *access_password* - -''' - - -def PrintUsageAndExit(): - print USAGE - sys.exit(2) - - -def GetConsumerKeyEnv(): - return os.environ.get("TWEETUSERNAME", None) - - -def GetConsumerSecretEnv(): - return os.environ.get("TWEETPASSWORD", None) - - -def GetAccessKeyEnv(): - return os.environ.get("TWEETACCESSKEY", None) - - -def GetAccessSecretEnv(): - return os.environ.get("TWEETACCESSSECRET", None) - - -class TweetRc(object): - def __init__(self): - self._config = None - - def GetConsumerKey(self): - return self._GetOption('consumer_key') - - def GetConsumerSecret(self): - return self._GetOption('consumer_secret') - - def GetAccessKey(self): - return self._GetOption('access_key') - - def GetAccessSecret(self): - return self._GetOption('access_secret') - - def _GetOption(self, option): - try: - return self._GetConfig().get('Tweet', option) - except: - return None - - def _GetConfig(self): - if not self._config: - self._config = ConfigParser.ConfigParser() - self._config.read(os.path.expanduser('~/.tweetrc')) - return self._config - - -def main(): - try: - shortflags = 'h' - longflags = ['help', 'consumer-key=', 'consumer-secret=', - 'access-key=', 'access-secret=', 'encoding='] - opts, args = getopt.gnu_getopt(sys.argv[1:], shortflags, longflags) - except getopt.GetoptError: - PrintUsageAndExit() - consumer_keyflag = None - consumer_secretflag = None - access_keyflag = None - access_secretflag = None - encoding = None - for o, a in opts: - if o in ("-h", "--help"): - PrintUsageAndExit() - if o in ("--consumer-key"): - consumer_keyflag = a - if o in ("--consumer-secret"): - consumer_secretflag = a - if o in ("--access-key"): - access_keyflag = a - if o in ("--access-secret"): - access_secretflag = a - if o in ("--encoding"): - encoding = a - message = ' '.join(args) - if not message: - PrintUsageAndExit() - rc = TweetRc() - consumer_key = consumer_keyflag or GetConsumerKeyEnv() or rc.GetConsumerKey() - consumer_secret = consumer_secretflag or GetConsumerSecretEnv() or rc.GetConsumerSecret() - access_key = access_keyflag or GetAccessKeyEnv() or rc.GetAccessKey() - access_secret = access_secretflag or GetAccessSecretEnv() or rc.GetAccessSecret() - if not consumer_key or not consumer_secret or not access_key or not access_secret: - PrintUsageAndExit() - api = twitter.Api(consumer_key=consumer_key, consumer_secret=consumer_secret, - access_token_key=access_key, access_token_secret=access_secret, - input_encoding=encoding) - try: - status = api.PostUpdate(message) - except UnicodeDecodeError: - print "Your message could not be encoded. Perhaps it contains non-ASCII characters? " - print "Try explicitly specifying the encoding with the --encoding flag" - sys.exit(2) - print "%s just posted: %s" % (status.user.name, status.text) - - -if __name__ == "__main__": - main() diff --git a/twitter-to-xhtml.py b/twitter-to-xhtml.py deleted file mode 100644 index 685fef8a..00000000 --- a/twitter-to-xhtml.py +++ /dev/null @@ -1,93 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -# =================================================================== -# FileName: twitter-to-xhtml.py -# Email: brucvv@gmail.com -# CreateTime: 2016-04-29 18:45 -# =================================================================== - - -'''Load the latest update for a Twitter user and leave it in an XHTML fragment''' - -__author__ = 'dewitt@google.com' - -import codecs -import getopt -import sys -import twitter - -TEMPLATE = """ - -""" - - -def Usage(): - print 'Usage: %s [options] twitterid' % __file__ - print - print ' This script fetches a users latest twitter update and stores' - print ' the result in a file as an XHTML fragment' - print - print ' Options:' - print ' --help -h : print this help' - print ' --output : the output file [default: stdout]' - - -def FetchTwitter(user, output): - assert user - encoding = 'utf-8' - import tweet - rc = tweet.TweetRc() - consumer_key = rc.GetConsumerKey() - consumer_secret = rc.GetConsumerSecret() - access_key = rc.GetAccessKey() - access_secret = rc.GetAccessSecret() - if not consumer_key or not consumer_secret or not access_key or not access_secret: - print("mising oAuth key or secret") - api = twitter.Api(consumer_key=consumer_key, consumer_secret=consumer_secret, - access_token_key=access_key, access_token_secret=access_secret, - input_encoding=encoding) - - statuses = api.GetUserTimeline(user_id=user, count=1) - s = statuses[0] - print(statuses) - xhtml = TEMPLATE % (s.user.screen_name, s.text, s.user.screen_name, s.id, s.relative_created_at) - if output: - Save(xhtml, output) - else: - print xhtml - - -def Save(xhtml, output): - out = codecs.open(output, mode='w', encoding='ascii', - errors='xmlcharrefreplace') - out.write(xhtml) - out.close() - - -def main(): - try: - opts, args = getopt.gnu_getopt(sys.argv[1:], 'ho', ['help', 'output=']) - except getopt.GetoptError: - Usage() - sys.exit(2) - try: - user = args[0] - except: - Usage() - sys.exit(2) - output = None - for o, a in opts: - if o in ("-h", "--help"): - Usage() - sys.exit(2) - if o in ("-o", "--output"): - output = a - FetchTwitter(user, output) - - -if __name__ == "__main__": - main() From df5f3e82acd8482ce8d0f082d87e91b2d217f5cd Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Tue, 12 Apr 2016 18:43:23 -0400 Subject: [PATCH 231/533] Better unicode support across API. Model repr functions should work for py27 (using backslash escaped strings in JSON representation and in __repr__ methods). Also fixed an issue with API not encoding parameters properly for building URLs. --- Makefile | 7 +- pytest.ini | 6 +- setup.cfg | 2 +- testdata/get_trends_current_unicode.json | 1 + tests/test_models.py | 60 +++++++++---- tests/test_unicode.py | 106 +++++++++++++++++++++++ tox.ini | 9 ++ twitter/api.py | 29 +------ twitter/models.py | 23 ++--- 9 files changed, 189 insertions(+), 54 deletions(-) create mode 100644 testdata/get_trends_current_unicode.json create mode 100644 tests/test_unicode.py create mode 100644 tox.ini diff --git a/Makefile b/Makefile index 970b001e..56952824 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,6 @@ + + help: @echo " env install all production dependencies" @echo " dev install all dev and production dependencies (virtualenv is assumed)" @@ -8,6 +10,9 @@ help: @echo " test run tests" @echo " coverage run tests with code coverage" +tox: + export PYENV_VERSION="2.7:3.5.1:pypy-5.0.0" && tox + env: pip install -r requirements.txt @@ -32,7 +37,7 @@ docs: lint: flake8 twitter > violations.flake8.txt -test: lint +test: python setup.py test coverage: clean test diff --git a/pytest.ini b/pytest.ini index 5a651cd2..10e0b3b5 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,2 +1,6 @@ [pytest] -norecursedirs = venv +norecursedirs= + venv + */python?.?/* + */site-packages/* + .tox/* diff --git a/setup.cfg b/setup.cfg index 7b6cf9cb..35d917c3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,4 +8,4 @@ ignore = violations.flake8.txt [flake8] -ignore = E111,E124,E126,E201,E202,E221,E241,E302,E501 \ No newline at end of file +ignore = E111,E124,E126,E201,E202,E221,E241,E302,E501 diff --git a/testdata/get_trends_current_unicode.json b/testdata/get_trends_current_unicode.json new file mode 100644 index 00000000..5ac04ee1 --- /dev/null +++ b/testdata/get_trends_current_unicode.json @@ -0,0 +1 @@ +[{"created_at": "2016-04-12T02:06:56Z", "locations": [{"woeid": 1, "name": "Worldwide"}], "as_of": "2016-04-12T02:11:22Z", "trends": [{"query": "%23LiberdadeLiberdade", "name": "#LiberdadeLiberdade", "promoted_content": null, "url": "http://twitter.com/search?q=%23LiberdadeLiberdade", "tweet_volume": 23755}, {"query": "%23EducandoANina", "name": "#EducandoANina", "promoted_content": null, "url": "http://twitter.com/search?q=%23EducandoANina", "tweet_volume": 22531}, {"query": "%23LHHATL", "name": "#LHHATL", "promoted_content": null, "url": "http://twitter.com/search?q=%23LHHATL", "tweet_volume": 100256}, {"query": "%23ReapareceCFK", "name": "#ReapareceCFK", "promoted_content": null, "url": "http://twitter.com/search?q=%23ReapareceCFK", "tweet_volume": 99254}, {"query": "%23LuanACaixa", "name": "#LuanACaixa", "promoted_content": null, "url": "http://twitter.com/search?q=%23LuanACaixa", "tweet_volume": 128806}, {"query": "%22THANK+YOU+ARDEN%22", "name": "THANK YOU ARDEN", "promoted_content": null, "url": "http://twitter.com/search?q=%22THANK+YOU+ARDEN%22", "tweet_volume": 53636}, {"query": "Tommie", "name": "Tommie", "promoted_content": null, "url": "http://twitter.com/search?q=Tommie", "tweet_volume": 36338}, {"query": "Temer", "name": "Temer", "promoted_content": null, "url": "http://twitter.com/search?q=Temer", "tweet_volume": 103566}, {"query": "%22Josh+Gordon%22", "name": "Josh Gordon", "promoted_content": null, "url": "http://twitter.com/search?q=%22Josh+Gordon%22", "tweet_volume": 56436}, {"query": "%22Roberto+Jefferson%22", "name": "Roberto Jefferson", "promoted_content": null, "url": "http://twitter.com/search?q=%22Roberto+Jefferson%22", "tweet_volume": null}, {"query": "Cesaro", "name": "Cesaro", "promoted_content": null, "url": "http://twitter.com/search?q=Cesaro", "tweet_volume": 12000}, {"query": "%22Josh+Jackson%22", "name": "Josh Jackson", "promoted_content": null, "url": "http://twitter.com/search?q=%22Josh+Jackson%22", "tweet_volume": 15524}, {"query": "%22Esteban+Lamothe%22", "name": "Esteban Lamothe", "promoted_content": null, "url": "http://twitter.com/search?q=%22Esteban+Lamothe%22", "tweet_volume": null}, {"query": "%22LUCERO+CANTA+NO+BRASIL%22", "name": "LUCERO CANTA NO BRASIL", "promoted_content": null, "url": "http://twitter.com/search?q=%22LUCERO+CANTA+NO+BRASIL%22", "tweet_volume": 35999}, {"query": "Poncho", "name": "Poncho", "promoted_content": null, "url": "http://twitter.com/search?q=Poncho", "tweet_volume": 29235}, {"query": "%23VelhoChico", "name": "#VelhoChico", "promoted_content": null, "url": "http://twitter.com/search?q=%23VelhoChico", "tweet_volume": 14674}, {"query": "%23DWTS", "name": "#DWTS", "promoted_content": null, "url": "http://twitter.com/search?q=%23DWTS", "tweet_volume": 28444}, {"query": "%23MiMejorMomento", "name": "#MiMejorMomento", "promoted_content": null, "url": "http://twitter.com/search?q=%23MiMejorMomento", "tweet_volume": 11922}, {"query": "%23N%C3%A3oD%C3%AAUnfTagueirosSdv", "name": "#N\u00e3oD\u00eaUnfTagueirosSdv", "promoted_content": null, "url": "http://twitter.com/search?q=%23N%C3%A3oD%C3%AAUnfTagueirosSdv", "tweet_volume": 16014}, {"query": "%23BlackInkCrew", "name": "#BlackInkCrew", "promoted_content": null, "url": "http://twitter.com/search?q=%23BlackInkCrew", "tweet_volume": 13828}, {"query": "%23BulletClub", "name": "#BulletClub", "promoted_content": null, "url": "http://twitter.com/search?q=%23BulletClub", "tweet_volume": null}, {"query": "%23VzlaApoyaALaAN", "name": "#VzlaApoyaALaAN", "promoted_content": null, "url": "http://twitter.com/search?q=%23VzlaApoyaALaAN", "tweet_volume": 26402}, {"query": "%23WelcomeToBrazilPurposeTour", "name": "#WelcomeToBrazilPurposeTour", "promoted_content": null, "url": "http://twitter.com/search?q=%23WelcomeToBrazilPurposeTour", "tweet_volume": 11638}, {"query": "%23RAWCL", "name": "#RAWCL", "promoted_content": null, "url": "http://twitter.com/search?q=%23RAWCL", "tweet_volume": null}, {"query": "%23MemesDeEx", "name": "#MemesDeEx", "promoted_content": null, "url": "http://twitter.com/search?q=%23MemesDeEx", "tweet_volume": null}, {"query": "%23HereIAm", "name": "#HereIAm", "promoted_content": null, "url": "http://twitter.com/search?q=%23HereIAm", "tweet_volume": null}, {"query": "%23VoicePlayoffs", "name": "#VoicePlayoffs", "promoted_content": null, "url": "http://twitter.com/search?q=%23VoicePlayoffs", "tweet_volume": 26373}, {"query": "%23%D8%A7%D9%82%D9%88%D9%8A_%D8%B9%D8%A8%D8%A7%D8%B1%D9%87_%D8%B1%D9%88%D9%85%D8%A7%D9%86%D8%B3%D9%8A%D9%87", "name": "#\u0627\u0642\u0648\u064a_\u0639\u0628\u0627\u0631\u0647_\u0631\u0648\u0645\u0627\u0646\u0633\u064a\u0647", "promoted_content": null, "url": "http://twitter.com/search?q=%23%D8%A7%D9%82%D9%88%D9%8A_%D8%B9%D8%A8%D8%A7%D8%B1%D9%87_%D8%B1%D9%88%D9%85%D8%A7%D9%86%D8%B3%D9%8A%D9%87", "tweet_volume": 36470}, {"query": "%23SouthernCharm", "name": "#SouthernCharm", "promoted_content": null, "url": "http://twitter.com/search?q=%23SouthernCharm", "tweet_volume": null}, {"query": "%23JackieRobinsonPBS", "name": "#JackieRobinsonPBS", "promoted_content": null, "url": "http://twitter.com/search?q=%23JackieRobinsonPBS", "tweet_volume": null}, {"query": "%23Gotham", "name": "#Gotham", "promoted_content": null, "url": "http://twitter.com/search?q=%23Gotham", "tweet_volume": 16606}, {"query": "%23%D8%AA%D8%B9%D9%84%D9%8A%D9%82_%D8%A7%D9%84%D8%AF%D8%B1%D8%A7%D8%B3%D9%87", "name": "#\u062a\u0639\u0644\u064a\u0642_\u0627\u0644\u062f\u0631\u0627\u0633\u0647", "promoted_content": null, "url": "http://twitter.com/search?q=%23%D8%AA%D8%B9%D9%84%D9%8A%D9%82_%D8%A7%D9%84%D8%AF%D8%B1%D8%A7%D8%B3%D9%87", "tweet_volume": 52968}, {"query": "%23AhoraElPuntoEs", "name": "#AhoraElPuntoEs", "promoted_content": null, "url": "http://twitter.com/search?q=%23AhoraElPuntoEs", "tweet_volume": 13352}, {"query": "%23TopDanceCasting2", "name": "#TopDanceCasting2", "promoted_content": null, "url": "http://twitter.com/search?q=%23TopDanceCasting2", "tweet_volume": 20494}, {"query": "%23isola", "name": "#isola", "promoted_content": null, "url": "http://twitter.com/search?q=%23isola", "tweet_volume": 80890}, {"query": "%23Supergirl", "name": "#Supergirl", "promoted_content": null, "url": "http://twitter.com/search?q=%23Supergirl", "tweet_volume": 16096}, {"query": "%23BatesMotel", "name": "#BatesMotel", "promoted_content": null, "url": "http://twitter.com/search?q=%23BatesMotel", "tweet_volume": null}, {"query": "%23JaneTheVirgin", "name": "#JaneTheVirgin", "promoted_content": null, "url": "http://twitter.com/search?q=%23JaneTheVirgin", "tweet_volume": null}, {"query": "%23%D9%86%D9%81%D8%B3%D9%83_%D8%AA%D8%A8%D9%8A%D8%B9_%D8%A7%D9%8A%D9%87_%D9%84%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D9%87", "name": "#\u0646\u0641\u0633\u0643_\u062a\u0628\u064a\u0639_\u0627\u064a\u0647_\u0644\u0644\u0633\u0639\u0648\u062f\u064a\u0647", "promoted_content": null, "url": "http://twitter.com/search?q=%23%D9%86%D9%81%D8%B3%D9%83_%D8%AA%D8%A8%D9%8A%D8%B9_%D8%A7%D9%8A%D9%87_%D9%84%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D9%87", "tweet_volume": null}, {"query": "%23AnaPaulaNoMissEMisses", "name": "#AnaPaulaNoMissEMisses", "promoted_content": null, "url": "http://twitter.com/search?q=%23AnaPaulaNoMissEMisses", "tweet_volume": 43926}, {"query": "%23LasMemoriasDeMoises", "name": "#LasMemoriasDeMoises", "promoted_content": null, "url": "http://twitter.com/search?q=%23LasMemoriasDeMoises", "tweet_volume": null}, {"query": "%23YoTengoWaveVIP", "name": "#YoTengoWaveVIP", "promoted_content": null, "url": "http://twitter.com/search?q=%23YoTengoWaveVIP", "tweet_volume": 11276}, {"query": "%23LunesdeMhoni", "name": "#LunesdeMhoni", "promoted_content": null, "url": "http://twitter.com/search?q=%23LunesdeMhoni", "tweet_volume": null}, {"query": "%23%D8%AA%D8%B4%D8%AF_%D8%A7%D9%86%D8%AA%D8%A8%D8%A7%D9%87%D9%8A_%D8%A7%D8%B0%D8%A7", "name": "#\u062a\u0634\u062f_\u0627\u0646\u062a\u0628\u0627\u0647\u064a_\u0627\u0630\u0627", "promoted_content": null, "url": "http://twitter.com/search?q=%23%D8%AA%D8%B4%D8%AF_%D8%A7%D9%86%D8%AA%D8%A8%D8%A7%D9%87%D9%8A_%D8%A7%D8%B0%D8%A7", "tweet_volume": null}, {"query": "%23AmigasFalando", "name": "#AmigasFalando", "promoted_content": null, "url": "http://twitter.com/search?q=%23AmigasFalando", "tweet_volume": null}, {"query": "%23InTheUnlikelyEventOfATie", "name": "#InTheUnlikelyEventOfATie", "promoted_content": null, "url": "http://twitter.com/search?q=%23InTheUnlikelyEventOfATie", "tweet_volume": null}, {"query": "%23ALDUBSummerAdventure", "name": "#ALDUBSummerAdventure", "promoted_content": null, "url": "http://twitter.com/search?q=%23ALDUBSummerAdventure", "tweet_volume": 348878}, {"query": "%23KasichFamily", "name": "#KasichFamily", "promoted_content": null, "url": "http://twitter.com/search?q=%23KasichFamily", "tweet_volume": null}, {"query": "%23CiudadanosCNN", "name": "#CiudadanosCNN", "promoted_content": null, "url": "http://twitter.com/search?q=%23CiudadanosCNN", "tweet_volume": null}, {"query": "%23ChatConLaPandillaEdward", "name": "#ChatConLaPandillaEdward", "promoted_content": null, "url": "http://twitter.com/search?q=%23ChatConLaPandillaEdward", "tweet_volume": null}]}] \ No newline at end of file diff --git a/tests/test_models.py b/tests/test_models.py index b4082cda..6e212278 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -33,44 +33,62 @@ class ModelsTest(unittest.TestCase): def test_category(self): """ Test twitter.Category object """ cat = twitter.Category.NewFromJsonDict(self.CATEGORY_SAMPLE_JSON) - self.assertEqual(cat.__repr__(), "Category(Name=Sports, Slug=sports, Size=26)") + try: + cat.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(cat.AsJsonString()) self.assertTrue(cat.AsDict()) def test_direct_message(self): """ Test twitter.DirectMessage object """ dm = twitter.DirectMessage.NewFromJsonDict(self.DIRECT_MESSAGE_SAMPLE_JSON) - self.assertEqual(dm.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Created=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only: 1. In the national struggles of the proletarians of the [...]')") dm_short = twitter.DirectMessage.NewFromJsonDict(self.DIRECT_MESSAGE_SHORT_SAMPLE_JSON) - self.assertEqual(dm_short.__repr__(), "DirectMessage(ID=678629245946433539, Sender=__jcbl__, Created=Sun Dec 20 17:33:15 +0000 2015, Text='The Communists are distinguished from the other working-class parties by this only')") + try: + dm.__repr__() + dm_short.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(dm.AsJsonString()) self.assertTrue(dm.AsDict()) def test_hashtag(self): """ Test twitter.Hashtag object """ ht = twitter.Hashtag.NewFromJsonDict(self.HASHTAG_SAMPLE_JSON) - self.assertEqual(ht.__repr__(), "Hashtag(Text=python)") + try: + ht.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(ht.AsJsonString()) self.assertTrue(ht.AsDict()) def test_list(self): """ Test twitter.List object """ lt = twitter.List.NewFromJsonDict(self.LIST_SAMPLE_JSON) - self.assertEqual(lt.__repr__(), "List(ID=229581524, FullName=@notinourselves/test, Slug=test, User=notinourselves)") + try: + lt.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(lt.AsJsonString()) self.assertTrue(lt.AsDict()) def test_media(self): """ Test twitter.Media object """ media = twitter.Media.NewFromJsonDict(self.MEDIA_SAMPLE_JSON) - self.assertEqual(media.__repr__(), "Media(ID=698657676939685888, Type=animated_gif, DisplayURL='pic.twitter.com/NWg4YmiZKA')") + try: + media.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(media.AsJsonString()) self.assertTrue(media.AsDict()) def test_status(self): """ Test twitter.Status object """ status = twitter.Status.NewFromJsonDict(self.STATUS_SAMPLE_JSON) - # self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, ScreenName='himawari8bot', Created='Sat Feb 13 23:59:05 +0000 2016')") + try: + status.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(status.AsJsonString()) self.assertTrue(status.AsDict()) self.assertTrue(status.media[0].AsJsonString()) @@ -82,20 +100,29 @@ def test_status(self): def test_status_no_user(self): """ Test twitter.Status object which does not contain a 'user' entity. """ status = twitter.Status.NewFromJsonDict(self.STATUS_NO_USER_SAMPLE_JSON) - # self.assertEqual(status.__repr__(), "Status(ID=698657677329752065, Created='Sat Feb 13 23:59:05 +0000 2016')") + try: + status.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(status.AsJsonString()) self.assertTrue(status.AsDict()) def test_trend(self): """ Test twitter.Trend object """ trend = twitter.Trend.NewFromJsonDict(self.TREND_SAMPLE_JSON) - self.assertEqual(trend.__repr__(), "Trend(Name=#ChangeAConsonantSpoilAMovie, Time=None, URL=http:\\/\\/twitter.com\\/search?q=%23ChangeAConsonantSpoilAMovie)") + try: + trend.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(trend.AsJsonString()) self.assertTrue(trend.AsDict()) def test_url(self): url = twitter.Url.NewFromJsonDict(self.URL_SAMPLE_JSON) - self.assertEqual(url.__repr__(), "URL(URL=http://t.co/wtg3XzqQTX, ExpandedURL=http://iseverythingstilltheworst.com)") + try: + url.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(url.AsJsonString()) self.assertTrue(url.AsDict()) @@ -103,7 +130,10 @@ def test_user(self): '''Test the twitter.User NewFromJsonDict method''' user = twitter.User.NewFromJsonDict(self.USER_SAMPLE_JSON) self.assertEqual(user.id, 718443) - self.assertEqual(user.__repr__(), "User(ID=718443, ScreenName=kesuke)") + try: + user.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(user.AsJsonString()) self.assertTrue(user.AsDict()) self.assertTrue(isinstance(user.status, twitter.Status)) @@ -112,9 +142,9 @@ def test_user(self): def test_user_status(self): """ Test twitter.UserStatus object """ user_status = twitter.UserStatus.NewFromJsonDict(self.USER_STATUS_SAMPLE_JSON) - # __repr__ doesn't always order 'connections' in the same manner when - # call, hence the regex. - mtch = re.compile(r'UserStatus\(ID=6385432, ScreenName=dickc, Connections=\[[blocking|muting]+, [blocking|muting]+\]\)') - self.assertTrue(re.findall(mtch, user_status.__repr__())) + try: + user_status.__repr__() + except Exception as e: + self.fail(e) self.assertTrue(user_status.AsJsonString()) self.assertTrue(user_status.AsDict()) diff --git a/tests/test_unicode.py b/tests/test_unicode.py new file mode 100644 index 00000000..e7edbc9d --- /dev/null +++ b/tests/test_unicode.py @@ -0,0 +1,106 @@ +# encoding: utf-8 + +import json +import pickle +import re +import sys +import unittest +import warnings + +import responses +import twitter + +warnings.filterwarnings('ignore', category=DeprecationWarning) + +DEFAULT_URL = re.compile(r'https?://.*\.twitter.com/1\.1/.*') + +class ErrNull(object): + """ Suppress output of tests while writing to stdout or stderr. This just + takes in data and does nothing with it. + """ + + def write(self, data): + pass + + +class ApiTest(unittest.TestCase): + def setUp(self): + self.maxDiff = None + self.api = twitter.Api( + consumer_key='test', + consumer_secret='test', + access_token_key='test', + access_token_secret='test', + sleep_on_rate_limit=False) + self.base_url = 'https://api.twitter.com/1.1' + self._stderr = sys.stderr + sys.stderr = ErrNull() + + def tearDown(self): + sys.stderr = self._stderr + pass + + def test_trend_repr1(self): + trend = twitter.Trend( + name="#نفسك_تبيع_ايه_للسعوديه", + url="http://twitter.com/search?q=%23ChangeAConsonantSpoilAMovie", + timestamp='whatever') + try: + trend.__repr__() + except Exception as e: + self.fail(e) + + def test_trend_repr2(self): + trend = twitter.Trend( + name="#N\u00e3oD\u00eaUnfTagueirosSdv", + url='http://twitter.com/search?q=%23ChangeAConsonantSpoilAMovie', + timestamp='whatever') + + try: + trend.__repr__() + except Exception as e: + self.fail(e) + + @responses.activate + def test_trend_repr3(self): + with open('testdata/get_trends_current_unicode.json', 'r') as f: + resp_data = f.read() + + responses.add( + responses.GET, + 'https://api.twitter.com/1.1/trends/place.json?id=1', + body=resp_data, + status=200, + match_querystring=True) + + resp = self.api.GetTrendsCurrent() + for r in resp: + print(r.__str__()) + try: + r.__repr__() + except Exception as e: + self.fail(e) + + @responses.activate + def test_unicode_get_search(self): + responses.add(responses.GET, DEFAULT_URL, body=b'{}', status=200) + try: + self.api.GetSearch(term="#ابشري_قابوس_جاء") + except Exception as e: + self.fail(e) + + def test_constructed_status(self): + s = twitter.Status() + s.text = "可以倒着飞的飞机" + s.created_at = "016-02-13T23:00:00" + s.screen_name = "himawari8bot" + s.id = 1 + try: + s.__repr__() + except Exception as e: + self.fail(e) + + +if __name__ == "__main__": + suite = unittest.TestLoader().loadTestsFromTestCase(ApiTest) + unittest.TextTestRunner(verbosity=2).run(suite) diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..7a54e2e0 --- /dev/null +++ b/tox.ini @@ -0,0 +1,9 @@ +[tox] +envlist = py27, py35 + +[testenv] +deps = -rrequirements.testing.txt +commands = make test +whitelist_externals = /bin/bash + make + diff --git a/twitter/api.py b/twitter/api.py index 1fdfa644..bd33af14 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -4368,12 +4368,6 @@ def _DecompressGzippedResponse(self, response): url_data = raw_data return url_data - def _Encode(self, s): - if self._input_encoding: - return str(s).encode(self._input_encoding) - else: - return str(s).encode('utf-8') - def _EncodeParameters(self, parameters): """Return a string in key=value&key=value form. @@ -4389,27 +4383,10 @@ def _EncodeParameters(self, parameters): """ if parameters is None: return None + if not isinstance(parameters, dict): + raise TwitterError("`parameters` must be a dict.") else: - return urlencode(dict([(k, self._Encode(v)) for k, v in list(parameters.items()) if v is not None])) - - def _EncodePostData(self, post_data): - """Return a string in key=value&key=value form. - - Values are assumed to be encoded in the format specified by self._encoding, - and are subsequently URL encoded. - - Args: - post_data: - A dict of (key, value) tuples, where value is encoded as - specified by self._encoding - - Returns: - A URL-encoded string in "key=value&key=value" form - """ - if post_data is None: - return None - else: - return urlencode(dict([(k, self._Encode(v)) for k, v in list(post_data.items())])) + return urlencode(dict((k,v) for k, v in parameters.items() if v is not None)) def _ParseAndCheckTwitter(self, json_data): """Try and parse the JSON returned from Twitter and return diff --git a/twitter/models.py b/twitter/models.py index 1953f613..2e30ac5d 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -1,3 +1,6 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + import json from calendar import timegm @@ -135,7 +138,7 @@ def __init__(self, **kwargs): self.user = User.NewFromJsonDict(kwargs.get('user')) def __repr__(self): - return "List(ID={list_id}, FullName={full_name}, Slug={slug}, User={user})".format( + return "List(ID={list_id}, FullName={full_name!r}, Slug={slug}, User={user})".format( list_id=self.id, full_name=self.full_name, slug=self.slug, @@ -157,7 +160,7 @@ def __init__(self, **kwargs): setattr(self, param, kwargs.get(param, default)) def __repr__(self): - return "Category(Name={name}, Slug={slug}, Size={size})".format( + return "Category(Name={name!r}, Slug={slug}, Size={size})".format( name=self.name, slug=self.slug, size=self.size) @@ -186,7 +189,7 @@ def __repr__(self): text = "{text}[...]".format(text=self.text[:140]) else: text = self.text - return "DirectMessage(ID={dm_id}, Sender={sender}, Created={time}, Text='{text}')".format( + return "DirectMessage(ID={dm_id}, Sender={sender}, Created={time}, Text='{text!r}')".format( dm_id=self.id, sender=self.sender_screen_name, time=self.created_at, @@ -212,10 +215,10 @@ def __init__(self, **kwargs): setattr(self, param, kwargs.get(param, default)) def __repr__(self): - return "Trend(Name={name}, Time={ts}, URL={url})".format( - name=self.name, - ts=self.timestamp, - url=self.url) + return "Trend(Name={0!r}, Time={1}, URL={2})".format( + self.name, + self.timestamp, + self.url) class Hashtag(TwitterModel): @@ -231,7 +234,7 @@ def __init__(self, **kwargs): setattr(self, param, kwargs.get(param, default)) def __repr__(self): - return "Hashtag(Text={text})".format( + return "Hashtag(Text={text!r})".format( text=self.text) @@ -461,13 +464,13 @@ def __repr__(self): the ID of status, username and datetime. """ if self.user: - return "Status(ID={0}, ScreenName='{1}', Created='{2}', Text={3})".format( + return "Status(ID={0}, ScreenName={1}, Created={2}, Text={3!r})".format( self.id, self.user.screen_name, self.created_at, self.text) else: - return "Status(ID={0}, Created='{1}', Text={2})".format( + return u"Status(ID={0}, Created={1}, Text={2!r})".format( self.id, self.created_at, self.text) From c2f5c7ab0e6129c1edf9e2826982afcc5c795afc Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Mon, 2 May 2016 06:33:56 -0400 Subject: [PATCH 232/533] update inline docs re: _EncodeParameters --- twitter/api.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index bd33af14..364eaf25 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -4374,9 +4374,8 @@ def _EncodeParameters(self, parameters): Values of None are not included in the output string. Args: - parameters: - A dict of (key, value) tuples, where value is encoded as - specified by self._encoding + parameters (dict): dictionary of query parameters to be converted into a + string for encoding and sending to Twitter. Returns: A URL-encoded string in "key=value&key=value" form From 09f181e038f43236e9a1481c32c2138cb2d06a14 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Mon, 2 May 2016 20:53:18 -0400 Subject: [PATCH 233/533] update return type for twitter.models.Status.created_at_in_seconds to be int instead of str --- twitter/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/models.py b/twitter/models.py index 2e30ac5d..bcf43879 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -404,7 +404,7 @@ def created_at_in_seconds(self): the epoch (1 Jan 1970). Returns: - string: The time this status message was posted, in seconds since + int: The time this status message was posted, in seconds since the epoch. """ return timegm(parsedate(self.created_at)) From 82ad4fbfe6f37e53decf46667a477598cef6969d Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 5 May 2016 19:53:08 -0400 Subject: [PATCH 234/533] removes relative dates for Status object per issue #331 --- tests/test_status.py | 47 -------------------------------------------- twitter/models.py | 47 -------------------------------------------- 2 files changed, 94 deletions(-) diff --git a/tests/test_status.py b/tests/test_status.py index 7f9d8951..ac2d4ba4 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -42,52 +42,9 @@ def testProperties(self): status.created_at = 'Fri Jan 26 23:17:14 +0000 2007' self.assertEqual('Fri Jan 26 23:17:14 +0000 2007', status.created_at) self.assertEqual(created_at, status.created_at_in_seconds) - status.now = created_at + 10 - self.assertEqual('about 10 seconds ago', status.relative_created_at) status.user = self._GetSampleUser() self.assertEqual(718443, status.user.id) - def _ParseDate(self, string): - return calendar.timegm(time.strptime(string, '%b %d %H:%M:%S %Y')) - - def test_relative_created_at(self): - '''Test various permutations of Status relative_created_at''' - status = twitter.Status(created_at='Fri Jan 01 12:00:00 +0000 2007') - status.now = self._ParseDate('Jan 01 12:00:00 2007') - self.assertEqual('about a second ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:01 2007') - self.assertEqual('about a second ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:02 2007') - self.assertEqual('about 2 seconds ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:05 2007') - self.assertEqual('about 5 seconds ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:00:50 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:01:00 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:01:10 2007') - self.assertEqual('about a minute ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:02:00 2007') - self.assertEqual('about 2 minutes ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:31:50 2007') - self.assertEqual('about 31 minutes ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 12:50:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 13:00:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 13:10:00 2007') - self.assertEqual('about an hour ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 14:00:00 2007') - self.assertEqual('about 2 hours ago', status.relative_created_at) - status.now = self._ParseDate('Jan 01 19:00:00 2007') - self.assertEqual('about 7 hours ago', status.relative_created_at) - status.now = self._ParseDate('Jan 02 11:30:00 2007') - self.assertEqual('about a day ago', status.relative_created_at) - status.now = self._ParseDate('Jan 04 12:00:00 2007') - self.assertEqual('about 3 days ago', status.relative_created_at) - status.now = self._ParseDate('Feb 04 12:00:00 2007') - self.assertEqual('about 34 days ago', status.relative_created_at) - @unittest.skipIf(sys.version_info.major >= 3, "skipped until fix found for v3 python") def testAsJsonString(self): '''Test the twitter.Status AsJsonString method''' @@ -117,7 +74,3 @@ def testNewFromJsonDict(self): data = json.loads(StatusTest.SAMPLE_JSON) status = twitter.Status.NewFromJsonDict(data) self.assertEqual(self._GetSampleStatus(), status) - - # def testStatusRepresentation(self): - # status = self._GetSampleStatus() - # self.assertEqual("Status(ID=4391023, ScreenName='kesuke', Created='Fri Jan 26 23:17:14 +0000 2007')", status.__repr__()) diff --git a/twitter/models.py b/twitter/models.py index bcf43879..6c1ea6e6 100644 --- a/twitter/models.py +++ b/twitter/models.py @@ -377,7 +377,6 @@ def __init__(self, **kwargs): 'lang': None, 'location': None, 'media': None, - 'now': None, 'place': None, 'possibly_sensitive': None, 'retweet_count': None, @@ -409,52 +408,6 @@ def created_at_in_seconds(self): """ return timegm(parsedate(self.created_at)) - @property - def relative_created_at(self): - """Get a human readable string representing the posting time - - Returns: - A human readable string representing the posting time - """ - fudge = 1.25 - delta = int(self.now) - int(self.created_at_in_seconds) - - if delta < (1 * fudge): - return 'about a second ago' - elif delta < (60 * (1 / fudge)): - return 'about %d seconds ago' % (delta) - elif delta < (60 * fudge): - return 'about a minute ago' - elif delta < (60 * 60 * (1 / fudge)): - return 'about %d minutes ago' % (delta / 60) - elif delta < (60 * 60 * fudge) or delta / (60 * 60) == 1: - return 'about an hour ago' - elif delta < (60 * 60 * 24 * (1 / fudge)): - return 'about %d hours ago' % (delta / (60 * 60)) - elif delta < (60 * 60 * 24 * fudge) or delta / (60 * 60 * 24) == 1: - return 'about a day ago' - else: - return 'about %d days ago' % (delta / (60 * 60 * 24)) - - @property - def Now(self): - """Get the wallclock time for this status message. - - Used to calculate relative_created_at. Defaults to the time - the object was instantiated. - - Returns: - int: Whatever the status instance believes the current time to be, - in seconds since the epoch. - """ - if self._now is None: - self._now = time.time() - return self._now - - @Now.setter - def Now(self, now): - self._now = now - def __repr__(self): """ A string representation of this twitter.Status instance. The return value is the ID of status, username and datetime. From c6d31ff4399f7351fd434535abfeb39766689394 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sat, 7 May 2016 08:51:56 -0400 Subject: [PATCH 235/533] rebase off master --- doc/migration_v30.rst | 5 +++++ twitter/api.py | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/migration_v30.rst b/doc/migration_v30.rst index d47f63b0..81a80f2f 100644 --- a/doc/migration_v30.rst +++ b/doc/migration_v30.rst @@ -4,6 +4,11 @@ Migration from v2 to v3 Changes to Existing Methods =========================== +:py:func:`twitter.api.Api()` +++++++++++++++++++++++++++++ +* ``shortner`` parameter has been removed. Please see `Issue + #298 `_. + :py:func:`twitter.api.Api.CreateFavorite` +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * kwarg param has been changed to ``status_id`` from ``id`` to be consistent diff --git a/twitter/api.py b/twitter/api.py index 364eaf25..7f661ce9 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -132,7 +132,6 @@ def __init__(self, input_encoding=None, request_headers=None, cache=DEFAULT_CACHE, - shortner=None, base_url=None, stream_url=None, upload_url=None, @@ -161,9 +160,6 @@ def __init__(self, cache: The cache instance to use. Defaults to DEFAULT_CACHE. Use None to disable caching. [Optional] - shortner: - The shortner instance to use. Defaults to None. - See shorten_url.py for an example shortner. [Optional] base_url: The base URL to use to contact the Twitter API. Defaults to https://api.twitter.com. [Optional] @@ -1561,7 +1557,6 @@ def GetRetweeters(self, parameters['count'] = int(cursor) except ValueError: raise TwitterError({'message': "cursor must be an integer"}) - break resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8')) result += [x for x in data['ids']] From 00285283345b0d26f29fead8da80c79e0564837c Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Wed, 16 Mar 2016 07:23:14 -0400 Subject: [PATCH 236/533] updates get_access_token & examples for python 3 --- examples/view_friends.py | 25 ++++++++++++++++++- get_access_token.py | 54 ++++++++++++++++++++-------------------- 2 files changed, 51 insertions(+), 28 deletions(-) diff --git a/examples/view_friends.py b/examples/view_friends.py index 502b2e88..a61624dc 100644 --- a/examples/view_friends.py +++ b/examples/view_friends.py @@ -1,8 +1,31 @@ +# Copyright 2016 The Python-Twitter Developers +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import twitter +CONSUMER_KEY = 'WWWWWWWW' +CONSUMER_SECRET = 'XXXXXXXX' +ACCESS_TOKEN = 'YYYYYYYY' +ACCESS_TOKEN_SECRET = 'ZZZZZZZZ' + + +# Create an Api instance. api = twitter.Api(consumer_key='consumer_key', consumer_secret='consumer_secret', access_token_key='access_token', access_token_secret='access_token_secret') + users = api.GetFriends() -print [u.name for u in users] + +print([u.screen_name for u in users]) diff --git a/get_access_token.py b/get_access_token.py index 34252e5f..d3010fe6 100755 --- a/get_access_token.py +++ b/get_access_token.py @@ -13,9 +13,10 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import print_function -import webbrowser from requests_oauthlib import OAuth1Session +import webbrowser REQUEST_TOKEN_URL = 'https://api.twitter.com/oauth/request_token' ACCESS_TOKEN_URL = 'https://api.twitter.com/oauth/access_token' @@ -26,50 +27,49 @@ def get_access_token(consumer_key, consumer_secret): oauth_client = OAuth1Session(consumer_key, client_secret=consumer_secret, callback_uri='oob') - print 'Requesting temp token from Twitter' + print('\nRequesting temp token from Twitter...\n') try: resp = oauth_client.fetch_request_token(REQUEST_TOKEN_URL) - except ValueError, e: - print 'Invalid respond from Twitter requesting temp token: %s' % e - return + except ValueError as e: + raise 'Invalid response from Twitter requesting temp token: {0}'.format(e) + url = oauth_client.authorization_url(AUTHORIZATION_URL) - print '' - print 'I will try to start a browser to visit the following Twitter page' - print 'if a browser will not start, copy the URL to your browser' - print 'and retrieve the pincode to be used' - print 'in the next step to obtaining an Authentication Token:' - print '' - print url - print '' + print('I will try to start a browser to visit the following Twitter page ' + 'if a browser will not start, copy the URL to your browser ' + 'and retrieve the pincode to be used ' + 'in the next step to obtaining an Authentication Token: \n' + '\n\t{0}'.format(url)) webbrowser.open(url) - pincode = raw_input('Pincode? ') + pincode = input('\nEnter your pincode? ') - print '' - print 'Generating and signing request for an access token' - print '' + print('\nGenerating and signing request for an access token...\n') oauth_client = OAuth1Session(consumer_key, client_secret=consumer_secret, resource_owner_key=resp.get('oauth_token'), resource_owner_secret=resp.get('oauth_token_secret'), - verifier=pincode - ) + verifier=pincode) try: resp = oauth_client.fetch_access_token(ACCESS_TOKEN_URL) - except ValueError, e: - print 'Invalid respond from Twitter requesting access token: %s' % e - return + except ValueError as e: + raise 'Invalid response from Twitter requesting temp token: {0}'.format(e) - print 'Your Twitter Access Token key: %s' % resp.get('oauth_token') - print ' Access Token secret: %s' % resp.get('oauth_token_secret') - print '' + print('''Your tokens/keys are as follows: + consumer_key = {ck} + consumer_secret = {cs} + access_token_key = {atk} + access_token_secret = {ats}'''.format( + ck=consumer_key, + cs=consumer_secret, + atk=resp.get('oauth_token'), + ats=resp.get('oauth_token_secret'))) def main(): - consumer_key = raw_input('Enter your consumer key: ') - consumer_secret = raw_input("Enter your consumer secret: ") + consumer_key = input('Enter your consumer key: ') + consumer_secret = input('Enter your consumer secret: ') get_access_token(consumer_key, consumer_secret) From 095a41a26480b58492933c4e4f1673df2f986deb Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Sun, 8 May 2016 09:28:49 -0400 Subject: [PATCH 237/533] update examples --- examples/twitter-to-xhtml.py | 109 ++++++++++++++++++----------------- examples/view_friends.py | 15 +++++ 2 files changed, 71 insertions(+), 53 deletions(-) diff --git a/examples/twitter-to-xhtml.py b/examples/twitter-to-xhtml.py index eae1efb6..57b38470 100755 --- a/examples/twitter-to-xhtml.py +++ b/examples/twitter-to-xhtml.py @@ -1,72 +1,75 @@ #!/usr/bin/env python -'''Load the latest update for a Twitter user and leave it in an XHTML fragment''' +# Copyright 2007-2016 The Python-Twitter Developers +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. -__author__ = 'dewitt@google.com' +# ------------------------------------------------------------------------ +# Load the latest update for a Twitter user and output it as an HTML fragment +# +from __future__ import print_function import codecs -import getopt import sys +import argparse + import twitter +from t import * + +__author__ = 'dewitt@google.com' + TEMPLATE = """ -